2019-05-29 22:17:56 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2013-02-02 08:26:00 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 Invensense, Inc.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "inv_mpu_iio.h"
|
|
|
|
|
|
|
|
static void inv_scan_query(struct iio_dev *indio_dev)
|
|
|
|
{
|
|
|
|
struct inv_mpu6050_state *st = iio_priv(indio_dev);
|
|
|
|
|
|
|
|
st->chip_config.gyro_fifo_enable =
|
|
|
|
test_bit(INV_MPU6050_SCAN_GYRO_X,
|
2016-02-18 23:53:12 +08:00
|
|
|
indio_dev->active_scan_mask) ||
|
|
|
|
test_bit(INV_MPU6050_SCAN_GYRO_Y,
|
|
|
|
indio_dev->active_scan_mask) ||
|
|
|
|
test_bit(INV_MPU6050_SCAN_GYRO_Z,
|
|
|
|
indio_dev->active_scan_mask);
|
2013-02-02 08:26:00 +08:00
|
|
|
|
|
|
|
st->chip_config.accl_fifo_enable =
|
|
|
|
test_bit(INV_MPU6050_SCAN_ACCL_X,
|
2016-02-18 23:53:12 +08:00
|
|
|
indio_dev->active_scan_mask) ||
|
|
|
|
test_bit(INV_MPU6050_SCAN_ACCL_Y,
|
|
|
|
indio_dev->active_scan_mask) ||
|
|
|
|
test_bit(INV_MPU6050_SCAN_ACCL_Z,
|
|
|
|
indio_dev->active_scan_mask);
|
2013-02-02 08:26:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* inv_mpu6050_set_enable() - enable chip functions.
|
|
|
|
* @indio_dev: Device driver instance.
|
|
|
|
* @enable: enable/disable
|
|
|
|
*/
|
|
|
|
static int inv_mpu6050_set_enable(struct iio_dev *indio_dev, bool enable)
|
|
|
|
{
|
|
|
|
struct inv_mpu6050_state *st = iio_priv(indio_dev);
|
|
|
|
int result;
|
|
|
|
|
|
|
|
if (enable) {
|
|
|
|
result = inv_mpu6050_set_power_itg(st, true);
|
|
|
|
if (result)
|
|
|
|
return result;
|
|
|
|
inv_scan_query(indio_dev);
|
2018-04-30 18:14:10 +08:00
|
|
|
st->skip_samples = 0;
|
2013-02-02 08:26:00 +08:00
|
|
|
if (st->chip_config.gyro_fifo_enable) {
|
|
|
|
result = inv_mpu6050_switch_engine(st, true,
|
|
|
|
INV_MPU6050_BIT_PWR_GYRO_STBY);
|
|
|
|
if (result)
|
2018-04-23 18:33:30 +08:00
|
|
|
goto error_power_off;
|
2018-04-30 18:14:10 +08:00
|
|
|
/* gyro first sample is out of specs, skip it */
|
|
|
|
st->skip_samples = 1;
|
2013-02-02 08:26:00 +08:00
|
|
|
}
|
|
|
|
if (st->chip_config.accl_fifo_enable) {
|
|
|
|
result = inv_mpu6050_switch_engine(st, true,
|
|
|
|
INV_MPU6050_BIT_PWR_ACCL_STBY);
|
|
|
|
if (result)
|
2018-04-23 18:33:30 +08:00
|
|
|
goto error_gyro_off;
|
2013-02-02 08:26:00 +08:00
|
|
|
}
|
|
|
|
result = inv_reset_fifo(indio_dev);
|
|
|
|
if (result)
|
2018-04-23 18:33:30 +08:00
|
|
|
goto error_accl_off;
|
2013-02-02 08:26:00 +08:00
|
|
|
} else {
|
2016-02-12 19:44:43 +08:00
|
|
|
result = regmap_write(st->map, st->reg->fifo_en, 0);
|
2013-02-02 08:26:00 +08:00
|
|
|
if (result)
|
2018-04-23 18:33:30 +08:00
|
|
|
goto error_accl_off;
|
2013-02-02 08:26:00 +08:00
|
|
|
|
2016-02-12 19:44:43 +08:00
|
|
|
result = regmap_write(st->map, st->reg->int_enable, 0);
|
2013-02-02 08:26:00 +08:00
|
|
|
if (result)
|
2018-04-23 18:33:30 +08:00
|
|
|
goto error_accl_off;
|
2013-02-02 08:26:00 +08:00
|
|
|
|
2018-04-30 18:14:11 +08:00
|
|
|
result = regmap_write(st->map, st->reg->user_ctrl,
|
|
|
|
st->chip_config.user_ctrl);
|
2013-02-02 08:26:00 +08:00
|
|
|
if (result)
|
2018-04-23 18:33:30 +08:00
|
|
|
goto error_accl_off;
|
2013-02-02 08:26:00 +08:00
|
|
|
|
|
|
|
result = inv_mpu6050_switch_engine(st, false,
|
2018-04-23 18:33:30 +08:00
|
|
|
INV_MPU6050_BIT_PWR_ACCL_STBY);
|
2013-02-02 08:26:00 +08:00
|
|
|
if (result)
|
2018-04-23 18:33:30 +08:00
|
|
|
goto error_accl_off;
|
2013-02-02 08:26:00 +08:00
|
|
|
|
|
|
|
result = inv_mpu6050_switch_engine(st, false,
|
2018-04-23 18:33:30 +08:00
|
|
|
INV_MPU6050_BIT_PWR_GYRO_STBY);
|
2013-02-02 08:26:00 +08:00
|
|
|
if (result)
|
2018-04-23 18:33:30 +08:00
|
|
|
goto error_gyro_off;
|
|
|
|
|
2013-02-02 08:26:00 +08:00
|
|
|
result = inv_mpu6050_set_power_itg(st, false);
|
|
|
|
if (result)
|
2018-04-23 18:33:30 +08:00
|
|
|
goto error_power_off;
|
2013-02-02 08:26:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2018-04-23 18:33:30 +08:00
|
|
|
|
|
|
|
error_accl_off:
|
|
|
|
if (st->chip_config.accl_fifo_enable)
|
|
|
|
inv_mpu6050_switch_engine(st, false,
|
|
|
|
INV_MPU6050_BIT_PWR_ACCL_STBY);
|
|
|
|
error_gyro_off:
|
|
|
|
if (st->chip_config.gyro_fifo_enable)
|
|
|
|
inv_mpu6050_switch_engine(st, false,
|
|
|
|
INV_MPU6050_BIT_PWR_GYRO_STBY);
|
|
|
|
error_power_off:
|
|
|
|
inv_mpu6050_set_power_itg(st, false);
|
|
|
|
return result;
|
2013-02-02 08:26:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* inv_mpu_data_rdy_trigger_set_state() - set data ready interrupt state
|
|
|
|
* @trig: Trigger instance
|
|
|
|
* @state: Desired trigger state
|
|
|
|
*/
|
|
|
|
static int inv_mpu_data_rdy_trigger_set_state(struct iio_trigger *trig,
|
2016-02-18 23:53:12 +08:00
|
|
|
bool state)
|
2013-02-02 08:26:00 +08:00
|
|
|
{
|
2017-06-07 21:41:42 +08:00
|
|
|
struct iio_dev *indio_dev = iio_trigger_get_drvdata(trig);
|
|
|
|
struct inv_mpu6050_state *st = iio_priv(indio_dev);
|
|
|
|
int result;
|
|
|
|
|
|
|
|
mutex_lock(&st->lock);
|
|
|
|
result = inv_mpu6050_set_enable(indio_dev, state);
|
|
|
|
mutex_unlock(&st->lock);
|
|
|
|
|
|
|
|
return result;
|
2013-02-02 08:26:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct iio_trigger_ops inv_mpu_trigger_ops = {
|
|
|
|
.set_trigger_state = &inv_mpu_data_rdy_trigger_set_state,
|
|
|
|
};
|
|
|
|
|
2018-04-21 00:54:00 +08:00
|
|
|
int inv_mpu6050_probe_trigger(struct iio_dev *indio_dev, int irq_type)
|
2013-02-02 08:26:00 +08:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct inv_mpu6050_state *st = iio_priv(indio_dev);
|
|
|
|
|
2015-01-22 11:38:02 +08:00
|
|
|
st->trig = devm_iio_trigger_alloc(&indio_dev->dev,
|
|
|
|
"%s-dev%d",
|
|
|
|
indio_dev->name,
|
|
|
|
indio_dev->id);
|
2015-01-22 11:38:04 +08:00
|
|
|
if (!st->trig)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2016-02-12 19:44:44 +08:00
|
|
|
ret = devm_request_irq(&indio_dev->dev, st->irq,
|
2015-01-22 11:38:03 +08:00
|
|
|
&iio_trigger_generic_data_rdy_poll,
|
2018-04-21 00:54:00 +08:00
|
|
|
irq_type,
|
2015-01-22 11:38:03 +08:00
|
|
|
"inv_mpu",
|
|
|
|
st->trig);
|
2013-02-02 08:26:00 +08:00
|
|
|
if (ret)
|
2015-01-22 11:38:04 +08:00
|
|
|
return ret;
|
|
|
|
|
2016-02-12 19:44:44 +08:00
|
|
|
st->trig->dev.parent = regmap_get_device(st->map);
|
2013-02-02 08:26:00 +08:00
|
|
|
st->trig->ops = &inv_mpu_trigger_ops;
|
2013-03-25 16:58:00 +08:00
|
|
|
iio_trigger_set_drvdata(st->trig, indio_dev);
|
2015-01-22 11:38:04 +08:00
|
|
|
|
2018-04-23 18:33:31 +08:00
|
|
|
ret = devm_iio_trigger_register(&indio_dev->dev, st->trig);
|
2013-02-02 08:26:00 +08:00
|
|
|
if (ret)
|
2015-01-22 11:38:04 +08:00
|
|
|
return ret;
|
|
|
|
|
2014-08-23 04:48:00 +08:00
|
|
|
indio_dev->trig = iio_trigger_get(st->trig);
|
2013-02-02 08:26:00 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|