Kconfig 27 KB

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