xref: /linux/drivers/hid/Kconfig (revision 6f78193ee9ea5575180d4462f0f7273a22dd5057)
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"
30060c9982SDaniel Nicoletti	depends on HID
31060c9982SDaniel Nicoletti	select POWER_SUPPLY
322198edddSJosh Boyer	default n
33692d30d6SJiri Kosina	---help---
34692d30d6SJiri Kosina	This option adds support of reporting battery strength (for HID devices
35692d30d6SJiri Kosina	that support this feature) through power_supply class so that userspace
36692d30d6SJiri Kosina	tools, such as upower, can display it.
374f5ca836SJeremy Fitzhardinge
3886166b7bSJiri Kosinaconfig HIDRAW
3986166b7bSJiri Kosina	bool "/dev/hidraw raw HID device support"
4086166b7bSJiri Kosina	depends on HID
4186166b7bSJiri Kosina	---help---
4286166b7bSJiri Kosina	Say Y here if you want to support HID devices (from the USB
4386166b7bSJiri Kosina	specification standpoint) that aren't strictly user interface
4486166b7bSJiri Kosina	devices, like monitor controls and Uninterruptable Power Supplies.
4586166b7bSJiri Kosina
4686166b7bSJiri Kosina	This module supports these devices separately using a separate
4786166b7bSJiri Kosina	event interface on /dev/hidraw.
4886166b7bSJiri Kosina
4986166b7bSJiri Kosina	There is also a /dev/hiddev configuration option in the USB HID
5086166b7bSJiri Kosina	configuration menu. In comparison to hiddev, this device does not process
5186166b7bSJiri Kosina	the hid events at all (no parsing, no lookups). This lets applications
5286166b7bSJiri Kosina	to work on raw hid events when they want to, and avoid using transport-specific
5386166b7bSJiri Kosina	userspace libhid/libusb libraries.
5486166b7bSJiri Kosina
5586166b7bSJiri Kosina	If unsure, say Y.
5686166b7bSJiri Kosina
571ccd7a2aSDavid Herrmannconfig UHID
581ccd7a2aSDavid Herrmann	tristate "User-space I/O driver support for HID subsystem"
591ccd7a2aSDavid Herrmann	depends on HID
601ccd7a2aSDavid Herrmann	default n
611ccd7a2aSDavid Herrmann	---help---
621ccd7a2aSDavid Herrmann	Say Y here if you want to provide HID I/O Drivers from user-space.
631ccd7a2aSDavid Herrmann	This allows to write I/O drivers in user-space and feed the data from
641ccd7a2aSDavid Herrmann	the device into the kernel. The kernel parses the HID reports, loads the
651ccd7a2aSDavid Herrmann	corresponding HID Device Driver or provides input devices on top of your
661ccd7a2aSDavid Herrmann	user-space device.
671ccd7a2aSDavid Herrmann
681ccd7a2aSDavid Herrmann	This driver cannot be used to parse HID-reports in user-space and write
691ccd7a2aSDavid Herrmann	special HID-drivers. You should use hidraw for that.
701ccd7a2aSDavid Herrmann	Instead, this driver allows to write the transport-layer driver in
711ccd7a2aSDavid Herrmann	user-space like USB-HID and Bluetooth-HID do in kernel-space.
721ccd7a2aSDavid Herrmann
731ccd7a2aSDavid Herrmann	If unsure, say N.
741ccd7a2aSDavid Herrmann
751ccd7a2aSDavid Herrmann	To compile this driver as a module, choose M here: the
761ccd7a2aSDavid Herrmann	module will be called uhid.
771ccd7a2aSDavid Herrmann
788215d557SHenrik Rydbergconfig HID_GENERIC
798215d557SHenrik Rydberg	tristate "Generic HID driver"
808215d557SHenrik Rydberg	depends on HID
811f41a6a9SHenrik Rydberg	default HID
828215d557SHenrik Rydberg	---help---
831f41a6a9SHenrik Rydberg	Support for generic devices on the HID bus. This includes most
841f41a6a9SHenrik Rydberg	keyboards and mice, joysticks, tablets and digitizers.
858215d557SHenrik Rydberg
868215d557SHenrik Rydberg	To compile this driver as a module, choose M here: the module
878215d557SHenrik Rydberg	will be called hid-generic.
888215d557SHenrik Rydberg
898215d557SHenrik Rydberg	If unsure, say Y.
908215d557SHenrik Rydberg
911f41a6a9SHenrik Rydbergmenu "Special HID drivers"
921f41a6a9SHenrik Rydberg	depends on HID
931f41a6a9SHenrik Rydberg
9414a21cd4SJiri Slabyconfig HID_A4TECH
957af05e73SJean Delvare	tristate "A4 tech mice"
96f3757ceaSBenjamin Tissoires	depends on HID
976a108a14SDavid Rientjes	default !EXPERT
9814a21cd4SJiri Slaby	---help---
9914a21cd4SJiri Slaby	Support for A4 tech X5 and WOP-35 / Trust 450L mice.
10014a21cd4SJiri Slaby
1010ae43810SDmitry Torokhovconfig HID_ACRUX
1020ae43810SDmitry Torokhov	tristate "ACRUX game controller support"
103d8814272SBenjamin Tissoires	depends on HID
1040ae43810SDmitry Torokhov	---help---
1050ae43810SDmitry Torokhov	Say Y here if you want to enable support for ACRUX game controllers.
1060ae43810SDmitry Torokhov
1070ae43810SDmitry Torokhovconfig HID_ACRUX_FF
108364b936fSSergei Kolzun	bool "ACRUX force feedback support"
1090ae43810SDmitry Torokhov	depends on HID_ACRUX
110c0dbcc33SSergei Kolzun	select INPUT_FF_MEMLESS
111c0dbcc33SSergei Kolzun	---help---
112c0dbcc33SSergei Kolzun	Say Y here if you want to enable force feedback support for ACRUX
113c0dbcc33SSergei Kolzun	game controllers.
114c0dbcc33SSergei Kolzun
1158c19a515SJiri Slabyconfig HID_APPLE
1167af05e73SJean Delvare	tristate "Apple {i,Power,Mac}Books"
117f3757ceaSBenjamin Tissoires	depends on HID
1186a108a14SDavid Rientjes	default !EXPERT
1198c19a515SJiri Slaby	---help---
1208c19a515SJiri Slaby	Support for some Apple devices which less or more break
1218c19a515SJiri Slaby	HID specification.
1228c19a515SJiri Slaby
123f0bd8e43SJiri Kosina	Say Y here if you want support for keyboards of	Apple iBooks, PowerBooks,
124f0bd8e43SJiri Kosina	MacBooks, MacBook Pros and Apple Aluminum.
1258c19a515SJiri Slaby
1269a4a5574SBenjamin Tissoiresconfig HID_APPLEIR
1279a4a5574SBenjamin Tissoires	tristate "Apple infrared receiver"
1289a4a5574SBenjamin Tissoires	depends on (USB_HID)
1299a4a5574SBenjamin Tissoires	---help---
1309a4a5574SBenjamin Tissoires	Support for Apple infrared remote control. All the Apple computers from
1319a4a5574SBenjamin Tissoires	  2005 onwards include such a port, except the unibody Macbook (2009),
1329a4a5574SBenjamin Tissoires	  and Mac Pros. This receiver is also used in the Apple TV set-top box
1339a4a5574SBenjamin Tissoires	  prior to the 2010 model.
1349a4a5574SBenjamin Tissoires
1359a4a5574SBenjamin Tissoires	Say Y here if you want support for Apple infrared remote control.
1369a4a5574SBenjamin Tissoires
137212da74dSJosenivaldo Benito Juniorconfig HID_AUREAL
138212da74dSJosenivaldo Benito Junior	tristate "Aureal"
139f3757ceaSBenjamin Tissoires	depends on HID
140212da74dSJosenivaldo Benito Junior	---help---
141212da74dSJosenivaldo Benito Junior	Support for Aureal Cy se W-01RN Remote Controller and other Aureal derived remotes.
142212da74dSJosenivaldo Benito Junior
143b5635b12SJiri Slabyconfig HID_BELKIN
1447af05e73SJean Delvare	tristate "Belkin Flip KVM and Wireless keyboard"
145f3757ceaSBenjamin Tissoires	depends on HID
1466a108a14SDavid Rientjes	default !EXPERT
147b5635b12SJiri Slaby	---help---
148b5635b12SJiri Slaby	Support for Belkin Flip KVM and Wireless keyboard.
149b5635b12SJiri Slaby
150fc38a8a6SHuang Boconfig HID_BETOP_FF
151fc38a8a6SHuang Bo	tristate "Betop Production Inc. force feedback support"
152fc38a8a6SHuang Bo	depends on USB_HID
153fc38a8a6SHuang Bo	select INPUT_FF_MEMLESS
154fc38a8a6SHuang Bo	---help---
155fc38a8a6SHuang Bo	Say Y here if you want to enable force feedback support for devices by
156fc38a8a6SHuang Bo	BETOP Production Ltd.
157fc38a8a6SHuang Bo	Currently the following devices are known to be supported:
158fc38a8a6SHuang Bo	 - BETOP 2185 PC & BFM MODE
159fc38a8a6SHuang Bo
1603b239cd7SJiri Slabyconfig HID_CHERRY
1617af05e73SJean Delvare	tristate "Cherry Cymotion keyboard"
162f3757ceaSBenjamin Tissoires	depends on HID
1636a108a14SDavid Rientjes	default !EXPERT
1643b239cd7SJiri Slaby	---help---
165f0bd8e43SJiri Kosina	Support for Cherry Cymotion keyboard.
1663b239cd7SJiri Slaby
167fcfacfd3SJiri Slabyconfig HID_CHICONY
1687af05e73SJean Delvare	tristate "Chicony Tactical pad"
169f3757ceaSBenjamin Tissoires	depends on HID
1706a108a14SDavid Rientjes	default !EXPERT
171fcfacfd3SJiri Slaby	---help---
172fcfacfd3SJiri Slaby	Support for Chicony Tactical pad.
173fcfacfd3SJiri Slaby
174*6f78193eSClément Vuchenerconfig HID_CORSAIR
175*6f78193eSClément Vuchener	tristate "Corsair devices"
176*6f78193eSClément Vuchener	depends on HID && USB && LEDS_CLASS
177*6f78193eSClément Vuchener	---help---
178*6f78193eSClément Vuchener	Support for Corsair devices that are not fully compliant with the
179*6f78193eSClément Vuchener	HID standard.
180*6f78193eSClément Vuchener
181*6f78193eSClément Vuchener	Supported devices:
182*6f78193eSClément Vuchener	- Vengeance K90
183*6f78193eSClément Vuchener
1843a370ca1SDon Princeconfig HID_PRODIKEYS
18595736de9SJiri Kosina	tristate "Prodikeys PC-MIDI Keyboard support"
186d8814272SBenjamin Tissoires	depends on HID && SND
1873a370ca1SDon Prince	select SND_RAWMIDI
1883a370ca1SDon Prince	---help---
1893a370ca1SDon Prince	Support for Prodikeys PC-MIDI Keyboard device support.
1903a370ca1SDon Prince	Say Y here to enable support for this device.
1913a370ca1SDon Prince	- Prodikeys PC-MIDI keyboard.
1923a370ca1SDon Prince	  The Prodikeys PC-MIDI acts as a USB Audio device, with one MIDI
1933a370ca1SDon Prince	  input and one MIDI output. These MIDI jacks appear as
1943a370ca1SDon Prince	  a sound "card" in the ALSA sound system.
1953a370ca1SDon Prince	  Note: if you say N here, this device will still function as a basic
1963a370ca1SDon Prince	  multimedia keyboard, but will lack support for the musical keyboard
1973a370ca1SDon Prince	  and some additional multimedia keys.
1983a370ca1SDon Prince
199e932d817SDavid Barksdaleconfig HID_CP2112
200e932d817SDavid Barksdale	tristate "Silicon Labs CP2112 HID USB-to-SMBus Bridge support"
201a47dc4d8SJiri Kosina	depends on USB_HID && I2C && GPIOLIB
202e932d817SDavid Barksdale	---help---
203e932d817SDavid Barksdale	Support for Silicon Labs CP2112 HID USB to SMBus Master Bridge.
204e932d817SDavid Barksdale	This is a HID device driver which registers as an i2c adapter
205e932d817SDavid Barksdale	and gpiochip to expose these functions of the CP2112. The
206e932d817SDavid Barksdale	customizable USB descriptor fields are exposed as sysfs attributes.
207e932d817SDavid Barksdale
2080f221320SJiri Slabyconfig HID_CYPRESS
2097af05e73SJean Delvare	tristate "Cypress mouse and barcode readers"
210f3757ceaSBenjamin Tissoires	depends on HID
2116a108a14SDavid Rientjes	default !EXPERT
2120f221320SJiri Slaby	---help---
213f0bd8e43SJiri Kosina	Support for cypress mouse and barcode readers.
2140f221320SJiri Slaby
2150f6f4319SJiri Kosinaconfig HID_DRAGONRISE
216a1043044SBorislav Petkov	tristate "DragonRise Inc. game controller"
217d8814272SBenjamin Tissoires	depends on HID
2180f6f4319SJiri Kosina	---help---
2190f6f4319SJiri Kosina	Say Y here if you have DragonRise Inc. game controllers.
220b4a65f4eSNikolai Kondrashov	These might be branded as:
221b4a65f4eSNikolai Kondrashov	- Tesun USB-703
222b4a65f4eSNikolai Kondrashov	- Media-tech MT1504 "Rogue"
223b4a65f4eSNikolai Kondrashov	- DVTech JS19 "Gear"
224b4a65f4eSNikolai Kondrashov	- Defender Game Master
2250f6f4319SJiri Kosina
2260f6f4319SJiri Kosinaconfig DRAGONRISE_FF
227a1043044SBorislav Petkov	bool "DragonRise Inc. force feedback"
2280f6f4319SJiri Kosina	depends on HID_DRAGONRISE
2293f866fbdSRichard Walmsley	select INPUT_FF_MEMLESS
2303f866fbdSRichard Walmsley	---help---
2313f866fbdSRichard Walmsley	Say Y here if you want to enable force feedback support for DragonRise Inc.
2323f866fbdSRichard Walmsley	game controllers.
2333f866fbdSRichard Walmsley
23404561c5aSIgnaz Forsterconfig HID_EMS_FF
23504561c5aSIgnaz Forster	tristate "EMS Production Inc. force feedback support"
236d8814272SBenjamin Tissoires	depends on HID
23704561c5aSIgnaz Forster	select INPUT_FF_MEMLESS
23804561c5aSIgnaz Forster	---help---
23904561c5aSIgnaz Forster	Say Y here if you want to enable force feedback support for devices by
24004561c5aSIgnaz Forster	EMS Production Ltd.
24104561c5aSIgnaz Forster	Currently the following devices are known to be supported:
24204561c5aSIgnaz Forster	 - Trio Linker Plus II
24304561c5aSIgnaz Forster
24464b386eaSRichard Nauberconfig HID_ELECOM
245a1043044SBorislav Petkov	tristate "ELECOM BM084 bluetooth mouse"
246f3757ceaSBenjamin Tissoires	depends on HID
24764b386eaSRichard Nauber	---help---
24864b386eaSRichard Nauber	Support for the ELECOM BM084 (bluetooth mouse).
24964b386eaSRichard Nauber
250d23efc19SJiri Slabyconfig HID_ELO
251d23efc19SJiri Slaby	tristate "ELO USB 4000/4500 touchscreen"
252d23efc19SJiri Slaby	depends on USB_HID
253d23efc19SJiri Slaby	---help---
254d23efc19SJiri Slaby	Support for the ELO USB 4000/4500 touchscreens. Note that this is for
255d23efc19SJiri Slaby	different devices than those handled by CONFIG_TOUCHSCREEN_USB_ELO.
256d23efc19SJiri Slaby
2571f243e30SJiri Slabyconfig HID_EZKEY
2587af05e73SJean Delvare	tristate "Ezkey BTC 8193 keyboard"
259f3757ceaSBenjamin Tissoires	depends on HID
2606a108a14SDavid Rientjes	default !EXPERT
2611f243e30SJiri Slaby	---help---
262f0bd8e43SJiri Kosina	Support for Ezkey BTC 8193 keyboard.
2631f243e30SJiri Slaby
264931830aaSBenjamin Tissoiresconfig HID_GEMBIRD
265931830aaSBenjamin Tissoires	tristate "Gembird Joypad"
266931830aaSBenjamin Tissoires	depends on HID
267931830aaSBenjamin Tissoires	---help---
268931830aaSBenjamin Tissoires	Support for Gembird JPD-DualForce 2.
269931830aaSBenjamin Tissoires
270d946e65eSAnssi Hannulaconfig HID_HOLTEK
271ff9bf5a2STom Harwood	tristate "Holtek HID devices"
272d946e65eSAnssi Hannula	depends on USB_HID
273d946e65eSAnssi Hannula	---help---
274ff9bf5a2STom Harwood	Support for Holtek based devices:
275ff9bf5a2STom Harwood	  - Holtek On Line Grip based game controller
276ff9bf5a2STom Harwood	  - Trust GXT 18 Gaming Keyboard
27741de326eSChristian Ohm	  - Sharkoon Drakonia / Perixx MX-2000 gaming mice
278d4f51890SChristian Ohm	  - Tracer Sniper TRM-503 / NOVA Gaming Slider X200 /
279d4f51890SChristian Ohm	    Zalman ZM-GM1
2807da7cbbbSAnders F. U. Kiær	  - SHARKOON DarkGlider Gaming mouse
281f1a4914bSAnders F. U. Kiær	  - LEETGION Hellion Gaming Mouse
282d946e65eSAnssi Hannula
283d946e65eSAnssi Hannulaconfig HOLTEK_FF
284d946e65eSAnssi Hannula	bool "Holtek On Line Grip force feedback support"
285d946e65eSAnssi Hannula	depends on HID_HOLTEK
286d946e65eSAnssi Hannula	select INPUT_FF_MEMLESS
287d946e65eSAnssi Hannula	---help---
288d946e65eSAnssi Hannula	  Say Y here if you have a Holtek On Line Grip based game controller
289d946e65eSAnssi Hannula	  and want to have force feedback support for it.
290d946e65eSAnssi Hannula
291f471d948SJanne Kanniainenconfig HID_GT683R
292f471d948SJanne Kanniainen	tristate "MSI GT68xR LED support"
293f471d948SJanne Kanniainen	depends on LEDS_CLASS && USB_HID
294f471d948SJanne Kanniainen	---help---
295f471d948SJanne Kanniainen	Say Y here if you want to enable support for the three MSI GT68xR LEDs
296f471d948SJanne Kanniainen
297f471d948SJanne Kanniainen	This driver support following modes:
298f471d948SJanne Kanniainen	  - Normal: LEDs are fully on when enabled
299f471d948SJanne Kanniainen	  - Audio:  LEDs brightness depends on sound level
300f471d948SJanne Kanniainen	  - Breathing: LEDs brightness varies at human breathing rate
301f471d948SJanne Kanniainen
302f471d948SJanne Kanniainen	Currently the following devices are know to be supported:
303f471d948SJanne Kanniainen	  - MSI GT683R
304f471d948SJanne Kanniainen
305177900e8SJiri Kosinaconfig HID_KEYTOUCH
3063d366e28SStephen Boyd	tristate "Keytouch HID devices"
307f3757ceaSBenjamin Tissoires	depends on HID
308177900e8SJiri Kosina	---help---
309177900e8SJiri Kosina	Support for Keytouch HID devices not fully compliant with
310177900e8SJiri Kosina	the specification. Currently supported:
311177900e8SJiri Kosina		- Keytouch IEC 60945
312177900e8SJiri Kosina
31379422741SJiri Kosinaconfig HID_KYE
31422ca20b2SNikolai Kondrashov	tristate "KYE/Genius devices"
315d8814272SBenjamin Tissoires	depends on HID
31679422741SJiri Kosina	---help---
31722ca20b2SNikolai Kondrashov	Support for KYE/Genius devices not fully compliant with HID standard:
31822ca20b2SNikolai Kondrashov	- Ergo Mouse
31922ca20b2SNikolai Kondrashov	- EasyPen i405X tablet
32022ca20b2SNikolai Kondrashov	- MousePen i608X tablet
32122ca20b2SNikolai Kondrashov	- EasyPen M610X tablet
32279422741SJiri Kosina
323f8a489ccSNikolai Kondrashovconfig HID_UCLOGIC
324f36ee074SJiri Kosina	tristate "UC-Logic"
325bbb2d8a8SBenjamin Tissoires	depends on USB_HID
326f8a489ccSNikolai Kondrashov	---help---
32708177f40SNikolai Kondrashov	Support for UC-Logic and Huion tablets.
328f8a489ccSNikolai Kondrashov
32972a46344SNikolai Kondrashovconfig HID_WALTOP
33072a46344SNikolai Kondrashov	tristate "Waltop"
331f3757ceaSBenjamin Tissoires	depends on HID
33272a46344SNikolai Kondrashov	---help---
33372a46344SNikolai Kondrashov	Support for Waltop tablets.
33472a46344SNikolai Kondrashov
335949f8fefSJiri Slabyconfig HID_GYRATION
336a1043044SBorislav Petkov	tristate "Gyration remote control"
337f3757ceaSBenjamin Tissoires	depends on HID
338949f8fefSJiri Slaby	---help---
339f0bd8e43SJiri Kosina	Support for Gyration remote control.
340949f8fefSJiri Slaby
3414ddfe028SBastien Noceraconfig HID_ICADE
3424ddfe028SBastien Nocera	tristate "ION iCade arcade controller"
343f3757ceaSBenjamin Tissoires	depends on HID
3444ddfe028SBastien Nocera	---help---
3454ddfe028SBastien Nocera	Support for the ION iCade arcade controller to work as a joystick.
3464ddfe028SBastien Nocera
3474ddfe028SBastien Nocera	To compile this driver as a module, choose M here: the
3484ddfe028SBastien Nocera	module will be called hid-icade.
3494ddfe028SBastien Nocera
350711a680eSBruno Premontconfig HID_TWINHAN
351a1043044SBorislav Petkov	tristate "Twinhan IR remote control"
352f3757ceaSBenjamin Tissoires	depends on HID
353711a680eSBruno Premont	---help---
354711a680eSBruno Premont	Support for Twinhan IR remote control.
355711a680eSBruno Premont
356fdf93aa3SJiri Kosinaconfig HID_KENSINGTON
3577af05e73SJean Delvare	tristate "Kensington Slimblade Trackball"
358f3757ceaSBenjamin Tissoires	depends on HID
3596a108a14SDavid Rientjes	default !EXPERT
360fdf93aa3SJiri Kosina	---help---
361fdf93aa3SJiri Kosina	Support for Kensington Slimblade Trackball.
362fdf93aa3SJiri Kosina
36375b07022SChris Schlundconfig HID_LCPOWER
36475b07022SChris Schlund	tristate "LC-Power"
365f3757ceaSBenjamin Tissoires	depends on HID
36675b07022SChris Schlund	---help---
36775b07022SChris Schlund	Support for LC-Power RC1000MCE RF remote control.
36875b07022SChris Schlund
36994723bfaSJamie Lentinconfig HID_LENOVO
37094723bfaSJamie Lentin	tristate "Lenovo / Thinkpad devices"
3710c521836SBenjamin Tissoires	depends on HID
37225976a79SBryan Wu	select NEW_LEDS
373c1dcad2dSBernhard Seibold	select LEDS_CLASS
374c1dcad2dSBernhard Seibold	---help---
37594723bfaSJamie Lentin	Support for Lenovo devices that are not fully compliant with HID standard.
376c1dcad2dSBernhard Seibold
37794723bfaSJamie Lentin	Say Y if you want support for the non-compliant features of the Lenovo
37894723bfaSJamie Lentin	Thinkpad standalone keyboards, e.g:
37994723bfaSJamie Lentin	- ThinkPad USB Keyboard with TrackPoint (supports extra LEDs and trackpoint
38094723bfaSJamie Lentin	  configuration)
381f3d4ff0eSJamie Lentin	- ThinkPad Compact Bluetooth Keyboard with TrackPoint (supports Fn keys)
382f3d4ff0eSJamie Lentin	- ThinkPad Compact USB Keyboard with TrackPoint (supports Fn keys)
383c1dcad2dSBernhard Seibold
3845f22a799SJiri Slabyconfig HID_LOGITECH
3857af05e73SJean Delvare	tristate "Logitech devices"
386f3757ceaSBenjamin Tissoires	depends on HID
3876a108a14SDavid Rientjes	default !EXPERT
3885f22a799SJiri Slaby	---help---
389f0bd8e43SJiri Kosina	Support for Logitech devices that are not fully compliant with HID standard.
3905f22a799SJiri Slaby
391534a7b8eSNestor Lopez Casadoconfig HID_LOGITECH_DJ
392534a7b8eSNestor Lopez Casado	tristate "Logitech Unifying receivers full support"
393dcdc50e7SOlivier Gay	depends on HIDRAW
394534a7b8eSNestor Lopez Casado	depends on HID_LOGITECH
395ab94e562SBenjamin Tissoires	select HID_LOGITECH_HIDPP
396534a7b8eSNestor Lopez Casado	---help---
397534a7b8eSNestor Lopez Casado	Say Y if you want support for Logitech Unifying receivers and devices.
398534a7b8eSNestor Lopez Casado	Unifying receivers are capable of pairing up to 6 Logitech compliant
3990944e964SKonstantin Khlebnikov	devices to the same receiver. Without this driver it will be handled by
400d82603c6SJorrit Schippers	generic USB_HID driver and all incoming events will be multiplexed
4010944e964SKonstantin Khlebnikov	into a single mouse and a single keyboard device.
402534a7b8eSNestor Lopez Casado
4032f31c525SBenjamin Tissoiresconfig HID_LOGITECH_HIDPP
4042f31c525SBenjamin Tissoires	tristate "Logitech HID++ devices support"
4052f31c525SBenjamin Tissoires	depends on HID_LOGITECH
4062f31c525SBenjamin Tissoires	---help---
4072f31c525SBenjamin Tissoires	Support for Logitech devices relyingon the HID++ Logitech specification
4082f31c525SBenjamin Tissoires
4092f31c525SBenjamin Tissoires	Say Y if you want support for Logitech devices relying on the HID++
4102f31c525SBenjamin Tissoires	specification. Such devices are the various Logitech Touchpads (T650,
4112f31c525SBenjamin Tissoires	T651, TK820), some mice (Zone Touch mouse), or even keyboards (Solar
41279bc33bdSGeert Uytterhoeven	Keyboard).
4132f31c525SBenjamin Tissoires
414606bd0a8SJiri Slabyconfig LOGITECH_FF
4150f6f4319SJiri Kosina	bool "Logitech force feedback support"
416606bd0a8SJiri Slaby	depends on HID_LOGITECH
417606bd0a8SJiri Slaby	select INPUT_FF_MEMLESS
418606bd0a8SJiri Slaby	help
419606bd0a8SJiri Slaby	  Say Y here if you have one of these devices:
420606bd0a8SJiri Slaby	  - Logitech WingMan Cordless RumblePad
421606bd0a8SJiri Slaby	  - Logitech WingMan Cordless RumblePad 2
422606bd0a8SJiri Slaby	  - Logitech WingMan Force 3D
423606bd0a8SJiri Slaby	  - Logitech Formula Force EX
424fd30ea8cSJiri Kosina	  - Logitech WingMan Formula Force GP
425606bd0a8SJiri Slaby
426606bd0a8SJiri Slaby	  and if you want to enable force feedback for them.
427606bd0a8SJiri Slaby	  Note: if you say N here, this device will still be supported, but without
428606bd0a8SJiri Slaby	  force feedback.
429606bd0a8SJiri Slaby
430606bd0a8SJiri Slabyconfig LOGIRUMBLEPAD2_FF
431bd04363dSElias Vanderstuyft	bool "Logitech force feedback support (variant 2)"
432606bd0a8SJiri Slaby	depends on HID_LOGITECH
433606bd0a8SJiri Slaby	select INPUT_FF_MEMLESS
434606bd0a8SJiri Slaby	help
435bd04363dSElias Vanderstuyft	  Say Y here if you want to enable force feedback support for:
436bd04363dSElias Vanderstuyft	  - Logitech RumblePad
437bd04363dSElias Vanderstuyft	  - Logitech Rumblepad 2
438bd04363dSElias Vanderstuyft	  - Logitech Formula Vibration Feedback Wheel
439606bd0a8SJiri Slaby
44074f292caSGary Steinconfig LOGIG940_FF
44174f292caSGary Stein	bool "Logitech Flight System G940 force feedback support"
44274f292caSGary Stein	depends on HID_LOGITECH
44374f292caSGary Stein	select INPUT_FF_MEMLESS
44474f292caSGary Stein	help
44574f292caSGary Stein	  Say Y here if you want to enable force feedback support for Logitech
44674f292caSGary Stein	  Flight System G940 devices.
44774f292caSGary Stein
448a7ac90f1SMichal Malýconfig LOGIWHEELS_FF
449a7ac90f1SMichal Malý	bool "Logitech wheels configuration and force feedback support"
45032c88cbcSSimon Wood	depends on HID_LOGITECH
45132c88cbcSSimon Wood	select INPUT_FF_MEMLESS
45270c2cabdSJiri Kosina	default LOGITECH_FF
45332c88cbcSSimon Wood	help
454a7ac90f1SMichal Malý	  Say Y here if you want to enable force feedback and range setting
455a7ac90f1SMichal Malý	  support for following Logitech wheels:
456a7ac90f1SMichal Malý	  - Logitech Driving Force
457a7ac90f1SMichal Malý	  - Logitech Driving Force Pro
458a7ac90f1SMichal Malý	  - Logitech Driving Force GT
459a7ac90f1SMichal Malý	  - Logitech G25
460a7ac90f1SMichal Malý	  - Logitech G27
461a7ac90f1SMichal Malý	  - Logitech MOMO/MOMO 2
462a7ac90f1SMichal Malý	  - Logitech Formula Force EX
46332c88cbcSSimon Wood
464128537ceSMichael Pooleconfig HID_MAGICMOUSE
465cdfee4ffSDavid King	tristate "Apple Magic Mouse/Trackpad multi-touch support"
466f3757ceaSBenjamin Tissoires	depends on HID
467128537ceSMichael Poole	---help---
468cdfee4ffSDavid King	Support for the Apple Magic Mouse/Trackpad multi-touch.
469128537ceSMichael Poole
470128537ceSMichael Poole	Say Y here if you want support for the multi-touch features of the
471cdfee4ffSDavid King	Apple Wireless "Magic" Mouse and the Apple Wireless "Magic" Trackpad.
472128537ceSMichael Poole
47378a849a6SJiri Slabyconfig HID_MICROSOFT
4747af05e73SJean Delvare	tristate "Microsoft non-fully HID-compliant devices"
475f3757ceaSBenjamin Tissoires	depends on HID
4766a108a14SDavid Rientjes	default !EXPERT
47778a849a6SJiri Slaby	---help---
478f0bd8e43SJiri Kosina	Support for Microsoft devices that are not fully compliant with HID standard.
47978a849a6SJiri Slaby
4803b8006e5SJiri Slabyconfig HID_MONTEREY
4817af05e73SJean Delvare	tristate "Monterey Genius KB29E keyboard"
482f3757ceaSBenjamin Tissoires	depends on HID
4836a108a14SDavid Rientjes	default !EXPERT
4843b8006e5SJiri Slaby	---help---
4853b8006e5SJiri Slaby	Support for Monterey Genius KB29E.
4863b8006e5SJiri Slaby
4875519cab4SBenjamin Tissoiresconfig HID_MULTITOUCH
4885519cab4SBenjamin Tissoires	tristate "HID Multitouch panels"
489d8814272SBenjamin Tissoires	depends on HID
4905519cab4SBenjamin Tissoires	---help---
4915519cab4SBenjamin Tissoires	  Generic support for HID multitouch panels.
4925519cab4SBenjamin Tissoires
4935519cab4SBenjamin Tissoires	  Say Y here if you have one of the following devices:
494f786bba4SBenjamin Tissoires	  - 3M PCT touch screens
495e6aac342SBenjamin Tissoires	  - ActionStar dual touch panels
496b1057124SBenjamin Tissoires	  - Atmel panels
49722408283SBenjamin Tissoires	  - Cando dual touch panels
498942fd422SAustin Zhang	  - Chunghwa panels
499070f63b4SYang Bo	  - CJTouch panels
50079603dc9SBenjamin Tissoires	  - CVTouch panels
5012d93666eSBenjamin Tissoires	  - Cypress TrueTouch panels
502e02aea91SJan Matějka	  - Elan Microelectronics touch panels
503c04abeefSBenjamin Tissoires	  - Elo TouchSystems IntelliTouch Plus panels
50422408283SBenjamin Tissoires	  - GeneralTouch 'Sensing Win7-TwoFinger' panels
505ee0fbd14SBenjamin Tissoires	  - GoodTouch panels
5062d93666eSBenjamin Tissoires	  - Hanvon dual touch panels
50722408283SBenjamin Tissoires	  - Ilitek dual touch panels
5084dfcced8SBenjamin Tissoires	  - IrTouch Infrared USB panels
509c50bb1a4SJeff Brown	  - LG Display panels (Dell ST2220Tc)
510df167c4aSBenjamin Tissoires	  - Lumio CrystalTouch panels
5114a6ee685SBenjamin Tissoires	  - MosArt dual-touch panels
5122258e863SDenis Kovalev	  - Panasonic multitouch panels
5136ab3a9a6SJohn Sung	  - PenMount dual touch panels
514847672cdSBenjamin Tissoires	  - Perixx Peripad 701 touchpad
515b7ea95ffSAaron Tian	  - PixArt optical touch screen
5162d93666eSBenjamin Tissoires	  - Pixcir dual touch panels
5175e7ea11fSBenjamin Tissoires	  - Quanta panels
51822408283SBenjamin Tissoires	  - eGalax dual-touch panels, including the Joojoo and Wetab tablets
519a6802e00SForest Bond	  - SiS multitouch panels
520043b403aSBenjamin Tissoires	  - Stantum multitouch panels
5215e74e56dSBenjamin Tissoires	  - Touch International Panels
522617b64f9SBenjamin Tissoires	  - Unitec Panels
523bf9d121eSKaiChung Cheng	  - Wistron optical touch panels
524bc8a2a9bSice chien	  - XAT optical touch panels
52511576c61SMasatoshi Hoshikawa	  - Xiroku optical touch panels
526e9a09aedSBenjamin Tissoires	  - Zytronic touch panels
5275519cab4SBenjamin Tissoires
5282d93666eSBenjamin Tissoires	  If unsure, say N.
5292d93666eSBenjamin Tissoires
5302d93666eSBenjamin Tissoires	  To compile this driver as a module, choose M here: the
5312d93666eSBenjamin Tissoires	  module will be called hid-multitouch.
5322d93666eSBenjamin Tissoires
53394011f93SRafi Rubinconfig HID_NTRIG
534a1043044SBorislav Petkov	tristate "N-Trig touch screen"
53594011f93SRafi Rubin	depends on USB_HID
53694011f93SRafi Rubin	---help---
53794011f93SRafi Rubin	Support for N-Trig touch screen.
53894011f93SRafi Rubin
539cd9ec30dSJohnathon Harrisconfig HID_ORTEK
540d586dca0SJiri Kosina	tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad"
541f3757ceaSBenjamin Tissoires	depends on HID
542cd9ec30dSJohnathon Harris	---help---
543d586dca0SJiri Kosina	There are certain devices which have LogicalMaximum wrong in the keyboard
544d586dca0SJiri Kosina	usage page of their report descriptor. The most prevailing ones so far
545d586dca0SJiri Kosina	are manufactured by Ortek, thus the name of the driver. Currently
546d586dca0SJiri Kosina	supported devices by this driver are
547d586dca0SJiri Kosina
548d586dca0SJiri Kosina	   - Ortek PKB-1700
549d586dca0SJiri Kosina	   - Ortek WKB-2000
550d586dca0SJiri Kosina	   - Skycable wireless presenter
551cd9ec30dSJohnathon Harris
5525f022298SJiri Slabyconfig HID_PANTHERLORD
553a1043044SBorislav Petkov	tristate "Pantherlord/GreenAsia game controller"
554d8814272SBenjamin Tissoires	depends on HID
5550f6f4319SJiri Kosina	---help---
5560f6f4319SJiri Kosina	  Say Y here if you have a PantherLord/GreenAsia based game controller
5570f6f4319SJiri Kosina	  or adapter.
5580f6f4319SJiri Kosina
5595f022298SJiri Slabyconfig PANTHERLORD_FF
5605f022298SJiri Slaby	bool "Pantherlord force feedback support"
5615f022298SJiri Slaby	depends on HID_PANTHERLORD
5625f022298SJiri Slaby	select INPUT_FF_MEMLESS
5630f6f4319SJiri Kosina	---help---
5645f022298SJiri Slaby	  Say Y here if you have a PantherLord/GreenAsia based game controller
5655f022298SJiri Slaby	  or adapter and want to enable force feedback support for it.
5665f022298SJiri Slaby
567ffe51d0dSChristian Gmeinerconfig HID_PENMOUNT
568ffe51d0dSChristian Gmeiner	tristate "Penmount touch device"
569ffe51d0dSChristian Gmeiner	depends on USB_HID
570ffe51d0dSChristian Gmeiner	---help---
571ffe51d0dSChristian Gmeiner	  This selects a driver for the PenMount 6000 touch controller.
572ffe51d0dSChristian Gmeiner
573ffe51d0dSChristian Gmeiner	  The driver works around a problem in the report descript allowing
574ffe51d0dSChristian Gmeiner	  the userspace to touch events instead of mouse events.
575ffe51d0dSChristian Gmeiner
576ffe51d0dSChristian Gmeiner	  Say Y here if you have a Penmount based touch controller.
577ffe51d0dSChristian Gmeiner
5781e762532SJiri Slabyconfig HID_PETALYNX
579a1043044SBorislav Petkov	tristate "Petalynx Maxter remote control"
580f3757ceaSBenjamin Tissoires	depends on HID
5811e762532SJiri Slaby	---help---
582f0bd8e43SJiri Kosina	Support for Petalynx Maxter remote control.
5831e762532SJiri Slaby
584236db47cSBruno Prémontconfig HID_PICOLCD
585236db47cSBruno Prémont	tristate "PicoLCD (graphic version)"
586b7966a4dSBenjamin Tissoires	depends on HID
587236db47cSBruno Prémont	---help---
588236db47cSBruno Prémont	  This provides support for Minibox PicoLCD devices, currently
589236db47cSBruno Prémont	  only the graphical ones are supported.
590236db47cSBruno Prémont
591236db47cSBruno Prémont	  This includes support for the following device features:
592236db47cSBruno Prémont	  - Keypad
593236db47cSBruno Prémont	  - Switching between Firmware and Flash mode
5949bbf2b98SBruno Prémont	  - EEProm / Flash access     (via debugfs)
5955435f281SBruno Prémont	  Features selectively enabled:
5965435f281SBruno Prémont	  - Framebuffer for monochrome 256x64 display
5975435f281SBruno Prémont	  - Backlight control
5985435f281SBruno Prémont	  - Contrast control
5995435f281SBruno Prémont	  - General purpose outputs
600b8c21cf6SBruno Prémont	  Features that are not (yet) supported:
601236db47cSBruno Prémont	  - IR
602236db47cSBruno Prémont
6035435f281SBruno Prémontconfig HID_PICOLCD_FB
6046a108a14SDavid Rientjes	bool "Framebuffer support" if EXPERT
6056a108a14SDavid Rientjes	default !EXPERT
6065435f281SBruno Prémont	depends on HID_PICOLCD
6075435f281SBruno Prémont	depends on HID_PICOLCD=FB || FB=y
6085435f281SBruno Prémont	select FB_DEFERRED_IO
6095435f281SBruno Prémont	select FB_SYS_FILLRECT
6105435f281SBruno Prémont	select FB_SYS_COPYAREA
6115435f281SBruno Prémont	select FB_SYS_IMAGEBLIT
6125435f281SBruno Prémont	select FB_SYS_FOPS
6135435f281SBruno Prémont	---help---
6145435f281SBruno Prémont	  Provide access to PicoLCD's 256x64 monochrome display via a
6156b2aac42SMasanari Iida	  framebuffer device.
6165435f281SBruno Prémont
6175435f281SBruno Prémontconfig HID_PICOLCD_BACKLIGHT
6186a108a14SDavid Rientjes	bool "Backlight control" if EXPERT
6196a108a14SDavid Rientjes	default !EXPERT
6205435f281SBruno Prémont	depends on HID_PICOLCD
6215435f281SBruno Prémont	depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y
6225435f281SBruno Prémont	---help---
6235435f281SBruno Prémont	  Provide access to PicoLCD's backlight control via backlight
6245435f281SBruno Prémont	  class.
6255435f281SBruno Prémont
6265435f281SBruno Prémontconfig HID_PICOLCD_LCD
6276a108a14SDavid Rientjes	bool "Contrast control" if EXPERT
6286a108a14SDavid Rientjes	default !EXPERT
6295435f281SBruno Prémont	depends on HID_PICOLCD
6305435f281SBruno Prémont	depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y
6315435f281SBruno Prémont	---help---
6325435f281SBruno Prémont	  Provide access to PicoLCD's LCD contrast via lcd class.
6335435f281SBruno Prémont
6345435f281SBruno Prémontconfig HID_PICOLCD_LEDS
6356a108a14SDavid Rientjes	bool "GPO via leds class" if EXPERT
6366a108a14SDavid Rientjes	default !EXPERT
6375435f281SBruno Prémont	depends on HID_PICOLCD
6385435f281SBruno Prémont	depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y
6395435f281SBruno Prémont	---help---
6405435f281SBruno Prémont	  Provide access to PicoLCD's GPO pins via leds class.
6415435f281SBruno Prémont
642fabdbf2fSBruno Prémontconfig HID_PICOLCD_CIR
643fabdbf2fSBruno Prémont	bool "CIR via RC class" if EXPERT
644fabdbf2fSBruno Prémont	default !EXPERT
645fabdbf2fSBruno Prémont	depends on HID_PICOLCD
646fabdbf2fSBruno Prémont	depends on HID_PICOLCD=RC_CORE || RC_CORE=y
647fabdbf2fSBruno Prémont	---help---
648fabdbf2fSBruno Prémont	  Provide access to PicoLCD's CIR interface via remote control (LIRC).
649fabdbf2fSBruno Prémont
6501a3f83f6SJD Coleconfig HID_PLANTRONICS
6511a3f83f6SJD Cole	tristate "Plantronics USB HID Driver"
6521a3f83f6SJD Cole	depends on HID
6531a3f83f6SJD Cole	---help---
65481bb773fSTerry Junge	  Provides HID support for Plantronics USB audio devices.
65581bb773fSTerry Junge	  Correctly maps vendor unique volume up/down HID usages to
65681bb773fSTerry Junge	  KEY_VOLUMEUP and KEY_VOLUMEDOWN events and prevents core mapping
65781bb773fSTerry Junge	  of other vendor unique HID usages to random mouse events.
65881bb773fSTerry Junge
65981bb773fSTerry Junge	  Say M here if you may ever plug in a Plantronics USB audio device.
6601a3f83f6SJD Cole
661f6a04605STerry Lambertconfig HID_PRIMAX
662dfe9a312SJiri Kosina	tristate "Primax non-fully HID-compliant devices"
663f3757ceaSBenjamin Tissoires	depends on HID
664f6a04605STerry Lambert	---help---
665f6a04605STerry Lambert	Support for Primax devices that are not fully compliant with the
666f6a04605STerry Lambert	HID standard.
667f6a04605STerry Lambert
668206f5f2fSStefan Achatzconfig HID_ROCCAT
669bd393dbdSStefan Achatz	tristate "Roccat device support"
670206f5f2fSStefan Achatz	depends on USB_HID
671206f5f2fSStefan Achatz	---help---
672bd393dbdSStefan Achatz	Support for Roccat devices.
673bd393dbdSStefan Achatz	Say Y here if you have a Roccat mouse or keyboard and want
674bd393dbdSStefan Achatz	support for its special functionalities.
675cb7cf3daSStefan Achatz
6761e93674aSAndreas Hübnerconfig HID_SAITEK
6777bb9d643SVille Aakko	tristate "Saitek (Mad Catz) non-fully HID-compliant devices"
678f3757ceaSBenjamin Tissoires	depends on HID
6791e93674aSAndreas Hübner	---help---
6801e93674aSAndreas Hübner	Support for Saitek devices that are not fully compliant with the
6811e93674aSAndreas Hübner	HID standard.
6821e93674aSAndreas Hübner
68337c492c8SHarald Brinkmann	Supported devices:
68437c492c8SHarald Brinkmann	- PS1000 Dual Analog Pad
6857bb9d643SVille Aakko	- R.A.T.9 Gaming Mouse
68637c492c8SHarald Brinkmann	- R.A.T.7 Gaming Mouse
68737c492c8SHarald Brinkmann	- M.M.O.7 Gaming Mouse
6881e93674aSAndreas Hübner
689980a3da6SJiri Slabyconfig HID_SAMSUNG
690a1043044SBorislav Petkov	tristate "Samsung InfraRed remote control or keyboards"
691f3757ceaSBenjamin Tissoires	depends on HID
692980a3da6SJiri Slaby	---help---
693b355850bSDon Prince	Support for Samsung InfraRed remote control or keyboards.
694980a3da6SJiri Slaby
695bd28ce00SJiri Slabyconfig HID_SONY
696e4321c5cSFrank Praznik	tristate "Sony PS2/3/4 accessories"
697bd28ce00SJiri Slaby	depends on USB_HID
69840e32ee6SJiri Kosina	depends on NEW_LEDS
69940e32ee6SJiri Kosina	depends on LEDS_CLASS
700695baaa7SJiri Kosina	select POWER_SUPPLY
701bd28ce00SJiri Slaby	---help---
702f04d5140SColin Leitner	Support for
7035844c1cdSDavid Dillow
704f04d5140SColin Leitner	  * Sony PS3 6-axis controllers
705e4321c5cSFrank Praznik	  * Sony PS4 DualShock 4 controllers
706f04d5140SColin Leitner	  * Buzz controllers
707078328daSJiri Kosina	  * Sony PS3 Blue-ray Disk Remote Control (Bluetooth)
708078328daSJiri Kosina	  * Logitech Harmony adapter for Sony Playstation 3 (Bluetooth)
709bd28ce00SJiri Slaby
710a08c22c0SSven Eckelmannconfig SONY_FF
711e4321c5cSFrank Praznik	bool "Sony PS2/3/4 accessories force feedback support"
712a08c22c0SSven Eckelmann	depends on HID_SONY
713a08c22c0SSven Eckelmann	select INPUT_FF_MEMLESS
714a08c22c0SSven Eckelmann	---help---
715e4321c5cSFrank Praznik	Say Y here if you have a Sony PS2/3/4 accessory and want to enable
716e4321c5cSFrank Praznik	force feedback support for it.
717a08c22c0SSven Eckelmann
71874bc6953SStefan Kriwanekconfig HID_SPEEDLINK
71974bc6953SStefan Kriwanek	tristate "Speedlink VAD Cezanne mouse support"
720d8814272SBenjamin Tissoires	depends on HID
72174bc6953SStefan Kriwanek	---help---
72274bc6953SStefan Kriwanek	Support for Speedlink Vicious and Divine Cezanne mouse.
72374bc6953SStefan Kriwanek
724090800c2SJiri Kosinaconfig HID_STEELSERIES
72575dbb953SSimon Wood	tristate "Steelseries SRW-S1 steering wheel support"
726d8814272SBenjamin Tissoires	depends on HID
72775dbb953SSimon Wood	---help---
72875dbb953SSimon Wood	Support for Steelseries SRW-S1 steering wheel
72975dbb953SSimon Wood
73090231e7eSJiri Slabyconfig HID_SUNPLUS
731a1043044SBorislav Petkov	tristate "Sunplus wireless desktop"
732f3757ceaSBenjamin Tissoires	depends on HID
73390231e7eSJiri Slaby	---help---
734f0bd8e43SJiri Kosina	Support for Sunplus wireless desktop.
73590231e7eSJiri Slaby
7369fb6bf02SBenjamin Tissoiresconfig HID_RMI
7379fb6bf02SBenjamin Tissoires	tristate "Synaptics RMI4 device support"
7389fb6bf02SBenjamin Tissoires	depends on HID
7399fb6bf02SBenjamin Tissoires	---help---
7409fb6bf02SBenjamin Tissoires	Support for Synaptics RMI4 touchpads.
7419fb6bf02SBenjamin Tissoires	Say Y here if you have a Synaptics RMI4 touchpads over i2c-hid or usbhid
7429fb6bf02SBenjamin Tissoires	and want support for its special functionalities.
7439fb6bf02SBenjamin Tissoires
7440f6f4319SJiri Kosinaconfig HID_GREENASIA
745a1043044SBorislav Petkov	tristate "GreenAsia (Product ID 0x12) game controller support"
746d8814272SBenjamin Tissoires	depends on HID
7470f6f4319SJiri Kosina	---help---
7480f6f4319SJiri Kosina	  Say Y here if you have a GreenAsia (Product ID 0x12) based game
7490f6f4319SJiri Kosina	  controller or adapter.
7500f6f4319SJiri Kosina
7510f6f4319SJiri Kosinaconfig GREENASIA_FF
7520f6f4319SJiri Kosina	bool "GreenAsia (Product ID 0x12) force feedback support"
7530f6f4319SJiri Kosina	depends on HID_GREENASIA
75442859e0bSLukasz Lubojanski	select INPUT_FF_MEMLESS
75542859e0bSLukasz Lubojanski	---help---
75642859e0bSLukasz Lubojanski	Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
757692105b8SMatt LaPlante	(like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
75842859e0bSLukasz Lubojanski	and want to enable force feedback support for it.
75942859e0bSLukasz Lubojanski
7606cf851d8SJiri Kosinaconfig HID_HYPERV_MOUSE
7616cf851d8SJiri Kosina	tristate "Microsoft Hyper-V mouse driver"
7626cf851d8SJiri Kosina	depends on HYPERV
7636cf851d8SJiri Kosina	---help---
7646cf851d8SJiri Kosina	Select this option to enable the Hyper-V mouse driver.
7656cf851d8SJiri Kosina
766fac733f0SJussi Kivilinnaconfig HID_SMARTJOYPLUS
76773d5e8f7SJiri Kosina	tristate "SmartJoy PLUS PS2/USB adapter support"
768d8814272SBenjamin Tissoires	depends on HID
769fac733f0SJussi Kivilinna	---help---
7701bcc2067SSean Young	Support for SmartJoy PLUS PS2/USB adapter, Super Dual Box,
7711bcc2067SSean Young	Super Joy Box 3 Pro, Super Dual Box Pro, and Super Joy Box 5 Pro.
7721bcc2067SSean Young
7731bcc2067SSean Young	Note that DDR (Dance Dance Revolution) mode is not supported, nor
7741bcc2067SSean Young	is pressure sensitive buttons on the pro models.
775fac733f0SJussi Kivilinna
776fac733f0SJussi Kivilinnaconfig SMARTJOYPLUS_FF
777fac733f0SJussi Kivilinna	bool "SmartJoy PLUS PS2/USB adapter force feedback support"
778fac733f0SJussi Kivilinna	depends on HID_SMARTJOYPLUS
779fac733f0SJussi Kivilinna	select INPUT_FF_MEMLESS
780fac733f0SJussi Kivilinna	---help---
781fac733f0SJussi Kivilinna	Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to
782fac733f0SJussi Kivilinna	enable force feedback support for it.
783fac733f0SJussi Kivilinna
7842701eaabSJiri Kosinaconfig HID_TIVO
78544ea35c1SJarod Wilson	tristate "TiVo Slide Bluetooth remote control support"
786f3757ceaSBenjamin Tissoires	depends on HID
78744ea35c1SJarod Wilson	---help---
78844ea35c1SJarod Wilson	Say Y if you have a TiVo Slide Bluetooth remote control.
78944ea35c1SJarod Wilson
790f14f526dSLev Babievconfig HID_TOPSEED
79154001081SKees Bakker	tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support"
792f3757ceaSBenjamin Tissoires	depends on HID
793f14f526dSLev Babiev	---help---
79454001081SKees Bakker	Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic
79554001081SKees Bakker	CLLRCMCE remote control.
796f14f526dSLev Babiev
79730ba2fbdSVivien Didelotconfig HID_THINGM
79830ba2fbdSVivien Didelot	tristate "ThingM blink(1) USB RGB LED"
799f3757ceaSBenjamin Tissoires	depends on HID
80030ba2fbdSVivien Didelot	depends on LEDS_CLASS
80130ba2fbdSVivien Didelot	---help---
80230ba2fbdSVivien Didelot	Support for the ThingM blink(1) USB RGB LED. This driver registers a
80330ba2fbdSVivien Didelot	Linux LED class instance, plus additional sysfs attributes to control
80430ba2fbdSVivien Didelot	RGB colors, fade time and playing. The device is exposed through hidraw
80530ba2fbdSVivien Didelot	to access other functions.
80630ba2fbdSVivien Didelot
8070f6f4319SJiri Kosinaconfig HID_THRUSTMASTER
80873d5e8f7SJiri Kosina	tristate "ThrustMaster devices support"
809d8814272SBenjamin Tissoires	depends on HID
8100f6f4319SJiri Kosina	---help---
81110e41a71SJiri Slaby	  Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or
8120f6f4319SJiri Kosina	  a THRUSTMASTER Ferrari GT Rumble Wheel.
8130f6f4319SJiri Kosina
8140f6f4319SJiri Kosinaconfig THRUSTMASTER_FF
8150f6f4319SJiri Kosina	bool "ThrustMaster devices force feedback support"
8160f6f4319SJiri Kosina	depends on HID_THRUSTMASTER
8170f6f4319SJiri Kosina	select INPUT_FF_MEMLESS
8180f6f4319SJiri Kosina	---help---
8197a84b133SRuben Aos Garralda	  Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3,
8207a84b133SRuben Aos Garralda	  a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT
8217a84b133SRuben Aos Garralda	  Rumble Force or Force Feedback Wheel.
82210e41a71SJiri Slaby
823ca2dcd40SBastien Noceraconfig HID_WACOM
824471d1714SBenjamin Tissoires	tristate "Wacom Intuos/Graphire tablet support (USB)"
825f3757ceaSBenjamin Tissoires	depends on HID
82659d2334aSPrzemo Firszt	select POWER_SUPPLY
827471d1714SBenjamin Tissoires	select NEW_LEDS
828471d1714SBenjamin Tissoires	select LEDS_CLASS
829471d1714SBenjamin Tissoires	help
8307403a6a4SBenjamin Tissoires	  Say Y here if you want to use the USB or BT version of the Wacom Intuos
831471d1714SBenjamin Tissoires	  or Graphire tablet.
832471d1714SBenjamin Tissoires
833471d1714SBenjamin Tissoires	  To compile this driver as a module, choose M here: the
834471d1714SBenjamin Tissoires	  module will be called wacom.
83559d2334aSPrzemo Firszt
836fb51b443SDavid Herrmannconfig HID_WIIMOTE
83792eda7e4SDavid Herrmann	tristate "Nintendo Wii / Wii U peripherals"
838f3757ceaSBenjamin Tissoires	depends on HID
83923a5a4a3SDavid Herrmann	depends on LEDS_CLASS
8406591d758SDavid Herrmann	select POWER_SUPPLY
841ef6f4115SDavid Herrmann	select INPUT_FF_MEMLESS
842fb51b443SDavid Herrmann	---help---
84392eda7e4SDavid Herrmann	Support for Nintendo Wii and Wii U Bluetooth peripherals. Supported
84492eda7e4SDavid Herrmann	devices are the Wii Remote and its extension devices, but also devices
84592eda7e4SDavid Herrmann	based on the Wii Remote like the Wii U Pro Controller or the
84692eda7e4SDavid Herrmann	Wii Balance Board.
847fb51b443SDavid Herrmann
84892eda7e4SDavid Herrmann	Support for all official Nintendo extensions is available, however, 3rd
84992eda7e4SDavid Herrmann	party extensions might not be supported. Please report these devices to:
85092eda7e4SDavid Herrmann	  http://github.com/dvdhrm/xwiimote/issues
85192eda7e4SDavid Herrmann
85292eda7e4SDavid Herrmann	Other Nintendo Wii U peripherals that are IEEE 802.11 based (including
85392eda7e4SDavid Herrmann	the Wii U Gamepad) might be supported in the future. But currently
85492eda7e4SDavid Herrmann	support is limited to Bluetooth based devices.
85592eda7e4SDavid Herrmann
85692eda7e4SDavid Herrmann	If unsure, say N.
85792eda7e4SDavid Herrmann
85892eda7e4SDavid Herrmann	To compile this driver as a module, choose M here: the
85992eda7e4SDavid Herrmann	module will be called hid-wiimote.
860cb99221bSDavid Herrmann
861cb2c9e3fSOlivier Scherlerconfig HID_XINMO
862cb2c9e3fSOlivier Scherler	tristate "Xin-Mo non-fully compliant devices"
863cb2c9e3fSOlivier Scherler	depends on HID
864cb2c9e3fSOlivier Scherler	---help---
865cb2c9e3fSOlivier Scherler	Support for Xin-Mo devices that are not fully compliant with the HID
866e2c76a8bSBrian Norris	standard. Currently only supports the Xin-Mo Dual Arcade. Say Y here
867cb2c9e3fSOlivier Scherler	if you have a Xin-Mo Dual Arcade controller.
868cb2c9e3fSOlivier Scherler
8690f6f4319SJiri Kosinaconfig HID_ZEROPLUS
87073d5e8f7SJiri Kosina	tristate "Zeroplus based game controller support"
871d8814272SBenjamin Tissoires	depends on HID
8720f6f4319SJiri Kosina	---help---
873987fbc1fSJiri Slaby	  Say Y here if you have a Zeroplus based game controller.
874987fbc1fSJiri Slaby
8750f6f4319SJiri Kosinaconfig ZEROPLUS_FF
8760f6f4319SJiri Kosina	bool "Zeroplus based game controller force feedback support"
8770f6f4319SJiri Kosina	depends on HID_ZEROPLUS
8780f6f4319SJiri Kosina	select INPUT_FF_MEMLESS
8790f6f4319SJiri Kosina	---help---
8800f6f4319SJiri Kosina	  Say Y here if you have a Zeroplus based game controller and want
8810f6f4319SJiri Kosina	  to have force feedback support for it.
8820f6f4319SJiri Kosina
883a9885c8fSDon Princeconfig HID_ZYDACRON
88473d5e8f7SJiri Kosina	tristate "Zydacron remote control support"
885f3757ceaSBenjamin Tissoires	depends on HID
886a9885c8fSDon Prince	---help---
887a9885c8fSDon Prince	Support for Zydacron remote control.
888a9885c8fSDon Prince
889401ca24fSsrinivas pandruvadaconfig HID_SENSOR_HUB
890401ca24fSsrinivas pandruvada	tristate "HID Sensors framework support"
8914732aee9SChen Gang	depends on HID && HAS_IOMEM
892401ca24fSsrinivas pandruvada	select MFD_CORE
893401ca24fSsrinivas pandruvada	default n
894fdc5663cSPaul Bolle	---help---
895401ca24fSsrinivas pandruvada	  Support for HID Sensor framework. This creates a MFD instance
896401ca24fSsrinivas pandruvada	  for a sensor hub and identifies all the sensors connected to it.
897401ca24fSsrinivas pandruvada	  Each sensor is registered as a MFD cell, so that sensor specific
898401ca24fSsrinivas pandruvada	  processing can be done in a separate driver. Each sensor
899401ca24fSsrinivas pandruvada	  drivers can use the service provided by this driver to register
900401ca24fSsrinivas pandruvada	  for events and handle data streams. Each sensor driver can format
901401ca24fSsrinivas pandruvada	  data and present to user mode using input or IIO interface.
902401ca24fSsrinivas pandruvada
9034a7de051SSrinivas Pandruvadaconfig HID_SENSOR_CUSTOM_SENSOR
9044a7de051SSrinivas Pandruvada	tristate "HID Sensors hub custom sensor support"
9054a7de051SSrinivas Pandruvada	depends on HID_SENSOR_HUB
9064a7de051SSrinivas Pandruvada	default n
9074a7de051SSrinivas Pandruvada	---help---
9084a7de051SSrinivas Pandruvada	  HID Sensor hub specification allows definition of some custom and
9094a7de051SSrinivas Pandruvada	  generic sensors. Unlike other HID sensors, they can't be exported
9104a7de051SSrinivas Pandruvada	  via Linux IIO because of custom fields. This is up to the manufacturer
9114a7de051SSrinivas Pandruvada	  to decide how to interpret these special sensor ids and process in
9124a7de051SSrinivas Pandruvada	  the user space. Currently some manufacturers are using these ids for
9134a7de051SSrinivas Pandruvada	  sensor calibration and debugging other sensors. Manufacturers
9144a7de051SSrinivas Pandruvada	  should't use these special custom sensor ids to export any of the
9154a7de051SSrinivas Pandruvada	  standard sensors.
9164a7de051SSrinivas Pandruvada	  Select this config option for custom/generic sensor support.
9174a7de051SSrinivas Pandruvada
9185f22a799SJiri Slabyendmenu
9195f22a799SJiri Slaby
9201f41a6a9SHenrik Rydbergendif # HID
9211f41a6a9SHenrik Rydberg
9221f41a6a9SHenrik Rydbergsource "drivers/hid/usbhid/Kconfig"
9231f41a6a9SHenrik Rydberg
9244a200c3bSBenjamin Tissoiressource "drivers/hid/i2c-hid/Kconfig"
9254a200c3bSBenjamin Tissoires
9261f41a6a9SHenrik Rydbergendmenu
927