Kconfig 18 KB

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