diff options
Diffstat (limited to 'usr/src/dkms_source_tree/hid-quirks.c')
| -rw-r--r-- | usr/src/dkms_source_tree/hid-quirks.c | 1224 |
1 files changed, 1224 insertions, 0 deletions
diff --git a/usr/src/dkms_source_tree/hid-quirks.c b/usr/src/dkms_source_tree/hid-quirks.c new file mode 100644 index 0000000..870247d --- /dev/null +++ b/usr/src/dkms_source_tree/hid-quirks.c | |||
| @@ -0,0 +1,1224 @@ | |||
| 1 | /* | ||
| 2 | * USB HID quirks support for Linux | ||
| 3 | * | ||
| 4 | * Copyright (c) 1999 Andreas Gal | ||
| 5 | * Copyright (c) 2000-2005 Vojtech Pavlik <vojtech@suse.cz> | ||
| 6 | * Copyright (c) 2005 Michael Haboustak <mike-@cinci.rr.com> for Concept2, Inc | ||
| 7 | * Copyright (c) 2006-2007 Jiri Kosina | ||
| 8 | * Copyright (c) 2007 Paul Walmsley | ||
| 9 | */ | ||
| 10 | |||
| 11 | /* | ||
| 12 | * This program is free software; you can redistribute it and/or modify it | ||
| 13 | * under the terms of the GNU General Public License as published by the Free | ||
| 14 | * Software Foundation; either version 2 of the License, or (at your option) | ||
| 15 | * any later version. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #include <linux/hid.h> | ||
| 19 | |||
| 20 | #define USB_VENDOR_ID_A4TECH 0x09da | ||
| 21 | #define USB_DEVICE_ID_A4TECH_WCP32PU 0x0006 | ||
| 22 | #define USB_DEVICE_ID_A4TECH_X5_005D 0x000a | ||
| 23 | |||
| 24 | #define USB_VENDOR_ID_AASHIMA 0x06d6 | ||
| 25 | #define USB_DEVICE_ID_AASHIMA_GAMEPAD 0x0025 | ||
| 26 | #define USB_DEVICE_ID_AASHIMA_PREDATOR 0x0026 | ||
| 27 | |||
| 28 | #define USB_VENDOR_ID_ACECAD 0x0460 | ||
| 29 | #define USB_DEVICE_ID_ACECAD_FLAIR 0x0004 | ||
| 30 | #define USB_DEVICE_ID_ACECAD_302 0x0008 | ||
| 31 | |||
| 32 | #define USB_VENDOR_ID_ADS_TECH 0x06e1 | ||
| 33 | #define USB_DEVICE_ID_ADS_TECH_RADIO_SI470X 0xa155 | ||
| 34 | |||
| 35 | #define USB_VENDOR_ID_AFATECH 0x15a4 | ||
| 36 | #define USB_DEVICE_ID_AFATECH_AF9016 0x9016 | ||
| 37 | |||
| 38 | #define USB_VENDOR_ID_AIPTEK 0x08ca | ||
| 39 | #define USB_DEVICE_ID_AIPTEK_01 0x0001 | ||
| 40 | #define USB_DEVICE_ID_AIPTEK_10 0x0010 | ||
| 41 | #define USB_DEVICE_ID_AIPTEK_20 0x0020 | ||
| 42 | #define USB_DEVICE_ID_AIPTEK_21 0x0021 | ||
| 43 | #define USB_DEVICE_ID_AIPTEK_22 0x0022 | ||
| 44 | #define USB_DEVICE_ID_AIPTEK_23 0x0023 | ||
| 45 | #define USB_DEVICE_ID_AIPTEK_24 0x0024 | ||
| 46 | |||
| 47 | #define USB_VENDOR_ID_AIRCABLE 0x16CA | ||
| 48 | #define USB_DEVICE_ID_AIRCABLE1 0x1502 | ||
| 49 | |||
| 50 | #define USB_VENDOR_ID_ALCOR 0x058f | ||
| 51 | #define USB_DEVICE_ID_ALCOR_USBRS232 0x9720 | ||
| 52 | |||
| 53 | #define USB_VENDOR_ID_ALPS 0x0433 | ||
| 54 | #define USB_DEVICE_ID_IBM_GAMEPAD 0x1101 | ||
| 55 | |||
| 56 | #define USB_VENDOR_ID_APPLE 0x05ac | ||
| 57 | #define USB_DEVICE_ID_APPLE_MIGHTYMOUSE 0x0304 | ||
| 58 | #define USB_DEVICE_ID_APPLE_FOUNTAIN_ANSI 0x020e | ||
| 59 | #define USB_DEVICE_ID_APPLE_FOUNTAIN_ISO 0x020f | ||
| 60 | #define USB_DEVICE_ID_APPLE_GEYSER_ANSI 0x0214 | ||
| 61 | #define USB_DEVICE_ID_APPLE_GEYSER_ISO 0x0215 | ||
| 62 | #define USB_DEVICE_ID_APPLE_GEYSER_JIS 0x0216 | ||
| 63 | #define USB_DEVICE_ID_APPLE_GEYSER3_ANSI 0x0217 | ||
| 64 | #define USB_DEVICE_ID_APPLE_GEYSER3_ISO 0x0218 | ||
| 65 | #define USB_DEVICE_ID_APPLE_GEYSER3_JIS 0x0219 | ||
| 66 | #define USB_DEVICE_ID_APPLE_GEYSER4_ANSI 0x021a | ||
| 67 | #define USB_DEVICE_ID_APPLE_GEYSER4_ISO 0x021b | ||
| 68 | #define USB_DEVICE_ID_APPLE_GEYSER4_JIS 0x021c | ||
| 69 | #define USB_DEVICE_ID_APPLE_ALU_ANSI 0x0220 | ||
| 70 | #define USB_DEVICE_ID_APPLE_ALU_ISO 0x0221 | ||
| 71 | #define USB_DEVICE_ID_APPLE_ALU_JIS 0x0222 | ||
| 72 | #define USB_DEVICE_ID_APPLE_WELLSPRING_ANSI 0x0223 | ||
| 73 | #define USB_DEVICE_ID_APPLE_WELLSPRING_ISO 0x0224 | ||
| 74 | #define USB_DEVICE_ID_APPLE_WELLSPRING_JIS 0x0225 | ||
| 75 | #define USB_DEVICE_ID_APPLE_GEYSER4_HF_ANSI 0x0229 | ||
| 76 | #define USB_DEVICE_ID_APPLE_GEYSER4_HF_ISO 0x022a | ||
| 77 | #define USB_DEVICE_ID_APPLE_GEYSER4_HF_JIS 0x022b | ||
| 78 | #define USB_DEVICE_ID_APPLE_ALU_WIRELESS_ANSI 0x022c | ||
| 79 | #define USB_DEVICE_ID_APPLE_ALU_WIRELESS_ISO 0x022d | ||
| 80 | #define USB_DEVICE_ID_APPLE_ALU_WIRELESS_JIS 0x022e | ||
| 81 | #define USB_DEVICE_ID_APPLE_WELLSPRING2_ANSI 0x0230 | ||
| 82 | #define USB_DEVICE_ID_APPLE_WELLSPRING2_ISO 0x0231 | ||
| 83 | #define USB_DEVICE_ID_APPLE_WELLSPRING2_JIS 0x0232 | ||
| 84 | #define USB_DEVICE_ID_APPLE_WELLSPRING3_ANSI 0x0236 | ||
| 85 | #define USB_DEVICE_ID_APPLE_WELLSPRING3_ISO 0x0237 | ||
| 86 | #define USB_DEVICE_ID_APPLE_WELLSPRING3_JIS 0x0238 | ||
| 87 | #define USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY 0x030a | ||
| 88 | #define USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY 0x030b | ||
| 89 | #define USB_DEVICE_ID_APPLE_IRCONTROL4 0x8242 | ||
| 90 | |||
| 91 | #define USB_VENDOR_ID_ASUS 0x0b05 | ||
| 92 | #define USB_DEVICE_ID_ASUS_LCM 0x1726 | ||
| 93 | |||
| 94 | #define USB_VENDOR_ID_ATEN 0x0557 | ||
| 95 | #define USB_DEVICE_ID_ATEN_UC100KM 0x2004 | ||
| 96 | #define USB_DEVICE_ID_ATEN_CS124U 0x2202 | ||
| 97 | #define USB_DEVICE_ID_ATEN_2PORTKVM 0x2204 | ||
| 98 | #define USB_DEVICE_ID_ATEN_4PORTKVM 0x2205 | ||
| 99 | #define USB_DEVICE_ID_ATEN_4PORTKVMC 0x2208 | ||
| 100 | |||
| 101 | #define USB_VENDOR_ID_BELKIN 0x050d | ||
| 102 | #define USB_DEVICE_ID_FLIP_KVM 0x3201 | ||
| 103 | |||
| 104 | #define USB_VENDOR_ID_BERKSHIRE 0x0c98 | ||
| 105 | #define USB_DEVICE_ID_BERKSHIRE_PCWD 0x1140 | ||
| 106 | |||
| 107 | #define USB_VENDOR_ID_CHERRY 0x046a | ||
| 108 | #define USB_DEVICE_ID_CHERRY_CYMOTION 0x0023 | ||
| 109 | |||
| 110 | #define USB_VENDOR_ID_CHIC 0x05fe | ||
| 111 | #define USB_DEVICE_ID_CHIC_GAMEPAD 0x0014 | ||
| 112 | |||
| 113 | #define USB_VENDOR_ID_CIDC 0x1677 | ||
| 114 | |||
| 115 | #define USB_VENDOR_ID_CMEDIA 0x0d8c | ||
| 116 | #define USB_DEVICE_ID_CM109 0x000e | ||
| 117 | |||
| 118 | #define USB_VENDOR_ID_CODEMERCS 0x07c0 | ||
| 119 | #define USB_DEVICE_ID_CODEMERCS_IOW_FIRST 0x1500 | ||
| 120 | #define USB_DEVICE_ID_CODEMERCS_IOW_LAST 0x15ff | ||
| 121 | |||
| 122 | #define USB_VENDOR_ID_CYGNAL 0x10c4 | ||
| 123 | #define USB_DEVICE_ID_CYGNAL_RADIO_SI470X 0x818a | ||
| 124 | |||
| 125 | #define USB_VENDOR_ID_CYPRESS 0x04b4 | ||
| 126 | #define USB_DEVICE_ID_CYPRESS_MOUSE 0x0001 | ||
| 127 | #define USB_DEVICE_ID_CYPRESS_HIDCOM 0x5500 | ||
| 128 | #define USB_DEVICE_ID_CYPRESS_ULTRAMOUSE 0x7417 | ||
| 129 | #define USB_DEVICE_ID_CYPRESS_BARCODE_1 0xde61 | ||
| 130 | #define USB_DEVICE_ID_CYPRESS_BARCODE_2 0xde64 | ||
| 131 | |||
| 132 | #define USB_VENDOR_ID_DELL 0x413c | ||
| 133 | #define USB_DEVICE_ID_DELL_W7658 0x2005 | ||
| 134 | |||
| 135 | #define USB_VENDOR_ID_DELORME 0x1163 | ||
| 136 | #define USB_DEVICE_ID_DELORME_EARTHMATE 0x0100 | ||
| 137 | #define USB_DEVICE_ID_DELORME_EM_LT20 0x0200 | ||
| 138 | |||
| 139 | #define USB_VENDOR_ID_DMI 0x0c0b | ||
| 140 | #define USB_DEVICE_ID_DMI_ENC 0x5fab | ||
| 141 | |||
| 142 | #define USB_VENDOR_ID_ELO 0x04E7 | ||
| 143 | #define USB_DEVICE_ID_ELO_TS2700 0x0020 | ||
| 144 | |||
| 145 | #define USB_VENDOR_ID_ESSENTIAL_REALITY 0x0d7f | ||
| 146 | #define USB_DEVICE_ID_ESSENTIAL_REALITY_P5 0x0100 | ||
| 147 | |||
| 148 | #define USB_VENDOR_ID_EZKEY 0x0518 | ||
| 149 | #define USB_DEVICE_ID_BTC_8193 0x0002 | ||
| 150 | |||
| 151 | #define USB_VENDOR_ID_GAMERON 0x0810 | ||
| 152 | #define USB_DEVICE_ID_GAMERON_DUAL_PSX_ADAPTOR 0x0001 | ||
| 153 | |||
| 154 | #define USB_VENDOR_ID_GENERAL_TOUCH 0x0dfc | ||
| 155 | |||
| 156 | #define USB_VENDOR_ID_GLAB 0x06c2 | ||
| 157 | #define USB_DEVICE_ID_4_PHIDGETSERVO_30 0x0038 | ||
| 158 | #define USB_DEVICE_ID_1_PHIDGETSERVO_30 0x0039 | ||
| 159 | #define USB_DEVICE_ID_0_0_4_IF_KIT 0x0040 | ||
| 160 | #define USB_DEVICE_ID_0_16_16_IF_KIT 0x0044 | ||
| 161 | #define USB_DEVICE_ID_8_8_8_IF_KIT 0x0045 | ||
| 162 | #define USB_DEVICE_ID_0_8_7_IF_KIT 0x0051 | ||
| 163 | #define USB_DEVICE_ID_0_8_8_IF_KIT 0x0053 | ||
| 164 | #define USB_DEVICE_ID_PHIDGET_MOTORCONTROL 0x0058 | ||
| 165 | |||
| 166 | #define USB_VENDOR_ID_GOTOP 0x08f2 | ||
| 167 | #define USB_DEVICE_ID_SUPER_Q2 0x007f | ||
| 168 | #define USB_DEVICE_ID_GOGOPEN 0x00ce | ||
| 169 | #define USB_DEVICE_ID_PENPOWER 0x00f4 | ||
| 170 | |||
| 171 | #define USB_VENDOR_ID_GRETAGMACBETH 0x0971 | ||
| 172 | #define USB_DEVICE_ID_GRETAGMACBETH_HUEY 0x2005 | ||
| 173 | |||
| 174 | #define USB_VENDOR_ID_GRIFFIN 0x077d | ||
| 175 | #define USB_DEVICE_ID_POWERMATE 0x0410 | ||
| 176 | #define USB_DEVICE_ID_SOUNDKNOB 0x04AA | ||
| 177 | |||
| 178 | #define USB_VENDOR_ID_GTCO 0x078c | ||
| 179 | #define USB_DEVICE_ID_GTCO_90 0x0090 | ||
| 180 | #define USB_DEVICE_ID_GTCO_100 0x0100 | ||
| 181 | #define USB_DEVICE_ID_GTCO_101 0x0101 | ||
| 182 | #define USB_DEVICE_ID_GTCO_103 0x0103 | ||
| 183 | #define USB_DEVICE_ID_GTCO_104 0x0104 | ||
| 184 | #define USB_DEVICE_ID_GTCO_105 0x0105 | ||
| 185 | #define USB_DEVICE_ID_GTCO_106 0x0106 | ||
| 186 | #define USB_DEVICE_ID_GTCO_107 0x0107 | ||
| 187 | #define USB_DEVICE_ID_GTCO_108 0x0108 | ||
| 188 | #define USB_DEVICE_ID_GTCO_200 0x0200 | ||
| 189 | #define USB_DEVICE_ID_GTCO_201 0x0201 | ||
| 190 | #define USB_DEVICE_ID_GTCO_202 0x0202 | ||
| 191 | #define USB_DEVICE_ID_GTCO_203 0x0203 | ||
| 192 | #define USB_DEVICE_ID_GTCO_204 0x0204 | ||
| 193 | #define USB_DEVICE_ID_GTCO_205 0x0205 | ||
| 194 | #define USB_DEVICE_ID_GTCO_206 0x0206 | ||
| 195 | #define USB_DEVICE_ID_GTCO_207 0x0207 | ||
| 196 | #define USB_DEVICE_ID_GTCO_300 0x0300 | ||
| 197 | #define USB_DEVICE_ID_GTCO_301 0x0301 | ||
| 198 | #define USB_DEVICE_ID_GTCO_302 0x0302 | ||
| 199 | #define USB_DEVICE_ID_GTCO_303 0x0303 | ||
| 200 | #define USB_DEVICE_ID_GTCO_304 0x0304 | ||
| 201 | #define USB_DEVICE_ID_GTCO_305 0x0305 | ||
| 202 | #define USB_DEVICE_ID_GTCO_306 0x0306 | ||
| 203 | #define USB_DEVICE_ID_GTCO_307 0x0307 | ||
| 204 | #define USB_DEVICE_ID_GTCO_308 0x0308 | ||
| 205 | #define USB_DEVICE_ID_GTCO_309 0x0309 | ||
| 206 | #define USB_DEVICE_ID_GTCO_400 0x0400 | ||
| 207 | #define USB_DEVICE_ID_GTCO_401 0x0401 | ||
| 208 | #define USB_DEVICE_ID_GTCO_402 0x0402 | ||
| 209 | #define USB_DEVICE_ID_GTCO_403 0x0403 | ||
| 210 | #define USB_DEVICE_ID_GTCO_404 0x0404 | ||
| 211 | #define USB_DEVICE_ID_GTCO_405 0x0405 | ||
| 212 | #define USB_DEVICE_ID_GTCO_500 0x0500 | ||
| 213 | #define USB_DEVICE_ID_GTCO_501 0x0501 | ||
| 214 | #define USB_DEVICE_ID_GTCO_502 0x0502 | ||
| 215 | #define USB_DEVICE_ID_GTCO_503 0x0503 | ||
| 216 | #define USB_DEVICE_ID_GTCO_504 0x0504 | ||
| 217 | #define USB_DEVICE_ID_GTCO_1000 0x1000 | ||
| 218 | #define USB_DEVICE_ID_GTCO_1001 0x1001 | ||
| 219 | #define USB_DEVICE_ID_GTCO_1002 0x1002 | ||
| 220 | #define USB_DEVICE_ID_GTCO_1003 0x1003 | ||
| 221 | #define USB_DEVICE_ID_GTCO_1004 0x1004 | ||
| 222 | #define USB_DEVICE_ID_GTCO_1005 0x1005 | ||
| 223 | #define USB_DEVICE_ID_GTCO_1006 0x1006 | ||
| 224 | #define USB_DEVICE_ID_GTCO_1007 0x1007 | ||
| 225 | #define USB_VENDOR_ID_HAPP 0x078b | ||
| 226 | #define USB_DEVICE_ID_UGCI_DRIVING 0x0010 | ||
| 227 | #define USB_DEVICE_ID_UGCI_FLYING 0x0020 | ||
| 228 | #define USB_DEVICE_ID_UGCI_FIGHTING 0x0030 | ||
| 229 | |||
| 230 | #define USB_VENDOR_ID_IMATION 0x0718 | ||
| 231 | #define USB_DEVICE_ID_DISC_STAKKA 0xd000 | ||
| 232 | |||
| 233 | #define USB_VENDOR_ID_KBGEAR 0x084e | ||
| 234 | #define USB_DEVICE_ID_KBGEAR_JAMSTUDIO 0x1001 | ||
| 235 | |||
| 236 | #define USB_VENDOR_ID_LD 0x0f11 | ||
| 237 | #define USB_DEVICE_ID_LD_CASSY 0x1000 | ||
| 238 | #define USB_DEVICE_ID_LD_POCKETCASSY 0x1010 | ||
| 239 | #define USB_DEVICE_ID_LD_MOBILECASSY 0x1020 | ||
| 240 | #define USB_DEVICE_ID_LD_JWM 0x1080 | ||
| 241 | #define USB_DEVICE_ID_LD_DMMP 0x1081 | ||
| 242 | #define USB_DEVICE_ID_LD_UMIP 0x1090 | ||
| 243 | #define USB_DEVICE_ID_LD_XRAY1 0x1100 | ||
| 244 | #define USB_DEVICE_ID_LD_XRAY2 0x1101 | ||
| 245 | #define USB_DEVICE_ID_LD_VIDEOCOM 0x1200 | ||
| 246 | #define USB_DEVICE_ID_LD_COM3LAB 0x2000 | ||
| 247 | #define USB_DEVICE_ID_LD_TELEPORT 0x2010 | ||
| 248 | #define USB_DEVICE_ID_LD_NETWORKANALYSER 0x2020 | ||
| 249 | #define USB_DEVICE_ID_LD_POWERCONTROL 0x2030 | ||
| 250 | #define USB_DEVICE_ID_LD_MACHINETEST 0x2040 | ||
| 251 | |||
| 252 | #define USB_VENDOR_ID_LOGITECH 0x046d | ||
| 253 | #define USB_DEVICE_ID_LOGITECH_RECEIVER 0xc101 | ||
| 254 | #define USB_DEVICE_ID_LOGITECH_HARMONY 0xc110 | ||
| 255 | #define USB_DEVICE_ID_LOGITECH_HARMONY_2 0xc111 | ||
| 256 | #define USB_DEVICE_ID_LOGITECH_HARMONY_3 0xc112 | ||
| 257 | #define USB_DEVICE_ID_LOGITECH_HARMONY_4 0xc113 | ||
| 258 | #define USB_DEVICE_ID_LOGITECH_HARMONY_5 0xc114 | ||
| 259 | #define USB_DEVICE_ID_LOGITECH_HARMONY_6 0xc115 | ||
| 260 | #define USB_DEVICE_ID_LOGITECH_HARMONY_7 0xc116 | ||
| 261 | #define USB_DEVICE_ID_LOGITECH_HARMONY_8 0xc117 | ||
| 262 | #define USB_DEVICE_ID_LOGITECH_HARMONY_9 0xc118 | ||
| 263 | #define USB_DEVICE_ID_LOGITECH_HARMONY_10 0xc119 | ||
| 264 | #define USB_DEVICE_ID_LOGITECH_HARMONY_11 0xc11a | ||
| 265 | #define USB_DEVICE_ID_LOGITECH_HARMONY_12 0xc11b | ||
| 266 | #define USB_DEVICE_ID_LOGITECH_HARMONY_13 0xc11c | ||
| 267 | #define USB_DEVICE_ID_LOGITECH_HARMONY_14 0xc11d | ||
| 268 | #define USB_DEVICE_ID_LOGITECH_HARMONY_15 0xc11e | ||
| 269 | #define USB_DEVICE_ID_LOGITECH_HARMONY_16 0xc11f | ||
| 270 | #define USB_DEVICE_ID_LOGITECH_HARMONY_17 0xc120 | ||
| 271 | #define USB_DEVICE_ID_LOGITECH_HARMONY_18 0xc121 | ||
| 272 | #define USB_DEVICE_ID_LOGITECH_HARMONY_19 0xc122 | ||
| 273 | #define USB_DEVICE_ID_LOGITECH_HARMONY_20 0xc123 | ||
| 274 | #define USB_DEVICE_ID_LOGITECH_HARMONY_21 0xc124 | ||
| 275 | #define USB_DEVICE_ID_LOGITECH_HARMONY_22 0xc125 | ||
| 276 | #define USB_DEVICE_ID_LOGITECH_HARMONY_23 0xc126 | ||
| 277 | #define USB_DEVICE_ID_LOGITECH_HARMONY_24 0xc127 | ||
| 278 | #define USB_DEVICE_ID_LOGITECH_HARMONY_25 0xc128 | ||
| 279 | #define USB_DEVICE_ID_LOGITECH_HARMONY_26 0xc129 | ||
| 280 | #define USB_DEVICE_ID_LOGITECH_HARMONY_27 0xc12a | ||
| 281 | #define USB_DEVICE_ID_LOGITECH_HARMONY_28 0xc12b | ||
| 282 | #define USB_DEVICE_ID_LOGITECH_HARMONY_29 0xc12c | ||
| 283 | #define USB_DEVICE_ID_LOGITECH_HARMONY_30 0xc12d | ||
| 284 | #define USB_DEVICE_ID_LOGITECH_HARMONY_31 0xc12e | ||
| 285 | #define USB_DEVICE_ID_LOGITECH_HARMONY_32 0xc12f | ||
| 286 | #define USB_DEVICE_ID_LOGITECH_HARMONY_33 0xc130 | ||
| 287 | #define USB_DEVICE_ID_LOGITECH_HARMONY_34 0xc131 | ||
| 288 | #define USB_DEVICE_ID_LOGITECH_HARMONY_35 0xc132 | ||
| 289 | #define USB_DEVICE_ID_LOGITECH_HARMONY_36 0xc133 | ||
| 290 | #define USB_DEVICE_ID_LOGITECH_HARMONY_37 0xc134 | ||
| 291 | #define USB_DEVICE_ID_LOGITECH_HARMONY_38 0xc135 | ||
| 292 | #define USB_DEVICE_ID_LOGITECH_HARMONY_39 0xc136 | ||
| 293 | #define USB_DEVICE_ID_LOGITECH_HARMONY_40 0xc137 | ||
| 294 | #define USB_DEVICE_ID_LOGITECH_HARMONY_41 0xc138 | ||
| 295 | #define USB_DEVICE_ID_LOGITECH_HARMONY_42 0xc139 | ||
| 296 | #define USB_DEVICE_ID_LOGITECH_HARMONY_43 0xc13a | ||
| 297 | #define USB_DEVICE_ID_LOGITECH_HARMONY_44 0xc13b | ||
| 298 | #define USB_DEVICE_ID_LOGITECH_HARMONY_45 0xc13c | ||
| 299 | #define USB_DEVICE_ID_LOGITECH_HARMONY_46 0xc13d | ||
| 300 | #define USB_DEVICE_ID_LOGITECH_HARMONY_47 0xc13e | ||
| 301 | #define USB_DEVICE_ID_LOGITECH_HARMONY_48 0xc13f | ||
| 302 | #define USB_DEVICE_ID_LOGITECH_HARMONY_49 0xc140 | ||
| 303 | #define USB_DEVICE_ID_LOGITECH_HARMONY_50 0xc141 | ||
| 304 | #define USB_DEVICE_ID_LOGITECH_HARMONY_51 0xc142 | ||
| 305 | #define USB_DEVICE_ID_LOGITECH_HARMONY_52 0xc143 | ||
| 306 | #define USB_DEVICE_ID_LOGITECH_HARMONY_53 0xc144 | ||
| 307 | #define USB_DEVICE_ID_LOGITECH_HARMONY_54 0xc145 | ||
| 308 | #define USB_DEVICE_ID_LOGITECH_HARMONY_55 0xc146 | ||
| 309 | #define USB_DEVICE_ID_LOGITECH_HARMONY_56 0xc147 | ||
| 310 | #define USB_DEVICE_ID_LOGITECH_HARMONY_57 0xc148 | ||
| 311 | #define USB_DEVICE_ID_LOGITECH_HARMONY_58 0xc149 | ||
| 312 | #define USB_DEVICE_ID_LOGITECH_HARMONY_59 0xc14a | ||
| 313 | #define USB_DEVICE_ID_LOGITECH_HARMONY_60 0xc14b | ||
| 314 | #define USB_DEVICE_ID_LOGITECH_HARMONY_61 0xc14c | ||
| 315 | #define USB_DEVICE_ID_LOGITECH_HARMONY_62 0xc14d | ||
| 316 | #define USB_DEVICE_ID_LOGITECH_HARMONY_63 0xc14e | ||
| 317 | #define USB_DEVICE_ID_LOGITECH_HARMONY_64 0xc14f | ||
| 318 | #define USB_DEVICE_ID_LOGITECH_EXTREME_3D 0xc215 | ||
| 319 | #define USB_DEVICE_ID_LOGITECH_WHEEL 0xc294 | ||
| 320 | #define USB_DEVICE_ID_LOGITECH_ELITE_KBD 0xc30a | ||
| 321 | #define USB_DEVICE_ID_LOGITECH_KBD 0xc311 | ||
| 322 | #define USB_DEVICE_ID_S510_RECEIVER 0xc50c | ||
| 323 | #define USB_DEVICE_ID_S510_RECEIVER_2 0xc517 | ||
| 324 | #define USB_DEVICE_ID_LOGITECH_CORDLESS_DESKTOP_LX500 0xc512 | ||
| 325 | #define USB_DEVICE_ID_MX3000_RECEIVER 0xc513 | ||
| 326 | #define USB_DEVICE_ID_DINOVO_DESKTOP 0xc704 | ||
| 327 | #define USB_DEVICE_ID_DINOVO_EDGE 0xc714 | ||
| 328 | #define USB_DEVICE_ID_DINOVO_MINI 0xc71f | ||
| 329 | |||
| 330 | #define USB_VENDOR_ID_MCC 0x09db | ||
| 331 | #define USB_DEVICE_ID_MCC_PMD1024LS 0x0076 | ||
| 332 | #define USB_DEVICE_ID_MCC_PMD1208LS 0x007a | ||
| 333 | |||
| 334 | #define USB_VENDOR_ID_MGE 0x0463 | ||
| 335 | #define USB_DEVICE_ID_MGE_UPS 0xffff | ||
| 336 | #define USB_DEVICE_ID_MGE_UPS1 0x0001 | ||
| 337 | |||
| 338 | #define USB_VENDOR_ID_MICROCHIP 0x04d8 | ||
| 339 | #define USB_DEVICE_ID_PICKIT1 0x0032 | ||
| 340 | #define USB_DEVICE_ID_PICKIT2 0x0033 | ||
| 341 | |||
| 342 | #define USB_VENDOR_ID_MICROSOFT 0x045e | ||
| 343 | #define USB_DEVICE_ID_SIDEWINDER_GV 0x003b | ||
| 344 | #define USB_DEVICE_ID_WIRELESS_OPTICAL_DESKTOP_3_0 0x009d | ||
| 345 | #define USB_DEVICE_ID_DESKTOP_RECV_1028 0x00f9 | ||
| 346 | #define USB_DEVICE_ID_MS_NE4K 0x00db | ||
| 347 | #define USB_DEVICE_ID_MS_LK6K 0x00f9 | ||
| 348 | |||
| 349 | #define USB_VENDOR_ID_MONTEREY 0x0566 | ||
| 350 | #define USB_DEVICE_ID_GENIUS_KB29E 0x3004 | ||
| 351 | |||
| 352 | #define USB_VENDOR_ID_NCR 0x0404 | ||
| 353 | #define USB_DEVICE_ID_NCR_FIRST 0x0300 | ||
| 354 | #define USB_DEVICE_ID_NCR_LAST 0x03ff | ||
| 355 | |||
| 356 | #define USB_VENDOR_ID_NATIONAL_SEMICONDUCTOR 0x0400 | ||
| 357 | #define USB_DEVICE_ID_N_S_HARMONY 0xc359 | ||
| 358 | |||
| 359 | #define USB_VENDOR_ID_NATSU 0x08b7 | ||
| 360 | #define USB_DEVICE_ID_NATSU_GAMEPAD 0x0001 | ||
| 361 | |||
| 362 | #define USB_VENDOR_ID_NEC 0x073e | ||
| 363 | #define USB_DEVICE_ID_NEC_USB_GAME_PAD 0x0301 | ||
| 364 | |||
| 365 | #define USB_VENDOR_ID_ONTRAK 0x0a07 | ||
| 366 | #define USB_DEVICE_ID_ONTRAK_ADU100 0x0064 | ||
| 367 | |||
| 368 | #define USB_VENDOR_ID_PANJIT 0x134c | ||
| 369 | |||
| 370 | #define USB_VENDOR_ID_PANTHERLORD 0x0810 | ||
| 371 | #define USB_DEVICE_ID_PANTHERLORD_TWIN_USB_JOYSTICK 0x0001 | ||
| 372 | |||
| 373 | #define USB_VENDOR_ID_PETALYNX 0x18b1 | ||
| 374 | #define USB_DEVICE_ID_PETALYNX_MAXTER_REMOTE 0x0037 | ||
| 375 | |||
| 376 | #define USB_VENDOR_ID_PLAYDOTCOM 0x0b43 | ||
| 377 | #define USB_DEVICE_ID_PLAYDOTCOM_EMS_USBII 0x0003 | ||
| 378 | |||
| 379 | #define USB_VENDOR_ID_SAITEK 0x06a3 | ||
| 380 | #define USB_DEVICE_ID_SAITEK_RUMBLEPAD 0xff17 | ||
| 381 | |||
| 382 | #define USB_VENDOR_ID_SAMSUNG 0x0419 | ||
| 383 | #define USB_DEVICE_ID_SAMSUNG_IR_REMOTE 0x0001 | ||
| 384 | |||
| 385 | #define USB_VENDOR_ID_SONY 0x054c | ||
| 386 | #define USB_DEVICE_ID_SONY_PS3_CONTROLLER 0x0268 | ||
| 387 | |||
| 388 | #define USB_VENDOR_ID_SOUNDGRAPH 0x15c2 | ||
| 389 | #define USB_DEVICE_ID_SOUNDGRAPH_IMON_LCD 0x0038 | ||
| 390 | |||
| 391 | #define USB_VENDOR_ID_SUN 0x0430 | ||
| 392 | #define USB_DEVICE_ID_RARITAN_KVM_DONGLE 0xcdab | ||
| 393 | |||
| 394 | #define USB_VENDOR_ID_SUNPLUS 0x04fc | ||
| 395 | #define USB_DEVICE_ID_SUNPLUS_WDESKTOP 0x05d8 | ||
| 396 | |||
| 397 | #define USB_VENDOR_ID_TOPMAX 0x0663 | ||
| 398 | #define USB_DEVICE_ID_TOPMAX_COBRAPAD 0x0103 | ||
| 399 | |||
| 400 | #define USB_VENDOR_ID_TURBOX 0x062a | ||
| 401 | #define USB_DEVICE_ID_TURBOX_KEYBOARD 0x0201 | ||
| 402 | |||
| 403 | #define USB_VENDOR_ID_VERNIER 0x08f7 | ||
| 404 | #define USB_DEVICE_ID_VERNIER_LABPRO 0x0001 | ||
| 405 | #define USB_DEVICE_ID_VERNIER_GOTEMP 0x0002 | ||
| 406 | #define USB_DEVICE_ID_VERNIER_SKIP 0x0003 | ||
| 407 | #define USB_DEVICE_ID_VERNIER_CYCLOPS 0x0004 | ||
| 408 | #define USB_DEVICE_ID_VERNIER_LCSPEC 0x0006 | ||
| 409 | |||
| 410 | #define USB_VENDOR_ID_WACOM 0x056a | ||
| 411 | |||
| 412 | #define USB_VENDOR_ID_WISEGROUP 0x0925 | ||
| 413 | #define USB_DEVICE_ID_1_PHIDGETSERVO_20 0x8101 | ||
| 414 | #define USB_DEVICE_ID_4_PHIDGETSERVO_20 0x8104 | ||
| 415 | #define USB_DEVICE_ID_8_8_4_IF_KIT 0x8201 | ||
| 416 | #define USB_DEVICE_ID_QUAD_USB_JOYPAD 0x8800 | ||
| 417 | #define USB_DEVICE_ID_DUAL_USB_JOYPAD 0x8866 | ||
| 418 | |||
| 419 | #define USB_VENDOR_ID_WISEGROUP_LTD 0x6677 | ||
| 420 | #define USB_DEVICE_ID_SMARTJOY_DUAL_PLUS 0x8802 | ||
| 421 | |||
| 422 | #define USB_VENDOR_ID_YEALINK 0x6993 | ||
| 423 | #define USB_DEVICE_ID_YEALINK_P1K_P4K_B2K 0xb001 | ||
| 424 | |||
| 425 | #define USB_VENDOR_ID_KYE 0x0458 | ||
| 426 | #define USB_DEVICE_ID_KYE_GPEN_560 0x5003 | ||
| 427 | |||
| 428 | /* | ||
| 429 | * Alphabetically sorted blacklist by quirk type. | ||
| 430 | */ | ||
| 431 | |||
| 432 | static const struct hid_blacklist { | ||
| 433 | __u16 idVendor; | ||
| 434 | __u16 idProduct; | ||
| 435 | __u32 quirks; | ||
| 436 | } hid_blacklist[] = { | ||
| 437 | |||
| 438 | { USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_WCP32PU, HID_QUIRK_2WHEEL_MOUSE_HACK_7 }, | ||
| 439 | { USB_VENDOR_ID_A4TECH, USB_DEVICE_ID_A4TECH_X5_005D, HID_QUIRK_2WHEEL_MOUSE_HACK_B8 }, | ||
| 440 | { USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_MOUSE, HID_QUIRK_2WHEEL_MOUSE_HACK_5 }, | ||
| 441 | |||
| 442 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_RECEIVER, HID_QUIRK_BAD_RELATIVE_KEYS }, | ||
| 443 | |||
| 444 | { USB_VENDOR_ID_AASHIMA, USB_DEVICE_ID_AASHIMA_GAMEPAD, HID_QUIRK_BADPAD }, | ||
| 445 | { USB_VENDOR_ID_AASHIMA, USB_DEVICE_ID_AASHIMA_PREDATOR, HID_QUIRK_BADPAD }, | ||
| 446 | { USB_VENDOR_ID_ALPS, USB_DEVICE_ID_IBM_GAMEPAD, HID_QUIRK_BADPAD }, | ||
| 447 | { USB_VENDOR_ID_CHIC, USB_DEVICE_ID_CHIC_GAMEPAD, HID_QUIRK_BADPAD }, | ||
| 448 | { USB_VENDOR_ID_GAMERON, USB_DEVICE_ID_GAMERON_DUAL_PSX_ADAPTOR, HID_QUIRK_MULTI_INPUT }, | ||
| 449 | { USB_VENDOR_ID_HAPP, USB_DEVICE_ID_UGCI_DRIVING, HID_QUIRK_BADPAD | HID_QUIRK_MULTI_INPUT }, | ||
| 450 | { USB_VENDOR_ID_HAPP, USB_DEVICE_ID_UGCI_FLYING, HID_QUIRK_BADPAD | HID_QUIRK_MULTI_INPUT }, | ||
| 451 | { USB_VENDOR_ID_HAPP, USB_DEVICE_ID_UGCI_FIGHTING, HID_QUIRK_BADPAD | HID_QUIRK_MULTI_INPUT }, | ||
| 452 | { USB_VENDOR_ID_NATSU, USB_DEVICE_ID_NATSU_GAMEPAD, HID_QUIRK_BADPAD }, | ||
| 453 | { USB_VENDOR_ID_NEC, USB_DEVICE_ID_NEC_USB_GAME_PAD, HID_QUIRK_BADPAD }, | ||
| 454 | { USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_RUMBLEPAD, HID_QUIRK_BADPAD }, | ||
| 455 | { USB_VENDOR_ID_TOPMAX, USB_DEVICE_ID_TOPMAX_COBRAPAD, HID_QUIRK_BADPAD }, | ||
| 456 | |||
| 457 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_DINOVO_DESKTOP, HID_QUIRK_DUPLICATE_USAGES }, | ||
| 458 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_DINOVO_EDGE, HID_QUIRK_DUPLICATE_USAGES }, | ||
| 459 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_DINOVO_MINI, HID_QUIRK_DUPLICATE_USAGES }, | ||
| 460 | |||
| 461 | { USB_VENDOR_ID_AFATECH, USB_DEVICE_ID_AFATECH_AF9016, HID_QUIRK_FULLSPEED_INTERVAL }, | ||
| 462 | |||
| 463 | { USB_VENDOR_ID_BELKIN, USB_DEVICE_ID_FLIP_KVM, HID_QUIRK_HIDDEV }, | ||
| 464 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_IRCONTROL4, HID_QUIRK_HIDDEV | HID_QUIRK_IGNORE_HIDINPUT }, | ||
| 465 | { USB_VENDOR_ID_SAMSUNG, USB_DEVICE_ID_SAMSUNG_IR_REMOTE, HID_QUIRK_HIDDEV | HID_QUIRK_IGNORE_HIDINPUT }, | ||
| 466 | { USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_SIDEWINDER_GV, HID_QUIRK_HIDINPUT }, | ||
| 467 | |||
| 468 | { USB_VENDOR_ID_EZKEY, USB_DEVICE_ID_BTC_8193, HID_QUIRK_HWHEEL_WHEEL_INVERT }, | ||
| 469 | |||
| 470 | { USB_VENDOR_ID_ADS_TECH, USB_DEVICE_ID_ADS_TECH_RADIO_SI470X, HID_QUIRK_IGNORE }, | ||
| 471 | { USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_01, HID_QUIRK_IGNORE }, | ||
| 472 | { USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_10, HID_QUIRK_IGNORE }, | ||
| 473 | { USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_20, HID_QUIRK_IGNORE }, | ||
| 474 | { USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_21, HID_QUIRK_IGNORE }, | ||
| 475 | { USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_22, HID_QUIRK_IGNORE }, | ||
| 476 | { USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_23, HID_QUIRK_IGNORE }, | ||
| 477 | { USB_VENDOR_ID_AIPTEK, USB_DEVICE_ID_AIPTEK_24, HID_QUIRK_IGNORE }, | ||
| 478 | { USB_VENDOR_ID_AIRCABLE, USB_DEVICE_ID_AIRCABLE1, HID_QUIRK_IGNORE }, | ||
| 479 | { USB_VENDOR_ID_ALCOR, USB_DEVICE_ID_ALCOR_USBRS232, HID_QUIRK_IGNORE }, | ||
| 480 | { USB_VENDOR_ID_ASUS, USB_DEVICE_ID_ASUS_LCM, HID_QUIRK_IGNORE}, | ||
| 481 | { USB_VENDOR_ID_BERKSHIRE, USB_DEVICE_ID_BERKSHIRE_PCWD, HID_QUIRK_IGNORE }, | ||
| 482 | { USB_VENDOR_ID_CIDC, 0x0103, HID_QUIRK_IGNORE }, | ||
| 483 | { USB_VENDOR_ID_CYGNAL, USB_DEVICE_ID_CYGNAL_RADIO_SI470X, HID_QUIRK_IGNORE }, | ||
| 484 | { USB_VENDOR_ID_CMEDIA, USB_DEVICE_ID_CM109, HID_QUIRK_IGNORE }, | ||
| 485 | { USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_HIDCOM, HID_QUIRK_IGNORE }, | ||
| 486 | { USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_ULTRAMOUSE, HID_QUIRK_IGNORE }, | ||
| 487 | { USB_VENDOR_ID_DELORME, USB_DEVICE_ID_DELORME_EARTHMATE, HID_QUIRK_IGNORE }, | ||
| 488 | { USB_VENDOR_ID_DELORME, USB_DEVICE_ID_DELORME_EM_LT20, HID_QUIRK_IGNORE }, | ||
| 489 | { USB_VENDOR_ID_ESSENTIAL_REALITY, USB_DEVICE_ID_ESSENTIAL_REALITY_P5, HID_QUIRK_IGNORE }, | ||
| 490 | { USB_VENDOR_ID_GENERAL_TOUCH, 0x0001, HID_QUIRK_IGNORE }, | ||
| 491 | { USB_VENDOR_ID_GENERAL_TOUCH, 0x0002, HID_QUIRK_IGNORE }, | ||
| 492 | { USB_VENDOR_ID_GENERAL_TOUCH, 0x0003, HID_QUIRK_IGNORE }, | ||
| 493 | { USB_VENDOR_ID_GENERAL_TOUCH, 0x0004, HID_QUIRK_IGNORE }, | ||
| 494 | { USB_VENDOR_ID_GLAB, USB_DEVICE_ID_4_PHIDGETSERVO_30, HID_QUIRK_IGNORE }, | ||
| 495 | { USB_VENDOR_ID_GLAB, USB_DEVICE_ID_1_PHIDGETSERVO_30, HID_QUIRK_IGNORE }, | ||
| 496 | { USB_VENDOR_ID_GLAB, USB_DEVICE_ID_0_0_4_IF_KIT, HID_QUIRK_IGNORE }, | ||
| 497 | { USB_VENDOR_ID_GLAB, USB_DEVICE_ID_0_16_16_IF_KIT, HID_QUIRK_IGNORE }, | ||
| 498 | { USB_VENDOR_ID_GLAB, USB_DEVICE_ID_8_8_8_IF_KIT, HID_QUIRK_IGNORE }, | ||
| 499 | { USB_VENDOR_ID_GLAB, USB_DEVICE_ID_0_8_7_IF_KIT, HID_QUIRK_IGNORE }, | ||
| 500 | { USB_VENDOR_ID_GLAB, USB_DEVICE_ID_0_8_8_IF_KIT, HID_QUIRK_IGNORE }, | ||
| 501 | { USB_VENDOR_ID_GLAB, USB_DEVICE_ID_PHIDGET_MOTORCONTROL, HID_QUIRK_IGNORE }, | ||
| 502 | { USB_VENDOR_ID_GOTOP, USB_DEVICE_ID_SUPER_Q2, HID_QUIRK_IGNORE }, | ||
| 503 | { USB_VENDOR_ID_GOTOP, USB_DEVICE_ID_GOGOPEN, HID_QUIRK_IGNORE }, | ||
| 504 | { USB_VENDOR_ID_GOTOP, USB_DEVICE_ID_PENPOWER, HID_QUIRK_IGNORE }, | ||
| 505 | { USB_VENDOR_ID_GRETAGMACBETH, USB_DEVICE_ID_GRETAGMACBETH_HUEY, HID_QUIRK_IGNORE }, | ||
| 506 | { USB_VENDOR_ID_GRIFFIN, USB_DEVICE_ID_POWERMATE, HID_QUIRK_IGNORE }, | ||
| 507 | { USB_VENDOR_ID_GRIFFIN, USB_DEVICE_ID_SOUNDKNOB, HID_QUIRK_IGNORE }, | ||
| 508 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_90, HID_QUIRK_IGNORE }, | ||
| 509 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_100, HID_QUIRK_IGNORE }, | ||
| 510 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_101, HID_QUIRK_IGNORE }, | ||
| 511 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_103, HID_QUIRK_IGNORE }, | ||
| 512 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_104, HID_QUIRK_IGNORE }, | ||
| 513 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_105, HID_QUIRK_IGNORE }, | ||
| 514 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_106, HID_QUIRK_IGNORE }, | ||
| 515 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_107, HID_QUIRK_IGNORE }, | ||
| 516 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_108, HID_QUIRK_IGNORE }, | ||
| 517 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_200, HID_QUIRK_IGNORE }, | ||
| 518 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_201, HID_QUIRK_IGNORE }, | ||
| 519 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_202, HID_QUIRK_IGNORE }, | ||
| 520 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_203, HID_QUIRK_IGNORE }, | ||
| 521 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_204, HID_QUIRK_IGNORE }, | ||
| 522 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_205, HID_QUIRK_IGNORE }, | ||
| 523 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_206, HID_QUIRK_IGNORE }, | ||
| 524 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_207, HID_QUIRK_IGNORE }, | ||
| 525 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_300, HID_QUIRK_IGNORE }, | ||
| 526 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_301, HID_QUIRK_IGNORE }, | ||
| 527 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_302, HID_QUIRK_IGNORE }, | ||
| 528 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_303, HID_QUIRK_IGNORE }, | ||
| 529 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_304, HID_QUIRK_IGNORE }, | ||
| 530 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_305, HID_QUIRK_IGNORE }, | ||
| 531 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_306, HID_QUIRK_IGNORE }, | ||
| 532 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_307, HID_QUIRK_IGNORE }, | ||
| 533 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_308, HID_QUIRK_IGNORE }, | ||
| 534 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_309, HID_QUIRK_IGNORE }, | ||
| 535 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_400, HID_QUIRK_IGNORE }, | ||
| 536 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_401, HID_QUIRK_IGNORE }, | ||
| 537 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_402, HID_QUIRK_IGNORE }, | ||
| 538 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_403, HID_QUIRK_IGNORE }, | ||
| 539 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_404, HID_QUIRK_IGNORE }, | ||
| 540 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_405, HID_QUIRK_IGNORE }, | ||
| 541 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_500, HID_QUIRK_IGNORE }, | ||
| 542 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_501, HID_QUIRK_IGNORE }, | ||
| 543 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_502, HID_QUIRK_IGNORE }, | ||
| 544 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_503, HID_QUIRK_IGNORE }, | ||
| 545 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_504, HID_QUIRK_IGNORE }, | ||
| 546 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1000, HID_QUIRK_IGNORE }, | ||
| 547 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1001, HID_QUIRK_IGNORE }, | ||
| 548 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1002, HID_QUIRK_IGNORE }, | ||
| 549 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1003, HID_QUIRK_IGNORE }, | ||
| 550 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1004, HID_QUIRK_IGNORE }, | ||
| 551 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1005, HID_QUIRK_IGNORE }, | ||
| 552 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1006, HID_QUIRK_IGNORE }, | ||
| 553 | { USB_VENDOR_ID_GTCO, USB_DEVICE_ID_GTCO_1007, HID_QUIRK_IGNORE }, | ||
| 554 | { USB_VENDOR_ID_IMATION, USB_DEVICE_ID_DISC_STAKKA, HID_QUIRK_IGNORE }, | ||
| 555 | { USB_VENDOR_ID_KBGEAR, USB_DEVICE_ID_KBGEAR_JAMSTUDIO, HID_QUIRK_IGNORE }, | ||
| 556 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_CASSY, HID_QUIRK_IGNORE }, | ||
| 557 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POCKETCASSY, HID_QUIRK_IGNORE }, | ||
| 558 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MOBILECASSY, HID_QUIRK_IGNORE }, | ||
| 559 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_JWM, HID_QUIRK_IGNORE }, | ||
| 560 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_DMMP, HID_QUIRK_IGNORE }, | ||
| 561 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_UMIP, HID_QUIRK_IGNORE }, | ||
| 562 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_XRAY1, HID_QUIRK_IGNORE }, | ||
| 563 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_XRAY2, HID_QUIRK_IGNORE }, | ||
| 564 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_VIDEOCOM, HID_QUIRK_IGNORE }, | ||
| 565 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_COM3LAB, HID_QUIRK_IGNORE }, | ||
| 566 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_TELEPORT, HID_QUIRK_IGNORE }, | ||
| 567 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_NETWORKANALYSER, HID_QUIRK_IGNORE }, | ||
| 568 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_POWERCONTROL, HID_QUIRK_IGNORE }, | ||
| 569 | { USB_VENDOR_ID_LD, USB_DEVICE_ID_LD_MACHINETEST, HID_QUIRK_IGNORE }, | ||
| 570 | { USB_VENDOR_ID_MCC, USB_DEVICE_ID_MCC_PMD1024LS, HID_QUIRK_IGNORE }, | ||
| 571 | { USB_VENDOR_ID_MCC, USB_DEVICE_ID_MCC_PMD1208LS, HID_QUIRK_IGNORE }, | ||
| 572 | { USB_VENDOR_ID_MGE, USB_DEVICE_ID_MGE_UPS, HID_QUIRK_IGNORE }, | ||
| 573 | { USB_VENDOR_ID_MGE, USB_DEVICE_ID_MGE_UPS1, HID_QUIRK_IGNORE }, | ||
| 574 | { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100, HID_QUIRK_IGNORE }, | ||
| 575 | { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 20, HID_QUIRK_IGNORE }, | ||
| 576 | { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 30, HID_QUIRK_IGNORE }, | ||
| 577 | { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 100, HID_QUIRK_IGNORE }, | ||
| 578 | { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 108, HID_QUIRK_IGNORE }, | ||
| 579 | { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 118, HID_QUIRK_IGNORE }, | ||
| 580 | { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 200, HID_QUIRK_IGNORE }, | ||
| 581 | { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 300, HID_QUIRK_IGNORE }, | ||
| 582 | { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 400, HID_QUIRK_IGNORE }, | ||
| 583 | { USB_VENDOR_ID_ONTRAK, USB_DEVICE_ID_ONTRAK_ADU100 + 500, HID_QUIRK_IGNORE }, | ||
| 584 | { USB_VENDOR_ID_PANJIT, 0x0001, HID_QUIRK_IGNORE }, | ||
| 585 | { USB_VENDOR_ID_PANJIT, 0x0002, HID_QUIRK_IGNORE }, | ||
| 586 | { USB_VENDOR_ID_PANJIT, 0x0003, HID_QUIRK_IGNORE }, | ||
| 587 | { USB_VENDOR_ID_PANJIT, 0x0004, HID_QUIRK_IGNORE }, | ||
| 588 | { USB_VENDOR_ID_SOUNDGRAPH, USB_DEVICE_ID_SOUNDGRAPH_IMON_LCD, HID_QUIRK_IGNORE }, | ||
| 589 | { USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_LABPRO, HID_QUIRK_IGNORE }, | ||
| 590 | { USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_GOTEMP, HID_QUIRK_IGNORE }, | ||
| 591 | { USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_SKIP, HID_QUIRK_IGNORE }, | ||
| 592 | { USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_CYCLOPS, HID_QUIRK_IGNORE }, | ||
| 593 | { USB_VENDOR_ID_VERNIER, USB_DEVICE_ID_VERNIER_LCSPEC, HID_QUIRK_IGNORE }, | ||
| 594 | { USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_4_PHIDGETSERVO_20, HID_QUIRK_IGNORE }, | ||
| 595 | { USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_1_PHIDGETSERVO_20, HID_QUIRK_IGNORE }, | ||
| 596 | { USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_8_8_4_IF_KIT, HID_QUIRK_IGNORE }, | ||
| 597 | { USB_VENDOR_ID_YEALINK, USB_DEVICE_ID_YEALINK_P1K_P4K_B2K, HID_QUIRK_IGNORE }, | ||
| 598 | |||
| 599 | { USB_VENDOR_ID_ACECAD, USB_DEVICE_ID_ACECAD_FLAIR, HID_QUIRK_IGNORE }, | ||
| 600 | { USB_VENDOR_ID_ACECAD, USB_DEVICE_ID_ACECAD_302, HID_QUIRK_IGNORE }, | ||
| 601 | |||
| 602 | { USB_VENDOR_ID_MICROCHIP, USB_DEVICE_ID_PICKIT1, HID_QUIRK_IGNORE }, | ||
| 603 | { USB_VENDOR_ID_MICROCHIP, USB_DEVICE_ID_PICKIT2, HID_QUIRK_IGNORE }, | ||
| 604 | |||
| 605 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_ELITE_KBD, HID_QUIRK_LOGITECH_IGNORE_DOUBLED_WHEEL | HID_QUIRK_LOGITECH_EXPANDED_KEYMAP }, | ||
| 606 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_CORDLESS_DESKTOP_LX500, HID_QUIRK_LOGITECH_IGNORE_DOUBLED_WHEEL | HID_QUIRK_LOGITECH_EXPANDED_KEYMAP }, | ||
| 607 | |||
| 608 | { USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_NE4K, HID_QUIRK_MICROSOFT_KEYS }, | ||
| 609 | { USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_MS_LK6K, HID_QUIRK_MICROSOFT_KEYS }, | ||
| 610 | |||
| 611 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_MIGHTYMOUSE, HID_QUIRK_MIGHTYMOUSE | HID_QUIRK_INVERT_HWHEEL }, | ||
| 612 | |||
| 613 | { USB_VENDOR_ID_PANTHERLORD, USB_DEVICE_ID_PANTHERLORD_TWIN_USB_JOYSTICK, HID_QUIRK_MULTI_INPUT | HID_QUIRK_SKIP_OUTPUT_REPORTS }, | ||
| 614 | { USB_VENDOR_ID_PLAYDOTCOM, USB_DEVICE_ID_PLAYDOTCOM_EMS_USBII, HID_QUIRK_MULTI_INPUT }, | ||
| 615 | |||
| 616 | { USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_PS3_CONTROLLER, HID_QUIRK_SONY_PS3_CONTROLLER | HID_QUIRK_HIDDEV }, | ||
| 617 | |||
| 618 | { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_UC100KM, HID_QUIRK_NOGET }, | ||
| 619 | { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_CS124U, HID_QUIRK_NOGET }, | ||
| 620 | { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_2PORTKVM, HID_QUIRK_NOGET }, | ||
| 621 | { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_4PORTKVM, HID_QUIRK_NOGET }, | ||
| 622 | { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_4PORTKVMC, HID_QUIRK_NOGET }, | ||
| 623 | { USB_VENDOR_ID_DMI, USB_DEVICE_ID_DMI_ENC, HID_QUIRK_NOGET }, | ||
| 624 | { USB_VENDOR_ID_ELO, USB_DEVICE_ID_ELO_TS2700, HID_QUIRK_NOGET }, | ||
| 625 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_EXTREME_3D, HID_QUIRK_NOGET }, | ||
| 626 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_WHEEL, HID_QUIRK_NOGET }, | ||
| 627 | { USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_WIRELESS_OPTICAL_DESKTOP_3_0, HID_QUIRK_NOGET }, | ||
| 628 | { USB_VENDOR_ID_PETALYNX, USB_DEVICE_ID_PETALYNX_MAXTER_REMOTE, HID_QUIRK_NOGET }, | ||
| 629 | { USB_VENDOR_ID_SUN, USB_DEVICE_ID_RARITAN_KVM_DONGLE, HID_QUIRK_NOGET }, | ||
| 630 | { USB_VENDOR_ID_TURBOX, USB_DEVICE_ID_TURBOX_KEYBOARD, HID_QUIRK_NOGET }, | ||
| 631 | { USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_DUAL_USB_JOYPAD, HID_QUIRK_NOGET | HID_QUIRK_MULTI_INPUT | HID_QUIRK_SKIP_OUTPUT_REPORTS }, | ||
| 632 | { USB_VENDOR_ID_WISEGROUP, USB_DEVICE_ID_QUAD_USB_JOYPAD, HID_QUIRK_NOGET | HID_QUIRK_MULTI_INPUT }, | ||
| 633 | |||
| 634 | { USB_VENDOR_ID_WISEGROUP_LTD, USB_DEVICE_ID_SMARTJOY_DUAL_PLUS, HID_QUIRK_NOGET | HID_QUIRK_MULTI_INPUT }, | ||
| 635 | |||
| 636 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_ANSI, HID_QUIRK_APPLE_NUMLOCK_EMULATION | HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, | ||
| 637 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_ISO, HID_QUIRK_APPLE_NUMLOCK_EMULATION | HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, | ||
| 638 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_ANSI, HID_QUIRK_APPLE_NUMLOCK_EMULATION | HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, | ||
| 639 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_ISO, HID_QUIRK_APPLE_NUMLOCK_EMULATION | HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE | HID_QUIRK_APPLE_ISO_KEYBOARD}, | ||
| 640 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER_JIS, HID_QUIRK_APPLE_NUMLOCK_EMULATION | HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, | ||
| 641 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ANSI, HID_QUIRK_APPLE_NUMLOCK_EMULATION | HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, | ||
| 642 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_ISO, HID_QUIRK_APPLE_NUMLOCK_EMULATION | HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE | HID_QUIRK_APPLE_ISO_KEYBOARD}, | ||
| 643 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER3_JIS, HID_QUIRK_APPLE_NUMLOCK_EMULATION | HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, | ||
| 644 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ANSI, HID_QUIRK_APPLE_NUMLOCK_EMULATION | HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, | ||
| 645 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_ISO, HID_QUIRK_APPLE_NUMLOCK_EMULATION | HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE | HID_QUIRK_APPLE_ISO_KEYBOARD}, | ||
| 646 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_JIS, HID_QUIRK_APPLE_NUMLOCK_EMULATION | HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, | ||
| 647 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_ANSI, HID_QUIRK_APPLE_HAS_FN }, | ||
| 648 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_ISO, HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_APPLE_ISO_KEYBOARD }, | ||
| 649 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_JIS, HID_QUIRK_APPLE_HAS_FN }, | ||
| 650 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ANSI, HID_QUIRK_APPLE_NUMLOCK_EMULATION | HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, | ||
| 651 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_ISO, HID_QUIRK_APPLE_NUMLOCK_EMULATION | HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, | ||
| 652 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_HF_JIS, HID_QUIRK_APPLE_NUMLOCK_EMULATION | HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, | ||
| 653 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_ANSI, HID_QUIRK_APPLE_NUMLOCK_EMULATION | HID_QUIRK_APPLE_HAS_FN }, | ||
| 654 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_ISO, HID_QUIRK_APPLE_NUMLOCK_EMULATION | HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_APPLE_ISO_KEYBOARD }, | ||
| 655 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_ALU_WIRELESS_JIS, HID_QUIRK_APPLE_NUMLOCK_EMULATION | HID_QUIRK_APPLE_HAS_FN }, | ||
| 656 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_ANSI, HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, | ||
| 657 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_ISO, HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_APPLE_ISO_KEYBOARD | HID_QUIRK_IGNORE_MOUSE}, | ||
| 658 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING_JIS, HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE}, | ||
| 659 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_ANSI, HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE}, | ||
| 660 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_ISO, HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_APPLE_ISO_KEYBOARD | HID_QUIRK_IGNORE_MOUSE }, | ||
| 661 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING2_JIS, HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, | ||
| 662 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ANSI, HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE}, | ||
| 663 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_ISO, HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_APPLE_ISO_KEYBOARD | HID_QUIRK_IGNORE_MOUSE }, | ||
| 664 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_WELLSPRING3_JIS, HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, | ||
| 665 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_FOUNTAIN_TP_ONLY, HID_QUIRK_APPLE_NUMLOCK_EMULATION | HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, | ||
| 666 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER1_TP_ONLY, HID_QUIRK_APPLE_NUMLOCK_EMULATION | HID_QUIRK_APPLE_HAS_FN | HID_QUIRK_IGNORE_MOUSE }, | ||
| 667 | |||
| 668 | { USB_VENDOR_ID_DELL, USB_DEVICE_ID_DELL_W7658, HID_QUIRK_RESET_LEDS }, | ||
| 669 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_KBD, HID_QUIRK_RESET_LEDS }, | ||
| 670 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY, HID_QUIRK_IGNORE }, | ||
| 671 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_2, HID_QUIRK_IGNORE }, | ||
| 672 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_3, HID_QUIRK_IGNORE }, | ||
| 673 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_4, HID_QUIRK_IGNORE }, | ||
| 674 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_5, HID_QUIRK_IGNORE }, | ||
| 675 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_6, HID_QUIRK_IGNORE }, | ||
| 676 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_7, HID_QUIRK_IGNORE }, | ||
| 677 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_8, HID_QUIRK_IGNORE }, | ||
| 678 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_9, HID_QUIRK_IGNORE }, | ||
| 679 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_10, HID_QUIRK_IGNORE }, | ||
| 680 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_11, HID_QUIRK_IGNORE }, | ||
| 681 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_12, HID_QUIRK_IGNORE }, | ||
| 682 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_13, HID_QUIRK_IGNORE }, | ||
| 683 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_14, HID_QUIRK_IGNORE }, | ||
| 684 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_15, HID_QUIRK_IGNORE }, | ||
| 685 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_16, HID_QUIRK_IGNORE }, | ||
| 686 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_17, HID_QUIRK_IGNORE }, | ||
| 687 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_18, HID_QUIRK_IGNORE }, | ||
| 688 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_19, HID_QUIRK_IGNORE }, | ||
| 689 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_20, HID_QUIRK_IGNORE }, | ||
| 690 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_21, HID_QUIRK_IGNORE }, | ||
| 691 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_22, HID_QUIRK_IGNORE }, | ||
| 692 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_23, HID_QUIRK_IGNORE }, | ||
| 693 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_24, HID_QUIRK_IGNORE }, | ||
| 694 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_25, HID_QUIRK_IGNORE }, | ||
| 695 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_26, HID_QUIRK_IGNORE }, | ||
| 696 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_27, HID_QUIRK_IGNORE }, | ||
| 697 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_28, HID_QUIRK_IGNORE }, | ||
| 698 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_29, HID_QUIRK_IGNORE }, | ||
| 699 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_30, HID_QUIRK_IGNORE }, | ||
| 700 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_31, HID_QUIRK_IGNORE }, | ||
| 701 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_32, HID_QUIRK_IGNORE }, | ||
| 702 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_33, HID_QUIRK_IGNORE }, | ||
| 703 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_34, HID_QUIRK_IGNORE }, | ||
| 704 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_35, HID_QUIRK_IGNORE }, | ||
| 705 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_36, HID_QUIRK_IGNORE }, | ||
| 706 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_37, HID_QUIRK_IGNORE }, | ||
| 707 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_38, HID_QUIRK_IGNORE }, | ||
| 708 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_39, HID_QUIRK_IGNORE }, | ||
| 709 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_40, HID_QUIRK_IGNORE }, | ||
| 710 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_41, HID_QUIRK_IGNORE }, | ||
| 711 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_42, HID_QUIRK_IGNORE }, | ||
| 712 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_43, HID_QUIRK_IGNORE }, | ||
| 713 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_44, HID_QUIRK_IGNORE }, | ||
| 714 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_45, HID_QUIRK_IGNORE }, | ||
| 715 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_46, HID_QUIRK_IGNORE }, | ||
| 716 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_47, HID_QUIRK_IGNORE }, | ||
| 717 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_48, HID_QUIRK_IGNORE }, | ||
| 718 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_49, HID_QUIRK_IGNORE }, | ||
| 719 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_50, HID_QUIRK_IGNORE }, | ||
| 720 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_51, HID_QUIRK_IGNORE }, | ||
| 721 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_52, HID_QUIRK_IGNORE }, | ||
| 722 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_53, HID_QUIRK_IGNORE }, | ||
| 723 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_54, HID_QUIRK_IGNORE }, | ||
| 724 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_55, HID_QUIRK_IGNORE }, | ||
| 725 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_56, HID_QUIRK_IGNORE }, | ||
| 726 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_57, HID_QUIRK_IGNORE }, | ||
| 727 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_58, HID_QUIRK_IGNORE }, | ||
| 728 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_59, HID_QUIRK_IGNORE }, | ||
| 729 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_60, HID_QUIRK_IGNORE }, | ||
| 730 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_61, HID_QUIRK_IGNORE }, | ||
| 731 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_62, HID_QUIRK_IGNORE }, | ||
| 732 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_63, HID_QUIRK_IGNORE }, | ||
| 733 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_LOGITECH_HARMONY_64, HID_QUIRK_IGNORE }, | ||
| 734 | { USB_VENDOR_ID_NATIONAL_SEMICONDUCTOR, USB_DEVICE_ID_N_S_HARMONY, HID_QUIRK_IGNORE }, | ||
| 735 | { USB_VENDOR_ID_KYE, USB_DEVICE_ID_KYE_GPEN_560, HID_QUIRK_IGNORE }, | ||
| 736 | |||
| 737 | { 0, 0 } | ||
| 738 | }; | ||
| 739 | |||
| 740 | /* Quirks for devices which require report descriptor fixup go here */ | ||
| 741 | static const struct hid_rdesc_blacklist { | ||
| 742 | __u16 idVendor; | ||
| 743 | __u16 idProduct; | ||
| 744 | __u32 quirks; | ||
| 745 | } hid_rdesc_blacklist[] = { | ||
| 746 | |||
| 747 | { USB_VENDOR_ID_CHERRY, USB_DEVICE_ID_CHERRY_CYMOTION, HID_QUIRK_RDESC_CYMOTION }, | ||
| 748 | |||
| 749 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_MX3000_RECEIVER, HID_QUIRK_RDESC_LOGITECH }, | ||
| 750 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_S510_RECEIVER, HID_QUIRK_RDESC_LOGITECH }, | ||
| 751 | { USB_VENDOR_ID_LOGITECH, USB_DEVICE_ID_S510_RECEIVER_2, HID_QUIRK_RDESC_LOGITECH }, | ||
| 752 | { USB_VENDOR_ID_MICROSOFT, USB_DEVICE_ID_DESKTOP_RECV_1028, HID_QUIRK_RDESC_MICROSOFT_RECV_1028 }, | ||
| 753 | |||
| 754 | { USB_VENDOR_ID_MONTEREY, USB_DEVICE_ID_GENIUS_KB29E, HID_QUIRK_RDESC_BUTTON_CONSUMER }, | ||
| 755 | |||
| 756 | { USB_VENDOR_ID_APPLE, USB_DEVICE_ID_APPLE_GEYSER4_JIS, HID_QUIRK_RDESC_MACBOOK_JIS }, | ||
| 757 | |||
| 758 | { USB_VENDOR_ID_PETALYNX, USB_DEVICE_ID_PETALYNX_MAXTER_REMOTE, HID_QUIRK_RDESC_PETALYNX }, | ||
| 759 | |||
| 760 | { USB_VENDOR_ID_SAMSUNG, USB_DEVICE_ID_SAMSUNG_IR_REMOTE, HID_QUIRK_RDESC_SAMSUNG_REMOTE }, | ||
| 761 | |||
| 762 | { USB_VENDOR_ID_SUNPLUS, USB_DEVICE_ID_SUNPLUS_WDESKTOP, HID_QUIRK_RDESC_SUNPLUS_WDESKTOP }, | ||
| 763 | |||
| 764 | { USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_BARCODE_1, HID_QUIRK_RDESC_SWAPPED_MIN_MAX }, | ||
| 765 | { USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_BARCODE_2, HID_QUIRK_RDESC_SWAPPED_MIN_MAX }, | ||
| 766 | |||
| 767 | { 0, 0 } | ||
| 768 | }; | ||
| 769 | |||
| 770 | /* Dynamic HID quirks list - specified at runtime */ | ||
| 771 | struct quirks_list_struct { | ||
| 772 | struct hid_blacklist hid_bl_item; | ||
| 773 | struct list_head node; | ||
| 774 | }; | ||
| 775 | |||
| 776 | static LIST_HEAD(dquirks_list); | ||
| 777 | static DECLARE_RWSEM(dquirks_rwsem); | ||
| 778 | |||
| 779 | /* Runtime ("dynamic") quirks manipulation functions */ | ||
| 780 | |||
| 781 | /** | ||
| 782 | * usbhid_exists_dquirk: find any dynamic quirks for a USB HID device | ||
| 783 | * @idVendor: the 16-bit USB vendor ID, in native byteorder | ||
| 784 | * @idProduct: the 16-bit USB product ID, in native byteorder | ||
| 785 | * | ||
| 786 | * Description: | ||
| 787 | * Scans dquirks_list for a matching dynamic quirk and returns | ||
| 788 | * the pointer to the relevant struct hid_blacklist if found. | ||
| 789 | * Must be called with a read lock held on dquirks_rwsem. | ||
| 790 | * | ||
| 791 | * Returns: NULL if no quirk found, struct hid_blacklist * if found. | ||
| 792 | */ | ||
| 793 | static struct hid_blacklist *usbhid_exists_dquirk(const u16 idVendor, | ||
| 794 | const u16 idProduct) | ||
| 795 | { | ||
| 796 | struct quirks_list_struct *q; | ||
| 797 | struct hid_blacklist *bl_entry = NULL; | ||
| 798 | |||
| 799 | list_for_each_entry(q, &dquirks_list, node) { | ||
| 800 | if (q->hid_bl_item.idVendor == idVendor && | ||
| 801 | q->hid_bl_item.idProduct == idProduct) { | ||
| 802 | bl_entry = &q->hid_bl_item; | ||
| 803 | break; | ||
| 804 | } | ||
| 805 | } | ||
| 806 | |||
| 807 | if (bl_entry != NULL) | ||
| 808 | dbg_hid("Found dynamic quirk 0x%x for USB HID vendor 0x%hx prod 0x%hx\n", | ||
| 809 | bl_entry->quirks, bl_entry->idVendor, | ||
| 810 | bl_entry->idProduct); | ||
| 811 | |||
| 812 | return bl_entry; | ||
| 813 | } | ||
| 814 | |||
| 815 | |||
| 816 | /** | ||
| 817 | * usbhid_modify_dquirk: add/replace a HID quirk | ||
| 818 | * @idVendor: the 16-bit USB vendor ID, in native byteorder | ||
| 819 | * @idProduct: the 16-bit USB product ID, in native byteorder | ||
| 820 | * @quirks: the u32 quirks value to add/replace | ||
| 821 | * | ||
| 822 | * Description: | ||
| 823 | * If an dynamic quirk exists in memory for this (idVendor, | ||
| 824 | * idProduct) pair, replace its quirks value with what was | ||
| 825 | * provided. Otherwise, add the quirk to the dynamic quirks list. | ||
| 826 | * | ||
| 827 | * Returns: 0 OK, -error on failure. | ||
| 828 | */ | ||
| 829 | static int usbhid_modify_dquirk(const u16 idVendor, const u16 idProduct, | ||
| 830 | const u32 quirks) | ||
| 831 | { | ||
| 832 | struct quirks_list_struct *q_new, *q; | ||
| 833 | int list_edited = 0; | ||
| 834 | |||
| 835 | if (!idVendor) { | ||
| 836 | dbg_hid("Cannot add a quirk with idVendor = 0\n"); | ||
| 837 | return -EINVAL; | ||
| 838 | } | ||
| 839 | |||
| 840 | q_new = kmalloc(sizeof(struct quirks_list_struct), GFP_KERNEL); | ||
| 841 | if (!q_new) { | ||
| 842 | dbg_hid("Could not allocate quirks_list_struct\n"); | ||
| 843 | return -ENOMEM; | ||
| 844 | } | ||
| 845 | |||
| 846 | q_new->hid_bl_item.idVendor = idVendor; | ||
| 847 | q_new->hid_bl_item.idProduct = idProduct; | ||
| 848 | q_new->hid_bl_item.quirks = quirks; | ||
| 849 | |||
| 850 | down_write(&dquirks_rwsem); | ||
| 851 | |||
| 852 | list_for_each_entry(q, &dquirks_list, node) { | ||
| 853 | |||
| 854 | if (q->hid_bl_item.idVendor == idVendor && | ||
| 855 | q->hid_bl_item.idProduct == idProduct) { | ||
| 856 | |||
| 857 | list_replace(&q->node, &q_new->node); | ||
| 858 | kfree(q); | ||
| 859 | list_edited = 1; | ||
| 860 | break; | ||
| 861 | |||
| 862 | } | ||
| 863 | |||
| 864 | } | ||
| 865 | |||
| 866 | if (!list_edited) | ||
| 867 | list_add_tail(&q_new->node, &dquirks_list); | ||
| 868 | |||
| 869 | up_write(&dquirks_rwsem); | ||
| 870 | |||
| 871 | return 0; | ||
| 872 | } | ||
| 873 | |||
| 874 | /** | ||
| 875 | * usbhid_remove_all_dquirks: remove all runtime HID quirks from memory | ||
| 876 | * | ||
| 877 | * Description: | ||
| 878 | * Free all memory associated with dynamic quirks - called before | ||
| 879 | * module unload. | ||
| 880 | * | ||
| 881 | */ | ||
| 882 | static void usbhid_remove_all_dquirks(void) | ||
| 883 | { | ||
| 884 | struct quirks_list_struct *q, *temp; | ||
| 885 | |||
| 886 | down_write(&dquirks_rwsem); | ||
| 887 | list_for_each_entry_safe(q, temp, &dquirks_list, node) { | ||
| 888 | list_del(&q->node); | ||
| 889 | kfree(q); | ||
| 890 | } | ||
| 891 | up_write(&dquirks_rwsem); | ||
| 892 | |||
| 893 | } | ||
| 894 | |||
| 895 | /** | ||
| 896 | * usbhid_quirks_init: apply USB HID quirks specified at module load time | ||
| 897 | */ | ||
| 898 | int usbhid_quirks_init(char **quirks_param) | ||
| 899 | { | ||
| 900 | u16 idVendor, idProduct; | ||
| 901 | u32 quirks; | ||
| 902 | int n = 0, m; | ||
| 903 | |||
| 904 | for (; quirks_param[n] && n < MAX_USBHID_BOOT_QUIRKS; n++) { | ||
| 905 | |||
| 906 | m = sscanf(quirks_param[n], "0x%hx:0x%hx:0x%x", | ||
| 907 | &idVendor, &idProduct, &quirks); | ||
| 908 | |||
| 909 | if (m != 3 || | ||
| 910 | usbhid_modify_dquirk(idVendor, idProduct, quirks) != 0) { | ||
| 911 | printk(KERN_WARNING | ||
| 912 | "Could not parse HID quirk module param %s\n", | ||
| 913 | quirks_param[n]); | ||
| 914 | } | ||
| 915 | } | ||
| 916 | |||
| 917 | return 0; | ||
| 918 | } | ||
| 919 | |||
| 920 | /** | ||
| 921 | * usbhid_quirks_exit: release memory associated with dynamic_quirks | ||
| 922 | * | ||
| 923 | * Description: | ||
| 924 | * Release all memory associated with dynamic quirks. Called upon | ||
| 925 | * module unload. | ||
| 926 | * | ||
| 927 | * Returns: nothing | ||
| 928 | */ | ||
| 929 | void usbhid_quirks_exit(void) | ||
| 930 | { | ||
| 931 | usbhid_remove_all_dquirks(); | ||
| 932 | } | ||
| 933 | |||
| 934 | /** | ||
| 935 | * usbhid_exists_squirk: return any static quirks for a USB HID device | ||
| 936 | * @idVendor: the 16-bit USB vendor ID, in native byteorder | ||
| 937 | * @idProduct: the 16-bit USB product ID, in native byteorder | ||
| 938 | * | ||
| 939 | * Description: | ||
| 940 | * Given a USB vendor ID and product ID, return a pointer to | ||
| 941 | * the hid_blacklist entry associated with that device. | ||
| 942 | * | ||
| 943 | * Returns: pointer if quirk found, or NULL if no quirks found. | ||
| 944 | */ | ||
| 945 | static const struct hid_blacklist *usbhid_exists_squirk(const u16 idVendor, | ||
| 946 | const u16 idProduct) | ||
| 947 | { | ||
| 948 | const struct hid_blacklist *bl_entry = NULL; | ||
| 949 | int n = 0; | ||
| 950 | |||
| 951 | for (; hid_blacklist[n].idVendor; n++) | ||
| 952 | if (hid_blacklist[n].idVendor == idVendor && | ||
| 953 | hid_blacklist[n].idProduct == idProduct) | ||
| 954 | bl_entry = &hid_blacklist[n]; | ||
| 955 | |||
| 956 | if (bl_entry != NULL) | ||
| 957 | dbg_hid("Found squirk 0x%x for USB HID vendor 0x%hx prod 0x%hx\n", | ||
| 958 | bl_entry->quirks, bl_entry->idVendor, | ||
| 959 | bl_entry->idProduct); | ||
| 960 | return bl_entry; | ||
| 961 | } | ||
| 962 | |||
| 963 | /** | ||
| 964 | * usbhid_lookup_quirk: return any quirks associated with a USB HID device | ||
| 965 | * @idVendor: the 16-bit USB vendor ID, in native byteorder | ||
| 966 | * @idProduct: the 16-bit USB product ID, in native byteorder | ||
| 967 | * | ||
| 968 | * Description: | ||
| 969 | * Given a USB vendor ID and product ID, return any quirks associated | ||
| 970 | * with that device. | ||
| 971 | * | ||
| 972 | * Returns: a u32 quirks value. | ||
| 973 | */ | ||
| 974 | u32 usbhid_lookup_quirk(const u16 idVendor, const u16 idProduct) | ||
| 975 | { | ||
| 976 | u32 quirks = 0; | ||
| 977 | const struct hid_blacklist *bl_entry = NULL; | ||
| 978 | |||
| 979 | /* Ignore all Wacom devices */ | ||
| 980 | if (idVendor == USB_VENDOR_ID_WACOM) | ||
| 981 | return HID_QUIRK_IGNORE; | ||
| 982 | |||
| 983 | /* ignore all Code Mercenaries IOWarrior devices */ | ||
| 984 | if (idVendor == USB_VENDOR_ID_CODEMERCS) | ||
| 985 | if (idProduct >= USB_DEVICE_ID_CODEMERCS_IOW_FIRST && | ||
| 986 | idProduct <= USB_DEVICE_ID_CODEMERCS_IOW_LAST) | ||
| 987 | return HID_QUIRK_IGNORE; | ||
| 988 | |||
| 989 | /* NCR devices must not be queried for reports */ | ||
| 990 | if (idVendor == USB_VENDOR_ID_NCR && | ||
| 991 | idProduct >= USB_DEVICE_ID_NCR_FIRST && | ||
| 992 | idProduct <= USB_DEVICE_ID_NCR_LAST) | ||
| 993 | return HID_QUIRK_NOGET; | ||
| 994 | |||
| 995 | down_read(&dquirks_rwsem); | ||
| 996 | bl_entry = usbhid_exists_dquirk(idVendor, idProduct); | ||
| 997 | if (!bl_entry) | ||
| 998 | bl_entry = usbhid_exists_squirk(idVendor, idProduct); | ||
| 999 | if (bl_entry) | ||
| 1000 | quirks = bl_entry->quirks; | ||
| 1001 | up_read(&dquirks_rwsem); | ||
| 1002 | |||
| 1003 | return quirks; | ||
| 1004 | } | ||
| 1005 | |||
| 1006 | EXPORT_SYMBOL_GPL(usbhid_lookup_quirk); | ||
| 1007 | |||
| 1008 | /* | ||
| 1009 | * Cherry Cymotion keyboard have an invalid HID report descriptor, | ||
| 1010 | * that needs fixing before we can parse it. | ||
| 1011 | */ | ||
| 1012 | static void usbhid_fixup_cymotion_descriptor(char *rdesc, int rsize) | ||
| 1013 | { | ||
| 1014 | if (rsize >= 17 && rdesc[11] == 0x3c && rdesc[12] == 0x02) { | ||
| 1015 | printk(KERN_INFO "Fixing up Cherry Cymotion report descriptor\n"); | ||
| 1016 | rdesc[11] = rdesc[16] = 0xff; | ||
| 1017 | rdesc[12] = rdesc[17] = 0x03; | ||
| 1018 | } | ||
| 1019 | } | ||
| 1020 | |||
| 1021 | |||
| 1022 | /* | ||
| 1023 | * Certain Logitech keyboards send in report #3 keys which are far | ||
| 1024 | * above the logical maximum described in descriptor. This extends | ||
| 1025 | * the original value of 0x28c of logical maximum to 0x104d | ||
| 1026 | */ | ||
| 1027 | static void usbhid_fixup_logitech_descriptor(unsigned char *rdesc, int rsize) | ||
| 1028 | { | ||
| 1029 | if (rsize >= 90 && rdesc[83] == 0x26 | ||
| 1030 | && rdesc[84] == 0x8c | ||
| 1031 | && rdesc[85] == 0x02) { | ||
| 1032 | printk(KERN_INFO "Fixing up Logitech keyboard report descriptor\n"); | ||
| 1033 | rdesc[84] = rdesc[89] = 0x4d; | ||
| 1034 | rdesc[85] = rdesc[90] = 0x10; | ||
| 1035 | } | ||
| 1036 | } | ||
| 1037 | |||
| 1038 | static void usbhid_fixup_sunplus_wdesktop(unsigned char *rdesc, int rsize) | ||
| 1039 | { | ||
| 1040 | if (rsize >= 107 && rdesc[104] == 0x26 | ||
| 1041 | && rdesc[105] == 0x80 | ||
| 1042 | && rdesc[106] == 0x03) { | ||
| 1043 | printk(KERN_INFO "Fixing up Sunplus Wireless Desktop report descriptor\n"); | ||
| 1044 | rdesc[105] = rdesc[110] = 0x03; | ||
| 1045 | rdesc[106] = rdesc[111] = 0x21; | ||
| 1046 | } | ||
| 1047 | } | ||
| 1048 | |||
| 1049 | /* | ||
| 1050 | * Samsung IrDA remote controller (reports as Cypress USB Mouse). | ||
| 1051 | * | ||
| 1052 | * Vendor specific report #4 has a size of 48 bit, | ||
| 1053 | * and therefore is not accepted when inspecting the descriptors. | ||
| 1054 | * As a workaround we reinterpret the report as: | ||
| 1055 | * Variable type, count 6, size 8 bit, log. maximum 255 | ||
| 1056 | * The burden to reconstruct the data is moved into user space. | ||
| 1057 | */ | ||
| 1058 | static void usbhid_fixup_samsung_irda_descriptor(unsigned char *rdesc, | ||
| 1059 | int rsize) | ||
| 1060 | { | ||
| 1061 | if (rsize >= 182 && rdesc[175] == 0x25 | ||
| 1062 | && rdesc[176] == 0x40 | ||
| 1063 | && rdesc[177] == 0x75 | ||
| 1064 | && rdesc[178] == 0x30 | ||
| 1065 | && rdesc[179] == 0x95 | ||
| 1066 | && rdesc[180] == 0x01 | ||
| 1067 | && rdesc[182] == 0x40) { | ||
| 1068 | printk(KERN_INFO "Fixing up Samsung IrDA report descriptor\n"); | ||
| 1069 | rdesc[176] = 0xff; | ||
| 1070 | rdesc[178] = 0x08; | ||
| 1071 | rdesc[180] = 0x06; | ||
| 1072 | rdesc[182] = 0x42; | ||
| 1073 | } | ||
| 1074 | } | ||
| 1075 | |||
| 1076 | /* Petalynx Maxter Remote has maximum for consumer page set too low */ | ||
| 1077 | static void usbhid_fixup_petalynx_descriptor(unsigned char *rdesc, int rsize) | ||
| 1078 | { | ||
| 1079 | if (rsize >= 60 && rdesc[39] == 0x2a | ||
| 1080 | && rdesc[40] == 0xf5 | ||
| 1081 | && rdesc[41] == 0x00 | ||
| 1082 | && rdesc[59] == 0x26 | ||
| 1083 | && rdesc[60] == 0xf9 | ||
| 1084 | && rdesc[61] == 0x00) { | ||
| 1085 | printk(KERN_INFO "Fixing up Petalynx Maxter Remote report descriptor\n"); | ||
| 1086 | rdesc[60] = 0xfa; | ||
| 1087 | rdesc[40] = 0xfa; | ||
| 1088 | } | ||
| 1089 | } | ||
| 1090 | |||
| 1091 | /* | ||
| 1092 | * Some USB barcode readers from cypress have usage min and usage max in | ||
| 1093 | * the wrong order | ||
| 1094 | */ | ||
| 1095 | static void usbhid_fixup_cypress_descriptor(unsigned char *rdesc, int rsize) | ||
| 1096 | { | ||
| 1097 | short fixed = 0; | ||
| 1098 | int i; | ||
| 1099 | |||
| 1100 | for (i = 0; i < rsize - 4; i++) { | ||
| 1101 | if (rdesc[i] == 0x29 && rdesc [i+2] == 0x19) { | ||
| 1102 | unsigned char tmp; | ||
| 1103 | |||
| 1104 | rdesc[i] = 0x19; rdesc[i+2] = 0x29; | ||
| 1105 | tmp = rdesc[i+3]; | ||
| 1106 | rdesc[i+3] = rdesc[i+1]; | ||
| 1107 | rdesc[i+1] = tmp; | ||
| 1108 | } | ||
| 1109 | } | ||
| 1110 | |||
| 1111 | if (fixed) | ||
| 1112 | printk(KERN_INFO "Fixing up Cypress report descriptor\n"); | ||
| 1113 | } | ||
| 1114 | |||
| 1115 | /* | ||
| 1116 | * MacBook JIS keyboard has wrong logical maximum | ||
| 1117 | */ | ||
| 1118 | static void usbhid_fixup_macbook_descriptor(unsigned char *rdesc, int rsize) | ||
| 1119 | { | ||
| 1120 | if (rsize >= 60 && rdesc[53] == 0x65 | ||
| 1121 | && rdesc[59] == 0x65) { | ||
| 1122 | printk(KERN_INFO "Fixing up MacBook JIS keyboard report descriptor\n"); | ||
| 1123 | rdesc[53] = rdesc[59] = 0xe7; | ||
| 1124 | } | ||
| 1125 | } | ||
| 1126 | |||
| 1127 | static void usbhid_fixup_button_consumer_descriptor(unsigned char *rdesc, int rsize) | ||
| 1128 | { | ||
| 1129 | if (rsize >= 30 && rdesc[29] == 0x05 | ||
| 1130 | && rdesc[30] == 0x09) { | ||
| 1131 | printk(KERN_INFO "Fixing up button/consumer in HID report descriptor\n"); | ||
| 1132 | rdesc[30] = 0x0c; | ||
| 1133 | } | ||
| 1134 | } | ||
| 1135 | |||
| 1136 | /* | ||
| 1137 | * Microsoft Wireless Desktop Receiver (Model 1028) has several | ||
| 1138 | * 'Usage Min/Max' where it ought to have 'Physical Min/Max' | ||
| 1139 | */ | ||
| 1140 | static void usbhid_fixup_microsoft_descriptor(unsigned char *rdesc, int rsize) | ||
| 1141 | { | ||
| 1142 | if (rsize == 571 && rdesc[284] == 0x19 | ||
| 1143 | && rdesc[286] == 0x2a | ||
| 1144 | && rdesc[304] == 0x19 | ||
| 1145 | && rdesc[306] == 0x29 | ||
| 1146 | && rdesc[352] == 0x1a | ||
| 1147 | && rdesc[355] == 0x2a | ||
| 1148 | && rdesc[557] == 0x19 | ||
| 1149 | && rdesc[559] == 0x29) { | ||
| 1150 | printk(KERN_INFO "Fixing up Microsoft Wireless Receiver Model 1028 report descriptor\n"); | ||
| 1151 | rdesc[284] = rdesc[304] = rdesc[557] = 0x35; | ||
| 1152 | rdesc[352] = 0x36; | ||
| 1153 | rdesc[286] = rdesc[355] = 0x46; | ||
| 1154 | rdesc[306] = rdesc[559] = 0x45; | ||
| 1155 | } | ||
| 1156 | } | ||
| 1157 | |||
| 1158 | static void __usbhid_fixup_report_descriptor(__u32 quirks, char *rdesc, unsigned rsize) | ||
| 1159 | { | ||
| 1160 | if ((quirks & HID_QUIRK_RDESC_CYMOTION)) | ||
| 1161 | usbhid_fixup_cymotion_descriptor(rdesc, rsize); | ||
| 1162 | |||
| 1163 | if (quirks & HID_QUIRK_RDESC_LOGITECH) | ||
| 1164 | usbhid_fixup_logitech_descriptor(rdesc, rsize); | ||
| 1165 | |||
| 1166 | if (quirks & HID_QUIRK_RDESC_SWAPPED_MIN_MAX) | ||
| 1167 | usbhid_fixup_cypress_descriptor(rdesc, rsize); | ||
| 1168 | |||
| 1169 | if (quirks & HID_QUIRK_RDESC_PETALYNX) | ||
| 1170 | usbhid_fixup_petalynx_descriptor(rdesc, rsize); | ||
| 1171 | |||
| 1172 | if (quirks & HID_QUIRK_RDESC_MACBOOK_JIS) | ||
| 1173 | usbhid_fixup_macbook_descriptor(rdesc, rsize); | ||
| 1174 | |||
| 1175 | if (quirks & HID_QUIRK_RDESC_BUTTON_CONSUMER) | ||
| 1176 | usbhid_fixup_button_consumer_descriptor(rdesc, rsize); | ||
| 1177 | |||
| 1178 | if (quirks & HID_QUIRK_RDESC_SAMSUNG_REMOTE) | ||
| 1179 | usbhid_fixup_samsung_irda_descriptor(rdesc, rsize); | ||
| 1180 | |||
| 1181 | if (quirks & HID_QUIRK_RDESC_MICROSOFT_RECV_1028) | ||
| 1182 | usbhid_fixup_microsoft_descriptor(rdesc, rsize); | ||
| 1183 | |||
| 1184 | if (quirks & HID_QUIRK_RDESC_SUNPLUS_WDESKTOP) | ||
| 1185 | usbhid_fixup_sunplus_wdesktop(rdesc, rsize); | ||
| 1186 | } | ||
| 1187 | |||
| 1188 | /** | ||
| 1189 | * usbhid_fixup_report_descriptor: check if report descriptor needs fixup | ||
| 1190 | * | ||
| 1191 | * Description: | ||
| 1192 | * Walks the hid_rdesc_blacklist[] array and checks whether the device | ||
| 1193 | * is known to have broken report descriptor that needs to be fixed up | ||
| 1194 | * prior to entering the HID parser | ||
| 1195 | * | ||
| 1196 | * Returns: nothing | ||
| 1197 | */ | ||
| 1198 | void usbhid_fixup_report_descriptor(const u16 idVendor, const u16 idProduct, | ||
| 1199 | char *rdesc, unsigned rsize, char **quirks_param) | ||
| 1200 | { | ||
| 1201 | int n, m; | ||
| 1202 | u16 paramVendor, paramProduct; | ||
| 1203 | u32 quirks; | ||
| 1204 | |||
| 1205 | /* static rdesc quirk entries */ | ||
| 1206 | for (n = 0; hid_rdesc_blacklist[n].idVendor; n++) | ||
| 1207 | if (hid_rdesc_blacklist[n].idVendor == idVendor && | ||
| 1208 | hid_rdesc_blacklist[n].idProduct == idProduct) | ||
| 1209 | __usbhid_fixup_report_descriptor(hid_rdesc_blacklist[n].quirks, | ||
| 1210 | rdesc, rsize); | ||
| 1211 | |||
| 1212 | /* runtime rdesc quirk entries handling */ | ||
| 1213 | for (n = 0; quirks_param[n] && n < MAX_USBHID_BOOT_QUIRKS; n++) { | ||
| 1214 | m = sscanf(quirks_param[n], "0x%hx:0x%hx:0x%x", | ||
| 1215 | ¶mVendor, ¶mProduct, &quirks); | ||
| 1216 | |||
| 1217 | if (m != 3) | ||
| 1218 | printk(KERN_WARNING | ||
| 1219 | "Could not parse HID quirk module param %s\n", | ||
| 1220 | quirks_param[n]); | ||
| 1221 | else if (paramVendor == idVendor && paramProduct == idProduct) | ||
| 1222 | __usbhid_fixup_report_descriptor(quirks, rdesc, rsize); | ||
| 1223 | } | ||
| 1224 | } | ||
