Kconfig 19 KB

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