xref: /linux/drivers/hid/Kconfig (revision 4ddfe0289bd4622a2a84747ab90c0614da4673e0)
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
9514a21cd4SJiri Slaby	depends on USB_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"
102c0dbcc33SSergei Kolzun	depends on USB_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
1168c19a515SJiri Slaby	depends on (USB_HID || BT_HIDP)
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
125212da74dSJosenivaldo Benito Juniorconfig HID_AUREAL
126212da74dSJosenivaldo Benito Junior	tristate "Aureal"
127212da74dSJosenivaldo Benito Junior	depends on USB_HID
128212da74dSJosenivaldo Benito Junior	---help---
129212da74dSJosenivaldo Benito Junior	Support for Aureal Cy se W-01RN Remote Controller and other Aureal derived remotes.
130212da74dSJosenivaldo Benito Junior
131b5635b12SJiri Slabyconfig HID_BELKIN
1326a108a14SDavid Rientjes	tristate "Belkin Flip KVM and Wireless keyboard" if EXPERT
133b5635b12SJiri Slaby	depends on USB_HID
1346a108a14SDavid Rientjes	default !EXPERT
135b5635b12SJiri Slaby	---help---
136b5635b12SJiri Slaby	Support for Belkin Flip KVM and Wireless keyboard.
137b5635b12SJiri Slaby
1383b239cd7SJiri Slabyconfig HID_CHERRY
1396a108a14SDavid Rientjes	tristate "Cherry Cymotion keyboard" if EXPERT
1403b239cd7SJiri Slaby	depends on USB_HID
1416a108a14SDavid Rientjes	default !EXPERT
1423b239cd7SJiri Slaby	---help---
143f0bd8e43SJiri Kosina	Support for Cherry Cymotion keyboard.
1443b239cd7SJiri Slaby
145fcfacfd3SJiri Slabyconfig HID_CHICONY
1466a108a14SDavid Rientjes	tristate "Chicony Tactical pad" if EXPERT
147fcfacfd3SJiri Slaby	depends on USB_HID
1486a108a14SDavid Rientjes	default !EXPERT
149fcfacfd3SJiri Slaby	---help---
150fcfacfd3SJiri Slaby	Support for Chicony Tactical pad.
151fcfacfd3SJiri Slaby
1523a370ca1SDon Princeconfig HID_PRODIKEYS
15395736de9SJiri Kosina	tristate "Prodikeys PC-MIDI Keyboard support"
1543a370ca1SDon Prince	depends on USB_HID && SND
1553a370ca1SDon Prince	select SND_RAWMIDI
1563a370ca1SDon Prince	---help---
1573a370ca1SDon Prince	Support for Prodikeys PC-MIDI Keyboard device support.
1583a370ca1SDon Prince	Say Y here to enable support for this device.
1593a370ca1SDon Prince	- Prodikeys PC-MIDI keyboard.
1603a370ca1SDon Prince	  The Prodikeys PC-MIDI acts as a USB Audio device, with one MIDI
1613a370ca1SDon Prince	  input and one MIDI output. These MIDI jacks appear as
1623a370ca1SDon Prince	  a sound "card" in the ALSA sound system.
1633a370ca1SDon Prince	  Note: if you say N here, this device will still function as a basic
1643a370ca1SDon Prince	  multimedia keyboard, but will lack support for the musical keyboard
1653a370ca1SDon Prince	  and some additional multimedia keys.
1663a370ca1SDon Prince
1670f221320SJiri Slabyconfig HID_CYPRESS
1686a108a14SDavid Rientjes	tristate "Cypress mouse and barcode readers" if EXPERT
1690f221320SJiri Slaby	depends on USB_HID
1706a108a14SDavid Rientjes	default !EXPERT
1710f221320SJiri Slaby	---help---
172f0bd8e43SJiri Kosina	Support for cypress mouse and barcode readers.
1730f221320SJiri Slaby
1740f6f4319SJiri Kosinaconfig HID_DRAGONRISE
175a1043044SBorislav Petkov	tristate "DragonRise Inc. game controller"
1763f866fbdSRichard Walmsley	depends on USB_HID
1770f6f4319SJiri Kosina	---help---
1780f6f4319SJiri Kosina	Say Y here if you have DragonRise Inc. game controllers.
179b4a65f4eSNikolai Kondrashov	These might be branded as:
180b4a65f4eSNikolai Kondrashov	- Tesun USB-703
181b4a65f4eSNikolai Kondrashov	- Media-tech MT1504 "Rogue"
182b4a65f4eSNikolai Kondrashov	- DVTech JS19 "Gear"
183b4a65f4eSNikolai Kondrashov	- Defender Game Master
1840f6f4319SJiri Kosina
1850f6f4319SJiri Kosinaconfig DRAGONRISE_FF
186a1043044SBorislav Petkov	bool "DragonRise Inc. force feedback"
1870f6f4319SJiri Kosina	depends on HID_DRAGONRISE
1883f866fbdSRichard Walmsley	select INPUT_FF_MEMLESS
1893f866fbdSRichard Walmsley	---help---
1903f866fbdSRichard Walmsley	Say Y here if you want to enable force feedback support for DragonRise Inc.
1913f866fbdSRichard Walmsley	game controllers.
1923f866fbdSRichard Walmsley
19304561c5aSIgnaz Forsterconfig HID_EMS_FF
19404561c5aSIgnaz Forster	tristate "EMS Production Inc. force feedback support"
19504561c5aSIgnaz Forster	depends on USB_HID
19604561c5aSIgnaz Forster	select INPUT_FF_MEMLESS
19704561c5aSIgnaz Forster	---help---
19804561c5aSIgnaz Forster	Say Y here if you want to enable force feedback support for devices by
19904561c5aSIgnaz Forster	EMS Production Ltd.
20004561c5aSIgnaz Forster	Currently the following devices are known to be supported:
20104561c5aSIgnaz Forster	 - Trio Linker Plus II
20204561c5aSIgnaz Forster
20364b386eaSRichard Nauberconfig HID_ELECOM
204a1043044SBorislav Petkov	tristate "ELECOM BM084 bluetooth mouse"
20564b386eaSRichard Nauber	depends on BT_HIDP
20664b386eaSRichard Nauber	---help---
20764b386eaSRichard Nauber	Support for the ELECOM BM084 (bluetooth mouse).
20864b386eaSRichard Nauber
2091f243e30SJiri Slabyconfig HID_EZKEY
2106a108a14SDavid Rientjes	tristate "Ezkey BTC 8193 keyboard" if EXPERT
2111f243e30SJiri Slaby	depends on USB_HID
2126a108a14SDavid Rientjes	default !EXPERT
2131f243e30SJiri Slaby	---help---
214f0bd8e43SJiri Kosina	Support for Ezkey BTC 8193 keyboard.
2151f243e30SJiri Slaby
216d946e65eSAnssi Hannulaconfig HID_HOLTEK
217ff9bf5a2STom Harwood	tristate "Holtek HID devices"
218d946e65eSAnssi Hannula	depends on USB_HID
219d946e65eSAnssi Hannula	---help---
220ff9bf5a2STom Harwood	Support for Holtek based devices:
221ff9bf5a2STom Harwood	  - Holtek On Line Grip based game controller
222ff9bf5a2STom Harwood	  - Trust GXT 18 Gaming Keyboard
223d946e65eSAnssi Hannula
224d946e65eSAnssi Hannulaconfig HOLTEK_FF
225d946e65eSAnssi Hannula	bool "Holtek On Line Grip force feedback support"
226d946e65eSAnssi Hannula	depends on HID_HOLTEK
227d946e65eSAnssi Hannula	select INPUT_FF_MEMLESS
228d946e65eSAnssi Hannula	---help---
229d946e65eSAnssi Hannula	  Say Y here if you have a Holtek On Line Grip based game controller
230d946e65eSAnssi Hannula	  and want to have force feedback support for it.
231d946e65eSAnssi Hannula
232177900e8SJiri Kosinaconfig HID_KEYTOUCH
2333d366e28SStephen Boyd	tristate "Keytouch HID devices"
234177900e8SJiri Kosina	depends on USB_HID
235177900e8SJiri Kosina	---help---
236177900e8SJiri Kosina	Support for Keytouch HID devices not fully compliant with
237177900e8SJiri Kosina	the specification. Currently supported:
238177900e8SJiri Kosina		- Keytouch IEC 60945
239177900e8SJiri Kosina
24079422741SJiri Kosinaconfig HID_KYE
24122ca20b2SNikolai Kondrashov	tristate "KYE/Genius devices"
24279422741SJiri Kosina	depends on USB_HID
24379422741SJiri Kosina	---help---
24422ca20b2SNikolai Kondrashov	Support for KYE/Genius devices not fully compliant with HID standard:
24522ca20b2SNikolai Kondrashov	- Ergo Mouse
24622ca20b2SNikolai Kondrashov	- EasyPen i405X tablet
24722ca20b2SNikolai Kondrashov	- MousePen i608X tablet
24822ca20b2SNikolai Kondrashov	- EasyPen M610X tablet
24979422741SJiri Kosina
250f8a489ccSNikolai Kondrashovconfig HID_UCLOGIC
251f36ee074SJiri Kosina	tristate "UC-Logic"
252f8a489ccSNikolai Kondrashov	depends on USB_HID
253f8a489ccSNikolai Kondrashov	---help---
254f8a489ccSNikolai Kondrashov	Support for UC-Logic tablets.
255f8a489ccSNikolai Kondrashov
25672a46344SNikolai Kondrashovconfig HID_WALTOP
25772a46344SNikolai Kondrashov	tristate "Waltop"
25872a46344SNikolai Kondrashov	depends on USB_HID
25972a46344SNikolai Kondrashov	---help---
26072a46344SNikolai Kondrashov	Support for Waltop tablets.
26172a46344SNikolai Kondrashov
262949f8fefSJiri Slabyconfig HID_GYRATION
263a1043044SBorislav Petkov	tristate "Gyration remote control"
264949f8fefSJiri Slaby	depends on USB_HID
265949f8fefSJiri Slaby	---help---
266f0bd8e43SJiri Kosina	Support for Gyration remote control.
267949f8fefSJiri Slaby
268*4ddfe028SBastien Noceraconfig HID_ICADE
269*4ddfe028SBastien Nocera	tristate "ION iCade arcade controller"
270*4ddfe028SBastien Nocera	depends on (BT_HIDP)
271*4ddfe028SBastien Nocera	---help---
272*4ddfe028SBastien Nocera	Support for the ION iCade arcade controller to work as a joystick.
273*4ddfe028SBastien Nocera
274*4ddfe028SBastien Nocera	To compile this driver as a module, choose M here: the
275*4ddfe028SBastien Nocera	module will be called hid-icade.
276*4ddfe028SBastien Nocera
277711a680eSBruno Premontconfig HID_TWINHAN
278a1043044SBorislav Petkov	tristate "Twinhan IR remote control"
279711a680eSBruno Premont	depends on USB_HID
280711a680eSBruno Premont	---help---
281711a680eSBruno Premont	Support for Twinhan IR remote control.
282711a680eSBruno Premont
283fdf93aa3SJiri Kosinaconfig HID_KENSINGTON
2846a108a14SDavid Rientjes	tristate "Kensington Slimblade Trackball" if EXPERT
285fdf93aa3SJiri Kosina	depends on USB_HID
2866a108a14SDavid Rientjes	default !EXPERT
287fdf93aa3SJiri Kosina	---help---
288fdf93aa3SJiri Kosina	Support for Kensington Slimblade Trackball.
289fdf93aa3SJiri Kosina
29075b07022SChris Schlundconfig HID_LCPOWER
29175b07022SChris Schlund	tristate "LC-Power"
29275b07022SChris Schlund	depends on USB_HID
29375b07022SChris Schlund	---help---
29475b07022SChris Schlund	Support for LC-Power RC1000MCE RF remote control.
29575b07022SChris Schlund
296c1dcad2dSBernhard Seiboldconfig HID_LENOVO_TPKBD
297c1dcad2dSBernhard Seibold	tristate "Lenovo ThinkPad USB Keyboard with TrackPoint"
298c1dcad2dSBernhard Seibold	depends on USB_HID
29925976a79SBryan Wu	select NEW_LEDS
300c1dcad2dSBernhard Seibold	select LEDS_CLASS
301c1dcad2dSBernhard Seibold	---help---
302c1dcad2dSBernhard Seibold	Support for the Lenovo ThinkPad USB Keyboard with TrackPoint.
303c1dcad2dSBernhard Seibold
304c1dcad2dSBernhard Seibold	Say Y here if you have a Lenovo ThinkPad USB Keyboard with TrackPoint
305c1dcad2dSBernhard Seibold	and would like to use device-specific features like changing the
306c1dcad2dSBernhard Seibold	sensitivity of the trackpoint, using the microphone mute button or
307c1dcad2dSBernhard Seibold	controlling the mute and microphone mute LEDs.
308c1dcad2dSBernhard Seibold
3095f22a799SJiri Slabyconfig HID_LOGITECH
3106a108a14SDavid Rientjes	tristate "Logitech devices" if EXPERT
3115f22a799SJiri Slaby	depends on USB_HID
3126a108a14SDavid Rientjes	default !EXPERT
3135f22a799SJiri Slaby	---help---
314f0bd8e43SJiri Kosina	Support for Logitech devices that are not fully compliant with HID standard.
3155f22a799SJiri Slaby
316534a7b8eSNestor Lopez Casadoconfig HID_LOGITECH_DJ
317534a7b8eSNestor Lopez Casado	tristate "Logitech Unifying receivers full support"
318534a7b8eSNestor Lopez Casado	depends on HID_LOGITECH
319534a7b8eSNestor Lopez Casado	---help---
320534a7b8eSNestor Lopez Casado	Say Y if you want support for Logitech Unifying receivers and devices.
321534a7b8eSNestor Lopez Casado	Unifying receivers are capable of pairing up to 6 Logitech compliant
3220944e964SKonstantin Khlebnikov	devices to the same receiver. Without this driver it will be handled by
3230944e964SKonstantin Khlebnikov	generic USB_HID driver and all incomming events will be multiplexed
3240944e964SKonstantin Khlebnikov	into a single mouse and a single keyboard device.
325534a7b8eSNestor Lopez Casado
326606bd0a8SJiri Slabyconfig LOGITECH_FF
3270f6f4319SJiri Kosina	bool "Logitech force feedback support"
328606bd0a8SJiri Slaby	depends on HID_LOGITECH
329606bd0a8SJiri Slaby	select INPUT_FF_MEMLESS
330606bd0a8SJiri Slaby	help
331606bd0a8SJiri Slaby	  Say Y here if you have one of these devices:
332606bd0a8SJiri Slaby	  - Logitech WingMan Cordless RumblePad
333606bd0a8SJiri Slaby	  - Logitech WingMan Cordless RumblePad 2
334606bd0a8SJiri Slaby	  - Logitech WingMan Force 3D
335606bd0a8SJiri Slaby	  - Logitech Formula Force EX
336fd30ea8cSJiri Kosina	  - Logitech WingMan Formula Force GP
337606bd0a8SJiri Slaby	  - Logitech MOMO Force wheel
338606bd0a8SJiri Slaby
339606bd0a8SJiri Slaby	  and if you want to enable force feedback for them.
340606bd0a8SJiri Slaby	  Note: if you say N here, this device will still be supported, but without
341606bd0a8SJiri Slaby	  force feedback.
342606bd0a8SJiri Slaby
343606bd0a8SJiri Slabyconfig LOGIRUMBLEPAD2_FF
3442c6118e4SHendrik Iben	bool "Logitech RumblePad/Rumblepad 2 force feedback support"
345606bd0a8SJiri Slaby	depends on HID_LOGITECH
346606bd0a8SJiri Slaby	select INPUT_FF_MEMLESS
347606bd0a8SJiri Slaby	help
348606bd0a8SJiri Slaby	  Say Y here if you want to enable force feedback support for Logitech
3492c6118e4SHendrik Iben	  RumblePad and Rumblepad 2 devices.
350606bd0a8SJiri Slaby
35174f292caSGary Steinconfig LOGIG940_FF
35274f292caSGary Stein	bool "Logitech Flight System G940 force feedback support"
35374f292caSGary Stein	depends on HID_LOGITECH
35474f292caSGary Stein	select INPUT_FF_MEMLESS
35574f292caSGary Stein	help
35674f292caSGary Stein	  Say Y here if you want to enable force feedback support for Logitech
35774f292caSGary Stein	  Flight System G940 devices.
35874f292caSGary Stein
359a7ac90f1SMichal Malýconfig LOGIWHEELS_FF
360a7ac90f1SMichal Malý	bool "Logitech wheels configuration and force feedback support"
36132c88cbcSSimon Wood	depends on HID_LOGITECH
36232c88cbcSSimon Wood	select INPUT_FF_MEMLESS
36370c2cabdSJiri Kosina	default LOGITECH_FF
36432c88cbcSSimon Wood	help
365a7ac90f1SMichal Malý	  Say Y here if you want to enable force feedback and range setting
366a7ac90f1SMichal Malý	  support for following Logitech wheels:
367a7ac90f1SMichal Malý	  - Logitech Driving Force
368a7ac90f1SMichal Malý	  - Logitech Driving Force Pro
369a7ac90f1SMichal Malý	  - Logitech Driving Force GT
370a7ac90f1SMichal Malý	  - Logitech G25
371a7ac90f1SMichal Malý	  - Logitech G27
372a7ac90f1SMichal Malý	  - Logitech MOMO/MOMO 2
373a7ac90f1SMichal Malý	  - Logitech Formula Force EX
37432c88cbcSSimon Wood
375128537ceSMichael Pooleconfig HID_MAGICMOUSE
3769f523147SJiri Kosina	tristate "Apple MagicMouse multi-touch support"
377128537ceSMichael Poole	depends on BT_HIDP
378128537ceSMichael Poole	---help---
3799f523147SJiri Kosina	Support for the Apple Magic Mouse multi-touch.
380128537ceSMichael Poole
381128537ceSMichael Poole	Say Y here if you want support for the multi-touch features of the
382128537ceSMichael Poole	Apple Wireless "Magic" Mouse.
383128537ceSMichael Poole
38478a849a6SJiri Slabyconfig HID_MICROSOFT
3856a108a14SDavid Rientjes	tristate "Microsoft non-fully HID-compliant devices" if EXPERT
38678a849a6SJiri Slaby	depends on USB_HID
3876a108a14SDavid Rientjes	default !EXPERT
38878a849a6SJiri Slaby	---help---
389f0bd8e43SJiri Kosina	Support for Microsoft devices that are not fully compliant with HID standard.
39078a849a6SJiri Slaby
3913b8006e5SJiri Slabyconfig HID_MONTEREY
3926a108a14SDavid Rientjes	tristate "Monterey Genius KB29E keyboard" if EXPERT
3933b8006e5SJiri Slaby	depends on USB_HID
3946a108a14SDavid Rientjes	default !EXPERT
3953b8006e5SJiri Slaby	---help---
3963b8006e5SJiri Slaby	Support for Monterey Genius KB29E.
3973b8006e5SJiri Slaby
3985519cab4SBenjamin Tissoiresconfig HID_MULTITOUCH
3995519cab4SBenjamin Tissoires	tristate "HID Multitouch panels"
4005519cab4SBenjamin Tissoires	depends on USB_HID
4015519cab4SBenjamin Tissoires	---help---
4025519cab4SBenjamin Tissoires	  Generic support for HID multitouch panels.
4035519cab4SBenjamin Tissoires
4045519cab4SBenjamin Tissoires	  Say Y here if you have one of the following devices:
405f786bba4SBenjamin Tissoires	  - 3M PCT touch screens
406e6aac342SBenjamin Tissoires	  - ActionStar dual touch panels
407b1057124SBenjamin Tissoires	  - Atmel panels
40822408283SBenjamin Tissoires	  - Cando dual touch panels
409942fd422SAustin Zhang	  - Chunghwa panels
41079603dc9SBenjamin Tissoires	  - CVTouch panels
4112d93666eSBenjamin Tissoires	  - Cypress TrueTouch panels
412c04abeefSBenjamin Tissoires	  - Elo TouchSystems IntelliTouch Plus panels
41322408283SBenjamin Tissoires	  - GeneralTouch 'Sensing Win7-TwoFinger' panels
414ee0fbd14SBenjamin Tissoires	  - GoodTouch panels
4152d93666eSBenjamin Tissoires	  - Hanvon dual touch panels
41622408283SBenjamin Tissoires	  - Ilitek dual touch panels
4174dfcced8SBenjamin Tissoires	  - IrTouch Infrared USB panels
418c50bb1a4SJeff Brown	  - LG Display panels (Dell ST2220Tc)
419df167c4aSBenjamin Tissoires	  - Lumio CrystalTouch panels
4204a6ee685SBenjamin Tissoires	  - MosArt dual-touch panels
4212258e863SDenis Kovalev	  - Panasonic multitouch panels
4226ab3a9a6SJohn Sung	  - PenMount dual touch panels
423847672cdSBenjamin Tissoires	  - Perixx Peripad 701 touchpad
424b7ea95ffSAaron Tian	  - PixArt optical touch screen
4252d93666eSBenjamin Tissoires	  - Pixcir dual touch panels
4265e7ea11fSBenjamin Tissoires	  - Quanta panels
42722408283SBenjamin Tissoires	  - eGalax dual-touch panels, including the Joojoo and Wetab tablets
428043b403aSBenjamin Tissoires	  - Stantum multitouch panels
4295e74e56dSBenjamin Tissoires	  - Touch International Panels
430617b64f9SBenjamin Tissoires	  - Unitec Panels
431bc8a2a9bSice chien	  - XAT optical touch panels
43211576c61SMasatoshi Hoshikawa	  - Xiroku optical touch panels
433e9a09aedSBenjamin Tissoires	  - Zytronic touch panels
4345519cab4SBenjamin Tissoires
4352d93666eSBenjamin Tissoires	  If unsure, say N.
4362d93666eSBenjamin Tissoires
4372d93666eSBenjamin Tissoires	  To compile this driver as a module, choose M here: the
4382d93666eSBenjamin Tissoires	  module will be called hid-multitouch.
4392d93666eSBenjamin Tissoires
44094011f93SRafi Rubinconfig HID_NTRIG
441a1043044SBorislav Petkov	tristate "N-Trig touch screen"
44294011f93SRafi Rubin	depends on USB_HID
44394011f93SRafi Rubin	---help---
44494011f93SRafi Rubin	Support for N-Trig touch screen.
44594011f93SRafi Rubin
446cd9ec30dSJohnathon Harrisconfig HID_ORTEK
447d586dca0SJiri Kosina	tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad"
448cd9ec30dSJohnathon Harris	depends on USB_HID
449cd9ec30dSJohnathon Harris	---help---
450d586dca0SJiri Kosina	There are certain devices which have LogicalMaximum wrong in the keyboard
451d586dca0SJiri Kosina	usage page of their report descriptor. The most prevailing ones so far
452d586dca0SJiri Kosina	are manufactured by Ortek, thus the name of the driver. Currently
453d586dca0SJiri Kosina	supported devices by this driver are
454d586dca0SJiri Kosina
455d586dca0SJiri Kosina	   - Ortek PKB-1700
456d586dca0SJiri Kosina	   - Ortek WKB-2000
457d586dca0SJiri Kosina	   - Skycable wireless presenter
458cd9ec30dSJohnathon Harris
4595f022298SJiri Slabyconfig HID_PANTHERLORD
460a1043044SBorislav Petkov	tristate "Pantherlord/GreenAsia game controller"
4610f6f4319SJiri Kosina	depends on USB_HID
4620f6f4319SJiri Kosina	---help---
4630f6f4319SJiri Kosina	  Say Y here if you have a PantherLord/GreenAsia based game controller
4640f6f4319SJiri Kosina	  or adapter.
4650f6f4319SJiri Kosina
4665f022298SJiri Slabyconfig PANTHERLORD_FF
4675f022298SJiri Slaby	bool "Pantherlord force feedback support"
4685f022298SJiri Slaby	depends on HID_PANTHERLORD
4695f022298SJiri Slaby	select INPUT_FF_MEMLESS
4700f6f4319SJiri Kosina	---help---
4715f022298SJiri Slaby	  Say Y here if you have a PantherLord/GreenAsia based game controller
4725f022298SJiri Slaby	  or adapter and want to enable force feedback support for it.
4735f022298SJiri Slaby
4741e762532SJiri Slabyconfig HID_PETALYNX
475a1043044SBorislav Petkov	tristate "Petalynx Maxter remote control"
4761e762532SJiri Slaby	depends on USB_HID
4771e762532SJiri Slaby	---help---
478f0bd8e43SJiri Kosina	Support for Petalynx Maxter remote control.
4791e762532SJiri Slaby
480236db47cSBruno Prémontconfig HID_PICOLCD
481236db47cSBruno Prémont	tristate "PicoLCD (graphic version)"
482236db47cSBruno Prémont	depends on USB_HID
483236db47cSBruno Prémont	---help---
484236db47cSBruno Prémont	  This provides support for Minibox PicoLCD devices, currently
485236db47cSBruno Prémont	  only the graphical ones are supported.
486236db47cSBruno Prémont
487236db47cSBruno Prémont	  This includes support for the following device features:
488236db47cSBruno Prémont	  - Keypad
489236db47cSBruno Prémont	  - Switching between Firmware and Flash mode
4909bbf2b98SBruno Prémont	  - EEProm / Flash access     (via debugfs)
4915435f281SBruno Prémont	  Features selectively enabled:
4925435f281SBruno Prémont	  - Framebuffer for monochrome 256x64 display
4935435f281SBruno Prémont	  - Backlight control
4945435f281SBruno Prémont	  - Contrast control
4955435f281SBruno Prémont	  - General purpose outputs
496b8c21cf6SBruno Prémont	  Features that are not (yet) supported:
497236db47cSBruno Prémont	  - IR
498236db47cSBruno Prémont
4995435f281SBruno Prémontconfig HID_PICOLCD_FB
5006a108a14SDavid Rientjes	bool "Framebuffer support" if EXPERT
5016a108a14SDavid Rientjes	default !EXPERT
5025435f281SBruno Prémont	depends on HID_PICOLCD
5035435f281SBruno Prémont	depends on HID_PICOLCD=FB || FB=y
5045435f281SBruno Prémont	select FB_DEFERRED_IO
5055435f281SBruno Prémont	select FB_SYS_FILLRECT
5065435f281SBruno Prémont	select FB_SYS_COPYAREA
5075435f281SBruno Prémont	select FB_SYS_IMAGEBLIT
5085435f281SBruno Prémont	select FB_SYS_FOPS
5095435f281SBruno Prémont	---help---
5105435f281SBruno Prémont	  Provide access to PicoLCD's 256x64 monochrome display via a
5116b2aac42SMasanari Iida	  framebuffer device.
5125435f281SBruno Prémont
5135435f281SBruno Prémontconfig HID_PICOLCD_BACKLIGHT
5146a108a14SDavid Rientjes	bool "Backlight control" if EXPERT
5156a108a14SDavid Rientjes	default !EXPERT
5165435f281SBruno Prémont	depends on HID_PICOLCD
5175435f281SBruno Prémont	depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y
5185435f281SBruno Prémont	---help---
5195435f281SBruno Prémont	  Provide access to PicoLCD's backlight control via backlight
5205435f281SBruno Prémont	  class.
5215435f281SBruno Prémont
5225435f281SBruno Prémontconfig HID_PICOLCD_LCD
5236a108a14SDavid Rientjes	bool "Contrast control" if EXPERT
5246a108a14SDavid Rientjes	default !EXPERT
5255435f281SBruno Prémont	depends on HID_PICOLCD
5265435f281SBruno Prémont	depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y
5275435f281SBruno Prémont	---help---
5285435f281SBruno Prémont	  Provide access to PicoLCD's LCD contrast via lcd class.
5295435f281SBruno Prémont
5305435f281SBruno Prémontconfig HID_PICOLCD_LEDS
5316a108a14SDavid Rientjes	bool "GPO via leds class" if EXPERT
5326a108a14SDavid Rientjes	default !EXPERT
5335435f281SBruno Prémont	depends on HID_PICOLCD
5345435f281SBruno Prémont	depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y
5355435f281SBruno Prémont	---help---
5365435f281SBruno Prémont	  Provide access to PicoLCD's GPO pins via leds class.
5375435f281SBruno Prémont
538fabdbf2fSBruno Prémontconfig HID_PICOLCD_CIR
539fabdbf2fSBruno Prémont	bool "CIR via RC class" if EXPERT
540fabdbf2fSBruno Prémont	default !EXPERT
541fabdbf2fSBruno Prémont	depends on HID_PICOLCD
542fabdbf2fSBruno Prémont	depends on HID_PICOLCD=RC_CORE || RC_CORE=y
543fabdbf2fSBruno Prémont	---help---
544fabdbf2fSBruno Prémont	  Provide access to PicoLCD's CIR interface via remote control (LIRC).
545fabdbf2fSBruno Prémont
546f6a04605STerry Lambertconfig HID_PRIMAX
547dfe9a312SJiri Kosina	tristate "Primax non-fully HID-compliant devices"
548f6a04605STerry Lambert	depends on USB_HID
549f6a04605STerry Lambert	---help---
550f6a04605STerry Lambert	Support for Primax devices that are not fully compliant with the
551f6a04605STerry Lambert	HID standard.
552f6a04605STerry Lambert
5535844c1cdSDavid Dillowconfig HID_PS3REMOTE
5545844c1cdSDavid Dillow	tristate "Sony PS3 BD Remote Control"
5555844c1cdSDavid Dillow	depends on BT_HIDP
5565844c1cdSDavid Dillow	---help---
5575844c1cdSDavid Dillow	Support for the Sony PS3 Blue-ray Disk Remote Control and Logitech
5585844c1cdSDavid Dillow	Harmony Adapter for PS3, which connect over Bluetooth.
5595844c1cdSDavid Dillow
5605844c1cdSDavid Dillow	Support for the 6-axis controllers is provided by HID_SONY.
5615844c1cdSDavid Dillow
562206f5f2fSStefan Achatzconfig HID_ROCCAT
563bd393dbdSStefan Achatz	tristate "Roccat device support"
564206f5f2fSStefan Achatz	depends on USB_HID
565206f5f2fSStefan Achatz	---help---
566bd393dbdSStefan Achatz	Support for Roccat devices.
567bd393dbdSStefan Achatz	Say Y here if you have a Roccat mouse or keyboard and want
568bd393dbdSStefan Achatz	support for its special functionalities.
569cb7cf3daSStefan Achatz
5701e93674aSAndreas Hübnerconfig HID_SAITEK
5711e93674aSAndreas Hübner	tristate "Saitek non-fully HID-compliant devices"
5721e93674aSAndreas Hübner	depends on USB_HID
5731e93674aSAndreas Hübner	---help---
5741e93674aSAndreas Hübner	Support for Saitek devices that are not fully compliant with the
5751e93674aSAndreas Hübner	HID standard.
5761e93674aSAndreas Hübner
5771e93674aSAndreas Hübner	Currently only supports the PS1000 controller.
5781e93674aSAndreas Hübner
579980a3da6SJiri Slabyconfig HID_SAMSUNG
580a1043044SBorislav Petkov	tristate "Samsung InfraRed remote control or keyboards"
581980a3da6SJiri Slaby	depends on USB_HID
582980a3da6SJiri Slaby	---help---
583b355850bSDon Prince	Support for Samsung InfraRed remote control or keyboards.
584980a3da6SJiri Slaby
585bd28ce00SJiri Slabyconfig HID_SONY
586a1043044SBorislav Petkov	tristate "Sony PS3 controller"
587bd28ce00SJiri Slaby	depends on USB_HID
588bd28ce00SJiri Slaby	---help---
5895844c1cdSDavid Dillow	Support for Sony PS3 6-axis controllers.
5905844c1cdSDavid Dillow
5915844c1cdSDavid Dillow	Support for the Sony PS3 BD Remote is provided by HID_PS3REMOTE.
592bd28ce00SJiri Slaby
59374bc6953SStefan Kriwanekconfig HID_SPEEDLINK
59474bc6953SStefan Kriwanek	tristate "Speedlink VAD Cezanne mouse support"
59574bc6953SStefan Kriwanek	depends on USB_HID
59674bc6953SStefan Kriwanek	---help---
59774bc6953SStefan Kriwanek	Support for Speedlink Vicious and Divine Cezanne mouse.
59874bc6953SStefan Kriwanek
59990231e7eSJiri Slabyconfig HID_SUNPLUS
600a1043044SBorislav Petkov	tristate "Sunplus wireless desktop"
60190231e7eSJiri Slaby	depends on USB_HID
60290231e7eSJiri Slaby	---help---
603f0bd8e43SJiri Kosina	Support for Sunplus wireless desktop.
60490231e7eSJiri Slaby
6050f6f4319SJiri Kosinaconfig HID_GREENASIA
606a1043044SBorislav Petkov	tristate "GreenAsia (Product ID 0x12) game controller support"
60742859e0bSLukasz Lubojanski	depends on USB_HID
6080f6f4319SJiri Kosina	---help---
6090f6f4319SJiri Kosina	  Say Y here if you have a GreenAsia (Product ID 0x12) based game
6100f6f4319SJiri Kosina	  controller or adapter.
6110f6f4319SJiri Kosina
6120f6f4319SJiri Kosinaconfig GREENASIA_FF
6130f6f4319SJiri Kosina	bool "GreenAsia (Product ID 0x12) force feedback support"
6140f6f4319SJiri Kosina	depends on HID_GREENASIA
61542859e0bSLukasz Lubojanski	select INPUT_FF_MEMLESS
61642859e0bSLukasz Lubojanski	---help---
61742859e0bSLukasz Lubojanski	Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
618692105b8SMatt LaPlante	(like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
61942859e0bSLukasz Lubojanski	and want to enable force feedback support for it.
62042859e0bSLukasz Lubojanski
6216cf851d8SJiri Kosinaconfig HID_HYPERV_MOUSE
6226cf851d8SJiri Kosina	tristate "Microsoft Hyper-V mouse driver"
6236cf851d8SJiri Kosina	depends on HYPERV
6246cf851d8SJiri Kosina	---help---
6256cf851d8SJiri Kosina	Select this option to enable the Hyper-V mouse driver.
6266cf851d8SJiri Kosina
627fac733f0SJussi Kivilinnaconfig HID_SMARTJOYPLUS
62873d5e8f7SJiri Kosina	tristate "SmartJoy PLUS PS2/USB adapter support"
629fac733f0SJussi Kivilinna	depends on USB_HID
630fac733f0SJussi Kivilinna	---help---
6311bcc2067SSean Young	Support for SmartJoy PLUS PS2/USB adapter, Super Dual Box,
6321bcc2067SSean Young	Super Joy Box 3 Pro, Super Dual Box Pro, and Super Joy Box 5 Pro.
6331bcc2067SSean Young
6341bcc2067SSean Young	Note that DDR (Dance Dance Revolution) mode is not supported, nor
6351bcc2067SSean Young	is pressure sensitive buttons on the pro models.
636fac733f0SJussi Kivilinna
637fac733f0SJussi Kivilinnaconfig SMARTJOYPLUS_FF
638fac733f0SJussi Kivilinna	bool "SmartJoy PLUS PS2/USB adapter force feedback support"
639fac733f0SJussi Kivilinna	depends on HID_SMARTJOYPLUS
640fac733f0SJussi Kivilinna	select INPUT_FF_MEMLESS
641fac733f0SJussi Kivilinna	---help---
642fac733f0SJussi Kivilinna	Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to
643fac733f0SJussi Kivilinna	enable force feedback support for it.
644fac733f0SJussi Kivilinna
6452701eaabSJiri Kosinaconfig HID_TIVO
64644ea35c1SJarod Wilson	tristate "TiVo Slide Bluetooth remote control support"
647740363fbSJiri Kosina	depends on (USB_HID || BT_HIDP)
64844ea35c1SJarod Wilson	---help---
64944ea35c1SJarod Wilson	Say Y if you have a TiVo Slide Bluetooth remote control.
65044ea35c1SJarod Wilson
651f14f526dSLev Babievconfig HID_TOPSEED
65254001081SKees Bakker	tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support"
653f14f526dSLev Babiev	depends on USB_HID
654f14f526dSLev Babiev	---help---
65554001081SKees Bakker	Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic
65654001081SKees Bakker	CLLRCMCE remote control.
657f14f526dSLev Babiev
6580f6f4319SJiri Kosinaconfig HID_THRUSTMASTER
65973d5e8f7SJiri Kosina	tristate "ThrustMaster devices support"
66010e41a71SJiri Slaby	depends on USB_HID
6610f6f4319SJiri Kosina	---help---
66210e41a71SJiri Slaby	  Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or
6630f6f4319SJiri Kosina	  a THRUSTMASTER Ferrari GT Rumble Wheel.
6640f6f4319SJiri Kosina
6650f6f4319SJiri Kosinaconfig THRUSTMASTER_FF
6660f6f4319SJiri Kosina	bool "ThrustMaster devices force feedback support"
6670f6f4319SJiri Kosina	depends on HID_THRUSTMASTER
6680f6f4319SJiri Kosina	select INPUT_FF_MEMLESS
6690f6f4319SJiri Kosina	---help---
6707a84b133SRuben Aos Garralda	  Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3,
6717a84b133SRuben Aos Garralda	  a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT
6727a84b133SRuben Aos Garralda	  Rumble Force or Force Feedback Wheel.
67310e41a71SJiri Slaby
674ca2dcd40SBastien Noceraconfig HID_WACOM
6752dbf209dSJiri Kosina	tristate "Wacom Bluetooth devices support"
676ca2dcd40SBastien Nocera	depends on BT_HIDP
6774e52b538SDavid Rientjes	depends on LEDS_CLASS
67859d2334aSPrzemo Firszt	select POWER_SUPPLY
67959d2334aSPrzemo Firszt	---help---
6807e551abbSPrzemo Firszt	Support for Wacom Graphire Bluetooth and Intuos4 WL tablets.
68159d2334aSPrzemo Firszt
682fb51b443SDavid Herrmannconfig HID_WIIMOTE
683fb51b443SDavid Herrmann	tristate "Nintendo Wii Remote support"
684fb51b443SDavid Herrmann	depends on BT_HIDP
68523a5a4a3SDavid Herrmann	depends on LEDS_CLASS
6866591d758SDavid Herrmann	select POWER_SUPPLY
687ef6f4115SDavid Herrmann	select INPUT_FF_MEMLESS
688fb51b443SDavid Herrmann	---help---
689fb51b443SDavid Herrmann	Support for the Nintendo Wii Remote bluetooth device.
690fb51b443SDavid Herrmann
691cb99221bSDavid Herrmannconfig HID_WIIMOTE_EXT
692cb99221bSDavid Herrmann	bool "Nintendo Wii Remote Extension support"
693cb99221bSDavid Herrmann	depends on HID_WIIMOTE
694cb99221bSDavid Herrmann	default HID_WIIMOTE
695cb99221bSDavid Herrmann	---help---
696cb99221bSDavid Herrmann	Support for extension controllers of the Nintendo Wii Remote. Say yes
697cb99221bSDavid Herrmann	here if you want to use the Nintendo Motion+, Nunchuck or Classic
698cb99221bSDavid Herrmann	extension controllers with your Wii Remote.
699cb99221bSDavid Herrmann
7000f6f4319SJiri Kosinaconfig HID_ZEROPLUS
70173d5e8f7SJiri Kosina	tristate "Zeroplus based game controller support"
702987fbc1fSJiri Slaby	depends on USB_HID
7030f6f4319SJiri Kosina	---help---
704987fbc1fSJiri Slaby	  Say Y here if you have a Zeroplus based game controller.
705987fbc1fSJiri Slaby
7060f6f4319SJiri Kosinaconfig ZEROPLUS_FF
7070f6f4319SJiri Kosina	bool "Zeroplus based game controller force feedback support"
7080f6f4319SJiri Kosina	depends on HID_ZEROPLUS
7090f6f4319SJiri Kosina	select INPUT_FF_MEMLESS
7100f6f4319SJiri Kosina	---help---
7110f6f4319SJiri Kosina	  Say Y here if you have a Zeroplus based game controller and want
7120f6f4319SJiri Kosina	  to have force feedback support for it.
7130f6f4319SJiri Kosina
714a9885c8fSDon Princeconfig HID_ZYDACRON
71573d5e8f7SJiri Kosina	tristate "Zydacron remote control support"
716a9885c8fSDon Prince	depends on USB_HID
717a9885c8fSDon Prince	---help---
718a9885c8fSDon Prince	Support for Zydacron remote control.
719a9885c8fSDon Prince
720401ca24fSsrinivas pandruvadaconfig HID_SENSOR_HUB
721401ca24fSsrinivas pandruvada	tristate "HID Sensors framework support"
722401ca24fSsrinivas pandruvada	depends on USB_HID
723401ca24fSsrinivas pandruvada	select MFD_CORE
724401ca24fSsrinivas pandruvada	default n
725401ca24fSsrinivas pandruvada	-- help---
726401ca24fSsrinivas pandruvada	  Support for HID Sensor framework. This creates a MFD instance
727401ca24fSsrinivas pandruvada	  for a sensor hub and identifies all the sensors connected to it.
728401ca24fSsrinivas pandruvada	  Each sensor is registered as a MFD cell, so that sensor specific
729401ca24fSsrinivas pandruvada	  processing can be done in a separate driver. Each sensor
730401ca24fSsrinivas pandruvada	  drivers can use the service provided by this driver to register
731401ca24fSsrinivas pandruvada	  for events and handle data streams. Each sensor driver can format
732401ca24fSsrinivas pandruvada	  data and present to user mode using input or IIO interface.
733401ca24fSsrinivas pandruvada
7345f22a799SJiri Slabyendmenu
7355f22a799SJiri Slaby
7361f41a6a9SHenrik Rydbergendif # HID
7371f41a6a9SHenrik Rydberg
7381f41a6a9SHenrik Rydbergsource "drivers/hid/usbhid/Kconfig"
7391f41a6a9SHenrik Rydberg
7401f41a6a9SHenrik Rydbergendmenu
741