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