gadget_chips.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * USB device controllers have lots of quirks. Use these macros in
  3. * gadget drivers or other code that needs to deal with them, and which
  4. * autoconfigures instead of using early binding to the hardware.
  5. *
  6. * This SHOULD eventually work like the ARM mach_is_*() stuff, driven by
  7. * some config file that gets updated as new hardware is supported.
  8. * (And avoiding all runtime comparisons in typical one-choice configs!)
  9. *
  10. * NOTE: some of these controller drivers may not be available yet.
  11. * Some are available on 2.4 kernels; several are available, but not
  12. * yet pushed in the 2.6 mainline tree.
  13. */
  14. #ifndef __GADGET_CHIPS_H
  15. #define __GADGET_CHIPS_H
  16. #include <linux/usb/gadget.h>
  17. /*
  18. * NOTICE: the entries below are alphabetical and should be kept
  19. * that way.
  20. *
  21. * Always be sure to add new entries to the correct position or
  22. * accept the bashing later.
  23. *
  24. * If you have forgotten the alphabetical order let VIM/EMACS
  25. * do that for you.
  26. */
  27. #define gadget_is_at91(g) (!strcmp("at91_udc", (g)->name))
  28. #define gadget_is_goku(g) (!strcmp("goku_udc", (g)->name))
  29. #define gadget_is_musbhdrc(g) (!strcmp("musb-hdrc", (g)->name))
  30. #define gadget_is_net2280(g) (!strcmp("net2280", (g)->name))
  31. #define gadget_is_pxa(g) (!strcmp("pxa25x_udc", (g)->name))
  32. #define gadget_is_pxa27x(g) (!strcmp("pxa27x_udc", (g)->name))
  33. /**
  34. * gadget_supports_altsettings - return true if altsettings work
  35. * @gadget: the gadget in question
  36. */
  37. static inline bool gadget_supports_altsettings(struct usb_gadget *gadget)
  38. {
  39. /* PXA 21x/25x/26x has no altsettings at all */
  40. if (gadget_is_pxa(gadget))
  41. return false;
  42. /* PXA 27x and 3xx have *broken* altsetting support */
  43. if (gadget_is_pxa27x(gadget))
  44. return false;
  45. /* Everything else is *presumably* fine ... */
  46. return true;
  47. }
  48. #endif /* __GADGET_CHIPS_H */