gadget_chips.h 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  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. * Ported to U-Boot by: Thomas Smits <ts.smits@gmail.com> and
  15. * Remy Bohmer <linux@bohmer.net>
  16. */
  17. #ifdef CONFIG_USB_GADGET_NET2280
  18. #define gadget_is_net2280(g) (!strcmp("net2280", (g)->name))
  19. #else
  20. #define gadget_is_net2280(g) 0
  21. #endif
  22. #ifdef CONFIG_USB_GADGET_AMD5536UDC
  23. #define gadget_is_amd5536udc(g) (!strcmp("amd5536udc", (g)->name))
  24. #else
  25. #define gadget_is_amd5536udc(g) 0
  26. #endif
  27. #ifdef CONFIG_USB_GADGET_DUMMY_HCD
  28. #define gadget_is_dummy(g) (!strcmp("dummy_udc", (g)->name))
  29. #else
  30. #define gadget_is_dummy(g) 0
  31. #endif
  32. #ifdef CONFIG_USB_GADGET_PXA2XX
  33. #define gadget_is_pxa(g) (!strcmp("pxa2xx_udc", (g)->name))
  34. #else
  35. #define gadget_is_pxa(g) 0
  36. #endif
  37. #ifdef CONFIG_USB_GADGET_GOKU
  38. #define gadget_is_goku(g) (!strcmp("goku_udc", (g)->name))
  39. #else
  40. #define gadget_is_goku(g) 0
  41. #endif
  42. /* SH3 UDC -- not yet ported 2.4 --> 2.6 */
  43. #ifdef CONFIG_USB_GADGET_SUPERH
  44. #define gadget_is_sh(g) (!strcmp("sh_udc", (g)->name))
  45. #else
  46. #define gadget_is_sh(g) 0
  47. #endif
  48. /* not yet stable on 2.6 (would help "original Zaurus") */
  49. #ifdef CONFIG_USB_GADGET_SA1100
  50. #define gadget_is_sa1100(g) (!strcmp("sa1100_udc", (g)->name))
  51. #else
  52. #define gadget_is_sa1100(g) 0
  53. #endif
  54. /* handhelds.org tree (?) */
  55. #ifdef CONFIG_USB_GADGET_MQ11XX
  56. #define gadget_is_mq11xx(g) (!strcmp("mq11xx_udc", (g)->name))
  57. #else
  58. #define gadget_is_mq11xx(g) 0
  59. #endif
  60. #ifdef CONFIG_USB_GADGET_OMAP
  61. #define gadget_is_omap(g) (!strcmp("omap_udc", (g)->name))
  62. #else
  63. #define gadget_is_omap(g) 0
  64. #endif
  65. /* not yet ported 2.4 --> 2.6 */
  66. #ifdef CONFIG_USB_GADGET_N9604
  67. #define gadget_is_n9604(g) (!strcmp("n9604_udc", (g)->name))
  68. #else
  69. #define gadget_is_n9604(g) 0
  70. #endif
  71. /* various unstable versions available */
  72. #ifdef CONFIG_USB_GADGET_PXA27X
  73. #define gadget_is_pxa27x(g) (!strcmp("pxa27x_udc", (g)->name))
  74. #else
  75. #define gadget_is_pxa27x(g) 0
  76. #endif
  77. #ifdef CONFIG_USB_GADGET_ATMEL_USBA
  78. #define gadget_is_atmel_usba(g) (!strcmp("atmel_usba_udc", (g)->name))
  79. #else
  80. #define gadget_is_atmel_usba(g) 0
  81. #endif
  82. #ifdef CONFIG_USB_GADGET_AT91
  83. #define gadget_is_at91(g) (!strcmp("at91_udc", (g)->name))
  84. #else
  85. #define gadget_is_at91(g) 0
  86. #endif
  87. /* status unclear */
  88. #ifdef CONFIG_USB_GADGET_IMX
  89. #define gadget_is_imx(g) (!strcmp("imx_udc", (g)->name))
  90. #else
  91. #define gadget_is_imx(g) 0
  92. #endif
  93. #ifdef CONFIG_USB_GADGET_FSL_USB2
  94. #define gadget_is_fsl_usb2(g) (!strcmp("fsl-usb2-udc", (g)->name))
  95. #else
  96. #define gadget_is_fsl_usb2(g) 0
  97. #endif
  98. /* Mentor high speed function controller */
  99. /* from Montavista kernel (?) */
  100. #ifdef CONFIG_USB_GADGET_MUSBHSFC
  101. #define gadget_is_musbhsfc(g) (!strcmp("musbhsfc_udc", (g)->name))
  102. #else
  103. #define gadget_is_musbhsfc(g) 0
  104. #endif
  105. /* Mentor high speed "dual role" controller, in peripheral role */
  106. #ifdef CONFIG_USB_MUSB_GADGET
  107. #define gadget_is_musbhdrc(g) (!strcmp("musb-hdrc", (g)->name))
  108. #else
  109. #define gadget_is_musbhdrc(g) 0
  110. #endif
  111. #ifdef CONFIG_USB_GADGET_M66592
  112. #define gadget_is_m66592(g) (!strcmp("m66592_udc", (g)->name))
  113. #else
  114. #define gadget_is_m66592(g) 0
  115. #endif
  116. #ifdef CONFIG_CI_UDC
  117. #define gadget_is_ci(g) (!strcmp("ci_udc", (g)->name))
  118. #else
  119. #define gadget_is_ci(g) 0
  120. #endif
  121. #ifdef CONFIG_USB_GADGET_FOTG210
  122. #define gadget_is_fotg210(g) (!strcmp("fotg210_udc", (g)->name))
  123. #else
  124. #define gadget_is_fotg210(g) 0
  125. #endif
  126. #ifdef CONFIG_USB_DWC3_GADGET
  127. #define gadget_is_dwc3(g) (!strcmp("dwc3-gadget", (g)->name))
  128. #else
  129. #define gadget_is_dwc3(g) 0
  130. #endif
  131. /*
  132. * CONFIG_USB_GADGET_SX2
  133. * CONFIG_USB_GADGET_AU1X00
  134. * ...
  135. */
  136. /**
  137. * usb_gadget_controller_number - support bcdDevice id convention
  138. * @gadget: the controller being driven
  139. *
  140. * Return a 2-digit BCD value associated with the peripheral controller,
  141. * suitable for use as part of a bcdDevice value, or a negative error code.
  142. *
  143. * NOTE: this convention is purely optional, and has no meaning in terms of
  144. * any USB specification. If you want to use a different convention in your
  145. * gadget driver firmware -- maybe a more formal revision ID -- feel free.
  146. *
  147. * Hosts see these bcdDevice numbers, and are allowed (but not encouraged!)
  148. * to change their behavior accordingly. For example it might help avoiding
  149. * some chip bug.
  150. */
  151. static inline int usb_gadget_controller_number(struct usb_gadget *gadget)
  152. {
  153. if (gadget_is_net2280(gadget))
  154. return 0x01;
  155. else if (gadget_is_dummy(gadget))
  156. return 0x02;
  157. else if (gadget_is_pxa(gadget))
  158. return 0x03;
  159. else if (gadget_is_sh(gadget))
  160. return 0x04;
  161. else if (gadget_is_sa1100(gadget))
  162. return 0x05;
  163. else if (gadget_is_goku(gadget))
  164. return 0x06;
  165. else if (gadget_is_mq11xx(gadget))
  166. return 0x07;
  167. else if (gadget_is_omap(gadget))
  168. return 0x08;
  169. else if (gadget_is_n9604(gadget))
  170. return 0x09;
  171. else if (gadget_is_pxa27x(gadget))
  172. return 0x10;
  173. else if (gadget_is_at91(gadget))
  174. return 0x12;
  175. else if (gadget_is_imx(gadget))
  176. return 0x13;
  177. else if (gadget_is_musbhsfc(gadget))
  178. return 0x14;
  179. else if (gadget_is_musbhdrc(gadget))
  180. return 0x15;
  181. else if (gadget_is_atmel_usba(gadget))
  182. return 0x17;
  183. else if (gadget_is_fsl_usb2(gadget))
  184. return 0x18;
  185. else if (gadget_is_amd5536udc(gadget))
  186. return 0x19;
  187. else if (gadget_is_m66592(gadget))
  188. return 0x20;
  189. else if (gadget_is_ci(gadget))
  190. return 0x21;
  191. else if (gadget_is_fotg210(gadget))
  192. return 0x22;
  193. return -ENOENT;
  194. }