Kconfig 25 KB

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