/Linux-v6.1/drivers/iio/gyro/ |
D | st_gyro_spi.c | 22 * For old single-chip devices keep <device_name>-gyro to maintain 27 .compatible = "st,l3g4200d-gyro", 31 .compatible = "st,lsm330d-gyro", 35 .compatible = "st,lsm330dl-gyro", 39 .compatible = "st,lsm330dlc-gyro", 43 .compatible = "st,l3gd20-gyro", 47 .compatible = "st,l3gd20h-gyro", 51 .compatible = "st,l3g4is-gyro", 55 .compatible = "st,lsm330-gyro", 59 .compatible = "st,lsm9ds0-gyro", [all …]
|
D | st_gyro_i2c.c | 22 .compatible = "st,l3g4200d-gyro", 26 .compatible = "st,lsm330d-gyro", 30 .compatible = "st,lsm330dl-gyro", 34 .compatible = "st,lsm330dlc-gyro", 38 .compatible = "st,l3gd20-gyro", 42 .compatible = "st,l3gd20h-gyro", 46 .compatible = "st,l3g4is-gyro", 50 .compatible = "st,lsm330-gyro", 54 .compatible = "st,lsm9ds0-gyro", 112 .name = "st-gyro-i2c",
|
D | hid-sensor-gyro-3d.c | 27 struct hid_sensor_hub_attribute_info gyro[GYRO_3D_CHANNEL_MAX]; member 113 report_id = gyro_state->gyro[chan->scan_index].report_id; in gyro_3d_read_raw() 114 min = gyro_state->gyro[chan->scan_index].logical_minimum; in gyro_3d_read_raw() 257 &st->gyro[CHANNEL_SCAN_INDEX_X + i]); in gyro_3d_parse_report() 262 st->gyro[CHANNEL_SCAN_INDEX_X + i].size); in gyro_3d_parse_report() 265 st->gyro[0].index, in gyro_3d_parse_report() 266 st->gyro[0].report_id, in gyro_3d_parse_report() 267 st->gyro[1].index, st->gyro[1].report_id, in gyro_3d_parse_report() 268 st->gyro[2].index, st->gyro[2].report_id); in gyro_3d_parse_report() 272 &st->gyro[CHANNEL_SCAN_INDEX_X], in gyro_3d_parse_report()
|
D | Kconfig | 67 tristate "BOSCH BMG160 Gyro Sensor" 74 Say yes here to build support for BOSCH BMG160 Tri-axis Gyro Sensor 90 tristate "NXP FXAS21002C Gyro Sensor" 97 Say yes here to build support for NXP FXAS21002C Tri-axis Gyro
|
D | bmg160_spi.c | 57 MODULE_DESCRIPTION("BMG160 SPI Gyro driver");
|
D | Makefile | 20 obj-$(CONFIG_HID_SENSOR_GYRO_3D) += hid-sensor-gyro-3d.o
|
D | fxas21002c_i2c.c | 67 MODULE_DESCRIPTION("FXAS21002C I2C Gyro driver");
|
D | fxas21002c_spi.c | 68 MODULE_DESCRIPTION("FXAS21002C SPI Gyro driver");
|
D | bmg160_i2c.c | 81 MODULE_DESCRIPTION("BMG160 I2C Gyro driver");
|
/Linux-v6.1/drivers/iio/imu/inv_icm42600/ |
D | inv_icm42600_buffer.c | 37 struct inv_icm42600_fifo_sensor_data gyro; member 44 const void **gyro, const int8_t **temp, in inv_icm42600_fifo_decode_packet() argument 54 *gyro = NULL; in inv_icm42600_fifo_decode_packet() 68 /* accel + gyro */ in inv_icm42600_fifo_decode_packet() 72 *gyro = &pack2->gyro; in inv_icm42600_fifo_decode_packet() 81 *gyro = NULL; in inv_icm42600_fifo_decode_packet() 87 /* gyro only */ in inv_icm42600_fifo_decode_packet() 90 *gyro = &pack1->data; in inv_icm42600_fifo_decode_packet() 105 period_gyro = inv_icm42600_odr_to_period(st->conf.gyro.odr); in inv_icm42600_buffer_update_fifo_period() 187 * set for gyro and accel sensors. Since watermark is all about acceptable data [all …]
|
D | inv_icm42600_core.c | 54 .gyro = { 138 enum inv_icm42600_sensor_mode gyro, in inv_icm42600_set_pwr_mgmt0() argument 142 enum inv_icm42600_sensor_mode oldgyro = st->conf.gyro.mode; in inv_icm42600_set_pwr_mgmt0() 150 if (gyro == oldgyro && accel == oldaccel && temp == oldtemp) in inv_icm42600_set_pwr_mgmt0() 153 val = INV_ICM42600_PWR_MGMT0_GYRO(gyro) | in inv_icm42600_set_pwr_mgmt0() 161 st->conf.gyro.mode = gyro; in inv_icm42600_set_pwr_mgmt0() 179 if (gyro != oldgyro) { in inv_icm42600_set_pwr_mgmt0() 180 /* gyro startup time */ in inv_icm42600_set_pwr_mgmt0() 186 /* gyro stop time */ in inv_icm42600_set_pwr_mgmt0() 187 } else if (gyro == INV_ICM42600_SENSOR_MODE_OFF) { in inv_icm42600_set_pwr_mgmt0() [all …]
|
D | inv_icm42600_gyro.c | 78 struct inv_icm42600_fifo_sensor_data gyro; member 91 /* 3-axis gyro + temperature */ 120 /* enable gyro sensor */ in inv_icm42600_gyro_update_scan_mode() 178 /* enable gyro sensor */ in inv_icm42600_gyro_read_sensor() 184 /* read gyro register data */ in inv_icm42600_gyro_read_sensor() 233 idx = st->conf.gyro.fs; in inv_icm42600_gyro_read_scale() 307 odr = st->conf.gyro.odr; in inv_icm42600_gyro_read_odr() 678 st->fifo.watermark.gyro = val; in inv_icm42600_gyro_hwfifo_set_watermark() 699 ret = st->fifo.nb.gyro; in inv_icm42600_gyro_hwfifo_flush() 725 name = devm_kasprintf(dev, GFP_KERNEL, "%s-gyro", st->name); in inv_icm42600_gyro_init() [all …]
|
D | inv_icm42600_buffer.h | 23 * @watermark: watermark configuration values for accel and gyro. 25 * @nb: gyro, accel and total samples in the FIFO data buffer. 33 unsigned int gyro; member 38 size_t gyro; member 76 const void **gyro, const int8_t **temp,
|
D | inv_icm42600.h | 104 struct inv_icm42600_sensor_conf gyro; member 110 enum inv_icm42600_sensor_mode gyro; member 147 int64_t gyro; member
|
/Linux-v6.1/Documentation/devicetree/bindings/iio/ |
D | st,st-sensors.yaml | 55 - st,l3g4200d-gyro 56 - st,l3g4is-gyro 57 - st,l3gd20-gyro 58 - st,l3gd20h-gyro 59 - st,lsm330-gyro 60 - st,lsm330d-gyro 61 - st,lsm330dl-gyro 62 - st,lsm330dlc-gyro 63 - st,lsm9ds0-gyro 190 compatible = "st,l3g4200d-gyro";
|
/Linux-v6.1/drivers/iio/imu/inv_mpu6050/ |
D | inv_mpu_iio.h | 24 * @sample_rate_div: Divider applied to gyro output rate. 29 * @gyro_config: gyro config register. 33 * @raw_gyro: Address of first gyro register. 101 * @gyro_en: gyro engine enabled 105 * @gyro_fifo_enable: enable gyro data output 155 unsigned int gyro; member
|
D | inv_mpu_core.c | 25 * this is the gyro scale translated from dynamic range plus/minus 360 /* manage accel & gyro engines */ in inv_mpu6050_switch_engine() 383 /* switch clock to internal when turning gyro off */ in inv_mpu6050_switch_engine() 409 if (sleep < st->hw->startup_time.gyro) in inv_mpu6050_switch_engine() 410 sleep = st->hw->startup_time.gyro; in inv_mpu6050_switch_engine() 421 /* switch clock to PLL when turning gyro on */ in inv_mpu6050_switch_engine() 508 * Clock source: Gyro PLL 630 /* temperature sensor work only with accel and/or gyro */ in inv_mpu6050_read_channel_data() 1015 * In MPU6050, the two matrix are the same because gyro and accel in inv_attr_show() 1135 /* 3-axis gyro */ [all …]
|
/Linux-v6.1/include/linux/ |
D | hid-sensor-hub.h | 42 * @usage_id: Usage id for physical device, E.g. Gyro usage id. 43 * @attr_usage_id: Usage Id of a field, E.g. X-AXIS for a gyro. 119 * @usage_id: Usage id of the client (E.g. 0x200076 for Gyro). 133 * @usage_id: Usage id of the client (E.g. 0x200076 for Gyro).
|
/Linux-v6.1/arch/arm/boot/dts/ |
D | ste-href-tvk1281618-r2.dtsi | 98 * ST-Micro L3D4200D gyro that is connected to the same lines 119 * ST-Micro L3D4200D gyro that is connected to the same lines 156 * ST-Micro L3D4200D gyro that is connected to the same lines 168 compatible = "st,l3g4200d-gyro";
|
/Linux-v6.1/drivers/hid/amd-sfh-hid/hid_descriptor/ |
D | amd_sfh_hid_desc.c | 40 case gyro_idx: /* gyro */ in get_report_descriptor() 157 case gyro_idx: /* gyro */ in get_feature_report() 230 case gyro_idx: /* gyro */ in get_input_report()
|
/Linux-v6.1/Documentation/ABI/testing/ |
D | sysfs-bus-iio-gyro-bmg160 | 5 The BMG160 gyro kernel module provides an additional trigger,
|
/Linux-v6.1/Documentation/devicetree/bindings/iio/gyroscope/ |
D | adi,adxrs290.yaml | 49 gyro@0 {
|
/Linux-v6.1/drivers/iio/ |
D | Makefile | 27 obj-y += gyro/
|
/Linux-v6.1/Documentation/devicetree/bindings/iio/imu/ |
D | invensense,mpu6050.yaml | 7 title: InvenSense MPU-6050 Six-Axis (Gyro + Accelerometer) MEMS MotionTracking Device
|
/Linux-v6.1/drivers/iio/common/cros_ec_sensors/ |
D | cros_ec_sensors.c | 293 /* There is only enough room for accel and gyro in the io space */ in cros_ec_sensors_probe() 309 .name = "cros-ec-gyro",
|