blob: 9f5435b55949b3786b3be4fc76fd5444f7428658 [file] [log] [blame]
Thomas Gleixnerec8f24b2019-05-19 13:07:45 +01001# SPDX-License-Identifier: GPL-2.0-only
Jiri Kosina63f38612006-12-08 18:41:30 +01002#
3# HID driver configuration
4#
Henrik Rydberg1f41a6a2012-06-25 16:55:41 +02005menu "HID support"
6 depends on INPUT
Jiri Kosina63f38612006-12-08 18:41:30 +01007
8config HID
Henrik Rydberg1f41a6a2012-06-25 16:55:41 +02009 tristate "HID bus support"
Russell Kingc96c9d72006-12-22 17:09:16 +000010 depends on INPUT
Jiri Kosina63f38612006-12-08 18:41:30 +010011 default y
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +090012 help
Jiri Kosina69e4d942007-01-03 23:03:14 +010013 A human interface device (HID) is a type of computer device that
14 interacts directly with and takes input from humans. The term "HID"
15 most commonly used to refer to the USB-HID specification, but other
16 devices (such as, but not strictly limited to, Bluetooth) are
17 designed using HID specification (this involves certain keyboards,
Henrik Rydberg1f41a6a2012-06-25 16:55:41 +020018 mice, tablets, etc). This option adds the HID bus to the kernel,
19 together with generic HID layer code. The HID devices are added and
20 removed from the HID bus by the transport-layer drivers, such as
21 usbhid (USB_HID) and hidp (BT_HIDP).
Jiri Kosina69e4d942007-01-03 23:03:14 +010022
Alexander A. Klimovb1631b82020-07-18 13:47:49 +020023 For docs and specs, see https://www.usb.org/developers/hidpage/
Jiri Kosina69e4d942007-01-03 23:03:14 +010024
Pavel Machek205adbe2009-01-06 10:15:27 +010025 If unsure, say Y.
Jiri Kosina63f38612006-12-08 18:41:30 +010026
Henrik Rydberg1f41a6a2012-06-25 16:55:41 +020027if HID
28
Jeremy Fitzhardinge4f5ca832011-11-23 00:49:14 -080029config HID_BATTERY_STRENGTH
Jiri Kosina692d30d2012-04-24 10:51:30 +020030 bool "Battery level reporting for HID devices"
Daniel Nicoletti060c9982014-12-17 11:53:54 -020031 depends on HID
32 select POWER_SUPPLY
Josh Boyer2198edd2012-04-18 10:05:17 -040033 default n
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +090034 help
Jiri Kosina692d30d2012-04-24 10:51:30 +020035 This option adds support of reporting battery strength (for HID devices
36 that support this feature) through power_supply class so that userspace
37 tools, such as upower, can display it.
Jeremy Fitzhardinge4f5ca832011-11-23 00:49:14 -080038
Jiri Kosina86166b72007-05-14 09:57:40 +020039config HIDRAW
40 bool "/dev/hidraw raw HID device support"
41 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +090042 help
Jiri Kosina86166b72007-05-14 09:57:40 +020043 Say Y here if you want to support HID devices (from the USB
44 specification standpoint) that aren't strictly user interface
Christophe JAILLET16863fb2020-04-12 11:07:43 +020045 devices, like monitor controls and Uninterruptible Power Supplies.
Jiri Kosina86166b72007-05-14 09:57:40 +020046
47 This module supports these devices separately using a separate
48 event interface on /dev/hidraw.
49
50 There is also a /dev/hiddev configuration option in the USB HID
51 configuration menu. In comparison to hiddev, this device does not process
52 the hid events at all (no parsing, no lookups). This lets applications
53 to work on raw hid events when they want to, and avoid using transport-specific
54 userspace libhid/libusb libraries.
55
56 If unsure, say Y.
57
David Herrmann1ccd7a22012-06-10 15:16:13 +020058config UHID
59 tristate "User-space I/O driver support for HID subsystem"
60 depends on HID
61 default n
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +090062 help
David Herrmann1ccd7a22012-06-10 15:16:13 +020063 Say Y here if you want to provide HID I/O Drivers from user-space.
64 This allows to write I/O drivers in user-space and feed the data from
65 the device into the kernel. The kernel parses the HID reports, loads the
66 corresponding HID Device Driver or provides input devices on top of your
67 user-space device.
68
69 This driver cannot be used to parse HID-reports in user-space and write
70 special HID-drivers. You should use hidraw for that.
71 Instead, this driver allows to write the transport-layer driver in
72 user-space like USB-HID and Bluetooth-HID do in kernel-space.
73
74 If unsure, say N.
75
76 To compile this driver as a module, choose M here: the
77 module will be called uhid.
78
Henrik Rydberg8215d552012-04-23 12:07:07 +020079config HID_GENERIC
80 tristate "Generic HID driver"
81 depends on HID
Henrik Rydberg1f41a6a2012-06-25 16:55:41 +020082 default HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +090083 help
Henrik Rydberg1f41a6a2012-06-25 16:55:41 +020084 Support for generic devices on the HID bus. This includes most
85 keyboards and mice, joysticks, tablets and digitizers.
Henrik Rydberg8215d552012-04-23 12:07:07 +020086
87 To compile this driver as a module, choose M here: the module
88 will be called hid-generic.
89
90 If unsure, say Y.
91
Henrik Rydberg1f41a6a2012-06-25 16:55:41 +020092menu "Special HID drivers"
93 depends on HID
94
Jiri Slaby14a21cd2008-06-23 23:31:09 +020095config HID_A4TECH
Mateusz Jończyk9858c742021-04-06 20:25:38 +020096 tristate "A4TECH mice"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +010097 depends on HID
David Rientjes6a108a12011-01-20 14:44:16 -080098 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +090099 help
Mateusz Jończyk9858c742021-04-06 20:25:38 +0200100 Support for some A4TECH mice with two scroll wheels.
Jiri Slaby14a21cd2008-06-23 23:31:09 +0200101
Martyn Welchc846fe92017-02-14 14:17:56 +0000102config HID_ACCUTOUCH
103 tristate "Accutouch touch device"
104 depends on USB_HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900105 help
Martyn Welchc846fe92017-02-14 14:17:56 +0000106 This selects a driver for the Accutouch 2216 touch controller.
107
108 The driver works around a problem in the reported device capabilities
109 which causes userspace to detect the device as a mouse rather than
110 a touchscreen.
111
112 Say Y here if you have a Accutouch 2216 touch controller.
113
Dmitry Torokhov0ae43812011-03-11 00:27:34 -0800114config HID_ACRUX
115 tristate "ACRUX game controller support"
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100116 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900117 help
Dmitry Torokhov0ae43812011-03-11 00:27:34 -0800118 Say Y here if you want to enable support for ACRUX game controllers.
119
120config HID_ACRUX_FF
Sergei Kolzun364b9362011-08-04 00:25:56 -0700121 bool "ACRUX force feedback support"
Dmitry Torokhov0ae43812011-03-11 00:27:34 -0800122 depends on HID_ACRUX
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +0200123 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900124 help
Sergei Kolzunc0dbcc32010-07-19 12:13:23 +0200125 Say Y here if you want to enable force feedback support for ACRUX
126 game controllers.
127
Jiri Slaby8c19a512008-06-18 23:36:49 +0200128config HID_APPLE
Jean Delvare7af05e72015-02-20 17:33:33 +0100129 tristate "Apple {i,Power,Mac}Books"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100130 depends on HID
David Rientjes6a108a12011-01-20 14:44:16 -0800131 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900132 help
Jiri Slaby8c19a512008-06-18 23:36:49 +0200133 Support for some Apple devices which less or more break
134 HID specification.
135
Jiri Kosinaf0bd8e42008-10-16 01:25:15 +0200136 Say Y here if you want support for keyboards of Apple iBooks, PowerBooks,
137 MacBooks, MacBook Pros and Apple Aluminum.
Jiri Slaby8c19a512008-06-18 23:36:49 +0200138
Benjamin Tissoires9a4a5572013-04-17 18:15:15 +0200139config HID_APPLEIR
140 tristate "Apple infrared receiver"
141 depends on (USB_HID)
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900142 help
Benjamin Tissoires9a4a5572013-04-17 18:15:15 +0200143 Support for Apple infrared remote control. All the Apple computers from
144 2005 onwards include such a port, except the unibody Macbook (2009),
145 and Mac Pros. This receiver is also used in the Apple TV set-top box
146 prior to the 2010 model.
147
148 Say Y here if you want support for Apple infrared remote control.
149
Yusuke Fujimakieeb01a52016-03-21 16:18:42 +0900150config HID_ASUS
151 tristate "Asus"
Hans de Goedec4f01262020-05-07 11:53:34 +0200152 depends on USB_HID
Carlo Caioneaf22a612017-04-06 12:18:17 +0200153 depends on LEDS_CLASS
Daniel Drake3b692c52018-10-09 14:40:56 +0800154 depends on ASUS_WMI || ASUS_WMI=n
Arnd Bergmanna23eab82019-03-04 20:54:43 +0100155 select POWER_SUPPLY
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900156 help
Chris Chiu1caccc22017-03-01 15:48:51 -0600157 Support for Asus notebook built-in keyboard and touchpad via i2c, and
158 the Asus Republic of Gamers laptop keyboard special keys.
Yusuke Fujimakib94f7d52016-04-03 23:15:16 +0900159
160 Supported devices:
161 - EeeBook X205TA
162 - VivoBook E200HA
Chris Chiu1caccc22017-03-01 15:48:51 -0600163 - GL553V series
164 - GL753V series
Yusuke Fujimakieeb01a52016-03-21 16:18:42 +0900165
Josenivaldo Benito Junior212da742012-04-10 19:29:04 -0300166config HID_AUREAL
167 tristate "Aureal"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100168 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900169 help
Josenivaldo Benito Junior212da742012-04-10 19:29:04 -0300170 Support for Aureal Cy se W-01RN Remote Controller and other Aureal derived remotes.
171
Jiri Slabyb5635b12008-06-24 23:24:57 +0200172config HID_BELKIN
Jean Delvare7af05e72015-02-20 17:33:33 +0100173 tristate "Belkin Flip KVM and Wireless keyboard"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100174 depends on HID
David Rientjes6a108a12011-01-20 14:44:16 -0800175 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900176 help
Jiri Slabyb5635b12008-06-24 23:24:57 +0200177 Support for Belkin Flip KVM and Wireless keyboard.
178
Huang Bofc38a8a62014-11-26 18:21:03 +0800179config HID_BETOP_FF
180 tristate "Betop Production Inc. force feedback support"
181 depends on USB_HID
182 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900183 help
Huang Bofc38a8a62014-11-26 18:21:03 +0800184 Say Y here if you want to enable force feedback support for devices by
185 BETOP Production Ltd.
186 Currently the following devices are known to be supported:
187 - BETOP 2185 PC & BFM MODE
188
Hanno Zulla256a90e2018-08-23 17:03:38 +0200189config HID_BIGBEN_FF
190 tristate "BigBen Interactive Kids' gamepad support"
191 depends on USB_HID
192 depends on NEW_LEDS
193 depends on LEDS_CLASS
194 select INPUT_FF_MEMLESS
Hanno Zulla256a90e2018-08-23 17:03:38 +0200195 help
196 Support for the "Kid-friendly Wired Controller" PS3OFMINIPAD
197 gamepad made by BigBen Interactive, originally sold as a PS3
198 accessory. This driver fixes input mapping and adds support for
199 force feedback effects and LEDs on the device.
200
Jiri Slaby3b239cd2008-06-24 20:42:25 +0200201config HID_CHERRY
Jean Delvare7af05e72015-02-20 17:33:33 +0100202 tristate "Cherry Cymotion keyboard"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100203 depends on HID
David Rientjes6a108a12011-01-20 14:44:16 -0800204 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900205 help
Jiri Kosinaf0bd8e42008-10-16 01:25:15 +0200206 Support for Cherry Cymotion keyboard.
Jiri Slaby3b239cd2008-06-24 20:42:25 +0200207
Jiri Slabyfcfacfd2008-06-24 22:48:52 +0200208config HID_CHICONY
Daniel Drakef2f10b72017-02-17 07:40:52 -0600209 tristate "Chicony devices"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100210 depends on HID
David Rientjes6a108a12011-01-20 14:44:16 -0800211 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900212 help
Daniel Drakef2f10b72017-02-17 07:40:52 -0600213 Support for Chicony Tactical pad and special keys on Chicony keyboards.
Jiri Slabyfcfacfd2008-06-24 22:48:52 +0200214
Clément Vuchener6f781932015-09-30 15:14:20 +0200215config HID_CORSAIR
216 tristate "Corsair devices"
217 depends on HID && USB && LEDS_CLASS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900218 help
Clément Vuchener6f781932015-09-30 15:14:20 +0200219 Support for Corsair devices that are not fully compliant with the
220 HID standard.
221
222 Supported devices:
223 - Vengeance K90
Oscar Campos01adc472017-03-06 21:02:39 +0000224 - Scimitar PRO RGB
Clément Vuchener6f781932015-09-30 15:14:20 +0200225
Daniel M. Lambeab8e759b2018-07-17 22:35:37 +0100226config HID_COUGAR
227 tristate "Cougar devices"
228 depends on HID
229 help
230 Support for Cougar devices that are not fully compliant with the
231 HID standard.
232
233 Supported devices:
234 - Cougar 500k Gaming Keyboard
235
Alex Henrie161f62c2019-04-02 21:18:17 -0600236config HID_MACALLY
237 tristate "Macally devices"
238 depends on HID
239 help
240 Support for Macally devices that are not fully compliant with the
241 HID standard.
242
243 supported devices:
244 - Macally ikey keyboard
245
Don Prince3a370ca2010-05-12 15:18:59 +0200246config HID_PRODIKEYS
Jiri Kosina95736de2010-05-12 15:27:00 +0200247 tristate "Prodikeys PC-MIDI Keyboard support"
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100248 depends on HID && SND
Don Prince3a370ca2010-05-12 15:18:59 +0200249 select SND_RAWMIDI
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900250 help
Don Prince3a370ca2010-05-12 15:18:59 +0200251 Support for Prodikeys PC-MIDI Keyboard device support.
252 Say Y here to enable support for this device.
253 - Prodikeys PC-MIDI keyboard.
254 The Prodikeys PC-MIDI acts as a USB Audio device, with one MIDI
255 input and one MIDI output. These MIDI jacks appear as
256 a sound "card" in the ALSA sound system.
257 Note: if you say N here, this device will still function as a basic
258 multimedia keyboard, but will lack support for the musical keyboard
259 and some additional multimedia keys.
260
Ben Chenad8ddc52016-01-22 11:59:43 +0800261config HID_CMEDIA
Thomas Weißschuhbebf8822021-07-20 22:27:08 +0200262 tristate "CMedia audio chips"
Ben Chenad8ddc52016-01-22 11:59:43 +0800263 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900264 help
Thomas Weißschuhbebf8822021-07-20 22:27:08 +0200265 Support for CMedia CM6533 HID audio jack controls
266 and HS100B mute buttons.
Ben Chenad8ddc52016-01-22 11:59:43 +0800267
David Barksdalee932d812014-02-04 12:42:48 -0600268config HID_CP2112
269 tristate "Silicon Labs CP2112 HID USB-to-SMBus Bridge support"
Sébastien Szymanskicde30762017-11-02 12:12:43 +0100270 depends on USB_HID && HIDRAW && I2C && GPIOLIB
Bartosz Golaszewskiac34b972017-03-12 19:56:08 +0100271 select GPIOLIB_IRQCHIP
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900272 help
David Barksdalee932d812014-02-04 12:42:48 -0600273 Support for Silicon Labs CP2112 HID USB to SMBus Master Bridge.
274 This is a HID device driver which registers as an i2c adapter
275 and gpiochip to expose these functions of the CP2112. The
276 customizable USB descriptor fields are exposed as sysfs attributes.
277
Bastien Noceraf7c4f732019-07-02 10:39:31 +0200278config HID_CREATIVE_SB0540
279 tristate "Creative SB0540 infrared receiver"
280 depends on USB_HID
281 help
282 Support for Creative infrared SB0540-compatible remote controls, such
283 as the RM-1500 and RM-1800 remotes.
284
285 Say Y here if you want support for Creative SB0540 infrared receiver.
286
Jiri Slaby0f221322008-06-23 22:54:08 +0200287config HID_CYPRESS
Jean Delvare7af05e72015-02-20 17:33:33 +0100288 tristate "Cypress mouse and barcode readers"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100289 depends on HID
David Rientjes6a108a12011-01-20 14:44:16 -0800290 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900291 help
Jiri Kosinaf0bd8e42008-10-16 01:25:15 +0200292 Support for cypress mouse and barcode readers.
Jiri Slaby0f221322008-06-23 22:54:08 +0200293
Jiri Kosina0f6f4312009-05-15 15:46:44 +0200294config HID_DRAGONRISE
Borislav Petkova1043042010-08-16 16:26:08 +0200295 tristate "DragonRise Inc. game controller"
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100296 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900297 help
Nikolai Kondrashovb4a65f42011-01-28 14:50:53 +0300298 Say Y here if you have DragonRise Inc. game controllers.
299 These might be branded as:
300 - Tesun USB-703
301 - Media-tech MT1504 "Rogue"
302 - DVTech JS19 "Gear"
303 - Defender Game Master
Jiri Kosina0f6f4312009-05-15 15:46:44 +0200304
305config DRAGONRISE_FF
Borislav Petkova1043042010-08-16 16:26:08 +0200306 bool "DragonRise Inc. force feedback"
Jiri Kosina0f6f4312009-05-15 15:46:44 +0200307 depends on HID_DRAGONRISE
Richard Walmsley3f866fb2009-03-04 22:12:04 +1300308 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900309 help
Richard Walmsley3f866fb2009-03-04 22:12:04 +1300310 Say Y here if you want to enable force feedback support for DragonRise Inc.
311 game controllers.
312
Ignaz Forster04561c52010-11-01 15:13:37 -0400313config HID_EMS_FF
314 tristate "EMS Production Inc. force feedback support"
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100315 depends on HID
Ignaz Forster04561c52010-11-01 15:13:37 -0400316 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900317 help
Ignaz Forster04561c52010-11-01 15:13:37 -0400318 Say Y here if you want to enable force feedback support for devices by
319 EMS Production Ltd.
320 Currently the following devices are known to be supported:
321 - Trio Linker Plus II
322
Alexandrov Stansilav9a6a4192018-01-14 02:33:49 +0300323config HID_ELAN
324 tristate "ELAN USB Touchpad Support"
325 depends on LEDS_CLASS && USB_HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900326 help
Alexandrov Stansilav9a6a4192018-01-14 02:33:49 +0300327 Say Y to enable support for the USB ELAN touchpad
328 Currently the following devices are known to be supported:
329 - HP Pavilion X2 10-p0XX.
330
Richard Nauber64b386e2010-06-28 18:54:25 +0200331config HID_ELECOM
Diego Elio Pettenò0bb7a372017-04-26 17:37:04 +0100332 tristate "ELECOM HID devices"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100333 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900334 help
Diego Elio Pettenò0bb7a372017-04-26 17:37:04 +0100335 Support for ELECOM devices:
336 - BM084 Bluetooth Mouse
Tomasz Kramkowski79837ed2018-03-01 17:22:23 +0000337 - EX-G Trackballs (M-XT3DRBK, M-XT3URBK)
338 - DEFT Trackballs (M-DT1DRBK, M-DT1URBK, M-DT2DRBK, M-DT2URBK)
339 - HUGE Trackballs (M-HT1DRBK, M-HT1URBK)
Richard Nauber64b386e2010-06-28 18:54:25 +0200340
Jiri Slabyd23efc12013-05-07 11:40:58 +0200341config HID_ELO
342 tristate "ELO USB 4000/4500 touchscreen"
343 depends on USB_HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900344 help
Jiri Slabyd23efc12013-05-07 11:40:58 +0200345 Support for the ELO USB 4000/4500 touchscreens. Note that this is for
346 different devices than those handled by CONFIG_TOUCHSCREEN_USB_ELO.
347
Jiri Slaby1f243e32008-06-24 21:11:21 +0200348config HID_EZKEY
Jean Delvare7af05e72015-02-20 17:33:33 +0100349 tristate "Ezkey BTC 8193 keyboard"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100350 depends on HID
David Rientjes6a108a12011-01-20 14:44:16 -0800351 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900352 help
Jiri Kosinaf0bd8e42008-10-16 01:25:15 +0200353 Support for Ezkey BTC 8193 keyboard.
Jiri Slaby1f243e32008-06-24 21:11:21 +0200354
Michael Zaidman6a825822021-02-19 18:36:44 +0200355config HID_FT260
356 tristate "FTDI FT260 USB HID to I2C host support"
357 depends on USB_HID && HIDRAW && I2C
358 help
359 Provides I2C host adapter functionality over USB-HID through FT260
360 device. The customizable USB descriptor fields are exposed as sysfs
361 attributes.
362
363 To compile this driver as a module, choose M here: the module
364 will be called hid-ft260.
365
Benjamin Tissoires931830a2015-08-13 11:11:27 -0400366config HID_GEMBIRD
367 tristate "Gembird Joypad"
368 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900369 help
Benjamin Tissoires931830a2015-08-13 11:11:27 -0400370 Support for Gembird JPD-DualForce 2.
371
Petri Gynther34fc1322015-10-26 01:15:58 -0700372config HID_GFRM
373 tristate "Google Fiber TV Box remote control support"
374 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900375 help
Petri Gynther34fc1322015-10-26 01:15:58 -0700376 Support for Google Fiber TV Box remote controls
377
Samuel Čavoj77a36a32020-03-13 03:12:38 +0100378config HID_GLORIOUS
379 tristate "Glorious PC Gaming Race mice"
380 depends on HID
381 help
382 Support for Glorious PC Gaming Race mice such as
383 the Glorious Model O, O- and D.
384
Anssi Hannulad946e652011-06-27 00:07:31 +0300385config HID_HOLTEK
Tom Harwoodff9bf5a2012-07-06 08:05:04 -0700386 tristate "Holtek HID devices"
Anssi Hannulad946e652011-06-27 00:07:31 +0300387 depends on USB_HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900388 help
Tom Harwoodff9bf5a2012-07-06 08:05:04 -0700389 Support for Holtek based devices:
390 - Holtek On Line Grip based game controller
391 - Trust GXT 18 Gaming Keyboard
Christian Ohm41de3262013-05-21 01:31:08 +0200392 - Sharkoon Drakonia / Perixx MX-2000 gaming mice
Christian Ohmd4f51892013-05-21 01:31:09 +0200393 - Tracer Sniper TRM-503 / NOVA Gaming Slider X200 /
394 Zalman ZM-GM1
Anders F. U. Kiær7da7cbb2013-10-01 19:22:05 +0200395 - SHARKOON DarkGlider Gaming mouse
Anders F. U. Kiærf1a49142013-10-21 23:42:22 +0200396 - LEETGION Hellion Gaming Mouse
Anssi Hannulad946e652011-06-27 00:07:31 +0300397
398config HOLTEK_FF
399 bool "Holtek On Line Grip force feedback support"
400 depends on HID_HOLTEK
401 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900402 help
Anssi Hannulad946e652011-06-27 00:07:31 +0300403 Say Y here if you have a Holtek On Line Grip based game controller
404 and want to have force feedback support for it.
405
Wei-Ning Huangbc774b82018-03-15 09:28:25 +0800406config HID_GOOGLE_HAMMER
407 tristate "Google Hammer Keyboard"
Enric Balletbo i Serra47f11e02019-09-02 11:53:01 +0200408 depends on USB_HID && LEDS_CLASS && CROS_EC
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900409 help
Wei-Ning Huangbc774b82018-03-15 09:28:25 +0800410 Say Y here if you have a Google Hammer device.
411
Sean O'Brien14c9c012020-09-09 15:03:04 -0700412config HID_VIVALDI
413 tristate "Vivaldi Keyboard"
414 depends on HID
415 help
416 Say Y here if you want to enable support for Vivaldi keyboards.
417
418 Vivaldi keyboards use a vendor-specific (Google) HID usage to report
419 how the keys in the top row are physically ordered.
420
Janne Kanniainenf471d942014-06-18 19:05:02 +0300421config HID_GT683R
422 tristate "MSI GT68xR LED support"
423 depends on LEDS_CLASS && USB_HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900424 help
Janne Kanniainenf471d942014-06-18 19:05:02 +0300425 Say Y here if you want to enable support for the three MSI GT68xR LEDs
426
427 This driver support following modes:
428 - Normal: LEDs are fully on when enabled
429 - Audio: LEDs brightness depends on sound level
430 - Breathing: LEDs brightness varies at human breathing rate
431
432 Currently the following devices are know to be supported:
433 - MSI GT683R
434
Jiri Kosina177900e2011-02-17 15:12:45 +0100435config HID_KEYTOUCH
Stephen Boyd3d366e22011-03-22 02:29:17 -0700436 tristate "Keytouch HID devices"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100437 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900438 help
Jiri Kosina177900e2011-02-17 15:12:45 +0100439 Support for Keytouch HID devices not fully compliant with
440 the specification. Currently supported:
441 - Keytouch IEC 60945
442
Jiri Kosina79422742009-03-11 11:43:27 +0100443config HID_KYE
Nikolai Kondrashov22ca20b22012-02-28 13:01:46 +0200444 tristate "KYE/Genius devices"
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100445 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900446 help
Nikolai Kondrashov22ca20b22012-02-28 13:01:46 +0200447 Support for KYE/Genius devices not fully compliant with HID standard:
448 - Ergo Mouse
449 - EasyPen i405X tablet
450 - MousePen i608X tablet
451 - EasyPen M610X tablet
Jiri Kosina79422742009-03-11 11:43:27 +0100452
Nikolai Kondrashovf8a489c2010-08-09 20:44:17 +0400453config HID_UCLOGIC
Jiri Kosinaf36ee072010-08-09 19:56:01 +0200454 tristate "UC-Logic"
Benjamin Tissoiresbbb2d8a2015-03-04 11:24:55 -0500455 depends on USB_HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900456 help
Nikolai Kondrashov08177f42015-03-03 12:44:01 -0500457 Support for UC-Logic and Huion tablets.
Nikolai Kondrashovf8a489c2010-08-09 20:44:17 +0400458
Nikolai Kondrashov72a46342010-08-20 19:21:11 +0400459config HID_WALTOP
460 tristate "Waltop"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100461 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900462 help
Nikolai Kondrashov72a46342010-08-20 19:21:11 +0400463 Support for Waltop tablets.
464
Nikolai Kondrashov7c2af0a2019-02-10 12:13:48 +0200465config HID_VIEWSONIC
466 tristate "ViewSonic/Signotec"
467 depends on HID
468 help
469 Support for ViewSonic/Signotec PD1011 signature pad.
470
Ilya Skriblovsky95157722021-09-19 14:12:36 +0300471config HID_XIAOMI
472 tristate "Xiaomi"
473 depends on HID
474 help
475 Adds support for side buttons of Xiaomi Mi Dual Mode Wireless
476 Mouse Silent Edition.
477
Jiri Slaby949f8fe2008-07-24 23:35:13 +0200478config HID_GYRATION
Borislav Petkova1043042010-08-16 16:26:08 +0200479 tristate "Gyration remote control"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100480 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900481 help
Jiri Kosinaf0bd8e42008-10-16 01:25:15 +0200482 Support for Gyration remote control.
Jiri Slaby949f8fe2008-07-24 23:35:13 +0200483
Bastien Nocera4ddfe022012-10-31 12:10:10 +0100484config HID_ICADE
485 tristate "ION iCade arcade controller"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100486 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900487 help
Bastien Nocera4ddfe022012-10-31 12:10:10 +0100488 Support for the ION iCade arcade controller to work as a joystick.
489
490 To compile this driver as a module, choose M here: the
491 module will be called hid-icade.
492
Hans de Goedef1918be2017-05-10 17:12:53 +0200493config HID_ITE
494 tristate "ITE devices"
495 depends on HID
496 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900497 help
Hans de Goedef1918be2017-05-10 17:12:53 +0200498 Support for ITE devices not fully compliant with HID standard.
499
Niels Skou Olsen19ca2822017-10-04 12:31:22 +0200500config HID_JABRA
501 tristate "Jabra USB HID Driver"
502 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900503 help
Niels Skou Olsen19ca2822017-10-04 12:31:22 +0200504 Support for Jabra USB HID devices.
505
506 Prevents mapping of vendor defined HID usages to input events. Without
507 this driver HID reports from Jabra devices may incorrectly be seen as
508 mouse button events.
509 Say M here if you may ever plug in a Jabra USB device.
510
Bruno Premont711a6802009-07-13 14:19:58 +0200511config HID_TWINHAN
Borislav Petkova1043042010-08-16 16:26:08 +0200512 tristate "Twinhan IR remote control"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100513 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900514 help
Bruno Premont711a6802009-07-13 14:19:58 +0200515 Support for Twinhan IR remote control.
516
Jiri Kosinafdf93aa2009-03-04 16:09:40 +0100517config HID_KENSINGTON
Jean Delvare7af05e72015-02-20 17:33:33 +0100518 tristate "Kensington Slimblade Trackball"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100519 depends on HID
David Rientjes6a108a12011-01-20 14:44:16 -0800520 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900521 help
Jiri Kosinafdf93aa2009-03-04 16:09:40 +0100522 Support for Kensington Slimblade Trackball.
523
Chris Schlund75b07022011-02-03 16:41:47 +0100524config HID_LCPOWER
525 tristate "LC-Power"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100526 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900527 help
Chris Schlund75b07022011-02-03 16:41:47 +0100528 Support for LC-Power RC1000MCE RF remote control.
529
Heiner Kallweit6c7ad072016-06-17 21:20:46 +0200530config HID_LED
Jiri Kosina26423b82016-06-17 22:29:47 +0200531 tristate "Simple RGB LED support"
Heiner Kallweit6c7ad072016-06-17 21:20:46 +0200532 depends on HID
533 depends on LEDS_CLASS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900534 help
Heiner Kallweit007414e2016-06-21 21:49:29 +0200535 Support for simple RGB LED devices. Currently supported are:
536 - Riso Kagaku Webmail Notifier
537 - Dream Cheeky Webmail Notifier and Friends Alert
538 - ThingM blink(1)
Heiner Kallweitde908652016-07-04 21:45:54 +0200539 - Delcom Visual Signal Indicator Generation 2
Heiner Kallweit9d1e0482016-07-04 21:47:52 +0200540 - Greynut Luxafor
Heiner Kallweit6c7ad072016-06-17 21:20:46 +0200541
542 To compile this driver as a module, choose M here: the
543 module will be called hid-led.
544
Jamie Lentin94723bf2014-07-23 23:30:45 +0100545config HID_LENOVO
546 tristate "Lenovo / Thinkpad devices"
Benjamin Tissoires0c521832013-09-11 22:12:24 +0200547 depends on HID
Bryan Wu25976a72012-06-17 18:52:34 +0800548 select NEW_LEDS
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100549 select LEDS_CLASS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900550 help
pgzha230cd52018-04-12 19:36:47 +0200551 Support for IBM/Lenovo devices that are not fully compliant with HID standard.
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100552
pgzha230cd52018-04-12 19:36:47 +0200553 Say Y if you want support for horizontal scrolling of the IBM/Lenovo
554 Scrollpoint mice or the non-compliant features of the Lenovo Thinkpad
555 standalone keyboards, e.g:
Jamie Lentin94723bf2014-07-23 23:30:45 +0100556 - ThinkPad USB Keyboard with TrackPoint (supports extra LEDs and trackpoint
557 configuration)
Jamie Lentinf3d4ff02014-07-23 23:30:48 +0100558 - ThinkPad Compact Bluetooth Keyboard with TrackPoint (supports Fn keys)
559 - ThinkPad Compact USB Keyboard with TrackPoint (supports Fn keys)
Bernhard Seiboldc1dcad2d2012-02-15 13:40:43 +0100560
Jiri Slaby5f22a792008-05-16 11:49:19 +0200561config HID_LOGITECH
Jean Delvare7af05e72015-02-20 17:33:33 +0100562 tristate "Logitech devices"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100563 depends on HID
Hans de Goedebdd08ff2019-10-04 09:37:15 +0200564 depends on LEDS_CLASS
David Rientjes6a108a12011-01-20 14:44:16 -0800565 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900566 help
Jiri Kosinaf0bd8e42008-10-16 01:25:15 +0200567 Support for Logitech devices that are not fully compliant with HID standard.
Jiri Slaby5f22a792008-05-16 11:49:19 +0200568
Nestor Lopez Casado534a7b82011-09-15 11:34:49 +0200569config HID_LOGITECH_DJ
Filipe Laínsc08ce252020-01-12 23:50:09 +0000570 tristate "Logitech receivers full support"
Benjamin Tissoiresc08f38e2019-04-24 15:13:52 +0200571 depends on USB_HID
Olivier Gaydcdc50e2013-12-03 00:17:24 +0100572 depends on HIDRAW
Nestor Lopez Casado534a7b82011-09-15 11:34:49 +0200573 depends on HID_LOGITECH
Benjamin Tissoiresab94e562014-09-30 13:18:28 -0400574 select HID_LOGITECH_HIDPP
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900575 help
Filipe Laínsc08ce252020-01-12 23:50:09 +0000576 Say Y if you want support for Logitech receivers and devices.
577 Logitech receivers are capable of pairing multiple Logitech compliant
Konstantin Khlebnikov0944e962012-02-13 14:13:03 +0400578 devices to the same receiver. Without this driver it will be handled by
Jorrit Schippersd82603c2012-12-27 17:33:02 +0100579 generic USB_HID driver and all incoming events will be multiplexed
Konstantin Khlebnikov0944e962012-02-13 14:13:03 +0400580 into a single mouse and a single keyboard device.
Nestor Lopez Casado534a7b82011-09-15 11:34:49 +0200581
Benjamin Tissoires2f31c522014-09-30 13:18:27 -0400582config HID_LOGITECH_HIDPP
583 tristate "Logitech HID++ devices support"
584 depends on HID_LOGITECH
Arnd Bergmann351744a2016-07-11 23:49:20 +0200585 select POWER_SUPPLY
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900586 help
Christophe JAILLETe9c67292021-07-23 17:08:40 +0200587 Support for Logitech devices relying on the HID++ Logitech specification
Benjamin Tissoires2f31c522014-09-30 13:18:27 -0400588
589 Say Y if you want support for Logitech devices relying on the HID++
590 specification. Such devices are the various Logitech Touchpads (T650,
591 T651, TK820), some mice (Zone Touch mouse), or even keyboards (Solar
Geert Uytterhoeven79bc33b2015-01-06 09:09:13 +0100592 Keyboard).
Benjamin Tissoires2f31c522014-09-30 13:18:27 -0400593
Jiri Slaby606bd0a2008-07-04 23:06:45 +0200594config LOGITECH_FF
Jiri Kosina0f6f4312009-05-15 15:46:44 +0200595 bool "Logitech force feedback support"
Jiri Slaby606bd0a2008-07-04 23:06:45 +0200596 depends on HID_LOGITECH
597 select INPUT_FF_MEMLESS
598 help
599 Say Y here if you have one of these devices:
600 - Logitech WingMan Cordless RumblePad
601 - Logitech WingMan Cordless RumblePad 2
602 - Logitech WingMan Force 3D
Jiri Slaby606bd0a2008-07-04 23:06:45 +0200603
604 and if you want to enable force feedback for them.
605 Note: if you say N here, this device will still be supported, but without
606 force feedback.
607
608config LOGIRUMBLEPAD2_FF
Elias Vanderstuyftbd043632013-10-07 19:48:12 +0300609 bool "Logitech force feedback support (variant 2)"
Jiri Slaby606bd0a2008-07-04 23:06:45 +0200610 depends on HID_LOGITECH
611 select INPUT_FF_MEMLESS
612 help
Elias Vanderstuyftbd043632013-10-07 19:48:12 +0300613 Say Y here if you want to enable force feedback support for:
614 - Logitech RumblePad
615 - Logitech Rumblepad 2
616 - Logitech Formula Vibration Feedback Wheel
Jiri Slaby606bd0a2008-07-04 23:06:45 +0200617
Gary Stein74f292c2010-01-13 00:25:58 +0100618config LOGIG940_FF
619 bool "Logitech Flight System G940 force feedback support"
620 depends on HID_LOGITECH
621 select INPUT_FF_MEMLESS
622 help
623 Say Y here if you want to enable force feedback support for Logitech
624 Flight System G940 devices.
625
Michal Malýa7ac90f2011-08-04 16:24:22 +0200626config LOGIWHEELS_FF
627 bool "Logitech wheels configuration and force feedback support"
Simon Wood32c88cb2010-09-22 13:19:42 +0200628 depends on HID_LOGITECH
629 select INPUT_FF_MEMLESS
Jiri Kosina70c2cab2011-08-10 18:11:10 +0200630 default LOGITECH_FF
Simon Wood32c88cb2010-09-22 13:19:42 +0200631 help
Simon Woodf777a3a2016-09-18 10:55:42 -0600632 Say Y here if you want to enable force feedback and range setting(*)
Michal Malýa7ac90f2011-08-04 16:24:22 +0200633 support for following Logitech wheels:
Simon Woodf777a3a2016-09-18 10:55:42 -0600634 - Logitech G25 (*)
635 - Logitech G27 (*)
636 - Logitech G29 (*)
Michal Malýa7ac90f2011-08-04 16:24:22 +0200637 - Logitech Driving Force
Simon Woodf777a3a2016-09-18 10:55:42 -0600638 - Logitech Driving Force Pro (*)
639 - Logitech Driving Force GT (*)
640 - Logitech Driving Force EX/RX
641 - Logitech Driving Force Wireless
642 - Logitech Speed Force Wireless
643 - Logitech MOMO Force
644 - Logitech MOMO Racing Force
645 - Logitech Formula Force GP
646 - Logitech Formula Force EX/RX
647 - Logitech Wingman Formula Force GP
Simon Wood32c88cb2010-09-22 13:19:42 +0200648
Michael Poole128537c2010-02-06 12:24:36 -0500649config HID_MAGICMOUSE
David Kingcdfee4f2013-04-20 20:13:52 +0100650 tristate "Apple Magic Mouse/Trackpad multi-touch support"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100651 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900652 help
David Kingcdfee4f2013-04-20 20:13:52 +0100653 Support for the Apple Magic Mouse/Trackpad multi-touch.
Michael Poole128537c2010-02-06 12:24:36 -0500654
655 Say Y here if you want support for the multi-touch features of the
David Kingcdfee4f2013-04-20 20:13:52 +0100656 Apple Wireless "Magic" Mouse and the Apple Wireless "Magic" Trackpad.
Michael Poole128537c2010-02-06 12:24:36 -0500657
William Whistleraf8cd702019-01-14 17:50:07 +0000658config HID_MALTRON
659 tristate "Maltron L90 keyboard"
660 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900661 help
William Whistleraf8cd702019-01-14 17:50:07 +0000662 Adds support for the volume up, volume down, mute, and play/pause buttons
663 of the Maltron L90 keyboard.
664
Marcel Haslerf8690452016-11-03 19:47:42 +0100665config HID_MAYFLASH
666 tristate "Mayflash game controller adapter force feedback"
667 depends on HID
668 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900669 help
Marcel Haslerf8690452016-11-03 19:47:42 +0100670 Say Y here if you have HJZ Mayflash PS3 game controller adapters
671 and want to enable force feedback support.
672
Robert Munteanu85455dd92018-04-17 00:38:24 +0300673config HID_REDRAGON
674 tristate "Redragon keyboards"
675 depends on HID
676 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900677 help
Robert Munteanu85455dd92018-04-17 00:38:24 +0300678 Support for Redragon keyboards that need fix-ups to work properly.
679
Jiri Slaby78a849a682008-06-20 21:26:11 +0200680config HID_MICROSOFT
Jean Delvare7af05e72015-02-20 17:33:33 +0100681 tristate "Microsoft non-fully HID-compliant devices"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100682 depends on HID
David Rientjes6a108a12011-01-20 14:44:16 -0800683 default !EXPERT
Jiri Kosina830e82a2018-09-05 13:24:47 +0200684 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900685 help
Jiri Kosinaf0bd8e42008-10-16 01:25:15 +0200686 Support for Microsoft devices that are not fully compliant with HID standard.
Jiri Slaby78a849a682008-06-20 21:26:11 +0200687
Jiri Slaby3b8006e2008-06-25 00:07:50 +0200688config HID_MONTEREY
Jean Delvare7af05e72015-02-20 17:33:33 +0100689 tristate "Monterey Genius KB29E keyboard"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100690 depends on HID
David Rientjes6a108a12011-01-20 14:44:16 -0800691 default !EXPERT
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900692 help
Jiri Slaby3b8006e2008-06-25 00:07:50 +0200693 Support for Monterey Genius KB29E.
694
Benjamin Tissoires5519cab2011-01-07 23:45:50 +0100695config HID_MULTITOUCH
696 tristate "HID Multitouch panels"
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100697 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900698 help
Benjamin Tissoires5519cab2011-01-07 23:45:50 +0100699 Generic support for HID multitouch panels.
700
701 Say Y here if you have one of the following devices:
Benjamin Tissoiresf786bba2011-03-22 17:34:01 +0100702 - 3M PCT touch screens
Benjamin Tissoirese6aac342011-05-19 14:18:13 +0200703 - ActionStar dual touch panels
Benjamin Tissoiresb1057122011-12-23 15:40:59 +0100704 - Atmel panels
Benjamin Tissoires22408282011-05-20 15:59:34 +0200705 - Cando dual touch panels
Austin Zhang942fd422011-05-28 02:03:47 +0800706 - Chunghwa panels
Yang Bo070f63b2015-07-20 09:40:28 -0700707 - CJTouch panels
Benjamin Tissoires79603dc2011-05-19 14:18:14 +0200708 - CVTouch panels
Benjamin Tissoires2d936662011-01-11 16:45:54 +0100709 - Cypress TrueTouch panels
Jan Matějkae02aea92013-10-26 00:03:49 +0200710 - Elan Microelectronics touch panels
Benjamin Tissoiresc04abee2011-05-19 11:37:29 +0200711 - Elo TouchSystems IntelliTouch Plus panels
Benjamin Tissoires22408282011-05-20 15:59:34 +0200712 - GeneralTouch 'Sensing Win7-TwoFinger' panels
Benjamin Tissoiresee0fbd12011-05-19 14:18:15 +0200713 - GoodTouch panels
Benjamin Tissoires2d936662011-01-11 16:45:54 +0100714 - Hanvon dual touch panels
Benjamin Tissoires22408282011-05-20 15:59:34 +0200715 - Ilitek dual touch panels
Benjamin Tissoires4dfcced2011-01-31 11:28:22 +0100716 - IrTouch Infrared USB panels
Jeff Brownc50bb1a2011-08-15 21:12:09 -0700717 - LG Display panels (Dell ST2220Tc)
Benjamin Tissoiresdf167c42011-05-18 15:27:24 +0200718 - Lumio CrystalTouch panels
Benjamin Tissoires4a6ee682011-04-22 11:51:48 +0200719 - MosArt dual-touch panels
Denis Kovalev2258e862012-02-14 00:50:33 -0800720 - Panasonic multitouch panels
John Sung6ab3a9a2011-04-21 16:21:52 +0200721 - PenMount dual touch panels
Benjamin Tissoires847672c2012-02-04 17:08:50 +0100722 - Perixx Peripad 701 touchpad
Aaron Tianb7ea95f2011-12-15 11:09:06 +0800723 - PixArt optical touch screen
Benjamin Tissoires2d936662011-01-11 16:45:54 +0100724 - Pixcir dual touch panels
Benjamin Tissoires5e7ea112011-11-29 13:13:10 +0100725 - Quanta panels
Benjamin Tissoires22408282011-05-20 15:59:34 +0200726 - eGalax dual-touch panels, including the Joojoo and Wetab tablets
Forest Bonda6802e02013-10-21 12:38:49 -0400727 - SiS multitouch panels
Benjamin Tissoires043b4032011-03-18 14:27:53 +0100728 - Stantum multitouch panels
Benjamin Tissoires5e74e562011-05-19 14:18:16 +0200729 - Touch International Panels
Benjamin Tissoires617b64f2011-05-19 14:18:17 +0200730 - Unitec Panels
KaiChung Chengbf9d1212013-11-21 10:04:30 +0100731 - Wistron optical touch panels
ice chienbc8a2a92011-07-15 16:58:06 +0800732 - XAT optical touch panels
Masatoshi Hoshikawa11576c62012-01-05 11:53:46 +0900733 - Xiroku optical touch panels
Benjamin Tissoirese9a09ae2012-06-19 14:39:54 +0200734 - Zytronic touch panels
Benjamin Tissoires5519cab2011-01-07 23:45:50 +0100735
Benjamin Tissoires2d936662011-01-11 16:45:54 +0100736 If unsure, say N.
737
738 To compile this driver as a module, choose M here: the
739 module will be called hid-multitouch.
740
Daniel J. Ogorchock2af16c12021-09-11 13:36:24 -0400741config HID_NINTENDO
742 tristate "Nintendo Joy-Con and Pro Controller support"
743 depends on HID
Daniel J. Ogorchockc5e62672021-09-11 13:36:25 -0400744 depends on NEW_LEDS
745 depends on LEDS_CLASS
Daniel J. Ogorchock08ebba52021-09-11 13:36:26 -0400746 select POWER_SUPPLY
Daniel J. Ogorchock2af16c12021-09-11 13:36:24 -0400747 help
748 Adds support for the Nintendo Switch Joy-Cons and Pro Controller.
749 All controllers support bluetooth, and the Pro Controller also supports
750 its USB mode.
751
752 To compile this driver as a module, choose M here: the
753 module will be called hid-nintendo.
754
Daniel J. Ogorchockc4eae842021-09-11 13:36:28 -0400755config NINTENDO_FF
756 bool "Nintendo Switch controller force feedback support"
757 depends on HID_NINTENDO
758 select INPUT_FF_MEMLESS
759 help
760 Say Y here if you have a Nintendo Switch controller and want to enable
761 force feedback support for it. This works for both joy-cons and the pro
762 controller. For the pro controller, both rumble motors can be controlled
763 individually.
764
Jonathan Tomer07e88a32017-02-01 11:54:57 -0800765config HID_NTI
766 tristate "NTI keyboard adapters"
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900767 help
Jonathan Tomer07e88a32017-02-01 11:54:57 -0800768 Support for the "extra" Sun keyboard keys on keyboards attached
769 through Network Technologies USB-SUN keyboard adapters.
770
Rafi Rubin94011f92008-11-19 15:54:46 +0100771config HID_NTRIG
Borislav Petkova1043042010-08-16 16:26:08 +0200772 tristate "N-Trig touch screen"
Rafi Rubin94011f92008-11-19 15:54:46 +0100773 depends on USB_HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900774 help
Rafi Rubin94011f92008-11-19 15:54:46 +0100775 Support for N-Trig touch screen.
776
Johnathon Harriscd9ec302010-01-21 14:36:52 +0000777config HID_ORTEK
Jiri Kosinad586dca2011-03-21 13:54:22 +0100778 tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100779 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900780 help
Jiri Kosinad586dca2011-03-21 13:54:22 +0100781 There are certain devices which have LogicalMaximum wrong in the keyboard
782 usage page of their report descriptor. The most prevailing ones so far
783 are manufactured by Ortek, thus the name of the driver. Currently
784 supported devices by this driver are
785
786 - Ortek PKB-1700
787 - Ortek WKB-2000
788 - Skycable wireless presenter
Johnathon Harriscd9ec302010-01-21 14:36:52 +0000789
Jiri Slaby5f022292008-09-18 19:43:32 +0200790config HID_PANTHERLORD
Borislav Petkova1043042010-08-16 16:26:08 +0200791 tristate "Pantherlord/GreenAsia game controller"
Benjamin Tissoiresd88142722013-02-25 11:31:46 +0100792 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900793 help
Jiri Kosina0f6f4312009-05-15 15:46:44 +0200794 Say Y here if you have a PantherLord/GreenAsia based game controller
795 or adapter.
796
Jiri Slaby5f022292008-09-18 19:43:32 +0200797config PANTHERLORD_FF
798 bool "Pantherlord force feedback support"
799 depends on HID_PANTHERLORD
800 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900801 help
Jiri Slaby5f022292008-09-18 19:43:32 +0200802 Say Y here if you have a PantherLord/GreenAsia based game controller
803 or adapter and want to enable force feedback support for it.
804
Christian Gmeinerffe51d02014-09-03 10:33:53 +0200805config HID_PENMOUNT
806 tristate "Penmount touch device"
807 depends on USB_HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900808 help
Christian Gmeinerffe51d02014-09-03 10:33:53 +0200809 This selects a driver for the PenMount 6000 touch controller.
810
811 The driver works around a problem in the report descript allowing
812 the userspace to touch events instead of mouse events.
813
814 Say Y here if you have a Penmount based touch controller.
815
Jiri Slaby1e762532008-06-24 23:46:21 +0200816config HID_PETALYNX
Borislav Petkova1043042010-08-16 16:26:08 +0200817 tristate "Petalynx Maxter remote control"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100818 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900819 help
Jiri Kosinaf0bd8e42008-10-16 01:25:15 +0200820 Support for Petalynx Maxter remote control.
Jiri Slaby1e762532008-06-24 23:46:21 +0200821
Bruno Prémont236db472010-03-30 22:33:50 +0200822config HID_PICOLCD
823 tristate "PicoLCD (graphic version)"
Benjamin Tissoiresb7966a42013-02-25 11:31:47 +0100824 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900825 help
Bruno Prémont236db472010-03-30 22:33:50 +0200826 This provides support for Minibox PicoLCD devices, currently
827 only the graphical ones are supported.
828
829 This includes support for the following device features:
830 - Keypad
831 - Switching between Firmware and Flash mode
Bruno Prémont9bbf2b92010-03-30 22:38:09 +0200832 - EEProm / Flash access (via debugfs)
Bruno Prémont5435f282010-04-11 12:17:45 +0200833 Features selectively enabled:
834 - Framebuffer for monochrome 256x64 display
835 - Backlight control
836 - Contrast control
837 - General purpose outputs
Bruno Prémontb8c21cf2010-03-30 22:34:30 +0200838 Features that are not (yet) supported:
Bruno Prémont236db472010-03-30 22:33:50 +0200839 - IR
Bruno Prémont236db472010-03-30 22:33:50 +0200840
Bruno Prémont5435f282010-04-11 12:17:45 +0200841config HID_PICOLCD_FB
David Rientjes6a108a12011-01-20 14:44:16 -0800842 bool "Framebuffer support" if EXPERT
843 default !EXPERT
Bruno Prémont5435f282010-04-11 12:17:45 +0200844 depends on HID_PICOLCD
845 depends on HID_PICOLCD=FB || FB=y
846 select FB_DEFERRED_IO
847 select FB_SYS_FILLRECT
848 select FB_SYS_COPYAREA
849 select FB_SYS_IMAGEBLIT
850 select FB_SYS_FOPS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900851 help
Bruno Prémont5435f282010-04-11 12:17:45 +0200852 Provide access to PicoLCD's 256x64 monochrome display via a
Masanari Iida6b2aac42012-04-14 00:14:11 +0900853 framebuffer device.
Bruno Prémont5435f282010-04-11 12:17:45 +0200854
855config HID_PICOLCD_BACKLIGHT
David Rientjes6a108a12011-01-20 14:44:16 -0800856 bool "Backlight control" if EXPERT
857 default !EXPERT
Bruno Prémont5435f282010-04-11 12:17:45 +0200858 depends on HID_PICOLCD
859 depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900860 help
Bruno Prémont5435f282010-04-11 12:17:45 +0200861 Provide access to PicoLCD's backlight control via backlight
862 class.
863
864config HID_PICOLCD_LCD
David Rientjes6a108a12011-01-20 14:44:16 -0800865 bool "Contrast control" if EXPERT
866 default !EXPERT
Bruno Prémont5435f282010-04-11 12:17:45 +0200867 depends on HID_PICOLCD
868 depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900869 help
Bruno Prémont5435f282010-04-11 12:17:45 +0200870 Provide access to PicoLCD's LCD contrast via lcd class.
871
872config HID_PICOLCD_LEDS
David Rientjes6a108a12011-01-20 14:44:16 -0800873 bool "GPO via leds class" if EXPERT
874 default !EXPERT
Bruno Prémont5435f282010-04-11 12:17:45 +0200875 depends on HID_PICOLCD
876 depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900877 help
Bruno Prémont5435f282010-04-11 12:17:45 +0200878 Provide access to PicoLCD's GPO pins via leds class.
879
Bruno Prémontfabdbf22012-07-30 21:38:28 +0200880config HID_PICOLCD_CIR
881 bool "CIR via RC class" if EXPERT
882 default !EXPERT
883 depends on HID_PICOLCD
884 depends on HID_PICOLCD=RC_CORE || RC_CORE=y
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900885 help
Bruno Prémontfabdbf22012-07-30 21:38:28 +0200886 Provide access to PicoLCD's CIR interface via remote control (LIRC).
887
JD Cole1a3f83f2014-10-31 17:34:42 -0700888config HID_PLANTRONICS
889 tristate "Plantronics USB HID Driver"
JD Cole1a3f83f2014-10-31 17:34:42 -0700890 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900891 help
Terry Junge81bb773fa2015-06-08 14:27:57 -0700892 Provides HID support for Plantronics USB audio devices.
893 Correctly maps vendor unique volume up/down HID usages to
894 KEY_VOLUMEUP and KEY_VOLUMEDOWN events and prevents core mapping
895 of other vendor unique HID usages to random mouse events.
896
897 Say M here if you may ever plug in a Plantronics USB audio device.
JD Cole1a3f83f2014-10-31 17:34:42 -0700898
Roderick Colenbranderbc2e15a2021-02-07 13:48:56 -0800899config HID_PLAYSTATION
900 tristate "PlayStation HID Driver"
901 depends on HID
Jiri Kosinad7f1f9f2021-11-01 15:12:02 +0100902 depends on LEDS_CLASS_MULTICOLOR
Roderick Colenbrander799b2b52021-02-07 13:49:02 -0800903 select CRC32
Roderick Colenbranderd30bca42021-02-07 13:48:58 -0800904 select POWER_SUPPLY
Roderick Colenbranderbc2e15a2021-02-07 13:48:56 -0800905 help
906 Provides support for Sony PS5 controllers including support for
907 its special functionalities e.g. touchpad, lights and motion
908 sensors.
909
Roderick Colenbrander51151092021-02-07 13:49:03 -0800910config PLAYSTATION_FF
911 bool "PlayStation force feedback support"
912 depends on HID_PLAYSTATION
913 select INPUT_FF_MEMLESS
914 help
915 Say Y here if you would like to enable force feedback support for
916 PlayStation game controllers.
917
Terry Lambertf6a04602011-10-14 17:18:54 -0700918config HID_PRIMAX
Jiri Kosinadfe9a312011-10-17 17:04:58 +0200919 tristate "Primax non-fully HID-compliant devices"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100920 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900921 help
Terry Lambertf6a04602011-10-14 17:18:54 -0700922 Support for Primax devices that are not fully compliant with the
923 HID standard.
924
Bastien Nocera13b2e1b2017-06-20 18:13:37 +0200925config HID_RETRODE
Randy Dunlapfc5431d2017-09-23 17:33:21 -0700926 tristate "Retrode 2 USB adapter for vintage video games"
Bastien Nocera13b2e1b2017-06-20 18:13:37 +0200927 depends on USB_HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900928 help
Bastien Nocera13b2e1b2017-06-20 18:13:37 +0200929 Support for
Bastien Nocera13b2e1b2017-06-20 18:13:37 +0200930 * Retrode 2 cartridge and controller adapter
931
Stefan Achatz206f5f22010-05-19 18:55:16 +0200932config HID_ROCCAT
Stefan Achatzbd393db2011-12-29 17:20:14 +0100933 tristate "Roccat device support"
Stefan Achatz206f5f22010-05-19 18:55:16 +0200934 depends on USB_HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900935 help
Stefan Achatzbd393db2011-12-29 17:20:14 +0100936 Support for Roccat devices.
937 Say Y here if you have a Roccat mouse or keyboard and want
938 support for its special functionalities.
Stefan Achatzcb7cf3d2010-08-29 12:30:18 +0200939
Andreas Hübner1e936742012-02-22 02:10:06 +0100940config HID_SAITEK
Ville Aakko7bb9d642014-11-05 15:13:51 +0100941 tristate "Saitek (Mad Catz) non-fully HID-compliant devices"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100942 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900943 help
Andreas Hübner1e936742012-02-22 02:10:06 +0100944 Support for Saitek devices that are not fully compliant with the
945 HID standard.
946
Harald Brinkmann37c492c2014-05-20 20:28:00 +0200947 Supported devices:
948 - PS1000 Dual Analog Pad
Harald Brinkmann8ffd3412015-09-03 17:49:26 +0200949 - Saitek R.A.T.7, R.A.T.9, M.M.O.7 Gaming Mice
950 - Mad Catz R.A.T.5, R.A.T.9 Gaming Mice
Andreas Hübner1e936742012-02-22 02:10:06 +0100951
Jiri Slaby980a3da2008-06-25 22:31:48 +0200952config HID_SAMSUNG
Borislav Petkova1043042010-08-16 16:26:08 +0200953 tristate "Samsung InfraRed remote control or keyboards"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +0100954 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900955 help
Don Princeb3558502010-05-17 11:42:39 +0100956 Support for Samsung InfraRed remote control or keyboards.
Jiri Slaby980a3da2008-06-25 22:31:48 +0200957
Benjamin Moody6a012682021-02-07 13:47:04 -0500958config HID_SEMITEK
959 tristate "Semitek USB keyboards"
960 depends on HID
961 help
962 Support for Semitek USB keyboards that are not fully compliant
963 with the HID standard.
964
965 There are many variants, including:
966 - GK61, GK64, GK68, GK84, GK96, etc.
967 - SK61, SK64, SK68, SK84, SK96, etc.
968 - Dierya DK61/DK66
969 - Tronsmart TK09R
970 - Woo-dy
971 - X-Bows Nature/Knight
972
Jiri Slabybd28ce02008-06-25 23:47:04 +0200973config HID_SONY
Frank Praznike4321c52014-02-01 10:39:58 -0500974 tristate "Sony PS2/3/4 accessories"
Jiri Slabybd28ce02008-06-25 23:47:04 +0200975 depends on USB_HID
Jiri Kosina40e32ee2013-05-28 11:22:09 +0200976 depends on NEW_LEDS
977 depends on LEDS_CLASS
Jiri Kosina695baaa72014-02-03 11:17:25 +0100978 select POWER_SUPPLY
Arnd Bergmann273435a2021-01-03 22:41:44 +0100979 select CRC32
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900980 help
Colin Leitnerf04d5142013-05-27 23:41:05 +0200981 Support for
David Dillow5844c1c2012-09-25 23:02:27 +0200982
Colin Leitnerf04d5142013-05-27 23:41:05 +0200983 * Sony PS3 6-axis controllers
Frank Praznike4321c52014-02-01 10:39:58 -0500984 * Sony PS4 DualShock 4 controllers
Colin Leitnerf04d5142013-05-27 23:41:05 +0200985 * Buzz controllers
Jiri Kosina078328d2013-06-13 12:03:49 +0200986 * Sony PS3 Blue-ray Disk Remote Control (Bluetooth)
987 * Logitech Harmony adapter for Sony Playstation 3 (Bluetooth)
Daniel Nguyena4bfe132021-08-10 10:09:32 -0400988 * Guitar Hero Live PS3, Wii U and PS4 guitar dongles
Sanjay Govind32e411d2020-12-04 18:45:27 +1300989 * Guitar Hero PS3 and PC guitar dongles
Jiri Slabybd28ce02008-06-25 23:47:04 +0200990
Sven Eckelmanna08c22c2013-11-09 19:25:57 +0100991config SONY_FF
Frank Praznike4321c52014-02-01 10:39:58 -0500992 bool "Sony PS2/3/4 accessories force feedback support"
Sven Eckelmanna08c22c2013-11-09 19:25:57 +0100993 depends on HID_SONY
994 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +0900995 help
Frank Praznike4321c52014-02-01 10:39:58 -0500996 Say Y here if you have a Sony PS2/3/4 accessory and want to enable
997 force feedback support for it.
Sven Eckelmanna08c22c2013-11-09 19:25:57 +0100998
Stefan Kriwanek74bc6952011-05-27 18:40:29 +0200999config HID_SPEEDLINK
1000 tristate "Speedlink VAD Cezanne mouse support"
Benjamin Tissoiresd88142722013-02-25 11:31:46 +01001001 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001002 help
Stefan Kriwanek74bc6952011-05-27 18:40:29 +02001003 Support for Speedlink Vicious and Divine Cezanne mouse.
1004
Rodrigo Rivas Costac164d6a2018-04-16 14:27:02 +02001005config HID_STEAM
1006 tristate "Steam Controller support"
1007 depends on HID
Arnd Bergmann4b644872018-05-25 17:30:51 +02001008 select POWER_SUPPLY
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001009 help
Rodrigo Rivas Costac164d6a2018-04-16 14:27:02 +02001010 Say Y here if you have a Steam Controller if you want to use it
1011 without running the Steam Client. It supports both the wired and
1012 the wireless adaptor.
1013
Jiri Kosina090800c2013-01-31 16:50:24 +01001014config HID_STEELSERIES
Simon Wood75dbb952013-01-31 08:07:07 -07001015 tristate "Steelseries SRW-S1 steering wheel support"
Benjamin Tissoiresd88142722013-02-25 11:31:46 +01001016 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001017 help
Simon Wood75dbb952013-01-31 08:07:07 -07001018 Support for Steelseries SRW-S1 steering wheel
1019
Jiri Slaby90231e72008-06-23 21:56:07 +02001020config HID_SUNPLUS
Borislav Petkova1043042010-08-16 16:26:08 +02001021 tristate "Sunplus wireless desktop"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +01001022 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001023 help
Jiri Kosinaf0bd8e42008-10-16 01:25:15 +02001024 Support for Sunplus wireless desktop.
Jiri Slaby90231e72008-06-23 21:56:07 +02001025
Benjamin Tissoires9fb6bf02014-04-07 13:39:33 -04001026config HID_RMI
1027 tristate "Synaptics RMI4 device support"
1028 depends on HID
Andrew Duggan0b2c7a82017-01-05 09:48:58 +01001029 select RMI4_CORE
1030 select RMI4_F03
1031 select RMI4_F11
1032 select RMI4_F12
1033 select RMI4_F30
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001034 help
Benjamin Tissoires9fb6bf02014-04-07 13:39:33 -04001035 Support for Synaptics RMI4 touchpads.
1036 Say Y here if you have a Synaptics RMI4 touchpads over i2c-hid or usbhid
1037 and want support for its special functionalities.
1038
Jiri Kosina0f6f4312009-05-15 15:46:44 +02001039config HID_GREENASIA
Borislav Petkova1043042010-08-16 16:26:08 +02001040 tristate "GreenAsia (Product ID 0x12) game controller support"
Benjamin Tissoiresd88142722013-02-25 11:31:46 +01001041 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001042 help
Jiri Kosina0f6f4312009-05-15 15:46:44 +02001043 Say Y here if you have a GreenAsia (Product ID 0x12) based game
1044 controller or adapter.
1045
1046config GREENASIA_FF
1047 bool "GreenAsia (Product ID 0x12) force feedback support"
1048 depends on HID_GREENASIA
Lukasz Lubojanski42859e02008-12-11 22:07:59 +01001049 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001050 help
Lukasz Lubojanski42859e02008-12-11 22:07:59 +01001051 Say Y here if you have a GreenAsia (Product ID 0x12) based game controller
Matt LaPlante692105b2009-01-26 11:12:25 +01001052 (like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter
Lukasz Lubojanski42859e02008-12-11 22:07:59 +01001053 and want to enable force feedback support for it.
1054
Jiri Kosina6cf851d2011-11-22 22:52:15 +01001055config HID_HYPERV_MOUSE
1056 tristate "Microsoft Hyper-V mouse driver"
1057 depends on HYPERV
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001058 help
Jiri Kosina6cf851d2011-11-22 22:52:15 +01001059 Select this option to enable the Hyper-V mouse driver.
1060
Jussi Kivilinnafac733f2009-05-13 11:54:38 +03001061config HID_SMARTJOYPLUS
Jiri Kosina73d5e8f2010-05-21 13:15:17 +02001062 tristate "SmartJoy PLUS PS2/USB adapter support"
Benjamin Tissoiresd88142722013-02-25 11:31:46 +01001063 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001064 help
Sean Young1bcc2062011-10-20 21:26:21 +01001065 Support for SmartJoy PLUS PS2/USB adapter, Super Dual Box,
1066 Super Joy Box 3 Pro, Super Dual Box Pro, and Super Joy Box 5 Pro.
1067
1068 Note that DDR (Dance Dance Revolution) mode is not supported, nor
1069 is pressure sensitive buttons on the pro models.
Jussi Kivilinnafac733f2009-05-13 11:54:38 +03001070
1071config SMARTJOYPLUS_FF
1072 bool "SmartJoy PLUS PS2/USB adapter force feedback support"
1073 depends on HID_SMARTJOYPLUS
1074 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001075 help
Jussi Kivilinnafac733f2009-05-13 11:54:38 +03001076 Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to
1077 enable force feedback support for it.
1078
Jiri Kosina2701eaa2012-02-06 17:36:38 +01001079config HID_TIVO
Jarod Wilson44ea35c2011-10-14 16:57:42 -04001080 tristate "TiVo Slide Bluetooth remote control support"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +01001081 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001082 help
Jarod Wilson44ea35c2011-10-14 16:57:42 -04001083 Say Y if you have a TiVo Slide Bluetooth remote control.
1084
Lev Babievf14f5262009-01-04 00:36:56 +01001085config HID_TOPSEED
Kees Bakker54001082010-07-13 22:50:51 +02001086 tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +01001087 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001088 help
Kees Bakker54001082010-07-13 22:50:51 +02001089 Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic
1090 CLLRCMCE remote control.
Lev Babievf14f5262009-01-04 00:36:56 +01001091
Vivien Didelot30ba2fb2013-01-22 12:01:21 -05001092config HID_THINGM
1093 tristate "ThingM blink(1) USB RGB LED"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +01001094 depends on HID
Vivien Didelot30ba2fb2013-01-22 12:01:21 -05001095 depends on LEDS_CLASS
Heiner Kallweit38b09c02016-06-22 22:04:36 +02001096 select HID_LED
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001097 help
Heiner Kallweit38b09c02016-06-22 22:04:36 +02001098 Support for the ThingM blink(1) USB RGB LED. This driver has been
1099 merged into the generic hid led driver. Config symbol HID_THINGM
1100 just selects HID_LED and will be removed soon.
Vivien Didelot30ba2fb2013-01-22 12:01:21 -05001101
Jiri Kosina0f6f4312009-05-15 15:46:44 +02001102config HID_THRUSTMASTER
Jiri Kosina73d5e8f2010-05-21 13:15:17 +02001103 tristate "ThrustMaster devices support"
Jiri Kosinadfe74f52021-03-19 19:49:18 +01001104 depends on USB_HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001105 help
Dario Paganic49c3362021-01-31 10:00:45 +01001106 Say Y here if you have a THRUSTMASTER FireStore Dual Power 2,
1107 a THRUSTMASTER Ferrari GT Rumble Wheel or Thrustmaster FFB
1108 Wheel (T150RS, T300RS, T300 Ferrari Alcantara Edition, T500RS).
Jiri Kosina0f6f4312009-05-15 15:46:44 +02001109
1110config THRUSTMASTER_FF
1111 bool "ThrustMaster devices force feedback support"
1112 depends on HID_THRUSTMASTER
1113 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001114 help
Ruben Aos Garralda7a84b132009-06-29 09:41:29 +02001115 Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3,
1116 a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT
1117 Rumble Force or Force Feedback Wheel.
Jiri Slaby10e41a72008-09-18 12:23:31 +02001118
Bastien Nocera0edffe62016-11-15 13:02:05 +01001119config HID_UDRAW_PS3
1120 tristate "THQ PS3 uDraw tablet"
1121 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001122 help
Bastien Nocera0edffe62016-11-15 13:02:05 +01001123 Say Y here if you want to use the THQ uDraw gaming tablet for
1124 the PS3.
1125
Andrej Shadura42337b92019-04-01 14:42:00 +02001126config HID_U2FZERO
1127 tristate "U2F Zero LED and RNG support"
1128 depends on USB_HID
1129 depends on LEDS_CLASS
Mao Wenane252e0e02019-04-13 21:44:59 +08001130 depends on HW_RANDOM
Andrej Shadura42337b92019-04-01 14:42:00 +02001131 help
1132 Support for the LED of the U2F Zero device.
1133
1134 U2F Zero supports custom commands for blinking the LED
1135 and getting data from the internal hardware RNG.
1136 The internal hardware can be used to feed the enthropy pool.
1137
1138 U2F Zero only supports blinking its LED, so this driver doesn't
1139 allow setting the brightness to anything but 1, which will
Geert Uytterhoevenad81d1c2019-05-27 14:25:32 +02001140 trigger a single blink and immediately reset back to 0.
Andrej Shadura42337b92019-04-01 14:42:00 +02001141
Bastien Noceraca2dcd42009-05-11 17:18:12 +02001142config HID_WACOM
Benjamin Tissoires471d1712014-07-24 13:10:09 -07001143 tristate "Wacom Intuos/Graphire tablet support (USB)"
Arnd Bergmann9d142012017-07-28 15:18:00 +02001144 depends on USB_HID
Przemo Firszt59d23342010-03-15 19:16:23 +00001145 select POWER_SUPPLY
Benjamin Tissoires471d1712014-07-24 13:10:09 -07001146 select NEW_LEDS
1147 select LEDS_CLASS
Benjamin Tissoires34736aa2016-07-13 18:06:12 +02001148 select LEDS_TRIGGERS
Benjamin Tissoires471d1712014-07-24 13:10:09 -07001149 help
Benjamin Tissoires7403a6a2014-08-06 14:06:26 -07001150 Say Y here if you want to use the USB or BT version of the Wacom Intuos
Benjamin Tissoires471d1712014-07-24 13:10:09 -07001151 or Graphire tablet.
1152
1153 To compile this driver as a module, choose M here: the
1154 module will be called wacom.
Przemo Firszt59d23342010-03-15 19:16:23 +00001155
David Herrmannfb51b442011-07-05 13:45:08 +02001156config HID_WIIMOTE
David Herrmann92eda7e2013-05-05 23:12:45 +02001157 tristate "Nintendo Wii / Wii U peripherals"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +01001158 depends on HID
David Herrmann23a5a4a2011-08-17 11:43:22 +02001159 depends on LEDS_CLASS
David Herrmann6591d752011-09-06 13:50:39 +02001160 select POWER_SUPPLY
David Herrmannef6f4112011-12-07 21:33:59 +01001161 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001162 help
David Herrmann92eda7e2013-05-05 23:12:45 +02001163 Support for Nintendo Wii and Wii U Bluetooth peripherals. Supported
1164 devices are the Wii Remote and its extension devices, but also devices
1165 based on the Wii Remote like the Wii U Pro Controller or the
1166 Wii Balance Board.
David Herrmannfb51b442011-07-05 13:45:08 +02001167
David Herrmann92eda7e2013-05-05 23:12:45 +02001168 Support for all official Nintendo extensions is available, however, 3rd
1169 party extensions might not be supported. Please report these devices to:
1170 http://github.com/dvdhrm/xwiimote/issues
1171
1172 Other Nintendo Wii U peripherals that are IEEE 802.11 based (including
1173 the Wii U Gamepad) might be supported in the future. But currently
1174 support is limited to Bluetooth based devices.
1175
1176 If unsure, say N.
1177
1178 To compile this driver as a module, choose M here: the
1179 module will be called hid-wiimote.
David Herrmanncb992212011-11-17 14:12:01 +01001180
Olivier Scherlercb2c9e32013-07-27 19:20:02 +02001181config HID_XINMO
1182 tristate "Xin-Mo non-fully compliant devices"
1183 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001184 help
Olivier Scherlercb2c9e32013-07-27 19:20:02 +02001185 Support for Xin-Mo devices that are not fully compliant with the HID
Brian Norrise2c76a82014-06-10 14:35:36 -07001186 standard. Currently only supports the Xin-Mo Dual Arcade. Say Y here
Olivier Scherlercb2c9e32013-07-27 19:20:02 +02001187 if you have a Xin-Mo Dual Arcade controller.
1188
Jiri Kosina0f6f4312009-05-15 15:46:44 +02001189config HID_ZEROPLUS
Jiri Kosina73d5e8f2010-05-21 13:15:17 +02001190 tristate "Zeroplus based game controller support"
Benjamin Tissoiresd88142722013-02-25 11:31:46 +01001191 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001192 help
Jiri Slaby987fbc12008-09-18 12:23:32 +02001193 Say Y here if you have a Zeroplus based game controller.
1194
Jiri Kosina0f6f4312009-05-15 15:46:44 +02001195config ZEROPLUS_FF
1196 bool "Zeroplus based game controller force feedback support"
1197 depends on HID_ZEROPLUS
1198 select INPUT_FF_MEMLESS
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001199 help
Jiri Kosina0f6f4312009-05-15 15:46:44 +02001200 Say Y here if you have a Zeroplus based game controller and want
1201 to have force feedback support for it.
1202
Don Princea9885c82010-05-14 17:30:59 +01001203config HID_ZYDACRON
Jiri Kosina73d5e8f2010-05-21 13:15:17 +02001204 tristate "Zydacron remote control support"
Benjamin Tissoiresf3757ce2013-02-25 11:31:45 +01001205 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001206 help
Don Princea9885c82010-05-14 17:30:59 +01001207 Support for Zydacron remote control.
1208
srinivas pandruvada401ca242012-09-05 13:56:00 +01001209config HID_SENSOR_HUB
1210 tristate "HID Sensors framework support"
Chen Gang4732aee2014-06-10 20:04:58 +08001211 depends on HID && HAS_IOMEM
srinivas pandruvada401ca242012-09-05 13:56:00 +01001212 select MFD_CORE
1213 default n
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001214 help
srinivas pandruvada401ca242012-09-05 13:56:00 +01001215 Support for HID Sensor framework. This creates a MFD instance
1216 for a sensor hub and identifies all the sensors connected to it.
1217 Each sensor is registered as a MFD cell, so that sensor specific
1218 processing can be done in a separate driver. Each sensor
1219 drivers can use the service provided by this driver to register
1220 for events and handle data streams. Each sensor driver can format
1221 data and present to user mode using input or IIO interface.
1222
Srinivas Pandruvada4a7de052015-04-10 11:22:22 -07001223config HID_SENSOR_CUSTOM_SENSOR
1224 tristate "HID Sensors hub custom sensor support"
1225 depends on HID_SENSOR_HUB
1226 default n
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001227 help
Srinivas Pandruvada4a7de052015-04-10 11:22:22 -07001228 HID Sensor hub specification allows definition of some custom and
1229 generic sensors. Unlike other HID sensors, they can't be exported
1230 via Linux IIO because of custom fields. This is up to the manufacturer
1231 to decide how to interpret these special sensor ids and process in
1232 the user space. Currently some manufacturers are using these ids for
1233 sensor calibration and debugging other sensors. Manufacturers
Christophe JAILLET16863fb2020-04-12 11:07:43 +02001234 shouldn't use these special custom sensor ids to export any of the
Srinivas Pandruvada4a7de052015-04-10 11:22:22 -07001235 standard sensors.
1236 Select this config option for custom/generic sensor support.
1237
Masaki Ota25627562016-06-16 18:45:57 +09001238config HID_ALPS
1239 tristate "Alps HID device support"
1240 depends on HID
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001241 help
Masaki Ota25627562016-06-16 18:45:57 +09001242 Support for Alps I2C HID touchpads and StickPointer.
1243 Say Y here if you have a Alps touchpads over i2c-hid or usbhid
1244 and want support for its special functionalities.
1245
Rishi Gupta67a95c22020-01-28 09:48:57 +05301246config HID_MCP2221
1247 tristate "Microchip MCP2221 HID USB-to-I2C/SMbus host support"
1248 depends on USB_HID && I2C
Arnd Bergmann2465f0d2020-04-28 23:30:17 +02001249 depends on GPIOLIB
Masahiro Yamadaa7f7f622020-06-14 01:50:22 +09001250 help
Rishi Gupta67a95c22020-01-28 09:48:57 +05301251 Provides I2C and SMBUS host adapter functionality over USB-HID
1252 through MCP2221 device.
1253
1254 To compile this driver as a module, choose M here: the module
1255 will be called hid-mcp2221.ko.
1256
Jiri Slaby5f22a792008-05-16 11:49:19 +02001257endmenu
1258
Henrik Rydberg1f41a6a2012-06-25 16:55:41 +02001259endif # HID
1260
1261source "drivers/hid/usbhid/Kconfig"
1262
Benjamin Tissoires4a200c32012-11-12 15:42:59 +01001263source "drivers/hid/i2c-hid/Kconfig"
1264
Srinivas Pandruvada3703f532016-08-07 02:25:34 -07001265source "drivers/hid/intel-ish-hid/Kconfig"
1266
Sandeep Singh4f567b92020-10-10 01:31:36 +05301267source "drivers/hid/amd-sfh-hid/Kconfig"
1268
Maximilian Luzb05ff102021-03-10 23:53:28 +01001269source "drivers/hid/surface-hid/Kconfig"
1270
Henrik Rydberg1f41a6a2012-06-25 16:55:41 +02001271endmenu