1ec8f24b7SThomas Gleixner# SPDX-License-Identifier: GPL-2.0-only 263f3861dSJiri Kosina# 363f3861dSJiri Kosina# HID driver configuration 463f3861dSJiri Kosina# 525621bccSBenjamin Tissoiresmenuconfig HID_SUPPORT 625621bccSBenjamin Tissoires bool "HID bus support" 725621bccSBenjamin Tissoires default y 863f3861dSJiri Kosina depends on INPUT 925621bccSBenjamin Tissoires help 1025621bccSBenjamin Tissoires This option adds core support for human interface device (HID). 1125621bccSBenjamin Tissoires You will also need drivers from the following menu to make use of it. 1225621bccSBenjamin Tissoires 1325621bccSBenjamin Tissoiresif HID_SUPPORT 1463f3861dSJiri Kosina 1563f3861dSJiri Kosinaconfig HID 1625621bccSBenjamin Tissoires tristate "HID bus core support" 1763f3861dSJiri Kosina default y 187e41b2e9SBenjamin Tissoires depends on INPUT 19a7f7f624SMasahiro Yamada help 2069e4d948SJiri Kosina A human interface device (HID) is a type of computer device that 2169e4d948SJiri Kosina interacts directly with and takes input from humans. The term "HID" 2269e4d948SJiri Kosina most commonly used to refer to the USB-HID specification, but other 2369e4d948SJiri Kosina devices (such as, but not strictly limited to, Bluetooth) are 2469e4d948SJiri Kosina designed using HID specification (this involves certain keyboards, 251f41a6a9SHenrik Rydberg mice, tablets, etc). This option adds the HID bus to the kernel, 261f41a6a9SHenrik Rydberg together with generic HID layer code. The HID devices are added and 271f41a6a9SHenrik Rydberg removed from the HID bus by the transport-layer drivers, such as 281f41a6a9SHenrik Rydberg usbhid (USB_HID) and hidp (BT_HIDP). 2969e4d948SJiri Kosina 30b1631b84SAlexander A. Klimov For docs and specs, see https://www.usb.org/developers/hidpage/ 3169e4d948SJiri Kosina 32205adbecSPavel Machek If unsure, say Y. 3363f3861dSJiri Kosina 341f41a6a9SHenrik Rydbergif HID 351f41a6a9SHenrik Rydberg 364f5ca836SJeremy Fitzhardingeconfig HID_BATTERY_STRENGTH 37692d30d6SJiri Kosina bool "Battery level reporting for HID devices" 38060c9982SDaniel Nicoletti select POWER_SUPPLY 392198edddSJosh Boyer default n 40a7f7f624SMasahiro Yamada help 41692d30d6SJiri Kosina This option adds support of reporting battery strength (for HID devices 42692d30d6SJiri Kosina that support this feature) through power_supply class so that userspace 43692d30d6SJiri Kosina tools, such as upower, can display it. 444f5ca836SJeremy Fitzhardinge 4586166b7bSJiri Kosinaconfig HIDRAW 4686166b7bSJiri Kosina bool "/dev/hidraw raw HID device support" 47a7f7f624SMasahiro Yamada help 4886166b7bSJiri Kosina Say Y here if you want to support HID devices (from the USB 4986166b7bSJiri Kosina specification standpoint) that aren't strictly user interface 5016863fbcSChristophe JAILLET devices, like monitor controls and Uninterruptible Power Supplies. 5186166b7bSJiri Kosina 5286166b7bSJiri Kosina This module supports these devices separately using a separate 5386166b7bSJiri Kosina event interface on /dev/hidraw. 5486166b7bSJiri Kosina 5586166b7bSJiri Kosina There is also a /dev/hiddev configuration option in the USB HID 5686166b7bSJiri Kosina configuration menu. In comparison to hiddev, this device does not process 5786166b7bSJiri Kosina the hid events at all (no parsing, no lookups). This lets applications 5886166b7bSJiri Kosina to work on raw hid events when they want to, and avoid using transport-specific 5986166b7bSJiri Kosina userspace libhid/libusb libraries. 6086166b7bSJiri Kosina 6186166b7bSJiri Kosina If unsure, say Y. 6286166b7bSJiri Kosina 631ccd7a2aSDavid Herrmannconfig UHID 641ccd7a2aSDavid Herrmann tristate "User-space I/O driver support for HID subsystem" 651ccd7a2aSDavid Herrmann default n 66a7f7f624SMasahiro Yamada help 671ccd7a2aSDavid Herrmann Say Y here if you want to provide HID I/O Drivers from user-space. 681ccd7a2aSDavid Herrmann This allows to write I/O drivers in user-space and feed the data from 691ccd7a2aSDavid Herrmann the device into the kernel. The kernel parses the HID reports, loads the 701ccd7a2aSDavid Herrmann corresponding HID Device Driver or provides input devices on top of your 711ccd7a2aSDavid Herrmann user-space device. 721ccd7a2aSDavid Herrmann 731ccd7a2aSDavid Herrmann This driver cannot be used to parse HID-reports in user-space and write 741ccd7a2aSDavid Herrmann special HID-drivers. You should use hidraw for that. 751ccd7a2aSDavid Herrmann Instead, this driver allows to write the transport-layer driver in 761ccd7a2aSDavid Herrmann user-space like USB-HID and Bluetooth-HID do in kernel-space. 771ccd7a2aSDavid Herrmann 781ccd7a2aSDavid Herrmann If unsure, say N. 791ccd7a2aSDavid Herrmann 801ccd7a2aSDavid Herrmann To compile this driver as a module, choose M here: the 811ccd7a2aSDavid Herrmann module will be called uhid. 821ccd7a2aSDavid Herrmann 838215d557SHenrik Rydbergconfig HID_GENERIC 848215d557SHenrik Rydberg tristate "Generic HID driver" 851f41a6a9SHenrik Rydberg default HID 86a7f7f624SMasahiro Yamada help 871f41a6a9SHenrik Rydberg Support for generic devices on the HID bus. This includes most 881f41a6a9SHenrik Rydberg keyboards and mice, joysticks, tablets and digitizers. 898215d557SHenrik Rydberg 908215d557SHenrik Rydberg To compile this driver as a module, choose M here: the module 918215d557SHenrik Rydberg will be called hid-generic. 928215d557SHenrik Rydberg 938215d557SHenrik Rydberg If unsure, say Y. 948215d557SHenrik Rydberg 951f41a6a9SHenrik Rydbergmenu "Special HID drivers" 961f41a6a9SHenrik Rydberg 9714a21cd4SJiri Slabyconfig HID_A4TECH 989858c74cSMateusz Jończyk tristate "A4TECH mice" 996a108a14SDavid Rientjes default !EXPERT 100a7f7f624SMasahiro Yamada help 1019858c74cSMateusz Jończyk Support for some A4TECH mice with two scroll wheels. 10214a21cd4SJiri Slaby 103c846fe9cSMartyn Welchconfig HID_ACCUTOUCH 104c846fe9cSMartyn Welch tristate "Accutouch touch device" 105c846fe9cSMartyn Welch depends on USB_HID 106a7f7f624SMasahiro Yamada help 107c846fe9cSMartyn Welch This selects a driver for the Accutouch 2216 touch controller. 108c846fe9cSMartyn Welch 109c846fe9cSMartyn Welch The driver works around a problem in the reported device capabilities 110c846fe9cSMartyn Welch which causes userspace to detect the device as a mouse rather than 111c846fe9cSMartyn Welch a touchscreen. 112c846fe9cSMartyn Welch 113c846fe9cSMartyn Welch Say Y here if you have a Accutouch 2216 touch controller. 114c846fe9cSMartyn Welch 1150ae43810SDmitry Torokhovconfig HID_ACRUX 1160ae43810SDmitry Torokhov tristate "ACRUX game controller support" 117a7f7f624SMasahiro Yamada help 1180ae43810SDmitry Torokhov Say Y here if you want to enable support for ACRUX game controllers. 1190ae43810SDmitry Torokhov 1200ae43810SDmitry Torokhovconfig HID_ACRUX_FF 121364b936fSSergei Kolzun bool "ACRUX force feedback support" 1220ae43810SDmitry Torokhov depends on HID_ACRUX 123c0dbcc33SSergei Kolzun select INPUT_FF_MEMLESS 124a7f7f624SMasahiro Yamada help 125c0dbcc33SSergei Kolzun Say Y here if you want to enable force feedback support for ACRUX 126c0dbcc33SSergei Kolzun game controllers. 127c0dbcc33SSergei Kolzun 1288c19a515SJiri Slabyconfig HID_APPLE 1297af05e73SJean Delvare tristate "Apple {i,Power,Mac}Books" 130ed9f4f96SJiri Kosina depends on LEDS_CLASS 131ed9f4f96SJiri Kosina depends on NEW_LEDS 1326a108a14SDavid Rientjes default !EXPERT 133a7f7f624SMasahiro Yamada help 1348c19a515SJiri Slaby Support for some Apple devices which less or more break 1358c19a515SJiri Slaby HID specification. 1368c19a515SJiri Slaby 137f0bd8e43SJiri Kosina Say Y here if you want support for keyboards of Apple iBooks, PowerBooks, 138f0bd8e43SJiri Kosina MacBooks, MacBook Pros and Apple Aluminum. 1398c19a515SJiri Slaby 1409a4a5574SBenjamin Tissoiresconfig HID_APPLEIR 1419a4a5574SBenjamin Tissoires tristate "Apple infrared receiver" 1429a4a5574SBenjamin Tissoires depends on (USB_HID) 143a7f7f624SMasahiro Yamada help 1449a4a5574SBenjamin Tissoires Support for Apple infrared remote control. All the Apple computers from 1459a4a5574SBenjamin Tissoires 2005 onwards include such a port, except the unibody Macbook (2009), 1469a4a5574SBenjamin Tissoires and Mac Pros. This receiver is also used in the Apple TV set-top box 1479a4a5574SBenjamin Tissoires prior to the 2010 model. 1489a4a5574SBenjamin Tissoires 1499a4a5574SBenjamin Tissoires Say Y here if you want support for Apple infrared remote control. 1509a4a5574SBenjamin Tissoires 151eeb01a57SYusuke Fujimakiconfig HID_ASUS 152eeb01a57SYusuke Fujimaki tristate "Asus" 153c4f0126dSHans de Goede depends on USB_HID 154af22a610SCarlo Caione depends on LEDS_CLASS 1553b692c55SDaniel Drake depends on ASUS_WMI || ASUS_WMI=n 156a23eab89SArnd Bergmann select POWER_SUPPLY 157a7f7f624SMasahiro Yamada help 1581caccc25SChris Chiu Support for Asus notebook built-in keyboard and touchpad via i2c, and 1591caccc25SChris Chiu the Asus Republic of Gamers laptop keyboard special keys. 160b94f7d5dSYusuke Fujimaki 161b94f7d5dSYusuke Fujimaki Supported devices: 162b94f7d5dSYusuke Fujimaki - EeeBook X205TA 163b94f7d5dSYusuke Fujimaki - VivoBook E200HA 1641caccc25SChris Chiu - GL553V series 1651caccc25SChris Chiu - GL753V series 166eeb01a57SYusuke Fujimaki 167212da74dSJosenivaldo Benito Juniorconfig HID_AUREAL 168212da74dSJosenivaldo Benito Junior tristate "Aureal" 169a7f7f624SMasahiro Yamada help 170212da74dSJosenivaldo Benito Junior Support for Aureal Cy se W-01RN Remote Controller and other Aureal derived remotes. 171212da74dSJosenivaldo Benito Junior 172b5635b12SJiri Slabyconfig HID_BELKIN 1737af05e73SJean Delvare tristate "Belkin Flip KVM and Wireless keyboard" 1746a108a14SDavid Rientjes default !EXPERT 175a7f7f624SMasahiro Yamada help 176b5635b12SJiri Slaby Support for Belkin Flip KVM and Wireless keyboard. 177b5635b12SJiri Slaby 178fc38a8a6SHuang Boconfig HID_BETOP_FF 179fc38a8a6SHuang Bo tristate "Betop Production Inc. force feedback support" 180fc38a8a6SHuang Bo depends on USB_HID 181fc38a8a6SHuang Bo select INPUT_FF_MEMLESS 182a7f7f624SMasahiro Yamada help 183fc38a8a6SHuang Bo Say Y here if you want to enable force feedback support for devices by 184fc38a8a6SHuang Bo BETOP Production Ltd. 185fc38a8a6SHuang Bo Currently the following devices are known to be supported: 186fc38a8a6SHuang Bo - BETOP 2185 PC & BFM MODE 187fc38a8a6SHuang Bo 188256a90edSHanno Zullaconfig HID_BIGBEN_FF 189256a90edSHanno Zulla tristate "BigBen Interactive Kids' gamepad support" 190256a90edSHanno Zulla depends on USB_HID 191256a90edSHanno Zulla depends on NEW_LEDS 192256a90edSHanno Zulla depends on LEDS_CLASS 193256a90edSHanno Zulla select INPUT_FF_MEMLESS 194256a90edSHanno Zulla help 195256a90edSHanno Zulla Support for the "Kid-friendly Wired Controller" PS3OFMINIPAD 196256a90edSHanno Zulla gamepad made by BigBen Interactive, originally sold as a PS3 197256a90edSHanno Zulla accessory. This driver fixes input mapping and adds support for 198256a90edSHanno Zulla force feedback effects and LEDs on the device. 199256a90edSHanno Zulla 2003b239cd7SJiri Slabyconfig HID_CHERRY 2017af05e73SJean Delvare tristate "Cherry Cymotion keyboard" 2026a108a14SDavid Rientjes default !EXPERT 203a7f7f624SMasahiro Yamada help 204f0bd8e43SJiri Kosina Support for Cherry Cymotion keyboard. 2053b239cd7SJiri Slaby 206fcfacfd3SJiri Slabyconfig HID_CHICONY 207f2f10b7eSDaniel Drake tristate "Chicony devices" 208d080811fSGreg Kroah-Hartman depends on USB_HID 2096a108a14SDavid Rientjes default !EXPERT 210a7f7f624SMasahiro Yamada help 211f2f10b7eSDaniel Drake Support for Chicony Tactical pad and special keys on Chicony keyboards. 212fcfacfd3SJiri Slaby 2136f78193eSClément Vuchenerconfig HID_CORSAIR 2146f78193eSClément Vuchener tristate "Corsair devices" 215f237d902SGreg Kroah-Hartman depends on USB_HID && LEDS_CLASS 216*6ea2a6fdSStuart Hayhurst select POWER_SUPPLY 217a7f7f624SMasahiro Yamada help 2186f78193eSClément Vuchener Support for Corsair devices that are not fully compliant with the 2196f78193eSClément Vuchener HID standard. 220*6ea2a6fdSStuart Hayhurst Support for Corsair Void headsets. 2216f78193eSClément Vuchener 2226f78193eSClément Vuchener Supported devices: 2236f78193eSClément Vuchener - Vengeance K90 22401adc47eSOscar Campos - Scimitar PRO RGB 225*6ea2a6fdSStuart Hayhurst - Corsair Void headsets 2266f78193eSClément Vuchener 227b8e759b8SDaniel M. Lambeaconfig HID_COUGAR 228b8e759b8SDaniel M. Lambea tristate "Cougar devices" 229b8e759b8SDaniel M. Lambea help 230b8e759b8SDaniel M. Lambea Support for Cougar devices that are not fully compliant with the 231b8e759b8SDaniel M. Lambea HID standard. 232b8e759b8SDaniel M. Lambea 233b8e759b8SDaniel M. Lambea Supported devices: 234b8e759b8SDaniel M. Lambea - Cougar 500k Gaming Keyboard 235b8e759b8SDaniel M. Lambea 236161f62cdSAlex Henrieconfig HID_MACALLY 237161f62cdSAlex Henrie tristate "Macally devices" 238161f62cdSAlex Henrie help 239161f62cdSAlex Henrie Support for Macally devices that are not fully compliant with the 240161f62cdSAlex Henrie HID standard. 241161f62cdSAlex Henrie 242161f62cdSAlex Henrie supported devices: 243161f62cdSAlex Henrie - Macally ikey keyboard 244161f62cdSAlex Henrie 2453a370ca1SDon Princeconfig HID_PRODIKEYS 24695736de9SJiri Kosina tristate "Prodikeys PC-MIDI Keyboard support" 24730cb3c2aSGreg Kroah-Hartman depends on USB_HID && SND 2483a370ca1SDon Prince select SND_RAWMIDI 249a7f7f624SMasahiro Yamada help 2503a370ca1SDon Prince Support for Prodikeys PC-MIDI Keyboard device support. 2513a370ca1SDon Prince Say Y here to enable support for this device. 2523a370ca1SDon Prince - Prodikeys PC-MIDI keyboard. 2533a370ca1SDon Prince The Prodikeys PC-MIDI acts as a USB Audio device, with one MIDI 2543a370ca1SDon Prince input and one MIDI output. These MIDI jacks appear as 2553a370ca1SDon Prince a sound "card" in the ALSA sound system. 2563a370ca1SDon Prince Note: if you say N here, this device will still function as a basic 2573a370ca1SDon Prince multimedia keyboard, but will lack support for the musical keyboard 2583a370ca1SDon Prince and some additional multimedia keys. 2593a370ca1SDon Prince 260ad8ddc57SBen Chenconfig HID_CMEDIA 261bebf8820SThomas Weißschuh tristate "CMedia audio chips" 262a7f7f624SMasahiro Yamada help 263bebf8820SThomas Weißschuh Support for CMedia CM6533 HID audio jack controls 264bebf8820SThomas Weißschuh and HS100B mute buttons. 265ad8ddc57SBen Chen 266e932d817SDavid Barksdaleconfig HID_CP2112 267e932d817SDavid Barksdale tristate "Silicon Labs CP2112 HID USB-to-SMBus Bridge support" 268cde3076bSSébastien Szymanski depends on USB_HID && HIDRAW && I2C && GPIOLIB 269ac34b970SBartosz Golaszewski select GPIOLIB_IRQCHIP 270a7f7f624SMasahiro Yamada help 271e932d817SDavid Barksdale Support for Silicon Labs CP2112 HID USB to SMBus Master Bridge. 272e932d817SDavid Barksdale This is a HID device driver which registers as an i2c adapter 273e932d817SDavid Barksdale and gpiochip to expose these functions of the CP2112. The 274e932d817SDavid Barksdale customizable USB descriptor fields are exposed as sysfs attributes. 275e932d817SDavid Barksdale 276f7c4f737SBastien Noceraconfig HID_CREATIVE_SB0540 277f7c4f737SBastien Nocera tristate "Creative SB0540 infrared receiver" 278f7c4f737SBastien Nocera depends on USB_HID 279f7c4f737SBastien Nocera help 280f7c4f737SBastien Nocera Support for Creative infrared SB0540-compatible remote controls, such 281f7c4f737SBastien Nocera as the RM-1500 and RM-1800 remotes. 282f7c4f737SBastien Nocera 283f7c4f737SBastien Nocera Say Y here if you want support for Creative SB0540 infrared receiver. 284f7c4f737SBastien Nocera 2850f221320SJiri Slabyconfig HID_CYPRESS 2867af05e73SJean Delvare tristate "Cypress mouse and barcode readers" 2876a108a14SDavid Rientjes default !EXPERT 288a7f7f624SMasahiro Yamada help 289f0bd8e43SJiri Kosina Support for cypress mouse and barcode readers. 2900f221320SJiri Slaby 2910f6f4319SJiri Kosinaconfig HID_DRAGONRISE 292a1043044SBorislav Petkov tristate "DragonRise Inc. game controller" 293a7f7f624SMasahiro Yamada help 2940f6f4319SJiri Kosina Say Y here if you have DragonRise Inc. game controllers. 295b4a65f4eSNikolai Kondrashov These might be branded as: 296b4a65f4eSNikolai Kondrashov - Tesun USB-703 297b4a65f4eSNikolai Kondrashov - Media-tech MT1504 "Rogue" 298b4a65f4eSNikolai Kondrashov - DVTech JS19 "Gear" 299b4a65f4eSNikolai Kondrashov - Defender Game Master 3000f6f4319SJiri Kosina 3010f6f4319SJiri Kosinaconfig DRAGONRISE_FF 302a1043044SBorislav Petkov bool "DragonRise Inc. force feedback" 3030f6f4319SJiri Kosina depends on HID_DRAGONRISE 3043f866fbdSRichard Walmsley select INPUT_FF_MEMLESS 305a7f7f624SMasahiro Yamada help 3063f866fbdSRichard Walmsley Say Y here if you want to enable force feedback support for DragonRise Inc. 3073f866fbdSRichard Walmsley game controllers. 3083f866fbdSRichard Walmsley 30904561c5aSIgnaz Forsterconfig HID_EMS_FF 31004561c5aSIgnaz Forster tristate "EMS Production Inc. force feedback support" 31104561c5aSIgnaz Forster select INPUT_FF_MEMLESS 312a7f7f624SMasahiro Yamada help 31304561c5aSIgnaz Forster Say Y here if you want to enable force feedback support for devices by 31404561c5aSIgnaz Forster EMS Production Ltd. 31504561c5aSIgnaz Forster Currently the following devices are known to be supported: 31604561c5aSIgnaz Forster - Trio Linker Plus II 31704561c5aSIgnaz Forster 3189a6a4193SAlexandrov Stansilavconfig HID_ELAN 3199a6a4193SAlexandrov Stansilav tristate "ELAN USB Touchpad Support" 3209a6a4193SAlexandrov Stansilav depends on LEDS_CLASS && USB_HID 321a7f7f624SMasahiro Yamada help 3229a6a4193SAlexandrov Stansilav Say Y to enable support for the USB ELAN touchpad 3239a6a4193SAlexandrov Stansilav Currently the following devices are known to be supported: 3249a6a4193SAlexandrov Stansilav - HP Pavilion X2 10-p0XX. 3259a6a4193SAlexandrov Stansilav 32664b386eaSRichard Nauberconfig HID_ELECOM 3270bb7a37fSDiego Elio Pettenò tristate "ELECOM HID devices" 328a7f7f624SMasahiro Yamada help 3290bb7a37fSDiego Elio Pettenò Support for ELECOM devices: 3300bb7a37fSDiego Elio Pettenò - BM084 Bluetooth Mouse 33179837edeSTomasz Kramkowski - EX-G Trackballs (M-XT3DRBK, M-XT3URBK) 33279837edeSTomasz Kramkowski - DEFT Trackballs (M-DT1DRBK, M-DT1URBK, M-DT2DRBK, M-DT2URBK) 33379837edeSTomasz Kramkowski - HUGE Trackballs (M-HT1DRBK, M-HT1URBK) 33464b386eaSRichard Nauber 335d23efc19SJiri Slabyconfig HID_ELO 336d23efc19SJiri Slaby tristate "ELO USB 4000/4500 touchscreen" 337d23efc19SJiri Slaby depends on USB_HID 338a7f7f624SMasahiro Yamada help 339d23efc19SJiri Slaby Support for the ELO USB 4000/4500 touchscreens. Note that this is for 340d23efc19SJiri Slaby different devices than those handled by CONFIG_TOUCHSCREEN_USB_ELO. 341d23efc19SJiri Slaby 342f5cd71cfSPhilippe Valemboisconfig HID_EVISION 343f5cd71cfSPhilippe Valembois tristate "EVision Keyboards Support" 344f5cd71cfSPhilippe Valembois depends on HID 345f5cd71cfSPhilippe Valembois help 346f5cd71cfSPhilippe Valembois Support for some EVision keyboards. Note that this is needed only when 347f5cd71cfSPhilippe Valembois applying customization using userspace programs. 348f5cd71cfSPhilippe Valembois 3491f243e30SJiri Slabyconfig HID_EZKEY 3507af05e73SJean Delvare tristate "Ezkey BTC 8193 keyboard" 3516a108a14SDavid Rientjes default !EXPERT 352a7f7f624SMasahiro Yamada help 353f0bd8e43SJiri Kosina Support for Ezkey BTC 8193 keyboard. 3541f243e30SJiri Slaby 3556a82582dSMichael Zaidmanconfig HID_FT260 3566a82582dSMichael Zaidman tristate "FTDI FT260 USB HID to I2C host support" 3576a82582dSMichael Zaidman depends on USB_HID && HIDRAW && I2C 3586a82582dSMichael Zaidman help 3596a82582dSMichael Zaidman Provides I2C host adapter functionality over USB-HID through FT260 3606a82582dSMichael Zaidman device. The customizable USB descriptor fields are exposed as sysfs 3616a82582dSMichael Zaidman attributes. 3626a82582dSMichael Zaidman 3636a82582dSMichael Zaidman To compile this driver as a module, choose M here: the module 3646a82582dSMichael Zaidman will be called hid-ft260. 3656a82582dSMichael Zaidman 366931830aaSBenjamin Tissoiresconfig HID_GEMBIRD 367931830aaSBenjamin Tissoires tristate "Gembird Joypad" 368a7f7f624SMasahiro Yamada help 369931830aaSBenjamin Tissoires Support for Gembird JPD-DualForce 2. 370931830aaSBenjamin Tissoires 37134fc1322SPetri Gyntherconfig HID_GFRM 37234fc1322SPetri Gynther tristate "Google Fiber TV Box remote control support" 373a7f7f624SMasahiro Yamada help 37434fc1322SPetri Gynther Support for Google Fiber TV Box remote controls 37534fc1322SPetri Gynther 37677a36a3aSSamuel Čavojconfig HID_GLORIOUS 37777a36a3aSSamuel Čavoj tristate "Glorious PC Gaming Race mice" 37877a36a3aSSamuel Čavoj help 37977a36a3aSSamuel Čavoj Support for Glorious PC Gaming Race mice such as 38077a36a3aSSamuel Čavoj the Glorious Model O, O- and D. 38177a36a3aSSamuel Čavoj 382d946e65eSAnssi Hannulaconfig HID_HOLTEK 383ff9bf5a2STom Harwood tristate "Holtek HID devices" 384d946e65eSAnssi Hannula depends on USB_HID 385a7f7f624SMasahiro Yamada help 386ff9bf5a2STom Harwood Support for Holtek based devices: 387ff9bf5a2STom Harwood - Holtek On Line Grip based game controller 388ff9bf5a2STom Harwood - Trust GXT 18 Gaming Keyboard 38941de326eSChristian Ohm - Sharkoon Drakonia / Perixx MX-2000 gaming mice 390d4f51890SChristian Ohm - Tracer Sniper TRM-503 / NOVA Gaming Slider X200 / 391d4f51890SChristian Ohm Zalman ZM-GM1 3927da7cbbbSAnders F. U. Kiær - SHARKOON DarkGlider Gaming mouse 393f1a4914bSAnders F. U. Kiær - LEETGION Hellion Gaming Mouse 394d946e65eSAnssi Hannula 395d946e65eSAnssi Hannulaconfig HOLTEK_FF 396d946e65eSAnssi Hannula bool "Holtek On Line Grip force feedback support" 397d946e65eSAnssi Hannula depends on HID_HOLTEK 398d946e65eSAnssi Hannula select INPUT_FF_MEMLESS 399a7f7f624SMasahiro Yamada help 400d946e65eSAnssi Hannula Say Y here if you have a Holtek On Line Grip based game controller 401d946e65eSAnssi Hannula and want to have force feedback support for it. 402d946e65eSAnssi Hannula 40333bbe04aSStephen Boydconfig HID_VIVALDI_COMMON 40433bbe04aSStephen Boyd tristate 40533bbe04aSStephen Boyd help 40633bbe04aSStephen Boyd ChromeOS Vivaldi HID parsing support library. This is a hidden 40733bbe04aSStephen Boyd option so that drivers can use common code to parse the HID 40833bbe04aSStephen Boyd descriptors for vivaldi function row keymap. 40933bbe04aSStephen Boyd 41075e16c8cSCharles Wangconfig HID_GOODIX_SPI 41175e16c8cSCharles Wang tristate "Goodix GT7986U SPI HID touchscreen" 41275e16c8cSCharles Wang depends on SPI_MASTER 41375e16c8cSCharles Wang help 41475e16c8cSCharles Wang Support for Goodix GT7986U SPI HID touchscreen device. 41575e16c8cSCharles Wang 416bc774b8cSWei-Ning Huangconfig HID_GOOGLE_HAMMER 417bc774b8cSWei-Ning Huang tristate "Google Hammer Keyboard" 418a9d67299SStephen Boyd select HID_VIVALDI_COMMON 419a9d67299SStephen Boyd select INPUT_VIVALDIFMAP 42047f11e0bSEnric Balletbo i Serra depends on USB_HID && LEDS_CLASS && CROS_EC 421a7f7f624SMasahiro Yamada help 422bc774b8cSWei-Ning Huang Say Y here if you have a Google Hammer device. 423bc774b8cSWei-Ning Huang 42424175157SFabio Baltiericonfig HID_GOOGLE_STADIA_FF 42524175157SFabio Baltieri tristate "Google Stadia force feedback" 42624175157SFabio Baltieri select INPUT_FF_MEMLESS 42724175157SFabio Baltieri help 42824175157SFabio Baltieri Say Y here if you want to enable force feedback support for the Google 42924175157SFabio Baltieri Stadia controller. 43024175157SFabio Baltieri 43114c9c014SSean O'Brienconfig HID_VIVALDI 43214c9c014SSean O'Brien tristate "Vivaldi Keyboard" 43333bbe04aSStephen Boyd select HID_VIVALDI_COMMON 43445ceaf14SStephen Boyd select INPUT_VIVALDIFMAP 43514c9c014SSean O'Brien help 43614c9c014SSean O'Brien Say Y here if you want to enable support for Vivaldi keyboards. 43714c9c014SSean O'Brien 43814c9c014SSean O'Brien Vivaldi keyboards use a vendor-specific (Google) HID usage to report 43914c9c014SSean O'Brien how the keys in the top row are physically ordered. 44014c9c014SSean O'Brien 441f471d948SJanne Kanniainenconfig HID_GT683R 442f471d948SJanne Kanniainen tristate "MSI GT68xR LED support" 443f471d948SJanne Kanniainen depends on LEDS_CLASS && USB_HID 444a7f7f624SMasahiro Yamada help 445f471d948SJanne Kanniainen Say Y here if you want to enable support for the three MSI GT68xR LEDs 446f471d948SJanne Kanniainen 447f471d948SJanne Kanniainen This driver support following modes: 448f471d948SJanne Kanniainen - Normal: LEDs are fully on when enabled 449f471d948SJanne Kanniainen - Audio: LEDs brightness depends on sound level 450f471d948SJanne Kanniainen - Breathing: LEDs brightness varies at human breathing rate 451f471d948SJanne Kanniainen 452f471d948SJanne Kanniainen Currently the following devices are know to be supported: 453f471d948SJanne Kanniainen - MSI GT683R 454f471d948SJanne Kanniainen 455177900e8SJiri Kosinaconfig HID_KEYTOUCH 4563d366e28SStephen Boyd tristate "Keytouch HID devices" 457a7f7f624SMasahiro Yamada help 458177900e8SJiri Kosina Support for Keytouch HID devices not fully compliant with 459177900e8SJiri Kosina the specification. Currently supported: 460177900e8SJiri Kosina - Keytouch IEC 60945 461177900e8SJiri Kosina 46279422741SJiri Kosinaconfig HID_KYE 46322ca20b2SNikolai Kondrashov tristate "KYE/Genius devices" 464a7f7f624SMasahiro Yamada help 46522ca20b2SNikolai Kondrashov Support for KYE/Genius devices not fully compliant with HID standard: 46622ca20b2SNikolai Kondrashov - Ergo Mouse 46722ca20b2SNikolai Kondrashov - EasyPen i405X tablet 46822ca20b2SNikolai Kondrashov - MousePen i608X tablet 46922ca20b2SNikolai Kondrashov - EasyPen M610X tablet 47079422741SJiri Kosina 471f8a489ccSNikolai Kondrashovconfig HID_UCLOGIC 472f36ee074SJiri Kosina tristate "UC-Logic" 473bbb2d8a8SBenjamin Tissoires depends on USB_HID 474a7f7f624SMasahiro Yamada help 47508177f40SNikolai Kondrashov Support for UC-Logic and Huion tablets. 476f8a489ccSNikolai Kondrashov 47772a46344SNikolai Kondrashovconfig HID_WALTOP 47872a46344SNikolai Kondrashov tristate "Waltop" 479a7f7f624SMasahiro Yamada help 48072a46344SNikolai Kondrashov Support for Waltop tablets. 48172a46344SNikolai Kondrashov 4827c2af0a1SNikolai Kondrashovconfig HID_VIEWSONIC 4837c2af0a1SNikolai Kondrashov tristate "ViewSonic/Signotec" 4847c2af0a1SNikolai Kondrashov help 4857c2af0a1SNikolai Kondrashov Support for ViewSonic/Signotec PD1011 signature pad. 4867c2af0a1SNikolai Kondrashov 4872c5e8e61SMarcus Folkessonconfig HID_VRC2 4882c5e8e61SMarcus Folkesson tristate "VRC-2 Car Controller" 4892c5e8e61SMarcus Folkesson depends on HID 4902c5e8e61SMarcus Folkesson help 4912c5e8e61SMarcus Folkesson Support for VRC-2 which is a 2-axis controller often used in 4922c5e8e61SMarcus Folkesson car simulators. 4932c5e8e61SMarcus Folkesson 4942c5e8e61SMarcus Folkesson To compile this driver as a module, choose M here: the 4952c5e8e61SMarcus Folkesson module will be called hid-vrc2. 4962c5e8e61SMarcus Folkesson 49795157723SIlya Skriblovskyconfig HID_XIAOMI 49895157723SIlya Skriblovsky tristate "Xiaomi" 49995157723SIlya Skriblovsky help 50095157723SIlya Skriblovsky Adds support for side buttons of Xiaomi Mi Dual Mode Wireless 50195157723SIlya Skriblovsky Mouse Silent Edition. 50295157723SIlya Skriblovsky 503949f8fefSJiri Slabyconfig HID_GYRATION 504a1043044SBorislav Petkov tristate "Gyration remote control" 505a7f7f624SMasahiro Yamada help 506f0bd8e43SJiri Kosina Support for Gyration remote control. 507949f8fefSJiri Slaby 5084ddfe028SBastien Noceraconfig HID_ICADE 5094ddfe028SBastien Nocera tristate "ION iCade arcade controller" 510a7f7f624SMasahiro Yamada help 5114ddfe028SBastien Nocera Support for the ION iCade arcade controller to work as a joystick. 5124ddfe028SBastien Nocera 5134ddfe028SBastien Nocera To compile this driver as a module, choose M here: the 5144ddfe028SBastien Nocera module will be called hid-icade. 5154ddfe028SBastien Nocera 516f1918be1SHans de Goedeconfig HID_ITE 517f1918be1SHans de Goede tristate "ITE devices" 518f1918be1SHans de Goede default !EXPERT 519a7f7f624SMasahiro Yamada help 520f1918be1SHans de Goede Support for ITE devices not fully compliant with HID standard. 521f1918be1SHans de Goede 52219ca2827SNiels Skou Olsenconfig HID_JABRA 52319ca2827SNiels Skou Olsen tristate "Jabra USB HID Driver" 524a7f7f624SMasahiro Yamada help 52519ca2827SNiels Skou Olsen Support for Jabra USB HID devices. 52619ca2827SNiels Skou Olsen 52719ca2827SNiels Skou Olsen Prevents mapping of vendor defined HID usages to input events. Without 52819ca2827SNiels Skou Olsen this driver HID reports from Jabra devices may incorrectly be seen as 52919ca2827SNiels Skou Olsen mouse button events. 53019ca2827SNiels Skou Olsen Say M here if you may ever plug in a Jabra USB device. 53119ca2827SNiels Skou Olsen 532711a680eSBruno Premontconfig HID_TWINHAN 533a1043044SBorislav Petkov tristate "Twinhan IR remote control" 534a7f7f624SMasahiro Yamada help 535711a680eSBruno Premont Support for Twinhan IR remote control. 536711a680eSBruno Premont 537fdf93aa3SJiri Kosinaconfig HID_KENSINGTON 5387af05e73SJean Delvare tristate "Kensington Slimblade Trackball" 5396a108a14SDavid Rientjes default !EXPERT 540a7f7f624SMasahiro Yamada help 541fdf93aa3SJiri Kosina Support for Kensington Slimblade Trackball. 542fdf93aa3SJiri Kosina 54375b07022SChris Schlundconfig HID_LCPOWER 54475b07022SChris Schlund tristate "LC-Power" 545a7f7f624SMasahiro Yamada help 54675b07022SChris Schlund Support for LC-Power RC1000MCE RF remote control. 54775b07022SChris Schlund 5486c7ad07eSHeiner Kallweitconfig HID_LED 54926423b84SJiri Kosina tristate "Simple RGB LED support" 5506c7ad07eSHeiner Kallweit depends on LEDS_CLASS 551a7f7f624SMasahiro Yamada help 552007414e8SHeiner Kallweit Support for simple RGB LED devices. Currently supported are: 553007414e8SHeiner Kallweit - Riso Kagaku Webmail Notifier 554007414e8SHeiner Kallweit - Dream Cheeky Webmail Notifier and Friends Alert 555007414e8SHeiner Kallweit - ThingM blink(1) 556de908650SHeiner Kallweit - Delcom Visual Signal Indicator Generation 2 5579d1e048cSHeiner Kallweit - Greynut Luxafor 5586c7ad07eSHeiner Kallweit 5596c7ad07eSHeiner Kallweit To compile this driver as a module, choose M here: the 5606c7ad07eSHeiner Kallweit module will be called hid-led. 5616c7ad07eSHeiner Kallweit 56294723bfaSJamie Lentinconfig HID_LENOVO 56394723bfaSJamie Lentin tristate "Lenovo / Thinkpad devices" 56425976a79SBryan Wu select NEW_LEDS 565c1dcad2dSBernhard Seibold select LEDS_CLASS 566a7f7f624SMasahiro Yamada help 567a230cd52Spgzh Support for IBM/Lenovo devices that are not fully compliant with HID standard. 568c1dcad2dSBernhard Seibold 569a230cd52Spgzh Say Y if you want support for horizontal scrolling of the IBM/Lenovo 570a230cd52Spgzh Scrollpoint mice or the non-compliant features of the Lenovo Thinkpad 571a230cd52Spgzh standalone keyboards, e.g: 57294723bfaSJamie Lentin - ThinkPad USB Keyboard with TrackPoint (supports extra LEDs and trackpoint 57394723bfaSJamie Lentin configuration) 574f3d4ff0eSJamie Lentin - ThinkPad Compact Bluetooth Keyboard with TrackPoint (supports Fn keys) 575f3d4ff0eSJamie Lentin - ThinkPad Compact USB Keyboard with TrackPoint (supports Fn keys) 576c1dcad2dSBernhard Seibold 57733a5c279SHans de Goedeconfig HID_LETSKETCH 57833a5c279SHans de Goede tristate "Letsketch WP9620N tablets" 57933a5c279SHans de Goede depends on USB_HID 58033a5c279SHans de Goede help 58133a5c279SHans de Goede Driver for the LetSketch / VSON WP9620N drawing tablet. This 58233a5c279SHans de Goede drawing tablet is also sold under other brand names such as Case U, 58333a5c279SHans de Goede presumably this driver will work for all of them. But it has only been 58433a5c279SHans de Goede tested with a LetSketch WP9620N model. 58533a5c279SHans de Goede 58633a5c279SHans de Goede These tablets also work without a special HID driver, but then only 58733a5c279SHans de Goede part of the active area works and both the pad and stylus buttons are 58833a5c279SHans de Goede hardwired to special key-combos. E.g. the 2 stylus buttons send right 58933a5c279SHans de Goede mouse clicks / resp. "e" key presses. 59033a5c279SHans de Goede 5915f22a799SJiri Slabyconfig HID_LOGITECH 5927af05e73SJean Delvare tristate "Logitech devices" 593f237d902SGreg Kroah-Hartman depends on USB_HID 594bdd08fffSHans de Goede depends on LEDS_CLASS 5956a108a14SDavid Rientjes default !EXPERT 596a7f7f624SMasahiro Yamada help 597f0bd8e43SJiri Kosina Support for Logitech devices that are not fully compliant with HID standard. 5985f22a799SJiri Slaby 599534a7b8eSNestor Lopez Casadoconfig HID_LOGITECH_DJ 600c08ce255SFilipe Laíns tristate "Logitech receivers full support" 601c08f38e9SBenjamin Tissoires depends on USB_HID 602dcdc50e7SOlivier Gay depends on HIDRAW 603534a7b8eSNestor Lopez Casado depends on HID_LOGITECH 604ab94e562SBenjamin Tissoires select HID_LOGITECH_HIDPP 605a7f7f624SMasahiro Yamada help 606c08ce255SFilipe Laíns Say Y if you want support for Logitech receivers and devices. 607c08ce255SFilipe Laíns Logitech receivers are capable of pairing multiple Logitech compliant 6080944e964SKonstantin Khlebnikov devices to the same receiver. Without this driver it will be handled by 609d82603c6SJorrit Schippers generic USB_HID driver and all incoming events will be multiplexed 6100944e964SKonstantin Khlebnikov into a single mouse and a single keyboard device. 611534a7b8eSNestor Lopez Casado 6122f31c525SBenjamin Tissoiresconfig HID_LOGITECH_HIDPP 6132f31c525SBenjamin Tissoires tristate "Logitech HID++ devices support" 6142f31c525SBenjamin Tissoires depends on HID_LOGITECH 615351744aaSArnd Bergmann select POWER_SUPPLY 616a7f7f624SMasahiro Yamada help 6172f31c525SBenjamin Tissoires Support for Logitech devices relying on the HID++ Logitech specification 6182f31c525SBenjamin Tissoires 6192f31c525SBenjamin Tissoires Say Y if you want support for Logitech devices relying on the HID++ 6202f31c525SBenjamin Tissoires specification. Such devices are the various Logitech Touchpads (T650, 6212f31c525SBenjamin Tissoires T651, TK820), some mice (Zone Touch mouse), or even keyboards (Solar 62279bc33bdSGeert Uytterhoeven Keyboard). 6232f31c525SBenjamin Tissoires 624606bd0a8SJiri Slabyconfig LOGITECH_FF 6250f6f4319SJiri Kosina bool "Logitech force feedback support" 626606bd0a8SJiri Slaby depends on HID_LOGITECH 627606bd0a8SJiri Slaby select INPUT_FF_MEMLESS 628606bd0a8SJiri Slaby help 629606bd0a8SJiri Slaby Say Y here if you have one of these devices: 630606bd0a8SJiri Slaby - Logitech WingMan Cordless RumblePad 631606bd0a8SJiri Slaby - Logitech WingMan Cordless RumblePad 2 632606bd0a8SJiri Slaby - Logitech WingMan Force 3D 633606bd0a8SJiri Slaby 634606bd0a8SJiri Slaby and if you want to enable force feedback for them. 635606bd0a8SJiri Slaby Note: if you say N here, this device will still be supported, but without 636606bd0a8SJiri Slaby force feedback. 637606bd0a8SJiri Slaby 638606bd0a8SJiri Slabyconfig LOGIRUMBLEPAD2_FF 639bd04363dSElias Vanderstuyft bool "Logitech force feedback support (variant 2)" 640606bd0a8SJiri Slaby depends on HID_LOGITECH 641606bd0a8SJiri Slaby select INPUT_FF_MEMLESS 642606bd0a8SJiri Slaby help 643bd04363dSElias Vanderstuyft Say Y here if you want to enable force feedback support for: 644bd04363dSElias Vanderstuyft - Logitech RumblePad 645bd04363dSElias Vanderstuyft - Logitech Rumblepad 2 646bd04363dSElias Vanderstuyft - Logitech Formula Vibration Feedback Wheel 647606bd0a8SJiri Slaby 64874f292caSGary Steinconfig LOGIG940_FF 64974f292caSGary Stein bool "Logitech Flight System G940 force feedback support" 65074f292caSGary Stein depends on HID_LOGITECH 65174f292caSGary Stein select INPUT_FF_MEMLESS 65274f292caSGary Stein help 65374f292caSGary Stein Say Y here if you want to enable force feedback support for Logitech 65474f292caSGary Stein Flight System G940 devices. 65574f292caSGary Stein 656a7ac90f1SMichal Malýconfig LOGIWHEELS_FF 657a7ac90f1SMichal Malý bool "Logitech wheels configuration and force feedback support" 65832c88cbcSSimon Wood depends on HID_LOGITECH 65932c88cbcSSimon Wood select INPUT_FF_MEMLESS 66070c2cabdSJiri Kosina default LOGITECH_FF 66132c88cbcSSimon Wood help 662f777a3a7SSimon Wood Say Y here if you want to enable force feedback and range setting(*) 663a7ac90f1SMichal Malý support for following Logitech wheels: 664f777a3a7SSimon Wood - Logitech G25 (*) 665f777a3a7SSimon Wood - Logitech G27 (*) 666f777a3a7SSimon Wood - Logitech G29 (*) 667a7ac90f1SMichal Malý - Logitech Driving Force 668f777a3a7SSimon Wood - Logitech Driving Force Pro (*) 669f777a3a7SSimon Wood - Logitech Driving Force GT (*) 670f777a3a7SSimon Wood - Logitech Driving Force EX/RX 671f777a3a7SSimon Wood - Logitech Driving Force Wireless 672f777a3a7SSimon Wood - Logitech Speed Force Wireless 673f777a3a7SSimon Wood - Logitech MOMO Force 674f777a3a7SSimon Wood - Logitech MOMO Racing Force 675f777a3a7SSimon Wood - Logitech Formula Force GP 676f777a3a7SSimon Wood - Logitech Formula Force EX/RX 677f777a3a7SSimon Wood - Logitech Wingman Formula Force GP 67832c88cbcSSimon Wood 679128537ceSMichael Pooleconfig HID_MAGICMOUSE 680cdfee4ffSDavid King tristate "Apple Magic Mouse/Trackpad multi-touch support" 681a7f7f624SMasahiro Yamada help 682cdfee4ffSDavid King Support for the Apple Magic Mouse/Trackpad multi-touch. 683128537ceSMichael Poole 684128537ceSMichael Poole Say Y here if you want support for the multi-touch features of the 685cdfee4ffSDavid King Apple Wireless "Magic" Mouse and the Apple Wireless "Magic" Trackpad. 686128537ceSMichael Poole 687af8cd70aSWilliam Whistlerconfig HID_MALTRON 688af8cd70aSWilliam Whistler tristate "Maltron L90 keyboard" 689a7f7f624SMasahiro Yamada help 690af8cd70aSWilliam Whistler Adds support for the volume up, volume down, mute, and play/pause buttons 691af8cd70aSWilliam Whistler of the Maltron L90 keyboard. 692af8cd70aSWilliam Whistler 693f8690450SMarcel Haslerconfig HID_MAYFLASH 694f8690450SMarcel Hasler tristate "Mayflash game controller adapter force feedback" 695f8690450SMarcel Hasler select INPUT_FF_MEMLESS 696a7f7f624SMasahiro Yamada help 697f8690450SMarcel Hasler Say Y here if you have HJZ Mayflash PS3 game controller adapters 698f8690450SMarcel Hasler and want to enable force feedback support. 699f8690450SMarcel Hasler 70006be0d64Sfrank zagoconfig HID_MEGAWORLD_FF 70106be0d64Sfrank zago tristate "Mega World based game controller force feedback support" 70206be0d64Sfrank zago depends on USB_HID 70306be0d64Sfrank zago select INPUT_FF_MEMLESS 70406be0d64Sfrank zago help 70506be0d64Sfrank zago Say Y here if you have a Mega World based game controller and want 70606be0d64Sfrank zago to have force feedback support for it. 70706be0d64Sfrank zago 70885455dd9SRobert Munteanuconfig HID_REDRAGON 70985455dd9SRobert Munteanu tristate "Redragon keyboards" 71085455dd9SRobert Munteanu default !EXPERT 711a7f7f624SMasahiro Yamada help 71285455dd9SRobert Munteanu Support for Redragon keyboards that need fix-ups to work properly. 71385455dd9SRobert Munteanu 71478a849a6SJiri Slabyconfig HID_MICROSOFT 7157af05e73SJean Delvare tristate "Microsoft non-fully HID-compliant devices" 7166a108a14SDavid Rientjes default !EXPERT 717830e82aaSJiri Kosina select INPUT_FF_MEMLESS 718a7f7f624SMasahiro Yamada help 719f0bd8e43SJiri Kosina Support for Microsoft devices that are not fully compliant with HID standard. 72078a849a6SJiri Slaby 7213b8006e5SJiri Slabyconfig HID_MONTEREY 7227af05e73SJean Delvare tristate "Monterey Genius KB29E keyboard" 7236a108a14SDavid Rientjes default !EXPERT 724a7f7f624SMasahiro Yamada help 7253b8006e5SJiri Slaby Support for Monterey Genius KB29E. 7263b8006e5SJiri Slaby 7275519cab4SBenjamin Tissoiresconfig HID_MULTITOUCH 7285519cab4SBenjamin Tissoires tristate "HID Multitouch panels" 729a7f7f624SMasahiro Yamada help 7305519cab4SBenjamin Tissoires Generic support for HID multitouch panels. 7315519cab4SBenjamin Tissoires 7325519cab4SBenjamin Tissoires Say Y here if you have one of the following devices: 733f786bba4SBenjamin Tissoires - 3M PCT touch screens 734e6aac342SBenjamin Tissoires - ActionStar dual touch panels 735b1057124SBenjamin Tissoires - Atmel panels 73622408283SBenjamin Tissoires - Cando dual touch panels 737942fd422SAustin Zhang - Chunghwa panels 738070f63b4SYang Bo - CJTouch panels 73979603dc9SBenjamin Tissoires - CVTouch panels 7402d93666eSBenjamin Tissoires - Cypress TrueTouch panels 741e02aea91SJan Matějka - Elan Microelectronics touch panels 742c04abeefSBenjamin Tissoires - Elo TouchSystems IntelliTouch Plus panels 74322408283SBenjamin Tissoires - GeneralTouch 'Sensing Win7-TwoFinger' panels 744ee0fbd14SBenjamin Tissoires - GoodTouch panels 7452d93666eSBenjamin Tissoires - Hanvon dual touch panels 74622408283SBenjamin Tissoires - Ilitek dual touch panels 7474dfcced8SBenjamin Tissoires - IrTouch Infrared USB panels 748c50bb1a4SJeff Brown - LG Display panels (Dell ST2220Tc) 749df167c4aSBenjamin Tissoires - Lumio CrystalTouch panels 7504a6ee685SBenjamin Tissoires - MosArt dual-touch panels 7512258e863SDenis Kovalev - Panasonic multitouch panels 7526ab3a9a6SJohn Sung - PenMount dual touch panels 753847672cdSBenjamin Tissoires - Perixx Peripad 701 touchpad 754b7ea95ffSAaron Tian - PixArt optical touch screen 7552d93666eSBenjamin Tissoires - Pixcir dual touch panels 7565e7ea11fSBenjamin Tissoires - Quanta panels 75722408283SBenjamin Tissoires - eGalax dual-touch panels, including the Joojoo and Wetab tablets 758a6802e00SForest Bond - SiS multitouch panels 759043b403aSBenjamin Tissoires - Stantum multitouch panels 7605e74e56dSBenjamin Tissoires - Touch International Panels 761617b64f9SBenjamin Tissoires - Unitec Panels 762bf9d121eSKaiChung Cheng - Wistron optical touch panels 763bc8a2a9bSice chien - XAT optical touch panels 76411576c61SMasatoshi Hoshikawa - Xiroku optical touch panels 765e9a09aedSBenjamin Tissoires - Zytronic touch panels 7665519cab4SBenjamin Tissoires 7672d93666eSBenjamin Tissoires If unsure, say N. 7682d93666eSBenjamin Tissoires 7692d93666eSBenjamin Tissoires To compile this driver as a module, choose M here: the 7702d93666eSBenjamin Tissoires module will be called hid-multitouch. 7712d93666eSBenjamin Tissoires 7722af16c1fSDaniel J. Ogorchockconfig HID_NINTENDO 77394f18bb1SRyan McClelland tristate "Nintendo Joy-Con, NSO, and Pro Controller support" 774c5e62676SDaniel J. Ogorchock depends on NEW_LEDS 775c5e62676SDaniel J. Ogorchock depends on LEDS_CLASS 77608ebba5cSDaniel J. Ogorchock select POWER_SUPPLY 7772af16c1fSDaniel J. Ogorchock help 77894f18bb1SRyan McClelland Adds support for the Nintendo Switch Joy-Cons, NSO, Pro Controller. 7792af16c1fSDaniel J. Ogorchock All controllers support bluetooth, and the Pro Controller also supports 78094f18bb1SRyan McClelland its USB mode. This also includes support for the Nintendo Switch Online 78194f18bb1SRyan McClelland Controllers which include the Genesis, SNES, and N64 controllers. 7822af16c1fSDaniel J. Ogorchock 7832af16c1fSDaniel J. Ogorchock To compile this driver as a module, choose M here: the 7842af16c1fSDaniel J. Ogorchock module will be called hid-nintendo. 7852af16c1fSDaniel J. Ogorchock 786c4eae84fSDaniel J. Ogorchockconfig NINTENDO_FF 787c4eae84fSDaniel J. Ogorchock bool "Nintendo Switch controller force feedback support" 788c4eae84fSDaniel J. Ogorchock depends on HID_NINTENDO 789c4eae84fSDaniel J. Ogorchock select INPUT_FF_MEMLESS 790c4eae84fSDaniel J. Ogorchock help 791c4eae84fSDaniel J. Ogorchock Say Y here if you have a Nintendo Switch controller and want to enable 79294f18bb1SRyan McClelland force feedback support for it. This works for both joy-cons, the pro 79394f18bb1SRyan McClelland controller, and the NSO N64 controller. For the pro controller, both 79494f18bb1SRyan McClelland rumble motors can be controlled individually. 795c4eae84fSDaniel J. Ogorchock 79607e88a35SJonathan Tomerconfig HID_NTI 79707e88a35SJonathan Tomer tristate "NTI keyboard adapters" 798a7f7f624SMasahiro Yamada help 79907e88a35SJonathan Tomer Support for the "extra" Sun keyboard keys on keyboards attached 80007e88a35SJonathan Tomer through Network Technologies USB-SUN keyboard adapters. 80107e88a35SJonathan Tomer 80294011f93SRafi Rubinconfig HID_NTRIG 803a1043044SBorislav Petkov tristate "N-Trig touch screen" 80494011f93SRafi Rubin depends on USB_HID 805a7f7f624SMasahiro Yamada help 80694011f93SRafi Rubin Support for N-Trig touch screen. 80794011f93SRafi Rubin 80809308562SRahul Rameshbabuconfig HID_NVIDIA_SHIELD 80909308562SRahul Rameshbabu tristate "NVIDIA SHIELD devices" 81009308562SRahul Rameshbabu depends on USB_HID 81109308562SRahul Rameshbabu depends on BT_HIDP 81205857487SRandy Dunlap depends on LEDS_CLASS 8130c0faa29SRahul Rameshbabu select POWER_SUPPLY 81409308562SRahul Rameshbabu help 81509308562SRahul Rameshbabu Support for NVIDIA SHIELD accessories. 81609308562SRahul Rameshbabu 81709308562SRahul Rameshbabu Supported devices: 81809308562SRahul Rameshbabu - Thunderstrike (NVIDIA SHIELD Controller 2017) 81909308562SRahul Rameshbabu 82009308562SRahul Rameshbabuconfig NVIDIA_SHIELD_FF 82109308562SRahul Rameshbabu bool "NVIDIA SHIELD force feedback support" 82209308562SRahul Rameshbabu depends on HID_NVIDIA_SHIELD 82309308562SRahul Rameshbabu select INPUT_FF_MEMLESS 82409308562SRahul Rameshbabu help 82509308562SRahul Rameshbabu Say Y here if you would like to enable force feedback support for 82609308562SRahul Rameshbabu NVIDIA SHIELD accessories with haptics capabilities. 82709308562SRahul Rameshbabu 828cd9ec30dSJohnathon Harrisconfig HID_ORTEK 829d586dca0SJiri Kosina tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad" 830a7f7f624SMasahiro Yamada help 831d586dca0SJiri Kosina There are certain devices which have LogicalMaximum wrong in the keyboard 832d586dca0SJiri Kosina usage page of their report descriptor. The most prevailing ones so far 833d586dca0SJiri Kosina are manufactured by Ortek, thus the name of the driver. Currently 834d586dca0SJiri Kosina supported devices by this driver are 835d586dca0SJiri Kosina 836d586dca0SJiri Kosina - Ortek PKB-1700 837d586dca0SJiri Kosina - Ortek WKB-2000 838d586dca0SJiri Kosina - Skycable wireless presenter 839cd9ec30dSJohnathon Harris 8405f022298SJiri Slabyconfig HID_PANTHERLORD 841a1043044SBorislav Petkov tristate "Pantherlord/GreenAsia game controller" 842a7f7f624SMasahiro Yamada help 8430f6f4319SJiri Kosina Say Y here if you have a PantherLord/GreenAsia based game controller 8440f6f4319SJiri Kosina or adapter. 8450f6f4319SJiri Kosina 8465f022298SJiri Slabyconfig PANTHERLORD_FF 8475f022298SJiri Slaby bool "Pantherlord force feedback support" 8485f022298SJiri Slaby depends on HID_PANTHERLORD 8495f022298SJiri Slaby select INPUT_FF_MEMLESS 850a7f7f624SMasahiro Yamada help 8515f022298SJiri Slaby Say Y here if you have a PantherLord/GreenAsia based game controller 8525f022298SJiri Slaby or adapter and want to enable force feedback support for it. 8535f022298SJiri Slaby 854ffe51d0dSChristian Gmeinerconfig HID_PENMOUNT 855ffe51d0dSChristian Gmeiner tristate "Penmount touch device" 856ffe51d0dSChristian Gmeiner depends on USB_HID 857a7f7f624SMasahiro Yamada help 858ffe51d0dSChristian Gmeiner This selects a driver for the PenMount 6000 touch controller. 859ffe51d0dSChristian Gmeiner 860ffe51d0dSChristian Gmeiner The driver works around a problem in the report descript allowing 861ffe51d0dSChristian Gmeiner the userspace to touch events instead of mouse events. 862ffe51d0dSChristian Gmeiner 863ffe51d0dSChristian Gmeiner Say Y here if you have a Penmount based touch controller. 864ffe51d0dSChristian Gmeiner 8651e762532SJiri Slabyconfig HID_PETALYNX 866a1043044SBorislav Petkov tristate "Petalynx Maxter remote control" 867a7f7f624SMasahiro Yamada help 868f0bd8e43SJiri Kosina Support for Petalynx Maxter remote control. 8691e762532SJiri Slaby 870236db47cSBruno Prémontconfig HID_PICOLCD 871236db47cSBruno Prémont tristate "PicoLCD (graphic version)" 872a7f7f624SMasahiro Yamada help 873236db47cSBruno Prémont This provides support for Minibox PicoLCD devices, currently 874236db47cSBruno Prémont only the graphical ones are supported. 875236db47cSBruno Prémont 876236db47cSBruno Prémont This includes support for the following device features: 877236db47cSBruno Prémont - Keypad 878236db47cSBruno Prémont - Switching between Firmware and Flash mode 8799bbf2b98SBruno Prémont - EEProm / Flash access (via debugfs) 8805435f281SBruno Prémont Features selectively enabled: 8815435f281SBruno Prémont - Framebuffer for monochrome 256x64 display 8825435f281SBruno Prémont - Backlight control 8835435f281SBruno Prémont - Contrast control 8845435f281SBruno Prémont - General purpose outputs 885b8c21cf6SBruno Prémont Features that are not (yet) supported: 886236db47cSBruno Prémont - IR 887236db47cSBruno Prémont 8885435f281SBruno Prémontconfig HID_PICOLCD_FB 8896a108a14SDavid Rientjes bool "Framebuffer support" if EXPERT 8906a108a14SDavid Rientjes default !EXPERT 8915435f281SBruno Prémont depends on HID_PICOLCD 8925435f281SBruno Prémont depends on HID_PICOLCD=FB || FB=y 893a564708eSThomas Zimmermann select FB_SYSMEM_HELPERS_DEFERRED 894a7f7f624SMasahiro Yamada help 8955435f281SBruno Prémont Provide access to PicoLCD's 256x64 monochrome display via a 8966b2aac42SMasanari Iida framebuffer device. 8975435f281SBruno Prémont 8985435f281SBruno Prémontconfig HID_PICOLCD_BACKLIGHT 8996a108a14SDavid Rientjes bool "Backlight control" if EXPERT 9006a108a14SDavid Rientjes default !EXPERT 9015435f281SBruno Prémont depends on HID_PICOLCD 9025435f281SBruno Prémont depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y 903a7f7f624SMasahiro Yamada help 9045435f281SBruno Prémont Provide access to PicoLCD's backlight control via backlight 9055435f281SBruno Prémont class. 9065435f281SBruno Prémont 9075435f281SBruno Prémontconfig HID_PICOLCD_LCD 9086a108a14SDavid Rientjes bool "Contrast control" if EXPERT 9096a108a14SDavid Rientjes default !EXPERT 9105435f281SBruno Prémont depends on HID_PICOLCD 9115435f281SBruno Prémont depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y 912a7f7f624SMasahiro Yamada help 9135435f281SBruno Prémont Provide access to PicoLCD's LCD contrast via lcd class. 9145435f281SBruno Prémont 9155435f281SBruno Prémontconfig HID_PICOLCD_LEDS 9166a108a14SDavid Rientjes bool "GPO via leds class" if EXPERT 9176a108a14SDavid Rientjes default !EXPERT 9185435f281SBruno Prémont depends on HID_PICOLCD 9195435f281SBruno Prémont depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y 920a7f7f624SMasahiro Yamada help 9215435f281SBruno Prémont Provide access to PicoLCD's GPO pins via leds class. 9225435f281SBruno Prémont 923fabdbf2fSBruno Prémontconfig HID_PICOLCD_CIR 924fabdbf2fSBruno Prémont bool "CIR via RC class" if EXPERT 925fabdbf2fSBruno Prémont default !EXPERT 926fabdbf2fSBruno Prémont depends on HID_PICOLCD 927fabdbf2fSBruno Prémont depends on HID_PICOLCD=RC_CORE || RC_CORE=y 928a7f7f624SMasahiro Yamada help 929fabdbf2fSBruno Prémont Provide access to PicoLCD's CIR interface via remote control (LIRC). 930fabdbf2fSBruno Prémont 9311a3f83f6SJD Coleconfig HID_PLANTRONICS 9321a3f83f6SJD Cole tristate "Plantronics USB HID Driver" 933a7f7f624SMasahiro Yamada help 93481bb773fSTerry Junge Provides HID support for Plantronics USB audio devices. 93581bb773fSTerry Junge Correctly maps vendor unique volume up/down HID usages to 93681bb773fSTerry Junge KEY_VOLUMEUP and KEY_VOLUMEDOWN events and prevents core mapping 93781bb773fSTerry Junge of other vendor unique HID usages to random mouse events. 93881bb773fSTerry Junge 93981bb773fSTerry Junge Say M here if you may ever plug in a Plantronics USB audio device. 9401a3f83f6SJD Cole 941bc2e15a9SRoderick Colenbranderconfig HID_PLAYSTATION 942bc2e15a9SRoderick Colenbrander tristate "PlayStation HID Driver" 943d7f1f9feSJiri Kosina depends on LEDS_CLASS_MULTICOLOR 944799b2b53SRoderick Colenbrander select CRC32 945d30bca44SRoderick Colenbrander select POWER_SUPPLY 946bc2e15a9SRoderick Colenbrander help 9470ee29814SRoderick Colenbrander Provides support for Sony PS4/PS5 controllers including support for 948bc2e15a9SRoderick Colenbrander its special functionalities e.g. touchpad, lights and motion 949bc2e15a9SRoderick Colenbrander sensors. 950bc2e15a9SRoderick Colenbrander 95151151098SRoderick Colenbranderconfig PLAYSTATION_FF 95251151098SRoderick Colenbrander bool "PlayStation force feedback support" 95351151098SRoderick Colenbrander depends on HID_PLAYSTATION 95451151098SRoderick Colenbrander select INPUT_FF_MEMLESS 95551151098SRoderick Colenbrander help 95651151098SRoderick Colenbrander Say Y here if you would like to enable force feedback support for 95751151098SRoderick Colenbrander PlayStation game controllers. 95851151098SRoderick Colenbrander 959acc3e346SMarcus Folkessonconfig HID_PXRC 960acc3e346SMarcus Folkesson tristate "PhoenixRC HID Flight Controller" 961acc3e346SMarcus Folkesson depends on HID 962acc3e346SMarcus Folkesson help 963acc3e346SMarcus Folkesson Support for PhoenixRC HID Flight Controller, a 8-axis flight controller. 964acc3e346SMarcus Folkesson 965acc3e346SMarcus Folkesson To compile this driver as a module, choose M here: the 966acc3e346SMarcus Folkesson module will be called hid-pxrc. 967acc3e346SMarcus Folkesson 968047b6188SJelle van der Waaconfig HID_RAZER 969047b6188SJelle van der Waa tristate "Razer non-fully HID-compliant devices" 970047b6188SJelle van der Waa help 971047b6188SJelle van der Waa Support for Razer devices that are not fully compliant with the 972047b6188SJelle van der Waa HID standard. 973047b6188SJelle van der Waa 974f6a04605STerry Lambertconfig HID_PRIMAX 975dfe9a312SJiri Kosina tristate "Primax non-fully HID-compliant devices" 976a7f7f624SMasahiro Yamada help 977f6a04605STerry Lambert Support for Primax devices that are not fully compliant with the 978f6a04605STerry Lambert HID standard. 979f6a04605STerry Lambert 98013b2e1baSBastien Noceraconfig HID_RETRODE 981fc5431dcSRandy Dunlap tristate "Retrode 2 USB adapter for vintage video games" 98213b2e1baSBastien Nocera depends on USB_HID 983a7f7f624SMasahiro Yamada help 98413b2e1baSBastien Nocera Support for 98513b2e1baSBastien Nocera * Retrode 2 cartridge and controller adapter 98613b2e1baSBastien Nocera 987206f5f2fSStefan Achatzconfig HID_ROCCAT 988bd393dbdSStefan Achatz tristate "Roccat device support" 989206f5f2fSStefan Achatz depends on USB_HID 990a7f7f624SMasahiro Yamada help 991bd393dbdSStefan Achatz Support for Roccat devices. 992bd393dbdSStefan Achatz Say Y here if you have a Roccat mouse or keyboard and want 993bd393dbdSStefan Achatz support for its special functionalities. 994cb7cf3daSStefan Achatz 9951e93674aSAndreas Hübnerconfig HID_SAITEK 9967bb9d643SVille Aakko tristate "Saitek (Mad Catz) non-fully HID-compliant devices" 997a7f7f624SMasahiro Yamada help 9981e93674aSAndreas Hübner Support for Saitek devices that are not fully compliant with the 9991e93674aSAndreas Hübner HID standard. 10001e93674aSAndreas Hübner 100137c492c8SHarald Brinkmann Supported devices: 100237c492c8SHarald Brinkmann - PS1000 Dual Analog Pad 10038ffd341cSHarald Brinkmann - Saitek R.A.T.7, R.A.T.9, M.M.O.7 Gaming Mice 10048ffd341cSHarald Brinkmann - Mad Catz R.A.T.5, R.A.T.9 Gaming Mice 10051e93674aSAndreas Hübner 1006980a3da6SJiri Slabyconfig HID_SAMSUNG 1007a1043044SBorislav Petkov tristate "Samsung InfraRed remote control or keyboards" 1008f237d902SGreg Kroah-Hartman depends on USB_HID 1009a7f7f624SMasahiro Yamada help 1010b355850bSDon Prince Support for Samsung InfraRed remote control or keyboards. 1011980a3da6SJiri Slaby 10126a012686SBenjamin Moodyconfig HID_SEMITEK 10136a012686SBenjamin Moody tristate "Semitek USB keyboards" 10146a012686SBenjamin Moody help 10156a012686SBenjamin Moody Support for Semitek USB keyboards that are not fully compliant 10166a012686SBenjamin Moody with the HID standard. 10176a012686SBenjamin Moody 10186a012686SBenjamin Moody There are many variants, including: 10196a012686SBenjamin Moody - GK61, GK64, GK68, GK84, GK96, etc. 10206a012686SBenjamin Moody - SK61, SK64, SK68, SK84, SK96, etc. 10216a012686SBenjamin Moody - Dierya DK61/DK66 10226a012686SBenjamin Moody - Tronsmart TK09R 10236a012686SBenjamin Moody - Woo-dy 10246a012686SBenjamin Moody - X-Bows Nature/Knight 10256a012686SBenjamin Moody 102697673404SDesmond Limconfig HID_SIGMAMICRO 102797673404SDesmond Lim tristate "SiGma Micro-based keyboards" 102897673404SDesmond Lim depends on USB_HID 102997673404SDesmond Lim help 103097673404SDesmond Lim Support for keyboards that use the SiGma Micro (a.k.a SigmaChip) IC. 103197673404SDesmond Lim 103297673404SDesmond Lim Supported devices: 103397673404SDesmond Lim - Landslides KR-700 103497673404SDesmond Lim - Rapoo V500 103597673404SDesmond Lim 1036bd28ce00SJiri Slabyconfig HID_SONY 1037e4321c5cSFrank Praznik tristate "Sony PS2/3/4 accessories" 1038bd28ce00SJiri Slaby depends on USB_HID 103940e32ee6SJiri Kosina depends on NEW_LEDS 104040e32ee6SJiri Kosina depends on LEDS_CLASS 1041695baaa7SJiri Kosina select POWER_SUPPLY 1042273435a1SArnd Bergmann select CRC32 1043a7f7f624SMasahiro Yamada help 1044f04d5140SColin Leitner Support for 10455844c1cdSDavid Dillow 1046f04d5140SColin Leitner * Sony PS3 6-axis controllers 1047e4321c5cSFrank Praznik * Sony PS4 DualShock 4 controllers 1048f04d5140SColin Leitner * Buzz controllers 1049078328daSJiri Kosina * Sony PS3 Blue-ray Disk Remote Control (Bluetooth) 1050078328daSJiri Kosina * Logitech Harmony adapter for Sony Playstation 3 (Bluetooth) 1051a4bfe13fSDaniel Nguyen * Guitar Hero Live PS3, Wii U and PS4 guitar dongles 105232e411d0SSanjay Govind * Guitar Hero PS3 and PC guitar dongles 1053bd28ce00SJiri Slaby 1054a08c22c0SSven Eckelmannconfig SONY_FF 1055e4321c5cSFrank Praznik bool "Sony PS2/3/4 accessories force feedback support" 1056a08c22c0SSven Eckelmann depends on HID_SONY 1057a08c22c0SSven Eckelmann select INPUT_FF_MEMLESS 1058a7f7f624SMasahiro Yamada help 1059e4321c5cSFrank Praznik Say Y here if you have a Sony PS2/3/4 accessory and want to enable 1060e4321c5cSFrank Praznik force feedback support for it. 1061a08c22c0SSven Eckelmann 106274bc6953SStefan Kriwanekconfig HID_SPEEDLINK 106374bc6953SStefan Kriwanek tristate "Speedlink VAD Cezanne mouse support" 1064a7f7f624SMasahiro Yamada help 106574bc6953SStefan Kriwanek Support for Speedlink Vicious and Divine Cezanne mouse. 106674bc6953SStefan Kriwanek 1067c164d6abSRodrigo Rivas Costaconfig HID_STEAM 10689ba9498bSVicki Pfau tristate "Steam Controller/Deck support" 10694b64487fSArnd Bergmann select POWER_SUPPLY 1070a7f7f624SMasahiro Yamada help 10719ba9498bSVicki Pfau Say Y here if you have a Steam Controller or Deck if you want to use it 1072c164d6abSRodrigo Rivas Costa without running the Steam Client. It supports both the wired and 1073c164d6abSRodrigo Rivas Costa the wireless adaptor. 1074c164d6abSRodrigo Rivas Costa 10759cd61c81SVicki Pfauconfig STEAM_FF 10769cd61c81SVicki Pfau bool "Steam Deck force feedback support" 10779cd61c81SVicki Pfau depends on HID_STEAM 10789cd61c81SVicki Pfau select INPUT_FF_MEMLESS 10799cd61c81SVicki Pfau help 10809cd61c81SVicki Pfau Say Y here if you want to enable force feedback support for the Steam 10819cd61c81SVicki Pfau Deck. 10829cd61c81SVicki Pfau 1083090800c2SJiri Kosinaconfig HID_STEELSERIES 1084a0c76896SBastien Nocera tristate "Steelseries devices support" 1085a0c76896SBastien Nocera depends on USB_HID 1086a7f7f624SMasahiro Yamada help 1087a0c76896SBastien Nocera Support for Steelseries SRW-S1 steering wheel, and the Steelseries 1088a0c76896SBastien Nocera Arctis 1 Wireless for XBox headset. 108975dbb953SSimon Wood 109090231e7eSJiri Slabyconfig HID_SUNPLUS 1091a1043044SBorislav Petkov tristate "Sunplus wireless desktop" 1092a7f7f624SMasahiro Yamada help 1093f0bd8e43SJiri Kosina Support for Sunplus wireless desktop. 109490231e7eSJiri Slaby 10959fb6bf02SBenjamin Tissoiresconfig HID_RMI 10969fb6bf02SBenjamin Tissoires tristate "Synaptics RMI4 device support" 10970b2c7a89SAndrew Duggan select RMI4_CORE 10980b2c7a89SAndrew Duggan select RMI4_F03 10990b2c7a89SAndrew Duggan select RMI4_F11 11000b2c7a89SAndrew Duggan select RMI4_F12 11010b2c7a89SAndrew Duggan select RMI4_F30 1102a7f7f624SMasahiro Yamada help 11039fb6bf02SBenjamin Tissoires Support for Synaptics RMI4 touchpads. 11049fb6bf02SBenjamin Tissoires Say Y here if you have a Synaptics RMI4 touchpads over i2c-hid or usbhid 11059fb6bf02SBenjamin Tissoires and want support for its special functionalities. 11069fb6bf02SBenjamin Tissoires 11070f6f4319SJiri Kosinaconfig HID_GREENASIA 1108a1043044SBorislav Petkov tristate "GreenAsia (Product ID 0x12) game controller support" 1109a7f7f624SMasahiro Yamada help 11100f6f4319SJiri Kosina Say Y here if you have a GreenAsia (Product ID 0x12) based game 11110f6f4319SJiri Kosina controller or adapter. 11120f6f4319SJiri Kosina 11130f6f4319SJiri Kosinaconfig GREENASIA_FF 11140f6f4319SJiri Kosina bool "GreenAsia (Product ID 0x12) force feedback support" 11150f6f4319SJiri Kosina depends on HID_GREENASIA 111642859e0bSLukasz Lubojanski select INPUT_FF_MEMLESS 1117a7f7f624SMasahiro Yamada help 111842859e0bSLukasz Lubojanski Say Y here if you have a GreenAsia (Product ID 0x12) based game controller 1119692105b8SMatt LaPlante (like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter 112042859e0bSLukasz Lubojanski and want to enable force feedback support for it. 112142859e0bSLukasz Lubojanski 11226cf851d8SJiri Kosinaconfig HID_HYPERV_MOUSE 11236cf851d8SJiri Kosina tristate "Microsoft Hyper-V mouse driver" 11246cf851d8SJiri Kosina depends on HYPERV 1125a7f7f624SMasahiro Yamada help 11266cf851d8SJiri Kosina Select this option to enable the Hyper-V mouse driver. 11276cf851d8SJiri Kosina 1128fac733f0SJussi Kivilinnaconfig HID_SMARTJOYPLUS 112973d5e8f7SJiri Kosina tristate "SmartJoy PLUS PS2/USB adapter support" 1130a7f7f624SMasahiro Yamada help 11311bcc2067SSean Young Support for SmartJoy PLUS PS2/USB adapter, Super Dual Box, 11321bcc2067SSean Young Super Joy Box 3 Pro, Super Dual Box Pro, and Super Joy Box 5 Pro. 11331bcc2067SSean Young 11341bcc2067SSean Young Note that DDR (Dance Dance Revolution) mode is not supported, nor 11351bcc2067SSean Young is pressure sensitive buttons on the pro models. 1136fac733f0SJussi Kivilinna 1137fac733f0SJussi Kivilinnaconfig SMARTJOYPLUS_FF 1138fac733f0SJussi Kivilinna bool "SmartJoy PLUS PS2/USB adapter force feedback support" 1139fac733f0SJussi Kivilinna depends on HID_SMARTJOYPLUS 1140fac733f0SJussi Kivilinna select INPUT_FF_MEMLESS 1141a7f7f624SMasahiro Yamada help 1142fac733f0SJussi Kivilinna Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to 1143fac733f0SJussi Kivilinna enable force feedback support for it. 1144fac733f0SJussi Kivilinna 11452701eaabSJiri Kosinaconfig HID_TIVO 114644ea35c1SJarod Wilson tristate "TiVo Slide Bluetooth remote control support" 1147a7f7f624SMasahiro Yamada help 114844ea35c1SJarod Wilson Say Y if you have a TiVo Slide Bluetooth remote control. 114944ea35c1SJarod Wilson 1150f14f526dSLev Babievconfig HID_TOPSEED 115154001081SKees Bakker tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support" 1152a7f7f624SMasahiro Yamada help 115354001081SKees Bakker Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic 115454001081SKees Bakker CLLRCMCE remote control. 1155f14f526dSLev Babiev 1156a109d5c4SHarry Sternconfig HID_TOPRE 1157a109d5c4SHarry Stern tristate "Topre REALFORCE keyboards" 1158a109d5c4SHarry Stern depends on HID 1159a109d5c4SHarry Stern help 1160dbf56d2fSAlessandro Manca Say Y for N-key rollover support on Topre REALFORCE R2 108/87 key keyboards. 1161a109d5c4SHarry Stern 116230ba2fbdSVivien Didelotconfig HID_THINGM 116330ba2fbdSVivien Didelot tristate "ThingM blink(1) USB RGB LED" 116430ba2fbdSVivien Didelot depends on LEDS_CLASS 116538b09c03SHeiner Kallweit select HID_LED 1166a7f7f624SMasahiro Yamada help 116738b09c03SHeiner Kallweit Support for the ThingM blink(1) USB RGB LED. This driver has been 116838b09c03SHeiner Kallweit merged into the generic hid led driver. Config symbol HID_THINGM 116938b09c03SHeiner Kallweit just selects HID_LED and will be removed soon. 117030ba2fbdSVivien Didelot 11710f6f4319SJiri Kosinaconfig HID_THRUSTMASTER 117273d5e8f7SJiri Kosina tristate "ThrustMaster devices support" 1173dfe74f55SJiri Kosina depends on USB_HID 1174a7f7f624SMasahiro Yamada help 1175c49c3363SDario Pagani Say Y here if you have a THRUSTMASTER FireStore Dual Power 2, 1176c49c3363SDario Pagani a THRUSTMASTER Ferrari GT Rumble Wheel or Thrustmaster FFB 1177c49c3363SDario Pagani Wheel (T150RS, T300RS, T300 Ferrari Alcantara Edition, T500RS). 11780f6f4319SJiri Kosina 11790f6f4319SJiri Kosinaconfig THRUSTMASTER_FF 11800f6f4319SJiri Kosina bool "ThrustMaster devices force feedback support" 11810f6f4319SJiri Kosina depends on HID_THRUSTMASTER 11820f6f4319SJiri Kosina select INPUT_FF_MEMLESS 1183a7f7f624SMasahiro Yamada help 11847a84b133SRuben Aos Garralda Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3, 11857a84b133SRuben Aos Garralda a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT 11867a84b133SRuben Aos Garralda Rumble Force or Force Feedback Wheel. 118710e41a71SJiri Slaby 11880edffe65SBastien Noceraconfig HID_UDRAW_PS3 11890edffe65SBastien Nocera tristate "THQ PS3 uDraw tablet" 1190a7f7f624SMasahiro Yamada help 11910edffe65SBastien Nocera Say Y here if you want to use the THQ uDraw gaming tablet for 11920edffe65SBastien Nocera the PS3. 11930edffe65SBastien Nocera 119442337b9dSAndrej Shaduraconfig HID_U2FZERO 119542337b9dSAndrej Shadura tristate "U2F Zero LED and RNG support" 119642337b9dSAndrej Shadura depends on USB_HID 119742337b9dSAndrej Shadura depends on LEDS_CLASS 1198e252e0e0SMao Wenan depends on HW_RANDOM 119942337b9dSAndrej Shadura help 120042337b9dSAndrej Shadura Support for the LED of the U2F Zero device. 120142337b9dSAndrej Shadura 120242337b9dSAndrej Shadura U2F Zero supports custom commands for blinking the LED 120342337b9dSAndrej Shadura and getting data from the internal hardware RNG. 120442337b9dSAndrej Shadura The internal hardware can be used to feed the enthropy pool. 120542337b9dSAndrej Shadura 120642337b9dSAndrej Shadura U2F Zero only supports blinking its LED, so this driver doesn't 120742337b9dSAndrej Shadura allow setting the brightness to anything but 1, which will 1208ad81d1c8SGeert Uytterhoeven trigger a single blink and immediately reset back to 0. 120942337b9dSAndrej Shadura 1210ca2dcd40SBastien Noceraconfig HID_WACOM 1211471d1714SBenjamin Tissoires tristate "Wacom Intuos/Graphire tablet support (USB)" 12129d14201cSArnd Bergmann depends on USB_HID 121359d2334aSPrzemo Firszt select POWER_SUPPLY 1214471d1714SBenjamin Tissoires select NEW_LEDS 1215471d1714SBenjamin Tissoires select LEDS_CLASS 121634736aa9SBenjamin Tissoires select LEDS_TRIGGERS 1217471d1714SBenjamin Tissoires help 12187403a6a4SBenjamin Tissoires Say Y here if you want to use the USB or BT version of the Wacom Intuos 1219471d1714SBenjamin Tissoires or Graphire tablet. 1220471d1714SBenjamin Tissoires 1221471d1714SBenjamin Tissoires To compile this driver as a module, choose M here: the 1222471d1714SBenjamin Tissoires module will be called wacom. 122359d2334aSPrzemo Firszt 1224fb51b443SDavid Herrmannconfig HID_WIIMOTE 122592eda7e4SDavid Herrmann tristate "Nintendo Wii / Wii U peripherals" 122623a5a4a3SDavid Herrmann depends on LEDS_CLASS 12276591d758SDavid Herrmann select POWER_SUPPLY 1228ef6f4115SDavid Herrmann select INPUT_FF_MEMLESS 1229a7f7f624SMasahiro Yamada help 123092eda7e4SDavid Herrmann Support for Nintendo Wii and Wii U Bluetooth peripherals. Supported 123192eda7e4SDavid Herrmann devices are the Wii Remote and its extension devices, but also devices 123292eda7e4SDavid Herrmann based on the Wii Remote like the Wii U Pro Controller or the 123392eda7e4SDavid Herrmann Wii Balance Board. 1234fb51b443SDavid Herrmann 123592eda7e4SDavid Herrmann Support for all official Nintendo extensions is available, however, 3rd 123692eda7e4SDavid Herrmann party extensions might not be supported. Please report these devices to: 123792eda7e4SDavid Herrmann http://github.com/dvdhrm/xwiimote/issues 123892eda7e4SDavid Herrmann 123992eda7e4SDavid Herrmann Other Nintendo Wii U peripherals that are IEEE 802.11 based (including 124092eda7e4SDavid Herrmann the Wii U Gamepad) might be supported in the future. But currently 124192eda7e4SDavid Herrmann support is limited to Bluetooth based devices. 124292eda7e4SDavid Herrmann 124392eda7e4SDavid Herrmann If unsure, say N. 124492eda7e4SDavid Herrmann 124592eda7e4SDavid Herrmann To compile this driver as a module, choose M here: the 124692eda7e4SDavid Herrmann module will be called hid-wiimote. 1247cb99221bSDavid Herrmann 1248266c990dSIvan Gorinovconfig HID_WINWING 1249266c990dSIvan Gorinov tristate "WinWing Orion2 throttle support" 1250266c990dSIvan Gorinov depends on USB_HID 1251266c990dSIvan Gorinov depends on NEW_LEDS 1252266c990dSIvan Gorinov depends on LEDS_CLASS 1253266c990dSIvan Gorinov help 1254266c990dSIvan Gorinov Support for WinWing Orion2 throttle base with the following grips: 1255266c990dSIvan Gorinov 1256266c990dSIvan Gorinov * TGRIP-16EX 1257266c990dSIvan Gorinov * TGRIP-18 1258266c990dSIvan Gorinov 1259266c990dSIvan Gorinov This driver enables all buttons and switches on the throttle base. 1260266c990dSIvan Gorinov 1261266c990dSIvan Gorinov To compile this driver as a module, choose M here: the 1262266c990dSIvan Gorinov module will be called hid-winwing. 1263266c990dSIvan Gorinov 1264cb2c9e3fSOlivier Scherlerconfig HID_XINMO 1265cb2c9e3fSOlivier Scherler tristate "Xin-Mo non-fully compliant devices" 1266a7f7f624SMasahiro Yamada help 1267cb2c9e3fSOlivier Scherler Support for Xin-Mo devices that are not fully compliant with the HID 1268e2c76a8bSBrian Norris standard. Currently only supports the Xin-Mo Dual Arcade. Say Y here 1269cb2c9e3fSOlivier Scherler if you have a Xin-Mo Dual Arcade controller. 1270cb2c9e3fSOlivier Scherler 12710f6f4319SJiri Kosinaconfig HID_ZEROPLUS 127273d5e8f7SJiri Kosina tristate "Zeroplus based game controller support" 1273a7f7f624SMasahiro Yamada help 1274987fbc1fSJiri Slaby Say Y here if you have a Zeroplus based game controller. 1275987fbc1fSJiri Slaby 12760f6f4319SJiri Kosinaconfig ZEROPLUS_FF 12770f6f4319SJiri Kosina bool "Zeroplus based game controller force feedback support" 12780f6f4319SJiri Kosina depends on HID_ZEROPLUS 12790f6f4319SJiri Kosina select INPUT_FF_MEMLESS 1280a7f7f624SMasahiro Yamada help 12810f6f4319SJiri Kosina Say Y here if you have a Zeroplus based game controller and want 12820f6f4319SJiri Kosina to have force feedback support for it. 12830f6f4319SJiri Kosina 1284a9885c8fSDon Princeconfig HID_ZYDACRON 128573d5e8f7SJiri Kosina tristate "Zydacron remote control support" 1286a7f7f624SMasahiro Yamada help 1287a9885c8fSDon Prince Support for Zydacron remote control. 1288a9885c8fSDon Prince 1289401ca24fSsrinivas pandruvadaconfig HID_SENSOR_HUB 1290401ca24fSsrinivas pandruvada tristate "HID Sensors framework support" 12918272a51dSRandy Dunlap depends on HAS_IOMEM 1292401ca24fSsrinivas pandruvada select MFD_CORE 1293401ca24fSsrinivas pandruvada default n 1294a7f7f624SMasahiro Yamada help 1295401ca24fSsrinivas pandruvada Support for HID Sensor framework. This creates a MFD instance 1296401ca24fSsrinivas pandruvada for a sensor hub and identifies all the sensors connected to it. 1297401ca24fSsrinivas pandruvada Each sensor is registered as a MFD cell, so that sensor specific 1298401ca24fSsrinivas pandruvada processing can be done in a separate driver. Each sensor 1299401ca24fSsrinivas pandruvada drivers can use the service provided by this driver to register 1300401ca24fSsrinivas pandruvada for events and handle data streams. Each sensor driver can format 1301401ca24fSsrinivas pandruvada data and present to user mode using input or IIO interface. 1302401ca24fSsrinivas pandruvada 13034a7de051SSrinivas Pandruvadaconfig HID_SENSOR_CUSTOM_SENSOR 13044a7de051SSrinivas Pandruvada tristate "HID Sensors hub custom sensor support" 13054a7de051SSrinivas Pandruvada depends on HID_SENSOR_HUB 13064a7de051SSrinivas Pandruvada default n 1307a7f7f624SMasahiro Yamada help 13084a7de051SSrinivas Pandruvada HID Sensor hub specification allows definition of some custom and 13094a7de051SSrinivas Pandruvada generic sensors. Unlike other HID sensors, they can't be exported 13104a7de051SSrinivas Pandruvada via Linux IIO because of custom fields. This is up to the manufacturer 13114a7de051SSrinivas Pandruvada to decide how to interpret these special sensor ids and process in 13124a7de051SSrinivas Pandruvada the user space. Currently some manufacturers are using these ids for 13134a7de051SSrinivas Pandruvada sensor calibration and debugging other sensors. Manufacturers 131416863fbcSChristophe JAILLET shouldn't use these special custom sensor ids to export any of the 13154a7de051SSrinivas Pandruvada standard sensors. 13164a7de051SSrinivas Pandruvada Select this config option for custom/generic sensor support. 13174a7de051SSrinivas Pandruvada 13182562756dSMasaki Otaconfig HID_ALPS 13192562756dSMasaki Ota tristate "Alps HID device support" 1320a7f7f624SMasahiro Yamada help 13212562756dSMasaki Ota Support for Alps I2C HID touchpads and StickPointer. 13222562756dSMasaki Ota Say Y here if you have a Alps touchpads over i2c-hid or usbhid 13232562756dSMasaki Ota and want support for its special functionalities. 13242562756dSMasaki Ota 1325740329d7SJohannes Roithconfig HID_MCP2200 1326740329d7SJohannes Roith tristate "Microchip MCP2200 HID USB-to-GPIO bridge" 1327740329d7SJohannes Roith depends on USB_HID && GPIOLIB 1328740329d7SJohannes Roith help 1329740329d7SJohannes Roith Provides GPIO functionality over USB-HID through MCP2200 device. 1330740329d7SJohannes Roith 1331740329d7SJohannes Roith To compile this driver as a module, choose M here: the module 1332740329d7SJohannes Roith will be called hid-mcp2200.ko. 1333740329d7SJohannes Roith 133467a95c21SRishi Guptaconfig HID_MCP2221 133567a95c21SRishi Gupta tristate "Microchip MCP2221 HID USB-to-I2C/SMbus host support" 133667a95c21SRishi Gupta depends on USB_HID && I2C 1337ea418b35SMatt Ranostay imply GPIOLIB 1338960f9df7SMatt Ranostay imply IIO 1339a7f7f624SMasahiro Yamada help 134067a95c21SRishi Gupta Provides I2C and SMBUS host adapter functionality over USB-HID 134167a95c21SRishi Gupta through MCP2221 device. 134267a95c21SRishi Gupta 134367a95c21SRishi Gupta To compile this driver as a module, choose M here: the module 134467a95c21SRishi Gupta will be called hid-mcp2221.ko. 134567a95c21SRishi Gupta 13462d167aabSJosé Expósitoconfig HID_KUNIT_TEST 134708809e48SJosé Expósito tristate "KUnit tests for HID" if !KUNIT_ALL_TESTS 134849904a0eSGeert Uytterhoeven depends on KUNIT 1349a608dc1cSJosé Expósito depends on HID_BATTERY_STRENGTH 13502d167aabSJosé Expósito depends on HID_UCLOGIC 13512d167aabSJosé Expósito default KUNIT_ALL_TESTS 13522d167aabSJosé Expósito help 13532d167aabSJosé Expósito This builds unit tests for HID. This option is not useful for 13542d167aabSJosé Expósito distributions or general kernels, but only for kernel 13552d167aabSJosé Expósito developers working on HID and associated drivers. 13562d167aabSJosé Expósito 13572d167aabSJosé Expósito For more information on KUnit and unit tests in general, 13582d167aabSJosé Expósito please refer to the KUnit documentation in 13592d167aabSJosé Expósito Documentation/dev-tools/kunit/. 13602d167aabSJosé Expósito 13612d167aabSJosé Expósito If in doubt, say "N". 13622d167aabSJosé Expósito 13635f22a799SJiri Slabyendmenu 13645f22a799SJiri Slaby 1365f5c27da4SBenjamin Tissoiressource "drivers/hid/bpf/Kconfig" 1366f5c27da4SBenjamin Tissoires 13671f41a6a9SHenrik Rydbergendif # HID 13681f41a6a9SHenrik Rydberg 13691f41a6a9SHenrik Rydbergsource "drivers/hid/usbhid/Kconfig" 13701f41a6a9SHenrik Rydberg 13714a200c3bSBenjamin Tissoiressource "drivers/hid/i2c-hid/Kconfig" 13724a200c3bSBenjamin Tissoires 13733703f53bSSrinivas Pandruvadasource "drivers/hid/intel-ish-hid/Kconfig" 13743703f53bSSrinivas Pandruvada 13754f567b9fSSandeep Singhsource "drivers/hid/amd-sfh-hid/Kconfig" 13764f567b9fSSandeep Singh 1377b05ff100SMaximilian Luzsource "drivers/hid/surface-hid/Kconfig" 1378b05ff100SMaximilian Luz 137925621bccSBenjamin Tissoiresendif # HID_SUPPORT 1380