mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-05 01:25:31 +07:00
a0701b6263
Add core support for the NXP fxas21002c Tri-axis gyroscope, using the iio subsystem. It supports PM operations, axis reading, temperature, scale factor of the axis, high pass and low pass filtering, and sampling frequency selection. It will have extras modules to support the communication over i2c and spi. Signed-off-by: Rui Miguel Silva <rui.silva@linaro.org> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
36 lines
1.2 KiB
Makefile
36 lines
1.2 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_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_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
|