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