xref: /linux/drivers/hid/Kconfig (revision 9fb6bf02e3ad04c20edb8e46536ce3eeda32c736)
163f3861dSJiri Kosina#
263f3861dSJiri Kosina# HID driver configuration
363f3861dSJiri Kosina#
41f41a6a9SHenrik Rydbergmenu "HID support"
563f3861dSJiri Kosina     depends on INPUT
663f3861dSJiri Kosina
763f3861dSJiri Kosinaconfig HID
81f41a6a9SHenrik Rydberg	tristate "HID bus support"
9c96c9d7bSRussell King	depends on INPUT
1063f3861dSJiri Kosina	default y
1163f3861dSJiri Kosina	---help---
1269e4d948SJiri Kosina	  A human interface device (HID) is a type of computer device that
1369e4d948SJiri Kosina	  interacts directly with and takes input from humans. The term "HID"
1469e4d948SJiri Kosina	  most commonly used to refer to the USB-HID specification, but other
1569e4d948SJiri Kosina	  devices (such as, but not strictly limited to, Bluetooth) are
1669e4d948SJiri Kosina	  designed using HID specification (this involves certain keyboards,
171f41a6a9SHenrik Rydberg	  mice, tablets, etc). This option adds the HID bus to the kernel,
181f41a6a9SHenrik Rydberg	  together with generic HID layer code. The HID devices are added and
191f41a6a9SHenrik Rydberg	  removed from the HID bus by the transport-layer drivers, such as
201f41a6a9SHenrik Rydberg	  usbhid (USB_HID) and hidp (BT_HIDP).
2169e4d948SJiri Kosina
2269e4d948SJiri Kosina	  For docs and specs, see http://www.usb.org/developers/hidpage/
2369e4d948SJiri Kosina
24205adbecSPavel Machek	  If unsure, say Y.
2563f3861dSJiri Kosina
261f41a6a9SHenrik Rydbergif HID
271f41a6a9SHenrik Rydberg
284f5ca836SJeremy Fitzhardingeconfig HID_BATTERY_STRENGTH
29692d30d6SJiri Kosina	bool "Battery level reporting for HID devices"
30d66c266aSJiri Kosina	depends on HID && POWER_SUPPLY && HID = POWER_SUPPLY
312198edddSJosh Boyer	default n
32692d30d6SJiri Kosina	---help---
33692d30d6SJiri Kosina	This option adds support of reporting battery strength (for HID devices
34692d30d6SJiri Kosina	that support this feature) through power_supply class so that userspace
35692d30d6SJiri Kosina	tools, such as upower, can display it.
364f5ca836SJeremy Fitzhardinge
3786166b7bSJiri Kosinaconfig HIDRAW
3886166b7bSJiri Kosina	bool "/dev/hidraw raw HID device support"
3986166b7bSJiri Kosina	depends on HID
4086166b7bSJiri Kosina	---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
4386166b7bSJiri Kosina	devices, like monitor controls and Uninterruptable 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	depends on HID
591ccd7a2aSDavid Herrmann	default n
601ccd7a2aSDavid Herrmann	---help---
611ccd7a2aSDavid Herrmann	Say Y here if you want to provide HID I/O Drivers from user-space.
621ccd7a2aSDavid Herrmann	This allows to write I/O drivers in user-space and feed the data from
631ccd7a2aSDavid Herrmann	the device into the kernel. The kernel parses the HID reports, loads the
641ccd7a2aSDavid Herrmann	corresponding HID Device Driver or provides input devices on top of your
651ccd7a2aSDavid Herrmann	user-space device.
661ccd7a2aSDavid Herrmann
671ccd7a2aSDavid Herrmann	This driver cannot be used to parse HID-reports in user-space and write
681ccd7a2aSDavid Herrmann	special HID-drivers. You should use hidraw for that.
691ccd7a2aSDavid Herrmann	Instead, this driver allows to write the transport-layer driver in
701ccd7a2aSDavid Herrmann	user-space like USB-HID and Bluetooth-HID do in kernel-space.
711ccd7a2aSDavid Herrmann
721ccd7a2aSDavid Herrmann	If unsure, say N.
731ccd7a2aSDavid Herrmann
741ccd7a2aSDavid Herrmann	To compile this driver as a module, choose M here: the
751ccd7a2aSDavid Herrmann	module will be called uhid.
761ccd7a2aSDavid Herrmann
778215d557SHenrik Rydbergconfig HID_GENERIC
788215d557SHenrik Rydberg	tristate "Generic HID driver"
798215d557SHenrik Rydberg	depends on HID
801f41a6a9SHenrik Rydberg	default HID
818215d557SHenrik Rydberg	---help---
821f41a6a9SHenrik Rydberg	Support for generic devices on the HID bus. This includes most
831f41a6a9SHenrik Rydberg	keyboards and mice, joysticks, tablets and digitizers.
848215d557SHenrik Rydberg
858215d557SHenrik Rydberg	To compile this driver as a module, choose M here: the module
868215d557SHenrik Rydberg	will be called hid-generic.
878215d557SHenrik Rydberg
888215d557SHenrik Rydberg	If unsure, say Y.
898215d557SHenrik Rydberg
901f41a6a9SHenrik Rydbergmenu "Special HID drivers"
911f41a6a9SHenrik Rydberg	depends on HID
921f41a6a9SHenrik Rydberg
9314a21cd4SJiri Slabyconfig HID_A4TECH
946a108a14SDavid Rientjes	tristate "A4 tech mice" if EXPERT
95f3757ceaSBenjamin Tissoires	depends on HID
966a108a14SDavid Rientjes	default !EXPERT
9714a21cd4SJiri Slaby	---help---
9814a21cd4SJiri Slaby	Support for A4 tech X5 and WOP-35 / Trust 450L mice.
9914a21cd4SJiri Slaby
1000ae43810SDmitry Torokhovconfig HID_ACRUX
1010ae43810SDmitry Torokhov	tristate "ACRUX game controller support"
102d8814272SBenjamin Tissoires	depends on HID
1030ae43810SDmitry Torokhov	---help---
1040ae43810SDmitry Torokhov	Say Y here if you want to enable support for ACRUX game controllers.
1050ae43810SDmitry Torokhov
1060ae43810SDmitry Torokhovconfig HID_ACRUX_FF
107364b936fSSergei Kolzun	bool "ACRUX force feedback support"
1080ae43810SDmitry Torokhov	depends on HID_ACRUX
109c0dbcc33SSergei Kolzun	select INPUT_FF_MEMLESS
110c0dbcc33SSergei Kolzun	---help---
111c0dbcc33SSergei Kolzun	Say Y here if you want to enable force feedback support for ACRUX
112c0dbcc33SSergei Kolzun	game controllers.
113c0dbcc33SSergei Kolzun
1148c19a515SJiri Slabyconfig HID_APPLE
1156a108a14SDavid Rientjes	tristate "Apple {i,Power,Mac}Books" if EXPERT
116f3757ceaSBenjamin Tissoires	depends on HID
1176a108a14SDavid Rientjes	default !EXPERT
1188c19a515SJiri Slaby	---help---
1198c19a515SJiri Slaby	Support for some Apple devices which less or more break
1208c19a515SJiri Slaby	HID specification.
1218c19a515SJiri Slaby
122f0bd8e43SJiri Kosina	Say Y here if you want support for keyboards of	Apple iBooks, PowerBooks,
123f0bd8e43SJiri Kosina	MacBooks, MacBook Pros and Apple Aluminum.
1248c19a515SJiri Slaby
1259a4a5574SBenjamin Tissoiresconfig HID_APPLEIR
1269a4a5574SBenjamin Tissoires	tristate "Apple infrared receiver"
1279a4a5574SBenjamin Tissoires	depends on (USB_HID)
1289a4a5574SBenjamin Tissoires	---help---
1299a4a5574SBenjamin Tissoires	Support for Apple infrared remote control. All the Apple computers from
1309a4a5574SBenjamin Tissoires	  2005 onwards include such a port, except the unibody Macbook (2009),
1319a4a5574SBenjamin Tissoires	  and Mac Pros. This receiver is also used in the Apple TV set-top box
1329a4a5574SBenjamin Tissoires	  prior to the 2010 model.
1339a4a5574SBenjamin Tissoires
1349a4a5574SBenjamin Tissoires	Say Y here if you want support for Apple infrared remote control.
1359a4a5574SBenjamin Tissoires
136212da74dSJosenivaldo Benito Juniorconfig HID_AUREAL
137212da74dSJosenivaldo Benito Junior	tristate "Aureal"
138f3757ceaSBenjamin Tissoires	depends on HID
139212da74dSJosenivaldo Benito Junior	---help---
140212da74dSJosenivaldo Benito Junior	Support for Aureal Cy se W-01RN Remote Controller and other Aureal derived remotes.
141212da74dSJosenivaldo Benito Junior
142b5635b12SJiri Slabyconfig HID_BELKIN
1436a108a14SDavid Rientjes	tristate "Belkin Flip KVM and Wireless keyboard" if EXPERT
144f3757ceaSBenjamin Tissoires	depends on HID
1456a108a14SDavid Rientjes	default !EXPERT
146b5635b12SJiri Slaby	---help---
147b5635b12SJiri Slaby	Support for Belkin Flip KVM and Wireless keyboard.
148b5635b12SJiri Slaby
1493b239cd7SJiri Slabyconfig HID_CHERRY
1506a108a14SDavid Rientjes	tristate "Cherry Cymotion keyboard" if EXPERT
151f3757ceaSBenjamin Tissoires	depends on HID
1526a108a14SDavid Rientjes	default !EXPERT
1533b239cd7SJiri Slaby	---help---
154f0bd8e43SJiri Kosina	Support for Cherry Cymotion keyboard.
1553b239cd7SJiri Slaby
156fcfacfd3SJiri Slabyconfig HID_CHICONY
1576a108a14SDavid Rientjes	tristate "Chicony Tactical pad" if EXPERT
158f3757ceaSBenjamin Tissoires	depends on HID
1596a108a14SDavid Rientjes	default !EXPERT
160fcfacfd3SJiri Slaby	---help---
161fcfacfd3SJiri Slaby	Support for Chicony Tactical pad.
162fcfacfd3SJiri Slaby
1633a370ca1SDon Princeconfig HID_PRODIKEYS
16495736de9SJiri Kosina	tristate "Prodikeys PC-MIDI Keyboard support"
165d8814272SBenjamin Tissoires	depends on HID && SND
1663a370ca1SDon Prince	select SND_RAWMIDI
1673a370ca1SDon Prince	---help---
1683a370ca1SDon Prince	Support for Prodikeys PC-MIDI Keyboard device support.
1693a370ca1SDon Prince	Say Y here to enable support for this device.
1703a370ca1SDon Prince	- Prodikeys PC-MIDI keyboard.
1713a370ca1SDon Prince	  The Prodikeys PC-MIDI acts as a USB Audio device, with one MIDI
1723a370ca1SDon Prince	  input and one MIDI output. These MIDI jacks appear as
1733a370ca1SDon Prince	  a sound "card" in the ALSA sound system.
1743a370ca1SDon Prince	  Note: if you say N here, this device will still function as a basic
1753a370ca1SDon Prince	  multimedia keyboard, but will lack support for the musical keyboard
1763a370ca1SDon Prince	  and some additional multimedia keys.
1773a370ca1SDon Prince
178e932d817SDavid Barksdaleconfig HID_CP2112
179e932d817SDavid Barksdale	tristate "Silicon Labs CP2112 HID USB-to-SMBus Bridge support"
180a47dc4d8SJiri Kosina	depends on USB_HID && I2C && GPIOLIB
181e932d817SDavid Barksdale	---help---
182e932d817SDavid Barksdale	Support for Silicon Labs CP2112 HID USB to SMBus Master Bridge.
183e932d817SDavid Barksdale	This is a HID device driver which registers as an i2c adapter
184e932d817SDavid Barksdale	and gpiochip to expose these functions of the CP2112. The
185e932d817SDavid Barksdale	customizable USB descriptor fields are exposed as sysfs attributes.
186e932d817SDavid Barksdale
1870f221320SJiri Slabyconfig HID_CYPRESS
1886a108a14SDavid Rientjes	tristate "Cypress mouse and barcode readers" if EXPERT
189f3757ceaSBenjamin Tissoires	depends on HID
1906a108a14SDavid Rientjes	default !EXPERT
1910f221320SJiri Slaby	---help---
192f0bd8e43SJiri Kosina	Support for cypress mouse and barcode readers.
1930f221320SJiri Slaby
1940f6f4319SJiri Kosinaconfig HID_DRAGONRISE
195a1043044SBorislav Petkov	tristate "DragonRise Inc. game controller"
196d8814272SBenjamin Tissoires	depends on HID
1970f6f4319SJiri Kosina	---help---
1980f6f4319SJiri Kosina	Say Y here if you have DragonRise Inc. game controllers.
199b4a65f4eSNikolai Kondrashov	These might be branded as:
200b4a65f4eSNikolai Kondrashov	- Tesun USB-703
201b4a65f4eSNikolai Kondrashov	- Media-tech MT1504 "Rogue"
202b4a65f4eSNikolai Kondrashov	- DVTech JS19 "Gear"
203b4a65f4eSNikolai Kondrashov	- Defender Game Master
2040f6f4319SJiri Kosina
2050f6f4319SJiri Kosinaconfig DRAGONRISE_FF
206a1043044SBorislav Petkov	bool "DragonRise Inc. force feedback"
2070f6f4319SJiri Kosina	depends on HID_DRAGONRISE
2083f866fbdSRichard Walmsley	select INPUT_FF_MEMLESS
2093f866fbdSRichard Walmsley	---help---
2103f866fbdSRichard Walmsley	Say Y here if you want to enable force feedback support for DragonRise Inc.
2113f866fbdSRichard Walmsley	game controllers.
2123f866fbdSRichard Walmsley
21304561c5aSIgnaz Forsterconfig HID_EMS_FF
21404561c5aSIgnaz Forster	tristate "EMS Production Inc. force feedback support"
215d8814272SBenjamin Tissoires	depends on HID
21604561c5aSIgnaz Forster	select INPUT_FF_MEMLESS
21704561c5aSIgnaz Forster	---help---
21804561c5aSIgnaz Forster	Say Y here if you want to enable force feedback support for devices by
21904561c5aSIgnaz Forster	EMS Production Ltd.
22004561c5aSIgnaz Forster	Currently the following devices are known to be supported:
22104561c5aSIgnaz Forster	 - Trio Linker Plus II
22204561c5aSIgnaz Forster
22364b386eaSRichard Nauberconfig HID_ELECOM
224a1043044SBorislav Petkov	tristate "ELECOM BM084 bluetooth mouse"
225f3757ceaSBenjamin Tissoires	depends on HID
22664b386eaSRichard Nauber	---help---
22764b386eaSRichard Nauber	Support for the ELECOM BM084 (bluetooth mouse).
22864b386eaSRichard Nauber
229d23efc19SJiri Slabyconfig HID_ELO
230d23efc19SJiri Slaby	tristate "ELO USB 4000/4500 touchscreen"
231d23efc19SJiri Slaby	depends on USB_HID
232d23efc19SJiri Slaby	---help---
233d23efc19SJiri Slaby	Support for the ELO USB 4000/4500 touchscreens. Note that this is for
234d23efc19SJiri Slaby	different devices than those handled by CONFIG_TOUCHSCREEN_USB_ELO.
235d23efc19SJiri Slaby
2361f243e30SJiri Slabyconfig HID_EZKEY
2376a108a14SDavid Rientjes	tristate "Ezkey BTC 8193 keyboard" if EXPERT
238f3757ceaSBenjamin Tissoires	depends on HID
2396a108a14SDavid Rientjes	default !EXPERT
2401f243e30SJiri Slaby	---help---
241f0bd8e43SJiri Kosina	Support for Ezkey BTC 8193 keyboard.
2421f243e30SJiri Slaby
243d946e65eSAnssi Hannulaconfig HID_HOLTEK
244ff9bf5a2STom Harwood	tristate "Holtek HID devices"
245d946e65eSAnssi Hannula	depends on USB_HID
246d946e65eSAnssi Hannula	---help---
247ff9bf5a2STom Harwood	Support for Holtek based devices:
248ff9bf5a2STom Harwood	  - Holtek On Line Grip based game controller
249ff9bf5a2STom Harwood	  - Trust GXT 18 Gaming Keyboard
25041de326eSChristian Ohm	  - Sharkoon Drakonia / Perixx MX-2000 gaming mice
251d4f51890SChristian Ohm	  - Tracer Sniper TRM-503 / NOVA Gaming Slider X200 /
252d4f51890SChristian Ohm	    Zalman ZM-GM1
2537da7cbbbSAnders F. U. Kiær	  - SHARKOON DarkGlider Gaming mouse
254f1a4914bSAnders F. U. Kiær	  - LEETGION Hellion Gaming Mouse
255d946e65eSAnssi Hannula
256d946e65eSAnssi Hannulaconfig HOLTEK_FF
257d946e65eSAnssi Hannula	bool "Holtek On Line Grip force feedback support"
258d946e65eSAnssi Hannula	depends on HID_HOLTEK
259d946e65eSAnssi Hannula	select INPUT_FF_MEMLESS
260d946e65eSAnssi Hannula	---help---
261d946e65eSAnssi Hannula	  Say Y here if you have a Holtek On Line Grip based game controller
262d946e65eSAnssi Hannula	  and want to have force feedback support for it.
263d946e65eSAnssi Hannula
26468e353feSMartin Ruskoconfig HID_HUION
26568e353feSMartin Rusko	tristate "Huion tablets"
26668e353feSMartin Rusko	depends on USB_HID
26768e353feSMartin Rusko	---help---
26868e353feSMartin Rusko	Support for Huion 580 tablet.
26968e353feSMartin Rusko
270177900e8SJiri Kosinaconfig HID_KEYTOUCH
2713d366e28SStephen Boyd	tristate "Keytouch HID devices"
272f3757ceaSBenjamin Tissoires	depends on HID
273177900e8SJiri Kosina	---help---
274177900e8SJiri Kosina	Support for Keytouch HID devices not fully compliant with
275177900e8SJiri Kosina	the specification. Currently supported:
276177900e8SJiri Kosina		- Keytouch IEC 60945
277177900e8SJiri Kosina
27879422741SJiri Kosinaconfig HID_KYE
27922ca20b2SNikolai Kondrashov	tristate "KYE/Genius devices"
280d8814272SBenjamin Tissoires	depends on HID
28179422741SJiri Kosina	---help---
28222ca20b2SNikolai Kondrashov	Support for KYE/Genius devices not fully compliant with HID standard:
28322ca20b2SNikolai Kondrashov	- Ergo Mouse
28422ca20b2SNikolai Kondrashov	- EasyPen i405X tablet
28522ca20b2SNikolai Kondrashov	- MousePen i608X tablet
28622ca20b2SNikolai Kondrashov	- EasyPen M610X tablet
28779422741SJiri Kosina
288f8a489ccSNikolai Kondrashovconfig HID_UCLOGIC
289f36ee074SJiri Kosina	tristate "UC-Logic"
290f3757ceaSBenjamin Tissoires	depends on HID
291f8a489ccSNikolai Kondrashov	---help---
292f8a489ccSNikolai Kondrashov	Support for UC-Logic tablets.
293f8a489ccSNikolai Kondrashov
29472a46344SNikolai Kondrashovconfig HID_WALTOP
29572a46344SNikolai Kondrashov	tristate "Waltop"
296f3757ceaSBenjamin Tissoires	depends on HID
29772a46344SNikolai Kondrashov	---help---
29872a46344SNikolai Kondrashov	Support for Waltop tablets.
29972a46344SNikolai Kondrashov
300949f8fefSJiri Slabyconfig HID_GYRATION
301a1043044SBorislav Petkov	tristate "Gyration remote control"
302f3757ceaSBenjamin Tissoires	depends on HID
303949f8fefSJiri Slaby	---help---
304f0bd8e43SJiri Kosina	Support for Gyration remote control.
305949f8fefSJiri Slaby
3064ddfe028SBastien Noceraconfig HID_ICADE
3074ddfe028SBastien Nocera	tristate "ION iCade arcade controller"
308f3757ceaSBenjamin Tissoires	depends on HID
3094ddfe028SBastien Nocera	---help---
3104ddfe028SBastien Nocera	Support for the ION iCade arcade controller to work as a joystick.
3114ddfe028SBastien Nocera
3124ddfe028SBastien Nocera	To compile this driver as a module, choose M here: the
3134ddfe028SBastien Nocera	module will be called hid-icade.
3144ddfe028SBastien Nocera
315711a680eSBruno Premontconfig HID_TWINHAN
316a1043044SBorislav Petkov	tristate "Twinhan IR remote control"
317f3757ceaSBenjamin Tissoires	depends on HID
318711a680eSBruno Premont	---help---
319711a680eSBruno Premont	Support for Twinhan IR remote control.
320711a680eSBruno Premont
321fdf93aa3SJiri Kosinaconfig HID_KENSINGTON
3226a108a14SDavid Rientjes	tristate "Kensington Slimblade Trackball" if EXPERT
323f3757ceaSBenjamin Tissoires	depends on HID
3246a108a14SDavid Rientjes	default !EXPERT
325fdf93aa3SJiri Kosina	---help---
326fdf93aa3SJiri Kosina	Support for Kensington Slimblade Trackball.
327fdf93aa3SJiri Kosina
32875b07022SChris Schlundconfig HID_LCPOWER
32975b07022SChris Schlund	tristate "LC-Power"
330f3757ceaSBenjamin Tissoires	depends on HID
33175b07022SChris Schlund	---help---
33275b07022SChris Schlund	Support for LC-Power RC1000MCE RF remote control.
33375b07022SChris Schlund
334c1dcad2dSBernhard Seiboldconfig HID_LENOVO_TPKBD
335c1dcad2dSBernhard Seibold	tristate "Lenovo ThinkPad USB Keyboard with TrackPoint"
3360c521836SBenjamin Tissoires	depends on HID
33725976a79SBryan Wu	select NEW_LEDS
338c1dcad2dSBernhard Seibold	select LEDS_CLASS
339c1dcad2dSBernhard Seibold	---help---
340c1dcad2dSBernhard Seibold	Support for the Lenovo ThinkPad USB Keyboard with TrackPoint.
341c1dcad2dSBernhard Seibold
342c1dcad2dSBernhard Seibold	Say Y here if you have a Lenovo ThinkPad USB Keyboard with TrackPoint
343c1dcad2dSBernhard Seibold	and would like to use device-specific features like changing the
344c1dcad2dSBernhard Seibold	sensitivity of the trackpoint, using the microphone mute button or
345c1dcad2dSBernhard Seibold	controlling the mute and microphone mute LEDs.
346c1dcad2dSBernhard Seibold
3475f22a799SJiri Slabyconfig HID_LOGITECH
3486a108a14SDavid Rientjes	tristate "Logitech devices" if EXPERT
349f3757ceaSBenjamin Tissoires	depends on HID
3506a108a14SDavid Rientjes	default !EXPERT
3515f22a799SJiri Slaby	---help---
352f0bd8e43SJiri Kosina	Support for Logitech devices that are not fully compliant with HID standard.
3535f22a799SJiri Slaby
354534a7b8eSNestor Lopez Casadoconfig HID_LOGITECH_DJ
355534a7b8eSNestor Lopez Casado	tristate "Logitech Unifying receivers full support"
356dcdc50e7SOlivier Gay	depends on HIDRAW
357534a7b8eSNestor Lopez Casado	depends on HID_LOGITECH
358534a7b8eSNestor Lopez Casado	---help---
359534a7b8eSNestor Lopez Casado	Say Y if you want support for Logitech Unifying receivers and devices.
360534a7b8eSNestor Lopez Casado	Unifying receivers are capable of pairing up to 6 Logitech compliant
3610944e964SKonstantin Khlebnikov	devices to the same receiver. Without this driver it will be handled by
362d82603c6SJorrit Schippers	generic USB_HID driver and all incoming events will be multiplexed
3630944e964SKonstantin Khlebnikov	into a single mouse and a single keyboard device.
364534a7b8eSNestor Lopez Casado
365606bd0a8SJiri Slabyconfig LOGITECH_FF
3660f6f4319SJiri Kosina	bool "Logitech force feedback support"
367606bd0a8SJiri Slaby	depends on HID_LOGITECH
368606bd0a8SJiri Slaby	select INPUT_FF_MEMLESS
369606bd0a8SJiri Slaby	help
370606bd0a8SJiri Slaby	  Say Y here if you have one of these devices:
371606bd0a8SJiri Slaby	  - Logitech WingMan Cordless RumblePad
372606bd0a8SJiri Slaby	  - Logitech WingMan Cordless RumblePad 2
373606bd0a8SJiri Slaby	  - Logitech WingMan Force 3D
374606bd0a8SJiri Slaby	  - Logitech Formula Force EX
375fd30ea8cSJiri Kosina	  - Logitech WingMan Formula Force GP
376606bd0a8SJiri Slaby
377606bd0a8SJiri Slaby	  and if you want to enable force feedback for them.
378606bd0a8SJiri Slaby	  Note: if you say N here, this device will still be supported, but without
379606bd0a8SJiri Slaby	  force feedback.
380606bd0a8SJiri Slaby
381606bd0a8SJiri Slabyconfig LOGIRUMBLEPAD2_FF
382bd04363dSElias Vanderstuyft	bool "Logitech force feedback support (variant 2)"
383606bd0a8SJiri Slaby	depends on HID_LOGITECH
384606bd0a8SJiri Slaby	select INPUT_FF_MEMLESS
385606bd0a8SJiri Slaby	help
386bd04363dSElias Vanderstuyft	  Say Y here if you want to enable force feedback support for:
387bd04363dSElias Vanderstuyft	  - Logitech RumblePad
388bd04363dSElias Vanderstuyft	  - Logitech Rumblepad 2
389bd04363dSElias Vanderstuyft	  - Logitech Formula Vibration Feedback Wheel
390606bd0a8SJiri Slaby
39174f292caSGary Steinconfig LOGIG940_FF
39274f292caSGary Stein	bool "Logitech Flight System G940 force feedback support"
39374f292caSGary Stein	depends on HID_LOGITECH
39474f292caSGary Stein	select INPUT_FF_MEMLESS
39574f292caSGary Stein	help
39674f292caSGary Stein	  Say Y here if you want to enable force feedback support for Logitech
39774f292caSGary Stein	  Flight System G940 devices.
39874f292caSGary Stein
399a7ac90f1SMichal Malýconfig LOGIWHEELS_FF
400a7ac90f1SMichal Malý	bool "Logitech wheels configuration and force feedback support"
40132c88cbcSSimon Wood	depends on HID_LOGITECH
40232c88cbcSSimon Wood	select INPUT_FF_MEMLESS
40370c2cabdSJiri Kosina	default LOGITECH_FF
40432c88cbcSSimon Wood	help
405a7ac90f1SMichal Malý	  Say Y here if you want to enable force feedback and range setting
406a7ac90f1SMichal Malý	  support for following Logitech wheels:
407a7ac90f1SMichal Malý	  - Logitech Driving Force
408a7ac90f1SMichal Malý	  - Logitech Driving Force Pro
409a7ac90f1SMichal Malý	  - Logitech Driving Force GT
410a7ac90f1SMichal Malý	  - Logitech G25
411a7ac90f1SMichal Malý	  - Logitech G27
412a7ac90f1SMichal Malý	  - Logitech MOMO/MOMO 2
413a7ac90f1SMichal Malý	  - Logitech Formula Force EX
41432c88cbcSSimon Wood
415128537ceSMichael Pooleconfig HID_MAGICMOUSE
416cdfee4ffSDavid King	tristate "Apple Magic Mouse/Trackpad multi-touch support"
417f3757ceaSBenjamin Tissoires	depends on HID
418128537ceSMichael Poole	---help---
419cdfee4ffSDavid King	Support for the Apple Magic Mouse/Trackpad multi-touch.
420128537ceSMichael Poole
421128537ceSMichael Poole	Say Y here if you want support for the multi-touch features of the
422cdfee4ffSDavid King	Apple Wireless "Magic" Mouse and the Apple Wireless "Magic" Trackpad.
423128537ceSMichael Poole
42478a849a6SJiri Slabyconfig HID_MICROSOFT
4256a108a14SDavid Rientjes	tristate "Microsoft non-fully HID-compliant devices" if EXPERT
426f3757ceaSBenjamin Tissoires	depends on HID
4276a108a14SDavid Rientjes	default !EXPERT
42878a849a6SJiri Slaby	---help---
429f0bd8e43SJiri Kosina	Support for Microsoft devices that are not fully compliant with HID standard.
43078a849a6SJiri Slaby
4313b8006e5SJiri Slabyconfig HID_MONTEREY
4326a108a14SDavid Rientjes	tristate "Monterey Genius KB29E keyboard" if EXPERT
433f3757ceaSBenjamin Tissoires	depends on HID
4346a108a14SDavid Rientjes	default !EXPERT
4353b8006e5SJiri Slaby	---help---
4363b8006e5SJiri Slaby	Support for Monterey Genius KB29E.
4373b8006e5SJiri Slaby
4385519cab4SBenjamin Tissoiresconfig HID_MULTITOUCH
4395519cab4SBenjamin Tissoires	tristate "HID Multitouch panels"
440d8814272SBenjamin Tissoires	depends on HID
4415519cab4SBenjamin Tissoires	---help---
4425519cab4SBenjamin Tissoires	  Generic support for HID multitouch panels.
4435519cab4SBenjamin Tissoires
4445519cab4SBenjamin Tissoires	  Say Y here if you have one of the following devices:
445f786bba4SBenjamin Tissoires	  - 3M PCT touch screens
446e6aac342SBenjamin Tissoires	  - ActionStar dual touch panels
447b1057124SBenjamin Tissoires	  - Atmel panels
44822408283SBenjamin Tissoires	  - Cando dual touch panels
449942fd422SAustin Zhang	  - Chunghwa panels
45079603dc9SBenjamin Tissoires	  - CVTouch panels
4512d93666eSBenjamin Tissoires	  - Cypress TrueTouch panels
452e02aea91SJan Matějka	  - Elan Microelectronics touch panels
453c04abeefSBenjamin Tissoires	  - Elo TouchSystems IntelliTouch Plus panels
45422408283SBenjamin Tissoires	  - GeneralTouch 'Sensing Win7-TwoFinger' panels
455ee0fbd14SBenjamin Tissoires	  - GoodTouch panels
4562d93666eSBenjamin Tissoires	  - Hanvon dual touch panels
45722408283SBenjamin Tissoires	  - Ilitek dual touch panels
4584dfcced8SBenjamin Tissoires	  - IrTouch Infrared USB panels
459c50bb1a4SJeff Brown	  - LG Display panels (Dell ST2220Tc)
460df167c4aSBenjamin Tissoires	  - Lumio CrystalTouch panels
4614a6ee685SBenjamin Tissoires	  - MosArt dual-touch panels
4622258e863SDenis Kovalev	  - Panasonic multitouch panels
4636ab3a9a6SJohn Sung	  - PenMount dual touch panels
464847672cdSBenjamin Tissoires	  - Perixx Peripad 701 touchpad
465b7ea95ffSAaron Tian	  - PixArt optical touch screen
4662d93666eSBenjamin Tissoires	  - Pixcir dual touch panels
4675e7ea11fSBenjamin Tissoires	  - Quanta panels
46822408283SBenjamin Tissoires	  - eGalax dual-touch panels, including the Joojoo and Wetab tablets
469a6802e00SForest Bond	  - SiS multitouch panels
470043b403aSBenjamin Tissoires	  - Stantum multitouch panels
4715e74e56dSBenjamin Tissoires	  - Touch International Panels
472617b64f9SBenjamin Tissoires	  - Unitec Panels
473bf9d121eSKaiChung Cheng	  - Wistron optical touch panels
474bc8a2a9bSice chien	  - XAT optical touch panels
47511576c61SMasatoshi Hoshikawa	  - Xiroku optical touch panels
476e9a09aedSBenjamin Tissoires	  - Zytronic touch panels
4775519cab4SBenjamin Tissoires
4782d93666eSBenjamin Tissoires	  If unsure, say N.
4792d93666eSBenjamin Tissoires
4802d93666eSBenjamin Tissoires	  To compile this driver as a module, choose M here: the
4812d93666eSBenjamin Tissoires	  module will be called hid-multitouch.
4822d93666eSBenjamin Tissoires
48394011f93SRafi Rubinconfig HID_NTRIG
484a1043044SBorislav Petkov	tristate "N-Trig touch screen"
48594011f93SRafi Rubin	depends on USB_HID
48694011f93SRafi Rubin	---help---
48794011f93SRafi Rubin	Support for N-Trig touch screen.
48894011f93SRafi Rubin
489cd9ec30dSJohnathon Harrisconfig HID_ORTEK
490d586dca0SJiri Kosina	tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad"
491f3757ceaSBenjamin Tissoires	depends on HID
492cd9ec30dSJohnathon Harris	---help---
493d586dca0SJiri Kosina	There are certain devices which have LogicalMaximum wrong in the keyboard
494d586dca0SJiri Kosina	usage page of their report descriptor. The most prevailing ones so far
495d586dca0SJiri Kosina	are manufactured by Ortek, thus the name of the driver. Currently
496d586dca0SJiri Kosina	supported devices by this driver are
497d586dca0SJiri Kosina
498d586dca0SJiri Kosina	   - Ortek PKB-1700
499d586dca0SJiri Kosina	   - Ortek WKB-2000
500d586dca0SJiri Kosina	   - Skycable wireless presenter
501cd9ec30dSJohnathon Harris
5025f022298SJiri Slabyconfig HID_PANTHERLORD
503a1043044SBorislav Petkov	tristate "Pantherlord/GreenAsia game controller"
504d8814272SBenjamin Tissoires	depends on HID
5050f6f4319SJiri Kosina	---help---
5060f6f4319SJiri Kosina	  Say Y here if you have a PantherLord/GreenAsia based game controller
5070f6f4319SJiri Kosina	  or adapter.
5080f6f4319SJiri Kosina
5095f022298SJiri Slabyconfig PANTHERLORD_FF
5105f022298SJiri Slaby	bool "Pantherlord force feedback support"
5115f022298SJiri Slaby	depends on HID_PANTHERLORD
5125f022298SJiri Slaby	select INPUT_FF_MEMLESS
5130f6f4319SJiri Kosina	---help---
5145f022298SJiri Slaby	  Say Y here if you have a PantherLord/GreenAsia based game controller
5155f022298SJiri Slaby	  or adapter and want to enable force feedback support for it.
5165f022298SJiri Slaby
5171e762532SJiri Slabyconfig HID_PETALYNX
518a1043044SBorislav Petkov	tristate "Petalynx Maxter remote control"
519f3757ceaSBenjamin Tissoires	depends on HID
5201e762532SJiri Slaby	---help---
521f0bd8e43SJiri Kosina	Support for Petalynx Maxter remote control.
5221e762532SJiri Slaby
523236db47cSBruno Prémontconfig HID_PICOLCD
524236db47cSBruno Prémont	tristate "PicoLCD (graphic version)"
525b7966a4dSBenjamin Tissoires	depends on HID
526236db47cSBruno Prémont	---help---
527236db47cSBruno Prémont	  This provides support for Minibox PicoLCD devices, currently
528236db47cSBruno Prémont	  only the graphical ones are supported.
529236db47cSBruno Prémont
530236db47cSBruno Prémont	  This includes support for the following device features:
531236db47cSBruno Prémont	  - Keypad
532236db47cSBruno Prémont	  - Switching between Firmware and Flash mode
5339bbf2b98SBruno Prémont	  - EEProm / Flash access     (via debugfs)
5345435f281SBruno Prémont	  Features selectively enabled:
5355435f281SBruno Prémont	  - Framebuffer for monochrome 256x64 display
5365435f281SBruno Prémont	  - Backlight control
5375435f281SBruno Prémont	  - Contrast control
5385435f281SBruno Prémont	  - General purpose outputs
539b8c21cf6SBruno Prémont	  Features that are not (yet) supported:
540236db47cSBruno Prémont	  - IR
541236db47cSBruno Prémont
5425435f281SBruno Prémontconfig HID_PICOLCD_FB
5436a108a14SDavid Rientjes	bool "Framebuffer support" if EXPERT
5446a108a14SDavid Rientjes	default !EXPERT
5455435f281SBruno Prémont	depends on HID_PICOLCD
5465435f281SBruno Prémont	depends on HID_PICOLCD=FB || FB=y
5475435f281SBruno Prémont	select FB_DEFERRED_IO
5485435f281SBruno Prémont	select FB_SYS_FILLRECT
5495435f281SBruno Prémont	select FB_SYS_COPYAREA
5505435f281SBruno Prémont	select FB_SYS_IMAGEBLIT
5515435f281SBruno Prémont	select FB_SYS_FOPS
5525435f281SBruno Prémont	---help---
5535435f281SBruno Prémont	  Provide access to PicoLCD's 256x64 monochrome display via a
5546b2aac42SMasanari Iida	  framebuffer device.
5555435f281SBruno Prémont
5565435f281SBruno Prémontconfig HID_PICOLCD_BACKLIGHT
5576a108a14SDavid Rientjes	bool "Backlight control" if EXPERT
5586a108a14SDavid Rientjes	default !EXPERT
5595435f281SBruno Prémont	depends on HID_PICOLCD
5605435f281SBruno Prémont	depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y
5615435f281SBruno Prémont	---help---
5625435f281SBruno Prémont	  Provide access to PicoLCD's backlight control via backlight
5635435f281SBruno Prémont	  class.
5645435f281SBruno Prémont
5655435f281SBruno Prémontconfig HID_PICOLCD_LCD
5666a108a14SDavid Rientjes	bool "Contrast control" if EXPERT
5676a108a14SDavid Rientjes	default !EXPERT
5685435f281SBruno Prémont	depends on HID_PICOLCD
5695435f281SBruno Prémont	depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y
5705435f281SBruno Prémont	---help---
5715435f281SBruno Prémont	  Provide access to PicoLCD's LCD contrast via lcd class.
5725435f281SBruno Prémont
5735435f281SBruno Prémontconfig HID_PICOLCD_LEDS
5746a108a14SDavid Rientjes	bool "GPO via leds class" if EXPERT
5756a108a14SDavid Rientjes	default !EXPERT
5765435f281SBruno Prémont	depends on HID_PICOLCD
5775435f281SBruno Prémont	depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y
5785435f281SBruno Prémont	---help---
5795435f281SBruno Prémont	  Provide access to PicoLCD's GPO pins via leds class.
5805435f281SBruno Prémont
581fabdbf2fSBruno Prémontconfig HID_PICOLCD_CIR
582fabdbf2fSBruno Prémont	bool "CIR via RC class" if EXPERT
583fabdbf2fSBruno Prémont	default !EXPERT
584fabdbf2fSBruno Prémont	depends on HID_PICOLCD
585fabdbf2fSBruno Prémont	depends on HID_PICOLCD=RC_CORE || RC_CORE=y
586fabdbf2fSBruno Prémont	---help---
587fabdbf2fSBruno Prémont	  Provide access to PicoLCD's CIR interface via remote control (LIRC).
588fabdbf2fSBruno Prémont
589f6a04605STerry Lambertconfig HID_PRIMAX
590dfe9a312SJiri Kosina	tristate "Primax non-fully HID-compliant devices"
591f3757ceaSBenjamin Tissoires	depends on HID
592f6a04605STerry Lambert	---help---
593f6a04605STerry Lambert	Support for Primax devices that are not fully compliant with the
594f6a04605STerry Lambert	HID standard.
595f6a04605STerry Lambert
596206f5f2fSStefan Achatzconfig HID_ROCCAT
597bd393dbdSStefan Achatz	tristate "Roccat device support"
598206f5f2fSStefan Achatz	depends on USB_HID
599206f5f2fSStefan Achatz	---help---
600bd393dbdSStefan Achatz	Support for Roccat devices.
601bd393dbdSStefan Achatz	Say Y here if you have a Roccat mouse or keyboard and want
602bd393dbdSStefan Achatz	support for its special functionalities.
603cb7cf3daSStefan Achatz
6041e93674aSAndreas Hübnerconfig HID_SAITEK
6051e93674aSAndreas Hübner	tristate "Saitek non-fully HID-compliant devices"
606f3757ceaSBenjamin Tissoires	depends on HID
6071e93674aSAndreas Hübner	---help---
6081e93674aSAndreas Hübner	Support for Saitek devices that are not fully compliant with the
6091e93674aSAndreas Hübner	HID standard.
6101e93674aSAndreas Hübner
6111e93674aSAndreas Hübner	Currently only supports the PS1000 controller.
6121e93674aSAndreas Hübner
613980a3da6SJiri Slabyconfig HID_SAMSUNG
614a1043044SBorislav Petkov	tristate "Samsung InfraRed remote control or keyboards"
615f3757ceaSBenjamin Tissoires	depends on HID
616980a3da6SJiri Slaby	---help---
617b355850bSDon Prince	Support for Samsung InfraRed remote control or keyboards.
618980a3da6SJiri Slaby
619bd28ce00SJiri Slabyconfig HID_SONY
620e4321c5cSFrank Praznik	tristate "Sony PS2/3/4 accessories"
621bd28ce00SJiri Slaby	depends on USB_HID
62240e32ee6SJiri Kosina	depends on NEW_LEDS
62340e32ee6SJiri Kosina	depends on LEDS_CLASS
624695baaa7SJiri Kosina	select POWER_SUPPLY
625bd28ce00SJiri Slaby	---help---
626f04d5140SColin Leitner	Support for
6275844c1cdSDavid Dillow
628f04d5140SColin Leitner	  * Sony PS3 6-axis controllers
629e4321c5cSFrank Praznik	  * Sony PS4 DualShock 4 controllers
630f04d5140SColin Leitner	  * Buzz controllers
631078328daSJiri Kosina	  * Sony PS3 Blue-ray Disk Remote Control (Bluetooth)
632078328daSJiri Kosina	  * Logitech Harmony adapter for Sony Playstation 3 (Bluetooth)
633bd28ce00SJiri Slaby
634a08c22c0SSven Eckelmannconfig SONY_FF
635e4321c5cSFrank Praznik	bool "Sony PS2/3/4 accessories force feedback support"
636a08c22c0SSven Eckelmann	depends on HID_SONY
637a08c22c0SSven Eckelmann	select INPUT_FF_MEMLESS
638a08c22c0SSven Eckelmann	---help---
639e4321c5cSFrank Praznik	Say Y here if you have a Sony PS2/3/4 accessory and want to enable
640e4321c5cSFrank Praznik	force feedback support for it.
641a08c22c0SSven Eckelmann
64274bc6953SStefan Kriwanekconfig HID_SPEEDLINK
64374bc6953SStefan Kriwanek	tristate "Speedlink VAD Cezanne mouse support"
644d8814272SBenjamin Tissoires	depends on HID
64574bc6953SStefan Kriwanek	---help---
64674bc6953SStefan Kriwanek	Support for Speedlink Vicious and Divine Cezanne mouse.
64774bc6953SStefan Kriwanek
648090800c2SJiri Kosinaconfig HID_STEELSERIES
64975dbb953SSimon Wood	tristate "Steelseries SRW-S1 steering wheel support"
650d8814272SBenjamin Tissoires	depends on HID
65175dbb953SSimon Wood	---help---
65275dbb953SSimon Wood	Support for Steelseries SRW-S1 steering wheel
65375dbb953SSimon Wood
65490231e7eSJiri Slabyconfig HID_SUNPLUS
655a1043044SBorislav Petkov	tristate "Sunplus wireless desktop"
656f3757ceaSBenjamin Tissoires	depends on HID
65790231e7eSJiri Slaby	---help---
658f0bd8e43SJiri Kosina	Support for Sunplus wireless desktop.
65990231e7eSJiri Slaby
660*9fb6bf02SBenjamin Tissoiresconfig HID_RMI
661*9fb6bf02SBenjamin Tissoires	tristate "Synaptics RMI4 device support"
662*9fb6bf02SBenjamin Tissoires	depends on HID
663*9fb6bf02SBenjamin Tissoires	---help---
664*9fb6bf02SBenjamin Tissoires	Support for Synaptics RMI4 touchpads.
665*9fb6bf02SBenjamin Tissoires	Say Y here if you have a Synaptics RMI4 touchpads over i2c-hid or usbhid
666*9fb6bf02SBenjamin Tissoires	and want support for its special functionalities.
667*9fb6bf02SBenjamin Tissoires
6680f6f4319SJiri Kosinaconfig HID_GREENASIA
669a1043044SBorislav Petkov	tristate "GreenAsia (Product ID 0x12) game controller support"
670d8814272SBenjamin Tissoires	depends on HID
6710f6f4319SJiri Kosina	---help---
6720f6f4319SJiri Kosina	  Say Y here if you have a GreenAsia (Product ID 0x12) based game
6730f6f4319SJiri Kosina	  controller or adapter.
6740f6f4319SJiri Kosina
6750f6f4319SJiri Kosinaconfig GREENASIA_FF
6760f6f4319SJiri Kosina	bool "GreenAsia (Product ID 0x12) force feedback support"
6770f6f4319SJiri Kosina	depends on HID_GREENASIA
67842859e0bSLukasz Lubojanski	select INPUT_FF_MEMLESS
67942859e0bSLukasz Lubojanski	---help---
68042859e0bSLukasz Lubojanski	Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
681692105b8SMatt LaPlante	(like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
68242859e0bSLukasz Lubojanski	and want to enable force feedback support for it.
68342859e0bSLukasz Lubojanski
6846cf851d8SJiri Kosinaconfig HID_HYPERV_MOUSE
6856cf851d8SJiri Kosina	tristate "Microsoft Hyper-V mouse driver"
6866cf851d8SJiri Kosina	depends on HYPERV
6876cf851d8SJiri Kosina	---help---
6886cf851d8SJiri Kosina	Select this option to enable the Hyper-V mouse driver.
6896cf851d8SJiri Kosina
690fac733f0SJussi Kivilinnaconfig HID_SMARTJOYPLUS
69173d5e8f7SJiri Kosina	tristate "SmartJoy PLUS PS2/USB adapter support"
692d8814272SBenjamin Tissoires	depends on HID
693fac733f0SJussi Kivilinna	---help---
6941bcc2067SSean Young	Support for SmartJoy PLUS PS2/USB adapter, Super Dual Box,
6951bcc2067SSean Young	Super Joy Box 3 Pro, Super Dual Box Pro, and Super Joy Box 5 Pro.
6961bcc2067SSean Young
6971bcc2067SSean Young	Note that DDR (Dance Dance Revolution) mode is not supported, nor
6981bcc2067SSean Young	is pressure sensitive buttons on the pro models.
699fac733f0SJussi Kivilinna
700fac733f0SJussi Kivilinnaconfig SMARTJOYPLUS_FF
701fac733f0SJussi Kivilinna	bool "SmartJoy PLUS PS2/USB adapter force feedback support"
702fac733f0SJussi Kivilinna	depends on HID_SMARTJOYPLUS
703fac733f0SJussi Kivilinna	select INPUT_FF_MEMLESS
704fac733f0SJussi Kivilinna	---help---
705fac733f0SJussi Kivilinna	Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to
706fac733f0SJussi Kivilinna	enable force feedback support for it.
707fac733f0SJussi Kivilinna
7082701eaabSJiri Kosinaconfig HID_TIVO
70944ea35c1SJarod Wilson	tristate "TiVo Slide Bluetooth remote control support"
710f3757ceaSBenjamin Tissoires	depends on HID
71144ea35c1SJarod Wilson	---help---
71244ea35c1SJarod Wilson	Say Y if you have a TiVo Slide Bluetooth remote control.
71344ea35c1SJarod Wilson
714f14f526dSLev Babievconfig HID_TOPSEED
71554001081SKees Bakker	tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support"
716f3757ceaSBenjamin Tissoires	depends on HID
717f14f526dSLev Babiev	---help---
71854001081SKees Bakker	Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic
71954001081SKees Bakker	CLLRCMCE remote control.
720f14f526dSLev Babiev
72130ba2fbdSVivien Didelotconfig HID_THINGM
72230ba2fbdSVivien Didelot	tristate "ThingM blink(1) USB RGB LED"
723f3757ceaSBenjamin Tissoires	depends on HID
72430ba2fbdSVivien Didelot	depends on LEDS_CLASS
72530ba2fbdSVivien Didelot	---help---
72630ba2fbdSVivien Didelot	Support for the ThingM blink(1) USB RGB LED. This driver registers a
72730ba2fbdSVivien Didelot	Linux LED class instance, plus additional sysfs attributes to control
72830ba2fbdSVivien Didelot	RGB colors, fade time and playing. The device is exposed through hidraw
72930ba2fbdSVivien Didelot	to access other functions.
73030ba2fbdSVivien Didelot
7310f6f4319SJiri Kosinaconfig HID_THRUSTMASTER
73273d5e8f7SJiri Kosina	tristate "ThrustMaster devices support"
733d8814272SBenjamin Tissoires	depends on HID
7340f6f4319SJiri Kosina	---help---
73510e41a71SJiri Slaby	  Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or
7360f6f4319SJiri Kosina	  a THRUSTMASTER Ferrari GT Rumble Wheel.
7370f6f4319SJiri Kosina
7380f6f4319SJiri Kosinaconfig THRUSTMASTER_FF
7390f6f4319SJiri Kosina	bool "ThrustMaster devices force feedback support"
7400f6f4319SJiri Kosina	depends on HID_THRUSTMASTER
7410f6f4319SJiri Kosina	select INPUT_FF_MEMLESS
7420f6f4319SJiri Kosina	---help---
7437a84b133SRuben Aos Garralda	  Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3,
7447a84b133SRuben Aos Garralda	  a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT
7457a84b133SRuben Aos Garralda	  Rumble Force or Force Feedback Wheel.
74610e41a71SJiri Slaby
747ca2dcd40SBastien Noceraconfig HID_WACOM
7482dbf209dSJiri Kosina	tristate "Wacom Bluetooth devices support"
749f3757ceaSBenjamin Tissoires	depends on HID
7504e52b538SDavid Rientjes	depends on LEDS_CLASS
75159d2334aSPrzemo Firszt	select POWER_SUPPLY
75259d2334aSPrzemo Firszt	---help---
7537e551abbSPrzemo Firszt	Support for Wacom Graphire Bluetooth and Intuos4 WL tablets.
75459d2334aSPrzemo Firszt
755fb51b443SDavid Herrmannconfig HID_WIIMOTE
75692eda7e4SDavid Herrmann	tristate "Nintendo Wii / Wii U peripherals"
757f3757ceaSBenjamin Tissoires	depends on HID
75823a5a4a3SDavid Herrmann	depends on LEDS_CLASS
7596591d758SDavid Herrmann	select POWER_SUPPLY
760ef6f4115SDavid Herrmann	select INPUT_FF_MEMLESS
761fb51b443SDavid Herrmann	---help---
76292eda7e4SDavid Herrmann	Support for Nintendo Wii and Wii U Bluetooth peripherals. Supported
76392eda7e4SDavid Herrmann	devices are the Wii Remote and its extension devices, but also devices
76492eda7e4SDavid Herrmann	based on the Wii Remote like the Wii U Pro Controller or the
76592eda7e4SDavid Herrmann	Wii Balance Board.
766fb51b443SDavid Herrmann
76792eda7e4SDavid Herrmann	Support for all official Nintendo extensions is available, however, 3rd
76892eda7e4SDavid Herrmann	party extensions might not be supported. Please report these devices to:
76992eda7e4SDavid Herrmann	  http://github.com/dvdhrm/xwiimote/issues
77092eda7e4SDavid Herrmann
77192eda7e4SDavid Herrmann	Other Nintendo Wii U peripherals that are IEEE 802.11 based (including
77292eda7e4SDavid Herrmann	the Wii U Gamepad) might be supported in the future. But currently
77392eda7e4SDavid Herrmann	support is limited to Bluetooth based devices.
77492eda7e4SDavid Herrmann
77592eda7e4SDavid Herrmann	If unsure, say N.
77692eda7e4SDavid Herrmann
77792eda7e4SDavid Herrmann	To compile this driver as a module, choose M here: the
77892eda7e4SDavid Herrmann	module will be called hid-wiimote.
779cb99221bSDavid Herrmann
780cb2c9e3fSOlivier Scherlerconfig HID_XINMO
781cb2c9e3fSOlivier Scherler	tristate "Xin-Mo non-fully compliant devices"
782cb2c9e3fSOlivier Scherler	depends on HID
783cb2c9e3fSOlivier Scherler	---help---
784cb2c9e3fSOlivier Scherler	Support for Xin-Mo devices that are not fully compliant with the HID
785cb2c9e3fSOlivier Scherler	standard. Currently only supports the Xin-Mo Dual Arcade. Say Y here
786cb2c9e3fSOlivier Scherler	if you have a Xin-Mo Dual Arcade controller.
787cb2c9e3fSOlivier Scherler
7880f6f4319SJiri Kosinaconfig HID_ZEROPLUS
78973d5e8f7SJiri Kosina	tristate "Zeroplus based game controller support"
790d8814272SBenjamin Tissoires	depends on HID
7910f6f4319SJiri Kosina	---help---
792987fbc1fSJiri Slaby	  Say Y here if you have a Zeroplus based game controller.
793987fbc1fSJiri Slaby
7940f6f4319SJiri Kosinaconfig ZEROPLUS_FF
7950f6f4319SJiri Kosina	bool "Zeroplus based game controller force feedback support"
7960f6f4319SJiri Kosina	depends on HID_ZEROPLUS
7970f6f4319SJiri Kosina	select INPUT_FF_MEMLESS
7980f6f4319SJiri Kosina	---help---
7990f6f4319SJiri Kosina	  Say Y here if you have a Zeroplus based game controller and want
8000f6f4319SJiri Kosina	  to have force feedback support for it.
8010f6f4319SJiri Kosina
802a9885c8fSDon Princeconfig HID_ZYDACRON
80373d5e8f7SJiri Kosina	tristate "Zydacron remote control support"
804f3757ceaSBenjamin Tissoires	depends on HID
805a9885c8fSDon Prince	---help---
806a9885c8fSDon Prince	Support for Zydacron remote control.
807a9885c8fSDon Prince
808401ca24fSsrinivas pandruvadaconfig HID_SENSOR_HUB
809401ca24fSsrinivas pandruvada	tristate "HID Sensors framework support"
8100244ad00SMartin Schwidefsky	depends on HID
811401ca24fSsrinivas pandruvada	select MFD_CORE
812401ca24fSsrinivas pandruvada	default n
813fdc5663cSPaul Bolle	---help---
814401ca24fSsrinivas pandruvada	  Support for HID Sensor framework. This creates a MFD instance
815401ca24fSsrinivas pandruvada	  for a sensor hub and identifies all the sensors connected to it.
816401ca24fSsrinivas pandruvada	  Each sensor is registered as a MFD cell, so that sensor specific
817401ca24fSsrinivas pandruvada	  processing can be done in a separate driver. Each sensor
818401ca24fSsrinivas pandruvada	  drivers can use the service provided by this driver to register
819401ca24fSsrinivas pandruvada	  for events and handle data streams. Each sensor driver can format
820401ca24fSsrinivas pandruvada	  data and present to user mode using input or IIO interface.
821401ca24fSsrinivas pandruvada
8225f22a799SJiri Slabyendmenu
8235f22a799SJiri Slaby
8241f41a6a9SHenrik Rydbergendif # HID
8251f41a6a9SHenrik Rydberg
8261f41a6a9SHenrik Rydbergsource "drivers/hid/usbhid/Kconfig"
8271f41a6a9SHenrik Rydberg
8284a200c3bSBenjamin Tissoiressource "drivers/hid/i2c-hid/Kconfig"
8294a200c3bSBenjamin Tissoires
8301f41a6a9SHenrik Rydbergendmenu
831