xref: /linux/drivers/hid/Kconfig (revision 692d30d63b80b174d0ed24bbffb7a1ea536d5fee)
163f3861dSJiri Kosina#
263f3861dSJiri Kosina# HID driver configuration
363f3861dSJiri Kosina#
43cd70986SJan Engelhardtmenuconfig HID_SUPPORT
53cd70986SJan Engelhardt	bool "HID Devices"
663f3861dSJiri Kosina	depends on INPUT
73cd70986SJan Engelhardt	default y
806bfb7ebSJan Engelhardt	---help---
906bfb7ebSJan Engelhardt	  Say Y here to get to see options for various computer-human interface
1006bfb7ebSJan Engelhardt	  device drivers. This option alone does not add any kernel code.
1106bfb7ebSJan Engelhardt
1206bfb7ebSJan Engelhardt	  If you say N, all options in this submenu will be skipped and disabled.
133cd70986SJan Engelhardt
143cd70986SJan Engelhardtif HID_SUPPORT
1563f3861dSJiri Kosina
1663f3861dSJiri Kosinaconfig HID
1763f3861dSJiri Kosina	tristate "Generic HID support"
18c96c9d7bSRussell King	depends on INPUT
1963f3861dSJiri Kosina	default y
2063f3861dSJiri Kosina	---help---
2169e4d948SJiri Kosina	  A human interface device (HID) is a type of computer device that
2269e4d948SJiri Kosina	  interacts directly with and takes input from humans. The term "HID"
2369e4d948SJiri Kosina	  most commonly used to refer to the USB-HID specification, but other
2469e4d948SJiri Kosina	  devices (such as, but not strictly limited to, Bluetooth) are
2569e4d948SJiri Kosina	  designed using HID specification (this involves certain keyboards,
2669e4d948SJiri Kosina	  mice, tablets, etc). This option compiles into kernel the generic
2769e4d948SJiri Kosina	  HID layer code (parser, usages, etc.), which can then be used by
2869e4d948SJiri Kosina	  transport-specific HID implementation (like USB or Bluetooth).
2969e4d948SJiri Kosina
3069e4d948SJiri Kosina	  For docs and specs, see http://www.usb.org/developers/hidpage/
3169e4d948SJiri Kosina
32205adbecSPavel Machek	  If unsure, say Y.
3363f3861dSJiri Kosina
344f5ca836SJeremy Fitzhardingeconfig HID_BATTERY_STRENGTH
35*692d30d6SJiri Kosina	bool "Battery level reporting for HID devices"
36d66c266aSJiri Kosina	depends on HID && POWER_SUPPLY && HID = POWER_SUPPLY
372198edddSJosh Boyer	default n
38*692d30d6SJiri Kosina	---help---
39*692d30d6SJiri Kosina	This option adds support of reporting battery strength (for HID devices
40*692d30d6SJiri Kosina	that support this feature) through power_supply class so that userspace
41*692d30d6SJiri Kosina	tools, such as upower, can display it.
424f5ca836SJeremy Fitzhardinge
4386166b7bSJiri Kosinaconfig HIDRAW
4486166b7bSJiri Kosina	bool "/dev/hidraw raw HID device support"
4586166b7bSJiri Kosina	depends on HID
4686166b7bSJiri Kosina	---help---
4786166b7bSJiri Kosina	Say Y here if you want to support HID devices (from the USB
4886166b7bSJiri Kosina	specification standpoint) that aren't strictly user interface
4986166b7bSJiri Kosina	devices, like monitor controls and Uninterruptable Power Supplies.
5086166b7bSJiri Kosina
5186166b7bSJiri Kosina	This module supports these devices separately using a separate
5286166b7bSJiri Kosina	event interface on /dev/hidraw.
5386166b7bSJiri Kosina
5486166b7bSJiri Kosina	There is also a /dev/hiddev configuration option in the USB HID
5586166b7bSJiri Kosina	configuration menu. In comparison to hiddev, this device does not process
5686166b7bSJiri Kosina	the hid events at all (no parsing, no lookups). This lets applications
5786166b7bSJiri Kosina	to work on raw hid events when they want to, and avoid using transport-specific
5886166b7bSJiri Kosina	userspace libhid/libusb libraries.
5986166b7bSJiri Kosina
6086166b7bSJiri Kosina	If unsure, say Y.
6186166b7bSJiri Kosina
626db3dfefSJiri Kosinasource "drivers/hid/usbhid/Kconfig"
636db3dfefSJiri Kosina
645f22a799SJiri Slabymenu "Special HID drivers"
655f22a799SJiri Slaby	depends on HID
665f22a799SJiri Slaby
6714a21cd4SJiri Slabyconfig HID_A4TECH
686a108a14SDavid Rientjes	tristate "A4 tech mice" if EXPERT
6914a21cd4SJiri Slaby	depends on USB_HID
706a108a14SDavid Rientjes	default !EXPERT
7114a21cd4SJiri Slaby	---help---
7214a21cd4SJiri Slaby	Support for A4 tech X5 and WOP-35 / Trust 450L mice.
7314a21cd4SJiri Slaby
740ae43810SDmitry Torokhovconfig HID_ACRUX
750ae43810SDmitry Torokhov	tristate "ACRUX game controller support"
76c0dbcc33SSergei Kolzun	depends on USB_HID
770ae43810SDmitry Torokhov	---help---
780ae43810SDmitry Torokhov	Say Y here if you want to enable support for ACRUX game controllers.
790ae43810SDmitry Torokhov
800ae43810SDmitry Torokhovconfig HID_ACRUX_FF
81364b936fSSergei Kolzun	bool "ACRUX force feedback support"
820ae43810SDmitry Torokhov	depends on HID_ACRUX
83c0dbcc33SSergei Kolzun	select INPUT_FF_MEMLESS
84c0dbcc33SSergei Kolzun	---help---
85c0dbcc33SSergei Kolzun	Say Y here if you want to enable force feedback support for ACRUX
86c0dbcc33SSergei Kolzun	game controllers.
87c0dbcc33SSergei Kolzun
888c19a515SJiri Slabyconfig HID_APPLE
896a108a14SDavid Rientjes	tristate "Apple {i,Power,Mac}Books" if EXPERT
908c19a515SJiri Slaby	depends on (USB_HID || BT_HIDP)
916a108a14SDavid Rientjes	default !EXPERT
928c19a515SJiri Slaby	---help---
938c19a515SJiri Slaby	Support for some Apple devices which less or more break
948c19a515SJiri Slaby	HID specification.
958c19a515SJiri Slaby
96f0bd8e43SJiri Kosina	Say Y here if you want support for keyboards of	Apple iBooks, PowerBooks,
97f0bd8e43SJiri Kosina	MacBooks, MacBook Pros and Apple Aluminum.
988c19a515SJiri Slaby
99b5635b12SJiri Slabyconfig HID_BELKIN
1006a108a14SDavid Rientjes	tristate "Belkin Flip KVM and Wireless keyboard" if EXPERT
101b5635b12SJiri Slaby	depends on USB_HID
1026a108a14SDavid Rientjes	default !EXPERT
103b5635b12SJiri Slaby	---help---
104b5635b12SJiri Slaby	Support for Belkin Flip KVM and Wireless keyboard.
105b5635b12SJiri Slaby
1063b239cd7SJiri Slabyconfig HID_CHERRY
1076a108a14SDavid Rientjes	tristate "Cherry Cymotion keyboard" if EXPERT
1083b239cd7SJiri Slaby	depends on USB_HID
1096a108a14SDavid Rientjes	default !EXPERT
1103b239cd7SJiri Slaby	---help---
111f0bd8e43SJiri Kosina	Support for Cherry Cymotion keyboard.
1123b239cd7SJiri Slaby
113fcfacfd3SJiri Slabyconfig HID_CHICONY
1146a108a14SDavid Rientjes	tristate "Chicony Tactical pad" if EXPERT
115fcfacfd3SJiri Slaby	depends on USB_HID
1166a108a14SDavid Rientjes	default !EXPERT
117fcfacfd3SJiri Slaby	---help---
118fcfacfd3SJiri Slaby	Support for Chicony Tactical pad.
119fcfacfd3SJiri Slaby
1203a370ca1SDon Princeconfig HID_PRODIKEYS
12195736de9SJiri Kosina	tristate "Prodikeys PC-MIDI Keyboard support"
1223a370ca1SDon Prince	depends on USB_HID && SND
1233a370ca1SDon Prince	select SND_RAWMIDI
1243a370ca1SDon Prince	---help---
1253a370ca1SDon Prince	Support for Prodikeys PC-MIDI Keyboard device support.
1263a370ca1SDon Prince	Say Y here to enable support for this device.
1273a370ca1SDon Prince	- Prodikeys PC-MIDI keyboard.
1283a370ca1SDon Prince	  The Prodikeys PC-MIDI acts as a USB Audio device, with one MIDI
1293a370ca1SDon Prince	  input and one MIDI output. These MIDI jacks appear as
1303a370ca1SDon Prince	  a sound "card" in the ALSA sound system.
1313a370ca1SDon Prince	  Note: if you say N here, this device will still function as a basic
1323a370ca1SDon Prince	  multimedia keyboard, but will lack support for the musical keyboard
1333a370ca1SDon Prince	  and some additional multimedia keys.
1343a370ca1SDon Prince
1350f221320SJiri Slabyconfig HID_CYPRESS
1366a108a14SDavid Rientjes	tristate "Cypress mouse and barcode readers" if EXPERT
1370f221320SJiri Slaby	depends on USB_HID
1386a108a14SDavid Rientjes	default !EXPERT
1390f221320SJiri Slaby	---help---
140f0bd8e43SJiri Kosina	Support for cypress mouse and barcode readers.
1410f221320SJiri Slaby
1420f6f4319SJiri Kosinaconfig HID_DRAGONRISE
143a1043044SBorislav Petkov	tristate "DragonRise Inc. game controller"
1443f866fbdSRichard Walmsley	depends on USB_HID
1450f6f4319SJiri Kosina	---help---
1460f6f4319SJiri Kosina	Say Y here if you have DragonRise Inc. game controllers.
147b4a65f4eSNikolai Kondrashov	These might be branded as:
148b4a65f4eSNikolai Kondrashov	- Tesun USB-703
149b4a65f4eSNikolai Kondrashov	- Media-tech MT1504 "Rogue"
150b4a65f4eSNikolai Kondrashov	- DVTech JS19 "Gear"
151b4a65f4eSNikolai Kondrashov	- Defender Game Master
1520f6f4319SJiri Kosina
1530f6f4319SJiri Kosinaconfig DRAGONRISE_FF
154a1043044SBorislav Petkov	bool "DragonRise Inc. force feedback"
1550f6f4319SJiri Kosina	depends on HID_DRAGONRISE
1563f866fbdSRichard Walmsley	select INPUT_FF_MEMLESS
1573f866fbdSRichard Walmsley	---help---
1583f866fbdSRichard Walmsley	Say Y here if you want to enable force feedback support for DragonRise Inc.
1593f866fbdSRichard Walmsley	game controllers.
1603f866fbdSRichard Walmsley
16104561c5aSIgnaz Forsterconfig HID_EMS_FF
16204561c5aSIgnaz Forster	tristate "EMS Production Inc. force feedback support"
16304561c5aSIgnaz Forster	depends on USB_HID
16404561c5aSIgnaz Forster	select INPUT_FF_MEMLESS
16504561c5aSIgnaz Forster	---help---
16604561c5aSIgnaz Forster	Say Y here if you want to enable force feedback support for devices by
16704561c5aSIgnaz Forster	EMS Production Ltd.
16804561c5aSIgnaz Forster	Currently the following devices are known to be supported:
16904561c5aSIgnaz Forster	 - Trio Linker Plus II
17004561c5aSIgnaz Forster
17164b386eaSRichard Nauberconfig HID_ELECOM
172a1043044SBorislav Petkov	tristate "ELECOM BM084 bluetooth mouse"
17364b386eaSRichard Nauber	depends on BT_HIDP
17464b386eaSRichard Nauber	---help---
17564b386eaSRichard Nauber	Support for the ELECOM BM084 (bluetooth mouse).
17664b386eaSRichard Nauber
1771f243e30SJiri Slabyconfig HID_EZKEY
1786a108a14SDavid Rientjes	tristate "Ezkey BTC 8193 keyboard" if EXPERT
1791f243e30SJiri Slaby	depends on USB_HID
1806a108a14SDavid Rientjes	default !EXPERT
1811f243e30SJiri Slaby	---help---
182f0bd8e43SJiri Kosina	Support for Ezkey BTC 8193 keyboard.
1831f243e30SJiri Slaby
184d946e65eSAnssi Hannulaconfig HID_HOLTEK
185d946e65eSAnssi Hannula	tristate "Holtek On Line Grip based game controller support"
186d946e65eSAnssi Hannula	depends on USB_HID
187d946e65eSAnssi Hannula	---help---
188d946e65eSAnssi Hannula	  Say Y here if you have a Holtek On Line Grip based game controller.
189d946e65eSAnssi Hannula
190d946e65eSAnssi Hannulaconfig HOLTEK_FF
191d946e65eSAnssi Hannula	bool "Holtek On Line Grip force feedback support"
192d946e65eSAnssi Hannula	depends on HID_HOLTEK
193d946e65eSAnssi Hannula	select INPUT_FF_MEMLESS
194d946e65eSAnssi Hannula	---help---
195d946e65eSAnssi Hannula	  Say Y here if you have a Holtek On Line Grip based game controller
196d946e65eSAnssi Hannula	  and want to have force feedback support for it.
197d946e65eSAnssi Hannula
198177900e8SJiri Kosinaconfig HID_KEYTOUCH
1993d366e28SStephen Boyd	tristate "Keytouch HID devices"
200177900e8SJiri Kosina	depends on USB_HID
201177900e8SJiri Kosina	---help---
202177900e8SJiri Kosina	Support for Keytouch HID devices not fully compliant with
203177900e8SJiri Kosina	the specification. Currently supported:
204177900e8SJiri Kosina		- Keytouch IEC 60945
205177900e8SJiri Kosina
20679422741SJiri Kosinaconfig HID_KYE
20722ca20b2SNikolai Kondrashov	tristate "KYE/Genius devices"
20879422741SJiri Kosina	depends on USB_HID
20979422741SJiri Kosina	---help---
21022ca20b2SNikolai Kondrashov	Support for KYE/Genius devices not fully compliant with HID standard:
21122ca20b2SNikolai Kondrashov	- Ergo Mouse
21222ca20b2SNikolai Kondrashov	- EasyPen i405X tablet
21322ca20b2SNikolai Kondrashov	- MousePen i608X tablet
21422ca20b2SNikolai Kondrashov	- EasyPen M610X tablet
21579422741SJiri Kosina
216f8a489ccSNikolai Kondrashovconfig HID_UCLOGIC
217f36ee074SJiri Kosina	tristate "UC-Logic"
218f8a489ccSNikolai Kondrashov	depends on USB_HID
219f8a489ccSNikolai Kondrashov	---help---
220f8a489ccSNikolai Kondrashov	Support for UC-Logic tablets.
221f8a489ccSNikolai Kondrashov
22272a46344SNikolai Kondrashovconfig HID_WALTOP
22372a46344SNikolai Kondrashov	tristate "Waltop"
22472a46344SNikolai Kondrashov	depends on USB_HID
22572a46344SNikolai Kondrashov	---help---
22672a46344SNikolai Kondrashov	Support for Waltop tablets.
22772a46344SNikolai Kondrashov
228949f8fefSJiri Slabyconfig HID_GYRATION
229a1043044SBorislav Petkov	tristate "Gyration remote control"
230949f8fefSJiri Slaby	depends on USB_HID
231949f8fefSJiri Slaby	---help---
232f0bd8e43SJiri Kosina	Support for Gyration remote control.
233949f8fefSJiri Slaby
234711a680eSBruno Premontconfig HID_TWINHAN
235a1043044SBorislav Petkov	tristate "Twinhan IR remote control"
236711a680eSBruno Premont	depends on USB_HID
237711a680eSBruno Premont	---help---
238711a680eSBruno Premont	Support for Twinhan IR remote control.
239711a680eSBruno Premont
240fdf93aa3SJiri Kosinaconfig HID_KENSINGTON
2416a108a14SDavid Rientjes	tristate "Kensington Slimblade Trackball" if EXPERT
242fdf93aa3SJiri Kosina	depends on USB_HID
2436a108a14SDavid Rientjes	default !EXPERT
244fdf93aa3SJiri Kosina	---help---
245fdf93aa3SJiri Kosina	Support for Kensington Slimblade Trackball.
246fdf93aa3SJiri Kosina
24775b07022SChris Schlundconfig HID_LCPOWER
24875b07022SChris Schlund	tristate "LC-Power"
24975b07022SChris Schlund	depends on USB_HID
25075b07022SChris Schlund	---help---
25175b07022SChris Schlund	Support for LC-Power RC1000MCE RF remote control.
25275b07022SChris Schlund
2535f22a799SJiri Slabyconfig HID_LOGITECH
2546a108a14SDavid Rientjes	tristate "Logitech devices" if EXPERT
2555f22a799SJiri Slaby	depends on USB_HID
2566a108a14SDavid Rientjes	default !EXPERT
2575f22a799SJiri Slaby	---help---
258f0bd8e43SJiri Kosina	Support for Logitech devices that are not fully compliant with HID standard.
2595f22a799SJiri Slaby
260534a7b8eSNestor Lopez Casadoconfig HID_LOGITECH_DJ
261534a7b8eSNestor Lopez Casado	tristate "Logitech Unifying receivers full support"
262534a7b8eSNestor Lopez Casado	depends on HID_LOGITECH
263534a7b8eSNestor Lopez Casado	default m
264534a7b8eSNestor Lopez Casado	---help---
265534a7b8eSNestor Lopez Casado	Say Y if you want support for Logitech Unifying receivers and devices.
266534a7b8eSNestor Lopez Casado	Unifying receivers are capable of pairing up to 6 Logitech compliant
2670944e964SKonstantin Khlebnikov	devices to the same receiver. Without this driver it will be handled by
2680944e964SKonstantin Khlebnikov	generic USB_HID driver and all incomming events will be multiplexed
2690944e964SKonstantin Khlebnikov	into a single mouse and a single keyboard device.
270534a7b8eSNestor Lopez Casado
271606bd0a8SJiri Slabyconfig LOGITECH_FF
2720f6f4319SJiri Kosina	bool "Logitech force feedback support"
273606bd0a8SJiri Slaby	depends on HID_LOGITECH
274606bd0a8SJiri Slaby	select INPUT_FF_MEMLESS
275606bd0a8SJiri Slaby	help
276606bd0a8SJiri Slaby	  Say Y here if you have one of these devices:
277606bd0a8SJiri Slaby	  - Logitech WingMan Cordless RumblePad
278606bd0a8SJiri Slaby	  - Logitech WingMan Cordless RumblePad 2
279606bd0a8SJiri Slaby	  - Logitech WingMan Force 3D
280606bd0a8SJiri Slaby	  - Logitech Formula Force EX
281fd30ea8cSJiri Kosina	  - Logitech WingMan Formula Force GP
282606bd0a8SJiri Slaby	  - Logitech MOMO Force wheel
283606bd0a8SJiri Slaby
284606bd0a8SJiri Slaby	  and if you want to enable force feedback for them.
285606bd0a8SJiri Slaby	  Note: if you say N here, this device will still be supported, but without
286606bd0a8SJiri Slaby	  force feedback.
287606bd0a8SJiri Slaby
288606bd0a8SJiri Slabyconfig LOGIRUMBLEPAD2_FF
2892c6118e4SHendrik Iben	bool "Logitech RumblePad/Rumblepad 2 force feedback support"
290606bd0a8SJiri Slaby	depends on HID_LOGITECH
291606bd0a8SJiri Slaby	select INPUT_FF_MEMLESS
292606bd0a8SJiri Slaby	help
293606bd0a8SJiri Slaby	  Say Y here if you want to enable force feedback support for Logitech
2942c6118e4SHendrik Iben	  RumblePad and Rumblepad 2 devices.
295606bd0a8SJiri Slaby
29674f292caSGary Steinconfig LOGIG940_FF
29774f292caSGary Stein	bool "Logitech Flight System G940 force feedback support"
29874f292caSGary Stein	depends on HID_LOGITECH
29974f292caSGary Stein	select INPUT_FF_MEMLESS
30074f292caSGary Stein	help
30174f292caSGary Stein	  Say Y here if you want to enable force feedback support for Logitech
30274f292caSGary Stein	  Flight System G940 devices.
30374f292caSGary Stein
304a7ac90f1SMichal Malýconfig LOGIWHEELS_FF
305a7ac90f1SMichal Malý	bool "Logitech wheels configuration and force feedback support"
30632c88cbcSSimon Wood	depends on HID_LOGITECH
30732c88cbcSSimon Wood	select INPUT_FF_MEMLESS
30870c2cabdSJiri Kosina	default LOGITECH_FF
30932c88cbcSSimon Wood	help
310a7ac90f1SMichal Malý	  Say Y here if you want to enable force feedback and range setting
311a7ac90f1SMichal Malý	  support for following Logitech wheels:
312a7ac90f1SMichal Malý	  - Logitech Driving Force
313a7ac90f1SMichal Malý	  - Logitech Driving Force Pro
314a7ac90f1SMichal Malý	  - Logitech Driving Force GT
315a7ac90f1SMichal Malý	  - Logitech G25
316a7ac90f1SMichal Malý	  - Logitech G27
317a7ac90f1SMichal Malý	  - Logitech MOMO/MOMO 2
318a7ac90f1SMichal Malý	  - Logitech Formula Force EX
31932c88cbcSSimon Wood
320128537ceSMichael Pooleconfig HID_MAGICMOUSE
3219f523147SJiri Kosina	tristate "Apple MagicMouse multi-touch support"
322128537ceSMichael Poole	depends on BT_HIDP
323128537ceSMichael Poole	---help---
3249f523147SJiri Kosina	Support for the Apple Magic Mouse multi-touch.
325128537ceSMichael Poole
326128537ceSMichael Poole	Say Y here if you want support for the multi-touch features of the
327128537ceSMichael Poole	Apple Wireless "Magic" Mouse.
328128537ceSMichael Poole
32978a849a6SJiri Slabyconfig HID_MICROSOFT
3306a108a14SDavid Rientjes	tristate "Microsoft non-fully HID-compliant devices" if EXPERT
33178a849a6SJiri Slaby	depends on USB_HID
3326a108a14SDavid Rientjes	default !EXPERT
33378a849a6SJiri Slaby	---help---
334f0bd8e43SJiri Kosina	Support for Microsoft devices that are not fully compliant with HID standard.
33578a849a6SJiri Slaby
3363b8006e5SJiri Slabyconfig HID_MONTEREY
3376a108a14SDavid Rientjes	tristate "Monterey Genius KB29E keyboard" if EXPERT
3383b8006e5SJiri Slaby	depends on USB_HID
3396a108a14SDavid Rientjes	default !EXPERT
3403b8006e5SJiri Slaby	---help---
3413b8006e5SJiri Slaby	Support for Monterey Genius KB29E.
3423b8006e5SJiri Slaby
3435519cab4SBenjamin Tissoiresconfig HID_MULTITOUCH
3445519cab4SBenjamin Tissoires	tristate "HID Multitouch panels"
3455519cab4SBenjamin Tissoires	depends on USB_HID
3465519cab4SBenjamin Tissoires	---help---
3475519cab4SBenjamin Tissoires	  Generic support for HID multitouch panels.
3485519cab4SBenjamin Tissoires
3495519cab4SBenjamin Tissoires	  Say Y here if you have one of the following devices:
350f786bba4SBenjamin Tissoires	  - 3M PCT touch screens
351e6aac342SBenjamin Tissoires	  - ActionStar dual touch panels
352b1057124SBenjamin Tissoires	  - Atmel panels
35322408283SBenjamin Tissoires	  - Cando dual touch panels
354942fd422SAustin Zhang	  - Chunghwa panels
35579603dc9SBenjamin Tissoires	  - CVTouch panels
3562d93666eSBenjamin Tissoires	  - Cypress TrueTouch panels
357c04abeefSBenjamin Tissoires	  - Elo TouchSystems IntelliTouch Plus panels
35822408283SBenjamin Tissoires	  - GeneralTouch 'Sensing Win7-TwoFinger' panels
359ee0fbd14SBenjamin Tissoires	  - GoodTouch panels
3602d93666eSBenjamin Tissoires	  - Hanvon dual touch panels
36122408283SBenjamin Tissoires	  - Ilitek dual touch panels
3624dfcced8SBenjamin Tissoires	  - IrTouch Infrared USB panels
363c50bb1a4SJeff Brown	  - LG Display panels (Dell ST2220Tc)
364df167c4aSBenjamin Tissoires	  - Lumio CrystalTouch panels
3654a6ee685SBenjamin Tissoires	  - MosArt dual-touch panels
3662258e863SDenis Kovalev	  - Panasonic multitouch panels
3676ab3a9a6SJohn Sung	  - PenMount dual touch panels
368847672cdSBenjamin Tissoires	  - Perixx Peripad 701 touchpad
369b7ea95ffSAaron Tian	  - PixArt optical touch screen
3702d93666eSBenjamin Tissoires	  - Pixcir dual touch panels
3715e7ea11fSBenjamin Tissoires	  - Quanta panels
37222408283SBenjamin Tissoires	  - eGalax dual-touch panels, including the Joojoo and Wetab tablets
373043b403aSBenjamin Tissoires	  - Stantum multitouch panels
3745e74e56dSBenjamin Tissoires	  - Touch International Panels
375617b64f9SBenjamin Tissoires	  - Unitec Panels
376bc8a2a9bSice chien	  - XAT optical touch panels
37711576c61SMasatoshi Hoshikawa	  - Xiroku optical touch panels
3785519cab4SBenjamin Tissoires
3792d93666eSBenjamin Tissoires	  If unsure, say N.
3802d93666eSBenjamin Tissoires
3812d93666eSBenjamin Tissoires	  To compile this driver as a module, choose M here: the
3822d93666eSBenjamin Tissoires	  module will be called hid-multitouch.
3832d93666eSBenjamin Tissoires
38494011f93SRafi Rubinconfig HID_NTRIG
385a1043044SBorislav Petkov	tristate "N-Trig touch screen"
38694011f93SRafi Rubin	depends on USB_HID
38794011f93SRafi Rubin	---help---
38894011f93SRafi Rubin	Support for N-Trig touch screen.
38994011f93SRafi Rubin
390cd9ec30dSJohnathon Harrisconfig HID_ORTEK
391d586dca0SJiri Kosina	tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad"
392cd9ec30dSJohnathon Harris	depends on USB_HID
393cd9ec30dSJohnathon Harris	---help---
394d586dca0SJiri Kosina	There are certain devices which have LogicalMaximum wrong in the keyboard
395d586dca0SJiri Kosina	usage page of their report descriptor. The most prevailing ones so far
396d586dca0SJiri Kosina	are manufactured by Ortek, thus the name of the driver. Currently
397d586dca0SJiri Kosina	supported devices by this driver are
398d586dca0SJiri Kosina
399d586dca0SJiri Kosina	   - Ortek PKB-1700
400d586dca0SJiri Kosina	   - Ortek WKB-2000
401d586dca0SJiri Kosina	   - Skycable wireless presenter
402cd9ec30dSJohnathon Harris
4035f022298SJiri Slabyconfig HID_PANTHERLORD
404a1043044SBorislav Petkov	tristate "Pantherlord/GreenAsia game controller"
4050f6f4319SJiri Kosina	depends on USB_HID
4060f6f4319SJiri Kosina	---help---
4070f6f4319SJiri Kosina	  Say Y here if you have a PantherLord/GreenAsia based game controller
4080f6f4319SJiri Kosina	  or adapter.
4090f6f4319SJiri Kosina
4105f022298SJiri Slabyconfig PANTHERLORD_FF
4115f022298SJiri Slaby	bool "Pantherlord force feedback support"
4125f022298SJiri Slaby	depends on HID_PANTHERLORD
4135f022298SJiri Slaby	select INPUT_FF_MEMLESS
4140f6f4319SJiri Kosina	---help---
4155f022298SJiri Slaby	  Say Y here if you have a PantherLord/GreenAsia based game controller
4165f022298SJiri Slaby	  or adapter and want to enable force feedback support for it.
4175f022298SJiri Slaby
4181e762532SJiri Slabyconfig HID_PETALYNX
419a1043044SBorislav Petkov	tristate "Petalynx Maxter remote control"
4201e762532SJiri Slaby	depends on USB_HID
4211e762532SJiri Slaby	---help---
422f0bd8e43SJiri Kosina	Support for Petalynx Maxter remote control.
4231e762532SJiri Slaby
424236db47cSBruno Prémontconfig HID_PICOLCD
425236db47cSBruno Prémont	tristate "PicoLCD (graphic version)"
426236db47cSBruno Prémont	depends on USB_HID
427236db47cSBruno Prémont	---help---
428236db47cSBruno Prémont	  This provides support for Minibox PicoLCD devices, currently
429236db47cSBruno Prémont	  only the graphical ones are supported.
430236db47cSBruno Prémont
431236db47cSBruno Prémont	  This includes support for the following device features:
432236db47cSBruno Prémont	  - Keypad
433236db47cSBruno Prémont	  - Switching between Firmware and Flash mode
4349bbf2b98SBruno Prémont	  - EEProm / Flash access     (via debugfs)
4355435f281SBruno Prémont	  Features selectively enabled:
4365435f281SBruno Prémont	  - Framebuffer for monochrome 256x64 display
4375435f281SBruno Prémont	  - Backlight control
4385435f281SBruno Prémont	  - Contrast control
4395435f281SBruno Prémont	  - General purpose outputs
440b8c21cf6SBruno Prémont	  Features that are not (yet) supported:
441236db47cSBruno Prémont	  - IR
442236db47cSBruno Prémont
4435435f281SBruno Prémontconfig HID_PICOLCD_FB
4446a108a14SDavid Rientjes	bool "Framebuffer support" if EXPERT
4456a108a14SDavid Rientjes	default !EXPERT
4465435f281SBruno Prémont	depends on HID_PICOLCD
4475435f281SBruno Prémont	depends on HID_PICOLCD=FB || FB=y
4485435f281SBruno Prémont	select FB_DEFERRED_IO
4495435f281SBruno Prémont	select FB_SYS_FILLRECT
4505435f281SBruno Prémont	select FB_SYS_COPYAREA
4515435f281SBruno Prémont	select FB_SYS_IMAGEBLIT
4525435f281SBruno Prémont	select FB_SYS_FOPS
4535435f281SBruno Prémont	---help---
4545435f281SBruno Prémont	  Provide access to PicoLCD's 256x64 monochrome display via a
4555435f281SBruno Prémont	  frambuffer device.
4565435f281SBruno Prémont
4575435f281SBruno Prémontconfig HID_PICOLCD_BACKLIGHT
4586a108a14SDavid Rientjes	bool "Backlight control" if EXPERT
4596a108a14SDavid Rientjes	default !EXPERT
4605435f281SBruno Prémont	depends on HID_PICOLCD
4615435f281SBruno Prémont	depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y
4625435f281SBruno Prémont	---help---
4635435f281SBruno Prémont	  Provide access to PicoLCD's backlight control via backlight
4645435f281SBruno Prémont	  class.
4655435f281SBruno Prémont
4665435f281SBruno Prémontconfig HID_PICOLCD_LCD
4676a108a14SDavid Rientjes	bool "Contrast control" if EXPERT
4686a108a14SDavid Rientjes	default !EXPERT
4695435f281SBruno Prémont	depends on HID_PICOLCD
4705435f281SBruno Prémont	depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y
4715435f281SBruno Prémont	---help---
4725435f281SBruno Prémont	  Provide access to PicoLCD's LCD contrast via lcd class.
4735435f281SBruno Prémont
4745435f281SBruno Prémontconfig HID_PICOLCD_LEDS
4756a108a14SDavid Rientjes	bool "GPO via leds class" if EXPERT
4766a108a14SDavid Rientjes	default !EXPERT
4775435f281SBruno Prémont	depends on HID_PICOLCD
4785435f281SBruno Prémont	depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y
4795435f281SBruno Prémont	---help---
4805435f281SBruno Prémont	  Provide access to PicoLCD's GPO pins via leds class.
4815435f281SBruno Prémont
482f6a04605STerry Lambertconfig HID_PRIMAX
483dfe9a312SJiri Kosina	tristate "Primax non-fully HID-compliant devices"
484f6a04605STerry Lambert	depends on USB_HID
485f6a04605STerry Lambert	---help---
486f6a04605STerry Lambert	Support for Primax devices that are not fully compliant with the
487f6a04605STerry Lambert	HID standard.
488f6a04605STerry Lambert
489206f5f2fSStefan Achatzconfig HID_ROCCAT
490bd393dbdSStefan Achatz	tristate "Roccat device support"
491206f5f2fSStefan Achatz	depends on USB_HID
492206f5f2fSStefan Achatz	---help---
493bd393dbdSStefan Achatz	Support for Roccat devices.
494bd393dbdSStefan Achatz	Say Y here if you have a Roccat mouse or keyboard and want
495bd393dbdSStefan Achatz	support for its special functionalities.
496cb7cf3daSStefan Achatz
4971e93674aSAndreas Hübnerconfig HID_SAITEK
4981e93674aSAndreas Hübner	tristate "Saitek non-fully HID-compliant devices"
4991e93674aSAndreas Hübner	depends on USB_HID
5001e93674aSAndreas Hübner	---help---
5011e93674aSAndreas Hübner	Support for Saitek devices that are not fully compliant with the
5021e93674aSAndreas Hübner	HID standard.
5031e93674aSAndreas Hübner
5041e93674aSAndreas Hübner	Currently only supports the PS1000 controller.
5051e93674aSAndreas Hübner
506980a3da6SJiri Slabyconfig HID_SAMSUNG
507a1043044SBorislav Petkov	tristate "Samsung InfraRed remote control or keyboards"
508980a3da6SJiri Slaby	depends on USB_HID
509980a3da6SJiri Slaby	---help---
510b355850bSDon Prince	Support for Samsung InfraRed remote control or keyboards.
511980a3da6SJiri Slaby
512bd28ce00SJiri Slabyconfig HID_SONY
513a1043044SBorislav Petkov	tristate "Sony PS3 controller"
514bd28ce00SJiri Slaby	depends on USB_HID
515bd28ce00SJiri Slaby	---help---
516bd28ce00SJiri Slaby	Support for Sony PS3 controller.
517bd28ce00SJiri Slaby
51874bc6953SStefan Kriwanekconfig HID_SPEEDLINK
51974bc6953SStefan Kriwanek	tristate "Speedlink VAD Cezanne mouse support"
52074bc6953SStefan Kriwanek	depends on USB_HID
52174bc6953SStefan Kriwanek	---help---
52274bc6953SStefan Kriwanek	Support for Speedlink Vicious and Divine Cezanne mouse.
52374bc6953SStefan Kriwanek
52490231e7eSJiri Slabyconfig HID_SUNPLUS
525a1043044SBorislav Petkov	tristate "Sunplus wireless desktop"
52690231e7eSJiri Slaby	depends on USB_HID
52790231e7eSJiri Slaby	---help---
528f0bd8e43SJiri Kosina	Support for Sunplus wireless desktop.
52990231e7eSJiri Slaby
5300f6f4319SJiri Kosinaconfig HID_GREENASIA
531a1043044SBorislav Petkov	tristate "GreenAsia (Product ID 0x12) game controller support"
53242859e0bSLukasz Lubojanski	depends on USB_HID
5330f6f4319SJiri Kosina	---help---
5340f6f4319SJiri Kosina	  Say Y here if you have a GreenAsia (Product ID 0x12) based game
5350f6f4319SJiri Kosina	  controller or adapter.
5360f6f4319SJiri Kosina
5370f6f4319SJiri Kosinaconfig GREENASIA_FF
5380f6f4319SJiri Kosina	bool "GreenAsia (Product ID 0x12) force feedback support"
5390f6f4319SJiri Kosina	depends on HID_GREENASIA
54042859e0bSLukasz Lubojanski	select INPUT_FF_MEMLESS
54142859e0bSLukasz Lubojanski	---help---
54242859e0bSLukasz Lubojanski	Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
543692105b8SMatt LaPlante	(like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
54442859e0bSLukasz Lubojanski	and want to enable force feedback support for it.
54542859e0bSLukasz Lubojanski
5466cf851d8SJiri Kosinaconfig HID_HYPERV_MOUSE
5476cf851d8SJiri Kosina	tristate "Microsoft Hyper-V mouse driver"
5486cf851d8SJiri Kosina	depends on HYPERV
5496cf851d8SJiri Kosina	---help---
5506cf851d8SJiri Kosina	Select this option to enable the Hyper-V mouse driver.
5516cf851d8SJiri Kosina
552fac733f0SJussi Kivilinnaconfig HID_SMARTJOYPLUS
55373d5e8f7SJiri Kosina	tristate "SmartJoy PLUS PS2/USB adapter support"
554fac733f0SJussi Kivilinna	depends on USB_HID
555fac733f0SJussi Kivilinna	---help---
5561bcc2067SSean Young	Support for SmartJoy PLUS PS2/USB adapter, Super Dual Box,
5571bcc2067SSean Young	Super Joy Box 3 Pro, Super Dual Box Pro, and Super Joy Box 5 Pro.
5581bcc2067SSean Young
5591bcc2067SSean Young	Note that DDR (Dance Dance Revolution) mode is not supported, nor
5601bcc2067SSean Young	is pressure sensitive buttons on the pro models.
561fac733f0SJussi Kivilinna
562fac733f0SJussi Kivilinnaconfig SMARTJOYPLUS_FF
563fac733f0SJussi Kivilinna	bool "SmartJoy PLUS PS2/USB adapter force feedback support"
564fac733f0SJussi Kivilinna	depends on HID_SMARTJOYPLUS
565fac733f0SJussi Kivilinna	select INPUT_FF_MEMLESS
566fac733f0SJussi Kivilinna	---help---
567fac733f0SJussi Kivilinna	Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to
568fac733f0SJussi Kivilinna	enable force feedback support for it.
569fac733f0SJussi Kivilinna
5702701eaabSJiri Kosinaconfig HID_TIVO
57144ea35c1SJarod Wilson	tristate "TiVo Slide Bluetooth remote control support"
572740363fbSJiri Kosina	depends on (USB_HID || BT_HIDP)
57344ea35c1SJarod Wilson	---help---
57444ea35c1SJarod Wilson	Say Y if you have a TiVo Slide Bluetooth remote control.
57544ea35c1SJarod Wilson
576f14f526dSLev Babievconfig HID_TOPSEED
57754001081SKees Bakker	tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support"
578f14f526dSLev Babiev	depends on USB_HID
579f14f526dSLev Babiev	---help---
58054001081SKees Bakker	Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic
58154001081SKees Bakker	CLLRCMCE remote control.
582f14f526dSLev Babiev
5830f6f4319SJiri Kosinaconfig HID_THRUSTMASTER
58473d5e8f7SJiri Kosina	tristate "ThrustMaster devices support"
58510e41a71SJiri Slaby	depends on USB_HID
5860f6f4319SJiri Kosina	---help---
58710e41a71SJiri Slaby	  Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or
5880f6f4319SJiri Kosina	  a THRUSTMASTER Ferrari GT Rumble Wheel.
5890f6f4319SJiri Kosina
5900f6f4319SJiri Kosinaconfig THRUSTMASTER_FF
5910f6f4319SJiri Kosina	bool "ThrustMaster devices force feedback support"
5920f6f4319SJiri Kosina	depends on HID_THRUSTMASTER
5930f6f4319SJiri Kosina	select INPUT_FF_MEMLESS
5940f6f4319SJiri Kosina	---help---
5957a84b133SRuben Aos Garralda	  Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3,
5967a84b133SRuben Aos Garralda	  a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT
5977a84b133SRuben Aos Garralda	  Rumble Force or Force Feedback Wheel.
59810e41a71SJiri Slaby
599ca2dcd40SBastien Noceraconfig HID_WACOM
6002dbf209dSJiri Kosina	tristate "Wacom Bluetooth devices support"
601ca2dcd40SBastien Nocera	depends on BT_HIDP
602ca2dcd40SBastien Nocera	---help---
603ca2dcd40SBastien Nocera	Support for Wacom Graphire Bluetooth tablet.
604ca2dcd40SBastien Nocera
60559d2334aSPrzemo Firsztconfig HID_WACOM_POWER_SUPPLY
60659d2334aSPrzemo Firszt	bool "Wacom Bluetooth devices power supply status support"
60759d2334aSPrzemo Firszt	depends on HID_WACOM
60859d2334aSPrzemo Firszt	select POWER_SUPPLY
60959d2334aSPrzemo Firszt	---help---
61059d2334aSPrzemo Firszt	  Say Y here if you want to enable power supply status monitoring for
61159d2334aSPrzemo Firszt	  Wacom Bluetooth devices.
61259d2334aSPrzemo Firszt
613fb51b443SDavid Herrmannconfig HID_WIIMOTE
614fb51b443SDavid Herrmann	tristate "Nintendo Wii Remote support"
615fb51b443SDavid Herrmann	depends on BT_HIDP
61623a5a4a3SDavid Herrmann	depends on LEDS_CLASS
6176591d758SDavid Herrmann	select POWER_SUPPLY
618ef6f4115SDavid Herrmann	select INPUT_FF_MEMLESS
619fb51b443SDavid Herrmann	---help---
620fb51b443SDavid Herrmann	Support for the Nintendo Wii Remote bluetooth device.
621fb51b443SDavid Herrmann
622cb99221bSDavid Herrmannconfig HID_WIIMOTE_EXT
623cb99221bSDavid Herrmann	bool "Nintendo Wii Remote Extension support"
624cb99221bSDavid Herrmann	depends on HID_WIIMOTE
625cb99221bSDavid Herrmann	default HID_WIIMOTE
626cb99221bSDavid Herrmann	---help---
627cb99221bSDavid Herrmann	Support for extension controllers of the Nintendo Wii Remote. Say yes
628cb99221bSDavid Herrmann	here if you want to use the Nintendo Motion+, Nunchuck or Classic
629cb99221bSDavid Herrmann	extension controllers with your Wii Remote.
630cb99221bSDavid Herrmann
6310f6f4319SJiri Kosinaconfig HID_ZEROPLUS
63273d5e8f7SJiri Kosina	tristate "Zeroplus based game controller support"
633987fbc1fSJiri Slaby	depends on USB_HID
6340f6f4319SJiri Kosina	---help---
635987fbc1fSJiri Slaby	  Say Y here if you have a Zeroplus based game controller.
636987fbc1fSJiri Slaby
6370f6f4319SJiri Kosinaconfig ZEROPLUS_FF
6380f6f4319SJiri Kosina	bool "Zeroplus based game controller force feedback support"
6390f6f4319SJiri Kosina	depends on HID_ZEROPLUS
6400f6f4319SJiri Kosina	select INPUT_FF_MEMLESS
6410f6f4319SJiri Kosina	---help---
6420f6f4319SJiri Kosina	  Say Y here if you have a Zeroplus based game controller and want
6430f6f4319SJiri Kosina	  to have force feedback support for it.
6440f6f4319SJiri Kosina
645a9885c8fSDon Princeconfig HID_ZYDACRON
64673d5e8f7SJiri Kosina	tristate "Zydacron remote control support"
647a9885c8fSDon Prince	depends on USB_HID
648a9885c8fSDon Prince	---help---
649a9885c8fSDon Prince	Support for Zydacron remote control.
650a9885c8fSDon Prince
6515f22a799SJiri Slabyendmenu
6525f22a799SJiri Slaby
6533cd70986SJan Engelhardtendif # HID_SUPPORT
654