114 lines
3.2 KiB
Plaintext
114 lines
3.2 KiB
Plaintext
|
#
|
||
|
# sensor driver configuration
|
||
|
#
|
||
|
menuconfig INPUT_SENSOR
|
||
|
bool "Sensors"
|
||
|
help
|
||
|
Say Y here, and a list of supported sensor will be displayed.
|
||
|
This option doesn't affect the kernel.
|
||
|
|
||
|
If unsure, say Y.
|
||
|
|
||
|
if INPUT_SENSOR
|
||
|
config SENSORS_BMA250
|
||
|
tristate "BMA250 acceleration sensor support"
|
||
|
select I2C
|
||
|
depends on INPUT_SENSOR
|
||
|
default m
|
||
|
help
|
||
|
If you say yes here you get support for Bosch Sensortec's
|
||
|
acceleration sensors BMA250.
|
||
|
|
||
|
config SENSORS_SC7A30
|
||
|
tristate "SC7A30 3-Axis Orientation/Motion Detection Sensor Support"
|
||
|
select I2C
|
||
|
depends on INPUT_SENSOR
|
||
|
default m
|
||
|
help
|
||
|
If you say yes here you get support for the Freescale 3-Axis
|
||
|
Orientation/Motion Detection Sensor.
|
||
|
|
||
|
config SENSORS_MMA7660
|
||
|
tristate "MMA7660 3-Axis Orientation/Motion Detection Sensor Support"
|
||
|
select I2C
|
||
|
depends on INPUT_SENSOR
|
||
|
default m
|
||
|
help
|
||
|
If you say yes here you get support for the Freescale 3-Axis
|
||
|
Orientation/Motion Detection Sensor.
|
||
|
|
||
|
config SENSORS_MIR3DA
|
||
|
tristate "MIR3DA 2-Axis Orientation/Motion Detection Sensor Support"
|
||
|
select I2C
|
||
|
depends on INPUT_SENSOR
|
||
|
default m
|
||
|
help
|
||
|
If you say yes here you get support for the Freescale 3-Axis
|
||
|
Orientation/Motion Detection Sensor.
|
||
|
|
||
|
config SENSORS_MXC622X
|
||
|
tristate "MXC622X 2-Axis Orientation/Motion Detection Sensor Support"
|
||
|
select I2C
|
||
|
depends on INPUT_SENSOR
|
||
|
default m
|
||
|
help
|
||
|
If you say yes here you get support for the MXC622X 2-Axis
|
||
|
Orientation/Motion Detection Sensor.
|
||
|
|
||
|
config SENSORS_MMA8452
|
||
|
tristate "MMA8452 3-Axis Orientation/Motion Detection Sensor Support"
|
||
|
select I2C
|
||
|
depends on INPUT_SENSOR
|
||
|
default m
|
||
|
help
|
||
|
If you say yes here you get support for the Freescale 3-Axis
|
||
|
Orientation/Motion Detection Sensor.
|
||
|
|
||
|
config SENSORS_MMA865X
|
||
|
tristate "MMA865X 3-Axis Orientation/Motion Detection Sensor Support"
|
||
|
select I2C
|
||
|
depends on INPUT_SENSOR
|
||
|
default m
|
||
|
help
|
||
|
If you say yes here you get support for the Freescale 3-Axis
|
||
|
Orientation/Motion Detection Sensor.
|
||
|
|
||
|
config SENSORS_MC32X0
|
||
|
tristate "MC32X0 Orientation/Motion Detection Sensor Support"
|
||
|
select I2C
|
||
|
depends on INPUT_SENSOR
|
||
|
default m
|
||
|
help
|
||
|
If you say yes here you get support for the Freescale 3-Axis
|
||
|
Orientation/Motion Detection Sensor.
|
||
|
|
||
|
config SENSORS_GPADC
|
||
|
tristate "SUNXI GPADC"
|
||
|
depends on INPUT_SENSOR
|
||
|
default n
|
||
|
help
|
||
|
If you say yes here you get support for the gpadc collect analog input
|
||
|
|
||
|
config SENSORS_TPADC
|
||
|
tristate "SUNXI TPADC"
|
||
|
depends on INPUT_SENSOR && ARCH_SUN8IW11P1
|
||
|
default n
|
||
|
help
|
||
|
If you say yes here you get support for the tpadc collect analog input
|
||
|
|
||
|
config SENSORS_GPADC_TEST
|
||
|
tristate "SUNXI GPADC test"
|
||
|
depends on SENSORS_GPADC
|
||
|
default n
|
||
|
help
|
||
|
If you say yes here you get support for the gpadc test sample
|
||
|
|
||
|
config KEY_GPIO
|
||
|
bool "allwinnner KEY GPIO support"
|
||
|
depends on SENSORS_GPADC
|
||
|
default n
|
||
|
help
|
||
|
|
||
|
endif
|
||
|
source "drivers/input/sensor/bma253/Kconfig"
|