1# SPDX-License-Identifier: GPL-2.0-only 2# 3# X86 Platform Specific Drivers 4# 5 6menuconfig X86_PLATFORM_DEVICES 7 bool "X86 Platform Specific Device Drivers" 8 default y 9 depends on X86 10 ---help--- 11 Say Y here to get to see options for device drivers for various 12 x86 platforms, including vendor-specific laptop extension drivers. 13 This option alone does not add any kernel code. 14 15 If you say N, all options in this submenu will be skipped and disabled. 16 17if X86_PLATFORM_DEVICES 18 19config ACPI_WMI 20 tristate "WMI" 21 depends on ACPI 22 help 23 This driver adds support for the ACPI-WMI (Windows Management 24 Instrumentation) mapper device (PNP0C14) found on some systems. 25 26 ACPI-WMI is a proprietary extension to ACPI to expose parts of the 27 ACPI firmware to userspace - this is done through various vendor 28 defined methods and data blocks in a PNP0C14 device, which are then 29 made available for userspace to call. 30 31 The implementation of this in Linux currently only exposes this to 32 other kernel space drivers. 33 34 This driver is a required dependency to build the firmware specific 35 drivers needed on many machines, including Acer and HP laptops. 36 37 It is safe to enable this driver even if your DSDT doesn't define 38 any ACPI-WMI devices. 39 40config WMI_BMOF 41 tristate "WMI embedded Binary MOF driver" 42 depends on ACPI_WMI 43 default ACPI_WMI 44 ---help--- 45 Say Y here if you want to be able to read a firmware-embedded 46 WMI Binary MOF data. Using this requires userspace tools and may be 47 rather tedious. 48 49 To compile this driver as a module, choose M here: the module will 50 be called wmi-bmof. 51 52config ALIENWARE_WMI 53 tristate "Alienware Special feature control" 54 depends on ACPI 55 depends on LEDS_CLASS 56 depends on NEW_LEDS 57 depends on ACPI_WMI 58 ---help--- 59 This is a driver for controlling Alienware BIOS driven 60 features. It exposes an interface for controlling the AlienFX 61 zones on Alienware machines that don't contain a dedicated AlienFX 62 USB MCU such as the X51 and X51-R2. 63 64config HUAWEI_WMI 65 tristate "Huawei WMI laptop extras driver" 66 depends on ACPI_BATTERY 67 depends on ACPI_WMI 68 depends on INPUT 69 select INPUT_SPARSEKMAP 70 select LEDS_CLASS 71 select LEDS_TRIGGERS 72 select LEDS_TRIGGER_AUDIO 73 select NEW_LEDS 74 help 75 This driver provides support for Huawei WMI hotkeys, battery charge 76 control, fn-lock, mic-mute LED, and other extra features. 77 78 To compile this driver as a module, choose M here: the module 79 will be called huawei-wmi. 80 81config INTEL_WMI_THUNDERBOLT 82 tristate "Intel WMI thunderbolt force power driver" 83 depends on ACPI_WMI 84 ---help--- 85 Say Y here if you want to be able to use the WMI interface on select 86 systems to force the power control of Intel Thunderbolt controllers. 87 This is useful for updating the firmware when devices are not plugged 88 into the controller. 89 90 To compile this driver as a module, choose M here: the module will 91 be called intel-wmi-thunderbolt. 92 93config MXM_WMI 94 tristate "WMI support for MXM Laptop Graphics" 95 depends on ACPI_WMI 96 ---help--- 97 MXM is a standard for laptop graphics cards, the WMI interface 98 is required for switchable nvidia graphics machines 99 100config PEAQ_WMI 101 tristate "PEAQ 2-in-1 WMI hotkey driver" 102 depends on ACPI_WMI 103 depends on INPUT 104 help 105 Say Y here if you want to support WMI-based hotkeys on PEAQ 2-in-1s. 106 107config XIAOMI_WMI 108 tristate "Xiaomi WMI key driver" 109 depends on ACPI_WMI 110 depends on INPUT 111 help 112 Say Y here if you want to support WMI-based keys on Xiaomi notebooks. 113 114 To compile this driver as a module, choose M here: the module will 115 be called xiaomi-wmi. 116 117config ACERHDF 118 tristate "Acer Aspire One temperature and fan driver" 119 depends on ACPI && THERMAL 120 select THERMAL_GOV_BANG_BANG 121 ---help--- 122 This is a driver for Acer Aspire One netbooks. It allows to access 123 the temperature sensor and to control the fan. 124 125 After loading this driver the BIOS is still in control of the fan. 126 To let the kernel handle the fan, do: 127 echo -n enabled > /sys/class/thermal/thermal_zoneN/mode 128 where N=0,1,2... depending on the number of thermal nodes and the 129 detection order of your particular system. The "type" parameter 130 in the same node directory will tell you if it is "acerhdf". 131 132 For more information about this driver see 133 <http://piie.net/files/acerhdf_README.txt> 134 135 If you have an Acer Aspire One netbook, say Y or M 136 here. 137 138config ACER_WIRELESS 139 tristate "Acer Wireless Radio Control Driver" 140 depends on ACPI 141 depends on INPUT 142 ---help--- 143 The Acer Wireless Radio Control handles the airplane mode hotkey 144 present on new Acer laptops. 145 146 Say Y or M here if you have an Acer notebook with an airplane mode 147 hotkey. 148 149 If you choose to compile this driver as a module the module will be 150 called acer-wireless. 151 152config ACER_WMI 153 tristate "Acer WMI Laptop Extras" 154 depends on ACPI 155 select LEDS_CLASS 156 select NEW_LEDS 157 depends on BACKLIGHT_CLASS_DEVICE 158 depends on SERIO_I8042 159 depends on INPUT 160 depends on RFKILL || RFKILL = n 161 depends on ACPI_WMI 162 select INPUT_SPARSEKMAP 163 # Acer WMI depends on ACPI_VIDEO when ACPI is enabled 164 select ACPI_VIDEO if ACPI 165 ---help--- 166 This is a driver for newer Acer (and Wistron) laptops. It adds 167 wireless radio and bluetooth control, and on some laptops, 168 exposes the mail LED and LCD backlight. 169 170 If you have an ACPI-WMI compatible Acer/ Wistron laptop, say Y or M 171 here. 172 173config APPLE_GMUX 174 tristate "Apple Gmux Driver" 175 depends on ACPI && PCI 176 depends on PNP 177 depends on BACKLIGHT_CLASS_DEVICE 178 depends on BACKLIGHT_APPLE=n || BACKLIGHT_APPLE 179 depends on ACPI_VIDEO=n || ACPI_VIDEO 180 ---help--- 181 This driver provides support for the gmux device found on many 182 Apple laptops, which controls the display mux for the hybrid 183 graphics as well as the backlight. Currently only backlight 184 control is supported by the driver. 185 186config ASUS_LAPTOP 187 tristate "Asus Laptop Extras" 188 depends on ACPI 189 select LEDS_CLASS 190 select NEW_LEDS 191 depends on BACKLIGHT_CLASS_DEVICE 192 depends on INPUT 193 depends on RFKILL || RFKILL = n 194 depends on ACPI_VIDEO || ACPI_VIDEO = n 195 select INPUT_SPARSEKMAP 196 ---help--- 197 This is a driver for Asus laptops, Lenovo SL and the Pegatron 198 Lucid tablet. It may also support some MEDION, JVC or VICTOR 199 laptops. It makes all the extra buttons generate standard 200 ACPI events and input events, and on the Lucid the built-in 201 accelerometer appears as an input device. It also adds 202 support for video output switching, LCD backlight control, 203 Bluetooth and Wlan control, and most importantly, allows you 204 to blink those fancy LEDs. 205 206 For more information see <http://acpi4asus.sf.net>. 207 208 If you have an ACPI-compatible ASUS laptop, say Y or M here. 209 210config ASUS_WIRELESS 211 tristate "Asus Wireless Radio Control Driver" 212 depends on ACPI 213 depends on INPUT 214 select NEW_LEDS 215 select LEDS_CLASS 216 ---help--- 217 The Asus Wireless Radio Control handles the airplane mode hotkey 218 present on some Asus laptops. 219 220 Say Y or M here if you have an ASUS notebook with an airplane mode 221 hotkey. 222 223 If you choose to compile this driver as a module the module will be 224 called asus-wireless. 225 226config ASUS_WMI 227 tristate "ASUS WMI Driver" 228 depends on ACPI_WMI 229 depends on ACPI_BATTERY 230 depends on INPUT 231 depends on HWMON 232 depends on BACKLIGHT_CLASS_DEVICE 233 depends on RFKILL || RFKILL = n 234 depends on HOTPLUG_PCI 235 depends on ACPI_VIDEO || ACPI_VIDEO = n 236 select INPUT_SPARSEKMAP 237 select LEDS_CLASS 238 select NEW_LEDS 239 ---help--- 240 Say Y here if you have a WMI aware Asus laptop (like Eee PCs or new 241 Asus Notebooks). 242 243 To compile this driver as a module, choose M here: the module will 244 be called asus-wmi. 245 246config ASUS_NB_WMI 247 tristate "Asus Notebook WMI Driver" 248 depends on ASUS_WMI 249 depends on SERIO_I8042 || SERIO_I8042 = n 250 ---help--- 251 This is a driver for newer Asus notebooks. It adds extra features 252 like wireless radio and bluetooth control, leds, hotkeys, backlight... 253 254 For more information, see 255 <file:Documentation/ABI/testing/sysfs-platform-asus-wmi> 256 257 If you have an ACPI-WMI compatible Asus Notebook, say Y or M 258 here. 259 260config EEEPC_LAPTOP 261 tristate "Eee PC Hotkey Driver" 262 depends on ACPI 263 depends on INPUT 264 depends on RFKILL || RFKILL = n 265 depends on ACPI_VIDEO || ACPI_VIDEO = n 266 depends on HOTPLUG_PCI 267 depends on BACKLIGHT_CLASS_DEVICE 268 select HWMON 269 select LEDS_CLASS 270 select NEW_LEDS 271 select INPUT_SPARSEKMAP 272 ---help--- 273 This driver supports the Fn-Fx keys on Eee PC laptops. 274 275 It also gives access to some extra laptop functionalities like 276 Bluetooth, backlight and allows powering on/off some other 277 devices. 278 279 If you have an Eee PC laptop, say Y or M here. If this driver 280 doesn't work on your Eee PC, try eeepc-wmi instead. 281 282config EEEPC_WMI 283 tristate "Eee PC WMI Driver" 284 depends on ASUS_WMI 285 ---help--- 286 This is a driver for newer Eee PC laptops. It adds extra features 287 like wireless radio and bluetooth control, leds, hotkeys, backlight... 288 289 For more information, see 290 <file:Documentation/ABI/testing/sysfs-platform-asus-wmi> 291 292 If you have an ACPI-WMI compatible Eee PC laptop (>= 1000), say Y or M 293 here. 294 295config DCDBAS 296 tristate "Dell Systems Management Base Driver" 297 depends on X86 298 help 299 The Dell Systems Management Base Driver provides a sysfs interface 300 for systems management software to perform System Management 301 Interrupts (SMIs) and Host Control Actions (system power cycle or 302 power off after OS shutdown) on certain Dell systems. 303 304 See <file:Documentation/driver-api/dcdbas.rst> for more details on the driver 305 and the Dell systems on which Dell systems management software makes 306 use of this driver. 307 308 Say Y or M here to enable the driver for use by Dell systems 309 management software such as Dell OpenManage. 310 311# 312# The DELL_SMBIOS driver depends on ACPI_WMI and/or DCDBAS if those 313# backends are selected. The "depends" line prevents a configuration 314# where DELL_SMBIOS=y while either of those dependencies =m. 315# 316config DELL_SMBIOS 317 tristate "Dell SMBIOS driver" 318 depends on DCDBAS || DCDBAS=n 319 depends on ACPI_WMI || ACPI_WMI=n 320 ---help--- 321 This provides support for the Dell SMBIOS calling interface. 322 If you have a Dell computer you should enable this option. 323 324 Be sure to select at least one backend for it to work properly. 325 326config DELL_SMBIOS_WMI 327 bool "Dell SMBIOS driver WMI backend" 328 default y 329 depends on ACPI_WMI 330 select DELL_WMI_DESCRIPTOR 331 depends on DELL_SMBIOS 332 ---help--- 333 This provides an implementation for the Dell SMBIOS calling interface 334 communicated over ACPI-WMI. 335 336 If you have a Dell computer from >2007 you should say Y here. 337 If you aren't sure and this module doesn't work for your computer 338 it just won't load. 339 340config DELL_SMBIOS_SMM 341 bool "Dell SMBIOS driver SMM backend" 342 default y 343 depends on DCDBAS 344 depends on DELL_SMBIOS 345 ---help--- 346 This provides an implementation for the Dell SMBIOS calling interface 347 communicated over SMI/SMM. 348 349 If you have a Dell computer from <=2017 you should say Y here. 350 If you aren't sure and this module doesn't work for your computer 351 it just won't load. 352 353config DELL_LAPTOP 354 tristate "Dell Laptop Extras" 355 depends on DMI 356 depends on BACKLIGHT_CLASS_DEVICE 357 depends on ACPI_VIDEO || ACPI_VIDEO = n 358 depends on RFKILL || RFKILL = n 359 depends on SERIO_I8042 360 depends on DELL_SMBIOS 361 select POWER_SUPPLY 362 select LEDS_CLASS 363 select NEW_LEDS 364 select LEDS_TRIGGERS 365 select LEDS_TRIGGER_AUDIO 366 ---help--- 367 This driver adds support for rfkill and backlight control to Dell 368 laptops (except for some models covered by the Compal driver). 369 370config DELL_RBTN 371 tristate "Dell Airplane Mode Switch driver" 372 depends on ACPI 373 depends on INPUT 374 depends on RFKILL 375 ---help--- 376 Say Y here if you want to support Dell Airplane Mode Switch ACPI 377 device on Dell laptops. Sometimes it has names: DELLABCE or DELRBTN. 378 This driver register rfkill device or input hotkey device depending 379 on hardware type (hw switch slider or keyboard toggle button). For 380 rfkill devices it receive HW switch events and set correct hard 381 rfkill state. 382 383 To compile this driver as a module, choose M here: the module will 384 be called dell-rbtn. 385 386config DELL_RBU 387 tristate "BIOS update support for DELL systems via sysfs" 388 depends on X86 389 select FW_LOADER 390 select FW_LOADER_USER_HELPER 391 help 392 Say m if you want to have the option of updating the BIOS for your 393 DELL system. Note you need a Dell OpenManage or Dell Update package (DUP) 394 supporting application to communicate with the BIOS regarding the new 395 image for the image update to take effect. 396 See <file:Documentation/admin-guide/dell_rbu.rst> for more details on the driver. 397 398config DELL_SMO8800 399 tristate "Dell Latitude freefall driver (ACPI SMO88XX)" 400 depends on ACPI 401 ---help--- 402 Say Y here if you want to support SMO88XX freefall devices 403 on Dell Latitude laptops. 404 405 To compile this driver as a module, choose M here: the module will 406 be called dell-smo8800. 407 408config DELL_WMI 409 tristate "Dell WMI notifications" 410 depends on ACPI_WMI 411 depends on DMI 412 depends on INPUT 413 depends on ACPI_VIDEO || ACPI_VIDEO = n 414 depends on DELL_SMBIOS 415 select DELL_WMI_DESCRIPTOR 416 select INPUT_SPARSEKMAP 417 ---help--- 418 Say Y here if you want to support WMI-based hotkeys on Dell laptops. 419 420 To compile this driver as a module, choose M here: the module will 421 be called dell-wmi. 422 423config DELL_WMI_DESCRIPTOR 424 tristate 425 depends on ACPI_WMI 426 427config DELL_WMI_AIO 428 tristate "WMI Hotkeys for Dell All-In-One series" 429 depends on ACPI_WMI 430 depends on INPUT 431 select INPUT_SPARSEKMAP 432 ---help--- 433 Say Y here if you want to support WMI-based hotkeys on Dell 434 All-In-One machines. 435 436 To compile this driver as a module, choose M here: the module will 437 be called dell-wmi-aio. 438 439config DELL_WMI_LED 440 tristate "External LED on Dell Business Netbooks" 441 depends on LEDS_CLASS 442 depends on ACPI_WMI 443 help 444 This adds support for the Latitude 2100 and similar 445 notebooks that have an external LED. 446 447config AMILO_RFKILL 448 tristate "Fujitsu-Siemens Amilo rfkill support" 449 depends on RFKILL 450 depends on SERIO_I8042 451 ---help--- 452 This is a driver for enabling wifi on some Fujitsu-Siemens Amilo 453 laptops. 454 455config FUJITSU_LAPTOP 456 tristate "Fujitsu Laptop Extras" 457 depends on ACPI 458 depends on INPUT 459 depends on BACKLIGHT_CLASS_DEVICE 460 depends on ACPI_VIDEO || ACPI_VIDEO = n 461 select INPUT_SPARSEKMAP 462 select LEDS_CLASS 463 ---help--- 464 This is a driver for laptops built by Fujitsu: 465 466 * P2xxx/P5xxx/S6xxx/S7xxx series Lifebooks 467 * Possibly other Fujitsu laptop models 468 * Tested with S6410 and S7020 469 470 It adds support for LCD brightness control and some hotkeys. 471 472 If you have a Fujitsu laptop, say Y or M here. 473 474config FUJITSU_TABLET 475 tristate "Fujitsu Tablet Extras" 476 depends on ACPI 477 depends on INPUT 478 ---help--- 479 This is a driver for tablets built by Fujitsu: 480 481 * Lifebook P1510/P1610/P1620/Txxxx 482 * Stylistic ST5xxx 483 * Possibly other Fujitsu tablet models 484 485 It adds support for the panel buttons, docking station detection, 486 tablet/notebook mode detection for convertible and 487 orientation detection for docked slates. 488 489 If you have a Fujitsu convertible or slate, say Y or M here. 490 491config GPD_POCKET_FAN 492 tristate "GPD Pocket Fan Controller support" 493 depends on ACPI 494 depends on THERMAL 495 ---help--- 496 Driver for the GPD Pocket vendor specific FAN02501 ACPI device 497 which controls the fan speed on the GPD Pocket. 498 499 Without this driver the fan on the Pocket will stay off independent 500 of the CPU temperature. Say Y or M if the kernel may be used on a 501 GPD pocket. 502 503config HP_ACCEL 504 tristate "HP laptop accelerometer" 505 depends on INPUT && ACPI 506 depends on SERIO_I8042 507 select SENSORS_LIS3LV02D 508 select NEW_LEDS 509 select LEDS_CLASS 510 help 511 This driver provides support for the "Mobile Data Protection System 3D" 512 or "3D DriveGuard" feature of HP laptops. On such systems the driver 513 should load automatically (via ACPI alias). 514 515 Support for a led indicating disk protection will be provided as 516 hp::hddprotect. For more information on the feature, refer to 517 Documentation/misc-devices/lis3lv02d.rst. 518 519 To compile this driver as a module, choose M here: the module will 520 be called hp_accel. 521 522config HP_WIRELESS 523 tristate "HP wireless button" 524 depends on ACPI 525 depends on INPUT 526 help 527 This driver provides supports for new HP wireless button for Windows 8. 528 On such systems the driver should load automatically (via ACPI alias). 529 530 To compile this driver as a module, choose M here: the module will 531 be called hp-wireless. 532 533config HP_WMI 534 tristate "HP WMI extras" 535 depends on ACPI_WMI 536 depends on INPUT 537 depends on RFKILL || RFKILL = n 538 select INPUT_SPARSEKMAP 539 help 540 Say Y here if you want to support WMI-based hotkeys on HP laptops and 541 to read data from WMI such as docking or ambient light sensor state. 542 543 To compile this driver as a module, choose M here: the module will 544 be called hp-wmi. 545 546config TC1100_WMI 547 tristate "HP Compaq TC1100 Tablet WMI Extras" 548 depends on !X86_64 549 depends on ACPI 550 depends on ACPI_WMI 551 ---help--- 552 This is a driver for the WMI extensions (wireless and bluetooth power 553 control) of the HP Compaq TC1100 tablet. 554 555config IBM_RTL 556 tristate "Device driver to enable PRTL support" 557 depends on PCI 558 ---help--- 559 Enable support for IBM Premium Real Time Mode (PRTM). 560 This module will allow you the enter and exit PRTM in the BIOS via 561 sysfs on platforms that support this feature. System in PRTM will 562 not receive CPU-generated SMIs for recoverable errors. Use of this 563 feature without proper support may void your hardware warranty. 564 565 If the proper BIOS support is found the driver will load and create 566 /sys/devices/system/ibm_rtl/. The "state" variable will indicate 567 whether or not the BIOS is in PRTM. 568 state = 0 (BIOS SMIs on) 569 state = 1 (BIOS SMIs off) 570 571config IDEAPAD_LAPTOP 572 tristate "Lenovo IdeaPad Laptop Extras" 573 depends on ACPI 574 depends on RFKILL && INPUT 575 depends on SERIO_I8042 576 depends on BACKLIGHT_CLASS_DEVICE 577 depends on ACPI_VIDEO || ACPI_VIDEO = n 578 depends on ACPI_WMI || ACPI_WMI = n 579 select INPUT_SPARSEKMAP 580 help 581 This is a driver for Lenovo IdeaPad netbooks contains drivers for 582 rfkill switch, hotkey, fan control and backlight control. 583 584config SENSORS_HDAPS 585 tristate "Thinkpad Hard Drive Active Protection System (hdaps)" 586 depends on INPUT 587 help 588 This driver provides support for the IBM Hard Drive Active Protection 589 System (hdaps), which provides an accelerometer and other misc. data. 590 ThinkPads starting with the R50, T41, and X40 are supported. The 591 accelerometer data is readable via sysfs. 592 593 This driver also provides an absolute input class device, allowing 594 the laptop to act as a pinball machine-esque joystick. 595 596 If your ThinkPad is not recognized by the driver, please update to latest 597 BIOS. This is especially the case for some R52 ThinkPads. 598 599 Say Y here if you have an applicable laptop and want to experience 600 the awesome power of hdaps. 601 602config THINKPAD_ACPI 603 tristate "ThinkPad ACPI Laptop Extras" 604 depends on ACPI 605 depends on ACPI_BATTERY 606 depends on INPUT 607 depends on RFKILL || RFKILL = n 608 depends on ACPI_VIDEO || ACPI_VIDEO = n 609 depends on BACKLIGHT_CLASS_DEVICE 610 select HWMON 611 select NVRAM 612 select NEW_LEDS 613 select LEDS_CLASS 614 select LEDS_TRIGGERS 615 select LEDS_TRIGGER_AUDIO 616 ---help--- 617 This is a driver for the IBM and Lenovo ThinkPad laptops. It adds 618 support for Fn-Fx key combinations, Bluetooth control, video 619 output switching, ThinkLight control, UltraBay eject and more. 620 For more information about this driver see 621 <file:Documentation/admin-guide/laptops/thinkpad-acpi.rst> and 622 <http://ibm-acpi.sf.net/> . 623 624 This driver was formerly known as ibm-acpi. 625 626 Extra functionality will be available if the rfkill (CONFIG_RFKILL) 627 and/or ALSA (CONFIG_SND) subsystems are available in the kernel. 628 Note that if you want ThinkPad-ACPI to be built-in instead of 629 modular, ALSA and rfkill will also have to be built-in. 630 631 If you have an IBM or Lenovo ThinkPad laptop, say Y or M here. 632 633config THINKPAD_ACPI_ALSA_SUPPORT 634 bool "Console audio control ALSA interface" 635 depends on THINKPAD_ACPI 636 depends on SND 637 depends on SND = y || THINKPAD_ACPI = SND 638 default y 639 ---help--- 640 Enables monitoring of the built-in console audio output control 641 (headphone and speakers), which is operated by the mute and (in 642 some ThinkPad models) volume hotkeys. 643 644 If this option is enabled, ThinkPad-ACPI will export an ALSA card 645 with a single read-only mixer control, which should be used for 646 on-screen-display feedback purposes by the Desktop Environment. 647 648 Optionally, the driver will also allow software control (the 649 ALSA mixer will be made read-write). Please refer to the driver 650 documentation for details. 651 652 All IBM models have both volume and mute control. Newer Lenovo 653 models only have mute control (the volume hotkeys are just normal 654 keys and volume control is done through the main HDA mixer). 655 656config THINKPAD_ACPI_DEBUGFACILITIES 657 bool "Maintainer debug facilities" 658 depends on THINKPAD_ACPI 659 ---help--- 660 Enables extra stuff in the thinkpad-acpi which is completely useless 661 for normal use. Read the driver source to find out what it does. 662 663 Say N here, unless you were told by a kernel maintainer to do 664 otherwise. 665 666config THINKPAD_ACPI_DEBUG 667 bool "Verbose debug mode" 668 depends on THINKPAD_ACPI 669 ---help--- 670 Enables extra debugging information, at the expense of a slightly 671 increase in driver size. 672 673 If you are not sure, say N here. 674 675config THINKPAD_ACPI_UNSAFE_LEDS 676 bool "Allow control of important LEDs (unsafe)" 677 depends on THINKPAD_ACPI 678 ---help--- 679 Overriding LED state on ThinkPads can mask important 680 firmware alerts (like critical battery condition), or misled 681 the user into damaging the hardware (undocking or ejecting 682 the bay while buses are still active), etc. 683 684 LED control on the ThinkPad is write-only (with very few 685 exceptions on very ancient models), which makes it 686 impossible to know beforehand if important information will 687 be lost when one changes LED state. 688 689 Users that know what they are doing can enable this option 690 and the driver will allow control of every LED, including 691 the ones on the dock stations. 692 693 Never enable this option on a distribution kernel. 694 695 Say N here, unless you are building a kernel for your own 696 use, and need to control the important firmware LEDs. 697 698config THINKPAD_ACPI_VIDEO 699 bool "Video output control support" 700 depends on THINKPAD_ACPI 701 default y 702 ---help--- 703 Allows the thinkpad_acpi driver to provide an interface to control 704 the various video output ports. 705 706 This feature often won't work well, depending on ThinkPad model, 707 display state, video output devices in use, whether there is a X 708 server running, phase of the moon, and the current mood of 709 Schroedinger's cat. If you can use X.org's RandR to control 710 your ThinkPad's video output ports instead of this feature, 711 don't think twice: do it and say N here to save memory and avoid 712 bad interactions with X.org. 713 714 NOTE: access to this feature is limited to processes with the 715 CAP_SYS_ADMIN capability, to avoid local DoS issues in platforms 716 where it interacts badly with X.org. 717 718 If you are not sure, say Y here but do try to check if you could 719 be using X.org RandR instead. 720 721config THINKPAD_ACPI_HOTKEY_POLL 722 bool "Support NVRAM polling for hot keys" 723 depends on THINKPAD_ACPI 724 default y 725 ---help--- 726 Some thinkpad models benefit from NVRAM polling to detect a few of 727 the hot key press events. If you know your ThinkPad model does not 728 need to do NVRAM polling to support any of the hot keys you use, 729 unselecting this option will save about 1kB of memory. 730 731 ThinkPads T40 and newer, R52 and newer, and X31 and newer are 732 unlikely to need NVRAM polling in their latest BIOS versions. 733 734 NVRAM polling can detect at most the following keys: ThinkPad/Access 735 IBM, Zoom, Switch Display (fn+F7), ThinkLight, Volume up/down/mute, 736 Brightness up/down, Display Expand (fn+F8), Hibernate (fn+F12). 737 738 If you are not sure, say Y here. The driver enables polling only if 739 it is strictly necessary to do so. 740 741config INTEL_ATOMISP2_PM 742 tristate "Intel AtomISP2 dummy / power-management driver" 743 depends on PCI && IOSF_MBI && PM 744 depends on !INTEL_ATOMISP 745 help 746 Power-management driver for Intel's Image Signal Processor found on 747 Bay Trail and Cherry Trail devices. This dummy driver's sole purpose 748 is to turn the ISP off (put it in D3) to save power and to allow 749 entering of S0ix modes. 750 751 To compile this driver as a module, choose M here: the module 752 will be called intel_atomisp2_pm. 753 754config INTEL_CHT_INT33FE 755 tristate "Intel Cherry Trail ACPI INT33FE Driver" 756 depends on X86 && ACPI && I2C && REGULATOR 757 depends on CHARGER_BQ24190=y || (CHARGER_BQ24190=m && m) 758 depends on USB_ROLES_INTEL_XHCI=y || (USB_ROLES_INTEL_XHCI=m && m) 759 depends on TYPEC_MUX_PI3USB30532=y || (TYPEC_MUX_PI3USB30532=m && m) 760 ---help--- 761 This driver add support for the INT33FE ACPI device found on 762 some Intel Cherry Trail devices. 763 764 There are two kinds of INT33FE ACPI device possible: for hardware 765 with USB Type-C and Micro-B connectors. This driver supports both. 766 767 The INT33FE ACPI device has a CRS table with I2cSerialBusV2 768 resources for Fuel Gauge Controller and (in the Type-C variant) 769 FUSB302 USB Type-C Controller and PI3USB30532 USB switch. 770 This driver instantiates i2c-clients for these, so that standard 771 i2c drivers for these chips can bind to the them. 772 773 If you enable this driver it is advised to also select 774 CONFIG_BATTERY_BQ27XXX=m or CONFIG_BATTERY_BQ27XXX_I2C=m for Micro-B 775 device and CONFIG_TYPEC_FUSB302=m and CONFIG_BATTERY_MAX17042=m 776 for Type-C device. 777 778config INTEL_HID_EVENT 779 tristate "INTEL HID Event" 780 depends on ACPI 781 depends on INPUT 782 select INPUT_SPARSEKMAP 783 help 784 This driver provides support for the Intel HID Event hotkey interface. 785 Some laptops require this driver for hotkey support. 786 787 To compile this driver as a module, choose M here: the module will 788 be called intel_hid. 789 790config INTEL_INT0002_VGPIO 791 tristate "Intel ACPI INT0002 Virtual GPIO driver" 792 depends on GPIOLIB && ACPI 793 select GPIOLIB_IRQCHIP 794 ---help--- 795 Some peripherals on Bay Trail and Cherry Trail platforms signal a 796 Power Management Event (PME) to the Power Management Controller (PMC) 797 to wakeup the system. When this happens software needs to explicitly 798 clear the PME bus 0 status bit in the GPE0a_STS register to avoid an 799 IRQ storm on IRQ 9. 800 801 This is modelled in ACPI through the INT0002 ACPI device, which is 802 called a "Virtual GPIO controller" in ACPI because it defines the 803 event handler to call when the PME triggers through _AEI and _L02 804 methods as would be done for a real GPIO interrupt in ACPI. 805 806 To compile this driver as a module, choose M here: the module will 807 be called intel_int0002_vgpio. 808 809config INTEL_MENLOW 810 tristate "Thermal Management driver for Intel menlow platform" 811 depends on ACPI_THERMAL 812 select THERMAL 813 ---help--- 814 ACPI thermal management enhancement driver on 815 Intel Menlow platform. 816 817 If unsure, say N. 818 819config INTEL_OAKTRAIL 820 tristate "Intel Oaktrail Platform Extras" 821 depends on ACPI 822 depends on ACPI_VIDEO || ACPI_VIDEO = n 823 depends on RFKILL && BACKLIGHT_CLASS_DEVICE && ACPI 824 ---help--- 825 Intel Oaktrail platform need this driver to provide interfaces to 826 enable/disable the Camera, WiFi, BT etc. devices. If in doubt, say Y 827 here; it will only load on supported platforms. 828 829config INTEL_VBTN 830 tristate "INTEL VIRTUAL BUTTON" 831 depends on ACPI 832 depends on INPUT 833 select INPUT_SPARSEKMAP 834 help 835 This driver provides support for the Intel Virtual Button interface. 836 Some laptops require this driver for power button support. 837 838 To compile this driver as a module, choose M here: the module will 839 be called intel_vbtn. 840 841config SURFACE3_WMI 842 tristate "Surface 3 WMI Driver" 843 depends on ACPI_WMI 844 depends on DMI 845 depends on INPUT 846 depends on SPI 847 ---help--- 848 Say Y here if you have a Surface 3. 849 850 To compile this driver as a module, choose M here: the module will 851 be called surface3-wmi. 852 853config SURFACE_3_BUTTON 854 tristate "Power/home/volume buttons driver for Microsoft Surface 3 tablet" 855 depends on ACPI && KEYBOARD_GPIO && I2C 856 ---help--- 857 This driver handles the power/home/volume buttons on the Microsoft Surface 3 tablet. 858 859config SURFACE_3_POWER_OPREGION 860 tristate "Surface 3 battery platform operation region support" 861 depends on ACPI && I2C 862 help 863 This driver provides support for ACPI operation 864 region of the Surface 3 battery platform driver. 865 866config SURFACE_PRO3_BUTTON 867 tristate "Power/home/volume buttons driver for Microsoft Surface Pro 3/4 tablet" 868 depends on ACPI && INPUT 869 ---help--- 870 This driver handles the power/home/volume buttons on the Microsoft Surface Pro 3/4 tablet. 871 872config MSI_LAPTOP 873 tristate "MSI Laptop Extras" 874 depends on ACPI 875 depends on BACKLIGHT_CLASS_DEVICE 876 depends on ACPI_VIDEO || ACPI_VIDEO = n 877 depends on RFKILL 878 depends on INPUT && SERIO_I8042 879 select INPUT_SPARSEKMAP 880 ---help--- 881 This is a driver for laptops built by MSI (MICRO-STAR 882 INTERNATIONAL): 883 884 MSI MegaBook S270 (MS-1013) 885 Cytron/TCM/Medion/Tchibo MD96100/SAM2000 886 887 It adds support for Bluetooth, WLAN and LCD brightness control. 888 889 More information about this driver is available at 890 <http://0pointer.de/lennart/tchibo.html>. 891 892 If you have an MSI S270 laptop, say Y or M here. 893 894config MSI_WMI 895 tristate "MSI WMI extras" 896 depends on ACPI_WMI 897 depends on INPUT 898 depends on BACKLIGHT_CLASS_DEVICE 899 depends on ACPI_VIDEO || ACPI_VIDEO = n 900 select INPUT_SPARSEKMAP 901 help 902 Say Y here if you want to support WMI-based hotkeys on MSI laptops. 903 904 To compile this driver as a module, choose M here: the module will 905 be called msi-wmi. 906 907config XO15_EBOOK 908 tristate "OLPC XO-1.5 ebook switch" 909 depends on OLPC || COMPILE_TEST 910 depends on ACPI && INPUT 911 ---help--- 912 Support for the ebook switch on the OLPC XO-1.5 laptop. 913 914 This switch is triggered as the screen is rotated and folded down to 915 convert the device into ebook form. 916 917config XO1_RFKILL 918 tristate "OLPC XO-1 software RF kill switch" 919 depends on OLPC || COMPILE_TEST 920 depends on RFKILL 921 ---help--- 922 Support for enabling/disabling the WLAN interface on the OLPC XO-1 923 laptop. 924 925config PCENGINES_APU2 926 tristate "PC Engines APUv2/3 front button and LEDs driver" 927 depends on INPUT && INPUT_KEYBOARD && GPIOLIB 928 depends on LEDS_CLASS 929 select GPIO_AMD_FCH 930 select KEYBOARD_GPIO_POLLED 931 select LEDS_GPIO 932 help 933 This driver provides support for the front button and LEDs on 934 PC Engines APUv2/APUv3 board. 935 936 To compile this driver as a module, choose M here: the module 937 will be called pcengines-apuv2. 938 939config SAMSUNG_LAPTOP 940 tristate "Samsung Laptop driver" 941 depends on RFKILL || RFKILL = n 942 depends on ACPI_VIDEO || ACPI_VIDEO = n 943 depends on BACKLIGHT_CLASS_DEVICE 944 select LEDS_CLASS 945 select NEW_LEDS 946 ---help--- 947 This module implements a driver for a wide range of different 948 Samsung laptops. It offers control over the different 949 function keys, wireless LED, LCD backlight level. 950 951 It may also provide some sysfs files described in 952 <file:Documentation/ABI/testing/sysfs-driver-samsung-laptop> 953 954 To compile this driver as a module, choose M here: the module 955 will be called samsung-laptop. 956 957config SAMSUNG_Q10 958 tristate "Samsung Q10 Extras" 959 depends on ACPI 960 select BACKLIGHT_CLASS_DEVICE 961 ---help--- 962 This driver provides support for backlight control on Samsung Q10 963 and related laptops, including Dell Latitude X200. 964 965config ACPI_TOSHIBA 966 tristate "Toshiba Laptop Extras" 967 depends on ACPI 968 depends on ACPI_WMI 969 select LEDS_CLASS 970 select NEW_LEDS 971 depends on BACKLIGHT_CLASS_DEVICE 972 depends on INPUT 973 depends on SERIO_I8042 || SERIO_I8042 = n 974 depends on ACPI_VIDEO || ACPI_VIDEO = n 975 depends on RFKILL || RFKILL = n 976 depends on IIO 977 select INPUT_SPARSEKMAP 978 ---help--- 979 This driver adds support for access to certain system settings 980 on "legacy free" Toshiba laptops. These laptops can be recognized by 981 their lack of a BIOS setup menu and APM support. 982 983 On these machines, all system configuration is handled through the 984 ACPI. This driver is required for access to controls not covered 985 by the general ACPI drivers, such as LCD brightness, video output, 986 etc. 987 988 This driver differs from the non-ACPI Toshiba laptop driver (located 989 under "Processor type and features") in several aspects. 990 Configuration is accessed by reading and writing text files in the 991 /proc tree instead of by program interface to /dev. Furthermore, no 992 power management functions are exposed, as those are handled by the 993 general ACPI drivers. 994 995 More information about this driver is available at 996 <http://memebeam.org/toys/ToshibaAcpiDriver>. 997 998 If you have a legacy free Toshiba laptop (such as the Libretto L1 999 series), say Y. 1000 1001config TOSHIBA_BT_RFKILL 1002 tristate "Toshiba Bluetooth RFKill switch support" 1003 depends on ACPI 1004 depends on RFKILL || RFKILL = n 1005 ---help--- 1006 This driver adds support for Bluetooth events for the RFKill 1007 switch on modern Toshiba laptops with full ACPI support and 1008 an RFKill switch. 1009 1010 This driver handles RFKill events for the TOS6205 Bluetooth, 1011 and re-enables it when the switch is set back to the 'on' 1012 position. 1013 1014 If you have a modern Toshiba laptop with a Bluetooth and an 1015 RFKill switch (such as the Portege R500), say Y. 1016 1017config TOSHIBA_HAPS 1018 tristate "Toshiba HDD Active Protection Sensor" 1019 depends on ACPI 1020 ---help--- 1021 This driver adds support for the built-in accelerometer 1022 found on recent Toshiba laptops equipped with HID TOS620A 1023 device. 1024 1025 This driver receives ACPI notify events 0x80 when the sensor 1026 detects a sudden move or a harsh vibration, as well as an 1027 ACPI notify event 0x81 whenever the movement or vibration has 1028 been stabilized. 1029 1030 Also provides sysfs entries to get/set the desired protection 1031 level and resetting the HDD protection interface. 1032 1033 If you have a recent Toshiba laptop with a built-in accelerometer 1034 device, say Y. 1035 1036config TOSHIBA_WMI 1037 tristate "Toshiba WMI Hotkeys Driver (EXPERIMENTAL)" 1038 depends on ACPI_WMI 1039 depends on INPUT 1040 select INPUT_SPARSEKMAP 1041 ---help--- 1042 This driver adds hotkey monitoring support to some Toshiba models 1043 that manage the hotkeys via WMI events. 1044 1045 WARNING: This driver is incomplete as it lacks a proper keymap and the 1046 *notify function only prints the ACPI event type value. Be warned that 1047 you will need to provide some information if you have a Toshiba model 1048 with WMI event hotkeys and want to help with the development of this 1049 driver. 1050 1051 If you have a WMI-based hotkeys Toshiba laptop, say Y or M here. 1052 1053config ACPI_CMPC 1054 tristate "CMPC Laptop Extras" 1055 depends on ACPI && INPUT 1056 depends on RFKILL || RFKILL=n 1057 select BACKLIGHT_CLASS_DEVICE 1058 help 1059 Support for Intel Classmate PC ACPI devices, including some 1060 keys as input device, backlight device, tablet and accelerometer 1061 devices. 1062 1063config COMPAL_LAPTOP 1064 tristate "Compal (and others) Laptop Extras" 1065 depends on ACPI 1066 depends on BACKLIGHT_CLASS_DEVICE 1067 depends on ACPI_VIDEO || ACPI_VIDEO = n 1068 depends on RFKILL 1069 depends on HWMON 1070 depends on POWER_SUPPLY 1071 ---help--- 1072 This is a driver for laptops built by Compal, and some models by 1073 other brands (e.g. Dell, Toshiba). 1074 1075 It adds support for rfkill, Bluetooth, WLAN, LCD brightness, hwmon 1076 and battery charging level control. 1077 1078config LG_LAPTOP 1079 tristate "LG Laptop Extras" 1080 depends on ACPI 1081 depends on ACPI_WMI 1082 depends on INPUT 1083 select INPUT_SPARSEKMAP 1084 select LEDS_CLASS 1085 help 1086 This driver adds support for hotkeys as well as control of keyboard 1087 backlight, battery maximum charge level and various other ACPI 1088 features. 1089 1090 If you have an LG Gram laptop, say Y or M here. 1091 1092config PANASONIC_LAPTOP 1093 tristate "Panasonic Laptop Extras" 1094 depends on INPUT && ACPI 1095 depends on BACKLIGHT_CLASS_DEVICE 1096 select INPUT_SPARSEKMAP 1097 ---help--- 1098 This driver adds support for access to backlight control and hotkeys 1099 on Panasonic Let's Note laptops. 1100 1101 If you have a Panasonic Let's note laptop (such as the R1(N variant), 1102 R2, R3, R5, T2, W2 and Y2 series), say Y. 1103 1104config SONY_LAPTOP 1105 tristate "Sony Laptop Extras" 1106 depends on ACPI 1107 depends on ACPI_VIDEO || ACPI_VIDEO = n 1108 depends on BACKLIGHT_CLASS_DEVICE 1109 depends on INPUT 1110 depends on RFKILL 1111 ---help--- 1112 This mini-driver drives the SNC and SPIC devices present in the ACPI 1113 BIOS of the Sony Vaio laptops. 1114 1115 It gives access to some extra laptop functionalities like Bluetooth, 1116 screen brightness control, Fn keys and allows powering on/off some 1117 devices. 1118 1119 Read <file:Documentation/admin-guide/laptops/sony-laptop.rst> for more information. 1120 1121config SONYPI_COMPAT 1122 bool "Sonypi compatibility" 1123 depends on SONY_LAPTOP 1124 ---help--- 1125 Build the sonypi driver compatibility code into the sony-laptop driver. 1126 1127config SYSTEM76_ACPI 1128 tristate "System76 ACPI Driver" 1129 depends on ACPI 1130 select NEW_LEDS 1131 select LEDS_CLASS 1132 select LEDS_TRIGGERS 1133 help 1134 This is a driver for System76 laptops running open firmware. It adds 1135 support for Fn-Fx key combinations, keyboard backlight, and airplane mode 1136 LEDs. 1137 1138 If you have a System76 laptop running open firmware, say Y or M here. 1139 1140config TOPSTAR_LAPTOP 1141 tristate "Topstar Laptop Extras" 1142 depends on ACPI 1143 depends on INPUT 1144 select INPUT_SPARSEKMAP 1145 select LEDS_CLASS 1146 select NEW_LEDS 1147 ---help--- 1148 This driver adds support for hotkeys found on Topstar laptops. 1149 1150 If you have a Topstar laptop, say Y or M here. 1151 1152config I2C_MULTI_INSTANTIATE 1153 tristate "I2C multi instantiate pseudo device driver" 1154 depends on I2C && ACPI 1155 help 1156 Some ACPI-based systems list multiple i2c-devices in a single ACPI 1157 firmware-node. This driver will instantiate separate i2c-clients 1158 for each device in the firmware-node. 1159 1160 To compile this driver as a module, choose M here: the module 1161 will be called i2c-multi-instantiate. 1162 1163config MLX_PLATFORM 1164 tristate "Mellanox Technologies platform support" 1165 depends on I2C && REGMAP 1166 ---help--- 1167 This option enables system support for the Mellanox Technologies 1168 platform. The Mellanox systems provide data center networking 1169 solutions based on Virtual Protocol Interconnect (VPI) technology 1170 enable seamless connectivity to 56/100Gb/s InfiniBand or 10/40/56GbE 1171 connection. 1172 1173 If you have a Mellanox system, say Y or M here. 1174 1175config TOUCHSCREEN_DMI 1176 bool "DMI based touchscreen configuration info" 1177 depends on ACPI && DMI && I2C=y && TOUCHSCREEN_SILEAD 1178 select EFI_EMBEDDED_FIRMWARE if EFI 1179 ---help--- 1180 Certain ACPI based tablets with e.g. Silead or Chipone touchscreens 1181 do not have enough data in ACPI tables for the touchscreen driver to 1182 handle the touchscreen properly, as OEMs expect the data to be baked 1183 into the tablet model specific version of the driver shipped with the 1184 the OS-image for the device. This option supplies the missing info. 1185 Enable this for x86 tablets with Silead or Chipone touchscreens. 1186 1187config INTEL_IMR 1188 bool "Intel Isolated Memory Region support" 1189 depends on X86_INTEL_QUARK && IOSF_MBI 1190 ---help--- 1191 This option provides a means to manipulate Isolated Memory Regions. 1192 IMRs are a set of registers that define read and write access masks 1193 to prohibit certain system agents from accessing memory with 1 KiB 1194 granularity. 1195 1196 IMRs make it possible to control read/write access to an address 1197 by hardware agents inside the SoC. Read and write masks can be 1198 defined for: 1199 - eSRAM flush 1200 - Dirty CPU snoop (write only) 1201 - RMU access 1202 - PCI Virtual Channel 0/Virtual Channel 1 1203 - SMM mode 1204 - Non SMM mode 1205 1206 Quark contains a set of eight IMR registers and makes use of those 1207 registers during its bootup process. 1208 1209 If you are running on a Galileo/Quark say Y here. 1210 1211config INTEL_IPS 1212 tristate "Intel Intelligent Power Sharing" 1213 depends on ACPI && PCI 1214 ---help--- 1215 Intel Calpella platforms support dynamic power sharing between the 1216 CPU and GPU, maximizing performance in a given TDP. This driver, 1217 along with the CPU frequency and i915 drivers, provides that 1218 functionality. If in doubt, say Y here; it will only load on 1219 supported platforms. 1220 1221config INTEL_RST 1222 tristate "Intel Rapid Start Technology Driver" 1223 depends on ACPI 1224 ---help--- 1225 This driver provides support for modifying parameters on systems 1226 equipped with Intel's Rapid Start Technology. When put in an ACPI 1227 sleep state, these devices will wake after either a configured 1228 timeout or when the system battery reaches a critical state, 1229 automatically copying memory contents to disk. On resume, the 1230 firmware will copy the memory contents back to RAM and resume the OS 1231 as usual. 1232 1233config INTEL_SMARTCONNECT 1234 tristate "Intel Smart Connect disabling driver" 1235 depends on ACPI 1236 ---help--- 1237 Intel Smart Connect is a technology intended to permit devices to 1238 update state by resuming for a short period of time at regular 1239 intervals. If a user enables this functionality under Windows and 1240 then reboots into Linux, the system may remain configured to resume 1241 on suspend. In the absence of any userspace to support it, the system 1242 will then remain awake until something triggers another suspend. 1243 1244 This driver checks to determine whether the device has Intel Smart 1245 Connect enabled, and if so disables it. 1246 1247source "drivers/platform/x86/intel_speed_select_if/Kconfig" 1248 1249config INTEL_TURBO_MAX_3 1250 bool "Intel Turbo Boost Max Technology 3.0 enumeration driver" 1251 depends on X86_64 && SCHED_MC_PRIO 1252 ---help--- 1253 This driver reads maximum performance ratio of each CPU and set up 1254 the scheduler priority metrics. In this way scheduler can prefer 1255 CPU with higher performance to schedule tasks. 1256 This driver is only required when the system is not using Hardware 1257 P-States (HWP). In HWP mode, priority can be read from ACPI tables. 1258 1259config INTEL_UNCORE_FREQ_CONTROL 1260 tristate "Intel Uncore frequency control driver" 1261 depends on X86_64 1262 help 1263 This driver allows control of uncore frequency limits on 1264 supported server platforms. 1265 Uncore frequency controls RING/LLC (last-level cache) clocks. 1266 1267 To compile this driver as a module, choose M here: the module 1268 will be called intel-uncore-frequency. 1269 1270config INTEL_BXTWC_PMIC_TMU 1271 tristate "Intel BXT Whiskey Cove TMU Driver" 1272 depends on REGMAP 1273 depends on INTEL_SOC_PMIC_BXTWC && INTEL_PMC_IPC 1274 ---help--- 1275 Select this driver to use Intel BXT Whiskey Cove PMIC TMU feature. 1276 This driver enables the alarm wakeup functionality in the TMU unit 1277 of Whiskey Cove PMIC. 1278 1279config INTEL_CHTDC_TI_PWRBTN 1280 tristate "Intel Cherry Trail Dollar Cove TI power button driver" 1281 depends on INTEL_SOC_PMIC_CHTDC_TI 1282 depends on INPUT 1283 ---help--- 1284 This option adds a power button driver driver for Dollar Cove TI 1285 PMIC on Intel Cherry Trail devices. 1286 1287 To compile this driver as a module, choose M here: the module 1288 will be called intel_chtdc_ti_pwrbtn. 1289 1290config INTEL_MFLD_THERMAL 1291 tristate "Thermal driver for Intel Medfield platform" 1292 depends on MFD_INTEL_MSIC && THERMAL 1293 help 1294 Say Y here to enable thermal driver support for the Intel Medfield 1295 platform. 1296 1297config INTEL_MID_POWER_BUTTON 1298 tristate "power button driver for Intel MID platforms" 1299 depends on INTEL_SCU_IPC && INPUT 1300 help 1301 This driver handles the power button on the Intel MID platforms. 1302 1303 If unsure, say N. 1304 1305config INTEL_MRFLD_PWRBTN 1306 tristate "Intel Merrifield Basin Cove power button driver" 1307 depends on INTEL_SOC_PMIC_MRFLD 1308 depends on INPUT 1309 ---help--- 1310 This option adds a power button driver for Basin Cove PMIC 1311 on Intel Merrifield devices. 1312 1313 To compile this driver as a module, choose M here: the module 1314 will be called intel_mrfld_pwrbtn. 1315 1316config INTEL_PMC_CORE 1317 tristate "Intel PMC Core driver" 1318 depends on PCI 1319 ---help--- 1320 The Intel Platform Controller Hub for Intel Core SoCs provides access 1321 to Power Management Controller registers via a PCI interface. This 1322 driver can utilize debugging capabilities and supported features as 1323 exposed by the Power Management Controller. 1324 1325 Supported features: 1326 - SLP_S0_RESIDENCY counter 1327 - PCH IP Power Gating status 1328 - LTR Ignore 1329 - MPHY/PLL gating status (Sunrisepoint PCH only) 1330 1331config INTEL_PMC_IPC 1332 tristate "Intel PMC IPC Driver" 1333 depends on ACPI && PCI 1334 ---help--- 1335 This driver provides support for PMC control on some Intel platforms. 1336 The PMC is an ARC processor which defines IPC commands for communication 1337 with other entities in the CPU. 1338 1339config INTEL_PUNIT_IPC 1340 tristate "Intel P-Unit IPC Driver" 1341 ---help--- 1342 This driver provides support for Intel P-Unit Mailbox IPC mechanism, 1343 which is used to bridge the communications between kernel and P-Unit. 1344 1345config INTEL_SCU_IPC 1346 bool "Intel SCU IPC Support" 1347 depends on X86_INTEL_MID 1348 default y 1349 ---help--- 1350 IPC is used to bridge the communications between kernel and SCU on 1351 some embedded Intel x86 platforms. This is not needed for PC-type 1352 machines. 1353 1354config INTEL_SCU_IPC_UTIL 1355 tristate "Intel SCU IPC utility driver" 1356 depends on INTEL_SCU_IPC 1357 ---help--- 1358 The IPC Util driver provides an interface with the SCU enabling 1359 low level access for debug work and updating the firmware. Say 1360 N unless you will be doing this on an Intel MID platform. 1361 1362config INTEL_TELEMETRY 1363 tristate "Intel SoC Telemetry Driver" 1364 depends on INTEL_PMC_IPC && INTEL_PUNIT_IPC && X86_64 1365 ---help--- 1366 This driver provides interfaces to configure and use 1367 telemetry for INTEL SoC from APL onwards. It is also 1368 used to get various SoC events and parameters 1369 directly via debugfs files. Various tools may use 1370 this interface for SoC state monitoring. 1371 1372endif # X86_PLATFORM_DEVICES 1373 1374config PMC_ATOM 1375 def_bool y 1376 depends on PCI 1377 select COMMON_CLK 1378