gadget_chips.h 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  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_S3C2410
  83. #define gadget_is_s3c2410(g) (!strcmp("s3c2410_udc", (g)->name))
  84. #else
  85. #define gadget_is_s3c2410(g) 0
  86. #endif
  87. #ifdef CONFIG_USB_GADGET_AT91
  88. #define gadget_is_at91(g) (!strcmp("at91_udc", (g)->name))
  89. #else
  90. #define gadget_is_at91(g) 0
  91. #endif
  92. /* status unclear */
  93. #ifdef CONFIG_USB_GADGET_IMX
  94. #define gadget_is_imx(g) (!strcmp("imx_udc", (g)->name))
  95. #else
  96. #define gadget_is_imx(g) 0
  97. #endif
  98. #ifdef CONFIG_USB_GADGET_FSL_USB2
  99. #define gadget_is_fsl_usb2(g) (!strcmp("fsl-usb2-udc", (g)->name))
  100. #else
  101. #define gadget_is_fsl_usb2(g) 0
  102. #endif
  103. /* Mentor high speed function controller */
  104. /* from Montavista kernel (?) */
  105. #ifdef CONFIG_USB_GADGET_MUSBHSFC
  106. #define gadget_is_musbhsfc(g) (!strcmp("musbhsfc_udc", (g)->name))
  107. #else
  108. #define gadget_is_musbhsfc(g) 0
  109. #endif
  110. /* Mentor high speed "dual role" controller, in peripheral role */
  111. #ifdef CONFIG_USB_MUSB_GADGET
  112. #define gadget_is_musbhdrc(g) (!strcmp("musb-hdrc", (g)->name))
  113. #else
  114. #define gadget_is_musbhdrc(g) 0
  115. #endif
  116. /* from Montavista kernel (?) */
  117. #ifdef CONFIG_USB_GADGET_MPC8272
  118. #define gadget_is_mpc8272(g) (!strcmp("mpc8272_udc", (g)->name))
  119. #else
  120. #define gadget_is_mpc8272(g) 0
  121. #endif
  122. #ifdef CONFIG_USB_GADGET_M66592
  123. #define gadget_is_m66592(g) (!strcmp("m66592_udc", (g)->name))
  124. #else
  125. #define gadget_is_m66592(g) 0
  126. #endif
  127. #ifdef CONFIG_CI_UDC
  128. #define gadget_is_ci(g) (!strcmp("ci_udc", (g)->name))
  129. #else
  130. #define gadget_is_ci(g) 0
  131. #endif
  132. #ifdef CONFIG_USB_GADGET_FOTG210
  133. #define gadget_is_fotg210(g) (!strcmp("fotg210_udc", (g)->name))
  134. #else
  135. #define gadget_is_fotg210(g) 0
  136. #endif
  137. #ifdef CONFIG_USB_DWC3_GADGET
  138. #define gadget_is_dwc3(g) (!strcmp("dwc3-gadget", (g)->name))
  139. #else
  140. #define gadget_is_dwc3(g) 0
  141. #endif
  142. /*
  143. * CONFIG_USB_GADGET_SX2
  144. * CONFIG_USB_GADGET_AU1X00
  145. * ...
  146. */
  147. /**
  148. * usb_gadget_controller_number - support bcdDevice id convention
  149. * @gadget: the controller being driven
  150. *
  151. * Return a 2-digit BCD value associated with the peripheral controller,
  152. * suitable for use as part of a bcdDevice value, or a negative error code.
  153. *
  154. * NOTE: this convention is purely optional, and has no meaning in terms of
  155. * any USB specification. If you want to use a different convention in your
  156. * gadget driver firmware -- maybe a more formal revision ID -- feel free.
  157. *
  158. * Hosts see these bcdDevice numbers, and are allowed (but not encouraged!)
  159. * to change their behavior accordingly. For example it might help avoiding
  160. * some chip bug.
  161. */
  162. static inline int usb_gadget_controller_number(struct usb_gadget *gadget)
  163. {
  164. if (gadget_is_net2280(gadget))
  165. return 0x01;
  166. else if (gadget_is_dummy(gadget))
  167. return 0x02;
  168. else if (gadget_is_pxa(gadget))
  169. return 0x03;
  170. else if (gadget_is_sh(gadget))
  171. return 0x04;
  172. else if (gadget_is_sa1100(gadget))
  173. return 0x05;
  174. else if (gadget_is_goku(gadget))
  175. return 0x06;
  176. else if (gadget_is_mq11xx(gadget))
  177. return 0x07;
  178. else if (gadget_is_omap(gadget))
  179. return 0x08;
  180. else if (gadget_is_n9604(gadget))
  181. return 0x09;
  182. else if (gadget_is_pxa27x(gadget))
  183. return 0x10;
  184. else if (gadget_is_s3c2410(gadget))
  185. return 0x11;
  186. else if (gadget_is_at91(gadget))
  187. return 0x12;
  188. else if (gadget_is_imx(gadget))
  189. return 0x13;
  190. else if (gadget_is_musbhsfc(gadget))
  191. return 0x14;
  192. else if (gadget_is_musbhdrc(gadget))
  193. return 0x15;
  194. else if (gadget_is_mpc8272(gadget))
  195. return 0x16;
  196. else if (gadget_is_atmel_usba(gadget))
  197. return 0x17;
  198. else if (gadget_is_fsl_usb2(gadget))
  199. return 0x18;
  200. else if (gadget_is_amd5536udc(gadget))
  201. return 0x19;
  202. else if (gadget_is_m66592(gadget))
  203. return 0x20;
  204. else if (gadget_is_ci(gadget))
  205. return 0x21;
  206. else if (gadget_is_fotg210(gadget))
  207. return 0x22;
  208. else if (gadget_is_dwc3(gadget))
  209. return 0x23;
  210. return -ENOENT;
  211. }