blob: 5d7b638b38beb8525e50ef0f1b6270c5f0498189 [file] [log] [blame]
Remy Bohmer23cd1382009-07-29 18:18:43 +02001/*
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
Vitaly Kuzmichev6142e0a2010-09-13 18:37:11 +040018#define gadget_is_net2280(g) (!strcmp("net2280", (g)->name))
Remy Bohmer23cd1382009-07-29 18:18:43 +020019#else
20#define gadget_is_net2280(g) 0
21#endif
22
23#ifdef CONFIG_USB_GADGET_AMD5536UDC
Vitaly Kuzmichev6142e0a2010-09-13 18:37:11 +040024#define gadget_is_amd5536udc(g) (!strcmp("amd5536udc", (g)->name))
Remy Bohmer23cd1382009-07-29 18:18:43 +020025#else
26#define gadget_is_amd5536udc(g) 0
27#endif
28
29#ifdef CONFIG_USB_GADGET_DUMMY_HCD
Vitaly Kuzmichev6142e0a2010-09-13 18:37:11 +040030#define gadget_is_dummy(g) (!strcmp("dummy_udc", (g)->name))
Remy Bohmer23cd1382009-07-29 18:18:43 +020031#else
32#define gadget_is_dummy(g) 0
33#endif
34
35#ifdef CONFIG_USB_GADGET_PXA2XX
Vitaly Kuzmichev6142e0a2010-09-13 18:37:11 +040036#define gadget_is_pxa(g) (!strcmp("pxa2xx_udc", (g)->name))
Remy Bohmer23cd1382009-07-29 18:18:43 +020037#else
38#define gadget_is_pxa(g) 0
39#endif
40
41#ifdef CONFIG_USB_GADGET_GOKU
Vitaly Kuzmichev6142e0a2010-09-13 18:37:11 +040042#define gadget_is_goku(g) (!strcmp("goku_udc", (g)->name))
Remy Bohmer23cd1382009-07-29 18:18:43 +020043#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 Kuzmichev6142e0a2010-09-13 18:37:11 +040049#define gadget_is_sh(g) (!strcmp("sh_udc", (g)->name))
Remy Bohmer23cd1382009-07-29 18:18:43 +020050#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 Kuzmichev6142e0a2010-09-13 18:37:11 +040056#define gadget_is_sa1100(g) (!strcmp("sa1100_udc", (g)->name))
Remy Bohmer23cd1382009-07-29 18:18:43 +020057#else
58#define gadget_is_sa1100(g) 0
59#endif
60
61#ifdef CONFIG_USB_GADGET_LH7A40X
Vitaly Kuzmichev6142e0a2010-09-13 18:37:11 +040062#define gadget_is_lh7a40x(g) (!strcmp("lh7a40x_udc", (g)->name))
Remy Bohmer23cd1382009-07-29 18:18:43 +020063#else
64#define gadget_is_lh7a40x(g) 0
65#endif
66
67/* handhelds.org tree (?) */
68#ifdef CONFIG_USB_GADGET_MQ11XX
Vitaly Kuzmichev6142e0a2010-09-13 18:37:11 +040069#define gadget_is_mq11xx(g) (!strcmp("mq11xx_udc", (g)->name))
Remy Bohmer23cd1382009-07-29 18:18:43 +020070#else
71#define gadget_is_mq11xx(g) 0
72#endif
73
74#ifdef CONFIG_USB_GADGET_OMAP
Vitaly Kuzmichev6142e0a2010-09-13 18:37:11 +040075#define gadget_is_omap(g) (!strcmp("omap_udc", (g)->name))
Remy Bohmer23cd1382009-07-29 18:18:43 +020076#else
77#define gadget_is_omap(g) 0
78#endif
79
80/* not yet ported 2.4 --> 2.6 */
81#ifdef CONFIG_USB_GADGET_N9604
Vitaly Kuzmichev6142e0a2010-09-13 18:37:11 +040082#define gadget_is_n9604(g) (!strcmp("n9604_udc", (g)->name))
Remy Bohmer23cd1382009-07-29 18:18:43 +020083#else
84#define gadget_is_n9604(g) 0
85#endif
86
87/* various unstable versions available */
88#ifdef CONFIG_USB_GADGET_PXA27X
Vitaly Kuzmichev6142e0a2010-09-13 18:37:11 +040089#define gadget_is_pxa27x(g) (!strcmp("pxa27x_udc", (g)->name))
Remy Bohmer23cd1382009-07-29 18:18:43 +020090#else
91#define gadget_is_pxa27x(g) 0
92#endif
93
94#ifdef CONFIG_USB_GADGET_ATMEL_USBA
Vitaly Kuzmichev6142e0a2010-09-13 18:37:11 +040095#define gadget_is_atmel_usba(g) (!strcmp("atmel_usba_udc", (g)->name))
Remy Bohmer23cd1382009-07-29 18:18:43 +020096#else
97#define gadget_is_atmel_usba(g) 0
98#endif
99
100#ifdef CONFIG_USB_GADGET_S3C2410
Vitaly Kuzmichev6142e0a2010-09-13 18:37:11 +0400101#define gadget_is_s3c2410(g) (!strcmp("s3c2410_udc", (g)->name))
Remy Bohmer23cd1382009-07-29 18:18:43 +0200102#else
103#define gadget_is_s3c2410(g) 0
104#endif
105
106#ifdef CONFIG_USB_GADGET_AT91
Vitaly Kuzmichev6142e0a2010-09-13 18:37:11 +0400107#define gadget_is_at91(g) (!strcmp("at91_udc", (g)->name))
Remy Bohmer23cd1382009-07-29 18:18:43 +0200108#else
109#define gadget_is_at91(g) 0
110#endif
111
112/* status unclear */
113#ifdef CONFIG_USB_GADGET_IMX
Vitaly Kuzmichev6142e0a2010-09-13 18:37:11 +0400114#define gadget_is_imx(g) (!strcmp("imx_udc", (g)->name))
Remy Bohmer23cd1382009-07-29 18:18:43 +0200115#else
116#define gadget_is_imx(g) 0
117#endif
118
119#ifdef CONFIG_USB_GADGET_FSL_USB2
Vitaly Kuzmichev6142e0a2010-09-13 18:37:11 +0400120#define gadget_is_fsl_usb2(g) (!strcmp("fsl-usb2-udc", (g)->name))
Remy Bohmer23cd1382009-07-29 18:18:43 +0200121#else
122#define gadget_is_fsl_usb2(g) 0
123#endif
124
125/* Mentor high speed function controller */
126/* from Montavista kernel (?) */
127#ifdef CONFIG_USB_GADGET_MUSBHSFC
Vitaly Kuzmichev6142e0a2010-09-13 18:37:11 +0400128#define gadget_is_musbhsfc(g) (!strcmp("musbhsfc_udc", (g)->name))
Remy Bohmer23cd1382009-07-29 18:18:43 +0200129#else
130#define gadget_is_musbhsfc(g) 0
131#endif
132
133/* Mentor high speed "dual role" controller, in peripheral role */
134#ifdef CONFIG_USB_GADGET_MUSB_HDRC
Vitaly Kuzmichev6142e0a2010-09-13 18:37:11 +0400135#define gadget_is_musbhdrc(g) (!strcmp("musb_hdrc", (g)->name))
Remy Bohmer23cd1382009-07-29 18:18:43 +0200136#else
137#define gadget_is_musbhdrc(g) 0
138#endif
139
140/* from Montavista kernel (?) */
141#ifdef CONFIG_USB_GADGET_MPC8272
Vitaly Kuzmichev6142e0a2010-09-13 18:37:11 +0400142#define gadget_is_mpc8272(g) (!strcmp("mpc8272_udc", (g)->name))
Remy Bohmer23cd1382009-07-29 18:18:43 +0200143#else
144#define gadget_is_mpc8272(g) 0
145#endif
146
147#ifdef CONFIG_USB_GADGET_M66592
Vitaly Kuzmichev6142e0a2010-09-13 18:37:11 +0400148#define gadget_is_m66592(g) (!strcmp("m66592_udc", (g)->name))
Remy Bohmer23cd1382009-07-29 18:18:43 +0200149#else
150#define gadget_is_m66592(g) 0
151#endif
152
Lei Wen26cc5122011-10-05 08:11:40 -0700153#ifdef CONFIG_USB_GADGET_MV
154#define gadget_is_mv(g) (!strcmp("mv_udc", (g)->name))
155#else
156#define gadget_is_mv(g) 0
157#endif
Remy Bohmer23cd1382009-07-29 18:18:43 +0200158
Vitaly Kuzmichev6142e0a2010-09-13 18:37:11 +0400159/*
160 * CONFIG_USB_GADGET_SX2
161 * CONFIG_USB_GADGET_AU1X00
162 * ...
163 */
Remy Bohmer23cd1382009-07-29 18:18:43 +0200164
165/**
166 * usb_gadget_controller_number - support bcdDevice id convention
167 * @gadget: the controller being driven
168 *
169 * Return a 2-digit BCD value associated with the peripheral controller,
170 * suitable for use as part of a bcdDevice value, or a negative error code.
171 *
172 * NOTE: this convention is purely optional, and has no meaning in terms of
173 * any USB specification. If you want to use a different convention in your
174 * gadget driver firmware -- maybe a more formal revision ID -- feel free.
175 *
176 * Hosts see these bcdDevice numbers, and are allowed (but not encouraged!)
177 * to change their behavior accordingly. For example it might help avoiding
178 * some chip bug.
179 */
180static inline int usb_gadget_controller_number(struct usb_gadget *gadget)
181{
182 if (gadget_is_net2280(gadget))
183 return 0x01;
184 else if (gadget_is_dummy(gadget))
185 return 0x02;
186 else if (gadget_is_pxa(gadget))
187 return 0x03;
188 else if (gadget_is_sh(gadget))
189 return 0x04;
190 else if (gadget_is_sa1100(gadget))
191 return 0x05;
192 else if (gadget_is_goku(gadget))
193 return 0x06;
194 else if (gadget_is_mq11xx(gadget))
195 return 0x07;
196 else if (gadget_is_omap(gadget))
197 return 0x08;
198 else if (gadget_is_lh7a40x(gadget))
199 return 0x09;
200 else if (gadget_is_n9604(gadget))
201 return 0x10;
202 else if (gadget_is_pxa27x(gadget))
203 return 0x11;
204 else if (gadget_is_s3c2410(gadget))
205 return 0x12;
206 else if (gadget_is_at91(gadget))
207 return 0x13;
208 else if (gadget_is_imx(gadget))
209 return 0x14;
210 else if (gadget_is_musbhsfc(gadget))
211 return 0x15;
212 else if (gadget_is_musbhdrc(gadget))
213 return 0x16;
214 else if (gadget_is_mpc8272(gadget))
215 return 0x17;
216 else if (gadget_is_atmel_usba(gadget))
217 return 0x18;
218 else if (gadget_is_fsl_usb2(gadget))
219 return 0x19;
220 else if (gadget_is_amd5536udc(gadget))
221 return 0x20;
222 else if (gadget_is_m66592(gadget))
223 return 0x21;
Lei Wen26cc5122011-10-05 08:11:40 -0700224 else if (gadget_is_mv(gadget))
225 return 0x22;
Remy Bohmer23cd1382009-07-29 18:18:43 +0200226 return -ENOENT;
227}