Kconfig 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093
  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_ACCUTOUCH
  83. tristate "Accutouch touch device"
  84. depends on USB_HID
  85. ---help---
  86. This selects a driver for the Accutouch 2216 touch controller.
  87. The driver works around a problem in the reported device capabilities
  88. which causes userspace to detect the device as a mouse rather than
  89. a touchscreen.
  90. Say Y here if you have a Accutouch 2216 touch controller.
  91. config HID_ACRUX
  92. tristate "ACRUX game controller support"
  93. depends on HID
  94. ---help---
  95. Say Y here if you want to enable support for ACRUX game controllers.
  96. config HID_ACRUX_FF
  97. bool "ACRUX force feedback support"
  98. depends on HID_ACRUX
  99. select INPUT_FF_MEMLESS
  100. ---help---
  101. Say Y here if you want to enable force feedback support for ACRUX
  102. game controllers.
  103. config HID_APPLE
  104. tristate "Apple {i,Power,Mac}Books"
  105. depends on HID
  106. default !EXPERT
  107. ---help---
  108. Support for some Apple devices which less or more break
  109. HID specification.
  110. Say Y here if you want support for keyboards of Apple iBooks, PowerBooks,
  111. MacBooks, MacBook Pros and Apple Aluminum.
  112. config HID_APPLEIR
  113. tristate "Apple infrared receiver"
  114. depends on (USB_HID)
  115. ---help---
  116. Support for Apple infrared remote control. All the Apple computers from
  117. 2005 onwards include such a port, except the unibody Macbook (2009),
  118. and Mac Pros. This receiver is also used in the Apple TV set-top box
  119. prior to the 2010 model.
  120. Say Y here if you want support for Apple infrared remote control.
  121. config HID_ASUS
  122. tristate "Asus"
  123. depends on LEDS_CLASS
  124. ---help---
  125. Support for Asus notebook built-in keyboard and touchpad via i2c, and
  126. the Asus Republic of Gamers laptop keyboard special keys.
  127. Supported devices:
  128. - EeeBook X205TA
  129. - VivoBook E200HA
  130. - GL553V series
  131. - GL753V series
  132. config HID_AUREAL
  133. tristate "Aureal"
  134. depends on HID
  135. ---help---
  136. Support for Aureal Cy se W-01RN Remote Controller and other Aureal derived remotes.
  137. config HID_BELKIN
  138. tristate "Belkin Flip KVM and Wireless keyboard"
  139. depends on HID
  140. default !EXPERT
  141. ---help---
  142. Support for Belkin Flip KVM and Wireless keyboard.
  143. config HID_BETOP_FF
  144. tristate "Betop Production Inc. force feedback support"
  145. depends on USB_HID
  146. select INPUT_FF_MEMLESS
  147. ---help---
  148. Say Y here if you want to enable force feedback support for devices by
  149. BETOP Production Ltd.
  150. Currently the following devices are known to be supported:
  151. - BETOP 2185 PC & BFM MODE
  152. config HID_CHERRY
  153. tristate "Cherry Cymotion keyboard"
  154. depends on HID
  155. default !EXPERT
  156. ---help---
  157. Support for Cherry Cymotion keyboard.
  158. config HID_CHICONY
  159. tristate "Chicony devices"
  160. depends on HID
  161. default !EXPERT
  162. ---help---
  163. Support for Chicony Tactical pad and special keys on Chicony keyboards.
  164. config HID_CORSAIR
  165. tristate "Corsair devices"
  166. depends on HID && USB && LEDS_CLASS
  167. ---help---
  168. Support for Corsair devices that are not fully compliant with the
  169. HID standard.
  170. Supported devices:
  171. - Vengeance K90
  172. - Scimitar PRO RGB
  173. config HID_COUGAR
  174. tristate "Cougar devices"
  175. depends on HID
  176. help
  177. Support for Cougar devices that are not fully compliant with the
  178. HID standard.
  179. Supported devices:
  180. - Cougar 500k Gaming Keyboard
  181. config HID_PRODIKEYS
  182. tristate "Prodikeys PC-MIDI Keyboard support"
  183. depends on HID && SND
  184. select SND_RAWMIDI
  185. ---help---
  186. Support for Prodikeys PC-MIDI Keyboard device support.
  187. Say Y here to enable support for this device.
  188. - Prodikeys PC-MIDI keyboard.
  189. The Prodikeys PC-MIDI acts as a USB Audio device, with one MIDI
  190. input and one MIDI output. These MIDI jacks appear as
  191. a sound "card" in the ALSA sound system.
  192. Note: if you say N here, this device will still function as a basic
  193. multimedia keyboard, but will lack support for the musical keyboard
  194. and some additional multimedia keys.
  195. config HID_CMEDIA
  196. tristate "CMedia CM6533 HID audio jack controls"
  197. depends on HID
  198. ---help---
  199. Support for CMedia CM6533 HID audio jack controls.
  200. config HID_CP2112
  201. tristate "Silicon Labs CP2112 HID USB-to-SMBus Bridge support"
  202. depends on USB_HID && HIDRAW && I2C && GPIOLIB
  203. select GPIOLIB_IRQCHIP
  204. ---help---
  205. Support for Silicon Labs CP2112 HID USB to SMBus Master Bridge.
  206. This is a HID device driver which registers as an i2c adapter
  207. and gpiochip to expose these functions of the CP2112. The
  208. customizable USB descriptor fields are exposed as sysfs attributes.
  209. config HID_CYPRESS
  210. tristate "Cypress mouse and barcode readers"
  211. depends on HID
  212. default !EXPERT
  213. ---help---
  214. Support for cypress mouse and barcode readers.
  215. config HID_DRAGONRISE
  216. tristate "DragonRise Inc. game controller"
  217. depends on HID
  218. ---help---
  219. Say Y here if you have DragonRise Inc. game controllers.
  220. These might be branded as:
  221. - Tesun USB-703
  222. - Media-tech MT1504 "Rogue"
  223. - DVTech JS19 "Gear"
  224. - Defender Game Master
  225. config DRAGONRISE_FF
  226. bool "DragonRise Inc. force feedback"
  227. depends on HID_DRAGONRISE
  228. select INPUT_FF_MEMLESS
  229. ---help---
  230. Say Y here if you want to enable force feedback support for DragonRise Inc.
  231. game controllers.
  232. config HID_EMS_FF
  233. tristate "EMS Production Inc. force feedback support"
  234. depends on HID
  235. select INPUT_FF_MEMLESS
  236. ---help---
  237. Say Y here if you want to enable force feedback support for devices by
  238. EMS Production Ltd.
  239. Currently the following devices are known to be supported:
  240. - Trio Linker Plus II
  241. config HID_ELAN
  242. tristate "ELAN USB Touchpad Support"
  243. depends on LEDS_CLASS && USB_HID
  244. ---help---
  245. Say Y to enable support for the USB ELAN touchpad
  246. Currently the following devices are known to be supported:
  247. - HP Pavilion X2 10-p0XX.
  248. config HID_ELECOM
  249. tristate "ELECOM HID devices"
  250. depends on HID
  251. ---help---
  252. Support for ELECOM devices:
  253. - BM084 Bluetooth Mouse
  254. - EX-G Trackballs (M-XT3DRBK, M-XT3URBK)
  255. - DEFT Trackballs (M-DT1DRBK, M-DT1URBK, M-DT2DRBK, M-DT2URBK)
  256. - HUGE Trackballs (M-HT1DRBK, M-HT1URBK)
  257. config HID_ELO
  258. tristate "ELO USB 4000/4500 touchscreen"
  259. depends on USB_HID
  260. ---help---
  261. Support for the ELO USB 4000/4500 touchscreens. Note that this is for
  262. different devices than those handled by CONFIG_TOUCHSCREEN_USB_ELO.
  263. config HID_EZKEY
  264. tristate "Ezkey BTC 8193 keyboard"
  265. depends on HID
  266. default !EXPERT
  267. ---help---
  268. Support for Ezkey BTC 8193 keyboard.
  269. config HID_GEMBIRD
  270. tristate "Gembird Joypad"
  271. depends on HID
  272. ---help---
  273. Support for Gembird JPD-DualForce 2.
  274. config HID_GFRM
  275. tristate "Google Fiber TV Box remote control support"
  276. depends on HID
  277. ---help---
  278. Support for Google Fiber TV Box remote controls
  279. config HID_HOLTEK
  280. tristate "Holtek HID devices"
  281. depends on USB_HID
  282. ---help---
  283. Support for Holtek based devices:
  284. - Holtek On Line Grip based game controller
  285. - Trust GXT 18 Gaming Keyboard
  286. - Sharkoon Drakonia / Perixx MX-2000 gaming mice
  287. - Tracer Sniper TRM-503 / NOVA Gaming Slider X200 /
  288. Zalman ZM-GM1
  289. - SHARKOON DarkGlider Gaming mouse
  290. - LEETGION Hellion Gaming Mouse
  291. config HOLTEK_FF
  292. bool "Holtek On Line Grip force feedback support"
  293. depends on HID_HOLTEK
  294. select INPUT_FF_MEMLESS
  295. ---help---
  296. Say Y here if you have a Holtek On Line Grip based game controller
  297. and want to have force feedback support for it.
  298. config HID_GOOGLE_HAMMER
  299. tristate "Google Hammer Keyboard"
  300. depends on USB_HID && LEDS_CLASS
  301. ---help---
  302. Say Y here if you have a Google Hammer device.
  303. config HID_GT683R
  304. tristate "MSI GT68xR LED support"
  305. depends on LEDS_CLASS && USB_HID
  306. ---help---
  307. Say Y here if you want to enable support for the three MSI GT68xR LEDs
  308. This driver support following modes:
  309. - Normal: LEDs are fully on when enabled
  310. - Audio: LEDs brightness depends on sound level
  311. - Breathing: LEDs brightness varies at human breathing rate
  312. Currently the following devices are know to be supported:
  313. - MSI GT683R
  314. config HID_KEYTOUCH
  315. tristate "Keytouch HID devices"
  316. depends on HID
  317. ---help---
  318. Support for Keytouch HID devices not fully compliant with
  319. the specification. Currently supported:
  320. - Keytouch IEC 60945
  321. config HID_KYE
  322. tristate "KYE/Genius devices"
  323. depends on HID
  324. ---help---
  325. Support for KYE/Genius devices not fully compliant with HID standard:
  326. - Ergo Mouse
  327. - EasyPen i405X tablet
  328. - MousePen i608X tablet
  329. - EasyPen M610X tablet
  330. config HID_UCLOGIC
  331. tristate "UC-Logic"
  332. depends on USB_HID
  333. ---help---
  334. Support for UC-Logic and Huion tablets.
  335. config HID_WALTOP
  336. tristate "Waltop"
  337. depends on HID
  338. ---help---
  339. Support for Waltop tablets.
  340. config HID_GYRATION
  341. tristate "Gyration remote control"
  342. depends on HID
  343. ---help---
  344. Support for Gyration remote control.
  345. config HID_ICADE
  346. tristate "ION iCade arcade controller"
  347. depends on HID
  348. ---help---
  349. Support for the ION iCade arcade controller to work as a joystick.
  350. To compile this driver as a module, choose M here: the
  351. module will be called hid-icade.
  352. config HID_ITE
  353. tristate "ITE devices"
  354. depends on HID
  355. default !EXPERT
  356. ---help---
  357. Support for ITE devices not fully compliant with HID standard.
  358. config HID_JABRA
  359. tristate "Jabra USB HID Driver"
  360. depends on HID
  361. ---help---
  362. Support for Jabra USB HID devices.
  363. Prevents mapping of vendor defined HID usages to input events. Without
  364. this driver HID reports from Jabra devices may incorrectly be seen as
  365. mouse button events.
  366. Say M here if you may ever plug in a Jabra USB device.
  367. config HID_TWINHAN
  368. tristate "Twinhan IR remote control"
  369. depends on HID
  370. ---help---
  371. Support for Twinhan IR remote control.
  372. config HID_KENSINGTON
  373. tristate "Kensington Slimblade Trackball"
  374. depends on HID
  375. default !EXPERT
  376. ---help---
  377. Support for Kensington Slimblade Trackball.
  378. config HID_LCPOWER
  379. tristate "LC-Power"
  380. depends on HID
  381. ---help---
  382. Support for LC-Power RC1000MCE RF remote control.
  383. config HID_LED
  384. tristate "Simple RGB LED support"
  385. depends on HID
  386. depends on LEDS_CLASS
  387. ---help---
  388. Support for simple RGB LED devices. Currently supported are:
  389. - Riso Kagaku Webmail Notifier
  390. - Dream Cheeky Webmail Notifier and Friends Alert
  391. - ThingM blink(1)
  392. - Delcom Visual Signal Indicator Generation 2
  393. - Greynut Luxafor
  394. To compile this driver as a module, choose M here: the
  395. module will be called hid-led.
  396. config HID_LENOVO
  397. tristate "Lenovo / Thinkpad devices"
  398. depends on HID
  399. select NEW_LEDS
  400. select LEDS_CLASS
  401. ---help---
  402. Support for IBM/Lenovo devices that are not fully compliant with HID standard.
  403. Say Y if you want support for horizontal scrolling of the IBM/Lenovo
  404. Scrollpoint mice or the non-compliant features of the Lenovo Thinkpad
  405. standalone keyboards, e.g:
  406. - ThinkPad USB Keyboard with TrackPoint (supports extra LEDs and trackpoint
  407. configuration)
  408. - ThinkPad Compact Bluetooth Keyboard with TrackPoint (supports Fn keys)
  409. - ThinkPad Compact USB Keyboard with TrackPoint (supports Fn keys)
  410. config HID_LOGITECH
  411. tristate "Logitech devices"
  412. depends on HID
  413. default !EXPERT
  414. ---help---
  415. Support for Logitech devices that are not fully compliant with HID standard.
  416. config HID_LOGITECH_DJ
  417. tristate "Logitech Unifying receivers full support"
  418. depends on HIDRAW
  419. depends on HID_LOGITECH
  420. select HID_LOGITECH_HIDPP
  421. ---help---
  422. Say Y if you want support for Logitech Unifying receivers and devices.
  423. Unifying receivers are capable of pairing up to 6 Logitech compliant
  424. devices to the same receiver. Without this driver it will be handled by
  425. generic USB_HID driver and all incoming events will be multiplexed
  426. into a single mouse and a single keyboard device.
  427. config HID_LOGITECH_HIDPP
  428. tristate "Logitech HID++ devices support"
  429. depends on HID_LOGITECH
  430. select POWER_SUPPLY
  431. ---help---
  432. Support for Logitech devices relyingon the HID++ Logitech specification
  433. Say Y if you want support for Logitech devices relying on the HID++
  434. specification. Such devices are the various Logitech Touchpads (T650,
  435. T651, TK820), some mice (Zone Touch mouse), or even keyboards (Solar
  436. Keyboard).
  437. config LOGITECH_FF
  438. bool "Logitech force feedback support"
  439. depends on HID_LOGITECH
  440. select INPUT_FF_MEMLESS
  441. help
  442. Say Y here if you have one of these devices:
  443. - Logitech WingMan Cordless RumblePad
  444. - Logitech WingMan Cordless RumblePad 2
  445. - Logitech WingMan Force 3D
  446. and if you want to enable force feedback for them.
  447. Note: if you say N here, this device will still be supported, but without
  448. force feedback.
  449. config LOGIRUMBLEPAD2_FF
  450. bool "Logitech force feedback support (variant 2)"
  451. depends on HID_LOGITECH
  452. select INPUT_FF_MEMLESS
  453. help
  454. Say Y here if you want to enable force feedback support for:
  455. - Logitech RumblePad
  456. - Logitech Rumblepad 2
  457. - Logitech Formula Vibration Feedback Wheel
  458. config LOGIG940_FF
  459. bool "Logitech Flight System G940 force feedback support"
  460. depends on HID_LOGITECH
  461. select INPUT_FF_MEMLESS
  462. help
  463. Say Y here if you want to enable force feedback support for Logitech
  464. Flight System G940 devices.
  465. config LOGIWHEELS_FF
  466. bool "Logitech wheels configuration and force feedback support"
  467. depends on HID_LOGITECH
  468. select INPUT_FF_MEMLESS
  469. default LOGITECH_FF
  470. help
  471. Say Y here if you want to enable force feedback and range setting(*)
  472. support for following Logitech wheels:
  473. - Logitech G25 (*)
  474. - Logitech G27 (*)
  475. - Logitech G29 (*)
  476. - Logitech Driving Force
  477. - Logitech Driving Force Pro (*)
  478. - Logitech Driving Force GT (*)
  479. - Logitech Driving Force EX/RX
  480. - Logitech Driving Force Wireless
  481. - Logitech Speed Force Wireless
  482. - Logitech MOMO Force
  483. - Logitech MOMO Racing Force
  484. - Logitech Formula Force GP
  485. - Logitech Formula Force EX/RX
  486. - Logitech Wingman Formula Force GP
  487. config HID_MAGICMOUSE
  488. tristate "Apple Magic Mouse/Trackpad multi-touch support"
  489. depends on HID
  490. ---help---
  491. Support for the Apple Magic Mouse/Trackpad multi-touch.
  492. Say Y here if you want support for the multi-touch features of the
  493. Apple Wireless "Magic" Mouse and the Apple Wireless "Magic" Trackpad.
  494. config HID_MAYFLASH
  495. tristate "Mayflash game controller adapter force feedback"
  496. depends on HID
  497. select INPUT_FF_MEMLESS
  498. ---help---
  499. Say Y here if you have HJZ Mayflash PS3 game controller adapters
  500. and want to enable force feedback support.
  501. config HID_REDRAGON
  502. tristate "Redragon keyboards"
  503. depends on HID
  504. default !EXPERT
  505. ---help---
  506. Support for Redragon keyboards that need fix-ups to work properly.
  507. config HID_MICROSOFT
  508. tristate "Microsoft non-fully HID-compliant devices"
  509. depends on HID
  510. default !EXPERT
  511. ---help---
  512. Support for Microsoft devices that are not fully compliant with HID standard.
  513. config HID_MONTEREY
  514. tristate "Monterey Genius KB29E keyboard"
  515. depends on HID
  516. default !EXPERT
  517. ---help---
  518. Support for Monterey Genius KB29E.
  519. config HID_MULTITOUCH
  520. tristate "HID Multitouch panels"
  521. depends on HID
  522. ---help---
  523. Generic support for HID multitouch panels.
  524. Say Y here if you have one of the following devices:
  525. - 3M PCT touch screens
  526. - ActionStar dual touch panels
  527. - Atmel panels
  528. - Cando dual touch panels
  529. - Chunghwa panels
  530. - CJTouch panels
  531. - CVTouch panels
  532. - Cypress TrueTouch panels
  533. - Elan Microelectronics touch panels
  534. - Elo TouchSystems IntelliTouch Plus panels
  535. - GeneralTouch 'Sensing Win7-TwoFinger' panels
  536. - GoodTouch panels
  537. - Hanvon dual touch panels
  538. - Ilitek dual touch panels
  539. - IrTouch Infrared USB panels
  540. - LG Display panels (Dell ST2220Tc)
  541. - Lumio CrystalTouch panels
  542. - MosArt dual-touch panels
  543. - Panasonic multitouch panels
  544. - PenMount dual touch panels
  545. - Perixx Peripad 701 touchpad
  546. - PixArt optical touch screen
  547. - Pixcir dual touch panels
  548. - Quanta panels
  549. - eGalax dual-touch panels, including the Joojoo and Wetab tablets
  550. - SiS multitouch panels
  551. - Stantum multitouch panels
  552. - Touch International Panels
  553. - Unitec Panels
  554. - Wistron optical touch panels
  555. - XAT optical touch panels
  556. - Xiroku optical touch panels
  557. - Zytronic touch panels
  558. If unsure, say N.
  559. To compile this driver as a module, choose M here: the
  560. module will be called hid-multitouch.
  561. config HID_NTI
  562. tristate "NTI keyboard adapters"
  563. ---help---
  564. Support for the "extra" Sun keyboard keys on keyboards attached
  565. through Network Technologies USB-SUN keyboard adapters.
  566. config HID_NTRIG
  567. tristate "N-Trig touch screen"
  568. depends on USB_HID
  569. ---help---
  570. Support for N-Trig touch screen.
  571. config HID_ORTEK
  572. tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad"
  573. depends on HID
  574. ---help---
  575. There are certain devices which have LogicalMaximum wrong in the keyboard
  576. usage page of their report descriptor. The most prevailing ones so far
  577. are manufactured by Ortek, thus the name of the driver. Currently
  578. supported devices by this driver are
  579. - Ortek PKB-1700
  580. - Ortek WKB-2000
  581. - Skycable wireless presenter
  582. config HID_PANTHERLORD
  583. tristate "Pantherlord/GreenAsia game controller"
  584. depends on HID
  585. ---help---
  586. Say Y here if you have a PantherLord/GreenAsia based game controller
  587. or adapter.
  588. config PANTHERLORD_FF
  589. bool "Pantherlord force feedback support"
  590. depends on HID_PANTHERLORD
  591. select INPUT_FF_MEMLESS
  592. ---help---
  593. Say Y here if you have a PantherLord/GreenAsia based game controller
  594. or adapter and want to enable force feedback support for it.
  595. config HID_PENMOUNT
  596. tristate "Penmount touch device"
  597. depends on USB_HID
  598. ---help---
  599. This selects a driver for the PenMount 6000 touch controller.
  600. The driver works around a problem in the report descript allowing
  601. the userspace to touch events instead of mouse events.
  602. Say Y here if you have a Penmount based touch controller.
  603. config HID_PETALYNX
  604. tristate "Petalynx Maxter remote control"
  605. depends on HID
  606. ---help---
  607. Support for Petalynx Maxter remote control.
  608. config HID_PICOLCD
  609. tristate "PicoLCD (graphic version)"
  610. depends on HID
  611. ---help---
  612. This provides support for Minibox PicoLCD devices, currently
  613. only the graphical ones are supported.
  614. This includes support for the following device features:
  615. - Keypad
  616. - Switching between Firmware and Flash mode
  617. - EEProm / Flash access (via debugfs)
  618. Features selectively enabled:
  619. - Framebuffer for monochrome 256x64 display
  620. - Backlight control
  621. - Contrast control
  622. - General purpose outputs
  623. Features that are not (yet) supported:
  624. - IR
  625. config HID_PICOLCD_FB
  626. bool "Framebuffer support" if EXPERT
  627. default !EXPERT
  628. depends on HID_PICOLCD
  629. depends on HID_PICOLCD=FB || FB=y
  630. select FB_DEFERRED_IO
  631. select FB_SYS_FILLRECT
  632. select FB_SYS_COPYAREA
  633. select FB_SYS_IMAGEBLIT
  634. select FB_SYS_FOPS
  635. ---help---
  636. Provide access to PicoLCD's 256x64 monochrome display via a
  637. framebuffer device.
  638. config HID_PICOLCD_BACKLIGHT
  639. bool "Backlight control" if EXPERT
  640. default !EXPERT
  641. depends on HID_PICOLCD
  642. depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y
  643. ---help---
  644. Provide access to PicoLCD's backlight control via backlight
  645. class.
  646. config HID_PICOLCD_LCD
  647. bool "Contrast control" if EXPERT
  648. default !EXPERT
  649. depends on HID_PICOLCD
  650. depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y
  651. ---help---
  652. Provide access to PicoLCD's LCD contrast via lcd class.
  653. config HID_PICOLCD_LEDS
  654. bool "GPO via leds class" if EXPERT
  655. default !EXPERT
  656. depends on HID_PICOLCD
  657. depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y
  658. ---help---
  659. Provide access to PicoLCD's GPO pins via leds class.
  660. config HID_PICOLCD_CIR
  661. bool "CIR via RC class" if EXPERT
  662. default !EXPERT
  663. depends on HID_PICOLCD
  664. depends on HID_PICOLCD=RC_CORE || RC_CORE=y
  665. ---help---
  666. Provide access to PicoLCD's CIR interface via remote control (LIRC).
  667. config HID_PLANTRONICS
  668. tristate "Plantronics USB HID Driver"
  669. depends on HID
  670. ---help---
  671. Provides HID support for Plantronics USB audio devices.
  672. Correctly maps vendor unique volume up/down HID usages to
  673. KEY_VOLUMEUP and KEY_VOLUMEDOWN events and prevents core mapping
  674. of other vendor unique HID usages to random mouse events.
  675. Say M here if you may ever plug in a Plantronics USB audio device.
  676. config HID_PRIMAX
  677. tristate "Primax non-fully HID-compliant devices"
  678. depends on HID
  679. ---help---
  680. Support for Primax devices that are not fully compliant with the
  681. HID standard.
  682. config HID_RETRODE
  683. tristate "Retrode 2 USB adapter for vintage video games"
  684. depends on USB_HID
  685. ---help---
  686. Support for
  687. * Retrode 2 cartridge and controller adapter
  688. config HID_ROCCAT
  689. tristate "Roccat device support"
  690. depends on USB_HID
  691. ---help---
  692. Support for Roccat devices.
  693. Say Y here if you have a Roccat mouse or keyboard and want
  694. support for its special functionalities.
  695. config HID_SAITEK
  696. tristate "Saitek (Mad Catz) non-fully HID-compliant devices"
  697. depends on HID
  698. ---help---
  699. Support for Saitek devices that are not fully compliant with the
  700. HID standard.
  701. Supported devices:
  702. - PS1000 Dual Analog Pad
  703. - Saitek R.A.T.7, R.A.T.9, M.M.O.7 Gaming Mice
  704. - Mad Catz R.A.T.5, R.A.T.9 Gaming Mice
  705. config HID_SAMSUNG
  706. tristate "Samsung InfraRed remote control or keyboards"
  707. depends on HID
  708. ---help---
  709. Support for Samsung InfraRed remote control or keyboards.
  710. config HID_SONY
  711. tristate "Sony PS2/3/4 accessories"
  712. depends on USB_HID
  713. depends on NEW_LEDS
  714. depends on LEDS_CLASS
  715. select POWER_SUPPLY
  716. ---help---
  717. Support for
  718. * Sony PS3 6-axis controllers
  719. * Sony PS4 DualShock 4 controllers
  720. * Buzz controllers
  721. * Sony PS3 Blue-ray Disk Remote Control (Bluetooth)
  722. * Logitech Harmony adapter for Sony Playstation 3 (Bluetooth)
  723. config SONY_FF
  724. bool "Sony PS2/3/4 accessories force feedback support"
  725. depends on HID_SONY
  726. select INPUT_FF_MEMLESS
  727. ---help---
  728. Say Y here if you have a Sony PS2/3/4 accessory and want to enable
  729. force feedback support for it.
  730. config HID_SPEEDLINK
  731. tristate "Speedlink VAD Cezanne mouse support"
  732. depends on HID
  733. ---help---
  734. Support for Speedlink Vicious and Divine Cezanne mouse.
  735. config HID_STEAM
  736. tristate "Steam Controller support"
  737. depends on HID
  738. select POWER_SUPPLY
  739. ---help---
  740. Say Y here if you have a Steam Controller if you want to use it
  741. without running the Steam Client. It supports both the wired and
  742. the wireless adaptor.
  743. config HID_STEELSERIES
  744. tristate "Steelseries SRW-S1 steering wheel support"
  745. depends on HID
  746. ---help---
  747. Support for Steelseries SRW-S1 steering wheel
  748. config HID_SUNPLUS
  749. tristate "Sunplus wireless desktop"
  750. depends on HID
  751. ---help---
  752. Support for Sunplus wireless desktop.
  753. config HID_RMI
  754. tristate "Synaptics RMI4 device support"
  755. depends on HID
  756. select RMI4_CORE
  757. select RMI4_F03
  758. select RMI4_F11
  759. select RMI4_F12
  760. select RMI4_F30
  761. ---help---
  762. Support for Synaptics RMI4 touchpads.
  763. Say Y here if you have a Synaptics RMI4 touchpads over i2c-hid or usbhid
  764. and want support for its special functionalities.
  765. config HID_GREENASIA
  766. tristate "GreenAsia (Product ID 0x12) game controller support"
  767. depends on HID
  768. ---help---
  769. Say Y here if you have a GreenAsia (Product ID 0x12) based game
  770. controller or adapter.
  771. config GREENASIA_FF
  772. bool "GreenAsia (Product ID 0x12) force feedback support"
  773. depends on HID_GREENASIA
  774. select INPUT_FF_MEMLESS
  775. ---help---
  776. Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
  777. (like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
  778. and want to enable force feedback support for it.
  779. config HID_HYPERV_MOUSE
  780. tristate "Microsoft Hyper-V mouse driver"
  781. depends on HYPERV
  782. ---help---
  783. Select this option to enable the Hyper-V mouse driver.
  784. config HID_SMARTJOYPLUS
  785. tristate "SmartJoy PLUS PS2/USB adapter support"
  786. depends on HID
  787. ---help---
  788. Support for SmartJoy PLUS PS2/USB adapter, Super Dual Box,
  789. Super Joy Box 3 Pro, Super Dual Box Pro, and Super Joy Box 5 Pro.
  790. Note that DDR (Dance Dance Revolution) mode is not supported, nor
  791. is pressure sensitive buttons on the pro models.
  792. config SMARTJOYPLUS_FF
  793. bool "SmartJoy PLUS PS2/USB adapter force feedback support"
  794. depends on HID_SMARTJOYPLUS
  795. select INPUT_FF_MEMLESS
  796. ---help---
  797. Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to
  798. enable force feedback support for it.
  799. config HID_TIVO
  800. tristate "TiVo Slide Bluetooth remote control support"
  801. depends on HID
  802. ---help---
  803. Say Y if you have a TiVo Slide Bluetooth remote control.
  804. config HID_TOPSEED
  805. tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support"
  806. depends on HID
  807. ---help---
  808. Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic
  809. CLLRCMCE remote control.
  810. config HID_THINGM
  811. tristate "ThingM blink(1) USB RGB LED"
  812. depends on HID
  813. depends on LEDS_CLASS
  814. select HID_LED
  815. ---help---
  816. Support for the ThingM blink(1) USB RGB LED. This driver has been
  817. merged into the generic hid led driver. Config symbol HID_THINGM
  818. just selects HID_LED and will be removed soon.
  819. config HID_THRUSTMASTER
  820. tristate "ThrustMaster devices support"
  821. depends on HID
  822. ---help---
  823. Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or
  824. a THRUSTMASTER Ferrari GT Rumble Wheel.
  825. config THRUSTMASTER_FF
  826. bool "ThrustMaster devices force feedback support"
  827. depends on HID_THRUSTMASTER
  828. select INPUT_FF_MEMLESS
  829. ---help---
  830. Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3,
  831. a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT
  832. Rumble Force or Force Feedback Wheel.
  833. config HID_UDRAW_PS3
  834. tristate "THQ PS3 uDraw tablet"
  835. depends on HID
  836. ---help---
  837. Say Y here if you want to use the THQ uDraw gaming tablet for
  838. the PS3.
  839. config HID_WACOM
  840. tristate "Wacom Intuos/Graphire tablet support (USB)"
  841. depends on USB_HID
  842. select POWER_SUPPLY
  843. select NEW_LEDS
  844. select LEDS_CLASS
  845. select LEDS_TRIGGERS
  846. help
  847. Say Y here if you want to use the USB or BT version of the Wacom Intuos
  848. or Graphire tablet.
  849. To compile this driver as a module, choose M here: the
  850. module will be called wacom.
  851. config HID_WIIMOTE
  852. tristate "Nintendo Wii / Wii U peripherals"
  853. depends on HID
  854. depends on LEDS_CLASS
  855. select POWER_SUPPLY
  856. select INPUT_FF_MEMLESS
  857. ---help---
  858. Support for Nintendo Wii and Wii U Bluetooth peripherals. Supported
  859. devices are the Wii Remote and its extension devices, but also devices
  860. based on the Wii Remote like the Wii U Pro Controller or the
  861. Wii Balance Board.
  862. Support for all official Nintendo extensions is available, however, 3rd
  863. party extensions might not be supported. Please report these devices to:
  864. http://github.com/dvdhrm/xwiimote/issues
  865. Other Nintendo Wii U peripherals that are IEEE 802.11 based (including
  866. the Wii U Gamepad) might be supported in the future. But currently
  867. support is limited to Bluetooth based devices.
  868. If unsure, say N.
  869. To compile this driver as a module, choose M here: the
  870. module will be called hid-wiimote.
  871. config HID_XINMO
  872. tristate "Xin-Mo non-fully compliant devices"
  873. depends on HID
  874. ---help---
  875. Support for Xin-Mo devices that are not fully compliant with the HID
  876. standard. Currently only supports the Xin-Mo Dual Arcade. Say Y here
  877. if you have a Xin-Mo Dual Arcade controller.
  878. config HID_ZEROPLUS
  879. tristate "Zeroplus based game controller support"
  880. depends on HID
  881. ---help---
  882. Say Y here if you have a Zeroplus based game controller.
  883. config ZEROPLUS_FF
  884. bool "Zeroplus based game controller force feedback support"
  885. depends on HID_ZEROPLUS
  886. select INPUT_FF_MEMLESS
  887. ---help---
  888. Say Y here if you have a Zeroplus based game controller and want
  889. to have force feedback support for it.
  890. config HID_ZYDACRON
  891. tristate "Zydacron remote control support"
  892. depends on HID
  893. ---help---
  894. Support for Zydacron remote control.
  895. config HID_SENSOR_HUB
  896. tristate "HID Sensors framework support"
  897. depends on HID && HAS_IOMEM
  898. select MFD_CORE
  899. default n
  900. ---help---
  901. Support for HID Sensor framework. This creates a MFD instance
  902. for a sensor hub and identifies all the sensors connected to it.
  903. Each sensor is registered as a MFD cell, so that sensor specific
  904. processing can be done in a separate driver. Each sensor
  905. drivers can use the service provided by this driver to register
  906. for events and handle data streams. Each sensor driver can format
  907. data and present to user mode using input or IIO interface.
  908. config HID_SENSOR_CUSTOM_SENSOR
  909. tristate "HID Sensors hub custom sensor support"
  910. depends on HID_SENSOR_HUB
  911. default n
  912. ---help---
  913. HID Sensor hub specification allows definition of some custom and
  914. generic sensors. Unlike other HID sensors, they can't be exported
  915. via Linux IIO because of custom fields. This is up to the manufacturer
  916. to decide how to interpret these special sensor ids and process in
  917. the user space. Currently some manufacturers are using these ids for
  918. sensor calibration and debugging other sensors. Manufacturers
  919. should't use these special custom sensor ids to export any of the
  920. standard sensors.
  921. Select this config option for custom/generic sensor support.
  922. config HID_ALPS
  923. tristate "Alps HID device support"
  924. depends on HID
  925. ---help---
  926. Support for Alps I2C HID touchpads and StickPointer.
  927. Say Y here if you have a Alps touchpads over i2c-hid or usbhid
  928. and want support for its special functionalities.
  929. endmenu
  930. endif # HID
  931. source "drivers/hid/usbhid/Kconfig"
  932. source "drivers/hid/i2c-hid/Kconfig"
  933. source "drivers/hid/intel-ish-hid/Kconfig"
  934. endmenu