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