xref: /linux/drivers/hid/Kconfig (revision 0ee29814c6be17a924761d3712eb8ad63cfe13ac)
1ec8f24b7SThomas Gleixner# SPDX-License-Identifier: GPL-2.0-only
263f3861dSJiri Kosina#
363f3861dSJiri Kosina# HID driver configuration
463f3861dSJiri Kosina#
51f41a6a9SHenrik Rydbergmenu "HID support"
663f3861dSJiri Kosina     depends on INPUT
763f3861dSJiri Kosina
863f3861dSJiri Kosinaconfig HID
91f41a6a9SHenrik Rydberg	tristate "HID bus support"
10c96c9d7bSRussell King	depends on INPUT
1163f3861dSJiri Kosina	default y
12a7f7f624SMasahiro Yamada	help
1369e4d948SJiri Kosina	  A human interface device (HID) is a type of computer device that
1469e4d948SJiri Kosina	  interacts directly with and takes input from humans. The term "HID"
1569e4d948SJiri Kosina	  most commonly used to refer to the USB-HID specification, but other
1669e4d948SJiri Kosina	  devices (such as, but not strictly limited to, Bluetooth) are
1769e4d948SJiri Kosina	  designed using HID specification (this involves certain keyboards,
181f41a6a9SHenrik Rydberg	  mice, tablets, etc). This option adds the HID bus to the kernel,
191f41a6a9SHenrik Rydberg	  together with generic HID layer code. The HID devices are added and
201f41a6a9SHenrik Rydberg	  removed from the HID bus by the transport-layer drivers, such as
211f41a6a9SHenrik Rydberg	  usbhid (USB_HID) and hidp (BT_HIDP).
2269e4d948SJiri Kosina
23b1631b84SAlexander A. Klimov	  For docs and specs, see https://www.usb.org/developers/hidpage/
2469e4d948SJiri Kosina
25205adbecSPavel Machek	  If unsure, say Y.
2663f3861dSJiri Kosina
271f41a6a9SHenrik Rydbergif HID
281f41a6a9SHenrik Rydberg
294f5ca836SJeremy Fitzhardingeconfig HID_BATTERY_STRENGTH
30692d30d6SJiri Kosina	bool "Battery level reporting for HID devices"
31060c9982SDaniel Nicoletti	select POWER_SUPPLY
322198edddSJosh Boyer	default n
33a7f7f624SMasahiro Yamada	help
34692d30d6SJiri Kosina	This option adds support of reporting battery strength (for HID devices
35692d30d6SJiri Kosina	that support this feature) through power_supply class so that userspace
36692d30d6SJiri Kosina	tools, such as upower, can display it.
374f5ca836SJeremy Fitzhardinge
3886166b7bSJiri Kosinaconfig HIDRAW
3986166b7bSJiri Kosina	bool "/dev/hidraw raw HID device support"
40a7f7f624SMasahiro Yamada	help
4186166b7bSJiri Kosina	Say Y here if you want to support HID devices (from the USB
4286166b7bSJiri Kosina	specification standpoint) that aren't strictly user interface
4316863fbcSChristophe JAILLET	devices, like monitor controls and Uninterruptible Power Supplies.
4486166b7bSJiri Kosina
4586166b7bSJiri Kosina	This module supports these devices separately using a separate
4686166b7bSJiri Kosina	event interface on /dev/hidraw.
4786166b7bSJiri Kosina
4886166b7bSJiri Kosina	There is also a /dev/hiddev configuration option in the USB HID
4986166b7bSJiri Kosina	configuration menu. In comparison to hiddev, this device does not process
5086166b7bSJiri Kosina	the hid events at all (no parsing, no lookups). This lets applications
5186166b7bSJiri Kosina	to work on raw hid events when they want to, and avoid using transport-specific
5286166b7bSJiri Kosina	userspace libhid/libusb libraries.
5386166b7bSJiri Kosina
5486166b7bSJiri Kosina	If unsure, say Y.
5586166b7bSJiri Kosina
561ccd7a2aSDavid Herrmannconfig UHID
571ccd7a2aSDavid Herrmann	tristate "User-space I/O driver support for HID subsystem"
581ccd7a2aSDavid Herrmann	default n
59a7f7f624SMasahiro Yamada	help
601ccd7a2aSDavid Herrmann	Say Y here if you want to provide HID I/O Drivers from user-space.
611ccd7a2aSDavid Herrmann	This allows to write I/O drivers in user-space and feed the data from
621ccd7a2aSDavid Herrmann	the device into the kernel. The kernel parses the HID reports, loads the
631ccd7a2aSDavid Herrmann	corresponding HID Device Driver or provides input devices on top of your
641ccd7a2aSDavid Herrmann	user-space device.
651ccd7a2aSDavid Herrmann
661ccd7a2aSDavid Herrmann	This driver cannot be used to parse HID-reports in user-space and write
671ccd7a2aSDavid Herrmann	special HID-drivers. You should use hidraw for that.
681ccd7a2aSDavid Herrmann	Instead, this driver allows to write the transport-layer driver in
691ccd7a2aSDavid Herrmann	user-space like USB-HID and Bluetooth-HID do in kernel-space.
701ccd7a2aSDavid Herrmann
711ccd7a2aSDavid Herrmann	If unsure, say N.
721ccd7a2aSDavid Herrmann
731ccd7a2aSDavid Herrmann	To compile this driver as a module, choose M here: the
741ccd7a2aSDavid Herrmann	module will be called uhid.
751ccd7a2aSDavid Herrmann
768215d557SHenrik Rydbergconfig HID_GENERIC
778215d557SHenrik Rydberg	tristate "Generic HID driver"
781f41a6a9SHenrik Rydberg	default HID
79a7f7f624SMasahiro Yamada	help
801f41a6a9SHenrik Rydberg	Support for generic devices on the HID bus. This includes most
811f41a6a9SHenrik Rydberg	keyboards and mice, joysticks, tablets and digitizers.
828215d557SHenrik Rydberg
838215d557SHenrik Rydberg	To compile this driver as a module, choose M here: the module
848215d557SHenrik Rydberg	will be called hid-generic.
858215d557SHenrik Rydberg
868215d557SHenrik Rydberg	If unsure, say Y.
878215d557SHenrik Rydberg
881f41a6a9SHenrik Rydbergmenu "Special HID drivers"
891f41a6a9SHenrik Rydberg
9014a21cd4SJiri Slabyconfig HID_A4TECH
919858c74cSMateusz Jończyk	tristate "A4TECH mice"
926a108a14SDavid Rientjes	default !EXPERT
93a7f7f624SMasahiro Yamada	help
949858c74cSMateusz Jończyk	Support for some A4TECH mice with two scroll wheels.
9514a21cd4SJiri Slaby
96c846fe9cSMartyn Welchconfig HID_ACCUTOUCH
97c846fe9cSMartyn Welch	tristate "Accutouch touch device"
98c846fe9cSMartyn Welch	depends on USB_HID
99a7f7f624SMasahiro Yamada	help
100c846fe9cSMartyn Welch	  This selects a driver for the Accutouch 2216 touch controller.
101c846fe9cSMartyn Welch
102c846fe9cSMartyn Welch	  The driver works around a problem in the reported device capabilities
103c846fe9cSMartyn Welch	  which causes userspace to detect the device as a mouse rather than
104c846fe9cSMartyn Welch          a touchscreen.
105c846fe9cSMartyn Welch
106c846fe9cSMartyn Welch	  Say Y here if you have a Accutouch 2216 touch controller.
107c846fe9cSMartyn Welch
1080ae43810SDmitry Torokhovconfig HID_ACRUX
1090ae43810SDmitry Torokhov	tristate "ACRUX game controller support"
110a7f7f624SMasahiro Yamada	help
1110ae43810SDmitry Torokhov	Say Y here if you want to enable support for ACRUX game controllers.
1120ae43810SDmitry Torokhov
1130ae43810SDmitry Torokhovconfig HID_ACRUX_FF
114364b936fSSergei Kolzun	bool "ACRUX force feedback support"
1150ae43810SDmitry Torokhov	depends on HID_ACRUX
116c0dbcc33SSergei Kolzun	select INPUT_FF_MEMLESS
117a7f7f624SMasahiro Yamada	help
118c0dbcc33SSergei Kolzun	Say Y here if you want to enable force feedback support for ACRUX
119c0dbcc33SSergei Kolzun	game controllers.
120c0dbcc33SSergei Kolzun
1218c19a515SJiri Slabyconfig HID_APPLE
1227af05e73SJean Delvare	tristate "Apple {i,Power,Mac}Books"
123ed9f4f96SJiri Kosina	depends on LEDS_CLASS
124ed9f4f96SJiri Kosina	depends on NEW_LEDS
1256a108a14SDavid Rientjes	default !EXPERT
126a7f7f624SMasahiro Yamada	help
1278c19a515SJiri Slaby	Support for some Apple devices which less or more break
1288c19a515SJiri Slaby	HID specification.
1298c19a515SJiri Slaby
130f0bd8e43SJiri Kosina	Say Y here if you want support for keyboards of	Apple iBooks, PowerBooks,
131f0bd8e43SJiri Kosina	MacBooks, MacBook Pros and Apple Aluminum.
1328c19a515SJiri Slaby
1339a4a5574SBenjamin Tissoiresconfig HID_APPLEIR
1349a4a5574SBenjamin Tissoires	tristate "Apple infrared receiver"
1359a4a5574SBenjamin Tissoires	depends on (USB_HID)
136a7f7f624SMasahiro Yamada	help
1379a4a5574SBenjamin Tissoires	Support for Apple infrared remote control. All the Apple computers from
1389a4a5574SBenjamin Tissoires	  2005 onwards include such a port, except the unibody Macbook (2009),
1399a4a5574SBenjamin Tissoires	  and Mac Pros. This receiver is also used in the Apple TV set-top box
1409a4a5574SBenjamin Tissoires	  prior to the 2010 model.
1419a4a5574SBenjamin Tissoires
1429a4a5574SBenjamin Tissoires	Say Y here if you want support for Apple infrared remote control.
1439a4a5574SBenjamin Tissoires
144eeb01a57SYusuke Fujimakiconfig HID_ASUS
145eeb01a57SYusuke Fujimaki	tristate "Asus"
146c4f0126dSHans de Goede	depends on USB_HID
147af22a610SCarlo Caione	depends on LEDS_CLASS
1483b692c55SDaniel Drake	depends on ASUS_WMI || ASUS_WMI=n
149a23eab89SArnd Bergmann	select POWER_SUPPLY
150a7f7f624SMasahiro Yamada	help
1511caccc25SChris Chiu	Support for Asus notebook built-in keyboard and touchpad via i2c, and
1521caccc25SChris Chiu	the Asus Republic of Gamers laptop keyboard special keys.
153b94f7d5dSYusuke Fujimaki
154b94f7d5dSYusuke Fujimaki	Supported devices:
155b94f7d5dSYusuke Fujimaki	- EeeBook X205TA
156b94f7d5dSYusuke Fujimaki	- VivoBook E200HA
1571caccc25SChris Chiu	- GL553V series
1581caccc25SChris Chiu	- GL753V series
159eeb01a57SYusuke Fujimaki
160212da74dSJosenivaldo Benito Juniorconfig HID_AUREAL
161212da74dSJosenivaldo Benito Junior	tristate "Aureal"
162a7f7f624SMasahiro Yamada	help
163212da74dSJosenivaldo Benito Junior	Support for Aureal Cy se W-01RN Remote Controller and other Aureal derived remotes.
164212da74dSJosenivaldo Benito Junior
165b5635b12SJiri Slabyconfig HID_BELKIN
1667af05e73SJean Delvare	tristate "Belkin Flip KVM and Wireless keyboard"
1676a108a14SDavid Rientjes	default !EXPERT
168a7f7f624SMasahiro Yamada	help
169b5635b12SJiri Slaby	Support for Belkin Flip KVM and Wireless keyboard.
170b5635b12SJiri Slaby
171fc38a8a6SHuang Boconfig HID_BETOP_FF
172fc38a8a6SHuang Bo	tristate "Betop Production Inc. force feedback support"
173fc38a8a6SHuang Bo	depends on USB_HID
174fc38a8a6SHuang Bo	select INPUT_FF_MEMLESS
175a7f7f624SMasahiro Yamada	help
176fc38a8a6SHuang Bo	Say Y here if you want to enable force feedback support for devices by
177fc38a8a6SHuang Bo	BETOP Production Ltd.
178fc38a8a6SHuang Bo	Currently the following devices are known to be supported:
179fc38a8a6SHuang Bo	 - BETOP 2185 PC & BFM MODE
180fc38a8a6SHuang Bo
181256a90edSHanno Zullaconfig HID_BIGBEN_FF
182256a90edSHanno Zulla	tristate "BigBen Interactive Kids' gamepad support"
183256a90edSHanno Zulla	depends on USB_HID
184256a90edSHanno Zulla	depends on NEW_LEDS
185256a90edSHanno Zulla	depends on LEDS_CLASS
186256a90edSHanno Zulla	select INPUT_FF_MEMLESS
187256a90edSHanno Zulla	help
188256a90edSHanno Zulla	  Support for the "Kid-friendly Wired Controller" PS3OFMINIPAD
189256a90edSHanno Zulla	  gamepad made by BigBen Interactive, originally sold as a PS3
190256a90edSHanno Zulla	  accessory. This driver fixes input mapping and adds support for
191256a90edSHanno Zulla	  force feedback effects and LEDs on the device.
192256a90edSHanno Zulla
1933b239cd7SJiri Slabyconfig HID_CHERRY
1947af05e73SJean Delvare	tristate "Cherry Cymotion keyboard"
1956a108a14SDavid Rientjes	default !EXPERT
196a7f7f624SMasahiro Yamada	help
197f0bd8e43SJiri Kosina	Support for Cherry Cymotion keyboard.
1983b239cd7SJiri Slaby
199fcfacfd3SJiri Slabyconfig HID_CHICONY
200f2f10b7eSDaniel Drake	tristate "Chicony devices"
201d080811fSGreg Kroah-Hartman	depends on USB_HID
2026a108a14SDavid Rientjes	default !EXPERT
203a7f7f624SMasahiro Yamada	help
204f2f10b7eSDaniel Drake	Support for Chicony Tactical pad and special keys on Chicony keyboards.
205fcfacfd3SJiri Slaby
2066f78193eSClément Vuchenerconfig HID_CORSAIR
2076f78193eSClément Vuchener	tristate "Corsair devices"
208f237d902SGreg Kroah-Hartman	depends on USB_HID && LEDS_CLASS
209a7f7f624SMasahiro Yamada	help
2106f78193eSClément Vuchener	Support for Corsair devices that are not fully compliant with the
2116f78193eSClément Vuchener	HID standard.
2126f78193eSClément Vuchener
2136f78193eSClément Vuchener	Supported devices:
2146f78193eSClément Vuchener	- Vengeance K90
21501adc47eSOscar Campos	- Scimitar PRO RGB
2166f78193eSClément Vuchener
217b8e759b8SDaniel M. Lambeaconfig HID_COUGAR
218b8e759b8SDaniel M. Lambea	tristate "Cougar devices"
219b8e759b8SDaniel M. Lambea	help
220b8e759b8SDaniel M. Lambea	Support for Cougar devices that are not fully compliant with the
221b8e759b8SDaniel M. Lambea	HID standard.
222b8e759b8SDaniel M. Lambea
223b8e759b8SDaniel M. Lambea	Supported devices:
224b8e759b8SDaniel M. Lambea	- Cougar 500k Gaming Keyboard
225b8e759b8SDaniel M. Lambea
226161f62cdSAlex Henrieconfig HID_MACALLY
227161f62cdSAlex Henrie	tristate "Macally devices"
228161f62cdSAlex Henrie	help
229161f62cdSAlex Henrie	Support for Macally devices that are not fully compliant with the
230161f62cdSAlex Henrie	HID standard.
231161f62cdSAlex Henrie
232161f62cdSAlex Henrie	supported devices:
233161f62cdSAlex Henrie	- Macally ikey keyboard
234161f62cdSAlex Henrie
2353a370ca1SDon Princeconfig HID_PRODIKEYS
23695736de9SJiri Kosina	tristate "Prodikeys PC-MIDI Keyboard support"
23730cb3c2aSGreg Kroah-Hartman	depends on USB_HID && SND
2383a370ca1SDon Prince	select SND_RAWMIDI
239a7f7f624SMasahiro Yamada	help
2403a370ca1SDon Prince	Support for Prodikeys PC-MIDI Keyboard device support.
2413a370ca1SDon Prince	Say Y here to enable support for this device.
2423a370ca1SDon Prince	- Prodikeys PC-MIDI keyboard.
2433a370ca1SDon Prince	  The Prodikeys PC-MIDI acts as a USB Audio device, with one MIDI
2443a370ca1SDon Prince	  input and one MIDI output. These MIDI jacks appear as
2453a370ca1SDon Prince	  a sound "card" in the ALSA sound system.
2463a370ca1SDon Prince	  Note: if you say N here, this device will still function as a basic
2473a370ca1SDon Prince	  multimedia keyboard, but will lack support for the musical keyboard
2483a370ca1SDon Prince	  and some additional multimedia keys.
2493a370ca1SDon Prince
250ad8ddc57SBen Chenconfig HID_CMEDIA
251bebf8820SThomas Weißschuh	tristate "CMedia audio chips"
252a7f7f624SMasahiro Yamada	help
253bebf8820SThomas Weißschuh	Support for CMedia CM6533 HID audio jack controls
254bebf8820SThomas Weißschuh        and HS100B mute buttons.
255ad8ddc57SBen Chen
256e932d817SDavid Barksdaleconfig HID_CP2112
257e932d817SDavid Barksdale	tristate "Silicon Labs CP2112 HID USB-to-SMBus Bridge support"
258cde3076bSSébastien Szymanski	depends on USB_HID && HIDRAW && I2C && GPIOLIB
259ac34b970SBartosz Golaszewski	select GPIOLIB_IRQCHIP
260a7f7f624SMasahiro Yamada	help
261e932d817SDavid Barksdale	Support for Silicon Labs CP2112 HID USB to SMBus Master Bridge.
262e932d817SDavid Barksdale	This is a HID device driver which registers as an i2c adapter
263e932d817SDavid Barksdale	and gpiochip to expose these functions of the CP2112. The
264e932d817SDavid Barksdale	customizable USB descriptor fields are exposed as sysfs attributes.
265e932d817SDavid Barksdale
266f7c4f737SBastien Noceraconfig HID_CREATIVE_SB0540
267f7c4f737SBastien Nocera	tristate "Creative SB0540 infrared receiver"
268f7c4f737SBastien Nocera	depends on USB_HID
269f7c4f737SBastien Nocera	help
270f7c4f737SBastien Nocera	Support for Creative infrared SB0540-compatible remote controls, such
271f7c4f737SBastien Nocera	as the RM-1500 and RM-1800 remotes.
272f7c4f737SBastien Nocera
273f7c4f737SBastien Nocera	Say Y here if you want support for Creative SB0540 infrared receiver.
274f7c4f737SBastien Nocera
2750f221320SJiri Slabyconfig HID_CYPRESS
2767af05e73SJean Delvare	tristate "Cypress mouse and barcode readers"
2776a108a14SDavid Rientjes	default !EXPERT
278a7f7f624SMasahiro Yamada	help
279f0bd8e43SJiri Kosina	Support for cypress mouse and barcode readers.
2800f221320SJiri Slaby
2810f6f4319SJiri Kosinaconfig HID_DRAGONRISE
282a1043044SBorislav Petkov	tristate "DragonRise Inc. game controller"
283a7f7f624SMasahiro Yamada	help
2840f6f4319SJiri Kosina	Say Y here if you have DragonRise Inc. game controllers.
285b4a65f4eSNikolai Kondrashov	These might be branded as:
286b4a65f4eSNikolai Kondrashov	- Tesun USB-703
287b4a65f4eSNikolai Kondrashov	- Media-tech MT1504 "Rogue"
288b4a65f4eSNikolai Kondrashov	- DVTech JS19 "Gear"
289b4a65f4eSNikolai Kondrashov	- Defender Game Master
2900f6f4319SJiri Kosina
2910f6f4319SJiri Kosinaconfig DRAGONRISE_FF
292a1043044SBorislav Petkov	bool "DragonRise Inc. force feedback"
2930f6f4319SJiri Kosina	depends on HID_DRAGONRISE
2943f866fbdSRichard Walmsley	select INPUT_FF_MEMLESS
295a7f7f624SMasahiro Yamada	help
2963f866fbdSRichard Walmsley	Say Y here if you want to enable force feedback support for DragonRise Inc.
2973f866fbdSRichard Walmsley	game controllers.
2983f866fbdSRichard Walmsley
29904561c5aSIgnaz Forsterconfig HID_EMS_FF
30004561c5aSIgnaz Forster	tristate "EMS Production Inc. force feedback support"
30104561c5aSIgnaz Forster	select INPUT_FF_MEMLESS
302a7f7f624SMasahiro Yamada	help
30304561c5aSIgnaz Forster	Say Y here if you want to enable force feedback support for devices by
30404561c5aSIgnaz Forster	EMS Production Ltd.
30504561c5aSIgnaz Forster	Currently the following devices are known to be supported:
30604561c5aSIgnaz Forster	 - Trio Linker Plus II
30704561c5aSIgnaz Forster
3089a6a4193SAlexandrov Stansilavconfig HID_ELAN
3099a6a4193SAlexandrov Stansilav	tristate "ELAN USB Touchpad Support"
3109a6a4193SAlexandrov Stansilav	depends on LEDS_CLASS && USB_HID
311a7f7f624SMasahiro Yamada	help
3129a6a4193SAlexandrov Stansilav	Say Y to enable support for the USB ELAN touchpad
3139a6a4193SAlexandrov Stansilav	Currently the following devices are known to be supported:
3149a6a4193SAlexandrov Stansilav	 - HP Pavilion X2 10-p0XX.
3159a6a4193SAlexandrov Stansilav
31664b386eaSRichard Nauberconfig HID_ELECOM
3170bb7a37fSDiego Elio Pettenò	tristate "ELECOM HID devices"
318a7f7f624SMasahiro Yamada	help
3190bb7a37fSDiego Elio Pettenò	Support for ELECOM devices:
3200bb7a37fSDiego Elio Pettenò	  - BM084 Bluetooth Mouse
32179837edeSTomasz Kramkowski	  - EX-G Trackballs (M-XT3DRBK, M-XT3URBK)
32279837edeSTomasz Kramkowski	  - DEFT Trackballs (M-DT1DRBK, M-DT1URBK, M-DT2DRBK, M-DT2URBK)
32379837edeSTomasz Kramkowski	  - HUGE Trackballs (M-HT1DRBK, M-HT1URBK)
32464b386eaSRichard Nauber
325d23efc19SJiri Slabyconfig HID_ELO
326d23efc19SJiri Slaby	tristate "ELO USB 4000/4500 touchscreen"
327d23efc19SJiri Slaby	depends on USB_HID
328a7f7f624SMasahiro Yamada	help
329d23efc19SJiri Slaby	Support for the ELO USB 4000/4500 touchscreens. Note that this is for
330d23efc19SJiri Slaby	different devices than those handled by CONFIG_TOUCHSCREEN_USB_ELO.
331d23efc19SJiri Slaby
3321f243e30SJiri Slabyconfig HID_EZKEY
3337af05e73SJean Delvare	tristate "Ezkey BTC 8193 keyboard"
3346a108a14SDavid Rientjes	default !EXPERT
335a7f7f624SMasahiro Yamada	help
336f0bd8e43SJiri Kosina	Support for Ezkey BTC 8193 keyboard.
3371f243e30SJiri Slaby
3386a82582dSMichael Zaidmanconfig HID_FT260
3396a82582dSMichael Zaidman	tristate "FTDI FT260 USB HID to I2C host support"
3406a82582dSMichael Zaidman	depends on USB_HID && HIDRAW && I2C
3416a82582dSMichael Zaidman	help
3426a82582dSMichael Zaidman	  Provides I2C host adapter functionality over USB-HID through FT260
3436a82582dSMichael Zaidman	  device. The customizable USB descriptor fields are exposed as sysfs
3446a82582dSMichael Zaidman	  attributes.
3456a82582dSMichael Zaidman
3466a82582dSMichael Zaidman	  To compile this driver as a module, choose M here: the module
3476a82582dSMichael Zaidman	  will be called hid-ft260.
3486a82582dSMichael Zaidman
349931830aaSBenjamin Tissoiresconfig HID_GEMBIRD
350931830aaSBenjamin Tissoires	tristate "Gembird Joypad"
351a7f7f624SMasahiro Yamada	help
352931830aaSBenjamin Tissoires	Support for Gembird JPD-DualForce 2.
353931830aaSBenjamin Tissoires
35434fc1322SPetri Gyntherconfig HID_GFRM
35534fc1322SPetri Gynther	tristate "Google Fiber TV Box remote control support"
356a7f7f624SMasahiro Yamada	help
35734fc1322SPetri Gynther	Support for Google Fiber TV Box remote controls
35834fc1322SPetri Gynther
35977a36a3aSSamuel Čavojconfig HID_GLORIOUS
36077a36a3aSSamuel Čavoj	tristate "Glorious PC Gaming Race mice"
36177a36a3aSSamuel Čavoj	help
36277a36a3aSSamuel Čavoj	  Support for Glorious PC Gaming Race mice such as
36377a36a3aSSamuel Čavoj	  the Glorious Model O, O- and D.
36477a36a3aSSamuel Čavoj
365d946e65eSAnssi Hannulaconfig HID_HOLTEK
366ff9bf5a2STom Harwood	tristate "Holtek HID devices"
367d946e65eSAnssi Hannula	depends on USB_HID
368a7f7f624SMasahiro Yamada	help
369ff9bf5a2STom Harwood	Support for Holtek based devices:
370ff9bf5a2STom Harwood	  - Holtek On Line Grip based game controller
371ff9bf5a2STom Harwood	  - Trust GXT 18 Gaming Keyboard
37241de326eSChristian Ohm	  - Sharkoon Drakonia / Perixx MX-2000 gaming mice
373d4f51890SChristian Ohm	  - Tracer Sniper TRM-503 / NOVA Gaming Slider X200 /
374d4f51890SChristian Ohm	    Zalman ZM-GM1
3757da7cbbbSAnders F. U. Kiær	  - SHARKOON DarkGlider Gaming mouse
376f1a4914bSAnders F. U. Kiær	  - LEETGION Hellion Gaming Mouse
377d946e65eSAnssi Hannula
378d946e65eSAnssi Hannulaconfig HOLTEK_FF
379d946e65eSAnssi Hannula	bool "Holtek On Line Grip force feedback support"
380d946e65eSAnssi Hannula	depends on HID_HOLTEK
381d946e65eSAnssi Hannula	select INPUT_FF_MEMLESS
382a7f7f624SMasahiro Yamada	help
383d946e65eSAnssi Hannula	  Say Y here if you have a Holtek On Line Grip based game controller
384d946e65eSAnssi Hannula	  and want to have force feedback support for it.
385d946e65eSAnssi Hannula
38633bbe04aSStephen Boydconfig HID_VIVALDI_COMMON
38733bbe04aSStephen Boyd	tristate
38833bbe04aSStephen Boyd	help
38933bbe04aSStephen Boyd	  ChromeOS Vivaldi HID parsing support library. This is a hidden
39033bbe04aSStephen Boyd	  option so that drivers can use common code to parse the HID
39133bbe04aSStephen Boyd	  descriptors for vivaldi function row keymap.
39233bbe04aSStephen Boyd
393bc774b8cSWei-Ning Huangconfig HID_GOOGLE_HAMMER
394bc774b8cSWei-Ning Huang	tristate "Google Hammer Keyboard"
395a9d67299SStephen Boyd	select HID_VIVALDI_COMMON
396a9d67299SStephen Boyd	select INPUT_VIVALDIFMAP
39747f11e0bSEnric Balletbo i Serra	depends on USB_HID && LEDS_CLASS && CROS_EC
398a7f7f624SMasahiro Yamada	help
399bc774b8cSWei-Ning Huang	Say Y here if you have a Google Hammer device.
400bc774b8cSWei-Ning Huang
40114c9c014SSean O'Brienconfig HID_VIVALDI
40214c9c014SSean O'Brien	tristate "Vivaldi Keyboard"
40333bbe04aSStephen Boyd	select HID_VIVALDI_COMMON
40445ceaf14SStephen Boyd	select INPUT_VIVALDIFMAP
40514c9c014SSean O'Brien	help
40614c9c014SSean O'Brien	  Say Y here if you want to enable support for Vivaldi keyboards.
40714c9c014SSean O'Brien
40814c9c014SSean O'Brien	  Vivaldi keyboards use a vendor-specific (Google) HID usage to report
40914c9c014SSean O'Brien	  how the keys in the top row are physically ordered.
41014c9c014SSean O'Brien
411f471d948SJanne Kanniainenconfig HID_GT683R
412f471d948SJanne Kanniainen	tristate "MSI GT68xR LED support"
413f471d948SJanne Kanniainen	depends on LEDS_CLASS && USB_HID
414a7f7f624SMasahiro Yamada	help
415f471d948SJanne Kanniainen	Say Y here if you want to enable support for the three MSI GT68xR LEDs
416f471d948SJanne Kanniainen
417f471d948SJanne Kanniainen	This driver support following modes:
418f471d948SJanne Kanniainen	  - Normal: LEDs are fully on when enabled
419f471d948SJanne Kanniainen	  - Audio:  LEDs brightness depends on sound level
420f471d948SJanne Kanniainen	  - Breathing: LEDs brightness varies at human breathing rate
421f471d948SJanne Kanniainen
422f471d948SJanne Kanniainen	Currently the following devices are know to be supported:
423f471d948SJanne Kanniainen	  - MSI GT683R
424f471d948SJanne Kanniainen
425177900e8SJiri Kosinaconfig HID_KEYTOUCH
4263d366e28SStephen Boyd	tristate "Keytouch HID devices"
427a7f7f624SMasahiro Yamada	help
428177900e8SJiri Kosina	Support for Keytouch HID devices not fully compliant with
429177900e8SJiri Kosina	the specification. Currently supported:
430177900e8SJiri Kosina		- Keytouch IEC 60945
431177900e8SJiri Kosina
43279422741SJiri Kosinaconfig HID_KYE
43322ca20b2SNikolai Kondrashov	tristate "KYE/Genius devices"
434a7f7f624SMasahiro Yamada	help
43522ca20b2SNikolai Kondrashov	Support for KYE/Genius devices not fully compliant with HID standard:
43622ca20b2SNikolai Kondrashov	- Ergo Mouse
43722ca20b2SNikolai Kondrashov	- EasyPen i405X tablet
43822ca20b2SNikolai Kondrashov	- MousePen i608X tablet
43922ca20b2SNikolai Kondrashov	- EasyPen M610X tablet
44079422741SJiri Kosina
441f8a489ccSNikolai Kondrashovconfig HID_UCLOGIC
442f36ee074SJiri Kosina	tristate "UC-Logic"
443bbb2d8a8SBenjamin Tissoires	depends on USB_HID
444a7f7f624SMasahiro Yamada	help
44508177f40SNikolai Kondrashov	Support for UC-Logic and Huion tablets.
446f8a489ccSNikolai Kondrashov
44772a46344SNikolai Kondrashovconfig HID_WALTOP
44872a46344SNikolai Kondrashov	tristate "Waltop"
449a7f7f624SMasahiro Yamada	help
45072a46344SNikolai Kondrashov	Support for Waltop tablets.
45172a46344SNikolai Kondrashov
4527c2af0a1SNikolai Kondrashovconfig HID_VIEWSONIC
4537c2af0a1SNikolai Kondrashov	tristate "ViewSonic/Signotec"
4547c2af0a1SNikolai Kondrashov	help
4557c2af0a1SNikolai Kondrashov	  Support for ViewSonic/Signotec PD1011 signature pad.
4567c2af0a1SNikolai Kondrashov
4572c5e8e61SMarcus Folkessonconfig HID_VRC2
4582c5e8e61SMarcus Folkesson	tristate "VRC-2 Car Controller"
4592c5e8e61SMarcus Folkesson	depends on HID
4602c5e8e61SMarcus Folkesson	help
4612c5e8e61SMarcus Folkesson        Support for VRC-2 which is a 2-axis controller often used in
4622c5e8e61SMarcus Folkesson        car simulators.
4632c5e8e61SMarcus Folkesson
4642c5e8e61SMarcus Folkesson        To compile this driver as a module, choose M here: the
4652c5e8e61SMarcus Folkesson        module will be called hid-vrc2.
4662c5e8e61SMarcus Folkesson
46795157723SIlya Skriblovskyconfig HID_XIAOMI
46895157723SIlya Skriblovsky	tristate "Xiaomi"
46995157723SIlya Skriblovsky	help
47095157723SIlya Skriblovsky	  Adds support for side buttons of Xiaomi Mi Dual Mode Wireless
47195157723SIlya Skriblovsky	  Mouse Silent Edition.
47295157723SIlya Skriblovsky
473949f8fefSJiri Slabyconfig HID_GYRATION
474a1043044SBorislav Petkov	tristate "Gyration remote control"
475a7f7f624SMasahiro Yamada	help
476f0bd8e43SJiri Kosina	Support for Gyration remote control.
477949f8fefSJiri Slaby
4784ddfe028SBastien Noceraconfig HID_ICADE
4794ddfe028SBastien Nocera	tristate "ION iCade arcade controller"
480a7f7f624SMasahiro Yamada	help
4814ddfe028SBastien Nocera	Support for the ION iCade arcade controller to work as a joystick.
4824ddfe028SBastien Nocera
4834ddfe028SBastien Nocera	To compile this driver as a module, choose M here: the
4844ddfe028SBastien Nocera	module will be called hid-icade.
4854ddfe028SBastien Nocera
486f1918be1SHans de Goedeconfig HID_ITE
487f1918be1SHans de Goede	tristate "ITE devices"
488f1918be1SHans de Goede	default !EXPERT
489a7f7f624SMasahiro Yamada	help
490f1918be1SHans de Goede	Support for ITE devices not fully compliant with HID standard.
491f1918be1SHans de Goede
49219ca2827SNiels Skou Olsenconfig HID_JABRA
49319ca2827SNiels Skou Olsen	tristate "Jabra USB HID Driver"
494a7f7f624SMasahiro Yamada	help
49519ca2827SNiels Skou Olsen	Support for Jabra USB HID devices.
49619ca2827SNiels Skou Olsen
49719ca2827SNiels Skou Olsen	Prevents mapping of vendor defined HID usages to input events. Without
49819ca2827SNiels Skou Olsen	this driver HID	reports from Jabra devices may incorrectly be seen as
49919ca2827SNiels Skou Olsen	mouse button events.
50019ca2827SNiels Skou Olsen	Say M here if you may ever plug in a Jabra USB device.
50119ca2827SNiels Skou Olsen
502711a680eSBruno Premontconfig HID_TWINHAN
503a1043044SBorislav Petkov	tristate "Twinhan IR remote control"
504a7f7f624SMasahiro Yamada	help
505711a680eSBruno Premont	Support for Twinhan IR remote control.
506711a680eSBruno Premont
507fdf93aa3SJiri Kosinaconfig HID_KENSINGTON
5087af05e73SJean Delvare	tristate "Kensington Slimblade Trackball"
5096a108a14SDavid Rientjes	default !EXPERT
510a7f7f624SMasahiro Yamada	help
511fdf93aa3SJiri Kosina	Support for Kensington Slimblade Trackball.
512fdf93aa3SJiri Kosina
51375b07022SChris Schlundconfig HID_LCPOWER
51475b07022SChris Schlund	tristate "LC-Power"
515a7f7f624SMasahiro Yamada	help
51675b07022SChris Schlund	Support for LC-Power RC1000MCE RF remote control.
51775b07022SChris Schlund
5186c7ad07eSHeiner Kallweitconfig HID_LED
51926423b84SJiri Kosina	tristate "Simple RGB LED support"
5206c7ad07eSHeiner Kallweit	depends on LEDS_CLASS
521a7f7f624SMasahiro Yamada	help
522007414e8SHeiner Kallweit	Support for simple RGB LED devices. Currently supported are:
523007414e8SHeiner Kallweit	- Riso Kagaku Webmail Notifier
524007414e8SHeiner Kallweit	- Dream Cheeky Webmail Notifier and Friends Alert
525007414e8SHeiner Kallweit	- ThingM blink(1)
526de908650SHeiner Kallweit	- Delcom Visual Signal Indicator Generation 2
5279d1e048cSHeiner Kallweit	- Greynut Luxafor
5286c7ad07eSHeiner Kallweit
5296c7ad07eSHeiner Kallweit	To compile this driver as a module, choose M here: the
5306c7ad07eSHeiner Kallweit	module will be called hid-led.
5316c7ad07eSHeiner Kallweit
53294723bfaSJamie Lentinconfig HID_LENOVO
53394723bfaSJamie Lentin	tristate "Lenovo / Thinkpad devices"
53425976a79SBryan Wu	select NEW_LEDS
535c1dcad2dSBernhard Seibold	select LEDS_CLASS
536a7f7f624SMasahiro Yamada	help
537a230cd52Spgzh	Support for IBM/Lenovo devices that are not fully compliant with HID standard.
538c1dcad2dSBernhard Seibold
539a230cd52Spgzh	Say Y if you want support for horizontal scrolling of the IBM/Lenovo
540a230cd52Spgzh	Scrollpoint mice or the non-compliant features of the Lenovo Thinkpad
541a230cd52Spgzh	standalone keyboards, e.g:
54294723bfaSJamie Lentin	- ThinkPad USB Keyboard with TrackPoint (supports extra LEDs and trackpoint
54394723bfaSJamie Lentin	  configuration)
544f3d4ff0eSJamie Lentin	- ThinkPad Compact Bluetooth Keyboard with TrackPoint (supports Fn keys)
545f3d4ff0eSJamie Lentin	- ThinkPad Compact USB Keyboard with TrackPoint (supports Fn keys)
546c1dcad2dSBernhard Seibold
54733a5c279SHans de Goedeconfig HID_LETSKETCH
54833a5c279SHans de Goede	tristate "Letsketch WP9620N tablets"
54933a5c279SHans de Goede	depends on USB_HID
55033a5c279SHans de Goede	help
55133a5c279SHans de Goede	  Driver for the LetSketch / VSON WP9620N drawing tablet. This
55233a5c279SHans de Goede	  drawing tablet is also sold under other brand names such as Case U,
55333a5c279SHans de Goede	  presumably this driver will work for all of them. But it has only been
55433a5c279SHans de Goede	  tested with a LetSketch WP9620N model.
55533a5c279SHans de Goede
55633a5c279SHans de Goede	  These tablets also work without a special HID driver, but then only
55733a5c279SHans de Goede	  part of the active area works and both the pad and stylus buttons are
55833a5c279SHans de Goede	  hardwired to special key-combos. E.g. the 2 stylus buttons send right
55933a5c279SHans de Goede	  mouse clicks / resp. "e" key presses.
56033a5c279SHans de Goede
5615f22a799SJiri Slabyconfig HID_LOGITECH
5627af05e73SJean Delvare	tristate "Logitech devices"
563f237d902SGreg Kroah-Hartman	depends on USB_HID
564bdd08fffSHans de Goede	depends on LEDS_CLASS
5656a108a14SDavid Rientjes	default !EXPERT
566a7f7f624SMasahiro Yamada	help
567f0bd8e43SJiri Kosina	Support for Logitech devices that are not fully compliant with HID standard.
5685f22a799SJiri Slaby
569534a7b8eSNestor Lopez Casadoconfig HID_LOGITECH_DJ
570c08ce255SFilipe Laíns	tristate "Logitech receivers full support"
571c08f38e9SBenjamin Tissoires	depends on USB_HID
572dcdc50e7SOlivier Gay	depends on HIDRAW
573534a7b8eSNestor Lopez Casado	depends on HID_LOGITECH
574ab94e562SBenjamin Tissoires	select HID_LOGITECH_HIDPP
575a7f7f624SMasahiro Yamada	help
576c08ce255SFilipe Laíns	Say Y if you want support for Logitech receivers and devices.
577c08ce255SFilipe Laíns	Logitech receivers are capable of pairing multiple Logitech compliant
5780944e964SKonstantin Khlebnikov	devices to the same receiver. Without this driver it will be handled by
579d82603c6SJorrit Schippers	generic USB_HID driver and all incoming events will be multiplexed
5800944e964SKonstantin Khlebnikov	into a single mouse and a single keyboard device.
581534a7b8eSNestor Lopez Casado
5822f31c525SBenjamin Tissoiresconfig HID_LOGITECH_HIDPP
5832f31c525SBenjamin Tissoires	tristate "Logitech HID++ devices support"
5842f31c525SBenjamin Tissoires	depends on HID_LOGITECH
585351744aaSArnd Bergmann	select POWER_SUPPLY
586a7f7f624SMasahiro Yamada	help
5872f31c525SBenjamin Tissoires	Support for Logitech devices relying on the HID++ Logitech specification
5882f31c525SBenjamin Tissoires
5892f31c525SBenjamin Tissoires	Say Y if you want support for Logitech devices relying on the HID++
5902f31c525SBenjamin Tissoires	specification. Such devices are the various Logitech Touchpads (T650,
5912f31c525SBenjamin Tissoires	T651, TK820), some mice (Zone Touch mouse), or even keyboards (Solar
59279bc33bdSGeert Uytterhoeven	Keyboard).
5932f31c525SBenjamin Tissoires
594606bd0a8SJiri Slabyconfig LOGITECH_FF
5950f6f4319SJiri Kosina	bool "Logitech force feedback support"
596606bd0a8SJiri Slaby	depends on HID_LOGITECH
597606bd0a8SJiri Slaby	select INPUT_FF_MEMLESS
598606bd0a8SJiri Slaby	help
599606bd0a8SJiri Slaby	  Say Y here if you have one of these devices:
600606bd0a8SJiri Slaby	  - Logitech WingMan Cordless RumblePad
601606bd0a8SJiri Slaby	  - Logitech WingMan Cordless RumblePad 2
602606bd0a8SJiri Slaby	  - Logitech WingMan Force 3D
603606bd0a8SJiri Slaby
604606bd0a8SJiri Slaby	  and if you want to enable force feedback for them.
605606bd0a8SJiri Slaby	  Note: if you say N here, this device will still be supported, but without
606606bd0a8SJiri Slaby	  force feedback.
607606bd0a8SJiri Slaby
608606bd0a8SJiri Slabyconfig LOGIRUMBLEPAD2_FF
609bd04363dSElias Vanderstuyft	bool "Logitech force feedback support (variant 2)"
610606bd0a8SJiri Slaby	depends on HID_LOGITECH
611606bd0a8SJiri Slaby	select INPUT_FF_MEMLESS
612606bd0a8SJiri Slaby	help
613bd04363dSElias Vanderstuyft	  Say Y here if you want to enable force feedback support for:
614bd04363dSElias Vanderstuyft	  - Logitech RumblePad
615bd04363dSElias Vanderstuyft	  - Logitech Rumblepad 2
616bd04363dSElias Vanderstuyft	  - Logitech Formula Vibration Feedback Wheel
617606bd0a8SJiri Slaby
61874f292caSGary Steinconfig LOGIG940_FF
61974f292caSGary Stein	bool "Logitech Flight System G940 force feedback support"
62074f292caSGary Stein	depends on HID_LOGITECH
62174f292caSGary Stein	select INPUT_FF_MEMLESS
62274f292caSGary Stein	help
62374f292caSGary Stein	  Say Y here if you want to enable force feedback support for Logitech
62474f292caSGary Stein	  Flight System G940 devices.
62574f292caSGary Stein
626a7ac90f1SMichal Malýconfig LOGIWHEELS_FF
627a7ac90f1SMichal Malý	bool "Logitech wheels configuration and force feedback support"
62832c88cbcSSimon Wood	depends on HID_LOGITECH
62932c88cbcSSimon Wood	select INPUT_FF_MEMLESS
63070c2cabdSJiri Kosina	default LOGITECH_FF
63132c88cbcSSimon Wood	help
632f777a3a7SSimon Wood	  Say Y here if you want to enable force feedback and range setting(*)
633a7ac90f1SMichal Malý	  support for following Logitech wheels:
634f777a3a7SSimon Wood	  - Logitech G25 (*)
635f777a3a7SSimon Wood	  - Logitech G27 (*)
636f777a3a7SSimon Wood	  - Logitech G29 (*)
637a7ac90f1SMichal Malý	  - Logitech Driving Force
638f777a3a7SSimon Wood	  - Logitech Driving Force Pro (*)
639f777a3a7SSimon Wood	  - Logitech Driving Force GT (*)
640f777a3a7SSimon Wood	  - Logitech Driving Force EX/RX
641f777a3a7SSimon Wood	  - Logitech Driving Force Wireless
642f777a3a7SSimon Wood	  - Logitech Speed Force Wireless
643f777a3a7SSimon Wood	  - Logitech MOMO Force
644f777a3a7SSimon Wood	  - Logitech MOMO Racing Force
645f777a3a7SSimon Wood	  - Logitech Formula Force GP
646f777a3a7SSimon Wood	  - Logitech Formula Force EX/RX
647f777a3a7SSimon Wood	  - Logitech Wingman Formula Force GP
64832c88cbcSSimon Wood
649128537ceSMichael Pooleconfig HID_MAGICMOUSE
650cdfee4ffSDavid King	tristate "Apple Magic Mouse/Trackpad multi-touch support"
651a7f7f624SMasahiro Yamada	help
652cdfee4ffSDavid King	Support for the Apple Magic Mouse/Trackpad multi-touch.
653128537ceSMichael Poole
654128537ceSMichael Poole	Say Y here if you want support for the multi-touch features of the
655cdfee4ffSDavid King	Apple Wireless "Magic" Mouse and the Apple Wireless "Magic" Trackpad.
656128537ceSMichael Poole
657af8cd70aSWilliam Whistlerconfig HID_MALTRON
658af8cd70aSWilliam Whistler	tristate "Maltron L90 keyboard"
659a7f7f624SMasahiro Yamada	help
660af8cd70aSWilliam Whistler	Adds support for the volume up, volume down, mute, and play/pause buttons
661af8cd70aSWilliam Whistler	of the Maltron L90 keyboard.
662af8cd70aSWilliam Whistler
663f8690450SMarcel Haslerconfig HID_MAYFLASH
664f8690450SMarcel Hasler	tristate "Mayflash game controller adapter force feedback"
665f8690450SMarcel Hasler	select INPUT_FF_MEMLESS
666a7f7f624SMasahiro Yamada	help
667f8690450SMarcel Hasler	Say Y here if you have HJZ Mayflash PS3 game controller adapters
668f8690450SMarcel Hasler	and want to enable force feedback support.
669f8690450SMarcel Hasler
67006be0d64Sfrank zagoconfig HID_MEGAWORLD_FF
67106be0d64Sfrank zago	tristate "Mega World based game controller force feedback support"
67206be0d64Sfrank zago	depends on USB_HID
67306be0d64Sfrank zago	select INPUT_FF_MEMLESS
67406be0d64Sfrank zago	help
67506be0d64Sfrank zago	Say Y here if you have a Mega World based game controller and want
67606be0d64Sfrank zago	to have force feedback support for it.
67706be0d64Sfrank zago
67885455dd9SRobert Munteanuconfig HID_REDRAGON
67985455dd9SRobert Munteanu	tristate "Redragon keyboards"
68085455dd9SRobert Munteanu	default !EXPERT
681a7f7f624SMasahiro Yamada	help
68285455dd9SRobert Munteanu    Support for Redragon keyboards that need fix-ups to work properly.
68385455dd9SRobert Munteanu
68478a849a6SJiri Slabyconfig HID_MICROSOFT
6857af05e73SJean Delvare	tristate "Microsoft non-fully HID-compliant devices"
6866a108a14SDavid Rientjes	default !EXPERT
687830e82aaSJiri Kosina	select INPUT_FF_MEMLESS
688a7f7f624SMasahiro Yamada	help
689f0bd8e43SJiri Kosina	Support for Microsoft devices that are not fully compliant with HID standard.
69078a849a6SJiri Slaby
6913b8006e5SJiri Slabyconfig HID_MONTEREY
6927af05e73SJean Delvare	tristate "Monterey Genius KB29E keyboard"
6936a108a14SDavid Rientjes	default !EXPERT
694a7f7f624SMasahiro Yamada	help
6953b8006e5SJiri Slaby	Support for Monterey Genius KB29E.
6963b8006e5SJiri Slaby
6975519cab4SBenjamin Tissoiresconfig HID_MULTITOUCH
6985519cab4SBenjamin Tissoires	tristate "HID Multitouch panels"
699a7f7f624SMasahiro Yamada	help
7005519cab4SBenjamin Tissoires	  Generic support for HID multitouch panels.
7015519cab4SBenjamin Tissoires
7025519cab4SBenjamin Tissoires	  Say Y here if you have one of the following devices:
703f786bba4SBenjamin Tissoires	  - 3M PCT touch screens
704e6aac342SBenjamin Tissoires	  - ActionStar dual touch panels
705b1057124SBenjamin Tissoires	  - Atmel panels
70622408283SBenjamin Tissoires	  - Cando dual touch panels
707942fd422SAustin Zhang	  - Chunghwa panels
708070f63b4SYang Bo	  - CJTouch panels
70979603dc9SBenjamin Tissoires	  - CVTouch panels
7102d93666eSBenjamin Tissoires	  - Cypress TrueTouch panels
711e02aea91SJan Matějka	  - Elan Microelectronics touch panels
712c04abeefSBenjamin Tissoires	  - Elo TouchSystems IntelliTouch Plus panels
71322408283SBenjamin Tissoires	  - GeneralTouch 'Sensing Win7-TwoFinger' panels
714ee0fbd14SBenjamin Tissoires	  - GoodTouch panels
7152d93666eSBenjamin Tissoires	  - Hanvon dual touch panels
71622408283SBenjamin Tissoires	  - Ilitek dual touch panels
7174dfcced8SBenjamin Tissoires	  - IrTouch Infrared USB panels
718c50bb1a4SJeff Brown	  - LG Display panels (Dell ST2220Tc)
719df167c4aSBenjamin Tissoires	  - Lumio CrystalTouch panels
7204a6ee685SBenjamin Tissoires	  - MosArt dual-touch panels
7212258e863SDenis Kovalev	  - Panasonic multitouch panels
7226ab3a9a6SJohn Sung	  - PenMount dual touch panels
723847672cdSBenjamin Tissoires	  - Perixx Peripad 701 touchpad
724b7ea95ffSAaron Tian	  - PixArt optical touch screen
7252d93666eSBenjamin Tissoires	  - Pixcir dual touch panels
7265e7ea11fSBenjamin Tissoires	  - Quanta panels
72722408283SBenjamin Tissoires	  - eGalax dual-touch panels, including the Joojoo and Wetab tablets
728a6802e00SForest Bond	  - SiS multitouch panels
729043b403aSBenjamin Tissoires	  - Stantum multitouch panels
7305e74e56dSBenjamin Tissoires	  - Touch International Panels
731617b64f9SBenjamin Tissoires	  - Unitec Panels
732bf9d121eSKaiChung Cheng	  - Wistron optical touch panels
733bc8a2a9bSice chien	  - XAT optical touch panels
73411576c61SMasatoshi Hoshikawa	  - Xiroku optical touch panels
735e9a09aedSBenjamin Tissoires	  - Zytronic touch panels
7365519cab4SBenjamin Tissoires
7372d93666eSBenjamin Tissoires	  If unsure, say N.
7382d93666eSBenjamin Tissoires
7392d93666eSBenjamin Tissoires	  To compile this driver as a module, choose M here: the
7402d93666eSBenjamin Tissoires	  module will be called hid-multitouch.
7412d93666eSBenjamin Tissoires
7422af16c1fSDaniel J. Ogorchockconfig HID_NINTENDO
7432af16c1fSDaniel J. Ogorchock	tristate "Nintendo Joy-Con and Pro Controller support"
744c5e62676SDaniel J. Ogorchock	depends on NEW_LEDS
745c5e62676SDaniel J. Ogorchock	depends on LEDS_CLASS
74608ebba5cSDaniel J. Ogorchock	select POWER_SUPPLY
7472af16c1fSDaniel J. Ogorchock	help
7482af16c1fSDaniel J. Ogorchock	Adds support for the Nintendo Switch Joy-Cons and Pro Controller.
7492af16c1fSDaniel J. Ogorchock	All controllers support bluetooth, and the Pro Controller also supports
7502af16c1fSDaniel J. Ogorchock	its USB mode.
7512af16c1fSDaniel J. Ogorchock
7522af16c1fSDaniel J. Ogorchock	To compile this driver as a module, choose M here: the
7532af16c1fSDaniel J. Ogorchock	module will be called hid-nintendo.
7542af16c1fSDaniel J. Ogorchock
755c4eae84fSDaniel J. Ogorchockconfig NINTENDO_FF
756c4eae84fSDaniel J. Ogorchock	bool "Nintendo Switch controller force feedback support"
757c4eae84fSDaniel J. Ogorchock	depends on HID_NINTENDO
758c4eae84fSDaniel J. Ogorchock	select INPUT_FF_MEMLESS
759c4eae84fSDaniel J. Ogorchock	help
760c4eae84fSDaniel J. Ogorchock	Say Y here if you have a Nintendo Switch controller and want to enable
761c4eae84fSDaniel J. Ogorchock	force feedback support for it. This works for both joy-cons and the pro
762c4eae84fSDaniel J. Ogorchock	controller. For the pro controller, both rumble motors can be controlled
763c4eae84fSDaniel J. Ogorchock	individually.
764c4eae84fSDaniel J. Ogorchock
76507e88a35SJonathan Tomerconfig HID_NTI
76607e88a35SJonathan Tomer	tristate "NTI keyboard adapters"
767a7f7f624SMasahiro Yamada	help
76807e88a35SJonathan Tomer	Support for the "extra" Sun keyboard keys on keyboards attached
76907e88a35SJonathan Tomer	through Network Technologies USB-SUN keyboard adapters.
77007e88a35SJonathan Tomer
77194011f93SRafi Rubinconfig HID_NTRIG
772a1043044SBorislav Petkov	tristate "N-Trig touch screen"
77394011f93SRafi Rubin	depends on USB_HID
774a7f7f624SMasahiro Yamada	help
77594011f93SRafi Rubin	Support for N-Trig touch screen.
77694011f93SRafi Rubin
777cd9ec30dSJohnathon Harrisconfig HID_ORTEK
778d586dca0SJiri Kosina	tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad"
779a7f7f624SMasahiro Yamada	help
780d586dca0SJiri Kosina	There are certain devices which have LogicalMaximum wrong in the keyboard
781d586dca0SJiri Kosina	usage page of their report descriptor. The most prevailing ones so far
782d586dca0SJiri Kosina	are manufactured by Ortek, thus the name of the driver. Currently
783d586dca0SJiri Kosina	supported devices by this driver are
784d586dca0SJiri Kosina
785d586dca0SJiri Kosina	   - Ortek PKB-1700
786d586dca0SJiri Kosina	   - Ortek WKB-2000
787d586dca0SJiri Kosina	   - Skycable wireless presenter
788cd9ec30dSJohnathon Harris
7895f022298SJiri Slabyconfig HID_PANTHERLORD
790a1043044SBorislav Petkov	tristate "Pantherlord/GreenAsia game controller"
791a7f7f624SMasahiro Yamada	help
7920f6f4319SJiri Kosina	  Say Y here if you have a PantherLord/GreenAsia based game controller
7930f6f4319SJiri Kosina	  or adapter.
7940f6f4319SJiri Kosina
7955f022298SJiri Slabyconfig PANTHERLORD_FF
7965f022298SJiri Slaby	bool "Pantherlord force feedback support"
7975f022298SJiri Slaby	depends on HID_PANTHERLORD
7985f022298SJiri Slaby	select INPUT_FF_MEMLESS
799a7f7f624SMasahiro Yamada	help
8005f022298SJiri Slaby	  Say Y here if you have a PantherLord/GreenAsia based game controller
8015f022298SJiri Slaby	  or adapter and want to enable force feedback support for it.
8025f022298SJiri Slaby
803ffe51d0dSChristian Gmeinerconfig HID_PENMOUNT
804ffe51d0dSChristian Gmeiner	tristate "Penmount touch device"
805ffe51d0dSChristian Gmeiner	depends on USB_HID
806a7f7f624SMasahiro Yamada	help
807ffe51d0dSChristian Gmeiner	  This selects a driver for the PenMount 6000 touch controller.
808ffe51d0dSChristian Gmeiner
809ffe51d0dSChristian Gmeiner	  The driver works around a problem in the report descript allowing
810ffe51d0dSChristian Gmeiner	  the userspace to touch events instead of mouse events.
811ffe51d0dSChristian Gmeiner
812ffe51d0dSChristian Gmeiner	  Say Y here if you have a Penmount based touch controller.
813ffe51d0dSChristian Gmeiner
8141e762532SJiri Slabyconfig HID_PETALYNX
815a1043044SBorislav Petkov	tristate "Petalynx Maxter remote control"
816a7f7f624SMasahiro Yamada	help
817f0bd8e43SJiri Kosina	Support for Petalynx Maxter remote control.
8181e762532SJiri Slaby
819236db47cSBruno Prémontconfig HID_PICOLCD
820236db47cSBruno Prémont	tristate "PicoLCD (graphic version)"
821a7f7f624SMasahiro Yamada	help
822236db47cSBruno Prémont	  This provides support for Minibox PicoLCD devices, currently
823236db47cSBruno Prémont	  only the graphical ones are supported.
824236db47cSBruno Prémont
825236db47cSBruno Prémont	  This includes support for the following device features:
826236db47cSBruno Prémont	  - Keypad
827236db47cSBruno Prémont	  - Switching between Firmware and Flash mode
8289bbf2b98SBruno Prémont	  - EEProm / Flash access     (via debugfs)
8295435f281SBruno Prémont	  Features selectively enabled:
8305435f281SBruno Prémont	  - Framebuffer for monochrome 256x64 display
8315435f281SBruno Prémont	  - Backlight control
8325435f281SBruno Prémont	  - Contrast control
8335435f281SBruno Prémont	  - General purpose outputs
834b8c21cf6SBruno Prémont	  Features that are not (yet) supported:
835236db47cSBruno Prémont	  - IR
836236db47cSBruno Prémont
8375435f281SBruno Prémontconfig HID_PICOLCD_FB
8386a108a14SDavid Rientjes	bool "Framebuffer support" if EXPERT
8396a108a14SDavid Rientjes	default !EXPERT
8405435f281SBruno Prémont	depends on HID_PICOLCD
8415435f281SBruno Prémont	depends on HID_PICOLCD=FB || FB=y
8425435f281SBruno Prémont	select FB_DEFERRED_IO
8435435f281SBruno Prémont	select FB_SYS_FILLRECT
8445435f281SBruno Prémont	select FB_SYS_COPYAREA
8455435f281SBruno Prémont	select FB_SYS_IMAGEBLIT
8465435f281SBruno Prémont	select FB_SYS_FOPS
847a7f7f624SMasahiro Yamada	help
8485435f281SBruno Prémont	  Provide access to PicoLCD's 256x64 monochrome display via a
8496b2aac42SMasanari Iida	  framebuffer device.
8505435f281SBruno Prémont
8515435f281SBruno Prémontconfig HID_PICOLCD_BACKLIGHT
8526a108a14SDavid Rientjes	bool "Backlight control" if EXPERT
8536a108a14SDavid Rientjes	default !EXPERT
8545435f281SBruno Prémont	depends on HID_PICOLCD
8555435f281SBruno Prémont	depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y
856a7f7f624SMasahiro Yamada	help
8575435f281SBruno Prémont	  Provide access to PicoLCD's backlight control via backlight
8585435f281SBruno Prémont	  class.
8595435f281SBruno Prémont
8605435f281SBruno Prémontconfig HID_PICOLCD_LCD
8616a108a14SDavid Rientjes	bool "Contrast control" if EXPERT
8626a108a14SDavid Rientjes	default !EXPERT
8635435f281SBruno Prémont	depends on HID_PICOLCD
8645435f281SBruno Prémont	depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y
865a7f7f624SMasahiro Yamada	help
8665435f281SBruno Prémont	  Provide access to PicoLCD's LCD contrast via lcd class.
8675435f281SBruno Prémont
8685435f281SBruno Prémontconfig HID_PICOLCD_LEDS
8696a108a14SDavid Rientjes	bool "GPO via leds class" if EXPERT
8706a108a14SDavid Rientjes	default !EXPERT
8715435f281SBruno Prémont	depends on HID_PICOLCD
8725435f281SBruno Prémont	depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y
873a7f7f624SMasahiro Yamada	help
8745435f281SBruno Prémont	  Provide access to PicoLCD's GPO pins via leds class.
8755435f281SBruno Prémont
876fabdbf2fSBruno Prémontconfig HID_PICOLCD_CIR
877fabdbf2fSBruno Prémont	bool "CIR via RC class" if EXPERT
878fabdbf2fSBruno Prémont	default !EXPERT
879fabdbf2fSBruno Prémont	depends on HID_PICOLCD
880fabdbf2fSBruno Prémont	depends on HID_PICOLCD=RC_CORE || RC_CORE=y
881a7f7f624SMasahiro Yamada	help
882fabdbf2fSBruno Prémont	  Provide access to PicoLCD's CIR interface via remote control (LIRC).
883fabdbf2fSBruno Prémont
8841a3f83f6SJD Coleconfig HID_PLANTRONICS
8851a3f83f6SJD Cole	tristate "Plantronics USB HID Driver"
886a7f7f624SMasahiro Yamada	help
88781bb773fSTerry Junge	  Provides HID support for Plantronics USB audio devices.
88881bb773fSTerry Junge	  Correctly maps vendor unique volume up/down HID usages to
88981bb773fSTerry Junge	  KEY_VOLUMEUP and KEY_VOLUMEDOWN events and prevents core mapping
89081bb773fSTerry Junge	  of other vendor unique HID usages to random mouse events.
89181bb773fSTerry Junge
89281bb773fSTerry Junge	  Say M here if you may ever plug in a Plantronics USB audio device.
8931a3f83f6SJD Cole
894bc2e15a9SRoderick Colenbranderconfig HID_PLAYSTATION
895bc2e15a9SRoderick Colenbrander	tristate "PlayStation HID Driver"
896d7f1f9feSJiri Kosina	depends on LEDS_CLASS_MULTICOLOR
897799b2b53SRoderick Colenbrander	select CRC32
898d30bca44SRoderick Colenbrander	select POWER_SUPPLY
899bc2e15a9SRoderick Colenbrander	help
900*0ee29814SRoderick Colenbrander	  Provides support for Sony PS4/PS5 controllers including support for
901bc2e15a9SRoderick Colenbrander	  its special functionalities e.g. touchpad, lights and motion
902bc2e15a9SRoderick Colenbrander	  sensors.
903bc2e15a9SRoderick Colenbrander
90451151098SRoderick Colenbranderconfig PLAYSTATION_FF
90551151098SRoderick Colenbrander	bool "PlayStation force feedback support"
90651151098SRoderick Colenbrander	depends on HID_PLAYSTATION
90751151098SRoderick Colenbrander	select INPUT_FF_MEMLESS
90851151098SRoderick Colenbrander	help
90951151098SRoderick Colenbrander	  Say Y here if you would like to enable force feedback support for
91051151098SRoderick Colenbrander	  PlayStation game controllers.
91151151098SRoderick Colenbrander
912acc3e346SMarcus Folkessonconfig HID_PXRC
913acc3e346SMarcus Folkesson       tristate "PhoenixRC HID Flight Controller"
914acc3e346SMarcus Folkesson       depends on HID
915acc3e346SMarcus Folkesson       help
916acc3e346SMarcus Folkesson       Support for PhoenixRC HID Flight Controller, a 8-axis flight controller.
917acc3e346SMarcus Folkesson
918acc3e346SMarcus Folkesson       To compile this driver as a module, choose M here: the
919acc3e346SMarcus Folkesson       module will be called hid-pxrc.
920acc3e346SMarcus Folkesson
921047b6188SJelle van der Waaconfig HID_RAZER
922047b6188SJelle van der Waa	tristate "Razer non-fully HID-compliant devices"
923047b6188SJelle van der Waa	help
924047b6188SJelle van der Waa	Support for Razer devices that are not fully compliant with the
925047b6188SJelle van der Waa	HID standard.
926047b6188SJelle van der Waa
927f6a04605STerry Lambertconfig HID_PRIMAX
928dfe9a312SJiri Kosina	tristate "Primax non-fully HID-compliant devices"
929a7f7f624SMasahiro Yamada	help
930f6a04605STerry Lambert	Support for Primax devices that are not fully compliant with the
931f6a04605STerry Lambert	HID standard.
932f6a04605STerry Lambert
93313b2e1baSBastien Noceraconfig HID_RETRODE
934fc5431dcSRandy Dunlap	tristate "Retrode 2 USB adapter for vintage video games"
93513b2e1baSBastien Nocera	depends on USB_HID
936a7f7f624SMasahiro Yamada	help
93713b2e1baSBastien Nocera	Support for
93813b2e1baSBastien Nocera	  * Retrode 2 cartridge and controller adapter
93913b2e1baSBastien Nocera
940206f5f2fSStefan Achatzconfig HID_ROCCAT
941bd393dbdSStefan Achatz	tristate "Roccat device support"
942206f5f2fSStefan Achatz	depends on USB_HID
943a7f7f624SMasahiro Yamada	help
944bd393dbdSStefan Achatz	Support for Roccat devices.
945bd393dbdSStefan Achatz	Say Y here if you have a Roccat mouse or keyboard and want
946bd393dbdSStefan Achatz	support for its special functionalities.
947cb7cf3daSStefan Achatz
9481e93674aSAndreas Hübnerconfig HID_SAITEK
9497bb9d643SVille Aakko	tristate "Saitek (Mad Catz) non-fully HID-compliant devices"
950a7f7f624SMasahiro Yamada	help
9511e93674aSAndreas Hübner	Support for Saitek devices that are not fully compliant with the
9521e93674aSAndreas Hübner	HID standard.
9531e93674aSAndreas Hübner
95437c492c8SHarald Brinkmann	Supported devices:
95537c492c8SHarald Brinkmann	- PS1000 Dual Analog Pad
9568ffd341cSHarald Brinkmann	- Saitek R.A.T.7, R.A.T.9, M.M.O.7 Gaming Mice
9578ffd341cSHarald Brinkmann	- Mad Catz R.A.T.5, R.A.T.9 Gaming Mice
9581e93674aSAndreas Hübner
959980a3da6SJiri Slabyconfig HID_SAMSUNG
960a1043044SBorislav Petkov	tristate "Samsung InfraRed remote control or keyboards"
961f237d902SGreg Kroah-Hartman	depends on USB_HID
962a7f7f624SMasahiro Yamada	help
963b355850bSDon Prince	Support for Samsung InfraRed remote control or keyboards.
964980a3da6SJiri Slaby
9656a012686SBenjamin Moodyconfig HID_SEMITEK
9666a012686SBenjamin Moody	tristate "Semitek USB keyboards"
9676a012686SBenjamin Moody	help
9686a012686SBenjamin Moody	Support for Semitek USB keyboards that are not fully compliant
9696a012686SBenjamin Moody	with the HID standard.
9706a012686SBenjamin Moody
9716a012686SBenjamin Moody	There are many variants, including:
9726a012686SBenjamin Moody	- GK61, GK64, GK68, GK84, GK96, etc.
9736a012686SBenjamin Moody	- SK61, SK64, SK68, SK84, SK96, etc.
9746a012686SBenjamin Moody	- Dierya DK61/DK66
9756a012686SBenjamin Moody	- Tronsmart TK09R
9766a012686SBenjamin Moody	- Woo-dy
9776a012686SBenjamin Moody	- X-Bows Nature/Knight
9786a012686SBenjamin Moody
97997673404SDesmond Limconfig HID_SIGMAMICRO
98097673404SDesmond Lim	tristate "SiGma Micro-based keyboards"
98197673404SDesmond Lim	depends on USB_HID
98297673404SDesmond Lim	help
98397673404SDesmond Lim	  Support for keyboards that use the SiGma Micro (a.k.a SigmaChip) IC.
98497673404SDesmond Lim
98597673404SDesmond Lim	  Supported devices:
98697673404SDesmond Lim	  - Landslides KR-700
98797673404SDesmond Lim	  - Rapoo V500
98897673404SDesmond Lim
989bd28ce00SJiri Slabyconfig HID_SONY
990e4321c5cSFrank Praznik	tristate "Sony PS2/3/4 accessories"
991bd28ce00SJiri Slaby	depends on USB_HID
99240e32ee6SJiri Kosina	depends on NEW_LEDS
99340e32ee6SJiri Kosina	depends on LEDS_CLASS
994695baaa7SJiri Kosina	select POWER_SUPPLY
995273435a1SArnd Bergmann	select CRC32
996a7f7f624SMasahiro Yamada	help
997f04d5140SColin Leitner	Support for
9985844c1cdSDavid Dillow
999f04d5140SColin Leitner	  * Sony PS3 6-axis controllers
1000e4321c5cSFrank Praznik	  * Sony PS4 DualShock 4 controllers
1001f04d5140SColin Leitner	  * Buzz controllers
1002078328daSJiri Kosina	  * Sony PS3 Blue-ray Disk Remote Control (Bluetooth)
1003078328daSJiri Kosina	  * Logitech Harmony adapter for Sony Playstation 3 (Bluetooth)
1004a4bfe13fSDaniel Nguyen	  * Guitar Hero Live PS3, Wii U and PS4 guitar dongles
100532e411d0SSanjay Govind	  * Guitar Hero PS3 and PC guitar dongles
1006bd28ce00SJiri Slaby
1007a08c22c0SSven Eckelmannconfig SONY_FF
1008e4321c5cSFrank Praznik	bool "Sony PS2/3/4 accessories force feedback support"
1009a08c22c0SSven Eckelmann	depends on HID_SONY
1010a08c22c0SSven Eckelmann	select INPUT_FF_MEMLESS
1011a7f7f624SMasahiro Yamada	help
1012e4321c5cSFrank Praznik	Say Y here if you have a Sony PS2/3/4 accessory and want to enable
1013e4321c5cSFrank Praznik	force feedback support for it.
1014a08c22c0SSven Eckelmann
101574bc6953SStefan Kriwanekconfig HID_SPEEDLINK
101674bc6953SStefan Kriwanek	tristate "Speedlink VAD Cezanne mouse support"
1017a7f7f624SMasahiro Yamada	help
101874bc6953SStefan Kriwanek	Support for Speedlink Vicious and Divine Cezanne mouse.
101974bc6953SStefan Kriwanek
1020c164d6abSRodrigo Rivas Costaconfig HID_STEAM
1021c164d6abSRodrigo Rivas Costa	tristate "Steam Controller support"
10224b64487fSArnd Bergmann	select POWER_SUPPLY
1023a7f7f624SMasahiro Yamada	help
1024c164d6abSRodrigo Rivas Costa	Say Y here if you have a Steam Controller if you want to use it
1025c164d6abSRodrigo Rivas Costa	without running the Steam Client. It supports both the wired and
1026c164d6abSRodrigo Rivas Costa	the wireless adaptor.
1027c164d6abSRodrigo Rivas Costa
1028090800c2SJiri Kosinaconfig HID_STEELSERIES
102975dbb953SSimon Wood	tristate "Steelseries SRW-S1 steering wheel support"
1030a7f7f624SMasahiro Yamada	help
103175dbb953SSimon Wood	Support for Steelseries SRW-S1 steering wheel
103275dbb953SSimon Wood
103390231e7eSJiri Slabyconfig HID_SUNPLUS
1034a1043044SBorislav Petkov	tristate "Sunplus wireless desktop"
1035a7f7f624SMasahiro Yamada	help
1036f0bd8e43SJiri Kosina	Support for Sunplus wireless desktop.
103790231e7eSJiri Slaby
10389fb6bf02SBenjamin Tissoiresconfig HID_RMI
10399fb6bf02SBenjamin Tissoires	tristate "Synaptics RMI4 device support"
10400b2c7a89SAndrew Duggan	select RMI4_CORE
10410b2c7a89SAndrew Duggan	select RMI4_F03
10420b2c7a89SAndrew Duggan	select RMI4_F11
10430b2c7a89SAndrew Duggan	select RMI4_F12
10440b2c7a89SAndrew Duggan	select RMI4_F30
1045a7f7f624SMasahiro Yamada	help
10469fb6bf02SBenjamin Tissoires	Support for Synaptics RMI4 touchpads.
10479fb6bf02SBenjamin Tissoires	Say Y here if you have a Synaptics RMI4 touchpads over i2c-hid or usbhid
10489fb6bf02SBenjamin Tissoires	and want support for its special functionalities.
10499fb6bf02SBenjamin Tissoires
10500f6f4319SJiri Kosinaconfig HID_GREENASIA
1051a1043044SBorislav Petkov	tristate "GreenAsia (Product ID 0x12) game controller support"
1052a7f7f624SMasahiro Yamada	help
10530f6f4319SJiri Kosina	  Say Y here if you have a GreenAsia (Product ID 0x12) based game
10540f6f4319SJiri Kosina	  controller or adapter.
10550f6f4319SJiri Kosina
10560f6f4319SJiri Kosinaconfig GREENASIA_FF
10570f6f4319SJiri Kosina	bool "GreenAsia (Product ID 0x12) force feedback support"
10580f6f4319SJiri Kosina	depends on HID_GREENASIA
105942859e0bSLukasz Lubojanski	select INPUT_FF_MEMLESS
1060a7f7f624SMasahiro Yamada	help
106142859e0bSLukasz Lubojanski	Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
1062692105b8SMatt LaPlante	(like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
106342859e0bSLukasz Lubojanski	and want to enable force feedback support for it.
106442859e0bSLukasz Lubojanski
10656cf851d8SJiri Kosinaconfig HID_HYPERV_MOUSE
10666cf851d8SJiri Kosina	tristate "Microsoft Hyper-V mouse driver"
10676cf851d8SJiri Kosina	depends on HYPERV
1068a7f7f624SMasahiro Yamada	help
10696cf851d8SJiri Kosina	Select this option to enable the Hyper-V mouse driver.
10706cf851d8SJiri Kosina
1071fac733f0SJussi Kivilinnaconfig HID_SMARTJOYPLUS
107273d5e8f7SJiri Kosina	tristate "SmartJoy PLUS PS2/USB adapter support"
1073a7f7f624SMasahiro Yamada	help
10741bcc2067SSean Young	Support for SmartJoy PLUS PS2/USB adapter, Super Dual Box,
10751bcc2067SSean Young	Super Joy Box 3 Pro, Super Dual Box Pro, and Super Joy Box 5 Pro.
10761bcc2067SSean Young
10771bcc2067SSean Young	Note that DDR (Dance Dance Revolution) mode is not supported, nor
10781bcc2067SSean Young	is pressure sensitive buttons on the pro models.
1079fac733f0SJussi Kivilinna
1080fac733f0SJussi Kivilinnaconfig SMARTJOYPLUS_FF
1081fac733f0SJussi Kivilinna	bool "SmartJoy PLUS PS2/USB adapter force feedback support"
1082fac733f0SJussi Kivilinna	depends on HID_SMARTJOYPLUS
1083fac733f0SJussi Kivilinna	select INPUT_FF_MEMLESS
1084a7f7f624SMasahiro Yamada	help
1085fac733f0SJussi Kivilinna	Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to
1086fac733f0SJussi Kivilinna	enable force feedback support for it.
1087fac733f0SJussi Kivilinna
10882701eaabSJiri Kosinaconfig HID_TIVO
108944ea35c1SJarod Wilson	tristate "TiVo Slide Bluetooth remote control support"
1090a7f7f624SMasahiro Yamada	help
109144ea35c1SJarod Wilson	Say Y if you have a TiVo Slide Bluetooth remote control.
109244ea35c1SJarod Wilson
1093f14f526dSLev Babievconfig HID_TOPSEED
109454001081SKees Bakker	tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support"
1095a7f7f624SMasahiro Yamada	help
109654001081SKees Bakker	Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic
109754001081SKees Bakker	CLLRCMCE remote control.
1098f14f526dSLev Babiev
1099a109d5c4SHarry Sternconfig HID_TOPRE
1100a109d5c4SHarry Stern	tristate "Topre REALFORCE keyboards"
1101a109d5c4SHarry Stern	depends on HID
1102a109d5c4SHarry Stern	help
1103a109d5c4SHarry Stern	  Say Y for N-key rollover support on Topre REALFORCE R2 108 key keyboards.
1104a109d5c4SHarry Stern
110530ba2fbdSVivien Didelotconfig HID_THINGM
110630ba2fbdSVivien Didelot	tristate "ThingM blink(1) USB RGB LED"
110730ba2fbdSVivien Didelot	depends on LEDS_CLASS
110838b09c03SHeiner Kallweit	select HID_LED
1109a7f7f624SMasahiro Yamada	help
111038b09c03SHeiner Kallweit	Support for the ThingM blink(1) USB RGB LED. This driver has been
111138b09c03SHeiner Kallweit	merged into the generic hid led driver. Config symbol HID_THINGM
111238b09c03SHeiner Kallweit	just selects HID_LED and will be removed soon.
111330ba2fbdSVivien Didelot
11140f6f4319SJiri Kosinaconfig HID_THRUSTMASTER
111573d5e8f7SJiri Kosina	tristate "ThrustMaster devices support"
1116dfe74f55SJiri Kosina	depends on USB_HID
1117a7f7f624SMasahiro Yamada	help
1118c49c3363SDario Pagani	  Say Y here if you have a THRUSTMASTER FireStore Dual Power 2,
1119c49c3363SDario Pagani	  a THRUSTMASTER Ferrari GT Rumble Wheel or Thrustmaster FFB
1120c49c3363SDario Pagani	  Wheel (T150RS, T300RS, T300 Ferrari Alcantara Edition, T500RS).
11210f6f4319SJiri Kosina
11220f6f4319SJiri Kosinaconfig THRUSTMASTER_FF
11230f6f4319SJiri Kosina	bool "ThrustMaster devices force feedback support"
11240f6f4319SJiri Kosina	depends on HID_THRUSTMASTER
11250f6f4319SJiri Kosina	select INPUT_FF_MEMLESS
1126a7f7f624SMasahiro Yamada	help
11277a84b133SRuben Aos Garralda	  Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3,
11287a84b133SRuben Aos Garralda	  a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT
11297a84b133SRuben Aos Garralda	  Rumble Force or Force Feedback Wheel.
113010e41a71SJiri Slaby
11310edffe65SBastien Noceraconfig HID_UDRAW_PS3
11320edffe65SBastien Nocera	tristate "THQ PS3 uDraw tablet"
1133a7f7f624SMasahiro Yamada	help
11340edffe65SBastien Nocera	  Say Y here if you want to use the THQ uDraw gaming tablet for
11350edffe65SBastien Nocera	  the PS3.
11360edffe65SBastien Nocera
113742337b9dSAndrej Shaduraconfig HID_U2FZERO
113842337b9dSAndrej Shadura	tristate "U2F Zero LED and RNG support"
113942337b9dSAndrej Shadura	depends on USB_HID
114042337b9dSAndrej Shadura	depends on LEDS_CLASS
1141e252e0e0SMao Wenan	depends on HW_RANDOM
114242337b9dSAndrej Shadura	help
114342337b9dSAndrej Shadura	  Support for the LED of the U2F Zero device.
114442337b9dSAndrej Shadura
114542337b9dSAndrej Shadura	  U2F Zero supports custom commands for blinking the LED
114642337b9dSAndrej Shadura	  and getting data from the internal hardware RNG.
114742337b9dSAndrej Shadura	  The internal hardware can be used to feed the enthropy pool.
114842337b9dSAndrej Shadura
114942337b9dSAndrej Shadura	  U2F Zero only supports blinking its LED, so this driver doesn't
115042337b9dSAndrej Shadura	  allow setting the brightness to anything but 1, which will
1151ad81d1c8SGeert Uytterhoeven	  trigger a single blink and immediately reset back to 0.
115242337b9dSAndrej Shadura
1153ca2dcd40SBastien Noceraconfig HID_WACOM
1154471d1714SBenjamin Tissoires	tristate "Wacom Intuos/Graphire tablet support (USB)"
11559d14201cSArnd Bergmann	depends on USB_HID
115659d2334aSPrzemo Firszt	select POWER_SUPPLY
1157471d1714SBenjamin Tissoires	select NEW_LEDS
1158471d1714SBenjamin Tissoires	select LEDS_CLASS
115934736aa9SBenjamin Tissoires	select LEDS_TRIGGERS
1160471d1714SBenjamin Tissoires	help
11617403a6a4SBenjamin Tissoires	  Say Y here if you want to use the USB or BT version of the Wacom Intuos
1162471d1714SBenjamin Tissoires	  or Graphire tablet.
1163471d1714SBenjamin Tissoires
1164471d1714SBenjamin Tissoires	  To compile this driver as a module, choose M here: the
1165471d1714SBenjamin Tissoires	  module will be called wacom.
116659d2334aSPrzemo Firszt
1167fb51b443SDavid Herrmannconfig HID_WIIMOTE
116892eda7e4SDavid Herrmann	tristate "Nintendo Wii / Wii U peripherals"
116923a5a4a3SDavid Herrmann	depends on LEDS_CLASS
11706591d758SDavid Herrmann	select POWER_SUPPLY
1171ef6f4115SDavid Herrmann	select INPUT_FF_MEMLESS
1172a7f7f624SMasahiro Yamada	help
117392eda7e4SDavid Herrmann	Support for Nintendo Wii and Wii U Bluetooth peripherals. Supported
117492eda7e4SDavid Herrmann	devices are the Wii Remote and its extension devices, but also devices
117592eda7e4SDavid Herrmann	based on the Wii Remote like the Wii U Pro Controller or the
117692eda7e4SDavid Herrmann	Wii Balance Board.
1177fb51b443SDavid Herrmann
117892eda7e4SDavid Herrmann	Support for all official Nintendo extensions is available, however, 3rd
117992eda7e4SDavid Herrmann	party extensions might not be supported. Please report these devices to:
118092eda7e4SDavid Herrmann	  http://github.com/dvdhrm/xwiimote/issues
118192eda7e4SDavid Herrmann
118292eda7e4SDavid Herrmann	Other Nintendo Wii U peripherals that are IEEE 802.11 based (including
118392eda7e4SDavid Herrmann	the Wii U Gamepad) might be supported in the future. But currently
118492eda7e4SDavid Herrmann	support is limited to Bluetooth based devices.
118592eda7e4SDavid Herrmann
118692eda7e4SDavid Herrmann	If unsure, say N.
118792eda7e4SDavid Herrmann
118892eda7e4SDavid Herrmann	To compile this driver as a module, choose M here: the
118992eda7e4SDavid Herrmann	module will be called hid-wiimote.
1190cb99221bSDavid Herrmann
1191cb2c9e3fSOlivier Scherlerconfig HID_XINMO
1192cb2c9e3fSOlivier Scherler	tristate "Xin-Mo non-fully compliant devices"
1193a7f7f624SMasahiro Yamada	help
1194cb2c9e3fSOlivier Scherler	Support for Xin-Mo devices that are not fully compliant with the HID
1195e2c76a8bSBrian Norris	standard. Currently only supports the Xin-Mo Dual Arcade. Say Y here
1196cb2c9e3fSOlivier Scherler	if you have a Xin-Mo Dual Arcade controller.
1197cb2c9e3fSOlivier Scherler
11980f6f4319SJiri Kosinaconfig HID_ZEROPLUS
119973d5e8f7SJiri Kosina	tristate "Zeroplus based game controller support"
1200a7f7f624SMasahiro Yamada	help
1201987fbc1fSJiri Slaby	  Say Y here if you have a Zeroplus based game controller.
1202987fbc1fSJiri Slaby
12030f6f4319SJiri Kosinaconfig ZEROPLUS_FF
12040f6f4319SJiri Kosina	bool "Zeroplus based game controller force feedback support"
12050f6f4319SJiri Kosina	depends on HID_ZEROPLUS
12060f6f4319SJiri Kosina	select INPUT_FF_MEMLESS
1207a7f7f624SMasahiro Yamada	help
12080f6f4319SJiri Kosina	  Say Y here if you have a Zeroplus based game controller and want
12090f6f4319SJiri Kosina	  to have force feedback support for it.
12100f6f4319SJiri Kosina
1211a9885c8fSDon Princeconfig HID_ZYDACRON
121273d5e8f7SJiri Kosina	tristate "Zydacron remote control support"
1213a7f7f624SMasahiro Yamada	help
1214a9885c8fSDon Prince	Support for Zydacron remote control.
1215a9885c8fSDon Prince
1216401ca24fSsrinivas pandruvadaconfig HID_SENSOR_HUB
1217401ca24fSsrinivas pandruvada	tristate "HID Sensors framework support"
12188272a51dSRandy Dunlap	depends on HAS_IOMEM
1219401ca24fSsrinivas pandruvada	select MFD_CORE
1220401ca24fSsrinivas pandruvada	default n
1221a7f7f624SMasahiro Yamada	help
1222401ca24fSsrinivas pandruvada	  Support for HID Sensor framework. This creates a MFD instance
1223401ca24fSsrinivas pandruvada	  for a sensor hub and identifies all the sensors connected to it.
1224401ca24fSsrinivas pandruvada	  Each sensor is registered as a MFD cell, so that sensor specific
1225401ca24fSsrinivas pandruvada	  processing can be done in a separate driver. Each sensor
1226401ca24fSsrinivas pandruvada	  drivers can use the service provided by this driver to register
1227401ca24fSsrinivas pandruvada	  for events and handle data streams. Each sensor driver can format
1228401ca24fSsrinivas pandruvada	  data and present to user mode using input or IIO interface.
1229401ca24fSsrinivas pandruvada
12304a7de051SSrinivas Pandruvadaconfig HID_SENSOR_CUSTOM_SENSOR
12314a7de051SSrinivas Pandruvada	tristate "HID Sensors hub custom sensor support"
12324a7de051SSrinivas Pandruvada	depends on HID_SENSOR_HUB
12334a7de051SSrinivas Pandruvada	default n
1234a7f7f624SMasahiro Yamada	help
12354a7de051SSrinivas Pandruvada	  HID Sensor hub specification allows definition of some custom and
12364a7de051SSrinivas Pandruvada	  generic sensors. Unlike other HID sensors, they can't be exported
12374a7de051SSrinivas Pandruvada	  via Linux IIO because of custom fields. This is up to the manufacturer
12384a7de051SSrinivas Pandruvada	  to decide how to interpret these special sensor ids and process in
12394a7de051SSrinivas Pandruvada	  the user space. Currently some manufacturers are using these ids for
12404a7de051SSrinivas Pandruvada	  sensor calibration and debugging other sensors. Manufacturers
124116863fbcSChristophe JAILLET	  shouldn't use these special custom sensor ids to export any of the
12424a7de051SSrinivas Pandruvada	  standard sensors.
12434a7de051SSrinivas Pandruvada	  Select this config option for custom/generic sensor support.
12444a7de051SSrinivas Pandruvada
12452562756dSMasaki Otaconfig HID_ALPS
12462562756dSMasaki Ota	tristate "Alps HID device support"
1247a7f7f624SMasahiro Yamada	help
12482562756dSMasaki Ota	Support for Alps I2C HID touchpads and StickPointer.
12492562756dSMasaki Ota	Say Y here if you have a Alps touchpads over i2c-hid or usbhid
12502562756dSMasaki Ota	and want support for its special functionalities.
12512562756dSMasaki Ota
125267a95c21SRishi Guptaconfig HID_MCP2221
125367a95c21SRishi Gupta	tristate "Microchip MCP2221 HID USB-to-I2C/SMbus host support"
125467a95c21SRishi Gupta	depends on USB_HID && I2C
1255ea418b35SMatt Ranostay	imply GPIOLIB
1256960f9df7SMatt Ranostay	imply IIO
1257a7f7f624SMasahiro Yamada	help
125867a95c21SRishi Gupta	Provides I2C and SMBUS host adapter functionality over USB-HID
125967a95c21SRishi Gupta	through MCP2221 device.
126067a95c21SRishi Gupta
126167a95c21SRishi Gupta	To compile this driver as a module, choose M here: the module
126267a95c21SRishi Gupta	will be called hid-mcp2221.ko.
126367a95c21SRishi Gupta
12642d167aabSJosé Expósitoconfig HID_KUNIT_TEST
126508809e48SJosé Expósito	tristate "KUnit tests for HID" if !KUNIT_ALL_TESTS
12662d167aabSJosé Expósito	depends on KUNIT=y
12672d167aabSJosé Expósito	depends on HID_UCLOGIC
12682d167aabSJosé Expósito	default KUNIT_ALL_TESTS
12692d167aabSJosé Expósito	help
12702d167aabSJosé Expósito	  This builds unit tests for HID. This option is not useful for
12712d167aabSJosé Expósito	  distributions or general kernels, but only for kernel
12722d167aabSJosé Expósito	  developers working on HID and associated drivers.
12732d167aabSJosé Expósito
12742d167aabSJosé Expósito	  For more information on KUnit and unit tests in general,
12752d167aabSJosé Expósito	  please refer to the KUnit documentation in
12762d167aabSJosé Expósito	  Documentation/dev-tools/kunit/.
12772d167aabSJosé Expósito
12782d167aabSJosé Expósito	  If in doubt, say "N".
12792d167aabSJosé Expósito
12805f22a799SJiri Slabyendmenu
12815f22a799SJiri Slaby
12821f41a6a9SHenrik Rydbergendif # HID
12831f41a6a9SHenrik Rydberg
12841f41a6a9SHenrik Rydbergsource "drivers/hid/usbhid/Kconfig"
12851f41a6a9SHenrik Rydberg
12864a200c3bSBenjamin Tissoiressource "drivers/hid/i2c-hid/Kconfig"
12874a200c3bSBenjamin Tissoires
12883703f53bSSrinivas Pandruvadasource "drivers/hid/intel-ish-hid/Kconfig"
12893703f53bSSrinivas Pandruvada
12904f567b9fSSandeep Singhsource "drivers/hid/amd-sfh-hid/Kconfig"
12914f567b9fSSandeep Singh
1292b05ff100SMaximilian Luzsource "drivers/hid/surface-hid/Kconfig"
1293b05ff100SMaximilian Luz
12941f41a6a9SHenrik Rydbergendmenu
1295