Thomas Gleixner | ec8f24b | 2019-05-19 13:07:45 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0-only |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 2 | # |
| 3 | # X86 Platform Specific Drivers |
| 4 | # |
| 5 | |
| 6 | menuconfig X86_PLATFORM_DEVICES |
| 7 | bool "X86 Platform Specific Device Drivers" |
| 8 | default y |
Jan Engelhardt | a00cd11 | 2010-08-03 00:40:10 +0200 | [diff] [blame] | 9 | depends on X86 |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 10 | help |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 11 | Say Y here to get to see options for device drivers for various |
| 12 | x86 platforms, including vendor-specific laptop extension drivers. |
| 13 | This option alone does not add any kernel code. |
| 14 | |
| 15 | If you say N, all options in this submenu will be skipped and disabled. |
| 16 | |
| 17 | if X86_PLATFORM_DEVICES |
| 18 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 19 | config ACPI_WMI |
| 20 | tristate "WMI" |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 21 | depends on ACPI |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 22 | help |
| 23 | This driver adds support for the ACPI-WMI (Windows Management |
| 24 | Instrumentation) mapper device (PNP0C14) found on some systems. |
| 25 | |
| 26 | ACPI-WMI is a proprietary extension to ACPI to expose parts of the |
| 27 | ACPI firmware to userspace - this is done through various vendor |
| 28 | defined methods and data blocks in a PNP0C14 device, which are then |
| 29 | made available for userspace to call. |
| 30 | |
| 31 | The implementation of this in Linux currently only exposes this to |
| 32 | other kernel space drivers. |
| 33 | |
| 34 | This driver is a required dependency to build the firmware specific |
| 35 | drivers needed on many machines, including Acer and HP laptops. |
| 36 | |
| 37 | It is safe to enable this driver even if your DSDT doesn't define |
| 38 | any ACPI-WMI devices. |
| 39 | |
| 40 | config WMI_BMOF |
| 41 | tristate "WMI embedded Binary MOF driver" |
Sedat Dilek | e98062e | 2010-12-08 11:20:26 +0100 | [diff] [blame] | 42 | depends on ACPI_WMI |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 43 | default ACPI_WMI |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 44 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 45 | Say Y here if you want to be able to read a firmware-embedded |
| 46 | WMI Binary MOF data. Using this requires userspace tools and may be |
| 47 | rather tedious. |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 48 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 49 | To compile this driver as a module, choose M here: the module will |
| 50 | be called wmi-bmof. |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 51 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 52 | config HUAWEI_WMI |
| 53 | tristate "Huawei WMI laptop extras driver" |
| 54 | depends on ACPI_BATTERY |
| 55 | depends on ACPI_WMI |
| 56 | depends on INPUT |
| 57 | select INPUT_SPARSEKMAP |
| 58 | select LEDS_CLASS |
| 59 | select LEDS_TRIGGERS |
| 60 | select LEDS_TRIGGER_AUDIO |
| 61 | select NEW_LEDS |
| 62 | help |
| 63 | This driver provides support for Huawei WMI hotkeys, battery charge |
| 64 | control, fn-lock, mic-mute LED, and other extra features. |
Chris Chiu | 75971fe | 2017-11-21 13:30:44 +0800 | [diff] [blame] | 65 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 66 | To compile this driver as a module, choose M here: the module |
| 67 | will be called huawei-wmi. |
| 68 | |
Justin Ernst | 4fc2cf1 | 2020-11-25 11:54:42 -0600 | [diff] [blame] | 69 | config UV_SYSFS |
| 70 | tristate "Sysfs structure for UV systems" |
| 71 | depends on X86_UV |
| 72 | depends on SYSFS |
| 73 | help |
| 74 | This driver supports a sysfs tree describing information about |
| 75 | UV systems at /sys/firmware/sgi_uv/. |
| 76 | |
| 77 | To compile this driver as a module, choose M here: the module will |
| 78 | be called uv_sysfs. |
| 79 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 80 | config MXM_WMI |
| 81 | tristate "WMI support for MXM Laptop Graphics" |
| 82 | depends on ACPI_WMI |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 83 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 84 | MXM is a standard for laptop graphics cards, the WMI interface |
| 85 | is required for switchable nvidia graphics machines |
| 86 | |
| 87 | config PEAQ_WMI |
| 88 | tristate "PEAQ 2-in-1 WMI hotkey driver" |
| 89 | depends on ACPI_WMI |
| 90 | depends on INPUT |
| 91 | help |
| 92 | Say Y here if you want to support WMI-based hotkeys on PEAQ 2-in-1s. |
| 93 | |
Daniel Dadap | ca16d33 | 2021-09-27 15:23:59 -0500 | [diff] [blame] | 94 | config NVIDIA_WMI_EC_BACKLIGHT |
| 95 | tristate "EC Backlight Driver for Hybrid Graphics Notebook Systems" |
Daniel Dadap | ad62cd9 | 2021-09-02 19:38:39 -0500 | [diff] [blame] | 96 | depends on ACPI_WMI |
| 97 | depends on BACKLIGHT_CLASS_DEVICE |
| 98 | help |
Daniel Dadap | ca16d33 | 2021-09-27 15:23:59 -0500 | [diff] [blame] | 99 | This driver provides a sysfs backlight interface for notebook systems |
| 100 | which are equipped with NVIDIA hybrid graphics and drive LCD backlight |
| 101 | levels through the Embedded Controller (EC). |
Daniel Dadap | ad62cd9 | 2021-09-02 19:38:39 -0500 | [diff] [blame] | 102 | |
| 103 | Say Y or M here if you want to control the backlight on a notebook |
Daniel Dadap | ca16d33 | 2021-09-27 15:23:59 -0500 | [diff] [blame] | 104 | system with an EC-driven backlight. |
Daniel Dadap | ad62cd9 | 2021-09-02 19:38:39 -0500 | [diff] [blame] | 105 | |
| 106 | If you choose to compile this driver as a module the module will be |
Daniel Dadap | ca16d33 | 2021-09-27 15:23:59 -0500 | [diff] [blame] | 107 | called nvidia-wmi-ec-backlight. |
Daniel Dadap | ad62cd9 | 2021-09-02 19:38:39 -0500 | [diff] [blame] | 108 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 109 | config XIAOMI_WMI |
| 110 | tristate "Xiaomi WMI key driver" |
| 111 | depends on ACPI_WMI |
| 112 | depends on INPUT |
| 113 | help |
| 114 | Say Y here if you want to support WMI-based keys on Xiaomi notebooks. |
| 115 | |
| 116 | To compile this driver as a module, choose M here: the module will |
| 117 | be called xiaomi-wmi. |
Chris Chiu | 75971fe | 2017-11-21 13:30:44 +0800 | [diff] [blame] | 118 | |
Thomas Weißschuh | 5729319 | 2021-04-12 14:35:13 +0200 | [diff] [blame] | 119 | config GIGABYTE_WMI |
| 120 | tristate "Gigabyte WMI temperature driver" |
| 121 | depends on ACPI_WMI |
| 122 | depends on HWMON |
| 123 | help |
| 124 | Say Y here if you want to support WMI-based temperature reporting on |
| 125 | Gigabyte mainboards. |
| 126 | |
| 127 | To compile this driver as a module, choose M here: the module will |
| 128 | be called gigabyte-wmi. |
| 129 | |
Peter Feuerer | e86435e | 2009-06-21 18:53:03 +0200 | [diff] [blame] | 130 | config ACERHDF |
| 131 | tristate "Acer Aspire One temperature and fan driver" |
Randy Dunlap | 200db64 | 2014-12-15 09:00:13 -0800 | [diff] [blame] | 132 | depends on ACPI && THERMAL |
Peter Feuerer | 48c8dd6 | 2014-11-28 15:20:50 +0100 | [diff] [blame] | 133 | select THERMAL_GOV_BANG_BANG |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 134 | help |
Peter Feuerer | e86435e | 2009-06-21 18:53:03 +0200 | [diff] [blame] | 135 | This is a driver for Acer Aspire One netbooks. It allows to access |
| 136 | the temperature sensor and to control the fan. |
| 137 | |
| 138 | After loading this driver the BIOS is still in control of the fan. |
| 139 | To let the kernel handle the fan, do: |
Paul Gortmaker | 14c2068 | 2018-09-20 21:44:18 -0400 | [diff] [blame] | 140 | echo -n enabled > /sys/class/thermal/thermal_zoneN/mode |
| 141 | where N=0,1,2... depending on the number of thermal nodes and the |
| 142 | detection order of your particular system. The "type" parameter |
| 143 | in the same node directory will tell you if it is "acerhdf". |
Peter Feuerer | e86435e | 2009-06-21 18:53:03 +0200 | [diff] [blame] | 144 | |
| 145 | For more information about this driver see |
Alexander A. Klimov | 78d15ee | 2020-07-15 20:57:44 +0200 | [diff] [blame] | 146 | <https://piie.net/files/acerhdf_README.txt> |
Peter Feuerer | e86435e | 2009-06-21 18:53:03 +0200 | [diff] [blame] | 147 | |
| 148 | If you have an Acer Aspire One netbook, say Y or M |
| 149 | here. |
| 150 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 151 | config ACER_WIRELESS |
| 152 | tristate "Acer Wireless Radio Control Driver" |
| 153 | depends on ACPI |
| 154 | depends on INPUT |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 155 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 156 | The Acer Wireless Radio Control handles the airplane mode hotkey |
| 157 | present on new Acer laptops. |
| 158 | |
| 159 | Say Y or M here if you have an Acer notebook with an airplane mode |
| 160 | hotkey. |
| 161 | |
| 162 | If you choose to compile this driver as a module the module will be |
| 163 | called acer-wireless. |
| 164 | |
| 165 | config ACER_WMI |
| 166 | tristate "Acer WMI Laptop Extras" |
Mario Limonciello | a46ad0f | 2014-04-04 14:15:42 -0400 | [diff] [blame] | 167 | depends on ACPI |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 168 | select LEDS_CLASS |
| 169 | select NEW_LEDS |
| 170 | depends on BACKLIGHT_CLASS_DEVICE |
| 171 | depends on SERIO_I8042 |
| 172 | depends on INPUT |
| 173 | depends on RFKILL || RFKILL = n |
Mario Limonciello | a46ad0f | 2014-04-04 14:15:42 -0400 | [diff] [blame] | 174 | depends on ACPI_WMI |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 175 | select INPUT_SPARSEKMAP |
| 176 | # Acer WMI depends on ACPI_VIDEO when ACPI is enabled |
| 177 | select ACPI_VIDEO if ACPI |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 178 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 179 | This is a driver for newer Acer (and Wistron) laptops. It adds |
| 180 | wireless radio and bluetooth control, and on some laptops, |
| 181 | exposes the mail LED and LCD backlight. |
| 182 | |
| 183 | If you have an ACPI-WMI compatible Acer/ Wistron laptop, say Y or M |
| 184 | here. |
| 185 | |
Shyam Sundar S K | 156ec47 | 2020-11-05 19:35:31 +0530 | [diff] [blame] | 186 | config AMD_PMC |
| 187 | tristate "AMD SoC PMC driver" |
Hans de Goede | 707f0c2 | 2021-11-02 16:32:56 +0100 | [diff] [blame^] | 188 | depends on ACPI && PCI && RTC_CLASS |
Shyam Sundar S K | 156ec47 | 2020-11-05 19:35:31 +0530 | [diff] [blame] | 189 | help |
| 190 | The driver provides support for AMD Power Management Controller |
| 191 | primarily responsible for S2Idle transactions that are driven from |
| 192 | a platform firmware running on SMU. This driver also provides a debug |
| 193 | mechanism to investigate the S2Idle transactions and failures. |
| 194 | |
| 195 | Say Y or M here if you have a notebook powered by AMD RYZEN CPU/APU. |
| 196 | |
| 197 | If you choose to compile this driver as a module the module will be |
| 198 | called amd-pmc. |
| 199 | |
Andrea.Ho | 3d90400 | 2021-03-19 03:44:27 +0000 | [diff] [blame] | 200 | config ADV_SWBUTTON |
| 201 | tristate "Advantech ACPI Software Button Driver" |
| 202 | depends on ACPI && INPUT |
| 203 | help |
| 204 | Say Y here to enable support for Advantech software defined |
| 205 | button feature. More information can be found at |
| 206 | <http://www.advantech.com.tw/products/> |
| 207 | |
| 208 | To compile this driver as a module, choose M here. The module will |
| 209 | be called adv_swbutton. |
| 210 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 211 | config APPLE_GMUX |
| 212 | tristate "Apple Gmux Driver" |
| 213 | depends on ACPI && PCI |
| 214 | depends on PNP |
| 215 | depends on BACKLIGHT_CLASS_DEVICE |
| 216 | depends on BACKLIGHT_APPLE=n || BACKLIGHT_APPLE |
| 217 | depends on ACPI_VIDEO=n || ACPI_VIDEO |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 218 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 219 | This driver provides support for the gmux device found on many |
| 220 | Apple laptops, which controls the display mux for the hybrid |
| 221 | graphics as well as the backlight. Currently only backlight |
| 222 | control is supported by the driver. |
Mario Limonciello | a46ad0f | 2014-04-04 14:15:42 -0400 | [diff] [blame] | 223 | |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 224 | config ASUS_LAPTOP |
Corentin Chary | 6122af3 | 2009-06-16 19:28:48 +0000 | [diff] [blame] | 225 | tristate "Asus Laptop Extras" |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 226 | depends on ACPI |
Corentin Chary | e73e2c6 | 2009-02-15 19:30:21 +0100 | [diff] [blame] | 227 | select LEDS_CLASS |
| 228 | select NEW_LEDS |
Hans de Goede | 14ca7a47 | 2015-06-16 16:27:47 +0200 | [diff] [blame] | 229 | depends on BACKLIGHT_CLASS_DEVICE |
Corentin Chary | 12d6f35 | 2009-01-20 16:17:44 +0100 | [diff] [blame] | 230 | depends on INPUT |
Corentin Chary | 18e1311 | 2010-01-25 23:29:24 +0100 | [diff] [blame] | 231 | depends on RFKILL || RFKILL = n |
Hans de Goede | 14ca7a47 | 2015-06-16 16:27:47 +0200 | [diff] [blame] | 232 | depends on ACPI_VIDEO || ACPI_VIDEO = n |
Corentin Chary | 66a71dd | 2010-01-25 22:50:11 +0100 | [diff] [blame] | 233 | select INPUT_SPARSEKMAP |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 234 | help |
Andy Ross | 8819de7 | 2011-10-14 11:13:35 +0200 | [diff] [blame] | 235 | This is a driver for Asus laptops, Lenovo SL and the Pegatron |
| 236 | Lucid tablet. It may also support some MEDION, JVC or VICTOR |
| 237 | laptops. It makes all the extra buttons generate standard |
Andy Ross | b23910c | 2011-10-14 11:13:38 +0200 | [diff] [blame] | 238 | ACPI events and input events, and on the Lucid the built-in |
| 239 | accelerometer appears as an input device. It also adds |
| 240 | support for video output switching, LCD backlight control, |
| 241 | Bluetooth and Wlan control, and most importantly, allows you |
| 242 | to blink those fancy LEDs. |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 243 | |
Andy Ross | 8819de7 | 2011-10-14 11:13:35 +0200 | [diff] [blame] | 244 | For more information see <http://acpi4asus.sf.net>. |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 245 | |
| 246 | If you have an ACPI-compatible ASUS laptop, say Y or M here. |
| 247 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 248 | config ASUS_WIRELESS |
| 249 | tristate "Asus Wireless Radio Control Driver" |
| 250 | depends on ACPI |
| 251 | depends on INPUT |
| 252 | select NEW_LEDS |
| 253 | select LEDS_CLASS |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 254 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 255 | The Asus Wireless Radio Control handles the airplane mode hotkey |
| 256 | present on some Asus laptops. |
| 257 | |
| 258 | Say Y or M here if you have an ASUS notebook with an airplane mode |
| 259 | hotkey. |
| 260 | |
| 261 | If you choose to compile this driver as a module the module will be |
| 262 | called asus-wireless. |
| 263 | |
| 264 | config ASUS_WMI |
| 265 | tristate "ASUS WMI Driver" |
| 266 | depends on ACPI_WMI |
| 267 | depends on ACPI_BATTERY |
| 268 | depends on INPUT |
| 269 | depends on HWMON |
| 270 | depends on BACKLIGHT_CLASS_DEVICE |
| 271 | depends on RFKILL || RFKILL = n |
| 272 | depends on HOTPLUG_PCI |
| 273 | depends on ACPI_VIDEO || ACPI_VIDEO = n |
| 274 | select INPUT_SPARSEKMAP |
| 275 | select LEDS_CLASS |
| 276 | select NEW_LEDS |
Luke D. Jones | c63d44a | 2021-08-19 07:07:31 +1200 | [diff] [blame] | 277 | select ACPI_PLATFORM_PROFILE |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 278 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 279 | Say Y here if you have a WMI aware Asus laptop (like Eee PCs or new |
| 280 | Asus Notebooks). |
| 281 | |
| 282 | To compile this driver as a module, choose M here: the module will |
| 283 | be called asus-wmi. |
| 284 | |
| 285 | config ASUS_NB_WMI |
| 286 | tristate "Asus Notebook WMI Driver" |
| 287 | depends on ASUS_WMI |
| 288 | depends on SERIO_I8042 || SERIO_I8042 = n |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 289 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 290 | This is a driver for newer Asus notebooks. It adds extra features |
| 291 | like wireless radio and bluetooth control, leds, hotkeys, backlight... |
| 292 | |
| 293 | For more information, see |
| 294 | <file:Documentation/ABI/testing/sysfs-platform-asus-wmi> |
| 295 | |
| 296 | If you have an ACPI-WMI compatible Asus Notebook, say Y or M |
| 297 | here. |
| 298 | |
Chris Blake | 636a1e6 | 2021-08-09 19:40:21 -0500 | [diff] [blame] | 299 | config MERAKI_MX100 |
| 300 | tristate "Cisco Meraki MX100 Platform Driver" |
| 301 | depends on GPIOLIB |
| 302 | depends on GPIO_ICH |
| 303 | depends on LEDS_CLASS |
| 304 | select LEDS_GPIO |
| 305 | help |
| 306 | This driver provides support for the front button and LEDs on |
| 307 | the Cisco Meraki MX100 (Tinkerbell) 1U appliance. |
| 308 | |
| 309 | To compile this driver as a module, choose M here: the module |
| 310 | will be called meraki-mx100. |
| 311 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 312 | config EEEPC_LAPTOP |
| 313 | tristate "Eee PC Hotkey Driver" |
| 314 | depends on ACPI |
| 315 | depends on INPUT |
| 316 | depends on RFKILL || RFKILL = n |
| 317 | depends on ACPI_VIDEO || ACPI_VIDEO = n |
| 318 | depends on HOTPLUG_PCI |
| 319 | depends on BACKLIGHT_CLASS_DEVICE |
| 320 | select HWMON |
| 321 | select LEDS_CLASS |
| 322 | select NEW_LEDS |
| 323 | select INPUT_SPARSEKMAP |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 324 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 325 | This driver supports the Fn-Fx keys on Eee PC laptops. |
| 326 | |
| 327 | It also gives access to some extra laptop functionalities like |
| 328 | Bluetooth, backlight and allows powering on/off some other |
| 329 | devices. |
| 330 | |
| 331 | If you have an Eee PC laptop, say Y or M here. If this driver |
| 332 | doesn't work on your Eee PC, try eeepc-wmi instead. |
| 333 | |
| 334 | config EEEPC_WMI |
| 335 | tristate "Eee PC WMI Driver" |
| 336 | depends on ASUS_WMI |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 337 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 338 | This is a driver for newer Eee PC laptops. It adds extra features |
| 339 | like wireless radio and bluetooth control, leds, hotkeys, backlight... |
| 340 | |
| 341 | For more information, see |
| 342 | <file:Documentation/ABI/testing/sysfs-platform-asus-wmi> |
| 343 | |
| 344 | If you have an ACPI-WMI compatible Eee PC laptop (>= 1000), say Y or M |
| 345 | here. |
| 346 | |
Mario Limonciello | f1e1ea5 | 2021-02-03 13:58:32 -0600 | [diff] [blame] | 347 | source "drivers/platform/x86/dell/Kconfig" |
Michał Kępień | 7a3319c | 2017-02-17 08:57:52 +0100 | [diff] [blame] | 348 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 349 | config AMILO_RFKILL |
| 350 | tristate "Fujitsu-Siemens Amilo rfkill support" |
Pali Rohár | 817a5cd | 2015-06-06 10:23:28 +0200 | [diff] [blame] | 351 | depends on RFKILL |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 352 | depends on SERIO_I8042 |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 353 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 354 | This is a driver for enabling wifi on some Fujitsu-Siemens Amilo |
| 355 | laptops. |
Colin Ian King | 820787f | 2011-02-17 18:44:09 +0000 | [diff] [blame] | 356 | |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 357 | config FUJITSU_LAPTOP |
| 358 | tristate "Fujitsu Laptop Extras" |
| 359 | depends on ACPI |
| 360 | depends on INPUT |
| 361 | depends on BACKLIGHT_CLASS_DEVICE |
Hans de Goede | 14ca7a47 | 2015-06-16 16:27:47 +0200 | [diff] [blame] | 362 | depends on ACPI_VIDEO || ACPI_VIDEO = n |
Michał Kępień | f225267 | 2017-03-20 10:32:19 +0100 | [diff] [blame] | 363 | select INPUT_SPARSEKMAP |
Necip Fazil Yildiran | afdd1eb | 2020-09-17 19:16:53 +0300 | [diff] [blame] | 364 | select NEW_LEDS |
Michał Kępień | d89bcc8 | 2017-04-07 15:07:08 +0200 | [diff] [blame] | 365 | select LEDS_CLASS |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 366 | help |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 367 | This is a driver for laptops built by Fujitsu: |
| 368 | |
| 369 | * P2xxx/P5xxx/S6xxx/S7xxx series Lifebooks |
| 370 | * Possibly other Fujitsu laptop models |
| 371 | * Tested with S6410 and S7020 |
| 372 | |
| 373 | It adds support for LCD brightness control and some hotkeys. |
| 374 | |
| 375 | If you have a Fujitsu laptop, say Y or M here. |
| 376 | |
Robert Gerlach | 2d24c49 | 2012-01-18 14:26:22 +0100 | [diff] [blame] | 377 | config FUJITSU_TABLET |
| 378 | tristate "Fujitsu Tablet Extras" |
| 379 | depends on ACPI |
| 380 | depends on INPUT |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 381 | help |
Robert Gerlach | 2d24c49 | 2012-01-18 14:26:22 +0100 | [diff] [blame] | 382 | This is a driver for tablets built by Fujitsu: |
| 383 | |
| 384 | * Lifebook P1510/P1610/P1620/Txxxx |
| 385 | * Stylistic ST5xxx |
| 386 | * Possibly other Fujitsu tablet models |
| 387 | |
| 388 | It adds support for the panel buttons, docking station detection, |
| 389 | tablet/notebook mode detection for convertible and |
| 390 | orientation detection for docked slates. |
| 391 | |
| 392 | If you have a Fujitsu convertible or slate, say Y or M here. |
| 393 | |
Hans de Goede | 1b46f17 | 2017-12-12 17:40:54 +0100 | [diff] [blame] | 394 | config GPD_POCKET_FAN |
| 395 | tristate "GPD Pocket Fan Controller support" |
| 396 | depends on ACPI |
| 397 | depends on THERMAL |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 398 | help |
Hans de Goede | 1b46f17 | 2017-12-12 17:40:54 +0100 | [diff] [blame] | 399 | Driver for the GPD Pocket vendor specific FAN02501 ACPI device |
| 400 | which controls the fan speed on the GPD Pocket. |
| 401 | |
| 402 | Without this driver the fan on the Pocket will stay off independent |
| 403 | of the CPU temperature. Say Y or M if the kernel may be used on a |
| 404 | GPD pocket. |
| 405 | |
Jean Delvare | efcfed9 | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 406 | config HP_ACCEL |
| 407 | tristate "HP laptop accelerometer" |
| 408 | depends on INPUT && ACPI |
Giedrius Statkevicius | 0cdbcd6 | 2014-11-10 20:59:42 +0200 | [diff] [blame] | 409 | depends on SERIO_I8042 |
Jean Delvare | efcfed9 | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 410 | select SENSORS_LIS3LV02D |
| 411 | select NEW_LEDS |
| 412 | select LEDS_CLASS |
| 413 | help |
| 414 | This driver provides support for the "Mobile Data Protection System 3D" |
| 415 | or "3D DriveGuard" feature of HP laptops. On such systems the driver |
| 416 | should load automatically (via ACPI alias). |
| 417 | |
| 418 | Support for a led indicating disk protection will be provided as |
| 419 | hp::hddprotect. For more information on the feature, refer to |
Mauro Carvalho Chehab | 9b5db89 | 2019-06-28 18:23:13 -0300 | [diff] [blame] | 420 | Documentation/misc-devices/lis3lv02d.rst. |
Jean Delvare | efcfed9 | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 421 | |
| 422 | To compile this driver as a module, choose M here: the module will |
| 423 | be called hp_accel. |
| 424 | |
Mario Limonciello | a558ea4 | 2021-05-19 12:44:05 -0500 | [diff] [blame] | 425 | config WIRELESS_HOTKEY |
| 426 | tristate "Wireless hotkey button" |
Alex Hung | 54290fa | 2014-01-16 17:50:31 +0800 | [diff] [blame] | 427 | depends on ACPI |
| 428 | depends on INPUT |
| 429 | help |
Mario Limonciello | a558ea4 | 2021-05-19 12:44:05 -0500 | [diff] [blame] | 430 | This driver provides supports for the wireless buttons found on some AMD, |
| 431 | HP, & Xioami laptops. |
Alex Hung | 54290fa | 2014-01-16 17:50:31 +0800 | [diff] [blame] | 432 | On such systems the driver should load automatically (via ACPI alias). |
| 433 | |
| 434 | To compile this driver as a module, choose M here: the module will |
Mario Limonciello | a558ea4 | 2021-05-19 12:44:05 -0500 | [diff] [blame] | 435 | be called wireless-hotkey. |
Alex Hung | 54290fa | 2014-01-16 17:50:31 +0800 | [diff] [blame] | 436 | |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 437 | config HP_WMI |
| 438 | tristate "HP WMI extras" |
| 439 | depends on ACPI_WMI |
| 440 | depends on INPUT |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 441 | depends on RFKILL || RFKILL = n |
Dmitry Torokhov | 4d291ed | 2010-08-04 22:30:13 -0700 | [diff] [blame] | 442 | select INPUT_SPARSEKMAP |
Elia Devito | 4296f67 | 2021-02-21 23:13:40 +0100 | [diff] [blame] | 443 | select ACPI_PLATFORM_PROFILE |
Enver Balalic | 4c51ba9 | 2021-09-02 20:22:34 +0200 | [diff] [blame] | 444 | select HWMON |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 445 | help |
| 446 | Say Y here if you want to support WMI-based hotkeys on HP laptops and |
| 447 | to read data from WMI such as docking or ambient light sensor state. |
| 448 | |
| 449 | To compile this driver as a module, choose M here: the module will |
| 450 | be called hp-wmi. |
| 451 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 452 | config TC1100_WMI |
| 453 | tristate "HP Compaq TC1100 Tablet WMI Extras" |
| 454 | depends on !X86_64 |
Matan Ziv-Av | dbf0c5a | 2018-09-28 17:34:06 +0300 | [diff] [blame] | 455 | depends on ACPI |
| 456 | depends on ACPI_WMI |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 457 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 458 | This is a driver for the WMI extensions (wireless and bluetooth power |
| 459 | control) of the HP Compaq TC1100 tablet. |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 460 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 461 | config IBM_RTL |
| 462 | tristate "Device driver to enable PRTL support" |
| 463 | depends on PCI |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 464 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 465 | Enable support for IBM Premium Real Time Mode (PRTM). |
| 466 | This module will allow you the enter and exit PRTM in the BIOS via |
| 467 | sysfs on platforms that support this feature. System in PRTM will |
| 468 | not receive CPU-generated SMIs for recoverable errors. Use of this |
| 469 | feature without proper support may void your hardware warranty. |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 470 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 471 | If the proper BIOS support is found the driver will load and create |
| 472 | /sys/devices/system/ibm_rtl/. The "state" variable will indicate |
| 473 | whether or not the BIOS is in PRTM. |
| 474 | state = 0 (BIOS SMIs on) |
| 475 | state = 1 (BIOS SMIs off) |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 476 | |
Ike Panhc | 57ac3b0 | 2010-10-01 15:40:09 +0800 | [diff] [blame] | 477 | config IDEAPAD_LAPTOP |
| 478 | tristate "Lenovo IdeaPad Laptop Extras" |
David Woodhouse | 58ac7aa | 2010-08-10 23:44:05 +0100 | [diff] [blame] | 479 | depends on ACPI |
Randy Dunlap | ad0f430 | 2011-01-20 12:48:36 -0800 | [diff] [blame] | 480 | depends on RFKILL && INPUT |
Maxim Mikityanskiy | 07a4a4f | 2012-07-06 16:08:00 +0800 | [diff] [blame] | 481 | depends on SERIO_I8042 |
Matthew Garrett | 445e8d0 | 2013-02-25 16:59:57 -0500 | [diff] [blame] | 482 | depends on BACKLIGHT_CLASS_DEVICE |
Hans de Goede | 14ca7a47 | 2015-06-16 16:27:47 +0200 | [diff] [blame] | 483 | depends on ACPI_VIDEO || ACPI_VIDEO = n |
Arnd Bergmann | 74caab9 | 2015-11-06 22:28:49 +0100 | [diff] [blame] | 484 | depends on ACPI_WMI || ACPI_WMI = n |
Maximilian Luz | 21f05a4 | 2021-02-11 21:17:00 +0100 | [diff] [blame] | 485 | select ACPI_PLATFORM_PROFILE |
Ike Panhc | f63409a | 2010-12-13 18:00:38 +0800 | [diff] [blame] | 486 | select INPUT_SPARSEKMAP |
Barnabás Pőcze | d8f5c5e | 2021-02-04 14:20:15 +0000 | [diff] [blame] | 487 | select NEW_LEDS |
| 488 | select LEDS_CLASS |
David Woodhouse | 58ac7aa | 2010-08-10 23:44:05 +0100 | [diff] [blame] | 489 | help |
Ike Panhc | 16fd91e | 2013-02-22 16:48:40 +0800 | [diff] [blame] | 490 | This is a driver for Lenovo IdeaPad netbooks contains drivers for |
| 491 | rfkill switch, hotkey, fan control and backlight control. |
David Woodhouse | 58ac7aa | 2010-08-10 23:44:05 +0100 | [diff] [blame] | 492 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 493 | config SENSORS_HDAPS |
| 494 | tristate "Thinkpad Hard Drive Active Protection System (hdaps)" |
Benjamin Tissoires | 3dda3b3 | 2016-11-25 17:11:41 +0100 | [diff] [blame] | 495 | depends on INPUT |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 496 | help |
| 497 | This driver provides support for the IBM Hard Drive Active Protection |
| 498 | System (hdaps), which provides an accelerometer and other misc. data. |
| 499 | ThinkPads starting with the R50, T41, and X40 are supported. The |
| 500 | accelerometer data is readable via sysfs. |
Benjamin Tissoires | 3dda3b3 | 2016-11-25 17:11:41 +0100 | [diff] [blame] | 501 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 502 | This driver also provides an absolute input class device, allowing |
| 503 | the laptop to act as a pinball machine-esque joystick. |
| 504 | |
| 505 | If your ThinkPad is not recognized by the driver, please update to latest |
| 506 | BIOS. This is especially the case for some R52 ThinkPads. |
| 507 | |
| 508 | Say Y here if you have an applicable laptop and want to experience |
| 509 | the awesome power of hdaps. |
Benjamin Tissoires | 3dda3b3 | 2016-11-25 17:11:41 +0100 | [diff] [blame] | 510 | |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 511 | config THINKPAD_ACPI |
| 512 | tristate "ThinkPad ACPI Laptop Extras" |
| 513 | depends on ACPI |
Ognjen Galic | 2801b96 | 2018-02-07 15:58:44 +0100 | [diff] [blame] | 514 | depends on ACPI_BATTERY |
Corentin Chary | d263da3 | 2009-02-25 09:37:09 +0100 | [diff] [blame] | 515 | depends on INPUT |
Johannes Berg | 19d337d | 2009-06-02 13:01:37 +0200 | [diff] [blame] | 516 | depends on RFKILL || RFKILL = n |
Hans de Goede | 14ca7a47 | 2015-06-16 16:27:47 +0200 | [diff] [blame] | 517 | depends on ACPI_VIDEO || ACPI_VIDEO = n |
| 518 | depends on BACKLIGHT_CLASS_DEVICE |
Hans de Goede | 153cca9 | 2021-07-29 10:21:34 +0200 | [diff] [blame] | 519 | depends on I2C |
Maximilian Luz | 21f05a4 | 2021-02-11 21:17:00 +0100 | [diff] [blame] | 520 | select ACPI_PLATFORM_PROFILE |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 521 | select HWMON |
| 522 | select NVRAM |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 523 | select NEW_LEDS |
| 524 | select LEDS_CLASS |
Takashi Iwai | 4e1d092 | 2018-11-26 17:47:45 +0100 | [diff] [blame] | 525 | select LEDS_TRIGGERS |
| 526 | select LEDS_TRIGGER_AUDIO |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 527 | help |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 528 | This is a driver for the IBM and Lenovo ThinkPad laptops. It adds |
| 529 | support for Fn-Fx key combinations, Bluetooth control, video |
| 530 | output switching, ThinkLight control, UltraBay eject and more. |
| 531 | For more information about this driver see |
Mauro Carvalho Chehab | 9e1cbed | 2019-06-13 15:07:43 -0300 | [diff] [blame] | 532 | <file:Documentation/admin-guide/laptops/thinkpad-acpi.rst> and |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 533 | <http://ibm-acpi.sf.net/> . |
| 534 | |
| 535 | This driver was formerly known as ibm-acpi. |
| 536 | |
Henrique de Moraes Holschuh | 6e5b08e | 2009-12-26 22:52:17 -0200 | [diff] [blame] | 537 | Extra functionality will be available if the rfkill (CONFIG_RFKILL) |
| 538 | and/or ALSA (CONFIG_SND) subsystems are available in the kernel. |
| 539 | Note that if you want ThinkPad-ACPI to be built-in instead of |
| 540 | modular, ALSA and rfkill will also have to be built-in. |
| 541 | |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 542 | If you have an IBM or Lenovo ThinkPad laptop, say Y or M here. |
| 543 | |
Henrique de Moraes Holschuh | ff850c3 | 2009-12-26 22:52:15 -0200 | [diff] [blame] | 544 | config THINKPAD_ACPI_ALSA_SUPPORT |
| 545 | bool "Console audio control ALSA interface" |
| 546 | depends on THINKPAD_ACPI |
| 547 | depends on SND |
| 548 | depends on SND = y || THINKPAD_ACPI = SND |
| 549 | default y |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 550 | help |
Henrique de Moraes Holschuh | ff850c3 | 2009-12-26 22:52:15 -0200 | [diff] [blame] | 551 | Enables monitoring of the built-in console audio output control |
| 552 | (headphone and speakers), which is operated by the mute and (in |
| 553 | some ThinkPad models) volume hotkeys. |
| 554 | |
| 555 | If this option is enabled, ThinkPad-ACPI will export an ALSA card |
| 556 | with a single read-only mixer control, which should be used for |
| 557 | on-screen-display feedback purposes by the Desktop Environment. |
| 558 | |
| 559 | Optionally, the driver will also allow software control (the |
| 560 | ALSA mixer will be made read-write). Please refer to the driver |
| 561 | documentation for details. |
| 562 | |
| 563 | All IBM models have both volume and mute control. Newer Lenovo |
| 564 | models only have mute control (the volume hotkeys are just normal |
| 565 | keys and volume control is done through the main HDA mixer). |
| 566 | |
Henrique de Moraes Holschuh | a73f309 | 2009-01-11 03:01:00 -0200 | [diff] [blame] | 567 | config THINKPAD_ACPI_DEBUGFACILITIES |
| 568 | bool "Maintainer debug facilities" |
| 569 | depends on THINKPAD_ACPI |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 570 | help |
Henrique de Moraes Holschuh | a73f309 | 2009-01-11 03:01:00 -0200 | [diff] [blame] | 571 | Enables extra stuff in the thinkpad-acpi which is completely useless |
| 572 | for normal use. Read the driver source to find out what it does. |
| 573 | |
| 574 | Say N here, unless you were told by a kernel maintainer to do |
| 575 | otherwise. |
| 576 | |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 577 | config THINKPAD_ACPI_DEBUG |
| 578 | bool "Verbose debug mode" |
| 579 | depends on THINKPAD_ACPI |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 580 | help |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 581 | Enables extra debugging information, at the expense of a slightly |
| 582 | increase in driver size. |
| 583 | |
| 584 | If you are not sure, say N here. |
| 585 | |
Henrique de Moraes Holschuh | a4d5eff | 2009-04-04 04:25:49 +0000 | [diff] [blame] | 586 | config THINKPAD_ACPI_UNSAFE_LEDS |
| 587 | bool "Allow control of important LEDs (unsafe)" |
| 588 | depends on THINKPAD_ACPI |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 589 | help |
Henrique de Moraes Holschuh | a4d5eff | 2009-04-04 04:25:49 +0000 | [diff] [blame] | 590 | Overriding LED state on ThinkPads can mask important |
| 591 | firmware alerts (like critical battery condition), or misled |
| 592 | the user into damaging the hardware (undocking or ejecting |
| 593 | the bay while buses are still active), etc. |
| 594 | |
| 595 | LED control on the ThinkPad is write-only (with very few |
| 596 | exceptions on very ancient models), which makes it |
| 597 | impossible to know beforehand if important information will |
| 598 | be lost when one changes LED state. |
| 599 | |
| 600 | Users that know what they are doing can enable this option |
| 601 | and the driver will allow control of every LED, including |
| 602 | the ones on the dock stations. |
| 603 | |
| 604 | Never enable this option on a distribution kernel. |
| 605 | |
| 606 | Say N here, unless you are building a kernel for your own |
| 607 | use, and need to control the important firmware LEDs. |
| 608 | |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 609 | config THINKPAD_ACPI_VIDEO |
| 610 | bool "Video output control support" |
| 611 | depends on THINKPAD_ACPI |
| 612 | default y |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 613 | help |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 614 | Allows the thinkpad_acpi driver to provide an interface to control |
| 615 | the various video output ports. |
| 616 | |
| 617 | This feature often won't work well, depending on ThinkPad model, |
| 618 | display state, video output devices in use, whether there is a X |
| 619 | server running, phase of the moon, and the current mood of |
| 620 | Schroedinger's cat. If you can use X.org's RandR to control |
| 621 | your ThinkPad's video output ports instead of this feature, |
Henrique de Moraes Holschuh | b525c06 | 2010-02-25 22:22:22 -0300 | [diff] [blame] | 622 | don't think twice: do it and say N here to save memory and avoid |
| 623 | bad interactions with X.org. |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 624 | |
Henrique de Moraes Holschuh | b525c06 | 2010-02-25 22:22:22 -0300 | [diff] [blame] | 625 | NOTE: access to this feature is limited to processes with the |
| 626 | CAP_SYS_ADMIN capability, to avoid local DoS issues in platforms |
| 627 | where it interacts badly with X.org. |
| 628 | |
| 629 | If you are not sure, say Y here but do try to check if you could |
| 630 | be using X.org RandR instead. |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 631 | |
| 632 | config THINKPAD_ACPI_HOTKEY_POLL |
| 633 | bool "Support NVRAM polling for hot keys" |
| 634 | depends on THINKPAD_ACPI |
| 635 | default y |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 636 | help |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 637 | Some thinkpad models benefit from NVRAM polling to detect a few of |
| 638 | the hot key press events. If you know your ThinkPad model does not |
| 639 | need to do NVRAM polling to support any of the hot keys you use, |
| 640 | unselecting this option will save about 1kB of memory. |
| 641 | |
| 642 | ThinkPads T40 and newer, R52 and newer, and X31 and newer are |
| 643 | unlikely to need NVRAM polling in their latest BIOS versions. |
| 644 | |
| 645 | NVRAM polling can detect at most the following keys: ThinkPad/Access |
| 646 | IBM, Zoom, Switch Display (fn+F7), ThinkLight, Volume up/down/mute, |
| 647 | Brightness up/down, Display Expand (fn+F8), Hibernate (fn+F12). |
| 648 | |
| 649 | If you are not sure, say Y here. The driver enables polling only if |
| 650 | it is strictly necessary to do so. |
| 651 | |
Mark Pearson | a40cd7e | 2021-05-30 18:31:11 -0400 | [diff] [blame] | 652 | config THINKPAD_LMI |
| 653 | tristate "Lenovo WMI-based systems management driver" |
| 654 | depends on ACPI_WMI |
| 655 | select FW_ATTR_CLASS |
| 656 | help |
| 657 | This driver allows changing BIOS settings on Lenovo machines whose |
| 658 | BIOS support the WMI interface. |
| 659 | |
| 660 | To compile this driver as a module, choose M here: the module will |
| 661 | be called think-lmi. |
| 662 | |
Andy Shevchenko | 8bd836f | 2021-06-18 15:55:15 +0300 | [diff] [blame] | 663 | source "drivers/platform/x86/intel/Kconfig" |
| 664 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 665 | config MSI_LAPTOP |
| 666 | tristate "MSI Laptop Extras" |
| 667 | depends on ACPI |
| 668 | depends on BACKLIGHT_CLASS_DEVICE |
| 669 | depends on ACPI_VIDEO || ACPI_VIDEO = n |
| 670 | depends on RFKILL |
| 671 | depends on INPUT && SERIO_I8042 |
| 672 | select INPUT_SPARSEKMAP |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 673 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 674 | This is a driver for laptops built by MSI (MICRO-STAR |
| 675 | INTERNATIONAL): |
Mattias Jacobsson | edb73f4 | 2019-05-27 18:21:31 +0200 | [diff] [blame] | 676 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 677 | MSI MegaBook S270 (MS-1013) |
| 678 | Cytron/TCM/Medion/Tchibo MD96100/SAM2000 |
| 679 | |
| 680 | It adds support for Bluetooth, WLAN and LCD brightness control. |
| 681 | |
| 682 | More information about this driver is available at |
| 683 | <http://0pointer.de/lennart/tchibo.html>. |
| 684 | |
| 685 | If you have an MSI S270 laptop, say Y or M here. |
Mattias Jacobsson | edb73f4 | 2019-05-27 18:21:31 +0200 | [diff] [blame] | 686 | |
Thomas Renninger | d12d8ba | 2009-12-10 14:18:13 +0100 | [diff] [blame] | 687 | config MSI_WMI |
| 688 | tristate "MSI WMI extras" |
| 689 | depends on ACPI_WMI |
| 690 | depends on INPUT |
Anisse Astier | de078e5 | 2009-12-14 10:21:39 +0100 | [diff] [blame] | 691 | depends on BACKLIGHT_CLASS_DEVICE |
Hans de Goede | 14ca7a47 | 2015-06-16 16:27:47 +0200 | [diff] [blame] | 692 | depends on ACPI_VIDEO || ACPI_VIDEO = n |
Anisse Astier | c30116c | 2009-12-10 14:18:19 +0100 | [diff] [blame] | 693 | select INPUT_SPARSEKMAP |
Thomas Renninger | d12d8ba | 2009-12-10 14:18:13 +0100 | [diff] [blame] | 694 | help |
| 695 | Say Y here if you want to support WMI-based hotkeys on MSI laptops. |
| 696 | |
| 697 | To compile this driver as a module, choose M here: the module will |
| 698 | be called msi-wmi. |
| 699 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 700 | config XO15_EBOOK |
| 701 | tristate "OLPC XO-1.5 ebook switch" |
| 702 | depends on OLPC || COMPILE_TEST |
| 703 | depends on ACPI && INPUT |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 704 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 705 | Support for the ebook switch on the OLPC XO-1.5 laptop. |
Hans de Goede | 13bb0fd | 2017-05-12 17:11:54 +0200 | [diff] [blame] | 706 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 707 | This switch is triggered as the screen is rotated and folded down to |
| 708 | convert the device into ebook form. |
| 709 | |
| 710 | config XO1_RFKILL |
| 711 | tristate "OLPC XO-1 software RF kill switch" |
| 712 | depends on OLPC || COMPILE_TEST |
| 713 | depends on RFKILL |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 714 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 715 | Support for enabling/disabling the WLAN interface on the OLPC XO-1 |
| 716 | laptop. |
| 717 | |
| 718 | config PCENGINES_APU2 |
| 719 | tristate "PC Engines APUv2/3 front button and LEDs driver" |
| 720 | depends on INPUT && INPUT_KEYBOARD && GPIOLIB |
| 721 | depends on LEDS_CLASS |
| 722 | select GPIO_AMD_FCH |
| 723 | select KEYBOARD_GPIO_POLLED |
| 724 | select LEDS_GPIO |
| 725 | help |
| 726 | This driver provides support for the front button and LEDs on |
| 727 | PC Engines APUv2/APUv3 board. |
| 728 | |
| 729 | To compile this driver as a module, choose M here: the module |
| 730 | will be called pcengines-apuv2. |
| 731 | |
Santosh Kumar Yadav | 86af1d0 | 2021-10-20 14:36:34 +0200 | [diff] [blame] | 732 | config BARCO_P50_GPIO |
| 733 | tristate "Barco P50 GPIO driver for identify LED/button" |
| 734 | depends on GPIOLIB |
| 735 | help |
| 736 | This driver provides access to the GPIOs for the identify button |
| 737 | and led present on Barco P50 board. |
| 738 | |
| 739 | To compile this driver as a module, choose M here: the module |
| 740 | will be called barco-p50-gpio. |
| 741 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 742 | config SAMSUNG_LAPTOP |
| 743 | tristate "Samsung Laptop driver" |
| 744 | depends on RFKILL || RFKILL = n |
| 745 | depends on ACPI_VIDEO || ACPI_VIDEO = n |
| 746 | depends on BACKLIGHT_CLASS_DEVICE |
Guillaume Douézan-Grard | bf8f65d | 2018-02-21 18:00:45 +0100 | [diff] [blame] | 747 | select LEDS_CLASS |
| 748 | select NEW_LEDS |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 749 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 750 | This module implements a driver for a wide range of different |
| 751 | Samsung laptops. It offers control over the different |
| 752 | function keys, wireless LED, LCD backlight level. |
Herton Ronaldo Krzesinski | 9caeb53 | 2009-09-14 21:11:21 -0300 | [diff] [blame] | 753 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 754 | It may also provide some sysfs files described in |
| 755 | <file:Documentation/ABI/testing/sysfs-driver-samsung-laptop> |
| 756 | |
| 757 | To compile this driver as a module, choose M here: the module |
| 758 | will be called samsung-laptop. |
| 759 | |
| 760 | config SAMSUNG_Q10 |
| 761 | tristate "Samsung Q10 Extras" |
| 762 | depends on ACPI |
| 763 | select BACKLIGHT_CLASS_DEVICE |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 764 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 765 | This driver provides support for backlight control on Samsung Q10 |
| 766 | and related laptops, including Dell Latitude X200. |
Herton Ronaldo Krzesinski | 9caeb53 | 2009-09-14 21:11:21 -0300 | [diff] [blame] | 767 | |
Len Brown | b4f9fe1 | 2008-12-11 14:37:26 -0500 | [diff] [blame] | 768 | config ACPI_TOSHIBA |
| 769 | tristate "Toshiba Laptop Extras" |
| 770 | depends on ACPI |
Seth Forshee | f11f999 | 2012-01-18 13:44:11 -0600 | [diff] [blame] | 771 | depends on ACPI_WMI |
Mark Brown | 0c51a4d | 2011-01-10 14:37:02 +0000 | [diff] [blame] | 772 | select LEDS_CLASS |
| 773 | select NEW_LEDS |
Jonathan Corbet | c76a3e1 | 2010-08-23 11:32:36 -0600 | [diff] [blame] | 774 | depends on BACKLIGHT_CLASS_DEVICE |
Len Brown | b4f9fe1 | 2008-12-11 14:37:26 -0500 | [diff] [blame] | 775 | depends on INPUT |
Seth Forshee | 283672e | 2013-07-03 08:14:16 -0500 | [diff] [blame] | 776 | depends on SERIO_I8042 || SERIO_I8042 = n |
Hans de Goede | 358d6a2 | 2015-04-21 12:01:32 +0200 | [diff] [blame] | 777 | depends on ACPI_VIDEO || ACPI_VIDEO = n |
Azael Avalos | dc4522b | 2015-12-14 13:00:59 -0700 | [diff] [blame] | 778 | depends on RFKILL || RFKILL = n |
Azael Avalos | 98010f1 | 2016-06-27 19:48:08 -0600 | [diff] [blame] | 779 | depends on IIO |
Dmitry Torokhov | 384a7cd | 2010-08-04 22:30:19 -0700 | [diff] [blame] | 780 | select INPUT_SPARSEKMAP |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 781 | help |
Len Brown | b4f9fe1 | 2008-12-11 14:37:26 -0500 | [diff] [blame] | 782 | This driver adds support for access to certain system settings |
| 783 | on "legacy free" Toshiba laptops. These laptops can be recognized by |
| 784 | their lack of a BIOS setup menu and APM support. |
| 785 | |
| 786 | On these machines, all system configuration is handled through the |
| 787 | ACPI. This driver is required for access to controls not covered |
| 788 | by the general ACPI drivers, such as LCD brightness, video output, |
| 789 | etc. |
| 790 | |
| 791 | This driver differs from the non-ACPI Toshiba laptop driver (located |
| 792 | under "Processor type and features") in several aspects. |
| 793 | Configuration is accessed by reading and writing text files in the |
| 794 | /proc tree instead of by program interface to /dev. Furthermore, no |
| 795 | power management functions are exposed, as those are handled by the |
| 796 | general ACPI drivers. |
| 797 | |
| 798 | More information about this driver is available at |
| 799 | <http://memebeam.org/toys/ToshibaAcpiDriver>. |
| 800 | |
| 801 | If you have a legacy free Toshiba laptop (such as the Libretto L1 |
| 802 | series), say Y. |
Jes Sorensen | 42b4e9e | 2009-12-16 12:08:15 -0500 | [diff] [blame] | 803 | |
| 804 | config TOSHIBA_BT_RFKILL |
| 805 | tristate "Toshiba Bluetooth RFKill switch support" |
| 806 | depends on ACPI |
Azael Avalos | 7ee8cd3 | 2015-05-03 17:42:07 -0600 | [diff] [blame] | 807 | depends on RFKILL || RFKILL = n |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 808 | help |
Jes Sorensen | 42b4e9e | 2009-12-16 12:08:15 -0500 | [diff] [blame] | 809 | This driver adds support for Bluetooth events for the RFKill |
| 810 | switch on modern Toshiba laptops with full ACPI support and |
| 811 | an RFKill switch. |
| 812 | |
| 813 | This driver handles RFKill events for the TOS6205 Bluetooth, |
| 814 | and re-enables it when the switch is set back to the 'on' |
| 815 | position. |
| 816 | |
| 817 | If you have a modern Toshiba laptop with a Bluetooth and an |
| 818 | RFKill switch (such as the Portege R500), say Y. |
Thadeu Lima de Souza Cascardo | 529aa8c | 2009-12-21 16:20:01 -0800 | [diff] [blame] | 819 | |
Azael Avalos | 186e4e8 | 2014-08-14 09:55:40 -0600 | [diff] [blame] | 820 | config TOSHIBA_HAPS |
| 821 | tristate "Toshiba HDD Active Protection Sensor" |
| 822 | depends on ACPI |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 823 | help |
Azael Avalos | 186e4e8 | 2014-08-14 09:55:40 -0600 | [diff] [blame] | 824 | This driver adds support for the built-in accelerometer |
Masanari Iida | 769a12a | 2015-04-27 22:52:07 +0900 | [diff] [blame] | 825 | found on recent Toshiba laptops equipped with HID TOS620A |
Azael Avalos | 186e4e8 | 2014-08-14 09:55:40 -0600 | [diff] [blame] | 826 | device. |
| 827 | |
| 828 | This driver receives ACPI notify events 0x80 when the sensor |
| 829 | detects a sudden move or a harsh vibration, as well as an |
| 830 | ACPI notify event 0x81 whenever the movement or vibration has |
| 831 | been stabilized. |
| 832 | |
| 833 | Also provides sysfs entries to get/set the desired protection |
Masanari Iida | 769a12a | 2015-04-27 22:52:07 +0900 | [diff] [blame] | 834 | level and resetting the HDD protection interface. |
Azael Avalos | 186e4e8 | 2014-08-14 09:55:40 -0600 | [diff] [blame] | 835 | |
| 836 | If you have a recent Toshiba laptop with a built-in accelerometer |
| 837 | device, say Y. |
| 838 | |
Azael Avalos | 14991fc | 2015-09-28 20:32:28 -0600 | [diff] [blame] | 839 | config TOSHIBA_WMI |
| 840 | tristate "Toshiba WMI Hotkeys Driver (EXPERIMENTAL)" |
Azael Avalos | 14991fc | 2015-09-28 20:32:28 -0600 | [diff] [blame] | 841 | depends on ACPI_WMI |
| 842 | depends on INPUT |
| 843 | select INPUT_SPARSEKMAP |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 844 | help |
Azael Avalos | 14991fc | 2015-09-28 20:32:28 -0600 | [diff] [blame] | 845 | This driver adds hotkey monitoring support to some Toshiba models |
| 846 | that manage the hotkeys via WMI events. |
| 847 | |
| 848 | WARNING: This driver is incomplete as it lacks a proper keymap and the |
| 849 | *notify function only prints the ACPI event type value. Be warned that |
| 850 | you will need to provide some information if you have a Toshiba model |
Masanari Iida | 83fc61a | 2017-09-26 12:47:59 +0900 | [diff] [blame] | 851 | with WMI event hotkeys and want to help with the development of this |
Azael Avalos | 14991fc | 2015-09-28 20:32:28 -0600 | [diff] [blame] | 852 | driver. |
| 853 | |
| 854 | If you have a WMI-based hotkeys Toshiba laptop, say Y or M here. |
| 855 | |
Thadeu Lima de Souza Cascardo | 529aa8c | 2009-12-21 16:20:01 -0800 | [diff] [blame] | 856 | config ACPI_CMPC |
| 857 | tristate "CMPC Laptop Extras" |
Randy Dunlap | 4f258cf | 2018-01-14 21:11:18 -0800 | [diff] [blame] | 858 | depends on ACPI && INPUT |
Thadeu Lima de Souza Cascardo | f35843e | 2010-05-26 12:00:10 -0300 | [diff] [blame] | 859 | depends on RFKILL || RFKILL=n |
Thadeu Lima de Souza Cascardo | 529aa8c | 2009-12-21 16:20:01 -0800 | [diff] [blame] | 860 | select BACKLIGHT_CLASS_DEVICE |
Thadeu Lima de Souza Cascardo | 529aa8c | 2009-12-21 16:20:01 -0800 | [diff] [blame] | 861 | help |
| 862 | Support for Intel Classmate PC ACPI devices, including some |
| 863 | keys as input device, backlight device, tablet and accelerometer |
| 864 | devices. |
| 865 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 866 | config COMPAL_LAPTOP |
| 867 | tristate "Compal (and others) Laptop Extras" |
| 868 | depends on ACPI |
| 869 | depends on BACKLIGHT_CLASS_DEVICE |
| 870 | depends on ACPI_VIDEO || ACPI_VIDEO = n |
| 871 | depends on RFKILL |
| 872 | depends on HWMON |
| 873 | depends on POWER_SUPPLY |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 874 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 875 | This is a driver for laptops built by Compal, and some models by |
| 876 | other brands (e.g. Dell, Toshiba). |
Hans de Goede | 1cd706d | 2017-04-06 09:24:36 +0200 | [diff] [blame] | 877 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 878 | It adds support for rfkill, Bluetooth, WLAN, LCD brightness, hwmon |
| 879 | and battery charging level control. |
Yauhen Kharuzhy | d740795 | 2019-10-05 23:42:55 +0300 | [diff] [blame] | 880 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 881 | config LG_LAPTOP |
| 882 | tristate "LG Laptop Extras" |
| 883 | depends on ACPI |
| 884 | depends on ACPI_WMI |
| 885 | depends on INPUT |
| 886 | select INPUT_SPARSEKMAP |
Necip Fazil Yildiran | 8f0c01e | 2020-09-15 12:09:23 +0300 | [diff] [blame] | 887 | select NEW_LEDS |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 888 | select LEDS_CLASS |
| 889 | help |
| 890 | This driver adds support for hotkeys as well as control of keyboard |
| 891 | backlight, battery maximum charge level and various other ACPI |
| 892 | features. |
Hans de Goede | 1cd706d | 2017-04-06 09:24:36 +0200 | [diff] [blame] | 893 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 894 | If you have an LG Gram laptop, say Y or M here. |
Yauhen Kharuzhy | d740795 | 2019-10-05 23:42:55 +0300 | [diff] [blame] | 895 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 896 | config PANASONIC_LAPTOP |
| 897 | tristate "Panasonic Laptop Extras" |
| 898 | depends on INPUT && ACPI |
| 899 | depends on BACKLIGHT_CLASS_DEVICE |
| 900 | select INPUT_SPARSEKMAP |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 901 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 902 | This driver adds support for access to backlight control and hotkeys |
| 903 | on Panasonic Let's Note laptops. |
Hans de Goede | 63dada8 | 2017-06-12 22:55:46 +0200 | [diff] [blame] | 904 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 905 | If you have a Panasonic Let's note laptop (such as the R1(N variant), |
| 906 | R2, R3, R5, T2, W2 and Y2 series), say Y. |
Hans de Goede | 63dada8 | 2017-06-12 22:55:46 +0200 | [diff] [blame] | 907 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 908 | config SONY_LAPTOP |
| 909 | tristate "Sony Laptop Extras" |
| 910 | depends on ACPI |
| 911 | depends on ACPI_VIDEO || ACPI_VIDEO = n |
| 912 | depends on BACKLIGHT_CLASS_DEVICE |
| 913 | depends on INPUT |
| 914 | depends on RFKILL |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 915 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 916 | This mini-driver drives the SNC and SPIC devices present in the ACPI |
| 917 | BIOS of the Sony Vaio laptops. |
Hans de Goede | 63dada8 | 2017-06-12 22:55:46 +0200 | [diff] [blame] | 918 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 919 | It gives access to some extra laptop functionalities like Bluetooth, |
| 920 | screen brightness control, Fn keys and allows powering on/off some |
| 921 | devices. |
| 922 | |
| 923 | Read <file:Documentation/admin-guide/laptops/sony-laptop.rst> for more information. |
| 924 | |
| 925 | config SONYPI_COMPAT |
| 926 | bool "Sonypi compatibility" |
| 927 | depends on SONY_LAPTOP |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 928 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 929 | Build the sonypi driver compatibility code into the sony-laptop driver. |
| 930 | |
| 931 | config SYSTEM76_ACPI |
| 932 | tristate "System76 ACPI Driver" |
| 933 | depends on ACPI |
Arnd Bergmann | fc3341b | 2021-10-22 17:48:40 +0200 | [diff] [blame] | 934 | depends on ACPI_BATTERY |
| 935 | depends on HWMON |
| 936 | depends on INPUT |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 937 | select NEW_LEDS |
| 938 | select LEDS_CLASS |
| 939 | select LEDS_TRIGGERS |
| 940 | help |
| 941 | This is a driver for System76 laptops running open firmware. It adds |
| 942 | support for Fn-Fx key combinations, keyboard backlight, and airplane mode |
| 943 | LEDs. |
| 944 | |
| 945 | If you have a System76 laptop running open firmware, say Y or M here. |
| 946 | |
| 947 | config TOPSTAR_LAPTOP |
| 948 | tristate "Topstar Laptop Extras" |
Alex Hung | ecc83e5 | 2015-12-18 23:31:10 +0800 | [diff] [blame] | 949 | depends on ACPI |
| 950 | depends on INPUT |
| 951 | select INPUT_SPARSEKMAP |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 952 | select LEDS_CLASS |
| 953 | select NEW_LEDS |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 954 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 955 | This driver adds support for hotkeys found on Topstar laptops. |
Sreedhara DS | 9a58a33 | 2010-04-26 18:13:05 +0100 | [diff] [blame] | 956 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 957 | If you have a Topstar laptop, say Y or M here. |
Sreedhara DS | 5369c02d | 2010-10-22 15:43:55 +0100 | [diff] [blame] | 958 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 959 | config I2C_MULTI_INSTANTIATE |
| 960 | tristate "I2C multi instantiate pseudo device driver" |
| 961 | depends on I2C && ACPI |
Hong Liu | 8eec8a1 | 2011-02-07 14:45:55 -0500 | [diff] [blame] | 962 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 963 | Some ACPI-based systems list multiple i2c-devices in a single ACPI |
| 964 | firmware-node. This driver will instantiate separate i2c-clients |
| 965 | for each device in the firmware-node. |
Hong Liu | 8eec8a1 | 2011-02-07 14:45:55 -0500 | [diff] [blame] | 966 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 967 | To compile this driver as a module, choose M here: the module |
| 968 | will be called i2c-multi-instantiate. |
Hong Liu | 8eec8a1 | 2011-02-07 14:45:55 -0500 | [diff] [blame] | 969 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 970 | config MLX_PLATFORM |
| 971 | tristate "Mellanox Technologies platform support" |
| 972 | depends on I2C && REGMAP |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 973 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 974 | This option enables system support for the Mellanox Technologies |
| 975 | platform. The Mellanox systems provide data center networking |
| 976 | solutions based on Virtual Protocol Interconnect (VPI) technology |
| 977 | enable seamless connectivity to 56/100Gb/s InfiniBand or 10/40/56GbE |
| 978 | connection. |
| 979 | |
| 980 | If you have a Mellanox system, say Y or M here. |
| 981 | |
| 982 | config TOUCHSCREEN_DMI |
| 983 | bool "DMI based touchscreen configuration info" |
| 984 | depends on ACPI && DMI && I2C=y && TOUCHSCREEN_SILEAD |
Linus Torvalds | dba43fc | 2020-03-31 16:43:40 -0700 | [diff] [blame] | 985 | select EFI_EMBEDDED_FIRMWARE if EFI |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 986 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 987 | Certain ACPI based tablets with e.g. Silead or Chipone touchscreens |
| 988 | do not have enough data in ACPI tables for the touchscreen driver to |
| 989 | handle the touchscreen properly, as OEMs expect the data to be baked |
| 990 | into the tablet model specific version of the driver shipped with the |
| 991 | the OS-image for the device. This option supplies the missing info. |
| 992 | Enable this for x86 tablets with Silead or Chipone touchscreens. |
Jesse Barnes | aa7ffc0 | 2010-05-14 15:41:14 -0700 | [diff] [blame] | 993 | |
Mark Pearson | 17b707f | 2021-05-30 18:31:09 -0400 | [diff] [blame] | 994 | config FW_ATTR_CLASS |
| 995 | tristate |
Mark Pearson | 17b707f | 2021-05-30 18:31:09 -0400 | [diff] [blame] | 996 | |
Bryan O'Donoghue | 28a375d | 2015-01-30 16:29:38 +0000 | [diff] [blame] | 997 | config INTEL_IMR |
| 998 | bool "Intel Isolated Memory Region support" |
Bryan O'Donoghue | 28a375d | 2015-01-30 16:29:38 +0000 | [diff] [blame] | 999 | depends on X86_INTEL_QUARK && IOSF_MBI |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 1000 | help |
Bryan O'Donoghue | 28a375d | 2015-01-30 16:29:38 +0000 | [diff] [blame] | 1001 | This option provides a means to manipulate Isolated Memory Regions. |
| 1002 | IMRs are a set of registers that define read and write access masks |
| 1003 | to prohibit certain system agents from accessing memory with 1 KiB |
| 1004 | granularity. |
| 1005 | |
| 1006 | IMRs make it possible to control read/write access to an address |
| 1007 | by hardware agents inside the SoC. Read and write masks can be |
| 1008 | defined for: |
| 1009 | - eSRAM flush |
| 1010 | - Dirty CPU snoop (write only) |
| 1011 | - RMU access |
| 1012 | - PCI Virtual Channel 0/Virtual Channel 1 |
| 1013 | - SMM mode |
| 1014 | - Non SMM mode |
| 1015 | |
| 1016 | Quark contains a set of eight IMR registers and makes use of those |
| 1017 | registers during its bootup process. |
| 1018 | |
| 1019 | If you are running on a Galileo/Quark say Y here. |
| 1020 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 1021 | config INTEL_IPS |
| 1022 | tristate "Intel Intelligent Power Sharing" |
Sinan Kaya | 7934d76 | 2019-01-05 10:06:01 +0000 | [diff] [blame] | 1023 | depends on ACPI && PCI |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 1024 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 1025 | Intel Calpella platforms support dynamic power sharing between the |
| 1026 | CPU and GPU, maximizing performance in a given TDP. This driver, |
| 1027 | along with the CPU frequency and i915 drivers, provides that |
| 1028 | functionality. If in doubt, say Y here; it will only load on |
| 1029 | supported platforms. |
Seth Forshee | 917ee75 | 2012-03-16 14:41:22 -0500 | [diff] [blame] | 1030 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 1031 | config INTEL_SCU_IPC |
Mika Westerberg | 54b34aa | 2020-04-16 11:15:33 +0300 | [diff] [blame] | 1032 | bool |
| 1033 | |
| 1034 | config INTEL_SCU |
| 1035 | bool |
| 1036 | select INTEL_SCU_IPC |
| 1037 | |
| 1038 | config INTEL_SCU_PCI |
| 1039 | bool "Intel SCU PCI driver" |
Mika Westerberg | b8da68f | 2020-04-16 11:15:49 +0300 | [diff] [blame] | 1040 | depends on PCI |
Mika Westerberg | 54b34aa | 2020-04-16 11:15:33 +0300 | [diff] [blame] | 1041 | select INTEL_SCU |
| 1042 | help |
| 1043 | This driver is used to bridge the communications between kernel |
| 1044 | and SCU on some embedded Intel x86 platforms. It also creates |
Mika Westerberg | b8da68f | 2020-04-16 11:15:49 +0300 | [diff] [blame] | 1045 | devices that are connected to the SoC through the SCU. |
| 1046 | Platforms supported: |
| 1047 | Medfield |
| 1048 | Clovertrail |
| 1049 | Merrifield |
| 1050 | Broxton |
| 1051 | Apollo Lake |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 1052 | |
Mika Westerberg | 7a61f05 | 2020-04-28 11:51:12 +0300 | [diff] [blame] | 1053 | config INTEL_SCU_PLATFORM |
| 1054 | tristate "Intel SCU platform driver" |
| 1055 | depends on ACPI |
| 1056 | select INTEL_SCU |
| 1057 | help |
| 1058 | This driver is used to bridge the communications between kernel |
| 1059 | and SCU (sometimes called PMC as well). The driver currently |
| 1060 | supports Intel Elkhart Lake and compatible platforms. |
| 1061 | |
Andy Shevchenko | 18365d6 | 2020-10-23 19:03:19 +0300 | [diff] [blame] | 1062 | config INTEL_SCU_WDT |
| 1063 | bool |
| 1064 | default INTEL_SCU_PCI |
| 1065 | depends on INTEL_MID_WATCHDOG |
| 1066 | help |
| 1067 | This is a specific platform code to instantiate watchdog device |
| 1068 | on ACPI-based Intel MID platforms. |
| 1069 | |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 1070 | config INTEL_SCU_IPC_UTIL |
| 1071 | tristate "Intel SCU IPC utility driver" |
Mika Westerberg | 54b34aa | 2020-04-16 11:15:33 +0300 | [diff] [blame] | 1072 | depends on INTEL_SCU |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 1073 | help |
Andy Shevchenko | 45a3d57 | 2020-01-28 20:33:05 +0200 | [diff] [blame] | 1074 | The IPC Util driver provides an interface with the SCU enabling |
| 1075 | low level access for debug work and updating the firmware. Say |
| 1076 | N unless you will be doing this on an Intel MID platform. |
| 1077 | |
Len Brown | 41b16dc | 2008-12-01 00:09:47 -0500 | [diff] [blame] | 1078 | endif # X86_PLATFORM_DEVICES |
Irina Tirdea | 80a7581 | 2017-01-23 12:07:43 -0600 | [diff] [blame] | 1079 | |
| 1080 | config PMC_ATOM |
| 1081 | def_bool y |
| 1082 | depends on PCI |
Irina Tirdea | 282a4e4 | 2017-01-23 12:07:44 -0600 | [diff] [blame] | 1083 | select COMMON_CLK |