Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0-only
0002 #
0003 # X86 Platform Specific Drivers
0004 #
0005 
0006 menuconfig X86_PLATFORM_DEVICES
0007         bool "X86 Platform Specific Device Drivers"
0008         default y
0009         depends on X86
0010         help
0011           Say Y here to get to see options for device drivers for various
0012           x86 platforms, including vendor-specific laptop extension drivers.
0013           This option alone does not add any kernel code.
0014 
0015           If you say N, all options in this submenu will be skipped and disabled.
0016 
0017 if X86_PLATFORM_DEVICES
0018 
0019 config ACPI_WMI
0020         tristate "WMI"
0021         depends on ACPI
0022         help
0023           This driver adds support for the ACPI-WMI (Windows Management
0024           Instrumentation) mapper device (PNP0C14) found on some systems.
0025 
0026           ACPI-WMI is a proprietary extension to ACPI to expose parts of the
0027           ACPI firmware to userspace - this is done through various vendor
0028           defined methods and data blocks in a PNP0C14 device, which are then
0029           made available for userspace to call.
0030 
0031           The implementation of this in Linux currently only exposes this to
0032           other kernel space drivers.
0033 
0034           This driver is a required dependency to build the firmware specific
0035           drivers needed on many machines, including Acer and HP laptops.
0036 
0037           It is safe to enable this driver even if your DSDT doesn't define
0038           any ACPI-WMI devices.
0039 
0040 config WMI_BMOF
0041         tristate "WMI embedded Binary MOF driver"
0042         depends on ACPI_WMI
0043         default ACPI_WMI
0044         help
0045           Say Y here if you want to be able to read a firmware-embedded
0046           WMI Binary MOF data. Using this requires userspace tools and may be
0047           rather tedious.
0048 
0049           To compile this driver as a module, choose M here: the module will
0050           be called wmi-bmof.
0051 
0052 config HUAWEI_WMI
0053         tristate "Huawei WMI laptop extras driver"
0054         depends on ACPI_BATTERY
0055         depends on ACPI_WMI
0056         depends on INPUT
0057         select INPUT_SPARSEKMAP
0058         select LEDS_CLASS
0059         select LEDS_TRIGGERS
0060         select LEDS_TRIGGER_AUDIO
0061         select NEW_LEDS
0062         help
0063           This driver provides support for Huawei WMI hotkeys, battery charge
0064           control, fn-lock, mic-mute LED, and other extra features.
0065 
0066           To compile this driver as a module, choose M here: the module
0067           will be called huawei-wmi.
0068 
0069 config UV_SYSFS
0070         tristate "Sysfs structure for UV systems"
0071         depends on X86_UV
0072         depends on SYSFS
0073         help
0074           This driver supports a sysfs tree describing information about
0075           UV systems at /sys/firmware/sgi_uv/.
0076 
0077           To compile this driver as a module, choose M here: the module will
0078           be called uv_sysfs.
0079 
0080 config MXM_WMI
0081        tristate "WMI support for MXM Laptop Graphics"
0082        depends on ACPI_WMI
0083         help
0084           MXM is a standard for laptop graphics cards, the WMI interface
0085           is required for switchable nvidia graphics machines
0086 
0087 config PEAQ_WMI
0088         tristate "PEAQ 2-in-1 WMI hotkey driver"
0089         depends on ACPI_WMI
0090         depends on INPUT
0091         help
0092          Say Y here if you want to support WMI-based hotkeys on PEAQ 2-in-1s.
0093 
0094 config NVIDIA_WMI_EC_BACKLIGHT
0095         tristate "EC Backlight Driver for Hybrid Graphics Notebook Systems"
0096         depends on ACPI_WMI
0097         depends on BACKLIGHT_CLASS_DEVICE
0098         help
0099           This driver provides a sysfs backlight interface for notebook systems
0100           which are equipped with NVIDIA hybrid graphics and drive LCD backlight
0101           levels through the Embedded Controller (EC).
0102 
0103           Say Y or M here if you want to control the backlight on a notebook
0104           system with an EC-driven backlight.
0105 
0106           If you choose to compile this driver as a module the module will be
0107           called nvidia-wmi-ec-backlight.
0108 
0109 config XIAOMI_WMI
0110         tristate "Xiaomi WMI key driver"
0111         depends on ACPI_WMI
0112         depends on INPUT
0113         help
0114           Say Y here if you want to support WMI-based keys on Xiaomi notebooks.
0115 
0116           To compile this driver as a module, choose M here: the module will
0117           be called xiaomi-wmi.
0118 
0119 config GIGABYTE_WMI
0120         tristate "Gigabyte WMI temperature driver"
0121         depends on ACPI_WMI
0122         depends on HWMON
0123         help
0124           Say Y here if you want to support WMI-based temperature reporting on
0125           Gigabyte mainboards.
0126 
0127           To compile this driver as a module, choose M here: the module will
0128           be called gigabyte-wmi.
0129 
0130 config YOGABOOK_WMI
0131         tristate "Lenovo Yoga Book tablet WMI key driver"
0132         depends on ACPI_WMI
0133         depends on INPUT
0134         select LEDS_CLASS
0135         select NEW_LEDS
0136         help
0137           Say Y here if you want to support the 'Pen' key and keyboard backlight
0138           control on the Lenovo Yoga Book tablets.
0139 
0140           To compile this driver as a module, choose M here: the module will
0141           be called lenovo-yogabook-wmi.
0142 
0143 config ACERHDF
0144         tristate "Acer Aspire One temperature and fan driver"
0145         depends on ACPI && THERMAL
0146         select THERMAL_GOV_BANG_BANG
0147         help
0148           This is a driver for Acer Aspire One netbooks. It allows to access
0149           the temperature sensor and to control the fan.
0150 
0151           After loading this driver the BIOS is still in control of the fan.
0152           To let the kernel handle the fan, do:
0153           echo -n enabled > /sys/class/thermal/thermal_zoneN/mode
0154           where N=0,1,2... depending on the number of thermal nodes and the
0155           detection order of your particular system.  The "type" parameter
0156           in the same node directory will tell you if it is "acerhdf".
0157 
0158           For more information about this driver see
0159           <https://piie.net/files/acerhdf_README.txt>
0160 
0161           If you have an Acer Aspire One netbook, say Y or M
0162           here.
0163 
0164 config ACER_WIRELESS
0165         tristate "Acer Wireless Radio Control Driver"
0166         depends on ACPI
0167         depends on INPUT
0168         help
0169           The Acer Wireless Radio Control handles the airplane mode hotkey
0170           present on new Acer laptops.
0171 
0172           Say Y or M here if you have an Acer notebook with an airplane mode
0173           hotkey.
0174 
0175           If you choose to compile this driver as a module the module will be
0176           called acer-wireless.
0177 
0178 config ACER_WMI
0179         tristate "Acer WMI Laptop Extras"
0180         depends on BACKLIGHT_CLASS_DEVICE
0181         depends on SERIO_I8042
0182         depends on INPUT
0183         depends on RFKILL || RFKILL = n
0184         depends on ACPI_WMI
0185         select ACPI_VIDEO
0186         select INPUT_SPARSEKMAP
0187         select LEDS_CLASS
0188         select NEW_LEDS
0189         help
0190           This is a driver for newer Acer (and Wistron) laptops. It adds
0191           wireless radio and bluetooth control, and on some laptops,
0192           exposes the mail LED and LCD backlight.
0193 
0194           If you have an ACPI-WMI compatible Acer/ Wistron laptop, say Y or M
0195           here.
0196 
0197 source "drivers/platform/x86/amd/Kconfig"
0198 
0199 config ADV_SWBUTTON
0200         tristate "Advantech ACPI Software Button Driver"
0201         depends on ACPI && INPUT
0202         help
0203           Say Y here to enable support for Advantech software defined
0204           button feature. More information can be found at
0205           <http://www.advantech.com.tw/products/>
0206 
0207           To compile this driver as a module, choose M here. The module will
0208           be called adv_swbutton.
0209 
0210 config APPLE_GMUX
0211         tristate "Apple Gmux Driver"
0212         depends on ACPI && PCI
0213         depends on PNP
0214         depends on BACKLIGHT_CLASS_DEVICE
0215         depends on BACKLIGHT_APPLE=n || BACKLIGHT_APPLE
0216         depends on ACPI_VIDEO=n || ACPI_VIDEO
0217         help
0218           This driver provides support for the gmux device found on many
0219           Apple laptops, which controls the display mux for the hybrid
0220           graphics as well as the backlight. Currently only backlight
0221           control is supported by the driver.
0222 
0223 config ASUS_LAPTOP
0224         tristate "Asus Laptop Extras"
0225         depends on ACPI
0226         select LEDS_CLASS
0227         select NEW_LEDS
0228         depends on BACKLIGHT_CLASS_DEVICE
0229         depends on INPUT
0230         depends on RFKILL || RFKILL = n
0231         depends on ACPI_VIDEO || ACPI_VIDEO = n
0232         select INPUT_SPARSEKMAP
0233         help
0234           This is a driver for Asus laptops, Lenovo SL and the Pegatron
0235           Lucid tablet. It may also support some MEDION, JVC or VICTOR
0236           laptops. It makes all the extra buttons generate standard
0237           ACPI events and input events, and on the Lucid the built-in
0238           accelerometer appears as an input device.  It also adds
0239           support for video output switching, LCD backlight control,
0240           Bluetooth and Wlan control, and most importantly, allows you
0241           to blink those fancy LEDs.
0242 
0243           For more information see <http://acpi4asus.sf.net>.
0244 
0245           If you have an ACPI-compatible ASUS laptop, say Y or M here.
0246 
0247 config ASUS_WIRELESS
0248         tristate "Asus Wireless Radio Control Driver"
0249         depends on ACPI
0250         depends on INPUT
0251         select NEW_LEDS
0252         select LEDS_CLASS
0253         help
0254           The Asus Wireless Radio Control handles the airplane mode hotkey
0255           present on some Asus laptops.
0256 
0257           Say Y or M here if you have an ASUS notebook with an airplane mode
0258           hotkey.
0259 
0260           If you choose to compile this driver as a module the module will be
0261           called asus-wireless.
0262 
0263 config ASUS_WMI
0264         tristate "ASUS WMI Driver"
0265         depends on ACPI_WMI
0266         depends on ACPI_BATTERY
0267         depends on INPUT
0268         depends on HWMON
0269         depends on BACKLIGHT_CLASS_DEVICE
0270         depends on RFKILL || RFKILL = n
0271         depends on HOTPLUG_PCI
0272         depends on ACPI_VIDEO || ACPI_VIDEO = n
0273         select INPUT_SPARSEKMAP
0274         select LEDS_CLASS
0275         select NEW_LEDS
0276         select LEDS_TRIGGERS
0277         select LEDS_TRIGGER_AUDIO
0278         select ACPI_PLATFORM_PROFILE
0279         help
0280           Say Y here if you have a WMI aware Asus laptop (like Eee PCs or new
0281           Asus Notebooks).
0282 
0283           To compile this driver as a module, choose M here: the module will
0284           be called asus-wmi.
0285 
0286 config ASUS_NB_WMI
0287         tristate "Asus Notebook WMI Driver"
0288         depends on ASUS_WMI
0289         depends on SERIO_I8042 || SERIO_I8042 = n
0290         help
0291           This is a driver for newer Asus notebooks. It adds extra features
0292           like wireless radio and bluetooth control, leds, hotkeys, backlight...
0293 
0294           For more information, see
0295           <file:Documentation/ABI/testing/sysfs-platform-asus-wmi>
0296 
0297           If you have an ACPI-WMI compatible Asus Notebook, say Y or M
0298           here.
0299 
0300 config ASUS_TF103C_DOCK
0301         tristate "Asus TF103C 2-in-1 keyboard dock"
0302         depends on ACPI
0303         depends on I2C
0304         depends on INPUT
0305         depends on HID
0306         depends on GPIOLIB
0307         help
0308           This is a driver for the keyboard, touchpad and USB port of the
0309           keyboard dock for the Asus TF103C 2-in-1 tablet.
0310 
0311           This keyboard dock has its own I2C attached embedded controller
0312           and the keyboard and touchpad are also connected over I2C,
0313           instead of using the usual USB connection. This means that the
0314           keyboard dock requires this special driver to function.
0315 
0316           If you have an Asus TF103C tablet say Y or M here, for a generic x86
0317           distro config say M here.
0318 
0319 config MERAKI_MX100
0320         tristate "Cisco Meraki MX100 Platform Driver"
0321         depends on GPIOLIB
0322         depends on GPIO_ICH
0323         depends on LEDS_CLASS
0324         select LEDS_GPIO
0325         help
0326           This driver provides support for the front button and LEDs on
0327           the Cisco Meraki MX100 (Tinkerbell) 1U appliance.
0328 
0329           To compile this driver as a module, choose M here: the module
0330           will be called meraki-mx100.
0331 
0332 config EEEPC_LAPTOP
0333         tristate "Eee PC Hotkey Driver"
0334         depends on ACPI
0335         depends on INPUT
0336         depends on RFKILL || RFKILL = n
0337         depends on ACPI_VIDEO || ACPI_VIDEO = n
0338         depends on HOTPLUG_PCI
0339         depends on BACKLIGHT_CLASS_DEVICE
0340         select HWMON
0341         select LEDS_CLASS
0342         select NEW_LEDS
0343         select INPUT_SPARSEKMAP
0344         help
0345           This driver supports the Fn-Fx keys on Eee PC laptops.
0346 
0347           It  also gives access to some extra laptop functionalities like
0348           Bluetooth, backlight and allows powering on/off some other
0349           devices.
0350 
0351           If you have an Eee PC laptop, say Y or M here. If this driver
0352           doesn't work on your Eee PC, try eeepc-wmi instead.
0353 
0354 config EEEPC_WMI
0355         tristate "Eee PC WMI Driver"
0356         depends on ASUS_WMI
0357         help
0358           This is a driver for newer Eee PC laptops. It adds extra features
0359           like wireless radio and bluetooth control, leds, hotkeys, backlight...
0360 
0361           For more information, see
0362           <file:Documentation/ABI/testing/sysfs-platform-asus-wmi>
0363 
0364           If you have an ACPI-WMI compatible Eee PC laptop (>= 1000), say Y or M
0365           here.
0366 
0367 source "drivers/platform/x86/dell/Kconfig"
0368 
0369 config AMILO_RFKILL
0370         tristate "Fujitsu-Siemens Amilo rfkill support"
0371         depends on RFKILL
0372         depends on SERIO_I8042
0373         help
0374           This is a driver for enabling wifi on some Fujitsu-Siemens Amilo
0375           laptops.
0376 
0377 config FUJITSU_LAPTOP
0378         tristate "Fujitsu Laptop Extras"
0379         depends on ACPI
0380         depends on INPUT
0381         depends on BACKLIGHT_CLASS_DEVICE
0382         depends on ACPI_VIDEO || ACPI_VIDEO = n
0383         select INPUT_SPARSEKMAP
0384         select NEW_LEDS
0385         select LEDS_CLASS
0386         help
0387           This is a driver for laptops built by Fujitsu:
0388 
0389             * P2xxx/P5xxx/S6xxx/S7xxx series Lifebooks
0390             * Possibly other Fujitsu laptop models
0391             * Tested with S6410 and S7020
0392 
0393           It adds support for LCD brightness control and some hotkeys.
0394 
0395           If you have a Fujitsu laptop, say Y or M here.
0396 
0397 config FUJITSU_TABLET
0398        tristate "Fujitsu Tablet Extras"
0399        depends on ACPI
0400        depends on INPUT
0401         help
0402          This is a driver for tablets built by Fujitsu:
0403 
0404            * Lifebook P1510/P1610/P1620/Txxxx
0405            * Stylistic ST5xxx
0406            * Possibly other Fujitsu tablet models
0407 
0408          It adds support for the panel buttons, docking station detection,
0409          tablet/notebook mode detection for convertible and
0410          orientation detection for docked slates.
0411 
0412          If you have a Fujitsu convertible or slate, say Y or M here.
0413 
0414 config GPD_POCKET_FAN
0415         tristate "GPD Pocket Fan Controller support"
0416         depends on ACPI
0417         depends on THERMAL
0418         help
0419           Driver for the GPD Pocket vendor specific FAN02501 ACPI device
0420           which controls the fan speed on the GPD Pocket.
0421 
0422           Without this driver the fan on the Pocket will stay off independent
0423           of the CPU temperature. Say Y or M if the kernel may be used on a
0424           GPD pocket.
0425 
0426 config HP_ACCEL
0427         tristate "HP laptop accelerometer"
0428         depends on INPUT && ACPI
0429         depends on SERIO_I8042
0430         select SENSORS_LIS3LV02D
0431         select NEW_LEDS
0432         select LEDS_CLASS
0433         help
0434           This driver provides support for the "Mobile Data Protection System 3D"
0435           or "3D DriveGuard" feature of HP laptops. On such systems the driver
0436           should load automatically (via ACPI alias).
0437 
0438           Support for a led indicating disk protection will be provided as
0439           hp::hddprotect. For more information on the feature, refer to
0440           Documentation/misc-devices/lis3lv02d.rst.
0441 
0442           To compile this driver as a module, choose M here: the module will
0443           be called hp_accel.
0444 
0445 config WIRELESS_HOTKEY
0446         tristate "Wireless hotkey button"
0447         depends on ACPI
0448         depends on INPUT
0449         help
0450          This driver provides supports for the wireless buttons found on some AMD,
0451          HP, & Xioami laptops.
0452          On such systems the driver should load automatically (via ACPI alias).
0453 
0454          To compile this driver as a module, choose M here: the module will
0455          be called wireless-hotkey.
0456 
0457 config HP_WMI
0458         tristate "HP WMI extras"
0459         depends on ACPI_WMI
0460         depends on INPUT
0461         depends on RFKILL || RFKILL = n
0462         select INPUT_SPARSEKMAP
0463         select ACPI_PLATFORM_PROFILE
0464         select HWMON
0465         help
0466          Say Y here if you want to support WMI-based hotkeys on HP laptops and
0467          to read data from WMI such as docking or ambient light sensor state.
0468 
0469          To compile this driver as a module, choose M here: the module will
0470          be called hp-wmi.
0471 
0472 config TC1100_WMI
0473         tristate "HP Compaq TC1100 Tablet WMI Extras"
0474         depends on !X86_64
0475         depends on ACPI
0476         depends on ACPI_WMI
0477         help
0478           This is a driver for the WMI extensions (wireless and bluetooth power
0479           control) of the HP Compaq TC1100 tablet.
0480 
0481 config IBM_RTL
0482         tristate "Device driver to enable PRTL support"
0483         depends on PCI
0484         help
0485          Enable support for IBM Premium Real Time Mode (PRTM).
0486          This module will allow you the enter and exit PRTM in the BIOS via
0487          sysfs on platforms that support this feature.  System in PRTM will
0488          not receive CPU-generated SMIs for recoverable errors.  Use of this
0489          feature without proper support may void your hardware warranty.
0490 
0491          If the proper BIOS support is found the driver will load and create
0492          /sys/devices/system/ibm_rtl/.  The "state" variable will indicate
0493          whether or not the BIOS is in PRTM.
0494          state = 0 (BIOS SMIs on)
0495          state = 1 (BIOS SMIs off)
0496 
0497 config IDEAPAD_LAPTOP
0498         tristate "Lenovo IdeaPad Laptop Extras"
0499         depends on ACPI
0500         depends on RFKILL && INPUT
0501         depends on SERIO_I8042
0502         depends on BACKLIGHT_CLASS_DEVICE
0503         depends on ACPI_VIDEO || ACPI_VIDEO = n
0504         depends on ACPI_WMI || ACPI_WMI = n
0505         select ACPI_PLATFORM_PROFILE
0506         select INPUT_SPARSEKMAP
0507         select NEW_LEDS
0508         select LEDS_CLASS
0509         help
0510           This is a driver for Lenovo IdeaPad netbooks contains drivers for
0511           rfkill switch, hotkey, fan control and backlight control.
0512 
0513 config SENSORS_HDAPS
0514         tristate "Thinkpad Hard Drive Active Protection System (hdaps)"
0515         depends on INPUT
0516         help
0517           This driver provides support for the IBM Hard Drive Active Protection
0518           System (hdaps), which provides an accelerometer and other misc. data.
0519           ThinkPads starting with the R50, T41, and X40 are supported.  The
0520           accelerometer data is readable via sysfs.
0521 
0522           This driver also provides an absolute input class device, allowing
0523           the laptop to act as a pinball machine-esque joystick.
0524 
0525           If your ThinkPad is not recognized by the driver, please update to latest
0526           BIOS. This is especially the case for some R52 ThinkPads.
0527 
0528           Say Y here if you have an applicable laptop and want to experience
0529           the awesome power of hdaps.
0530 
0531 config THINKPAD_ACPI
0532         tristate "ThinkPad ACPI Laptop Extras"
0533         depends on ACPI
0534         depends on ACPI_BATTERY
0535         depends on INPUT
0536         depends on RFKILL || RFKILL = n
0537         depends on ACPI_VIDEO || ACPI_VIDEO = n
0538         depends on BACKLIGHT_CLASS_DEVICE
0539         depends on I2C
0540         depends on DRM
0541         select ACPI_PLATFORM_PROFILE
0542         select DRM_PRIVACY_SCREEN
0543         select HWMON
0544         select NVRAM
0545         select NEW_LEDS
0546         select LEDS_CLASS
0547         select LEDS_TRIGGERS
0548         select LEDS_TRIGGER_AUDIO
0549         help
0550           This is a driver for the IBM and Lenovo ThinkPad laptops. It adds
0551           support for Fn-Fx key combinations, Bluetooth control, video
0552           output switching, ThinkLight control, UltraBay eject and more.
0553           For more information about this driver see
0554           <file:Documentation/admin-guide/laptops/thinkpad-acpi.rst> and
0555           <http://ibm-acpi.sf.net/> .
0556 
0557           This driver was formerly known as ibm-acpi.
0558 
0559           Extra functionality will be available if the rfkill (CONFIG_RFKILL)
0560           and/or ALSA (CONFIG_SND) subsystems are available in the kernel.
0561           Note that if you want ThinkPad-ACPI to be built-in instead of
0562           modular, ALSA and rfkill will also have to be built-in.
0563 
0564           If you have an IBM or Lenovo ThinkPad laptop, say Y or M here.
0565 
0566 config THINKPAD_ACPI_ALSA_SUPPORT
0567         bool "Console audio control ALSA interface"
0568         depends on THINKPAD_ACPI
0569         depends on SND
0570         depends on SND = y || THINKPAD_ACPI = SND
0571         default y
0572         help
0573           Enables monitoring of the built-in console audio output control
0574           (headphone and speakers), which is operated by the mute and (in
0575           some ThinkPad models) volume hotkeys.
0576 
0577           If this option is enabled, ThinkPad-ACPI will export an ALSA card
0578           with a single read-only mixer control, which should be used for
0579           on-screen-display feedback purposes by the Desktop Environment.
0580 
0581           Optionally, the driver will also allow software control (the
0582           ALSA mixer will be made read-write).  Please refer to the driver
0583           documentation for details.
0584 
0585           All IBM models have both volume and mute control.  Newer Lenovo
0586           models only have mute control (the volume hotkeys are just normal
0587           keys and volume control is done through the main HDA mixer).
0588 
0589 config THINKPAD_ACPI_DEBUGFACILITIES
0590         bool "Maintainer debug facilities"
0591         depends on THINKPAD_ACPI
0592         help
0593           Enables extra stuff in the thinkpad-acpi which is completely useless
0594           for normal use.  Read the driver source to find out what it does.
0595 
0596           Say N here, unless you were told by a kernel maintainer to do
0597           otherwise.
0598 
0599 config THINKPAD_ACPI_DEBUG
0600         bool "Verbose debug mode"
0601         depends on THINKPAD_ACPI
0602         help
0603           Enables extra debugging information, at the expense of a slightly
0604           increase in driver size.
0605 
0606           If you are not sure, say N here.
0607 
0608 config THINKPAD_ACPI_UNSAFE_LEDS
0609         bool "Allow control of important LEDs (unsafe)"
0610         depends on THINKPAD_ACPI
0611         help
0612           Overriding LED state on ThinkPads can mask important
0613           firmware alerts (like critical battery condition), or misled
0614           the user into damaging the hardware (undocking or ejecting
0615           the bay while buses are still active), etc.
0616 
0617           LED control on the ThinkPad is write-only (with very few
0618           exceptions on very ancient models), which makes it
0619           impossible to know beforehand if important information will
0620           be lost when one changes LED state.
0621 
0622           Users that know what they are doing can enable this option
0623           and the driver will allow control of every LED, including
0624           the ones on the dock stations.
0625 
0626           Never enable this option on a distribution kernel.
0627 
0628           Say N here, unless you are building a kernel for your own
0629           use, and need to control the important firmware LEDs.
0630 
0631 config THINKPAD_ACPI_VIDEO
0632         bool "Video output control support"
0633         depends on THINKPAD_ACPI
0634         default y
0635         help
0636           Allows the thinkpad_acpi driver to provide an interface to control
0637           the various video output ports.
0638 
0639           This feature often won't work well, depending on ThinkPad model,
0640           display state, video output devices in use, whether there is a X
0641           server running, phase of the moon, and the current mood of
0642           Schroedinger's cat.  If you can use X.org's RandR to control
0643           your ThinkPad's video output ports instead of this feature,
0644           don't think twice: do it and say N here to save memory and avoid
0645           bad interactions with X.org.
0646 
0647           NOTE: access to this feature is limited to processes with the
0648           CAP_SYS_ADMIN capability, to avoid local DoS issues in platforms
0649           where it interacts badly with X.org.
0650 
0651           If you are not sure, say Y here but do try to check if you could
0652           be using X.org RandR instead.
0653 
0654 config THINKPAD_ACPI_HOTKEY_POLL
0655         bool "Support NVRAM polling for hot keys"
0656         depends on THINKPAD_ACPI
0657         default y
0658         help
0659           Some thinkpad models benefit from NVRAM polling to detect a few of
0660           the hot key press events.  If you know your ThinkPad model does not
0661           need to do NVRAM polling to support any of the hot keys you use,
0662           unselecting this option will save about 1kB of memory.
0663 
0664           ThinkPads T40 and newer, R52 and newer, and X31 and newer are
0665           unlikely to need NVRAM polling in their latest BIOS versions.
0666 
0667           NVRAM polling can detect at most the following keys: ThinkPad/Access
0668           IBM, Zoom, Switch Display (fn+F7), ThinkLight, Volume up/down/mute,
0669           Brightness up/down, Display Expand (fn+F8), Hibernate (fn+F12).
0670 
0671           If you are not sure, say Y here.  The driver enables polling only if
0672           it is strictly necessary to do so.
0673 
0674 config THINKPAD_LMI
0675         tristate "Lenovo WMI-based systems management driver"
0676         depends on ACPI_WMI
0677         select FW_ATTR_CLASS
0678         help
0679           This driver allows changing BIOS settings on Lenovo machines whose
0680           BIOS support the WMI interface.
0681 
0682           To compile this driver as a module, choose M here: the module will
0683           be called think-lmi.
0684 
0685 source "drivers/platform/x86/intel/Kconfig"
0686 
0687 config MSI_LAPTOP
0688         tristate "MSI Laptop Extras"
0689         depends on ACPI
0690         depends on BACKLIGHT_CLASS_DEVICE
0691         depends on ACPI_VIDEO || ACPI_VIDEO = n
0692         depends on RFKILL
0693         depends on INPUT && SERIO_I8042
0694         select INPUT_SPARSEKMAP
0695         help
0696           This is a driver for laptops built by MSI (MICRO-STAR
0697           INTERNATIONAL):
0698 
0699           MSI MegaBook S270 (MS-1013)
0700           Cytron/TCM/Medion/Tchibo MD96100/SAM2000
0701 
0702           It adds support for Bluetooth, WLAN and LCD brightness control.
0703 
0704           More information about this driver is available at
0705           <http://0pointer.de/lennart/tchibo.html>.
0706 
0707           If you have an MSI S270 laptop, say Y or M here.
0708 
0709 config MSI_WMI
0710         tristate "MSI WMI extras"
0711         depends on ACPI_WMI
0712         depends on INPUT
0713         depends on BACKLIGHT_CLASS_DEVICE
0714         depends on ACPI_VIDEO || ACPI_VIDEO = n
0715         select INPUT_SPARSEKMAP
0716         help
0717          Say Y here if you want to support WMI-based hotkeys on MSI laptops.
0718 
0719          To compile this driver as a module, choose M here: the module will
0720          be called msi-wmi.
0721 
0722 config XO15_EBOOK
0723         tristate "OLPC XO-1.5 ebook switch"
0724         depends on OLPC || COMPILE_TEST
0725         depends on ACPI && INPUT
0726         help
0727           Support for the ebook switch on the OLPC XO-1.5 laptop.
0728 
0729           This switch is triggered as the screen is rotated and folded down to
0730           convert the device into ebook form.
0731 
0732 config XO1_RFKILL
0733         tristate "OLPC XO-1 software RF kill switch"
0734         depends on OLPC || COMPILE_TEST
0735         depends on RFKILL
0736         help
0737           Support for enabling/disabling the WLAN interface on the OLPC XO-1
0738           laptop.
0739 
0740 config PCENGINES_APU2
0741         tristate "PC Engines APUv2/3 front button and LEDs driver"
0742         depends on INPUT && INPUT_KEYBOARD && GPIOLIB
0743         depends on LEDS_CLASS
0744         select GPIO_AMD_FCH
0745         select KEYBOARD_GPIO_POLLED
0746         select LEDS_GPIO
0747         help
0748           This driver provides support for the front button and LEDs on
0749           PC Engines APUv2/APUv3 board.
0750 
0751           To compile this driver as a module, choose M here: the module
0752           will be called pcengines-apuv2.
0753 
0754 config BARCO_P50_GPIO
0755         tristate "Barco P50 GPIO driver for identify LED/button"
0756         depends on GPIOLIB
0757         help
0758           This driver provides access to the GPIOs for the identify button
0759           and led present on Barco P50 board.
0760 
0761           To compile this driver as a module, choose M here: the module
0762           will be called barco-p50-gpio.
0763 
0764 config SAMSUNG_LAPTOP
0765         tristate "Samsung Laptop driver"
0766         depends on RFKILL || RFKILL = n
0767         depends on ACPI_VIDEO || ACPI_VIDEO = n
0768         depends on BACKLIGHT_CLASS_DEVICE
0769         select LEDS_CLASS
0770         select NEW_LEDS
0771         help
0772           This module implements a driver for a wide range of different
0773           Samsung laptops.  It offers control over the different
0774           function keys, wireless LED, LCD backlight level.
0775 
0776           It may also provide some sysfs files described in
0777           <file:Documentation/ABI/testing/sysfs-driver-samsung-laptop>
0778 
0779           To compile this driver as a module, choose M here: the module
0780           will be called samsung-laptop.
0781 
0782 config SAMSUNG_Q10
0783         tristate "Samsung Q10 Extras"
0784         depends on ACPI
0785         select BACKLIGHT_CLASS_DEVICE
0786         help
0787           This driver provides support for backlight control on Samsung Q10
0788           and related laptops, including Dell Latitude X200.
0789 
0790 config ACPI_TOSHIBA
0791         tristate "Toshiba Laptop Extras"
0792         depends on ACPI
0793         depends on ACPI_WMI
0794         select LEDS_CLASS
0795         select NEW_LEDS
0796         depends on BACKLIGHT_CLASS_DEVICE
0797         depends on INPUT
0798         depends on SERIO_I8042 || SERIO_I8042 = n
0799         depends on ACPI_VIDEO || ACPI_VIDEO = n
0800         depends on RFKILL || RFKILL = n
0801         depends on IIO
0802         select INPUT_SPARSEKMAP
0803         help
0804           This driver adds support for access to certain system settings
0805           on "legacy free" Toshiba laptops.  These laptops can be recognized by
0806           their lack of a BIOS setup menu and APM support.
0807 
0808           On these machines, all system configuration is handled through the
0809           ACPI.  This driver is required for access to controls not covered
0810           by the general ACPI drivers, such as LCD brightness, video output,
0811           etc.
0812 
0813           This driver differs from the non-ACPI Toshiba laptop driver (located
0814           under "Processor type and features") in several aspects.
0815           Configuration is accessed by reading and writing text files in the
0816           /proc tree instead of by program interface to /dev.  Furthermore, no
0817           power management functions are exposed, as those are handled by the
0818           general ACPI drivers.
0819 
0820           More information about this driver is available at
0821           <http://memebeam.org/toys/ToshibaAcpiDriver>.
0822 
0823           If you have a legacy free Toshiba laptop (such as the Libretto L1
0824           series), say Y.
0825 
0826 config TOSHIBA_BT_RFKILL
0827         tristate "Toshiba Bluetooth RFKill switch support"
0828         depends on ACPI
0829         depends on RFKILL || RFKILL = n
0830         help
0831           This driver adds support for Bluetooth events for the RFKill
0832           switch on modern Toshiba laptops with full ACPI support and
0833           an RFKill switch.
0834 
0835           This driver handles RFKill events for the TOS6205 Bluetooth,
0836           and re-enables it when the switch is set back to the 'on'
0837           position.
0838 
0839           If you have a modern Toshiba laptop with a Bluetooth and an
0840           RFKill switch (such as the Portege R500), say Y.
0841 
0842 config TOSHIBA_HAPS
0843         tristate "Toshiba HDD Active Protection Sensor"
0844         depends on ACPI
0845         help
0846           This driver adds support for the built-in accelerometer
0847           found on recent Toshiba laptops equipped with HID TOS620A
0848           device.
0849 
0850           This driver receives ACPI notify events 0x80 when the sensor
0851           detects a sudden move or a harsh vibration, as well as an
0852           ACPI notify event 0x81 whenever the movement or vibration has
0853           been stabilized.
0854 
0855           Also provides sysfs entries to get/set the desired protection
0856           level and resetting the HDD protection interface.
0857 
0858           If you have a recent Toshiba laptop with a built-in accelerometer
0859           device, say Y.
0860 
0861 config TOSHIBA_WMI
0862         tristate "Toshiba WMI Hotkeys Driver (EXPERIMENTAL)"
0863         depends on ACPI_WMI
0864         depends on INPUT
0865         select INPUT_SPARSEKMAP
0866         help
0867           This driver adds hotkey monitoring support to some Toshiba models
0868           that manage the hotkeys via WMI events.
0869 
0870           WARNING: This driver is incomplete as it lacks a proper keymap and the
0871           *notify function only prints the ACPI event type value. Be warned that
0872           you will need to provide some information if you have a Toshiba model
0873           with WMI event hotkeys and want to help with the development of this
0874           driver.
0875 
0876           If you have a WMI-based hotkeys Toshiba laptop, say Y or M here.
0877 
0878 config ACPI_CMPC
0879         tristate "CMPC Laptop Extras"
0880         depends on ACPI && INPUT
0881         depends on RFKILL || RFKILL=n
0882         select BACKLIGHT_CLASS_DEVICE
0883         help
0884           Support for Intel Classmate PC ACPI devices, including some
0885           keys as input device, backlight device, tablet and accelerometer
0886           devices.
0887 
0888 config COMPAL_LAPTOP
0889         tristate "Compal (and others) Laptop Extras"
0890         depends on ACPI
0891         depends on BACKLIGHT_CLASS_DEVICE
0892         depends on ACPI_VIDEO || ACPI_VIDEO = n
0893         depends on RFKILL
0894         depends on HWMON
0895         depends on POWER_SUPPLY
0896         help
0897           This is a driver for laptops built by Compal, and some models by
0898           other brands (e.g. Dell, Toshiba).
0899 
0900           It adds support for rfkill, Bluetooth, WLAN, LCD brightness, hwmon
0901           and battery charging level control.
0902 
0903 config LG_LAPTOP
0904         tristate "LG Laptop Extras"
0905         depends on ACPI
0906         depends on ACPI_BATTERY
0907         depends on ACPI_WMI
0908         depends on INPUT
0909         select INPUT_SPARSEKMAP
0910         select NEW_LEDS
0911         select LEDS_CLASS
0912         help
0913          This driver adds support for hotkeys as well as control of keyboard
0914          backlight, battery maximum charge level and various other ACPI
0915          features.
0916 
0917          If you have an LG Gram laptop, say Y or M here.
0918 
0919 config PANASONIC_LAPTOP
0920         tristate "Panasonic Laptop Extras"
0921         depends on INPUT && ACPI
0922         depends on BACKLIGHT_CLASS_DEVICE
0923         depends on ACPI_VIDEO=n || ACPI_VIDEO
0924         depends on SERIO_I8042 || SERIO_I8042 = n
0925         select INPUT_SPARSEKMAP
0926         help
0927           This driver adds support for access to backlight control and hotkeys
0928           on Panasonic Let's Note laptops.
0929 
0930           If you have a Panasonic Let's note laptop (such as the R1(N variant),
0931           R2, R3, R5, T2, W2 and Y2 series), say Y.
0932 
0933 config SONY_LAPTOP
0934         tristate "Sony Laptop Extras"
0935         depends on ACPI
0936         depends on ACPI_VIDEO || ACPI_VIDEO = n
0937         depends on BACKLIGHT_CLASS_DEVICE
0938         depends on INPUT
0939         depends on RFKILL
0940         help
0941           This mini-driver drives the SNC and SPIC devices present in the ACPI
0942           BIOS of the Sony Vaio laptops.
0943 
0944           It gives access to some extra laptop functionalities like Bluetooth,
0945           screen brightness control, Fn keys and allows powering on/off some
0946           devices.
0947 
0948           Read <file:Documentation/admin-guide/laptops/sony-laptop.rst> for more information.
0949 
0950 config SONYPI_COMPAT
0951         bool "Sonypi compatibility"
0952         depends on SONY_LAPTOP
0953         help
0954           Build the sonypi driver compatibility code into the sony-laptop driver.
0955 
0956 config SYSTEM76_ACPI
0957         tristate "System76 ACPI Driver"
0958         depends on ACPI
0959         depends on ACPI_BATTERY
0960         depends on HWMON
0961         depends on INPUT
0962         select NEW_LEDS
0963         select LEDS_CLASS
0964         select LEDS_TRIGGERS
0965         help
0966           This is a driver for System76 laptops running open firmware. It adds
0967           support for Fn-Fx key combinations, keyboard backlight, and airplane mode
0968           LEDs.
0969 
0970           If you have a System76 laptop running open firmware, say Y or M here.
0971 
0972 config TOPSTAR_LAPTOP
0973         tristate "Topstar Laptop Extras"
0974         depends on ACPI
0975         depends on INPUT
0976         select INPUT_SPARSEKMAP
0977         select LEDS_CLASS
0978         select NEW_LEDS
0979         help
0980           This driver adds support for hotkeys found on Topstar laptops.
0981 
0982           If you have a Topstar laptop, say Y or M here.
0983 
0984 config SERIAL_MULTI_INSTANTIATE
0985         tristate "Serial bus multi instantiate pseudo device driver"
0986         depends on I2C && SPI && ACPI
0987         help
0988           Some ACPI-based systems list multiple devices in a single ACPI
0989           firmware-node. This driver will instantiate separate clients
0990           for each device in the firmware-node.
0991 
0992           To compile this driver as a module, choose M here: the module
0993           will be called serial-multi-instantiate.
0994 
0995 config MLX_PLATFORM
0996         tristate "Mellanox Technologies platform support"
0997         depends on I2C && REGMAP
0998         help
0999           This option enables system support for the Mellanox Technologies
1000           platform. The Mellanox systems provide data center networking
1001           solutions based on Virtual Protocol Interconnect (VPI) technology
1002           enable seamless connectivity to 56/100Gb/s InfiniBand or 10/40/56GbE
1003           connection.
1004 
1005           If you have a Mellanox system, say Y or M here.
1006 
1007 config TOUCHSCREEN_DMI
1008         bool "DMI based touchscreen configuration info"
1009         depends on ACPI && DMI && I2C=y && TOUCHSCREEN_SILEAD
1010         select EFI_EMBEDDED_FIRMWARE if EFI
1011         help
1012           Certain ACPI based tablets with e.g. Silead or Chipone touchscreens
1013           do not have enough data in ACPI tables for the touchscreen driver to
1014           handle the touchscreen properly, as OEMs expect the data to be baked
1015           into the tablet model specific version of the driver shipped with the
1016           the OS-image for the device. This option supplies the missing info.
1017           Enable this for x86 tablets with Silead or Chipone touchscreens.
1018 
1019 config X86_ANDROID_TABLETS
1020         tristate "X86 Android tablet support"
1021         depends on I2C && SPI && SERIAL_DEV_BUS && ACPI && EFI && GPIOLIB
1022         help
1023           X86 tablets which ship with Android as (part of) the factory image
1024           typically have various problems with their DSDTs. The factory kernels
1025           shipped on these devices typically have device addresses and GPIOs
1026           hardcoded in the kernel, rather than specified in their DSDT.
1027 
1028           With the DSDT containing a random collection of devices which may or
1029           may not actually be present. This driver contains various fixes for
1030           such tablets, including instantiating kernel devices for devices which
1031           are missing from the DSDT.
1032 
1033           If you have a x86 Android tablet say Y or M here, for a generic x86
1034           distro config say M here.
1035 
1036 config FW_ATTR_CLASS
1037         tristate
1038 
1039 config INTEL_IMR
1040         bool "Intel Isolated Memory Region support"
1041         depends on X86_INTEL_QUARK && IOSF_MBI
1042         help
1043           This option provides a means to manipulate Isolated Memory Regions.
1044           IMRs are a set of registers that define read and write access masks
1045           to prohibit certain system agents from accessing memory with 1 KiB
1046           granularity.
1047 
1048           IMRs make it possible to control read/write access to an address
1049           by hardware agents inside the SoC. Read and write masks can be
1050           defined for:
1051                 - eSRAM flush
1052                 - Dirty CPU snoop (write only)
1053                 - RMU access
1054                 - PCI Virtual Channel 0/Virtual Channel 1
1055                 - SMM mode
1056                 - Non SMM mode
1057 
1058           Quark contains a set of eight IMR registers and makes use of those
1059           registers during its bootup process.
1060 
1061           If you are running on a Galileo/Quark say Y here.
1062 
1063 config INTEL_IPS
1064         tristate "Intel Intelligent Power Sharing"
1065         depends on ACPI && PCI
1066         help
1067           Intel Calpella platforms support dynamic power sharing between the
1068           CPU and GPU, maximizing performance in a given TDP.  This driver,
1069           along with the CPU frequency and i915 drivers, provides that
1070           functionality.  If in doubt, say Y here; it will only load on
1071           supported platforms.
1072 
1073 config INTEL_SCU_IPC
1074         bool
1075 
1076 config INTEL_SCU
1077         bool
1078         select INTEL_SCU_IPC
1079 
1080 config INTEL_SCU_PCI
1081         bool "Intel SCU PCI driver"
1082         depends on PCI
1083         select INTEL_SCU
1084         help
1085           This driver is used to bridge the communications between kernel
1086           and SCU on some embedded Intel x86 platforms. It also creates
1087           devices that are connected to the SoC through the SCU.
1088           Platforms supported:
1089             Medfield
1090             Clovertrail
1091             Merrifield
1092             Broxton
1093             Apollo Lake
1094 
1095 config INTEL_SCU_PLATFORM
1096         tristate "Intel SCU platform driver"
1097         depends on ACPI
1098         select INTEL_SCU
1099         help
1100           This driver is used to bridge the communications between kernel
1101           and SCU (sometimes called PMC as well). The driver currently
1102           supports Intel Elkhart Lake and compatible platforms.
1103 
1104 config INTEL_SCU_WDT
1105         bool
1106         default INTEL_SCU_PCI
1107         depends on INTEL_MID_WATCHDOG
1108         help
1109           This is a specific platform code to instantiate watchdog device
1110           on ACPI-based Intel MID platforms.
1111 
1112 config INTEL_SCU_IPC_UTIL
1113         tristate "Intel SCU IPC utility driver"
1114         depends on INTEL_SCU
1115         help
1116           The IPC Util driver provides an interface with the SCU enabling
1117           low level access for debug work and updating the firmware. Say
1118           N unless you will be doing this on an Intel MID platform.
1119 
1120 config SIEMENS_SIMATIC_IPC
1121         tristate "Siemens Simatic IPC Class driver"
1122         depends on PCI
1123         help
1124           This Simatic IPC class driver is the central of several drivers. It
1125           is mainly used for system identification, after which drivers in other
1126           classes will take care of driving specifics of those machines.
1127           i.e. LEDs and watchdog.
1128 
1129           To compile this driver as a module, choose M here: the module
1130           will be called simatic-ipc.
1131 
1132 config WINMATE_FM07_KEYS
1133         tristate "Winmate FM07/FM07P front-panel keys driver"
1134         depends on INPUT
1135         help
1136           Winmate FM07 and FM07P in-vehicle computers have a row of five
1137           buttons below the display. This module adds an input device
1138           that delivers key events when these buttons are pressed.
1139 
1140 endif # X86_PLATFORM_DEVICES
1141 
1142 config P2SB
1143         bool "Primary to Sideband (P2SB) bridge access support"
1144         depends on PCI && X86
1145         help
1146           The Primary to Sideband (P2SB) bridge is an interface to some
1147           PCI devices connected through it. In particular, SPI NOR controller
1148           in Intel Apollo Lake SoC is one of such devices.
1149 
1150           The main purpose of this library is to unhide P2SB device in case
1151           firmware kept it hidden on some platforms in order to access devices
1152           behind it.