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