quirks.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /* SPDX-License-Identifier: GPL-2.0 */
  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. #ifndef __LINUX_USB_QUIRKS_H
  8. #define __LINUX_USB_QUIRKS_H
  9. /* string descriptors must not be fetched using a 255-byte read */
  10. #define USB_QUIRK_STRING_FETCH_255 BIT(0)
  11. /* device can't resume correctly so reset it instead */
  12. #define USB_QUIRK_RESET_RESUME BIT(1)
  13. /* device can't handle Set-Interface requests */
  14. #define USB_QUIRK_NO_SET_INTF BIT(2)
  15. /* device can't handle its Configuration or Interface strings */
  16. #define USB_QUIRK_CONFIG_INTF_STRINGS BIT(3)
  17. /* device can't be reset(e.g morph devices), don't use reset */
  18. #define USB_QUIRK_RESET BIT(4)
  19. /* device has more interface descriptions than the bNumInterfaces count,
  20. and can't handle talking to these interfaces */
  21. #define USB_QUIRK_HONOR_BNUMINTERFACES BIT(5)
  22. /* device needs a pause during initialization, after we read the device
  23. descriptor */
  24. #define USB_QUIRK_DELAY_INIT BIT(6)
  25. /*
  26. * For high speed and super speed interrupt endpoints, the USB 2.0 and
  27. * USB 3.0 spec require the interval in microframes
  28. * (1 microframe = 125 microseconds) to be calculated as
  29. * interval = 2 ^ (bInterval-1).
  30. *
  31. * Devices with this quirk report their bInterval as the result of this
  32. * calculation instead of the exponent variable used in the calculation.
  33. */
  34. #define USB_QUIRK_LINEAR_UFRAME_INTR_BINTERVAL BIT(7)
  35. /* device can't handle device_qualifier descriptor requests */
  36. #define USB_QUIRK_DEVICE_QUALIFIER BIT(8)
  37. /* device generates spurious wakeup, ignore remote wakeup capability */
  38. #define USB_QUIRK_IGNORE_REMOTE_WAKEUP BIT(9)
  39. /* device can't handle Link Power Management */
  40. #define USB_QUIRK_NO_LPM BIT(10)
  41. /*
  42. * Device reports its bInterval as linear frames instead of the
  43. * USB 2.0 calculation.
  44. */
  45. #define USB_QUIRK_LINEAR_FRAME_INTR_BINTERVAL BIT(11)
  46. /*
  47. * Device needs to be disconnected before suspend to prevent spurious
  48. * wakeup.
  49. */
  50. #define USB_QUIRK_DISCONNECT_SUSPEND BIT(12)
  51. /* Device needs a pause after every control message. */
  52. #define USB_QUIRK_DELAY_CTRL_MSG BIT(13)
  53. /* Hub needs extra delay after resetting its port. */
  54. #define USB_QUIRK_HUB_SLOW_RESET BIT(14)
  55. /* device has endpoints that should be ignored */
  56. #define USB_QUIRK_ENDPOINT_IGNORE BIT(15)
  57. #endif /* __LINUX_USB_QUIRKS_H */