xref: /linux/drivers/hid/Kconfig (revision f471d9480275796dea2ac7ec249b050e70a2888d)
163f3861dSJiri Kosina#
263f3861dSJiri Kosina# HID driver configuration
363f3861dSJiri Kosina#
41f41a6a9SHenrik Rydbergmenu "HID support"
563f3861dSJiri Kosina     depends on INPUT
663f3861dSJiri Kosina
763f3861dSJiri Kosinaconfig HID
81f41a6a9SHenrik Rydberg	tristate "HID bus support"
9c96c9d7bSRussell King	depends on INPUT
1063f3861dSJiri Kosina	default y
1163f3861dSJiri Kosina	---help---
1269e4d948SJiri Kosina	  A human interface device (HID) is a type of computer device that
1369e4d948SJiri Kosina	  interacts directly with and takes input from humans. The term "HID"
1469e4d948SJiri Kosina	  most commonly used to refer to the USB-HID specification, but other
1569e4d948SJiri Kosina	  devices (such as, but not strictly limited to, Bluetooth) are
1669e4d948SJiri Kosina	  designed using HID specification (this involves certain keyboards,
171f41a6a9SHenrik Rydberg	  mice, tablets, etc). This option adds the HID bus to the kernel,
181f41a6a9SHenrik Rydberg	  together with generic HID layer code. The HID devices are added and
191f41a6a9SHenrik Rydberg	  removed from the HID bus by the transport-layer drivers, such as
201f41a6a9SHenrik Rydberg	  usbhid (USB_HID) and hidp (BT_HIDP).
2169e4d948SJiri Kosina
2269e4d948SJiri Kosina	  For docs and specs, see http://www.usb.org/developers/hidpage/
2369e4d948SJiri Kosina
24205adbecSPavel Machek	  If unsure, say Y.
2563f3861dSJiri Kosina
261f41a6a9SHenrik Rydbergif HID
271f41a6a9SHenrik Rydberg
284f5ca836SJeremy Fitzhardingeconfig HID_BATTERY_STRENGTH
29692d30d6SJiri Kosina	bool "Battery level reporting for HID devices"
30d66c266aSJiri Kosina	depends on HID && POWER_SUPPLY && HID = POWER_SUPPLY
312198edddSJosh Boyer	default n
32692d30d6SJiri Kosina	---help---
33692d30d6SJiri Kosina	This option adds support of reporting battery strength (for HID devices
34692d30d6SJiri Kosina	that support this feature) through power_supply class so that userspace
35692d30d6SJiri Kosina	tools, such as upower, can display it.
364f5ca836SJeremy Fitzhardinge
3786166b7bSJiri Kosinaconfig HIDRAW
3886166b7bSJiri Kosina	bool "/dev/hidraw raw HID device support"
3986166b7bSJiri Kosina	depends on HID
4086166b7bSJiri Kosina	---help---
4186166b7bSJiri Kosina	Say Y here if you want to support HID devices (from the USB
4286166b7bSJiri Kosina	specification standpoint) that aren't strictly user interface
4386166b7bSJiri Kosina	devices, like monitor controls and Uninterruptable Power Supplies.
4486166b7bSJiri Kosina
4586166b7bSJiri Kosina	This module supports these devices separately using a separate
4686166b7bSJiri Kosina	event interface on /dev/hidraw.
4786166b7bSJiri Kosina
4886166b7bSJiri Kosina	There is also a /dev/hiddev configuration option in the USB HID
4986166b7bSJiri Kosina	configuration menu. In comparison to hiddev, this device does not process
5086166b7bSJiri Kosina	the hid events at all (no parsing, no lookups). This lets applications
5186166b7bSJiri Kosina	to work on raw hid events when they want to, and avoid using transport-specific
5286166b7bSJiri Kosina	userspace libhid/libusb libraries.
5386166b7bSJiri Kosina
5486166b7bSJiri Kosina	If unsure, say Y.
5586166b7bSJiri Kosina
561ccd7a2aSDavid Herrmannconfig UHID
571ccd7a2aSDavid Herrmann	tristate "User-space I/O driver support for HID subsystem"
581ccd7a2aSDavid Herrmann	depends on HID
591ccd7a2aSDavid Herrmann	default n
601ccd7a2aSDavid Herrmann	---help---
611ccd7a2aSDavid Herrmann	Say Y here if you want to provide HID I/O Drivers from user-space.
621ccd7a2aSDavid Herrmann	This allows to write I/O drivers in user-space and feed the data from
631ccd7a2aSDavid Herrmann	the device into the kernel. The kernel parses the HID reports, loads the
641ccd7a2aSDavid Herrmann	corresponding HID Device Driver or provides input devices on top of your
651ccd7a2aSDavid Herrmann	user-space device.
661ccd7a2aSDavid Herrmann
671ccd7a2aSDavid Herrmann	This driver cannot be used to parse HID-reports in user-space and write
681ccd7a2aSDavid Herrmann	special HID-drivers. You should use hidraw for that.
691ccd7a2aSDavid Herrmann	Instead, this driver allows to write the transport-layer driver in
701ccd7a2aSDavid Herrmann	user-space like USB-HID and Bluetooth-HID do in kernel-space.
711ccd7a2aSDavid Herrmann
721ccd7a2aSDavid Herrmann	If unsure, say N.
731ccd7a2aSDavid Herrmann
741ccd7a2aSDavid Herrmann	To compile this driver as a module, choose M here: the
751ccd7a2aSDavid Herrmann	module will be called uhid.
761ccd7a2aSDavid Herrmann
778215d557SHenrik Rydbergconfig HID_GENERIC
788215d557SHenrik Rydberg	tristate "Generic HID driver"
798215d557SHenrik Rydberg	depends on HID
801f41a6a9SHenrik Rydberg	default HID
818215d557SHenrik Rydberg	---help---
821f41a6a9SHenrik Rydberg	Support for generic devices on the HID bus. This includes most
831f41a6a9SHenrik Rydberg	keyboards and mice, joysticks, tablets and digitizers.
848215d557SHenrik Rydberg
858215d557SHenrik Rydberg	To compile this driver as a module, choose M here: the module
868215d557SHenrik Rydberg	will be called hid-generic.
878215d557SHenrik Rydberg
888215d557SHenrik Rydberg	If unsure, say Y.
898215d557SHenrik Rydberg
901f41a6a9SHenrik Rydbergmenu "Special HID drivers"
911f41a6a9SHenrik Rydberg	depends on HID
921f41a6a9SHenrik Rydberg
9314a21cd4SJiri Slabyconfig HID_A4TECH
946a108a14SDavid Rientjes	tristate "A4 tech mice" if EXPERT
95f3757ceaSBenjamin Tissoires	depends on HID
966a108a14SDavid Rientjes	default !EXPERT
9714a21cd4SJiri Slaby	---help---
9814a21cd4SJiri Slaby	Support for A4 tech X5 and WOP-35 / Trust 450L mice.
9914a21cd4SJiri Slaby
1000ae43810SDmitry Torokhovconfig HID_ACRUX
1010ae43810SDmitry Torokhov	tristate "ACRUX game controller support"
102d8814272SBenjamin Tissoires	depends on HID
1030ae43810SDmitry Torokhov	---help---
1040ae43810SDmitry Torokhov	Say Y here if you want to enable support for ACRUX game controllers.
1050ae43810SDmitry Torokhov
1060ae43810SDmitry Torokhovconfig HID_ACRUX_FF
107364b936fSSergei Kolzun	bool "ACRUX force feedback support"
1080ae43810SDmitry Torokhov	depends on HID_ACRUX
109c0dbcc33SSergei Kolzun	select INPUT_FF_MEMLESS
110c0dbcc33SSergei Kolzun	---help---
111c0dbcc33SSergei Kolzun	Say Y here if you want to enable force feedback support for ACRUX
112c0dbcc33SSergei Kolzun	game controllers.
113c0dbcc33SSergei Kolzun
1148c19a515SJiri Slabyconfig HID_APPLE
1156a108a14SDavid Rientjes	tristate "Apple {i,Power,Mac}Books" if EXPERT
116f3757ceaSBenjamin Tissoires	depends on HID
1176a108a14SDavid Rientjes	default !EXPERT
1188c19a515SJiri Slaby	---help---
1198c19a515SJiri Slaby	Support for some Apple devices which less or more break
1208c19a515SJiri Slaby	HID specification.
1218c19a515SJiri Slaby
122f0bd8e43SJiri Kosina	Say Y here if you want support for keyboards of	Apple iBooks, PowerBooks,
123f0bd8e43SJiri Kosina	MacBooks, MacBook Pros and Apple Aluminum.
1248c19a515SJiri Slaby
1259a4a5574SBenjamin Tissoiresconfig HID_APPLEIR
1269a4a5574SBenjamin Tissoires	tristate "Apple infrared receiver"
1279a4a5574SBenjamin Tissoires	depends on (USB_HID)
1289a4a5574SBenjamin Tissoires	---help---
1299a4a5574SBenjamin Tissoires	Support for Apple infrared remote control. All the Apple computers from
1309a4a5574SBenjamin Tissoires	  2005 onwards include such a port, except the unibody Macbook (2009),
1319a4a5574SBenjamin Tissoires	  and Mac Pros. This receiver is also used in the Apple TV set-top box
1329a4a5574SBenjamin Tissoires	  prior to the 2010 model.
1339a4a5574SBenjamin Tissoires
1349a4a5574SBenjamin Tissoires	Say Y here if you want support for Apple infrared remote control.
1359a4a5574SBenjamin Tissoires
136212da74dSJosenivaldo Benito Juniorconfig HID_AUREAL
137212da74dSJosenivaldo Benito Junior	tristate "Aureal"
138f3757ceaSBenjamin Tissoires	depends on HID
139212da74dSJosenivaldo Benito Junior	---help---
140212da74dSJosenivaldo Benito Junior	Support for Aureal Cy se W-01RN Remote Controller and other Aureal derived remotes.
141212da74dSJosenivaldo Benito Junior
142b5635b12SJiri Slabyconfig HID_BELKIN
1436a108a14SDavid Rientjes	tristate "Belkin Flip KVM and Wireless keyboard" if EXPERT
144f3757ceaSBenjamin Tissoires	depends on HID
1456a108a14SDavid Rientjes	default !EXPERT
146b5635b12SJiri Slaby	---help---
147b5635b12SJiri Slaby	Support for Belkin Flip KVM and Wireless keyboard.
148b5635b12SJiri Slaby
1493b239cd7SJiri Slabyconfig HID_CHERRY
1506a108a14SDavid Rientjes	tristate "Cherry Cymotion keyboard" if EXPERT
151f3757ceaSBenjamin Tissoires	depends on HID
1526a108a14SDavid Rientjes	default !EXPERT
1533b239cd7SJiri Slaby	---help---
154f0bd8e43SJiri Kosina	Support for Cherry Cymotion keyboard.
1553b239cd7SJiri Slaby
156fcfacfd3SJiri Slabyconfig HID_CHICONY
1576a108a14SDavid Rientjes	tristate "Chicony Tactical pad" if EXPERT
158f3757ceaSBenjamin Tissoires	depends on HID
1596a108a14SDavid Rientjes	default !EXPERT
160fcfacfd3SJiri Slaby	---help---
161fcfacfd3SJiri Slaby	Support for Chicony Tactical pad.
162fcfacfd3SJiri Slaby
1633a370ca1SDon Princeconfig HID_PRODIKEYS
16495736de9SJiri Kosina	tristate "Prodikeys PC-MIDI Keyboard support"
165d8814272SBenjamin Tissoires	depends on HID && SND
1663a370ca1SDon Prince	select SND_RAWMIDI
1673a370ca1SDon Prince	---help---
1683a370ca1SDon Prince	Support for Prodikeys PC-MIDI Keyboard device support.
1693a370ca1SDon Prince	Say Y here to enable support for this device.
1703a370ca1SDon Prince	- Prodikeys PC-MIDI keyboard.
1713a370ca1SDon Prince	  The Prodikeys PC-MIDI acts as a USB Audio device, with one MIDI
1723a370ca1SDon Prince	  input and one MIDI output. These MIDI jacks appear as
1733a370ca1SDon Prince	  a sound "card" in the ALSA sound system.
1743a370ca1SDon Prince	  Note: if you say N here, this device will still function as a basic
1753a370ca1SDon Prince	  multimedia keyboard, but will lack support for the musical keyboard
1763a370ca1SDon Prince	  and some additional multimedia keys.
1773a370ca1SDon Prince
178e932d817SDavid Barksdaleconfig HID_CP2112
179e932d817SDavid Barksdale	tristate "Silicon Labs CP2112 HID USB-to-SMBus Bridge support"
180a47dc4d8SJiri Kosina	depends on USB_HID && I2C && GPIOLIB
181e932d817SDavid Barksdale	---help---
182e932d817SDavid Barksdale	Support for Silicon Labs CP2112 HID USB to SMBus Master Bridge.
183e932d817SDavid Barksdale	This is a HID device driver which registers as an i2c adapter
184e932d817SDavid Barksdale	and gpiochip to expose these functions of the CP2112. The
185e932d817SDavid Barksdale	customizable USB descriptor fields are exposed as sysfs attributes.
186e932d817SDavid Barksdale
1870f221320SJiri Slabyconfig HID_CYPRESS
1886a108a14SDavid Rientjes	tristate "Cypress mouse and barcode readers" if EXPERT
189f3757ceaSBenjamin Tissoires	depends on HID
1906a108a14SDavid Rientjes	default !EXPERT
1910f221320SJiri Slaby	---help---
192f0bd8e43SJiri Kosina	Support for cypress mouse and barcode readers.
1930f221320SJiri Slaby
1940f6f4319SJiri Kosinaconfig HID_DRAGONRISE
195a1043044SBorislav Petkov	tristate "DragonRise Inc. game controller"
196d8814272SBenjamin Tissoires	depends on HID
1970f6f4319SJiri Kosina	---help---
1980f6f4319SJiri Kosina	Say Y here if you have DragonRise Inc. game controllers.
199b4a65f4eSNikolai Kondrashov	These might be branded as:
200b4a65f4eSNikolai Kondrashov	- Tesun USB-703
201b4a65f4eSNikolai Kondrashov	- Media-tech MT1504 "Rogue"
202b4a65f4eSNikolai Kondrashov	- DVTech JS19 "Gear"
203b4a65f4eSNikolai Kondrashov	- Defender Game Master
2040f6f4319SJiri Kosina
2050f6f4319SJiri Kosinaconfig DRAGONRISE_FF
206a1043044SBorislav Petkov	bool "DragonRise Inc. force feedback"
2070f6f4319SJiri Kosina	depends on HID_DRAGONRISE
2083f866fbdSRichard Walmsley	select INPUT_FF_MEMLESS
2093f866fbdSRichard Walmsley	---help---
2103f866fbdSRichard Walmsley	Say Y here if you want to enable force feedback support for DragonRise Inc.
2113f866fbdSRichard Walmsley	game controllers.
2123f866fbdSRichard Walmsley
21304561c5aSIgnaz Forsterconfig HID_EMS_FF
21404561c5aSIgnaz Forster	tristate "EMS Production Inc. force feedback support"
215d8814272SBenjamin Tissoires	depends on HID
21604561c5aSIgnaz Forster	select INPUT_FF_MEMLESS
21704561c5aSIgnaz Forster	---help---
21804561c5aSIgnaz Forster	Say Y here if you want to enable force feedback support for devices by
21904561c5aSIgnaz Forster	EMS Production Ltd.
22004561c5aSIgnaz Forster	Currently the following devices are known to be supported:
22104561c5aSIgnaz Forster	 - Trio Linker Plus II
22204561c5aSIgnaz Forster
22364b386eaSRichard Nauberconfig HID_ELECOM
224a1043044SBorislav Petkov	tristate "ELECOM BM084 bluetooth mouse"
225f3757ceaSBenjamin Tissoires	depends on HID
22664b386eaSRichard Nauber	---help---
22764b386eaSRichard Nauber	Support for the ELECOM BM084 (bluetooth mouse).
22864b386eaSRichard Nauber
229d23efc19SJiri Slabyconfig HID_ELO
230d23efc19SJiri Slaby	tristate "ELO USB 4000/4500 touchscreen"
231d23efc19SJiri Slaby	depends on USB_HID
232d23efc19SJiri Slaby	---help---
233d23efc19SJiri Slaby	Support for the ELO USB 4000/4500 touchscreens. Note that this is for
234d23efc19SJiri Slaby	different devices than those handled by CONFIG_TOUCHSCREEN_USB_ELO.
235d23efc19SJiri Slaby
2361f243e30SJiri Slabyconfig HID_EZKEY
2376a108a14SDavid Rientjes	tristate "Ezkey BTC 8193 keyboard" if EXPERT
238f3757ceaSBenjamin Tissoires	depends on HID
2396a108a14SDavid Rientjes	default !EXPERT
2401f243e30SJiri Slaby	---help---
241f0bd8e43SJiri Kosina	Support for Ezkey BTC 8193 keyboard.
2421f243e30SJiri Slaby
243d946e65eSAnssi Hannulaconfig HID_HOLTEK
244ff9bf5a2STom Harwood	tristate "Holtek HID devices"
245d946e65eSAnssi Hannula	depends on USB_HID
246d946e65eSAnssi Hannula	---help---
247ff9bf5a2STom Harwood	Support for Holtek based devices:
248ff9bf5a2STom Harwood	  - Holtek On Line Grip based game controller
249ff9bf5a2STom Harwood	  - Trust GXT 18 Gaming Keyboard
25041de326eSChristian Ohm	  - Sharkoon Drakonia / Perixx MX-2000 gaming mice
251d4f51890SChristian Ohm	  - Tracer Sniper TRM-503 / NOVA Gaming Slider X200 /
252d4f51890SChristian Ohm	    Zalman ZM-GM1
2537da7cbbbSAnders F. U. Kiær	  - SHARKOON DarkGlider Gaming mouse
254f1a4914bSAnders F. U. Kiær	  - LEETGION Hellion Gaming Mouse
255d946e65eSAnssi Hannula
256d946e65eSAnssi Hannulaconfig HOLTEK_FF
257d946e65eSAnssi Hannula	bool "Holtek On Line Grip force feedback support"
258d946e65eSAnssi Hannula	depends on HID_HOLTEK
259d946e65eSAnssi Hannula	select INPUT_FF_MEMLESS
260d946e65eSAnssi Hannula	---help---
261d946e65eSAnssi Hannula	  Say Y here if you have a Holtek On Line Grip based game controller
262d946e65eSAnssi Hannula	  and want to have force feedback support for it.
263d946e65eSAnssi Hannula
264*f471d948SJanne Kanniainenconfig HID_GT683R
265*f471d948SJanne Kanniainen	tristate "MSI GT68xR LED support"
266*f471d948SJanne Kanniainen	depends on LEDS_CLASS && USB_HID
267*f471d948SJanne Kanniainen	---help---
268*f471d948SJanne Kanniainen	Say Y here if you want to enable support for the three MSI GT68xR LEDs
269*f471d948SJanne Kanniainen
270*f471d948SJanne Kanniainen	This driver support following modes:
271*f471d948SJanne Kanniainen	  - Normal: LEDs are fully on when enabled
272*f471d948SJanne Kanniainen	  - Audio:  LEDs brightness depends on sound level
273*f471d948SJanne Kanniainen	  - Breathing: LEDs brightness varies at human breathing rate
274*f471d948SJanne Kanniainen
275*f471d948SJanne Kanniainen	Currently the following devices are know to be supported:
276*f471d948SJanne Kanniainen	  - MSI GT683R
277*f471d948SJanne Kanniainen
27868e353feSMartin Ruskoconfig HID_HUION
27968e353feSMartin Rusko	tristate "Huion tablets"
28068e353feSMartin Rusko	depends on USB_HID
28168e353feSMartin Rusko	---help---
28268e353feSMartin Rusko	Support for Huion 580 tablet.
28368e353feSMartin Rusko
284177900e8SJiri Kosinaconfig HID_KEYTOUCH
2853d366e28SStephen Boyd	tristate "Keytouch HID devices"
286f3757ceaSBenjamin Tissoires	depends on HID
287177900e8SJiri Kosina	---help---
288177900e8SJiri Kosina	Support for Keytouch HID devices not fully compliant with
289177900e8SJiri Kosina	the specification. Currently supported:
290177900e8SJiri Kosina		- Keytouch IEC 60945
291177900e8SJiri Kosina
29279422741SJiri Kosinaconfig HID_KYE
29322ca20b2SNikolai Kondrashov	tristate "KYE/Genius devices"
294d8814272SBenjamin Tissoires	depends on HID
29579422741SJiri Kosina	---help---
29622ca20b2SNikolai Kondrashov	Support for KYE/Genius devices not fully compliant with HID standard:
29722ca20b2SNikolai Kondrashov	- Ergo Mouse
29822ca20b2SNikolai Kondrashov	- EasyPen i405X tablet
29922ca20b2SNikolai Kondrashov	- MousePen i608X tablet
30022ca20b2SNikolai Kondrashov	- EasyPen M610X tablet
30179422741SJiri Kosina
302f8a489ccSNikolai Kondrashovconfig HID_UCLOGIC
303f36ee074SJiri Kosina	tristate "UC-Logic"
304f3757ceaSBenjamin Tissoires	depends on HID
305f8a489ccSNikolai Kondrashov	---help---
306f8a489ccSNikolai Kondrashov	Support for UC-Logic tablets.
307f8a489ccSNikolai Kondrashov
30872a46344SNikolai Kondrashovconfig HID_WALTOP
30972a46344SNikolai Kondrashov	tristate "Waltop"
310f3757ceaSBenjamin Tissoires	depends on HID
31172a46344SNikolai Kondrashov	---help---
31272a46344SNikolai Kondrashov	Support for Waltop tablets.
31372a46344SNikolai Kondrashov
314949f8fefSJiri Slabyconfig HID_GYRATION
315a1043044SBorislav Petkov	tristate "Gyration remote control"
316f3757ceaSBenjamin Tissoires	depends on HID
317949f8fefSJiri Slaby	---help---
318f0bd8e43SJiri Kosina	Support for Gyration remote control.
319949f8fefSJiri Slaby
3204ddfe028SBastien Noceraconfig HID_ICADE
3214ddfe028SBastien Nocera	tristate "ION iCade arcade controller"
322f3757ceaSBenjamin Tissoires	depends on HID
3234ddfe028SBastien Nocera	---help---
3244ddfe028SBastien Nocera	Support for the ION iCade arcade controller to work as a joystick.
3254ddfe028SBastien Nocera
3264ddfe028SBastien Nocera	To compile this driver as a module, choose M here: the
3274ddfe028SBastien Nocera	module will be called hid-icade.
3284ddfe028SBastien Nocera
329711a680eSBruno Premontconfig HID_TWINHAN
330a1043044SBorislav Petkov	tristate "Twinhan IR remote control"
331f3757ceaSBenjamin Tissoires	depends on HID
332711a680eSBruno Premont	---help---
333711a680eSBruno Premont	Support for Twinhan IR remote control.
334711a680eSBruno Premont
335fdf93aa3SJiri Kosinaconfig HID_KENSINGTON
3366a108a14SDavid Rientjes	tristate "Kensington Slimblade Trackball" if EXPERT
337f3757ceaSBenjamin Tissoires	depends on HID
3386a108a14SDavid Rientjes	default !EXPERT
339fdf93aa3SJiri Kosina	---help---
340fdf93aa3SJiri Kosina	Support for Kensington Slimblade Trackball.
341fdf93aa3SJiri Kosina
34275b07022SChris Schlundconfig HID_LCPOWER
34375b07022SChris Schlund	tristate "LC-Power"
344f3757ceaSBenjamin Tissoires	depends on HID
34575b07022SChris Schlund	---help---
34675b07022SChris Schlund	Support for LC-Power RC1000MCE RF remote control.
34775b07022SChris Schlund
348c1dcad2dSBernhard Seiboldconfig HID_LENOVO_TPKBD
349c1dcad2dSBernhard Seibold	tristate "Lenovo ThinkPad USB Keyboard with TrackPoint"
3500c521836SBenjamin Tissoires	depends on HID
35125976a79SBryan Wu	select NEW_LEDS
352c1dcad2dSBernhard Seibold	select LEDS_CLASS
353c1dcad2dSBernhard Seibold	---help---
354c1dcad2dSBernhard Seibold	Support for the Lenovo ThinkPad USB Keyboard with TrackPoint.
355c1dcad2dSBernhard Seibold
356c1dcad2dSBernhard Seibold	Say Y here if you have a Lenovo ThinkPad USB Keyboard with TrackPoint
357c1dcad2dSBernhard Seibold	and would like to use device-specific features like changing the
358c1dcad2dSBernhard Seibold	sensitivity of the trackpoint, using the microphone mute button or
359c1dcad2dSBernhard Seibold	controlling the mute and microphone mute LEDs.
360c1dcad2dSBernhard Seibold
3615f22a799SJiri Slabyconfig HID_LOGITECH
3626a108a14SDavid Rientjes	tristate "Logitech devices" if EXPERT
363f3757ceaSBenjamin Tissoires	depends on HID
3646a108a14SDavid Rientjes	default !EXPERT
3655f22a799SJiri Slaby	---help---
366f0bd8e43SJiri Kosina	Support for Logitech devices that are not fully compliant with HID standard.
3675f22a799SJiri Slaby
368534a7b8eSNestor Lopez Casadoconfig HID_LOGITECH_DJ
369534a7b8eSNestor Lopez Casado	tristate "Logitech Unifying receivers full support"
370dcdc50e7SOlivier Gay	depends on HIDRAW
371534a7b8eSNestor Lopez Casado	depends on HID_LOGITECH
372534a7b8eSNestor Lopez Casado	---help---
373534a7b8eSNestor Lopez Casado	Say Y if you want support for Logitech Unifying receivers and devices.
374534a7b8eSNestor Lopez Casado	Unifying receivers are capable of pairing up to 6 Logitech compliant
3750944e964SKonstantin Khlebnikov	devices to the same receiver. Without this driver it will be handled by
376d82603c6SJorrit Schippers	generic USB_HID driver and all incoming events will be multiplexed
3770944e964SKonstantin Khlebnikov	into a single mouse and a single keyboard device.
378534a7b8eSNestor Lopez Casado
379606bd0a8SJiri Slabyconfig LOGITECH_FF
3800f6f4319SJiri Kosina	bool "Logitech force feedback support"
381606bd0a8SJiri Slaby	depends on HID_LOGITECH
382606bd0a8SJiri Slaby	select INPUT_FF_MEMLESS
383606bd0a8SJiri Slaby	help
384606bd0a8SJiri Slaby	  Say Y here if you have one of these devices:
385606bd0a8SJiri Slaby	  - Logitech WingMan Cordless RumblePad
386606bd0a8SJiri Slaby	  - Logitech WingMan Cordless RumblePad 2
387606bd0a8SJiri Slaby	  - Logitech WingMan Force 3D
388606bd0a8SJiri Slaby	  - Logitech Formula Force EX
389fd30ea8cSJiri Kosina	  - Logitech WingMan Formula Force GP
390606bd0a8SJiri Slaby
391606bd0a8SJiri Slaby	  and if you want to enable force feedback for them.
392606bd0a8SJiri Slaby	  Note: if you say N here, this device will still be supported, but without
393606bd0a8SJiri Slaby	  force feedback.
394606bd0a8SJiri Slaby
395606bd0a8SJiri Slabyconfig LOGIRUMBLEPAD2_FF
396bd04363dSElias Vanderstuyft	bool "Logitech force feedback support (variant 2)"
397606bd0a8SJiri Slaby	depends on HID_LOGITECH
398606bd0a8SJiri Slaby	select INPUT_FF_MEMLESS
399606bd0a8SJiri Slaby	help
400bd04363dSElias Vanderstuyft	  Say Y here if you want to enable force feedback support for:
401bd04363dSElias Vanderstuyft	  - Logitech RumblePad
402bd04363dSElias Vanderstuyft	  - Logitech Rumblepad 2
403bd04363dSElias Vanderstuyft	  - Logitech Formula Vibration Feedback Wheel
404606bd0a8SJiri Slaby
40574f292caSGary Steinconfig LOGIG940_FF
40674f292caSGary Stein	bool "Logitech Flight System G940 force feedback support"
40774f292caSGary Stein	depends on HID_LOGITECH
40874f292caSGary Stein	select INPUT_FF_MEMLESS
40974f292caSGary Stein	help
41074f292caSGary Stein	  Say Y here if you want to enable force feedback support for Logitech
41174f292caSGary Stein	  Flight System G940 devices.
41274f292caSGary Stein
413a7ac90f1SMichal Malýconfig LOGIWHEELS_FF
414a7ac90f1SMichal Malý	bool "Logitech wheels configuration and force feedback support"
41532c88cbcSSimon Wood	depends on HID_LOGITECH
41632c88cbcSSimon Wood	select INPUT_FF_MEMLESS
41770c2cabdSJiri Kosina	default LOGITECH_FF
41832c88cbcSSimon Wood	help
419a7ac90f1SMichal Malý	  Say Y here if you want to enable force feedback and range setting
420a7ac90f1SMichal Malý	  support for following Logitech wheels:
421a7ac90f1SMichal Malý	  - Logitech Driving Force
422a7ac90f1SMichal Malý	  - Logitech Driving Force Pro
423a7ac90f1SMichal Malý	  - Logitech Driving Force GT
424a7ac90f1SMichal Malý	  - Logitech G25
425a7ac90f1SMichal Malý	  - Logitech G27
426a7ac90f1SMichal Malý	  - Logitech MOMO/MOMO 2
427a7ac90f1SMichal Malý	  - Logitech Formula Force EX
42832c88cbcSSimon Wood
429128537ceSMichael Pooleconfig HID_MAGICMOUSE
430cdfee4ffSDavid King	tristate "Apple Magic Mouse/Trackpad multi-touch support"
431f3757ceaSBenjamin Tissoires	depends on HID
432128537ceSMichael Poole	---help---
433cdfee4ffSDavid King	Support for the Apple Magic Mouse/Trackpad multi-touch.
434128537ceSMichael Poole
435128537ceSMichael Poole	Say Y here if you want support for the multi-touch features of the
436cdfee4ffSDavid King	Apple Wireless "Magic" Mouse and the Apple Wireless "Magic" Trackpad.
437128537ceSMichael Poole
43878a849a6SJiri Slabyconfig HID_MICROSOFT
4396a108a14SDavid Rientjes	tristate "Microsoft non-fully HID-compliant devices" if EXPERT
440f3757ceaSBenjamin Tissoires	depends on HID
4416a108a14SDavid Rientjes	default !EXPERT
44278a849a6SJiri Slaby	---help---
443f0bd8e43SJiri Kosina	Support for Microsoft devices that are not fully compliant with HID standard.
44478a849a6SJiri Slaby
4453b8006e5SJiri Slabyconfig HID_MONTEREY
4466a108a14SDavid Rientjes	tristate "Monterey Genius KB29E keyboard" if EXPERT
447f3757ceaSBenjamin Tissoires	depends on HID
4486a108a14SDavid Rientjes	default !EXPERT
4493b8006e5SJiri Slaby	---help---
4503b8006e5SJiri Slaby	Support for Monterey Genius KB29E.
4513b8006e5SJiri Slaby
4525519cab4SBenjamin Tissoiresconfig HID_MULTITOUCH
4535519cab4SBenjamin Tissoires	tristate "HID Multitouch panels"
454d8814272SBenjamin Tissoires	depends on HID
4555519cab4SBenjamin Tissoires	---help---
4565519cab4SBenjamin Tissoires	  Generic support for HID multitouch panels.
4575519cab4SBenjamin Tissoires
4585519cab4SBenjamin Tissoires	  Say Y here if you have one of the following devices:
459f786bba4SBenjamin Tissoires	  - 3M PCT touch screens
460e6aac342SBenjamin Tissoires	  - ActionStar dual touch panels
461b1057124SBenjamin Tissoires	  - Atmel panels
46222408283SBenjamin Tissoires	  - Cando dual touch panels
463942fd422SAustin Zhang	  - Chunghwa panels
46479603dc9SBenjamin Tissoires	  - CVTouch panels
4652d93666eSBenjamin Tissoires	  - Cypress TrueTouch panels
466e02aea91SJan Matějka	  - Elan Microelectronics touch panels
467c04abeefSBenjamin Tissoires	  - Elo TouchSystems IntelliTouch Plus panels
46822408283SBenjamin Tissoires	  - GeneralTouch 'Sensing Win7-TwoFinger' panels
469ee0fbd14SBenjamin Tissoires	  - GoodTouch panels
4702d93666eSBenjamin Tissoires	  - Hanvon dual touch panels
47122408283SBenjamin Tissoires	  - Ilitek dual touch panels
4724dfcced8SBenjamin Tissoires	  - IrTouch Infrared USB panels
473c50bb1a4SJeff Brown	  - LG Display panels (Dell ST2220Tc)
474df167c4aSBenjamin Tissoires	  - Lumio CrystalTouch panels
4754a6ee685SBenjamin Tissoires	  - MosArt dual-touch panels
4762258e863SDenis Kovalev	  - Panasonic multitouch panels
4776ab3a9a6SJohn Sung	  - PenMount dual touch panels
478847672cdSBenjamin Tissoires	  - Perixx Peripad 701 touchpad
479b7ea95ffSAaron Tian	  - PixArt optical touch screen
4802d93666eSBenjamin Tissoires	  - Pixcir dual touch panels
4815e7ea11fSBenjamin Tissoires	  - Quanta panels
48222408283SBenjamin Tissoires	  - eGalax dual-touch panels, including the Joojoo and Wetab tablets
483a6802e00SForest Bond	  - SiS multitouch panels
484043b403aSBenjamin Tissoires	  - Stantum multitouch panels
4855e74e56dSBenjamin Tissoires	  - Touch International Panels
486617b64f9SBenjamin Tissoires	  - Unitec Panels
487bf9d121eSKaiChung Cheng	  - Wistron optical touch panels
488bc8a2a9bSice chien	  - XAT optical touch panels
48911576c61SMasatoshi Hoshikawa	  - Xiroku optical touch panels
490e9a09aedSBenjamin Tissoires	  - Zytronic touch panels
4915519cab4SBenjamin Tissoires
4922d93666eSBenjamin Tissoires	  If unsure, say N.
4932d93666eSBenjamin Tissoires
4942d93666eSBenjamin Tissoires	  To compile this driver as a module, choose M here: the
4952d93666eSBenjamin Tissoires	  module will be called hid-multitouch.
4962d93666eSBenjamin Tissoires
49794011f93SRafi Rubinconfig HID_NTRIG
498a1043044SBorislav Petkov	tristate "N-Trig touch screen"
49994011f93SRafi Rubin	depends on USB_HID
50094011f93SRafi Rubin	---help---
50194011f93SRafi Rubin	Support for N-Trig touch screen.
50294011f93SRafi Rubin
503cd9ec30dSJohnathon Harrisconfig HID_ORTEK
504d586dca0SJiri Kosina	tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad"
505f3757ceaSBenjamin Tissoires	depends on HID
506cd9ec30dSJohnathon Harris	---help---
507d586dca0SJiri Kosina	There are certain devices which have LogicalMaximum wrong in the keyboard
508d586dca0SJiri Kosina	usage page of their report descriptor. The most prevailing ones so far
509d586dca0SJiri Kosina	are manufactured by Ortek, thus the name of the driver. Currently
510d586dca0SJiri Kosina	supported devices by this driver are
511d586dca0SJiri Kosina
512d586dca0SJiri Kosina	   - Ortek PKB-1700
513d586dca0SJiri Kosina	   - Ortek WKB-2000
514d586dca0SJiri Kosina	   - Skycable wireless presenter
515cd9ec30dSJohnathon Harris
5165f022298SJiri Slabyconfig HID_PANTHERLORD
517a1043044SBorislav Petkov	tristate "Pantherlord/GreenAsia game controller"
518d8814272SBenjamin Tissoires	depends on HID
5190f6f4319SJiri Kosina	---help---
5200f6f4319SJiri Kosina	  Say Y here if you have a PantherLord/GreenAsia based game controller
5210f6f4319SJiri Kosina	  or adapter.
5220f6f4319SJiri Kosina
5235f022298SJiri Slabyconfig PANTHERLORD_FF
5245f022298SJiri Slaby	bool "Pantherlord force feedback support"
5255f022298SJiri Slaby	depends on HID_PANTHERLORD
5265f022298SJiri Slaby	select INPUT_FF_MEMLESS
5270f6f4319SJiri Kosina	---help---
5285f022298SJiri Slaby	  Say Y here if you have a PantherLord/GreenAsia based game controller
5295f022298SJiri Slaby	  or adapter and want to enable force feedback support for it.
5305f022298SJiri Slaby
5311e762532SJiri Slabyconfig HID_PETALYNX
532a1043044SBorislav Petkov	tristate "Petalynx Maxter remote control"
533f3757ceaSBenjamin Tissoires	depends on HID
5341e762532SJiri Slaby	---help---
535f0bd8e43SJiri Kosina	Support for Petalynx Maxter remote control.
5361e762532SJiri Slaby
537236db47cSBruno Prémontconfig HID_PICOLCD
538236db47cSBruno Prémont	tristate "PicoLCD (graphic version)"
539b7966a4dSBenjamin Tissoires	depends on HID
540236db47cSBruno Prémont	---help---
541236db47cSBruno Prémont	  This provides support for Minibox PicoLCD devices, currently
542236db47cSBruno Prémont	  only the graphical ones are supported.
543236db47cSBruno Prémont
544236db47cSBruno Prémont	  This includes support for the following device features:
545236db47cSBruno Prémont	  - Keypad
546236db47cSBruno Prémont	  - Switching between Firmware and Flash mode
5479bbf2b98SBruno Prémont	  - EEProm / Flash access     (via debugfs)
5485435f281SBruno Prémont	  Features selectively enabled:
5495435f281SBruno Prémont	  - Framebuffer for monochrome 256x64 display
5505435f281SBruno Prémont	  - Backlight control
5515435f281SBruno Prémont	  - Contrast control
5525435f281SBruno Prémont	  - General purpose outputs
553b8c21cf6SBruno Prémont	  Features that are not (yet) supported:
554236db47cSBruno Prémont	  - IR
555236db47cSBruno Prémont
5565435f281SBruno Prémontconfig HID_PICOLCD_FB
5576a108a14SDavid Rientjes	bool "Framebuffer support" if EXPERT
5586a108a14SDavid Rientjes	default !EXPERT
5595435f281SBruno Prémont	depends on HID_PICOLCD
5605435f281SBruno Prémont	depends on HID_PICOLCD=FB || FB=y
5615435f281SBruno Prémont	select FB_DEFERRED_IO
5625435f281SBruno Prémont	select FB_SYS_FILLRECT
5635435f281SBruno Prémont	select FB_SYS_COPYAREA
5645435f281SBruno Prémont	select FB_SYS_IMAGEBLIT
5655435f281SBruno Prémont	select FB_SYS_FOPS
5665435f281SBruno Prémont	---help---
5675435f281SBruno Prémont	  Provide access to PicoLCD's 256x64 monochrome display via a
5686b2aac42SMasanari Iida	  framebuffer device.
5695435f281SBruno Prémont
5705435f281SBruno Prémontconfig HID_PICOLCD_BACKLIGHT
5716a108a14SDavid Rientjes	bool "Backlight control" if EXPERT
5726a108a14SDavid Rientjes	default !EXPERT
5735435f281SBruno Prémont	depends on HID_PICOLCD
5745435f281SBruno Prémont	depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y
5755435f281SBruno Prémont	---help---
5765435f281SBruno Prémont	  Provide access to PicoLCD's backlight control via backlight
5775435f281SBruno Prémont	  class.
5785435f281SBruno Prémont
5795435f281SBruno Prémontconfig HID_PICOLCD_LCD
5806a108a14SDavid Rientjes	bool "Contrast control" if EXPERT
5816a108a14SDavid Rientjes	default !EXPERT
5825435f281SBruno Prémont	depends on HID_PICOLCD
5835435f281SBruno Prémont	depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y
5845435f281SBruno Prémont	---help---
5855435f281SBruno Prémont	  Provide access to PicoLCD's LCD contrast via lcd class.
5865435f281SBruno Prémont
5875435f281SBruno Prémontconfig HID_PICOLCD_LEDS
5886a108a14SDavid Rientjes	bool "GPO via leds class" if EXPERT
5896a108a14SDavid Rientjes	default !EXPERT
5905435f281SBruno Prémont	depends on HID_PICOLCD
5915435f281SBruno Prémont	depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y
5925435f281SBruno Prémont	---help---
5935435f281SBruno Prémont	  Provide access to PicoLCD's GPO pins via leds class.
5945435f281SBruno Prémont
595fabdbf2fSBruno Prémontconfig HID_PICOLCD_CIR
596fabdbf2fSBruno Prémont	bool "CIR via RC class" if EXPERT
597fabdbf2fSBruno Prémont	default !EXPERT
598fabdbf2fSBruno Prémont	depends on HID_PICOLCD
599fabdbf2fSBruno Prémont	depends on HID_PICOLCD=RC_CORE || RC_CORE=y
600fabdbf2fSBruno Prémont	---help---
601fabdbf2fSBruno Prémont	  Provide access to PicoLCD's CIR interface via remote control (LIRC).
602fabdbf2fSBruno Prémont
603f6a04605STerry Lambertconfig HID_PRIMAX
604dfe9a312SJiri Kosina	tristate "Primax non-fully HID-compliant devices"
605f3757ceaSBenjamin Tissoires	depends on HID
606f6a04605STerry Lambert	---help---
607f6a04605STerry Lambert	Support for Primax devices that are not fully compliant with the
608f6a04605STerry Lambert	HID standard.
609f6a04605STerry Lambert
610206f5f2fSStefan Achatzconfig HID_ROCCAT
611bd393dbdSStefan Achatz	tristate "Roccat device support"
612206f5f2fSStefan Achatz	depends on USB_HID
613206f5f2fSStefan Achatz	---help---
614bd393dbdSStefan Achatz	Support for Roccat devices.
615bd393dbdSStefan Achatz	Say Y here if you have a Roccat mouse or keyboard and want
616bd393dbdSStefan Achatz	support for its special functionalities.
617cb7cf3daSStefan Achatz
6181e93674aSAndreas Hübnerconfig HID_SAITEK
6191e93674aSAndreas Hübner	tristate "Saitek non-fully HID-compliant devices"
620f3757ceaSBenjamin Tissoires	depends on HID
6211e93674aSAndreas Hübner	---help---
6221e93674aSAndreas Hübner	Support for Saitek devices that are not fully compliant with the
6231e93674aSAndreas Hübner	HID standard.
6241e93674aSAndreas Hübner
62537c492c8SHarald Brinkmann	Supported devices:
62637c492c8SHarald Brinkmann	- PS1000 Dual Analog Pad
62737c492c8SHarald Brinkmann	- R.A.T.7 Gaming Mouse
62837c492c8SHarald Brinkmann	- M.M.O.7 Gaming Mouse
6291e93674aSAndreas Hübner
630980a3da6SJiri Slabyconfig HID_SAMSUNG
631a1043044SBorislav Petkov	tristate "Samsung InfraRed remote control or keyboards"
632f3757ceaSBenjamin Tissoires	depends on HID
633980a3da6SJiri Slaby	---help---
634b355850bSDon Prince	Support for Samsung InfraRed remote control or keyboards.
635980a3da6SJiri Slaby
636bd28ce00SJiri Slabyconfig HID_SONY
637e4321c5cSFrank Praznik	tristate "Sony PS2/3/4 accessories"
638bd28ce00SJiri Slaby	depends on USB_HID
63940e32ee6SJiri Kosina	depends on NEW_LEDS
64040e32ee6SJiri Kosina	depends on LEDS_CLASS
641695baaa7SJiri Kosina	select POWER_SUPPLY
642bd28ce00SJiri Slaby	---help---
643f04d5140SColin Leitner	Support for
6445844c1cdSDavid Dillow
645f04d5140SColin Leitner	  * Sony PS3 6-axis controllers
646e4321c5cSFrank Praznik	  * Sony PS4 DualShock 4 controllers
647f04d5140SColin Leitner	  * Buzz controllers
648078328daSJiri Kosina	  * Sony PS3 Blue-ray Disk Remote Control (Bluetooth)
649078328daSJiri Kosina	  * Logitech Harmony adapter for Sony Playstation 3 (Bluetooth)
650bd28ce00SJiri Slaby
651a08c22c0SSven Eckelmannconfig SONY_FF
652e4321c5cSFrank Praznik	bool "Sony PS2/3/4 accessories force feedback support"
653a08c22c0SSven Eckelmann	depends on HID_SONY
654a08c22c0SSven Eckelmann	select INPUT_FF_MEMLESS
655a08c22c0SSven Eckelmann	---help---
656e4321c5cSFrank Praznik	Say Y here if you have a Sony PS2/3/4 accessory and want to enable
657e4321c5cSFrank Praznik	force feedback support for it.
658a08c22c0SSven Eckelmann
65974bc6953SStefan Kriwanekconfig HID_SPEEDLINK
66074bc6953SStefan Kriwanek	tristate "Speedlink VAD Cezanne mouse support"
661d8814272SBenjamin Tissoires	depends on HID
66274bc6953SStefan Kriwanek	---help---
66374bc6953SStefan Kriwanek	Support for Speedlink Vicious and Divine Cezanne mouse.
66474bc6953SStefan Kriwanek
665090800c2SJiri Kosinaconfig HID_STEELSERIES
66675dbb953SSimon Wood	tristate "Steelseries SRW-S1 steering wheel support"
667d8814272SBenjamin Tissoires	depends on HID
66875dbb953SSimon Wood	---help---
66975dbb953SSimon Wood	Support for Steelseries SRW-S1 steering wheel
67075dbb953SSimon Wood
67190231e7eSJiri Slabyconfig HID_SUNPLUS
672a1043044SBorislav Petkov	tristate "Sunplus wireless desktop"
673f3757ceaSBenjamin Tissoires	depends on HID
67490231e7eSJiri Slaby	---help---
675f0bd8e43SJiri Kosina	Support for Sunplus wireless desktop.
67690231e7eSJiri Slaby
6779fb6bf02SBenjamin Tissoiresconfig HID_RMI
6789fb6bf02SBenjamin Tissoires	tristate "Synaptics RMI4 device support"
6799fb6bf02SBenjamin Tissoires	depends on HID
6809fb6bf02SBenjamin Tissoires	---help---
6819fb6bf02SBenjamin Tissoires	Support for Synaptics RMI4 touchpads.
6829fb6bf02SBenjamin Tissoires	Say Y here if you have a Synaptics RMI4 touchpads over i2c-hid or usbhid
6839fb6bf02SBenjamin Tissoires	and want support for its special functionalities.
6849fb6bf02SBenjamin Tissoires
6850f6f4319SJiri Kosinaconfig HID_GREENASIA
686a1043044SBorislav Petkov	tristate "GreenAsia (Product ID 0x12) game controller support"
687d8814272SBenjamin Tissoires	depends on HID
6880f6f4319SJiri Kosina	---help---
6890f6f4319SJiri Kosina	  Say Y here if you have a GreenAsia (Product ID 0x12) based game
6900f6f4319SJiri Kosina	  controller or adapter.
6910f6f4319SJiri Kosina
6920f6f4319SJiri Kosinaconfig GREENASIA_FF
6930f6f4319SJiri Kosina	bool "GreenAsia (Product ID 0x12) force feedback support"
6940f6f4319SJiri Kosina	depends on HID_GREENASIA
69542859e0bSLukasz Lubojanski	select INPUT_FF_MEMLESS
69642859e0bSLukasz Lubojanski	---help---
69742859e0bSLukasz Lubojanski	Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
698692105b8SMatt LaPlante	(like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
69942859e0bSLukasz Lubojanski	and want to enable force feedback support for it.
70042859e0bSLukasz Lubojanski
7016cf851d8SJiri Kosinaconfig HID_HYPERV_MOUSE
7026cf851d8SJiri Kosina	tristate "Microsoft Hyper-V mouse driver"
7036cf851d8SJiri Kosina	depends on HYPERV
7046cf851d8SJiri Kosina	---help---
7056cf851d8SJiri Kosina	Select this option to enable the Hyper-V mouse driver.
7066cf851d8SJiri Kosina
707fac733f0SJussi Kivilinnaconfig HID_SMARTJOYPLUS
70873d5e8f7SJiri Kosina	tristate "SmartJoy PLUS PS2/USB adapter support"
709d8814272SBenjamin Tissoires	depends on HID
710fac733f0SJussi Kivilinna	---help---
7111bcc2067SSean Young	Support for SmartJoy PLUS PS2/USB adapter, Super Dual Box,
7121bcc2067SSean Young	Super Joy Box 3 Pro, Super Dual Box Pro, and Super Joy Box 5 Pro.
7131bcc2067SSean Young
7141bcc2067SSean Young	Note that DDR (Dance Dance Revolution) mode is not supported, nor
7151bcc2067SSean Young	is pressure sensitive buttons on the pro models.
716fac733f0SJussi Kivilinna
717fac733f0SJussi Kivilinnaconfig SMARTJOYPLUS_FF
718fac733f0SJussi Kivilinna	bool "SmartJoy PLUS PS2/USB adapter force feedback support"
719fac733f0SJussi Kivilinna	depends on HID_SMARTJOYPLUS
720fac733f0SJussi Kivilinna	select INPUT_FF_MEMLESS
721fac733f0SJussi Kivilinna	---help---
722fac733f0SJussi Kivilinna	Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to
723fac733f0SJussi Kivilinna	enable force feedback support for it.
724fac733f0SJussi Kivilinna
7252701eaabSJiri Kosinaconfig HID_TIVO
72644ea35c1SJarod Wilson	tristate "TiVo Slide Bluetooth remote control support"
727f3757ceaSBenjamin Tissoires	depends on HID
72844ea35c1SJarod Wilson	---help---
72944ea35c1SJarod Wilson	Say Y if you have a TiVo Slide Bluetooth remote control.
73044ea35c1SJarod Wilson
731f14f526dSLev Babievconfig HID_TOPSEED
73254001081SKees Bakker	tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support"
733f3757ceaSBenjamin Tissoires	depends on HID
734f14f526dSLev Babiev	---help---
73554001081SKees Bakker	Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic
73654001081SKees Bakker	CLLRCMCE remote control.
737f14f526dSLev Babiev
73830ba2fbdSVivien Didelotconfig HID_THINGM
73930ba2fbdSVivien Didelot	tristate "ThingM blink(1) USB RGB LED"
740f3757ceaSBenjamin Tissoires	depends on HID
74130ba2fbdSVivien Didelot	depends on LEDS_CLASS
74230ba2fbdSVivien Didelot	---help---
74330ba2fbdSVivien Didelot	Support for the ThingM blink(1) USB RGB LED. This driver registers a
74430ba2fbdSVivien Didelot	Linux LED class instance, plus additional sysfs attributes to control
74530ba2fbdSVivien Didelot	RGB colors, fade time and playing. The device is exposed through hidraw
74630ba2fbdSVivien Didelot	to access other functions.
74730ba2fbdSVivien Didelot
7480f6f4319SJiri Kosinaconfig HID_THRUSTMASTER
74973d5e8f7SJiri Kosina	tristate "ThrustMaster devices support"
750d8814272SBenjamin Tissoires	depends on HID
7510f6f4319SJiri Kosina	---help---
75210e41a71SJiri Slaby	  Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or
7530f6f4319SJiri Kosina	  a THRUSTMASTER Ferrari GT Rumble Wheel.
7540f6f4319SJiri Kosina
7550f6f4319SJiri Kosinaconfig THRUSTMASTER_FF
7560f6f4319SJiri Kosina	bool "ThrustMaster devices force feedback support"
7570f6f4319SJiri Kosina	depends on HID_THRUSTMASTER
7580f6f4319SJiri Kosina	select INPUT_FF_MEMLESS
7590f6f4319SJiri Kosina	---help---
7607a84b133SRuben Aos Garralda	  Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3,
7617a84b133SRuben Aos Garralda	  a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT
7627a84b133SRuben Aos Garralda	  Rumble Force or Force Feedback Wheel.
76310e41a71SJiri Slaby
764ca2dcd40SBastien Noceraconfig HID_WACOM
7652dbf209dSJiri Kosina	tristate "Wacom Bluetooth devices support"
766f3757ceaSBenjamin Tissoires	depends on HID
7674e52b538SDavid Rientjes	depends on LEDS_CLASS
76859d2334aSPrzemo Firszt	select POWER_SUPPLY
76959d2334aSPrzemo Firszt	---help---
7707e551abbSPrzemo Firszt	Support for Wacom Graphire Bluetooth and Intuos4 WL tablets.
77159d2334aSPrzemo Firszt
772fb51b443SDavid Herrmannconfig HID_WIIMOTE
77392eda7e4SDavid Herrmann	tristate "Nintendo Wii / Wii U peripherals"
774f3757ceaSBenjamin Tissoires	depends on HID
77523a5a4a3SDavid Herrmann	depends on LEDS_CLASS
7766591d758SDavid Herrmann	select POWER_SUPPLY
777ef6f4115SDavid Herrmann	select INPUT_FF_MEMLESS
778fb51b443SDavid Herrmann	---help---
77992eda7e4SDavid Herrmann	Support for Nintendo Wii and Wii U Bluetooth peripherals. Supported
78092eda7e4SDavid Herrmann	devices are the Wii Remote and its extension devices, but also devices
78192eda7e4SDavid Herrmann	based on the Wii Remote like the Wii U Pro Controller or the
78292eda7e4SDavid Herrmann	Wii Balance Board.
783fb51b443SDavid Herrmann
78492eda7e4SDavid Herrmann	Support for all official Nintendo extensions is available, however, 3rd
78592eda7e4SDavid Herrmann	party extensions might not be supported. Please report these devices to:
78692eda7e4SDavid Herrmann	  http://github.com/dvdhrm/xwiimote/issues
78792eda7e4SDavid Herrmann
78892eda7e4SDavid Herrmann	Other Nintendo Wii U peripherals that are IEEE 802.11 based (including
78992eda7e4SDavid Herrmann	the Wii U Gamepad) might be supported in the future. But currently
79092eda7e4SDavid Herrmann	support is limited to Bluetooth based devices.
79192eda7e4SDavid Herrmann
79292eda7e4SDavid Herrmann	If unsure, say N.
79392eda7e4SDavid Herrmann
79492eda7e4SDavid Herrmann	To compile this driver as a module, choose M here: the
79592eda7e4SDavid Herrmann	module will be called hid-wiimote.
796cb99221bSDavid Herrmann
797cb2c9e3fSOlivier Scherlerconfig HID_XINMO
798cb2c9e3fSOlivier Scherler	tristate "Xin-Mo non-fully compliant devices"
799cb2c9e3fSOlivier Scherler	depends on HID
800cb2c9e3fSOlivier Scherler	---help---
801cb2c9e3fSOlivier Scherler	Support for Xin-Mo devices that are not fully compliant with the HID
802cb2c9e3fSOlivier Scherler	standard. Currently only supports the Xin-Mo Dual Arcade. Say Y here
803cb2c9e3fSOlivier Scherler	if you have a Xin-Mo Dual Arcade controller.
804cb2c9e3fSOlivier Scherler
8050f6f4319SJiri Kosinaconfig HID_ZEROPLUS
80673d5e8f7SJiri Kosina	tristate "Zeroplus based game controller support"
807d8814272SBenjamin Tissoires	depends on HID
8080f6f4319SJiri Kosina	---help---
809987fbc1fSJiri Slaby	  Say Y here if you have a Zeroplus based game controller.
810987fbc1fSJiri Slaby
8110f6f4319SJiri Kosinaconfig ZEROPLUS_FF
8120f6f4319SJiri Kosina	bool "Zeroplus based game controller force feedback support"
8130f6f4319SJiri Kosina	depends on HID_ZEROPLUS
8140f6f4319SJiri Kosina	select INPUT_FF_MEMLESS
8150f6f4319SJiri Kosina	---help---
8160f6f4319SJiri Kosina	  Say Y here if you have a Zeroplus based game controller and want
8170f6f4319SJiri Kosina	  to have force feedback support for it.
8180f6f4319SJiri Kosina
819a9885c8fSDon Princeconfig HID_ZYDACRON
82073d5e8f7SJiri Kosina	tristate "Zydacron remote control support"
821f3757ceaSBenjamin Tissoires	depends on HID
822a9885c8fSDon Prince	---help---
823a9885c8fSDon Prince	Support for Zydacron remote control.
824a9885c8fSDon Prince
825401ca24fSsrinivas pandruvadaconfig HID_SENSOR_HUB
826401ca24fSsrinivas pandruvada	tristate "HID Sensors framework support"
8270244ad00SMartin Schwidefsky	depends on HID
828401ca24fSsrinivas pandruvada	select MFD_CORE
829401ca24fSsrinivas pandruvada	default n
830fdc5663cSPaul Bolle	---help---
831401ca24fSsrinivas pandruvada	  Support for HID Sensor framework. This creates a MFD instance
832401ca24fSsrinivas pandruvada	  for a sensor hub and identifies all the sensors connected to it.
833401ca24fSsrinivas pandruvada	  Each sensor is registered as a MFD cell, so that sensor specific
834401ca24fSsrinivas pandruvada	  processing can be done in a separate driver. Each sensor
835401ca24fSsrinivas pandruvada	  drivers can use the service provided by this driver to register
836401ca24fSsrinivas pandruvada	  for events and handle data streams. Each sensor driver can format
837401ca24fSsrinivas pandruvada	  data and present to user mode using input or IIO interface.
838401ca24fSsrinivas pandruvada
8395f22a799SJiri Slabyendmenu
8405f22a799SJiri Slaby
8411f41a6a9SHenrik Rydbergendif # HID
8421f41a6a9SHenrik Rydberg
8431f41a6a9SHenrik Rydbergsource "drivers/hid/usbhid/Kconfig"
8441f41a6a9SHenrik Rydberg
8454a200c3bSBenjamin Tissoiressource "drivers/hid/i2c-hid/Kconfig"
8464a200c3bSBenjamin Tissoires
8471f41a6a9SHenrik Rydbergendmenu
848