Kconfig 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927
  1. #
  2. # X86 Platform Specific Drivers
  3. #
  4. menuconfig X86_PLATFORM_DEVICES
  5. bool "X86 Platform Specific Device Drivers"
  6. default y
  7. depends on X86
  8. ---help---
  9. Say Y here to get to see options for device drivers for various
  10. x86 platforms, including vendor-specific laptop extension drivers.
  11. This option alone does not add any kernel code.
  12. If you say N, all options in this submenu will be skipped and disabled.
  13. if X86_PLATFORM_DEVICES
  14. config ACER_WMI
  15. tristate "Acer WMI Laptop Extras"
  16. depends on ACPI
  17. select LEDS_CLASS
  18. select NEW_LEDS
  19. depends on BACKLIGHT_CLASS_DEVICE
  20. depends on SERIO_I8042
  21. depends on INPUT
  22. depends on RFKILL || RFKILL = n
  23. depends on ACPI_WMI
  24. select INPUT_SPARSEKMAP
  25. # Acer WMI depends on ACPI_VIDEO when ACPI is enabled
  26. select ACPI_VIDEO if ACPI
  27. ---help---
  28. This is a driver for newer Acer (and Wistron) laptops. It adds
  29. wireless radio and bluetooth control, and on some laptops,
  30. exposes the mail LED and LCD backlight.
  31. If you have an ACPI-WMI compatible Acer/ Wistron laptop, say Y or M
  32. here.
  33. config ACERHDF
  34. tristate "Acer Aspire One temperature and fan driver"
  35. depends on ACPI && THERMAL
  36. select THERMAL_GOV_BANG_BANG
  37. ---help---
  38. This is a driver for Acer Aspire One netbooks. It allows to access
  39. the temperature sensor and to control the fan.
  40. After loading this driver the BIOS is still in control of the fan.
  41. To let the kernel handle the fan, do:
  42. echo -n enabled > /sys/class/thermal/thermal_zone0/mode
  43. For more information about this driver see
  44. <http://piie.net/files/acerhdf_README.txt>
  45. If you have an Acer Aspire One netbook, say Y or M
  46. here.
  47. config ALIENWARE_WMI
  48. tristate "Alienware Special feature control"
  49. depends on ACPI
  50. depends on LEDS_CLASS
  51. depends on NEW_LEDS
  52. depends on ACPI_WMI
  53. ---help---
  54. This is a driver for controlling Alienware BIOS driven
  55. features. It exposes an interface for controlling the AlienFX
  56. zones on Alienware machines that don't contain a dedicated AlienFX
  57. USB MCU such as the X51 and X51-R2.
  58. config ASUS_LAPTOP
  59. tristate "Asus Laptop Extras"
  60. depends on ACPI
  61. select LEDS_CLASS
  62. select NEW_LEDS
  63. depends on BACKLIGHT_CLASS_DEVICE
  64. depends on INPUT
  65. depends on RFKILL || RFKILL = n
  66. depends on ACPI_VIDEO || ACPI_VIDEO = n
  67. select INPUT_SPARSEKMAP
  68. select INPUT_POLLDEV
  69. ---help---
  70. This is a driver for Asus laptops, Lenovo SL and the Pegatron
  71. Lucid tablet. It may also support some MEDION, JVC or VICTOR
  72. laptops. It makes all the extra buttons generate standard
  73. ACPI events and input events, and on the Lucid the built-in
  74. accelerometer appears as an input device. It also adds
  75. support for video output switching, LCD backlight control,
  76. Bluetooth and Wlan control, and most importantly, allows you
  77. to blink those fancy LEDs.
  78. For more information see <http://acpi4asus.sf.net>.
  79. If you have an ACPI-compatible ASUS laptop, say Y or M here.
  80. config DELL_LAPTOP
  81. tristate "Dell Laptop Extras"
  82. depends on X86
  83. depends on DCDBAS
  84. depends on BACKLIGHT_CLASS_DEVICE
  85. depends on ACPI_VIDEO || ACPI_VIDEO = n
  86. depends on RFKILL || RFKILL = n
  87. depends on SERIO_I8042
  88. select POWER_SUPPLY
  89. select LEDS_CLASS
  90. select NEW_LEDS
  91. default n
  92. ---help---
  93. This driver adds support for rfkill and backlight control to Dell
  94. laptops (except for some models covered by the Compal driver).
  95. config DELL_WMI
  96. tristate "Dell WMI extras"
  97. depends on ACPI_WMI
  98. depends on INPUT
  99. depends on ACPI_VIDEO || ACPI_VIDEO = n
  100. select INPUT_SPARSEKMAP
  101. ---help---
  102. Say Y here if you want to support WMI-based hotkeys on Dell laptops.
  103. To compile this driver as a module, choose M here: the module will
  104. be called dell-wmi.
  105. config DELL_WMI_AIO
  106. tristate "WMI Hotkeys for Dell All-In-One series"
  107. depends on ACPI_WMI
  108. depends on INPUT
  109. select INPUT_SPARSEKMAP
  110. ---help---
  111. Say Y here if you want to support WMI-based hotkeys on Dell
  112. All-In-One machines.
  113. To compile this driver as a module, choose M here: the module will
  114. be called dell-wmi-aio.
  115. config DELL_SMO8800
  116. tristate "Dell Latitude freefall driver (ACPI SMO88XX)"
  117. depends on ACPI
  118. ---help---
  119. Say Y here if you want to support SMO88XX freefall devices
  120. on Dell Latitude laptops.
  121. To compile this driver as a module, choose M here: the module will
  122. be called dell-smo8800.
  123. config DELL_RBTN
  124. tristate "Dell Airplane Mode Switch driver"
  125. depends on ACPI
  126. depends on INPUT
  127. depends on RFKILL
  128. ---help---
  129. Say Y here if you want to support Dell Airplane Mode Switch ACPI
  130. device on Dell laptops. Sometimes it has names: DELLABCE or DELRBTN.
  131. This driver register rfkill device or input hotkey device depending
  132. on hardware type (hw switch slider or keyboard toggle button). For
  133. rfkill devices it receive HW switch events and set correct hard
  134. rfkill state.
  135. To compile this driver as a module, choose M here: the module will
  136. be called dell-rbtn.
  137. config FUJITSU_LAPTOP
  138. tristate "Fujitsu Laptop Extras"
  139. depends on ACPI
  140. depends on INPUT
  141. depends on BACKLIGHT_CLASS_DEVICE
  142. depends on ACPI_VIDEO || ACPI_VIDEO = n
  143. depends on LEDS_CLASS || LEDS_CLASS=n
  144. ---help---
  145. This is a driver for laptops built by Fujitsu:
  146. * P2xxx/P5xxx/S6xxx/S7xxx series Lifebooks
  147. * Possibly other Fujitsu laptop models
  148. * Tested with S6410 and S7020
  149. It adds support for LCD brightness control and some hotkeys.
  150. If you have a Fujitsu laptop, say Y or M here.
  151. config FUJITSU_LAPTOP_DEBUG
  152. bool "Verbose debug mode for Fujitsu Laptop Extras"
  153. depends on FUJITSU_LAPTOP
  154. default n
  155. ---help---
  156. Enables extra debug output from the fujitsu extras driver, at the
  157. expense of a slight increase in driver size.
  158. If you are not sure, say N here.
  159. config FUJITSU_TABLET
  160. tristate "Fujitsu Tablet Extras"
  161. depends on ACPI
  162. depends on INPUT
  163. ---help---
  164. This is a driver for tablets built by Fujitsu:
  165. * Lifebook P1510/P1610/P1620/Txxxx
  166. * Stylistic ST5xxx
  167. * Possibly other Fujitsu tablet models
  168. It adds support for the panel buttons, docking station detection,
  169. tablet/notebook mode detection for convertible and
  170. orientation detection for docked slates.
  171. If you have a Fujitsu convertible or slate, say Y or M here.
  172. config AMILO_RFKILL
  173. tristate "Fujitsu-Siemens Amilo rfkill support"
  174. depends on RFKILL
  175. depends on SERIO_I8042
  176. ---help---
  177. This is a driver for enabling wifi on some Fujitsu-Siemens Amilo
  178. laptops.
  179. config TC1100_WMI
  180. tristate "HP Compaq TC1100 Tablet WMI Extras"
  181. depends on !X86_64
  182. depends on ACPI
  183. depends on ACPI_WMI
  184. ---help---
  185. This is a driver for the WMI extensions (wireless and bluetooth power
  186. control) of the HP Compaq TC1100 tablet.
  187. config HP_ACCEL
  188. tristate "HP laptop accelerometer"
  189. depends on INPUT && ACPI
  190. depends on SERIO_I8042
  191. select SENSORS_LIS3LV02D
  192. select NEW_LEDS
  193. select LEDS_CLASS
  194. help
  195. This driver provides support for the "Mobile Data Protection System 3D"
  196. or "3D DriveGuard" feature of HP laptops. On such systems the driver
  197. should load automatically (via ACPI alias).
  198. Support for a led indicating disk protection will be provided as
  199. hp::hddprotect. For more information on the feature, refer to
  200. Documentation/misc-devices/lis3lv02d.
  201. To compile this driver as a module, choose M here: the module will
  202. be called hp_accel.
  203. config HP_WIRELESS
  204. tristate "HP wireless button"
  205. depends on ACPI
  206. depends on INPUT
  207. help
  208. This driver provides supports for new HP wireless button for Windows 8.
  209. On such systems the driver should load automatically (via ACPI alias).
  210. To compile this driver as a module, choose M here: the module will
  211. be called hp-wireless.
  212. config HP_WMI
  213. tristate "HP WMI extras"
  214. depends on ACPI_WMI
  215. depends on INPUT
  216. depends on RFKILL || RFKILL = n
  217. select INPUT_SPARSEKMAP
  218. help
  219. Say Y here if you want to support WMI-based hotkeys on HP laptops and
  220. to read data from WMI such as docking or ambient light sensor state.
  221. To compile this driver as a module, choose M here: the module will
  222. be called hp-wmi.
  223. config MSI_LAPTOP
  224. tristate "MSI Laptop Extras"
  225. depends on ACPI
  226. depends on BACKLIGHT_CLASS_DEVICE
  227. depends on ACPI_VIDEO || ACPI_VIDEO = n
  228. depends on RFKILL
  229. depends on INPUT && SERIO_I8042
  230. select INPUT_SPARSEKMAP
  231. ---help---
  232. This is a driver for laptops built by MSI (MICRO-STAR
  233. INTERNATIONAL):
  234. MSI MegaBook S270 (MS-1013)
  235. Cytron/TCM/Medion/Tchibo MD96100/SAM2000
  236. It adds support for Bluetooth, WLAN and LCD brightness control.
  237. More information about this driver is available at
  238. <http://0pointer.de/lennart/tchibo.html>.
  239. If you have an MSI S270 laptop, say Y or M here.
  240. config PANASONIC_LAPTOP
  241. tristate "Panasonic Laptop Extras"
  242. depends on INPUT && ACPI
  243. depends on BACKLIGHT_CLASS_DEVICE
  244. select INPUT_SPARSEKMAP
  245. ---help---
  246. This driver adds support for access to backlight control and hotkeys
  247. on Panasonic Let's Note laptops.
  248. If you have a Panasonic Let's note laptop (such as the R1(N variant),
  249. R2, R3, R5, T2, W2 and Y2 series), say Y.
  250. config COMPAL_LAPTOP
  251. tristate "Compal (and others) Laptop Extras"
  252. depends on ACPI
  253. depends on BACKLIGHT_CLASS_DEVICE
  254. depends on ACPI_VIDEO || ACPI_VIDEO = n
  255. depends on RFKILL
  256. depends on HWMON
  257. depends on POWER_SUPPLY
  258. ---help---
  259. This is a driver for laptops built by Compal, and some models by
  260. other brands (e.g. Dell, Toshiba).
  261. It adds support for rfkill, Bluetooth, WLAN and LCD brightness
  262. control.
  263. For a (possibly incomplete) list of supported laptops, please refer
  264. to: Documentation/platform/x86-laptop-drivers.txt
  265. config SONY_LAPTOP
  266. tristate "Sony Laptop Extras"
  267. depends on ACPI
  268. depends on ACPI_VIDEO || ACPI_VIDEO = n
  269. depends on BACKLIGHT_CLASS_DEVICE
  270. depends on INPUT
  271. depends on RFKILL
  272. ---help---
  273. This mini-driver drives the SNC and SPIC devices present in the ACPI
  274. BIOS of the Sony Vaio laptops.
  275. It gives access to some extra laptop functionalities like Bluetooth,
  276. screen brightness control, Fn keys and allows powering on/off some
  277. devices.
  278. Read <file:Documentation/laptops/sony-laptop.txt> for more information.
  279. config SONYPI_COMPAT
  280. bool "Sonypi compatibility"
  281. depends on SONY_LAPTOP
  282. ---help---
  283. Build the sonypi driver compatibility code into the sony-laptop driver.
  284. config IDEAPAD_LAPTOP
  285. tristate "Lenovo IdeaPad Laptop Extras"
  286. depends on ACPI
  287. depends on RFKILL && INPUT
  288. depends on SERIO_I8042
  289. depends on BACKLIGHT_CLASS_DEVICE
  290. depends on ACPI_VIDEO || ACPI_VIDEO = n
  291. select INPUT_SPARSEKMAP
  292. help
  293. This is a driver for Lenovo IdeaPad netbooks contains drivers for
  294. rfkill switch, hotkey, fan control and backlight control.
  295. config THINKPAD_ACPI
  296. tristate "ThinkPad ACPI Laptop Extras"
  297. depends on ACPI
  298. depends on INPUT
  299. depends on RFKILL || RFKILL = n
  300. depends on ACPI_VIDEO || ACPI_VIDEO = n
  301. depends on BACKLIGHT_CLASS_DEVICE
  302. select HWMON
  303. select NVRAM
  304. select NEW_LEDS
  305. select LEDS_CLASS
  306. ---help---
  307. This is a driver for the IBM and Lenovo ThinkPad laptops. It adds
  308. support for Fn-Fx key combinations, Bluetooth control, video
  309. output switching, ThinkLight control, UltraBay eject and more.
  310. For more information about this driver see
  311. <file:Documentation/laptops/thinkpad-acpi.txt> and
  312. <http://ibm-acpi.sf.net/> .
  313. This driver was formerly known as ibm-acpi.
  314. Extra functionality will be available if the rfkill (CONFIG_RFKILL)
  315. and/or ALSA (CONFIG_SND) subsystems are available in the kernel.
  316. Note that if you want ThinkPad-ACPI to be built-in instead of
  317. modular, ALSA and rfkill will also have to be built-in.
  318. If you have an IBM or Lenovo ThinkPad laptop, say Y or M here.
  319. config THINKPAD_ACPI_ALSA_SUPPORT
  320. bool "Console audio control ALSA interface"
  321. depends on THINKPAD_ACPI
  322. depends on SND
  323. depends on SND = y || THINKPAD_ACPI = SND
  324. default y
  325. ---help---
  326. Enables monitoring of the built-in console audio output control
  327. (headphone and speakers), which is operated by the mute and (in
  328. some ThinkPad models) volume hotkeys.
  329. If this option is enabled, ThinkPad-ACPI will export an ALSA card
  330. with a single read-only mixer control, which should be used for
  331. on-screen-display feedback purposes by the Desktop Environment.
  332. Optionally, the driver will also allow software control (the
  333. ALSA mixer will be made read-write). Please refer to the driver
  334. documentation for details.
  335. All IBM models have both volume and mute control. Newer Lenovo
  336. models only have mute control (the volume hotkeys are just normal
  337. keys and volume control is done through the main HDA mixer).
  338. config THINKPAD_ACPI_DEBUGFACILITIES
  339. bool "Maintainer debug facilities"
  340. depends on THINKPAD_ACPI
  341. default n
  342. ---help---
  343. Enables extra stuff in the thinkpad-acpi which is completely useless
  344. for normal use. Read the driver source to find out what it does.
  345. Say N here, unless you were told by a kernel maintainer to do
  346. otherwise.
  347. config THINKPAD_ACPI_DEBUG
  348. bool "Verbose debug mode"
  349. depends on THINKPAD_ACPI
  350. default n
  351. ---help---
  352. Enables extra debugging information, at the expense of a slightly
  353. increase in driver size.
  354. If you are not sure, say N here.
  355. config THINKPAD_ACPI_UNSAFE_LEDS
  356. bool "Allow control of important LEDs (unsafe)"
  357. depends on THINKPAD_ACPI
  358. default n
  359. ---help---
  360. Overriding LED state on ThinkPads can mask important
  361. firmware alerts (like critical battery condition), or misled
  362. the user into damaging the hardware (undocking or ejecting
  363. the bay while buses are still active), etc.
  364. LED control on the ThinkPad is write-only (with very few
  365. exceptions on very ancient models), which makes it
  366. impossible to know beforehand if important information will
  367. be lost when one changes LED state.
  368. Users that know what they are doing can enable this option
  369. and the driver will allow control of every LED, including
  370. the ones on the dock stations.
  371. Never enable this option on a distribution kernel.
  372. Say N here, unless you are building a kernel for your own
  373. use, and need to control the important firmware LEDs.
  374. config THINKPAD_ACPI_VIDEO
  375. bool "Video output control support"
  376. depends on THINKPAD_ACPI
  377. default y
  378. ---help---
  379. Allows the thinkpad_acpi driver to provide an interface to control
  380. the various video output ports.
  381. This feature often won't work well, depending on ThinkPad model,
  382. display state, video output devices in use, whether there is a X
  383. server running, phase of the moon, and the current mood of
  384. Schroedinger's cat. If you can use X.org's RandR to control
  385. your ThinkPad's video output ports instead of this feature,
  386. don't think twice: do it and say N here to save memory and avoid
  387. bad interactions with X.org.
  388. NOTE: access to this feature is limited to processes with the
  389. CAP_SYS_ADMIN capability, to avoid local DoS issues in platforms
  390. where it interacts badly with X.org.
  391. If you are not sure, say Y here but do try to check if you could
  392. be using X.org RandR instead.
  393. config THINKPAD_ACPI_HOTKEY_POLL
  394. bool "Support NVRAM polling for hot keys"
  395. depends on THINKPAD_ACPI
  396. default y
  397. ---help---
  398. Some thinkpad models benefit from NVRAM polling to detect a few of
  399. the hot key press events. If you know your ThinkPad model does not
  400. need to do NVRAM polling to support any of the hot keys you use,
  401. unselecting this option will save about 1kB of memory.
  402. ThinkPads T40 and newer, R52 and newer, and X31 and newer are
  403. unlikely to need NVRAM polling in their latest BIOS versions.
  404. NVRAM polling can detect at most the following keys: ThinkPad/Access
  405. IBM, Zoom, Switch Display (fn+F7), ThinkLight, Volume up/down/mute,
  406. Brightness up/down, Display Expand (fn+F8), Hibernate (fn+F12).
  407. If you are not sure, say Y here. The driver enables polling only if
  408. it is strictly necessary to do so.
  409. config SENSORS_HDAPS
  410. tristate "Thinkpad Hard Drive Active Protection System (hdaps)"
  411. depends on INPUT && X86
  412. select INPUT_POLLDEV
  413. default n
  414. help
  415. This driver provides support for the IBM Hard Drive Active Protection
  416. System (hdaps), which provides an accelerometer and other misc. data.
  417. ThinkPads starting with the R50, T41, and X40 are supported. The
  418. accelerometer data is readable via sysfs.
  419. This driver also provides an absolute input class device, allowing
  420. the laptop to act as a pinball machine-esque joystick.
  421. If your ThinkPad is not recognized by the driver, please update to latest
  422. BIOS. This is especially the case for some R52 ThinkPads.
  423. Say Y here if you have an applicable laptop and want to experience
  424. the awesome power of hdaps.
  425. config INTEL_MENLOW
  426. tristate "Thermal Management driver for Intel menlow platform"
  427. depends on ACPI_THERMAL
  428. select THERMAL
  429. ---help---
  430. ACPI thermal management enhancement driver on
  431. Intel Menlow platform.
  432. If unsure, say N.
  433. config EEEPC_LAPTOP
  434. tristate "Eee PC Hotkey Driver"
  435. depends on ACPI
  436. depends on INPUT
  437. depends on RFKILL || RFKILL = n
  438. depends on ACPI_VIDEO || ACPI_VIDEO = n
  439. depends on HOTPLUG_PCI
  440. depends on BACKLIGHT_CLASS_DEVICE
  441. select HWMON
  442. select LEDS_CLASS
  443. select NEW_LEDS
  444. select INPUT_SPARSEKMAP
  445. ---help---
  446. This driver supports the Fn-Fx keys on Eee PC laptops.
  447. It also gives access to some extra laptop functionalities like
  448. Bluetooth, backlight and allows powering on/off some other
  449. devices.
  450. If you have an Eee PC laptop, say Y or M here. If this driver
  451. doesn't work on your Eee PC, try eeepc-wmi instead.
  452. config ASUS_WMI
  453. tristate "ASUS WMI Driver"
  454. depends on ACPI_WMI
  455. depends on INPUT
  456. depends on HWMON
  457. depends on BACKLIGHT_CLASS_DEVICE
  458. depends on RFKILL || RFKILL = n
  459. depends on HOTPLUG_PCI
  460. depends on ACPI_VIDEO || ACPI_VIDEO = n
  461. select INPUT_SPARSEKMAP
  462. select LEDS_CLASS
  463. select NEW_LEDS
  464. ---help---
  465. Say Y here if you have a WMI aware Asus laptop (like Eee PCs or new
  466. Asus Notebooks).
  467. To compile this driver as a module, choose M here: the module will
  468. be called asus-wmi.
  469. config ASUS_NB_WMI
  470. tristate "Asus Notebook WMI Driver"
  471. depends on ASUS_WMI
  472. ---help---
  473. This is a driver for newer Asus notebooks. It adds extra features
  474. like wireless radio and bluetooth control, leds, hotkeys, backlight...
  475. For more information, see
  476. <file:Documentation/ABI/testing/sysfs-platform-asus-wmi>
  477. If you have an ACPI-WMI compatible Asus Notebook, say Y or M
  478. here.
  479. config EEEPC_WMI
  480. tristate "Eee PC WMI Driver"
  481. depends on ASUS_WMI
  482. ---help---
  483. This is a driver for newer Eee PC laptops. It adds extra features
  484. like wireless radio and bluetooth control, leds, hotkeys, backlight...
  485. For more information, see
  486. <file:Documentation/ABI/testing/sysfs-platform-asus-wmi>
  487. If you have an ACPI-WMI compatible Eee PC laptop (>= 1000), say Y or M
  488. here.
  489. config ACPI_WMI
  490. tristate "WMI"
  491. depends on ACPI
  492. help
  493. This driver adds support for the ACPI-WMI (Windows Management
  494. Instrumentation) mapper device (PNP0C14) found on some systems.
  495. ACPI-WMI is a proprietary extension to ACPI to expose parts of the
  496. ACPI firmware to userspace - this is done through various vendor
  497. defined methods and data blocks in a PNP0C14 device, which are then
  498. made available for userspace to call.
  499. The implementation of this in Linux currently only exposes this to
  500. other kernel space drivers.
  501. This driver is a required dependency to build the firmware specific
  502. drivers needed on many machines, including Acer and HP laptops.
  503. It is safe to enable this driver even if your DSDT doesn't define
  504. any ACPI-WMI devices.
  505. config MSI_WMI
  506. tristate "MSI WMI extras"
  507. depends on ACPI_WMI
  508. depends on INPUT
  509. depends on BACKLIGHT_CLASS_DEVICE
  510. depends on ACPI_VIDEO || ACPI_VIDEO = n
  511. select INPUT_SPARSEKMAP
  512. help
  513. Say Y here if you want to support WMI-based hotkeys on MSI laptops.
  514. To compile this driver as a module, choose M here: the module will
  515. be called msi-wmi.
  516. config TOPSTAR_LAPTOP
  517. tristate "Topstar Laptop Extras"
  518. depends on ACPI
  519. depends on INPUT
  520. select INPUT_SPARSEKMAP
  521. ---help---
  522. This driver adds support for hotkeys found on Topstar laptops.
  523. If you have a Topstar laptop, say Y or M here.
  524. config ACPI_TOSHIBA
  525. tristate "Toshiba Laptop Extras"
  526. depends on ACPI
  527. depends on ACPI_WMI
  528. select LEDS_CLASS
  529. select NEW_LEDS
  530. depends on BACKLIGHT_CLASS_DEVICE
  531. depends on INPUT
  532. depends on SERIO_I8042 || SERIO_I8042 = n
  533. depends on ACPI_VIDEO || ACPI_VIDEO = n
  534. select INPUT_POLLDEV
  535. select INPUT_SPARSEKMAP
  536. ---help---
  537. This driver adds support for access to certain system settings
  538. on "legacy free" Toshiba laptops. These laptops can be recognized by
  539. their lack of a BIOS setup menu and APM support.
  540. On these machines, all system configuration is handled through the
  541. ACPI. This driver is required for access to controls not covered
  542. by the general ACPI drivers, such as LCD brightness, video output,
  543. etc.
  544. This driver differs from the non-ACPI Toshiba laptop driver (located
  545. under "Processor type and features") in several aspects.
  546. Configuration is accessed by reading and writing text files in the
  547. /proc tree instead of by program interface to /dev. Furthermore, no
  548. power management functions are exposed, as those are handled by the
  549. general ACPI drivers.
  550. More information about this driver is available at
  551. <http://memebeam.org/toys/ToshibaAcpiDriver>.
  552. If you have a legacy free Toshiba laptop (such as the Libretto L1
  553. series), say Y.
  554. config TOSHIBA_BT_RFKILL
  555. tristate "Toshiba Bluetooth RFKill switch support"
  556. depends on ACPI
  557. depends on RFKILL || RFKILL = n
  558. ---help---
  559. This driver adds support for Bluetooth events for the RFKill
  560. switch on modern Toshiba laptops with full ACPI support and
  561. an RFKill switch.
  562. This driver handles RFKill events for the TOS6205 Bluetooth,
  563. and re-enables it when the switch is set back to the 'on'
  564. position.
  565. If you have a modern Toshiba laptop with a Bluetooth and an
  566. RFKill switch (such as the Portege R500), say Y.
  567. config TOSHIBA_HAPS
  568. tristate "Toshiba HDD Active Protection Sensor"
  569. depends on ACPI
  570. ---help---
  571. This driver adds support for the built-in accelerometer
  572. found on recent Toshiba laptops equipped with HID TOS620A
  573. device.
  574. This driver receives ACPI notify events 0x80 when the sensor
  575. detects a sudden move or a harsh vibration, as well as an
  576. ACPI notify event 0x81 whenever the movement or vibration has
  577. been stabilized.
  578. Also provides sysfs entries to get/set the desired protection
  579. level and resetting the HDD protection interface.
  580. If you have a recent Toshiba laptop with a built-in accelerometer
  581. device, say Y.
  582. config ACPI_CMPC
  583. tristate "CMPC Laptop Extras"
  584. depends on X86 && ACPI
  585. depends on RFKILL || RFKILL=n
  586. select INPUT
  587. select BACKLIGHT_CLASS_DEVICE
  588. default n
  589. help
  590. Support for Intel Classmate PC ACPI devices, including some
  591. keys as input device, backlight device, tablet and accelerometer
  592. devices.
  593. config INTEL_SCU_IPC
  594. bool "Intel SCU IPC Support"
  595. depends on X86_INTEL_MID
  596. default y
  597. ---help---
  598. IPC is used to bridge the communications between kernel and SCU on
  599. some embedded Intel x86 platforms. This is not needed for PC-type
  600. machines.
  601. config INTEL_SCU_IPC_UTIL
  602. tristate "Intel SCU IPC utility driver"
  603. depends on INTEL_SCU_IPC
  604. default y
  605. ---help---
  606. The IPC Util driver provides an interface with the SCU enabling
  607. low level access for debug work and updating the firmware. Say
  608. N unless you will be doing this on an Intel MID platform.
  609. config GPIO_INTEL_PMIC
  610. bool "Intel PMIC GPIO support"
  611. depends on INTEL_SCU_IPC && GPIOLIB
  612. ---help---
  613. Say Y here to support GPIO via the SCU IPC interface
  614. on Intel MID platforms.
  615. config INTEL_MID_POWER_BUTTON
  616. tristate "power button driver for Intel MID platforms"
  617. depends on INTEL_SCU_IPC && INPUT
  618. help
  619. This driver handles the power button on the Intel MID platforms.
  620. If unsure, say N.
  621. config INTEL_MFLD_THERMAL
  622. tristate "Thermal driver for Intel Medfield platform"
  623. depends on MFD_INTEL_MSIC && THERMAL
  624. help
  625. Say Y here to enable thermal driver support for the Intel Medfield
  626. platform.
  627. config INTEL_IPS
  628. tristate "Intel Intelligent Power Sharing"
  629. depends on ACPI
  630. ---help---
  631. Intel Calpella platforms support dynamic power sharing between the
  632. CPU and GPU, maximizing performance in a given TDP. This driver,
  633. along with the CPU frequency and i915 drivers, provides that
  634. functionality. If in doubt, say Y here; it will only load on
  635. supported platforms.
  636. config INTEL_IMR
  637. bool "Intel Isolated Memory Region support"
  638. default n
  639. depends on X86_INTEL_QUARK && IOSF_MBI
  640. ---help---
  641. This option provides a means to manipulate Isolated Memory Regions.
  642. IMRs are a set of registers that define read and write access masks
  643. to prohibit certain system agents from accessing memory with 1 KiB
  644. granularity.
  645. IMRs make it possible to control read/write access to an address
  646. by hardware agents inside the SoC. Read and write masks can be
  647. defined for:
  648. - eSRAM flush
  649. - Dirty CPU snoop (write only)
  650. - RMU access
  651. - PCI Virtual Channel 0/Virtual Channel 1
  652. - SMM mode
  653. - Non SMM mode
  654. Quark contains a set of eight IMR registers and makes use of those
  655. registers during its bootup process.
  656. If you are running on a Galileo/Quark say Y here.
  657. config IBM_RTL
  658. tristate "Device driver to enable PRTL support"
  659. depends on X86 && PCI
  660. ---help---
  661. Enable support for IBM Premium Real Time Mode (PRTM).
  662. This module will allow you the enter and exit PRTM in the BIOS via
  663. sysfs on platforms that support this feature. System in PRTM will
  664. not receive CPU-generated SMIs for recoverable errors. Use of this
  665. feature without proper support may void your hardware warranty.
  666. If the proper BIOS support is found the driver will load and create
  667. /sys/devices/system/ibm_rtl/. The "state" variable will indicate
  668. whether or not the BIOS is in PRTM.
  669. state = 0 (BIOS SMIs on)
  670. state = 1 (BIOS SMIs off)
  671. config XO1_RFKILL
  672. tristate "OLPC XO-1 software RF kill switch"
  673. depends on OLPC || COMPILE_TEST
  674. depends on RFKILL
  675. ---help---
  676. Support for enabling/disabling the WLAN interface on the OLPC XO-1
  677. laptop.
  678. config XO15_EBOOK
  679. tristate "OLPC XO-1.5 ebook switch"
  680. depends on OLPC || COMPILE_TEST
  681. depends on ACPI && INPUT
  682. ---help---
  683. Support for the ebook switch on the OLPC XO-1.5 laptop.
  684. This switch is triggered as the screen is rotated and folded down to
  685. convert the device into ebook form.
  686. config SAMSUNG_LAPTOP
  687. tristate "Samsung Laptop driver"
  688. depends on X86
  689. depends on RFKILL || RFKILL = n
  690. depends on ACPI_VIDEO || ACPI_VIDEO = n
  691. depends on BACKLIGHT_CLASS_DEVICE
  692. select LEDS_CLASS
  693. select NEW_LEDS
  694. ---help---
  695. This module implements a driver for a wide range of different
  696. Samsung laptops. It offers control over the different
  697. function keys, wireless LED, LCD backlight level.
  698. It may also provide some sysfs files described in
  699. <file:Documentation/ABI/testing/sysfs-platform-samsung-laptop>
  700. To compile this driver as a module, choose M here: the module
  701. will be called samsung-laptop.
  702. config MXM_WMI
  703. tristate "WMI support for MXM Laptop Graphics"
  704. depends on ACPI_WMI
  705. ---help---
  706. MXM is a standard for laptop graphics cards, the WMI interface
  707. is required for switchable nvidia graphics machines
  708. config INTEL_OAKTRAIL
  709. tristate "Intel Oaktrail Platform Extras"
  710. depends on ACPI
  711. depends on ACPI_VIDEO || ACPI_VIDEO = n
  712. depends on RFKILL && BACKLIGHT_CLASS_DEVICE && ACPI
  713. ---help---
  714. Intel Oaktrail platform need this driver to provide interfaces to
  715. enable/disable the Camera, WiFi, BT etc. devices. If in doubt, say Y
  716. here; it will only load on supported platforms.
  717. config SAMSUNG_Q10
  718. tristate "Samsung Q10 Extras"
  719. depends on ACPI
  720. select BACKLIGHT_CLASS_DEVICE
  721. ---help---
  722. This driver provides support for backlight control on Samsung Q10
  723. and related laptops, including Dell Latitude X200.
  724. config APPLE_GMUX
  725. tristate "Apple Gmux Driver"
  726. depends on ACPI
  727. depends on PNP
  728. depends on BACKLIGHT_CLASS_DEVICE
  729. depends on BACKLIGHT_APPLE=n || BACKLIGHT_APPLE
  730. depends on ACPI_VIDEO=n || ACPI_VIDEO
  731. ---help---
  732. This driver provides support for the gmux device found on many
  733. Apple laptops, which controls the display mux for the hybrid
  734. graphics as well as the backlight. Currently only backlight
  735. control is supported by the driver.
  736. config INTEL_RST
  737. tristate "Intel Rapid Start Technology Driver"
  738. depends on ACPI
  739. ---help---
  740. This driver provides support for modifying paramaters on systems
  741. equipped with Intel's Rapid Start Technology. When put in an ACPI
  742. sleep state, these devices will wake after either a configured
  743. timeout or when the system battery reaches a critical state,
  744. automatically copying memory contents to disk. On resume, the
  745. firmware will copy the memory contents back to RAM and resume the OS
  746. as usual.
  747. config INTEL_SMARTCONNECT
  748. tristate "Intel Smart Connect disabling driver"
  749. depends on ACPI
  750. ---help---
  751. Intel Smart Connect is a technology intended to permit devices to
  752. update state by resuming for a short period of time at regular
  753. intervals. If a user enables this functionality under Windows and
  754. then reboots into Linux, the system may remain configured to resume
  755. on suspend. In the absence of any userspace to support it, the system
  756. will then remain awake until something triggers another suspend.
  757. This driver checks to determine whether the device has Intel Smart
  758. Connect enabled, and if so disables it.
  759. config PVPANIC
  760. tristate "pvpanic device support"
  761. depends on ACPI
  762. ---help---
  763. This driver provides support for the pvpanic device. pvpanic is
  764. a paravirtualized device provided by QEMU; it lets a virtual machine
  765. (guest) communicate panic events to the host.
  766. config INTEL_PMC_IPC
  767. tristate "Intel PMC IPC Driver"
  768. ---help---
  769. This driver provides support for PMC control on some Intel platforms.
  770. The PMC is an ARC processor which defines IPC commands for communication
  771. with other entities in the CPU.
  772. config SURFACE_PRO3_BUTTON
  773. tristate "Power/home/volume buttons driver for Microsoft Surface Pro 3 tablet"
  774. depends on ACPI && INPUT
  775. ---help---
  776. This driver handles the power/home/volume buttons on the Microsoft Surface Pro 3 tablet.
  777. endif # X86_PLATFORM_DEVICES