Kconfig 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799
  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 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 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 HID
  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_APPLEIR
  103. tristate "Apple infrared receiver"
  104. depends on (USB_HID)
  105. ---help---
  106. Support for Apple infrared remote control. All the Apple computers from
  107. 2005 onwards include such a port, except the unibody Macbook (2009),
  108. and Mac Pros. This receiver is also used in the Apple TV set-top box
  109. prior to the 2010 model.
  110. Say Y here if you want support for Apple infrared remote control.
  111. config HID_AUREAL
  112. tristate "Aureal"
  113. depends on HID
  114. ---help---
  115. Support for Aureal Cy se W-01RN Remote Controller and other Aureal derived remotes.
  116. config HID_BELKIN
  117. tristate "Belkin Flip KVM and Wireless keyboard" if EXPERT
  118. depends on HID
  119. default !EXPERT
  120. ---help---
  121. Support for Belkin Flip KVM and Wireless keyboard.
  122. config HID_CHERRY
  123. tristate "Cherry Cymotion keyboard" if EXPERT
  124. depends on HID
  125. default !EXPERT
  126. ---help---
  127. Support for Cherry Cymotion keyboard.
  128. config HID_CHICONY
  129. tristate "Chicony Tactical pad" if EXPERT
  130. depends on HID
  131. default !EXPERT
  132. ---help---
  133. Support for Chicony Tactical pad.
  134. config HID_PRODIKEYS
  135. tristate "Prodikeys PC-MIDI Keyboard support"
  136. depends on HID && SND
  137. select SND_RAWMIDI
  138. ---help---
  139. Support for Prodikeys PC-MIDI Keyboard device support.
  140. Say Y here to enable support for this device.
  141. - Prodikeys PC-MIDI keyboard.
  142. The Prodikeys PC-MIDI acts as a USB Audio device, with one MIDI
  143. input and one MIDI output. These MIDI jacks appear as
  144. a sound "card" in the ALSA sound system.
  145. Note: if you say N here, this device will still function as a basic
  146. multimedia keyboard, but will lack support for the musical keyboard
  147. and some additional multimedia keys.
  148. config HID_CYPRESS
  149. tristate "Cypress mouse and barcode readers" if EXPERT
  150. depends on HID
  151. default !EXPERT
  152. ---help---
  153. Support for cypress mouse and barcode readers.
  154. config HID_DRAGONRISE
  155. tristate "DragonRise Inc. game controller"
  156. depends on HID
  157. ---help---
  158. Say Y here if you have DragonRise Inc. game controllers.
  159. These might be branded as:
  160. - Tesun USB-703
  161. - Media-tech MT1504 "Rogue"
  162. - DVTech JS19 "Gear"
  163. - Defender Game Master
  164. config DRAGONRISE_FF
  165. bool "DragonRise Inc. force feedback"
  166. depends on HID_DRAGONRISE
  167. select INPUT_FF_MEMLESS
  168. ---help---
  169. Say Y here if you want to enable force feedback support for DragonRise Inc.
  170. game controllers.
  171. config HID_EMS_FF
  172. tristate "EMS Production Inc. force feedback support"
  173. depends on HID
  174. select INPUT_FF_MEMLESS
  175. ---help---
  176. Say Y here if you want to enable force feedback support for devices by
  177. EMS Production Ltd.
  178. Currently the following devices are known to be supported:
  179. - Trio Linker Plus II
  180. config HID_ELECOM
  181. tristate "ELECOM BM084 bluetooth mouse"
  182. depends on HID
  183. ---help---
  184. Support for the ELECOM BM084 (bluetooth mouse).
  185. config HID_ELO
  186. tristate "ELO USB 4000/4500 touchscreen"
  187. depends on USB_HID
  188. ---help---
  189. Support for the ELO USB 4000/4500 touchscreens. Note that this is for
  190. different devices than those handled by CONFIG_TOUCHSCREEN_USB_ELO.
  191. config HID_EZKEY
  192. tristate "Ezkey BTC 8193 keyboard" if EXPERT
  193. depends on HID
  194. default !EXPERT
  195. ---help---
  196. Support for Ezkey BTC 8193 keyboard.
  197. config HID_HOLTEK
  198. tristate "Holtek HID devices"
  199. depends on USB_HID
  200. ---help---
  201. Support for Holtek based devices:
  202. - Holtek On Line Grip based game controller
  203. - Trust GXT 18 Gaming Keyboard
  204. - Sharkoon Drakonia / Perixx MX-2000 gaming mice
  205. - Tracer Sniper TRM-503 / NOVA Gaming Slider X200 /
  206. Zalman ZM-GM1
  207. - SHARKOON DarkGlider Gaming mouse
  208. config HOLTEK_FF
  209. bool "Holtek On Line Grip force feedback support"
  210. depends on HID_HOLTEK
  211. select INPUT_FF_MEMLESS
  212. ---help---
  213. Say Y here if you have a Holtek On Line Grip based game controller
  214. and want to have force feedback support for it.
  215. config HID_HUION
  216. tristate "Huion tablets"
  217. depends on USB_HID
  218. ---help---
  219. Support for Huion 580 tablet.
  220. config HID_KEYTOUCH
  221. tristate "Keytouch HID devices"
  222. depends on HID
  223. ---help---
  224. Support for Keytouch HID devices not fully compliant with
  225. the specification. Currently supported:
  226. - Keytouch IEC 60945
  227. config HID_KYE
  228. tristate "KYE/Genius devices"
  229. depends on HID
  230. ---help---
  231. Support for KYE/Genius devices not fully compliant with HID standard:
  232. - Ergo Mouse
  233. - EasyPen i405X tablet
  234. - MousePen i608X tablet
  235. - EasyPen M610X tablet
  236. config HID_UCLOGIC
  237. tristate "UC-Logic"
  238. depends on HID
  239. ---help---
  240. Support for UC-Logic tablets.
  241. config HID_WALTOP
  242. tristate "Waltop"
  243. depends on HID
  244. ---help---
  245. Support for Waltop tablets.
  246. config HID_GYRATION
  247. tristate "Gyration remote control"
  248. depends on HID
  249. ---help---
  250. Support for Gyration remote control.
  251. config HID_ICADE
  252. tristate "ION iCade arcade controller"
  253. depends on HID
  254. ---help---
  255. Support for the ION iCade arcade controller to work as a joystick.
  256. To compile this driver as a module, choose M here: the
  257. module will be called hid-icade.
  258. config HID_TWINHAN
  259. tristate "Twinhan IR remote control"
  260. depends on HID
  261. ---help---
  262. Support for Twinhan IR remote control.
  263. config HID_KENSINGTON
  264. tristate "Kensington Slimblade Trackball" if EXPERT
  265. depends on HID
  266. default !EXPERT
  267. ---help---
  268. Support for Kensington Slimblade Trackball.
  269. config HID_LCPOWER
  270. tristate "LC-Power"
  271. depends on HID
  272. ---help---
  273. Support for LC-Power RC1000MCE RF remote control.
  274. config HID_LENOVO_TPKBD
  275. tristate "Lenovo ThinkPad USB Keyboard with TrackPoint"
  276. depends on USB_HID
  277. select NEW_LEDS
  278. select LEDS_CLASS
  279. ---help---
  280. Support for the Lenovo ThinkPad USB Keyboard with TrackPoint.
  281. Say Y here if you have a Lenovo ThinkPad USB Keyboard with TrackPoint
  282. and would like to use device-specific features like changing the
  283. sensitivity of the trackpoint, using the microphone mute button or
  284. controlling the mute and microphone mute LEDs.
  285. config HID_LOGITECH
  286. tristate "Logitech devices" if EXPERT
  287. depends on HID
  288. default !EXPERT
  289. ---help---
  290. Support for Logitech devices that are not fully compliant with HID standard.
  291. config HID_LOGITECH_DJ
  292. tristate "Logitech Unifying receivers full support"
  293. depends on HID_LOGITECH
  294. ---help---
  295. Say Y if you want support for Logitech Unifying receivers and devices.
  296. Unifying receivers are capable of pairing up to 6 Logitech compliant
  297. devices to the same receiver. Without this driver it will be handled by
  298. generic USB_HID driver and all incoming events will be multiplexed
  299. into a single mouse and a single keyboard device.
  300. config LOGITECH_FF
  301. bool "Logitech force feedback support"
  302. depends on HID_LOGITECH
  303. select INPUT_FF_MEMLESS
  304. help
  305. Say Y here if you have one of these devices:
  306. - Logitech WingMan Cordless RumblePad
  307. - Logitech WingMan Cordless RumblePad 2
  308. - Logitech WingMan Force 3D
  309. - Logitech Formula Force EX
  310. - Logitech WingMan Formula Force GP
  311. - Logitech MOMO Force wheel
  312. and if you want to enable force feedback for them.
  313. Note: if you say N here, this device will still be supported, but without
  314. force feedback.
  315. config LOGIRUMBLEPAD2_FF
  316. bool "Logitech force feedback support (variant 2)"
  317. depends on HID_LOGITECH
  318. select INPUT_FF_MEMLESS
  319. help
  320. Say Y here if you want to enable force feedback support for:
  321. - Logitech RumblePad
  322. - Logitech Rumblepad 2
  323. - Logitech Formula Vibration Feedback Wheel
  324. config LOGIG940_FF
  325. bool "Logitech Flight System G940 force feedback support"
  326. depends on HID_LOGITECH
  327. select INPUT_FF_MEMLESS
  328. help
  329. Say Y here if you want to enable force feedback support for Logitech
  330. Flight System G940 devices.
  331. config LOGIWHEELS_FF
  332. bool "Logitech wheels configuration and force feedback support"
  333. depends on HID_LOGITECH
  334. select INPUT_FF_MEMLESS
  335. default LOGITECH_FF
  336. help
  337. Say Y here if you want to enable force feedback and range setting
  338. support for following Logitech wheels:
  339. - Logitech Driving Force
  340. - Logitech Driving Force Pro
  341. - Logitech Driving Force GT
  342. - Logitech G25
  343. - Logitech G27
  344. - Logitech MOMO/MOMO 2
  345. - Logitech Formula Force EX
  346. config HID_MAGICMOUSE
  347. tristate "Apple Magic Mouse/Trackpad multi-touch support"
  348. depends on HID
  349. ---help---
  350. Support for the Apple Magic Mouse/Trackpad multi-touch.
  351. Say Y here if you want support for the multi-touch features of the
  352. Apple Wireless "Magic" Mouse and the Apple Wireless "Magic" Trackpad.
  353. config HID_MICROSOFT
  354. tristate "Microsoft non-fully HID-compliant devices" if EXPERT
  355. depends on HID
  356. default !EXPERT
  357. ---help---
  358. Support for Microsoft devices that are not fully compliant with HID standard.
  359. config HID_MONTEREY
  360. tristate "Monterey Genius KB29E keyboard" if EXPERT
  361. depends on HID
  362. default !EXPERT
  363. ---help---
  364. Support for Monterey Genius KB29E.
  365. config HID_MULTITOUCH
  366. tristate "HID Multitouch panels"
  367. depends on HID
  368. ---help---
  369. Generic support for HID multitouch panels.
  370. Say Y here if you have one of the following devices:
  371. - 3M PCT touch screens
  372. - ActionStar dual touch panels
  373. - Atmel panels
  374. - Cando dual touch panels
  375. - Chunghwa panels
  376. - CVTouch panels
  377. - Cypress TrueTouch panels
  378. - Elo TouchSystems IntelliTouch Plus panels
  379. - GeneralTouch 'Sensing Win7-TwoFinger' panels
  380. - GoodTouch panels
  381. - Hanvon dual touch panels
  382. - Ilitek dual touch panels
  383. - IrTouch Infrared USB panels
  384. - LG Display panels (Dell ST2220Tc)
  385. - Lumio CrystalTouch panels
  386. - MosArt dual-touch panels
  387. - Panasonic multitouch panels
  388. - PenMount dual touch panels
  389. - Perixx Peripad 701 touchpad
  390. - PixArt optical touch screen
  391. - Pixcir dual touch panels
  392. - Quanta panels
  393. - eGalax dual-touch panels, including the Joojoo and Wetab tablets
  394. - Stantum multitouch panels
  395. - Touch International Panels
  396. - Unitec Panels
  397. - XAT optical touch panels
  398. - Xiroku optical touch panels
  399. - Zytronic touch panels
  400. If unsure, say N.
  401. To compile this driver as a module, choose M here: the
  402. module will be called hid-multitouch.
  403. config HID_NTRIG
  404. tristate "N-Trig touch screen"
  405. depends on USB_HID
  406. ---help---
  407. Support for N-Trig touch screen.
  408. config HID_ORTEK
  409. tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad"
  410. depends on HID
  411. ---help---
  412. There are certain devices which have LogicalMaximum wrong in the keyboard
  413. usage page of their report descriptor. The most prevailing ones so far
  414. are manufactured by Ortek, thus the name of the driver. Currently
  415. supported devices by this driver are
  416. - Ortek PKB-1700
  417. - Ortek WKB-2000
  418. - Skycable wireless presenter
  419. config HID_PANTHERLORD
  420. tristate "Pantherlord/GreenAsia game controller"
  421. depends on HID
  422. ---help---
  423. Say Y here if you have a PantherLord/GreenAsia based game controller
  424. or adapter.
  425. config PANTHERLORD_FF
  426. bool "Pantherlord force feedback support"
  427. depends on HID_PANTHERLORD
  428. select INPUT_FF_MEMLESS
  429. ---help---
  430. Say Y here if you have a PantherLord/GreenAsia based game controller
  431. or adapter and want to enable force feedback support for it.
  432. config HID_PETALYNX
  433. tristate "Petalynx Maxter remote control"
  434. depends on HID
  435. ---help---
  436. Support for Petalynx Maxter remote control.
  437. config HID_PICOLCD
  438. tristate "PicoLCD (graphic version)"
  439. depends on HID
  440. ---help---
  441. This provides support for Minibox PicoLCD devices, currently
  442. only the graphical ones are supported.
  443. This includes support for the following device features:
  444. - Keypad
  445. - Switching between Firmware and Flash mode
  446. - EEProm / Flash access (via debugfs)
  447. Features selectively enabled:
  448. - Framebuffer for monochrome 256x64 display
  449. - Backlight control
  450. - Contrast control
  451. - General purpose outputs
  452. Features that are not (yet) supported:
  453. - IR
  454. config HID_PICOLCD_FB
  455. bool "Framebuffer support" if EXPERT
  456. default !EXPERT
  457. depends on HID_PICOLCD
  458. depends on HID_PICOLCD=FB || FB=y
  459. select FB_DEFERRED_IO
  460. select FB_SYS_FILLRECT
  461. select FB_SYS_COPYAREA
  462. select FB_SYS_IMAGEBLIT
  463. select FB_SYS_FOPS
  464. ---help---
  465. Provide access to PicoLCD's 256x64 monochrome display via a
  466. framebuffer device.
  467. config HID_PICOLCD_BACKLIGHT
  468. bool "Backlight control" if EXPERT
  469. default !EXPERT
  470. depends on HID_PICOLCD
  471. depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y
  472. ---help---
  473. Provide access to PicoLCD's backlight control via backlight
  474. class.
  475. config HID_PICOLCD_LCD
  476. bool "Contrast control" if EXPERT
  477. default !EXPERT
  478. depends on HID_PICOLCD
  479. depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y
  480. ---help---
  481. Provide access to PicoLCD's LCD contrast via lcd class.
  482. config HID_PICOLCD_LEDS
  483. bool "GPO via leds class" if EXPERT
  484. default !EXPERT
  485. depends on HID_PICOLCD
  486. depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y
  487. ---help---
  488. Provide access to PicoLCD's GPO pins via leds class.
  489. config HID_PICOLCD_CIR
  490. bool "CIR via RC class" if EXPERT
  491. default !EXPERT
  492. depends on HID_PICOLCD
  493. depends on HID_PICOLCD=RC_CORE || RC_CORE=y
  494. ---help---
  495. Provide access to PicoLCD's CIR interface via remote control (LIRC).
  496. config HID_PRIMAX
  497. tristate "Primax non-fully HID-compliant devices"
  498. depends on HID
  499. ---help---
  500. Support for Primax devices that are not fully compliant with the
  501. HID standard.
  502. config HID_ROCCAT
  503. tristate "Roccat device support"
  504. depends on USB_HID
  505. ---help---
  506. Support for Roccat devices.
  507. Say Y here if you have a Roccat mouse or keyboard and want
  508. support for its special functionalities.
  509. config HID_SAITEK
  510. tristate "Saitek non-fully HID-compliant devices"
  511. depends on HID
  512. ---help---
  513. Support for Saitek devices that are not fully compliant with the
  514. HID standard.
  515. Currently only supports the PS1000 controller.
  516. config HID_SAMSUNG
  517. tristate "Samsung InfraRed remote control or keyboards"
  518. depends on HID
  519. ---help---
  520. Support for Samsung InfraRed remote control or keyboards.
  521. config HID_SONY
  522. tristate "Sony PS2/3 accessories"
  523. depends on USB_HID
  524. depends on NEW_LEDS
  525. depends on LEDS_CLASS
  526. ---help---
  527. Support for
  528. * Sony PS3 6-axis controllers
  529. * Buzz controllers
  530. * Sony PS3 Blue-ray Disk Remote Control (Bluetooth)
  531. * Logitech Harmony adapter for Sony Playstation 3 (Bluetooth)
  532. config HID_SPEEDLINK
  533. tristate "Speedlink VAD Cezanne mouse support"
  534. depends on HID
  535. ---help---
  536. Support for Speedlink Vicious and Divine Cezanne mouse.
  537. config HID_STEELSERIES
  538. tristate "Steelseries SRW-S1 steering wheel support"
  539. depends on HID
  540. ---help---
  541. Support for Steelseries SRW-S1 steering wheel
  542. config HID_SUNPLUS
  543. tristate "Sunplus wireless desktop"
  544. depends on HID
  545. ---help---
  546. Support for Sunplus wireless desktop.
  547. config HID_GREENASIA
  548. tristate "GreenAsia (Product ID 0x12) game controller support"
  549. depends on HID
  550. ---help---
  551. Say Y here if you have a GreenAsia (Product ID 0x12) based game
  552. controller or adapter.
  553. config GREENASIA_FF
  554. bool "GreenAsia (Product ID 0x12) force feedback support"
  555. depends on HID_GREENASIA
  556. select INPUT_FF_MEMLESS
  557. ---help---
  558. Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
  559. (like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
  560. and want to enable force feedback support for it.
  561. config HID_HYPERV_MOUSE
  562. tristate "Microsoft Hyper-V mouse driver"
  563. depends on HYPERV
  564. ---help---
  565. Select this option to enable the Hyper-V mouse driver.
  566. config HID_SMARTJOYPLUS
  567. tristate "SmartJoy PLUS PS2/USB adapter support"
  568. depends on HID
  569. ---help---
  570. Support for SmartJoy PLUS PS2/USB adapter, Super Dual Box,
  571. Super Joy Box 3 Pro, Super Dual Box Pro, and Super Joy Box 5 Pro.
  572. Note that DDR (Dance Dance Revolution) mode is not supported, nor
  573. is pressure sensitive buttons on the pro models.
  574. config SMARTJOYPLUS_FF
  575. bool "SmartJoy PLUS PS2/USB adapter force feedback support"
  576. depends on HID_SMARTJOYPLUS
  577. select INPUT_FF_MEMLESS
  578. ---help---
  579. Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to
  580. enable force feedback support for it.
  581. config HID_TIVO
  582. tristate "TiVo Slide Bluetooth remote control support"
  583. depends on HID
  584. ---help---
  585. Say Y if you have a TiVo Slide Bluetooth remote control.
  586. config HID_TOPSEED
  587. tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support"
  588. depends on HID
  589. ---help---
  590. Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic
  591. CLLRCMCE remote control.
  592. config HID_THINGM
  593. tristate "ThingM blink(1) USB RGB LED"
  594. depends on HID
  595. depends on LEDS_CLASS
  596. ---help---
  597. Support for the ThingM blink(1) USB RGB LED. This driver registers a
  598. Linux LED class instance, plus additional sysfs attributes to control
  599. RGB colors, fade time and playing. The device is exposed through hidraw
  600. to access other functions.
  601. config HID_THRUSTMASTER
  602. tristate "ThrustMaster devices support"
  603. depends on HID
  604. ---help---
  605. Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or
  606. a THRUSTMASTER Ferrari GT Rumble Wheel.
  607. config THRUSTMASTER_FF
  608. bool "ThrustMaster devices force feedback support"
  609. depends on HID_THRUSTMASTER
  610. select INPUT_FF_MEMLESS
  611. ---help---
  612. Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3,
  613. a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT
  614. Rumble Force or Force Feedback Wheel.
  615. config HID_WACOM
  616. tristate "Wacom Bluetooth devices support"
  617. depends on HID
  618. depends on LEDS_CLASS
  619. select POWER_SUPPLY
  620. ---help---
  621. Support for Wacom Graphire Bluetooth and Intuos4 WL tablets.
  622. config HID_WIIMOTE
  623. tristate "Nintendo Wii / Wii U peripherals"
  624. depends on HID
  625. depends on LEDS_CLASS
  626. select POWER_SUPPLY
  627. select INPUT_FF_MEMLESS
  628. ---help---
  629. Support for Nintendo Wii and Wii U Bluetooth peripherals. Supported
  630. devices are the Wii Remote and its extension devices, but also devices
  631. based on the Wii Remote like the Wii U Pro Controller or the
  632. Wii Balance Board.
  633. Support for all official Nintendo extensions is available, however, 3rd
  634. party extensions might not be supported. Please report these devices to:
  635. http://github.com/dvdhrm/xwiimote/issues
  636. Other Nintendo Wii U peripherals that are IEEE 802.11 based (including
  637. the Wii U Gamepad) might be supported in the future. But currently
  638. support is limited to Bluetooth based devices.
  639. If unsure, say N.
  640. To compile this driver as a module, choose M here: the
  641. module will be called hid-wiimote.
  642. config HID_XINMO
  643. tristate "Xin-Mo non-fully compliant devices"
  644. depends on HID
  645. ---help---
  646. Support for Xin-Mo devices that are not fully compliant with the HID
  647. standard. Currently only supports the Xin-Mo Dual Arcade. Say Y here
  648. if you have a Xin-Mo Dual Arcade controller.
  649. config HID_ZEROPLUS
  650. tristate "Zeroplus based game controller support"
  651. depends on HID
  652. ---help---
  653. Say Y here if you have a Zeroplus based game controller.
  654. config ZEROPLUS_FF
  655. bool "Zeroplus based game controller force feedback support"
  656. depends on HID_ZEROPLUS
  657. select INPUT_FF_MEMLESS
  658. ---help---
  659. Say Y here if you have a Zeroplus based game controller and want
  660. to have force feedback support for it.
  661. config HID_ZYDACRON
  662. tristate "Zydacron remote control support"
  663. depends on HID
  664. ---help---
  665. Support for Zydacron remote control.
  666. config HID_SENSOR_HUB
  667. tristate "HID Sensors framework support"
  668. depends on HID
  669. select MFD_CORE
  670. default n
  671. ---help---
  672. Support for HID Sensor framework. This creates a MFD instance
  673. for a sensor hub and identifies all the sensors connected to it.
  674. Each sensor is registered as a MFD cell, so that sensor specific
  675. processing can be done in a separate driver. Each sensor
  676. drivers can use the service provided by this driver to register
  677. for events and handle data streams. Each sensor driver can format
  678. data and present to user mode using input or IIO interface.
  679. endmenu
  680. endif # HID
  681. source "drivers/hid/usbhid/Kconfig"
  682. source "drivers/hid/i2c-hid/Kconfig"
  683. endmenu