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