Kconfig 37 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # HID driver configuration
  4. #
  5. menu "HID support"
  6. depends on INPUT
  7. config HID
  8. tristate "HID bus support"
  9. depends on INPUT
  10. default y
  11. help
  12. A human interface device (HID) is a type of computer device that
  13. interacts directly with and takes input from humans. The term "HID"
  14. most commonly used to refer to the USB-HID specification, but other
  15. devices (such as, but not strictly limited to, Bluetooth) are
  16. designed using HID specification (this involves certain keyboards,
  17. mice, tablets, etc). This option adds the HID bus to the kernel,
  18. together with generic HID layer code. The HID devices are added and
  19. removed from the HID bus by the transport-layer drivers, such as
  20. usbhid (USB_HID) and hidp (BT_HIDP).
  21. For docs and specs, see https://www.usb.org/developers/hidpage/
  22. If unsure, say Y.
  23. if HID
  24. config HID_BATTERY_STRENGTH
  25. bool "Battery level reporting for HID devices"
  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. help
  35. Say Y here if you want to support HID devices (from the USB
  36. specification standpoint) that aren't strictly user interface
  37. devices, like monitor controls and Uninterruptible Power Supplies.
  38. This module supports these devices separately using a separate
  39. event interface on /dev/hidraw.
  40. There is also a /dev/hiddev configuration option in the USB HID
  41. configuration menu. In comparison to hiddev, this device does not process
  42. the hid events at all (no parsing, no lookups). This lets applications
  43. to work on raw hid events when they want to, and avoid using transport-specific
  44. userspace libhid/libusb libraries.
  45. If unsure, say Y.
  46. config UHID
  47. tristate "User-space I/O driver support for HID subsystem"
  48. default n
  49. help
  50. Say Y here if you want to provide HID I/O Drivers from user-space.
  51. This allows to write I/O drivers in user-space and feed the data from
  52. the device into the kernel. The kernel parses the HID reports, loads the
  53. corresponding HID Device Driver or provides input devices on top of your
  54. user-space device.
  55. This driver cannot be used to parse HID-reports in user-space and write
  56. special HID-drivers. You should use hidraw for that.
  57. Instead, this driver allows to write the transport-layer driver in
  58. user-space like USB-HID and Bluetooth-HID do in kernel-space.
  59. If unsure, say N.
  60. To compile this driver as a module, choose M here: the
  61. module will be called uhid.
  62. config HID_GENERIC
  63. tristate "Generic HID driver"
  64. default HID
  65. help
  66. Support for generic devices on the HID bus. This includes most
  67. keyboards and mice, joysticks, tablets and digitizers.
  68. To compile this driver as a module, choose M here: the module
  69. will be called hid-generic.
  70. If unsure, say Y.
  71. menu "Special HID drivers"
  72. config HID_A4TECH
  73. tristate "A4TECH mice"
  74. default !EXPERT
  75. help
  76. Support for some A4TECH mice with two scroll wheels.
  77. config HID_ACCUTOUCH
  78. tristate "Accutouch touch device"
  79. depends on USB_HID
  80. help
  81. This selects a driver for the Accutouch 2216 touch controller.
  82. The driver works around a problem in the reported device capabilities
  83. which causes userspace to detect the device as a mouse rather than
  84. a touchscreen.
  85. Say Y here if you have a Accutouch 2216 touch controller.
  86. config HID_ACRUX
  87. tristate "ACRUX game controller support"
  88. help
  89. Say Y here if you want to enable support for ACRUX game controllers.
  90. config HID_ACRUX_FF
  91. bool "ACRUX force feedback support"
  92. depends on HID_ACRUX
  93. select INPUT_FF_MEMLESS
  94. help
  95. Say Y here if you want to enable force feedback support for ACRUX
  96. game controllers.
  97. config HID_APPLE
  98. tristate "Apple {i,Power,Mac}Books"
  99. depends on LEDS_CLASS
  100. depends on NEW_LEDS
  101. default !EXPERT
  102. help
  103. Support for some Apple devices which less or more break
  104. HID specification.
  105. Say Y here if you want support for keyboards of Apple iBooks, PowerBooks,
  106. MacBooks, MacBook Pros and Apple Aluminum.
  107. config HID_APPLEIR
  108. tristate "Apple infrared receiver"
  109. depends on (USB_HID)
  110. help
  111. Support for Apple infrared remote control. All the Apple computers from
  112. 2005 onwards include such a port, except the unibody Macbook (2009),
  113. and Mac Pros. This receiver is also used in the Apple TV set-top box
  114. prior to the 2010 model.
  115. Say Y here if you want support for Apple infrared remote control.
  116. config HID_ASUS
  117. tristate "Asus"
  118. depends on USB_HID
  119. depends on LEDS_CLASS
  120. depends on ASUS_WMI || ASUS_WMI=n
  121. select POWER_SUPPLY
  122. help
  123. Support for Asus notebook built-in keyboard and touchpad via i2c, and
  124. the Asus Republic of Gamers laptop keyboard special keys.
  125. Supported devices:
  126. - EeeBook X205TA
  127. - VivoBook E200HA
  128. - GL553V series
  129. - GL753V series
  130. config HID_AUREAL
  131. tristate "Aureal"
  132. help
  133. Support for Aureal Cy se W-01RN Remote Controller and other Aureal derived remotes.
  134. config HID_BELKIN
  135. tristate "Belkin Flip KVM and Wireless keyboard"
  136. default !EXPERT
  137. help
  138. Support for Belkin Flip KVM and Wireless keyboard.
  139. config HID_BETOP_FF
  140. tristate "Betop Production Inc. force feedback support"
  141. depends on USB_HID
  142. select INPUT_FF_MEMLESS
  143. help
  144. Say Y here if you want to enable force feedback support for devices by
  145. BETOP Production Ltd.
  146. Currently the following devices are known to be supported:
  147. - BETOP 2185 PC & BFM MODE
  148. config HID_BIGBEN_FF
  149. tristate "BigBen Interactive Kids' gamepad support"
  150. depends on USB_HID
  151. depends on NEW_LEDS
  152. depends on LEDS_CLASS
  153. select INPUT_FF_MEMLESS
  154. help
  155. Support for the "Kid-friendly Wired Controller" PS3OFMINIPAD
  156. gamepad made by BigBen Interactive, originally sold as a PS3
  157. accessory. This driver fixes input mapping and adds support for
  158. force feedback effects and LEDs on the device.
  159. config HID_CHERRY
  160. tristate "Cherry Cymotion keyboard"
  161. default !EXPERT
  162. help
  163. Support for Cherry Cymotion keyboard.
  164. config HID_CHICONY
  165. tristate "Chicony devices"
  166. depends on USB_HID
  167. default !EXPERT
  168. help
  169. Support for Chicony Tactical pad and special keys on Chicony keyboards.
  170. config HID_CORSAIR
  171. tristate "Corsair devices"
  172. depends on USB_HID && LEDS_CLASS
  173. help
  174. Support for Corsair devices that are not fully compliant with the
  175. HID standard.
  176. Supported devices:
  177. - Vengeance K90
  178. - Scimitar PRO RGB
  179. config HID_COUGAR
  180. tristate "Cougar devices"
  181. help
  182. Support for Cougar devices that are not fully compliant with the
  183. HID standard.
  184. Supported devices:
  185. - Cougar 500k Gaming Keyboard
  186. config HID_MACALLY
  187. tristate "Macally devices"
  188. help
  189. Support for Macally devices that are not fully compliant with the
  190. HID standard.
  191. supported devices:
  192. - Macally ikey keyboard
  193. config HID_PRODIKEYS
  194. tristate "Prodikeys PC-MIDI Keyboard support"
  195. depends on USB_HID && SND
  196. select SND_RAWMIDI
  197. help
  198. Support for Prodikeys PC-MIDI Keyboard device support.
  199. Say Y here to enable support for this device.
  200. - Prodikeys PC-MIDI keyboard.
  201. The Prodikeys PC-MIDI acts as a USB Audio device, with one MIDI
  202. input and one MIDI output. These MIDI jacks appear as
  203. a sound "card" in the ALSA sound system.
  204. Note: if you say N here, this device will still function as a basic
  205. multimedia keyboard, but will lack support for the musical keyboard
  206. and some additional multimedia keys.
  207. config HID_CMEDIA
  208. tristate "CMedia audio chips"
  209. help
  210. Support for CMedia CM6533 HID audio jack controls
  211. and HS100B mute buttons.
  212. config HID_CP2112
  213. tristate "Silicon Labs CP2112 HID USB-to-SMBus Bridge support"
  214. depends on USB_HID && HIDRAW && I2C && GPIOLIB
  215. select GPIOLIB_IRQCHIP
  216. help
  217. Support for Silicon Labs CP2112 HID USB to SMBus Master Bridge.
  218. This is a HID device driver which registers as an i2c adapter
  219. and gpiochip to expose these functions of the CP2112. The
  220. customizable USB descriptor fields are exposed as sysfs attributes.
  221. config HID_CREATIVE_SB0540
  222. tristate "Creative SB0540 infrared receiver"
  223. depends on USB_HID
  224. help
  225. Support for Creative infrared SB0540-compatible remote controls, such
  226. as the RM-1500 and RM-1800 remotes.
  227. Say Y here if you want support for Creative SB0540 infrared receiver.
  228. config HID_CYPRESS
  229. tristate "Cypress mouse and barcode readers"
  230. default !EXPERT
  231. help
  232. Support for cypress mouse and barcode readers.
  233. config HID_DRAGONRISE
  234. tristate "DragonRise Inc. game controller"
  235. help
  236. Say Y here if you have DragonRise Inc. game controllers.
  237. These might be branded as:
  238. - Tesun USB-703
  239. - Media-tech MT1504 "Rogue"
  240. - DVTech JS19 "Gear"
  241. - Defender Game Master
  242. config DRAGONRISE_FF
  243. bool "DragonRise Inc. force feedback"
  244. depends on HID_DRAGONRISE
  245. select INPUT_FF_MEMLESS
  246. help
  247. Say Y here if you want to enable force feedback support for DragonRise Inc.
  248. game controllers.
  249. config HID_EMS_FF
  250. tristate "EMS Production Inc. force feedback support"
  251. select INPUT_FF_MEMLESS
  252. help
  253. Say Y here if you want to enable force feedback support for devices by
  254. EMS Production Ltd.
  255. Currently the following devices are known to be supported:
  256. - Trio Linker Plus II
  257. config HID_ELAN
  258. tristate "ELAN USB Touchpad Support"
  259. depends on LEDS_CLASS && USB_HID
  260. help
  261. Say Y to enable support for the USB ELAN touchpad
  262. Currently the following devices are known to be supported:
  263. - HP Pavilion X2 10-p0XX.
  264. config HID_ELECOM
  265. tristate "ELECOM HID devices"
  266. help
  267. Support for ELECOM devices:
  268. - BM084 Bluetooth Mouse
  269. - EX-G Trackballs (M-XT3DRBK, M-XT3URBK)
  270. - DEFT Trackballs (M-DT1DRBK, M-DT1URBK, M-DT2DRBK, M-DT2URBK)
  271. - HUGE Trackballs (M-HT1DRBK, M-HT1URBK)
  272. config HID_ELO
  273. tristate "ELO USB 4000/4500 touchscreen"
  274. depends on USB_HID
  275. help
  276. Support for the ELO USB 4000/4500 touchscreens. Note that this is for
  277. different devices than those handled by CONFIG_TOUCHSCREEN_USB_ELO.
  278. config HID_EZKEY
  279. tristate "Ezkey BTC 8193 keyboard"
  280. default !EXPERT
  281. help
  282. Support for Ezkey BTC 8193 keyboard.
  283. config HID_FT260
  284. tristate "FTDI FT260 USB HID to I2C host support"
  285. depends on USB_HID && HIDRAW && I2C
  286. help
  287. Provides I2C host adapter functionality over USB-HID through FT260
  288. device. The customizable USB descriptor fields are exposed as sysfs
  289. attributes.
  290. To compile this driver as a module, choose M here: the module
  291. will be called hid-ft260.
  292. config HID_GEMBIRD
  293. tristate "Gembird Joypad"
  294. help
  295. Support for Gembird JPD-DualForce 2.
  296. config HID_GFRM
  297. tristate "Google Fiber TV Box remote control support"
  298. help
  299. Support for Google Fiber TV Box remote controls
  300. config HID_GLORIOUS
  301. tristate "Glorious PC Gaming Race mice"
  302. help
  303. Support for Glorious PC Gaming Race mice such as
  304. the Glorious Model O, O- and D.
  305. config HID_HOLTEK
  306. tristate "Holtek HID devices"
  307. depends on USB_HID
  308. help
  309. Support for Holtek based devices:
  310. - Holtek On Line Grip based game controller
  311. - Trust GXT 18 Gaming Keyboard
  312. - Sharkoon Drakonia / Perixx MX-2000 gaming mice
  313. - Tracer Sniper TRM-503 / NOVA Gaming Slider X200 /
  314. Zalman ZM-GM1
  315. - SHARKOON DarkGlider Gaming mouse
  316. - LEETGION Hellion Gaming Mouse
  317. config HOLTEK_FF
  318. bool "Holtek On Line Grip force feedback support"
  319. depends on HID_HOLTEK
  320. select INPUT_FF_MEMLESS
  321. help
  322. Say Y here if you have a Holtek On Line Grip based game controller
  323. and want to have force feedback support for it.
  324. config HID_VIVALDI_COMMON
  325. tristate
  326. help
  327. ChromeOS Vivaldi HID parsing support library. This is a hidden
  328. option so that drivers can use common code to parse the HID
  329. descriptors for vivaldi function row keymap.
  330. config HID_GOOGLE_HAMMER
  331. tristate "Google Hammer Keyboard"
  332. select HID_VIVALDI_COMMON
  333. select INPUT_VIVALDIFMAP
  334. depends on USB_HID && LEDS_CLASS && CROS_EC
  335. help
  336. Say Y here if you have a Google Hammer device.
  337. config HID_VIVALDI
  338. tristate "Vivaldi Keyboard"
  339. select HID_VIVALDI_COMMON
  340. select INPUT_VIVALDIFMAP
  341. help
  342. Say Y here if you want to enable support for Vivaldi keyboards.
  343. Vivaldi keyboards use a vendor-specific (Google) HID usage to report
  344. how the keys in the top row are physically ordered.
  345. config HID_GT683R
  346. tristate "MSI GT68xR LED support"
  347. depends on LEDS_CLASS && USB_HID
  348. help
  349. Say Y here if you want to enable support for the three MSI GT68xR LEDs
  350. This driver support following modes:
  351. - Normal: LEDs are fully on when enabled
  352. - Audio: LEDs brightness depends on sound level
  353. - Breathing: LEDs brightness varies at human breathing rate
  354. Currently the following devices are know to be supported:
  355. - MSI GT683R
  356. config HID_KEYTOUCH
  357. tristate "Keytouch HID devices"
  358. help
  359. Support for Keytouch HID devices not fully compliant with
  360. the specification. Currently supported:
  361. - Keytouch IEC 60945
  362. config HID_KYE
  363. tristate "KYE/Genius devices"
  364. help
  365. Support for KYE/Genius devices not fully compliant with HID standard:
  366. - Ergo Mouse
  367. - EasyPen i405X tablet
  368. - MousePen i608X tablet
  369. - EasyPen M610X tablet
  370. config HID_UCLOGIC
  371. tristate "UC-Logic"
  372. depends on USB_HID
  373. help
  374. Support for UC-Logic and Huion tablets.
  375. config HID_WALTOP
  376. tristate "Waltop"
  377. help
  378. Support for Waltop tablets.
  379. config HID_VIEWSONIC
  380. tristate "ViewSonic/Signotec"
  381. help
  382. Support for ViewSonic/Signotec PD1011 signature pad.
  383. config HID_VRC2
  384. tristate "VRC-2 Car Controller"
  385. depends on HID
  386. help
  387. Support for VRC-2 which is a 2-axis controller often used in
  388. car simulators.
  389. To compile this driver as a module, choose M here: the
  390. module will be called hid-vrc2.
  391. config HID_XIAOMI
  392. tristate "Xiaomi"
  393. help
  394. Adds support for side buttons of Xiaomi Mi Dual Mode Wireless
  395. Mouse Silent Edition.
  396. config HID_GYRATION
  397. tristate "Gyration remote control"
  398. help
  399. Support for Gyration remote control.
  400. config HID_ICADE
  401. tristate "ION iCade arcade controller"
  402. help
  403. Support for the ION iCade arcade controller to work as a joystick.
  404. To compile this driver as a module, choose M here: the
  405. module will be called hid-icade.
  406. config HID_ITE
  407. tristate "ITE devices"
  408. default !EXPERT
  409. help
  410. Support for ITE devices not fully compliant with HID standard.
  411. config HID_JABRA
  412. tristate "Jabra USB HID Driver"
  413. help
  414. Support for Jabra USB HID devices.
  415. Prevents mapping of vendor defined HID usages to input events. Without
  416. this driver HID reports from Jabra devices may incorrectly be seen as
  417. mouse button events.
  418. Say M here if you may ever plug in a Jabra USB device.
  419. config HID_TWINHAN
  420. tristate "Twinhan IR remote control"
  421. help
  422. Support for Twinhan IR remote control.
  423. config HID_KENSINGTON
  424. tristate "Kensington Slimblade Trackball"
  425. default !EXPERT
  426. help
  427. Support for Kensington Slimblade Trackball.
  428. config HID_LCPOWER
  429. tristate "LC-Power"
  430. help
  431. Support for LC-Power RC1000MCE RF remote control.
  432. config HID_LED
  433. tristate "Simple RGB LED support"
  434. depends on LEDS_CLASS
  435. help
  436. Support for simple RGB LED devices. Currently supported are:
  437. - Riso Kagaku Webmail Notifier
  438. - Dream Cheeky Webmail Notifier and Friends Alert
  439. - ThingM blink(1)
  440. - Delcom Visual Signal Indicator Generation 2
  441. - Greynut Luxafor
  442. To compile this driver as a module, choose M here: the
  443. module will be called hid-led.
  444. config HID_LENOVO
  445. tristate "Lenovo / Thinkpad devices"
  446. select NEW_LEDS
  447. select LEDS_CLASS
  448. help
  449. Support for IBM/Lenovo devices that are not fully compliant with HID standard.
  450. Say Y if you want support for horizontal scrolling of the IBM/Lenovo
  451. Scrollpoint mice or the non-compliant features of the Lenovo Thinkpad
  452. standalone keyboards, e.g:
  453. - ThinkPad USB Keyboard with TrackPoint (supports extra LEDs and trackpoint
  454. configuration)
  455. - ThinkPad Compact Bluetooth Keyboard with TrackPoint (supports Fn keys)
  456. - ThinkPad Compact USB Keyboard with TrackPoint (supports Fn keys)
  457. config HID_LETSKETCH
  458. tristate "Letsketch WP9620N tablets"
  459. depends on USB_HID
  460. help
  461. Driver for the LetSketch / VSON WP9620N drawing tablet. This
  462. drawing tablet is also sold under other brand names such as Case U,
  463. presumably this driver will work for all of them. But it has only been
  464. tested with a LetSketch WP9620N model.
  465. These tablets also work without a special HID driver, but then only
  466. part of the active area works and both the pad and stylus buttons are
  467. hardwired to special key-combos. E.g. the 2 stylus buttons send right
  468. mouse clicks / resp. "e" key presses.
  469. config HID_LOGITECH
  470. tristate "Logitech devices"
  471. depends on USB_HID
  472. depends on LEDS_CLASS
  473. default !EXPERT
  474. help
  475. Support for Logitech devices that are not fully compliant with HID standard.
  476. config HID_LOGITECH_DJ
  477. tristate "Logitech receivers full support"
  478. depends on USB_HID
  479. depends on HIDRAW
  480. depends on HID_LOGITECH
  481. select HID_LOGITECH_HIDPP
  482. help
  483. Say Y if you want support for Logitech receivers and devices.
  484. Logitech receivers are capable of pairing multiple Logitech compliant
  485. devices to the same receiver. Without this driver it will be handled by
  486. generic USB_HID driver and all incoming events will be multiplexed
  487. into a single mouse and a single keyboard device.
  488. config HID_LOGITECH_HIDPP
  489. tristate "Logitech HID++ devices support"
  490. depends on HID_LOGITECH
  491. select POWER_SUPPLY
  492. help
  493. Support for Logitech devices relying on the HID++ Logitech specification
  494. Say Y if you want support for Logitech devices relying on the HID++
  495. specification. Such devices are the various Logitech Touchpads (T650,
  496. T651, TK820), some mice (Zone Touch mouse), or even keyboards (Solar
  497. Keyboard).
  498. config LOGITECH_FF
  499. bool "Logitech force feedback support"
  500. depends on HID_LOGITECH
  501. select INPUT_FF_MEMLESS
  502. help
  503. Say Y here if you have one of these devices:
  504. - Logitech WingMan Cordless RumblePad
  505. - Logitech WingMan Cordless RumblePad 2
  506. - Logitech WingMan Force 3D
  507. and if you want to enable force feedback for them.
  508. Note: if you say N here, this device will still be supported, but without
  509. force feedback.
  510. config LOGIRUMBLEPAD2_FF
  511. bool "Logitech force feedback support (variant 2)"
  512. depends on HID_LOGITECH
  513. select INPUT_FF_MEMLESS
  514. help
  515. Say Y here if you want to enable force feedback support for:
  516. - Logitech RumblePad
  517. - Logitech Rumblepad 2
  518. - Logitech Formula Vibration Feedback Wheel
  519. config LOGIG940_FF
  520. bool "Logitech Flight System G940 force feedback support"
  521. depends on HID_LOGITECH
  522. select INPUT_FF_MEMLESS
  523. help
  524. Say Y here if you want to enable force feedback support for Logitech
  525. Flight System G940 devices.
  526. config LOGIWHEELS_FF
  527. bool "Logitech wheels configuration and force feedback support"
  528. depends on HID_LOGITECH
  529. select INPUT_FF_MEMLESS
  530. default LOGITECH_FF
  531. help
  532. Say Y here if you want to enable force feedback and range setting(*)
  533. support for following Logitech wheels:
  534. - Logitech G25 (*)
  535. - Logitech G27 (*)
  536. - Logitech G29 (*)
  537. - Logitech Driving Force
  538. - Logitech Driving Force Pro (*)
  539. - Logitech Driving Force GT (*)
  540. - Logitech Driving Force EX/RX
  541. - Logitech Driving Force Wireless
  542. - Logitech Speed Force Wireless
  543. - Logitech MOMO Force
  544. - Logitech MOMO Racing Force
  545. - Logitech Formula Force GP
  546. - Logitech Formula Force EX/RX
  547. - Logitech Wingman Formula Force GP
  548. config HID_MAGICMOUSE
  549. tristate "Apple Magic Mouse/Trackpad multi-touch support"
  550. help
  551. Support for the Apple Magic Mouse/Trackpad multi-touch.
  552. Say Y here if you want support for the multi-touch features of the
  553. Apple Wireless "Magic" Mouse and the Apple Wireless "Magic" Trackpad.
  554. config HID_MALTRON
  555. tristate "Maltron L90 keyboard"
  556. help
  557. Adds support for the volume up, volume down, mute, and play/pause buttons
  558. of the Maltron L90 keyboard.
  559. config HID_MAYFLASH
  560. tristate "Mayflash game controller adapter force feedback"
  561. select INPUT_FF_MEMLESS
  562. help
  563. Say Y here if you have HJZ Mayflash PS3 game controller adapters
  564. and want to enable force feedback support.
  565. config HID_MEGAWORLD_FF
  566. tristate "Mega World based game controller force feedback support"
  567. depends on USB_HID
  568. select INPUT_FF_MEMLESS
  569. help
  570. Say Y here if you have a Mega World based game controller and want
  571. to have force feedback support for it.
  572. config HID_REDRAGON
  573. tristate "Redragon keyboards"
  574. default !EXPERT
  575. help
  576. Support for Redragon keyboards that need fix-ups to work properly.
  577. config HID_MICROSOFT
  578. tristate "Microsoft non-fully HID-compliant devices"
  579. default !EXPERT
  580. select INPUT_FF_MEMLESS
  581. help
  582. Support for Microsoft devices that are not fully compliant with HID standard.
  583. config HID_MONTEREY
  584. tristate "Monterey Genius KB29E keyboard"
  585. default !EXPERT
  586. help
  587. Support for Monterey Genius KB29E.
  588. config HID_MULTITOUCH
  589. tristate "HID Multitouch panels"
  590. help
  591. Generic support for HID multitouch panels.
  592. Say Y here if you have one of the following devices:
  593. - 3M PCT touch screens
  594. - ActionStar dual touch panels
  595. - Atmel panels
  596. - Cando dual touch panels
  597. - Chunghwa panels
  598. - CJTouch panels
  599. - CVTouch panels
  600. - Cypress TrueTouch panels
  601. - Elan Microelectronics touch panels
  602. - Elo TouchSystems IntelliTouch Plus panels
  603. - GeneralTouch 'Sensing Win7-TwoFinger' panels
  604. - GoodTouch panels
  605. - Hanvon dual touch panels
  606. - Ilitek dual touch panels
  607. - IrTouch Infrared USB panels
  608. - LG Display panels (Dell ST2220Tc)
  609. - Lumio CrystalTouch panels
  610. - MosArt dual-touch panels
  611. - Panasonic multitouch panels
  612. - PenMount dual touch panels
  613. - Perixx Peripad 701 touchpad
  614. - PixArt optical touch screen
  615. - Pixcir dual touch panels
  616. - Quanta panels
  617. - eGalax dual-touch panels, including the Joojoo and Wetab tablets
  618. - SiS multitouch panels
  619. - Stantum multitouch panels
  620. - Touch International Panels
  621. - Unitec Panels
  622. - Wistron optical touch panels
  623. - XAT optical touch panels
  624. - Xiroku optical touch panels
  625. - Zytronic touch panels
  626. If unsure, say N.
  627. To compile this driver as a module, choose M here: the
  628. module will be called hid-multitouch.
  629. config HID_NINTENDO
  630. tristate "Nintendo Joy-Con and Pro Controller support"
  631. depends on NEW_LEDS
  632. depends on LEDS_CLASS
  633. select POWER_SUPPLY
  634. help
  635. Adds support for the Nintendo Switch Joy-Cons and Pro Controller.
  636. All controllers support bluetooth, and the Pro Controller also supports
  637. its USB mode.
  638. To compile this driver as a module, choose M here: the
  639. module will be called hid-nintendo.
  640. config NINTENDO_FF
  641. bool "Nintendo Switch controller force feedback support"
  642. depends on HID_NINTENDO
  643. select INPUT_FF_MEMLESS
  644. help
  645. Say Y here if you have a Nintendo Switch controller and want to enable
  646. force feedback support for it. This works for both joy-cons and the pro
  647. controller. For the pro controller, both rumble motors can be controlled
  648. individually.
  649. config HID_NTI
  650. tristate "NTI keyboard adapters"
  651. help
  652. Support for the "extra" Sun keyboard keys on keyboards attached
  653. through Network Technologies USB-SUN keyboard adapters.
  654. config HID_NTRIG
  655. tristate "N-Trig touch screen"
  656. depends on USB_HID
  657. help
  658. Support for N-Trig touch screen.
  659. config HID_ORTEK
  660. tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad"
  661. help
  662. There are certain devices which have LogicalMaximum wrong in the keyboard
  663. usage page of their report descriptor. The most prevailing ones so far
  664. are manufactured by Ortek, thus the name of the driver. Currently
  665. supported devices by this driver are
  666. - Ortek PKB-1700
  667. - Ortek WKB-2000
  668. - Skycable wireless presenter
  669. config HID_PANTHERLORD
  670. tristate "Pantherlord/GreenAsia game controller"
  671. help
  672. Say Y here if you have a PantherLord/GreenAsia based game controller
  673. or adapter.
  674. config PANTHERLORD_FF
  675. bool "Pantherlord force feedback support"
  676. depends on HID_PANTHERLORD
  677. select INPUT_FF_MEMLESS
  678. help
  679. Say Y here if you have a PantherLord/GreenAsia based game controller
  680. or adapter and want to enable force feedback support for it.
  681. config HID_PENMOUNT
  682. tristate "Penmount touch device"
  683. depends on USB_HID
  684. help
  685. This selects a driver for the PenMount 6000 touch controller.
  686. The driver works around a problem in the report descript allowing
  687. the userspace to touch events instead of mouse events.
  688. Say Y here if you have a Penmount based touch controller.
  689. config HID_PETALYNX
  690. tristate "Petalynx Maxter remote control"
  691. help
  692. Support for Petalynx Maxter remote control.
  693. config HID_PICOLCD
  694. tristate "PicoLCD (graphic version)"
  695. help
  696. This provides support for Minibox PicoLCD devices, currently
  697. only the graphical ones are supported.
  698. This includes support for the following device features:
  699. - Keypad
  700. - Switching between Firmware and Flash mode
  701. - EEProm / Flash access (via debugfs)
  702. Features selectively enabled:
  703. - Framebuffer for monochrome 256x64 display
  704. - Backlight control
  705. - Contrast control
  706. - General purpose outputs
  707. Features that are not (yet) supported:
  708. - IR
  709. config HID_PICOLCD_FB
  710. bool "Framebuffer support" if EXPERT
  711. default !EXPERT
  712. depends on HID_PICOLCD
  713. depends on HID_PICOLCD=FB || FB=y
  714. select FB_DEFERRED_IO
  715. select FB_SYS_FILLRECT
  716. select FB_SYS_COPYAREA
  717. select FB_SYS_IMAGEBLIT
  718. select FB_SYS_FOPS
  719. help
  720. Provide access to PicoLCD's 256x64 monochrome display via a
  721. framebuffer device.
  722. config HID_PICOLCD_BACKLIGHT
  723. bool "Backlight control" if EXPERT
  724. default !EXPERT
  725. depends on HID_PICOLCD
  726. depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y
  727. help
  728. Provide access to PicoLCD's backlight control via backlight
  729. class.
  730. config HID_PICOLCD_LCD
  731. bool "Contrast control" if EXPERT
  732. default !EXPERT
  733. depends on HID_PICOLCD
  734. depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y
  735. help
  736. Provide access to PicoLCD's LCD contrast via lcd class.
  737. config HID_PICOLCD_LEDS
  738. bool "GPO via leds class" if EXPERT
  739. default !EXPERT
  740. depends on HID_PICOLCD
  741. depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y
  742. help
  743. Provide access to PicoLCD's GPO pins via leds class.
  744. config HID_PICOLCD_CIR
  745. bool "CIR via RC class" if EXPERT
  746. default !EXPERT
  747. depends on HID_PICOLCD
  748. depends on HID_PICOLCD=RC_CORE || RC_CORE=y
  749. help
  750. Provide access to PicoLCD's CIR interface via remote control (LIRC).
  751. config HID_PLANTRONICS
  752. tristate "Plantronics USB HID Driver"
  753. help
  754. Provides HID support for Plantronics USB audio devices.
  755. Correctly maps vendor unique volume up/down HID usages to
  756. KEY_VOLUMEUP and KEY_VOLUMEDOWN events and prevents core mapping
  757. of other vendor unique HID usages to random mouse events.
  758. Say M here if you may ever plug in a Plantronics USB audio device.
  759. config HID_PLAYSTATION
  760. tristate "PlayStation HID Driver"
  761. depends on LEDS_CLASS_MULTICOLOR
  762. select CRC32
  763. select POWER_SUPPLY
  764. help
  765. Provides support for Sony PS5 controllers including support for
  766. its special functionalities e.g. touchpad, lights and motion
  767. sensors.
  768. config PLAYSTATION_FF
  769. bool "PlayStation force feedback support"
  770. depends on HID_PLAYSTATION
  771. select INPUT_FF_MEMLESS
  772. help
  773. Say Y here if you would like to enable force feedback support for
  774. PlayStation game controllers.
  775. config HID_PXRC
  776. tristate "PhoenixRC HID Flight Controller"
  777. depends on HID
  778. help
  779. Support for PhoenixRC HID Flight Controller, a 8-axis flight controller.
  780. To compile this driver as a module, choose M here: the
  781. module will be called hid-pxrc.
  782. config HID_RAZER
  783. tristate "Razer non-fully HID-compliant devices"
  784. help
  785. Support for Razer devices that are not fully compliant with the
  786. HID standard.
  787. config HID_PRIMAX
  788. tristate "Primax non-fully HID-compliant devices"
  789. help
  790. Support for Primax devices that are not fully compliant with the
  791. HID standard.
  792. config HID_RETRODE
  793. tristate "Retrode 2 USB adapter for vintage video games"
  794. depends on USB_HID
  795. help
  796. Support for
  797. * Retrode 2 cartridge and controller adapter
  798. config HID_ROCCAT
  799. tristate "Roccat device support"
  800. depends on USB_HID
  801. help
  802. Support for Roccat devices.
  803. Say Y here if you have a Roccat mouse or keyboard and want
  804. support for its special functionalities.
  805. config HID_SAITEK
  806. tristate "Saitek (Mad Catz) non-fully HID-compliant devices"
  807. help
  808. Support for Saitek devices that are not fully compliant with the
  809. HID standard.
  810. Supported devices:
  811. - PS1000 Dual Analog Pad
  812. - Saitek R.A.T.7, R.A.T.9, M.M.O.7 Gaming Mice
  813. - Mad Catz R.A.T.5, R.A.T.9 Gaming Mice
  814. config HID_SAMSUNG
  815. tristate "Samsung InfraRed remote control or keyboards"
  816. depends on USB_HID
  817. help
  818. Support for Samsung InfraRed remote control or keyboards.
  819. config HID_SEMITEK
  820. tristate "Semitek USB keyboards"
  821. help
  822. Support for Semitek USB keyboards that are not fully compliant
  823. with the HID standard.
  824. There are many variants, including:
  825. - GK61, GK64, GK68, GK84, GK96, etc.
  826. - SK61, SK64, SK68, SK84, SK96, etc.
  827. - Dierya DK61/DK66
  828. - Tronsmart TK09R
  829. - Woo-dy
  830. - X-Bows Nature/Knight
  831. config HID_SIGMAMICRO
  832. tristate "SiGma Micro-based keyboards"
  833. depends on USB_HID
  834. help
  835. Support for keyboards that use the SiGma Micro (a.k.a SigmaChip) IC.
  836. Supported devices:
  837. - Landslides KR-700
  838. - Rapoo V500
  839. config HID_SONY
  840. tristate "Sony PS2/3/4 accessories"
  841. depends on USB_HID
  842. depends on NEW_LEDS
  843. depends on LEDS_CLASS
  844. select POWER_SUPPLY
  845. select CRC32
  846. help
  847. Support for
  848. * Sony PS3 6-axis controllers
  849. * Sony PS4 DualShock 4 controllers
  850. * Buzz controllers
  851. * Sony PS3 Blue-ray Disk Remote Control (Bluetooth)
  852. * Logitech Harmony adapter for Sony Playstation 3 (Bluetooth)
  853. * Guitar Hero Live PS3, Wii U and PS4 guitar dongles
  854. * Guitar Hero PS3 and PC guitar dongles
  855. config SONY_FF
  856. bool "Sony PS2/3/4 accessories force feedback support"
  857. depends on HID_SONY
  858. select INPUT_FF_MEMLESS
  859. help
  860. Say Y here if you have a Sony PS2/3/4 accessory and want to enable
  861. force feedback support for it.
  862. config HID_SPEEDLINK
  863. tristate "Speedlink VAD Cezanne mouse support"
  864. help
  865. Support for Speedlink Vicious and Divine Cezanne mouse.
  866. config HID_STEAM
  867. tristate "Steam Controller support"
  868. select POWER_SUPPLY
  869. help
  870. Say Y here if you have a Steam Controller if you want to use it
  871. without running the Steam Client. It supports both the wired and
  872. the wireless adaptor.
  873. config HID_STEELSERIES
  874. tristate "Steelseries SRW-S1 steering wheel support"
  875. help
  876. Support for Steelseries SRW-S1 steering wheel
  877. config HID_SUNPLUS
  878. tristate "Sunplus wireless desktop"
  879. help
  880. Support for Sunplus wireless desktop.
  881. config HID_RMI
  882. tristate "Synaptics RMI4 device support"
  883. select RMI4_CORE
  884. select RMI4_F03
  885. select RMI4_F11
  886. select RMI4_F12
  887. select RMI4_F30
  888. help
  889. Support for Synaptics RMI4 touchpads.
  890. Say Y here if you have a Synaptics RMI4 touchpads over i2c-hid or usbhid
  891. and want support for its special functionalities.
  892. config HID_GREENASIA
  893. tristate "GreenAsia (Product ID 0x12) game controller support"
  894. help
  895. Say Y here if you have a GreenAsia (Product ID 0x12) based game
  896. controller or adapter.
  897. config GREENASIA_FF
  898. bool "GreenAsia (Product ID 0x12) force feedback support"
  899. depends on HID_GREENASIA
  900. select INPUT_FF_MEMLESS
  901. help
  902. Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
  903. (like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
  904. and want to enable force feedback support for it.
  905. config HID_HYPERV_MOUSE
  906. tristate "Microsoft Hyper-V mouse driver"
  907. depends on HYPERV
  908. help
  909. Select this option to enable the Hyper-V mouse driver.
  910. config HID_SMARTJOYPLUS
  911. tristate "SmartJoy PLUS PS2/USB adapter support"
  912. help
  913. Support for SmartJoy PLUS PS2/USB adapter, Super Dual Box,
  914. Super Joy Box 3 Pro, Super Dual Box Pro, and Super Joy Box 5 Pro.
  915. Note that DDR (Dance Dance Revolution) mode is not supported, nor
  916. is pressure sensitive buttons on the pro models.
  917. config SMARTJOYPLUS_FF
  918. bool "SmartJoy PLUS PS2/USB adapter force feedback support"
  919. depends on HID_SMARTJOYPLUS
  920. select INPUT_FF_MEMLESS
  921. help
  922. Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to
  923. enable force feedback support for it.
  924. config HID_TIVO
  925. tristate "TiVo Slide Bluetooth remote control support"
  926. help
  927. Say Y if you have a TiVo Slide Bluetooth remote control.
  928. config HID_TOPSEED
  929. tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support"
  930. help
  931. Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic
  932. CLLRCMCE remote control.
  933. config HID_TOPRE
  934. tristate "Topre REALFORCE keyboards"
  935. depends on HID
  936. help
  937. Say Y for N-key rollover support on Topre REALFORCE R2 108 key keyboards.
  938. config HID_THINGM
  939. tristate "ThingM blink(1) USB RGB LED"
  940. depends on LEDS_CLASS
  941. select HID_LED
  942. help
  943. Support for the ThingM blink(1) USB RGB LED. This driver has been
  944. merged into the generic hid led driver. Config symbol HID_THINGM
  945. just selects HID_LED and will be removed soon.
  946. config HID_THRUSTMASTER
  947. tristate "ThrustMaster devices support"
  948. depends on USB_HID
  949. help
  950. Say Y here if you have a THRUSTMASTER FireStore Dual Power 2,
  951. a THRUSTMASTER Ferrari GT Rumble Wheel or Thrustmaster FFB
  952. Wheel (T150RS, T300RS, T300 Ferrari Alcantara Edition, T500RS).
  953. config THRUSTMASTER_FF
  954. bool "ThrustMaster devices force feedback support"
  955. depends on HID_THRUSTMASTER
  956. select INPUT_FF_MEMLESS
  957. help
  958. Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3,
  959. a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT
  960. Rumble Force or Force Feedback Wheel.
  961. config HID_UDRAW_PS3
  962. tristate "THQ PS3 uDraw tablet"
  963. help
  964. Say Y here if you want to use the THQ uDraw gaming tablet for
  965. the PS3.
  966. config HID_U2FZERO
  967. tristate "U2F Zero LED and RNG support"
  968. depends on USB_HID
  969. depends on LEDS_CLASS
  970. depends on HW_RANDOM
  971. help
  972. Support for the LED of the U2F Zero device.
  973. U2F Zero supports custom commands for blinking the LED
  974. and getting data from the internal hardware RNG.
  975. The internal hardware can be used to feed the enthropy pool.
  976. U2F Zero only supports blinking its LED, so this driver doesn't
  977. allow setting the brightness to anything but 1, which will
  978. trigger a single blink and immediately reset back to 0.
  979. config HID_WACOM
  980. tristate "Wacom Intuos/Graphire tablet support (USB)"
  981. depends on USB_HID
  982. select POWER_SUPPLY
  983. select NEW_LEDS
  984. select LEDS_CLASS
  985. select LEDS_TRIGGERS
  986. help
  987. Say Y here if you want to use the USB or BT version of the Wacom Intuos
  988. or Graphire tablet.
  989. To compile this driver as a module, choose M here: the
  990. module will be called wacom.
  991. config HID_WIIMOTE
  992. tristate "Nintendo Wii / Wii U peripherals"
  993. depends on LEDS_CLASS
  994. select POWER_SUPPLY
  995. select INPUT_FF_MEMLESS
  996. help
  997. Support for Nintendo Wii and Wii U Bluetooth peripherals. Supported
  998. devices are the Wii Remote and its extension devices, but also devices
  999. based on the Wii Remote like the Wii U Pro Controller or the
  1000. Wii Balance Board.
  1001. Support for all official Nintendo extensions is available, however, 3rd
  1002. party extensions might not be supported. Please report these devices to:
  1003. http://github.com/dvdhrm/xwiimote/issues
  1004. Other Nintendo Wii U peripherals that are IEEE 802.11 based (including
  1005. the Wii U Gamepad) might be supported in the future. But currently
  1006. support is limited to Bluetooth based devices.
  1007. If unsure, say N.
  1008. To compile this driver as a module, choose M here: the
  1009. module will be called hid-wiimote.
  1010. config HID_XINMO
  1011. tristate "Xin-Mo non-fully compliant devices"
  1012. help
  1013. Support for Xin-Mo devices that are not fully compliant with the HID
  1014. standard. Currently only supports the Xin-Mo Dual Arcade. Say Y here
  1015. if you have a Xin-Mo Dual Arcade controller.
  1016. config HID_ZEROPLUS
  1017. tristate "Zeroplus based game controller support"
  1018. help
  1019. Say Y here if you have a Zeroplus based game controller.
  1020. config ZEROPLUS_FF
  1021. bool "Zeroplus based game controller force feedback support"
  1022. depends on HID_ZEROPLUS
  1023. select INPUT_FF_MEMLESS
  1024. help
  1025. Say Y here if you have a Zeroplus based game controller and want
  1026. to have force feedback support for it.
  1027. config HID_ZYDACRON
  1028. tristate "Zydacron remote control support"
  1029. help
  1030. Support for Zydacron remote control.
  1031. config HID_SENSOR_HUB
  1032. tristate "HID Sensors framework support"
  1033. depends on HAS_IOMEM
  1034. select MFD_CORE
  1035. default n
  1036. help
  1037. Support for HID Sensor framework. This creates a MFD instance
  1038. for a sensor hub and identifies all the sensors connected to it.
  1039. Each sensor is registered as a MFD cell, so that sensor specific
  1040. processing can be done in a separate driver. Each sensor
  1041. drivers can use the service provided by this driver to register
  1042. for events and handle data streams. Each sensor driver can format
  1043. data and present to user mode using input or IIO interface.
  1044. config HID_SENSOR_CUSTOM_SENSOR
  1045. tristate "HID Sensors hub custom sensor support"
  1046. depends on HID_SENSOR_HUB
  1047. default n
  1048. help
  1049. HID Sensor hub specification allows definition of some custom and
  1050. generic sensors. Unlike other HID sensors, they can't be exported
  1051. via Linux IIO because of custom fields. This is up to the manufacturer
  1052. to decide how to interpret these special sensor ids and process in
  1053. the user space. Currently some manufacturers are using these ids for
  1054. sensor calibration and debugging other sensors. Manufacturers
  1055. shouldn't use these special custom sensor ids to export any of the
  1056. standard sensors.
  1057. Select this config option for custom/generic sensor support.
  1058. config HID_ALPS
  1059. tristate "Alps HID device support"
  1060. help
  1061. Support for Alps I2C HID touchpads and StickPointer.
  1062. Say Y here if you have a Alps touchpads over i2c-hid or usbhid
  1063. and want support for its special functionalities.
  1064. config HID_MCP2221
  1065. tristate "Microchip MCP2221 HID USB-to-I2C/SMbus host support"
  1066. depends on USB_HID && I2C
  1067. depends on GPIOLIB
  1068. help
  1069. Provides I2C and SMBUS host adapter functionality over USB-HID
  1070. through MCP2221 device.
  1071. To compile this driver as a module, choose M here: the module
  1072. will be called hid-mcp2221.ko.
  1073. config HID_KUNIT_TEST
  1074. tristate "KUnit tests for HID" if !KUNIT_ALL_TESTS
  1075. depends on KUNIT
  1076. depends on HID_BATTERY_STRENGTH
  1077. depends on HID_UCLOGIC
  1078. default KUNIT_ALL_TESTS
  1079. help
  1080. This builds unit tests for HID. This option is not useful for
  1081. distributions or general kernels, but only for kernel
  1082. developers working on HID and associated drivers.
  1083. For more information on KUnit and unit tests in general,
  1084. please refer to the KUnit documentation in
  1085. Documentation/dev-tools/kunit/.
  1086. If in doubt, say "N".
  1087. endmenu
  1088. endif # HID
  1089. source "drivers/hid/usbhid/Kconfig"
  1090. source "drivers/hid/i2c-hid/Kconfig"
  1091. source "drivers/hid/intel-ish-hid/Kconfig"
  1092. source "drivers/hid/amd-sfh-hid/Kconfig"
  1093. source "drivers/hid/surface-hid/Kconfig"
  1094. endmenu