gadget_chips.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. /*
  17. * NOTICE: the entries below are alphabetical and should be kept
  18. * that way.
  19. *
  20. * Always be sure to add new entries to the correct position or
  21. * accept the bashing later.
  22. *
  23. * If you have forgotten the alphabetical order let VIM/EMACS
  24. * do that for you.
  25. */
  26. #define gadget_is_amd5536udc(g) (!strcmp("amd5536udc", (g)->name))
  27. #define gadget_is_at91(g) (!strcmp("at91_udc", (g)->name))
  28. #define gadget_is_atmel_usba(g) (!strcmp("atmel_usba_udc", (g)->name))
  29. #define gadget_is_ci13xxx_msm(g) (!strcmp("ci13xxx_msm", (g)->name))
  30. #define gadget_is_ci13xxx_pci(g) (!strcmp("ci13xxx_pci", (g)->name))
  31. #define gadget_is_dummy(g) (!strcmp("dummy_udc", (g)->name))
  32. #define gadget_is_dwc3(g) (!strcmp("dwc3-gadget", (g)->name))
  33. #define gadget_is_fsl_qe(g) (!strcmp("fsl_qe_udc", (g)->name))
  34. #define gadget_is_fsl_usb2(g) (!strcmp("fsl-usb2-udc", (g)->name))
  35. #define gadget_is_goku(g) (!strcmp("goku_udc", (g)->name))
  36. #define gadget_is_imx(g) (!strcmp("imx_udc", (g)->name))
  37. #define gadget_is_langwell(g) (!strcmp("langwell_udc", (g)->name))
  38. #define gadget_is_m66592(g) (!strcmp("m66592_udc", (g)->name))
  39. #define gadget_is_musbhdrc(g) (!strcmp("musb-hdrc", (g)->name))
  40. #define gadget_is_net2272(g) (!strcmp("net2272", (g)->name))
  41. #define gadget_is_net2280(g) (!strcmp("net2280", (g)->name))
  42. #define gadget_is_omap(g) (!strcmp("omap_udc", (g)->name))
  43. #define gadget_is_pch(g) (!strcmp("pch_udc", (g)->name))
  44. #define gadget_is_pxa(g) (!strcmp("pxa25x_udc", (g)->name))
  45. #define gadget_is_pxa27x(g) (!strcmp("pxa27x_udc", (g)->name))
  46. #define gadget_is_r8a66597(g) (!strcmp("r8a66597_udc", (g)->name))
  47. #define gadget_is_renesas_usbhs(g) (!strcmp("renesas_usbhs_udc", (g)->name))
  48. #define gadget_is_s3c2410(g) (!strcmp("s3c2410_udc", (g)->name))
  49. #define gadget_is_s3c_hsotg(g) (!strcmp("s3c-hsotg", (g)->name))
  50. #define gadget_is_s3c_hsudc(g) (!strcmp("s3c-hsudc", (g)->name))
  51. /**
  52. * usb_gadget_controller_number - support bcdDevice id convention
  53. * @gadget: the controller being driven
  54. *
  55. * Return a 2-digit BCD value associated with the peripheral controller,
  56. * suitable for use as part of a bcdDevice value, or a negative error code.
  57. *
  58. * NOTE: this convention is purely optional, and has no meaning in terms of
  59. * any USB specification. If you want to use a different convention in your
  60. * gadget driver firmware -- maybe a more formal revision ID -- feel free.
  61. *
  62. * Hosts see these bcdDevice numbers, and are allowed (but not encouraged!)
  63. * to change their behavior accordingly. For example it might help avoiding
  64. * some chip bug.
  65. */
  66. static inline int usb_gadget_controller_number(struct usb_gadget *gadget)
  67. {
  68. if (gadget_is_net2280(gadget))
  69. return 0x01;
  70. else if (gadget_is_dummy(gadget))
  71. return 0x02;
  72. else if (gadget_is_pxa(gadget))
  73. return 0x03;
  74. else if (gadget_is_goku(gadget))
  75. return 0x06;
  76. else if (gadget_is_omap(gadget))
  77. return 0x08;
  78. else if (gadget_is_pxa27x(gadget))
  79. return 0x11;
  80. else if (gadget_is_s3c2410(gadget))
  81. return 0x12;
  82. else if (gadget_is_at91(gadget))
  83. return 0x13;
  84. else if (gadget_is_imx(gadget))
  85. return 0x14;
  86. else if (gadget_is_musbhdrc(gadget))
  87. return 0x16;
  88. else if (gadget_is_atmel_usba(gadget))
  89. return 0x18;
  90. else if (gadget_is_fsl_usb2(gadget))
  91. return 0x19;
  92. else if (gadget_is_amd5536udc(gadget))
  93. return 0x20;
  94. else if (gadget_is_m66592(gadget))
  95. return 0x21;
  96. else if (gadget_is_fsl_qe(gadget))
  97. return 0x22;
  98. else if (gadget_is_ci13xxx_pci(gadget))
  99. return 0x23;
  100. else if (gadget_is_langwell(gadget))
  101. return 0x24;
  102. else if (gadget_is_r8a66597(gadget))
  103. return 0x25;
  104. else if (gadget_is_s3c_hsotg(gadget))
  105. return 0x26;
  106. else if (gadget_is_pch(gadget))
  107. return 0x27;
  108. else if (gadget_is_ci13xxx_msm(gadget))
  109. return 0x28;
  110. else if (gadget_is_renesas_usbhs(gadget))
  111. return 0x29;
  112. else if (gadget_is_s3c_hsudc(gadget))
  113. return 0x30;
  114. else if (gadget_is_net2272(gadget))
  115. return 0x31;
  116. else if (gadget_is_dwc3(gadget))
  117. return 0x32;
  118. return -ENOENT;
  119. }
  120. /**
  121. * gadget_supports_altsettings - return true if altsettings work
  122. * @gadget: the gadget in question
  123. */
  124. static inline bool gadget_supports_altsettings(struct usb_gadget *gadget)
  125. {
  126. /* PXA 21x/25x/26x has no altsettings at all */
  127. if (gadget_is_pxa(gadget))
  128. return false;
  129. /* PXA 27x and 3xx have *broken* altsetting support */
  130. if (gadget_is_pxa27x(gadget))
  131. return false;
  132. /* Everything else is *presumably* fine ... */
  133. return true;
  134. }
  135. #endif /* __GADGET_CHIPS_H */