163f3861dSJiri Kosina# 263f3861dSJiri Kosina# HID driver configuration 363f3861dSJiri Kosina# 43cd70986SJan Engelhardtmenuconfig HID_SUPPORT 53cd70986SJan Engelhardt bool "HID Devices" 663f3861dSJiri Kosina depends on INPUT 73cd70986SJan Engelhardt default y 806bfb7ebSJan Engelhardt ---help--- 906bfb7ebSJan Engelhardt Say Y here to get to see options for various computer-human interface 1006bfb7ebSJan Engelhardt device drivers. This option alone does not add any kernel code. 1106bfb7ebSJan Engelhardt 1206bfb7ebSJan Engelhardt If you say N, all options in this submenu will be skipped and disabled. 133cd70986SJan Engelhardt 143cd70986SJan Engelhardtif HID_SUPPORT 1563f3861dSJiri Kosina 1663f3861dSJiri Kosinaconfig HID 1763f3861dSJiri Kosina tristate "Generic HID support" 18c96c9d7bSRussell King depends on INPUT 1963f3861dSJiri Kosina default y 2063f3861dSJiri Kosina ---help--- 2169e4d948SJiri Kosina A human interface device (HID) is a type of computer device that 2269e4d948SJiri Kosina interacts directly with and takes input from humans. The term "HID" 2369e4d948SJiri Kosina most commonly used to refer to the USB-HID specification, but other 2469e4d948SJiri Kosina devices (such as, but not strictly limited to, Bluetooth) are 2569e4d948SJiri Kosina designed using HID specification (this involves certain keyboards, 2669e4d948SJiri Kosina mice, tablets, etc). This option compiles into kernel the generic 2769e4d948SJiri Kosina HID layer code (parser, usages, etc.), which can then be used by 2869e4d948SJiri Kosina transport-specific HID implementation (like USB or Bluetooth). 2969e4d948SJiri Kosina 3069e4d948SJiri Kosina For docs and specs, see http://www.usb.org/developers/hidpage/ 3169e4d948SJiri Kosina 32205adbecSPavel Machek If unsure, say Y. 3363f3861dSJiri Kosina 344f5ca836SJeremy Fitzhardingeconfig HID_BATTERY_STRENGTH 35692d30d6SJiri Kosina bool "Battery level reporting for HID devices" 36d66c266aSJiri Kosina depends on HID && POWER_SUPPLY && HID = POWER_SUPPLY 372198edddSJosh Boyer default n 38692d30d6SJiri Kosina ---help--- 39692d30d6SJiri Kosina This option adds support of reporting battery strength (for HID devices 40692d30d6SJiri Kosina that support this feature) through power_supply class so that userspace 41692d30d6SJiri Kosina tools, such as upower, can display it. 424f5ca836SJeremy Fitzhardinge 4386166b7bSJiri Kosinaconfig HIDRAW 4486166b7bSJiri Kosina bool "/dev/hidraw raw HID device support" 4586166b7bSJiri Kosina depends on HID 4686166b7bSJiri Kosina ---help--- 4786166b7bSJiri Kosina Say Y here if you want to support HID devices (from the USB 4886166b7bSJiri Kosina specification standpoint) that aren't strictly user interface 4986166b7bSJiri Kosina devices, like monitor controls and Uninterruptable Power Supplies. 5086166b7bSJiri Kosina 5186166b7bSJiri Kosina This module supports these devices separately using a separate 5286166b7bSJiri Kosina event interface on /dev/hidraw. 5386166b7bSJiri Kosina 5486166b7bSJiri Kosina There is also a /dev/hiddev configuration option in the USB HID 5586166b7bSJiri Kosina configuration menu. In comparison to hiddev, this device does not process 5686166b7bSJiri Kosina the hid events at all (no parsing, no lookups). This lets applications 5786166b7bSJiri Kosina to work on raw hid events when they want to, and avoid using transport-specific 5886166b7bSJiri Kosina userspace libhid/libusb libraries. 5986166b7bSJiri Kosina 6086166b7bSJiri Kosina If unsure, say Y. 6186166b7bSJiri Kosina 626db3dfefSJiri Kosinasource "drivers/hid/usbhid/Kconfig" 636db3dfefSJiri Kosina 645f22a799SJiri Slabymenu "Special HID drivers" 655f22a799SJiri Slaby depends on HID 665f22a799SJiri Slaby 678215d557SHenrik Rydbergconfig HID_GENERIC 688215d557SHenrik Rydberg tristate "Generic HID driver" 698215d557SHenrik Rydberg depends on HID 708215d557SHenrik Rydberg default y 718215d557SHenrik Rydberg ---help--- 728215d557SHenrik Rydberg Support for generic HID devices. 738215d557SHenrik Rydberg 748215d557SHenrik Rydberg To compile this driver as a module, choose M here: the module 758215d557SHenrik Rydberg will be called hid-generic. 768215d557SHenrik Rydberg 778215d557SHenrik Rydberg If unsure, say Y. 788215d557SHenrik Rydberg 7914a21cd4SJiri Slabyconfig HID_A4TECH 806a108a14SDavid Rientjes tristate "A4 tech mice" if EXPERT 8114a21cd4SJiri Slaby depends on USB_HID 826a108a14SDavid Rientjes default !EXPERT 8314a21cd4SJiri Slaby ---help--- 8414a21cd4SJiri Slaby Support for A4 tech X5 and WOP-35 / Trust 450L mice. 8514a21cd4SJiri Slaby 860ae43810SDmitry Torokhovconfig HID_ACRUX 870ae43810SDmitry Torokhov tristate "ACRUX game controller support" 88c0dbcc33SSergei Kolzun depends on USB_HID 890ae43810SDmitry Torokhov ---help--- 900ae43810SDmitry Torokhov Say Y here if you want to enable support for ACRUX game controllers. 910ae43810SDmitry Torokhov 920ae43810SDmitry Torokhovconfig HID_ACRUX_FF 93364b936fSSergei Kolzun bool "ACRUX force feedback support" 940ae43810SDmitry Torokhov depends on HID_ACRUX 95c0dbcc33SSergei Kolzun select INPUT_FF_MEMLESS 96c0dbcc33SSergei Kolzun ---help--- 97c0dbcc33SSergei Kolzun Say Y here if you want to enable force feedback support for ACRUX 98c0dbcc33SSergei Kolzun game controllers. 99c0dbcc33SSergei Kolzun 1008c19a515SJiri Slabyconfig HID_APPLE 1016a108a14SDavid Rientjes tristate "Apple {i,Power,Mac}Books" if EXPERT 1028c19a515SJiri Slaby depends on (USB_HID || BT_HIDP) 1036a108a14SDavid Rientjes default !EXPERT 1048c19a515SJiri Slaby ---help--- 1058c19a515SJiri Slaby Support for some Apple devices which less or more break 1068c19a515SJiri Slaby HID specification. 1078c19a515SJiri Slaby 108f0bd8e43SJiri Kosina Say Y here if you want support for keyboards of Apple iBooks, PowerBooks, 109f0bd8e43SJiri Kosina MacBooks, MacBook Pros and Apple Aluminum. 1108c19a515SJiri Slaby 111212da74dSJosenivaldo Benito Juniorconfig HID_AUREAL 112212da74dSJosenivaldo Benito Junior tristate "Aureal" 113212da74dSJosenivaldo Benito Junior depends on USB_HID 114212da74dSJosenivaldo Benito Junior ---help--- 115212da74dSJosenivaldo Benito Junior Support for Aureal Cy se W-01RN Remote Controller and other Aureal derived remotes. 116212da74dSJosenivaldo Benito Junior 117b5635b12SJiri Slabyconfig HID_BELKIN 1186a108a14SDavid Rientjes tristate "Belkin Flip KVM and Wireless keyboard" if EXPERT 119b5635b12SJiri Slaby depends on USB_HID 1206a108a14SDavid Rientjes default !EXPERT 121b5635b12SJiri Slaby ---help--- 122b5635b12SJiri Slaby Support for Belkin Flip KVM and Wireless keyboard. 123b5635b12SJiri Slaby 1243b239cd7SJiri Slabyconfig HID_CHERRY 1256a108a14SDavid Rientjes tristate "Cherry Cymotion keyboard" if EXPERT 1263b239cd7SJiri Slaby depends on USB_HID 1276a108a14SDavid Rientjes default !EXPERT 1283b239cd7SJiri Slaby ---help--- 129f0bd8e43SJiri Kosina Support for Cherry Cymotion keyboard. 1303b239cd7SJiri Slaby 131fcfacfd3SJiri Slabyconfig HID_CHICONY 1326a108a14SDavid Rientjes tristate "Chicony Tactical pad" if EXPERT 133fcfacfd3SJiri Slaby depends on USB_HID 1346a108a14SDavid Rientjes default !EXPERT 135fcfacfd3SJiri Slaby ---help--- 136fcfacfd3SJiri Slaby Support for Chicony Tactical pad. 137fcfacfd3SJiri Slaby 1383a370ca1SDon Princeconfig HID_PRODIKEYS 13995736de9SJiri Kosina tristate "Prodikeys PC-MIDI Keyboard support" 1403a370ca1SDon Prince depends on USB_HID && SND 1413a370ca1SDon Prince select SND_RAWMIDI 1423a370ca1SDon Prince ---help--- 1433a370ca1SDon Prince Support for Prodikeys PC-MIDI Keyboard device support. 1443a370ca1SDon Prince Say Y here to enable support for this device. 1453a370ca1SDon Prince - Prodikeys PC-MIDI keyboard. 1463a370ca1SDon Prince The Prodikeys PC-MIDI acts as a USB Audio device, with one MIDI 1473a370ca1SDon Prince input and one MIDI output. These MIDI jacks appear as 1483a370ca1SDon Prince a sound "card" in the ALSA sound system. 1493a370ca1SDon Prince Note: if you say N here, this device will still function as a basic 1503a370ca1SDon Prince multimedia keyboard, but will lack support for the musical keyboard 1513a370ca1SDon Prince and some additional multimedia keys. 1523a370ca1SDon Prince 1530f221320SJiri Slabyconfig HID_CYPRESS 1546a108a14SDavid Rientjes tristate "Cypress mouse and barcode readers" if EXPERT 1550f221320SJiri Slaby depends on USB_HID 1566a108a14SDavid Rientjes default !EXPERT 1570f221320SJiri Slaby ---help--- 158f0bd8e43SJiri Kosina Support for cypress mouse and barcode readers. 1590f221320SJiri Slaby 1600f6f4319SJiri Kosinaconfig HID_DRAGONRISE 161a1043044SBorislav Petkov tristate "DragonRise Inc. game controller" 1623f866fbdSRichard Walmsley depends on USB_HID 1630f6f4319SJiri Kosina ---help--- 1640f6f4319SJiri Kosina Say Y here if you have DragonRise Inc. game controllers. 165b4a65f4eSNikolai Kondrashov These might be branded as: 166b4a65f4eSNikolai Kondrashov - Tesun USB-703 167b4a65f4eSNikolai Kondrashov - Media-tech MT1504 "Rogue" 168b4a65f4eSNikolai Kondrashov - DVTech JS19 "Gear" 169b4a65f4eSNikolai Kondrashov - Defender Game Master 1700f6f4319SJiri Kosina 1710f6f4319SJiri Kosinaconfig DRAGONRISE_FF 172a1043044SBorislav Petkov bool "DragonRise Inc. force feedback" 1730f6f4319SJiri Kosina depends on HID_DRAGONRISE 1743f866fbdSRichard Walmsley select INPUT_FF_MEMLESS 1753f866fbdSRichard Walmsley ---help--- 1763f866fbdSRichard Walmsley Say Y here if you want to enable force feedback support for DragonRise Inc. 1773f866fbdSRichard Walmsley game controllers. 1783f866fbdSRichard Walmsley 17904561c5aSIgnaz Forsterconfig HID_EMS_FF 18004561c5aSIgnaz Forster tristate "EMS Production Inc. force feedback support" 18104561c5aSIgnaz Forster depends on USB_HID 18204561c5aSIgnaz Forster select INPUT_FF_MEMLESS 18304561c5aSIgnaz Forster ---help--- 18404561c5aSIgnaz Forster Say Y here if you want to enable force feedback support for devices by 18504561c5aSIgnaz Forster EMS Production Ltd. 18604561c5aSIgnaz Forster Currently the following devices are known to be supported: 18704561c5aSIgnaz Forster - Trio Linker Plus II 18804561c5aSIgnaz Forster 18964b386eaSRichard Nauberconfig HID_ELECOM 190a1043044SBorislav Petkov tristate "ELECOM BM084 bluetooth mouse" 19164b386eaSRichard Nauber depends on BT_HIDP 19264b386eaSRichard Nauber ---help--- 19364b386eaSRichard Nauber Support for the ELECOM BM084 (bluetooth mouse). 19464b386eaSRichard Nauber 1951f243e30SJiri Slabyconfig HID_EZKEY 1966a108a14SDavid Rientjes tristate "Ezkey BTC 8193 keyboard" if EXPERT 1971f243e30SJiri Slaby depends on USB_HID 1986a108a14SDavid Rientjes default !EXPERT 1991f243e30SJiri Slaby ---help--- 200f0bd8e43SJiri Kosina Support for Ezkey BTC 8193 keyboard. 2011f243e30SJiri Slaby 202d946e65eSAnssi Hannulaconfig HID_HOLTEK 203*ff9bf5a2STom Harwood tristate "Holtek HID devices" 204d946e65eSAnssi Hannula depends on USB_HID 205d946e65eSAnssi Hannula ---help--- 206*ff9bf5a2STom Harwood Support for Holtek based devices: 207*ff9bf5a2STom Harwood - Holtek On Line Grip based game controller 208*ff9bf5a2STom Harwood - Trust GXT 18 Gaming Keyboard 209d946e65eSAnssi Hannula 210d946e65eSAnssi Hannulaconfig HOLTEK_FF 211d946e65eSAnssi Hannula bool "Holtek On Line Grip force feedback support" 212d946e65eSAnssi Hannula depends on HID_HOLTEK 213d946e65eSAnssi Hannula select INPUT_FF_MEMLESS 214d946e65eSAnssi Hannula ---help--- 215d946e65eSAnssi Hannula Say Y here if you have a Holtek On Line Grip based game controller 216d946e65eSAnssi Hannula and want to have force feedback support for it. 217d946e65eSAnssi Hannula 218177900e8SJiri Kosinaconfig HID_KEYTOUCH 2193d366e28SStephen Boyd tristate "Keytouch HID devices" 220177900e8SJiri Kosina depends on USB_HID 221177900e8SJiri Kosina ---help--- 222177900e8SJiri Kosina Support for Keytouch HID devices not fully compliant with 223177900e8SJiri Kosina the specification. Currently supported: 224177900e8SJiri Kosina - Keytouch IEC 60945 225177900e8SJiri Kosina 22679422741SJiri Kosinaconfig HID_KYE 22722ca20b2SNikolai Kondrashov tristate "KYE/Genius devices" 22879422741SJiri Kosina depends on USB_HID 22979422741SJiri Kosina ---help--- 23022ca20b2SNikolai Kondrashov Support for KYE/Genius devices not fully compliant with HID standard: 23122ca20b2SNikolai Kondrashov - Ergo Mouse 23222ca20b2SNikolai Kondrashov - EasyPen i405X tablet 23322ca20b2SNikolai Kondrashov - MousePen i608X tablet 23422ca20b2SNikolai Kondrashov - EasyPen M610X tablet 23579422741SJiri Kosina 236f8a489ccSNikolai Kondrashovconfig HID_UCLOGIC 237f36ee074SJiri Kosina tristate "UC-Logic" 238f8a489ccSNikolai Kondrashov depends on USB_HID 239f8a489ccSNikolai Kondrashov ---help--- 240f8a489ccSNikolai Kondrashov Support for UC-Logic tablets. 241f8a489ccSNikolai Kondrashov 24272a46344SNikolai Kondrashovconfig HID_WALTOP 24372a46344SNikolai Kondrashov tristate "Waltop" 24472a46344SNikolai Kondrashov depends on USB_HID 24572a46344SNikolai Kondrashov ---help--- 24672a46344SNikolai Kondrashov Support for Waltop tablets. 24772a46344SNikolai Kondrashov 248949f8fefSJiri Slabyconfig HID_GYRATION 249a1043044SBorislav Petkov tristate "Gyration remote control" 250949f8fefSJiri Slaby depends on USB_HID 251949f8fefSJiri Slaby ---help--- 252f0bd8e43SJiri Kosina Support for Gyration remote control. 253949f8fefSJiri Slaby 254711a680eSBruno Premontconfig HID_TWINHAN 255a1043044SBorislav Petkov tristate "Twinhan IR remote control" 256711a680eSBruno Premont depends on USB_HID 257711a680eSBruno Premont ---help--- 258711a680eSBruno Premont Support for Twinhan IR remote control. 259711a680eSBruno Premont 260fdf93aa3SJiri Kosinaconfig HID_KENSINGTON 2616a108a14SDavid Rientjes tristate "Kensington Slimblade Trackball" if EXPERT 262fdf93aa3SJiri Kosina depends on USB_HID 2636a108a14SDavid Rientjes default !EXPERT 264fdf93aa3SJiri Kosina ---help--- 265fdf93aa3SJiri Kosina Support for Kensington Slimblade Trackball. 266fdf93aa3SJiri Kosina 26775b07022SChris Schlundconfig HID_LCPOWER 26875b07022SChris Schlund tristate "LC-Power" 26975b07022SChris Schlund depends on USB_HID 27075b07022SChris Schlund ---help--- 27175b07022SChris Schlund Support for LC-Power RC1000MCE RF remote control. 27275b07022SChris Schlund 273c1dcad2dSBernhard Seiboldconfig HID_LENOVO_TPKBD 274c1dcad2dSBernhard Seibold tristate "Lenovo ThinkPad USB Keyboard with TrackPoint" 275c1dcad2dSBernhard Seibold depends on USB_HID 27625976a79SBryan Wu select NEW_LEDS 277c1dcad2dSBernhard Seibold select LEDS_CLASS 278c1dcad2dSBernhard Seibold ---help--- 279c1dcad2dSBernhard Seibold Support for the Lenovo ThinkPad USB Keyboard with TrackPoint. 280c1dcad2dSBernhard Seibold 281c1dcad2dSBernhard Seibold Say Y here if you have a Lenovo ThinkPad USB Keyboard with TrackPoint 282c1dcad2dSBernhard Seibold and would like to use device-specific features like changing the 283c1dcad2dSBernhard Seibold sensitivity of the trackpoint, using the microphone mute button or 284c1dcad2dSBernhard Seibold controlling the mute and microphone mute LEDs. 285c1dcad2dSBernhard Seibold 2865f22a799SJiri Slabyconfig HID_LOGITECH 2876a108a14SDavid Rientjes tristate "Logitech devices" if EXPERT 2885f22a799SJiri Slaby depends on USB_HID 2896a108a14SDavid Rientjes default !EXPERT 2905f22a799SJiri Slaby ---help--- 291f0bd8e43SJiri Kosina Support for Logitech devices that are not fully compliant with HID standard. 2925f22a799SJiri Slaby 293534a7b8eSNestor Lopez Casadoconfig HID_LOGITECH_DJ 294534a7b8eSNestor Lopez Casado tristate "Logitech Unifying receivers full support" 295534a7b8eSNestor Lopez Casado depends on HID_LOGITECH 296534a7b8eSNestor Lopez Casado default m 297534a7b8eSNestor Lopez Casado ---help--- 298534a7b8eSNestor Lopez Casado Say Y if you want support for Logitech Unifying receivers and devices. 299534a7b8eSNestor Lopez Casado Unifying receivers are capable of pairing up to 6 Logitech compliant 3000944e964SKonstantin Khlebnikov devices to the same receiver. Without this driver it will be handled by 3010944e964SKonstantin Khlebnikov generic USB_HID driver and all incomming events will be multiplexed 3020944e964SKonstantin Khlebnikov into a single mouse and a single keyboard device. 303534a7b8eSNestor Lopez Casado 304606bd0a8SJiri Slabyconfig LOGITECH_FF 3050f6f4319SJiri Kosina bool "Logitech force feedback support" 306606bd0a8SJiri Slaby depends on HID_LOGITECH 307606bd0a8SJiri Slaby select INPUT_FF_MEMLESS 308606bd0a8SJiri Slaby help 309606bd0a8SJiri Slaby Say Y here if you have one of these devices: 310606bd0a8SJiri Slaby - Logitech WingMan Cordless RumblePad 311606bd0a8SJiri Slaby - Logitech WingMan Cordless RumblePad 2 312606bd0a8SJiri Slaby - Logitech WingMan Force 3D 313606bd0a8SJiri Slaby - Logitech Formula Force EX 314fd30ea8cSJiri Kosina - Logitech WingMan Formula Force GP 315606bd0a8SJiri Slaby - Logitech MOMO Force wheel 316606bd0a8SJiri Slaby 317606bd0a8SJiri Slaby and if you want to enable force feedback for them. 318606bd0a8SJiri Slaby Note: if you say N here, this device will still be supported, but without 319606bd0a8SJiri Slaby force feedback. 320606bd0a8SJiri Slaby 321606bd0a8SJiri Slabyconfig LOGIRUMBLEPAD2_FF 3222c6118e4SHendrik Iben bool "Logitech RumblePad/Rumblepad 2 force feedback support" 323606bd0a8SJiri Slaby depends on HID_LOGITECH 324606bd0a8SJiri Slaby select INPUT_FF_MEMLESS 325606bd0a8SJiri Slaby help 326606bd0a8SJiri Slaby Say Y here if you want to enable force feedback support for Logitech 3272c6118e4SHendrik Iben RumblePad and Rumblepad 2 devices. 328606bd0a8SJiri Slaby 32974f292caSGary Steinconfig LOGIG940_FF 33074f292caSGary Stein bool "Logitech Flight System G940 force feedback support" 33174f292caSGary Stein depends on HID_LOGITECH 33274f292caSGary Stein select INPUT_FF_MEMLESS 33374f292caSGary Stein help 33474f292caSGary Stein Say Y here if you want to enable force feedback support for Logitech 33574f292caSGary Stein Flight System G940 devices. 33674f292caSGary Stein 337a7ac90f1SMichal Malýconfig LOGIWHEELS_FF 338a7ac90f1SMichal Malý bool "Logitech wheels configuration and force feedback support" 33932c88cbcSSimon Wood depends on HID_LOGITECH 34032c88cbcSSimon Wood select INPUT_FF_MEMLESS 34170c2cabdSJiri Kosina default LOGITECH_FF 34232c88cbcSSimon Wood help 343a7ac90f1SMichal Malý Say Y here if you want to enable force feedback and range setting 344a7ac90f1SMichal Malý support for following Logitech wheels: 345a7ac90f1SMichal Malý - Logitech Driving Force 346a7ac90f1SMichal Malý - Logitech Driving Force Pro 347a7ac90f1SMichal Malý - Logitech Driving Force GT 348a7ac90f1SMichal Malý - Logitech G25 349a7ac90f1SMichal Malý - Logitech G27 350a7ac90f1SMichal Malý - Logitech MOMO/MOMO 2 351a7ac90f1SMichal Malý - Logitech Formula Force EX 35232c88cbcSSimon Wood 353128537ceSMichael Pooleconfig HID_MAGICMOUSE 3549f523147SJiri Kosina tristate "Apple MagicMouse multi-touch support" 355128537ceSMichael Poole depends on BT_HIDP 356128537ceSMichael Poole ---help--- 3579f523147SJiri Kosina Support for the Apple Magic Mouse multi-touch. 358128537ceSMichael Poole 359128537ceSMichael Poole Say Y here if you want support for the multi-touch features of the 360128537ceSMichael Poole Apple Wireless "Magic" Mouse. 361128537ceSMichael Poole 36278a849a6SJiri Slabyconfig HID_MICROSOFT 3636a108a14SDavid Rientjes tristate "Microsoft non-fully HID-compliant devices" if EXPERT 36478a849a6SJiri Slaby depends on USB_HID 3656a108a14SDavid Rientjes default !EXPERT 36678a849a6SJiri Slaby ---help--- 367f0bd8e43SJiri Kosina Support for Microsoft devices that are not fully compliant with HID standard. 36878a849a6SJiri Slaby 3693b8006e5SJiri Slabyconfig HID_MONTEREY 3706a108a14SDavid Rientjes tristate "Monterey Genius KB29E keyboard" if EXPERT 3713b8006e5SJiri Slaby depends on USB_HID 3726a108a14SDavid Rientjes default !EXPERT 3733b8006e5SJiri Slaby ---help--- 3743b8006e5SJiri Slaby Support for Monterey Genius KB29E. 3753b8006e5SJiri Slaby 3765519cab4SBenjamin Tissoiresconfig HID_MULTITOUCH 3775519cab4SBenjamin Tissoires tristate "HID Multitouch panels" 3785519cab4SBenjamin Tissoires depends on USB_HID 3795519cab4SBenjamin Tissoires ---help--- 3805519cab4SBenjamin Tissoires Generic support for HID multitouch panels. 3815519cab4SBenjamin Tissoires 3825519cab4SBenjamin Tissoires Say Y here if you have one of the following devices: 383f786bba4SBenjamin Tissoires - 3M PCT touch screens 384e6aac342SBenjamin Tissoires - ActionStar dual touch panels 385b1057124SBenjamin Tissoires - Atmel panels 38622408283SBenjamin Tissoires - Cando dual touch panels 387942fd422SAustin Zhang - Chunghwa panels 38879603dc9SBenjamin Tissoires - CVTouch panels 3892d93666eSBenjamin Tissoires - Cypress TrueTouch panels 390c04abeefSBenjamin Tissoires - Elo TouchSystems IntelliTouch Plus panels 39122408283SBenjamin Tissoires - GeneralTouch 'Sensing Win7-TwoFinger' panels 392ee0fbd14SBenjamin Tissoires - GoodTouch panels 3932d93666eSBenjamin Tissoires - Hanvon dual touch panels 39422408283SBenjamin Tissoires - Ilitek dual touch panels 3954dfcced8SBenjamin Tissoires - IrTouch Infrared USB panels 396c50bb1a4SJeff Brown - LG Display panels (Dell ST2220Tc) 397df167c4aSBenjamin Tissoires - Lumio CrystalTouch panels 3984a6ee685SBenjamin Tissoires - MosArt dual-touch panels 3992258e863SDenis Kovalev - Panasonic multitouch panels 4006ab3a9a6SJohn Sung - PenMount dual touch panels 401847672cdSBenjamin Tissoires - Perixx Peripad 701 touchpad 402b7ea95ffSAaron Tian - PixArt optical touch screen 4032d93666eSBenjamin Tissoires - Pixcir dual touch panels 4045e7ea11fSBenjamin Tissoires - Quanta panels 40522408283SBenjamin Tissoires - eGalax dual-touch panels, including the Joojoo and Wetab tablets 406043b403aSBenjamin Tissoires - Stantum multitouch panels 4075e74e56dSBenjamin Tissoires - Touch International Panels 408617b64f9SBenjamin Tissoires - Unitec Panels 409bc8a2a9bSice chien - XAT optical touch panels 41011576c61SMasatoshi Hoshikawa - Xiroku optical touch panels 4115519cab4SBenjamin Tissoires 4122d93666eSBenjamin Tissoires If unsure, say N. 4132d93666eSBenjamin Tissoires 4142d93666eSBenjamin Tissoires To compile this driver as a module, choose M here: the 4152d93666eSBenjamin Tissoires module will be called hid-multitouch. 4162d93666eSBenjamin Tissoires 41794011f93SRafi Rubinconfig HID_NTRIG 418a1043044SBorislav Petkov tristate "N-Trig touch screen" 41994011f93SRafi Rubin depends on USB_HID 42094011f93SRafi Rubin ---help--- 42194011f93SRafi Rubin Support for N-Trig touch screen. 42294011f93SRafi Rubin 423cd9ec30dSJohnathon Harrisconfig HID_ORTEK 424d586dca0SJiri Kosina tristate "Ortek PKB-1700/WKB-2000/Skycable wireless keyboard and mouse trackpad" 425cd9ec30dSJohnathon Harris depends on USB_HID 426cd9ec30dSJohnathon Harris ---help--- 427d586dca0SJiri Kosina There are certain devices which have LogicalMaximum wrong in the keyboard 428d586dca0SJiri Kosina usage page of their report descriptor. The most prevailing ones so far 429d586dca0SJiri Kosina are manufactured by Ortek, thus the name of the driver. Currently 430d586dca0SJiri Kosina supported devices by this driver are 431d586dca0SJiri Kosina 432d586dca0SJiri Kosina - Ortek PKB-1700 433d586dca0SJiri Kosina - Ortek WKB-2000 434d586dca0SJiri Kosina - Skycable wireless presenter 435cd9ec30dSJohnathon Harris 4365f022298SJiri Slabyconfig HID_PANTHERLORD 437a1043044SBorislav Petkov tristate "Pantherlord/GreenAsia game controller" 4380f6f4319SJiri Kosina depends on USB_HID 4390f6f4319SJiri Kosina ---help--- 4400f6f4319SJiri Kosina Say Y here if you have a PantherLord/GreenAsia based game controller 4410f6f4319SJiri Kosina or adapter. 4420f6f4319SJiri Kosina 4435f022298SJiri Slabyconfig PANTHERLORD_FF 4445f022298SJiri Slaby bool "Pantherlord force feedback support" 4455f022298SJiri Slaby depends on HID_PANTHERLORD 4465f022298SJiri Slaby select INPUT_FF_MEMLESS 4470f6f4319SJiri Kosina ---help--- 4485f022298SJiri Slaby Say Y here if you have a PantherLord/GreenAsia based game controller 4495f022298SJiri Slaby or adapter and want to enable force feedback support for it. 4505f022298SJiri Slaby 4511e762532SJiri Slabyconfig HID_PETALYNX 452a1043044SBorislav Petkov tristate "Petalynx Maxter remote control" 4531e762532SJiri Slaby depends on USB_HID 4541e762532SJiri Slaby ---help--- 455f0bd8e43SJiri Kosina Support for Petalynx Maxter remote control. 4561e762532SJiri Slaby 457236db47cSBruno Prémontconfig HID_PICOLCD 458236db47cSBruno Prémont tristate "PicoLCD (graphic version)" 459236db47cSBruno Prémont depends on USB_HID 460236db47cSBruno Prémont ---help--- 461236db47cSBruno Prémont This provides support for Minibox PicoLCD devices, currently 462236db47cSBruno Prémont only the graphical ones are supported. 463236db47cSBruno Prémont 464236db47cSBruno Prémont This includes support for the following device features: 465236db47cSBruno Prémont - Keypad 466236db47cSBruno Prémont - Switching between Firmware and Flash mode 4679bbf2b98SBruno Prémont - EEProm / Flash access (via debugfs) 4685435f281SBruno Prémont Features selectively enabled: 4695435f281SBruno Prémont - Framebuffer for monochrome 256x64 display 4705435f281SBruno Prémont - Backlight control 4715435f281SBruno Prémont - Contrast control 4725435f281SBruno Prémont - General purpose outputs 473b8c21cf6SBruno Prémont Features that are not (yet) supported: 474236db47cSBruno Prémont - IR 475236db47cSBruno Prémont 4765435f281SBruno Prémontconfig HID_PICOLCD_FB 4776a108a14SDavid Rientjes bool "Framebuffer support" if EXPERT 4786a108a14SDavid Rientjes default !EXPERT 4795435f281SBruno Prémont depends on HID_PICOLCD 4805435f281SBruno Prémont depends on HID_PICOLCD=FB || FB=y 4815435f281SBruno Prémont select FB_DEFERRED_IO 4825435f281SBruno Prémont select FB_SYS_FILLRECT 4835435f281SBruno Prémont select FB_SYS_COPYAREA 4845435f281SBruno Prémont select FB_SYS_IMAGEBLIT 4855435f281SBruno Prémont select FB_SYS_FOPS 4865435f281SBruno Prémont ---help--- 4875435f281SBruno Prémont Provide access to PicoLCD's 256x64 monochrome display via a 4885435f281SBruno Prémont frambuffer device. 4895435f281SBruno Prémont 4905435f281SBruno Prémontconfig HID_PICOLCD_BACKLIGHT 4916a108a14SDavid Rientjes bool "Backlight control" if EXPERT 4926a108a14SDavid Rientjes default !EXPERT 4935435f281SBruno Prémont depends on HID_PICOLCD 4945435f281SBruno Prémont depends on HID_PICOLCD=BACKLIGHT_CLASS_DEVICE || BACKLIGHT_CLASS_DEVICE=y 4955435f281SBruno Prémont ---help--- 4965435f281SBruno Prémont Provide access to PicoLCD's backlight control via backlight 4975435f281SBruno Prémont class. 4985435f281SBruno Prémont 4995435f281SBruno Prémontconfig HID_PICOLCD_LCD 5006a108a14SDavid Rientjes bool "Contrast control" if EXPERT 5016a108a14SDavid Rientjes default !EXPERT 5025435f281SBruno Prémont depends on HID_PICOLCD 5035435f281SBruno Prémont depends on HID_PICOLCD=LCD_CLASS_DEVICE || LCD_CLASS_DEVICE=y 5045435f281SBruno Prémont ---help--- 5055435f281SBruno Prémont Provide access to PicoLCD's LCD contrast via lcd class. 5065435f281SBruno Prémont 5075435f281SBruno Prémontconfig HID_PICOLCD_LEDS 5086a108a14SDavid Rientjes bool "GPO via leds class" if EXPERT 5096a108a14SDavid Rientjes default !EXPERT 5105435f281SBruno Prémont depends on HID_PICOLCD 5115435f281SBruno Prémont depends on HID_PICOLCD=LEDS_CLASS || LEDS_CLASS=y 5125435f281SBruno Prémont ---help--- 5135435f281SBruno Prémont Provide access to PicoLCD's GPO pins via leds class. 5145435f281SBruno Prémont 515f6a04605STerry Lambertconfig HID_PRIMAX 516dfe9a312SJiri Kosina tristate "Primax non-fully HID-compliant devices" 517f6a04605STerry Lambert depends on USB_HID 518f6a04605STerry Lambert ---help--- 519f6a04605STerry Lambert Support for Primax devices that are not fully compliant with the 520f6a04605STerry Lambert HID standard. 521f6a04605STerry Lambert 522206f5f2fSStefan Achatzconfig HID_ROCCAT 523bd393dbdSStefan Achatz tristate "Roccat device support" 524206f5f2fSStefan Achatz depends on USB_HID 525206f5f2fSStefan Achatz ---help--- 526bd393dbdSStefan Achatz Support for Roccat devices. 527bd393dbdSStefan Achatz Say Y here if you have a Roccat mouse or keyboard and want 528bd393dbdSStefan Achatz support for its special functionalities. 529cb7cf3daSStefan Achatz 5301e93674aSAndreas Hübnerconfig HID_SAITEK 5311e93674aSAndreas Hübner tristate "Saitek non-fully HID-compliant devices" 5321e93674aSAndreas Hübner depends on USB_HID 5331e93674aSAndreas Hübner ---help--- 5341e93674aSAndreas Hübner Support for Saitek devices that are not fully compliant with the 5351e93674aSAndreas Hübner HID standard. 5361e93674aSAndreas Hübner 5371e93674aSAndreas Hübner Currently only supports the PS1000 controller. 5381e93674aSAndreas Hübner 539980a3da6SJiri Slabyconfig HID_SAMSUNG 540a1043044SBorislav Petkov tristate "Samsung InfraRed remote control or keyboards" 541980a3da6SJiri Slaby depends on USB_HID 542980a3da6SJiri Slaby ---help--- 543b355850bSDon Prince Support for Samsung InfraRed remote control or keyboards. 544980a3da6SJiri Slaby 545bd28ce00SJiri Slabyconfig HID_SONY 546a1043044SBorislav Petkov tristate "Sony PS3 controller" 547bd28ce00SJiri Slaby depends on USB_HID 548bd28ce00SJiri Slaby ---help--- 549bd28ce00SJiri Slaby Support for Sony PS3 controller. 550bd28ce00SJiri Slaby 55174bc6953SStefan Kriwanekconfig HID_SPEEDLINK 55274bc6953SStefan Kriwanek tristate "Speedlink VAD Cezanne mouse support" 55374bc6953SStefan Kriwanek depends on USB_HID 55474bc6953SStefan Kriwanek ---help--- 55574bc6953SStefan Kriwanek Support for Speedlink Vicious and Divine Cezanne mouse. 55674bc6953SStefan Kriwanek 55790231e7eSJiri Slabyconfig HID_SUNPLUS 558a1043044SBorislav Petkov tristate "Sunplus wireless desktop" 55990231e7eSJiri Slaby depends on USB_HID 56090231e7eSJiri Slaby ---help--- 561f0bd8e43SJiri Kosina Support for Sunplus wireless desktop. 56290231e7eSJiri Slaby 5630f6f4319SJiri Kosinaconfig HID_GREENASIA 564a1043044SBorislav Petkov tristate "GreenAsia (Product ID 0x12) game controller support" 56542859e0bSLukasz Lubojanski depends on USB_HID 5660f6f4319SJiri Kosina ---help--- 5670f6f4319SJiri Kosina Say Y here if you have a GreenAsia (Product ID 0x12) based game 5680f6f4319SJiri Kosina controller or adapter. 5690f6f4319SJiri Kosina 5700f6f4319SJiri Kosinaconfig GREENASIA_FF 5710f6f4319SJiri Kosina bool "GreenAsia (Product ID 0x12) force feedback support" 5720f6f4319SJiri Kosina depends on HID_GREENASIA 57342859e0bSLukasz Lubojanski select INPUT_FF_MEMLESS 57442859e0bSLukasz Lubojanski ---help--- 57542859e0bSLukasz Lubojanski Say Y here if you have a GreenAsia (Product ID 0x12) based game controller 576692105b8SMatt LaPlante (like MANTA Warrior MM816 and SpeedLink Strike2 SL-6635) or adapter 57742859e0bSLukasz Lubojanski and want to enable force feedback support for it. 57842859e0bSLukasz Lubojanski 5796cf851d8SJiri Kosinaconfig HID_HYPERV_MOUSE 5806cf851d8SJiri Kosina tristate "Microsoft Hyper-V mouse driver" 5816cf851d8SJiri Kosina depends on HYPERV 5826cf851d8SJiri Kosina ---help--- 5836cf851d8SJiri Kosina Select this option to enable the Hyper-V mouse driver. 5846cf851d8SJiri Kosina 585fac733f0SJussi Kivilinnaconfig HID_SMARTJOYPLUS 58673d5e8f7SJiri Kosina tristate "SmartJoy PLUS PS2/USB adapter support" 587fac733f0SJussi Kivilinna depends on USB_HID 588fac733f0SJussi Kivilinna ---help--- 5891bcc2067SSean Young Support for SmartJoy PLUS PS2/USB adapter, Super Dual Box, 5901bcc2067SSean Young Super Joy Box 3 Pro, Super Dual Box Pro, and Super Joy Box 5 Pro. 5911bcc2067SSean Young 5921bcc2067SSean Young Note that DDR (Dance Dance Revolution) mode is not supported, nor 5931bcc2067SSean Young is pressure sensitive buttons on the pro models. 594fac733f0SJussi Kivilinna 595fac733f0SJussi Kivilinnaconfig SMARTJOYPLUS_FF 596fac733f0SJussi Kivilinna bool "SmartJoy PLUS PS2/USB adapter force feedback support" 597fac733f0SJussi Kivilinna depends on HID_SMARTJOYPLUS 598fac733f0SJussi Kivilinna select INPUT_FF_MEMLESS 599fac733f0SJussi Kivilinna ---help--- 600fac733f0SJussi Kivilinna Say Y here if you have a SmartJoy PLUS PS2/USB adapter and want to 601fac733f0SJussi Kivilinna enable force feedback support for it. 602fac733f0SJussi Kivilinna 6032701eaabSJiri Kosinaconfig HID_TIVO 60444ea35c1SJarod Wilson tristate "TiVo Slide Bluetooth remote control support" 605740363fbSJiri Kosina depends on (USB_HID || BT_HIDP) 60644ea35c1SJarod Wilson ---help--- 60744ea35c1SJarod Wilson Say Y if you have a TiVo Slide Bluetooth remote control. 60844ea35c1SJarod Wilson 609f14f526dSLev Babievconfig HID_TOPSEED 61054001081SKees Bakker tristate "TopSeed Cyberlink, BTC Emprex, Conceptronic remote control support" 611f14f526dSLev Babiev depends on USB_HID 612f14f526dSLev Babiev ---help--- 61354001081SKees Bakker Say Y if you have a TopSeed Cyberlink or BTC Emprex or Conceptronic 61454001081SKees Bakker CLLRCMCE remote control. 615f14f526dSLev Babiev 6160f6f4319SJiri Kosinaconfig HID_THRUSTMASTER 61773d5e8f7SJiri Kosina tristate "ThrustMaster devices support" 61810e41a71SJiri Slaby depends on USB_HID 6190f6f4319SJiri Kosina ---help--- 62010e41a71SJiri Slaby Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 6210f6f4319SJiri Kosina a THRUSTMASTER Ferrari GT Rumble Wheel. 6220f6f4319SJiri Kosina 6230f6f4319SJiri Kosinaconfig THRUSTMASTER_FF 6240f6f4319SJiri Kosina bool "ThrustMaster devices force feedback support" 6250f6f4319SJiri Kosina depends on HID_THRUSTMASTER 6260f6f4319SJiri Kosina select INPUT_FF_MEMLESS 6270f6f4319SJiri Kosina ---help--- 6287a84b133SRuben Aos Garralda Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 3, 6297a84b133SRuben Aos Garralda a THRUSTMASTER Dual Trigger 3-in-1 or a THRUSTMASTER Ferrari GT 6307a84b133SRuben Aos Garralda Rumble Force or Force Feedback Wheel. 63110e41a71SJiri Slaby 632ca2dcd40SBastien Noceraconfig HID_WACOM 6332dbf209dSJiri Kosina tristate "Wacom Bluetooth devices support" 634ca2dcd40SBastien Nocera depends on BT_HIDP 6354e52b538SDavid Rientjes depends on LEDS_CLASS 63659d2334aSPrzemo Firszt select POWER_SUPPLY 63759d2334aSPrzemo Firszt ---help--- 6387e551abbSPrzemo Firszt Support for Wacom Graphire Bluetooth and Intuos4 WL tablets. 63959d2334aSPrzemo Firszt 640fb51b443SDavid Herrmannconfig HID_WIIMOTE 641fb51b443SDavid Herrmann tristate "Nintendo Wii Remote support" 642fb51b443SDavid Herrmann depends on BT_HIDP 64323a5a4a3SDavid Herrmann depends on LEDS_CLASS 6446591d758SDavid Herrmann select POWER_SUPPLY 645ef6f4115SDavid Herrmann select INPUT_FF_MEMLESS 646fb51b443SDavid Herrmann ---help--- 647fb51b443SDavid Herrmann Support for the Nintendo Wii Remote bluetooth device. 648fb51b443SDavid Herrmann 649cb99221bSDavid Herrmannconfig HID_WIIMOTE_EXT 650cb99221bSDavid Herrmann bool "Nintendo Wii Remote Extension support" 651cb99221bSDavid Herrmann depends on HID_WIIMOTE 652cb99221bSDavid Herrmann default HID_WIIMOTE 653cb99221bSDavid Herrmann ---help--- 654cb99221bSDavid Herrmann Support for extension controllers of the Nintendo Wii Remote. Say yes 655cb99221bSDavid Herrmann here if you want to use the Nintendo Motion+, Nunchuck or Classic 656cb99221bSDavid Herrmann extension controllers with your Wii Remote. 657cb99221bSDavid Herrmann 6580f6f4319SJiri Kosinaconfig HID_ZEROPLUS 65973d5e8f7SJiri Kosina tristate "Zeroplus based game controller support" 660987fbc1fSJiri Slaby depends on USB_HID 6610f6f4319SJiri Kosina ---help--- 662987fbc1fSJiri Slaby Say Y here if you have a Zeroplus based game controller. 663987fbc1fSJiri Slaby 6640f6f4319SJiri Kosinaconfig ZEROPLUS_FF 6650f6f4319SJiri Kosina bool "Zeroplus based game controller force feedback support" 6660f6f4319SJiri Kosina depends on HID_ZEROPLUS 6670f6f4319SJiri Kosina select INPUT_FF_MEMLESS 6680f6f4319SJiri Kosina ---help--- 6690f6f4319SJiri Kosina Say Y here if you have a Zeroplus based game controller and want 6700f6f4319SJiri Kosina to have force feedback support for it. 6710f6f4319SJiri Kosina 672a9885c8fSDon Princeconfig HID_ZYDACRON 67373d5e8f7SJiri Kosina tristate "Zydacron remote control support" 674a9885c8fSDon Prince depends on USB_HID 675a9885c8fSDon Prince ---help--- 676a9885c8fSDon Prince Support for Zydacron remote control. 677a9885c8fSDon Prince 6785f22a799SJiri Slabyendmenu 6795f22a799SJiri Slaby 6803cd70986SJan Engelhardtendif # HID_SUPPORT 681