Kconfig 19 KB

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