Kconfig 29 KB

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