blob: 8a91c9971558d9925a363a5693f204854ca100f7 [file] [log] [blame]
Jean Delvaread2f9312005-07-02 18:15:49 +02001#
Jean Delvare060b2f52006-06-12 21:55:28 +02002# Hardware monitoring chip drivers configuration
Jean Delvaread2f9312005-07-02 18:15:49 +02003#
4
Jan Engelhardt1d72acf2007-05-08 17:22:04 +02005menuconfig HWMON
Jean Delvaread2f9312005-07-02 18:15:49 +02006 tristate "Hardware Monitoring support"
Martin Schwidefskye25df122007-05-10 15:45:57 +02007 depends on HAS_IOMEM
Jean Delvaread2f9312005-07-02 18:15:49 +02008 default y
9 help
10 Hardware monitoring devices let you monitor the hardware health
11 of a system. Most modern motherboards include such a device. It
12 can include temperature sensors, voltage sensors, fan speed
13 sensors and various additional features such as the ability to
Mark M. Hoffman12364412005-07-15 21:38:08 -040014 control the speed of the fans. If you want this support you
15 should say Y here and also to the specific driver(s) for your
16 sensors chip(s) below.
17
Jean Delvare0d0001d2006-04-25 14:23:01 +020018 To find out which specific driver(s) you need, use the
19 sensors-detect script from the lm_sensors package. Read
20 <file:Documentation/hwmon/userspace-tools> for details.
21
Mark M. Hoffman12364412005-07-15 21:38:08 -040022 This support can also be built as a module. If so, the module
23 will be called hwmon.
Jean Delvaread2f9312005-07-02 18:15:49 +020024
Jan Engelhardt1d72acf2007-05-08 17:22:04 +020025if HWMON
26
Jean Delvare303760b2005-07-31 21:52:01 +020027config HWMON_VID
28 tristate
29 default n
30
Hans de Goedef2b84bb2006-06-04 20:22:24 +020031config SENSORS_ABITUGURU
Hans de Goede3faa1ff2007-06-17 00:28:45 +020032 tristate "Abit uGuru (rev 1 & 2)"
Jean Delvaredabf3752007-08-29 12:19:00 +020033 depends on X86 && EXPERIMENTAL
Hans de Goedef2b84bb2006-06-04 20:22:24 +020034 help
Hans de Goede3faa1ff2007-06-17 00:28:45 +020035 If you say yes here you get support for the sensor part of the first
36 and second revision of the Abit uGuru chip. The voltage and frequency
37 control parts of the Abit uGuru are not supported. The Abit uGuru
38 chip can be found on Abit uGuru featuring motherboards (most modern
39 Abit motherboards from before end 2005). For more info and a list
40 of which motherboards have which revision see
41 Documentation/hwmon/abituguru
Hans de Goedef2b84bb2006-06-04 20:22:24 +020042
43 This driver can also be built as a module. If so, the module
44 will be called abituguru.
45
Hans de Goede3faa1ff2007-06-17 00:28:45 +020046config SENSORS_ABITUGURU3
47 tristate "Abit uGuru (rev 3)"
Jean Delvaredabf3752007-08-29 12:19:00 +020048 depends on X86 && EXPERIMENTAL
Hans de Goede3faa1ff2007-06-17 00:28:45 +020049 help
50 If you say yes here you get support for the sensor part of the
51 third revision of the Abit uGuru chip. Only reading the sensors
52 and their settings is supported. The third revision of the Abit
53 uGuru chip can be found on recent Abit motherboards (since end
54 2005). For more info and a list of which motherboards have which
55 revision see Documentation/hwmon/abituguru3
56
57 This driver can also be built as a module. If so, the module
58 will be called abituguru3.
59
Sean MacLennan6c633c32008-08-06 22:41:05 +020060config SENSORS_AD7414
61 tristate "Analog Devices AD7414"
62 depends on I2C && EXPERIMENTAL
63 help
64 If you say yes here you get support for the Analog Devices
65 AD7414 temperature monitoring chip.
66
67 This driver can also be built as a module. If so, the module
68 will be called ad7414.
69
Alessandro Zummo2d8dd652007-05-08 17:22:02 +020070config SENSORS_AD7418
71 tristate "Analog Devices AD7416, AD7417 and AD7418"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +020072 depends on I2C && EXPERIMENTAL
Alessandro Zummo2d8dd652007-05-08 17:22:02 +020073 help
74 If you say yes here you get support for the Analog Devices
75 AD7416, AD7417 and AD7418 temperature monitoring chips.
76
77 This driver can also be built as a module. If so, the module
78 will be called ad7418.
79
Marc Pignatd42139a2008-08-15 00:40:34 -070080config SENSORS_ADCXX
81 tristate "National Semiconductor ADCxxxSxxx"
82 depends on SPI_MASTER && EXPERIMENTAL
83 help
84 If you say yes here you get support for the National Semiconductor
85 ADC<bb><c>S<sss> chip family, where
86 * bb is the resolution in number of bits (8, 10, 12)
87 * c is the number of channels (1, 2, 4, 8)
88 * sss is the maximum conversion speed (021 for 200 kSPS, 051 for 500
89 kSPS and 101 for 1 MSPS)
90
91 Examples : ADC081S101, ADC124S501, ...
92
93 This driver can also be built as a module. If so, the module
94 will be called adcxx.
95
Jean Delvaread2f9312005-07-02 18:15:49 +020096config SENSORS_ADM1021
97 tristate "Analog Devices ADM1021 and compatibles"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +020098 depends on I2C
Jean Delvaread2f9312005-07-02 18:15:49 +020099 help
100 If you say yes here you get support for Analog Devices ADM1021
101 and ADM1023 sensor chips and clones: Maxim MAX1617 and MAX1617A,
102 Genesys Logic GL523SM, National Semiconductor LM84, TI THMC10,
103 and the XEON processor built-in sensor.
104
105 This driver can also be built as a module. If so, the module
106 will be called adm1021.
107
108config SENSORS_ADM1025
109 tristate "Analog Devices ADM1025 and compatibles"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200110 depends on I2C
Jean Delvare303760b2005-07-31 21:52:01 +0200111 select HWMON_VID
Jean Delvaread2f9312005-07-02 18:15:49 +0200112 help
113 If you say yes here you get support for Analog Devices ADM1025
114 and Philips NE1619 sensor chips.
115
116 This driver can also be built as a module. If so, the module
117 will be called adm1025.
118
119config SENSORS_ADM1026
120 tristate "Analog Devices ADM1026 and compatibles"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200121 depends on I2C && EXPERIMENTAL
Jean Delvare303760b2005-07-31 21:52:01 +0200122 select HWMON_VID
Jean Delvaread2f9312005-07-02 18:15:49 +0200123 help
124 If you say yes here you get support for Analog Devices ADM1026
125 sensor chip.
126
127 This driver can also be built as a module. If so, the module
128 will be called adm1026.
129
Corentin Labbecae2caa2007-02-14 21:15:04 +0100130config SENSORS_ADM1029
131 tristate "Analog Devices ADM1029"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200132 depends on I2C && EXPERIMENTAL
Corentin Labbecae2caa2007-02-14 21:15:04 +0100133 help
134 If you say yes here you get support for Analog Devices ADM1029
135 sensor chip.
136 Very rare chip, please let us know you use it.
137
138 This driver can also be built as a module. If so, the module
139 will be called adm1029.
140
Jean Delvaread2f9312005-07-02 18:15:49 +0200141config SENSORS_ADM1031
142 tristate "Analog Devices ADM1031 and compatibles"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200143 depends on I2C && EXPERIMENTAL
Jean Delvaread2f9312005-07-02 18:15:49 +0200144 help
145 If you say yes here you get support for Analog Devices ADM1031
146 and ADM1030 sensor chips.
147
148 This driver can also be built as a module. If so, the module
149 will be called adm1031.
150
151config SENSORS_ADM9240
152 tristate "Analog Devices ADM9240 and compatibles"
Grant Coady68f823d2008-08-06 22:41:05 +0200153 depends on I2C
Jean Delvare303760b2005-07-31 21:52:01 +0200154 select HWMON_VID
Jean Delvaread2f9312005-07-02 18:15:49 +0200155 help
156 If you say yes here you get support for Analog Devices ADM9240,
157 Dallas DS1780, National Semiconductor LM81 sensor chips.
158
159 This driver can also be built as a module. If so, the module
160 will be called adm9240.
161
Darrick J. Wongc0b4e3a2008-11-12 13:27:03 -0800162config SENSORS_ADT7462
163 tristate "Analog Devices ADT7462"
164 depends on I2C && EXPERIMENTAL
165 help
166 If you say yes here you get support for the Analog Devices
167 ADT7462 temperature monitoring chips.
168
169 This driver can also be built as a module. If so, the module
170 will be called adt7462.
171
Darrick J. Wong6f9703d2007-07-31 11:06:52 -0700172config SENSORS_ADT7470
173 tristate "Analog Devices ADT7470"
174 depends on I2C && EXPERIMENTAL
175 help
176 If you say yes here you get support for the Analog Devices
177 ADT7470 temperature monitoring chips.
178
179 This driver can also be built as a module. If so, the module
180 will be called adt7470.
181
Darrick J. Wong57df46d2008-02-18 13:33:23 -0800182config SENSORS_ADT7473
183 tristate "Analog Devices ADT7473"
184 depends on I2C && EXPERIMENTAL
185 help
186 If you say yes here you get support for the Analog Devices
187 ADT7473 temperature monitoring chips.
188
189 This driver can also be built as a module. If so, the module
190 will be called adt7473.
191
Jordan Crouse1c301fc2009-01-15 22:27:47 +0100192config SENSORS_ADT7475
193 tristate "Analog Devices ADT7475"
194 depends on I2C && EXPERIMENTAL
195 help
196 If you say yes here you get support for the Analog Devices
197 ADT7475 hardware monitoring chips.
198
199 This driver can also be build as a module. If so, the module
200 will be called adt7475.
201
Rudolf Marek29fa06c2006-08-28 14:40:17 +0200202config SENSORS_K8TEMP
Rudolf Marek4660cb32006-10-08 22:01:26 +0200203 tristate "AMD Athlon64/FX or Opteron temperature sensor"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200204 depends on X86 && PCI && EXPERIMENTAL
Rudolf Marek29fa06c2006-08-28 14:40:17 +0200205 help
206 If you say yes here you get support for the temperature
Rudolf Marek4660cb32006-10-08 22:01:26 +0200207 sensor(s) inside your CPU. Supported is whole AMD K8
208 microarchitecture. Please note that you will need at least
209 lm-sensors 2.10.1 for proper userspace support.
Rudolf Marek29fa06c2006-08-28 14:40:17 +0200210
211 This driver can also be built as a module. If so, the module
212 will be called k8temp.
213
Stelian Popdcb69dd2006-12-12 18:18:30 +0100214config SENSORS_AMS
215 tristate "Apple Motion Sensor driver"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200216 depends on PPC_PMAC && !PPC64 && INPUT && ((ADB_PMU && I2C = y) || (ADB_PMU && !I2C) || I2C) && EXPERIMENTAL
Dmitry Torokhov3fdbc342007-09-26 00:01:41 -0400217 select INPUT_POLLDEV
Stelian Popdcb69dd2006-12-12 18:18:30 +0100218 help
219 Support for the motion sensor included in PowerBooks. Includes
220 implementations for PMU and I2C.
221
222 This driver can also be built as a module. If so, the module
223 will be called ams.
224
225config SENSORS_AMS_PMU
226 bool "PMU variant"
227 depends on SENSORS_AMS && ADB_PMU
228 default y
229 help
230 PMU variant of motion sensor, found in late 2005 PowerBooks.
231
232config SENSORS_AMS_I2C
233 bool "I2C variant"
234 depends on SENSORS_AMS && I2C
235 default y
236 help
237 I2C variant of motion sensor, found in early 2005 PowerBooks and
238 iBooks.
239
Jean Delvaread2f9312005-07-02 18:15:49 +0200240config SENSORS_ASB100
241 tristate "Asus ASB100 Bach"
Jean Delvaredabf3752007-08-29 12:19:00 +0200242 depends on X86 && I2C && EXPERIMENTAL
Jean Delvare303760b2005-07-31 21:52:01 +0200243 select HWMON_VID
Jean Delvaread2f9312005-07-02 18:15:49 +0200244 help
245 If you say yes here you get support for the ASB100 Bach sensor
246 chip found on some Asus mainboards.
247
248 This driver can also be built as a module. If so, the module
249 will be called asb100.
250
251config SENSORS_ATXP1
252 tristate "Attansic ATXP1 VID controller"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200253 depends on I2C && EXPERIMENTAL
Jean Delvare303760b2005-07-31 21:52:01 +0200254 select HWMON_VID
Jean Delvaread2f9312005-07-02 18:15:49 +0200255 help
256 If you say yes here you get support for the Attansic ATXP1 VID
257 controller.
258
259 If your board have such a chip, you are able to control your CPU
260 core and other voltages.
261
262 This driver can also be built as a module. If so, the module
263 will be called atxp1.
264
265config SENSORS_DS1621
266 tristate "Dallas Semiconductor DS1621 and DS1625"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200267 depends on I2C
Jean Delvaread2f9312005-07-02 18:15:49 +0200268 help
269 If you say yes here you get support for Dallas Semiconductor
270 DS1621 and DS1625 sensor chips.
271
272 This driver can also be built as a module. If so, the module
273 will be called ds1621.
274
Darrick J. Wong298c7522007-10-18 13:22:43 -0700275config SENSORS_I5K_AMB
276 tristate "FB-DIMM AMB temperature sensor on Intel 5000 series chipsets"
277 depends on PCI && EXPERIMENTAL
278 help
279 If you say yes here you get support for FB-DIMM AMB temperature
280 monitoring chips on systems with the Intel 5000 series chipset.
281
282 This driver can also be built as a module. If so, the module
283 will be called i5k_amb.
284
Jean Delvaree53004e2006-01-09 23:26:14 +0100285config SENSORS_F71805F
Jean Delvare9cab0212007-07-15 10:36:06 +0200286 tristate "Fintek F71805F/FG, F71806F/FG and F71872F/FG"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200287 depends on EXPERIMENTAL
Jean Delvaree53004e2006-01-09 23:26:14 +0100288 help
289 If you say yes here you get support for hardware monitoring
Jean Delvare9cab0212007-07-15 10:36:06 +0200290 features of the Fintek F71805F/FG, F71806F/FG and F71872F/FG
291 Super-I/O chips.
Jean Delvaree53004e2006-01-09 23:26:14 +0100292
293 This driver can also be built as a module. If so, the module
294 will be called f71805f.
295
Hans de Goede45fb3662007-07-13 14:34:19 +0200296config SENSORS_F71882FG
Hans de Goede3b02d332009-01-07 16:37:31 +0100297 tristate "Fintek F71862FG, F71882FG and F8000"
Hans de Goede45fb3662007-07-13 14:34:19 +0200298 depends on EXPERIMENTAL
299 help
300 If you say yes here you get support for hardware monitoring
Hans de Goede3b02d332009-01-07 16:37:31 +0100301 features of the Fintek F71882FG/F71883FG, F71862FG/71863FG
302 and F8000 Super-I/O chips.
Hans de Goede45fb3662007-07-13 14:34:19 +0200303
304 This driver can also be built as a module. If so, the module
305 will be called f71882fg.
306
Riku Voipio84f1e442007-08-24 13:03:09 +0300307config SENSORS_F75375S
308 tristate "Fintek F75375S/SP and F75373";
309 depends on I2C && EXPERIMENTAL
310 help
311 If you say yes here you get support for hardware monitoring
312 features of the Fintek F75375S/SP and F75373
313
314 This driver can also be built as a module. If so, the module
315 will be called f75375s.
316
Jean Delvaread2f9312005-07-02 18:15:49 +0200317config SENSORS_FSCHER
Hans de Goede0589c2d2009-01-07 16:37:33 +0100318 tristate "FSC Hermes (DEPRECATED)"
Jean Delvaredabf3752007-08-29 12:19:00 +0200319 depends on X86 && I2C
Jean Delvaread2f9312005-07-02 18:15:49 +0200320 help
Hans de Goede0589c2d2009-01-07 16:37:33 +0100321 This driver is DEPRECATED please use the new merged fschmd
322 ("FSC Poseidon, Scylla, Hermes, Heimdall and Heracles") driver
323 instead.
324
Jean Delvaread2f9312005-07-02 18:15:49 +0200325 If you say yes here you get support for Fujitsu Siemens
326 Computers Hermes sensor chips.
327
328 This driver can also be built as a module. If so, the module
329 will be called fscher.
330
331config SENSORS_FSCPOS
Hans de Goede0589c2d2009-01-07 16:37:33 +0100332 tristate "FSC Poseidon (DEPRECATED)"
Jean Delvaredabf3752007-08-29 12:19:00 +0200333 depends on X86 && I2C
Jean Delvaread2f9312005-07-02 18:15:49 +0200334 help
Hans de Goede0589c2d2009-01-07 16:37:33 +0100335 This driver is DEPRECATED please use the new merged fschmd
336 ("FSC Poseidon, Scylla, Hermes, Heimdall and Heracles") driver
337 instead.
338
Jean Delvaread2f9312005-07-02 18:15:49 +0200339 If you say yes here you get support for Fujitsu Siemens
340 Computers Poseidon sensor chips.
341
342 This driver can also be built as a module. If so, the module
343 will be called fscpos.
344
Hans de Goede569ff102007-10-11 08:06:29 -0400345config SENSORS_FSCHMD
Hans de Goedec69ab2b2009-03-30 21:46:45 +0200346 tristate "Fujitsu Siemens Computers sensor chips"
Hans de Goede0589c2d2009-01-07 16:37:33 +0100347 depends on X86 && I2C
Hans de Goede569ff102007-10-11 08:06:29 -0400348 help
Hans de Goedec69ab2b2009-03-30 21:46:45 +0200349 If you say yes here you get support for the following Fujitsu
350 Siemens Computers (FSC) sensor chips: Poseidon, Scylla, Hermes,
Hans de Goedede15f092009-03-30 21:46:45 +0200351 Heimdall, Heracles, Hades and Syleus including support for the
352 integrated watchdog.
Hans de Goede569ff102007-10-11 08:06:29 -0400353
Hans de Goede0589c2d2009-01-07 16:37:33 +0100354 This is a merged driver for FSC sensor chips replacing the fscpos,
355 fscscy and fscher drivers and adding support for several other FSC
356 sensor chips.
Hans de Goede569ff102007-10-11 08:06:29 -0400357
358 This driver can also be built as a module. If so, the module
359 will be called fschmd.
360
Jean Delvaread2f9312005-07-02 18:15:49 +0200361config SENSORS_GL518SM
362 tristate "Genesys Logic GL518SM"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200363 depends on I2C
Jean Delvaread2f9312005-07-02 18:15:49 +0200364 help
365 If you say yes here you get support for Genesys Logic GL518SM
366 sensor chips.
367
368 This driver can also be built as a module. If so, the module
369 will be called gl518sm.
370
371config SENSORS_GL520SM
372 tristate "Genesys Logic GL520SM"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200373 depends on I2C
Jean Delvare303760b2005-07-31 21:52:01 +0200374 select HWMON_VID
Jean Delvaread2f9312005-07-02 18:15:49 +0200375 help
376 If you say yes here you get support for Genesys Logic GL520SM
377 sensor chips.
378
379 This driver can also be built as a module. If so, the module
380 will be called gl520sm.
381
Rudolf Marekbebe4672007-05-08 17:22:02 +0200382config SENSORS_CORETEMP
383 tristate "Intel Core (2) Duo/Solo temperature sensor"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200384 depends on X86 && EXPERIMENTAL
Rudolf Marekbebe4672007-05-08 17:22:02 +0200385 help
386 If you say yes here you get support for the temperature
387 sensor inside your CPU. Supported all are all known variants
388 of Intel Core family.
389
Darrick J. Wong8808a792008-05-23 13:04:25 -0700390config SENSORS_IBMAEM
391 tristate "IBM Active Energy Manager temperature/power sensors and control"
392 select IPMI_SI
393 depends on IPMI_HANDLER
394 help
395 If you say yes here you get support for the temperature and
396 power sensors and capping hardware in various IBM System X
397 servers that support Active Energy Manager. This includes
398 the x3350, x3550, x3650, x3655, x3755, x3850 M2, x3950 M2,
399 and certain HS2x/LS2x/QS2x blades.
400
401 This driver can also be built as a module. If so, the module
402 will be called ibmaem.
403
Darrick J. Wong57c7c3a2007-09-14 12:33:46 -0700404config SENSORS_IBMPEX
405 tristate "IBM PowerExecutive temperature/power sensors"
406 select IPMI_SI
407 depends on IPMI_HANDLER
408 help
409 If you say yes here you get support for the temperature and
410 power sensors in various IBM System X servers that support
Darrick J. Wong3d960a92008-03-19 17:00:48 -0700411 PowerExecutive. So far this includes the x3350, x3550, x3650,
412 x3655, and x3755; the x3800, x3850, and x3950 models that have
413 PCI Express; and some of the HS2x, LS2x, and QS2x blades.
Darrick J. Wong57c7c3a2007-09-14 12:33:46 -0700414
415 This driver can also be built as a module. If so, the module
416 will be called ibmpex.
417
Jean Delvaread2f9312005-07-02 18:15:49 +0200418config SENSORS_IT87
419 tristate "ITE IT87xx and compatibles"
Jean Delvare303760b2005-07-31 21:52:01 +0200420 select HWMON_VID
Jean Delvaread2f9312005-07-02 18:15:49 +0200421 help
Jean Delvare87673dd2006-08-28 14:37:19 +0200422 If you say yes here you get support for ITE IT8705F, IT8712F,
Jean-Marc Spaggiarib4da93e2009-01-07 16:37:32 +0100423 IT8716F, IT8718F, IT8720F and IT8726F sensor chips, and the
424 SiS960 clone.
Jean Delvaread2f9312005-07-02 18:15:49 +0200425
426 This driver can also be built as a module. If so, the module
427 will be called it87.
428
429config SENSORS_LM63
430 tristate "National Semiconductor LM63"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200431 depends on I2C
Jean Delvaread2f9312005-07-02 18:15:49 +0200432 help
433 If you say yes here you get support for the National Semiconductor
434 LM63 remote diode digital temperature sensor with integrated fan
435 control. Such chips are found on the Tyan S4882 (Thunder K8QS Pro)
436 motherboard, among others.
437
438 This driver can also be built as a module. If so, the module
439 will be called lm63.
440
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +0200441config SENSORS_LM70
Manuel Laussc8ac32e2009-01-07 16:37:34 +0100442 tristate "National Semiconductor LM70 / Texas Instruments TMP121"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200443 depends on SPI_MASTER && EXPERIMENTAL
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +0200444 help
445 If you say yes here you get support for the National Semiconductor
Manuel Laussc8ac32e2009-01-07 16:37:34 +0100446 LM70 and Texas Instruments TMP121/TMP123 digital temperature
447 sensor chips.
Kaiwan N Billimoriae1a8e912006-06-12 22:00:05 +0200448
449 This driver can also be built as a module. If so, the module
450 will be called lm70.
451
Jean Delvaread2f9312005-07-02 18:15:49 +0200452config SENSORS_LM75
453 tristate "National Semiconductor LM75 and compatibles"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200454 depends on I2C
Jean Delvaread2f9312005-07-02 18:15:49 +0200455 help
David Brownell01a52392008-04-21 12:10:53 -0700456 If you say yes here you get support for one common type of
457 temperature sensor chip, with models including:
Jean Delvaread2f9312005-07-02 18:15:49 +0200458
David Brownell01a52392008-04-21 12:10:53 -0700459 - Dallas Semiconductor DS75 and DS1775
460 - Maxim MAX6625 and MAX6626
461 - Microchip MCP980x
462 - National Semiconductor LM75
463 - NXP's LM75A
464 - ST Microelectronics STDS75
465 - TelCom (now Microchip) TCN75
466 - Texas Instruments TMP100, TMP101, TMP75, TMP175, TMP275
467
David Brownell9ebd3d82008-05-03 19:33:15 -0700468 This driver supports driver model based binding through board
469 specific I2C device tables.
470
471 It also supports the "legacy" style of driver binding. To use
472 that with some chips which don't replicate LM75 quirks exactly,
473 you may need the "force" module parameter.
Jean Delvaread2f9312005-07-02 18:15:49 +0200474
475 This driver can also be built as a module. If so, the module
476 will be called lm75.
477
478config SENSORS_LM77
479 tristate "National Semiconductor LM77"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200480 depends on I2C
Jean Delvaread2f9312005-07-02 18:15:49 +0200481 help
482 If you say yes here you get support for National Semiconductor LM77
483 sensor chips.
484
485 This driver can also be built as a module. If so, the module
486 will be called lm77.
487
488config SENSORS_LM78
489 tristate "National Semiconductor LM78 and compatibles"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200490 depends on I2C
Jean Delvare19f673e2005-07-31 22:12:09 +0200491 select HWMON_VID
Jean Delvaread2f9312005-07-02 18:15:49 +0200492 help
493 If you say yes here you get support for National Semiconductor LM78,
494 LM78-J and LM79.
495
496 This driver can also be built as a module. If so, the module
497 will be called lm78.
498
499config SENSORS_LM80
500 tristate "National Semiconductor LM80"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200501 depends on I2C && EXPERIMENTAL
Jean Delvaread2f9312005-07-02 18:15:49 +0200502 help
503 If you say yes here you get support for National Semiconductor
504 LM80 sensor chips.
505
506 This driver can also be built as a module. If so, the module
507 will be called lm80.
508
509config SENSORS_LM83
Jordan Crouse43cb7eb2006-03-23 16:19:49 +0100510 tristate "National Semiconductor LM83 and compatibles"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200511 depends on I2C
Jean Delvaread2f9312005-07-02 18:15:49 +0200512 help
513 If you say yes here you get support for National Semiconductor
Jordan Crouse43cb7eb2006-03-23 16:19:49 +0100514 LM82 and LM83 sensor chips.
Jean Delvaread2f9312005-07-02 18:15:49 +0200515
516 This driver can also be built as a module. If so, the module
517 will be called lm83.
518
519config SENSORS_LM85
520 tristate "National Semiconductor LM85 and compatibles"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200521 depends on I2C && EXPERIMENTAL
Jean Delvare303760b2005-07-31 21:52:01 +0200522 select HWMON_VID
Jean Delvaread2f9312005-07-02 18:15:49 +0200523 help
524 If you say yes here you get support for National Semiconductor LM85
525 sensor chips and clones: ADT7463, EMC6D100, EMC6D102 and ADM1027.
526
527 This driver can also be built as a module. If so, the module
528 will be called lm85.
529
530config SENSORS_LM87
Jean Delvarec7fa3732007-10-09 15:22:22 +0200531 tristate "National Semiconductor LM87 and compatibles"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200532 depends on I2C
Jean Delvare303760b2005-07-31 21:52:01 +0200533 select HWMON_VID
Jean Delvaread2f9312005-07-02 18:15:49 +0200534 help
535 If you say yes here you get support for National Semiconductor LM87
Jean Delvarec7fa3732007-10-09 15:22:22 +0200536 and Analog Devices ADM1024 sensor chips.
Jean Delvaread2f9312005-07-02 18:15:49 +0200537
538 This driver can also be built as a module. If so, the module
539 will be called lm87.
540
541config SENSORS_LM90
542 tristate "National Semiconductor LM90 and compatibles"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200543 depends on I2C
Jean Delvaread2f9312005-07-02 18:15:49 +0200544 help
545 If you say yes here you get support for National Semiconductor LM90,
Nate Case23b2d472008-10-17 17:51:10 +0200546 LM86, LM89 and LM99, Analog Devices ADM1032 and ADT7461, and Maxim
Darrick J. Wong1a51e062009-03-12 13:36:38 +0100547 MAX6646, MAX6647, MAX6648, MAX6649, MAX6657, MAX6658, MAX6659,
548 MAX6680, MAX6681 and MAX6692 sensor chips.
Jean Delvaread2f9312005-07-02 18:15:49 +0200549
550 This driver can also be built as a module. If so, the module
551 will be called lm90.
552
553config SENSORS_LM92
554 tristate "National Semiconductor LM92 and compatibles"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200555 depends on I2C
Jean Delvaread2f9312005-07-02 18:15:49 +0200556 help
557 If you say yes here you get support for National Semiconductor LM92
558 and Maxim MAX6635 sensor chips.
559
560 This driver can also be built as a module. If so, the module
561 will be called lm92.
562
Hans-Jürgen Koche46957e2007-07-05 17:58:29 +0200563config SENSORS_LM93
564 tristate "National Semiconductor LM93 and compatibles"
Jean Delvaredabf3752007-08-29 12:19:00 +0200565 depends on I2C
Hans-Jürgen Koche46957e2007-07-05 17:58:29 +0200566 select HWMON_VID
567 help
568 If you say yes here you get support for National Semiconductor LM93
569 sensor chips.
570
571 This driver can also be built as a module. If so, the module
572 will be called lm93.
573
Ira Snyder6e34b182009-01-07 16:37:32 +0100574config SENSORS_LTC4245
575 tristate "Linear Technology LTC4245"
576 depends on I2C && EXPERIMENTAL
577 default n
578 help
579 If you say yes here you get support for Linear Technology LTC4245
580 Multiple Supply Hot Swap Controller I2C interface.
581
582 This driver can also be built as a module. If so, the module will
583 be called ltc4245.
584
Davide Rizzo06160322009-03-31 15:24:27 -0700585config SENSORS_LM95241
586 tristate "National Semiconductor LM95241 sensor chip"
587 depends on I2C
588 help
589 If you say yes here you get support for LM95241 sensor chip.
590
591 This driver can also be built as a module. If so, the module
592 will be called lm95241.
593
Eric Miao55b951e2008-08-29 04:26:48 +0800594config SENSORS_MAX1111
595 tristate "Maxim MAX1111 Multichannel, Serial 8-bit ADC chip"
596 depends on SPI_MASTER
597 help
598 Say y here to support Maxim's MAX1111 ADC chips.
599
600 This driver can also be built as a module. If so, the module
601 will be called max1111.
602
Jean Delvaread2f9312005-07-02 18:15:49 +0200603config SENSORS_MAX1619
604 tristate "Maxim MAX1619 sensor chip"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200605 depends on I2C
Jean Delvaread2f9312005-07-02 18:15:49 +0200606 help
607 If you say yes here you get support for MAX1619 sensor chip.
608
609 This driver can also be built as a module. If so, the module
610 will be called max1619.
611
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +0200612config SENSORS_MAX6650
613 tristate "Maxim MAX6650 sensor chip"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200614 depends on I2C && EXPERIMENTAL
Hans-Juergen Kochd20620d2007-05-08 17:22:00 +0200615 help
616 If you say yes here you get support for the MAX6650 / MAX6651
617 sensor chips.
618
619 This driver can also be built as a module. If so, the module
620 will be called max6650.
621
Jean Delvaread2f9312005-07-02 18:15:49 +0200622config SENSORS_PC87360
623 tristate "National Semiconductor PC87360 family"
Jean Delvare303760b2005-07-31 21:52:01 +0200624 select HWMON_VID
Jean Delvaread2f9312005-07-02 18:15:49 +0200625 help
626 If you say yes here you get access to the hardware monitoring
627 functions of the National Semiconductor PC8736x Super-I/O chips.
628 The PC87360, PC87363 and PC87364 only have fan monitoring and
629 control. The PC87365 and PC87366 additionally have voltage and
630 temperature monitoring.
631
632 This driver can also be built as a module. If so, the module
633 will be called pc87360.
634
Jean Delvareba224e22006-12-12 18:18:29 +0100635config SENSORS_PC87427
636 tristate "National Semiconductor PC87427"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200637 depends on EXPERIMENTAL
Jean Delvareba224e22006-12-12 18:18:29 +0100638 help
639 If you say yes here you get access to the hardware monitoring
640 functions of the National Semiconductor PC87427 Super-I/O chip.
641 The chip has two distinct logical devices, one for fan speed
642 monitoring and control, and one for voltage and temperature
643 monitoring. Only fan speed monitoring is supported right now.
644
645 This driver can also be built as a module. If so, the module
646 will be called pc87427.
647
Jean Delvarefb4504f2009-03-30 21:46:43 +0200648config SENSORS_PCF8591
649 tristate "Philips PCF8591 ADC/DAC"
650 depends on I2C
651 default n
652 help
653 If you say yes here you get support for Philips PCF8591 4-channel
654 ADC, 1-channel DAC chips.
655
656 This driver can also be built as a module. If so, the module
657 will be called pcf8591.
658
659 These devices are hard to detect and rarely found on mainstream
660 hardware. If unsure, say N.
661
Jean Delvaread2f9312005-07-02 18:15:49 +0200662config SENSORS_SIS5595
663 tristate "Silicon Integrated Systems Corp. SiS5595"
Jean Delvare17e7dc42007-06-09 10:11:16 -0400664 depends on PCI
Jean Delvaread2f9312005-07-02 18:15:49 +0200665 help
666 If you say yes here you get support for the integrated sensors in
667 SiS5595 South Bridges.
668
669 This driver can also be built as a module. If so, the module
670 will be called sis5595.
671
Juerg Haefliger94319962007-06-09 10:11:16 -0400672config SENSORS_DME1737
Juerg Haefligere95c2372007-10-07 21:27:35 -0700673 tristate "SMSC DME1737, SCH311x and compatibles"
Juerg Haefliger94319962007-06-09 10:11:16 -0400674 depends on I2C && EXPERIMENTAL
675 select HWMON_VID
676 help
677 If you say yes here you get support for the hardware monitoring
Juerg Haefliger549edb82008-08-06 22:41:03 +0200678 and fan control features of the SMSC DME1737, SCH311x, SCH5027, and
679 Asus A8000 Super-I/O chips.
Juerg Haefliger94319962007-06-09 10:11:16 -0400680
681 This driver can also be built as a module. If so, the module
682 will be called dme1737.
683
Jean Delvaread2f9312005-07-02 18:15:49 +0200684config SENSORS_SMSC47M1
685 tristate "SMSC LPC47M10x and compatibles"
Jean Delvaread2f9312005-07-02 18:15:49 +0200686 help
687 If you say yes here you get support for the integrated fan
688 monitoring and control capabilities of the SMSC LPC47B27x,
Jean Delvare60917802006-10-08 22:00:44 +0200689 LPC47M10x, LPC47M112, LPC47M13x, LPC47M14x, LPC47M15x,
Jean Delvare8eccbb62007-05-08 17:21:59 +0200690 LPC47M192, LPC47M292 and LPC47M997 chips.
Hartmut Rick59ac8362006-03-23 16:37:23 +0100691
Jean Delvare8eccbb62007-05-08 17:21:59 +0200692 The temperature and voltage sensor features of the LPC47M15x,
693 LPC47M192, LPC47M292 and LPC47M997 are supported by another
694 driver, select also "SMSC LPC47M192 and compatibles" below for
695 those.
Jean Delvaread2f9312005-07-02 18:15:49 +0200696
697 This driver can also be built as a module. If so, the module
698 will be called smsc47m1.
699
Hartmut Rick59ac8362006-03-23 16:37:23 +0100700config SENSORS_SMSC47M192
701 tristate "SMSC LPC47M192 and compatibles"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200702 depends on I2C && EXPERIMENTAL
Hartmut Rick59ac8362006-03-23 16:37:23 +0100703 select HWMON_VID
704 help
705 If you say yes here you get support for the temperature and
Jean Delvare00cb4732007-05-08 17:21:59 +0200706 voltage sensors of the SMSC LPC47M192, LPC47M15x, LPC47M292
707 and LPC47M997 chips.
Hartmut Rick59ac8362006-03-23 16:37:23 +0100708
709 The fan monitoring and control capabilities of these chips
710 are supported by another driver, select
711 "SMSC LPC47M10x and compatibles" above. You need both drivers
712 if you want fan control and voltage/temperature sensor support.
713
714 This driver can also be built as a module. If so, the module
715 will be called smsc47m192.
716
Jean Delvaread2f9312005-07-02 18:15:49 +0200717config SENSORS_SMSC47B397
718 tristate "SMSC LPC47B397-NC"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200719 depends on EXPERIMENTAL
Jean Delvaread2f9312005-07-02 18:15:49 +0200720 help
721 If you say yes here you get support for the SMSC LPC47B397-NC
722 sensor chip.
723
724 This driver can also be built as a module. If so, the module
725 will be called smsc47b397.
726
Steve Hardy5812f922008-01-22 23:00:02 +0000727config SENSORS_ADS7828
728 tristate "Texas Instruments ADS7828"
729 depends on I2C
730 help
731 If you say yes here you get support for Texas Instruments ADS7828
732 12-bit 8-channel ADC device.
733
734 This driver can also be built as a module. If so, the module
735 will be called ads7828.
736
Krzysztof Heltadd77c62007-07-08 22:43:00 +0200737config SENSORS_THMC50
738 tristate "Texas Instruments THMC50 / Analog Devices ADM1022"
739 depends on I2C && EXPERIMENTAL
740 help
741 If you say yes here you get support for Texas Instruments THMC50
742 sensor chips and clones: the Analog Devices ADM1022.
743
744 This driver can also be built as a module. If so, the module
745 will be called thmc50.
746
Jean Delvaread2f9312005-07-02 18:15:49 +0200747config SENSORS_VIA686A
748 tristate "VIA686A"
Jean Delvare2ec342e2007-06-09 10:11:16 -0400749 depends on PCI
Jean Delvaread2f9312005-07-02 18:15:49 +0200750 help
751 If you say yes here you get support for the integrated sensors in
752 Via 686A/B South Bridges.
753
754 This driver can also be built as a module. If so, the module
755 will be called via686a.
756
Juerg Haefligerab413192006-09-24 20:54:04 +0200757config SENSORS_VT1211
758 tristate "VIA VT1211"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200759 depends on EXPERIMENTAL
Juerg Haefligerab413192006-09-24 20:54:04 +0200760 select HWMON_VID
761 help
762 If you say yes here then you get support for hardware monitoring
763 features of the VIA VT1211 Super-I/O chip.
764
765 This driver can also be built as a module. If so, the module
766 will be called vt1211.
767
Roger Lucas1de9e372005-11-26 20:20:05 +0100768config SENSORS_VT8231
Jean Delvare51bd5632006-09-24 20:51:37 +0200769 tristate "VIA VT8231"
Roger Lucasec5e1a42007-06-12 21:04:08 +0200770 depends on PCI
Roger Lucas1de9e372005-11-26 20:20:05 +0100771 select HWMON_VID
Roger Lucas1de9e372005-11-26 20:20:05 +0100772 help
773 If you say yes here then you get support for the integrated sensors
774 in the VIA VT8231 device.
775
776 This driver can also be built as a module. If so, the module
777 will be called vt8231.
778
Jean Delvaread2f9312005-07-02 18:15:49 +0200779config SENSORS_W83781D
Jean Delvare05663362007-11-30 23:51:24 +0100780 tristate "Winbond W83781D, W83782D, W83783S, Asus AS99127F"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200781 depends on I2C
Jean Delvare303760b2005-07-31 21:52:01 +0200782 select HWMON_VID
Jean Delvaread2f9312005-07-02 18:15:49 +0200783 help
784 If you say yes here you get support for the Winbond W8378x series
Jean Delvare05663362007-11-30 23:51:24 +0100785 of sensor chips: the W83781D, W83782D and W83783S, and the similar
786 Asus AS99127F.
Jean Delvaread2f9312005-07-02 18:15:49 +0200787
788 This driver can also be built as a module. If so, the module
789 will be called w83781d.
790
Charles Spirakis98739642006-04-25 14:21:03 +0200791config SENSORS_W83791D
792 tristate "Winbond W83791D"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200793 depends on I2C && EXPERIMENTAL
Charles Spirakis98739642006-04-25 14:21:03 +0200794 select HWMON_VID
795 help
796 If you say yes here you get support for the Winbond W83791D chip.
797
798 This driver can also be built as a module. If so, the module
799 will be called w83791d.
800
R.Marek@sh.cvut.cz5563e272005-07-27 11:43:47 +0000801config SENSORS_W83792D
802 tristate "Winbond W83792D"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200803 depends on I2C && EXPERIMENTAL
R.Marek@sh.cvut.cz5563e272005-07-27 11:43:47 +0000804 help
805 If you say yes here you get support for the Winbond W83792D chip.
806
807 This driver can also be built as a module. If so, the module
808 will be called w83792d.
809
Rudolf Marek6800c3d2006-12-12 18:18:30 +0100810config SENSORS_W83793
811 tristate "Winbond W83793"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200812 depends on I2C && EXPERIMENTAL
Stefano Brivio7a5e6bc2007-03-16 13:38:29 -0800813 select HWMON_VID
Rudolf Marek6800c3d2006-12-12 18:18:30 +0100814 help
815 If you say yes here you get support for the Winbond W83793
816 hardware monitoring chip.
817
818 This driver can also be built as a module. If so, the module
819 will be called w83793.
820
Jean Delvaread2f9312005-07-02 18:15:49 +0200821config SENSORS_W83L785TS
822 tristate "Winbond W83L785TS-S"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200823 depends on I2C && EXPERIMENTAL
Jean Delvaread2f9312005-07-02 18:15:49 +0200824 help
825 If you say yes here you get support for the Winbond W83L785TS-S
826 sensor chip, which is used on the Asus A7N8X, among other
827 motherboards.
828
829 This driver can also be built as a module. If so, the module
830 will be called w83l785ts.
831
Kevin Lo85f03bc2007-11-23 09:31:52 +0800832config SENSORS_W83L786NG
833 tristate "Winbond W83L786NG, W83L786NR"
834 depends on I2C && EXPERIMENTAL
835 help
836 If you say yes here you get support for the Winbond W83L786NG
837 and W83L786NR sensor chips.
838
839 This driver can also be built as a module. If so, the module
840 will be called w83l786ng.
841
Jean Delvaread2f9312005-07-02 18:15:49 +0200842config SENSORS_W83627HF
Jean Delvarec2db6ce2006-01-18 23:22:12 +0100843 tristate "Winbond W83627HF, W83627THF, W83637HF, W83687THF, W83697HF"
Jean Delvare303760b2005-07-31 21:52:01 +0200844 select HWMON_VID
Jean Delvaread2f9312005-07-02 18:15:49 +0200845 help
846 If you say yes here you get support for the Winbond W836X7 series
Jean Delvarec2db6ce2006-01-18 23:22:12 +0100847 of sensor chips: the W83627HF, W83627THF, W83637HF, W83687THF and
848 W83697HF.
Jean Delvaread2f9312005-07-02 18:15:49 +0200849
850 This driver can also be built as a module. If so, the module
851 will be called w83627hf.
852
853config SENSORS_W83627EHF
Gong Jun237c8d2f2009-03-30 21:46:42 +0200854 tristate "Winbond W83627EHF/EHG/DHG, W83667HG"
Jean Delvarefc18d6c2007-06-24 11:19:42 +0200855 select HWMON_VID
Jean Delvaread2f9312005-07-02 18:15:49 +0200856 help
David Hubbard658291f2007-06-24 11:15:03 +0200857 If you say yes here you get support for the hardware
Jean Delvaread2f9312005-07-02 18:15:49 +0200858 monitoring functionality of the Winbond W83627EHF Super-I/O chip.
Jean Delvaread2f9312005-07-02 18:15:49 +0200859
Jean Delvare8dd2d2c2005-07-27 21:33:15 +0200860 This driver also supports the W83627EHG, which is the lead-free
David Hubbard658291f2007-06-24 11:15:03 +0200861 version of the W83627EHF, and the W83627DHG, which is a similar
862 chip suited for specific Intel processors that use PECI such as
863 the Core 2 Duo.
Jean Delvare8dd2d2c2005-07-27 21:33:15 +0200864
Gong Jun237c8d2f2009-03-30 21:46:42 +0200865 This driver also supports the W83667HG chip.
866
Jean Delvaread2f9312005-07-02 18:15:49 +0200867 This driver can also be built as a module. If so, the module
868 will be called w83627ehf.
869
David S. Millere0418082008-08-24 20:59:49 -0700870config SENSORS_ULTRA45
871 tristate "Sun Ultra45 PIC16F747"
872 depends on SPARC64
873 help
874 This driver provides support for the Ultra45 workstation environmental
875 sensors.
876
Robert Love860e1d62005-08-31 23:57:59 -0400877config SENSORS_HDAPS
878 tristate "IBM Hard Drive Active Protection System (hdaps)"
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200879 depends on INPUT && X86
Dmitry Torokhovaefca8b2007-10-12 21:30:36 -0400880 select INPUT_POLLDEV
Robert Love860e1d62005-08-31 23:57:59 -0400881 default n
882 help
883 This driver provides support for the IBM Hard Drive Active Protection
884 System (hdaps), which provides an accelerometer and other misc. data.
Robert Love4c87b742005-09-22 21:44:00 -0700885 ThinkPads starting with the R50, T41, and X40 are supported. The
886 accelerometer data is readable via sysfs.
Robert Love860e1d62005-08-31 23:57:59 -0400887
Robert Love4c87b742005-09-22 21:44:00 -0700888 This driver also provides an absolute input class device, allowing
889 the laptop to act as a pinball machine-esque joystick.
Robert Love860e1d62005-08-31 23:57:59 -0400890
Stephan Berberig0f23e502006-12-12 18:18:28 +0100891 If your ThinkPad is not recognized by the driver, please update to latest
892 BIOS. This is especially the case for some R52 ThinkPads.
893
Robert Love860e1d62005-08-31 23:57:59 -0400894 Say Y here if you have an applicable laptop and want to experience
895 the awesome power of hdaps.
896
Pavel Machek455fbdd2008-11-12 13:27:02 -0800897config SENSORS_LIS3LV02D
898 tristate "STMicroeletronics LIS3LV02Dx three-axis digital accelerometer"
899 depends on ACPI && INPUT
Eric Piel9e0c7972009-01-15 13:51:23 -0800900 select NEW_LEDS
901 select LEDS_CLASS
Pavel Machek455fbdd2008-11-12 13:27:02 -0800902 default n
903 help
904 This driver provides support for the LIS3LV02Dx accelerometer. In
905 particular, it can be found in a number of HP laptops, which have the
906 "Mobile Data Protection System 3D" or "3D DriveGuard" feature. On such
907 systems the driver should load automatically (via ACPI). The
908 accelerometer might also be found in other systems, connected via SPI
909 or I2C. The accelerometer data is readable via
910 /sys/devices/platform/lis3lv02d.
911
912 This driver also provides an absolute input class device, allowing
Eric Piel9e0c7972009-01-15 13:51:23 -0800913 the laptop to act as a pinball machine-esque joystick. On HP laptops,
914 if the led infrastructure is activated, support for a led indicating
915 disk protection will be provided as hp:red:hddprotection.
Pavel Machek455fbdd2008-11-12 13:27:02 -0800916
Eric Piel9e0c7972009-01-15 13:51:23 -0800917 This driver can also be built as modules. If so, the core module
918 will be called lis3lv02d and a specific module for HP laptops will be
919 called hp_accel.
920
921 Say Y here if you have an applicable laptop and want to experience
922 the awesome power of lis3lv02d.
Pavel Machek455fbdd2008-11-12 13:27:02 -0800923
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700924config SENSORS_APPLESMC
925 tristate "Apple SMC (Motion sensor, light sensor, keyboard backlight)"
Jean Delvare548c3432007-05-27 22:17:43 +0200926 depends on INPUT && X86
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700927 select NEW_LEDS
928 select LEDS_CLASS
Dmitry Torokhovd5cf2b92007-09-26 00:01:35 -0400929 select INPUT_POLLDEV
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700930 default n
931 help
932 This driver provides support for the Apple System Management
933 Controller, which provides an accelerometer (Apple Sudden Motion
934 Sensor), light sensors, temperature sensors, keyboard backlight
935 control and fan control.
936
937 Only Intel-based Apple's computers are supported (MacBook Pro,
938 MacBook, MacMini).
939
940 Data from the different sensors, keyboard backlight control and fan
941 control are accessible via sysfs.
942
943 This driver also provides an absolute input class device, allowing
944 the laptop to act as a pinball machine-esque joystick.
945
946 Say Y here if you have an applicable laptop and want to experience
947 the awesome power of applesmc.
948
Jean Delvaread2f9312005-07-02 18:15:49 +0200949config HWMON_DEBUG_CHIP
950 bool "Hardware Monitoring Chip debugging messages"
Jean Delvaread2f9312005-07-02 18:15:49 +0200951 default n
952 help
953 Say Y here if you want the I2C chip drivers to produce a bunch of
954 debug messages to the system log. Select this if you are having
955 a problem with I2C support and want to see more of what is going
956 on.
957
Jan Engelhardt1d72acf2007-05-08 17:22:04 +0200958endif # HWMON