Kconfig 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717
  1. #
  2. # HID driver configuration
  3. #
  4. menu "HID support"
  5. depends on INPUT
  6. config HID
  7. tristate "HID bus support"
  8. depends on INPUT
  9. default y
  10. ---help---
  11. A human interface device (HID) is a type of computer device that
  12. interacts directly with and takes input from humans. The term "HID"
  13. most commonly used to refer to the USB-HID specification, but other
  14. devices (such as, but not strictly limited to, Bluetooth) are
  15. designed using HID specification (this involves certain keyboards,
  16. mice, tablets, etc). This option adds the HID bus to the kernel,
  17. together with generic HID layer code. The HID devices are added and
  18. removed from the HID bus by the transport-layer drivers, such as
  19. usbhid (USB_HID) and hidp (BT_HIDP).
  20. For docs and specs, see http://www.usb.org/developers/hidpage/
  21. If unsure, say Y.
  22. if HID
  23. config HID_BATTERY_STRENGTH
  24. bool "Battery level reporting for HID devices"
  25. depends on HID && POWER_SUPPLY && HID = POWER_SUPPLY
  26. default n
  27. ---help---
  28. This option adds support of reporting battery strength (for HID devices
  29. that support this feature) through power_supply class so that userspace
  30. tools, such as upower, can display it.
  31. config HIDRAW
  32. bool "/dev/hidraw raw HID device support"
  33. depends on HID
  34. ---help---
  35. Say Y here if you want to support HID devices (from the USB
  36. specification standpoint) that aren't strictly user interface
  37. devices, like monitor controls and Uninterruptable Power Supplies.
  38. This module supports these devices separately using a separate
  39. event interface on /dev/hidraw.
  40. There is also a /dev/hiddev configuration option in the USB HID
  41. configuration menu. In comparison to hiddev, this device does not process
  42. the hid events at all (no parsing, no lookups). This lets applications
  43. to work on raw hid events when they want to, and avoid using transport-specific
  44. userspace libhid/libusb libraries.
  45. If unsure, say Y.
  46. config UHID
  47. tristate "User-space I/O driver support for HID subsystem"
  48. depends on HID
  49. default n
  50. ---help---
  51. Say Y here if you want to provide HID I/O Drivers from user-space.
  52. This allows to write I/O drivers in user-space and feed the data from
  53. the device into the kernel. The kernel parses the HID reports, loads the
  54. corresponding HID Device Driver or provides input devices on top of your
  55. user-space device.
  56. This driver cannot be used to parse HID-reports in user-space and write
  57. special HID-drivers. You should use hidraw for that.
  58. Instead, this driver allows to write the transport-layer driver in
  59. user-space like USB-HID and Bluetooth-HID do in kernel-space.
  60. If unsure, say N.
  61. To compile this driver as a module, choose M here: the
  62. module will be called uhid.
  63. config HID_GENERIC
  64. tristate "Generic HID driver"
  65. depends on HID
  66. default HID
  67. ---help---
  68. Support for generic devices on the HID bus. This includes most
  69. keyboards and mice, joysticks, tablets and digitizers.
  70. To compile this driver as a module, choose M here: the module
  71. will be called hid-generic.
  72. If unsure, say Y.
  73. menu "Special HID drivers"
  74. depends on HID
  75. config HID_A4TECH
  76. tristate "A4 tech mice" if EXPERT
  77. depends on USB_HID
  78. default !EXPERT
  79. ---help---
  80. Support for A4 tech X5 and WOP-35 / Trust 450L mice.
  81. config HID_ACRUX
  82. tristate "ACRUX game controller support"
  83. depends on USB_HID
  84. ---help---
  85. Say Y here if you want to enable support for ACRUX game controllers.
  86. config HID_ACRUX_FF
  87. bool "ACRUX force feedback support"
  88. depends on HID_ACRUX
  89. select INPUT_FF_MEMLESS
  90. ---help---
  91. Say Y here if you want to enable force feedback support for ACRUX
  92. game controllers.
  93. config HID_APPLE
  94. tristate "Apple {i,Power,Mac}Books" if EXPERT
  95. depends on (USB_HID || BT_HIDP)
  96. default !EXPERT
  97. ---help---
  98. Support for some Apple devices which less or more break
  99. HID specification.
  100. Say Y here if you want support for keyboards of Apple iBooks, PowerBooks,
  101. MacBooks, MacBook Pros and Apple Aluminum.
  102. config HID_AUREAL
  103. tristate "Aureal"
  104. depends on USB_HID
  105. ---help---
  106. Support for Aureal Cy se W-01RN Remote Controller and other Aureal derived remotes.
  107. config HID_BELKIN
  108. tristate "Belkin Flip KVM and Wireless keyboard" if EXPERT
  109. depends on USB_HID
  110. default !EXPERT
  111. ---help---
  112. Support for Belkin Flip KVM and Wireless keyboard.
  113. config HID_CHERRY
  114. tristate "Cherry Cymotion keyboard" if EXPERT
  115. depends on USB_HID
  116. default !EXPERT
  117. ---help---
  118. Support for Cherry Cymotion keyboard.
  119. config HID_CHICONY
  120. tristate "Chicony Tactical pad" if EXPERT
  121. depends on USB_HID
  122. default !EXPERT
  123. ---help---
  124. Support for Chicony Tactical pad.
  125. config HID_PRODIKEYS
  126. tristate "Prodikeys PC-MIDI Keyboard support"
  127. depends on USB_HID && SND
  128. select SND_RAWMIDI
  129. ---help---
  130. Support for Prodikeys PC-MIDI Keyboard device support.
  131. Say Y here to enable support for this device.
  132. - Prodikeys PC-MIDI keyboard.
  133. The Prodikeys PC-MIDI acts as a USB Audio device, with one MIDI
  134. input and one MIDI output. These MIDI jacks appear as
  135. a sound "card" in the ALSA sound system.
  136. Note: if you say N here, this device will still function as a basic
  137. multimedia keyboard, but will lack support for the musical keyboard
  138. and some additional multimedia keys.
  139. config HID_CYPRESS
  140. tristate "Cypress mouse and barcode readers" if EXPERT
  141. depends on USB_HID
  142. default !EXPERT
  143. ---help---
  144. Support for cypress mouse and barcode readers.
  145. config HID_DRAGONRISE
  146. tristate "DragonRise Inc. game controller"
  147. depends on USB_HID
  148. ---help---
  149. Say Y here if you have DragonRise Inc. game controllers.
  150. These might be branded as:
  151. - Tesun USB-703
  152. - Media-tech MT1504 "Rogue"
  153. - DVTech JS19 "Gear"
  154. - Defender Game Master
  155. config DRAGONRISE_FF
  156. bool "DragonRise Inc. force feedback"
  157. depends on HID_DRAGONRISE
  158. select INPUT_FF_MEMLESS
  159. ---help---
  160. Say Y here if you want to enable force feedback support for DragonRise Inc.
  161. game controllers.
  162. config HID_EMS_FF
  163. tristate "EMS Production Inc. force feedback support"
  164. depends on USB_HID
  165. select INPUT_FF_MEMLESS
  166. ---help---
  167. Say Y here if you want to enable force feedback support for devices by
  168. EMS Production Ltd.
  169. Currently the following devices are known to be supported:
  170. - Trio Linker Plus II
  171. config HID_ELECOM
  172. tristate "ELECOM BM084 bluetooth mouse"
  173. depends on BT_HIDP
  174. ---help---
  175. Support for the ELECOM BM084 (bluetooth mouse).
  176. config HID_EZKEY
  177. tristate "Ezkey BTC 8193 keyboard" if EXPERT
  178. depends on USB_HID
  179. default !EXPERT
  180. ---help---
  181. Support for Ezkey BTC 8193 keyboard.
  182. config HID_HOLTEK
  183. tristate "Holtek HID devices"
  184. depends on USB_HID
  185. ---help---
  186. Support for Holtek based devices:
  187. - Holtek On Line Grip based game controller
  188. - Trust GXT 18 Gaming Keyboard
  189. config HOLTEK_FF
  190. bool "Holtek On Line Grip force feedback support"
  191. depends on HID_HOLTEK
  192. select INPUT_FF_MEMLESS
  193. ---help---
  194. Say Y here if you have a Holtek On Line Grip based game controller
  195. and want to have force feedback support for it.
  196. config HID_KEYTOUCH
  197. tristate "Keytouch HID devices"
  198. depends on USB_HID
  199. ---help---
  200. Support for Keytouch HID devices not fully compliant with
  201. the specification. Currently supported:
  202. - Keytouch IEC 60945
  203. config HID_KYE
  204. tristate "KYE/Genius devices"
  205. depends on USB_HID
  206. ---help---
  207. Support for KYE/Genius devices not fully compliant with HID standard:
  208. - Ergo Mouse
  209. - EasyPen i405X tablet
  210. - MousePen i608X tablet
  211. - EasyPen M610X tablet
  212. config HID_UCLOGIC
  213. tristate "UC-Logic"
  214. depends on USB_HID
  215. ---help---
  216. Support for UC-Logic tablets.
  217. config HID_WALTOP
  218. tristate "Waltop"
  219. depends on USB_HID
  220. ---help---
  221. Support for Waltop tablets.
  222. config HID_GYRATION
  223. tristate "Gyration remote control"
  224. depends on USB_HID
  225. ---help---
  226. Support for Gyration remote control.
  227. config HID_TWINHAN
  228. tristate "Twinhan IR remote control"
  229. depends on USB_HID
  230. ---help---
  231. Support for Twinhan IR remote control.
  232. config HID_KENSINGTON
  233. tristate "Kensington Slimblade Trackball" if EXPERT
  234. depends on USB_HID
  235. default !EXPERT
  236. ---help---
  237. Support for Kensington Slimblade Trackball.
  238. config HID_LCPOWER
  239. tristate "LC-Power"
  240. depends on USB_HID
  241. ---help---
  242. Support for LC-Power RC1000MCE RF remote control.
  243. config HID_LENOVO_TPKBD
  244. tristate "Lenovo ThinkPad USB Keyboard with TrackPoint"
  245. depends on USB_HID
  246. select NEW_LEDS
  247. select LEDS_CLASS
  248. ---help---
  249. Support for the Lenovo ThinkPad USB Keyboard with TrackPoint.
  250. Say Y here if you have a Lenovo ThinkPad USB Keyboard with TrackPoint
  251. and would like to use device-specific features like changing the
  252. sensitivity of the trackpoint, using the microphone mute button or
  253. controlling the mute and microphone mute LEDs.
  254. config HID_LOGITECH
  255. tristate "Logitech devices" if EXPERT
  256. depends on USB_HID
  257. default !EXPERT
  258. ---help---
  259. Support for Logitech devices that are not fully compliant with HID standard.
  260. config HID_LOGITECH_DJ
  261. tristate "Logitech Unifying receivers full support"
  262. depends on HID_LOGITECH
  263. ---help---
  264. Say Y if you want support for Logitech Unifying receivers and devices.
  265. Unifying receivers are capable of pairing up to 6 Logitech compliant
  266. devices to the same receiver. Without this driver it will be handled by
  267. generic USB_HID driver and all incomming events will be multiplexed
  268. into a single mouse and a single keyboard device.
  269. config LOGITECH_FF
  270. bool "Logitech force feedback support"
  271. depends on HID_LOGITECH
  272. select INPUT_FF_MEMLESS
  273. help
  274. Say Y here if you have one of these devices:
  275. - Logitech WingMan Cordless RumblePad
  276. - Logitech WingMan Cordless RumblePad 2
  277. - Logitech WingMan Force 3D
  278. - Logitech Formula Force EX
  279. - Logitech WingMan Formula Force GP
  280. - Logitech MOMO Force wheel
  281. and if you want to enable force feedback for them.
  282. Note: if you say N here, this device will still be supported, but without
  283. force feedback.
  284. config LOGIRUMBLEPAD2_FF
  285. bool "Logitech RumblePad/Rumblepad 2 force feedback support"
  286. depends on HID_LOGITECH
  287. select INPUT_FF_MEMLESS
  288. help
  289. Say Y here if you want to enable force feedback support for Logitech
  290. RumblePad and Rumblepad 2 devices.
  291. config LOGIG940_FF
  292. bool "Logitech Flight System G940 force feedback support"
  293. depends on HID_LOGITECH
  294. select INPUT_FF_MEMLESS
  295. help
  296. Say Y here if you want to enable force feedback support for Logitech
  297. Flight System G940 devices.
  298. config LOGIWHEELS_FF
  299. bool "Logitech wheels configuration and force feedback support"
  300. depends on HID_LOGITECH
  301. select INPUT_FF_MEMLESS
  302. default LOGITECH_FF
  303. help
  304. Say Y here if you want to enable force feedback and range setting
  305. support for following Logitech wheels:
  306. - Logitech Driving Force
  307. - Logitech Driving Force Pro
  308. - Logitech Driving Force GT
  309. - Logitech G25
  310. - Logitech G27
  311. - Logitech MOMO/MOMO 2
  312. - Logitech Formula Force EX
  313. config HID_MAGICMOUSE
  314. tristate "Apple MagicMouse multi-touch support"
  315. depends on BT_HIDP
  316. ---help---
  317. Support for the Apple Magic Mouse multi-touch.
  318. Say Y here if you want support for the multi-touch features of the
  319. Apple Wireless "Magic" Mouse.
  320. config HID_MICROSOFT
  321. tristate "Microsoft non-fully HID-compliant devices" if EXPERT
  322. depends on USB_HID
  323. default !EXPERT
  324. ---help---
  325. Support for Microsoft devices that are not fully compliant with HID standard.
  326. config HID_MONTEREY
  327. tristate "Monterey Genius KB29E keyboard" if EXPERT
  328. depends on USB_HID
  329. default !EXPERT
  330. ---help---
  331. Support for Monterey Genius KB29E.
  332. config HID_MULTITOUCH
  333. tristate "HID Multitouch panels"
  334. depends on USB_HID
  335. ---help---
  336. Generic support for HID multitouch panels.
  337. Say Y here if you have one of the following devices:
  338. - 3M PCT touch screens
  339. - ActionStar dual touch panels
  340. - Atmel panels
  341. - Cando dual touch panels
  342. - Chunghwa panels
  343. - CVTouch panels
  344. - Cypress TrueTouch panels
  345. - Elo TouchSystems IntelliTouch Plus panels
  346. - GeneralTouch 'Sensing Win7-TwoFinger' panels
  347. - GoodTouch panels
  348. - Hanvon dual touch panels
  349. - Ilitek dual touch panels
  350. - IrTouch Infrared USB panels
  351. - LG Display panels (Dell ST2220Tc)
  352. - Lumio CrystalTouch panels
  353. - MosArt dual-touch panels
  354. - Panasonic multitouch panels
  355. - PenMount dual touch panels
  356. - Perixx Peripad 701 touchpad
  357. - PixArt optical touch screen
  358. - Pixcir dual touch panels
  359. - Quanta panels
  360. - eGalax dual-touch panels, including the Joojoo and Wetab tablets
  361. - Stantum multitouch panels
  362. - Touch International Panels
  363. - Unitec Panels
  364. - XAT optical touch panels
  365. - Xiroku optical touch panels
  366. - Zytronic touch panels
  367. If unsure, say N.
  368. To compile this driver as a module, choose M here: the
  369. module will be called hid-multitouch.
  370. config HID_NTRIG
  371. tristate "N-Trig touch screen"
  372. depends on USB_HID
  373. ---help---
  374. Support for N-Trig touch screen.
  375. config HID_ORTEK
  376. tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad"
  377. depends on USB_HID
  378. ---help---
  379. There are certain devices which have LogicalMaximum wrong in the keyboard
  380. usage page of their report descriptor. The most prevailing ones so far
  381. are manufactured by Ortek, thus the name of the driver. Currently
  382. supported devices by this driver are
  383. - Ortek PKB-1700
  384. - Ortek WKB-2000
  385. - Skycable wireless presenter
  386. config HID_PANTHERLORD
  387. tristate "Pantherlord/GreenAsia game controller"
  388. depends on USB_HID
  389. ---help---
  390. Say Y here if you have a PantherLord/GreenAsia based game controller
  391. or adapter.
  392. config PANTHERLORD_FF
  393. bool "Pantherlord force feedback support"
  394. depends on HID_PANTHERLORD
  395. select INPUT_FF_MEMLESS
  396. ---help---
  397. Say Y here if you have a PantherLord/GreenAsia based game controller
  398. or adapter and want to enable force feedback support for it.
  399. config HID_PETALYNX
  400. tristate "Petalynx Maxter remote control"
  401. depends on USB_HID
  402. ---help---
  403. Support for Petalynx Maxter remote control.
  404. config HID_PICOLCD
  405. tristate "PicoLCD (graphic version)"
  406. depends on USB_HID
  407. ---help---
  408. This provides support for Minibox PicoLCD devices, currently
  409. only the graphical ones are supported.
  410. This includes support for the following device features:
  411. - Keypad
  412. - Switching between Firmware and Flash mode
  413. - EEProm / Flash access (via debugfs)
  414. Features selectively enabled:
  415. - Framebuffer for monochrome 256x64 display
  416. - Backlight control
  417. - Contrast control
  418. - General purpose outputs
  419. Features that are not (yet) supported:
  420. - IR
  421. config HID_PICOLCD_FB
  422. bool "Framebuffer support" if EXPERT
  423. default !EXPERT
  424. depends on HID_PICOLCD
  425. depends on HID_PICOLCD=FB || FB=y
  426. select FB_DEFERRED_IO
  427. select FB_SYS_FILLRECT
  428. select FB_SYS_COPYAREA
  429. select FB_SYS_IMAGEBLIT
  430. select FB_SYS_FOPS
  431. ---help---
  432. Provide access to PicoLCD's 256x64 monochrome display via a
  433. framebuffer device.
  434. config HID_PICOLCD_BACKLIGHT
  435. bool "Backlight control" if EXPERT
  436. default !EXPERT
  437. depends on HID_PICOLCD
  438. depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y
  439. ---help---
  440. Provide access to PicoLCD's backlight control via backlight
  441. class.
  442. config HID_PICOLCD_LCD
  443. bool "Contrast control" if EXPERT
  444. default !EXPERT
  445. depends on HID_PICOLCD
  446. depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y
  447. ---help---
  448. Provide access to PicoLCD's LCD contrast via lcd class.
  449. config HID_PICOLCD_LEDS
  450. bool "GPO via leds class" if EXPERT
  451. default !EXPERT
  452. depends on HID_PICOLCD
  453. depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y
  454. ---help---
  455. Provide access to PicoLCD's GPO pins via leds class.
  456. config HID_PICOLCD_CIR
  457. bool "CIR via RC class" if EXPERT
  458. default !EXPERT
  459. depends on HID_PICOLCD
  460. depends on HID_PICOLCD=RC_CORE || RC_CORE=y
  461. ---help---
  462. Provide access to PicoLCD's CIR interface via remote control (LIRC).
  463. config HID_PRIMAX
  464. tristate "Primax non-fully HID-compliant devices"
  465. depends on USB_HID
  466. ---help---
  467. Support for Primax devices that are not fully compliant with the
  468. HID standard.
  469. config HID_PS3REMOTE
  470. tristate "Sony PS3 BD Remote Control"
  471. depends on BT_HIDP
  472. ---help---
  473. Support for the Sony PS3 Blue-ray Disk Remote Control and Logitech
  474. Harmony Adapter for PS3, which connect over Bluetooth.
  475. Support for the 6-axis controllers is provided by HID_SONY.
  476. config HID_ROCCAT
  477. tristate "Roccat device support"
  478. depends on USB_HID
  479. ---help---
  480. Support for Roccat devices.
  481. Say Y here if you have a Roccat mouse or keyboard and want
  482. support for its special functionalities.
  483. config HID_SAITEK
  484. tristate "Saitek non-fully HID-compliant devices"
  485. depends on USB_HID
  486. ---help---
  487. Support for Saitek devices that are not fully compliant with the
  488. HID standard.
  489. Currently only supports the PS1000 controller.
  490. config HID_SAMSUNG
  491. tristate "Samsung InfraRed remote control or keyboards"
  492. depends on USB_HID
  493. ---help---
  494. Support for Samsung InfraRed remote control or keyboards.
  495. config HID_SONY
  496. tristate "Sony PS3 controller"
  497. depends on USB_HID
  498. ---help---
  499. Support for Sony PS3 6-axis controllers.
  500. Support for the Sony PS3 BD Remote is provided by HID_PS3REMOTE.
  501. config HID_SPEEDLINK
  502. tristate "Speedlink VAD Cezanne mouse support"
  503. depends on USB_HID
  504. ---help---
  505. Support for Speedlink Vicious and Divine Cezanne mouse.
  506. config HID_SUNPLUS
  507. tristate "Sunplus wireless desktop"
  508. depends on USB_HID
  509. ---help---
  510. Support for Sunplus wireless desktop.
  511. config HID_GREENASIA
  512. tristate "GreenAsia (Product ID 0x12) game controller support"
  513. depends on USB_HID
  514. ---help---
  515. Say Y here if you have a GreenAsia (Product ID 0x12) based game
  516. controller or adapter.
  517. config GREENASIA_FF
  518. bool "GreenAsia (Product ID 0x12) force feedback support"
  519. depends on HID_GREENASIA
  520. select INPUT_FF_MEMLESS
  521. ---help---
  522. Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
  523. (like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
  524. and want to enable force feedback support for it.
  525. config HID_HYPERV_MOUSE
  526. tristate "Microsoft Hyper-V mouse driver"
  527. depends on HYPERV
  528. ---help---
  529. Select this option to enable the Hyper-V mouse driver.
  530. config HID_SMARTJOYPLUS
  531. tristate "SmartJoy PLUS PS2/USB adapter support"
  532. depends on USB_HID
  533. ---help---
  534. Support for SmartJoy PLUS PS2/USB adapter, Super Dual Box,
  535. Super Joy Box 3 Pro, Super Dual Box Pro, and Super Joy Box 5 Pro.
  536. Note that DDR (Dance Dance Revolution) mode is not supported, nor
  537. is pressure sensitive buttons on the pro models.
  538. config SMARTJOYPLUS_FF
  539. bool "SmartJoy PLUS PS2/USB adapter force feedback support"
  540. depends on HID_SMARTJOYPLUS
  541. select INPUT_FF_MEMLESS
  542. ---help---
  543. Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to
  544. enable force feedback support for it.
  545. config HID_TIVO
  546. tristate "TiVo Slide Bluetooth remote control support"
  547. depends on (USB_HID || BT_HIDP)
  548. ---help---
  549. Say Y if you have a TiVo Slide Bluetooth remote control.
  550. config HID_TOPSEED
  551. tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support"
  552. depends on USB_HID
  553. ---help---
  554. Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic
  555. CLLRCMCE remote control.
  556. config HID_THRUSTMASTER
  557. tristate "ThrustMaster devices support"
  558. depends on USB_HID
  559. ---help---
  560. Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or
  561. a THRUSTMASTER Ferrari GT Rumble Wheel.
  562. config THRUSTMASTER_FF
  563. bool "ThrustMaster devices force feedback support"
  564. depends on HID_THRUSTMASTER
  565. select INPUT_FF_MEMLESS
  566. ---help---
  567. Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3,
  568. a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT
  569. Rumble Force or Force Feedback Wheel.
  570. config HID_WACOM
  571. tristate "Wacom Bluetooth devices support"
  572. depends on BT_HIDP
  573. depends on LEDS_CLASS
  574. select POWER_SUPPLY
  575. ---help---
  576. Support for Wacom Graphire Bluetooth and Intuos4 WL tablets.
  577. config HID_WIIMOTE
  578. tristate "Nintendo Wii Remote support"
  579. depends on BT_HIDP
  580. depends on LEDS_CLASS
  581. select POWER_SUPPLY
  582. select INPUT_FF_MEMLESS
  583. ---help---
  584. Support for the Nintendo Wii Remote bluetooth device.
  585. config HID_WIIMOTE_EXT
  586. bool "Nintendo Wii Remote Extension support"
  587. depends on HID_WIIMOTE
  588. default HID_WIIMOTE
  589. ---help---
  590. Support for extension controllers of the Nintendo Wii Remote. Say yes
  591. here if you want to use the Nintendo Motion+, Nunchuck or Classic
  592. extension controllers with your Wii Remote.
  593. config HID_ZEROPLUS
  594. tristate "Zeroplus based game controller support"
  595. depends on USB_HID
  596. ---help---
  597. Say Y here if you have a Zeroplus based game controller.
  598. config ZEROPLUS_FF
  599. bool "Zeroplus based game controller force feedback support"
  600. depends on HID_ZEROPLUS
  601. select INPUT_FF_MEMLESS
  602. ---help---
  603. Say Y here if you have a Zeroplus based game controller and want
  604. to have force feedback support for it.
  605. config HID_ZYDACRON
  606. tristate "Zydacron remote control support"
  607. depends on USB_HID
  608. ---help---
  609. Support for Zydacron remote control.
  610. endmenu
  611. endif # HID
  612. source "drivers/hid/usbhid/Kconfig"
  613. endmenu