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 34c080d89aSJiri Kosinaconfig HID_DEBUG 35c080d89aSJiri Kosina bool "HID debugging support" 36205adbecSPavel Machek default y 37c080d89aSJiri Kosina depends on HID 38c080d89aSJiri Kosina ---help--- 39c080d89aSJiri Kosina This option lets the HID layer output diagnostics about its internal 40c080d89aSJiri Kosina state, resolve HID usages, dump HID fields, etc. Individual HID drivers 41c080d89aSJiri Kosina use this debugging facility to output information about individual HID 42c080d89aSJiri Kosina devices, etc. 43c080d89aSJiri Kosina 44c080d89aSJiri Kosina This feature is useful for those who are either debugging the HID parser 45c080d89aSJiri Kosina or any HID hardware device. 46c080d89aSJiri Kosina 47205adbecSPavel Machek If unsure, say Y. 48c080d89aSJiri Kosina 4986166b7bSJiri Kosinaconfig HIDRAW 5086166b7bSJiri Kosina bool "/dev/hidraw raw HID device support" 5186166b7bSJiri Kosina depends on HID 5286166b7bSJiri Kosina ---help--- 5386166b7bSJiri Kosina Say Y here if you want to support HID devices (from the USB 5486166b7bSJiri Kosina specification standpoint) that aren't strictly user interface 5586166b7bSJiri Kosina devices, like monitor controls and Uninterruptable Power Supplies. 5686166b7bSJiri Kosina 5786166b7bSJiri Kosina This module supports these devices separately using a separate 5886166b7bSJiri Kosina event interface on /dev/hidraw. 5986166b7bSJiri Kosina 6086166b7bSJiri Kosina There is also a /dev/hiddev configuration option in the USB HID 6186166b7bSJiri Kosina configuration menu. In comparison to hiddev, this device does not process 6286166b7bSJiri Kosina the hid events at all (no parsing, no lookups). This lets applications 6386166b7bSJiri Kosina to work on raw hid events when they want to, and avoid using transport-specific 6486166b7bSJiri Kosina userspace libhid/libusb libraries. 6586166b7bSJiri Kosina 6686166b7bSJiri Kosina If unsure, say Y. 6786166b7bSJiri Kosina 686db3dfefSJiri Kosinasource "drivers/hid/usbhid/Kconfig" 696db3dfefSJiri Kosina 705f22a799SJiri Slabymenu "Special HID drivers" 715f22a799SJiri Slaby depends on HID 725f22a799SJiri Slaby 7302ae9a1aSJiri Slabyconfig HID_COMPAT 7402ae9a1aSJiri Slaby bool "Load all HID drivers on hid core load" 7502ae9a1aSJiri Slaby default y 7602ae9a1aSJiri Slaby ---help--- 7702ae9a1aSJiri Slaby Compatible option for older userspace. If you have system without udev 7802ae9a1aSJiri Slaby support of module loading through aliases and also old 7902ae9a1aSJiri Slaby module-init-tools which can't handle hid bus, choose Y here. Otherwise 8002ae9a1aSJiri Slaby say N. If you say N and your userspace is old enough, the only 816f3c0e50SAlex Chiang functionality you lose is modules autoloading. 8202ae9a1aSJiri Slaby 8302ae9a1aSJiri Slaby If unsure, say Y. 8402ae9a1aSJiri Slaby 8514a21cd4SJiri Slabyconfig HID_A4TECH 86b36299bcSJiri Kosina tristate "A4 tech" if EMBEDDED 8714a21cd4SJiri Slaby depends on USB_HID 88d04b431eSDavid Brownell default !EMBEDDED 8914a21cd4SJiri Slaby ---help--- 9014a21cd4SJiri Slaby Support for A4 tech X5 and WOP-35 / Trust 450L mice. 9114a21cd4SJiri Slaby 928c19a515SJiri Slabyconfig HID_APPLE 93b36299bcSJiri Kosina tristate "Apple" if EMBEDDED 948c19a515SJiri Slaby depends on (USB_HID || BT_HIDP) 95d04b431eSDavid Brownell default !EMBEDDED 968c19a515SJiri Slaby ---help--- 978c19a515SJiri Slaby Support for some Apple devices which less or more break 988c19a515SJiri Slaby HID specification. 998c19a515SJiri Slaby 100f0bd8e43SJiri Kosina Say Y here if you want support for keyboards of Apple iBooks, PowerBooks, 101f0bd8e43SJiri Kosina MacBooks, MacBook Pros and Apple Aluminum. 1028c19a515SJiri Slaby 103b5635b12SJiri Slabyconfig HID_BELKIN 104b36299bcSJiri Kosina tristate "Belkin" if EMBEDDED 105b5635b12SJiri Slaby depends on USB_HID 106d04b431eSDavid Brownell default !EMBEDDED 107b5635b12SJiri Slaby ---help--- 108b5635b12SJiri Slaby Support for Belkin Flip KVM and Wireless keyboard. 109b5635b12SJiri Slaby 1103b239cd7SJiri Slabyconfig HID_CHERRY 111b36299bcSJiri Kosina tristate "Cherry" if EMBEDDED 1123b239cd7SJiri Slaby depends on USB_HID 113d04b431eSDavid Brownell default !EMBEDDED 1143b239cd7SJiri Slaby ---help--- 115f0bd8e43SJiri Kosina Support for Cherry Cymotion keyboard. 1163b239cd7SJiri Slaby 117fcfacfd3SJiri Slabyconfig HID_CHICONY 118b36299bcSJiri Kosina tristate "Chicony" if EMBEDDED 119fcfacfd3SJiri Slaby depends on USB_HID 120d04b431eSDavid Brownell default !EMBEDDED 121fcfacfd3SJiri Slaby ---help--- 122fcfacfd3SJiri Slaby Support for Chicony Tactical pad. 123fcfacfd3SJiri Slaby 1240f221320SJiri Slabyconfig HID_CYPRESS 125b36299bcSJiri Kosina tristate "Cypress" if EMBEDDED 1260f221320SJiri Slaby depends on USB_HID 127d04b431eSDavid Brownell default !EMBEDDED 1280f221320SJiri Slaby ---help--- 129f0bd8e43SJiri Kosina Support for cypress mouse and barcode readers. 1300f221320SJiri Slaby 1313f866fbdSRichard Walmsleyconfig DRAGONRISE_FF 1323f866fbdSRichard Walmsley tristate "DragonRise Inc. force feedback support" 1333f866fbdSRichard Walmsley depends on USB_HID 1343f866fbdSRichard Walmsley select INPUT_FF_MEMLESS 1353f866fbdSRichard Walmsley ---help--- 1363f866fbdSRichard Walmsley Say Y here if you want to enable force feedback support for DragonRise Inc. 1373f866fbdSRichard Walmsley game controllers. 1383f866fbdSRichard Walmsley 1391f243e30SJiri Slabyconfig HID_EZKEY 140b36299bcSJiri Kosina tristate "Ezkey" if EMBEDDED 1411f243e30SJiri Slaby depends on USB_HID 142d04b431eSDavid Brownell default !EMBEDDED 1431f243e30SJiri Slaby ---help--- 144f0bd8e43SJiri Kosina Support for Ezkey BTC 8193 keyboard. 1451f243e30SJiri Slaby 146949f8fefSJiri Slabyconfig HID_GYRATION 147b36299bcSJiri Kosina tristate "Gyration" if EMBEDDED 148949f8fefSJiri Slaby depends on USB_HID 149d04b431eSDavid Brownell default !EMBEDDED 150949f8fefSJiri Slaby ---help--- 151f0bd8e43SJiri Kosina Support for Gyration remote control. 152949f8fefSJiri Slaby 153*fdf93aa3SJiri Kosinaconfig HID_KENSINGTON 154*fdf93aa3SJiri Kosina tristate "Kensington" if EMBEDDED 155*fdf93aa3SJiri Kosina depends on USB_HID 156*fdf93aa3SJiri Kosina default !EMBEDDED 157*fdf93aa3SJiri Kosina ---help--- 158*fdf93aa3SJiri Kosina Support for Kensington Slimblade Trackball. 159*fdf93aa3SJiri Kosina 1605f22a799SJiri Slabyconfig HID_LOGITECH 161b36299bcSJiri Kosina tristate "Logitech" if EMBEDDED 1625f22a799SJiri Slaby depends on USB_HID 163d04b431eSDavid Brownell default !EMBEDDED 1645f22a799SJiri Slaby ---help--- 165f0bd8e43SJiri Kosina Support for Logitech devices that are not fully compliant with HID standard. 1665f22a799SJiri Slaby 167606bd0a8SJiri Slabyconfig LOGITECH_FF 168606bd0a8SJiri Slaby bool "Logitech force feedback" 169606bd0a8SJiri Slaby depends on HID_LOGITECH 170606bd0a8SJiri Slaby select INPUT_FF_MEMLESS 171606bd0a8SJiri Slaby help 172606bd0a8SJiri Slaby Say Y here if you have one of these devices: 173606bd0a8SJiri Slaby - Logitech WingMan Cordless RumblePad 174606bd0a8SJiri Slaby - Logitech WingMan Cordless RumblePad 2 175606bd0a8SJiri Slaby - Logitech WingMan Force 3D 176606bd0a8SJiri Slaby - Logitech Formula Force EX 177606bd0a8SJiri Slaby - Logitech MOMO Force wheel 178606bd0a8SJiri Slaby 179606bd0a8SJiri Slaby and if you want to enable force feedback for them. 180606bd0a8SJiri Slaby Note: if you say N here, this device will still be supported, but without 181606bd0a8SJiri Slaby force feedback. 182606bd0a8SJiri Slaby 183606bd0a8SJiri Slabyconfig LOGIRUMBLEPAD2_FF 184606bd0a8SJiri Slaby bool "Logitech Rumblepad 2 force feedback" 185606bd0a8SJiri Slaby depends on HID_LOGITECH 186606bd0a8SJiri Slaby select INPUT_FF_MEMLESS 187606bd0a8SJiri Slaby help 188606bd0a8SJiri Slaby Say Y here if you want to enable force feedback support for Logitech 189606bd0a8SJiri Slaby Rumblepad 2 devices. 190606bd0a8SJiri Slaby 19178a849a6SJiri Slabyconfig HID_MICROSOFT 192b36299bcSJiri Kosina tristate "Microsoft" if EMBEDDED 19378a849a6SJiri Slaby depends on USB_HID 194d04b431eSDavid Brownell default !EMBEDDED 19578a849a6SJiri Slaby ---help--- 196f0bd8e43SJiri Kosina Support for Microsoft devices that are not fully compliant with HID standard. 19778a849a6SJiri Slaby 1983b8006e5SJiri Slabyconfig HID_MONTEREY 199b36299bcSJiri Kosina tristate "Monterey" if EMBEDDED 2003b8006e5SJiri Slaby depends on USB_HID 201d04b431eSDavid Brownell default !EMBEDDED 2023b8006e5SJiri Slaby ---help--- 2033b8006e5SJiri Slaby Support for Monterey Genius KB29E. 2043b8006e5SJiri Slaby 20594011f93SRafi Rubinconfig HID_NTRIG 20694011f93SRafi Rubin tristate "NTrig" if EMBEDDED 20794011f93SRafi Rubin depends on USB_HID 208d04b431eSDavid Brownell default !EMBEDDED 20994011f93SRafi Rubin ---help--- 21094011f93SRafi Rubin Support for N-Trig touch screen. 21194011f93SRafi Rubin 2125f022298SJiri Slabyconfig HID_PANTHERLORD 213b36299bcSJiri Kosina tristate "Pantherlord devices support" if EMBEDDED 2145f022298SJiri Slaby depends on USB_HID 215d04b431eSDavid Brownell default !EMBEDDED 2165f022298SJiri Slaby ---help--- 2175f022298SJiri Slaby Support for PantherLord/GreenAsia based device support. 2185f022298SJiri Slaby 2195f022298SJiri Slabyconfig PANTHERLORD_FF 2205f022298SJiri Slaby bool "Pantherlord force feedback support" 2215f022298SJiri Slaby depends on HID_PANTHERLORD 2225f022298SJiri Slaby select INPUT_FF_MEMLESS 2235f022298SJiri Slaby help 2245f022298SJiri Slaby Say Y here if you have a PantherLord/GreenAsia based game controller 2255f022298SJiri Slaby or adapter and want to enable force feedback support for it. 2265f022298SJiri Slaby 2271e762532SJiri Slabyconfig HID_PETALYNX 228b36299bcSJiri Kosina tristate "Petalynx" if EMBEDDED 2291e762532SJiri Slaby depends on USB_HID 230d04b431eSDavid Brownell default !EMBEDDED 2311e762532SJiri Slaby ---help--- 232f0bd8e43SJiri Kosina Support for Petalynx Maxter remote control. 2331e762532SJiri Slaby 234980a3da6SJiri Slabyconfig HID_SAMSUNG 235b36299bcSJiri Kosina tristate "Samsung" if EMBEDDED 236980a3da6SJiri Slaby depends on USB_HID 237d04b431eSDavid Brownell default !EMBEDDED 238980a3da6SJiri Slaby ---help--- 239f0bd8e43SJiri Kosina Support for Samsung InfraRed remote control. 240980a3da6SJiri Slaby 241bd28ce00SJiri Slabyconfig HID_SONY 242b36299bcSJiri Kosina tristate "Sony" if EMBEDDED 243bd28ce00SJiri Slaby depends on USB_HID 244d04b431eSDavid Brownell default !EMBEDDED 245bd28ce00SJiri Slaby ---help--- 246bd28ce00SJiri Slaby Support for Sony PS3 controller. 247bd28ce00SJiri Slaby 24890231e7eSJiri Slabyconfig HID_SUNPLUS 249b36299bcSJiri Kosina tristate "Sunplus" if EMBEDDED 25090231e7eSJiri Slaby depends on USB_HID 251d04b431eSDavid Brownell default !EMBEDDED 25290231e7eSJiri Slaby ---help--- 253f0bd8e43SJiri Kosina Support for Sunplus wireless desktop. 25490231e7eSJiri Slaby 25542859e0bSLukasz Lubojanskiconfig GREENASIA_FF 25642859e0bSLukasz Lubojanski tristate "GreenAsia (Product ID 0x12) force feedback support" 25742859e0bSLukasz Lubojanski depends on USB_HID 25842859e0bSLukasz Lubojanski select INPUT_FF_MEMLESS 25942859e0bSLukasz Lubojanski ---help--- 26042859e0bSLukasz Lubojanski Say Y here if you have a GreenAsia (Product ID 0x12) based game controller 26142859e0bSLukasz Lubojanski (like MANTA Warior MM816 and SpeedLink Strike2 SL-6635) or adapter 26242859e0bSLukasz Lubojanski and want to enable force feedback support for it. 26342859e0bSLukasz Lubojanski 264f14f526dSLev Babievconfig HID_TOPSEED 265f14f526dSLev Babiev tristate "TopSeed Cyberlink remote control support" if EMBEDDED 266f14f526dSLev Babiev depends on USB_HID 2671db489b2SJiri Kosina default !EMBEDDED 268f14f526dSLev Babiev ---help--- 269f14f526dSLev Babiev Say Y if you have a TopSeed Cyberlink remote control. 270f14f526dSLev Babiev 27110e41a71SJiri Slabyconfig THRUSTMASTER_FF 27210e41a71SJiri Slaby tristate "ThrustMaster devices support" 27310e41a71SJiri Slaby depends on USB_HID 27410e41a71SJiri Slaby select INPUT_FF_MEMLESS 27510e41a71SJiri Slaby help 27610e41a71SJiri Slaby Say Y here if you have a THRUSTMASTER FireStore Dual Power 2 or 27710e41a71SJiri Slaby a THRUSTMASTER Ferrari GT Rumble Force or Force Feedback Wheel. 27810e41a71SJiri Slaby 279987fbc1fSJiri Slabyconfig ZEROPLUS_FF 280987fbc1fSJiri Slaby tristate "Zeroplus based game controller support" 281987fbc1fSJiri Slaby depends on USB_HID 282987fbc1fSJiri Slaby select INPUT_FF_MEMLESS 283987fbc1fSJiri Slaby help 284987fbc1fSJiri Slaby Say Y here if you have a Zeroplus based game controller. 285987fbc1fSJiri Slaby 2865f22a799SJiri Slabyendmenu 2875f22a799SJiri Slaby 2883cd70986SJan Engelhardtendif # HID_SUPPORT 289