Linux Audio

Check our new training course

Linux kernel drivers training

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