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 I2C 1497 depends on I3C || !I3C 1498 select REGMAP_I2C 1499 select REGMAP_I3C if I3C 1500 help 1501 If you say yes here you get support for one common type of 1502 temperature sensor chip, with models including: 1503 1504 - Analog Devices ADT75 1505 - Atmel (now Microchip) AT30TS74 1506 - Dallas Semiconductor DS75, DS1775 and DS7505 1507 - Global Mixed-mode Technology (GMT) G751 1508 - Maxim MAX6625 and MAX6626 1509 - Microchip MCP980x 1510 - National Semiconductor LM75, LM75A 1511 - NXP's LM75A 1512 - ST Microelectronics STDS75 1513 - ST Microelectronics STLM75 1514 - TelCom (now Microchip) TCN75 1515 - Texas Instruments TMP100, TMP101, TMP105, TMP112, TMP75, 1516 TMP175, TMP275 1517 1518 This driver supports driver model based binding through board 1519 specific I2C device tables. 1520 1521 It also supports the "legacy" style of driver binding. To use 1522 that with some chips which don't replicate LM75 quirks exactly, 1523 you may need the "force" module parameter. 1524 1525 This driver can also be built as a module. If so, the module 1526 will be called lm75. 1527 1528config SENSORS_LM77 1529 tristate "National Semiconductor LM77" 1530 depends on I2C 1531 help 1532 If you say yes here you get support for National Semiconductor LM77 1533 sensor chips. 1534 1535 This driver can also be built as a module. If so, the module 1536 will be called lm77. 1537 1538config SENSORS_LM78 1539 tristate "National Semiconductor LM78 and compatibles" 1540 depends on I2C 1541 select HWMON_VID 1542 help 1543 If you say yes here you get support for National Semiconductor LM78, 1544 LM78-J and LM79. 1545 1546 This driver can also be built as a module. If so, the module 1547 will be called lm78. 1548 1549config SENSORS_LM80 1550 tristate "National Semiconductor LM80 and LM96080" 1551 depends on I2C 1552 help 1553 If you say yes here you get support for National Semiconductor 1554 LM80 and LM96080 sensor chips. 1555 1556 This driver can also be built as a module. If so, the module 1557 will be called lm80. 1558 1559config SENSORS_LM83 1560 tristate "National Semiconductor LM83 and compatibles" 1561 depends on I2C 1562 select REGMAP 1563 help 1564 If you say yes here you get support for National Semiconductor 1565 LM82 and LM83 sensor chips. 1566 1567 This driver can also be built as a module. If so, the module 1568 will be called lm83. 1569 1570config SENSORS_LM85 1571 tristate "National Semiconductor LM85 and compatibles" 1572 depends on I2C 1573 select HWMON_VID 1574 help 1575 If you say yes here you get support for National Semiconductor LM85 1576 sensor chips and clones: ADM1027, ADT7463, ADT7468, EMC6D100, 1577 EMC6D101, EMC6D102, and EMC6D103. 1578 1579 This driver can also be built as a module. If so, the module 1580 will be called lm85. 1581 1582config SENSORS_LM87 1583 tristate "National Semiconductor LM87 and compatibles" 1584 depends on I2C 1585 select HWMON_VID 1586 help 1587 If you say yes here you get support for National Semiconductor LM87 1588 and Analog Devices ADM1024 sensor chips. 1589 1590 This driver can also be built as a module. If so, the module 1591 will be called lm87. 1592 1593config SENSORS_LM90 1594 tristate "National Semiconductor LM90 and compatibles" 1595 depends on I2C 1596 help 1597 If you say yes here you get support for National Semiconductor LM84, 1598 LM90, LM86, LM89 and LM99, Analog Devices ADM1020, ADM2021, ADM1021A, 1599 ADM1023, ADM1032, ADT7461, ADT7461A, ADT7481, ADT7482, and ADT7483A, 1600 Maxim MAX1617, MAX6642, MAX6646, MAX6647, MAX6648, MAX6649, MAX6654, 1601 MAX6657, MAX6658, MAX6659, MAX6680, MAX6681, MAX6692, MAX6695, 1602 MAX6696, 1603 ON Semiconductor NCT1008, NCT210, NCT72, NCT214, NCT218, 1604 Winbond/Nuvoton W83L771W/G/AWG/ASG, NCT7716, NCT7717 and NCT7718, 1605 Philips NE1618, SA56004, GMT G781, Texas Instruments TMP451 and TMP461 1606 sensor chips. 1607 1608 This driver can also be built as a module. If so, the module 1609 will be called lm90. 1610 1611config SENSORS_LM92 1612 tristate "National Semiconductor LM92 and compatibles" 1613 depends on I2C 1614 select REGMAP_I2C 1615 help 1616 If you say yes here you get support for National Semiconductor LM92 1617 and LM76 as well as Maxim MAX6633/6634/6635 sensor chips. 1618 1619 This driver can also be built as a module. If so, the module 1620 will be called lm92. 1621 1622config SENSORS_LM93 1623 tristate "National Semiconductor LM93 and compatibles" 1624 depends on I2C 1625 select HWMON_VID 1626 help 1627 If you say yes here you get support for National Semiconductor LM93, 1628 LM94, and compatible sensor chips. 1629 1630 This driver can also be built as a module. If so, the module 1631 will be called lm93. 1632 1633config SENSORS_LM95234 1634 tristate "National Semiconductor LM95234 and compatibles" 1635 depends on I2C 1636 select REGMAP_I2C 1637 help 1638 If you say yes here you get support for the LM95233 and LM95234 1639 temperature sensor chips. 1640 1641 This driver can also be built as a module. If so, the module 1642 will be called lm95234. 1643 1644config SENSORS_LM95241 1645 tristate "National Semiconductor LM95241 and compatibles" 1646 depends on I2C 1647 help 1648 If you say yes here you get support for LM95231 and LM95241 sensor 1649 chips. 1650 1651 This driver can also be built as a module. If so, the module 1652 will be called lm95241. 1653 1654config SENSORS_LM95245 1655 tristate "National Semiconductor LM95245 and compatibles" 1656 depends on I2C 1657 select REGMAP_I2C 1658 help 1659 If you say yes here you get support for LM95235 and LM95245 1660 temperature sensor chips. 1661 1662 This driver can also be built as a module. If so, the module 1663 will be called lm95245. 1664 1665config SENSORS_PC87360 1666 tristate "National Semiconductor PC87360 family" 1667 depends on HAS_IOPORT 1668 depends on !PPC 1669 select HWMON_VID 1670 help 1671 If you say yes here you get access to the hardware monitoring 1672 functions of the National Semiconductor PC8736x Super-I/O chips. 1673 The PC87360, PC87363 and PC87364 only have fan monitoring and 1674 control. The PC87365 and PC87366 additionally have voltage and 1675 temperature monitoring. 1676 1677 This driver can also be built as a module. If so, the module 1678 will be called pc87360. 1679 1680config SENSORS_PC87427 1681 tristate "National Semiconductor PC87427" 1682 depends on HAS_IOPORT 1683 depends on !PPC 1684 help 1685 If you say yes here you get access to the hardware monitoring 1686 functions of the National Semiconductor PC87427 Super-I/O chip. 1687 The chip has two distinct logical devices, one for fan speed 1688 monitoring and control, and one for voltage and temperature 1689 monitoring. Fan speed monitoring and control are supported, as 1690 well as temperature monitoring. Voltages aren't supported yet. 1691 1692 This driver can also be built as a module. If so, the module 1693 will be called pc87427. 1694 1695config SENSORS_NTC_THERMISTOR 1696 tristate "NTC thermistor support" 1697 depends on IIO 1698 depends on THERMAL || !THERMAL_OF 1699 help 1700 This driver supports NTC thermistors sensor reading and its 1701 interpretation. The driver can also monitor the temperature and 1702 send notifications about the temperature. 1703 1704 Currently, this driver supports 1705 NCP15WB473, NCP18WB473, NCP21WB473, NCP03WB473, NCP15WL333, 1706 NCP03WF104 and NCP15XH103 from Murata and B57330V2103 and 1707 B57891S0103 from EPCOS. 1708 1709 This driver can also be built as a module. If so, the module 1710 will be called ntc_thermistor. 1711 1712config SENSORS_NCT6683 1713 tristate "Nuvoton NCT6683D" 1714 depends on HAS_IOPORT 1715 depends on !PPC 1716 help 1717 If you say yes here you get support for the hardware monitoring 1718 functionality of the Nuvoton NCT6683D eSIO chip. 1719 1720 This driver can also be built as a module. If so, the module 1721 will be called nct6683. 1722 1723config SENSORS_NCT6694 1724 tristate "Nuvoton NCT6694 Hardware Monitor support" 1725 depends on MFD_NCT6694 1726 help 1727 Say Y here to support Nuvoton NCT6694 hardware monitoring 1728 functionality. 1729 1730 This driver can also be built as a module. If so, the module 1731 will be called nct6694-hwmon. 1732 1733config SENSORS_NCT6775_CORE 1734 tristate 1735 select REGMAP 1736 help 1737 This module contains common code shared by the platform and 1738 i2c versions of the nct6775 driver; it is not useful on its 1739 own. 1740 1741 If built as a module, the module will be called 1742 nct6775-core. 1743 1744config SENSORS_NCT6775 1745 tristate "Platform driver for Nuvoton NCT6775F and compatibles" 1746 depends on HAS_IOPORT 1747 depends on !PPC 1748 depends on ACPI || ACPI=n 1749 select HWMON_VID 1750 select SENSORS_NCT6775_CORE 1751 help 1752 If you say yes here you get support for the hardware monitoring 1753 functionality of the Nuvoton NCT6106D, NCT6775F, NCT6776F, NCT6779D, 1754 NCT6791D, NCT6792D, NCT6793D, NCT6795D, NCT6796D, and compatible 1755 Super-I/O chips. This driver replaces the w83627ehf driver for 1756 NCT6775F and NCT6776F. 1757 1758 This driver can also be built as a module. If so, the module 1759 will be called nct6775. 1760 1761config SENSORS_NCT6775_I2C 1762 tristate "I2C driver for Nuvoton NCT6775F and compatibles" 1763 depends on I2C 1764 select REGMAP_I2C 1765 select SENSORS_NCT6775_CORE 1766 help 1767 If you say yes here you get support for the hardware monitoring 1768 functionality of the Nuvoton NCT6106D, NCT6775F, NCT6776F, NCT6779D, 1769 NCT6791D, NCT6792D, NCT6793D, NCT6795D, NCT6796D, and compatible 1770 Super-I/O chips via their I2C interface. 1771 1772 If you're not building a kernel for a BMC, this is probably 1773 not the driver you want (see CONFIG_SENSORS_NCT6775). 1774 1775 This driver can also be built as a module. If so, the module 1776 will be called nct6775-i2c. 1777 1778config SENSORS_NCT7363 1779 tristate "Nuvoton NCT7363Y" 1780 depends on I2C 1781 select REGMAP_I2C 1782 help 1783 If you say yes here you get support for the Nuvoton NCT7363Y 1784 hardware monitoring chip. 1785 1786 This driver can also be built as a module. If so, the module 1787 will be called nct7363. 1788 1789config SENSORS_NCT7802 1790 tristate "Nuvoton NCT7802Y" 1791 depends on I2C 1792 select REGMAP_I2C 1793 help 1794 If you say yes here you get support for the Nuvoton NCT7802Y 1795 hardware monitoring chip. 1796 1797 This driver can also be built as a module. If so, the module 1798 will be called nct7802. 1799 1800config SENSORS_NCT7904 1801 tristate "Nuvoton NCT7904" 1802 depends on I2C && WATCHDOG 1803 select WATCHDOG_CORE 1804 help 1805 If you say yes here you get support for the Nuvoton NCT7904 1806 hardware monitoring chip, including manual fan speed control 1807 and support for the integrated watchdog. 1808 1809 This driver can also be built as a module. If so, the module 1810 will be called nct7904. 1811 1812config SENSORS_NPCM7XX 1813 tristate "Nuvoton NPCM750 and compatible PWM and Fan controllers" 1814 imply THERMAL 1815 help 1816 This driver provides support for Nuvoton NPCM750/730/715/705 PWM 1817 and Fan controllers. 1818 1819 This driver can also be built as a module. If so, the module 1820 will be called npcm750-pwm-fan. 1821 1822config SENSORS_NSA320 1823 tristate "ZyXEL NSA320 and compatible fan speed and temperature sensors" 1824 depends on GPIOLIB && OF 1825 depends on MACH_KIRKWOOD || COMPILE_TEST 1826 help 1827 If you say yes here you get support for hardware monitoring 1828 for the ZyXEL NSA320 Media Server and other compatible devices 1829 (probably the NSA325 and some NSA310 variants). 1830 1831 The sensor data is taken from a Holtek HT46R065 microcontroller 1832 connected to GPIO lines. 1833 1834 This driver can also be built as a module. If so, the module 1835 will be called nsa320-hwmon. 1836 1837config SENSORS_NZXT_KRAKEN2 1838 tristate "NZXT Kraken X42/X51/X62/X72 liquid coolers" 1839 depends on USB_HID 1840 help 1841 If you say yes here you get support for hardware monitoring for the 1842 NZXT Kraken X42/X52/X62/X72 all-in-one CPU liquid coolers. 1843 1844 This driver can also be built as a module. If so, the module 1845 will be called nzxt-kraken2. 1846 1847config SENSORS_NZXT_KRAKEN3 1848 tristate "NZXT Kraken X53/X63/X73, Z53/Z63/Z73 coolers" 1849 depends on USB_HID 1850 help 1851 If you say yes here you get support for hardware monitoring for the 1852 NZXT Kraken X53/X63/X73, Z53/Z63/Z73 all-in-one CPU liquid coolers. 1853 1854 This driver can also be built as a module. If so, the module 1855 will be called nzxt-kraken3. 1856 1857config SENSORS_NZXT_SMART2 1858 tristate "NZXT RGB & Fan Controller/Smart Device v2" 1859 depends on USB_HID 1860 help 1861 If you say yes here you get support for hardware monitoring for the 1862 NZXT RGB & Fan Controller/Smart Device v2. 1863 1864 This driver can also be built as a module. If so, the module 1865 will be called nzxt-smart2. 1866 1867source "drivers/hwmon/occ/Kconfig" 1868 1869config SENSORS_PCF8591 1870 tristate "Philips PCF8591 ADC/DAC" 1871 depends on I2C 1872 help 1873 If you say yes here you get support for Philips PCF8591 4-channel 1874 ADC, 1-channel DAC chips. 1875 1876 This driver can also be built as a module. If so, the module 1877 will be called pcf8591. 1878 1879 These devices are hard to detect and rarely found on mainstream 1880 hardware. If unsure, say N. 1881 1882source "drivers/hwmon/peci/Kconfig" 1883 1884source "drivers/hwmon/pmbus/Kconfig" 1885 1886config SENSORS_PT5161L 1887 tristate "Astera Labs PT5161L PCIe retimer hardware monitoring" 1888 depends on I2C 1889 help 1890 If you say yes here you get support for temperature monitoring 1891 on the Astera Labs PT5161L PCIe retimer. 1892 1893 This driver can also be built as a module. If so, the module 1894 will be called pt5161l. 1895 1896config SENSORS_PWM_FAN 1897 tristate "PWM fan" 1898 depends on PWM || COMPILE_TEST 1899 depends on THERMAL || THERMAL=n 1900 help 1901 If you say yes here you get support for fans connected to PWM lines. 1902 The driver uses the generic PWM interface, thus it will work on a 1903 variety of SoCs. 1904 1905 This driver can also be built as a module. If so, the module 1906 will be called pwm-fan. 1907 1908config SENSORS_QNAP_MCU_HWMON 1909 tristate "QNAP MCU hardware monitoring" 1910 depends on MFD_QNAP_MCU 1911 depends on THERMAL || THERMAL=n 1912 help 1913 Say yes here to enable support for fan and temperature sensor 1914 connected to a QNAP MCU, as found in a number of QNAP network 1915 attached storage devices. 1916 1917 This driver can also be built as a module. If so, the module 1918 will be called qnap-mcu-hwmon. 1919 1920config SENSORS_RASPBERRYPI_HWMON 1921 tristate "Raspberry Pi voltage monitor" 1922 depends on RASPBERRYPI_FIRMWARE || (COMPILE_TEST && !RASPBERRYPI_FIRMWARE) 1923 help 1924 If you say yes here you get support for voltage sensor on the 1925 Raspberry Pi. 1926 1927 This driver can also be built as a module. If so, the module 1928 will be called raspberrypi-hwmon. 1929 1930config SENSORS_SL28CPLD 1931 tristate "Kontron sl28cpld hardware monitoring driver" 1932 depends on MFD_SL28CPLD || COMPILE_TEST 1933 help 1934 If you say yes here you get support for the fan supervisor of the 1935 sl28cpld board management controller. 1936 1937 This driver can also be built as a module. If so, the module 1938 will be called sl28cpld-hwmon. 1939 1940config SENSORS_SBTSI 1941 tristate "Emulated SB-TSI temperature sensor" 1942 depends on I2C 1943 help 1944 If you say yes here you get support for emulated temperature 1945 sensors on AMD SoCs with SB-TSI interface connected to a BMC device. 1946 1947 This driver can also be built as a module. If so, the module will 1948 be called sbtsi_temp. 1949 1950config SENSORS_SHT15 1951 tristate "Sensiron humidity and temperature sensors. SHT15 and compat." 1952 depends on GPIOLIB || COMPILE_TEST 1953 select BITREVERSE 1954 help 1955 If you say yes here you get support for the Sensiron SHT10, SHT11, 1956 SHT15, SHT71, SHT75 humidity and temperature sensors. 1957 1958 This driver can also be built as a module. If so, the module 1959 will be called sht15. 1960 1961config SENSORS_SHT21 1962 tristate "Sensiron humidity and temperature sensors. SHT21 and compat." 1963 depends on I2C 1964 help 1965 If you say yes here you get support for the Sensiron SHT20, SHT21, 1966 SHT25 humidity and temperature sensors. 1967 1968 This driver can also be built as a module. If so, the module 1969 will be called sht21. 1970 1971config SENSORS_SHT3x 1972 tristate "Sensiron humidity and temperature sensors. SHT3x and compat." 1973 depends on I2C 1974 select CRC8 1975 help 1976 If you say yes here you get support for the Sensiron SHT30, SHT31 and 1977 SHT85 humidity and temperature sensors. 1978 1979 This driver can also be built as a module. If so, the module 1980 will be called sht3x. 1981 1982config SENSORS_SHT4x 1983 tristate "Sensiron humidity and temperature sensors. SHT4x and compat." 1984 depends on I2C 1985 select CRC8 1986 help 1987 If you say yes here you get support for the Sensiron SHT40, SHT41 and 1988 SHT45 humidity and temperature sensors. 1989 1990 This driver can also be built as a module. If so, the module 1991 will be called sht4x. 1992 1993config SENSORS_SHTC1 1994 tristate "Sensiron humidity and temperature sensors. SHTC1 and compat." 1995 depends on I2C 1996 help 1997 If you say yes here you get support for the Sensiron SHTC1, SHTW1, 1998 and SHTC3 humidity and temperature sensors. 1999 2000 This driver can also be built as a module. If so, the module 2001 will be called shtc1. 2002 2003config SENSORS_SIS5595 2004 tristate "Silicon Integrated Systems Corp. SiS5595" 2005 depends on PCI && HAS_IOPORT 2006 help 2007 If you say yes here you get support for the integrated sensors in 2008 SiS5595 South Bridges. 2009 2010 This driver can also be built as a module. If so, the module 2011 will be called sis5595. 2012 2013config SENSORS_SY7636A 2014 tristate "Silergy SY7636A" 2015 depends on MFD_SY7636A 2016 help 2017 If you say yes here you get support for the thermistor readout of 2018 the Silergy SY7636A PMIC. 2019 2020 This driver can also be built as a module. If so, the module 2021 will be called sy7636a-hwmon. 2022 2023config SENSORS_DME1737 2024 tristate "SMSC DME1737, SCH311x and compatibles" 2025 depends on HAS_IOPORT 2026 depends on I2C && !PPC 2027 select HWMON_VID 2028 help 2029 If you say yes here you get support for the hardware monitoring 2030 and fan control features of the SMSC DME1737, SCH311x, SCH5027, and 2031 Asus A8000 Super-I/O chips. 2032 2033 This driver can also be built as a module. If so, the module 2034 will be called dme1737. 2035 2036config SENSORS_EMC1403 2037 tristate "SMSC EMC1403/23 thermal sensor" 2038 depends on I2C 2039 select REGMAP_I2C 2040 help 2041 If you say yes here you get support for the SMSC EMC1403/23 2042 temperature monitoring chip. 2043 2044 Threshold values can be configured using sysfs. 2045 Data from the different diodes are accessible via sysfs. 2046 2047config SENSORS_EMC2103 2048 tristate "SMSC EMC2103" 2049 depends on I2C 2050 help 2051 If you say yes here you get support for the temperature 2052 and fan sensors of the SMSC EMC2103 chips. 2053 2054 This driver can also be built as a module. If so, the module 2055 will be called emc2103. 2056 2057config SENSORS_EMC2305 2058 tristate "Microchip EMC2305 and compatible EMC2301/2/3" 2059 depends on I2C 2060 imply THERMAL 2061 help 2062 If you say yes here you get support for the Microchip EMC2305 2063 fan controller chips. 2064 The Microchip EMC2305 is a fan controller for up to 5 fans. 2065 Fan rotation speeds are reported in RPM. 2066 2067 This driver can also be built as a module. If so, the module 2068 will be called emc2305. 2069 2070config SENSORS_EMC6W201 2071 tristate "SMSC EMC6W201" 2072 depends on I2C 2073 help 2074 If you say yes here you get support for the SMSC EMC6W201 2075 hardware monitoring chip. 2076 2077 This driver can also be built as a module. If so, the module 2078 will be called emc6w201. 2079 2080config SENSORS_SMSC47M1 2081 tristate "SMSC LPC47M10x and compatibles" 2082 depends on HAS_IOPORT 2083 depends on !PPC 2084 help 2085 If you say yes here you get support for the integrated fan 2086 monitoring and control capabilities of the SMSC LPC47B27x, 2087 LPC47M10x, LPC47M112, LPC47M13x, LPC47M14x, LPC47M15x, 2088 LPC47M192, LPC47M292 and LPC47M997 chips. 2089 2090 The temperature and voltage sensor features of the LPC47M15x, 2091 LPC47M192, LPC47M292 and LPC47M997 are supported by another 2092 driver, select also "SMSC LPC47M192 and compatibles" below for 2093 those. 2094 2095 This driver can also be built as a module. If so, the module 2096 will be called smsc47m1. 2097 2098config SENSORS_SMSC47M192 2099 tristate "SMSC LPC47M192 and compatibles" 2100 depends on I2C 2101 select HWMON_VID 2102 help 2103 If you say yes here you get support for the temperature and 2104 voltage sensors of the SMSC LPC47M192, LPC47M15x, LPC47M292 2105 and LPC47M997 chips. 2106 2107 The fan monitoring and control capabilities of these chips 2108 are supported by another driver, select 2109 "SMSC LPC47M10x and compatibles" above. You need both drivers 2110 if you want fan control and voltage/temperature sensor support. 2111 2112 This driver can also be built as a module. If so, the module 2113 will be called smsc47m192. 2114 2115config SENSORS_SMSC47B397 2116 tristate "SMSC LPC47B397-NC" 2117 depends on HAS_IOPORT 2118 depends on !PPC 2119 help 2120 If you say yes here you get support for the SMSC LPC47B397-NC 2121 sensor chip. 2122 2123 This driver can also be built as a module. If so, the module 2124 will be called smsc47b397. 2125 2126config SENSORS_SCH56XX_COMMON 2127 tristate 2128 select REGMAP 2129 2130config SENSORS_SCH5627 2131 tristate "SMSC SCH5627" 2132 depends on HAS_IOPORT 2133 depends on !PPC && WATCHDOG 2134 select SENSORS_SCH56XX_COMMON 2135 select WATCHDOG_CORE 2136 help 2137 If you say yes here you get support for the hardware monitoring 2138 features of the SMSC SCH5627 Super-I/O chip including support for 2139 the integrated watchdog. 2140 2141 This driver can also be built as a module. If so, the module 2142 will be called sch5627. 2143 2144config SENSORS_SCH5636 2145 tristate "SMSC SCH5636" 2146 depends on HAS_IOPORT 2147 depends on !PPC && WATCHDOG 2148 select SENSORS_SCH56XX_COMMON 2149 select WATCHDOG_CORE 2150 help 2151 SMSC SCH5636 Super I/O chips include an embedded microcontroller for 2152 hardware monitoring solutions, allowing motherboard manufacturers to 2153 create their own custom hwmon solution based upon the SCH5636. 2154 2155 Currently this driver only supports the Fujitsu Theseus SCH5636 based 2156 hwmon solution. Say yes here if you want support for the Fujitsu 2157 Theseus' hardware monitoring features including support for the 2158 integrated watchdog. 2159 2160 This driver can also be built as a module. If so, the module 2161 will be called sch5636. 2162 2163config SENSORS_STTS751 2164 tristate "ST Microelectronics STTS751" 2165 depends on I2C 2166 help 2167 If you say yes here you get support for STTS751 2168 temperature sensor chips. 2169 2170 This driver can also be built as a module. If so, the module 2171 will be called stts751. 2172 2173config SENSORS_SFCTEMP 2174 tristate "Starfive JH71x0 temperature sensor" 2175 depends on ARCH_STARFIVE || COMPILE_TEST 2176 help 2177 If you say yes here you get support for temperature sensor 2178 on the Starfive JH71x0 SoCs. 2179 2180 This driver can also be built as a module. If so, the module 2181 will be called sfctemp. 2182 2183config SENSORS_SG2042_MCU 2184 tristate "Sophgo onboard MCU support" 2185 depends on I2C 2186 depends on ARCH_SOPHGO || COMPILE_TEST 2187 help 2188 Support for onboard MCU of Sophgo SG2042 SoCs. This mcu provides 2189 power control and some basic information. 2190 2191 This driver can be built as a module. If so, the module 2192 will be called sg2042-mcu. 2193 2194config SENSORS_SURFACE_FAN 2195 tristate "Surface Fan Driver" 2196 depends on SURFACE_AGGREGATOR 2197 depends on SURFACE_AGGREGATOR_BUS 2198 help 2199 Driver that provides monitoring of the fan on Surface Pro devices that 2200 have a fan, like the Surface Pro 9. 2201 2202 This makes the fan's current speed accessible through the hwmon 2203 system. It does not provide control over the fan, the firmware is 2204 responsible for that, this driver merely provides monitoring. 2205 2206 Select M or Y here, if you want to be able to read the fan's speed. 2207 2208config SENSORS_SURFACE_TEMP 2209 tristate "Microsoft Surface Thermal Sensor Driver" 2210 depends on SURFACE_AGGREGATOR 2211 depends on SURFACE_AGGREGATOR_BUS 2212 help 2213 Driver for monitoring thermal sensors connected via the Surface 2214 Aggregator Module (embedded controller) on Microsoft Surface devices. 2215 2216 This driver can also be built as a module. If so, the module 2217 will be called surface_temp. 2218 2219config SENSORS_ADC128D818 2220 tristate "Texas Instruments ADC128D818" 2221 depends on I2C 2222 help 2223 If you say yes here you get support for the Texas Instruments 2224 ADC128D818 System Monitor with Temperature Sensor chip. 2225 2226 This driver can also be built as a module. If so, the module 2227 will be called adc128d818. 2228 2229config SENSORS_ADS7828 2230 tristate "Texas Instruments ADS7828 and compatibles" 2231 depends on I2C 2232 select REGMAP_I2C 2233 help 2234 If you say yes here you get support for Texas Instruments ADS7828 and 2235 ADS7830 8-channel A/D converters. ADS7828 resolution is 12-bit, while 2236 it is 8-bit on ADS7830. 2237 2238 This driver can also be built as a module. If so, the module 2239 will be called ads7828. 2240 2241config SENSORS_ADS7871 2242 tristate "Texas Instruments ADS7871 A/D converter" 2243 depends on SPI 2244 help 2245 If you say yes here you get support for TI ADS7871 & ADS7870 2246 2247 This driver can also be built as a module. If so, the module 2248 will be called ads7871. 2249 2250config SENSORS_AMC6821 2251 tristate "Texas Instruments AMC6821" 2252 depends on I2C 2253 select REGMAP_I2C 2254 help 2255 If you say yes here you get support for the Texas Instruments 2256 AMC6821 hardware monitoring chips. 2257 2258 This driver can also be built as a module. If so, the module 2259 will be called amc6821. 2260 2261config SENSORS_INA209 2262 tristate "TI / Burr Brown INA209" 2263 depends on I2C 2264 help 2265 If you say yes here you get support for the TI / Burr Brown INA209 2266 voltage / current / power monitor I2C interface. 2267 2268 This driver can also be built as a module. If so, the module will 2269 be called ina209. 2270 2271config SENSORS_INA2XX 2272 tristate "Texas Instruments INA219 and compatibles" 2273 depends on I2C 2274 select REGMAP_I2C 2275 help 2276 If you say yes here you get support for INA219, INA220, INA226, 2277 INA230, INA231, INA260, and SY24655 power monitor chips. 2278 2279 The INA2xx driver is configured for the default configuration of 2280 the part as described in the datasheet. 2281 Default value for Rshunt is 10 mOhms except for INA260 which has an 2282 internal 2 mOhm shunt resistor. 2283 This driver can also be built as a module. If so, the module 2284 will be called ina2xx. 2285 2286config SENSORS_INA238 2287 tristate "Texas Instruments INA238 and compatibles" 2288 depends on I2C 2289 select REGMAP_I2C 2290 help 2291 If you say yes here you get support for INA228, INA237, INA238, 2292 INA700, INA780, and SQ52206 power monitor chips. This driver supports 2293 voltage, current, power, energy, and temperature measurements as well 2294 as alarm configuration. 2295 2296 This driver can also be built as a module. If so, the module 2297 will be called ina238. 2298 2299config SENSORS_INA3221 2300 tristate "Texas Instruments INA3221 Triple Power Monitor" 2301 depends on I2C 2302 select REGMAP_I2C 2303 help 2304 If you say yes here you get support for the TI INA3221 Triple Power 2305 Monitor. 2306 2307 This driver can also be built as a module. If so, the module 2308 will be called ina3221. 2309 2310config SENSORS_SPD5118 2311 tristate "SPD5118 Compliant Temperature Sensors" 2312 depends on I2C 2313 select REGMAP_I2C 2314 help 2315 If you say yes here you get support for SPD5118 (JEDEC JESD300) 2316 compliant temperature sensors. Such sensors are found on DDR5 memory 2317 modules. 2318 2319 This driver can also be built as a module. If so, the module 2320 will be called spd5118. 2321 2322config SENSORS_SPD5118_DETECT 2323 bool "Enable detect function" 2324 depends on SENSORS_SPD5118 2325 default (!DMI || !X86) 2326 help 2327 If enabled, the driver auto-detects if a chip in the SPD address 2328 range is compliant to the SPD51888 standard and auto-instantiates 2329 if that is the case. If disabled, SPD5118 compliant devices have 2330 to be instantiated by other means. On X86 systems with DMI support 2331 this will typically be done from DMI DDR detection code in the 2332 I2C SMBus subsystem. Devicetree based systems will instantiate 2333 attached devices if the DIMMs are listed in the devicetree file. 2334 2335 Disabling the detect function will speed up boot time and reduce 2336 the risk of mis-detecting SPD5118 compliant devices. However, it 2337 may result in missed DIMMs under some circumstances. 2338 2339 If unsure, say Y. 2340 2341config SENSORS_TC74 2342 tristate "Microchip TC74" 2343 depends on I2C 2344 help 2345 If you say yes here you get support for Microchip TC74 single 2346 input temperature sensor chips. 2347 2348 This driver can also be built as a module. If so, the module 2349 will be called tc74. 2350 2351config SENSORS_THMC50 2352 tristate "Texas Instruments THMC50 / Analog Devices ADM1022" 2353 depends on I2C 2354 help 2355 If you say yes here you get support for Texas Instruments THMC50 2356 sensor chips and clones: the Analog Devices ADM1022. 2357 2358 This driver can also be built as a module. If so, the module 2359 will be called thmc50. 2360 2361config SENSORS_TMP102 2362 tristate "Texas Instruments TMP102" 2363 depends on I2C 2364 select REGMAP_I2C 2365 help 2366 If you say yes here you get support for Texas Instruments TMP102 2367 sensor chips. 2368 2369 This driver can also be built as a module. If so, the module 2370 will be called tmp102. 2371 2372config SENSORS_TMP103 2373 tristate "Texas Instruments TMP103" 2374 depends on I2C 2375 select REGMAP_I2C 2376 help 2377 If you say yes here you get support for Texas Instruments TMP103 2378 sensor chips. 2379 2380 This driver can also be built as a module. If so, the module 2381 will be called tmp103. 2382 2383config SENSORS_TMP108 2384 tristate "Texas Instruments TMP108" 2385 depends on I2C 2386 depends on I3C || !I3C 2387 select REGMAP_I2C 2388 select REGMAP_I3C if I3C 2389 help 2390 If you say yes here you get support for Texas Instruments TMP108 2391 sensor chips, NXP temperature sensors P3T1035, P3T1085 and P3T2030. 2392 2393 This driver can also be built as a module. If so, the module 2394 will be called tmp108. 2395 2396config SENSORS_TMP401 2397 tristate "Texas Instruments TMP401 and compatibles" 2398 depends on I2C 2399 select REGMAP 2400 help 2401 If you say yes here you get support for Texas Instruments TMP401, 2402 TMP411, TMP431, TMP432, and TMP435 temperature sensor chips. 2403 2404 This driver can also be built as a module. If so, the module 2405 will be called tmp401. 2406 2407config SENSORS_TMP421 2408 tristate "Texas Instruments TMP421 and compatible" 2409 depends on I2C 2410 help 2411 If you say yes here you get support for Texas Instruments TMP421, 2412 TMP422, TMP423, TMP441, and TMP442 temperature sensor chips. 2413 2414 This driver can also be built as a module. If so, the module 2415 will be called tmp421. 2416 2417config SENSORS_TMP464 2418 tristate "Texas Instruments TMP464 and compatible" 2419 depends on I2C 2420 select REGMAP_I2C 2421 help 2422 If you say yes here you get support for Texas Instruments TMP464 2423 and TMP468 temperature sensor chips. 2424 2425 This driver can also be built as a module. If so, the module 2426 will be called tmp464. 2427 2428config SENSORS_TMP513 2429 tristate "Texas Instruments TMP513 and compatibles" 2430 depends on I2C 2431 select REGMAP_I2C 2432 help 2433 If you say yes here you get support for Texas Instruments TMP512, 2434 and TMP513 temperature and power supply sensor chips. 2435 2436 This driver can also be built as a module. If so, the module 2437 will be called tmp513. 2438 2439config SENSORS_TSC1641 2440 tristate "ST Microelectronics TSC1641 Power Monitor" 2441 depends on I2C 2442 select REGMAP_I2C 2443 help 2444 If you say yes here you get support for TSC1641 power monitor chip. 2445 The TSC1641 driver is configured for the default configuration of 2446 the part except temperature is enabled by default. 2447 2448 This driver can also be built as a module. If so, the module 2449 will be called tsc1641. 2450 2451config SENSORS_VEXPRESS 2452 tristate "Versatile Express" 2453 depends on VEXPRESS_CONFIG 2454 help 2455 This driver provides support for hardware sensors available on 2456 the ARM Ltd's Versatile Express platform. It can provide wide 2457 range of information like temperature, power, energy. 2458 2459config SENSORS_VIA_CPUTEMP 2460 tristate "VIA CPU temperature sensor" 2461 depends on X86 2462 select HWMON_VID 2463 help 2464 If you say yes here you get support for the temperature 2465 sensor inside your CPU. Supported are all known variants of 2466 the VIA C7 and Nano. 2467 2468config SENSORS_VIA686A 2469 tristate "VIA686A" 2470 depends on PCI && HAS_IOPORT 2471 help 2472 If you say yes here you get support for the integrated sensors in 2473 Via 686A/B South Bridges. 2474 2475 This driver can also be built as a module. If so, the module 2476 will be called via686a. 2477 2478config SENSORS_VT1211 2479 tristate "VIA VT1211" 2480 depends on HAS_IOPORT 2481 depends on !PPC 2482 select HWMON_VID 2483 help 2484 If you say yes here then you get support for hardware monitoring 2485 features of the VIA VT1211 Super-I/O chip. 2486 2487 This driver can also be built as a module. If so, the module 2488 will be called vt1211. 2489 2490config SENSORS_VT8231 2491 tristate "VIA VT8231" 2492 depends on PCI && HAS_IOPORT 2493 select HWMON_VID 2494 help 2495 If you say yes here then you get support for the integrated sensors 2496 in the VIA VT8231 device. 2497 2498 This driver can also be built as a module. If so, the module 2499 will be called vt8231. 2500 2501config SENSORS_W83773G 2502 tristate "Nuvoton W83773G" 2503 depends on I2C 2504 select REGMAP_I2C 2505 help 2506 If you say yes here you get support for the Nuvoton W83773G hardware 2507 monitoring chip. 2508 2509 This driver can also be built as a module. If so, the module 2510 will be called w83773g. 2511 2512config SENSORS_W83781D 2513 tristate "Winbond W83781D, W83782D, W83783S, Asus AS99127F" 2514 depends on I2C 2515 select HWMON_VID 2516 help 2517 If you say yes here you get support for the Winbond W8378x series 2518 of sensor chips: the W83781D, W83782D and W83783S, and the similar 2519 Asus AS99127F. 2520 2521 This driver can also be built as a module. If so, the module 2522 will be called w83781d. 2523 2524config SENSORS_W83791D 2525 tristate "Winbond W83791D" 2526 depends on I2C 2527 select HWMON_VID 2528 help 2529 If you say yes here you get support for the Winbond W83791D chip. 2530 2531 This driver can also be built as a module. If so, the module 2532 will be called w83791d. 2533 2534config SENSORS_W83792D 2535 tristate "Winbond W83792D" 2536 depends on I2C 2537 help 2538 If you say yes here you get support for the Winbond W83792D chip. 2539 2540 This driver can also be built as a module. If so, the module 2541 will be called w83792d. 2542 2543config SENSORS_W83793 2544 tristate "Winbond W83793" 2545 depends on I2C 2546 select HWMON_VID 2547 help 2548 If you say yes here you get support for the Winbond W83793 2549 hardware monitoring chip, including support for the integrated 2550 watchdog. 2551 2552 This driver can also be built as a module. If so, the module 2553 will be called w83793. 2554 2555config SENSORS_W83795 2556 tristate "Winbond/Nuvoton W83795G/ADG" 2557 depends on I2C 2558 help 2559 If you say yes here you get support for the Winbond W83795G and 2560 W83795ADG hardware monitoring chip, including manual fan speed 2561 control. 2562 2563 This driver can also be built as a module. If so, the module 2564 will be called w83795. 2565 2566config SENSORS_W83795_FANCTRL 2567 bool "Include automatic fan control support" 2568 depends on SENSORS_W83795 2569 help 2570 If you say yes here, support for automatic fan speed control 2571 will be included in the driver. 2572 2573 Please also note that this option will create sysfs attribute 2574 files which may change in the future, so you shouldn't rely 2575 on them being stable. 2576 2577config SENSORS_W83L785TS 2578 tristate "Winbond W83L785TS-S" 2579 depends on I2C 2580 help 2581 If you say yes here you get support for the Winbond W83L785TS-S 2582 sensor chip, which is used on the Asus A7N8X, among other 2583 motherboards. 2584 2585 This driver can also be built as a module. If so, the module 2586 will be called w83l785ts. 2587 2588config SENSORS_W83L786NG 2589 tristate "Winbond W83L786NG, W83L786NR" 2590 depends on I2C 2591 help 2592 If you say yes here you get support for the Winbond W83L786NG 2593 and W83L786NR sensor chips. 2594 2595 This driver can also be built as a module. If so, the module 2596 will be called w83l786ng. 2597 2598config SENSORS_W83627HF 2599 tristate "Winbond W83627HF, W83627THF, W83637HF, W83687THF, W83697HF" 2600 depends on HAS_IOPORT 2601 depends on !PPC 2602 select HWMON_VID 2603 help 2604 If you say yes here you get support for the Winbond W836X7 series 2605 of sensor chips: the W83627HF, W83627THF, W83637HF, W83687THF and 2606 W83697HF. 2607 2608 This driver can also be built as a module. If so, the module 2609 will be called w83627hf. 2610 2611config SENSORS_W83627EHF 2612 tristate "Winbond W83627EHF/EHG/DHG/UHG, W83667HG" 2613 depends on HAS_IOPORT 2614 depends on !PPC 2615 select HWMON_VID 2616 help 2617 If you say yes here you get support for the hardware 2618 monitoring functionality of the Winbond W83627EHF Super-I/O chip. 2619 2620 This driver also supports the W83627EHG, which is the lead-free 2621 version of the W83627EHF, and the W83627DHG, which is a similar 2622 chip suited for specific Intel processors that use PECI such as 2623 the Core 2 Duo. And also the W83627UHG, which is a stripped down 2624 version of the W83627DHG (as far as hardware monitoring goes.) 2625 2626 This driver also supports Nuvoton W83667HG and W83667HG-B. 2627 2628 This driver can also be built as a module. If so, the module 2629 will be called w83627ehf. 2630 2631config SENSORS_WM831X 2632 tristate "WM831x PMICs" 2633 depends on MFD_WM831X 2634 help 2635 If you say yes here you get support for the hardware 2636 monitoring functionality of the Wolfson Microelectronics 2637 WM831x series of PMICs. 2638 2639 This driver can also be built as a module. If so, the module 2640 will be called wm831x-hwmon. 2641 2642config SENSORS_WM8350 2643 tristate "Wolfson Microelectronics WM835x" 2644 depends on MFD_WM8350 2645 help 2646 If you say yes here you get support for the hardware 2647 monitoring features of the WM835x series of PMICs. 2648 2649 This driver can also be built as a module. If so, the module 2650 will be called wm8350-hwmon. 2651 2652config SENSORS_ULTRA45 2653 tristate "Sun Ultra45 PIC16F747" 2654 depends on SPARC64 2655 help 2656 This driver provides support for the Ultra45 workstation environmental 2657 sensors. 2658 2659config SENSORS_XGENE 2660 tristate "APM X-Gene SoC hardware monitoring driver" 2661 depends on XGENE_SLIMPRO_MBOX || PCC 2662 help 2663 If you say yes here you get support for the temperature 2664 and power sensors for APM X-Gene SoC. 2665 2666config SENSORS_INTEL_M10_BMC_HWMON 2667 tristate "Intel MAX10 BMC Hardware Monitoring" 2668 depends on MFD_INTEL_M10_BMC_CORE 2669 help 2670 This driver provides support for the hardware monitoring functionality 2671 on Intel MAX10 BMC chip. 2672 2673 This BMC Chip is used on Intel FPGA PCIe Acceleration Cards (PAC). Its 2674 sensors monitor various telemetry data of different components on the 2675 card, e.g. board temperature, FPGA core temperature/voltage/current. 2676 2677if ACPI 2678 2679comment "ACPI drivers" 2680 2681config SENSORS_ACPI_POWER 2682 tristate "ACPI 4.0 power meter" 2683 help 2684 This driver exposes ACPI 4.0 power meters as hardware monitoring 2685 devices. Say Y (or M) if you have a computer with ACPI 4.0 firmware 2686 and a power meter. 2687 2688 To compile this driver as a module, choose M here: 2689 the module will be called acpi_power_meter. 2690 2691config SENSORS_ATK0110 2692 tristate "ASUS ATK0110" 2693 depends on X86 2694 help 2695 If you say yes here you get support for the ACPI hardware 2696 monitoring interface found in many ASUS motherboards. This 2697 driver will provide readings of fans, voltages and temperatures 2698 through the system firmware. 2699 2700 This driver can also be built as a module. If so, the module 2701 will be called asus_atk0110. 2702 2703config SENSORS_ASUS_WMI 2704 tristate "ASUS WMI X370/X470/B450/X399" 2705 depends on ACPI_WMI 2706 help 2707 If you say yes here you get support for the ACPI hardware monitoring 2708 interface found in X370/X470/B450/X399 ASUS motherboards. This driver 2709 will provide readings of fans, voltages and temperatures through the system 2710 firmware. 2711 2712 This driver can also be built as a module. If so, the module 2713 will be called asus_wmi_sensors. 2714 2715config SENSORS_ASUS_EC 2716 tristate "ASUS EC Sensors" 2717 depends on X86 2718 depends on ACPI_EC 2719 help 2720 If you say yes here you get support for the ACPI embedded controller 2721 hardware monitoring interface found in some ASUS motherboards. This is 2722 where such sensors as water flow and temperature, optional fans, and 2723 additional temperature sensors (T_Sensor, chipset temperatures) 2724 find themselves. 2725 2726 This driver can also be built as a module. If so, the module 2727 will be called asus_ec_sensors. 2728 2729config SENSORS_HP_WMI 2730 tristate "HP WMI Sensors" 2731 depends on ACPI_WMI 2732 help 2733 If you say yes here you get support for the ACPI hardware monitoring 2734 interface found in HP (and some HP Compaq) business-class computers. 2735 Available sensors vary between systems. Temperature and fan speed 2736 sensors are the most common. 2737 2738 This driver can also be built as a module. If so, the module 2739 will be called hp_wmi_sensors. 2740 2741endif # ACPI 2742 2743endif # HWMON 2744