mirror of
https://github.com/torvalds/linux.git
synced 2026-09-24 06:24:02 +02:00
iio: imu: inv_icm42607: Add Gyroscope to icm42607
Add gyroscope functions to the icm42607 driver. Signed-off-by: Chris Morgan <macromorgan@hotmail.com> Signed-off-by: Jonathan Cameron <jonathan.cameron@oss.qualcomm.com>
This commit is contained in:
parent
cbf992414e
commit
55abd7edfb
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
obj-$(CONFIG_INV_ICM42607) += inv-icm42607.o
|
||||
inv-icm42607-y += inv_icm42607_core.o
|
||||
inv-icm42607-y += inv_icm42607_gyro.o
|
||||
inv-icm42607-y += inv_icm42607_accel.o
|
||||
|
||||
obj-$(CONFIG_INV_ICM42607_I2C) += inv-icm42607-i2c.o
|
||||
|
|
|
|||
|
|
@ -138,6 +138,7 @@ struct inv_icm42607_hw {
|
|||
* @lock: lock for serializing multiple registers access.
|
||||
* @map: regmap pointer.
|
||||
* @indio_accel: accelerometer IIO device.
|
||||
* @indio_gyro: gyroscope IIO device.
|
||||
* @vddio_supply: I/O voltage regulator for the chip.
|
||||
* @vddio_en: I/O voltage status for runtime PM.
|
||||
* @conf: chip sensors configurations.
|
||||
|
|
@ -148,6 +149,7 @@ struct inv_icm42607_state {
|
|||
struct mutex lock;
|
||||
struct regmap *map;
|
||||
struct iio_dev *indio_accel;
|
||||
struct iio_dev *indio_gyro;
|
||||
struct regulator *vddio_supply;
|
||||
bool vddio_en;
|
||||
struct inv_icm42607_conf conf;
|
||||
|
|
@ -412,6 +414,8 @@ int inv_icm42607_core_probe(struct regmap *regmap,
|
|||
const struct inv_icm42607_hw *hw,
|
||||
inv_icm42607_bus_setup bus_setup);
|
||||
|
||||
struct iio_dev *inv_icm42607_gyro_init(struct inv_icm42607_state *st);
|
||||
|
||||
struct iio_dev *inv_icm42607_accel_init(struct inv_icm42607_state *st);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -635,6 +635,11 @@ int inv_icm42607_core_probe(struct regmap *regmap,
|
|||
if (IS_ERR(st->indio_accel))
|
||||
return PTR_ERR(st->indio_accel);
|
||||
|
||||
/* Initialize IIO device for Gyro */
|
||||
st->indio_gyro = inv_icm42607_gyro_init(st);
|
||||
if (IS_ERR(st->indio_gyro))
|
||||
return PTR_ERR(st->indio_gyro);
|
||||
|
||||
return 0;
|
||||
}
|
||||
EXPORT_SYMBOL_NS_GPL(inv_icm42607_core_probe, "IIO_ICM42607");
|
||||
|
|
|
|||
305
drivers/iio/imu/inv_icm42607/inv_icm42607_gyro.c
Normal file
305
drivers/iio/imu/inv_icm42607/inv_icm42607_gyro.c
Normal file
|
|
@ -0,0 +1,305 @@
|
|||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
/*
|
||||
* Copyright (C) 2026 InvenSense, Inc.
|
||||
*/
|
||||
|
||||
#include <linux/array_size.h>
|
||||
#include <linux/bits.h>
|
||||
#include <linux/cleanup.h>
|
||||
#include <linux/device/devres.h>
|
||||
#include <linux/err.h>
|
||||
#include <linux/iio/iio.h>
|
||||
#include <linux/mutex.h>
|
||||
#include <linux/pm_runtime.h>
|
||||
#include <linux/regmap.h>
|
||||
#include <linux/types.h>
|
||||
|
||||
#include "inv_icm42607.h"
|
||||
|
||||
#define INV_ICM42607_GYRO_CHAN(_modifier, _index, _ext_info) \
|
||||
{ \
|
||||
.type = IIO_ANGL_VEL, \
|
||||
.modified = 1, \
|
||||
.channel2 = _modifier, \
|
||||
.info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
|
||||
.info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE), \
|
||||
.info_mask_shared_by_type_available = BIT(IIO_CHAN_INFO_SCALE), \
|
||||
.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_icm42607_gyro_scan {
|
||||
INV_ICM42607_GYRO_SCAN_X,
|
||||
INV_ICM42607_GYRO_SCAN_Y,
|
||||
INV_ICM42607_GYRO_SCAN_Z,
|
||||
};
|
||||
|
||||
static const struct iio_chan_spec_ext_info inv_icm42607_gyro_ext_infos[] = {
|
||||
IIO_MOUNT_MATRIX(IIO_SHARED_BY_ALL, inv_icm42607_get_mount_matrix),
|
||||
{ }
|
||||
};
|
||||
|
||||
static const struct iio_chan_spec inv_icm42607_gyro_channels[] = {
|
||||
INV_ICM42607_GYRO_CHAN(IIO_MOD_X, INV_ICM42607_GYRO_SCAN_X,
|
||||
inv_icm42607_gyro_ext_infos),
|
||||
INV_ICM42607_GYRO_CHAN(IIO_MOD_Y, INV_ICM42607_GYRO_SCAN_Y,
|
||||
inv_icm42607_gyro_ext_infos),
|
||||
INV_ICM42607_GYRO_CHAN(IIO_MOD_Z, INV_ICM42607_GYRO_SCAN_Z,
|
||||
inv_icm42607_gyro_ext_infos),
|
||||
};
|
||||
|
||||
static const int inv_icm42607_gyro_scale_nano[][2] = {
|
||||
[INV_ICM42607_GYRO_FS_2000DPS] = { 0, 1065264 },
|
||||
[INV_ICM42607_GYRO_FS_1000DPS] = { 0, 532632 },
|
||||
[INV_ICM42607_GYRO_FS_500DPS] = { 0, 266316 },
|
||||
[INV_ICM42607_GYRO_FS_250DPS] = { 0, 133158 },
|
||||
};
|
||||
|
||||
static int inv_icm42607_gyro_read_scale(struct iio_dev *indio_dev,
|
||||
int *val, int *val2)
|
||||
{
|
||||
struct inv_icm42607_state *st = iio_device_get_drvdata(indio_dev);
|
||||
unsigned int idx;
|
||||
|
||||
guard(mutex)(&st->lock);
|
||||
|
||||
idx = st->conf.gyro.fs;
|
||||
|
||||
*val = inv_icm42607_gyro_scale_nano[idx][0];
|
||||
*val2 = inv_icm42607_gyro_scale_nano[idx][1];
|
||||
return IIO_VAL_INT_PLUS_NANO;
|
||||
}
|
||||
|
||||
static int inv_icm42607_gyro_write_scale(struct iio_dev *indio_dev,
|
||||
int val, int val2)
|
||||
{
|
||||
struct inv_icm42607_state *st = iio_device_get_drvdata(indio_dev);
|
||||
struct device *dev = regmap_get_device(st->map);
|
||||
unsigned int idx;
|
||||
struct inv_icm42607_sensor_conf conf = INV_ICM42607_SENSOR_CONF_INIT;
|
||||
size_t scales_len = ARRAY_SIZE(inv_icm42607_gyro_scale_nano);
|
||||
int ret;
|
||||
|
||||
for (idx = 0; idx < scales_len; idx++) {
|
||||
if (val == inv_icm42607_gyro_scale_nano[idx][0] &&
|
||||
val2 == inv_icm42607_gyro_scale_nano[idx][1])
|
||||
break;
|
||||
}
|
||||
if (idx == scales_len)
|
||||
return -EINVAL;
|
||||
|
||||
conf.fs = idx;
|
||||
|
||||
PM_RUNTIME_ACQUIRE_AUTOSUSPEND(dev, pm);
|
||||
ret = PM_RUNTIME_ACQUIRE_ERR(&pm);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
guard(mutex)(&st->lock);
|
||||
|
||||
return inv_icm42607_set_sensor_conf(st, &conf, IIO_ANGL_VEL);
|
||||
}
|
||||
|
||||
/* IIO format int + micro , values 0-4 reserved. */
|
||||
static const int inv_icm42607_gyro_odr[][2] = {
|
||||
[INV_ICM42607_ODR_1600HZ] = { 1600, 0 },
|
||||
[INV_ICM42607_ODR_800HZ] = { 800, 0 },
|
||||
[INV_ICM42607_ODR_400HZ] = { 400, 0 },
|
||||
[INV_ICM42607_ODR_200HZ] = { 200, 0 },
|
||||
[INV_ICM42607_ODR_100HZ] = { 100, 0 },
|
||||
[INV_ICM42607_ODR_50HZ] = { 50, 0 },
|
||||
[INV_ICM42607_ODR_25HZ] = { 25, 0 },
|
||||
[INV_ICM42607_ODR_12_5HZ] = { 12, 500000 },
|
||||
};
|
||||
|
||||
static int inv_icm42607_gyro_read_odr(struct inv_icm42607_state *st,
|
||||
int *val, int *val2)
|
||||
{
|
||||
unsigned int odr;
|
||||
unsigned int i;
|
||||
|
||||
guard(mutex)(&st->lock);
|
||||
|
||||
odr = st->conf.gyro.odr;
|
||||
|
||||
for (i = INV_ICM42607_ODR_1600HZ; i < ARRAY_SIZE(inv_icm42607_gyro_odr); i++) {
|
||||
if (i == odr)
|
||||
break;
|
||||
}
|
||||
if (i == ARRAY_SIZE(inv_icm42607_gyro_odr))
|
||||
return -EINVAL;
|
||||
|
||||
*val = inv_icm42607_gyro_odr[i][0];
|
||||
*val2 = inv_icm42607_gyro_odr[i][1];
|
||||
|
||||
return IIO_VAL_INT_PLUS_MICRO;
|
||||
}
|
||||
|
||||
static int inv_icm42607_gyro_write_odr(struct iio_dev *indio_dev,
|
||||
int val, int val2)
|
||||
{
|
||||
struct inv_icm42607_state *st = iio_device_get_drvdata(indio_dev);
|
||||
struct device *dev = regmap_get_device(st->map);
|
||||
unsigned int idx;
|
||||
struct inv_icm42607_sensor_conf conf = INV_ICM42607_SENSOR_CONF_INIT;
|
||||
int ret;
|
||||
|
||||
for (idx = INV_ICM42607_ODR_1600HZ;
|
||||
idx < ARRAY_SIZE(inv_icm42607_gyro_odr); idx++) {
|
||||
if (val == inv_icm42607_gyro_odr[idx][0] &&
|
||||
val2 == inv_icm42607_gyro_odr[idx][1])
|
||||
break;
|
||||
}
|
||||
if (idx == ARRAY_SIZE(inv_icm42607_gyro_odr))
|
||||
return -EINVAL;
|
||||
|
||||
conf.odr = idx;
|
||||
|
||||
PM_RUNTIME_ACQUIRE_AUTOSUSPEND(dev, pm);
|
||||
ret = PM_RUNTIME_ACQUIRE_ERR(&pm);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
guard(mutex)(&st->lock);
|
||||
|
||||
return inv_icm42607_set_sensor_conf(st, &conf, IIO_ANGL_VEL);
|
||||
}
|
||||
|
||||
static int inv_icm42607_gyro_read_raw(struct iio_dev *indio_dev,
|
||||
struct iio_chan_spec const *chan,
|
||||
int *val, int *val2, long mask)
|
||||
{
|
||||
struct inv_icm42607_state *st = iio_device_get_drvdata(indio_dev);
|
||||
s16 data;
|
||||
int ret;
|
||||
|
||||
switch (chan->type) {
|
||||
case IIO_ANGL_VEL:
|
||||
break;
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
switch (mask) {
|
||||
case IIO_CHAN_INFO_RAW:
|
||||
ret = inv_icm42607_read_sensor(indio_dev, chan, &data);
|
||||
if (ret)
|
||||
return ret;
|
||||
*val = data;
|
||||
return IIO_VAL_INT;
|
||||
case IIO_CHAN_INFO_SCALE:
|
||||
return inv_icm42607_gyro_read_scale(indio_dev, val, val2);
|
||||
case IIO_CHAN_INFO_SAMP_FREQ:
|
||||
return inv_icm42607_gyro_read_odr(st, val, val2);
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
}
|
||||
|
||||
static int inv_icm42607_gyro_read_avail(struct iio_dev *indio_dev,
|
||||
struct iio_chan_spec const *chan,
|
||||
const int **vals,
|
||||
int *type, int *length, long mask)
|
||||
{
|
||||
switch (mask) {
|
||||
case IIO_CHAN_INFO_SCALE:
|
||||
if (chan->type != IIO_ANGL_VEL)
|
||||
return -EINVAL;
|
||||
*vals = (const int *)inv_icm42607_gyro_scale_nano;
|
||||
*type = IIO_VAL_INT_PLUS_NANO;
|
||||
*length = ARRAY_SIZE(inv_icm42607_gyro_scale_nano) * 2;
|
||||
return IIO_AVAIL_LIST;
|
||||
case IIO_CHAN_INFO_SAMP_FREQ:
|
||||
*vals = (const int *)inv_icm42607_gyro_odr[INV_ICM42607_ODR_1600HZ];
|
||||
*type = IIO_VAL_INT_PLUS_MICRO;
|
||||
*length = (ARRAY_SIZE(inv_icm42607_gyro_odr) -
|
||||
INV_ICM42607_ODR_1600HZ) * 2;
|
||||
return IIO_AVAIL_LIST;
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
}
|
||||
|
||||
static int inv_icm42607_gyro_write_raw(struct iio_dev *indio_dev,
|
||||
struct iio_chan_spec const *chan,
|
||||
int val, int val2, long mask)
|
||||
{
|
||||
int ret;
|
||||
|
||||
switch (mask) {
|
||||
case IIO_CHAN_INFO_SCALE:
|
||||
if (chan->type != IIO_ANGL_VEL)
|
||||
return -EINVAL;
|
||||
ret = inv_icm42607_gyro_write_scale(indio_dev, val, val2);
|
||||
return ret;
|
||||
case IIO_CHAN_INFO_SAMP_FREQ:
|
||||
return inv_icm42607_gyro_write_odr(indio_dev, val, val2);
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
}
|
||||
|
||||
static int inv_icm42607_gyro_write_raw_get_fmt(struct iio_dev *indio_dev,
|
||||
struct iio_chan_spec const *chan,
|
||||
long mask)
|
||||
{
|
||||
switch (mask) {
|
||||
case IIO_CHAN_INFO_SCALE:
|
||||
if (chan->type != IIO_ANGL_VEL)
|
||||
return -EINVAL;
|
||||
return IIO_VAL_INT_PLUS_NANO;
|
||||
case IIO_CHAN_INFO_SAMP_FREQ:
|
||||
return IIO_VAL_INT_PLUS_MICRO;
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
}
|
||||
|
||||
static const struct iio_info inv_icm42607_gyro_info = {
|
||||
.read_raw = inv_icm42607_gyro_read_raw,
|
||||
.read_avail = inv_icm42607_gyro_read_avail,
|
||||
.write_raw = inv_icm42607_gyro_write_raw,
|
||||
.write_raw_get_fmt = inv_icm42607_gyro_write_raw_get_fmt,
|
||||
};
|
||||
|
||||
struct iio_dev *inv_icm42607_gyro_init(struct inv_icm42607_state *st)
|
||||
{
|
||||
struct device *dev = regmap_get_device(st->map);
|
||||
const char *name;
|
||||
struct inv_icm42607_sensor_state *gyro_st;
|
||||
struct iio_dev *indio_dev;
|
||||
int ret;
|
||||
|
||||
name = devm_kasprintf(dev, GFP_KERNEL, "%s-gyro", st->hw->name);
|
||||
if (!name)
|
||||
return ERR_PTR(-ENOMEM);
|
||||
|
||||
indio_dev = devm_iio_device_alloc(dev, sizeof(*gyro_st));
|
||||
if (!indio_dev)
|
||||
return ERR_PTR(-ENOMEM);
|
||||
|
||||
gyro_st = iio_priv(indio_dev);
|
||||
gyro_st->power_mode = INV_ICM42607_SENSOR_MODE_LOW_NOISE;
|
||||
gyro_st->filter = INV_ICM42607_FILTER_BW_73HZ;
|
||||
|
||||
indio_dev->name = name;
|
||||
indio_dev->info = &inv_icm42607_gyro_info;
|
||||
indio_dev->modes = INDIO_DIRECT_MODE;
|
||||
indio_dev->channels = inv_icm42607_gyro_channels;
|
||||
indio_dev->num_channels = ARRAY_SIZE(inv_icm42607_gyro_channels);
|
||||
iio_device_set_drvdata(indio_dev, st);
|
||||
|
||||
ret = devm_iio_device_register(dev, indio_dev);
|
||||
if (ret)
|
||||
return ERR_PTR(ret);
|
||||
|
||||
return indio_dev;
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user