| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936 |
- // SPDX-License-Identifier: GPL-2.0-or-later
- /*
- * Copyright (C) 2020 Invensense, Inc.
- */
- #include <linux/kernel.h>
- #include <linux/device.h>
- #include <linux/mutex.h>
- #include <linux/pm_runtime.h>
- #include <linux/regmap.h>
- #include <linux/delay.h>
- #include <linux/math64.h>
- #include <linux/iio/buffer.h>
- #include <linux/iio/common/inv_sensors_timestamp.h>
- #include <linux/iio/iio.h>
- #include <linux/iio/kfifo_buf.h>
- #include "inv_icm42600.h"
- #include "inv_icm42600_temp.h"
- #include "inv_icm42600_buffer.h"
- #define INV_ICM42600_ACCEL_CHAN(_modifier, _index, _ext_info) \
- { \
- .type = IIO_ACCEL, \
- .modified = 1, \
- .channel2 = _modifier, \
- .info_mask_separate = \
- BIT(IIO_CHAN_INFO_RAW) | \
- BIT(IIO_CHAN_INFO_CALIBBIAS), \
- .info_mask_shared_by_type = \
- BIT(IIO_CHAN_INFO_SCALE), \
- .info_mask_shared_by_type_available = \
- BIT(IIO_CHAN_INFO_SCALE) | \
- BIT(IIO_CHAN_INFO_CALIBBIAS), \
- .info_mask_shared_by_all = \
- BIT(IIO_CHAN_INFO_SAMP_FREQ), \
- .info_mask_shared_by_all_available = \
- BIT(IIO_CHAN_INFO_SAMP_FREQ), \
- .scan_index = _index, \
- .scan_type = { \
- .sign = 's', \
- .realbits = 16, \
- .storagebits = 16, \
- .endianness = IIO_BE, \
- }, \
- .ext_info = _ext_info, \
- }
- enum inv_icm42600_accel_scan {
- INV_ICM42600_ACCEL_SCAN_X,
- INV_ICM42600_ACCEL_SCAN_Y,
- INV_ICM42600_ACCEL_SCAN_Z,
- INV_ICM42600_ACCEL_SCAN_TEMP,
- INV_ICM42600_ACCEL_SCAN_TIMESTAMP,
- };
- static const char * const inv_icm42600_accel_power_mode_items[] = {
- "low-noise",
- "low-power",
- };
- static const int inv_icm42600_accel_power_mode_values[] = {
- INV_ICM42600_SENSOR_MODE_LOW_NOISE,
- INV_ICM42600_SENSOR_MODE_LOW_POWER,
- };
- static const int inv_icm42600_accel_filter_values[] = {
- INV_ICM42600_FILTER_BW_ODR_DIV_2,
- INV_ICM42600_FILTER_AVG_16X,
- };
- static int inv_icm42600_accel_power_mode_set(struct iio_dev *indio_dev,
- const struct iio_chan_spec *chan,
- unsigned int idx)
- {
- struct inv_icm42600_state *st = iio_device_get_drvdata(indio_dev);
- struct inv_icm42600_sensor_state *accel_st = iio_priv(indio_dev);
- int power_mode, filter;
- if (chan->type != IIO_ACCEL)
- return -EINVAL;
- if (idx >= ARRAY_SIZE(inv_icm42600_accel_power_mode_values))
- return -EINVAL;
- if (iio_buffer_enabled(indio_dev))
- return -EBUSY;
- power_mode = inv_icm42600_accel_power_mode_values[idx];
- filter = inv_icm42600_accel_filter_values[idx];
- guard(mutex)(&st->lock);
- /* prevent change if power mode is not supported by the ODR */
- switch (power_mode) {
- case INV_ICM42600_SENSOR_MODE_LOW_NOISE:
- if (st->conf.accel.odr >= INV_ICM42600_ODR_6_25HZ_LP &&
- st->conf.accel.odr <= INV_ICM42600_ODR_1_5625HZ_LP)
- return -EPERM;
- break;
- case INV_ICM42600_SENSOR_MODE_LOW_POWER:
- default:
- if (st->conf.accel.odr <= INV_ICM42600_ODR_1KHZ_LN)
- return -EPERM;
- break;
- }
- accel_st->power_mode = power_mode;
- accel_st->filter = filter;
- return 0;
- }
- static int inv_icm42600_accel_power_mode_get(struct iio_dev *indio_dev,
- const struct iio_chan_spec *chan)
- {
- struct inv_icm42600_state *st = iio_device_get_drvdata(indio_dev);
- struct inv_icm42600_sensor_state *accel_st = iio_priv(indio_dev);
- unsigned int idx;
- int power_mode;
- if (chan->type != IIO_ACCEL)
- return -EINVAL;
- guard(mutex)(&st->lock);
- /* if sensor is on, returns actual power mode and not configured one */
- switch (st->conf.accel.mode) {
- case INV_ICM42600_SENSOR_MODE_LOW_POWER:
- case INV_ICM42600_SENSOR_MODE_LOW_NOISE:
- power_mode = st->conf.accel.mode;
- break;
- default:
- power_mode = accel_st->power_mode;
- break;
- }
- for (idx = 0; idx < ARRAY_SIZE(inv_icm42600_accel_power_mode_values); ++idx) {
- if (power_mode == inv_icm42600_accel_power_mode_values[idx])
- break;
- }
- if (idx >= ARRAY_SIZE(inv_icm42600_accel_power_mode_values))
- return -EINVAL;
- return idx;
- }
- static const struct iio_enum inv_icm42600_accel_power_mode_enum = {
- .items = inv_icm42600_accel_power_mode_items,
- .num_items = ARRAY_SIZE(inv_icm42600_accel_power_mode_items),
- .set = inv_icm42600_accel_power_mode_set,
- .get = inv_icm42600_accel_power_mode_get,
- };
- static const struct iio_chan_spec_ext_info inv_icm42600_accel_ext_infos[] = {
- IIO_MOUNT_MATRIX(IIO_SHARED_BY_ALL, inv_icm42600_get_mount_matrix),
- IIO_ENUM_AVAILABLE("power_mode", IIO_SHARED_BY_TYPE,
- &inv_icm42600_accel_power_mode_enum),
- IIO_ENUM("power_mode", IIO_SHARED_BY_TYPE,
- &inv_icm42600_accel_power_mode_enum),
- {},
- };
- static const struct iio_chan_spec inv_icm42600_accel_channels[] = {
- INV_ICM42600_ACCEL_CHAN(IIO_MOD_X, INV_ICM42600_ACCEL_SCAN_X,
- inv_icm42600_accel_ext_infos),
- INV_ICM42600_ACCEL_CHAN(IIO_MOD_Y, INV_ICM42600_ACCEL_SCAN_Y,
- inv_icm42600_accel_ext_infos),
- INV_ICM42600_ACCEL_CHAN(IIO_MOD_Z, INV_ICM42600_ACCEL_SCAN_Z,
- inv_icm42600_accel_ext_infos),
- INV_ICM42600_TEMP_CHAN(INV_ICM42600_ACCEL_SCAN_TEMP),
- IIO_CHAN_SOFT_TIMESTAMP(INV_ICM42600_ACCEL_SCAN_TIMESTAMP),
- };
- /*
- * IIO buffer data: size must be a power of 2 and timestamp aligned
- * 16 bytes: 6 bytes acceleration, 2 bytes temperature, 8 bytes timestamp
- */
- struct inv_icm42600_accel_buffer {
- struct inv_icm42600_fifo_sensor_data accel;
- s16 temp;
- aligned_s64 timestamp;
- };
- #define INV_ICM42600_SCAN_MASK_ACCEL_3AXIS \
- (BIT(INV_ICM42600_ACCEL_SCAN_X) | \
- BIT(INV_ICM42600_ACCEL_SCAN_Y) | \
- BIT(INV_ICM42600_ACCEL_SCAN_Z))
- #define INV_ICM42600_SCAN_MASK_TEMP BIT(INV_ICM42600_ACCEL_SCAN_TEMP)
- static const unsigned long inv_icm42600_accel_scan_masks[] = {
- /* 3-axis accel + temperature */
- INV_ICM42600_SCAN_MASK_ACCEL_3AXIS | INV_ICM42600_SCAN_MASK_TEMP,
- 0,
- };
- /* enable accelerometer sensor and FIFO write */
- static int inv_icm42600_accel_update_scan_mode(struct iio_dev *indio_dev,
- const unsigned long *scan_mask)
- {
- struct inv_icm42600_state *st = iio_device_get_drvdata(indio_dev);
- struct inv_icm42600_sensor_state *accel_st = iio_priv(indio_dev);
- struct inv_icm42600_sensor_conf conf = INV_ICM42600_SENSOR_CONF_INIT;
- unsigned int fifo_en = 0;
- unsigned int sleep_temp = 0;
- unsigned int sleep_accel = 0;
- unsigned int sleep;
- int ret;
- mutex_lock(&st->lock);
- if (*scan_mask & INV_ICM42600_SCAN_MASK_TEMP) {
- /* enable temp sensor */
- ret = inv_icm42600_set_temp_conf(st, true, &sleep_temp);
- if (ret)
- goto out_unlock;
- fifo_en |= INV_ICM42600_SENSOR_TEMP;
- }
- if (*scan_mask & INV_ICM42600_SCAN_MASK_ACCEL_3AXIS) {
- /* enable accel sensor */
- conf.mode = accel_st->power_mode;
- conf.filter = accel_st->filter;
- ret = inv_icm42600_set_accel_conf(st, &conf, &sleep_accel);
- if (ret)
- goto out_unlock;
- fifo_en |= INV_ICM42600_SENSOR_ACCEL;
- }
- /* update data FIFO write */
- ret = inv_icm42600_buffer_set_fifo_en(st, fifo_en | st->fifo.en);
- out_unlock:
- mutex_unlock(&st->lock);
- /* sleep maximum required time */
- sleep = max(sleep_accel, sleep_temp);
- if (sleep)
- msleep(sleep);
- return ret;
- }
- static int inv_icm42600_accel_read_sensor(struct iio_dev *indio_dev,
- struct iio_chan_spec const *chan,
- s16 *val)
- {
- struct inv_icm42600_state *st = iio_device_get_drvdata(indio_dev);
- struct inv_icm42600_sensor_state *accel_st = iio_priv(indio_dev);
- struct device *dev = regmap_get_device(st->map);
- struct inv_icm42600_sensor_conf conf = INV_ICM42600_SENSOR_CONF_INIT;
- unsigned int reg;
- __be16 *data;
- int ret;
- if (chan->type != IIO_ACCEL)
- return -EINVAL;
- switch (chan->channel2) {
- case IIO_MOD_X:
- reg = INV_ICM42600_REG_ACCEL_DATA_X;
- break;
- case IIO_MOD_Y:
- reg = INV_ICM42600_REG_ACCEL_DATA_Y;
- break;
- case IIO_MOD_Z:
- reg = INV_ICM42600_REG_ACCEL_DATA_Z;
- break;
- default:
- return -EINVAL;
- }
- pm_runtime_get_sync(dev);
- mutex_lock(&st->lock);
- /* enable accel sensor */
- conf.mode = accel_st->power_mode;
- conf.filter = accel_st->filter;
- ret = inv_icm42600_set_accel_conf(st, &conf, NULL);
- if (ret)
- goto exit;
- /* read accel register data */
- data = (__be16 *)&st->buffer[0];
- ret = regmap_bulk_read(st->map, reg, data, sizeof(*data));
- if (ret)
- goto exit;
- *val = (s16)be16_to_cpup(data);
- if (*val == INV_ICM42600_DATA_INVALID)
- ret = -EINVAL;
- exit:
- mutex_unlock(&st->lock);
- pm_runtime_mark_last_busy(dev);
- pm_runtime_put_autosuspend(dev);
- return ret;
- }
- /* IIO format int + nano */
- static const int inv_icm42600_accel_scale[] = {
- /* +/- 16G => 0.004788403 m/s-2 */
- [2 * INV_ICM42600_ACCEL_FS_16G] = 0,
- [2 * INV_ICM42600_ACCEL_FS_16G + 1] = 4788403,
- /* +/- 8G => 0.002394202 m/s-2 */
- [2 * INV_ICM42600_ACCEL_FS_8G] = 0,
- [2 * INV_ICM42600_ACCEL_FS_8G + 1] = 2394202,
- /* +/- 4G => 0.001197101 m/s-2 */
- [2 * INV_ICM42600_ACCEL_FS_4G] = 0,
- [2 * INV_ICM42600_ACCEL_FS_4G + 1] = 1197101,
- /* +/- 2G => 0.000598550 m/s-2 */
- [2 * INV_ICM42600_ACCEL_FS_2G] = 0,
- [2 * INV_ICM42600_ACCEL_FS_2G + 1] = 598550,
- };
- static const int inv_icm42686_accel_scale[] = {
- /* +/- 32G => 0.009576807 m/s-2 */
- [2 * INV_ICM42686_ACCEL_FS_32G] = 0,
- [2 * INV_ICM42686_ACCEL_FS_32G + 1] = 9576807,
- /* +/- 16G => 0.004788403 m/s-2 */
- [2 * INV_ICM42686_ACCEL_FS_16G] = 0,
- [2 * INV_ICM42686_ACCEL_FS_16G + 1] = 4788403,
- /* +/- 8G => 0.002394202 m/s-2 */
- [2 * INV_ICM42686_ACCEL_FS_8G] = 0,
- [2 * INV_ICM42686_ACCEL_FS_8G + 1] = 2394202,
- /* +/- 4G => 0.001197101 m/s-2 */
- [2 * INV_ICM42686_ACCEL_FS_4G] = 0,
- [2 * INV_ICM42686_ACCEL_FS_4G + 1] = 1197101,
- /* +/- 2G => 0.000598550 m/s-2 */
- [2 * INV_ICM42686_ACCEL_FS_2G] = 0,
- [2 * INV_ICM42686_ACCEL_FS_2G + 1] = 598550,
- };
- static int inv_icm42600_accel_read_scale(struct iio_dev *indio_dev,
- int *val, int *val2)
- {
- struct inv_icm42600_state *st = iio_device_get_drvdata(indio_dev);
- struct inv_icm42600_sensor_state *accel_st = iio_priv(indio_dev);
- unsigned int idx;
- idx = st->conf.accel.fs;
- *val = accel_st->scales[2 * idx];
- *val2 = accel_st->scales[2 * idx + 1];
- return IIO_VAL_INT_PLUS_NANO;
- }
- static int inv_icm42600_accel_write_scale(struct iio_dev *indio_dev,
- int val, int val2)
- {
- struct inv_icm42600_state *st = iio_device_get_drvdata(indio_dev);
- struct inv_icm42600_sensor_state *accel_st = iio_priv(indio_dev);
- struct device *dev = regmap_get_device(st->map);
- unsigned int idx;
- struct inv_icm42600_sensor_conf conf = INV_ICM42600_SENSOR_CONF_INIT;
- int ret;
- for (idx = 0; idx < accel_st->scales_len; idx += 2) {
- if (val == accel_st->scales[idx] &&
- val2 == accel_st->scales[idx + 1])
- break;
- }
- if (idx >= accel_st->scales_len)
- return -EINVAL;
- conf.fs = idx / 2;
- pm_runtime_get_sync(dev);
- mutex_lock(&st->lock);
- ret = inv_icm42600_set_accel_conf(st, &conf, NULL);
- mutex_unlock(&st->lock);
- pm_runtime_mark_last_busy(dev);
- pm_runtime_put_autosuspend(dev);
- return ret;
- }
- /* IIO format int + micro */
- static const int inv_icm42600_accel_odr[] = {
- /* 1.5625Hz */
- 1, 562500,
- /* 3.125Hz */
- 3, 125000,
- /* 6.25Hz */
- 6, 250000,
- /* 12.5Hz */
- 12, 500000,
- /* 25Hz */
- 25, 0,
- /* 50Hz */
- 50, 0,
- /* 100Hz */
- 100, 0,
- /* 200Hz */
- 200, 0,
- /* 1kHz */
- 1000, 0,
- /* 2kHz */
- 2000, 0,
- /* 4kHz */
- 4000, 0,
- };
- static const int inv_icm42600_accel_odr_conv[] = {
- INV_ICM42600_ODR_1_5625HZ_LP,
- INV_ICM42600_ODR_3_125HZ_LP,
- INV_ICM42600_ODR_6_25HZ_LP,
- INV_ICM42600_ODR_12_5HZ,
- INV_ICM42600_ODR_25HZ,
- INV_ICM42600_ODR_50HZ,
- INV_ICM42600_ODR_100HZ,
- INV_ICM42600_ODR_200HZ,
- INV_ICM42600_ODR_1KHZ_LN,
- INV_ICM42600_ODR_2KHZ_LN,
- INV_ICM42600_ODR_4KHZ_LN,
- };
- static int inv_icm42600_accel_read_odr(struct inv_icm42600_state *st,
- int *val, int *val2)
- {
- unsigned int odr;
- unsigned int i;
- odr = st->conf.accel.odr;
- for (i = 0; i < ARRAY_SIZE(inv_icm42600_accel_odr_conv); ++i) {
- if (inv_icm42600_accel_odr_conv[i] == odr)
- break;
- }
- if (i >= ARRAY_SIZE(inv_icm42600_accel_odr_conv))
- return -EINVAL;
- *val = inv_icm42600_accel_odr[2 * i];
- *val2 = inv_icm42600_accel_odr[2 * i + 1];
- return IIO_VAL_INT_PLUS_MICRO;
- }
- static int inv_icm42600_accel_write_odr(struct iio_dev *indio_dev,
- int val, int val2)
- {
- struct inv_icm42600_state *st = iio_device_get_drvdata(indio_dev);
- struct inv_icm42600_sensor_state *accel_st = iio_priv(indio_dev);
- struct inv_sensors_timestamp *ts = &accel_st->ts;
- struct device *dev = regmap_get_device(st->map);
- unsigned int idx;
- struct inv_icm42600_sensor_conf conf = INV_ICM42600_SENSOR_CONF_INIT;
- int ret;
- for (idx = 0; idx < ARRAY_SIZE(inv_icm42600_accel_odr); idx += 2) {
- if (val == inv_icm42600_accel_odr[idx] &&
- val2 == inv_icm42600_accel_odr[idx + 1])
- break;
- }
- if (idx >= ARRAY_SIZE(inv_icm42600_accel_odr))
- return -EINVAL;
- conf.odr = inv_icm42600_accel_odr_conv[idx / 2];
- pm_runtime_get_sync(dev);
- mutex_lock(&st->lock);
- ret = inv_sensors_timestamp_update_odr(ts, inv_icm42600_odr_to_period(conf.odr),
- iio_buffer_enabled(indio_dev));
- if (ret)
- goto out_unlock;
- ret = inv_icm42600_set_accel_conf(st, &conf, NULL);
- if (ret)
- goto out_unlock;
- inv_icm42600_buffer_update_fifo_period(st);
- inv_icm42600_buffer_update_watermark(st);
- out_unlock:
- mutex_unlock(&st->lock);
- pm_runtime_mark_last_busy(dev);
- pm_runtime_put_autosuspend(dev);
- return ret;
- }
- /*
- * Calibration bias values, IIO range format int + micro.
- * Value is limited to +/-1g coded on 12 bits signed. Step is 0.5mg.
- */
- static int inv_icm42600_accel_calibbias[] = {
- -10, 42010, /* min: -10.042010 m/s² */
- 0, 4903, /* step: 0.004903 m/s² */
- 10, 37106, /* max: 10.037106 m/s² */
- };
- static int inv_icm42600_accel_read_offset(struct inv_icm42600_state *st,
- struct iio_chan_spec const *chan,
- int *val, int *val2)
- {
- struct device *dev = regmap_get_device(st->map);
- s64 val64;
- s32 bias;
- unsigned int reg;
- s16 offset;
- u8 data[2];
- int ret;
- if (chan->type != IIO_ACCEL)
- return -EINVAL;
- switch (chan->channel2) {
- case IIO_MOD_X:
- reg = INV_ICM42600_REG_OFFSET_USER4;
- break;
- case IIO_MOD_Y:
- reg = INV_ICM42600_REG_OFFSET_USER6;
- break;
- case IIO_MOD_Z:
- reg = INV_ICM42600_REG_OFFSET_USER7;
- break;
- default:
- return -EINVAL;
- }
- pm_runtime_get_sync(dev);
- mutex_lock(&st->lock);
- ret = regmap_bulk_read(st->map, reg, st->buffer, sizeof(data));
- memcpy(data, st->buffer, sizeof(data));
- mutex_unlock(&st->lock);
- pm_runtime_mark_last_busy(dev);
- pm_runtime_put_autosuspend(dev);
- if (ret)
- return ret;
- /* 12 bits signed value */
- switch (chan->channel2) {
- case IIO_MOD_X:
- offset = sign_extend32(((data[0] & 0xF0) << 4) | data[1], 11);
- break;
- case IIO_MOD_Y:
- offset = sign_extend32(((data[1] & 0x0F) << 8) | data[0], 11);
- break;
- case IIO_MOD_Z:
- offset = sign_extend32(((data[0] & 0xF0) << 4) | data[1], 11);
- break;
- default:
- return -EINVAL;
- }
- /*
- * convert raw offset to g then to m/s²
- * 12 bits signed raw step 0.5mg to g: 5 / 10000
- * g to m/s²: 9.806650
- * result in micro (1000000)
- * (offset * 5 * 9.806650 * 1000000) / 10000
- */
- val64 = (s64)offset * 5LL * 9806650LL;
- /* for rounding, add + or - divisor (10000) divided by 2 */
- if (val64 >= 0)
- val64 += 10000LL / 2LL;
- else
- val64 -= 10000LL / 2LL;
- bias = div_s64(val64, 10000L);
- *val = bias / 1000000L;
- *val2 = bias % 1000000L;
- return IIO_VAL_INT_PLUS_MICRO;
- }
- static int inv_icm42600_accel_write_offset(struct inv_icm42600_state *st,
- struct iio_chan_spec const *chan,
- int val, int val2)
- {
- struct device *dev = regmap_get_device(st->map);
- s64 val64;
- s32 min, max;
- unsigned int reg, regval;
- s16 offset;
- int ret;
- if (chan->type != IIO_ACCEL)
- return -EINVAL;
- switch (chan->channel2) {
- case IIO_MOD_X:
- reg = INV_ICM42600_REG_OFFSET_USER4;
- break;
- case IIO_MOD_Y:
- reg = INV_ICM42600_REG_OFFSET_USER6;
- break;
- case IIO_MOD_Z:
- reg = INV_ICM42600_REG_OFFSET_USER7;
- break;
- default:
- return -EINVAL;
- }
- /* inv_icm42600_accel_calibbias: min - step - max in micro */
- min = inv_icm42600_accel_calibbias[0] * 1000000L +
- inv_icm42600_accel_calibbias[1];
- max = inv_icm42600_accel_calibbias[4] * 1000000L +
- inv_icm42600_accel_calibbias[5];
- val64 = (s64)val * 1000000LL + (s64)val2;
- if (val64 < min || val64 > max)
- return -EINVAL;
- /*
- * convert m/s² to g then to raw value
- * m/s² to g: 1 / 9.806650
- * g to raw 12 bits signed, step 0.5mg: 10000 / 5
- * val in micro (1000000)
- * val * 10000 / (9.806650 * 1000000 * 5)
- */
- val64 = val64 * 10000LL;
- /* for rounding, add + or - divisor (9806650 * 5) divided by 2 */
- if (val64 >= 0)
- val64 += 9806650 * 5 / 2;
- else
- val64 -= 9806650 * 5 / 2;
- offset = div_s64(val64, 9806650 * 5);
- /* clamp value limited to 12 bits signed */
- if (offset < -2048)
- offset = -2048;
- else if (offset > 2047)
- offset = 2047;
- pm_runtime_get_sync(dev);
- mutex_lock(&st->lock);
- switch (chan->channel2) {
- case IIO_MOD_X:
- /* OFFSET_USER4 register is shared */
- ret = regmap_read(st->map, INV_ICM42600_REG_OFFSET_USER4,
- ®val);
- if (ret)
- goto out_unlock;
- st->buffer[0] = ((offset & 0xF00) >> 4) | (regval & 0x0F);
- st->buffer[1] = offset & 0xFF;
- break;
- case IIO_MOD_Y:
- /* OFFSET_USER7 register is shared */
- ret = regmap_read(st->map, INV_ICM42600_REG_OFFSET_USER7,
- ®val);
- if (ret)
- goto out_unlock;
- st->buffer[0] = offset & 0xFF;
- st->buffer[1] = ((offset & 0xF00) >> 8) | (regval & 0xF0);
- break;
- case IIO_MOD_Z:
- /* OFFSET_USER7 register is shared */
- ret = regmap_read(st->map, INV_ICM42600_REG_OFFSET_USER7,
- ®val);
- if (ret)
- goto out_unlock;
- st->buffer[0] = ((offset & 0xF00) >> 4) | (regval & 0x0F);
- st->buffer[1] = offset & 0xFF;
- break;
- default:
- ret = -EINVAL;
- goto out_unlock;
- }
- ret = regmap_bulk_write(st->map, reg, st->buffer, 2);
- out_unlock:
- mutex_unlock(&st->lock);
- pm_runtime_mark_last_busy(dev);
- pm_runtime_put_autosuspend(dev);
- return ret;
- }
- static int inv_icm42600_accel_read_raw(struct iio_dev *indio_dev,
- struct iio_chan_spec const *chan,
- int *val, int *val2, long mask)
- {
- struct inv_icm42600_state *st = iio_device_get_drvdata(indio_dev);
- s16 data;
- int ret;
- switch (chan->type) {
- case IIO_ACCEL:
- break;
- case IIO_TEMP:
- return inv_icm42600_temp_read_raw(indio_dev, chan, val, val2, mask);
- default:
- return -EINVAL;
- }
- switch (mask) {
- case IIO_CHAN_INFO_RAW:
- ret = iio_device_claim_direct_mode(indio_dev);
- if (ret)
- return ret;
- ret = inv_icm42600_accel_read_sensor(indio_dev, chan, &data);
- iio_device_release_direct_mode(indio_dev);
- if (ret)
- return ret;
- *val = data;
- return IIO_VAL_INT;
- case IIO_CHAN_INFO_SCALE:
- return inv_icm42600_accel_read_scale(indio_dev, val, val2);
- case IIO_CHAN_INFO_SAMP_FREQ:
- return inv_icm42600_accel_read_odr(st, val, val2);
- case IIO_CHAN_INFO_CALIBBIAS:
- return inv_icm42600_accel_read_offset(st, chan, val, val2);
- default:
- return -EINVAL;
- }
- }
- static int inv_icm42600_accel_read_avail(struct iio_dev *indio_dev,
- struct iio_chan_spec const *chan,
- const int **vals,
- int *type, int *length, long mask)
- {
- struct inv_icm42600_sensor_state *accel_st = iio_priv(indio_dev);
- if (chan->type != IIO_ACCEL)
- return -EINVAL;
- switch (mask) {
- case IIO_CHAN_INFO_SCALE:
- *vals = accel_st->scales;
- *type = IIO_VAL_INT_PLUS_NANO;
- *length = accel_st->scales_len;
- return IIO_AVAIL_LIST;
- case IIO_CHAN_INFO_SAMP_FREQ:
- *vals = inv_icm42600_accel_odr;
- *type = IIO_VAL_INT_PLUS_MICRO;
- *length = ARRAY_SIZE(inv_icm42600_accel_odr);
- return IIO_AVAIL_LIST;
- case IIO_CHAN_INFO_CALIBBIAS:
- *vals = inv_icm42600_accel_calibbias;
- *type = IIO_VAL_INT_PLUS_MICRO;
- return IIO_AVAIL_RANGE;
- default:
- return -EINVAL;
- }
- }
- static int inv_icm42600_accel_write_raw(struct iio_dev *indio_dev,
- struct iio_chan_spec const *chan,
- int val, int val2, long mask)
- {
- struct inv_icm42600_state *st = iio_device_get_drvdata(indio_dev);
- int ret;
- if (chan->type != IIO_ACCEL)
- return -EINVAL;
- switch (mask) {
- case IIO_CHAN_INFO_SCALE:
- ret = iio_device_claim_direct_mode(indio_dev);
- if (ret)
- return ret;
- ret = inv_icm42600_accel_write_scale(indio_dev, val, val2);
- iio_device_release_direct_mode(indio_dev);
- return ret;
- case IIO_CHAN_INFO_SAMP_FREQ:
- return inv_icm42600_accel_write_odr(indio_dev, val, val2);
- case IIO_CHAN_INFO_CALIBBIAS:
- ret = iio_device_claim_direct_mode(indio_dev);
- if (ret)
- return ret;
- ret = inv_icm42600_accel_write_offset(st, chan, val, val2);
- iio_device_release_direct_mode(indio_dev);
- return ret;
- default:
- return -EINVAL;
- }
- }
- static int inv_icm42600_accel_write_raw_get_fmt(struct iio_dev *indio_dev,
- struct iio_chan_spec const *chan,
- long mask)
- {
- if (chan->type != IIO_ACCEL)
- return -EINVAL;
- switch (mask) {
- case IIO_CHAN_INFO_SCALE:
- return IIO_VAL_INT_PLUS_NANO;
- case IIO_CHAN_INFO_SAMP_FREQ:
- return IIO_VAL_INT_PLUS_MICRO;
- case IIO_CHAN_INFO_CALIBBIAS:
- return IIO_VAL_INT_PLUS_MICRO;
- default:
- return -EINVAL;
- }
- }
- static int inv_icm42600_accel_hwfifo_set_watermark(struct iio_dev *indio_dev,
- unsigned int val)
- {
- struct inv_icm42600_state *st = iio_device_get_drvdata(indio_dev);
- int ret;
- mutex_lock(&st->lock);
- st->fifo.watermark.accel = val;
- ret = inv_icm42600_buffer_update_watermark(st);
- mutex_unlock(&st->lock);
- return ret;
- }
- static int inv_icm42600_accel_hwfifo_flush(struct iio_dev *indio_dev,
- unsigned int count)
- {
- struct inv_icm42600_state *st = iio_device_get_drvdata(indio_dev);
- int ret;
- if (count == 0)
- return 0;
- mutex_lock(&st->lock);
- ret = inv_icm42600_buffer_hwfifo_flush(st, count);
- if (!ret)
- ret = st->fifo.nb.accel;
- mutex_unlock(&st->lock);
- return ret;
- }
- static const struct iio_info inv_icm42600_accel_info = {
- .read_raw = inv_icm42600_accel_read_raw,
- .read_avail = inv_icm42600_accel_read_avail,
- .write_raw = inv_icm42600_accel_write_raw,
- .write_raw_get_fmt = inv_icm42600_accel_write_raw_get_fmt,
- .debugfs_reg_access = inv_icm42600_debugfs_reg,
- .update_scan_mode = inv_icm42600_accel_update_scan_mode,
- .hwfifo_set_watermark = inv_icm42600_accel_hwfifo_set_watermark,
- .hwfifo_flush_to_buffer = inv_icm42600_accel_hwfifo_flush,
- };
- struct iio_dev *inv_icm42600_accel_init(struct inv_icm42600_state *st)
- {
- struct device *dev = regmap_get_device(st->map);
- const char *name;
- struct inv_icm42600_sensor_state *accel_st;
- struct inv_sensors_timestamp_chip ts_chip;
- struct iio_dev *indio_dev;
- int ret;
- name = devm_kasprintf(dev, GFP_KERNEL, "%s-accel", st->name);
- if (!name)
- return ERR_PTR(-ENOMEM);
- indio_dev = devm_iio_device_alloc(dev, sizeof(*accel_st));
- if (!indio_dev)
- return ERR_PTR(-ENOMEM);
- accel_st = iio_priv(indio_dev);
- switch (st->chip) {
- case INV_CHIP_ICM42686:
- accel_st->scales = inv_icm42686_accel_scale;
- accel_st->scales_len = ARRAY_SIZE(inv_icm42686_accel_scale);
- break;
- default:
- accel_st->scales = inv_icm42600_accel_scale;
- accel_st->scales_len = ARRAY_SIZE(inv_icm42600_accel_scale);
- break;
- }
- /* low-power by default at init */
- accel_st->power_mode = INV_ICM42600_SENSOR_MODE_LOW_POWER;
- accel_st->filter = INV_ICM42600_FILTER_AVG_16X;
- /*
- * clock period is 32kHz (31250ns)
- * jitter is +/- 2% (20 per mille)
- */
- ts_chip.clock_period = 31250;
- ts_chip.jitter = 20;
- ts_chip.init_period = inv_icm42600_odr_to_period(st->conf.accel.odr);
- inv_sensors_timestamp_init(&accel_st->ts, &ts_chip);
- iio_device_set_drvdata(indio_dev, st);
- indio_dev->name = name;
- indio_dev->info = &inv_icm42600_accel_info;
- indio_dev->modes = INDIO_DIRECT_MODE;
- indio_dev->channels = inv_icm42600_accel_channels;
- indio_dev->num_channels = ARRAY_SIZE(inv_icm42600_accel_channels);
- indio_dev->available_scan_masks = inv_icm42600_accel_scan_masks;
- ret = devm_iio_kfifo_buffer_setup(dev, indio_dev,
- &inv_icm42600_buffer_ops);
- if (ret)
- return ERR_PTR(ret);
- ret = devm_iio_device_register(dev, indio_dev);
- if (ret)
- return ERR_PTR(ret);
- return indio_dev;
- }
- int inv_icm42600_accel_parse_fifo(struct iio_dev *indio_dev)
- {
- struct inv_icm42600_state *st = iio_device_get_drvdata(indio_dev);
- struct inv_icm42600_sensor_state *accel_st = iio_priv(indio_dev);
- struct inv_sensors_timestamp *ts = &accel_st->ts;
- ssize_t i, size;
- unsigned int no;
- const void *accel, *gyro, *timestamp;
- const int8_t *temp;
- unsigned int odr;
- int64_t ts_val;
- /* buffer is copied to userspace, zeroing it to avoid any data leak */
- struct inv_icm42600_accel_buffer buffer = { };
- /* parse all fifo packets */
- for (i = 0, no = 0; i < st->fifo.count; i += size, ++no) {
- size = inv_icm42600_fifo_decode_packet(&st->fifo.data[i],
- &accel, &gyro, &temp, ×tamp, &odr);
- /* quit if error or FIFO is empty */
- if (size <= 0)
- return size;
- /* skip packet if no accel data or data is invalid */
- if (accel == NULL || !inv_icm42600_fifo_is_data_valid(accel))
- continue;
- /* update odr */
- if (odr & INV_ICM42600_SENSOR_ACCEL)
- inv_sensors_timestamp_apply_odr(ts, st->fifo.period,
- st->fifo.nb.total, no);
- memcpy(&buffer.accel, accel, sizeof(buffer.accel));
- /* convert 8 bits FIFO temperature in high resolution format */
- buffer.temp = temp ? (*temp * 64) : 0;
- ts_val = inv_sensors_timestamp_pop(ts);
- iio_push_to_buffers_with_timestamp(indio_dev, &buffer, ts_val);
- }
- return 0;
- }
|