xref: /linux/drivers/hwmon/Kconfig (revision 54b15c59a46f67c11dadd53ecb9a4d69ce6efe44)
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_ABITUGURU
42	tristate "Abit uGuru (rev 1 & 2)"
43	depends on (X86 && DMI) || COMPILE_TEST && HAS_IOPORT
44	help
45	  If you say yes here you get support for the sensor part of the first
46	  and second revision of the Abit uGuru chip. The voltage and frequency
47	  control parts of the Abit uGuru are not supported. The Abit uGuru
48	  chip can be found on Abit uGuru featuring motherboards (most modern
49	  Abit motherboards from before end 2005). For more info and a list
50	  of which motherboards have which revision see
51	  Documentation/hwmon/abituguru.rst
52
53	  This driver can also be built as a module. If so, the module
54	  will be called abituguru.
55
56config SENSORS_ABITUGURU3
57	tristate "Abit uGuru (rev 3)"
58	depends on (X86 && DMI) || COMPILE_TEST && HAS_IOPORT
59	help
60	  If you say yes here you get support for the sensor part of the
61	  third revision of the Abit uGuru chip. Only reading the sensors
62	  and their settings is supported. The third revision of the Abit
63	  uGuru chip can be found on recent Abit motherboards (since end
64	  2005). For more info and a list of which motherboards have which
65	  revision see Documentation/hwmon/abituguru3.rst
66
67	  This driver can also be built as a module. If so, the module
68	  will be called abituguru3.
69
70config SENSORS_SMPRO
71	tristate "Ampere's Altra SMpro hardware monitoring driver"
72	depends on MFD_SMPRO
73	help
74	  If you say yes here you get support for the thermal, voltage,
75	  current and power sensors of Ampere's Altra processor family SoC
76	  with SMpro co-processor.
77
78config SENSORS_AD7314
79	tristate "Analog Devices AD7314 and compatibles"
80	depends on SPI
81	help
82	  If you say yes here you get support for the Analog Devices
83	  AD7314, ADT7301 and ADT7302 temperature sensors.
84
85	  This driver can also be built as a module. If so, the module
86	  will be called ad7314.
87
88config SENSORS_AD7414
89	tristate "Analog Devices AD7414"
90	depends on I2C
91	help
92	  If you say yes here you get support for the Analog Devices
93	  AD7414 temperature monitoring chip.
94
95	  This driver can also be built as a module. If so, the module
96	  will be called ad7414.
97
98config SENSORS_AD7418
99	tristate "Analog Devices AD7416, AD7417 and AD7418"
100	depends on I2C
101	help
102	  If you say yes here you get support for the Analog Devices
103	  AD7416, AD7417 and AD7418 temperature monitoring chips.
104
105	  This driver can also be built as a module. If so, the module
106	  will be called ad7418.
107
108config SENSORS_ADM1025
109	tristate "Analog Devices ADM1025 and compatibles"
110	depends on I2C
111	select HWMON_VID
112	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"
121	depends on I2C
122	select HWMON_VID
123	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
130config SENSORS_ADM1029
131	tristate "Analog Devices ADM1029"
132	depends on I2C
133	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
141config SENSORS_ADM1031
142	tristate "Analog Devices ADM1031 and compatibles"
143	depends on I2C
144	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_ADM1177
152	tristate "Analog Devices ADM1177 and compatibles"
153	depends on I2C
154	help
155	  If you say yes here you get support for Analog Devices ADM1177
156	  sensor chips.
157
158	  This driver can also be built as a module.  If so, the module
159	  will be called adm1177.
160
161config SENSORS_ADM9240
162	tristate "Analog Devices ADM9240 and compatibles"
163	depends on I2C
164	select HWMON_VID
165	select REGMAP_I2C
166	help
167	  If you say yes here you get support for Analog Devices ADM9240,
168	  Dallas DS1780, National Semiconductor LM81 sensor chips.
169
170	  This driver can also be built as a module. If so, the module
171	  will be called adm9240.
172
173config SENSORS_ADT7X10
174	tristate
175	select REGMAP
176	help
177	  This module contains common code shared by the ADT7310/ADT7320 and
178	  ADT7410/ADT7420/ADT7422 temperature monitoring chip drivers.
179
180	  If built as a module, the module will be called adt7x10.
181
182config SENSORS_ADT7310
183	tristate "Analog Devices ADT7310/ADT7320"
184	depends on SPI_MASTER
185	select SENSORS_ADT7X10
186	help
187	  If you say yes here you get support for the Analog Devices
188	  ADT7310 and ADT7320 temperature monitoring chips.
189
190	  This driver can also be built as a module. If so, the module
191	  will be called adt7310.
192
193config SENSORS_ADT7410
194	tristate "Analog Devices ADT7410/ADT7420/ADT7422"
195	depends on I2C
196	select SENSORS_ADT7X10
197	help
198	  If you say yes here you get support for the Analog Devices
199	  ADT7410, ADT7420 and ADT7422 temperature monitoring chips.
200
201	  This driver can also be built as a module. If so, the module
202	  will be called adt7410.
203
204config SENSORS_ADT7411
205	tristate "Analog Devices ADT7411"
206	depends on I2C
207	help
208	  If you say yes here you get support for the Analog Devices
209	  ADT7411 voltage and temperature monitoring chip.
210
211	  This driver can also be built as a module. If so, the module
212	  will be called adt7411.
213
214config SENSORS_ADT7462
215	tristate "Analog Devices ADT7462"
216	depends on I2C
217	help
218	  If you say yes here you get support for the Analog Devices
219	  ADT7462 temperature monitoring chips.
220
221	  This driver can also be built as a module. If so, the module
222	  will be called adt7462.
223
224config SENSORS_ADT7470
225	tristate "Analog Devices ADT7470"
226	depends on I2C
227	select REGMAP_I2C
228	help
229	  If you say yes here you get support for the Analog Devices
230	  ADT7470 temperature monitoring chips.
231
232	  This driver can also be built as a module. If so, the module
233	  will be called adt7470.
234
235config SENSORS_ADT7475
236	tristate "Analog Devices ADT7473, ADT7475, ADT7476 and ADT7490"
237	depends on I2C
238	select HWMON_VID
239	help
240	  If you say yes here you get support for the Analog Devices
241	  ADT7473, ADT7475, ADT7476 and ADT7490 hardware monitoring
242	  chips.
243
244	  This driver can also be built as a module. If so, the module
245	  will be called adt7475.
246
247config SENSORS_AHT10
248	tristate "Aosong AHT10, AHT20, DHT20"
249	depends on I2C
250	select CRC8
251	help
252	  If you say yes here, you get support for the Aosong AHT10, AHT20 and
253	  DHT20 temperature and humidity sensors
254
255	  This driver can also be built as a module. If so, the module
256	  will be called aht10.
257
258config SENSORS_AQUACOMPUTER_D5NEXT
259	tristate "Aquacomputer D5 Next, Octo, Quadro, Farbwerk, Farbwerk 360, High Flow Next"
260	depends on USB_HID
261	select CRC16
262	help
263	  If you say yes here you get support for sensors and fans of
264	  the Aquacomputer D5 Next watercooling pump, Octo and Quadro fan
265	  controllers, Farbwerk and Farbwerk 360 RGB controllers, High Flow
266	  Next sensor, where available.
267
268	  This driver can also be built as a module. If so, the module
269	  will be called aquacomputer_d5next.
270
271config SENSORS_AS370
272	tristate "Synaptics AS370 SoC hardware monitoring driver"
273	help
274	  If you say yes here you get support for the PVT sensors of
275	  the Synaptics AS370 SoC
276
277	  This driver can also be built as a module. If so, the module
278	  will be called as370-hwmon.
279
280
281config SENSORS_ASC7621
282	tristate "Andigilog aSC7621"
283	depends on I2C
284	help
285	  If you say yes here you get support for the aSC7621
286	  family of SMBus sensors chip found on most Intel X38, X48, X58,
287	  945, 965 and 975 desktop boards.  Currently supported chips:
288	  aSC7621
289	  aSC7621a
290
291	  This driver can also be built as a module. If so, the module
292	  will be called asc7621.
293
294config SENSORS_ASUS_ROG_RYUJIN
295	tristate "ASUS ROG RYUJIN II 360 hardware monitoring driver"
296	depends on HID
297	help
298	  If you say yes here you get support for the fans and sensors of
299	  the ASUS ROG RYUJIN II 360 AIO CPU liquid cooler.
300
301	  This driver can also be built as a module. If so, the module
302	  will be called asus_rog_ryujin.
303
304config SENSORS_AXI_FAN_CONTROL
305	tristate "Analog Devices FAN Control HDL Core driver"
306	help
307	  If you say yes here you get support for the Analog Devices
308	  AXI HDL FAN monitoring core.
309
310	  This driver can also be built as a module. If so, the module
311	  will be called axi-fan-control
312
313config SENSORS_K8TEMP
314	tristate "AMD Athlon64/FX or Opteron temperature sensor"
315	depends on X86 && PCI
316	help
317	  If you say yes here you get support for the temperature
318	  sensor(s) inside your CPU. Supported is whole AMD K8
319	  microarchitecture. Please note that you will need at least
320	  lm-sensors 2.10.1 for proper userspace support.
321
322	  This driver can also be built as a module. If so, the module
323	  will be called k8temp.
324
325config SENSORS_K10TEMP
326	tristate "AMD Family 10h+ temperature sensor"
327	depends on X86 && PCI && AMD_NODE
328	help
329	  If you say yes here you get support for the temperature
330	  sensor(s) inside your CPU. Supported are later revisions of
331	  the AMD Family 10h and all revisions of the AMD Family 11h,
332	  12h (Llano), 14h (Brazos), 15h (Bulldozer/Trinity/Kaveri/Carrizo)
333	  and 16h (Kabini/Mullins) microarchitectures.
334
335	  This driver can also be built as a module. If so, the module
336	  will be called k10temp.
337
338config SENSORS_KBATT
339	tristate "KEBA battery controller support"
340	depends on KEBA_CP500
341	help
342	  This driver supports the battery monitoring controller found in
343	  KEBA system FPGA devices.
344
345	  This driver can also be built as a module. If so, the module
346	  will be called kbatt.
347
348config SENSORS_KFAN
349	tristate "KEBA fan controller support"
350	depends on KEBA_CP500
351	help
352	  This driver supports the fan controller found in KEBA system
353	  FPGA devices.
354
355	  This driver can also be built as a module. If so, the module
356	  will be called kfan.
357
358config SENSORS_FAM15H_POWER
359	tristate "AMD Family 15h processor power"
360	depends on X86 && PCI && CPU_SUP_AMD
361	help
362	  If you say yes here you get support for processor power
363	  information of your AMD family 15h CPU.
364
365	  This driver can also be built as a module. If so, the module
366	  will be called fam15h_power.
367
368config SENSORS_APPLESMC
369	tristate "Apple SMC (Motion sensor, light sensor, keyboard backlight)"
370	depends on INPUT && X86
371	select NEW_LEDS
372	select LEDS_CLASS
373	help
374	  This driver provides support for the Apple System Management
375	  Controller, which provides an accelerometer (Apple Sudden Motion
376	  Sensor), light sensors, temperature sensors, keyboard backlight
377	  control and fan control.
378
379	  Only Intel-based Apple's computers are supported (MacBook Pro,
380	  MacBook, MacMini).
381
382	  Data from the different sensors, keyboard backlight control and fan
383	  control are accessible via sysfs.
384
385	  This driver also provides an absolute input class device, allowing
386	  the laptop to act as a pinball machine-esque joystick.
387
388	  Say Y here if you have an applicable laptop and want to experience
389	  the awesome power of applesmc.
390
391config SENSORS_ARCTIC_FAN_CONTROLLER
392	tristate "ARCTIC Fan Controller"
393	depends on USB_HID
394	help
395	  If you say yes here you get support for the ARCTIC Fan Controller,
396	  a USB HID device (VID 0x3904, PID 0xF001) with 10 fan channels.
397	  The driver exposes fan speed (RPM) and PWM control via the hwmon
398	  sysfs interface.
399
400	  This driver can also be built as a module. If so, the module
401	  will be called arctic_fan_controller.
402
403config SENSORS_ARM_SCMI
404	tristate "ARM SCMI Sensors"
405	depends on ARM_SCMI_PROTOCOL
406	depends on THERMAL || !THERMAL_OF
407	help
408	  This driver provides support for temperature, voltage, current
409	  and power sensors available on SCMI based platforms. The actual
410	  number and type of sensors exported depend on the platform.
411
412	  This driver can also be built as a module. If so, the module
413	  will be called scmi-hwmon.
414
415config SENSORS_ARM_SCPI
416	tristate "ARM SCPI Sensors"
417	depends on ARM_SCPI_PROTOCOL
418	depends on THERMAL || !THERMAL_OF
419	help
420	  This driver provides support for temperature, voltage, current
421	  and power sensors available on ARM Ltd's SCP based platforms. The
422	  actual number and type of sensors exported depend on the platform.
423
424config SENSORS_ASB100
425	tristate "Asus ASB100 Bach"
426	depends on (X86 || COMPILE_TEST) && I2C
427	select HWMON_VID
428	help
429	  If you say yes here you get support for the ASB100 Bach sensor
430	  chip found on some Asus mainboards.
431
432	  This driver can also be built as a module. If so, the module
433	  will be called asb100.
434
435config SENSORS_ASPEED
436	tristate "ASPEED AST2400/AST2500 PWM and Fan tach driver"
437	depends on ARCH_ASPEED || COMPILE_TEST
438	depends on THERMAL || THERMAL=n
439	select REGMAP
440	help
441	  This driver provides support for ASPEED AST2400/AST2500 PWM
442	  and Fan Tacho controllers.
443
444	  This driver can also be built as a module. If so, the module
445	  will be called aspeed_pwm_tacho.
446
447config SENSORS_ASPEED_G6
448	tristate "ASPEED G6 PWM and Fan tach driver"
449	depends on ARCH_ASPEED || COMPILE_TEST
450	depends on PWM
451	help
452	  This driver provides support for ASPEED G6 PWM and Fan Tach
453	  controllers.
454
455	  This driver can also be built as a module. If so, the module
456	  will be called aspeed_g6_pwm_tach.
457
458config SENSORS_ATXP1
459	tristate "Attansic ATXP1 VID controller"
460	depends on I2C
461	select HWMON_VID
462	help
463	  If you say yes here you get support for the Attansic ATXP1 VID
464	  controller.
465
466	  If your board have such a chip, you are able to control your CPU
467	  core and other voltages.
468
469	  This driver can also be built as a module. If so, the module
470	  will be called atxp1.
471
472config SENSORS_CGBC
473	tristate "Congatec Board Controller Sensors"
474	depends on MFD_CGBC
475	help
476	  Enable sensors support for the Congatec Board Controller. It has
477	  temperature, voltage, current and fan sensors.
478
479	  This driver can also be built as a module. If so, the module will be
480	  called cgbc-hwmon.
481
482config SENSORS_CHIPCAP2
483	tristate "Amphenol ChipCap 2 relative humidity and temperature sensor"
484	depends on I2C
485	help
486	  Say yes here to build support for the Amphenol ChipCap 2
487	  relative humidity and temperature sensor.
488
489	  To compile this driver as a module, choose M here: the module
490	  will be called chipcap2.
491
492config SENSORS_CORSAIR_CPRO
493	tristate "Corsair Commander Pro controller"
494	depends on HID
495	help
496	  If you say yes here you get support for the Corsair Commander Pro
497	  controller.
498
499	  This driver can also be built as a module. If so, the module
500	  will be called corsair-cpro.
501
502config SENSORS_CORSAIR_PSU
503	tristate "Corsair PSU HID controller"
504	depends on HID
505	help
506	  If you say yes here you get support for Corsair PSUs with a HID
507	  interface.
508	  Currently this driver supports the (RM/HX)550i, (RM/HX)650i,
509	  (RM/HX)750i, (RM/HX)850i, (RM/HX)1000i and HX1200i power supplies
510	  by Corsair.
511
512	  This driver can also be built as a module. If so, the module
513	  will be called corsair-psu.
514
515config SENSORS_CROS_EC
516	tristate "ChromeOS Embedded Controller sensors"
517	depends on MFD_CROS_EC_DEV
518	default MFD_CROS_EC_DEV
519	help
520	  If you say yes here you get support for ChromeOS Embedded Controller
521	  sensors.
522
523	  This driver can also be built as a module. If so, the module
524	  will be called cros_ec_hwmon.
525
526config SENSORS_DRIVETEMP
527	tristate "Hard disk drives with temperature sensors"
528	depends on SCSI && ATA
529	help
530	  If you say yes you get support for the temperature sensor on
531	  hard disk drives.
532
533	  This driver can also be built as a module. If so, the module
534	  will be called drivetemp.
535
536config SENSORS_DS620
537	tristate "Dallas Semiconductor DS620"
538	depends on I2C
539	help
540	  If you say yes here you get support for Dallas Semiconductor
541	  DS620 sensor chip.
542
543	  This driver can also be built as a module. If so, the module
544	  will be called ds620.
545
546config SENSORS_DS1621
547	tristate "Dallas Semiconductor DS1621 and compatibles"
548	depends on I2C
549	help
550	  If you say yes here you get support for Dallas Semiconductor/Maxim
551	  Integrated DS1621 sensor chips and compatible models including:
552
553	  - Dallas Semiconductor DS1625
554	  - Maxim Integrated DS1631
555	  - Maxim Integrated DS1721
556	  - Maxim Integrated DS1731
557
558	  This driver can also be built as a module. If so, the module
559	  will be called ds1621.
560
561config SENSORS_DELL_SMM
562	tristate "Dell laptop SMM BIOS hwmon driver"
563	depends on ACPI_WMI
564	depends on X86
565	imply THERMAL
566	help
567	  This hwmon driver adds support for reporting temperature of different
568	  sensors and controls the fans on Dell laptops via System Management
569	  Mode provided by Dell BIOS.
570
571	  When option I8K is also enabled this driver provides legacy /proc/i8k
572	  userspace interface for i8kutils package.
573
574config I8K
575	bool "Legacy /proc/i8k interface of Dell laptop SMM BIOS hwmon driver"
576	depends on SENSORS_DELL_SMM
577	depends on PROC_FS
578	help
579	  This option enables the legacy /proc/i8k userspace interface of the
580	  dell-smm-hwmon driver. The character file /proc/i8k exposes the BIOS
581	  version, temperatures and allows control of fan speeds of some Dell
582	  laptops. Sometimes it also reports power and hotkey status.
583
584	  This interface is required to run programs from the i8kutils package.
585
586	  Say Y if you intend to run userspace programs that use this interface.
587	  Say N otherwise.
588
589config SENSORS_DA9052_ADC
590	tristate "Dialog DA9052/DA9053 ADC"
591	depends on PMIC_DA9052
592	help
593	  Say y here to support the ADC found on Dialog Semiconductor
594	  DA9052-BC and DA9053-AA/Bx PMICs.
595
596	  This driver can also be built as module. If so, the module
597	  will be called da9052-hwmon.
598
599config SENSORS_DA9055
600	tristate "Dialog Semiconductor DA9055 ADC"
601	depends on MFD_DA9055
602	help
603	  If you say yes here you get support for ADC on the Dialog
604	  Semiconductor DA9055 PMIC.
605
606	  This driver can also be built as a module. If so, the module
607	  will be called da9055-hwmon.
608
609config SENSORS_I5K_AMB
610	tristate "FB-DIMM AMB temperature sensor on Intel 5000 series chipsets"
611	depends on PCI
612	help
613	  If you say yes here you get support for FB-DIMM AMB temperature
614	  monitoring chips on systems with the Intel 5000 series chipset.
615
616	  This driver can also be built as a module. If so, the module
617	  will be called i5k_amb.
618
619config SENSORS_SPARX5
620	tristate "Sparx5 SoC temperature sensor"
621	depends on ARCH_SPARX5 || ARCH_LAN969X || COMPILE_TEST
622	help
623	  If you say yes here you get support for temperature monitoring
624	  with the Microchip Sparx5 SoC.
625
626	  This driver can also be built as a module. If so, the module
627	  will be called sparx5-temp.
628
629config SENSORS_F71805F
630	tristate "Fintek F71805F/FG, F71806F/FG and F71872F/FG"
631	depends on HAS_IOPORT
632	depends on !PPC
633	help
634	  If you say yes here you get support for hardware monitoring
635	  features of the Fintek F71805F/FG, F71806F/FG and F71872F/FG
636	  Super-I/O chips.
637
638	  This driver can also be built as a module. If so, the module
639	  will be called f71805f.
640
641config SENSORS_F71882FG
642	tristate "Fintek F71882FG and compatibles"
643	depends on HAS_IOPORT
644	depends on !PPC
645	help
646	  If you say yes here you get support for hardware monitoring
647	  features of many Fintek Super-I/O (LPC) chips. The currently
648	  supported chips are:
649	    F71808E/A
650	    F71858FG
651	    F71862FG
652	    F71863FG
653	    F71869F/E/A
654	    F71882FG
655	    F71883FG
656	    F71889FG/ED/A
657	    F8000
658	    F81801U
659	    F81865F
660
661	  This driver can also be built as a module. If so, the module
662	  will be called f71882fg.
663
664config SENSORS_F75375S
665	tristate "Fintek F75375S/SP, F75373 and F75387"
666	depends on I2C
667	help
668	  If you say yes here you get support for hardware monitoring
669	  features of the Fintek F75375S/SP, F75373 and F75387
670
671	  This driver can also be built as a module. If so, the module
672	  will be called f75375s.
673
674config SENSORS_GSC
675	tristate "Gateworks System Controller ADC"
676	depends on MFD_GATEWORKS_GSC
677	help
678	  Support for the Gateworks System Controller A/D converters.
679
680	  To compile this driver as a module, choose M here:
681	  the module will be called gsc-hwmon.
682
683config SENSORS_MC13783_ADC
684        tristate "Freescale MC13783/MC13892 ADC"
685        depends on MFD_MC13XXX
686        help
687          Support for the A/D converter on MC13783 and MC13892 PMIC.
688
689config SENSORS_MC33XS2410
690	tristate "MC33XS2410 HWMON support"
691	depends on PWM_MC33XS2410
692	help
693	  If you say yes here you get hardware monitoring support for
694	  MC33XS2410.
695
696	  This driver can also be built as a module. If so, the module
697	  will be called mc33xs2410_hwmon.
698
699config SENSORS_FSCHMD
700	tristate "Fujitsu Siemens Computers sensor chips"
701	depends on (X86 || COMPILE_TEST) && I2C
702	help
703	  If you say yes here you get support for the following Fujitsu
704	  Siemens Computers (FSC) sensor chips: Poseidon, Scylla, Hermes,
705	  Heimdall, Heracles, Hades and Syleus including support for the
706	  integrated watchdog.
707
708	  This is a merged driver for FSC sensor chips replacing the fscpos,
709	  fscscy and fscher drivers and adding support for several other FSC
710	  sensor chips.
711
712	  This driver can also be built as a module. If so, the module
713	  will be called fschmd.
714
715config SENSORS_FTSTEUTATES
716	tristate "Fujitsu Technology Solutions sensor chip Teutates"
717	depends on I2C && WATCHDOG
718	select WATCHDOG_CORE
719	help
720	  If you say yes here you get support for the Fujitsu Technology
721	  Solutions (FTS) sensor chip "Teutates" including support for
722	  the integrated watchdog.
723
724	  This driver can also be built as a module. If so, the module
725	  will be called ftsteutates.
726
727config SENSORS_GIGABYTE_WATERFORCE
728	tristate "Gigabyte Waterforce X240/X280/X360 AIO CPU coolers"
729	depends on USB_HID
730	help
731	  If you say yes here you get support for hardware monitoring for the
732	  Gigabyte Waterforce X240/X280/X360 all-in-one CPU liquid coolers.
733
734	  This driver can also be built as a module. If so, the module
735	  will be called gigabyte_waterforce.
736
737config SENSORS_GL518SM
738	tristate "Genesys Logic GL518SM"
739	depends on I2C
740	help
741	  If you say yes here you get support for Genesys Logic GL518SM
742	  sensor chips.
743
744	  This driver can also be built as a module. If so, the module
745	  will be called gl518sm.
746
747config SENSORS_GL520SM
748	tristate "Genesys Logic GL520SM"
749	depends on I2C
750	select HWMON_VID
751	help
752	  If you say yes here you get support for Genesys Logic GL520SM
753	  sensor chips.
754
755	  This driver can also be built as a module. If so, the module
756	  will be called gl520sm.
757
758config SENSORS_GPD
759	tristate "GPD handhelds"
760	depends on X86 && DMI && HAS_IOPORT
761	help
762	  If you say yes here you get support for fan readings and
763	  control over GPD handheld devices.
764
765	  Can also be built as a module. In that case it will be
766	  called gpd-fan.
767
768config SENSORS_G760A
769	tristate "GMT G760A"
770	depends on I2C
771	help
772	  If you say yes here you get support for Global Mixed-mode
773	  Technology Inc G760A fan speed PWM controller chips.
774
775	  This driver can also be built as a module. If so, the module
776	  will be called g760a.
777
778config SENSORS_G762
779	tristate "GMT G762 and G763"
780	depends on I2C
781	help
782	  If you say yes here you get support for Global Mixed-mode
783	  Technology Inc G762 and G763 fan speed PWM controller chips.
784
785	  This driver can also be built as a module. If so, the module
786	  will be called g762.
787
788config SENSORS_GPIO_FAN
789	tristate "GPIO fan"
790	depends on GPIOLIB || COMPILE_TEST
791	depends on THERMAL || THERMAL=n
792	help
793	  If you say yes here you get support for fans connected to GPIO lines.
794
795	  This driver can also be built as a module. If so, the module
796	  will be called gpio-fan.
797
798config SENSORS_GXP_FAN_CTRL
799	tristate "HPE GXP fan controller"
800	depends on ARCH_HPE_GXP || COMPILE_TEST
801	help
802	  If you say yes here you get support for GXP fan control functionality.
803
804	  The GXP controls fan function via the CPLD through the use of PWM
805	  registers. This driver reports status and pwm setting of the fans.
806
807config SENSORS_HIH6130
808	tristate "Honeywell Humidicon HIH-6130 humidity/temperature sensor"
809	depends on I2C
810	help
811	  If you say yes here you get support for Honeywell Humidicon
812	  HIH-6130 and HIH-6131 Humidicon humidity sensors.
813
814	  This driver can also be built as a module. If so, the module
815	  will be called hih6130.
816
817config SENSORS_HS3001
818	tristate "Renesas HS3001 humidity and temperature sensors"
819	depends on I2C
820	help
821	  If you say yes here you get support for the Renesas HS3001,
822	  to HS3004 humidity and temperature sensors.
823
824	  This driver can also be built as a module. If so, the module
825	  will be called hs3001.
826
827config SENSORS_HTU31
828	tristate "Measurement Specialties HTU31 humidity and temperature sensor"
829	depends on I2C
830	select CRC8
831	help
832	  If you say yes here you get support for the HTU31 humidity
833	  and temperature sensors.
834
835	  This driver can also be built as a module. If so, the module
836	  will be called htu31.
837
838config SENSORS_IBMAEM
839	tristate "IBM Active Energy Manager temperature/power sensors and control"
840	select IPMI_SI
841	depends on IPMI_HANDLER
842	help
843	  If you say yes here you get support for the temperature and
844	  power sensors and capping hardware in various IBM System X
845	  servers that support Active Energy Manager.  This includes
846	  the x3350, x3550, x3650, x3655, x3755, x3850 M2, x3950 M2,
847	  and certain HC10/HS2x/LS2x/QS2x blades.
848
849	  This driver can also be built as a module. If so, the module
850	  will be called ibmaem.
851
852config SENSORS_IBMPEX
853	tristate "IBM PowerExecutive temperature/power sensors"
854	select IPMI_SI
855	depends on IPMI_HANDLER
856	help
857	  If you say yes here you get support for the temperature and
858	  power sensors in various IBM System X servers that support
859	  PowerExecutive.  So far this includes the x3350, x3550, x3650,
860	  x3655, and x3755; the x3800, x3850, and x3950 models that have
861	  PCI Express; and some of the HS2x, LS2x, and QS2x blades.
862
863	  This driver can also be built as a module. If so, the module
864	  will be called ibmpex.
865
866config SENSORS_IBMPOWERNV
867	tristate "IBM POWERNV platform sensors"
868	depends on PPC_POWERNV
869	default y
870	help
871	  If you say yes here you get support for the temperature/fan/power
872	  sensors on your PowerNV platform.
873
874	  This driver can also be built as a module. If so, the module
875	  will be called ibmpowernv.
876
877config SENSORS_IIO_HWMON
878	tristate "Hwmon driver that uses channels specified via iio maps"
879	depends on IIO
880	help
881	  This is a platform driver that in combination with a suitable
882	  map allows IIO devices to provide basic hwmon functionality
883	  for those channels specified in the map.  This map can be provided
884	  either via platform data or the device tree bindings.
885
886config SENSORS_I5500
887	tristate "Intel 5500/5520/X58 temperature sensor"
888	depends on X86 && PCI
889	help
890	  If you say yes here you get support for the temperature
891	  sensor inside the Intel 5500, 5520 and X58 chipsets.
892
893	  This driver can also be built as a module. If so, the module
894	  will be called i5500_temp.
895
896config SENSORS_CORETEMP
897	tristate "Intel Core/Core2/Atom temperature sensor"
898	depends on X86
899	help
900	  If you say yes here you get support for the temperature
901	  sensor inside your CPU. Most of the family 6 CPUs
902	  are supported. Check Documentation/hwmon/coretemp.rst for details.
903
904config SENSORS_ISL28022
905	tristate "Renesas ISL28022"
906	depends on I2C
907	select REGMAP_I2C
908	help
909	  If you say yes here you get support for ISL28022 power monitor.
910	  Check Documentation/hwmon/isl28022.rst for details.
911
912	  This driver can also be built as a module. If so, the module
913	  will be called isl28022.
914
915config SENSORS_IT87
916	tristate "ITE IT87xx and compatibles"
917	depends on HAS_IOPORT
918	depends on !PPC
919	select HWMON_VID
920	help
921	  If you say yes here you get support for ITE IT8705F, IT8712F, IT8716F,
922	  IT8718F, IT8720F, IT8721F, IT8726F, IT8728F, IT8732F, IT8758E,
923	  IT8771E, IT8772E, IT8781F, IT8782F, IT8783E/F, IT8786E, IT8790E,
924	  IT8603E, IT8620E, IT8623E, IT8628E, and IT8689E sensor chips, and
925	  the SiS950 clone.
926
927	  This driver can also be built as a module. If so, the module
928	  will be called it87.
929
930config SENSORS_JC42
931	tristate "JEDEC JC42.4 compliant memory module temperature sensors"
932	depends on I2C
933	select REGMAP_I2C
934	help
935	  If you say yes here, you get support for JEDEC JC42.4 compliant
936	  temperature sensors, which are used on many DDR3 memory modules for
937	  mobile devices and servers.  Support will include, but not be limited
938	  to, ADT7408, AT30TS00, CAT34TS02, CAT6095, MAX6604, MCP9804, MCP9805,
939	  MCP9808, MCP98242, MCP98243, MCP98244, MCP9843, SE97, SE98,
940	  STTS424(E), STTS2002, STTS3000, TSE2002, TSE2004, TS3000, and TS3001.
941
942	  This driver can also be built as a module. If so, the module
943	  will be called jc42.
944
945config SENSORS_POWERZ
946	tristate "ChargerLAB POWER-Z USB-C tester"
947	depends on USB
948	help
949	  If you say yes here you get support for ChargerLAB POWER-Z series of
950	  USB-C charging testers.
951
952	  This driver can also be built as a module. If so, the module
953	  will be called powerz.
954
955config SENSORS_POWR1220
956	tristate "Lattice POWR1220 Power Monitoring"
957	depends on I2C
958	help
959	  If you say yes here you get access to the hardware monitoring
960	  functions of the Lattice POWR1220 isp Power Supply Monitoring,
961	  Sequencing and Margining Controller.
962
963	  This driver can also be built as a module. If so, the module
964	  will be called powr1220.
965
966config SENSORS_LAN966X
967	tristate "Microchip LAN966x Hardware Monitoring"
968	depends on SOC_LAN966 || COMPILE_TEST
969	select REGMAP
970	select POLYNOMIAL
971	help
972	  If you say yes here you get support for temperature monitoring
973	  on the Microchip LAN966x SoC.
974
975	  This driver can also be built as a module. If so, the module
976	  will be called lan966x-hwmon.
977
978config SENSORS_LATTEPANDA_SIGMA_EC
979	tristate "LattePanda Sigma EC hardware monitoring"
980	depends on X86
981	depends on DMI
982	depends on HAS_IOPORT
983	help
984	  If you say yes here you get support for the hardware monitoring
985	  features of the Embedded Controller on LattePanda Sigma
986	  single-board computers, including CPU fan speed (RPM) and
987	  board and CPU temperatures.
988
989	  The driver reads the EC directly via ACPI EC I/O ports and
990	  uses DMI matching to ensure it only loads on supported hardware.
991
992	  This driver can also be built as a module. If so, the module
993	  will be called lattepanda-sigma-ec.
994
995config SENSORS_LENOVO_EC
996        tristate "Sensor reader for Lenovo ThinkStations"
997        depends on X86
998        help
999          If you say yes here you get support for LENOVO
1000          EC Sensor data on newer ThinkStation systems
1001
1002          This driver can also be built as a module. If so, the module
1003          will be called lenovo_ec_sensors.
1004
1005config SENSORS_LINEAGE
1006	tristate "Lineage Compact Power Line Power Entry Module"
1007	depends on I2C
1008	help
1009	  If you say yes here you get support for the Lineage Compact Power Line
1010	  series of DC/DC and AC/DC converters such as CP1800, CP2000AC,
1011	  CP2000DC, CP2725, and others.
1012
1013	  This driver can also be built as a module. If so, the module
1014	  will be called lineage-pem.
1015
1016config SENSORS_LOCHNAGAR
1017	tristate "Lochnagar Hardware Monitor"
1018	depends on MFD_LOCHNAGAR
1019	help
1020	  If you say yes here you get support for Lochnagar 2 temperature,
1021	  voltage and current sensors abilities.
1022
1023	  This driver can also be built as a module.  If so, the module
1024	  will be called lochnagar-hwmon.
1025
1026config SENSORS_LTC2945
1027	tristate "Linear Technology LTC2945"
1028	depends on I2C
1029	select REGMAP_I2C
1030	help
1031	  If you say yes here you get support for Linear Technology LTC2945
1032	  I2C System Monitor.
1033
1034	  This driver can also be built as a module. If so, the module will
1035	  be called ltc2945.
1036
1037config SENSORS_LTC2947
1038	tristate
1039
1040config SENSORS_LTC2947_I2C
1041	tristate "Analog Devices LTC2947 High Precision Power and Energy Monitor over I2C"
1042	depends on I2C
1043	select REGMAP_I2C
1044	select SENSORS_LTC2947
1045	help
1046	  If you say yes here you get support for Linear Technology LTC2947
1047	  I2C High Precision Power and Energy Monitor
1048
1049	  This driver can also be built as a module. If so, the module will
1050	  be called ltc2947-i2c.
1051
1052config SENSORS_LTC2947_SPI
1053	tristate "Analog Devices LTC2947 High Precision Power and Energy Monitor over SPI"
1054	depends on SPI_MASTER
1055	select REGMAP_SPI
1056	select SENSORS_LTC2947
1057	help
1058	  If you say yes here you get support for Linear Technology LTC2947
1059	  SPI High Precision Power and Energy Monitor
1060
1061	  This driver can also be built as a module. If so, the module will
1062	  be called ltc2947-spi.
1063
1064config SENSORS_LTC2990
1065	tristate "Linear Technology LTC2990"
1066	depends on I2C
1067	help
1068	  If you say yes here you get support for Linear Technology LTC2990
1069	  I2C System Monitor. The LTC2990 supports a combination of voltage,
1070	  current and temperature monitoring.
1071
1072	  This driver can also be built as a module. If so, the module will
1073	  be called ltc2990.
1074
1075config SENSORS_LTC2991
1076	tristate "Analog Devices LTC2991"
1077	depends on I2C
1078	select REGMAP_I2C
1079	help
1080	  If you say yes here you get support for Analog Devices LTC2991
1081	  Octal I2C Voltage, Current, and Temperature Monitor. The LTC2991
1082	  supports a combination of voltage, current and temperature monitoring.
1083
1084	  This driver can also be built as a module. If so, the module will
1085	  be called ltc2991.
1086
1087config SENSORS_LTC2992
1088	tristate "Linear Technology LTC2992"
1089	depends on I2C
1090	depends on GPIOLIB
1091	help
1092	  If you say yes here you get support for Linear Technology LTC2992
1093	  I2C System Monitor. The LTC2992 measures current, voltage, and
1094	  power of two supplies.
1095
1096	  This driver can also be built as a module. If so, the module will
1097	  be called ltc2992.
1098
1099config SENSORS_LTC4151
1100	tristate "Linear Technology LTC4151"
1101	depends on I2C
1102	help
1103	  If you say yes here you get support for Linear Technology LTC4151
1104	  High Voltage I2C Current and Voltage Monitor interface.
1105
1106	  This driver can also be built as a module. If so, the module will
1107	  be called ltc4151.
1108
1109config SENSORS_LTC4215
1110	tristate "Linear Technology LTC4215"
1111	depends on I2C
1112	help
1113	  If you say yes here you get support for Linear Technology LTC4215
1114	  Hot Swap Controller I2C interface.
1115
1116	  This driver can also be built as a module. If so, the module will
1117	  be called ltc4215.
1118
1119config SENSORS_LTC4222
1120	tristate "Linear Technology LTC4222"
1121	depends on I2C
1122	select REGMAP_I2C
1123	help
1124	  If you say yes here you get support for Linear Technology LTC4222
1125	  Dual Hot Swap Controller I2C interface.
1126
1127	  This driver can also be built as a module. If so, the module will
1128	  be called ltc4222.
1129
1130config SENSORS_LTC4245
1131	tristate "Linear Technology LTC4245"
1132	depends on I2C
1133	help
1134	  If you say yes here you get support for Linear Technology LTC4245
1135	  Multiple Supply Hot Swap Controller I2C interface.
1136
1137	  This driver can also be built as a module. If so, the module will
1138	  be called ltc4245.
1139
1140config SENSORS_LTC4260
1141	tristate "Linear Technology LTC4260"
1142	depends on I2C
1143	select REGMAP_I2C
1144	help
1145	  If you say yes here you get support for Linear Technology LTC4260
1146	  Positive Voltage Hot Swap Controller I2C interface.
1147
1148	  This driver can also be built as a module. If so, the module will
1149	  be called ltc4260.
1150
1151config SENSORS_LTC4261
1152	tristate "Linear Technology LTC4261"
1153	depends on I2C
1154	help
1155	  If you say yes here you get support for Linear Technology LTC4261
1156	  Negative Voltage Hot Swap Controller I2C interface.
1157
1158	  This driver can also be built as a module. If so, the module will
1159	  be called ltc4261.
1160
1161config SENSORS_LTC4282
1162	tristate "Analog Devices LTC4282"
1163	depends on I2C
1164	select REGMAP_I2C
1165	help
1166	  If you say yes here you get support for Analog Devices LTC4282
1167	  High Current Hot Swap Controller I2C interface.
1168
1169	  This driver can also be built as a module. If so, the module will
1170	  be called ltc4282.
1171
1172config SENSORS_LTC4283
1173	tristate "Analog Devices LTC4283"
1174	depends on I2C
1175	select REGMAP_I2C
1176	select AUXILIARY_BUS
1177	help
1178	  If you say yes here you get support for Analog Devices LTC4283
1179	  Negative Voltage Hot Swap Controller I2C interface.
1180
1181	  This driver can also be built as a module. If so, the module will
1182	  be called ltc4283.
1183
1184config SENSORS_LTQ_CPUTEMP
1185	bool "Lantiq cpu temperature sensor driver"
1186	depends on SOC_XWAY
1187	help
1188	  If you say yes here you get support for the temperature
1189	  sensor inside your CPU.
1190
1191config SENSORS_MACSMC_HWMON
1192	tristate "Apple SMC (Apple Silicon)"
1193	depends on MFD_MACSMC && OF
1194	help
1195	  This driver enables hwmon support for current, power, temperature,
1196	  and voltage sensors, as well as fan speed reporting and control
1197	  on Apple Silicon devices. Say Y here if you have an Apple Silicon
1198	  device.
1199
1200	  This driver can also be built as a module. If so, the module will
1201	  be called macsmc-hwmon.
1202
1203config SENSORS_MAX1111
1204	tristate "Maxim MAX1111 Serial 8-bit ADC chip and compatibles"
1205	depends on SPI_MASTER
1206	help
1207	  Say y here to support Maxim's MAX1110, MAX1111, MAX1112, and MAX1113
1208	  ADC chips.
1209
1210	  This driver can also be built as a module. If so, the module
1211	  will be called max1111.
1212
1213config SENSORS_MAX127
1214	tristate "Maxim MAX127 12-bit 8-channel Data Acquisition System"
1215	depends on I2C
1216	help
1217	  Say y here to support Maxim's MAX127 DAS chips.
1218
1219	  This driver can also be built as a module. If so, the module
1220	  will be called max127.
1221
1222config SENSORS_MAX16065
1223	tristate "Maxim MAX16065 System Manager and compatibles"
1224	depends on I2C
1225	help
1226	  If you say yes here you get support for hardware monitoring
1227	  capabilities of the following Maxim System Manager chips.
1228	    MAX16065
1229	    MAX16066
1230	    MAX16067
1231	    MAX16068
1232	    MAX16070
1233	    MAX16071
1234
1235	  This driver can also be built as a module. If so, the module
1236	  will be called max16065.
1237
1238config SENSORS_MAX1619
1239	tristate "Maxim MAX1619 sensor chip"
1240	depends on I2C
1241	help
1242	  If you say yes here you get support for MAX1619 sensor chip.
1243
1244	  This driver can also be built as a module. If so, the module
1245	  will be called max1619.
1246
1247config SENSORS_MAX1668
1248	tristate "Maxim MAX1668 and compatibles"
1249	depends on I2C
1250	select REGMAP_I2C
1251	help
1252	  If you say yes here you get support for MAX1668, MAX1989 and
1253	  MAX1805 chips.
1254
1255	  This driver can also be built as a module. If so, the module
1256	  will be called max1668.
1257
1258config SENSORS_MAX197
1259	tristate "Maxim MAX197 and compatibles"
1260	help
1261	  Support for the Maxim MAX197 A/D converter.
1262	  Support will include, but not be limited to, MAX197, and MAX199.
1263
1264	  This driver can also be built as a module. If so, the module
1265	  will be called max197.
1266
1267config SENSORS_MAX31722
1268	tristate "MAX31722 temperature sensor"
1269	depends on SPI
1270	help
1271	  Support for the Maxim Integrated MAX31722/MAX31723 digital
1272	  thermometers/thermostats operating over an SPI interface.
1273
1274	  This driver can also be built as a module. If so, the module
1275	  will be called max31722.
1276
1277config SENSORS_MAX31730
1278	tristate "MAX31730 temperature sensor"
1279	depends on I2C
1280	help
1281	  Support for the Maxim Integrated MAX31730 3-Channel Remote
1282	  Temperature Sensor.
1283
1284	  This driver can also be built as a module. If so, the module
1285	  will be called max31730.
1286
1287config SENSORS_MAX31760
1288	tristate "MAX31760 fan speed controller"
1289	depends on I2C
1290	select REGMAP_I2C
1291	help
1292	  Support for the Analog Devices MAX31760 Precision Fan-Speed
1293	  Controller. MAX31760 integrates temperature sensing along with
1294	  precision PWM fan control.
1295
1296	  This driver can also be built as a module. If so, the module
1297	  will be called max31760.
1298
1299config MAX31827
1300	tristate "MAX31827 low-power temperature switch and similar devices"
1301	depends on I2C
1302	select REGMAP_I2C
1303	help
1304	  If you say yes here you get support for MAX31827, MAX31828 and
1305	  MAX31829 low-power temperature switches and sensors connected with I2C.
1306
1307	  This driver can also be built as a module.  If so, the module
1308	  will be called max31827.
1309
1310config SENSORS_MAX6620
1311	tristate "Maxim MAX6620 fan controller"
1312	depends on I2C
1313	help
1314	  If you say yes here you get support for the MAX6620
1315	  fan controller.
1316
1317	  This driver can also be built as a module. If so, the module
1318	  will be called max6620.
1319
1320config SENSORS_MAX6621
1321	tristate "Maxim MAX6621 sensor chip"
1322	depends on I2C
1323	select REGMAP_I2C
1324	help
1325	  If you say yes here you get support for MAX6621 sensor chip.
1326	  MAX6621 is a PECI-to-I2C translator provides an efficient,
1327	  low-cost solution for PECI-to-SMBus/I2C protocol conversion.
1328	  It allows reading the temperature from the PECI-compliant
1329	  host directly from up to four PECI-enabled CPUs.
1330
1331	  This driver can also be built as a module. If so, the module
1332	  will be called max6621.
1333
1334config SENSORS_MAX6639
1335	tristate "Maxim MAX6639 sensor chip"
1336	depends on I2C
1337	select REGMAP_I2C
1338	help
1339	  If you say yes here you get support for the MAX6639
1340	  sensor chips.
1341
1342	  This driver can also be built as a module. If so, the module
1343	  will be called max6639.
1344
1345config SENSORS_MAX6650
1346	tristate "Maxim MAX6650 sensor chip"
1347	depends on I2C
1348	depends on THERMAL || THERMAL=n
1349	help
1350	  If you say yes here you get support for the MAX6650 / MAX6651
1351	  sensor chips.
1352
1353	  This driver can also be built as a module. If so, the module
1354	  will be called max6650.
1355
1356config SENSORS_MAX6697
1357	tristate "Maxim MAX6697 and compatibles"
1358	depends on I2C
1359	help
1360	  If you say yes here you get support for MAX6581, MAX6602, MAX6622,
1361	  MAX6636, MAX6689, MAX6693, MAX6694, MAX6697, MAX6698, and MAX6699
1362	  temperature sensor chips.
1363
1364	  This driver can also be built as a module. If so, the module
1365	  will be called max6697.
1366
1367config SENSORS_MAX31790
1368	tristate "Maxim MAX31790 sensor chip"
1369	depends on I2C
1370	help
1371	  If you say yes here you get support for 6-Channel PWM-Output
1372	  Fan RPM Controller.
1373
1374	  This driver can also be built as a module. If so, the module
1375	  will be called max31790.
1376
1377config SENSORS_MAX77705
1378	tristate "MAX77705 current and voltage sensor"
1379	depends on MFD_MAX77705
1380	help
1381	  If you say yes here you get support for MAX77705 sensors connected with I2C.
1382
1383	  This driver can also be built as a module. If so, the module
1384	  will be called max77705-hwmon.
1385
1386config SENSORS_MC34VR500
1387	tristate "NXP MC34VR500 hardware monitoring driver"
1388	depends on I2C
1389	select REGMAP_I2C
1390	help
1391	  If you say yes here you get support for the temperature and input
1392	  voltage sensors of the NXP MC34VR500.
1393
1394config SENSORS_MCP3021
1395	tristate "Microchip MCP3021 and compatibles"
1396	depends on I2C
1397	help
1398	  If you say yes here you get support for MCP3021 and MCP3221.
1399	  The MCP3021 is a A/D converter (ADC) with 10-bit and the MCP3221
1400	  with 12-bit resolution.
1401
1402	  This driver can also be built as a module. If so, the module
1403	  will be called mcp3021.
1404
1405config SENSORS_MCP9982
1406       tristate "Microchip Technology MCP9982 driver"
1407       depends on I2C
1408       select REGMAP_I2C
1409       help
1410         Say yes here to include support for Microchip Technology's MCP998X/33
1411         and MCP998XD/33D Multichannel Automotive Temperature Monitor Family.
1412
1413         This driver can also be built as a module. If so, the module
1414         will be called mcp9982.
1415
1416config SENSORS_MLXREG_FAN
1417	tristate "Mellanox FAN driver"
1418	depends on MELLANOX_PLATFORM
1419	imply THERMAL
1420	select REGMAP
1421	help
1422	  This option enables support for the FAN control on the Mellanox
1423	  Ethernet and InfiniBand switches. The driver can be activated by the
1424	  platform device add call. Say Y to enable these. To compile this
1425	  driver as a module, choose 'M' here: the module will be called
1426	  mlxreg-fan.
1427
1428config SENSORS_TC654
1429	tristate "Microchip TC654/TC655 and compatibles"
1430	depends on I2C
1431	help
1432	  If you say yes here you get support for TC654 and TC655.
1433	  The TC654 and TC655 are PWM mode fan speed controllers with
1434	  FanSense technology for use with brushless DC fans.
1435
1436	  This driver can also be built as a module. If so, the module
1437	  will be called tc654.
1438
1439config SENSORS_TPS23861
1440	tristate "Texas Instruments TPS23861 PoE PSE"
1441	depends on I2C
1442	select REGMAP_I2C
1443	help
1444	  If you say yes here you get support for Texas Instruments
1445	  TPS23861 802.3at PoE PSE chips.
1446
1447	  This driver can also be built as a module. If so, the module
1448	  will be called tps23861.
1449
1450config SENSORS_MENF21BMC_HWMON
1451	tristate "MEN 14F021P00 BMC Hardware Monitoring"
1452	depends on MFD_MENF21BMC
1453	help
1454	  Say Y here to include support for the MEN 14F021P00 BMC
1455	  hardware monitoring.
1456
1457	  This driver can also be built as a module. If so the module
1458	  will be called menf21bmc_hwmon.
1459
1460config SENSORS_MR75203
1461	tristate "Moortec Semiconductor MR75203 PVT Controller"
1462	select REGMAP_MMIO
1463	help
1464	  If you say yes here you get support for Moortec MR75203
1465	  PVT controller.
1466
1467	  This driver can also be built as a module. If so, the module
1468	  will be called mr75203.
1469
1470config SENSORS_ADCXX
1471	tristate "National Semiconductor ADCxxxSxxx"
1472	depends on SPI_MASTER
1473	help
1474	  If you say yes here you get support for the National Semiconductor
1475	  ADC<bb><c>S<sss> chip family, where
1476	  * bb  is the resolution in number of bits (8, 10, 12)
1477	  * c   is the number of channels (1, 2, 4, 8)
1478	  * sss is the maximum conversion speed (021 for 200 kSPS, 051 for 500
1479	    kSPS and 101 for 1 MSPS)
1480
1481	  Examples : ADC081S101, ADC124S501, ...
1482
1483	  This driver can also be built as a module. If so, the module
1484	  will be called adcxx.
1485
1486config SENSORS_LM63
1487	tristate "National Semiconductor LM63 and compatibles"
1488	depends on I2C
1489	help
1490	  If you say yes here you get support for the National
1491	  Semiconductor LM63, LM64, and LM96163 remote diode digital temperature
1492	  sensors with integrated fan control.  Such chips are found
1493	  on the Tyan S4882 (Thunder K8QS Pro) motherboard, among
1494	  others.
1495
1496	  This driver can also be built as a module. If so, the module
1497	  will be called lm63.
1498
1499config SENSORS_LM70
1500	tristate "National Semiconductor LM70 and compatibles"
1501	depends on SPI_MASTER
1502	help
1503	  If you say yes here you get support for the National Semiconductor
1504	  LM70, LM71, LM74 and Texas Instruments TMP121/TMP123, TMP122/TMP124,
1505	  TMP125 digital temperature sensor chips.
1506
1507	  This driver can also be built as a module. If so, the module
1508	  will be called lm70.
1509
1510config SENSORS_LM73
1511	tristate "National Semiconductor LM73"
1512	depends on I2C
1513	help
1514	  If you say yes here you get support for National Semiconductor LM73
1515	  sensor chips.
1516	  This driver can also be built as a module. If so, the module
1517	  will be called lm73.
1518
1519config SENSORS_LM75
1520	tristate "National Semiconductor LM75 and compatibles"
1521	depends on I3C_OR_I2C
1522	select REGMAP_I2C
1523	select REGMAP_I3C if I3C
1524	help
1525	  If you say yes here you get support for one common type of
1526	  temperature sensor chip, with models including:
1527
1528		- Analog Devices ADT75
1529		- Atmel (now Microchip) AT30TS74
1530		- Dallas Semiconductor DS75, DS1775 and DS7505
1531		- Global Mixed-mode Technology (GMT) G751
1532		- Maxim MAX6625 and MAX6626
1533		- Microchip MCP980x
1534		- National Semiconductor LM75, LM75A
1535		- NXP's LM75A
1536		- ST Microelectronics STDS75
1537		- ST Microelectronics STLM75
1538		- TelCom (now Microchip) TCN75
1539		- Texas Instruments TMP100, TMP101, TMP105, TMP112, TMP75,
1540		  TMP175, TMP275
1541
1542	  This driver supports driver model based binding through board
1543	  specific I2C device tables.
1544
1545	  It also supports the "legacy" style of driver binding.  To use
1546	  that with some chips which don't replicate LM75 quirks exactly,
1547	  you may need the "force" module parameter.
1548
1549	  This driver can also be built as a module. If so, the module
1550	  will be called lm75.
1551
1552config SENSORS_LM77
1553	tristate "National Semiconductor LM77"
1554	depends on I2C
1555	help
1556	  If you say yes here you get support for National Semiconductor LM77
1557	  sensor chips.
1558
1559	  This driver can also be built as a module. If so, the module
1560	  will be called lm77.
1561
1562config SENSORS_LM78
1563	tristate "National Semiconductor LM78 and compatibles"
1564	depends on I2C
1565	select HWMON_VID
1566	help
1567	  If you say yes here you get support for National Semiconductor LM78,
1568	  LM78-J and LM79.
1569
1570	  This driver can also be built as a module. If so, the module
1571	  will be called lm78.
1572
1573config SENSORS_LM80
1574	tristate "National Semiconductor LM80 and LM96080"
1575	depends on I2C
1576	help
1577	  If you say yes here you get support for National Semiconductor
1578	  LM80 and LM96080 sensor chips.
1579
1580	  This driver can also be built as a module. If so, the module
1581	  will be called lm80.
1582
1583config SENSORS_LM83
1584	tristate "National Semiconductor LM83 and compatibles"
1585	depends on I2C
1586	select REGMAP
1587	help
1588	  If you say yes here you get support for National Semiconductor
1589	  LM82 and LM83 sensor chips.
1590
1591	  This driver can also be built as a module. If so, the module
1592	  will be called lm83.
1593
1594config SENSORS_LM85
1595	tristate "National Semiconductor LM85 and compatibles"
1596	depends on I2C
1597	select HWMON_VID
1598	help
1599	  If you say yes here you get support for National Semiconductor LM85
1600	  sensor chips and clones: ADM1027, ADT7463, ADT7468, EMC6D100,
1601	  EMC6D101, EMC6D102, and EMC6D103.
1602
1603	  This driver can also be built as a module. If so, the module
1604	  will be called lm85.
1605
1606config SENSORS_LM87
1607	tristate "National Semiconductor LM87 and compatibles"
1608	depends on I2C
1609	select HWMON_VID
1610	help
1611	  If you say yes here you get support for National Semiconductor LM87
1612	  and Analog Devices ADM1024 sensor chips.
1613
1614	  This driver can also be built as a module. If so, the module
1615	  will be called lm87.
1616
1617config SENSORS_LM90
1618	tristate "National Semiconductor LM90 and compatibles"
1619	depends on I2C
1620	help
1621	  If you say yes here you get support for National Semiconductor LM84,
1622	  LM90, LM86, LM89 and LM99, Analog Devices ADM1020, ADM2021, ADM1021A,
1623	  ADM1023, ADM1032, ADT7461, ADT7461A, ADT7481, ADT7482, and ADT7483A,
1624	  Maxim MAX1617, MAX6642, MAX6646, MAX6647, MAX6648, MAX6649, MAX6654,
1625	  MAX6657, MAX6658, MAX6659, MAX6680, MAX6681, MAX6692, MAX6695,
1626	  MAX6696,
1627	  ON Semiconductor NCT1008, NCT210, NCT72, NCT214, NCT218,
1628	  Winbond/Nuvoton W83L771W/G/AWG/ASG, NCT7716, NCT7717 and NCT7718,
1629	  Philips NE1618, SA56004, GMT G781, Texas Instruments TMP451 and TMP461
1630	  sensor chips.
1631
1632	  This driver can also be built as a module. If so, the module
1633	  will be called lm90.
1634
1635config SENSORS_LM92
1636	tristate "National Semiconductor LM92 and compatibles"
1637	depends on I2C
1638	select REGMAP_I2C
1639	help
1640	  If you say yes here you get support for National Semiconductor LM92
1641	  and LM76 as well as Maxim MAX6633/6634/6635 sensor chips.
1642
1643	  This driver can also be built as a module. If so, the module
1644	  will be called lm92.
1645
1646config SENSORS_LM93
1647	tristate "National Semiconductor LM93 and compatibles"
1648	depends on I2C
1649	select HWMON_VID
1650	help
1651	  If you say yes here you get support for National Semiconductor LM93,
1652	  LM94, and compatible sensor chips.
1653
1654	  This driver can also be built as a module. If so, the module
1655	  will be called lm93.
1656
1657config SENSORS_LM95234
1658	tristate "National Semiconductor LM95234 and compatibles"
1659	depends on I2C
1660	select REGMAP_I2C
1661	help
1662	  If you say yes here you get support for the LM95233 and LM95234
1663	  temperature sensor chips.
1664
1665	  This driver can also be built as a module. If so, the module
1666	  will be called lm95234.
1667
1668config SENSORS_LM95241
1669	tristate "National Semiconductor LM95241 and compatibles"
1670	depends on I2C
1671	help
1672	  If you say yes here you get support for LM95231 and LM95241 sensor
1673	  chips.
1674
1675	  This driver can also be built as a module. If so, the module
1676	  will be called lm95241.
1677
1678config SENSORS_LM95245
1679	tristate "National Semiconductor LM95245 and compatibles"
1680	depends on I2C
1681	select REGMAP_I2C
1682	help
1683	  If you say yes here you get support for LM95235 and LM95245
1684	  temperature sensor chips.
1685
1686	  This driver can also be built as a module. If so, the module
1687	  will be called lm95245.
1688
1689config SENSORS_PC87360
1690	tristate "National Semiconductor PC87360 family"
1691	depends on HAS_IOPORT
1692	depends on !PPC
1693	select HWMON_VID
1694	help
1695	  If you say yes here you get access to the hardware monitoring
1696	  functions of the National Semiconductor PC8736x Super-I/O chips.
1697	  The PC87360, PC87363 and PC87364 only have fan monitoring and
1698	  control.  The PC87365 and PC87366 additionally have voltage and
1699	  temperature monitoring.
1700
1701	  This driver can also be built as a module. If so, the module
1702	  will be called pc87360.
1703
1704config SENSORS_PC87427
1705	tristate "National Semiconductor PC87427"
1706	depends on HAS_IOPORT
1707	depends on !PPC
1708	help
1709	  If you say yes here you get access to the hardware monitoring
1710	  functions of the National Semiconductor PC87427 Super-I/O chip.
1711	  The chip has two distinct logical devices, one for fan speed
1712	  monitoring and control, and one for voltage and temperature
1713	  monitoring. Fan speed monitoring and control are supported, as
1714	  well as temperature monitoring. Voltages aren't supported yet.
1715
1716	  This driver can also be built as a module. If so, the module
1717	  will be called pc87427.
1718
1719config SENSORS_NTC_THERMISTOR
1720	tristate "NTC thermistor support"
1721	depends on IIO
1722	depends on THERMAL || !THERMAL_OF
1723	help
1724	  This driver supports NTC thermistors sensor reading and its
1725	  interpretation. The driver can also monitor the temperature and
1726	  send notifications about the temperature.
1727
1728	  Currently, this driver supports
1729	  NCP15WB473, NCP18WB473, NCP21WB473, NCP03WB473, NCP15WL333,
1730	  NCP03WF104 and NCP15XH103 from Murata and B57330V2103 and
1731	  B57891S0103 from EPCOS.
1732
1733	  This driver can also be built as a module. If so, the module
1734	  will be called ntc_thermistor.
1735
1736config SENSORS_NCT6683
1737	tristate "Nuvoton NCT6683D"
1738	depends on HAS_IOPORT
1739	depends on !PPC
1740	help
1741	  If you say yes here you get support for the hardware monitoring
1742	  functionality of the Nuvoton NCT6683D eSIO chip.
1743
1744	  This driver can also be built as a module. If so, the module
1745	  will be called nct6683.
1746
1747config SENSORS_NCT6694
1748	tristate "Nuvoton NCT6694 Hardware Monitor support"
1749	depends on MFD_NCT6694
1750	help
1751	  Say Y here to support Nuvoton NCT6694 hardware monitoring
1752	  functionality.
1753
1754	  This driver can also be built as a module. If so, the module
1755	  will be called nct6694-hwmon.
1756
1757config SENSORS_NCT6775_CORE
1758	tristate
1759	select REGMAP
1760	help
1761	  This module contains common code shared by the platform and
1762	  i2c versions of the nct6775 driver; it is not useful on its
1763	  own.
1764
1765	  If built as a module, the module will be called
1766	  nct6775-core.
1767
1768config SENSORS_NCT6775
1769	tristate "Platform driver for Nuvoton NCT6775F and compatibles"
1770	depends on HAS_IOPORT
1771	depends on !PPC
1772	depends on ACPI || ACPI=n
1773	select HWMON_VID
1774	select SENSORS_NCT6775_CORE
1775	help
1776	  If you say yes here you get support for the hardware monitoring
1777	  functionality of the Nuvoton NCT6106D, NCT6775F, NCT6776F, NCT6779D,
1778	  NCT6791D, NCT6792D, NCT6793D, NCT6795D, NCT6796D, and compatible
1779	  Super-I/O chips. This driver replaces the w83627ehf driver for
1780	  NCT6775F and NCT6776F.
1781
1782	  This driver can also be built as a module. If so, the module
1783	  will be called nct6775.
1784
1785config SENSORS_NCT6775_I2C
1786	tristate "I2C driver for Nuvoton NCT6775F and compatibles"
1787	depends on I2C
1788	select REGMAP_I2C
1789	select SENSORS_NCT6775_CORE
1790	help
1791	  If you say yes here you get support for the hardware monitoring
1792	  functionality of the Nuvoton NCT6106D, NCT6775F, NCT6776F, NCT6779D,
1793	  NCT6791D, NCT6792D, NCT6793D, NCT6795D, NCT6796D, and compatible
1794	  Super-I/O chips via their I2C interface.
1795
1796	  If you're not building a kernel for a BMC, this is probably
1797	  not the driver you want (see CONFIG_SENSORS_NCT6775).
1798
1799	  This driver can also be built as a module. If so, the module
1800	  will be called nct6775-i2c.
1801
1802config SENSORS_NCT7363
1803	tristate "Nuvoton NCT7363Y"
1804	depends on I2C
1805	select REGMAP_I2C
1806	help
1807	  If you say yes here you get support for the Nuvoton NCT7363Y
1808	  hardware monitoring chip.
1809
1810	  This driver can also be built as a module. If so, the module
1811	  will be called nct7363.
1812
1813config SENSORS_NCT7802
1814	tristate "Nuvoton NCT7802Y"
1815	depends on I2C
1816	select REGMAP_I2C
1817	help
1818	  If you say yes here you get support for the Nuvoton NCT7802Y
1819	  hardware monitoring chip.
1820
1821	  This driver can also be built as a module. If so, the module
1822	  will be called nct7802.
1823
1824config SENSORS_NCT7904
1825	tristate "Nuvoton NCT7904"
1826	depends on I2C && WATCHDOG
1827	select WATCHDOG_CORE
1828	help
1829	  If you say yes here you get support for the Nuvoton NCT7904
1830	  hardware monitoring chip, including manual fan speed control
1831	  and support for the integrated watchdog.
1832
1833	  This driver can also be built as a module. If so, the module
1834	  will be called nct7904.
1835
1836config SENSORS_NPCM7XX
1837	tristate "Nuvoton NPCM750 and compatible PWM and Fan controllers"
1838	imply THERMAL
1839	help
1840	  This driver provides support for Nuvoton NPCM750/730/715/705 PWM
1841          and Fan controllers.
1842
1843          This driver can also be built as a module. If so, the module
1844          will be called npcm750-pwm-fan.
1845
1846config SENSORS_NSA320
1847	tristate "ZyXEL NSA320 and compatible fan speed and temperature sensors"
1848	depends on GPIOLIB && OF
1849	depends on MACH_KIRKWOOD || COMPILE_TEST
1850	help
1851	  If you say yes here you get support for hardware monitoring
1852	  for the ZyXEL NSA320 Media Server and other compatible devices
1853	  (probably the NSA325 and some NSA310 variants).
1854
1855	  The sensor data is taken from a Holtek HT46R065 microcontroller
1856	  connected to GPIO lines.
1857
1858	  This driver can also be built as a module. If so, the module
1859	  will be called nsa320-hwmon.
1860
1861config SENSORS_NZXT_KRAKEN2
1862	tristate "NZXT Kraken X42/X51/X62/X72 liquid coolers"
1863	depends on USB_HID
1864	help
1865	  If you say yes here you get support for hardware monitoring for the
1866	  NZXT Kraken X42/X52/X62/X72 all-in-one CPU liquid coolers.
1867
1868	  This driver can also be built as a module. If so, the module
1869	  will be called nzxt-kraken2.
1870
1871config SENSORS_NZXT_KRAKEN3
1872	tristate "NZXT Kraken X53/X63/X73, Z53/Z63/Z73 coolers"
1873	depends on USB_HID
1874	help
1875	  If you say yes here you get support for hardware monitoring for the
1876	  NZXT Kraken X53/X63/X73, Z53/Z63/Z73 all-in-one CPU liquid coolers.
1877
1878	  This driver can also be built as a module. If so, the module
1879	  will be called nzxt-kraken3.
1880
1881config SENSORS_NZXT_SMART2
1882	tristate "NZXT RGB & Fan Controller/Smart Device v2"
1883	depends on USB_HID
1884	help
1885	  If you say yes here you get support for hardware monitoring for the
1886	  NZXT RGB & Fan Controller/Smart Device v2.
1887
1888	  This driver can also be built as a module. If so, the module
1889	  will be called nzxt-smart2.
1890
1891source "drivers/hwmon/occ/Kconfig"
1892
1893config SENSORS_PCF8591
1894	tristate "Philips PCF8591 ADC/DAC"
1895	depends on I2C
1896	help
1897	  If you say yes here you get support for Philips PCF8591 4-channel
1898	  ADC, 1-channel DAC chips.
1899
1900	  This driver can also be built as a module. If so, the module
1901	  will be called pcf8591.
1902
1903	  These devices are hard to detect and rarely found on mainstream
1904	  hardware. If unsure, say N.
1905
1906source "drivers/hwmon/peci/Kconfig"
1907
1908source "drivers/hwmon/pmbus/Kconfig"
1909
1910config SENSORS_PT5161L
1911	tristate "Astera Labs PT5161L PCIe retimer hardware monitoring"
1912	depends on I2C
1913	help
1914	  If you say yes here you get support for temperature monitoring
1915	  on the Astera Labs PT5161L PCIe retimer.
1916
1917	  This driver can also be built as a module. If so, the module
1918	  will be called pt5161l.
1919
1920config SENSORS_PWM_FAN
1921	tristate "PWM fan"
1922	depends on PWM || COMPILE_TEST
1923	depends on THERMAL || THERMAL=n
1924	help
1925	  If you say yes here you get support for fans connected to PWM lines.
1926	  The driver uses the generic PWM interface, thus it will work on a
1927	  variety of SoCs.
1928
1929	  This driver can also be built as a module. If so, the module
1930	  will be called pwm-fan.
1931
1932config SENSORS_QNAP_MCU_HWMON
1933	tristate "QNAP MCU hardware monitoring"
1934	depends on MFD_QNAP_MCU
1935	depends on THERMAL || THERMAL=n
1936	help
1937	  Say yes here to enable support for fan and temperature sensor
1938	  connected to a QNAP MCU, as found in a number of QNAP network
1939	  attached storage devices.
1940
1941	  This driver can also be built as a module. If so, the module
1942	  will be called qnap-mcu-hwmon.
1943
1944config SENSORS_RASPBERRYPI_HWMON
1945	tristate "Raspberry Pi voltage monitor"
1946	depends on RASPBERRYPI_FIRMWARE || (COMPILE_TEST && !RASPBERRYPI_FIRMWARE)
1947	help
1948	  If you say yes here you get support for voltage sensor on the
1949	  Raspberry Pi.
1950
1951	  This driver can also be built as a module. If so, the module
1952	  will be called raspberrypi-hwmon.
1953
1954config SENSORS_SL28CPLD
1955	tristate "Kontron sl28cpld hardware monitoring driver"
1956	depends on MFD_SL28CPLD || COMPILE_TEST
1957	help
1958	  If you say yes here you get support for the fan supervisor of the
1959	  sl28cpld board management controller.
1960
1961	  This driver can also be built as a module.  If so, the module
1962	  will be called sl28cpld-hwmon.
1963
1964config SENSORS_SBTSI
1965	tristate "Emulated SB-TSI temperature sensor"
1966	depends on I2C
1967	help
1968	  If you say yes here you get support for emulated temperature
1969	  sensors on AMD SoCs with SB-TSI interface connected to a BMC device.
1970
1971	  This driver can also be built as a module. If so, the module will
1972	  be called sbtsi_temp.
1973
1974config SENSORS_SHT15
1975	tristate "Sensiron humidity and temperature sensors. SHT15 and compat."
1976	depends on GPIOLIB || COMPILE_TEST
1977	select BITREVERSE
1978	help
1979	  If you say yes here you get support for the Sensiron SHT10, SHT11,
1980	  SHT15, SHT71, SHT75 humidity and temperature sensors.
1981
1982	  This driver can also be built as a module. If so, the module
1983	  will be called sht15.
1984
1985config SENSORS_SHT21
1986	tristate "Sensiron humidity and temperature sensors. SHT21 and compat."
1987	depends on I2C
1988	help
1989	  If you say yes here you get support for the Sensiron SHT20, SHT21,
1990	  SHT25 humidity and temperature sensors.
1991
1992	  This driver can also be built as a module. If so, the module
1993	  will be called sht21.
1994
1995config SENSORS_SHT3x
1996	tristate "Sensiron humidity and temperature sensors. SHT3x and compat."
1997	depends on I2C
1998	select CRC8
1999	help
2000	  If you say yes here you get support for the Sensiron SHT30, SHT31 and
2001	  SHT85 humidity and temperature sensors.
2002
2003	  This driver can also be built as a module. If so, the module
2004	  will be called sht3x.
2005
2006config SENSORS_SHT4x
2007	tristate "Sensiron humidity and temperature sensors. SHT4x and compat."
2008	depends on I2C
2009	select CRC8
2010	help
2011	  If you say yes here you get support for the Sensiron SHT40, SHT41 and
2012	  SHT45 humidity and temperature sensors.
2013
2014	  This driver can also be built as a module. If so, the module
2015	  will be called sht4x.
2016
2017config SENSORS_SHTC1
2018	tristate "Sensiron humidity and temperature sensors. SHTC1 and compat."
2019	depends on I2C
2020	help
2021	  If you say yes here you get support for the Sensiron SHTC1, SHTW1,
2022	  and SHTC3 humidity and temperature sensors.
2023
2024	  This driver can also be built as a module. If so, the module
2025	  will be called shtc1.
2026
2027config SENSORS_SIS5595
2028	tristate "Silicon Integrated Systems Corp. SiS5595"
2029	depends on PCI && HAS_IOPORT
2030	help
2031	  If you say yes here you get support for the integrated sensors in
2032	  SiS5595 South Bridges.
2033
2034	  This driver can also be built as a module. If so, the module
2035	  will be called sis5595.
2036
2037config SENSORS_SY7636A
2038	tristate "Silergy SY7636A"
2039	depends on MFD_SY7636A
2040	help
2041	  If you say yes here you get support for the thermistor readout of
2042	  the Silergy SY7636A PMIC.
2043
2044	  This driver can also be built as a module.  If so, the module
2045	  will be called sy7636a-hwmon.
2046
2047config SENSORS_DME1737
2048	tristate "SMSC DME1737, SCH311x and compatibles"
2049	depends on HAS_IOPORT
2050	depends on I2C && !PPC
2051	select HWMON_VID
2052	help
2053	  If you say yes here you get support for the hardware monitoring
2054	  and fan control features of the SMSC DME1737, SCH311x, SCH5027, and
2055	  Asus A8000 Super-I/O chips.
2056
2057	  This driver can also be built as a module. If so, the module
2058	  will be called dme1737.
2059
2060config SENSORS_EMC1403
2061	tristate "SMSC EMC1403/23 thermal sensor"
2062	depends on I2C
2063	select REGMAP_I2C
2064	help
2065	  If you say yes here you get support for the SMSC EMC1403/23
2066	  temperature monitoring chip.
2067
2068	  Threshold values can be configured using sysfs.
2069	  Data from the different diodes are accessible via sysfs.
2070
2071config SENSORS_EMC1812
2072	tristate "Microchip Technology EMC1812 driver"
2073	depends on I2C
2074	select REGMAP_I2C
2075	help
2076	  If you say yes here to build support for Microchip Technology's
2077	  EMC181X/33  Multichannel Low-Voltage Remote Diode Sensor Family.
2078
2079	  This driver can also be built as a module. If so, the module
2080	  will be called emc1812.
2081
2082config SENSORS_EMC2103
2083	tristate "SMSC EMC2103"
2084	depends on I2C
2085	help
2086	  If you say yes here you get support for the temperature
2087	  and fan sensors of the SMSC EMC2103 chips.
2088
2089	  This driver can also be built as a module. If so, the module
2090	  will be called emc2103.
2091
2092config SENSORS_EMC2305
2093	tristate "Microchip EMC2305 and compatible EMC2301/2/3"
2094	depends on I2C
2095	imply THERMAL
2096	help
2097	  If you say yes here you get support for the Microchip EMC2305
2098	  fan controller chips.
2099	  The Microchip EMC2305 is a fan controller for up to 5 fans.
2100	  Fan rotation speeds are reported in RPM.
2101
2102	  This driver can also be built as a module.  If so, the module
2103	  will be called emc2305.
2104
2105config SENSORS_EMC6W201
2106	tristate "SMSC EMC6W201"
2107	depends on I2C
2108	help
2109	  If you say yes here you get support for the SMSC EMC6W201
2110	  hardware monitoring chip.
2111
2112	  This driver can also be built as a module. If so, the module
2113	  will be called emc6w201.
2114
2115config SENSORS_SMSC47M1
2116	tristate "SMSC LPC47M10x and compatibles"
2117	depends on HAS_IOPORT
2118	depends on !PPC
2119	help
2120	  If you say yes here you get support for the integrated fan
2121	  monitoring and control capabilities of the SMSC LPC47B27x,
2122	  LPC47M10x, LPC47M112, LPC47M13x, LPC47M14x, LPC47M15x,
2123	  LPC47M192, LPC47M292 and LPC47M997 chips.
2124
2125	  The temperature and voltage sensor features of the LPC47M15x,
2126	  LPC47M192, LPC47M292 and LPC47M997 are supported by another
2127	  driver, select also "SMSC LPC47M192 and compatibles" below for
2128	  those.
2129
2130	  This driver can also be built as a module. If so, the module
2131	  will be called smsc47m1.
2132
2133config SENSORS_SMSC47M192
2134	tristate "SMSC LPC47M192 and compatibles"
2135	depends on I2C
2136	select HWMON_VID
2137	help
2138	  If you say yes here you get support for the temperature and
2139	  voltage sensors of the SMSC LPC47M192, LPC47M15x, LPC47M292
2140	  and LPC47M997 chips.
2141
2142	  The fan monitoring and control capabilities of these chips
2143	  are supported by another driver, select
2144	  "SMSC LPC47M10x and compatibles" above. You need both drivers
2145	  if you want fan control and voltage/temperature sensor support.
2146
2147	  This driver can also be built as a module. If so, the module
2148	  will be called smsc47m192.
2149
2150config SENSORS_SMSC47B397
2151	tristate "SMSC LPC47B397-NC"
2152	depends on HAS_IOPORT
2153	depends on !PPC
2154	help
2155	  If you say yes here you get support for the SMSC LPC47B397-NC
2156	  sensor chip.
2157
2158	  This driver can also be built as a module. If so, the module
2159	  will be called smsc47b397.
2160
2161config SENSORS_SCH56XX_COMMON
2162	tristate
2163	select REGMAP
2164
2165config SENSORS_SCH5627
2166	tristate "SMSC SCH5627"
2167	depends on HAS_IOPORT
2168	depends on !PPC && WATCHDOG
2169	select SENSORS_SCH56XX_COMMON
2170	select WATCHDOG_CORE
2171	help
2172	  If you say yes here you get support for the hardware monitoring
2173	  features of the SMSC SCH5627 Super-I/O chip including support for
2174	  the integrated watchdog.
2175
2176	  This driver can also be built as a module. If so, the module
2177	  will be called sch5627.
2178
2179config SENSORS_SCH5636
2180	tristate "SMSC SCH5636"
2181	depends on HAS_IOPORT
2182	depends on !PPC && WATCHDOG
2183	select SENSORS_SCH56XX_COMMON
2184	select WATCHDOG_CORE
2185	help
2186	  SMSC SCH5636 Super I/O chips include an embedded microcontroller for
2187	  hardware monitoring solutions, allowing motherboard manufacturers to
2188	  create their own custom hwmon solution based upon the SCH5636.
2189
2190	  Currently this driver only supports the Fujitsu Theseus SCH5636 based
2191	  hwmon solution. Say yes here if you want support for the Fujitsu
2192	  Theseus' hardware monitoring features including support for the
2193	  integrated watchdog.
2194
2195	  This driver can also be built as a module. If so, the module
2196	  will be called sch5636.
2197
2198config SENSORS_STTS751
2199	tristate "ST Microelectronics STTS751"
2200	depends on I2C
2201	help
2202	  If you say yes here you get support for STTS751
2203	  temperature sensor chips.
2204
2205	  This driver can also be built as a module. If so, the module
2206	  will be called stts751.
2207
2208config SENSORS_SFCTEMP
2209	tristate "Starfive JH71x0 temperature sensor"
2210	depends on ARCH_STARFIVE || COMPILE_TEST
2211	help
2212	  If you say yes here you get support for temperature sensor
2213	  on the Starfive JH71x0 SoCs.
2214
2215	  This driver can also be built as a module.  If so, the module
2216	  will be called sfctemp.
2217
2218config SENSORS_SG2042_MCU
2219	tristate "Sophgo onboard MCU support"
2220	depends on I2C
2221	depends on ARCH_SOPHGO || COMPILE_TEST
2222	help
2223	  Support for onboard MCU of Sophgo SG2042 SoCs. This mcu provides
2224	  power control and some basic information.
2225
2226	  This driver can be built as a module. If so, the module
2227	  will be called sg2042-mcu.
2228
2229config SENSORS_SURFACE_FAN
2230	tristate "Surface Fan Driver"
2231	depends on SURFACE_AGGREGATOR
2232	depends on SURFACE_AGGREGATOR_BUS
2233	help
2234	  Driver that provides monitoring of the fan on Surface Pro devices that
2235	  have a fan, like the Surface Pro 9.
2236
2237	  This makes the fan's current speed accessible through the hwmon
2238	  system. It does not provide control over the fan, the firmware is
2239	  responsible for that, this driver merely provides monitoring.
2240
2241	  Select M or Y here, if you want to be able to read the fan's speed.
2242
2243config SENSORS_SURFACE_TEMP
2244	tristate "Microsoft Surface Thermal Sensor Driver"
2245	depends on SURFACE_AGGREGATOR
2246	depends on SURFACE_AGGREGATOR_BUS
2247	help
2248	  Driver for monitoring thermal sensors connected via the Surface
2249	  Aggregator Module (embedded controller) on Microsoft Surface devices.
2250
2251	  This driver can also be built as a module. If so, the module
2252	  will be called surface_temp.
2253
2254config SENSORS_ADC128D818
2255	tristate "Texas Instruments ADC128D818"
2256	depends on I2C
2257	help
2258	  If you say yes here you get support for the Texas Instruments
2259	  ADC128D818 System Monitor with Temperature Sensor chip.
2260
2261	  This driver can also be built as a module. If so, the module
2262	  will be called adc128d818.
2263
2264config SENSORS_ADS7828
2265	tristate "Texas Instruments ADS7828 and compatibles"
2266	depends on I2C
2267	select REGMAP_I2C
2268	help
2269	  If you say yes here you get support for Texas Instruments ADS7828 and
2270	  ADS7830 8-channel A/D converters. ADS7828 resolution is 12-bit, while
2271	  it is 8-bit on ADS7830.
2272
2273	  This driver can also be built as a module. If so, the module
2274	  will be called ads7828.
2275
2276config SENSORS_ADS7871
2277	tristate "Texas Instruments ADS7871 A/D converter"
2278	depends on SPI
2279	help
2280	  If you say yes here you get support for TI ADS7871 & ADS7870
2281
2282	  This driver can also be built as a module. If so, the module
2283	  will be called ads7871.
2284
2285config SENSORS_AMC6821
2286	tristate "Texas Instruments AMC6821"
2287	depends on I2C
2288	select REGMAP_I2C
2289	help
2290	  If you say yes here you get support for the Texas Instruments
2291	  AMC6821 hardware monitoring chips.
2292
2293	  This driver can also be built as a module. If so, the module
2294	  will be called amc6821.
2295
2296config SENSORS_INA209
2297	tristate "TI / Burr Brown INA209"
2298	depends on I2C
2299	help
2300	  If you say yes here you get support for the TI / Burr Brown INA209
2301	  voltage / current / power monitor I2C interface.
2302
2303	  This driver can also be built as a module. If so, the module will
2304	  be called ina209.
2305
2306config SENSORS_INA2XX
2307	tristate "Texas Instruments INA219 and compatibles"
2308	depends on I2C
2309	select REGMAP_I2C
2310	help
2311	  If you say yes here you get support for INA219, INA220, INA226,
2312	  INA230, INA231, INA234, INA260, and SY24655 power monitor chips.
2313
2314	  The INA2xx driver is configured for the default configuration of
2315	  the part as described in the datasheet.
2316	  Default value for Rshunt is 10 mOhms except for INA260 which has an
2317	  internal 2 mOhm shunt resistor.
2318	  This driver can also be built as a module. If so, the module
2319	  will be called ina2xx.
2320
2321config SENSORS_INA238
2322	tristate "Texas Instruments INA238 and compatibles"
2323	depends on I2C
2324	select REGMAP_I2C
2325	help
2326	  If you say yes here you get support for INA228, INA237, INA238,
2327	  INA700, INA780, and SQ52206 power monitor chips. This driver supports
2328	  voltage, current, power, energy, and temperature measurements as well
2329	  as alarm configuration.
2330
2331	  This driver can also be built as a module. If so, the module
2332	  will be called ina238.
2333
2334config SENSORS_INA3221
2335	tristate "Texas Instruments INA3221 Triple Power Monitor"
2336	depends on I2C
2337	select REGMAP_I2C
2338	help
2339	  If you say yes here you get support for  the TI INA3221 Triple Power
2340	  Monitor.
2341
2342	  This driver can also be built as a module. If so, the module
2343	  will be called ina3221.
2344
2345config SENSORS_SPD5118
2346	tristate "SPD5118 Compliant Temperature Sensors"
2347	depends on I2C
2348	select REGMAP_I2C
2349	help
2350	  If you say yes here you get support for SPD5118 (JEDEC JESD300)
2351	  compliant temperature sensors. Such sensors are found on DDR5 memory
2352	  modules.
2353
2354	  This driver can also be built as a module. If so, the module
2355	  will be called spd5118.
2356
2357config SENSORS_SPD5118_DETECT
2358	bool "Enable detect function"
2359	depends on SENSORS_SPD5118
2360	default (!DMI || !X86)
2361	help
2362	  If enabled, the driver auto-detects if a chip in the SPD address
2363	  range is compliant to the SPD51888 standard and auto-instantiates
2364	  if that is the case. If disabled, SPD5118 compliant devices have
2365	  to be instantiated by other means. On X86 systems with DMI support
2366	  this will typically be done from DMI DDR detection code in the
2367	  I2C SMBus subsystem. Devicetree based systems will instantiate
2368	  attached devices if the DIMMs are listed in the devicetree file.
2369
2370	  Disabling the detect function will speed up boot time and reduce
2371	  the risk of mis-detecting SPD5118 compliant devices. However, it
2372	  may result in missed DIMMs under some circumstances.
2373
2374	  If unsure, say Y.
2375
2376config SENSORS_TC74
2377	tristate "Microchip TC74"
2378	depends on I2C
2379	help
2380	  If you say yes here you get support for Microchip TC74 single
2381	  input temperature sensor chips.
2382
2383	  This driver can also be built as a module. If so, the module
2384	  will be called tc74.
2385
2386config SENSORS_THMC50
2387	tristate "Texas Instruments THMC50 / Analog Devices ADM1022"
2388	depends on I2C
2389	help
2390	  If you say yes here you get support for Texas Instruments THMC50
2391	  sensor chips and clones: the Analog Devices ADM1022.
2392
2393	  This driver can also be built as a module. If so, the module
2394	  will be called thmc50.
2395
2396config SENSORS_TMP102
2397	tristate "Texas Instruments TMP102"
2398	depends on I2C
2399	select REGMAP_I2C
2400	help
2401	  If you say yes here you get support for Texas Instruments TMP102,
2402	  TMP110 and TMP113 sensor chips.
2403
2404	  This driver can also be built as a module. If so, the module
2405	  will be called tmp102.
2406
2407config SENSORS_TMP103
2408	tristate "Texas Instruments TMP103"
2409	depends on I2C
2410	select REGMAP_I2C
2411	help
2412	  If you say yes here you get support for Texas Instruments TMP103
2413	  sensor chips.
2414
2415	  This driver can also be built as a module. If so, the module
2416	  will be called tmp103.
2417
2418config SENSORS_TMP108
2419	tristate "Texas Instruments TMP108"
2420	depends on I3C_OR_I2C
2421	select REGMAP_I2C
2422	select REGMAP_I3C if I3C
2423	help
2424	  If you say yes here you get support for Texas Instruments TMP108
2425	  sensor chips, NXP temperature sensors P3T1035, P3T1085 and P3T2030.
2426
2427	  This driver can also be built as a module. If so, the module
2428	  will be called tmp108.
2429
2430config SENSORS_TMP401
2431	tristate "Texas Instruments TMP401 and compatibles"
2432	depends on I2C
2433	select REGMAP
2434	help
2435	  If you say yes here you get support for Texas Instruments TMP401,
2436	  TMP411, TMP431, TMP432, and TMP435 temperature sensor chips.
2437
2438	  This driver can also be built as a module. If so, the module
2439	  will be called tmp401.
2440
2441config SENSORS_TMP421
2442	tristate "Texas Instruments TMP421 and compatible"
2443	depends on I2C
2444	help
2445	  If you say yes here you get support for Texas Instruments TMP421,
2446	  TMP422, TMP423, TMP441, and TMP442 temperature sensor chips.
2447
2448	  This driver can also be built as a module. If so, the module
2449	  will be called tmp421.
2450
2451config SENSORS_TMP464
2452	tristate "Texas Instruments TMP464 and compatible"
2453	depends on I2C
2454	select REGMAP_I2C
2455	help
2456	  If you say yes here you get support for Texas Instruments TMP464
2457	  and TMP468 temperature sensor chips.
2458
2459	  This driver can also be built as a module. If so, the module
2460	  will be called tmp464.
2461
2462config SENSORS_TMP513
2463	tristate "Texas Instruments TMP513 and compatibles"
2464	depends on I2C
2465	select REGMAP_I2C
2466	help
2467	  If you say yes here you get support for Texas Instruments TMP512,
2468	  and TMP513 temperature and power supply sensor chips.
2469
2470	  This driver can also be built as a module. If so, the module
2471	  will be called tmp513.
2472
2473config SENSORS_TSC1641
2474	tristate "ST Microelectronics TSC1641 Power Monitor"
2475	depends on I2C
2476	select REGMAP_I2C
2477	help
2478	  If you say yes here you get support for TSC1641 power  monitor chip.
2479	  The TSC1641 driver is configured for the default configuration of
2480	  the part except temperature is enabled by default.
2481
2482	  This driver can also be built as a module. If so, the module
2483	  will be called tsc1641.
2484
2485config SENSORS_VEXPRESS
2486	tristate "Versatile Express"
2487	depends on VEXPRESS_CONFIG
2488	help
2489	  This driver provides support for hardware sensors available on
2490	  the ARM Ltd's Versatile Express platform. It can provide wide
2491	  range of information like temperature, power, energy.
2492
2493config SENSORS_VIA_CPUTEMP
2494	tristate "VIA CPU temperature sensor"
2495	depends on X86
2496	select HWMON_VID
2497	help
2498	  If you say yes here you get support for the temperature
2499	  sensor inside your CPU. Supported are all known variants of
2500	  the VIA C7 and Nano.
2501
2502config SENSORS_VIA686A
2503	tristate "VIA686A"
2504	depends on PCI && HAS_IOPORT
2505	help
2506	  If you say yes here you get support for the integrated sensors in
2507	  Via 686A/B South Bridges.
2508
2509	  This driver can also be built as a module. If so, the module
2510	  will be called via686a.
2511
2512config SENSORS_VT1211
2513	tristate "VIA VT1211"
2514	depends on HAS_IOPORT
2515	depends on !PPC
2516	select HWMON_VID
2517	help
2518	  If you say yes here then you get support for hardware monitoring
2519	  features of the VIA VT1211 Super-I/O chip.
2520
2521	  This driver can also be built as a module. If so, the module
2522	  will be called vt1211.
2523
2524config SENSORS_VT8231
2525	tristate "VIA VT8231"
2526	depends on PCI && HAS_IOPORT
2527	select HWMON_VID
2528	help
2529	  If you say yes here then you get support for the integrated sensors
2530	  in the VIA VT8231 device.
2531
2532	  This driver can also be built as a module. If so, the module
2533	  will be called vt8231.
2534
2535config SENSORS_W83773G
2536	tristate "Nuvoton W83773G"
2537	depends on I2C
2538	select REGMAP_I2C
2539	help
2540	  If you say yes here you get support for the Nuvoton W83773G hardware
2541	  monitoring chip.
2542
2543	  This driver can also be built as a module. If so, the module
2544	  will be called w83773g.
2545
2546config SENSORS_W83781D
2547	tristate "Winbond W83781D, W83782D, W83783S, Asus AS99127F"
2548	depends on I2C
2549	select HWMON_VID
2550	help
2551	  If you say yes here you get support for the Winbond W8378x series
2552	  of sensor chips: the W83781D, W83782D and W83783S, and the similar
2553	  Asus AS99127F.
2554
2555	  This driver can also be built as a module. If so, the module
2556	  will be called w83781d.
2557
2558config SENSORS_W83791D
2559	tristate "Winbond W83791D"
2560	depends on I2C
2561	select HWMON_VID
2562	help
2563	  If you say yes here you get support for the Winbond W83791D chip.
2564
2565	  This driver can also be built as a module. If so, the module
2566	  will be called w83791d.
2567
2568config SENSORS_W83792D
2569	tristate "Winbond W83792D"
2570	depends on I2C
2571	help
2572	  If you say yes here you get support for the Winbond W83792D chip.
2573
2574	  This driver can also be built as a module. If so, the module
2575	  will be called w83792d.
2576
2577config SENSORS_W83793
2578	tristate "Winbond W83793"
2579	depends on I2C
2580	select HWMON_VID
2581	help
2582	  If you say yes here you get support for the Winbond W83793
2583	  hardware monitoring chip, including support for the integrated
2584	  watchdog.
2585
2586	  This driver can also be built as a module. If so, the module
2587	  will be called w83793.
2588
2589config SENSORS_W83795
2590	tristate "Winbond/Nuvoton W83795G/ADG"
2591	depends on I2C
2592	help
2593	  If you say yes here you get support for the Winbond W83795G and
2594	  W83795ADG hardware monitoring chip, including manual fan speed
2595	  control.
2596
2597	  This driver can also be built as a module. If so, the module
2598	  will be called w83795.
2599
2600config SENSORS_W83795_FANCTRL
2601	bool "Include automatic fan control support"
2602	depends on SENSORS_W83795
2603	help
2604	  If you say yes here, support for automatic fan speed control
2605	  will be included in the driver.
2606
2607	  Please also note that this option will create sysfs attribute
2608	  files which may change in the future, so you shouldn't rely
2609	  on them being stable.
2610
2611config SENSORS_W83L785TS
2612	tristate "Winbond W83L785TS-S"
2613	depends on I2C
2614	help
2615	  If you say yes here you get support for the Winbond W83L785TS-S
2616	  sensor chip, which is used on the Asus A7N8X, among other
2617	  motherboards.
2618
2619	  This driver can also be built as a module. If so, the module
2620	  will be called w83l785ts.
2621
2622config SENSORS_W83L786NG
2623	tristate "Winbond W83L786NG, W83L786NR"
2624	depends on I2C
2625	help
2626	  If you say yes here you get support for the Winbond W83L786NG
2627	  and W83L786NR sensor chips.
2628
2629	  This driver can also be built as a module. If so, the module
2630	  will be called w83l786ng.
2631
2632config SENSORS_W83627HF
2633	tristate "Winbond W83627HF, W83627THF, W83637HF, W83687THF, W83697HF"
2634	depends on HAS_IOPORT
2635	depends on !PPC
2636	select HWMON_VID
2637	help
2638	  If you say yes here you get support for the Winbond W836X7 series
2639	  of sensor chips: the W83627HF, W83627THF, W83637HF, W83687THF and
2640	  W83697HF.
2641
2642	  This driver can also be built as a module. If so, the module
2643	  will be called w83627hf.
2644
2645config SENSORS_W83627EHF
2646	tristate "Winbond W83627EHF/EHG/DHG/UHG, W83667HG"
2647	depends on HAS_IOPORT
2648	depends on !PPC
2649	select HWMON_VID
2650	help
2651	  If you say yes here you get support for the hardware
2652	  monitoring functionality of the Winbond W83627EHF Super-I/O chip.
2653
2654	  This driver also supports the W83627EHG, which is the lead-free
2655	  version of the W83627EHF, and the W83627DHG, which is a similar
2656	  chip suited for specific Intel processors that use PECI such as
2657	  the Core 2 Duo. And also the W83627UHG, which is a stripped down
2658	  version of the W83627DHG (as far as hardware monitoring goes.)
2659
2660	  This driver also supports Nuvoton W83667HG and W83667HG-B.
2661
2662	  This driver can also be built as a module. If so, the module
2663	  will be called w83627ehf.
2664
2665config SENSORS_WM831X
2666	tristate "WM831x PMICs"
2667	depends on MFD_WM831X
2668	help
2669	  If you say yes here you get support for the hardware
2670	  monitoring functionality of the Wolfson Microelectronics
2671	  WM831x series of PMICs.
2672
2673	  This driver can also be built as a module. If so, the module
2674	  will be called wm831x-hwmon.
2675
2676config SENSORS_WM8350
2677	tristate "Wolfson Microelectronics WM835x"
2678	depends on MFD_WM8350
2679	help
2680	  If you say yes here you get support for the hardware
2681	  monitoring features of the WM835x series of PMICs.
2682
2683	  This driver can also be built as a module. If so, the module
2684	  will be called wm8350-hwmon.
2685
2686config SENSORS_ULTRA45
2687	tristate "Sun Ultra45 PIC16F747"
2688	depends on SPARC64
2689	help
2690	  This driver provides support for the Ultra45 workstation environmental
2691	  sensors.
2692
2693config SENSORS_XGENE
2694	tristate "APM X-Gene SoC hardware monitoring driver"
2695	depends on XGENE_SLIMPRO_MBOX || PCC
2696	help
2697	  If you say yes here you get support for the temperature
2698	  and power sensors for APM X-Gene SoC.
2699
2700config SENSORS_YOGAFAN
2701	tristate "Lenovo Yoga Fan Hardware Monitoring"
2702	depends on ACPI && HWMON && DMI
2703	help
2704	  If you say yes here you get support for fan speed monitoring
2705	  on Lenovo Yoga, Legion, IdeaPad, Slim and LOQ laptops.
2706	  The driver interfaces with the Embedded Controller via ACPI
2707	  and uses a Rate-Limited Lag filter to smooth RPM readings.
2708
2709	  This driver can also be built as a module. If so, the module
2710	  will be called yogafan.
2711
2712config SENSORS_INTEL_M10_BMC_HWMON
2713	tristate "Intel MAX10 BMC Hardware Monitoring"
2714	depends on MFD_INTEL_M10_BMC_CORE
2715	help
2716	  This driver provides support for the hardware monitoring functionality
2717	  on Intel MAX10 BMC chip.
2718
2719	  This BMC Chip is used on Intel FPGA PCIe Acceleration Cards (PAC). Its
2720	  sensors monitor various telemetry data of different components on the
2721	  card, e.g. board temperature, FPGA core temperature/voltage/current.
2722
2723if ACPI
2724
2725comment "ACPI drivers"
2726
2727config SENSORS_ACPI_POWER
2728	tristate "ACPI 4.0 power meter"
2729	help
2730	  This driver exposes ACPI 4.0 power meters as hardware monitoring
2731	  devices.  Say Y (or M) if you have a computer with ACPI 4.0 firmware
2732	  and a power meter.
2733
2734	  To compile this driver as a module, choose M here:
2735	  the module will be called acpi_power_meter.
2736
2737config SENSORS_ATK0110
2738	tristate "ASUS ATK0110"
2739	depends on X86
2740	help
2741	  If you say yes here you get support for the ACPI hardware
2742	  monitoring interface found in many ASUS motherboards. This
2743	  driver will provide readings of fans, voltages and temperatures
2744	  through the system firmware.
2745
2746	  This driver can also be built as a module. If so, the module
2747	  will be called asus_atk0110.
2748
2749config SENSORS_ASUS_WMI
2750	tristate "ASUS WMI X370/X470/B450/X399"
2751	depends on ACPI_WMI
2752	help
2753	  If you say yes here you get support for the ACPI hardware monitoring
2754	  interface found in X370/X470/B450/X399 ASUS motherboards. This driver
2755	  will provide readings of fans, voltages and temperatures through the system
2756	  firmware.
2757
2758	  This driver can also be built as a module. If so, the module
2759	  will be called asus_wmi_sensors.
2760
2761config SENSORS_ASUS_EC
2762	tristate "ASUS EC Sensors"
2763	depends on X86
2764	depends on ACPI_EC
2765	help
2766	  If you say yes here you get support for the ACPI embedded controller
2767	  hardware monitoring interface found in some ASUS motherboards. This is
2768	  where such sensors as water flow and temperature, optional fans, and
2769	  additional temperature sensors (T_Sensor, chipset temperatures)
2770	  find themselves.
2771
2772	  This driver can also be built as a module. If so, the module
2773	  will be called asus_ec_sensors.
2774
2775config SENSORS_HP_WMI
2776	tristate "HP WMI Sensors"
2777	depends on ACPI_WMI
2778	help
2779	  If you say yes here you get support for the ACPI hardware monitoring
2780	  interface found in HP (and some HP Compaq) business-class computers.
2781	  Available sensors vary between systems. Temperature and fan speed
2782	  sensors are the most common.
2783
2784	  This driver can also be built as a module. If so, the module
2785	  will be called hp_wmi_sensors.
2786
2787endif # ACPI
2788
2789endif # HWMON
2790