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