Kconfig 27 KB

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