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