huangcm
2025-03-10 313d899ea76a728046c194ded35c2d20909cb707
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#
# 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 n
        help
          If you say yes here you get support for Bosch Sensortec's
          acceleration sensors BMA250.
 
config SENSORS_SC7A20
        tristate "SC7A20 3-Axis Orientation/Motion Detection Sensor Support"
        select I2C
        depends on INPUT_SENSOR
        default n
        help
          If you say yes here you get support for the Freescale 3-Axis
          Orientation/Motion Detection Sensor.
 
config SENSORS_SC7A30
        tristate "SC7A30 3-Axis Orientation/Motion Detection Sensor Support"
        select I2C
        depends on INPUT_SENSOR
        default n
        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 n
        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 n
   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 n
        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 n
        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 n
        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 n
   help
    If you say yes here you get support for the Freescale 3-Axis
    Orientation/Motion Detection Sensor.
 
config SENSORS_SC7660
        tristate "SC7660 Orientation/Motion Detection Sensor Support"
   select I2C
   depends on INPUT_SENSOR
   default n
   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"