xref: /linux/drivers/hid/Kconfig (revision a23f3497bf208c59adac1bc8fd1d8eae240b3001)
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_LENOVO_GO_S
639	tristate "HID Driver for Lenovo Legion Go S Controller"
640	depends on USB_HID
641	select LEDS_CLASS
642	select LEDS_CLASS_MULTICOLOR
643	help
644	Support for Lenovo Legion Go S Handheld Console Controller.
645
646	Say Y here to include configuration interface support for the Lenovo Legion Go
647	S. Say M here to compile this driver as a module. The module will be called
648	hid-lenovo-go-s.
649
650config HID_LETSKETCH
651	tristate "Letsketch WP9620N tablets"
652	depends on USB_HID
653	help
654	  Driver for the LetSketch / VSON WP9620N drawing tablet. This
655	  drawing tablet is also sold under other brand names such as Case U,
656	  presumably this driver will work for all of them. But it has only been
657	  tested with a LetSketch WP9620N model.
658
659	  These tablets also work without a special HID driver, but then only
660	  part of the active area works and both the pad and stylus buttons are
661	  hardwired to special key-combos. E.g. the 2 stylus buttons send right
662	  mouse clicks / resp. "e" key presses.
663
664config HID_LOGITECH
665	tristate "Logitech devices"
666	depends on USB_HID
667	depends on LEDS_CLASS
668	depends on LEDS_CLASS_MULTICOLOR
669	default !EXPERT
670	help
671	Support for Logitech devices that are not fully compliant with HID standard.
672
673config HID_LOGITECH_DJ
674	tristate "Logitech receivers full support"
675	depends on USB_HID
676	depends on HIDRAW
677	depends on HID_LOGITECH
678	select HID_LOGITECH_HIDPP
679	help
680	Say Y if you want support for Logitech receivers and devices.
681	Logitech receivers are capable of pairing multiple Logitech compliant
682	devices to the same receiver. Without this driver it will be handled by
683	generic USB_HID driver and all incoming events will be multiplexed
684	into a single mouse and a single keyboard device.
685
686config HID_LOGITECH_HIDPP
687	tristate "Logitech HID++ devices support"
688	depends on HID_LOGITECH
689	select POWER_SUPPLY
690	help
691	Support for Logitech devices relying on the HID++ Logitech specification
692
693	Say Y if you want support for Logitech devices relying on the HID++
694	specification. Such devices are the various Logitech Touchpads (T650,
695	T651, TK820), some mice (Zone Touch mouse), or even keyboards (Solar
696	Keyboard).
697
698config LOGITECH_FF
699	bool "Logitech force feedback support"
700	depends on HID_LOGITECH
701	select INPUT_FF_MEMLESS
702	help
703	  Say Y here if you have one of these devices:
704	  - Logitech WingMan Cordless RumblePad
705	  - Logitech WingMan Cordless RumblePad 2
706	  - Logitech WingMan Force 3D
707
708	  and if you want to enable force feedback for them.
709	  Note: if you say N here, this device will still be supported, but without
710	  force feedback.
711
712config LOGIRUMBLEPAD2_FF
713	bool "Logitech force feedback support (variant 2)"
714	depends on HID_LOGITECH
715	select INPUT_FF_MEMLESS
716	help
717	  Say Y here if you want to enable force feedback support for:
718	  - Logitech RumblePad
719	  - Logitech Rumblepad 2
720	  - Logitech Formula Vibration Feedback Wheel
721
722config LOGIG940_FF
723	bool "Logitech Flight System G940 force feedback support"
724	depends on HID_LOGITECH
725	select INPUT_FF_MEMLESS
726	help
727	  Say Y here if you want to enable force feedback support for Logitech
728	  Flight System G940 devices.
729
730config LOGIWHEELS_FF
731	bool "Logitech wheels configuration and force feedback support"
732	depends on HID_LOGITECH
733	select INPUT_FF_MEMLESS
734	default LOGITECH_FF
735	help
736	  Say Y here if you want to enable force feedback and range setting(*)
737	  support for following Logitech wheels:
738	  - Logitech G25 (*)
739	  - Logitech G27 (*)
740	  - Logitech G29 (*)
741	  - Logitech Driving Force
742	  - Logitech Driving Force Pro (*)
743	  - Logitech Driving Force GT (*)
744	  - Logitech Driving Force EX/RX
745	  - Logitech Driving Force Wireless
746	  - Logitech Speed Force Wireless
747	  - Logitech MOMO Force
748	  - Logitech MOMO Racing Force
749	  - Logitech Formula Force GP
750	  - Logitech Formula Force EX/RX
751	  - Logitech Wingman Formula Force GP
752
753config HID_MAGICMOUSE
754	tristate "Apple Magic Mouse/Trackpad multi-touch support"
755	help
756	Support for the Apple Magic Mouse/Trackpad multi-touch.
757
758	Say Y here if you want support for the multi-touch features of the
759	Apple Wireless "Magic" Mouse and the Apple Wireless "Magic" Trackpad.
760
761config HID_MALTRON
762	tristate "Maltron L90 keyboard"
763	help
764	Adds support for the volume up, volume down, mute, and play/pause buttons
765	of the Maltron L90 keyboard.
766
767config HID_MAYFLASH
768	tristate "Mayflash game controller adapter force feedback"
769	select INPUT_FF_MEMLESS
770	help
771	Say Y here if you have HJZ Mayflash PS3 game controller adapters
772	and want to enable force feedback support.
773
774config HID_MEGAWORLD_FF
775	tristate "Mega World based game controller force feedback support"
776	depends on USB_HID
777	select INPUT_FF_MEMLESS
778	help
779	Say Y here if you have a Mega World based game controller and want
780	to have force feedback support for it.
781
782config HID_REDRAGON
783	tristate "Redragon keyboards"
784	default !EXPERT
785	help
786    Support for Redragon keyboards that need fix-ups to work properly.
787
788config HID_MICROSOFT
789	tristate "Microsoft non-fully HID-compliant devices"
790	default !EXPERT
791	select INPUT_FF_MEMLESS
792	help
793	Support for Microsoft devices that are not fully compliant with HID standard.
794
795config HID_MONTEREY
796	tristate "Monterey Genius KB29E keyboard"
797	default !EXPERT
798	help
799	Support for Monterey Genius KB29E.
800
801config HID_MULTITOUCH
802	tristate "HID Multitouch panels"
803	help
804	  Generic support for HID multitouch panels.
805
806	  Say Y here if you have one of the following devices:
807	  - 3M PCT touch screens
808	  - ActionStar dual touch panels
809	  - Apple Touch Bar on x86 MacBook Pros
810	  - Atmel panels
811	  - Cando dual touch panels
812	  - Chunghwa panels
813	  - CJTouch panels
814	  - CVTouch panels
815	  - Cypress TrueTouch panels
816	  - Elan Microelectronics touch panels
817	  - Elo TouchSystems IntelliTouch Plus panels
818	  - GeneralTouch 'Sensing Win7-TwoFinger' panels
819	  - GoodTouch panels
820	  - Hanvon dual touch panels
821	  - Ilitek dual touch panels
822	  - IrTouch Infrared USB panels
823	  - LG Display panels (Dell ST2220Tc)
824	  - Lumio CrystalTouch panels
825	  - MosArt dual-touch panels
826	  - Panasonic multitouch panels
827	  - PenMount dual touch panels
828	  - Perixx Peripad 701 touchpad
829	  - PixArt optical touch screen
830	  - Pixcir dual touch panels
831	  - Quanta panels
832	  - eGalax dual-touch panels, including the Joojoo and Wetab tablets
833	  - SiS multitouch panels
834	  - Stantum multitouch panels
835	  - Touch International Panels
836	  - Unitec Panels
837	  - Wistron optical touch panels
838	  - XAT optical touch panels
839	  - Xiroku optical touch panels
840	  - Zytronic touch panels
841
842	  If unsure, say N.
843
844	  To compile this driver as a module, choose M here: the
845	  module will be called hid-multitouch.
846
847config HID_NINTENDO
848	tristate "Nintendo Joy-Con, NSO, and Pro Controller support"
849	depends on NEW_LEDS
850	depends on LEDS_CLASS
851	select POWER_SUPPLY
852	help
853	Adds support for the Nintendo Switch Joy-Cons, NSO, Pro Controller.
854	All controllers support bluetooth, and the Pro Controller also supports
855	its USB mode. This also includes support for the Nintendo Switch Online
856	Controllers which include the NES, Genesis, SNES, and N64 controllers.
857
858	To compile this driver as a module, choose M here: the
859	module will be called hid-nintendo.
860
861config NINTENDO_FF
862	bool "Nintendo Switch controller force feedback support"
863	depends on HID_NINTENDO
864	select INPUT_FF_MEMLESS
865	help
866	Say Y here if you have a Nintendo Switch controller and want to enable
867	force feedback support for it. This works for both joy-cons, the pro
868	controller, and the NSO N64 controller. For the pro controller, both
869	rumble motors can be controlled individually.
870
871config HID_NTI
872	tristate "NTI keyboard adapters"
873	help
874	Support for the "extra" Sun keyboard keys on keyboards attached
875	through Network Technologies USB-SUN keyboard adapters.
876
877config HID_NTRIG
878	tristate "N-Trig touch screen"
879	depends on USB_HID
880	help
881	Support for N-Trig touch screen.
882
883config HID_NVIDIA_SHIELD
884	tristate "NVIDIA SHIELD devices"
885	depends on USB_HID
886	depends on BT_HIDP
887	depends on LEDS_CLASS
888	select POWER_SUPPLY
889	help
890	  Support for NVIDIA SHIELD accessories.
891
892	  Supported devices:
893	  - Thunderstrike (NVIDIA SHIELD Controller 2017)
894
895config NVIDIA_SHIELD_FF
896	bool "NVIDIA SHIELD force feedback support"
897	depends on HID_NVIDIA_SHIELD
898	select INPUT_FF_MEMLESS
899	help
900	  Say Y here if you would like to enable force feedback support for
901	  NVIDIA SHIELD accessories with haptics capabilities.
902
903config HID_ORTEK
904	tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad"
905	help
906	There are certain devices which have LogicalMaximum wrong in the keyboard
907	usage page of their report descriptor. The most prevailing ones so far
908	are manufactured by Ortek, thus the name of the driver. Currently
909	supported devices by this driver are
910
911	   - Ortek PKB-1700
912	   - Ortek WKB-2000
913	   - Skycable wireless presenter
914
915config HID_PANTHERLORD
916	tristate "Pantherlord/GreenAsia game controller"
917	help
918	  Say Y here if you have a PantherLord/GreenAsia based game controller
919	  or adapter.
920
921config PANTHERLORD_FF
922	bool "Pantherlord force feedback support"
923	depends on HID_PANTHERLORD
924	select INPUT_FF_MEMLESS
925	help
926	  Say Y here if you have a PantherLord/GreenAsia based game controller
927	  or adapter and want to enable force feedback support for it.
928
929config HID_PENMOUNT
930	tristate "Penmount touch device"
931	depends on USB_HID
932	help
933	  This selects a driver for the PenMount 6000 touch controller.
934
935	  The driver works around a problem in the report descript allowing
936	  the userspace to touch events instead of mouse events.
937
938	  Say Y here if you have a Penmount based touch controller.
939
940config HID_PETALYNX
941	tristate "Petalynx Maxter remote control"
942	help
943	Support for Petalynx Maxter remote control.
944
945config HID_PICOLCD
946	tristate "PicoLCD (graphic version)"
947	help
948	  This provides support for Minibox PicoLCD devices, currently
949	  only the graphical ones are supported.
950
951	  This includes support for the following device features:
952	  - Keypad
953	  - Switching between Firmware and Flash mode
954	  - EEProm / Flash access     (via debugfs)
955	  Features selectively enabled:
956	  - Framebuffer for monochrome 256x64 display
957	  - Backlight control
958	  - Contrast control
959	  - General purpose outputs
960	  Features that are not (yet) supported:
961	  - IR
962
963config HID_PICOLCD_FB
964	bool "Framebuffer support" if EXPERT
965	default !EXPERT
966	depends on HID_PICOLCD
967	depends on HID_PICOLCD=FB || FB=y
968	select FB_SYSMEM_HELPERS_DEFERRED
969	help
970	  Provide access to PicoLCD's 256x64 monochrome display via a
971	  framebuffer device.
972
973config HID_PICOLCD_BACKLIGHT
974	bool "Backlight control" if EXPERT
975	default !EXPERT
976	depends on HID_PICOLCD
977	depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y
978	help
979	  Provide access to PicoLCD's backlight control via backlight
980	  class.
981
982config HID_PICOLCD_LCD
983	bool "Contrast control" if EXPERT
984	default !EXPERT
985	depends on HID_PICOLCD
986	depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y
987	help
988	  Provide access to PicoLCD's LCD contrast via lcd class.
989
990config HID_PICOLCD_LEDS
991	bool "GPO via leds class" if EXPERT
992	default !EXPERT
993	depends on HID_PICOLCD
994	depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y
995	help
996	  Provide access to PicoLCD's GPO pins via leds class.
997
998config HID_PICOLCD_CIR
999	bool "CIR via RC class" if EXPERT
1000	default !EXPERT
1001	depends on HID_PICOLCD
1002	depends on HID_PICOLCD=RC_CORE || RC_CORE=y
1003	help
1004	  Provide access to PicoLCD's CIR interface via remote control (LIRC).
1005
1006config HID_PLANTRONICS
1007	tristate "Plantronics USB HID Driver"
1008	help
1009	  Provides HID support for Plantronics USB audio devices.
1010	  Correctly maps vendor unique volume up/down HID usages to
1011	  KEY_VOLUMEUP and KEY_VOLUMEDOWN events and prevents core mapping
1012	  of other vendor unique HID usages to random mouse events.
1013
1014	  Say M here if you may ever plug in a Plantronics USB audio device.
1015
1016config HID_PLAYSTATION
1017	tristate "PlayStation HID Driver"
1018	depends on LEDS_CLASS_MULTICOLOR
1019	select CRC32
1020	select POWER_SUPPLY
1021	help
1022	  Provides support for Sony PS4/PS5 controllers including support for
1023	  its special functionalities e.g. touchpad, lights and motion
1024	  sensors.
1025
1026config PLAYSTATION_FF
1027	bool "PlayStation force feedback support"
1028	depends on HID_PLAYSTATION
1029	select INPUT_FF_MEMLESS
1030	help
1031	  Say Y here if you would like to enable force feedback support for
1032	  PlayStation game controllers.
1033
1034config HID_PXRC
1035       tristate "PhoenixRC HID Flight Controller"
1036       depends on HID
1037       help
1038       Support for PhoenixRC HID Flight Controller, a 8-axis flight controller.
1039
1040       To compile this driver as a module, choose M here: the
1041       module will be called hid-pxrc.
1042
1043config HID_RAPOO
1044	tristate "Rapoo non-fully HID-compliant devices"
1045	help
1046	Support for Rapoo devices that are not fully compliant with the
1047	HID standard.
1048
1049config HID_RAZER
1050	tristate "Razer non-fully HID-compliant devices"
1051	help
1052	Support for Razer devices that are not fully compliant with the
1053	HID standard.
1054
1055config HID_PRIMAX
1056	tristate "Primax non-fully HID-compliant devices"
1057	help
1058	Support for Primax devices that are not fully compliant with the
1059	HID standard.
1060
1061config HID_RETRODE
1062	tristate "Retrode 2 USB adapter for vintage video games"
1063	depends on USB_HID
1064	help
1065	Support for
1066	  * Retrode 2 cartridge and controller adapter
1067
1068config HID_ROCCAT
1069	tristate "Roccat device support"
1070	depends on USB_HID
1071	help
1072	Support for Roccat devices.
1073	Say Y here if you have a Roccat mouse or keyboard and want
1074	support for its special functionalities.
1075
1076config HID_SAITEK
1077	tristate "Saitek (Mad Catz) non-fully HID-compliant devices"
1078	help
1079	Support for Saitek devices that are not fully compliant with the
1080	HID standard.
1081
1082	Supported devices:
1083	- PS1000 Dual Analog Pad
1084	- Saitek R.A.T.7, R.A.T.9, M.M.O.7 Gaming Mice
1085	- Mad Catz R.A.T.5, R.A.T.9 Gaming Mice
1086
1087config HID_SAMSUNG
1088	tristate "Samsung InfraRed remote control or keyboards"
1089	depends on USB_HID
1090	help
1091	Support for Samsung InfraRed remote control or keyboards.
1092
1093config HID_SEMITEK
1094	tristate "Semitek USB keyboards"
1095	help
1096	Support for Semitek USB keyboards that are not fully compliant
1097	with the HID standard.
1098
1099	There are many variants, including:
1100	- GK61, GK64, GK68, GK84, GK96, etc.
1101	- SK61, SK64, SK68, SK84, SK96, etc.
1102	- Dierya DK61/DK66
1103	- Tronsmart TK09R
1104	- Woo-dy
1105	- X-Bows Nature/Knight
1106
1107config HID_SIGMAMICRO
1108	tristate "SiGma Micro-based keyboards"
1109	depends on USB_HID
1110	help
1111	  Support for keyboards that use the SiGma Micro (a.k.a SigmaChip) IC.
1112
1113	  Supported devices:
1114	  - Landslides KR-700
1115	  - Rapoo V500
1116
1117config HID_SONY
1118	tristate "Sony PS2/3/4/5 accessories"
1119	depends on USB_HID
1120	depends on NEW_LEDS
1121	depends on LEDS_CLASS
1122	select POWER_SUPPLY
1123	select CRC32
1124	help
1125	Support for
1126
1127	  * Sony PS3 6-axis controllers
1128	  * Buzz controllers
1129	  * Sony PS3 Blue-ray Disk Remote Control (Bluetooth)
1130	  * Logitech Harmony adapter for Sony Playstation 3 (Bluetooth)
1131	  * Guitar Hero Live PS3, Wii U and PS4 guitar dongles
1132	  * Guitar Hero PS3 and PC guitar dongles
1133	  * Rock Band 4 PS4 and PS5 guitars
1134
1135config SONY_FF
1136	bool "Sony PS2/3/4 accessories force feedback support"
1137	depends on HID_SONY
1138	select INPUT_FF_MEMLESS
1139	help
1140	Say Y here if you have a Sony PS2/3/4 accessory and want to enable
1141	force feedback support for it.
1142
1143config HID_SPEEDLINK
1144	tristate "Speedlink VAD Cezanne mouse support"
1145	help
1146	Support for Speedlink Vicious and Divine Cezanne mouse.
1147
1148config HID_STEAM
1149	tristate "Steam Controller/Deck support"
1150	select POWER_SUPPLY
1151	help
1152	Say Y here if you have a Steam Controller or Deck if you want to use it
1153	without running the Steam Client. It supports both the wired and
1154	the wireless adaptor.
1155
1156config STEAM_FF
1157	bool "Steam Deck force feedback support"
1158	depends on HID_STEAM
1159	select INPUT_FF_MEMLESS
1160	help
1161	Say Y here if you want to enable force feedback support for the Steam
1162	Deck.
1163
1164config HID_STEELSERIES
1165	tristate "Steelseries devices support"
1166	depends on USB_HID
1167	help
1168	Support for Steelseries SRW-S1 steering wheel, and the Steelseries
1169	Arctis 1 Wireless for XBox headset.
1170
1171config HID_SUNPLUS
1172	tristate "Sunplus wireless desktop"
1173	help
1174	Support for Sunplus wireless desktop.
1175
1176config HID_RMI
1177	tristate "Synaptics RMI4 device support"
1178	select RMI4_CORE
1179	select RMI4_F03
1180	select RMI4_F11
1181	select RMI4_F12
1182	select RMI4_F30
1183	select RMI4_F3A
1184	help
1185	Support for Synaptics RMI4 touchpads.
1186	Say Y here if you have a Synaptics RMI4 touchpads over i2c-hid or usbhid
1187	and want support for its special functionalities.
1188
1189config HID_GREENASIA
1190	tristate "GreenAsia (Product ID 0x12) game controller support"
1191	help
1192	  Say Y here if you have a GreenAsia (Product ID 0x12) based game
1193	  controller or adapter.
1194
1195config GREENASIA_FF
1196	bool "GreenAsia (Product ID 0x12) force feedback support"
1197	depends on HID_GREENASIA
1198	select INPUT_FF_MEMLESS
1199	help
1200	Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
1201	(like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
1202	and want to enable force feedback support for it.
1203
1204config HID_HYPERV_MOUSE
1205	tristate "Microsoft Hyper-V mouse driver"
1206	depends on HYPERV_VMBUS
1207	help
1208	Select this option to enable the Hyper-V mouse driver.
1209
1210config HID_SMARTJOYPLUS
1211	tristate "SmartJoy PLUS PS2/USB adapter support"
1212	help
1213	Support for SmartJoy PLUS PS2/USB adapter, Super Dual Box,
1214	Super Joy Box 3 Pro, Super Dual Box Pro, and Super Joy Box 5 Pro.
1215
1216	Note that DDR (Dance Dance Revolution) mode is not supported, nor
1217	is pressure sensitive buttons on the pro models.
1218
1219config SMARTJOYPLUS_FF
1220	bool "SmartJoy PLUS PS2/USB adapter force feedback support"
1221	depends on HID_SMARTJOYPLUS
1222	select INPUT_FF_MEMLESS
1223	help
1224	Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to
1225	enable force feedback support for it.
1226
1227config HID_TIVO
1228	tristate "TiVo Slide Bluetooth remote control support"
1229	help
1230	Say Y if you have a TiVo Slide Bluetooth remote control.
1231
1232config HID_TOPSEED
1233	tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support"
1234	help
1235	Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic
1236	CLLRCMCE remote control.
1237
1238config HID_TOPRE
1239	tristate "Topre REALFORCE keyboards"
1240	depends on HID
1241	help
1242	  Say Y for N-key rollover support on Topre REALFORCE R2 108/87 key and
1243          Topre REALFORCE R3S 87 key keyboards.
1244
1245config HID_THINGM
1246	tristate "ThingM blink(1) USB RGB LED"
1247	depends on LEDS_CLASS
1248	select HID_LED
1249	help
1250	Support for the ThingM blink(1) USB RGB LED. This driver has been
1251	merged into the generic hid led driver. Config symbol HID_THINGM
1252	just selects HID_LED and will be removed soon.
1253
1254config HID_THRUSTMASTER
1255	tristate "ThrustMaster devices support"
1256	depends on USB_HID
1257	help
1258	  Say Y here if you have a THRUSTMASTER FireStore Dual Power 2,
1259	  a THRUSTMASTER Ferrari GT Rumble Wheel or Thrustmaster FFB
1260	  Wheel (T150RS, T300RS, T300 Ferrari Alcantara Edition, T500RS).
1261
1262config THRUSTMASTER_FF
1263	bool "ThrustMaster devices force feedback support"
1264	depends on HID_THRUSTMASTER
1265	select INPUT_FF_MEMLESS
1266	help
1267	  Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3,
1268	  a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT
1269	  Rumble Force or Force Feedback Wheel.
1270
1271config HID_UDRAW_PS3
1272	tristate "THQ PS3 uDraw tablet"
1273	help
1274	  Say Y here if you want to use the THQ uDraw gaming tablet for
1275	  the PS3.
1276
1277config HID_U2FZERO
1278	tristate "U2F Zero LED and RNG support"
1279	depends on USB_HID
1280	depends on LEDS_CLASS
1281	depends on HW_RANDOM
1282	help
1283	  Support for the LED of the U2F Zero device.
1284
1285	  U2F Zero supports custom commands for blinking the LED
1286	  and getting data from the internal hardware RNG.
1287	  The internal hardware can be used to feed the entropy pool.
1288
1289	  U2F Zero only supports blinking its LED, so this driver doesn't
1290	  allow setting the brightness to anything but 1, which will
1291	  trigger a single blink and immediately reset back to 0.
1292
1293config HID_UNIVERSAL_PIDFF
1294	tristate "universal-pidff: extended USB PID driver compatibility and usage"
1295	depends on USB_HID
1296	depends on HID_PID
1297	help
1298	  Extended PID support for selected devices.
1299
1300	  Contains report fixups, extended usable button range and
1301	  pidff quirk management to extend compatibility with slightly
1302	  non-compliant USB PID devices and better fuzz/flat values for
1303	  high precision direct drive devices.
1304
1305	  Supports Moza Racing, Cammus, VRS, FFBeast and more.
1306
1307config HID_WACOM
1308	tristate "Wacom Intuos/Graphire tablet support (USB)"
1309	depends on USB_HID
1310	select POWER_SUPPLY
1311	select NEW_LEDS
1312	select LEDS_CLASS
1313	select LEDS_TRIGGERS
1314	help
1315	  Say Y here if you want to use the USB or BT version of the Wacom Intuos
1316	  or Graphire tablet.
1317
1318	  To compile this driver as a module, choose M here: the
1319	  module will be called wacom.
1320
1321config HID_WIIMOTE
1322	tristate "Nintendo Wii / Wii U peripherals"
1323	depends on LEDS_CLASS
1324	select POWER_SUPPLY
1325	select INPUT_FF_MEMLESS
1326	help
1327	Support for Nintendo Wii and Wii U Bluetooth peripherals. Supported
1328	devices are the Wii Remote and its extension devices, but also devices
1329	based on the Wii Remote like the Wii U Pro Controller or the
1330	Wii Balance Board.
1331
1332	Support for all official Nintendo extensions is available, however, 3rd
1333	party extensions might not be supported. Please report these devices to:
1334	  http://github.com/dvdhrm/xwiimote/issues
1335
1336	Other Nintendo Wii U peripherals that are IEEE 802.11 based (including
1337	the Wii U Gamepad) might be supported in the future. But currently
1338	support is limited to Bluetooth based devices.
1339
1340	If unsure, say N.
1341
1342	To compile this driver as a module, choose M here: the
1343	module will be called hid-wiimote.
1344
1345config HID_WINWING
1346	tristate "WinWing Orion2 throttle support"
1347	depends on USB_HID
1348	depends on NEW_LEDS
1349	depends on LEDS_CLASS
1350	help
1351	  Support for WinWing Orion2 throttle base with the following grips:
1352
1353	    * TGRIP-15E
1354	    * TGRIP-15EX
1355	    * TGRIP-16EX
1356	    * TGRIP-18
1357
1358	  This driver enables all buttons and switches on the throttle base.
1359
1360	  To compile this driver as a module, choose M here: the
1361	  module will be called hid-winwing.
1362
1363config HID_XINMO
1364	tristate "Xin-Mo non-fully compliant devices"
1365	help
1366	Support for Xin-Mo devices that are not fully compliant with the HID
1367	standard. Currently only supports the Xin-Mo Dual Arcade. Say Y here
1368	if you have a Xin-Mo Dual Arcade controller.
1369
1370config HID_ZEROPLUS
1371	tristate "Zeroplus based game controller support"
1372	help
1373	  Say Y here if you have a Zeroplus based game controller.
1374
1375config ZEROPLUS_FF
1376	bool "Zeroplus based game controller force feedback support"
1377	depends on HID_ZEROPLUS
1378	select INPUT_FF_MEMLESS
1379	help
1380	  Say Y here if you have a Zeroplus based game controller and want
1381	  to have force feedback support for it.
1382
1383config HID_ZYDACRON
1384	tristate "Zydacron remote control support"
1385	help
1386	Support for Zydacron remote control.
1387
1388config HID_SENSOR_HUB
1389	tristate "HID Sensors framework support"
1390	depends on HAS_IOMEM
1391	select MFD_CORE
1392	default n
1393	help
1394	  Support for HID Sensor framework. This creates a MFD instance
1395	  for a sensor hub and identifies all the sensors connected to it.
1396	  Each sensor is registered as a MFD cell, so that sensor specific
1397	  processing can be done in a separate driver. Each sensor
1398	  drivers can use the service provided by this driver to register
1399	  for events and handle data streams. Each sensor driver can format
1400	  data and present to user mode using input or IIO interface.
1401
1402config HID_SENSOR_CUSTOM_SENSOR
1403	tristate "HID Sensors hub custom sensor support"
1404	depends on HID_SENSOR_HUB
1405	default n
1406	help
1407	  HID Sensor hub specification allows definition of some custom and
1408	  generic sensors. Unlike other HID sensors, they can't be exported
1409	  via Linux IIO because of custom fields. This is up to the manufacturer
1410	  to decide how to interpret these special sensor ids and process in
1411	  the user space. Currently some manufacturers are using these ids for
1412	  sensor calibration and debugging other sensors. Manufacturers
1413	  shouldn't use these special custom sensor ids to export any of the
1414	  standard sensors.
1415	  Select this config option for custom/generic sensor support.
1416
1417config HID_ALPS
1418	tristate "Alps HID device support"
1419	help
1420	Support for Alps I2C HID touchpads and StickPointer.
1421	Say Y here if you have a Alps touchpads over i2c-hid or usbhid
1422	and want support for its special functionalities.
1423
1424config HID_MCP2200
1425	tristate "Microchip MCP2200 HID USB-to-GPIO bridge"
1426	depends on USB_HID && GPIOLIB
1427	help
1428	  Provides GPIO functionality over USB-HID through MCP2200 device.
1429
1430	  To compile this driver as a module, choose M here: the module
1431	  will be called hid-mcp2200.ko.
1432
1433config HID_MCP2221
1434	tristate "Microchip MCP2221 HID USB-to-I2C/SMbus host support"
1435	depends on USB_HID && I2C
1436	imply GPIOLIB
1437	imply IIO
1438	help
1439	Provides I2C and SMBUS host adapter functionality over USB-HID
1440	through MCP2221 device.
1441
1442	To compile this driver as a module, choose M here: the module
1443	will be called hid-mcp2221.ko.
1444
1445config HID_KUNIT_TEST
1446	tristate "KUnit tests for HID" if !KUNIT_ALL_TESTS
1447	depends on KUNIT
1448	depends on HID_BATTERY_STRENGTH
1449	depends on HID_UCLOGIC
1450	default KUNIT_ALL_TESTS
1451	help
1452	  This builds unit tests for HID. This option is not useful for
1453	  distributions or general kernels, but only for kernel
1454	  developers working on HID and associated drivers.
1455
1456	  For more information on KUnit and unit tests in general,
1457	  please refer to the KUnit documentation in
1458	  Documentation/dev-tools/kunit/.
1459
1460	  If in doubt, say "N".
1461
1462endmenu
1463
1464source "drivers/hid/bpf/Kconfig"
1465
1466source "drivers/hid/i2c-hid/Kconfig"
1467
1468source "drivers/hid/intel-ish-hid/Kconfig"
1469
1470source "drivers/hid/amd-sfh-hid/Kconfig"
1471
1472source "drivers/hid/surface-hid/Kconfig"
1473
1474source "drivers/hid/intel-thc-hid/Kconfig"
1475
1476endif # HID
1477
1478# USB support may be used with HID disabled
1479
1480source "drivers/hid/usbhid/Kconfig"
1481
1482endif # HID_SUPPORT
1483