Kconfig 25 KB

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