xref: /linux/drivers/hid/Kconfig (revision e4321c5cebbee9fc4988223af9aa1298d939d388)
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
1780f221320SJiri Slabyconfig HID_CYPRESS
1796a108a14SDavid Rientjes	tristate "Cypress mouse and barcode readers" if EXPERT
180f3757ceaSBenjamin Tissoires	depends on HID
1816a108a14SDavid Rientjes	default !EXPERT
1820f221320SJiri Slaby	---help---
183f0bd8e43SJiri Kosina	Support for cypress mouse and barcode readers.
1840f221320SJiri Slaby
1850f6f4319SJiri Kosinaconfig HID_DRAGONRISE
186a1043044SBorislav Petkov	tristate "DragonRise Inc. game controller"
187d8814272SBenjamin Tissoires	depends on HID
1880f6f4319SJiri Kosina	---help---
1890f6f4319SJiri Kosina	Say Y here if you have DragonRise Inc. game controllers.
190b4a65f4eSNikolai Kondrashov	These might be branded as:
191b4a65f4eSNikolai Kondrashov	- Tesun USB-703
192b4a65f4eSNikolai Kondrashov	- Media-tech MT1504 "Rogue"
193b4a65f4eSNikolai Kondrashov	- DVTech JS19 "Gear"
194b4a65f4eSNikolai Kondrashov	- Defender Game Master
1950f6f4319SJiri Kosina
1960f6f4319SJiri Kosinaconfig DRAGONRISE_FF
197a1043044SBorislav Petkov	bool "DragonRise Inc. force feedback"
1980f6f4319SJiri Kosina	depends on HID_DRAGONRISE
1993f866fbdSRichard Walmsley	select INPUT_FF_MEMLESS
2003f866fbdSRichard Walmsley	---help---
2013f866fbdSRichard Walmsley	Say Y here if you want to enable force feedback support for DragonRise Inc.
2023f866fbdSRichard Walmsley	game controllers.
2033f866fbdSRichard Walmsley
20404561c5aSIgnaz Forsterconfig HID_EMS_FF
20504561c5aSIgnaz Forster	tristate "EMS Production Inc. force feedback support"
206d8814272SBenjamin Tissoires	depends on HID
20704561c5aSIgnaz Forster	select INPUT_FF_MEMLESS
20804561c5aSIgnaz Forster	---help---
20904561c5aSIgnaz Forster	Say Y here if you want to enable force feedback support for devices by
21004561c5aSIgnaz Forster	EMS Production Ltd.
21104561c5aSIgnaz Forster	Currently the following devices are known to be supported:
21204561c5aSIgnaz Forster	 - Trio Linker Plus II
21304561c5aSIgnaz Forster
21464b386eaSRichard Nauberconfig HID_ELECOM
215a1043044SBorislav Petkov	tristate "ELECOM BM084 bluetooth mouse"
216f3757ceaSBenjamin Tissoires	depends on HID
21764b386eaSRichard Nauber	---help---
21864b386eaSRichard Nauber	Support for the ELECOM BM084 (bluetooth mouse).
21964b386eaSRichard Nauber
220d23efc19SJiri Slabyconfig HID_ELO
221d23efc19SJiri Slaby	tristate "ELO USB 4000/4500 touchscreen"
222d23efc19SJiri Slaby	depends on USB_HID
223d23efc19SJiri Slaby	---help---
224d23efc19SJiri Slaby	Support for the ELO USB 4000/4500 touchscreens. Note that this is for
225d23efc19SJiri Slaby	different devices than those handled by CONFIG_TOUCHSCREEN_USB_ELO.
226d23efc19SJiri Slaby
2271f243e30SJiri Slabyconfig HID_EZKEY
2286a108a14SDavid Rientjes	tristate "Ezkey BTC 8193 keyboard" if EXPERT
229f3757ceaSBenjamin Tissoires	depends on HID
2306a108a14SDavid Rientjes	default !EXPERT
2311f243e30SJiri Slaby	---help---
232f0bd8e43SJiri Kosina	Support for Ezkey BTC 8193 keyboard.
2331f243e30SJiri Slaby
234d946e65eSAnssi Hannulaconfig HID_HOLTEK
235ff9bf5a2STom Harwood	tristate "Holtek HID devices"
236d946e65eSAnssi Hannula	depends on USB_HID
237d946e65eSAnssi Hannula	---help---
238ff9bf5a2STom Harwood	Support for Holtek based devices:
239ff9bf5a2STom Harwood	  - Holtek On Line Grip based game controller
240ff9bf5a2STom Harwood	  - Trust GXT 18 Gaming Keyboard
24141de326eSChristian Ohm	  - Sharkoon Drakonia / Perixx MX-2000 gaming mice
242d4f51890SChristian Ohm	  - Tracer Sniper TRM-503 / NOVA Gaming Slider X200 /
243d4f51890SChristian Ohm	    Zalman ZM-GM1
2447da7cbbbSAnders F. U. Kiær	  - SHARKOON DarkGlider Gaming mouse
245f1a4914bSAnders F. U. Kiær	  - LEETGION Hellion Gaming Mouse
246d946e65eSAnssi Hannula
247d946e65eSAnssi Hannulaconfig HOLTEK_FF
248d946e65eSAnssi Hannula	bool "Holtek On Line Grip force feedback support"
249d946e65eSAnssi Hannula	depends on HID_HOLTEK
250d946e65eSAnssi Hannula	select INPUT_FF_MEMLESS
251d946e65eSAnssi Hannula	---help---
252d946e65eSAnssi Hannula	  Say Y here if you have a Holtek On Line Grip based game controller
253d946e65eSAnssi Hannula	  and want to have force feedback support for it.
254d946e65eSAnssi Hannula
25568e353feSMartin Ruskoconfig HID_HUION
25668e353feSMartin Rusko	tristate "Huion tablets"
25768e353feSMartin Rusko	depends on USB_HID
25868e353feSMartin Rusko	---help---
25968e353feSMartin Rusko	Support for Huion 580 tablet.
26068e353feSMartin Rusko
261177900e8SJiri Kosinaconfig HID_KEYTOUCH
2623d366e28SStephen Boyd	tristate "Keytouch HID devices"
263f3757ceaSBenjamin Tissoires	depends on HID
264177900e8SJiri Kosina	---help---
265177900e8SJiri Kosina	Support for Keytouch HID devices not fully compliant with
266177900e8SJiri Kosina	the specification. Currently supported:
267177900e8SJiri Kosina		- Keytouch IEC 60945
268177900e8SJiri Kosina
26979422741SJiri Kosinaconfig HID_KYE
27022ca20b2SNikolai Kondrashov	tristate "KYE/Genius devices"
271d8814272SBenjamin Tissoires	depends on HID
27279422741SJiri Kosina	---help---
27322ca20b2SNikolai Kondrashov	Support for KYE/Genius devices not fully compliant with HID standard:
27422ca20b2SNikolai Kondrashov	- Ergo Mouse
27522ca20b2SNikolai Kondrashov	- EasyPen i405X tablet
27622ca20b2SNikolai Kondrashov	- MousePen i608X tablet
27722ca20b2SNikolai Kondrashov	- EasyPen M610X tablet
27879422741SJiri Kosina
279f8a489ccSNikolai Kondrashovconfig HID_UCLOGIC
280f36ee074SJiri Kosina	tristate "UC-Logic"
281f3757ceaSBenjamin Tissoires	depends on HID
282f8a489ccSNikolai Kondrashov	---help---
283f8a489ccSNikolai Kondrashov	Support for UC-Logic tablets.
284f8a489ccSNikolai Kondrashov
28572a46344SNikolai Kondrashovconfig HID_WALTOP
28672a46344SNikolai Kondrashov	tristate "Waltop"
287f3757ceaSBenjamin Tissoires	depends on HID
28872a46344SNikolai Kondrashov	---help---
28972a46344SNikolai Kondrashov	Support for Waltop tablets.
29072a46344SNikolai Kondrashov
291949f8fefSJiri Slabyconfig HID_GYRATION
292a1043044SBorislav Petkov	tristate "Gyration remote control"
293f3757ceaSBenjamin Tissoires	depends on HID
294949f8fefSJiri Slaby	---help---
295f0bd8e43SJiri Kosina	Support for Gyration remote control.
296949f8fefSJiri Slaby
2974ddfe028SBastien Noceraconfig HID_ICADE
2984ddfe028SBastien Nocera	tristate "ION iCade arcade controller"
299f3757ceaSBenjamin Tissoires	depends on HID
3004ddfe028SBastien Nocera	---help---
3014ddfe028SBastien Nocera	Support for the ION iCade arcade controller to work as a joystick.
3024ddfe028SBastien Nocera
3034ddfe028SBastien Nocera	To compile this driver as a module, choose M here: the
3044ddfe028SBastien Nocera	module will be called hid-icade.
3054ddfe028SBastien Nocera
306711a680eSBruno Premontconfig HID_TWINHAN
307a1043044SBorislav Petkov	tristate "Twinhan IR remote control"
308f3757ceaSBenjamin Tissoires	depends on HID
309711a680eSBruno Premont	---help---
310711a680eSBruno Premont	Support for Twinhan IR remote control.
311711a680eSBruno Premont
312fdf93aa3SJiri Kosinaconfig HID_KENSINGTON
3136a108a14SDavid Rientjes	tristate "Kensington Slimblade Trackball" if EXPERT
314f3757ceaSBenjamin Tissoires	depends on HID
3156a108a14SDavid Rientjes	default !EXPERT
316fdf93aa3SJiri Kosina	---help---
317fdf93aa3SJiri Kosina	Support for Kensington Slimblade Trackball.
318fdf93aa3SJiri Kosina
31975b07022SChris Schlundconfig HID_LCPOWER
32075b07022SChris Schlund	tristate "LC-Power"
321f3757ceaSBenjamin Tissoires	depends on HID
32275b07022SChris Schlund	---help---
32375b07022SChris Schlund	Support for LC-Power RC1000MCE RF remote control.
32475b07022SChris Schlund
325c1dcad2dSBernhard Seiboldconfig HID_LENOVO_TPKBD
326c1dcad2dSBernhard Seibold	tristate "Lenovo ThinkPad USB Keyboard with TrackPoint"
3270c521836SBenjamin Tissoires	depends on HID
32825976a79SBryan Wu	select NEW_LEDS
329c1dcad2dSBernhard Seibold	select LEDS_CLASS
330c1dcad2dSBernhard Seibold	---help---
331c1dcad2dSBernhard Seibold	Support for the Lenovo ThinkPad USB Keyboard with TrackPoint.
332c1dcad2dSBernhard Seibold
333c1dcad2dSBernhard Seibold	Say Y here if you have a Lenovo ThinkPad USB Keyboard with TrackPoint
334c1dcad2dSBernhard Seibold	and would like to use device-specific features like changing the
335c1dcad2dSBernhard Seibold	sensitivity of the trackpoint, using the microphone mute button or
336c1dcad2dSBernhard Seibold	controlling the mute and microphone mute LEDs.
337c1dcad2dSBernhard Seibold
3385f22a799SJiri Slabyconfig HID_LOGITECH
3396a108a14SDavid Rientjes	tristate "Logitech devices" if EXPERT
340f3757ceaSBenjamin Tissoires	depends on HID
3416a108a14SDavid Rientjes	default !EXPERT
3425f22a799SJiri Slaby	---help---
343f0bd8e43SJiri Kosina	Support for Logitech devices that are not fully compliant with HID standard.
3445f22a799SJiri Slaby
345534a7b8eSNestor Lopez Casadoconfig HID_LOGITECH_DJ
346534a7b8eSNestor Lopez Casado	tristate "Logitech Unifying receivers full support"
347dcdc50e7SOlivier Gay	depends on HIDRAW
348534a7b8eSNestor Lopez Casado	depends on HID_LOGITECH
349534a7b8eSNestor Lopez Casado	---help---
350534a7b8eSNestor Lopez Casado	Say Y if you want support for Logitech Unifying receivers and devices.
351534a7b8eSNestor Lopez Casado	Unifying receivers are capable of pairing up to 6 Logitech compliant
3520944e964SKonstantin Khlebnikov	devices to the same receiver. Without this driver it will be handled by
353d82603c6SJorrit Schippers	generic USB_HID driver and all incoming events will be multiplexed
3540944e964SKonstantin Khlebnikov	into a single mouse and a single keyboard device.
355534a7b8eSNestor Lopez Casado
356606bd0a8SJiri Slabyconfig LOGITECH_FF
3570f6f4319SJiri Kosina	bool "Logitech force feedback support"
358606bd0a8SJiri Slaby	depends on HID_LOGITECH
359606bd0a8SJiri Slaby	select INPUT_FF_MEMLESS
360606bd0a8SJiri Slaby	help
361606bd0a8SJiri Slaby	  Say Y here if you have one of these devices:
362606bd0a8SJiri Slaby	  - Logitech WingMan Cordless RumblePad
363606bd0a8SJiri Slaby	  - Logitech WingMan Cordless RumblePad 2
364606bd0a8SJiri Slaby	  - Logitech WingMan Force 3D
365606bd0a8SJiri Slaby	  - Logitech Formula Force EX
366fd30ea8cSJiri Kosina	  - Logitech WingMan Formula Force GP
367606bd0a8SJiri Slaby
368606bd0a8SJiri Slaby	  and if you want to enable force feedback for them.
369606bd0a8SJiri Slaby	  Note: if you say N here, this device will still be supported, but without
370606bd0a8SJiri Slaby	  force feedback.
371606bd0a8SJiri Slaby
372606bd0a8SJiri Slabyconfig LOGIRUMBLEPAD2_FF
373bd04363dSElias Vanderstuyft	bool "Logitech force feedback support (variant 2)"
374606bd0a8SJiri Slaby	depends on HID_LOGITECH
375606bd0a8SJiri Slaby	select INPUT_FF_MEMLESS
376606bd0a8SJiri Slaby	help
377bd04363dSElias Vanderstuyft	  Say Y here if you want to enable force feedback support for:
378bd04363dSElias Vanderstuyft	  - Logitech RumblePad
379bd04363dSElias Vanderstuyft	  - Logitech Rumblepad 2
380bd04363dSElias Vanderstuyft	  - Logitech Formula Vibration Feedback Wheel
381606bd0a8SJiri Slaby
38274f292caSGary Steinconfig LOGIG940_FF
38374f292caSGary Stein	bool "Logitech Flight System G940 force feedback support"
38474f292caSGary Stein	depends on HID_LOGITECH
38574f292caSGary Stein	select INPUT_FF_MEMLESS
38674f292caSGary Stein	help
38774f292caSGary Stein	  Say Y here if you want to enable force feedback support for Logitech
38874f292caSGary Stein	  Flight System G940 devices.
38974f292caSGary Stein
390a7ac90f1SMichal Malýconfig LOGIWHEELS_FF
391a7ac90f1SMichal Malý	bool "Logitech wheels configuration and force feedback support"
39232c88cbcSSimon Wood	depends on HID_LOGITECH
39332c88cbcSSimon Wood	select INPUT_FF_MEMLESS
39470c2cabdSJiri Kosina	default LOGITECH_FF
39532c88cbcSSimon Wood	help
396a7ac90f1SMichal Malý	  Say Y here if you want to enable force feedback and range setting
397a7ac90f1SMichal Malý	  support for following Logitech wheels:
398a7ac90f1SMichal Malý	  - Logitech Driving Force
399a7ac90f1SMichal Malý	  - Logitech Driving Force Pro
400a7ac90f1SMichal Malý	  - Logitech Driving Force GT
401a7ac90f1SMichal Malý	  - Logitech G25
402a7ac90f1SMichal Malý	  - Logitech G27
403a7ac90f1SMichal Malý	  - Logitech MOMO/MOMO 2
404a7ac90f1SMichal Malý	  - Logitech Formula Force EX
40532c88cbcSSimon Wood
406128537ceSMichael Pooleconfig HID_MAGICMOUSE
407cdfee4ffSDavid King	tristate "Apple Magic Mouse/Trackpad multi-touch support"
408f3757ceaSBenjamin Tissoires	depends on HID
409128537ceSMichael Poole	---help---
410cdfee4ffSDavid King	Support for the Apple Magic Mouse/Trackpad multi-touch.
411128537ceSMichael Poole
412128537ceSMichael Poole	Say Y here if you want support for the multi-touch features of the
413cdfee4ffSDavid King	Apple Wireless "Magic" Mouse and the Apple Wireless "Magic" Trackpad.
414128537ceSMichael Poole
41578a849a6SJiri Slabyconfig HID_MICROSOFT
4166a108a14SDavid Rientjes	tristate "Microsoft non-fully HID-compliant devices" if EXPERT
417f3757ceaSBenjamin Tissoires	depends on HID
4186a108a14SDavid Rientjes	default !EXPERT
41978a849a6SJiri Slaby	---help---
420f0bd8e43SJiri Kosina	Support for Microsoft devices that are not fully compliant with HID standard.
42178a849a6SJiri Slaby
4223b8006e5SJiri Slabyconfig HID_MONTEREY
4236a108a14SDavid Rientjes	tristate "Monterey Genius KB29E keyboard" if EXPERT
424f3757ceaSBenjamin Tissoires	depends on HID
4256a108a14SDavid Rientjes	default !EXPERT
4263b8006e5SJiri Slaby	---help---
4273b8006e5SJiri Slaby	Support for Monterey Genius KB29E.
4283b8006e5SJiri Slaby
4295519cab4SBenjamin Tissoiresconfig HID_MULTITOUCH
4305519cab4SBenjamin Tissoires	tristate "HID Multitouch panels"
431d8814272SBenjamin Tissoires	depends on HID
4325519cab4SBenjamin Tissoires	---help---
4335519cab4SBenjamin Tissoires	  Generic support for HID multitouch panels.
4345519cab4SBenjamin Tissoires
4355519cab4SBenjamin Tissoires	  Say Y here if you have one of the following devices:
436f786bba4SBenjamin Tissoires	  - 3M PCT touch screens
437e6aac342SBenjamin Tissoires	  - ActionStar dual touch panels
438b1057124SBenjamin Tissoires	  - Atmel panels
43922408283SBenjamin Tissoires	  - Cando dual touch panels
440942fd422SAustin Zhang	  - Chunghwa panels
44179603dc9SBenjamin Tissoires	  - CVTouch panels
4422d93666eSBenjamin Tissoires	  - Cypress TrueTouch panels
443e02aea91SJan Matějka	  - Elan Microelectronics touch panels
444c04abeefSBenjamin Tissoires	  - Elo TouchSystems IntelliTouch Plus panels
44522408283SBenjamin Tissoires	  - GeneralTouch 'Sensing Win7-TwoFinger' panels
446ee0fbd14SBenjamin Tissoires	  - GoodTouch panels
4472d93666eSBenjamin Tissoires	  - Hanvon dual touch panels
44822408283SBenjamin Tissoires	  - Ilitek dual touch panels
4494dfcced8SBenjamin Tissoires	  - IrTouch Infrared USB panels
450c50bb1a4SJeff Brown	  - LG Display panels (Dell ST2220Tc)
451df167c4aSBenjamin Tissoires	  - Lumio CrystalTouch panels
4524a6ee685SBenjamin Tissoires	  - MosArt dual-touch panels
4532258e863SDenis Kovalev	  - Panasonic multitouch panels
4546ab3a9a6SJohn Sung	  - PenMount dual touch panels
455847672cdSBenjamin Tissoires	  - Perixx Peripad 701 touchpad
456b7ea95ffSAaron Tian	  - PixArt optical touch screen
4572d93666eSBenjamin Tissoires	  - Pixcir dual touch panels
4585e7ea11fSBenjamin Tissoires	  - Quanta panels
45922408283SBenjamin Tissoires	  - eGalax dual-touch panels, including the Joojoo and Wetab tablets
460a6802e00SForest Bond	  - SiS multitouch panels
461043b403aSBenjamin Tissoires	  - Stantum multitouch panels
4625e74e56dSBenjamin Tissoires	  - Touch International Panels
463617b64f9SBenjamin Tissoires	  - Unitec Panels
464bf9d121eSKaiChung Cheng	  - Wistron optical touch panels
465bc8a2a9bSice chien	  - XAT optical touch panels
46611576c61SMasatoshi Hoshikawa	  - Xiroku optical touch panels
467e9a09aedSBenjamin Tissoires	  - Zytronic touch panels
4685519cab4SBenjamin Tissoires
4692d93666eSBenjamin Tissoires	  If unsure, say N.
4702d93666eSBenjamin Tissoires
4712d93666eSBenjamin Tissoires	  To compile this driver as a module, choose M here: the
4722d93666eSBenjamin Tissoires	  module will be called hid-multitouch.
4732d93666eSBenjamin Tissoires
47494011f93SRafi Rubinconfig HID_NTRIG
475a1043044SBorislav Petkov	tristate "N-Trig touch screen"
47694011f93SRafi Rubin	depends on USB_HID
47794011f93SRafi Rubin	---help---
47894011f93SRafi Rubin	Support for N-Trig touch screen.
47994011f93SRafi Rubin
480cd9ec30dSJohnathon Harrisconfig HID_ORTEK
481d586dca0SJiri Kosina	tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad"
482f3757ceaSBenjamin Tissoires	depends on HID
483cd9ec30dSJohnathon Harris	---help---
484d586dca0SJiri Kosina	There are certain devices which have LogicalMaximum wrong in the keyboard
485d586dca0SJiri Kosina	usage page of their report descriptor. The most prevailing ones so far
486d586dca0SJiri Kosina	are manufactured by Ortek, thus the name of the driver. Currently
487d586dca0SJiri Kosina	supported devices by this driver are
488d586dca0SJiri Kosina
489d586dca0SJiri Kosina	   - Ortek PKB-1700
490d586dca0SJiri Kosina	   - Ortek WKB-2000
491d586dca0SJiri Kosina	   - Skycable wireless presenter
492cd9ec30dSJohnathon Harris
4935f022298SJiri Slabyconfig HID_PANTHERLORD
494a1043044SBorislav Petkov	tristate "Pantherlord/GreenAsia game controller"
495d8814272SBenjamin Tissoires	depends on HID
4960f6f4319SJiri Kosina	---help---
4970f6f4319SJiri Kosina	  Say Y here if you have a PantherLord/GreenAsia based game controller
4980f6f4319SJiri Kosina	  or adapter.
4990f6f4319SJiri Kosina
5005f022298SJiri Slabyconfig PANTHERLORD_FF
5015f022298SJiri Slaby	bool "Pantherlord force feedback support"
5025f022298SJiri Slaby	depends on HID_PANTHERLORD
5035f022298SJiri Slaby	select INPUT_FF_MEMLESS
5040f6f4319SJiri Kosina	---help---
5055f022298SJiri Slaby	  Say Y here if you have a PantherLord/GreenAsia based game controller
5065f022298SJiri Slaby	  or adapter and want to enable force feedback support for it.
5075f022298SJiri Slaby
5081e762532SJiri Slabyconfig HID_PETALYNX
509a1043044SBorislav Petkov	tristate "Petalynx Maxter remote control"
510f3757ceaSBenjamin Tissoires	depends on HID
5111e762532SJiri Slaby	---help---
512f0bd8e43SJiri Kosina	Support for Petalynx Maxter remote control.
5131e762532SJiri Slaby
514236db47cSBruno Prémontconfig HID_PICOLCD
515236db47cSBruno Prémont	tristate "PicoLCD (graphic version)"
516b7966a4dSBenjamin Tissoires	depends on HID
517236db47cSBruno Prémont	---help---
518236db47cSBruno Prémont	  This provides support for Minibox PicoLCD devices, currently
519236db47cSBruno Prémont	  only the graphical ones are supported.
520236db47cSBruno Prémont
521236db47cSBruno Prémont	  This includes support for the following device features:
522236db47cSBruno Prémont	  - Keypad
523236db47cSBruno Prémont	  - Switching between Firmware and Flash mode
5249bbf2b98SBruno Prémont	  - EEProm / Flash access     (via debugfs)
5255435f281SBruno Prémont	  Features selectively enabled:
5265435f281SBruno Prémont	  - Framebuffer for monochrome 256x64 display
5275435f281SBruno Prémont	  - Backlight control
5285435f281SBruno Prémont	  - Contrast control
5295435f281SBruno Prémont	  - General purpose outputs
530b8c21cf6SBruno Prémont	  Features that are not (yet) supported:
531236db47cSBruno Prémont	  - IR
532236db47cSBruno Prémont
5335435f281SBruno Prémontconfig HID_PICOLCD_FB
5346a108a14SDavid Rientjes	bool "Framebuffer support" if EXPERT
5356a108a14SDavid Rientjes	default !EXPERT
5365435f281SBruno Prémont	depends on HID_PICOLCD
5375435f281SBruno Prémont	depends on HID_PICOLCD=FB || FB=y
5385435f281SBruno Prémont	select FB_DEFERRED_IO
5395435f281SBruno Prémont	select FB_SYS_FILLRECT
5405435f281SBruno Prémont	select FB_SYS_COPYAREA
5415435f281SBruno Prémont	select FB_SYS_IMAGEBLIT
5425435f281SBruno Prémont	select FB_SYS_FOPS
5435435f281SBruno Prémont	---help---
5445435f281SBruno Prémont	  Provide access to PicoLCD's 256x64 monochrome display via a
5456b2aac42SMasanari Iida	  framebuffer device.
5465435f281SBruno Prémont
5475435f281SBruno Prémontconfig HID_PICOLCD_BACKLIGHT
5486a108a14SDavid Rientjes	bool "Backlight control" if EXPERT
5496a108a14SDavid Rientjes	default !EXPERT
5505435f281SBruno Prémont	depends on HID_PICOLCD
5515435f281SBruno Prémont	depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y
5525435f281SBruno Prémont	---help---
5535435f281SBruno Prémont	  Provide access to PicoLCD's backlight control via backlight
5545435f281SBruno Prémont	  class.
5555435f281SBruno Prémont
5565435f281SBruno Prémontconfig HID_PICOLCD_LCD
5576a108a14SDavid Rientjes	bool "Contrast control" if EXPERT
5586a108a14SDavid Rientjes	default !EXPERT
5595435f281SBruno Prémont	depends on HID_PICOLCD
5605435f281SBruno Prémont	depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y
5615435f281SBruno Prémont	---help---
5625435f281SBruno Prémont	  Provide access to PicoLCD's LCD contrast via lcd class.
5635435f281SBruno Prémont
5645435f281SBruno Prémontconfig HID_PICOLCD_LEDS
5656a108a14SDavid Rientjes	bool "GPO via leds class" if EXPERT
5666a108a14SDavid Rientjes	default !EXPERT
5675435f281SBruno Prémont	depends on HID_PICOLCD
5685435f281SBruno Prémont	depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y
5695435f281SBruno Prémont	---help---
5705435f281SBruno Prémont	  Provide access to PicoLCD's GPO pins via leds class.
5715435f281SBruno Prémont
572fabdbf2fSBruno Prémontconfig HID_PICOLCD_CIR
573fabdbf2fSBruno Prémont	bool "CIR via RC class" if EXPERT
574fabdbf2fSBruno Prémont	default !EXPERT
575fabdbf2fSBruno Prémont	depends on HID_PICOLCD
576fabdbf2fSBruno Prémont	depends on HID_PICOLCD=RC_CORE || RC_CORE=y
577fabdbf2fSBruno Prémont	---help---
578fabdbf2fSBruno Prémont	  Provide access to PicoLCD's CIR interface via remote control (LIRC).
579fabdbf2fSBruno Prémont
580f6a04605STerry Lambertconfig HID_PRIMAX
581dfe9a312SJiri Kosina	tristate "Primax non-fully HID-compliant devices"
582f3757ceaSBenjamin Tissoires	depends on HID
583f6a04605STerry Lambert	---help---
584f6a04605STerry Lambert	Support for Primax devices that are not fully compliant with the
585f6a04605STerry Lambert	HID standard.
586f6a04605STerry Lambert
587206f5f2fSStefan Achatzconfig HID_ROCCAT
588bd393dbdSStefan Achatz	tristate "Roccat device support"
589206f5f2fSStefan Achatz	depends on USB_HID
590206f5f2fSStefan Achatz	---help---
591bd393dbdSStefan Achatz	Support for Roccat devices.
592bd393dbdSStefan Achatz	Say Y here if you have a Roccat mouse or keyboard and want
593bd393dbdSStefan Achatz	support for its special functionalities.
594cb7cf3daSStefan Achatz
5951e93674aSAndreas Hübnerconfig HID_SAITEK
5961e93674aSAndreas Hübner	tristate "Saitek non-fully HID-compliant devices"
597f3757ceaSBenjamin Tissoires	depends on HID
5981e93674aSAndreas Hübner	---help---
5991e93674aSAndreas Hübner	Support for Saitek devices that are not fully compliant with the
6001e93674aSAndreas Hübner	HID standard.
6011e93674aSAndreas Hübner
6021e93674aSAndreas Hübner	Currently only supports the PS1000 controller.
6031e93674aSAndreas Hübner
604980a3da6SJiri Slabyconfig HID_SAMSUNG
605a1043044SBorislav Petkov	tristate "Samsung InfraRed remote control or keyboards"
606f3757ceaSBenjamin Tissoires	depends on HID
607980a3da6SJiri Slaby	---help---
608b355850bSDon Prince	Support for Samsung InfraRed remote control or keyboards.
609980a3da6SJiri Slaby
610bd28ce00SJiri Slabyconfig HID_SONY
611*e4321c5cSFrank Praznik	tristate "Sony PS2/3/4 accessories"
612bd28ce00SJiri Slaby	depends on USB_HID
61340e32ee6SJiri Kosina	depends on NEW_LEDS
61440e32ee6SJiri Kosina	depends on LEDS_CLASS
615695baaa7SJiri Kosina	select POWER_SUPPLY
616bd28ce00SJiri Slaby	---help---
617f04d5140SColin Leitner	Support for
6185844c1cdSDavid Dillow
619f04d5140SColin Leitner	  * Sony PS3 6-axis controllers
620*e4321c5cSFrank Praznik	  * Sony PS4 DualShock 4 controllers
621f04d5140SColin Leitner	  * Buzz controllers
622078328daSJiri Kosina	  * Sony PS3 Blue-ray Disk Remote Control (Bluetooth)
623078328daSJiri Kosina	  * Logitech Harmony adapter for Sony Playstation 3 (Bluetooth)
624bd28ce00SJiri Slaby
625a08c22c0SSven Eckelmannconfig SONY_FF
626*e4321c5cSFrank Praznik	bool "Sony PS2/3/4 accessories force feedback support"
627a08c22c0SSven Eckelmann	depends on HID_SONY
628a08c22c0SSven Eckelmann	select INPUT_FF_MEMLESS
629a08c22c0SSven Eckelmann	---help---
630*e4321c5cSFrank Praznik	Say Y here if you have a Sony PS2/3/4 accessory and want to enable
631*e4321c5cSFrank Praznik	force feedback support for it.
632a08c22c0SSven Eckelmann
63374bc6953SStefan Kriwanekconfig HID_SPEEDLINK
63474bc6953SStefan Kriwanek	tristate "Speedlink VAD Cezanne mouse support"
635d8814272SBenjamin Tissoires	depends on HID
63674bc6953SStefan Kriwanek	---help---
63774bc6953SStefan Kriwanek	Support for Speedlink Vicious and Divine Cezanne mouse.
63874bc6953SStefan Kriwanek
639090800c2SJiri Kosinaconfig HID_STEELSERIES
64075dbb953SSimon Wood	tristate "Steelseries SRW-S1 steering wheel support"
641d8814272SBenjamin Tissoires	depends on HID
64275dbb953SSimon Wood	---help---
64375dbb953SSimon Wood	Support for Steelseries SRW-S1 steering wheel
64475dbb953SSimon Wood
64590231e7eSJiri Slabyconfig HID_SUNPLUS
646a1043044SBorislav Petkov	tristate "Sunplus wireless desktop"
647f3757ceaSBenjamin Tissoires	depends on HID
64890231e7eSJiri Slaby	---help---
649f0bd8e43SJiri Kosina	Support for Sunplus wireless desktop.
65090231e7eSJiri Slaby
6510f6f4319SJiri Kosinaconfig HID_GREENASIA
652a1043044SBorislav Petkov	tristate "GreenAsia (Product ID 0x12) game controller support"
653d8814272SBenjamin Tissoires	depends on HID
6540f6f4319SJiri Kosina	---help---
6550f6f4319SJiri Kosina	  Say Y here if you have a GreenAsia (Product ID 0x12) based game
6560f6f4319SJiri Kosina	  controller or adapter.
6570f6f4319SJiri Kosina
6580f6f4319SJiri Kosinaconfig GREENASIA_FF
6590f6f4319SJiri Kosina	bool "GreenAsia (Product ID 0x12) force feedback support"
6600f6f4319SJiri Kosina	depends on HID_GREENASIA
66142859e0bSLukasz Lubojanski	select INPUT_FF_MEMLESS
66242859e0bSLukasz Lubojanski	---help---
66342859e0bSLukasz Lubojanski	Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
664692105b8SMatt LaPlante	(like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
66542859e0bSLukasz Lubojanski	and want to enable force feedback support for it.
66642859e0bSLukasz Lubojanski
6676cf851d8SJiri Kosinaconfig HID_HYPERV_MOUSE
6686cf851d8SJiri Kosina	tristate "Microsoft Hyper-V mouse driver"
6696cf851d8SJiri Kosina	depends on HYPERV
6706cf851d8SJiri Kosina	---help---
6716cf851d8SJiri Kosina	Select this option to enable the Hyper-V mouse driver.
6726cf851d8SJiri Kosina
673fac733f0SJussi Kivilinnaconfig HID_SMARTJOYPLUS
67473d5e8f7SJiri Kosina	tristate "SmartJoy PLUS PS2/USB adapter support"
675d8814272SBenjamin Tissoires	depends on HID
676fac733f0SJussi Kivilinna	---help---
6771bcc2067SSean Young	Support for SmartJoy PLUS PS2/USB adapter, Super Dual Box,
6781bcc2067SSean Young	Super Joy Box 3 Pro, Super Dual Box Pro, and Super Joy Box 5 Pro.
6791bcc2067SSean Young
6801bcc2067SSean Young	Note that DDR (Dance Dance Revolution) mode is not supported, nor
6811bcc2067SSean Young	is pressure sensitive buttons on the pro models.
682fac733f0SJussi Kivilinna
683fac733f0SJussi Kivilinnaconfig SMARTJOYPLUS_FF
684fac733f0SJussi Kivilinna	bool "SmartJoy PLUS PS2/USB adapter force feedback support"
685fac733f0SJussi Kivilinna	depends on HID_SMARTJOYPLUS
686fac733f0SJussi Kivilinna	select INPUT_FF_MEMLESS
687fac733f0SJussi Kivilinna	---help---
688fac733f0SJussi Kivilinna	Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to
689fac733f0SJussi Kivilinna	enable force feedback support for it.
690fac733f0SJussi Kivilinna
6912701eaabSJiri Kosinaconfig HID_TIVO
69244ea35c1SJarod Wilson	tristate "TiVo Slide Bluetooth remote control support"
693f3757ceaSBenjamin Tissoires	depends on HID
69444ea35c1SJarod Wilson	---help---
69544ea35c1SJarod Wilson	Say Y if you have a TiVo Slide Bluetooth remote control.
69644ea35c1SJarod Wilson
697f14f526dSLev Babievconfig HID_TOPSEED
69854001081SKees Bakker	tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support"
699f3757ceaSBenjamin Tissoires	depends on HID
700f14f526dSLev Babiev	---help---
70154001081SKees Bakker	Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic
70254001081SKees Bakker	CLLRCMCE remote control.
703f14f526dSLev Babiev
70430ba2fbdSVivien Didelotconfig HID_THINGM
70530ba2fbdSVivien Didelot	tristate "ThingM blink(1) USB RGB LED"
706f3757ceaSBenjamin Tissoires	depends on HID
70730ba2fbdSVivien Didelot	depends on LEDS_CLASS
70830ba2fbdSVivien Didelot	---help---
70930ba2fbdSVivien Didelot	Support for the ThingM blink(1) USB RGB LED. This driver registers a
71030ba2fbdSVivien Didelot	Linux LED class instance, plus additional sysfs attributes to control
71130ba2fbdSVivien Didelot	RGB colors, fade time and playing. The device is exposed through hidraw
71230ba2fbdSVivien Didelot	to access other functions.
71330ba2fbdSVivien Didelot
7140f6f4319SJiri Kosinaconfig HID_THRUSTMASTER
71573d5e8f7SJiri Kosina	tristate "ThrustMaster devices support"
716d8814272SBenjamin Tissoires	depends on HID
7170f6f4319SJiri Kosina	---help---
71810e41a71SJiri Slaby	  Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or
7190f6f4319SJiri Kosina	  a THRUSTMASTER Ferrari GT Rumble Wheel.
7200f6f4319SJiri Kosina
7210f6f4319SJiri Kosinaconfig THRUSTMASTER_FF
7220f6f4319SJiri Kosina	bool "ThrustMaster devices force feedback support"
7230f6f4319SJiri Kosina	depends on HID_THRUSTMASTER
7240f6f4319SJiri Kosina	select INPUT_FF_MEMLESS
7250f6f4319SJiri Kosina	---help---
7267a84b133SRuben Aos Garralda	  Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3,
7277a84b133SRuben Aos Garralda	  a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT
7287a84b133SRuben Aos Garralda	  Rumble Force or Force Feedback Wheel.
72910e41a71SJiri Slaby
730ca2dcd40SBastien Noceraconfig HID_WACOM
7312dbf209dSJiri Kosina	tristate "Wacom Bluetooth devices support"
732f3757ceaSBenjamin Tissoires	depends on HID
7334e52b538SDavid Rientjes	depends on LEDS_CLASS
73459d2334aSPrzemo Firszt	select POWER_SUPPLY
73559d2334aSPrzemo Firszt	---help---
7367e551abbSPrzemo Firszt	Support for Wacom Graphire Bluetooth and Intuos4 WL tablets.
73759d2334aSPrzemo Firszt
738fb51b443SDavid Herrmannconfig HID_WIIMOTE
73992eda7e4SDavid Herrmann	tristate "Nintendo Wii / Wii U peripherals"
740f3757ceaSBenjamin Tissoires	depends on HID
74123a5a4a3SDavid Herrmann	depends on LEDS_CLASS
7426591d758SDavid Herrmann	select POWER_SUPPLY
743ef6f4115SDavid Herrmann	select INPUT_FF_MEMLESS
744fb51b443SDavid Herrmann	---help---
74592eda7e4SDavid Herrmann	Support for Nintendo Wii and Wii U Bluetooth peripherals. Supported
74692eda7e4SDavid Herrmann	devices are the Wii Remote and its extension devices, but also devices
74792eda7e4SDavid Herrmann	based on the Wii Remote like the Wii U Pro Controller or the
74892eda7e4SDavid Herrmann	Wii Balance Board.
749fb51b443SDavid Herrmann
75092eda7e4SDavid Herrmann	Support for all official Nintendo extensions is available, however, 3rd
75192eda7e4SDavid Herrmann	party extensions might not be supported. Please report these devices to:
75292eda7e4SDavid Herrmann	  http://github.com/dvdhrm/xwiimote/issues
75392eda7e4SDavid Herrmann
75492eda7e4SDavid Herrmann	Other Nintendo Wii U peripherals that are IEEE 802.11 based (including
75592eda7e4SDavid Herrmann	the Wii U Gamepad) might be supported in the future. But currently
75692eda7e4SDavid Herrmann	support is limited to Bluetooth based devices.
75792eda7e4SDavid Herrmann
75892eda7e4SDavid Herrmann	If unsure, say N.
75992eda7e4SDavid Herrmann
76092eda7e4SDavid Herrmann	To compile this driver as a module, choose M here: the
76192eda7e4SDavid Herrmann	module will be called hid-wiimote.
762cb99221bSDavid Herrmann
763cb2c9e3fSOlivier Scherlerconfig HID_XINMO
764cb2c9e3fSOlivier Scherler	tristate "Xin-Mo non-fully compliant devices"
765cb2c9e3fSOlivier Scherler	depends on HID
766cb2c9e3fSOlivier Scherler	---help---
767cb2c9e3fSOlivier Scherler	Support for Xin-Mo devices that are not fully compliant with the HID
768cb2c9e3fSOlivier Scherler	standard. Currently only supports the Xin-Mo Dual Arcade. Say Y here
769cb2c9e3fSOlivier Scherler	if you have a Xin-Mo Dual Arcade controller.
770cb2c9e3fSOlivier Scherler
7710f6f4319SJiri Kosinaconfig HID_ZEROPLUS
77273d5e8f7SJiri Kosina	tristate "Zeroplus based game controller support"
773d8814272SBenjamin Tissoires	depends on HID
7740f6f4319SJiri Kosina	---help---
775987fbc1fSJiri Slaby	  Say Y here if you have a Zeroplus based game controller.
776987fbc1fSJiri Slaby
7770f6f4319SJiri Kosinaconfig ZEROPLUS_FF
7780f6f4319SJiri Kosina	bool "Zeroplus based game controller force feedback support"
7790f6f4319SJiri Kosina	depends on HID_ZEROPLUS
7800f6f4319SJiri Kosina	select INPUT_FF_MEMLESS
7810f6f4319SJiri Kosina	---help---
7820f6f4319SJiri Kosina	  Say Y here if you have a Zeroplus based game controller and want
7830f6f4319SJiri Kosina	  to have force feedback support for it.
7840f6f4319SJiri Kosina
785a9885c8fSDon Princeconfig HID_ZYDACRON
78673d5e8f7SJiri Kosina	tristate "Zydacron remote control support"
787f3757ceaSBenjamin Tissoires	depends on HID
788a9885c8fSDon Prince	---help---
789a9885c8fSDon Prince	Support for Zydacron remote control.
790a9885c8fSDon Prince
791401ca24fSsrinivas pandruvadaconfig HID_SENSOR_HUB
792401ca24fSsrinivas pandruvada	tristate "HID Sensors framework support"
7930244ad00SMartin Schwidefsky	depends on HID
794401ca24fSsrinivas pandruvada	select MFD_CORE
795401ca24fSsrinivas pandruvada	default n
796fdc5663cSPaul Bolle	---help---
797401ca24fSsrinivas pandruvada	  Support for HID Sensor framework. This creates a MFD instance
798401ca24fSsrinivas pandruvada	  for a sensor hub and identifies all the sensors connected to it.
799401ca24fSsrinivas pandruvada	  Each sensor is registered as a MFD cell, so that sensor specific
800401ca24fSsrinivas pandruvada	  processing can be done in a separate driver. Each sensor
801401ca24fSsrinivas pandruvada	  drivers can use the service provided by this driver to register
802401ca24fSsrinivas pandruvada	  for events and handle data streams. Each sensor driver can format
803401ca24fSsrinivas pandruvada	  data and present to user mode using input or IIO interface.
804401ca24fSsrinivas pandruvada
8055f22a799SJiri Slabyendmenu
8065f22a799SJiri Slaby
8071f41a6a9SHenrik Rydbergendif # HID
8081f41a6a9SHenrik Rydberg
8091f41a6a9SHenrik Rydbergsource "drivers/hid/usbhid/Kconfig"
8101f41a6a9SHenrik Rydberg
8114a200c3bSBenjamin Tissoiressource "drivers/hid/i2c-hid/Kconfig"
8124a200c3bSBenjamin Tissoires
8131f41a6a9SHenrik Rydbergendmenu
814