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