Kconfig 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530
  1. #
  2. # Input misc drivers configuration
  3. #
  4. menuconfig INPUT_MISC
  5. bool "Miscellaneous devices"
  6. help
  7. Say Y here, and a list of miscellaneous input drivers will be displayed.
  8. Everything that didn't fit into the other categories is here. This option
  9. doesn't affect the kernel.
  10. If unsure, say Y.
  11. if INPUT_MISC
  12. config INPUT_88PM860X_ONKEY
  13. tristate "88PM860x ONKEY support"
  14. depends on MFD_88PM860X
  15. help
  16. Support the ONKEY of Marvell 88PM860x PMICs as an input device
  17. reporting power button status.
  18. To compile this driver as a module, choose M here: the module
  19. will be called 88pm860x_onkey.
  20. config INPUT_AB8500_PONKEY
  21. tristate "AB8500 Pon (PowerOn) Key"
  22. depends on AB8500_CORE
  23. help
  24. Say Y here to use the PowerOn Key for ST-Ericsson's AB8500
  25. Mix-Sig PMIC.
  26. To compile this driver as a module, choose M here: the module
  27. will be called ab8500-ponkey.
  28. config INPUT_AD714X
  29. tristate "Analog Devices AD714x Capacitance Touch Sensor"
  30. help
  31. Say Y here if you want to support an AD7142/3/7/8/7A touch sensor.
  32. You should select a bus connection too.
  33. To compile this driver as a module, choose M here: the
  34. module will be called ad714x.
  35. config INPUT_AD714X_I2C
  36. tristate "support I2C bus connection"
  37. depends on INPUT_AD714X && I2C
  38. default y
  39. help
  40. Say Y here if you have AD7142/AD7147 hooked to an I2C bus.
  41. To compile this driver as a module, choose M here: the
  42. module will be called ad714x-i2c.
  43. config INPUT_AD714X_SPI
  44. tristate "support SPI bus connection"
  45. depends on INPUT_AD714X && SPI
  46. default y
  47. help
  48. Say Y here if you have AD7142/AD7147 hooked to a SPI bus.
  49. To compile this driver as a module, choose M here: the
  50. module will be called ad714x-spi.
  51. config INPUT_PCSPKR
  52. tristate "PC Speaker support"
  53. depends on PCSPKR_PLATFORM
  54. help
  55. Say Y here if you want the standard PC Speaker to be used for
  56. bells and whistles.
  57. If unsure, say Y.
  58. To compile this driver as a module, choose M here: the
  59. module will be called pcspkr.
  60. config INPUT_SPARCSPKR
  61. tristate "SPARC Speaker support"
  62. depends on PCI && SPARC64
  63. help
  64. Say Y here if you want the standard Speaker on Sparc PCI systems
  65. to be used for bells and whistles.
  66. If unsure, say Y.
  67. To compile this driver as a module, choose M here: the
  68. module will be called sparcspkr.
  69. config INPUT_M68K_BEEP
  70. tristate "M68k Beeper support"
  71. depends on M68K
  72. config INPUT_MAX8925_ONKEY
  73. tristate "MAX8925 ONKEY support"
  74. depends on MFD_MAX8925
  75. help
  76. Support the ONKEY of MAX8925 PMICs as an input device
  77. reporting power button status.
  78. To compile this driver as a module, choose M here: the module
  79. will be called max8925_onkey.
  80. config INPUT_MMA8450
  81. tristate "MMA8450 - Freescale's 3-Axis, 8/12-bit Digital Accelerometer"
  82. depends on I2C
  83. select INPUT_POLLDEV
  84. help
  85. Say Y here if you want to support Freescale's MMA8450 Accelerometer
  86. through I2C interface.
  87. To compile this driver as a module, choose M here: the
  88. module will be called mma8450.
  89. config INPUT_MPU3050
  90. tristate "MPU3050 Triaxial gyroscope sensor"
  91. depends on I2C
  92. help
  93. Say Y here if you want to support InvenSense MPU3050
  94. connected via an I2C bus.
  95. To compile this driver as a module, choose M here: the
  96. module will be called mpu3050.
  97. config INPUT_APANEL
  98. tristate "Fujitsu Lifebook Application Panel buttons"
  99. depends on X86 && I2C && LEDS_CLASS
  100. select INPUT_POLLDEV
  101. select CHECK_SIGNATURE
  102. help
  103. Say Y here for support of the Application Panel buttons, used on
  104. Fujitsu Lifebook. These are attached to the mainboard through
  105. an SMBus interface managed by the I2C Intel ICH (i801) driver,
  106. which you should also build for this kernel.
  107. To compile this driver as a module, choose M here: the module will
  108. be called apanel.
  109. config INPUT_IXP4XX_BEEPER
  110. tristate "IXP4XX Beeper support"
  111. depends on ARCH_IXP4XX
  112. help
  113. If you say yes here, you can connect a beeper to the
  114. ixp4xx gpio pins. This is used by the LinkSys NSLU2.
  115. If unsure, say Y.
  116. To compile this driver as a module, choose M here: the
  117. module will be called ixp4xx-beeper.
  118. config INPUT_COBALT_BTNS
  119. tristate "Cobalt button interface"
  120. depends on MIPS_COBALT
  121. select INPUT_POLLDEV
  122. help
  123. Say Y here if you want to support MIPS Cobalt button interface.
  124. To compile this driver as a module, choose M here: the
  125. module will be called cobalt_btns.
  126. config INPUT_WISTRON_BTNS
  127. tristate "x86 Wistron laptop button interface"
  128. depends on X86 && !X86_64
  129. select INPUT_POLLDEV
  130. select INPUT_SPARSEKMAP
  131. select NEW_LEDS
  132. select LEDS_CLASS
  133. select CHECK_SIGNATURE
  134. help
  135. Say Y here for support of Wistron laptop button interfaces, used on
  136. laptops of various brands, including Acer and Fujitsu-Siemens. If
  137. available, mail and wifi LEDs will be controllable via /sys/class/leds.
  138. To compile this driver as a module, choose M here: the module will
  139. be called wistron_btns.
  140. config INPUT_ATLAS_BTNS
  141. tristate "x86 Atlas button interface"
  142. depends on X86 && ACPI
  143. help
  144. Say Y here for support of Atlas wallmount touchscreen buttons.
  145. The events will show up as scancodes F1 through F9 via evdev.
  146. To compile this driver as a module, choose M here: the module will
  147. be called atlas_btns.
  148. config INPUT_ATI_REMOTE
  149. tristate "ATI / X10 USB RF remote control"
  150. depends on USB_ARCH_HAS_HCD
  151. select USB
  152. help
  153. Say Y here if you want to use an ATI or X10 "Lola" USB remote control.
  154. These are RF remotes with USB receivers.
  155. The ATI remote comes with many of ATI's All-In-Wonder video cards.
  156. The X10 "Lola" remote is available at:
  157. <http://www.x10.com/products/lola_sg1.htm>
  158. This driver provides mouse pointer, left and right mouse buttons,
  159. and maps all the other remote buttons to keypress events.
  160. To compile this driver as a module, choose M here: the module will be
  161. called ati_remote.
  162. config INPUT_ATI_REMOTE2
  163. tristate "ATI / Philips USB RF remote control"
  164. depends on USB_ARCH_HAS_HCD
  165. select USB
  166. help
  167. Say Y here if you want to use an ATI or Philips USB RF remote control.
  168. These are RF remotes with USB receivers.
  169. ATI Remote Wonder II comes with some ATI's All-In-Wonder video cards
  170. and is also available as a separate product.
  171. This driver provides mouse pointer, left and right mouse buttons,
  172. and maps all the other remote buttons to keypress events.
  173. To compile this driver as a module, choose M here: the module will be
  174. called ati_remote2.
  175. config INPUT_KEYSPAN_REMOTE
  176. tristate "Keyspan DMR USB remote control (EXPERIMENTAL)"
  177. depends on EXPERIMENTAL
  178. depends on USB_ARCH_HAS_HCD
  179. select USB
  180. help
  181. Say Y here if you want to use a Keyspan DMR USB remote control.
  182. Currently only the UIA-11 type of receiver has been tested. The tag
  183. on the receiver that connects to the USB port should have a P/N that
  184. will tell you what type of DMR you have. The UIA-10 type is not
  185. supported at this time. This driver maps all buttons to keypress
  186. events.
  187. To compile this driver as a module, choose M here: the module will
  188. be called keyspan_remote.
  189. config INPUT_KXTJ9
  190. tristate "Kionix KXTJ9 tri-axis digital accelerometer"
  191. depends on I2C
  192. help
  193. Say Y here to enable support for the Kionix KXTJ9 digital tri-axis
  194. accelerometer.
  195. To compile this driver as a module, choose M here: the module will
  196. be called kxtj9.
  197. config INPUT_KXTJ9_POLLED_MODE
  198. bool "Enable polling mode support"
  199. depends on INPUT_KXTJ9
  200. select INPUT_POLLDEV
  201. help
  202. Say Y here if you need accelerometer to work in polling mode.
  203. config INPUT_POWERMATE
  204. tristate "Griffin PowerMate and Contour Jog support"
  205. depends on USB_ARCH_HAS_HCD
  206. select USB
  207. help
  208. Say Y here if you want to use Griffin PowerMate or Contour Jog devices.
  209. These are aluminum dials which can measure clockwise and anticlockwise
  210. rotation. The dial also acts as a pushbutton. The base contains an LED
  211. which can be instructed to pulse or to switch to a particular intensity.
  212. You can download userspace tools from
  213. <http://sowerbutts.com/powermate/>.
  214. To compile this driver as a module, choose M here: the
  215. module will be called powermate.
  216. config INPUT_YEALINK
  217. tristate "Yealink usb-p1k voip phone"
  218. depends on EXPERIMENTAL
  219. depends on USB_ARCH_HAS_HCD
  220. select USB
  221. help
  222. Say Y here if you want to enable keyboard and LCD functions of the
  223. Yealink usb-p1k usb phones. The audio part is enabled by the generic
  224. usb sound driver, so you might want to enable that as well.
  225. For information about how to use these additional functions, see
  226. <file:Documentation/input/yealink.txt>.
  227. To compile this driver as a module, choose M here: the module will be
  228. called yealink.
  229. config INPUT_CM109
  230. tristate "C-Media CM109 USB I/O Controller"
  231. depends on EXPERIMENTAL
  232. depends on USB_ARCH_HAS_HCD
  233. select USB
  234. help
  235. Say Y here if you want to enable keyboard and buzzer functions of the
  236. C-Media CM109 usb phones. The audio part is enabled by the generic
  237. usb sound driver, so you might want to enable that as well.
  238. To compile this driver as a module, choose M here: the module will be
  239. called cm109.
  240. config INPUT_TWL4030_PWRBUTTON
  241. tristate "TWL4030 Power button Driver"
  242. depends on TWL4030_CORE
  243. help
  244. Say Y here if you want to enable power key reporting via the
  245. TWL4030 family of chips.
  246. To compile this driver as a module, choose M here. The module will
  247. be called twl4030_pwrbutton.
  248. config INPUT_TWL4030_VIBRA
  249. tristate "Support for TWL4030 Vibrator"
  250. depends on TWL4030_CORE
  251. select MFD_TWL4030_AUDIO
  252. select INPUT_FF_MEMLESS
  253. help
  254. This option enables support for TWL4030 Vibrator Driver.
  255. To compile this driver as a module, choose M here. The module will
  256. be called twl4030_vibra.
  257. config INPUT_TWL6040_VIBRA
  258. tristate "Support for TWL6040 Vibrator"
  259. depends on TWL4030_CORE
  260. select TWL6040_CORE
  261. select INPUT_FF_MEMLESS
  262. help
  263. This option enables support for TWL6040 Vibrator Driver.
  264. To compile this driver as a module, choose M here. The module will
  265. be called twl6040_vibra.
  266. config INPUT_UINPUT
  267. tristate "User level driver support"
  268. help
  269. Say Y here if you want to support user level drivers for input
  270. subsystem accessible under char device 10:223 - /dev/input/uinput.
  271. To compile this driver as a module, choose M here: the
  272. module will be called uinput.
  273. config INPUT_SGI_BTNS
  274. tristate "SGI Indy/O2 volume button interface"
  275. depends on SGI_IP22 || SGI_IP32
  276. select INPUT_POLLDEV
  277. help
  278. Say Y here if you want to support SGI Indy/O2 volume button interface.
  279. To compile this driver as a module, choose M here: the
  280. module will be called sgi_btns.
  281. config HP_SDC_RTC
  282. tristate "HP SDC Real Time Clock"
  283. depends on (GSC || HP300) && SERIO
  284. select HP_SDC
  285. help
  286. Say Y here if you want to support the built-in real time clock
  287. of the HP SDC controller.
  288. config INPUT_PCF50633_PMU
  289. tristate "PCF50633 PMU events"
  290. depends on MFD_PCF50633
  291. help
  292. Say Y to include support for delivering PMU events via input
  293. layer on NXP PCF50633.
  294. config INPUT_PCF8574
  295. tristate "PCF8574 Keypad input device"
  296. depends on I2C && EXPERIMENTAL
  297. help
  298. Say Y here if you want to support a keypad connetced via I2C
  299. with a PCF8574.
  300. To compile this driver as a module, choose M here: the
  301. module will be called pcf8574_keypad.
  302. config INPUT_PWM_BEEPER
  303. tristate "PWM beeper support"
  304. depends on HAVE_PWM
  305. help
  306. Say Y here to get support for PWM based beeper devices.
  307. If unsure, say N.
  308. To compile this driver as a module, choose M here: the module will be
  309. called pwm-beeper.
  310. config INPUT_PMIC8XXX_PWRKEY
  311. tristate "PMIC8XXX power key support"
  312. depends on MFD_PM8XXX
  313. help
  314. Say Y here if you want support for the PMIC8XXX power key.
  315. If unsure, say N.
  316. To compile this driver as a module, choose M here: the
  317. module will be called pmic8xxx-pwrkey.
  318. config INPUT_GPIO_ROTARY_ENCODER
  319. tristate "Rotary encoders connected to GPIO pins"
  320. depends on GPIOLIB && GENERIC_GPIO
  321. help
  322. Say Y here to add support for rotary encoders connected to GPIO lines.
  323. Check file:Documentation/input/rotary-encoder.txt for more
  324. information.
  325. To compile this driver as a module, choose M here: the
  326. module will be called rotary_encoder.
  327. config INPUT_RB532_BUTTON
  328. tristate "Mikrotik Routerboard 532 button interface"
  329. depends on MIKROTIK_RB532
  330. depends on GPIOLIB && GENERIC_GPIO
  331. select INPUT_POLLDEV
  332. help
  333. Say Y here if you want support for the S1 button built into
  334. Mikrotik's Routerboard 532.
  335. To compile this driver as a module, choose M here: the
  336. module will be called rb532_button.
  337. config INPUT_DM355EVM
  338. tristate "TI DaVinci DM355 EVM Keypad and IR Remote"
  339. depends on MFD_DM355EVM_MSP
  340. select INPUT_SPARSEKMAP
  341. help
  342. Supports the pushbuttons and IR remote used with
  343. the DM355 EVM board.
  344. To compile this driver as a module, choose M here: the
  345. module will be called dm355evm_keys.
  346. config INPUT_BFIN_ROTARY
  347. tristate "Blackfin Rotary support"
  348. depends on BF54x || BF52x
  349. help
  350. Say Y here if you want to use the Blackfin Rotary.
  351. To compile this driver as a module, choose M here: the
  352. module will be called bfin-rotary.
  353. config INPUT_WM831X_ON
  354. tristate "WM831X ON pin"
  355. depends on MFD_WM831X
  356. help
  357. Support the ON pin of WM831X PMICs as an input device
  358. reporting power button status.
  359. To compile this driver as a module, choose M here: the module
  360. will be called wm831x_on.
  361. config INPUT_PCAP
  362. tristate "Motorola EZX PCAP misc input events"
  363. depends on EZX_PCAP
  364. help
  365. Say Y here if you want to use Power key and Headphone button
  366. on Motorola EZX phones.
  367. To compile this driver as a module, choose M here: the
  368. module will be called pcap_keys.
  369. config INPUT_ADXL34X
  370. tristate "Analog Devices ADXL34x Three-Axis Digital Accelerometer"
  371. default n
  372. help
  373. Say Y here if you have a Accelerometer interface using the
  374. ADXL345/6 controller, and your board-specific initialization
  375. code includes that in its table of devices.
  376. This driver can use either I2C or SPI communication to the
  377. ADXL345/6 controller. Select the appropriate method for
  378. your system.
  379. If unsure, say N (but it's safe to say "Y").
  380. To compile this driver as a module, choose M here: the
  381. module will be called adxl34x.
  382. config INPUT_ADXL34X_I2C
  383. tristate "support I2C bus connection"
  384. depends on INPUT_ADXL34X && I2C
  385. default y
  386. help
  387. Say Y here if you have ADXL345/6 hooked to an I2C bus.
  388. To compile this driver as a module, choose M here: the
  389. module will be called adxl34x-i2c.
  390. config INPUT_ADXL34X_SPI
  391. tristate "support SPI bus connection"
  392. depends on INPUT_ADXL34X && SPI
  393. default y
  394. help
  395. Say Y here if you have ADXL345/6 hooked to a SPI bus.
  396. To compile this driver as a module, choose M here: the
  397. module will be called adxl34x-spi.
  398. config INPUT_CMA3000
  399. tristate "VTI CMA3000 Tri-axis accelerometer"
  400. help
  401. Say Y here if you want to use VTI CMA3000_D0x Accelerometer
  402. driver
  403. This driver currently only supports I2C interface to the
  404. controller. Also select the I2C method.
  405. If unsure, say N
  406. To compile this driver as a module, choose M here: the
  407. module will be called cma3000_d0x.
  408. config INPUT_CMA3000_I2C
  409. tristate "Support I2C bus connection"
  410. depends on INPUT_CMA3000 && I2C
  411. help
  412. Say Y here if you want to use VTI CMA3000_D0x Accelerometer
  413. through I2C interface.
  414. To compile this driver as a module, choose M here: the
  415. module will be called cma3000_d0x_i2c.
  416. config INPUT_XEN_KBDDEV_FRONTEND
  417. tristate "Xen virtual keyboard and mouse support"
  418. depends on XEN_FBDEV_FRONTEND
  419. default y
  420. select XEN_XENBUS_FRONTEND
  421. help
  422. This driver implements the front-end of the Xen virtual
  423. keyboard and mouse device driver. It communicates with a back-end
  424. in another domain.
  425. To compile this driver as a module, choose M here: the
  426. module will be called xen-kbdfront.
  427. endif