Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Oliver Neukum | 7ceec1f | 2007-01-26 14:26:21 +0100 | [diff] [blame] | 2 | /* |
| 3 | * This file holds the definitions of quirks found in USB devices. |
| 4 | * Only quirks that affect the whole device, not an interface, |
| 5 | * belong here. |
| 6 | */ |
| 7 | |
Robert P. J. Day | dda43a0 | 2008-03-07 13:45:32 -0500 | [diff] [blame] | 8 | #ifndef __LINUX_USB_QUIRKS_H |
| 9 | #define __LINUX_USB_QUIRKS_H |
| 10 | |
Oliver Neukum | 7ceec1f | 2007-01-26 14:26:21 +0100 | [diff] [blame] | 11 | /* string descriptors must not be fetched using a 255-byte read */ |
Greg Kroah-Hartman | 5cb307c | 2014-09-23 22:23:55 -0700 | [diff] [blame] | 12 | #define USB_QUIRK_STRING_FETCH_255 BIT(0) |
Alan Stern | 6bc6cff | 2007-05-04 11:53:03 -0400 | [diff] [blame] | 13 | |
| 14 | /* device can't resume correctly so reset it instead */ |
Greg Kroah-Hartman | 5cb307c | 2014-09-23 22:23:55 -0700 | [diff] [blame] | 15 | #define USB_QUIRK_RESET_RESUME BIT(1) |
Alan Stern | 392e1d9 | 2008-03-11 10:20:12 -0400 | [diff] [blame] | 16 | |
| 17 | /* device can't handle Set-Interface requests */ |
Greg Kroah-Hartman | 5cb307c | 2014-09-23 22:23:55 -0700 | [diff] [blame] | 18 | #define USB_QUIRK_NO_SET_INTF BIT(2) |
Robert P. J. Day | dda43a0 | 2008-03-07 13:45:32 -0500 | [diff] [blame] | 19 | |
Alan Stern | 1662e3a | 2009-03-18 14:28:53 -0400 | [diff] [blame] | 20 | /* device can't handle its Configuration or Interface strings */ |
Greg Kroah-Hartman | 5cb307c | 2014-09-23 22:23:55 -0700 | [diff] [blame] | 21 | #define USB_QUIRK_CONFIG_INTF_STRINGS BIT(3) |
Alan Stern | 1662e3a | 2009-03-18 14:28:53 -0400 | [diff] [blame] | 22 | |
Lan Tianyu | 7fda953 | 2012-08-17 16:44:56 +0800 | [diff] [blame] | 23 | /* device can't be reset(e.g morph devices), don't use reset */ |
Greg Kroah-Hartman | 5cb307c | 2014-09-23 22:23:55 -0700 | [diff] [blame] | 24 | #define USB_QUIRK_RESET BIT(4) |
Oliver Neukum | 5d39877 | 2009-12-18 12:14:21 +0100 | [diff] [blame] | 25 | |
Hans de Goede | 317149c | 2010-03-29 12:03:17 +0200 | [diff] [blame] | 26 | /* device has more interface descriptions than the bNumInterfaces count, |
| 27 | and can't handle talking to these interfaces */ |
Greg Kroah-Hartman | 5cb307c | 2014-09-23 22:23:55 -0700 | [diff] [blame] | 28 | #define USB_QUIRK_HONOR_BNUMINTERFACES BIT(5) |
Hans de Goede | 317149c | 2010-03-29 12:03:17 +0200 | [diff] [blame] | 29 | |
Phil Dibowitz | 93362a8 | 2010-07-22 00:05:01 +0200 | [diff] [blame] | 30 | /* device needs a pause during initialization, after we read the device |
| 31 | descriptor */ |
Greg Kroah-Hartman | 5cb307c | 2014-09-23 22:23:55 -0700 | [diff] [blame] | 32 | #define USB_QUIRK_DELAY_INIT BIT(6) |
Phil Dibowitz | 93362a8 | 2010-07-22 00:05:01 +0200 | [diff] [blame] | 33 | |
James P Michels III | cd83ce9 | 2014-07-27 13:28:04 -0400 | [diff] [blame] | 34 | /* |
| 35 | * For high speed and super speed interupt endpoints, the USB 2.0 and |
| 36 | * USB 3.0 spec require the interval in microframes |
| 37 | * (1 microframe = 125 microseconds) to be calculated as |
| 38 | * interval = 2 ^ (bInterval-1). |
| 39 | * |
| 40 | * Devices with this quirk report their bInterval as the result of this |
| 41 | * calculation instead of the exponent variable used in the calculation. |
| 42 | */ |
Greg Kroah-Hartman | 5cb307c | 2014-09-23 22:23:55 -0700 | [diff] [blame] | 43 | #define USB_QUIRK_LINEAR_UFRAME_INTR_BINTERVAL BIT(7) |
James P Michels III | cd83ce9 | 2014-07-27 13:28:04 -0400 | [diff] [blame] | 44 | |
Johan Hovold | 2a15938 | 2014-08-25 17:51:26 +0200 | [diff] [blame] | 45 | /* device can't handle device_qualifier descriptor requests */ |
Greg Kroah-Hartman | 5cb307c | 2014-09-23 22:23:55 -0700 | [diff] [blame] | 46 | #define USB_QUIRK_DEVICE_QUALIFIER BIT(8) |
Johan Hovold | 2a15938 | 2014-08-25 17:51:26 +0200 | [diff] [blame] | 47 | |
Lu Baolu | ddbe1fc | 2014-09-19 10:13:50 +0800 | [diff] [blame] | 48 | /* device generates spurious wakeup, ignore remote wakeup capability */ |
Greg Kroah-Hartman | 5cb307c | 2014-09-23 22:23:55 -0700 | [diff] [blame] | 49 | #define USB_QUIRK_IGNORE_REMOTE_WAKEUP BIT(9) |
Lu Baolu | ddbe1fc | 2014-09-19 10:13:50 +0800 | [diff] [blame] | 50 | |
Alan Stern | ad87e03 | 2015-12-10 15:27:21 -0500 | [diff] [blame] | 51 | /* device can't handle Link Power Management */ |
| 52 | #define USB_QUIRK_NO_LPM BIT(10) |
| 53 | |
Samuel Thibault | 3243367 | 2017-03-13 20:50:08 +0100 | [diff] [blame] | 54 | /* |
| 55 | * Device reports its bInterval as linear frames instead of the |
| 56 | * USB 2.0 calculation. |
| 57 | */ |
| 58 | #define USB_QUIRK_LINEAR_FRAME_INTR_BINTERVAL BIT(11) |
| 59 | |
Daniel Drake | 8dd8d2c | 2017-10-18 15:15:01 +0800 | [diff] [blame] | 60 | /* |
| 61 | * Device needs to be disconnected before suspend to prevent spurious |
| 62 | * wakeup. |
| 63 | */ |
| 64 | #define USB_QUIRK_DISCONNECT_SUSPEND BIT(12) |
| 65 | |
Danilo Krummrich | cb88a05 | 2018-03-06 09:38:49 +0100 | [diff] [blame] | 66 | /* Device needs a pause after every control message. */ |
| 67 | #define USB_QUIRK_DELAY_CTRL_MSG BIT(13) |
| 68 | |
Kai-Heng Feng | 781f076 | 2018-10-19 16:14:50 +0800 | [diff] [blame] | 69 | /* Hub needs extra delay after resetting its port. */ |
| 70 | #define USB_QUIRK_HUB_SLOW_RESET BIT(14) |
| 71 | |
Robert P. J. Day | dda43a0 | 2008-03-07 13:45:32 -0500 | [diff] [blame] | 72 | #endif /* __LINUX_USB_QUIRKS_H */ |