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