mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 01:22:07 +00:00
2c8920fff1
ADXRS290 is a high performance MEMS pitch and roll (dual-axis in-plane) angular rate sensor (gyroscope) designed for use in stabilization applications. It also features an internal temperature sensor and programmable high-pass and low-pass filters. Add support for ADXRS290 in direct-access mode for now. Datasheet: https://www.analog.com/media/en/technical-documentation/data-sheets/ADXRS290.pdf Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com> Signed-off-by: Nishant Malpani <nish.malpani25@gmail.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
39 lines
1.3 KiB
Makefile
39 lines
1.3 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for industrial I/O gyroscope sensor drivers
|
|
#
|
|
|
|
# When adding new entries keep the list in alphabetical order
|
|
obj-$(CONFIG_ADIS16080) += adis16080.o
|
|
obj-$(CONFIG_ADIS16130) += adis16130.o
|
|
obj-$(CONFIG_ADIS16136) += adis16136.o
|
|
obj-$(CONFIG_ADIS16260) += adis16260.o
|
|
obj-$(CONFIG_ADXRS290) += adxrs290.o
|
|
obj-$(CONFIG_ADXRS450) += adxrs450.o
|
|
obj-$(CONFIG_BMG160) += bmg160_core.o
|
|
obj-$(CONFIG_BMG160_I2C) += bmg160_i2c.o
|
|
obj-$(CONFIG_BMG160_SPI) += bmg160_spi.o
|
|
obj-$(CONFIG_FXAS21002C) += fxas21002c_core.o
|
|
obj-$(CONFIG_FXAS21002C_I2C) += fxas21002c_i2c.o
|
|
obj-$(CONFIG_FXAS21002C_SPI) += fxas21002c_spi.o
|
|
|
|
obj-$(CONFIG_HID_SENSOR_GYRO_3D) += hid-sensor-gyro-3d.o
|
|
|
|
# Currently this is rolled into one module, split it if
|
|
# we ever create a separate SPI interface for MPU-3050
|
|
obj-$(CONFIG_MPU3050) += mpu3050.o
|
|
mpu3050-objs := mpu3050-core.o mpu3050-i2c.o
|
|
|
|
itg3200-y := itg3200_core.o
|
|
itg3200-$(CONFIG_IIO_BUFFER) += itg3200_buffer.o
|
|
obj-$(CONFIG_ITG3200) += itg3200.o
|
|
|
|
obj-$(CONFIG_IIO_SSP_SENSORS_COMMONS) += ssp_gyro_sensor.o
|
|
|
|
obj-$(CONFIG_IIO_ST_GYRO_3AXIS) += st_gyro.o
|
|
st_gyro-y := st_gyro_core.o
|
|
st_gyro-$(CONFIG_IIO_BUFFER) += st_gyro_buffer.o
|
|
|
|
obj-$(CONFIG_IIO_ST_GYRO_I2C_3AXIS) += st_gyro_i2c.o
|
|
obj-$(CONFIG_IIO_ST_GYRO_SPI_3AXIS) += st_gyro_spi.o
|