Kconfig 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559
  1. #
  2. # HID driver configuration
  3. #
  4. menuconfig HID_SUPPORT
  5. bool "HID Devices"
  6. depends on INPUT
  7. default y
  8. ---help---
  9. Say Y here to get to see options for various computer-human interface
  10. device drivers. This option alone does not add any kernel code.
  11. If you say N, all options in this submenu will be skipped and disabled.
  12. if HID_SUPPORT
  13. config HID
  14. tristate "Generic HID support"
  15. depends on INPUT
  16. default y
  17. ---help---
  18. A human interface device (HID) is a type of computer device that
  19. interacts directly with and takes input from humans. The term "HID"
  20. most commonly used to refer to the USB-HID specification, but other
  21. devices (such as, but not strictly limited to, Bluetooth) are
  22. designed using HID specification (this involves certain keyboards,
  23. mice, tablets, etc). This option compiles into kernel the generic
  24. HID layer code (parser, usages, etc.), which can then be used by
  25. transport-specific HID implementation (like USB or Bluetooth).
  26. For docs and specs, see http://www.usb.org/developers/hidpage/
  27. If unsure, say Y.
  28. config HIDRAW
  29. bool "/dev/hidraw raw HID device support"
  30. depends on HID
  31. ---help---
  32. Say Y here if you want to support HID devices (from the USB
  33. specification standpoint) that aren't strictly user interface
  34. devices, like monitor controls and Uninterruptable Power Supplies.
  35. This module supports these devices separately using a separate
  36. event interface on /dev/hidraw.
  37. There is also a /dev/hiddev configuration option in the USB HID
  38. configuration menu. In comparison to hiddev, this device does not process
  39. the hid events at all (no parsing, no lookups). This lets applications
  40. to work on raw hid events when they want to, and avoid using transport-specific
  41. userspace libhid/libusb libraries.
  42. If unsure, say Y.
  43. source "drivers/hid/usbhid/Kconfig"
  44. menu "Special HID drivers"
  45. depends on HID
  46. config HID_3M_PCT
  47. tristate "3M PCT touchscreen"
  48. depends on USB_HID
  49. ---help---
  50. Support for 3M PCT touch screens.
  51. config HID_A4TECH
  52. tristate "A4 tech mice" if EMBEDDED
  53. depends on USB_HID
  54. default !EMBEDDED
  55. ---help---
  56. Support for A4 tech X5 and WOP-35 / Trust 450L mice.
  57. config HID_ACRUX_FF
  58. tristate "ACRUX force feedback"
  59. depends on USB_HID
  60. select INPUT_FF_MEMLESS
  61. ---help---
  62. Say Y here if you want to enable force feedback support for ACRUX
  63. game controllers.
  64. config HID_APPLE
  65. tristate "Apple {i,Power,Mac}Books" if EMBEDDED
  66. depends on (USB_HID || BT_HIDP)
  67. default !EMBEDDED
  68. ---help---
  69. Support for some Apple devices which less or more break
  70. HID specification.
  71. Say Y here if you want support for keyboards of Apple iBooks, PowerBooks,
  72. MacBooks, MacBook Pros and Apple Aluminum.
  73. config HID_BELKIN
  74. tristate "Belkin Flip KVM and Wireless keyboard" if EMBEDDED
  75. depends on USB_HID
  76. default !EMBEDDED
  77. ---help---
  78. Support for Belkin Flip KVM and Wireless keyboard.
  79. config HID_CANDO
  80. tristate "Cando dual touch panel"
  81. depends on USB_HID
  82. ---help---
  83. Support for Cando dual touch panel.
  84. config HID_CHERRY
  85. tristate "Cherry Cymotion keyboard" if EMBEDDED
  86. depends on USB_HID
  87. default !EMBEDDED
  88. ---help---
  89. Support for Cherry Cymotion keyboard.
  90. config HID_CHICONY
  91. tristate "Chicony Tactical pad" if EMBEDDED
  92. depends on USB_HID
  93. default !EMBEDDED
  94. ---help---
  95. Support for Chicony Tactical pad.
  96. config HID_PRODIKEYS
  97. tristate "Prodikeys PC-MIDI Keyboard support"
  98. depends on USB_HID && SND
  99. select SND_RAWMIDI
  100. ---help---
  101. Support for Prodikeys PC-MIDI Keyboard device support.
  102. Say Y here to enable support for this device.
  103. - Prodikeys PC-MIDI keyboard.
  104. The Prodikeys PC-MIDI acts as a USB Audio device, with one MIDI
  105. input and one MIDI output. These MIDI jacks appear as
  106. a sound "card" in the ALSA sound system.
  107. Note: if you say N here, this device will still function as a basic
  108. multimedia keyboard, but will lack support for the musical keyboard
  109. and some additional multimedia keys.
  110. config HID_CYPRESS
  111. tristate "Cypress mouse and barcode readers" if EMBEDDED
  112. depends on USB_HID
  113. default !EMBEDDED
  114. ---help---
  115. Support for cypress mouse and barcode readers.
  116. config HID_DRAGONRISE
  117. tristate "DragonRise Inc. game controller"
  118. depends on USB_HID
  119. ---help---
  120. Say Y here if you have DragonRise Inc. game controllers.
  121. These might be branded as:
  122. - Tesun USB-703
  123. - Media-tech MT1504 "Rogue"
  124. - DVTech JS19 "Gear"
  125. - Defender Game Master
  126. config DRAGONRISE_FF
  127. bool "DragonRise Inc. force feedback"
  128. depends on HID_DRAGONRISE
  129. select INPUT_FF_MEMLESS
  130. ---help---
  131. Say Y here if you want to enable force feedback support for DragonRise Inc.
  132. game controllers.
  133. config HID_EMS_FF
  134. tristate "EMS Production Inc. force feedback support"
  135. depends on USB_HID
  136. select INPUT_FF_MEMLESS
  137. ---help---
  138. Say Y here if you want to enable force feedback support for devices by
  139. EMS Production Ltd.
  140. Currently the following devices are known to be supported:
  141. - Trio Linker Plus II
  142. config HID_EGALAX
  143. tristate "eGalax multi-touch panel"
  144. depends on USB_HID
  145. ---help---
  146. Support for the eGalax dual-touch panels, including the
  147. Joojoo and Wetab tablets.
  148. config HID_ELECOM
  149. tristate "ELECOM BM084 bluetooth mouse"
  150. depends on BT_HIDP
  151. ---help---
  152. Support for the ELECOM BM084 (bluetooth mouse).
  153. config HID_EZKEY
  154. tristate "Ezkey BTC 8193 keyboard" if EMBEDDED
  155. depends on USB_HID
  156. default !EMBEDDED
  157. ---help---
  158. Support for Ezkey BTC 8193 keyboard.
  159. config HID_KYE
  160. tristate "Kye/Genius Ergo Mouse" if EMBEDDED
  161. depends on USB_HID
  162. default !EMBEDDED
  163. ---help---
  164. Support for Kye/Genius Ergo Mouse.
  165. config HID_UCLOGIC
  166. tristate "UC-Logic"
  167. depends on USB_HID
  168. ---help---
  169. Support for UC-Logic tablets.
  170. config HID_WALTOP
  171. tristate "Waltop"
  172. depends on USB_HID
  173. ---help---
  174. Support for Waltop tablets.
  175. config HID_GYRATION
  176. tristate "Gyration remote control"
  177. depends on USB_HID
  178. ---help---
  179. Support for Gyration remote control.
  180. config HID_TWINHAN
  181. tristate "Twinhan IR remote control"
  182. depends on USB_HID
  183. ---help---
  184. Support for Twinhan IR remote control.
  185. config HID_KENSINGTON
  186. tristate "Kensington Slimblade Trackball" if EMBEDDED
  187. depends on USB_HID
  188. default !EMBEDDED
  189. ---help---
  190. Support for Kensington Slimblade Trackball.
  191. config HID_LOGITECH
  192. tristate "Logitech devices" if EMBEDDED
  193. depends on USB_HID
  194. default !EMBEDDED
  195. ---help---
  196. Support for Logitech devices that are not fully compliant with HID standard.
  197. config LOGITECH_FF
  198. bool "Logitech force feedback support"
  199. depends on HID_LOGITECH
  200. select INPUT_FF_MEMLESS
  201. help
  202. Say Y here if you have one of these devices:
  203. - Logitech WingMan Cordless RumblePad
  204. - Logitech WingMan Cordless RumblePad 2
  205. - Logitech WingMan Force 3D
  206. - Logitech Formula Force EX
  207. - Logitech WingMan Formula Force GP
  208. - Logitech MOMO Force wheel
  209. and if you want to enable force feedback for them.
  210. Note: if you say N here, this device will still be supported, but without
  211. force feedback.
  212. config LOGIRUMBLEPAD2_FF
  213. bool "Logitech RumblePad/Rumblepad 2 force feedback support"
  214. depends on HID_LOGITECH
  215. select INPUT_FF_MEMLESS
  216. help
  217. Say Y here if you want to enable force feedback support for Logitech
  218. RumblePad and Rumblepad 2 devices.
  219. config LOGIG940_FF
  220. bool "Logitech Flight System G940 force feedback support"
  221. depends on HID_LOGITECH
  222. select INPUT_FF_MEMLESS
  223. help
  224. Say Y here if you want to enable force feedback support for Logitech
  225. Flight System G940 devices.
  226. config LOGIWII_FF
  227. bool "Logitech Speed Force Wireless force feedback support"
  228. depends on HID_LOGITECH
  229. select INPUT_FF_MEMLESS
  230. help
  231. Say Y here if you want to enable force feedback support for Logitech
  232. Speed Force Wireless (Wii) devices.
  233. config HID_MAGICMOUSE
  234. tristate "Apple MagicMouse multi-touch support"
  235. depends on BT_HIDP
  236. ---help---
  237. Support for the Apple Magic Mouse multi-touch.
  238. Say Y here if you want support for the multi-touch features of the
  239. Apple Wireless "Magic" Mouse.
  240. config HID_MICROSOFT
  241. tristate "Microsoft non-fully HID-compliant devices" if EMBEDDED
  242. depends on USB_HID
  243. default !EMBEDDED
  244. ---help---
  245. Support for Microsoft devices that are not fully compliant with HID standard.
  246. config HID_MOSART
  247. tristate "MosArt dual-touch panels"
  248. depends on USB_HID
  249. ---help---
  250. Support for MosArt dual-touch panels.
  251. config HID_MONTEREY
  252. tristate "Monterey Genius KB29E keyboard" if EMBEDDED
  253. depends on USB_HID
  254. default !EMBEDDED
  255. ---help---
  256. Support for Monterey Genius KB29E.
  257. config HID_MULTITOUCH
  258. tristate "HID Multitouch panels"
  259. depends on USB_HID
  260. ---help---
  261. Generic support for HID multitouch panels.
  262. Say Y here if you have one of the following devices:
  263. - Cypress TrueTouch panels
  264. - Hanvon dual touch panels
  265. - Pixcir dual touch panels
  266. - 'Sensing Win7-TwoFinger' panel by GeneralTouch
  267. If unsure, say N.
  268. To compile this driver as a module, choose M here: the
  269. module will be called hid-multitouch.
  270. config HID_NTRIG
  271. tristate "N-Trig touch screen"
  272. depends on USB_HID
  273. ---help---
  274. Support for N-Trig touch screen.
  275. config HID_ORTEK
  276. tristate "Ortek WKB-2000 wireless keyboard and mouse trackpad"
  277. depends on USB_HID
  278. ---help---
  279. Support for Ortek WKB-2000 wireless keyboard + mouse trackpad.
  280. config HID_PANTHERLORD
  281. tristate "Pantherlord/GreenAsia game controller"
  282. depends on USB_HID
  283. ---help---
  284. Say Y here if you have a PantherLord/GreenAsia based game controller
  285. or adapter.
  286. config PANTHERLORD_FF
  287. bool "Pantherlord force feedback support"
  288. depends on HID_PANTHERLORD
  289. select INPUT_FF_MEMLESS
  290. ---help---
  291. Say Y here if you have a PantherLord/GreenAsia based game controller
  292. or adapter and want to enable force feedback support for it.
  293. config HID_PETALYNX
  294. tristate "Petalynx Maxter remote control"
  295. depends on USB_HID
  296. ---help---
  297. Support for Petalynx Maxter remote control.
  298. config HID_PICOLCD
  299. tristate "PicoLCD (graphic version)"
  300. depends on USB_HID
  301. ---help---
  302. This provides support for Minibox PicoLCD devices, currently
  303. only the graphical ones are supported.
  304. This includes support for the following device features:
  305. - Keypad
  306. - Switching between Firmware and Flash mode
  307. - EEProm / Flash access (via debugfs)
  308. Features selectively enabled:
  309. - Framebuffer for monochrome 256x64 display
  310. - Backlight control
  311. - Contrast control
  312. - General purpose outputs
  313. Features that are not (yet) supported:
  314. - IR
  315. config HID_PICOLCD_FB
  316. bool "Framebuffer support" if EMBEDDED
  317. default !EMBEDDED
  318. depends on HID_PICOLCD
  319. depends on HID_PICOLCD=FB || FB=y
  320. select FB_DEFERRED_IO
  321. select FB_SYS_FILLRECT
  322. select FB_SYS_COPYAREA
  323. select FB_SYS_IMAGEBLIT
  324. select FB_SYS_FOPS
  325. ---help---
  326. Provide access to PicoLCD's 256x64 monochrome display via a
  327. frambuffer device.
  328. config HID_PICOLCD_BACKLIGHT
  329. bool "Backlight control" if EMBEDDED
  330. default !EMBEDDED
  331. depends on HID_PICOLCD
  332. depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y
  333. ---help---
  334. Provide access to PicoLCD's backlight control via backlight
  335. class.
  336. config HID_PICOLCD_LCD
  337. bool "Contrast control" if EMBEDDED
  338. default !EMBEDDED
  339. depends on HID_PICOLCD
  340. depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y
  341. ---help---
  342. Provide access to PicoLCD's LCD contrast via lcd class.
  343. config HID_PICOLCD_LEDS
  344. bool "GPO via leds class" if EMBEDDED
  345. default !EMBEDDED
  346. depends on HID_PICOLCD
  347. depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y
  348. ---help---
  349. Provide access to PicoLCD's GPO pins via leds class.
  350. config HID_QUANTA
  351. tristate "Quanta Optical Touch panels"
  352. depends on USB_HID
  353. ---help---
  354. Support for Quanta Optical Touch dual-touch panels.
  355. config HID_ROCCAT
  356. tristate "Roccat special event support"
  357. depends on USB_HID
  358. ---help---
  359. Support for Roccat special events.
  360. Say Y here if you have a Roccat mouse or keyboard and want OSD or
  361. macro execution support.
  362. config HID_ROCCAT_KONE
  363. tristate "Roccat Kone Mouse support"
  364. depends on USB_HID
  365. select HID_ROCCAT
  366. ---help---
  367. Support for Roccat Kone mouse.
  368. config HID_ROCCAT_KONEPLUS
  369. tristate "Roccat Kone[+] mouse support"
  370. depends on USB_HID
  371. select HID_ROCCAT
  372. ---help---
  373. Support for Roccat Kone[+] mouse.
  374. config HID_ROCCAT_PYRA
  375. tristate "Roccat Pyra mouse support"
  376. depends on USB_HID
  377. select HID_ROCCAT
  378. ---help---
  379. Support for Roccat Pyra mouse.
  380. config HID_SAMSUNG
  381. tristate "Samsung InfraRed remote control or keyboards"
  382. depends on USB_HID
  383. ---help---
  384. Support for Samsung InfraRed remote control or keyboards.
  385. config HID_SONY
  386. tristate "Sony PS3 controller"
  387. depends on USB_HID
  388. ---help---
  389. Support for Sony PS3 controller.
  390. config HID_STANTUM
  391. tristate "Stantum multitouch panel"
  392. depends on USB_HID
  393. ---help---
  394. Support for Stantum multitouch panel.
  395. config HID_SUNPLUS
  396. tristate "Sunplus wireless desktop"
  397. depends on USB_HID
  398. ---help---
  399. Support for Sunplus wireless desktop.
  400. config HID_GREENASIA
  401. tristate "GreenAsia (Product ID 0x12) game controller support"
  402. depends on USB_HID
  403. ---help---
  404. Say Y here if you have a GreenAsia (Product ID 0x12) based game
  405. controller or adapter.
  406. config GREENASIA_FF
  407. bool "GreenAsia (Product ID 0x12) force feedback support"
  408. depends on HID_GREENASIA
  409. select INPUT_FF_MEMLESS
  410. ---help---
  411. Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
  412. (like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
  413. and want to enable force feedback support for it.
  414. config HID_SMARTJOYPLUS
  415. tristate "SmartJoy PLUS PS2/USB adapter support"
  416. depends on USB_HID
  417. ---help---
  418. Support for SmartJoy PLUS PS2/USB adapter.
  419. config SMARTJOYPLUS_FF
  420. bool "SmartJoy PLUS PS2/USB adapter force feedback support"
  421. depends on HID_SMARTJOYPLUS
  422. select INPUT_FF_MEMLESS
  423. ---help---
  424. Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to
  425. enable force feedback support for it.
  426. config HID_TOPSEED
  427. tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support"
  428. depends on USB_HID
  429. ---help---
  430. Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic
  431. CLLRCMCE remote control.
  432. config HID_THRUSTMASTER
  433. tristate "ThrustMaster devices support"
  434. depends on USB_HID
  435. ---help---
  436. Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or
  437. a THRUSTMASTER Ferrari GT Rumble Wheel.
  438. config THRUSTMASTER_FF
  439. bool "ThrustMaster devices force feedback support"
  440. depends on HID_THRUSTMASTER
  441. select INPUT_FF_MEMLESS
  442. ---help---
  443. Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3,
  444. a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT
  445. Rumble Force or Force Feedback Wheel.
  446. config HID_WACOM
  447. tristate "Wacom Bluetooth devices support"
  448. depends on BT_HIDP
  449. ---help---
  450. Support for Wacom Graphire Bluetooth tablet.
  451. config HID_WACOM_POWER_SUPPLY
  452. bool "Wacom Bluetooth devices power supply status support"
  453. depends on HID_WACOM
  454. select POWER_SUPPLY
  455. ---help---
  456. Say Y here if you want to enable power supply status monitoring for
  457. Wacom Bluetooth devices.
  458. config HID_ZEROPLUS
  459. tristate "Zeroplus based game controller support"
  460. depends on USB_HID
  461. ---help---
  462. Say Y here if you have a Zeroplus based game controller.
  463. config ZEROPLUS_FF
  464. bool "Zeroplus based game controller force feedback support"
  465. depends on HID_ZEROPLUS
  466. select INPUT_FF_MEMLESS
  467. ---help---
  468. Say Y here if you have a Zeroplus based game controller and want
  469. to have force feedback support for it.
  470. config HID_ZYDACRON
  471. tristate "Zydacron remote control support"
  472. depends on USB_HID
  473. ---help---
  474. Support for Zydacron remote control.
  475. endmenu
  476. endif # HID_SUPPORT