Kconfig 29 KB

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