xref: /linux/drivers/hid/Kconfig (revision f5c27da4e3c8a2e42fb4f41a0c685debcb9af294)
1ec8f24b7SThomas Gleixner# SPDX-License-Identifier: GPL-2.0-only
263f3861dSJiri Kosina#
363f3861dSJiri Kosina# HID driver configuration
463f3861dSJiri Kosina#
525621bccSBenjamin Tissoiresmenuconfig HID_SUPPORT
625621bccSBenjamin Tissoires	bool "HID bus support"
725621bccSBenjamin Tissoires	default y
863f3861dSJiri Kosina	depends on INPUT
925621bccSBenjamin Tissoires	help
1025621bccSBenjamin Tissoires	  This option adds core support for human interface device (HID).
1125621bccSBenjamin Tissoires	  You will also need drivers from the following menu to make use of it.
1225621bccSBenjamin Tissoires
1325621bccSBenjamin Tissoiresif HID_SUPPORT
1463f3861dSJiri Kosina
1563f3861dSJiri Kosinaconfig HID
1625621bccSBenjamin Tissoires	tristate "HID bus core support"
1763f3861dSJiri Kosina	default y
18a7f7f624SMasahiro Yamada	help
1969e4d948SJiri Kosina	  A human interface device (HID) is a type of computer device that
2069e4d948SJiri Kosina	  interacts directly with and takes input from humans. The term "HID"
2169e4d948SJiri Kosina	  most commonly used to refer to the USB-HID specification, but other
2269e4d948SJiri Kosina	  devices (such as, but not strictly limited to, Bluetooth) are
2369e4d948SJiri Kosina	  designed using HID specification (this involves certain keyboards,
241f41a6a9SHenrik Rydberg	  mice, tablets, etc). This option adds the HID bus to the kernel,
251f41a6a9SHenrik Rydberg	  together with generic HID layer code. The HID devices are added and
261f41a6a9SHenrik Rydberg	  removed from the HID bus by the transport-layer drivers, such as
271f41a6a9SHenrik Rydberg	  usbhid (USB_HID) and hidp (BT_HIDP).
2869e4d948SJiri Kosina
29b1631b84SAlexander A. Klimov	  For docs and specs, see https://www.usb.org/developers/hidpage/
3069e4d948SJiri Kosina
31205adbecSPavel Machek	  If unsure, say Y.
3263f3861dSJiri Kosina
331f41a6a9SHenrik Rydbergif HID
341f41a6a9SHenrik Rydberg
354f5ca836SJeremy Fitzhardingeconfig HID_BATTERY_STRENGTH
36692d30d6SJiri Kosina	bool "Battery level reporting for HID devices"
37060c9982SDaniel Nicoletti	select POWER_SUPPLY
382198edddSJosh Boyer	default n
39a7f7f624SMasahiro Yamada	help
40692d30d6SJiri Kosina	This option adds support of reporting battery strength (for HID devices
41692d30d6SJiri Kosina	that support this feature) through power_supply class so that userspace
42692d30d6SJiri Kosina	tools, such as upower, can display it.
434f5ca836SJeremy Fitzhardinge
4486166b7bSJiri Kosinaconfig HIDRAW
4586166b7bSJiri Kosina	bool "/dev/hidraw raw HID device support"
46a7f7f624SMasahiro Yamada	help
4786166b7bSJiri Kosina	Say Y here if you want to support HID devices (from the USB
4886166b7bSJiri Kosina	specification standpoint) that aren't strictly user interface
4916863fbcSChristophe JAILLET	devices, like monitor controls and Uninterruptible Power Supplies.
5086166b7bSJiri Kosina
5186166b7bSJiri Kosina	This module supports these devices separately using a separate
5286166b7bSJiri Kosina	event interface on /dev/hidraw.
5386166b7bSJiri Kosina
5486166b7bSJiri Kosina	There is also a /dev/hiddev configuration option in the USB HID
5586166b7bSJiri Kosina	configuration menu. In comparison to hiddev, this device does not process
5686166b7bSJiri Kosina	the hid events at all (no parsing, no lookups). This lets applications
5786166b7bSJiri Kosina	to work on raw hid events when they want to, and avoid using transport-specific
5886166b7bSJiri Kosina	userspace libhid/libusb libraries.
5986166b7bSJiri Kosina
6086166b7bSJiri Kosina	If unsure, say Y.
6186166b7bSJiri Kosina
621ccd7a2aSDavid Herrmannconfig UHID
631ccd7a2aSDavid Herrmann	tristate "User-space I/O driver support for HID subsystem"
641ccd7a2aSDavid Herrmann	default n
65a7f7f624SMasahiro Yamada	help
661ccd7a2aSDavid Herrmann	Say Y here if you want to provide HID I/O Drivers from user-space.
671ccd7a2aSDavid Herrmann	This allows to write I/O drivers in user-space and feed the data from
681ccd7a2aSDavid Herrmann	the device into the kernel. The kernel parses the HID reports, loads the
691ccd7a2aSDavid Herrmann	corresponding HID Device Driver or provides input devices on top of your
701ccd7a2aSDavid Herrmann	user-space device.
711ccd7a2aSDavid Herrmann
721ccd7a2aSDavid Herrmann	This driver cannot be used to parse HID-reports in user-space and write
731ccd7a2aSDavid Herrmann	special HID-drivers. You should use hidraw for that.
741ccd7a2aSDavid Herrmann	Instead, this driver allows to write the transport-layer driver in
751ccd7a2aSDavid Herrmann	user-space like USB-HID and Bluetooth-HID do in kernel-space.
761ccd7a2aSDavid Herrmann
771ccd7a2aSDavid Herrmann	If unsure, say N.
781ccd7a2aSDavid Herrmann
791ccd7a2aSDavid Herrmann	To compile this driver as a module, choose M here: the
801ccd7a2aSDavid Herrmann	module will be called uhid.
811ccd7a2aSDavid Herrmann
828215d557SHenrik Rydbergconfig HID_GENERIC
838215d557SHenrik Rydberg	tristate "Generic HID driver"
841f41a6a9SHenrik Rydberg	default HID
85a7f7f624SMasahiro Yamada	help
861f41a6a9SHenrik Rydberg	Support for generic devices on the HID bus. This includes most
871f41a6a9SHenrik Rydberg	keyboards and mice, joysticks, tablets and digitizers.
888215d557SHenrik Rydberg
898215d557SHenrik Rydberg	To compile this driver as a module, choose M here: the module
908215d557SHenrik Rydberg	will be called hid-generic.
918215d557SHenrik Rydberg
928215d557SHenrik Rydberg	If unsure, say Y.
938215d557SHenrik Rydberg
941f41a6a9SHenrik Rydbergmenu "Special HID drivers"
951f41a6a9SHenrik Rydberg
9614a21cd4SJiri Slabyconfig HID_A4TECH
979858c74cSMateusz Jończyk	tristate "A4TECH mice"
986a108a14SDavid Rientjes	default !EXPERT
99a7f7f624SMasahiro Yamada	help
1009858c74cSMateusz Jończyk	Support for some A4TECH mice with two scroll wheels.
10114a21cd4SJiri Slaby
102c846fe9cSMartyn Welchconfig HID_ACCUTOUCH
103c846fe9cSMartyn Welch	tristate "Accutouch touch device"
104c846fe9cSMartyn Welch	depends on USB_HID
105a7f7f624SMasahiro Yamada	help
106c846fe9cSMartyn Welch	  This selects a driver for the Accutouch 2216 touch controller.
107c846fe9cSMartyn Welch
108c846fe9cSMartyn Welch	  The driver works around a problem in the reported device capabilities
109c846fe9cSMartyn Welch	  which causes userspace to detect the device as a mouse rather than
110c846fe9cSMartyn Welch          a touchscreen.
111c846fe9cSMartyn Welch
112c846fe9cSMartyn Welch	  Say Y here if you have a Accutouch 2216 touch controller.
113c846fe9cSMartyn Welch
1140ae43810SDmitry Torokhovconfig HID_ACRUX
1150ae43810SDmitry Torokhov	tristate "ACRUX game controller support"
116a7f7f624SMasahiro Yamada	help
1170ae43810SDmitry Torokhov	Say Y here if you want to enable support for ACRUX game controllers.
1180ae43810SDmitry Torokhov
1190ae43810SDmitry Torokhovconfig HID_ACRUX_FF
120364b936fSSergei Kolzun	bool "ACRUX force feedback support"
1210ae43810SDmitry Torokhov	depends on HID_ACRUX
122c0dbcc33SSergei Kolzun	select INPUT_FF_MEMLESS
123a7f7f624SMasahiro Yamada	help
124c0dbcc33SSergei Kolzun	Say Y here if you want to enable force feedback support for ACRUX
125c0dbcc33SSergei Kolzun	game controllers.
126c0dbcc33SSergei Kolzun
1278c19a515SJiri Slabyconfig HID_APPLE
1287af05e73SJean Delvare	tristate "Apple {i,Power,Mac}Books"
129ed9f4f96SJiri Kosina	depends on LEDS_CLASS
130ed9f4f96SJiri Kosina	depends on NEW_LEDS
1316a108a14SDavid Rientjes	default !EXPERT
132a7f7f624SMasahiro Yamada	help
1338c19a515SJiri Slaby	Support for some Apple devices which less or more break
1348c19a515SJiri Slaby	HID specification.
1358c19a515SJiri Slaby
136f0bd8e43SJiri Kosina	Say Y here if you want support for keyboards of	Apple iBooks, PowerBooks,
137f0bd8e43SJiri Kosina	MacBooks, MacBook Pros and Apple Aluminum.
1388c19a515SJiri Slaby
1399a4a5574SBenjamin Tissoiresconfig HID_APPLEIR
1409a4a5574SBenjamin Tissoires	tristate "Apple infrared receiver"
1419a4a5574SBenjamin Tissoires	depends on (USB_HID)
142a7f7f624SMasahiro Yamada	help
1439a4a5574SBenjamin Tissoires	Support for Apple infrared remote control. All the Apple computers from
1449a4a5574SBenjamin Tissoires	  2005 onwards include such a port, except the unibody Macbook (2009),
1459a4a5574SBenjamin Tissoires	  and Mac Pros. This receiver is also used in the Apple TV set-top box
1469a4a5574SBenjamin Tissoires	  prior to the 2010 model.
1479a4a5574SBenjamin Tissoires
1489a4a5574SBenjamin Tissoires	Say Y here if you want support for Apple infrared remote control.
1499a4a5574SBenjamin Tissoires
150eeb01a57SYusuke Fujimakiconfig HID_ASUS
151eeb01a57SYusuke Fujimaki	tristate "Asus"
152c4f0126dSHans de Goede	depends on USB_HID
153af22a610SCarlo Caione	depends on LEDS_CLASS
1543b692c55SDaniel Drake	depends on ASUS_WMI || ASUS_WMI=n
155a23eab89SArnd Bergmann	select POWER_SUPPLY
156a7f7f624SMasahiro Yamada	help
1571caccc25SChris Chiu	Support for Asus notebook built-in keyboard and touchpad via i2c, and
1581caccc25SChris Chiu	the Asus Republic of Gamers laptop keyboard special keys.
159b94f7d5dSYusuke Fujimaki
160b94f7d5dSYusuke Fujimaki	Supported devices:
161b94f7d5dSYusuke Fujimaki	- EeeBook X205TA
162b94f7d5dSYusuke Fujimaki	- VivoBook E200HA
1631caccc25SChris Chiu	- GL553V series
1641caccc25SChris Chiu	- GL753V series
165eeb01a57SYusuke Fujimaki
166212da74dSJosenivaldo Benito Juniorconfig HID_AUREAL
167212da74dSJosenivaldo Benito Junior	tristate "Aureal"
168a7f7f624SMasahiro Yamada	help
169212da74dSJosenivaldo Benito Junior	Support for Aureal Cy se W-01RN Remote Controller and other Aureal derived remotes.
170212da74dSJosenivaldo Benito Junior
171b5635b12SJiri Slabyconfig HID_BELKIN
1727af05e73SJean Delvare	tristate "Belkin Flip KVM and Wireless keyboard"
1736a108a14SDavid Rientjes	default !EXPERT
174a7f7f624SMasahiro Yamada	help
175b5635b12SJiri Slaby	Support for Belkin Flip KVM and Wireless keyboard.
176b5635b12SJiri Slaby
177fc38a8a6SHuang Boconfig HID_BETOP_FF
178fc38a8a6SHuang Bo	tristate "Betop Production Inc. force feedback support"
179fc38a8a6SHuang Bo	depends on USB_HID
180fc38a8a6SHuang Bo	select INPUT_FF_MEMLESS
181a7f7f624SMasahiro Yamada	help
182fc38a8a6SHuang Bo	Say Y here if you want to enable force feedback support for devices by
183fc38a8a6SHuang Bo	BETOP Production Ltd.
184fc38a8a6SHuang Bo	Currently the following devices are known to be supported:
185fc38a8a6SHuang Bo	 - BETOP 2185 PC & BFM MODE
186fc38a8a6SHuang Bo
187256a90edSHanno Zullaconfig HID_BIGBEN_FF
188256a90edSHanno Zulla	tristate "BigBen Interactive Kids' gamepad support"
189256a90edSHanno Zulla	depends on USB_HID
190256a90edSHanno Zulla	depends on NEW_LEDS
191256a90edSHanno Zulla	depends on LEDS_CLASS
192256a90edSHanno Zulla	select INPUT_FF_MEMLESS
193256a90edSHanno Zulla	help
194256a90edSHanno Zulla	  Support for the "Kid-friendly Wired Controller" PS3OFMINIPAD
195256a90edSHanno Zulla	  gamepad made by BigBen Interactive, originally sold as a PS3
196256a90edSHanno Zulla	  accessory. This driver fixes input mapping and adds support for
197256a90edSHanno Zulla	  force feedback effects and LEDs on the device.
198256a90edSHanno Zulla
1993b239cd7SJiri Slabyconfig HID_CHERRY
2007af05e73SJean Delvare	tristate "Cherry Cymotion keyboard"
2016a108a14SDavid Rientjes	default !EXPERT
202a7f7f624SMasahiro Yamada	help
203f0bd8e43SJiri Kosina	Support for Cherry Cymotion keyboard.
2043b239cd7SJiri Slaby
205fcfacfd3SJiri Slabyconfig HID_CHICONY
206f2f10b7eSDaniel Drake	tristate "Chicony devices"
207d080811fSGreg Kroah-Hartman	depends on USB_HID
2086a108a14SDavid Rientjes	default !EXPERT
209a7f7f624SMasahiro Yamada	help
210f2f10b7eSDaniel Drake	Support for Chicony Tactical pad and special keys on Chicony keyboards.
211fcfacfd3SJiri Slaby
2126f78193eSClément Vuchenerconfig HID_CORSAIR
2136f78193eSClément Vuchener	tristate "Corsair devices"
214f237d902SGreg Kroah-Hartman	depends on USB_HID && LEDS_CLASS
215a7f7f624SMasahiro Yamada	help
2166f78193eSClément Vuchener	Support for Corsair devices that are not fully compliant with the
2176f78193eSClément Vuchener	HID standard.
2186f78193eSClément Vuchener
2196f78193eSClément Vuchener	Supported devices:
2206f78193eSClément Vuchener	- Vengeance K90
22101adc47eSOscar Campos	- Scimitar PRO RGB
2226f78193eSClément Vuchener
223b8e759b8SDaniel M. Lambeaconfig HID_COUGAR
224b8e759b8SDaniel M. Lambea	tristate "Cougar devices"
225b8e759b8SDaniel M. Lambea	help
226b8e759b8SDaniel M. Lambea	Support for Cougar devices that are not fully compliant with the
227b8e759b8SDaniel M. Lambea	HID standard.
228b8e759b8SDaniel M. Lambea
229b8e759b8SDaniel M. Lambea	Supported devices:
230b8e759b8SDaniel M. Lambea	- Cougar 500k Gaming Keyboard
231b8e759b8SDaniel M. Lambea
232161f62cdSAlex Henrieconfig HID_MACALLY
233161f62cdSAlex Henrie	tristate "Macally devices"
234161f62cdSAlex Henrie	help
235161f62cdSAlex Henrie	Support for Macally devices that are not fully compliant with the
236161f62cdSAlex Henrie	HID standard.
237161f62cdSAlex Henrie
238161f62cdSAlex Henrie	supported devices:
239161f62cdSAlex Henrie	- Macally ikey keyboard
240161f62cdSAlex Henrie
2413a370ca1SDon Princeconfig HID_PRODIKEYS
24295736de9SJiri Kosina	tristate "Prodikeys PC-MIDI Keyboard support"
24330cb3c2aSGreg Kroah-Hartman	depends on USB_HID && SND
2443a370ca1SDon Prince	select SND_RAWMIDI
245a7f7f624SMasahiro Yamada	help
2463a370ca1SDon Prince	Support for Prodikeys PC-MIDI Keyboard device support.
2473a370ca1SDon Prince	Say Y here to enable support for this device.
2483a370ca1SDon Prince	- Prodikeys PC-MIDI keyboard.
2493a370ca1SDon Prince	  The Prodikeys PC-MIDI acts as a USB Audio device, with one MIDI
2503a370ca1SDon Prince	  input and one MIDI output. These MIDI jacks appear as
2513a370ca1SDon Prince	  a sound "card" in the ALSA sound system.
2523a370ca1SDon Prince	  Note: if you say N here, this device will still function as a basic
2533a370ca1SDon Prince	  multimedia keyboard, but will lack support for the musical keyboard
2543a370ca1SDon Prince	  and some additional multimedia keys.
2553a370ca1SDon Prince
256ad8ddc57SBen Chenconfig HID_CMEDIA
257bebf8820SThomas Weißschuh	tristate "CMedia audio chips"
258a7f7f624SMasahiro Yamada	help
259bebf8820SThomas Weißschuh	Support for CMedia CM6533 HID audio jack controls
260bebf8820SThomas Weißschuh        and HS100B mute buttons.
261ad8ddc57SBen Chen
262e932d817SDavid Barksdaleconfig HID_CP2112
263e932d817SDavid Barksdale	tristate "Silicon Labs CP2112 HID USB-to-SMBus Bridge support"
264cde3076bSSébastien Szymanski	depends on USB_HID && HIDRAW && I2C && GPIOLIB
265ac34b970SBartosz Golaszewski	select GPIOLIB_IRQCHIP
266a7f7f624SMasahiro Yamada	help
267e932d817SDavid Barksdale	Support for Silicon Labs CP2112 HID USB to SMBus Master Bridge.
268e932d817SDavid Barksdale	This is a HID device driver which registers as an i2c adapter
269e932d817SDavid Barksdale	and gpiochip to expose these functions of the CP2112. The
270e932d817SDavid Barksdale	customizable USB descriptor fields are exposed as sysfs attributes.
271e932d817SDavid Barksdale
272f7c4f737SBastien Noceraconfig HID_CREATIVE_SB0540
273f7c4f737SBastien Nocera	tristate "Creative SB0540 infrared receiver"
274f7c4f737SBastien Nocera	depends on USB_HID
275f7c4f737SBastien Nocera	help
276f7c4f737SBastien Nocera	Support for Creative infrared SB0540-compatible remote controls, such
277f7c4f737SBastien Nocera	as the RM-1500 and RM-1800 remotes.
278f7c4f737SBastien Nocera
279f7c4f737SBastien Nocera	Say Y here if you want support for Creative SB0540 infrared receiver.
280f7c4f737SBastien Nocera
2810f221320SJiri Slabyconfig HID_CYPRESS
2827af05e73SJean Delvare	tristate "Cypress mouse and barcode readers"
2836a108a14SDavid Rientjes	default !EXPERT
284a7f7f624SMasahiro Yamada	help
285f0bd8e43SJiri Kosina	Support for cypress mouse and barcode readers.
2860f221320SJiri Slaby
2870f6f4319SJiri Kosinaconfig HID_DRAGONRISE
288a1043044SBorislav Petkov	tristate "DragonRise Inc. game controller"
289a7f7f624SMasahiro Yamada	help
2900f6f4319SJiri Kosina	Say Y here if you have DragonRise Inc. game controllers.
291b4a65f4eSNikolai Kondrashov	These might be branded as:
292b4a65f4eSNikolai Kondrashov	- Tesun USB-703
293b4a65f4eSNikolai Kondrashov	- Media-tech MT1504 "Rogue"
294b4a65f4eSNikolai Kondrashov	- DVTech JS19 "Gear"
295b4a65f4eSNikolai Kondrashov	- Defender Game Master
2960f6f4319SJiri Kosina
2970f6f4319SJiri Kosinaconfig DRAGONRISE_FF
298a1043044SBorislav Petkov	bool "DragonRise Inc. force feedback"
2990f6f4319SJiri Kosina	depends on HID_DRAGONRISE
3003f866fbdSRichard Walmsley	select INPUT_FF_MEMLESS
301a7f7f624SMasahiro Yamada	help
3023f866fbdSRichard Walmsley	Say Y here if you want to enable force feedback support for DragonRise Inc.
3033f866fbdSRichard Walmsley	game controllers.
3043f866fbdSRichard Walmsley
30504561c5aSIgnaz Forsterconfig HID_EMS_FF
30604561c5aSIgnaz Forster	tristate "EMS Production Inc. force feedback support"
30704561c5aSIgnaz Forster	select INPUT_FF_MEMLESS
308a7f7f624SMasahiro Yamada	help
30904561c5aSIgnaz Forster	Say Y here if you want to enable force feedback support for devices by
31004561c5aSIgnaz Forster	EMS Production Ltd.
31104561c5aSIgnaz Forster	Currently the following devices are known to be supported:
31204561c5aSIgnaz Forster	 - Trio Linker Plus II
31304561c5aSIgnaz Forster
3149a6a4193SAlexandrov Stansilavconfig HID_ELAN
3159a6a4193SAlexandrov Stansilav	tristate "ELAN USB Touchpad Support"
3169a6a4193SAlexandrov Stansilav	depends on LEDS_CLASS && USB_HID
317a7f7f624SMasahiro Yamada	help
3189a6a4193SAlexandrov Stansilav	Say Y to enable support for the USB ELAN touchpad
3199a6a4193SAlexandrov Stansilav	Currently the following devices are known to be supported:
3209a6a4193SAlexandrov Stansilav	 - HP Pavilion X2 10-p0XX.
3219a6a4193SAlexandrov Stansilav
32264b386eaSRichard Nauberconfig HID_ELECOM
3230bb7a37fSDiego Elio Pettenò	tristate "ELECOM HID devices"
324a7f7f624SMasahiro Yamada	help
3250bb7a37fSDiego Elio Pettenò	Support for ELECOM devices:
3260bb7a37fSDiego Elio Pettenò	  - BM084 Bluetooth Mouse
32779837edeSTomasz Kramkowski	  - EX-G Trackballs (M-XT3DRBK, M-XT3URBK)
32879837edeSTomasz Kramkowski	  - DEFT Trackballs (M-DT1DRBK, M-DT1URBK, M-DT2DRBK, M-DT2URBK)
32979837edeSTomasz Kramkowski	  - HUGE Trackballs (M-HT1DRBK, M-HT1URBK)
33064b386eaSRichard Nauber
331d23efc19SJiri Slabyconfig HID_ELO
332d23efc19SJiri Slaby	tristate "ELO USB 4000/4500 touchscreen"
333d23efc19SJiri Slaby	depends on USB_HID
334a7f7f624SMasahiro Yamada	help
335d23efc19SJiri Slaby	Support for the ELO USB 4000/4500 touchscreens. Note that this is for
336d23efc19SJiri Slaby	different devices than those handled by CONFIG_TOUCHSCREEN_USB_ELO.
337d23efc19SJiri Slaby
3381f243e30SJiri Slabyconfig HID_EZKEY
3397af05e73SJean Delvare	tristate "Ezkey BTC 8193 keyboard"
3406a108a14SDavid Rientjes	default !EXPERT
341a7f7f624SMasahiro Yamada	help
342f0bd8e43SJiri Kosina	Support for Ezkey BTC 8193 keyboard.
3431f243e30SJiri Slaby
3446a82582dSMichael Zaidmanconfig HID_FT260
3456a82582dSMichael Zaidman	tristate "FTDI FT260 USB HID to I2C host support"
3466a82582dSMichael Zaidman	depends on USB_HID && HIDRAW && I2C
3476a82582dSMichael Zaidman	help
3486a82582dSMichael Zaidman	  Provides I2C host adapter functionality over USB-HID through FT260
3496a82582dSMichael Zaidman	  device. The customizable USB descriptor fields are exposed as sysfs
3506a82582dSMichael Zaidman	  attributes.
3516a82582dSMichael Zaidman
3526a82582dSMichael Zaidman	  To compile this driver as a module, choose M here: the module
3536a82582dSMichael Zaidman	  will be called hid-ft260.
3546a82582dSMichael Zaidman
355931830aaSBenjamin Tissoiresconfig HID_GEMBIRD
356931830aaSBenjamin Tissoires	tristate "Gembird Joypad"
357a7f7f624SMasahiro Yamada	help
358931830aaSBenjamin Tissoires	Support for Gembird JPD-DualForce 2.
359931830aaSBenjamin Tissoires
36034fc1322SPetri Gyntherconfig HID_GFRM
36134fc1322SPetri Gynther	tristate "Google Fiber TV Box remote control support"
362a7f7f624SMasahiro Yamada	help
36334fc1322SPetri Gynther	Support for Google Fiber TV Box remote controls
36434fc1322SPetri Gynther
36577a36a3aSSamuel Čavojconfig HID_GLORIOUS
36677a36a3aSSamuel Čavoj	tristate "Glorious PC Gaming Race mice"
36777a36a3aSSamuel Čavoj	help
36877a36a3aSSamuel Čavoj	  Support for Glorious PC Gaming Race mice such as
36977a36a3aSSamuel Čavoj	  the Glorious Model O, O- and D.
37077a36a3aSSamuel Čavoj
371d946e65eSAnssi Hannulaconfig HID_HOLTEK
372ff9bf5a2STom Harwood	tristate "Holtek HID devices"
373d946e65eSAnssi Hannula	depends on USB_HID
374a7f7f624SMasahiro Yamada	help
375ff9bf5a2STom Harwood	Support for Holtek based devices:
376ff9bf5a2STom Harwood	  - Holtek On Line Grip based game controller
377ff9bf5a2STom Harwood	  - Trust GXT 18 Gaming Keyboard
37841de326eSChristian Ohm	  - Sharkoon Drakonia / Perixx MX-2000 gaming mice
379d4f51890SChristian Ohm	  - Tracer Sniper TRM-503 / NOVA Gaming Slider X200 /
380d4f51890SChristian Ohm	    Zalman ZM-GM1
3817da7cbbbSAnders F. U. Kiær	  - SHARKOON DarkGlider Gaming mouse
382f1a4914bSAnders F. U. Kiær	  - LEETGION Hellion Gaming Mouse
383d946e65eSAnssi Hannula
384d946e65eSAnssi Hannulaconfig HOLTEK_FF
385d946e65eSAnssi Hannula	bool "Holtek On Line Grip force feedback support"
386d946e65eSAnssi Hannula	depends on HID_HOLTEK
387d946e65eSAnssi Hannula	select INPUT_FF_MEMLESS
388a7f7f624SMasahiro Yamada	help
389d946e65eSAnssi Hannula	  Say Y here if you have a Holtek On Line Grip based game controller
390d946e65eSAnssi Hannula	  and want to have force feedback support for it.
391d946e65eSAnssi Hannula
39233bbe04aSStephen Boydconfig HID_VIVALDI_COMMON
39333bbe04aSStephen Boyd	tristate
39433bbe04aSStephen Boyd	help
39533bbe04aSStephen Boyd	  ChromeOS Vivaldi HID parsing support library. This is a hidden
39633bbe04aSStephen Boyd	  option so that drivers can use common code to parse the HID
39733bbe04aSStephen Boyd	  descriptors for vivaldi function row keymap.
39833bbe04aSStephen Boyd
399bc774b8cSWei-Ning Huangconfig HID_GOOGLE_HAMMER
400bc774b8cSWei-Ning Huang	tristate "Google Hammer Keyboard"
401a9d67299SStephen Boyd	select HID_VIVALDI_COMMON
402a9d67299SStephen Boyd	select INPUT_VIVALDIFMAP
40347f11e0bSEnric Balletbo i Serra	depends on USB_HID && LEDS_CLASS && CROS_EC
404a7f7f624SMasahiro Yamada	help
405bc774b8cSWei-Ning Huang	Say Y here if you have a Google Hammer device.
406bc774b8cSWei-Ning Huang
40714c9c014SSean O'Brienconfig HID_VIVALDI
40814c9c014SSean O'Brien	tristate "Vivaldi Keyboard"
40933bbe04aSStephen Boyd	select HID_VIVALDI_COMMON
41045ceaf14SStephen Boyd	select INPUT_VIVALDIFMAP
41114c9c014SSean O'Brien	help
41214c9c014SSean O'Brien	  Say Y here if you want to enable support for Vivaldi keyboards.
41314c9c014SSean O'Brien
41414c9c014SSean O'Brien	  Vivaldi keyboards use a vendor-specific (Google) HID usage to report
41514c9c014SSean O'Brien	  how the keys in the top row are physically ordered.
41614c9c014SSean O'Brien
417f471d948SJanne Kanniainenconfig HID_GT683R
418f471d948SJanne Kanniainen	tristate "MSI GT68xR LED support"
419f471d948SJanne Kanniainen	depends on LEDS_CLASS && USB_HID
420a7f7f624SMasahiro Yamada	help
421f471d948SJanne Kanniainen	Say Y here if you want to enable support for the three MSI GT68xR LEDs
422f471d948SJanne Kanniainen
423f471d948SJanne Kanniainen	This driver support following modes:
424f471d948SJanne Kanniainen	  - Normal: LEDs are fully on when enabled
425f471d948SJanne Kanniainen	  - Audio:  LEDs brightness depends on sound level
426f471d948SJanne Kanniainen	  - Breathing: LEDs brightness varies at human breathing rate
427f471d948SJanne Kanniainen
428f471d948SJanne Kanniainen	Currently the following devices are know to be supported:
429f471d948SJanne Kanniainen	  - MSI GT683R
430f471d948SJanne Kanniainen
431177900e8SJiri Kosinaconfig HID_KEYTOUCH
4323d366e28SStephen Boyd	tristate "Keytouch HID devices"
433a7f7f624SMasahiro Yamada	help
434177900e8SJiri Kosina	Support for Keytouch HID devices not fully compliant with
435177900e8SJiri Kosina	the specification. Currently supported:
436177900e8SJiri Kosina		- Keytouch IEC 60945
437177900e8SJiri Kosina
43879422741SJiri Kosinaconfig HID_KYE
43922ca20b2SNikolai Kondrashov	tristate "KYE/Genius devices"
440a7f7f624SMasahiro Yamada	help
44122ca20b2SNikolai Kondrashov	Support for KYE/Genius devices not fully compliant with HID standard:
44222ca20b2SNikolai Kondrashov	- Ergo Mouse
44322ca20b2SNikolai Kondrashov	- EasyPen i405X tablet
44422ca20b2SNikolai Kondrashov	- MousePen i608X tablet
44522ca20b2SNikolai Kondrashov	- EasyPen M610X tablet
44679422741SJiri Kosina
447f8a489ccSNikolai Kondrashovconfig HID_UCLOGIC
448f36ee074SJiri Kosina	tristate "UC-Logic"
449bbb2d8a8SBenjamin Tissoires	depends on USB_HID
450a7f7f624SMasahiro Yamada	help
45108177f40SNikolai Kondrashov	Support for UC-Logic and Huion tablets.
452f8a489ccSNikolai Kondrashov
45372a46344SNikolai Kondrashovconfig HID_WALTOP
45472a46344SNikolai Kondrashov	tristate "Waltop"
455a7f7f624SMasahiro Yamada	help
45672a46344SNikolai Kondrashov	Support for Waltop tablets.
45772a46344SNikolai Kondrashov
4587c2af0a1SNikolai Kondrashovconfig HID_VIEWSONIC
4597c2af0a1SNikolai Kondrashov	tristate "ViewSonic/Signotec"
4607c2af0a1SNikolai Kondrashov	help
4617c2af0a1SNikolai Kondrashov	  Support for ViewSonic/Signotec PD1011 signature pad.
4627c2af0a1SNikolai Kondrashov
4632c5e8e61SMarcus Folkessonconfig HID_VRC2
4642c5e8e61SMarcus Folkesson	tristate "VRC-2 Car Controller"
4652c5e8e61SMarcus Folkesson	depends on HID
4662c5e8e61SMarcus Folkesson	help
4672c5e8e61SMarcus Folkesson        Support for VRC-2 which is a 2-axis controller often used in
4682c5e8e61SMarcus Folkesson        car simulators.
4692c5e8e61SMarcus Folkesson
4702c5e8e61SMarcus Folkesson        To compile this driver as a module, choose M here: the
4712c5e8e61SMarcus Folkesson        module will be called hid-vrc2.
4722c5e8e61SMarcus Folkesson
47395157723SIlya Skriblovskyconfig HID_XIAOMI
47495157723SIlya Skriblovsky	tristate "Xiaomi"
47595157723SIlya Skriblovsky	help
47695157723SIlya Skriblovsky	  Adds support for side buttons of Xiaomi Mi Dual Mode Wireless
47795157723SIlya Skriblovsky	  Mouse Silent Edition.
47895157723SIlya Skriblovsky
479949f8fefSJiri Slabyconfig HID_GYRATION
480a1043044SBorislav Petkov	tristate "Gyration remote control"
481a7f7f624SMasahiro Yamada	help
482f0bd8e43SJiri Kosina	Support for Gyration remote control.
483949f8fefSJiri Slaby
4844ddfe028SBastien Noceraconfig HID_ICADE
4854ddfe028SBastien Nocera	tristate "ION iCade arcade controller"
486a7f7f624SMasahiro Yamada	help
4874ddfe028SBastien Nocera	Support for the ION iCade arcade controller to work as a joystick.
4884ddfe028SBastien Nocera
4894ddfe028SBastien Nocera	To compile this driver as a module, choose M here: the
4904ddfe028SBastien Nocera	module will be called hid-icade.
4914ddfe028SBastien Nocera
492f1918be1SHans de Goedeconfig HID_ITE
493f1918be1SHans de Goede	tristate "ITE devices"
494f1918be1SHans de Goede	default !EXPERT
495a7f7f624SMasahiro Yamada	help
496f1918be1SHans de Goede	Support for ITE devices not fully compliant with HID standard.
497f1918be1SHans de Goede
49819ca2827SNiels Skou Olsenconfig HID_JABRA
49919ca2827SNiels Skou Olsen	tristate "Jabra USB HID Driver"
500a7f7f624SMasahiro Yamada	help
50119ca2827SNiels Skou Olsen	Support for Jabra USB HID devices.
50219ca2827SNiels Skou Olsen
50319ca2827SNiels Skou Olsen	Prevents mapping of vendor defined HID usages to input events. Without
50419ca2827SNiels Skou Olsen	this driver HID	reports from Jabra devices may incorrectly be seen as
50519ca2827SNiels Skou Olsen	mouse button events.
50619ca2827SNiels Skou Olsen	Say M here if you may ever plug in a Jabra USB device.
50719ca2827SNiels Skou Olsen
508711a680eSBruno Premontconfig HID_TWINHAN
509a1043044SBorislav Petkov	tristate "Twinhan IR remote control"
510a7f7f624SMasahiro Yamada	help
511711a680eSBruno Premont	Support for Twinhan IR remote control.
512711a680eSBruno Premont
513fdf93aa3SJiri Kosinaconfig HID_KENSINGTON
5147af05e73SJean Delvare	tristate "Kensington Slimblade Trackball"
5156a108a14SDavid Rientjes	default !EXPERT
516a7f7f624SMasahiro Yamada	help
517fdf93aa3SJiri Kosina	Support for Kensington Slimblade Trackball.
518fdf93aa3SJiri Kosina
51975b07022SChris Schlundconfig HID_LCPOWER
52075b07022SChris Schlund	tristate "LC-Power"
521a7f7f624SMasahiro Yamada	help
52275b07022SChris Schlund	Support for LC-Power RC1000MCE RF remote control.
52375b07022SChris Schlund
5246c7ad07eSHeiner Kallweitconfig HID_LED
52526423b84SJiri Kosina	tristate "Simple RGB LED support"
5266c7ad07eSHeiner Kallweit	depends on LEDS_CLASS
527a7f7f624SMasahiro Yamada	help
528007414e8SHeiner Kallweit	Support for simple RGB LED devices. Currently supported are:
529007414e8SHeiner Kallweit	- Riso Kagaku Webmail Notifier
530007414e8SHeiner Kallweit	- Dream Cheeky Webmail Notifier and Friends Alert
531007414e8SHeiner Kallweit	- ThingM blink(1)
532de908650SHeiner Kallweit	- Delcom Visual Signal Indicator Generation 2
5339d1e048cSHeiner Kallweit	- Greynut Luxafor
5346c7ad07eSHeiner Kallweit
5356c7ad07eSHeiner Kallweit	To compile this driver as a module, choose M here: the
5366c7ad07eSHeiner Kallweit	module will be called hid-led.
5376c7ad07eSHeiner Kallweit
53894723bfaSJamie Lentinconfig HID_LENOVO
53994723bfaSJamie Lentin	tristate "Lenovo / Thinkpad devices"
54025976a79SBryan Wu	select NEW_LEDS
541c1dcad2dSBernhard Seibold	select LEDS_CLASS
542a7f7f624SMasahiro Yamada	help
543a230cd52Spgzh	Support for IBM/Lenovo devices that are not fully compliant with HID standard.
544c1dcad2dSBernhard Seibold
545a230cd52Spgzh	Say Y if you want support for horizontal scrolling of the IBM/Lenovo
546a230cd52Spgzh	Scrollpoint mice or the non-compliant features of the Lenovo Thinkpad
547a230cd52Spgzh	standalone keyboards, e.g:
54894723bfaSJamie Lentin	- ThinkPad USB Keyboard with TrackPoint (supports extra LEDs and trackpoint
54994723bfaSJamie Lentin	  configuration)
550f3d4ff0eSJamie Lentin	- ThinkPad Compact Bluetooth Keyboard with TrackPoint (supports Fn keys)
551f3d4ff0eSJamie Lentin	- ThinkPad Compact USB Keyboard with TrackPoint (supports Fn keys)
552c1dcad2dSBernhard Seibold
55333a5c279SHans de Goedeconfig HID_LETSKETCH
55433a5c279SHans de Goede	tristate "Letsketch WP9620N tablets"
55533a5c279SHans de Goede	depends on USB_HID
55633a5c279SHans de Goede	help
55733a5c279SHans de Goede	  Driver for the LetSketch / VSON WP9620N drawing tablet. This
55833a5c279SHans de Goede	  drawing tablet is also sold under other brand names such as Case U,
55933a5c279SHans de Goede	  presumably this driver will work for all of them. But it has only been
56033a5c279SHans de Goede	  tested with a LetSketch WP9620N model.
56133a5c279SHans de Goede
56233a5c279SHans de Goede	  These tablets also work without a special HID driver, but then only
56333a5c279SHans de Goede	  part of the active area works and both the pad and stylus buttons are
56433a5c279SHans de Goede	  hardwired to special key-combos. E.g. the 2 stylus buttons send right
56533a5c279SHans de Goede	  mouse clicks / resp. "e" key presses.
56633a5c279SHans de Goede
5675f22a799SJiri Slabyconfig HID_LOGITECH
5687af05e73SJean Delvare	tristate "Logitech devices"
569f237d902SGreg Kroah-Hartman	depends on USB_HID
570bdd08fffSHans de Goede	depends on LEDS_CLASS
5716a108a14SDavid Rientjes	default !EXPERT
572a7f7f624SMasahiro Yamada	help
573f0bd8e43SJiri Kosina	Support for Logitech devices that are not fully compliant with HID standard.
5745f22a799SJiri Slaby
575534a7b8eSNestor Lopez Casadoconfig HID_LOGITECH_DJ
576c08ce255SFilipe Laíns	tristate "Logitech receivers full support"
577c08f38e9SBenjamin Tissoires	depends on USB_HID
578dcdc50e7SOlivier Gay	depends on HIDRAW
579534a7b8eSNestor Lopez Casado	depends on HID_LOGITECH
580ab94e562SBenjamin Tissoires	select HID_LOGITECH_HIDPP
581a7f7f624SMasahiro Yamada	help
582c08ce255SFilipe Laíns	Say Y if you want support for Logitech receivers and devices.
583c08ce255SFilipe Laíns	Logitech receivers are capable of pairing multiple Logitech compliant
5840944e964SKonstantin Khlebnikov	devices to the same receiver. Without this driver it will be handled by
585d82603c6SJorrit Schippers	generic USB_HID driver and all incoming events will be multiplexed
5860944e964SKonstantin Khlebnikov	into a single mouse and a single keyboard device.
587534a7b8eSNestor Lopez Casado
5882f31c525SBenjamin Tissoiresconfig HID_LOGITECH_HIDPP
5892f31c525SBenjamin Tissoires	tristate "Logitech HID++ devices support"
5902f31c525SBenjamin Tissoires	depends on HID_LOGITECH
591351744aaSArnd Bergmann	select POWER_SUPPLY
592a7f7f624SMasahiro Yamada	help
5932f31c525SBenjamin Tissoires	Support for Logitech devices relying on the HID++ Logitech specification
5942f31c525SBenjamin Tissoires
5952f31c525SBenjamin Tissoires	Say Y if you want support for Logitech devices relying on the HID++
5962f31c525SBenjamin Tissoires	specification. Such devices are the various Logitech Touchpads (T650,
5972f31c525SBenjamin Tissoires	T651, TK820), some mice (Zone Touch mouse), or even keyboards (Solar
59879bc33bdSGeert Uytterhoeven	Keyboard).
5992f31c525SBenjamin Tissoires
600606bd0a8SJiri Slabyconfig LOGITECH_FF
6010f6f4319SJiri Kosina	bool "Logitech force feedback support"
602606bd0a8SJiri Slaby	depends on HID_LOGITECH
603606bd0a8SJiri Slaby	select INPUT_FF_MEMLESS
604606bd0a8SJiri Slaby	help
605606bd0a8SJiri Slaby	  Say Y here if you have one of these devices:
606606bd0a8SJiri Slaby	  - Logitech WingMan Cordless RumblePad
607606bd0a8SJiri Slaby	  - Logitech WingMan Cordless RumblePad 2
608606bd0a8SJiri Slaby	  - Logitech WingMan Force 3D
609606bd0a8SJiri Slaby
610606bd0a8SJiri Slaby	  and if you want to enable force feedback for them.
611606bd0a8SJiri Slaby	  Note: if you say N here, this device will still be supported, but without
612606bd0a8SJiri Slaby	  force feedback.
613606bd0a8SJiri Slaby
614606bd0a8SJiri Slabyconfig LOGIRUMBLEPAD2_FF
615bd04363dSElias Vanderstuyft	bool "Logitech force feedback support (variant 2)"
616606bd0a8SJiri Slaby	depends on HID_LOGITECH
617606bd0a8SJiri Slaby	select INPUT_FF_MEMLESS
618606bd0a8SJiri Slaby	help
619bd04363dSElias Vanderstuyft	  Say Y here if you want to enable force feedback support for:
620bd04363dSElias Vanderstuyft	  - Logitech RumblePad
621bd04363dSElias Vanderstuyft	  - Logitech Rumblepad 2
622bd04363dSElias Vanderstuyft	  - Logitech Formula Vibration Feedback Wheel
623606bd0a8SJiri Slaby
62474f292caSGary Steinconfig LOGIG940_FF
62574f292caSGary Stein	bool "Logitech Flight System G940 force feedback support"
62674f292caSGary Stein	depends on HID_LOGITECH
62774f292caSGary Stein	select INPUT_FF_MEMLESS
62874f292caSGary Stein	help
62974f292caSGary Stein	  Say Y here if you want to enable force feedback support for Logitech
63074f292caSGary Stein	  Flight System G940 devices.
63174f292caSGary Stein
632a7ac90f1SMichal Malýconfig LOGIWHEELS_FF
633a7ac90f1SMichal Malý	bool "Logitech wheels configuration and force feedback support"
63432c88cbcSSimon Wood	depends on HID_LOGITECH
63532c88cbcSSimon Wood	select INPUT_FF_MEMLESS
63670c2cabdSJiri Kosina	default LOGITECH_FF
63732c88cbcSSimon Wood	help
638f777a3a7SSimon Wood	  Say Y here if you want to enable force feedback and range setting(*)
639a7ac90f1SMichal Malý	  support for following Logitech wheels:
640f777a3a7SSimon Wood	  - Logitech G25 (*)
641f777a3a7SSimon Wood	  - Logitech G27 (*)
642f777a3a7SSimon Wood	  - Logitech G29 (*)
643a7ac90f1SMichal Malý	  - Logitech Driving Force
644f777a3a7SSimon Wood	  - Logitech Driving Force Pro (*)
645f777a3a7SSimon Wood	  - Logitech Driving Force GT (*)
646f777a3a7SSimon Wood	  - Logitech Driving Force EX/RX
647f777a3a7SSimon Wood	  - Logitech Driving Force Wireless
648f777a3a7SSimon Wood	  - Logitech Speed Force Wireless
649f777a3a7SSimon Wood	  - Logitech MOMO Force
650f777a3a7SSimon Wood	  - Logitech MOMO Racing Force
651f777a3a7SSimon Wood	  - Logitech Formula Force GP
652f777a3a7SSimon Wood	  - Logitech Formula Force EX/RX
653f777a3a7SSimon Wood	  - Logitech Wingman Formula Force GP
65432c88cbcSSimon Wood
655128537ceSMichael Pooleconfig HID_MAGICMOUSE
656cdfee4ffSDavid King	tristate "Apple Magic Mouse/Trackpad multi-touch support"
657a7f7f624SMasahiro Yamada	help
658cdfee4ffSDavid King	Support for the Apple Magic Mouse/Trackpad multi-touch.
659128537ceSMichael Poole
660128537ceSMichael Poole	Say Y here if you want support for the multi-touch features of the
661cdfee4ffSDavid King	Apple Wireless "Magic" Mouse and the Apple Wireless "Magic" Trackpad.
662128537ceSMichael Poole
663af8cd70aSWilliam Whistlerconfig HID_MALTRON
664af8cd70aSWilliam Whistler	tristate "Maltron L90 keyboard"
665a7f7f624SMasahiro Yamada	help
666af8cd70aSWilliam Whistler	Adds support for the volume up, volume down, mute, and play/pause buttons
667af8cd70aSWilliam Whistler	of the Maltron L90 keyboard.
668af8cd70aSWilliam Whistler
669f8690450SMarcel Haslerconfig HID_MAYFLASH
670f8690450SMarcel Hasler	tristate "Mayflash game controller adapter force feedback"
671f8690450SMarcel Hasler	select INPUT_FF_MEMLESS
672a7f7f624SMasahiro Yamada	help
673f8690450SMarcel Hasler	Say Y here if you have HJZ Mayflash PS3 game controller adapters
674f8690450SMarcel Hasler	and want to enable force feedback support.
675f8690450SMarcel Hasler
67606be0d64Sfrank zagoconfig HID_MEGAWORLD_FF
67706be0d64Sfrank zago	tristate "Mega World based game controller force feedback support"
67806be0d64Sfrank zago	depends on USB_HID
67906be0d64Sfrank zago	select INPUT_FF_MEMLESS
68006be0d64Sfrank zago	help
68106be0d64Sfrank zago	Say Y here if you have a Mega World based game controller and want
68206be0d64Sfrank zago	to have force feedback support for it.
68306be0d64Sfrank zago
68485455dd9SRobert Munteanuconfig HID_REDRAGON
68585455dd9SRobert Munteanu	tristate "Redragon keyboards"
68685455dd9SRobert Munteanu	default !EXPERT
687a7f7f624SMasahiro Yamada	help
68885455dd9SRobert Munteanu    Support for Redragon keyboards that need fix-ups to work properly.
68985455dd9SRobert Munteanu
69078a849a6SJiri Slabyconfig HID_MICROSOFT
6917af05e73SJean Delvare	tristate "Microsoft non-fully HID-compliant devices"
6926a108a14SDavid Rientjes	default !EXPERT
693830e82aaSJiri Kosina	select INPUT_FF_MEMLESS
694a7f7f624SMasahiro Yamada	help
695f0bd8e43SJiri Kosina	Support for Microsoft devices that are not fully compliant with HID standard.
69678a849a6SJiri Slaby
6973b8006e5SJiri Slabyconfig HID_MONTEREY
6987af05e73SJean Delvare	tristate "Monterey Genius KB29E keyboard"
6996a108a14SDavid Rientjes	default !EXPERT
700a7f7f624SMasahiro Yamada	help
7013b8006e5SJiri Slaby	Support for Monterey Genius KB29E.
7023b8006e5SJiri Slaby
7035519cab4SBenjamin Tissoiresconfig HID_MULTITOUCH
7045519cab4SBenjamin Tissoires	tristate "HID Multitouch panels"
705a7f7f624SMasahiro Yamada	help
7065519cab4SBenjamin Tissoires	  Generic support for HID multitouch panels.
7075519cab4SBenjamin Tissoires
7085519cab4SBenjamin Tissoires	  Say Y here if you have one of the following devices:
709f786bba4SBenjamin Tissoires	  - 3M PCT touch screens
710e6aac342SBenjamin Tissoires	  - ActionStar dual touch panels
711b1057124SBenjamin Tissoires	  - Atmel panels
71222408283SBenjamin Tissoires	  - Cando dual touch panels
713942fd422SAustin Zhang	  - Chunghwa panels
714070f63b4SYang Bo	  - CJTouch panels
71579603dc9SBenjamin Tissoires	  - CVTouch panels
7162d93666eSBenjamin Tissoires	  - Cypress TrueTouch panels
717e02aea91SJan Matějka	  - Elan Microelectronics touch panels
718c04abeefSBenjamin Tissoires	  - Elo TouchSystems IntelliTouch Plus panels
71922408283SBenjamin Tissoires	  - GeneralTouch 'Sensing Win7-TwoFinger' panels
720ee0fbd14SBenjamin Tissoires	  - GoodTouch panels
7212d93666eSBenjamin Tissoires	  - Hanvon dual touch panels
72222408283SBenjamin Tissoires	  - Ilitek dual touch panels
7234dfcced8SBenjamin Tissoires	  - IrTouch Infrared USB panels
724c50bb1a4SJeff Brown	  - LG Display panels (Dell ST2220Tc)
725df167c4aSBenjamin Tissoires	  - Lumio CrystalTouch panels
7264a6ee685SBenjamin Tissoires	  - MosArt dual-touch panels
7272258e863SDenis Kovalev	  - Panasonic multitouch panels
7286ab3a9a6SJohn Sung	  - PenMount dual touch panels
729847672cdSBenjamin Tissoires	  - Perixx Peripad 701 touchpad
730b7ea95ffSAaron Tian	  - PixArt optical touch screen
7312d93666eSBenjamin Tissoires	  - Pixcir dual touch panels
7325e7ea11fSBenjamin Tissoires	  - Quanta panels
73322408283SBenjamin Tissoires	  - eGalax dual-touch panels, including the Joojoo and Wetab tablets
734a6802e00SForest Bond	  - SiS multitouch panels
735043b403aSBenjamin Tissoires	  - Stantum multitouch panels
7365e74e56dSBenjamin Tissoires	  - Touch International Panels
737617b64f9SBenjamin Tissoires	  - Unitec Panels
738bf9d121eSKaiChung Cheng	  - Wistron optical touch panels
739bc8a2a9bSice chien	  - XAT optical touch panels
74011576c61SMasatoshi Hoshikawa	  - Xiroku optical touch panels
741e9a09aedSBenjamin Tissoires	  - Zytronic touch panels
7425519cab4SBenjamin Tissoires
7432d93666eSBenjamin Tissoires	  If unsure, say N.
7442d93666eSBenjamin Tissoires
7452d93666eSBenjamin Tissoires	  To compile this driver as a module, choose M here: the
7462d93666eSBenjamin Tissoires	  module will be called hid-multitouch.
7472d93666eSBenjamin Tissoires
7482af16c1fSDaniel J. Ogorchockconfig HID_NINTENDO
7492af16c1fSDaniel J. Ogorchock	tristate "Nintendo Joy-Con and Pro Controller support"
750c5e62676SDaniel J. Ogorchock	depends on NEW_LEDS
751c5e62676SDaniel J. Ogorchock	depends on LEDS_CLASS
75208ebba5cSDaniel J. Ogorchock	select POWER_SUPPLY
7532af16c1fSDaniel J. Ogorchock	help
7542af16c1fSDaniel J. Ogorchock	Adds support for the Nintendo Switch Joy-Cons and Pro Controller.
7552af16c1fSDaniel J. Ogorchock	All controllers support bluetooth, and the Pro Controller also supports
7562af16c1fSDaniel J. Ogorchock	its USB mode.
7572af16c1fSDaniel J. Ogorchock
7582af16c1fSDaniel J. Ogorchock	To compile this driver as a module, choose M here: the
7592af16c1fSDaniel J. Ogorchock	module will be called hid-nintendo.
7602af16c1fSDaniel J. Ogorchock
761c4eae84fSDaniel J. Ogorchockconfig NINTENDO_FF
762c4eae84fSDaniel J. Ogorchock	bool "Nintendo Switch controller force feedback support"
763c4eae84fSDaniel J. Ogorchock	depends on HID_NINTENDO
764c4eae84fSDaniel J. Ogorchock	select INPUT_FF_MEMLESS
765c4eae84fSDaniel J. Ogorchock	help
766c4eae84fSDaniel J. Ogorchock	Say Y here if you have a Nintendo Switch controller and want to enable
767c4eae84fSDaniel J. Ogorchock	force feedback support for it. This works for both joy-cons and the pro
768c4eae84fSDaniel J. Ogorchock	controller. For the pro controller, both rumble motors can be controlled
769c4eae84fSDaniel J. Ogorchock	individually.
770c4eae84fSDaniel J. Ogorchock
77107e88a35SJonathan Tomerconfig HID_NTI
77207e88a35SJonathan Tomer	tristate "NTI keyboard adapters"
773a7f7f624SMasahiro Yamada	help
77407e88a35SJonathan Tomer	Support for the "extra" Sun keyboard keys on keyboards attached
77507e88a35SJonathan Tomer	through Network Technologies USB-SUN keyboard adapters.
77607e88a35SJonathan Tomer
77794011f93SRafi Rubinconfig HID_NTRIG
778a1043044SBorislav Petkov	tristate "N-Trig touch screen"
77994011f93SRafi Rubin	depends on USB_HID
780a7f7f624SMasahiro Yamada	help
78194011f93SRafi Rubin	Support for N-Trig touch screen.
78294011f93SRafi Rubin
783cd9ec30dSJohnathon Harrisconfig HID_ORTEK
784d586dca0SJiri Kosina	tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad"
785a7f7f624SMasahiro Yamada	help
786d586dca0SJiri Kosina	There are certain devices which have LogicalMaximum wrong in the keyboard
787d586dca0SJiri Kosina	usage page of their report descriptor. The most prevailing ones so far
788d586dca0SJiri Kosina	are manufactured by Ortek, thus the name of the driver. Currently
789d586dca0SJiri Kosina	supported devices by this driver are
790d586dca0SJiri Kosina
791d586dca0SJiri Kosina	   - Ortek PKB-1700
792d586dca0SJiri Kosina	   - Ortek WKB-2000
793d586dca0SJiri Kosina	   - Skycable wireless presenter
794cd9ec30dSJohnathon Harris
7955f022298SJiri Slabyconfig HID_PANTHERLORD
796a1043044SBorislav Petkov	tristate "Pantherlord/GreenAsia game controller"
797a7f7f624SMasahiro Yamada	help
7980f6f4319SJiri Kosina	  Say Y here if you have a PantherLord/GreenAsia based game controller
7990f6f4319SJiri Kosina	  or adapter.
8000f6f4319SJiri Kosina
8015f022298SJiri Slabyconfig PANTHERLORD_FF
8025f022298SJiri Slaby	bool "Pantherlord force feedback support"
8035f022298SJiri Slaby	depends on HID_PANTHERLORD
8045f022298SJiri Slaby	select INPUT_FF_MEMLESS
805a7f7f624SMasahiro Yamada	help
8065f022298SJiri Slaby	  Say Y here if you have a PantherLord/GreenAsia based game controller
8075f022298SJiri Slaby	  or adapter and want to enable force feedback support for it.
8085f022298SJiri Slaby
809ffe51d0dSChristian Gmeinerconfig HID_PENMOUNT
810ffe51d0dSChristian Gmeiner	tristate "Penmount touch device"
811ffe51d0dSChristian Gmeiner	depends on USB_HID
812a7f7f624SMasahiro Yamada	help
813ffe51d0dSChristian Gmeiner	  This selects a driver for the PenMount 6000 touch controller.
814ffe51d0dSChristian Gmeiner
815ffe51d0dSChristian Gmeiner	  The driver works around a problem in the report descript allowing
816ffe51d0dSChristian Gmeiner	  the userspace to touch events instead of mouse events.
817ffe51d0dSChristian Gmeiner
818ffe51d0dSChristian Gmeiner	  Say Y here if you have a Penmount based touch controller.
819ffe51d0dSChristian Gmeiner
8201e762532SJiri Slabyconfig HID_PETALYNX
821a1043044SBorislav Petkov	tristate "Petalynx Maxter remote control"
822a7f7f624SMasahiro Yamada	help
823f0bd8e43SJiri Kosina	Support for Petalynx Maxter remote control.
8241e762532SJiri Slaby
825236db47cSBruno Prémontconfig HID_PICOLCD
826236db47cSBruno Prémont	tristate "PicoLCD (graphic version)"
827a7f7f624SMasahiro Yamada	help
828236db47cSBruno Prémont	  This provides support for Minibox PicoLCD devices, currently
829236db47cSBruno Prémont	  only the graphical ones are supported.
830236db47cSBruno Prémont
831236db47cSBruno Prémont	  This includes support for the following device features:
832236db47cSBruno Prémont	  - Keypad
833236db47cSBruno Prémont	  - Switching between Firmware and Flash mode
8349bbf2b98SBruno Prémont	  - EEProm / Flash access     (via debugfs)
8355435f281SBruno Prémont	  Features selectively enabled:
8365435f281SBruno Prémont	  - Framebuffer for monochrome 256x64 display
8375435f281SBruno Prémont	  - Backlight control
8385435f281SBruno Prémont	  - Contrast control
8395435f281SBruno Prémont	  - General purpose outputs
840b8c21cf6SBruno Prémont	  Features that are not (yet) supported:
841236db47cSBruno Prémont	  - IR
842236db47cSBruno Prémont
8435435f281SBruno Prémontconfig HID_PICOLCD_FB
8446a108a14SDavid Rientjes	bool "Framebuffer support" if EXPERT
8456a108a14SDavid Rientjes	default !EXPERT
8465435f281SBruno Prémont	depends on HID_PICOLCD
8475435f281SBruno Prémont	depends on HID_PICOLCD=FB || FB=y
8485435f281SBruno Prémont	select FB_DEFERRED_IO
8495435f281SBruno Prémont	select FB_SYS_FILLRECT
8505435f281SBruno Prémont	select FB_SYS_COPYAREA
8515435f281SBruno Prémont	select FB_SYS_IMAGEBLIT
8525435f281SBruno Prémont	select FB_SYS_FOPS
853a7f7f624SMasahiro Yamada	help
8545435f281SBruno Prémont	  Provide access to PicoLCD's 256x64 monochrome display via a
8556b2aac42SMasanari Iida	  framebuffer device.
8565435f281SBruno Prémont
8575435f281SBruno Prémontconfig HID_PICOLCD_BACKLIGHT
8586a108a14SDavid Rientjes	bool "Backlight control" if EXPERT
8596a108a14SDavid Rientjes	default !EXPERT
8605435f281SBruno Prémont	depends on HID_PICOLCD
8615435f281SBruno Prémont	depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y
862a7f7f624SMasahiro Yamada	help
8635435f281SBruno Prémont	  Provide access to PicoLCD's backlight control via backlight
8645435f281SBruno Prémont	  class.
8655435f281SBruno Prémont
8665435f281SBruno Prémontconfig HID_PICOLCD_LCD
8676a108a14SDavid Rientjes	bool "Contrast control" if EXPERT
8686a108a14SDavid Rientjes	default !EXPERT
8695435f281SBruno Prémont	depends on HID_PICOLCD
8705435f281SBruno Prémont	depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y
871a7f7f624SMasahiro Yamada	help
8725435f281SBruno Prémont	  Provide access to PicoLCD's LCD contrast via lcd class.
8735435f281SBruno Prémont
8745435f281SBruno Prémontconfig HID_PICOLCD_LEDS
8756a108a14SDavid Rientjes	bool "GPO via leds class" if EXPERT
8766a108a14SDavid Rientjes	default !EXPERT
8775435f281SBruno Prémont	depends on HID_PICOLCD
8785435f281SBruno Prémont	depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y
879a7f7f624SMasahiro Yamada	help
8805435f281SBruno Prémont	  Provide access to PicoLCD's GPO pins via leds class.
8815435f281SBruno Prémont
882fabdbf2fSBruno Prémontconfig HID_PICOLCD_CIR
883fabdbf2fSBruno Prémont	bool "CIR via RC class" if EXPERT
884fabdbf2fSBruno Prémont	default !EXPERT
885fabdbf2fSBruno Prémont	depends on HID_PICOLCD
886fabdbf2fSBruno Prémont	depends on HID_PICOLCD=RC_CORE || RC_CORE=y
887a7f7f624SMasahiro Yamada	help
888fabdbf2fSBruno Prémont	  Provide access to PicoLCD's CIR interface via remote control (LIRC).
889fabdbf2fSBruno Prémont
8901a3f83f6SJD Coleconfig HID_PLANTRONICS
8911a3f83f6SJD Cole	tristate "Plantronics USB HID Driver"
892a7f7f624SMasahiro Yamada	help
89381bb773fSTerry Junge	  Provides HID support for Plantronics USB audio devices.
89481bb773fSTerry Junge	  Correctly maps vendor unique volume up/down HID usages to
89581bb773fSTerry Junge	  KEY_VOLUMEUP and KEY_VOLUMEDOWN events and prevents core mapping
89681bb773fSTerry Junge	  of other vendor unique HID usages to random mouse events.
89781bb773fSTerry Junge
89881bb773fSTerry Junge	  Say M here if you may ever plug in a Plantronics USB audio device.
8991a3f83f6SJD Cole
900bc2e15a9SRoderick Colenbranderconfig HID_PLAYSTATION
901bc2e15a9SRoderick Colenbrander	tristate "PlayStation HID Driver"
902d7f1f9feSJiri Kosina	depends on LEDS_CLASS_MULTICOLOR
903799b2b53SRoderick Colenbrander	select CRC32
904d30bca44SRoderick Colenbrander	select POWER_SUPPLY
905bc2e15a9SRoderick Colenbrander	help
906bc2e15a9SRoderick Colenbrander	  Provides support for Sony PS5 controllers including support for
907bc2e15a9SRoderick Colenbrander	  its special functionalities e.g. touchpad, lights and motion
908bc2e15a9SRoderick Colenbrander	  sensors.
909bc2e15a9SRoderick Colenbrander
91051151098SRoderick Colenbranderconfig PLAYSTATION_FF
91151151098SRoderick Colenbrander	bool "PlayStation force feedback support"
91251151098SRoderick Colenbrander	depends on HID_PLAYSTATION
91351151098SRoderick Colenbrander	select INPUT_FF_MEMLESS
91451151098SRoderick Colenbrander	help
91551151098SRoderick Colenbrander	  Say Y here if you would like to enable force feedback support for
91651151098SRoderick Colenbrander	  PlayStation game controllers.
91751151098SRoderick Colenbrander
918acc3e346SMarcus Folkessonconfig HID_PXRC
919acc3e346SMarcus Folkesson       tristate "PhoenixRC HID Flight Controller"
920acc3e346SMarcus Folkesson       depends on HID
921acc3e346SMarcus Folkesson       help
922acc3e346SMarcus Folkesson       Support for PhoenixRC HID Flight Controller, a 8-axis flight controller.
923acc3e346SMarcus Folkesson
924acc3e346SMarcus Folkesson       To compile this driver as a module, choose M here: the
925acc3e346SMarcus Folkesson       module will be called hid-pxrc.
926acc3e346SMarcus Folkesson
927047b6188SJelle van der Waaconfig HID_RAZER
928047b6188SJelle van der Waa	tristate "Razer non-fully HID-compliant devices"
929047b6188SJelle van der Waa	help
930047b6188SJelle van der Waa	Support for Razer devices that are not fully compliant with the
931047b6188SJelle van der Waa	HID standard.
932047b6188SJelle van der Waa
933f6a04605STerry Lambertconfig HID_PRIMAX
934dfe9a312SJiri Kosina	tristate "Primax non-fully HID-compliant devices"
935a7f7f624SMasahiro Yamada	help
936f6a04605STerry Lambert	Support for Primax devices that are not fully compliant with the
937f6a04605STerry Lambert	HID standard.
938f6a04605STerry Lambert
93913b2e1baSBastien Noceraconfig HID_RETRODE
940fc5431dcSRandy Dunlap	tristate "Retrode 2 USB adapter for vintage video games"
94113b2e1baSBastien Nocera	depends on USB_HID
942a7f7f624SMasahiro Yamada	help
94313b2e1baSBastien Nocera	Support for
94413b2e1baSBastien Nocera	  * Retrode 2 cartridge and controller adapter
94513b2e1baSBastien Nocera
946206f5f2fSStefan Achatzconfig HID_ROCCAT
947bd393dbdSStefan Achatz	tristate "Roccat device support"
948206f5f2fSStefan Achatz	depends on USB_HID
949a7f7f624SMasahiro Yamada	help
950bd393dbdSStefan Achatz	Support for Roccat devices.
951bd393dbdSStefan Achatz	Say Y here if you have a Roccat mouse or keyboard and want
952bd393dbdSStefan Achatz	support for its special functionalities.
953cb7cf3daSStefan Achatz
9541e93674aSAndreas Hübnerconfig HID_SAITEK
9557bb9d643SVille Aakko	tristate "Saitek (Mad Catz) non-fully HID-compliant devices"
956a7f7f624SMasahiro Yamada	help
9571e93674aSAndreas Hübner	Support for Saitek devices that are not fully compliant with the
9581e93674aSAndreas Hübner	HID standard.
9591e93674aSAndreas Hübner
96037c492c8SHarald Brinkmann	Supported devices:
96137c492c8SHarald Brinkmann	- PS1000 Dual Analog Pad
9628ffd341cSHarald Brinkmann	- Saitek R.A.T.7, R.A.T.9, M.M.O.7 Gaming Mice
9638ffd341cSHarald Brinkmann	- Mad Catz R.A.T.5, R.A.T.9 Gaming Mice
9641e93674aSAndreas Hübner
965980a3da6SJiri Slabyconfig HID_SAMSUNG
966a1043044SBorislav Petkov	tristate "Samsung InfraRed remote control or keyboards"
967f237d902SGreg Kroah-Hartman	depends on USB_HID
968a7f7f624SMasahiro Yamada	help
969b355850bSDon Prince	Support for Samsung InfraRed remote control or keyboards.
970980a3da6SJiri Slaby
9716a012686SBenjamin Moodyconfig HID_SEMITEK
9726a012686SBenjamin Moody	tristate "Semitek USB keyboards"
9736a012686SBenjamin Moody	help
9746a012686SBenjamin Moody	Support for Semitek USB keyboards that are not fully compliant
9756a012686SBenjamin Moody	with the HID standard.
9766a012686SBenjamin Moody
9776a012686SBenjamin Moody	There are many variants, including:
9786a012686SBenjamin Moody	- GK61, GK64, GK68, GK84, GK96, etc.
9796a012686SBenjamin Moody	- SK61, SK64, SK68, SK84, SK96, etc.
9806a012686SBenjamin Moody	- Dierya DK61/DK66
9816a012686SBenjamin Moody	- Tronsmart TK09R
9826a012686SBenjamin Moody	- Woo-dy
9836a012686SBenjamin Moody	- X-Bows Nature/Knight
9846a012686SBenjamin Moody
98597673404SDesmond Limconfig HID_SIGMAMICRO
98697673404SDesmond Lim	tristate "SiGma Micro-based keyboards"
98797673404SDesmond Lim	depends on USB_HID
98897673404SDesmond Lim	help
98997673404SDesmond Lim	  Support for keyboards that use the SiGma Micro (a.k.a SigmaChip) IC.
99097673404SDesmond Lim
99197673404SDesmond Lim	  Supported devices:
99297673404SDesmond Lim	  - Landslides KR-700
99397673404SDesmond Lim	  - Rapoo V500
99497673404SDesmond Lim
995bd28ce00SJiri Slabyconfig HID_SONY
996e4321c5cSFrank Praznik	tristate "Sony PS2/3/4 accessories"
997bd28ce00SJiri Slaby	depends on USB_HID
99840e32ee6SJiri Kosina	depends on NEW_LEDS
99940e32ee6SJiri Kosina	depends on LEDS_CLASS
1000695baaa7SJiri Kosina	select POWER_SUPPLY
1001273435a1SArnd Bergmann	select CRC32
1002a7f7f624SMasahiro Yamada	help
1003f04d5140SColin Leitner	Support for
10045844c1cdSDavid Dillow
1005f04d5140SColin Leitner	  * Sony PS3 6-axis controllers
1006e4321c5cSFrank Praznik	  * Sony PS4 DualShock 4 controllers
1007f04d5140SColin Leitner	  * Buzz controllers
1008078328daSJiri Kosina	  * Sony PS3 Blue-ray Disk Remote Control (Bluetooth)
1009078328daSJiri Kosina	  * Logitech Harmony adapter for Sony Playstation 3 (Bluetooth)
1010a4bfe13fSDaniel Nguyen	  * Guitar Hero Live PS3, Wii U and PS4 guitar dongles
101132e411d0SSanjay Govind	  * Guitar Hero PS3 and PC guitar dongles
1012bd28ce00SJiri Slaby
1013a08c22c0SSven Eckelmannconfig SONY_FF
1014e4321c5cSFrank Praznik	bool "Sony PS2/3/4 accessories force feedback support"
1015a08c22c0SSven Eckelmann	depends on HID_SONY
1016a08c22c0SSven Eckelmann	select INPUT_FF_MEMLESS
1017a7f7f624SMasahiro Yamada	help
1018e4321c5cSFrank Praznik	Say Y here if you have a Sony PS2/3/4 accessory and want to enable
1019e4321c5cSFrank Praznik	force feedback support for it.
1020a08c22c0SSven Eckelmann
102174bc6953SStefan Kriwanekconfig HID_SPEEDLINK
102274bc6953SStefan Kriwanek	tristate "Speedlink VAD Cezanne mouse support"
1023a7f7f624SMasahiro Yamada	help
102474bc6953SStefan Kriwanek	Support for Speedlink Vicious and Divine Cezanne mouse.
102574bc6953SStefan Kriwanek
1026c164d6abSRodrigo Rivas Costaconfig HID_STEAM
1027c164d6abSRodrigo Rivas Costa	tristate "Steam Controller support"
10284b64487fSArnd Bergmann	select POWER_SUPPLY
1029a7f7f624SMasahiro Yamada	help
1030c164d6abSRodrigo Rivas Costa	Say Y here if you have a Steam Controller if you want to use it
1031c164d6abSRodrigo Rivas Costa	without running the Steam Client. It supports both the wired and
1032c164d6abSRodrigo Rivas Costa	the wireless adaptor.
1033c164d6abSRodrigo Rivas Costa
1034090800c2SJiri Kosinaconfig HID_STEELSERIES
103575dbb953SSimon Wood	tristate "Steelseries SRW-S1 steering wheel support"
1036a7f7f624SMasahiro Yamada	help
103775dbb953SSimon Wood	Support for Steelseries SRW-S1 steering wheel
103875dbb953SSimon Wood
103990231e7eSJiri Slabyconfig HID_SUNPLUS
1040a1043044SBorislav Petkov	tristate "Sunplus wireless desktop"
1041a7f7f624SMasahiro Yamada	help
1042f0bd8e43SJiri Kosina	Support for Sunplus wireless desktop.
104390231e7eSJiri Slaby
10449fb6bf02SBenjamin Tissoiresconfig HID_RMI
10459fb6bf02SBenjamin Tissoires	tristate "Synaptics RMI4 device support"
10460b2c7a89SAndrew Duggan	select RMI4_CORE
10470b2c7a89SAndrew Duggan	select RMI4_F03
10480b2c7a89SAndrew Duggan	select RMI4_F11
10490b2c7a89SAndrew Duggan	select RMI4_F12
10500b2c7a89SAndrew Duggan	select RMI4_F30
1051a7f7f624SMasahiro Yamada	help
10529fb6bf02SBenjamin Tissoires	Support for Synaptics RMI4 touchpads.
10539fb6bf02SBenjamin Tissoires	Say Y here if you have a Synaptics RMI4 touchpads over i2c-hid or usbhid
10549fb6bf02SBenjamin Tissoires	and want support for its special functionalities.
10559fb6bf02SBenjamin Tissoires
10560f6f4319SJiri Kosinaconfig HID_GREENASIA
1057a1043044SBorislav Petkov	tristate "GreenAsia (Product ID 0x12) game controller support"
1058a7f7f624SMasahiro Yamada	help
10590f6f4319SJiri Kosina	  Say Y here if you have a GreenAsia (Product ID 0x12) based game
10600f6f4319SJiri Kosina	  controller or adapter.
10610f6f4319SJiri Kosina
10620f6f4319SJiri Kosinaconfig GREENASIA_FF
10630f6f4319SJiri Kosina	bool "GreenAsia (Product ID 0x12) force feedback support"
10640f6f4319SJiri Kosina	depends on HID_GREENASIA
106542859e0bSLukasz Lubojanski	select INPUT_FF_MEMLESS
1066a7f7f624SMasahiro Yamada	help
106742859e0bSLukasz Lubojanski	Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
1068692105b8SMatt LaPlante	(like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
106942859e0bSLukasz Lubojanski	and want to enable force feedback support for it.
107042859e0bSLukasz Lubojanski
10716cf851d8SJiri Kosinaconfig HID_HYPERV_MOUSE
10726cf851d8SJiri Kosina	tristate "Microsoft Hyper-V mouse driver"
10736cf851d8SJiri Kosina	depends on HYPERV
1074a7f7f624SMasahiro Yamada	help
10756cf851d8SJiri Kosina	Select this option to enable the Hyper-V mouse driver.
10766cf851d8SJiri Kosina
1077fac733f0SJussi Kivilinnaconfig HID_SMARTJOYPLUS
107873d5e8f7SJiri Kosina	tristate "SmartJoy PLUS PS2/USB adapter support"
1079a7f7f624SMasahiro Yamada	help
10801bcc2067SSean Young	Support for SmartJoy PLUS PS2/USB adapter, Super Dual Box,
10811bcc2067SSean Young	Super Joy Box 3 Pro, Super Dual Box Pro, and Super Joy Box 5 Pro.
10821bcc2067SSean Young
10831bcc2067SSean Young	Note that DDR (Dance Dance Revolution) mode is not supported, nor
10841bcc2067SSean Young	is pressure sensitive buttons on the pro models.
1085fac733f0SJussi Kivilinna
1086fac733f0SJussi Kivilinnaconfig SMARTJOYPLUS_FF
1087fac733f0SJussi Kivilinna	bool "SmartJoy PLUS PS2/USB adapter force feedback support"
1088fac733f0SJussi Kivilinna	depends on HID_SMARTJOYPLUS
1089fac733f0SJussi Kivilinna	select INPUT_FF_MEMLESS
1090a7f7f624SMasahiro Yamada	help
1091fac733f0SJussi Kivilinna	Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to
1092fac733f0SJussi Kivilinna	enable force feedback support for it.
1093fac733f0SJussi Kivilinna
10942701eaabSJiri Kosinaconfig HID_TIVO
109544ea35c1SJarod Wilson	tristate "TiVo Slide Bluetooth remote control support"
1096a7f7f624SMasahiro Yamada	help
109744ea35c1SJarod Wilson	Say Y if you have a TiVo Slide Bluetooth remote control.
109844ea35c1SJarod Wilson
1099f14f526dSLev Babievconfig HID_TOPSEED
110054001081SKees Bakker	tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support"
1101a7f7f624SMasahiro Yamada	help
110254001081SKees Bakker	Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic
110354001081SKees Bakker	CLLRCMCE remote control.
1104f14f526dSLev Babiev
1105a109d5c4SHarry Sternconfig HID_TOPRE
1106a109d5c4SHarry Stern	tristate "Topre REALFORCE keyboards"
1107a109d5c4SHarry Stern	depends on HID
1108a109d5c4SHarry Stern	help
1109a109d5c4SHarry Stern	  Say Y for N-key rollover support on Topre REALFORCE R2 108 key keyboards.
1110a109d5c4SHarry Stern
111130ba2fbdSVivien Didelotconfig HID_THINGM
111230ba2fbdSVivien Didelot	tristate "ThingM blink(1) USB RGB LED"
111330ba2fbdSVivien Didelot	depends on LEDS_CLASS
111438b09c03SHeiner Kallweit	select HID_LED
1115a7f7f624SMasahiro Yamada	help
111638b09c03SHeiner Kallweit	Support for the ThingM blink(1) USB RGB LED. This driver has been
111738b09c03SHeiner Kallweit	merged into the generic hid led driver. Config symbol HID_THINGM
111838b09c03SHeiner Kallweit	just selects HID_LED and will be removed soon.
111930ba2fbdSVivien Didelot
11200f6f4319SJiri Kosinaconfig HID_THRUSTMASTER
112173d5e8f7SJiri Kosina	tristate "ThrustMaster devices support"
1122dfe74f55SJiri Kosina	depends on USB_HID
1123a7f7f624SMasahiro Yamada	help
1124c49c3363SDario Pagani	  Say Y here if you have a THRUSTMASTER FireStore Dual Power 2,
1125c49c3363SDario Pagani	  a THRUSTMASTER Ferrari GT Rumble Wheel or Thrustmaster FFB
1126c49c3363SDario Pagani	  Wheel (T150RS, T300RS, T300 Ferrari Alcantara Edition, T500RS).
11270f6f4319SJiri Kosina
11280f6f4319SJiri Kosinaconfig THRUSTMASTER_FF
11290f6f4319SJiri Kosina	bool "ThrustMaster devices force feedback support"
11300f6f4319SJiri Kosina	depends on HID_THRUSTMASTER
11310f6f4319SJiri Kosina	select INPUT_FF_MEMLESS
1132a7f7f624SMasahiro Yamada	help
11337a84b133SRuben Aos Garralda	  Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3,
11347a84b133SRuben Aos Garralda	  a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT
11357a84b133SRuben Aos Garralda	  Rumble Force or Force Feedback Wheel.
113610e41a71SJiri Slaby
11370edffe65SBastien Noceraconfig HID_UDRAW_PS3
11380edffe65SBastien Nocera	tristate "THQ PS3 uDraw tablet"
1139a7f7f624SMasahiro Yamada	help
11400edffe65SBastien Nocera	  Say Y here if you want to use the THQ uDraw gaming tablet for
11410edffe65SBastien Nocera	  the PS3.
11420edffe65SBastien Nocera
114342337b9dSAndrej Shaduraconfig HID_U2FZERO
114442337b9dSAndrej Shadura	tristate "U2F Zero LED and RNG support"
114542337b9dSAndrej Shadura	depends on USB_HID
114642337b9dSAndrej Shadura	depends on LEDS_CLASS
1147e252e0e0SMao Wenan	depends on HW_RANDOM
114842337b9dSAndrej Shadura	help
114942337b9dSAndrej Shadura	  Support for the LED of the U2F Zero device.
115042337b9dSAndrej Shadura
115142337b9dSAndrej Shadura	  U2F Zero supports custom commands for blinking the LED
115242337b9dSAndrej Shadura	  and getting data from the internal hardware RNG.
115342337b9dSAndrej Shadura	  The internal hardware can be used to feed the enthropy pool.
115442337b9dSAndrej Shadura
115542337b9dSAndrej Shadura	  U2F Zero only supports blinking its LED, so this driver doesn't
115642337b9dSAndrej Shadura	  allow setting the brightness to anything but 1, which will
1157ad81d1c8SGeert Uytterhoeven	  trigger a single blink and immediately reset back to 0.
115842337b9dSAndrej Shadura
1159ca2dcd40SBastien Noceraconfig HID_WACOM
1160471d1714SBenjamin Tissoires	tristate "Wacom Intuos/Graphire tablet support (USB)"
11619d14201cSArnd Bergmann	depends on USB_HID
116259d2334aSPrzemo Firszt	select POWER_SUPPLY
1163471d1714SBenjamin Tissoires	select NEW_LEDS
1164471d1714SBenjamin Tissoires	select LEDS_CLASS
116534736aa9SBenjamin Tissoires	select LEDS_TRIGGERS
1166471d1714SBenjamin Tissoires	help
11677403a6a4SBenjamin Tissoires	  Say Y here if you want to use the USB or BT version of the Wacom Intuos
1168471d1714SBenjamin Tissoires	  or Graphire tablet.
1169471d1714SBenjamin Tissoires
1170471d1714SBenjamin Tissoires	  To compile this driver as a module, choose M here: the
1171471d1714SBenjamin Tissoires	  module will be called wacom.
117259d2334aSPrzemo Firszt
1173fb51b443SDavid Herrmannconfig HID_WIIMOTE
117492eda7e4SDavid Herrmann	tristate "Nintendo Wii / Wii U peripherals"
117523a5a4a3SDavid Herrmann	depends on LEDS_CLASS
11766591d758SDavid Herrmann	select POWER_SUPPLY
1177ef6f4115SDavid Herrmann	select INPUT_FF_MEMLESS
1178a7f7f624SMasahiro Yamada	help
117992eda7e4SDavid Herrmann	Support for Nintendo Wii and Wii U Bluetooth peripherals. Supported
118092eda7e4SDavid Herrmann	devices are the Wii Remote and its extension devices, but also devices
118192eda7e4SDavid Herrmann	based on the Wii Remote like the Wii U Pro Controller or the
118292eda7e4SDavid Herrmann	Wii Balance Board.
1183fb51b443SDavid Herrmann
118492eda7e4SDavid Herrmann	Support for all official Nintendo extensions is available, however, 3rd
118592eda7e4SDavid Herrmann	party extensions might not be supported. Please report these devices to:
118692eda7e4SDavid Herrmann	  http://github.com/dvdhrm/xwiimote/issues
118792eda7e4SDavid Herrmann
118892eda7e4SDavid Herrmann	Other Nintendo Wii U peripherals that are IEEE 802.11 based (including
118992eda7e4SDavid Herrmann	the Wii U Gamepad) might be supported in the future. But currently
119092eda7e4SDavid Herrmann	support is limited to Bluetooth based devices.
119192eda7e4SDavid Herrmann
119292eda7e4SDavid Herrmann	If unsure, say N.
119392eda7e4SDavid Herrmann
119492eda7e4SDavid Herrmann	To compile this driver as a module, choose M here: the
119592eda7e4SDavid Herrmann	module will be called hid-wiimote.
1196cb99221bSDavid Herrmann
1197cb2c9e3fSOlivier Scherlerconfig HID_XINMO
1198cb2c9e3fSOlivier Scherler	tristate "Xin-Mo non-fully compliant devices"
1199a7f7f624SMasahiro Yamada	help
1200cb2c9e3fSOlivier Scherler	Support for Xin-Mo devices that are not fully compliant with the HID
1201e2c76a8bSBrian Norris	standard. Currently only supports the Xin-Mo Dual Arcade. Say Y here
1202cb2c9e3fSOlivier Scherler	if you have a Xin-Mo Dual Arcade controller.
1203cb2c9e3fSOlivier Scherler
12040f6f4319SJiri Kosinaconfig HID_ZEROPLUS
120573d5e8f7SJiri Kosina	tristate "Zeroplus based game controller support"
1206a7f7f624SMasahiro Yamada	help
1207987fbc1fSJiri Slaby	  Say Y here if you have a Zeroplus based game controller.
1208987fbc1fSJiri Slaby
12090f6f4319SJiri Kosinaconfig ZEROPLUS_FF
12100f6f4319SJiri Kosina	bool "Zeroplus based game controller force feedback support"
12110f6f4319SJiri Kosina	depends on HID_ZEROPLUS
12120f6f4319SJiri Kosina	select INPUT_FF_MEMLESS
1213a7f7f624SMasahiro Yamada	help
12140f6f4319SJiri Kosina	  Say Y here if you have a Zeroplus based game controller and want
12150f6f4319SJiri Kosina	  to have force feedback support for it.
12160f6f4319SJiri Kosina
1217a9885c8fSDon Princeconfig HID_ZYDACRON
121873d5e8f7SJiri Kosina	tristate "Zydacron remote control support"
1219a7f7f624SMasahiro Yamada	help
1220a9885c8fSDon Prince	Support for Zydacron remote control.
1221a9885c8fSDon Prince
1222401ca24fSsrinivas pandruvadaconfig HID_SENSOR_HUB
1223401ca24fSsrinivas pandruvada	tristate "HID Sensors framework support"
12248272a51dSRandy Dunlap	depends on HAS_IOMEM
1225401ca24fSsrinivas pandruvada	select MFD_CORE
1226401ca24fSsrinivas pandruvada	default n
1227a7f7f624SMasahiro Yamada	help
1228401ca24fSsrinivas pandruvada	  Support for HID Sensor framework. This creates a MFD instance
1229401ca24fSsrinivas pandruvada	  for a sensor hub and identifies all the sensors connected to it.
1230401ca24fSsrinivas pandruvada	  Each sensor is registered as a MFD cell, so that sensor specific
1231401ca24fSsrinivas pandruvada	  processing can be done in a separate driver. Each sensor
1232401ca24fSsrinivas pandruvada	  drivers can use the service provided by this driver to register
1233401ca24fSsrinivas pandruvada	  for events and handle data streams. Each sensor driver can format
1234401ca24fSsrinivas pandruvada	  data and present to user mode using input or IIO interface.
1235401ca24fSsrinivas pandruvada
12364a7de051SSrinivas Pandruvadaconfig HID_SENSOR_CUSTOM_SENSOR
12374a7de051SSrinivas Pandruvada	tristate "HID Sensors hub custom sensor support"
12384a7de051SSrinivas Pandruvada	depends on HID_SENSOR_HUB
12394a7de051SSrinivas Pandruvada	default n
1240a7f7f624SMasahiro Yamada	help
12414a7de051SSrinivas Pandruvada	  HID Sensor hub specification allows definition of some custom and
12424a7de051SSrinivas Pandruvada	  generic sensors. Unlike other HID sensors, they can't be exported
12434a7de051SSrinivas Pandruvada	  via Linux IIO because of custom fields. This is up to the manufacturer
12444a7de051SSrinivas Pandruvada	  to decide how to interpret these special sensor ids and process in
12454a7de051SSrinivas Pandruvada	  the user space. Currently some manufacturers are using these ids for
12464a7de051SSrinivas Pandruvada	  sensor calibration and debugging other sensors. Manufacturers
124716863fbcSChristophe JAILLET	  shouldn't use these special custom sensor ids to export any of the
12484a7de051SSrinivas Pandruvada	  standard sensors.
12494a7de051SSrinivas Pandruvada	  Select this config option for custom/generic sensor support.
12504a7de051SSrinivas Pandruvada
12512562756dSMasaki Otaconfig HID_ALPS
12522562756dSMasaki Ota	tristate "Alps HID device support"
1253a7f7f624SMasahiro Yamada	help
12542562756dSMasaki Ota	Support for Alps I2C HID touchpads and StickPointer.
12552562756dSMasaki Ota	Say Y here if you have a Alps touchpads over i2c-hid or usbhid
12562562756dSMasaki Ota	and want support for its special functionalities.
12572562756dSMasaki Ota
125867a95c21SRishi Guptaconfig HID_MCP2221
125967a95c21SRishi Gupta	tristate "Microchip MCP2221 HID USB-to-I2C/SMbus host support"
126067a95c21SRishi Gupta	depends on USB_HID && I2C
12612465f0d5SArnd Bergmann	depends on GPIOLIB
1262a7f7f624SMasahiro Yamada	help
126367a95c21SRishi Gupta	Provides I2C and SMBUS host adapter functionality over USB-HID
126467a95c21SRishi Gupta	through MCP2221 device.
126567a95c21SRishi Gupta
126667a95c21SRishi Gupta	To compile this driver as a module, choose M here: the module
126767a95c21SRishi Gupta	will be called hid-mcp2221.ko.
126867a95c21SRishi Gupta
12692d167aabSJosé Expósitoconfig HID_KUNIT_TEST
127008809e48SJosé Expósito	tristate "KUnit tests for HID" if !KUNIT_ALL_TESTS
12712d167aabSJosé Expósito	depends on KUNIT=y
12722d167aabSJosé Expósito	depends on HID_UCLOGIC
12732d167aabSJosé Expósito	default KUNIT_ALL_TESTS
12742d167aabSJosé Expósito	help
12752d167aabSJosé Expósito	  This builds unit tests for HID. This option is not useful for
12762d167aabSJosé Expósito	  distributions or general kernels, but only for kernel
12772d167aabSJosé Expósito	  developers working on HID and associated drivers.
12782d167aabSJosé Expósito
12792d167aabSJosé Expósito	  For more information on KUnit and unit tests in general,
12802d167aabSJosé Expósito	  please refer to the KUnit documentation in
12812d167aabSJosé Expósito	  Documentation/dev-tools/kunit/.
12822d167aabSJosé Expósito
12832d167aabSJosé Expósito	  If in doubt, say "N".
12842d167aabSJosé Expósito
12855f22a799SJiri Slabyendmenu
12865f22a799SJiri Slaby
1287*f5c27da4SBenjamin Tissoiressource "drivers/hid/bpf/Kconfig"
1288*f5c27da4SBenjamin Tissoires
12891f41a6a9SHenrik Rydbergendif # HID
12901f41a6a9SHenrik Rydberg
12911f41a6a9SHenrik Rydbergsource "drivers/hid/usbhid/Kconfig"
12921f41a6a9SHenrik Rydberg
12934a200c3bSBenjamin Tissoiressource "drivers/hid/i2c-hid/Kconfig"
12944a200c3bSBenjamin Tissoires
12953703f53bSSrinivas Pandruvadasource "drivers/hid/intel-ish-hid/Kconfig"
12963703f53bSSrinivas Pandruvada
12974f567b9fSSandeep Singhsource "drivers/hid/amd-sfh-hid/Kconfig"
12984f567b9fSSandeep Singh
1299b05ff100SMaximilian Luzsource "drivers/hid/surface-hid/Kconfig"
1300b05ff100SMaximilian Luz
130125621bccSBenjamin Tissoiresendif # HID_SUPPORT
1302