Kconfig 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916
  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
  26. select POWER_SUPPLY
  27. default n
  28. ---help---
  29. This option adds support of reporting battery strength (for HID devices
  30. that support this feature) through power_supply class so that userspace
  31. tools, such as upower, can display it.
  32. config HIDRAW
  33. bool "/dev/hidraw raw HID device support"
  34. depends on HID
  35. ---help---
  36. Say Y here if you want to support HID devices (from the USB
  37. specification standpoint) that aren't strictly user interface
  38. devices, like monitor controls and Uninterruptable Power Supplies.
  39. This module supports these devices separately using a separate
  40. event interface on /dev/hidraw.
  41. There is also a /dev/hiddev configuration option in the USB HID
  42. configuration menu. In comparison to hiddev, this device does not process
  43. the hid events at all (no parsing, no lookups). This lets applications
  44. to work on raw hid events when they want to, and avoid using transport-specific
  45. userspace libhid/libusb libraries.
  46. If unsure, say Y.
  47. config UHID
  48. tristate "User-space I/O driver support for HID subsystem"
  49. depends on HID
  50. default n
  51. ---help---
  52. Say Y here if you want to provide HID I/O Drivers from user-space.
  53. This allows to write I/O drivers in user-space and feed the data from
  54. the device into the kernel. The kernel parses the HID reports, loads the
  55. corresponding HID Device Driver or provides input devices on top of your
  56. user-space device.
  57. This driver cannot be used to parse HID-reports in user-space and write
  58. special HID-drivers. You should use hidraw for that.
  59. Instead, this driver allows to write the transport-layer driver in
  60. user-space like USB-HID and Bluetooth-HID do in kernel-space.
  61. If unsure, say N.
  62. To compile this driver as a module, choose M here: the
  63. module will be called uhid.
  64. config HID_GENERIC
  65. tristate "Generic HID driver"
  66. depends on HID
  67. default HID
  68. ---help---
  69. Support for generic devices on the HID bus. This includes most
  70. keyboards and mice, joysticks, tablets and digitizers.
  71. To compile this driver as a module, choose M here: the module
  72. will be called hid-generic.
  73. If unsure, say Y.
  74. menu "Special HID drivers"
  75. depends on HID
  76. config HID_A4TECH
  77. tristate "A4 tech mice"
  78. depends on HID
  79. default !EXPERT
  80. ---help---
  81. Support for A4 tech X5 and WOP-35 / Trust 450L mice.
  82. config HID_ACRUX
  83. tristate "ACRUX game controller support"
  84. depends on HID
  85. ---help---
  86. Say Y here if you want to enable support for ACRUX game controllers.
  87. config HID_ACRUX_FF
  88. bool "ACRUX force feedback support"
  89. depends on HID_ACRUX
  90. select INPUT_FF_MEMLESS
  91. ---help---
  92. Say Y here if you want to enable force feedback support for ACRUX
  93. game controllers.
  94. config HID_APPLE
  95. tristate "Apple {i,Power,Mac}Books"
  96. depends on HID
  97. default !EXPERT
  98. ---help---
  99. Support for some Apple devices which less or more break
  100. HID specification.
  101. Say Y here if you want support for keyboards of Apple iBooks, PowerBooks,
  102. MacBooks, MacBook Pros and Apple Aluminum.
  103. config HID_APPLEIR
  104. tristate "Apple infrared receiver"
  105. depends on (USB_HID)
  106. ---help---
  107. Support for Apple infrared remote control. All the Apple computers from
  108. 2005 onwards include such a port, except the unibody Macbook (2009),
  109. and Mac Pros. This receiver is also used in the Apple TV set-top box
  110. prior to the 2010 model.
  111. Say Y here if you want support for Apple infrared remote control.
  112. config HID_AUREAL
  113. tristate "Aureal"
  114. depends on HID
  115. ---help---
  116. Support for Aureal Cy se W-01RN Remote Controller and other Aureal derived remotes.
  117. config HID_BELKIN
  118. tristate "Belkin Flip KVM and Wireless keyboard"
  119. depends on HID
  120. default !EXPERT
  121. ---help---
  122. Support for Belkin Flip KVM and Wireless keyboard.
  123. config HID_BETOP_FF
  124. tristate "Betop Production Inc. force feedback support"
  125. depends on USB_HID
  126. select INPUT_FF_MEMLESS
  127. ---help---
  128. Say Y here if you want to enable force feedback support for devices by
  129. BETOP Production Ltd.
  130. Currently the following devices are known to be supported:
  131. - BETOP 2185 PC & BFM MODE
  132. config HID_CHERRY
  133. tristate "Cherry Cymotion keyboard"
  134. depends on HID
  135. default !EXPERT
  136. ---help---
  137. Support for Cherry Cymotion keyboard.
  138. config HID_CHICONY
  139. tristate "Chicony Tactical pad"
  140. depends on HID
  141. default !EXPERT
  142. ---help---
  143. Support for Chicony Tactical pad.
  144. config HID_PRODIKEYS
  145. tristate "Prodikeys PC-MIDI Keyboard support"
  146. depends on HID && SND
  147. select SND_RAWMIDI
  148. ---help---
  149. Support for Prodikeys PC-MIDI Keyboard device support.
  150. Say Y here to enable support for this device.
  151. - Prodikeys PC-MIDI keyboard.
  152. The Prodikeys PC-MIDI acts as a USB Audio device, with one MIDI
  153. input and one MIDI output. These MIDI jacks appear as
  154. a sound "card" in the ALSA sound system.
  155. Note: if you say N here, this device will still function as a basic
  156. multimedia keyboard, but will lack support for the musical keyboard
  157. and some additional multimedia keys.
  158. config HID_CP2112
  159. tristate "Silicon Labs CP2112 HID USB-to-SMBus Bridge support"
  160. depends on USB_HID && I2C && GPIOLIB
  161. ---help---
  162. Support for Silicon Labs CP2112 HID USB to SMBus Master Bridge.
  163. This is a HID device driver which registers as an i2c adapter
  164. and gpiochip to expose these functions of the CP2112. The
  165. customizable USB descriptor fields are exposed as sysfs attributes.
  166. config HID_CYPRESS
  167. tristate "Cypress mouse and barcode readers"
  168. depends on HID
  169. default !EXPERT
  170. ---help---
  171. Support for cypress mouse and barcode readers.
  172. config HID_DRAGONRISE
  173. tristate "DragonRise Inc. game controller"
  174. depends on HID
  175. ---help---
  176. Say Y here if you have DragonRise Inc. game controllers.
  177. These might be branded as:
  178. - Tesun USB-703
  179. - Media-tech MT1504 "Rogue"
  180. - DVTech JS19 "Gear"
  181. - Defender Game Master
  182. config DRAGONRISE_FF
  183. bool "DragonRise Inc. force feedback"
  184. depends on HID_DRAGONRISE
  185. select INPUT_FF_MEMLESS
  186. ---help---
  187. Say Y here if you want to enable force feedback support for DragonRise Inc.
  188. game controllers.
  189. config HID_EMS_FF
  190. tristate "EMS Production Inc. force feedback support"
  191. depends on HID
  192. select INPUT_FF_MEMLESS
  193. ---help---
  194. Say Y here if you want to enable force feedback support for devices by
  195. EMS Production Ltd.
  196. Currently the following devices are known to be supported:
  197. - Trio Linker Plus II
  198. config HID_ELECOM
  199. tristate "ELECOM BM084 bluetooth mouse"
  200. depends on HID
  201. ---help---
  202. Support for the ELECOM BM084 (bluetooth mouse).
  203. config HID_ELO
  204. tristate "ELO USB 4000/4500 touchscreen"
  205. depends on USB_HID
  206. ---help---
  207. Support for the ELO USB 4000/4500 touchscreens. Note that this is for
  208. different devices than those handled by CONFIG_TOUCHSCREEN_USB_ELO.
  209. config HID_EZKEY
  210. tristate "Ezkey BTC 8193 keyboard"
  211. depends on HID
  212. default !EXPERT
  213. ---help---
  214. Support for Ezkey BTC 8193 keyboard.
  215. config HID_GEMBIRD
  216. tristate "Gembird Joypad"
  217. depends on HID
  218. ---help---
  219. Support for Gembird JPD-DualForce 2.
  220. config HID_HOLTEK
  221. tristate "Holtek HID devices"
  222. depends on USB_HID
  223. ---help---
  224. Support for Holtek based devices:
  225. - Holtek On Line Grip based game controller
  226. - Trust GXT 18 Gaming Keyboard
  227. - Sharkoon Drakonia / Perixx MX-2000 gaming mice
  228. - Tracer Sniper TRM-503 / NOVA Gaming Slider X200 /
  229. Zalman ZM-GM1
  230. - SHARKOON DarkGlider Gaming mouse
  231. - LEETGION Hellion Gaming Mouse
  232. config HOLTEK_FF
  233. bool "Holtek On Line Grip force feedback support"
  234. depends on HID_HOLTEK
  235. select INPUT_FF_MEMLESS
  236. ---help---
  237. Say Y here if you have a Holtek On Line Grip based game controller
  238. and want to have force feedback support for it.
  239. config HID_GT683R
  240. tristate "MSI GT68xR LED support"
  241. depends on LEDS_CLASS && USB_HID
  242. ---help---
  243. Say Y here if you want to enable support for the three MSI GT68xR LEDs
  244. This driver support following modes:
  245. - Normal: LEDs are fully on when enabled
  246. - Audio: LEDs brightness depends on sound level
  247. - Breathing: LEDs brightness varies at human breathing rate
  248. Currently the following devices are know to be supported:
  249. - MSI GT683R
  250. config HID_KEYTOUCH
  251. tristate "Keytouch HID devices"
  252. depends on HID
  253. ---help---
  254. Support for Keytouch HID devices not fully compliant with
  255. the specification. Currently supported:
  256. - Keytouch IEC 60945
  257. config HID_KYE
  258. tristate "KYE/Genius devices"
  259. depends on HID
  260. ---help---
  261. Support for KYE/Genius devices not fully compliant with HID standard:
  262. - Ergo Mouse
  263. - EasyPen i405X tablet
  264. - MousePen i608X tablet
  265. - EasyPen M610X tablet
  266. config HID_UCLOGIC
  267. tristate "UC-Logic"
  268. depends on USB_HID
  269. ---help---
  270. Support for UC-Logic and Huion tablets.
  271. config HID_WALTOP
  272. tristate "Waltop"
  273. depends on HID
  274. ---help---
  275. Support for Waltop tablets.
  276. config HID_GYRATION
  277. tristate "Gyration remote control"
  278. depends on HID
  279. ---help---
  280. Support for Gyration remote control.
  281. config HID_ICADE
  282. tristate "ION iCade arcade controller"
  283. depends on HID
  284. ---help---
  285. Support for the ION iCade arcade controller to work as a joystick.
  286. To compile this driver as a module, choose M here: the
  287. module will be called hid-icade.
  288. config HID_TWINHAN
  289. tristate "Twinhan IR remote control"
  290. depends on HID
  291. ---help---
  292. Support for Twinhan IR remote control.
  293. config HID_KENSINGTON
  294. tristate "Kensington Slimblade Trackball"
  295. depends on HID
  296. default !EXPERT
  297. ---help---
  298. Support for Kensington Slimblade Trackball.
  299. config HID_LCPOWER
  300. tristate "LC-Power"
  301. depends on HID
  302. ---help---
  303. Support for LC-Power RC1000MCE RF remote control.
  304. config HID_LENOVO
  305. tristate "Lenovo / Thinkpad devices"
  306. depends on HID
  307. select NEW_LEDS
  308. select LEDS_CLASS
  309. ---help---
  310. Support for Lenovo devices that are not fully compliant with HID standard.
  311. Say Y if you want support for the non-compliant features of the Lenovo
  312. Thinkpad standalone keyboards, e.g:
  313. - ThinkPad USB Keyboard with TrackPoint (supports extra LEDs and trackpoint
  314. configuration)
  315. - ThinkPad Compact Bluetooth Keyboard with TrackPoint (supports Fn keys)
  316. - ThinkPad Compact USB Keyboard with TrackPoint (supports Fn keys)
  317. config HID_LOGITECH
  318. tristate "Logitech devices"
  319. depends on HID
  320. default !EXPERT
  321. ---help---
  322. Support for Logitech devices that are not fully compliant with HID standard.
  323. config HID_LOGITECH_DJ
  324. tristate "Logitech Unifying receivers full support"
  325. depends on HIDRAW
  326. depends on HID_LOGITECH
  327. select HID_LOGITECH_HIDPP
  328. ---help---
  329. Say Y if you want support for Logitech Unifying receivers and devices.
  330. Unifying receivers are capable of pairing up to 6 Logitech compliant
  331. devices to the same receiver. Without this driver it will be handled by
  332. generic USB_HID driver and all incoming events will be multiplexed
  333. into a single mouse and a single keyboard device.
  334. config HID_LOGITECH_HIDPP
  335. tristate "Logitech HID++ devices support"
  336. depends on HID_LOGITECH
  337. ---help---
  338. Support for Logitech devices relyingon the HID++ Logitech specification
  339. Say Y if you want support for Logitech devices relying on the HID++
  340. specification. Such devices are the various Logitech Touchpads (T650,
  341. T651, TK820), some mice (Zone Touch mouse), or even keyboards (Solar
  342. Keyboard).
  343. config LOGITECH_FF
  344. bool "Logitech force feedback support"
  345. depends on HID_LOGITECH
  346. select INPUT_FF_MEMLESS
  347. help
  348. Say Y here if you have one of these devices:
  349. - Logitech WingMan Cordless RumblePad
  350. - Logitech WingMan Cordless RumblePad 2
  351. - Logitech WingMan Force 3D
  352. - Logitech Formula Force EX
  353. - Logitech WingMan Formula Force GP
  354. and if you want to enable force feedback for them.
  355. Note: if you say N here, this device will still be supported, but without
  356. force feedback.
  357. config LOGIRUMBLEPAD2_FF
  358. bool "Logitech force feedback support (variant 2)"
  359. depends on HID_LOGITECH
  360. select INPUT_FF_MEMLESS
  361. help
  362. Say Y here if you want to enable force feedback support for:
  363. - Logitech RumblePad
  364. - Logitech Rumblepad 2
  365. - Logitech Formula Vibration Feedback Wheel
  366. config LOGIG940_FF
  367. bool "Logitech Flight System G940 force feedback support"
  368. depends on HID_LOGITECH
  369. select INPUT_FF_MEMLESS
  370. help
  371. Say Y here if you want to enable force feedback support for Logitech
  372. Flight System G940 devices.
  373. config LOGIWHEELS_FF
  374. bool "Logitech wheels configuration and force feedback support"
  375. depends on HID_LOGITECH
  376. select INPUT_FF_MEMLESS
  377. default LOGITECH_FF
  378. help
  379. Say Y here if you want to enable force feedback and range setting
  380. support for following Logitech wheels:
  381. - Logitech Driving Force
  382. - Logitech Driving Force Pro
  383. - Logitech Driving Force GT
  384. - Logitech G25
  385. - Logitech G27
  386. - Logitech MOMO/MOMO 2
  387. - Logitech Formula Force EX
  388. config HID_MAGICMOUSE
  389. tristate "Apple Magic Mouse/Trackpad multi-touch support"
  390. depends on HID
  391. ---help---
  392. Support for the Apple Magic Mouse/Trackpad multi-touch.
  393. Say Y here if you want support for the multi-touch features of the
  394. Apple Wireless "Magic" Mouse and the Apple Wireless "Magic" Trackpad.
  395. config HID_MICROSOFT
  396. tristate "Microsoft non-fully HID-compliant devices"
  397. depends on HID
  398. default !EXPERT
  399. ---help---
  400. Support for Microsoft devices that are not fully compliant with HID standard.
  401. config HID_MONTEREY
  402. tristate "Monterey Genius KB29E keyboard"
  403. depends on HID
  404. default !EXPERT
  405. ---help---
  406. Support for Monterey Genius KB29E.
  407. config HID_MULTITOUCH
  408. tristate "HID Multitouch panels"
  409. depends on HID
  410. ---help---
  411. Generic support for HID multitouch panels.
  412. Say Y here if you have one of the following devices:
  413. - 3M PCT touch screens
  414. - ActionStar dual touch panels
  415. - Atmel panels
  416. - Cando dual touch panels
  417. - Chunghwa panels
  418. - CJTouch panels
  419. - CVTouch panels
  420. - Cypress TrueTouch panels
  421. - Elan Microelectronics touch panels
  422. - Elo TouchSystems IntelliTouch Plus panels
  423. - GeneralTouch 'Sensing Win7-TwoFinger' panels
  424. - GoodTouch panels
  425. - Hanvon dual touch panels
  426. - Ilitek dual touch panels
  427. - IrTouch Infrared USB panels
  428. - LG Display panels (Dell ST2220Tc)
  429. - Lumio CrystalTouch panels
  430. - MosArt dual-touch panels
  431. - Panasonic multitouch panels
  432. - PenMount dual touch panels
  433. - Perixx Peripad 701 touchpad
  434. - PixArt optical touch screen
  435. - Pixcir dual touch panels
  436. - Quanta panels
  437. - eGalax dual-touch panels, including the Joojoo and Wetab tablets
  438. - SiS multitouch panels
  439. - Stantum multitouch panels
  440. - Touch International Panels
  441. - Unitec Panels
  442. - Wistron optical touch panels
  443. - XAT optical touch panels
  444. - Xiroku optical touch panels
  445. - Zytronic touch panels
  446. If unsure, say N.
  447. To compile this driver as a module, choose M here: the
  448. module will be called hid-multitouch.
  449. config HID_NTRIG
  450. tristate "N-Trig touch screen"
  451. depends on USB_HID
  452. ---help---
  453. Support for N-Trig touch screen.
  454. config HID_ORTEK
  455. tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad"
  456. depends on HID
  457. ---help---
  458. There are certain devices which have LogicalMaximum wrong in the keyboard
  459. usage page of their report descriptor. The most prevailing ones so far
  460. are manufactured by Ortek, thus the name of the driver. Currently
  461. supported devices by this driver are
  462. - Ortek PKB-1700
  463. - Ortek WKB-2000
  464. - Skycable wireless presenter
  465. config HID_PANTHERLORD
  466. tristate "Pantherlord/GreenAsia game controller"
  467. depends on HID
  468. ---help---
  469. Say Y here if you have a PantherLord/GreenAsia based game controller
  470. or adapter.
  471. config PANTHERLORD_FF
  472. bool "Pantherlord force feedback support"
  473. depends on HID_PANTHERLORD
  474. select INPUT_FF_MEMLESS
  475. ---help---
  476. Say Y here if you have a PantherLord/GreenAsia based game controller
  477. or adapter and want to enable force feedback support for it.
  478. config HID_PENMOUNT
  479. tristate "Penmount touch device"
  480. depends on USB_HID
  481. ---help---
  482. This selects a driver for the PenMount 6000 touch controller.
  483. The driver works around a problem in the report descript allowing
  484. the userspace to touch events instead of mouse events.
  485. Say Y here if you have a Penmount based touch controller.
  486. config HID_PETALYNX
  487. tristate "Petalynx Maxter remote control"
  488. depends on HID
  489. ---help---
  490. Support for Petalynx Maxter remote control.
  491. config HID_PICOLCD
  492. tristate "PicoLCD (graphic version)"
  493. depends on HID
  494. ---help---
  495. This provides support for Minibox PicoLCD devices, currently
  496. only the graphical ones are supported.
  497. This includes support for the following device features:
  498. - Keypad
  499. - Switching between Firmware and Flash mode
  500. - EEProm / Flash access (via debugfs)
  501. Features selectively enabled:
  502. - Framebuffer for monochrome 256x64 display
  503. - Backlight control
  504. - Contrast control
  505. - General purpose outputs
  506. Features that are not (yet) supported:
  507. - IR
  508. config HID_PICOLCD_FB
  509. bool "Framebuffer support" if EXPERT
  510. default !EXPERT
  511. depends on HID_PICOLCD
  512. depends on HID_PICOLCD=FB || FB=y
  513. select FB_DEFERRED_IO
  514. select FB_SYS_FILLRECT
  515. select FB_SYS_COPYAREA
  516. select FB_SYS_IMAGEBLIT
  517. select FB_SYS_FOPS
  518. ---help---
  519. Provide access to PicoLCD's 256x64 monochrome display via a
  520. framebuffer device.
  521. config HID_PICOLCD_BACKLIGHT
  522. bool "Backlight control" if EXPERT
  523. default !EXPERT
  524. depends on HID_PICOLCD
  525. depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y
  526. ---help---
  527. Provide access to PicoLCD's backlight control via backlight
  528. class.
  529. config HID_PICOLCD_LCD
  530. bool "Contrast control" if EXPERT
  531. default !EXPERT
  532. depends on HID_PICOLCD
  533. depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y
  534. ---help---
  535. Provide access to PicoLCD's LCD contrast via lcd class.
  536. config HID_PICOLCD_LEDS
  537. bool "GPO via leds class" if EXPERT
  538. default !EXPERT
  539. depends on HID_PICOLCD
  540. depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y
  541. ---help---
  542. Provide access to PicoLCD's GPO pins via leds class.
  543. config HID_PICOLCD_CIR
  544. bool "CIR via RC class" if EXPERT
  545. default !EXPERT
  546. depends on HID_PICOLCD
  547. depends on HID_PICOLCD=RC_CORE || RC_CORE=y
  548. ---help---
  549. Provide access to PicoLCD's CIR interface via remote control (LIRC).
  550. config HID_PLANTRONICS
  551. tristate "Plantronics USB HID Driver"
  552. depends on HID
  553. ---help---
  554. Provides HID support for Plantronics USB audio devices.
  555. Correctly maps vendor unique volume up/down HID usages to
  556. KEY_VOLUMEUP and KEY_VOLUMEDOWN events and prevents core mapping
  557. of other vendor unique HID usages to random mouse events.
  558. Say M here if you may ever plug in a Plantronics USB audio device.
  559. config HID_PRIMAX
  560. tristate "Primax non-fully HID-compliant devices"
  561. depends on HID
  562. ---help---
  563. Support for Primax devices that are not fully compliant with the
  564. HID standard.
  565. config HID_ROCCAT
  566. tristate "Roccat device support"
  567. depends on USB_HID
  568. ---help---
  569. Support for Roccat devices.
  570. Say Y here if you have a Roccat mouse or keyboard and want
  571. support for its special functionalities.
  572. config HID_SAITEK
  573. tristate "Saitek (Mad Catz) non-fully HID-compliant devices"
  574. depends on HID
  575. ---help---
  576. Support for Saitek devices that are not fully compliant with the
  577. HID standard.
  578. Supported devices:
  579. - PS1000 Dual Analog Pad
  580. - R.A.T.9 Gaming Mouse
  581. - R.A.T.7 Gaming Mouse
  582. - M.M.O.7 Gaming Mouse
  583. config HID_SAMSUNG
  584. tristate "Samsung InfraRed remote control or keyboards"
  585. depends on HID
  586. ---help---
  587. Support for Samsung InfraRed remote control or keyboards.
  588. config HID_SONY
  589. tristate "Sony PS2/3/4 accessories"
  590. depends on USB_HID
  591. depends on NEW_LEDS
  592. depends on LEDS_CLASS
  593. select POWER_SUPPLY
  594. ---help---
  595. Support for
  596. * Sony PS3 6-axis controllers
  597. * Sony PS4 DualShock 4 controllers
  598. * Buzz controllers
  599. * Sony PS3 Blue-ray Disk Remote Control (Bluetooth)
  600. * Logitech Harmony adapter for Sony Playstation 3 (Bluetooth)
  601. config SONY_FF
  602. bool "Sony PS2/3/4 accessories force feedback support"
  603. depends on HID_SONY
  604. select INPUT_FF_MEMLESS
  605. ---help---
  606. Say Y here if you have a Sony PS2/3/4 accessory and want to enable
  607. force feedback support for it.
  608. config HID_SPEEDLINK
  609. tristate "Speedlink VAD Cezanne mouse support"
  610. depends on HID
  611. ---help---
  612. Support for Speedlink Vicious and Divine Cezanne mouse.
  613. config HID_STEELSERIES
  614. tristate "Steelseries SRW-S1 steering wheel support"
  615. depends on HID
  616. ---help---
  617. Support for Steelseries SRW-S1 steering wheel
  618. config HID_SUNPLUS
  619. tristate "Sunplus wireless desktop"
  620. depends on HID
  621. ---help---
  622. Support for Sunplus wireless desktop.
  623. config HID_RMI
  624. tristate "Synaptics RMI4 device support"
  625. depends on HID
  626. ---help---
  627. Support for Synaptics RMI4 touchpads.
  628. Say Y here if you have a Synaptics RMI4 touchpads over i2c-hid or usbhid
  629. and want support for its special functionalities.
  630. config HID_GREENASIA
  631. tristate "GreenAsia (Product ID 0x12) game controller support"
  632. depends on HID
  633. ---help---
  634. Say Y here if you have a GreenAsia (Product ID 0x12) based game
  635. controller or adapter.
  636. config GREENASIA_FF
  637. bool "GreenAsia (Product ID 0x12) force feedback support"
  638. depends on HID_GREENASIA
  639. select INPUT_FF_MEMLESS
  640. ---help---
  641. Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
  642. (like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
  643. and want to enable force feedback support for it.
  644. config HID_HYPERV_MOUSE
  645. tristate "Microsoft Hyper-V mouse driver"
  646. depends on HYPERV
  647. ---help---
  648. Select this option to enable the Hyper-V mouse driver.
  649. config HID_SMARTJOYPLUS
  650. tristate "SmartJoy PLUS PS2/USB adapter support"
  651. depends on HID
  652. ---help---
  653. Support for SmartJoy PLUS PS2/USB adapter, Super Dual Box,
  654. Super Joy Box 3 Pro, Super Dual Box Pro, and Super Joy Box 5 Pro.
  655. Note that DDR (Dance Dance Revolution) mode is not supported, nor
  656. is pressure sensitive buttons on the pro models.
  657. config SMARTJOYPLUS_FF
  658. bool "SmartJoy PLUS PS2/USB adapter force feedback support"
  659. depends on HID_SMARTJOYPLUS
  660. select INPUT_FF_MEMLESS
  661. ---help---
  662. Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to
  663. enable force feedback support for it.
  664. config HID_TIVO
  665. tristate "TiVo Slide Bluetooth remote control support"
  666. depends on HID
  667. ---help---
  668. Say Y if you have a TiVo Slide Bluetooth remote control.
  669. config HID_TOPSEED
  670. tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support"
  671. depends on HID
  672. ---help---
  673. Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic
  674. CLLRCMCE remote control.
  675. config HID_THINGM
  676. tristate "ThingM blink(1) USB RGB LED"
  677. depends on HID
  678. depends on LEDS_CLASS
  679. ---help---
  680. Support for the ThingM blink(1) USB RGB LED. This driver registers a
  681. Linux LED class instance, plus additional sysfs attributes to control
  682. RGB colors, fade time and playing. The device is exposed through hidraw
  683. to access other functions.
  684. config HID_THRUSTMASTER
  685. tristate "ThrustMaster devices support"
  686. depends on HID
  687. ---help---
  688. Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or
  689. a THRUSTMASTER Ferrari GT Rumble Wheel.
  690. config THRUSTMASTER_FF
  691. bool "ThrustMaster devices force feedback support"
  692. depends on HID_THRUSTMASTER
  693. select INPUT_FF_MEMLESS
  694. ---help---
  695. Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3,
  696. a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT
  697. Rumble Force or Force Feedback Wheel.
  698. config HID_WACOM
  699. tristate "Wacom Intuos/Graphire tablet support (USB)"
  700. depends on HID
  701. select POWER_SUPPLY
  702. select NEW_LEDS
  703. select LEDS_CLASS
  704. help
  705. Say Y here if you want to use the USB or BT version of the Wacom Intuos
  706. or Graphire tablet.
  707. To compile this driver as a module, choose M here: the
  708. module will be called wacom.
  709. config HID_WIIMOTE
  710. tristate "Nintendo Wii / Wii U peripherals"
  711. depends on HID
  712. depends on LEDS_CLASS
  713. select POWER_SUPPLY
  714. select INPUT_FF_MEMLESS
  715. ---help---
  716. Support for Nintendo Wii and Wii U Bluetooth peripherals. Supported
  717. devices are the Wii Remote and its extension devices, but also devices
  718. based on the Wii Remote like the Wii U Pro Controller or the
  719. Wii Balance Board.
  720. Support for all official Nintendo extensions is available, however, 3rd
  721. party extensions might not be supported. Please report these devices to:
  722. http://github.com/dvdhrm/xwiimote/issues
  723. Other Nintendo Wii U peripherals that are IEEE 802.11 based (including
  724. the Wii U Gamepad) might be supported in the future. But currently
  725. support is limited to Bluetooth based devices.
  726. If unsure, say N.
  727. To compile this driver as a module, choose M here: the
  728. module will be called hid-wiimote.
  729. config HID_XINMO
  730. tristate "Xin-Mo non-fully compliant devices"
  731. depends on HID
  732. ---help---
  733. Support for Xin-Mo devices that are not fully compliant with the HID
  734. standard. Currently only supports the Xin-Mo Dual Arcade. Say Y here
  735. if you have a Xin-Mo Dual Arcade controller.
  736. config HID_ZEROPLUS
  737. tristate "Zeroplus based game controller support"
  738. depends on HID
  739. ---help---
  740. Say Y here if you have a Zeroplus based game controller.
  741. config ZEROPLUS_FF
  742. bool "Zeroplus based game controller force feedback support"
  743. depends on HID_ZEROPLUS
  744. select INPUT_FF_MEMLESS
  745. ---help---
  746. Say Y here if you have a Zeroplus based game controller and want
  747. to have force feedback support for it.
  748. config HID_ZYDACRON
  749. tristate "Zydacron remote control support"
  750. depends on HID
  751. ---help---
  752. Support for Zydacron remote control.
  753. config HID_SENSOR_HUB
  754. tristate "HID Sensors framework support"
  755. depends on HID && HAS_IOMEM
  756. select MFD_CORE
  757. default n
  758. ---help---
  759. Support for HID Sensor framework. This creates a MFD instance
  760. for a sensor hub and identifies all the sensors connected to it.
  761. Each sensor is registered as a MFD cell, so that sensor specific
  762. processing can be done in a separate driver. Each sensor
  763. drivers can use the service provided by this driver to register
  764. for events and handle data streams. Each sensor driver can format
  765. data and present to user mode using input or IIO interface.
  766. config HID_SENSOR_CUSTOM_SENSOR
  767. tristate "HID Sensors hub custom sensor support"
  768. depends on HID_SENSOR_HUB
  769. default n
  770. ---help---
  771. HID Sensor hub specification allows definition of some custom and
  772. generic sensors. Unlike other HID sensors, they can't be exported
  773. via Linux IIO because of custom fields. This is up to the manufacturer
  774. to decide how to interpret these special sensor ids and process in
  775. the user space. Currently some manufacturers are using these ids for
  776. sensor calibration and debugging other sensors. Manufacturers
  777. should't use these special custom sensor ids to export any of the
  778. standard sensors.
  779. Select this config option for custom/generic sensor support.
  780. endmenu
  781. endif # HID
  782. source "drivers/hid/usbhid/Kconfig"
  783. source "drivers/hid/i2c-hid/Kconfig"
  784. endmenu