blob: 36464ebf99988ec18f67981767e09dbe27698ad7 (
plain)
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
|
#
# Sensor drivers configuration
#
menuconfig SENSORS_CORE
bool "Sensor devices"
help
Say Y here, and a list of sensors drivers will be displayed.
Everything that didn't fit into the other categories is here. This option
doesn't affect the kernel.
If unsure, say Y.
if SENSORS_CORE
config SENSORS_AK8975C
tristate "AK8975 compass support"
default n
depends on I2C
help
If you say yes here you get support for Asahi Kasei's
orientation sensor AK8975.
config SENSORS_AK8963C
tristate "AK8963 compass support"
default n
depends on I2C
help
If you say yes here you get support for Asahi Kasei's
orientation sensor AK8963.
config SENSORS_BMP180
depends on I2C && SYSFS
tristate "BMP180 digital pressure sensor"
default n
help
If you say yes here you get support for the Bosch Sensortec
BMP180 digital pressure sensor.
To compile this driver as a module, choose M here: the
module will be called bmp180.
config SENSORS_CM3663
depends on I2C
tristate "CM3663 ambient light and proximity input device"
default n
help
This option enables proximity & light sensors using cm3663 driver.
config SENSORS_PAS2M110
depends on I2C && GENERIC_GPIO
tristate "PAS2M110 ambient light and proximity input device"
default n
config SENSORS_BMA254
tristate "BMA254 Acceleration Sensor Driver"
depends on I2C
default n
help
If you say yes here you get support for Bosch-Sensortec's
BMA254 Acceleration Sensor.
config SENSORS_TAOS
depends on I2C
tristate "TAOS driver"
default n
help
If you say yes here you get support for TAOS's
TMD27723 proximity & light sensor using taos driver.
config SENSORS_GP2A
depends on I2C
tristate "GP2AP020A00F driver"
default n
help
This option enables proximity & light sensors using gp2ap020a00f driver.
config SENSORS_GP2A_ANALOG
depends on I2C
tristate "GP2A analog driver"
default n
help
This option enables proximity & light sensors using analog gp2a driver.
config SENSORS_CM36651
depends on I2C
tristate "CM36651 driver"
default n
help
Say Y here if you use cm36651.
This option enables proximity & RGB sensors using
Capella cm36651 device driver.
Say N here if you do not use cm36651.
config SENSORS_BH1721
depends on I2C
tristate "BH1721 driver"
default n
help
Say Y here if you use BH1721.
This option enables light sensor using
ROHM BH1721 device driver.
Say N here if you do not use BH1721.
config SENSORS_AL3201
depends on I2C
tristate "AL3201 driver"
default n
help
Say Y here if you use AL3201.
This option enables light sensor using
ROHM AL3201 device driver.
Say N here if you do not use AL3201.
config SENSORS_K2DH
tristate "K2DH acceleration sensor support"
depends on I2C
default n
help
Say Y here if you use K2DH.
This option enables accelerometer sensors using
STM K2DH in K2DH device driver.
Say N here if you do not use K2DH.
config SENSORS_K3DH
tristate "K3DH acceleration sensor support"
depends on I2C
default n
help
Driver for STMicroelectronic K3DH accelerometer.
config SENSOR_K3DH_INPUTDEV
bool "K3DH acceleration sensor input dev support"
depends on SENSORS_K3DH
default n
help
Say Y here if you use K3DH.
This option enables accelerometer sensor using
K3DH device driver.
Say N here if you do not use K3DH.
config SENSORS_K3G
tristate "K3G driver for s5pc210"
depends on I2C
default n
help
This option enables gyro sensors using K3G driver.
config SENSORS_LSM330DLC
depends on I2C
tristate "STMicro LSM330DLC driver"
default n
help
Driver for STMicro LSM330DLC
config SENSORS_LPS331
tristate "STMicro LPS331 driver"
default n
depends on I2C
help
Driver for STMicro LPS331
config SENSORS_YAS532
depends on I2C
tristate "yas532 Sensor Support"
default n
help
Say Y to enable YAS532 Magnetic Sensor support.
This allows control of supported Magnetic Sensor.
config SENSORS_YAS_ORI
depends on I2C
tristate "yas orientation Sensor Support"
default n
help
Say Y to enable YAS532 Magnetic Sensor support.
This allows control of supported Magnetic Sensor.
config INPUT_YAS_MAGNETOMETER_POSITION
int "YAS Geomagnetic Sensor Mounting Position on Board"
depends on I2C
default "0"
help
Chip mounting position (pin 1).
0: top, upper-left
1: top, upper-right
2: top, lower-right
3: top, lower-left
4: bottom, upper-left
5: bottom, upper-right
6: bottom, lower-right
7: bottom, lower-left
endif
|