Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1# SPDX-License-Identifier: GPL-2.0-only
2#
3# Hardware monitoring chip drivers configuration
4#
5
6menuconfig HWMON
7 tristate "Hardware Monitoring support"
8 depends on HAS_IOMEM
9 default y
10 help
11 Hardware monitoring devices let you monitor the hardware health
12 of a system. Most modern motherboards include such a device. It
13 can include temperature sensors, voltage sensors, fan speed
14 sensors and various additional features such as the ability to
15 control the speed of the fans. If you want this support you
16 should say Y here and also to the specific driver(s) for your
17 sensors chip(s) below.
18
19 To find out which specific driver(s) you need, use the
20 sensors-detect script from the lm_sensors package. Read
21 <file:Documentation/hwmon/userspace-tools.rst> for details.
22
23 This support can also be built as a module. If so, the module
24 will be called hwmon.
25
26if HWMON
27
28config HWMON_VID
29 tristate
30
31config HWMON_DEBUG_CHIP
32 bool "Hardware Monitoring Chip debugging messages"
33 help
34 Say Y here if you want the I2C chip drivers to produce a bunch of
35 debug messages to the system log. Select this if you are having
36 a problem with I2C support and want to see more of what is going
37 on.
38
39comment "Native drivers"
40
41config SENSORS_AB8500
42 tristate "AB8500 thermal monitoring"
43 depends on AB8500_GPADC && AB8500_BM && (IIO = y)
44 default n
45 help
46 If you say yes here you get support for the thermal sensor part
47 of the AB8500 chip. The driver includes thermal management for
48 AB8500 die and two GPADC channels. The GPADC channel are preferably
49 used to access sensors outside the AB8500 chip.
50
51 This driver can also be built as a module. If so, the module
52 will be called abx500-temp.
53
54config SENSORS_ABITUGURU
55 tristate "Abit uGuru (rev 1 & 2)"
56 depends on X86 && DMI
57 help
58 If you say yes here you get support for the sensor part of the first
59 and second revision of the Abit uGuru chip. The voltage and frequency
60 control parts of the Abit uGuru are not supported. The Abit uGuru
61 chip can be found on Abit uGuru featuring motherboards (most modern
62 Abit motherboards from before end 2005). For more info and a list
63 of which motherboards have which revision see
64 Documentation/hwmon/abituguru.rst
65
66 This driver can also be built as a module. If so, the module
67 will be called abituguru.
68
69config SENSORS_ABITUGURU3
70 tristate "Abit uGuru (rev 3)"
71 depends on X86 && DMI
72 help
73 If you say yes here you get support for the sensor part of the
74 third revision of the Abit uGuru chip. Only reading the sensors
75 and their settings is supported. The third revision of the Abit
76 uGuru chip can be found on recent Abit motherboards (since end
77 2005). For more info and a list of which motherboards have which
78 revision see Documentation/hwmon/abituguru3.rst
79
80 This driver can also be built as a module. If so, the module
81 will be called abituguru3.
82
83config SENSORS_AD7314
84 tristate "Analog Devices AD7314 and compatibles"
85 depends on SPI
86 help
87 If you say yes here you get support for the Analog Devices
88 AD7314, ADT7301 and ADT7302 temperature sensors.
89
90 This driver can also be built as a module. If so, the module
91 will be called ad7314.
92
93config SENSORS_AD7414
94 tristate "Analog Devices AD7414"
95 depends on I2C
96 help
97 If you say yes here you get support for the Analog Devices
98 AD7414 temperature monitoring chip.
99
100 This driver can also be built as a module. If so, the module
101 will be called ad7414.
102
103config SENSORS_AD7418
104 tristate "Analog Devices AD7416, AD7417 and AD7418"
105 depends on I2C
106 help
107 If you say yes here you get support for the Analog Devices
108 AD7416, AD7417 and AD7418 temperature monitoring chips.
109
110 This driver can also be built as a module. If so, the module
111 will be called ad7418.
112
113config SENSORS_ADM1021
114 tristate "Analog Devices ADM1021 and compatibles"
115 depends on I2C
116 help
117 If you say yes here you get support for Analog Devices ADM1021
118 and ADM1023 sensor chips and clones: Maxim MAX1617 and MAX1617A,
119 Genesys Logic GL523SM, National Semiconductor LM84 and TI THMC10.
120
121 This driver can also be built as a module. If so, the module
122 will be called adm1021.
123
124config SENSORS_ADM1025
125 tristate "Analog Devices ADM1025 and compatibles"
126 depends on I2C
127 select HWMON_VID
128 help
129 If you say yes here you get support for Analog Devices ADM1025
130 and Philips NE1619 sensor chips.
131
132 This driver can also be built as a module. If so, the module
133 will be called adm1025.
134
135config SENSORS_ADM1026
136 tristate "Analog Devices ADM1026 and compatibles"
137 depends on I2C
138 select HWMON_VID
139 help
140 If you say yes here you get support for Analog Devices ADM1026
141 sensor chip.
142
143 This driver can also be built as a module. If so, the module
144 will be called adm1026.
145
146config SENSORS_ADM1029
147 tristate "Analog Devices ADM1029"
148 depends on I2C
149 help
150 If you say yes here you get support for Analog Devices ADM1029
151 sensor chip.
152 Very rare chip, please let us know you use it.
153
154 This driver can also be built as a module. If so, the module
155 will be called adm1029.
156
157config SENSORS_ADM1031
158 tristate "Analog Devices ADM1031 and compatibles"
159 depends on I2C
160 help
161 If you say yes here you get support for Analog Devices ADM1031
162 and ADM1030 sensor chips.
163
164 This driver can also be built as a module. If so, the module
165 will be called adm1031.
166
167config SENSORS_ADM9240
168 tristate "Analog Devices ADM9240 and compatibles"
169 depends on I2C
170 select HWMON_VID
171 help
172 If you say yes here you get support for Analog Devices ADM9240,
173 Dallas DS1780, National Semiconductor LM81 sensor chips.
174
175 This driver can also be built as a module. If so, the module
176 will be called adm9240.
177
178config SENSORS_ADT7X10
179 tristate
180 help
181 This module contains common code shared by the ADT7310/ADT7320 and
182 ADT7410/ADT7420 temperature monitoring chip drivers.
183
184 If built as a module, the module will be called adt7x10.
185
186config SENSORS_ADT7310
187 tristate "Analog Devices ADT7310/ADT7320"
188 depends on SPI_MASTER
189 select SENSORS_ADT7X10
190 help
191 If you say yes here you get support for the Analog Devices
192 ADT7310 and ADT7320 temperature monitoring chips.
193
194 This driver can also be built as a module. If so, the module
195 will be called adt7310.
196
197config SENSORS_ADT7410
198 tristate "Analog Devices ADT7410/ADT7420"
199 depends on I2C
200 select SENSORS_ADT7X10
201 help
202 If you say yes here you get support for the Analog Devices
203 ADT7410 and ADT7420 temperature monitoring chips.
204
205 This driver can also be built as a module. If so, the module
206 will be called adt7410.
207
208config SENSORS_ADT7411
209 tristate "Analog Devices ADT7411"
210 depends on I2C
211 help
212 If you say yes here you get support for the Analog Devices
213 ADT7411 voltage and temperature monitoring chip.
214
215 This driver can also be built as a module. If so, the module
216 will be called adt7411.
217
218config SENSORS_ADT7462
219 tristate "Analog Devices ADT7462"
220 depends on I2C
221 help
222 If you say yes here you get support for the Analog Devices
223 ADT7462 temperature monitoring chips.
224
225 This driver can also be built as a module. If so, the module
226 will be called adt7462.
227
228config SENSORS_ADT7470
229 tristate "Analog Devices ADT7470"
230 depends on I2C
231 help
232 If you say yes here you get support for the Analog Devices
233 ADT7470 temperature monitoring chips.
234
235 This driver can also be built as a module. If so, the module
236 will be called adt7470.
237
238config SENSORS_ADT7475
239 tristate "Analog Devices ADT7473, ADT7475, ADT7476 and ADT7490"
240 depends on I2C
241 select HWMON_VID
242 help
243 If you say yes here you get support for the Analog Devices
244 ADT7473, ADT7475, ADT7476 and ADT7490 hardware monitoring
245 chips.
246
247 This driver can also be built as a module. If so, the module
248 will be called adt7475.
249
250config SENSORS_AS370
251 tristate "Synaptics AS370 SoC hardware monitoring driver"
252 help
253 If you say yes here you get support for the PVT sensors of
254 the Synaptics AS370 SoC
255
256 This driver can also be built as a module. If so, the module
257 will be called as370-hwmon.
258
259
260config SENSORS_ASC7621
261 tristate "Andigilog aSC7621"
262 depends on I2C
263 help
264 If you say yes here you get support for the aSC7621
265 family of SMBus sensors chip found on most Intel X38, X48, X58,
266 945, 965 and 975 desktop boards. Currently supported chips:
267 aSC7621
268 aSC7621a
269
270 This driver can also be built as a module. If so, the module
271 will be called asc7621.
272
273config SENSORS_K8TEMP
274 tristate "AMD Athlon64/FX or Opteron temperature sensor"
275 depends on X86 && PCI
276 help
277 If you say yes here you get support for the temperature
278 sensor(s) inside your CPU. Supported is whole AMD K8
279 microarchitecture. Please note that you will need at least
280 lm-sensors 2.10.1 for proper userspace support.
281
282 This driver can also be built as a module. If so, the module
283 will be called k8temp.
284
285config SENSORS_K10TEMP
286 tristate "AMD Family 10h+ temperature sensor"
287 depends on X86 && PCI && AMD_NB
288 help
289 If you say yes here you get support for the temperature
290 sensor(s) inside your CPU. Supported are later revisions of
291 the AMD Family 10h and all revisions of the AMD Family 11h,
292 12h (Llano), 14h (Brazos), 15h (Bulldozer/Trinity/Kaveri/Carrizo)
293 and 16h (Kabini/Mullins) microarchitectures.
294
295 This driver can also be built as a module. If so, the module
296 will be called k10temp.
297
298config SENSORS_FAM15H_POWER
299 tristate "AMD Family 15h processor power"
300 depends on X86 && PCI && CPU_SUP_AMD
301 help
302 If you say yes here you get support for processor power
303 information of your AMD family 15h CPU.
304
305 This driver can also be built as a module. If so, the module
306 will be called fam15h_power.
307
308config SENSORS_APPLESMC
309 tristate "Apple SMC (Motion sensor, light sensor, keyboard backlight)"
310 depends on INPUT && X86
311 select NEW_LEDS
312 select LEDS_CLASS
313 help
314 This driver provides support for the Apple System Management
315 Controller, which provides an accelerometer (Apple Sudden Motion
316 Sensor), light sensors, temperature sensors, keyboard backlight
317 control and fan control.
318
319 Only Intel-based Apple's computers are supported (MacBook Pro,
320 MacBook, MacMini).
321
322 Data from the different sensors, keyboard backlight control and fan
323 control are accessible via sysfs.
324
325 This driver also provides an absolute input class device, allowing
326 the laptop to act as a pinball machine-esque joystick.
327
328 Say Y here if you have an applicable laptop and want to experience
329 the awesome power of applesmc.
330
331config SENSORS_ARM_SCMI
332 tristate "ARM SCMI Sensors"
333 depends on ARM_SCMI_PROTOCOL
334 depends on THERMAL || !THERMAL_OF
335 help
336 This driver provides support for temperature, voltage, current
337 and power sensors available on SCMI based platforms. The actual
338 number and type of sensors exported depend on the platform.
339
340 This driver can also be built as a module. If so, the module
341 will be called scmi-hwmon.
342
343config SENSORS_ARM_SCPI
344 tristate "ARM SCPI Sensors"
345 depends on ARM_SCPI_PROTOCOL
346 depends on THERMAL || !THERMAL_OF
347 help
348 This driver provides support for temperature, voltage, current
349 and power sensors available on ARM Ltd's SCP based platforms. The
350 actual number and type of sensors exported depend on the platform.
351
352config SENSORS_ASB100
353 tristate "Asus ASB100 Bach"
354 depends on X86 && I2C
355 select HWMON_VID
356 help
357 If you say yes here you get support for the ASB100 Bach sensor
358 chip found on some Asus mainboards.
359
360 This driver can also be built as a module. If so, the module
361 will be called asb100.
362
363config SENSORS_ASPEED
364 tristate "ASPEED AST2400/AST2500 PWM and Fan tach driver"
365 depends on THERMAL || THERMAL=n
366 select REGMAP
367 help
368 This driver provides support for ASPEED AST2400/AST2500 PWM
369 and Fan Tacho controllers.
370
371 This driver can also be built as a module. If so, the module
372 will be called aspeed_pwm_tacho.
373
374config SENSORS_ATXP1
375 tristate "Attansic ATXP1 VID controller"
376 depends on I2C
377 select HWMON_VID
378 help
379 If you say yes here you get support for the Attansic ATXP1 VID
380 controller.
381
382 If your board have such a chip, you are able to control your CPU
383 core and other voltages.
384
385 This driver can also be built as a module. If so, the module
386 will be called atxp1.
387
388config SENSORS_DS620
389 tristate "Dallas Semiconductor DS620"
390 depends on I2C
391 help
392 If you say yes here you get support for Dallas Semiconductor
393 DS620 sensor chip.
394
395 This driver can also be built as a module. If so, the module
396 will be called ds620.
397
398config SENSORS_DS1621
399 tristate "Dallas Semiconductor DS1621 and compatibles"
400 depends on I2C
401 help
402 If you say yes here you get support for Dallas Semiconductor/Maxim
403 Integrated DS1621 sensor chips and compatible models including:
404
405 - Dallas Semiconductor DS1625
406 - Maxim Integrated DS1631
407 - Maxim Integrated DS1721
408 - Maxim Integrated DS1731
409
410 This driver can also be built as a module. If so, the module
411 will be called ds1621.
412
413config SENSORS_DELL_SMM
414 tristate "Dell laptop SMM BIOS hwmon driver"
415 depends on X86
416 help
417 This hwmon driver adds support for reporting temperature of different
418 sensors and controls the fans on Dell laptops via System Management
419 Mode provided by Dell BIOS.
420
421 When option I8K is also enabled this driver provides legacy /proc/i8k
422 userspace interface for i8kutils package.
423
424config SENSORS_DA9052_ADC
425 tristate "Dialog DA9052/DA9053 ADC"
426 depends on PMIC_DA9052
427 help
428 Say y here to support the ADC found on Dialog Semiconductor
429 DA9052-BC and DA9053-AA/Bx PMICs.
430
431 This driver can also be built as module. If so, the module
432 will be called da9052-hwmon.
433
434config SENSORS_DA9055
435 tristate "Dialog Semiconductor DA9055 ADC"
436 depends on MFD_DA9055
437 help
438 If you say yes here you get support for ADC on the Dialog
439 Semiconductor DA9055 PMIC.
440
441 This driver can also be built as a module. If so, the module
442 will be called da9055-hwmon.
443
444config SENSORS_I5K_AMB
445 tristate "FB-DIMM AMB temperature sensor on Intel 5000 series chipsets"
446 depends on PCI
447 help
448 If you say yes here you get support for FB-DIMM AMB temperature
449 monitoring chips on systems with the Intel 5000 series chipset.
450
451 This driver can also be built as a module. If so, the module
452 will be called i5k_amb.
453
454config SENSORS_F71805F
455 tristate "Fintek F71805F/FG, F71806F/FG and F71872F/FG"
456 depends on !PPC
457 help
458 If you say yes here you get support for hardware monitoring
459 features of the Fintek F71805F/FG, F71806F/FG and F71872F/FG
460 Super-I/O chips.
461
462 This driver can also be built as a module. If so, the module
463 will be called f71805f.
464
465config SENSORS_F71882FG
466 tristate "Fintek F71882FG and compatibles"
467 depends on !PPC
468 help
469 If you say yes here you get support for hardware monitoring
470 features of many Fintek Super-I/O (LPC) chips. The currently
471 supported chips are:
472 F71808E/A
473 F71858FG
474 F71862FG
475 F71863FG
476 F71869F/E/A
477 F71882FG
478 F71883FG
479 F71889FG/ED/A
480 F8000
481 F81801U
482 F81865F
483
484 This driver can also be built as a module. If so, the module
485 will be called f71882fg.
486
487config SENSORS_F75375S
488 tristate "Fintek F75375S/SP, F75373 and F75387"
489 depends on I2C
490 help
491 If you say yes here you get support for hardware monitoring
492 features of the Fintek F75375S/SP, F75373 and F75387
493
494 This driver can also be built as a module. If so, the module
495 will be called f75375s.
496
497config SENSORS_MC13783_ADC
498 tristate "Freescale MC13783/MC13892 ADC"
499 depends on MFD_MC13XXX
500 help
501 Support for the A/D converter on MC13783 and MC13892 PMIC.
502
503config SENSORS_FSCHMD
504 tristate "Fujitsu Siemens Computers sensor chips"
505 depends on X86 && I2C
506 help
507 If you say yes here you get support for the following Fujitsu
508 Siemens Computers (FSC) sensor chips: Poseidon, Scylla, Hermes,
509 Heimdall, Heracles, Hades and Syleus including support for the
510 integrated watchdog.
511
512 This is a merged driver for FSC sensor chips replacing the fscpos,
513 fscscy and fscher drivers and adding support for several other FSC
514 sensor chips.
515
516 This driver can also be built as a module. If so, the module
517 will be called fschmd.
518
519config SENSORS_FTSTEUTATES
520 tristate "Fujitsu Technology Solutions sensor chip Teutates"
521 depends on I2C && WATCHDOG
522 select WATCHDOG_CORE
523 help
524 If you say yes here you get support for the Fujitsu Technology
525 Solutions (FTS) sensor chip "Teutates" including support for
526 the integrated watchdog.
527
528 This driver can also be built as a module. If so, the module
529 will be called ftsteutates.
530
531config SENSORS_GL518SM
532 tristate "Genesys Logic GL518SM"
533 depends on I2C
534 help
535 If you say yes here you get support for Genesys Logic GL518SM
536 sensor chips.
537
538 This driver can also be built as a module. If so, the module
539 will be called gl518sm.
540
541config SENSORS_GL520SM
542 tristate "Genesys Logic GL520SM"
543 depends on I2C
544 select HWMON_VID
545 help
546 If you say yes here you get support for Genesys Logic GL520SM
547 sensor chips.
548
549 This driver can also be built as a module. If so, the module
550 will be called gl520sm.
551
552config SENSORS_G760A
553 tristate "GMT G760A"
554 depends on I2C
555 help
556 If you say yes here you get support for Global Mixed-mode
557 Technology Inc G760A fan speed PWM controller chips.
558
559 This driver can also be built as a module. If so, the module
560 will be called g760a.
561
562config SENSORS_G762
563 tristate "GMT G762 and G763"
564 depends on I2C
565 help
566 If you say yes here you get support for Global Mixed-mode
567 Technology Inc G762 and G763 fan speed PWM controller chips.
568
569 This driver can also be built as a module. If so, the module
570 will be called g762.
571
572config SENSORS_GPIO_FAN
573 tristate "GPIO fan"
574 depends on OF_GPIO
575 depends on GPIOLIB || COMPILE_TEST
576 depends on THERMAL || THERMAL=n
577 help
578 If you say yes here you get support for fans connected to GPIO lines.
579
580 This driver can also be built as a module. If so, the module
581 will be called gpio-fan.
582
583config SENSORS_HIH6130
584 tristate "Honeywell Humidicon HIH-6130 humidity/temperature sensor"
585 depends on I2C
586 help
587 If you say yes here you get support for Honeywell Humidicon
588 HIH-6130 and HIH-6131 Humidicon humidity sensors.
589
590 This driver can also be built as a module. If so, the module
591 will be called hih6130.
592
593config SENSORS_IBMAEM
594 tristate "IBM Active Energy Manager temperature/power sensors and control"
595 select IPMI_SI
596 depends on IPMI_HANDLER
597 help
598 If you say yes here you get support for the temperature and
599 power sensors and capping hardware in various IBM System X
600 servers that support Active Energy Manager. This includes
601 the x3350, x3550, x3650, x3655, x3755, x3850 M2, x3950 M2,
602 and certain HC10/HS2x/LS2x/QS2x blades.
603
604 This driver can also be built as a module. If so, the module
605 will be called ibmaem.
606
607config SENSORS_IBMPEX
608 tristate "IBM PowerExecutive temperature/power sensors"
609 select IPMI_SI
610 depends on IPMI_HANDLER
611 help
612 If you say yes here you get support for the temperature and
613 power sensors in various IBM System X servers that support
614 PowerExecutive. So far this includes the x3350, x3550, x3650,
615 x3655, and x3755; the x3800, x3850, and x3950 models that have
616 PCI Express; and some of the HS2x, LS2x, and QS2x blades.
617
618 This driver can also be built as a module. If so, the module
619 will be called ibmpex.
620
621config SENSORS_IBMPOWERNV
622 tristate "IBM POWERNV platform sensors"
623 depends on PPC_POWERNV
624 default y
625 help
626 If you say yes here you get support for the temperature/fan/power
627 sensors on your PowerNV platform.
628
629 This driver can also be built as a module. If so, the module
630 will be called ibmpowernv.
631
632config SENSORS_IIO_HWMON
633 tristate "Hwmon driver that uses channels specified via iio maps"
634 depends on IIO
635 help
636 This is a platform driver that in combination with a suitable
637 map allows IIO devices to provide basic hwmon functionality
638 for those channels specified in the map. This map can be provided
639 either via platform data or the device tree bindings.
640
641config SENSORS_I5500
642 tristate "Intel 5500/5520/X58 temperature sensor"
643 depends on X86 && PCI
644 help
645 If you say yes here you get support for the temperature
646 sensor inside the Intel 5500, 5520 and X58 chipsets.
647
648 This driver can also be built as a module. If so, the module
649 will be called i5500_temp.
650
651config SENSORS_CORETEMP
652 tristate "Intel Core/Core2/Atom temperature sensor"
653 depends on X86
654 help
655 If you say yes here you get support for the temperature
656 sensor inside your CPU. Most of the family 6 CPUs
657 are supported. Check Documentation/hwmon/coretemp.rst for details.
658
659config SENSORS_IT87
660 tristate "ITE IT87xx and compatibles"
661 depends on !PPC
662 select HWMON_VID
663 help
664 If you say yes here you get support for ITE IT8705F, IT8712F, IT8716F,
665 IT8718F, IT8720F, IT8721F, IT8726F, IT8728F, IT8732F, IT8758E,
666 IT8771E, IT8772E, IT8781F, IT8782F, IT8783E/F, IT8786E, IT8790E,
667 IT8603E, IT8620E, IT8623E, and IT8628E sensor chips, and the SiS950
668 clone.
669
670 This driver can also be built as a module. If so, the module
671 will be called it87.
672
673config SENSORS_JC42
674 tristate "JEDEC JC42.4 compliant memory module temperature sensors"
675 depends on I2C
676 help
677 If you say yes here, you get support for JEDEC JC42.4 compliant
678 temperature sensors, which are used on many DDR3 memory modules for
679 mobile devices and servers. Support will include, but not be limited
680 to, ADT7408, AT30TS00, CAT34TS02, CAT6095, MAX6604, MCP9804, MCP9805,
681 MCP9808, MCP98242, MCP98243, MCP98244, MCP9843, SE97, SE98,
682 STTS424(E), STTS2002, STTS3000, TSE2002, TSE2004, TS3000, and TS3001.
683
684 This driver can also be built as a module. If so, the module
685 will be called jc42.
686
687config SENSORS_POWR1220
688 tristate "Lattice POWR1220 Power Monitoring"
689 depends on I2C
690 help
691 If you say yes here you get access to the hardware monitoring
692 functions of the Lattice POWR1220 isp Power Supply Monitoring,
693 Sequencing and Margining Controller.
694
695 This driver can also be built as a module. If so, the module
696 will be called powr1220.
697
698config SENSORS_LINEAGE
699 tristate "Lineage Compact Power Line Power Entry Module"
700 depends on I2C
701 help
702 If you say yes here you get support for the Lineage Compact Power Line
703 series of DC/DC and AC/DC converters such as CP1800, CP2000AC,
704 CP2000DC, CP2725, and others.
705
706 This driver can also be built as a module. If so, the module
707 will be called lineage-pem.
708
709config SENSORS_LOCHNAGAR
710 tristate "Lochnagar Hardware Monitor"
711 depends on MFD_LOCHNAGAR
712 help
713 If you say yes here you get support for Lochnagar 2 temperature,
714 voltage and current sensors abilities.
715
716 This driver can also be built as a module. If so, the module
717 will be called lochnagar-hwmon.
718
719config SENSORS_LTC2945
720 tristate "Linear Technology LTC2945"
721 depends on I2C
722 select REGMAP_I2C
723 help
724 If you say yes here you get support for Linear Technology LTC2945
725 I2C System Monitor.
726
727 This driver can also be built as a module. If so, the module will
728 be called ltc2945.
729
730config SENSORS_LTC2947
731 tristate
732
733config SENSORS_LTC2947_I2C
734 tristate "Analog Devices LTC2947 High Precision Power and Energy Monitor over I2C"
735 depends on I2C
736 select REGMAP_I2C
737 select SENSORS_LTC2947
738 help
739 If you say yes here you get support for Linear Technology LTC2947
740 I2C High Precision Power and Energy Monitor
741
742 This driver can also be built as a module. If so, the module will
743 be called ltc2947-i2c.
744
745config SENSORS_LTC2947_SPI
746 tristate "Analog Devices LTC2947 High Precision Power and Energy Monitor over SPI"
747 depends on SPI_MASTER
748 select REGMAP_SPI
749 select SENSORS_LTC2947
750 help
751 If you say yes here you get support for Linear Technology LTC2947
752 SPI High Precision Power and Energy Monitor
753
754 This driver can also be built as a module. If so, the module will
755 be called ltc2947-spi.
756
757config SENSORS_LTC2990
758 tristate "Linear Technology LTC2990"
759 depends on I2C
760 help
761 If you say yes here you get support for Linear Technology LTC2990
762 I2C System Monitor. The LTC2990 supports a combination of voltage,
763 current and temperature monitoring.
764
765 This driver can also be built as a module. If so, the module will
766 be called ltc2990.
767
768config SENSORS_LTC4151
769 tristate "Linear Technology LTC4151"
770 depends on I2C
771 help
772 If you say yes here you get support for Linear Technology LTC4151
773 High Voltage I2C Current and Voltage Monitor interface.
774
775 This driver can also be built as a module. If so, the module will
776 be called ltc4151.
777
778config SENSORS_LTC4215
779 tristate "Linear Technology LTC4215"
780 depends on I2C
781 help
782 If you say yes here you get support for Linear Technology LTC4215
783 Hot Swap Controller I2C interface.
784
785 This driver can also be built as a module. If so, the module will
786 be called ltc4215.
787
788config SENSORS_LTC4222
789 tristate "Linear Technology LTC4222"
790 depends on I2C
791 select REGMAP_I2C
792 help
793 If you say yes here you get support for Linear Technology LTC4222
794 Dual Hot Swap Controller I2C interface.
795
796 This driver can also be built as a module. If so, the module will
797 be called ltc4222.
798
799config SENSORS_LTC4245
800 tristate "Linear Technology LTC4245"
801 depends on I2C
802 help
803 If you say yes here you get support for Linear Technology LTC4245
804 Multiple Supply Hot Swap Controller I2C interface.
805
806 This driver can also be built as a module. If so, the module will
807 be called ltc4245.
808
809config SENSORS_LTC4260
810 tristate "Linear Technology LTC4260"
811 depends on I2C
812 select REGMAP_I2C
813 help
814 If you say yes here you get support for Linear Technology LTC4260
815 Positive Voltage Hot Swap Controller I2C interface.
816
817 This driver can also be built as a module. If so, the module will
818 be called ltc4260.
819
820config SENSORS_LTC4261
821 tristate "Linear Technology LTC4261"
822 depends on I2C
823 help
824 If you say yes here you get support for Linear Technology LTC4261
825 Negative Voltage Hot Swap Controller I2C interface.
826
827 This driver can also be built as a module. If so, the module will
828 be called ltc4261.
829
830config SENSORS_LTQ_CPUTEMP
831 bool "Lantiq cpu temperature sensor driver"
832 depends on LANTIQ
833 help
834 If you say yes here you get support for the temperature
835 sensor inside your CPU.
836
837config SENSORS_MAX1111
838 tristate "Maxim MAX1111 Serial 8-bit ADC chip and compatibles"
839 depends on SPI_MASTER
840 help
841 Say y here to support Maxim's MAX1110, MAX1111, MAX1112, and MAX1113
842 ADC chips.
843
844 This driver can also be built as a module. If so, the module
845 will be called max1111.
846
847config SENSORS_MAX16065
848 tristate "Maxim MAX16065 System Manager and compatibles"
849 depends on I2C
850 help
851 If you say yes here you get support for hardware monitoring
852 capabilities of the following Maxim System Manager chips.
853 MAX16065
854 MAX16066
855 MAX16067
856 MAX16068
857 MAX16070
858 MAX16071
859
860 This driver can also be built as a module. If so, the module
861 will be called max16065.
862
863config SENSORS_MAX1619
864 tristate "Maxim MAX1619 sensor chip"
865 depends on I2C
866 help
867 If you say yes here you get support for MAX1619 sensor chip.
868
869 This driver can also be built as a module. If so, the module
870 will be called max1619.
871
872config SENSORS_MAX1668
873 tristate "Maxim MAX1668 and compatibles"
874 depends on I2C
875 help
876 If you say yes here you get support for MAX1668, MAX1989 and
877 MAX1805 chips.
878
879 This driver can also be built as a module. If so, the module
880 will be called max1668.
881
882config SENSORS_MAX197
883 tristate "Maxim MAX197 and compatibles"
884 help
885 Support for the Maxim MAX197 A/D converter.
886 Support will include, but not be limited to, MAX197, and MAX199.
887
888 This driver can also be built as a module. If so, the module
889 will be called max197.
890
891config SENSORS_MAX31722
892tristate "MAX31722 temperature sensor"
893 depends on SPI
894 help
895 Support for the Maxim Integrated MAX31722/MAX31723 digital
896 thermometers/thermostats operating over an SPI interface.
897
898 This driver can also be built as a module. If so, the module
899 will be called max31722.
900
901config SENSORS_MAX6621
902 tristate "Maxim MAX6621 sensor chip"
903 depends on I2C
904 select REGMAP_I2C
905 help
906 If you say yes here you get support for MAX6621 sensor chip.
907 MAX6621 is a PECI-to-I2C translator provides an efficient,
908 low-cost solution for PECI-to-SMBus/I2C protocol conversion.
909 It allows reading the temperature from the PECI-compliant
910 host directly from up to four PECI-enabled CPUs.
911
912 This driver can also be built as a module. If so, the module
913 will be called max6621.
914
915config SENSORS_MAX6639
916 tristate "Maxim MAX6639 sensor chip"
917 depends on I2C
918 help
919 If you say yes here you get support for the MAX6639
920 sensor chips.
921
922 This driver can also be built as a module. If so, the module
923 will be called max6639.
924
925config SENSORS_MAX6642
926 tristate "Maxim MAX6642 sensor chip"
927 depends on I2C
928 help
929 If you say yes here you get support for MAX6642 sensor chip.
930 MAX6642 is a SMBus-Compatible Remote/Local Temperature Sensor
931 with Overtemperature Alarm from Maxim.
932
933 This driver can also be built as a module. If so, the module
934 will be called max6642.
935
936config SENSORS_MAX6650
937 tristate "Maxim MAX6650 sensor chip"
938 depends on I2C
939 depends on THERMAL || THERMAL=n
940 help
941 If you say yes here you get support for the MAX6650 / MAX6651
942 sensor chips.
943
944 This driver can also be built as a module. If so, the module
945 will be called max6650.
946
947config SENSORS_MAX6697
948 tristate "Maxim MAX6697 and compatibles"
949 depends on I2C
950 help
951 If you say yes here you get support for MAX6581, MAX6602, MAX6622,
952 MAX6636, MAX6689, MAX6693, MAX6694, MAX6697, MAX6698, and MAX6699
953 temperature sensor chips.
954
955 This driver can also be built as a module. If so, the module
956 will be called max6697.
957
958config SENSORS_MAX31790
959 tristate "Maxim MAX31790 sensor chip"
960 depends on I2C
961 help
962 If you say yes here you get support for 6-Channel PWM-Output
963 Fan RPM Controller.
964
965 This driver can also be built as a module. If so, the module
966 will be called max31790.
967
968config SENSORS_MCP3021
969 tristate "Microchip MCP3021 and compatibles"
970 depends on I2C
971 help
972 If you say yes here you get support for MCP3021 and MCP3221.
973 The MCP3021 is a A/D converter (ADC) with 10-bit and the MCP3221
974 with 12-bit resolution.
975
976 This driver can also be built as a module. If so, the module
977 will be called mcp3021.
978
979config SENSORS_MLXREG_FAN
980 tristate "Mellanox Mellanox FAN driver"
981 depends on MELLANOX_PLATFORM
982 imply THERMAL
983 select REGMAP
984 help
985 This option enables support for the FAN control on the Mellanox
986 Ethernet and InfiniBand switches. The driver can be activated by the
987 platform device add call. Say Y to enable these. To compile this
988 driver as a module, choose 'M' here: the module will be called
989 mlxreg-fan.
990
991config SENSORS_TC654
992 tristate "Microchip TC654/TC655 and compatibles"
993 depends on I2C
994 help
995 If you say yes here you get support for TC654 and TC655.
996 The TC654 and TC655 are PWM mode fan speed controllers with
997 FanSense technology for use with brushless DC fans.
998
999 This driver can also be built as a module. If so, the module
1000 will be called tc654.
1001
1002config SENSORS_MENF21BMC_HWMON
1003 tristate "MEN 14F021P00 BMC Hardware Monitoring"
1004 depends on MFD_MENF21BMC
1005 help
1006 Say Y here to include support for the MEN 14F021P00 BMC
1007 hardware monitoring.
1008
1009 This driver can also be built as a module. If so the module
1010 will be called menf21bmc_hwmon.
1011
1012config SENSORS_ADCXX
1013 tristate "National Semiconductor ADCxxxSxxx"
1014 depends on SPI_MASTER
1015 help
1016 If you say yes here you get support for the National Semiconductor
1017 ADC<bb><c>S<sss> chip family, where
1018 * bb is the resolution in number of bits (8, 10, 12)
1019 * c is the number of channels (1, 2, 4, 8)
1020 * sss is the maximum conversion speed (021 for 200 kSPS, 051 for 500
1021 kSPS and 101 for 1 MSPS)
1022
1023 Examples : ADC081S101, ADC124S501, ...
1024
1025 This driver can also be built as a module. If so, the module
1026 will be called adcxx.
1027
1028config SENSORS_LM63
1029 tristate "National Semiconductor LM63 and compatibles"
1030 depends on I2C
1031 help
1032 If you say yes here you get support for the National
1033 Semiconductor LM63, LM64, and LM96163 remote diode digital temperature
1034 sensors with integrated fan control. Such chips are found
1035 on the Tyan S4882 (Thunder K8QS Pro) motherboard, among
1036 others.
1037
1038 This driver can also be built as a module. If so, the module
1039 will be called lm63.
1040
1041config SENSORS_LM70
1042 tristate "National Semiconductor LM70 and compatibles"
1043 depends on SPI_MASTER
1044 help
1045 If you say yes here you get support for the National Semiconductor
1046 LM70, LM71, LM74 and Texas Instruments TMP121/TMP123 digital tempera-
1047 ture sensor chips.
1048
1049 This driver can also be built as a module. If so, the module
1050 will be called lm70.
1051
1052config SENSORS_LM73
1053 tristate "National Semiconductor LM73"
1054 depends on I2C
1055 help
1056 If you say yes here you get support for National Semiconductor LM73
1057 sensor chips.
1058 This driver can also be built as a module. If so, the module
1059 will be called lm73.
1060
1061config SENSORS_LM75
1062 tristate "National Semiconductor LM75 and compatibles"
1063 depends on I2C
1064 select REGMAP_I2C
1065 help
1066 If you say yes here you get support for one common type of
1067 temperature sensor chip, with models including:
1068
1069 - Analog Devices ADT75
1070 - Dallas Semiconductor DS75, DS1775 and DS7505
1071 - Global Mixed-mode Technology (GMT) G751
1072 - Maxim MAX6625 and MAX6626
1073 - Microchip MCP980x
1074 - National Semiconductor LM75, LM75A
1075 - NXP's LM75A
1076 - ST Microelectronics STDS75
1077 - ST Microelectronics STLM75
1078 - TelCom (now Microchip) TCN75
1079 - Texas Instruments TMP100, TMP101, TMP105, TMP112, TMP75,
1080 TMP175, TMP275
1081
1082 This driver supports driver model based binding through board
1083 specific I2C device tables.
1084
1085 It also supports the "legacy" style of driver binding. To use
1086 that with some chips which don't replicate LM75 quirks exactly,
1087 you may need the "force" module parameter.
1088
1089 This driver can also be built as a module. If so, the module
1090 will be called lm75.
1091
1092config SENSORS_LM77
1093 tristate "National Semiconductor LM77"
1094 depends on I2C
1095 help
1096 If you say yes here you get support for National Semiconductor LM77
1097 sensor chips.
1098
1099 This driver can also be built as a module. If so, the module
1100 will be called lm77.
1101
1102config SENSORS_LM78
1103 tristate "National Semiconductor LM78 and compatibles"
1104 depends on I2C
1105 select HWMON_VID
1106 help
1107 If you say yes here you get support for National Semiconductor LM78,
1108 LM78-J and LM79.
1109
1110 This driver can also be built as a module. If so, the module
1111 will be called lm78.
1112
1113config SENSORS_LM80
1114 tristate "National Semiconductor LM80 and LM96080"
1115 depends on I2C
1116 help
1117 If you say yes here you get support for National Semiconductor
1118 LM80 and LM96080 sensor chips.
1119
1120 This driver can also be built as a module. If so, the module
1121 will be called lm80.
1122
1123config SENSORS_LM83
1124 tristate "National Semiconductor LM83 and compatibles"
1125 depends on I2C
1126 help
1127 If you say yes here you get support for National Semiconductor
1128 LM82 and LM83 sensor chips.
1129
1130 This driver can also be built as a module. If so, the module
1131 will be called lm83.
1132
1133config SENSORS_LM85
1134 tristate "National Semiconductor LM85 and compatibles"
1135 depends on I2C
1136 select HWMON_VID
1137 help
1138 If you say yes here you get support for National Semiconductor LM85
1139 sensor chips and clones: ADM1027, ADT7463, ADT7468, EMC6D100,
1140 EMC6D101, EMC6D102, and EMC6D103.
1141
1142 This driver can also be built as a module. If so, the module
1143 will be called lm85.
1144
1145config SENSORS_LM87
1146 tristate "National Semiconductor LM87 and compatibles"
1147 depends on I2C
1148 select HWMON_VID
1149 help
1150 If you say yes here you get support for National Semiconductor LM87
1151 and Analog Devices ADM1024 sensor chips.
1152
1153 This driver can also be built as a module. If so, the module
1154 will be called lm87.
1155
1156config SENSORS_LM90
1157 tristate "National Semiconductor LM90 and compatibles"
1158 depends on I2C
1159 help
1160 If you say yes here you get support for National Semiconductor LM90,
1161 LM86, LM89 and LM99, Analog Devices ADM1032, ADT7461, and ADT7461A,
1162 Maxim MAX6646, MAX6647, MAX6648, MAX6649, MAX6657, MAX6658, MAX6659,
1163 MAX6680, MAX6681, MAX6692, MAX6695, MAX6696, ON Semiconductor NCT1008,
1164 Winbond/Nuvoton W83L771W/G/AWG/ASG, Philips SA56004, GMT G781, and
1165 Texas Instruments TMP451 sensor chips.
1166
1167 This driver can also be built as a module. If so, the module
1168 will be called lm90.
1169
1170config SENSORS_LM92
1171 tristate "National Semiconductor LM92 and compatibles"
1172 depends on I2C
1173 help
1174 If you say yes here you get support for National Semiconductor LM92
1175 and Maxim MAX6635 sensor chips.
1176
1177 This driver can also be built as a module. If so, the module
1178 will be called lm92.
1179
1180config SENSORS_LM93
1181 tristate "National Semiconductor LM93 and compatibles"
1182 depends on I2C
1183 select HWMON_VID
1184 help
1185 If you say yes here you get support for National Semiconductor LM93,
1186 LM94, and compatible sensor chips.
1187
1188 This driver can also be built as a module. If so, the module
1189 will be called lm93.
1190
1191config SENSORS_LM95234
1192 tristate "National Semiconductor LM95234 and compatibles"
1193 depends on I2C
1194 help
1195 If you say yes here you get support for the LM95233 and LM95234
1196 temperature sensor chips.
1197
1198 This driver can also be built as a module. If so, the module
1199 will be called lm95234.
1200
1201config SENSORS_LM95241
1202 tristate "National Semiconductor LM95241 and compatibles"
1203 depends on I2C
1204 help
1205 If you say yes here you get support for LM95231 and LM95241 sensor
1206 chips.
1207
1208 This driver can also be built as a module. If so, the module
1209 will be called lm95241.
1210
1211config SENSORS_LM95245
1212 tristate "National Semiconductor LM95245 and compatibles"
1213 depends on I2C
1214 select REGMAP_I2C
1215 help
1216 If you say yes here you get support for LM95235 and LM95245
1217 temperature sensor chips.
1218
1219 This driver can also be built as a module. If so, the module
1220 will be called lm95245.
1221
1222config SENSORS_PC87360
1223 tristate "National Semiconductor PC87360 family"
1224 depends on !PPC
1225 select HWMON_VID
1226 help
1227 If you say yes here you get access to the hardware monitoring
1228 functions of the National Semiconductor PC8736x Super-I/O chips.
1229 The PC87360, PC87363 and PC87364 only have fan monitoring and
1230 control. The PC87365 and PC87366 additionally have voltage and
1231 temperature monitoring.
1232
1233 This driver can also be built as a module. If so, the module
1234 will be called pc87360.
1235
1236config SENSORS_PC87427
1237 tristate "National Semiconductor PC87427"
1238 depends on !PPC
1239 help
1240 If you say yes here you get access to the hardware monitoring
1241 functions of the National Semiconductor PC87427 Super-I/O chip.
1242 The chip has two distinct logical devices, one for fan speed
1243 monitoring and control, and one for voltage and temperature
1244 monitoring. Fan speed monitoring and control are supported, as
1245 well as temperature monitoring. Voltages aren't supported yet.
1246
1247 This driver can also be built as a module. If so, the module
1248 will be called pc87427.
1249
1250config SENSORS_NTC_THERMISTOR
1251 tristate "NTC thermistor support from Murata"
1252 depends on !OF || IIO=n || IIO
1253 depends on THERMAL || !THERMAL_OF
1254 help
1255 This driver supports NTC thermistors sensor reading and its
1256 interpretation. The driver can also monitor the temperature and
1257 send notifications about the temperature.
1258
1259 Currently, this driver supports
1260 NCP15WB473, NCP18WB473, NCP21WB473, NCP03WB473, NCP15WL333,
1261 NCP03WF104 and NCP15XH103 from Murata and B57330V2103 and
1262 B57891S0103 from EPCOS.
1263
1264 This driver can also be built as a module. If so, the module
1265 will be called ntc-thermistor.
1266
1267config SENSORS_NCT6683
1268 tristate "Nuvoton NCT6683D"
1269 depends on !PPC
1270 help
1271 If you say yes here you get support for the hardware monitoring
1272 functionality of the Nuvoton NCT6683D eSIO chip.
1273
1274 This driver can also be built as a module. If so, the module
1275 will be called nct6683.
1276
1277config SENSORS_NCT6775
1278 tristate "Nuvoton NCT6775F and compatibles"
1279 depends on !PPC
1280 select HWMON_VID
1281 help
1282 If you say yes here you get support for the hardware monitoring
1283 functionality of the Nuvoton NCT6106D, NCT6775F, NCT6776F, NCT6779D,
1284 NCT6791D, NCT6792D, NCT6793D, NCT6795D, NCT6796D, and compatible
1285 Super-I/O chips. This driver replaces the w83627ehf driver for
1286 NCT6775F and NCT6776F.
1287
1288 This driver can also be built as a module. If so, the module
1289 will be called nct6775.
1290
1291config SENSORS_NCT7802
1292 tristate "Nuvoton NCT7802Y"
1293 depends on I2C
1294 select REGMAP_I2C
1295 help
1296 If you say yes here you get support for the Nuvoton NCT7802Y
1297 hardware monitoring chip.
1298
1299 This driver can also be built as a module. If so, the module
1300 will be called nct7802.
1301
1302config SENSORS_NCT7904
1303 tristate "Nuvoton NCT7904"
1304 depends on I2C
1305 help
1306 If you say yes here you get support for the Nuvoton NCT7904
1307 hardware monitoring chip, including manual fan speed control.
1308
1309 This driver can also be built as a module. If so, the module
1310 will be called nct7904.
1311
1312config SENSORS_NPCM7XX
1313 tristate "Nuvoton NPCM750 and compatible PWM and Fan controllers"
1314 imply THERMAL
1315 help
1316 This driver provides support for Nuvoton NPCM750/730/715/705 PWM
1317 and Fan controllers.
1318
1319 This driver can also be built as a module. If so, the module
1320 will be called npcm750-pwm-fan.
1321
1322config SENSORS_NSA320
1323 tristate "ZyXEL NSA320 and compatible fan speed and temperature sensors"
1324 depends on GPIOLIB && OF
1325 depends on MACH_KIRKWOOD || COMPILE_TEST
1326 help
1327 If you say yes here you get support for hardware monitoring
1328 for the ZyXEL NSA320 Media Server and other compatible devices
1329 (probably the NSA325 and some NSA310 variants).
1330
1331 The sensor data is taken from a Holtek HT46R065 microcontroller
1332 connected to GPIO lines.
1333
1334 This driver can also be built as a module. If so, the module
1335 will be called nsa320-hwmon.
1336
1337source "drivers/hwmon/occ/Kconfig"
1338
1339config SENSORS_PCF8591
1340 tristate "Philips PCF8591 ADC/DAC"
1341 depends on I2C
1342 help
1343 If you say yes here you get support for Philips PCF8591 4-channel
1344 ADC, 1-channel DAC chips.
1345
1346 This driver can also be built as a module. If so, the module
1347 will be called pcf8591.
1348
1349 These devices are hard to detect and rarely found on mainstream
1350 hardware. If unsure, say N.
1351
1352source "drivers/hwmon/pmbus/Kconfig"
1353
1354config SENSORS_PWM_FAN
1355 tristate "PWM fan"
1356 depends on (PWM && OF) || COMPILE_TEST
1357 depends on THERMAL || THERMAL=n
1358 help
1359 If you say yes here you get support for fans connected to PWM lines.
1360 The driver uses the generic PWM interface, thus it will work on a
1361 variety of SoCs.
1362
1363 This driver can also be built as a module. If so, the module
1364 will be called pwm-fan.
1365
1366config SENSORS_RASPBERRYPI_HWMON
1367 tristate "Raspberry Pi voltage monitor"
1368 depends on RASPBERRYPI_FIRMWARE || (COMPILE_TEST && !RASPBERRYPI_FIRMWARE)
1369 help
1370 If you say yes here you get support for voltage sensor on the
1371 Raspberry Pi.
1372
1373 This driver can also be built as a module. If so, the module
1374 will be called raspberrypi-hwmon.
1375
1376config SENSORS_SHT15
1377 tristate "Sensiron humidity and temperature sensors. SHT15 and compat."
1378 depends on GPIOLIB || COMPILE_TEST
1379 select BITREVERSE
1380 help
1381 If you say yes here you get support for the Sensiron SHT10, SHT11,
1382 SHT15, SHT71, SHT75 humidity and temperature sensors.
1383
1384 This driver can also be built as a module. If so, the module
1385 will be called sht15.
1386
1387config SENSORS_SHT21
1388 tristate "Sensiron humidity and temperature sensors. SHT21 and compat."
1389 depends on I2C
1390 help
1391 If you say yes here you get support for the Sensiron SHT21, SHT25
1392 humidity and temperature sensors.
1393
1394 This driver can also be built as a module. If so, the module
1395 will be called sht21.
1396
1397config SENSORS_SHT3x
1398 tristate "Sensiron humidity and temperature sensors. SHT3x and compat."
1399 depends on I2C
1400 select CRC8
1401 help
1402 If you say yes here you get support for the Sensiron SHT30 and SHT31
1403 humidity and temperature sensors.
1404
1405 This driver can also be built as a module. If so, the module
1406 will be called sht3x.
1407
1408config SENSORS_SHTC1
1409 tristate "Sensiron humidity and temperature sensors. SHTC1 and compat."
1410 depends on I2C
1411 help
1412 If you say yes here you get support for the Sensiron SHTC1, SHTW1,
1413 and SHTC3 humidity and temperature sensors.
1414
1415 This driver can also be built as a module. If so, the module
1416 will be called shtc1.
1417
1418config SENSORS_S3C
1419 tristate "Samsung built-in ADC"
1420 depends on S3C_ADC
1421 help
1422 If you say yes here you get support for the on-board ADCs of
1423 the Samsung S3C24XX, S3C64XX and other series of SoC
1424
1425 This driver can also be built as a module. If so, the module
1426 will be called s3c-hwmon.
1427
1428config SENSORS_S3C_RAW
1429 bool "Include raw channel attributes in sysfs"
1430 depends on SENSORS_S3C
1431 help
1432 Say Y here if you want to include raw copies of all the ADC
1433 channels in sysfs.
1434
1435config SENSORS_SIS5595
1436 tristate "Silicon Integrated Systems Corp. SiS5595"
1437 depends on PCI
1438 help
1439 If you say yes here you get support for the integrated sensors in
1440 SiS5595 South Bridges.
1441
1442 This driver can also be built as a module. If so, the module
1443 will be called sis5595.
1444
1445config SENSORS_DME1737
1446 tristate "SMSC DME1737, SCH311x and compatibles"
1447 depends on I2C && !PPC
1448 select HWMON_VID
1449 help
1450 If you say yes here you get support for the hardware monitoring
1451 and fan control features of the SMSC DME1737, SCH311x, SCH5027, and
1452 Asus A8000 Super-I/O chips.
1453
1454 This driver can also be built as a module. If so, the module
1455 will be called dme1737.
1456
1457config SENSORS_EMC1403
1458 tristate "SMSC EMC1403/23 thermal sensor"
1459 depends on I2C
1460 select REGMAP_I2C
1461 help
1462 If you say yes here you get support for the SMSC EMC1403/23
1463 temperature monitoring chip.
1464
1465 Threshold values can be configured using sysfs.
1466 Data from the different diodes are accessible via sysfs.
1467
1468config SENSORS_EMC2103
1469 tristate "SMSC EMC2103"
1470 depends on I2C
1471 help
1472 If you say yes here you get support for the temperature
1473 and fan sensors of the SMSC EMC2103 chips.
1474
1475 This driver can also be built as a module. If so, the module
1476 will be called emc2103.
1477
1478config SENSORS_EMC6W201
1479 tristate "SMSC EMC6W201"
1480 depends on I2C
1481 help
1482 If you say yes here you get support for the SMSC EMC6W201
1483 hardware monitoring chip.
1484
1485 This driver can also be built as a module. If so, the module
1486 will be called emc6w201.
1487
1488config SENSORS_SMSC47M1
1489 tristate "SMSC LPC47M10x and compatibles"
1490 depends on !PPC
1491 help
1492 If you say yes here you get support for the integrated fan
1493 monitoring and control capabilities of the SMSC LPC47B27x,
1494 LPC47M10x, LPC47M112, LPC47M13x, LPC47M14x, LPC47M15x,
1495 LPC47M192, LPC47M292 and LPC47M997 chips.
1496
1497 The temperature and voltage sensor features of the LPC47M15x,
1498 LPC47M192, LPC47M292 and LPC47M997 are supported by another
1499 driver, select also "SMSC LPC47M192 and compatibles" below for
1500 those.
1501
1502 This driver can also be built as a module. If so, the module
1503 will be called smsc47m1.
1504
1505config SENSORS_SMSC47M192
1506 tristate "SMSC LPC47M192 and compatibles"
1507 depends on I2C
1508 select HWMON_VID
1509 help
1510 If you say yes here you get support for the temperature and
1511 voltage sensors of the SMSC LPC47M192, LPC47M15x, LPC47M292
1512 and LPC47M997 chips.
1513
1514 The fan monitoring and control capabilities of these chips
1515 are supported by another driver, select
1516 "SMSC LPC47M10x and compatibles" above. You need both drivers
1517 if you want fan control and voltage/temperature sensor support.
1518
1519 This driver can also be built as a module. If so, the module
1520 will be called smsc47m192.
1521
1522config SENSORS_SMSC47B397
1523 tristate "SMSC LPC47B397-NC"
1524 depends on !PPC
1525 help
1526 If you say yes here you get support for the SMSC LPC47B397-NC
1527 sensor chip.
1528
1529 This driver can also be built as a module. If so, the module
1530 will be called smsc47b397.
1531
1532config SENSORS_SCH56XX_COMMON
1533 tristate
1534
1535config SENSORS_SCH5627
1536 tristate "SMSC SCH5627"
1537 depends on !PPC && WATCHDOG
1538 select SENSORS_SCH56XX_COMMON
1539 select WATCHDOG_CORE
1540 help
1541 If you say yes here you get support for the hardware monitoring
1542 features of the SMSC SCH5627 Super-I/O chip including support for
1543 the integrated watchdog.
1544
1545 This driver can also be built as a module. If so, the module
1546 will be called sch5627.
1547
1548config SENSORS_SCH5636
1549 tristate "SMSC SCH5636"
1550 depends on !PPC && WATCHDOG
1551 select SENSORS_SCH56XX_COMMON
1552 select WATCHDOG_CORE
1553 help
1554 SMSC SCH5636 Super I/O chips include an embedded microcontroller for
1555 hardware monitoring solutions, allowing motherboard manufacturers to
1556 create their own custom hwmon solution based upon the SCH5636.
1557
1558 Currently this driver only supports the Fujitsu Theseus SCH5636 based
1559 hwmon solution. Say yes here if you want support for the Fujitsu
1560 Theseus' hardware monitoring features including support for the
1561 integrated watchdog.
1562
1563 This driver can also be built as a module. If so, the module
1564 will be called sch5636.
1565
1566config SENSORS_STTS751
1567 tristate "ST Microelectronics STTS751"
1568 depends on I2C
1569 help
1570 If you say yes here you get support for STTS751
1571 temperature sensor chips.
1572
1573 This driver can also be built as a module. If so, the module
1574 will be called stts751.
1575
1576config SENSORS_SMM665
1577 tristate "Summit Microelectronics SMM665"
1578 depends on I2C
1579 help
1580 If you say yes here you get support for the hardware monitoring
1581 features of the Summit Microelectronics SMM665/SMM665B Six-Channel
1582 Active DC Output Controller / Monitor.
1583
1584 Other supported chips are SMM465, SMM665C, SMM764, and SMM766.
1585 Support for those chips is untested.
1586
1587 This driver can also be built as a module. If so, the module will
1588 be called smm665.
1589
1590config SENSORS_ADC128D818
1591 tristate "Texas Instruments ADC128D818"
1592 depends on I2C
1593 help
1594 If you say yes here you get support for the Texas Instruments
1595 ADC128D818 System Monitor with Temperature Sensor chip.
1596
1597 This driver can also be built as a module. If so, the module
1598 will be called adc128d818.
1599
1600config SENSORS_ADS7828
1601 tristate "Texas Instruments ADS7828 and compatibles"
1602 depends on I2C
1603 select REGMAP_I2C
1604 help
1605 If you say yes here you get support for Texas Instruments ADS7828 and
1606 ADS7830 8-channel A/D converters. ADS7828 resolution is 12-bit, while
1607 it is 8-bit on ADS7830.
1608
1609 This driver can also be built as a module. If so, the module
1610 will be called ads7828.
1611
1612config SENSORS_ADS7871
1613 tristate "Texas Instruments ADS7871 A/D converter"
1614 depends on SPI
1615 help
1616 If you say yes here you get support for TI ADS7871 & ADS7870
1617
1618 This driver can also be built as a module. If so, the module
1619 will be called ads7871.
1620
1621config SENSORS_AMC6821
1622 tristate "Texas Instruments AMC6821"
1623 depends on I2C
1624 help
1625 If you say yes here you get support for the Texas Instruments
1626 AMC6821 hardware monitoring chips.
1627
1628 This driver can also be built as a module. If so, the module
1629 will be called amc6821.
1630
1631config SENSORS_INA209
1632 tristate "TI / Burr Brown INA209"
1633 depends on I2C
1634 help
1635 If you say yes here you get support for the TI / Burr Brown INA209
1636 voltage / current / power monitor I2C interface.
1637
1638 This driver can also be built as a module. If so, the module will
1639 be called ina209.
1640
1641config SENSORS_INA2XX
1642 tristate "Texas Instruments INA219 and compatibles"
1643 depends on I2C
1644 select REGMAP_I2C
1645 help
1646 If you say yes here you get support for INA219, INA220, INA226,
1647 INA230, and INA231 power monitor chips.
1648
1649 The INA2xx driver is configured for the default configuration of
1650 the part as described in the datasheet.
1651 Default value for Rshunt is 10 mOhms.
1652 This driver can also be built as a module. If so, the module
1653 will be called ina2xx.
1654
1655config SENSORS_INA3221
1656 tristate "Texas Instruments INA3221 Triple Power Monitor"
1657 depends on I2C
1658 select REGMAP_I2C
1659 help
1660 If you say yes here you get support for the TI INA3221 Triple Power
1661 Monitor.
1662
1663 This driver can also be built as a module. If so, the module
1664 will be called ina3221.
1665
1666config SENSORS_TC74
1667 tristate "Microchip TC74"
1668 depends on I2C
1669 help
1670 If you say yes here you get support for Microchip TC74 single
1671 input temperature sensor chips.
1672
1673 This driver can also be built as a module. If so, the module
1674 will be called tc74.
1675
1676config SENSORS_THMC50
1677 tristate "Texas Instruments THMC50 / Analog Devices ADM1022"
1678 depends on I2C
1679 help
1680 If you say yes here you get support for Texas Instruments THMC50
1681 sensor chips and clones: the Analog Devices ADM1022.
1682
1683 This driver can also be built as a module. If so, the module
1684 will be called thmc50.
1685
1686config SENSORS_TMP102
1687 tristate "Texas Instruments TMP102"
1688 depends on I2C
1689 select REGMAP_I2C
1690 help
1691 If you say yes here you get support for Texas Instruments TMP102
1692 sensor chips.
1693
1694 This driver can also be built as a module. If so, the module
1695 will be called tmp102.
1696
1697config SENSORS_TMP103
1698 tristate "Texas Instruments TMP103"
1699 depends on I2C
1700 select REGMAP_I2C
1701 help
1702 If you say yes here you get support for Texas Instruments TMP103
1703 sensor chips.
1704
1705 This driver can also be built as a module. If so, the module
1706 will be called tmp103.
1707
1708config SENSORS_TMP108
1709 tristate "Texas Instruments TMP108"
1710 depends on I2C
1711 select REGMAP_I2C
1712 help
1713 If you say yes here you get support for Texas Instruments TMP108
1714 sensor chips.
1715
1716 This driver can also be built as a module. If so, the module
1717 will be called tmp108.
1718
1719config SENSORS_TMP401
1720 tristate "Texas Instruments TMP401 and compatibles"
1721 depends on I2C
1722 help
1723 If you say yes here you get support for Texas Instruments TMP401,
1724 TMP411, TMP431, TMP432, TMP435, and TMP461 temperature sensor chips.
1725
1726 This driver can also be built as a module. If so, the module
1727 will be called tmp401.
1728
1729config SENSORS_TMP421
1730 tristate "Texas Instruments TMP421 and compatible"
1731 depends on I2C
1732 help
1733 If you say yes here you get support for Texas Instruments TMP421,
1734 TMP422, TMP423, TMP441, and TMP442 temperature sensor chips.
1735
1736 This driver can also be built as a module. If so, the module
1737 will be called tmp421.
1738
1739config SENSORS_TMP513
1740 tristate "Texas Instruments TMP513 and compatibles"
1741 depends on I2C
1742 help
1743 If you say yes here you get support for Texas Instruments TMP512,
1744 and TMP513 temperature and power supply sensor chips.
1745
1746 This driver can also be built as a module. If so, the module
1747 will be called tmp513.
1748
1749config SENSORS_VEXPRESS
1750 tristate "Versatile Express"
1751 depends on VEXPRESS_CONFIG
1752 help
1753 This driver provides support for hardware sensors available on
1754 the ARM Ltd's Versatile Express platform. It can provide wide
1755 range of information like temperature, power, energy.
1756
1757config SENSORS_VIA_CPUTEMP
1758 tristate "VIA CPU temperature sensor"
1759 depends on X86
1760 select HWMON_VID
1761 help
1762 If you say yes here you get support for the temperature
1763 sensor inside your CPU. Supported are all known variants of
1764 the VIA C7 and Nano.
1765
1766config SENSORS_VIA686A
1767 tristate "VIA686A"
1768 depends on PCI
1769 help
1770 If you say yes here you get support for the integrated sensors in
1771 Via 686A/B South Bridges.
1772
1773 This driver can also be built as a module. If so, the module
1774 will be called via686a.
1775
1776config SENSORS_VT1211
1777 tristate "VIA VT1211"
1778 depends on !PPC
1779 select HWMON_VID
1780 help
1781 If you say yes here then you get support for hardware monitoring
1782 features of the VIA VT1211 Super-I/O chip.
1783
1784 This driver can also be built as a module. If so, the module
1785 will be called vt1211.
1786
1787config SENSORS_VT8231
1788 tristate "VIA VT8231"
1789 depends on PCI
1790 select HWMON_VID
1791 help
1792 If you say yes here then you get support for the integrated sensors
1793 in the VIA VT8231 device.
1794
1795 This driver can also be built as a module. If so, the module
1796 will be called vt8231.
1797
1798config SENSORS_W83773G
1799 tristate "Nuvoton W83773G"
1800 depends on I2C
1801 select REGMAP_I2C
1802 help
1803 If you say yes here you get support for the Nuvoton W83773G hardware
1804 monitoring chip.
1805
1806 This driver can also be built as a module. If so, the module
1807 will be called w83773g.
1808
1809config SENSORS_W83781D
1810 tristate "Winbond W83781D, W83782D, W83783S, Asus AS99127F"
1811 depends on I2C
1812 select HWMON_VID
1813 help
1814 If you say yes here you get support for the Winbond W8378x series
1815 of sensor chips: the W83781D, W83782D and W83783S, and the similar
1816 Asus AS99127F.
1817
1818 This driver can also be built as a module. If so, the module
1819 will be called w83781d.
1820
1821config SENSORS_W83791D
1822 tristate "Winbond W83791D"
1823 depends on I2C
1824 select HWMON_VID
1825 help
1826 If you say yes here you get support for the Winbond W83791D chip.
1827
1828 This driver can also be built as a module. If so, the module
1829 will be called w83791d.
1830
1831config SENSORS_W83792D
1832 tristate "Winbond W83792D"
1833 depends on I2C
1834 help
1835 If you say yes here you get support for the Winbond W83792D chip.
1836
1837 This driver can also be built as a module. If so, the module
1838 will be called w83792d.
1839
1840config SENSORS_W83793
1841 tristate "Winbond W83793"
1842 depends on I2C
1843 select HWMON_VID
1844 help
1845 If you say yes here you get support for the Winbond W83793
1846 hardware monitoring chip, including support for the integrated
1847 watchdog.
1848
1849 This driver can also be built as a module. If so, the module
1850 will be called w83793.
1851
1852config SENSORS_W83795
1853 tristate "Winbond/Nuvoton W83795G/ADG"
1854 depends on I2C
1855 help
1856 If you say yes here you get support for the Winbond W83795G and
1857 W83795ADG hardware monitoring chip, including manual fan speed
1858 control.
1859
1860 This driver can also be built as a module. If so, the module
1861 will be called w83795.
1862
1863config SENSORS_W83795_FANCTRL
1864 bool "Include automatic fan control support"
1865 depends on SENSORS_W83795
1866 help
1867 If you say yes here, support for automatic fan speed control
1868 will be included in the driver.
1869
1870 Please also note that this option will create sysfs attribute
1871 files which may change in the future, so you shouldn't rely
1872 on them being stable.
1873
1874config SENSORS_W83L785TS
1875 tristate "Winbond W83L785TS-S"
1876 depends on I2C
1877 help
1878 If you say yes here you get support for the Winbond W83L785TS-S
1879 sensor chip, which is used on the Asus A7N8X, among other
1880 motherboards.
1881
1882 This driver can also be built as a module. If so, the module
1883 will be called w83l785ts.
1884
1885config SENSORS_W83L786NG
1886 tristate "Winbond W83L786NG, W83L786NR"
1887 depends on I2C
1888 help
1889 If you say yes here you get support for the Winbond W83L786NG
1890 and W83L786NR sensor chips.
1891
1892 This driver can also be built as a module. If so, the module
1893 will be called w83l786ng.
1894
1895config SENSORS_W83627HF
1896 tristate "Winbond W83627HF, W83627THF, W83637HF, W83687THF, W83697HF"
1897 depends on !PPC
1898 select HWMON_VID
1899 help
1900 If you say yes here you get support for the Winbond W836X7 series
1901 of sensor chips: the W83627HF, W83627THF, W83637HF, W83687THF and
1902 W83697HF.
1903
1904 This driver can also be built as a module. If so, the module
1905 will be called w83627hf.
1906
1907config SENSORS_W83627EHF
1908 tristate "Winbond W83627EHF/EHG/DHG/UHG, W83667HG, NCT6775F, NCT6776F"
1909 depends on !PPC
1910 select HWMON_VID
1911 help
1912 If you say yes here you get support for the hardware
1913 monitoring functionality of the Winbond W83627EHF Super-I/O chip.
1914
1915 This driver also supports the W83627EHG, which is the lead-free
1916 version of the W83627EHF, and the W83627DHG, which is a similar
1917 chip suited for specific Intel processors that use PECI such as
1918 the Core 2 Duo. And also the W83627UHG, which is a stripped down
1919 version of the W83627DHG (as far as hardware monitoring goes.)
1920
1921 This driver also supports Nuvoton W83667HG, W83667HG-B, NCT6775F
1922 (also known as W83667HG-I), and NCT6776F.
1923
1924 This driver can also be built as a module. If so, the module
1925 will be called w83627ehf.
1926
1927config SENSORS_WM831X
1928 tristate "WM831x PMICs"
1929 depends on MFD_WM831X
1930 help
1931 If you say yes here you get support for the hardware
1932 monitoring functionality of the Wolfson Microelectronics
1933 WM831x series of PMICs.
1934
1935 This driver can also be built as a module. If so, the module
1936 will be called wm831x-hwmon.
1937
1938config SENSORS_WM8350
1939 tristate "Wolfson Microelectronics WM835x"
1940 depends on MFD_WM8350
1941 help
1942 If you say yes here you get support for the hardware
1943 monitoring features of the WM835x series of PMICs.
1944
1945 This driver can also be built as a module. If so, the module
1946 will be called wm8350-hwmon.
1947
1948config SENSORS_ULTRA45
1949 tristate "Sun Ultra45 PIC16F747"
1950 depends on SPARC64
1951 help
1952 This driver provides support for the Ultra45 workstation environmental
1953 sensors.
1954
1955config SENSORS_XGENE
1956 tristate "APM X-Gene SoC hardware monitoring driver"
1957 depends on XGENE_SLIMPRO_MBOX || PCC
1958 help
1959 If you say yes here you get support for the temperature
1960 and power sensors for APM X-Gene SoC.
1961
1962if ACPI
1963
1964comment "ACPI drivers"
1965
1966config SENSORS_ACPI_POWER
1967 tristate "ACPI 4.0 power meter"
1968 help
1969 This driver exposes ACPI 4.0 power meters as hardware monitoring
1970 devices. Say Y (or M) if you have a computer with ACPI 4.0 firmware
1971 and a power meter.
1972
1973 To compile this driver as a module, choose M here:
1974 the module will be called acpi_power_meter.
1975
1976config SENSORS_ATK0110
1977 tristate "ASUS ATK0110"
1978 depends on X86
1979 help
1980 If you say yes here you get support for the ACPI hardware
1981 monitoring interface found in many ASUS motherboards. This
1982 driver will provide readings of fans, voltages and temperatures
1983 through the system firmware.
1984
1985 This driver can also be built as a module. If so, the module
1986 will be called asus_atk0110.
1987
1988endif # ACPI
1989
1990endif # HWMON