blob: 4e3107dd2f345af58d5c57767a49871a21e5e4bd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 *
David Brownell1c05ad42006-01-25 08:45:59 -08006 * This SHOULD eventually work like the ARM mach_is_*() stuff, driven by
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * some config file that gets updated as new hardware is supported.
David Brownell1c05ad42006-01-25 08:45:59 -08008 * (And avoiding all runtime comparisons in typical one-choice configs!)
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * NOTE: some of these controller drivers may not be available yet.
David Brownell7f9985c2007-05-08 21:01:30 -070011 * Some are available on 2.4 kernels; several are available, but not
12 * yet pushed in the 2.6 mainline tree.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
Felipe Balbie67d70f2008-07-17 17:26:49 +030014
15#ifndef __GADGET_CHIPS_H
16#define __GADGET_CHIPS_H
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#ifdef CONFIG_USB_GADGET_NET2280
19#define gadget_is_net2280(g) !strcmp("net2280", (g)->name)
20#else
21#define gadget_is_net2280(g) 0
22#endif
23
Thomas Dahlmann55d402d2007-07-16 21:40:54 -070024#ifdef CONFIG_USB_GADGET_AMD5536UDC
25#define gadget_is_amd5536udc(g) !strcmp("amd5536udc", (g)->name)
26#else
27#define gadget_is_amd5536udc(g) 0
28#endif
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#ifdef CONFIG_USB_GADGET_DUMMY_HCD
31#define gadget_is_dummy(g) !strcmp("dummy_udc", (g)->name)
32#else
33#define gadget_is_dummy(g) 0
34#endif
35
Philipp Zabel7a857622008-06-22 23:36:39 +010036#ifdef CONFIG_USB_GADGET_PXA25X
37#define gadget_is_pxa(g) !strcmp("pxa25x_udc", (g)->name)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#else
39#define gadget_is_pxa(g) 0
40#endif
41
42#ifdef CONFIG_USB_GADGET_GOKU
43#define gadget_is_goku(g) !strcmp("goku_udc", (g)->name)
44#else
45#define gadget_is_goku(g) 0
46#endif
47
David Brownell7f9985c2007-05-08 21:01:30 -070048/* SH3 UDC -- not yet ported 2.4 --> 2.6 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#ifdef CONFIG_USB_GADGET_SUPERH
50#define gadget_is_sh(g) !strcmp("sh_udc", (g)->name)
51#else
52#define gadget_is_sh(g) 0
53#endif
54
David Brownell7f9985c2007-05-08 21:01:30 -070055/* not yet stable on 2.6 (would help "original Zaurus") */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#ifdef CONFIG_USB_GADGET_SA1100
57#define gadget_is_sa1100(g) !strcmp("sa1100_udc", (g)->name)
58#else
59#define gadget_is_sa1100(g) 0
60#endif
61
62#ifdef CONFIG_USB_GADGET_LH7A40X
63#define gadget_is_lh7a40x(g) !strcmp("lh7a40x_udc", (g)->name)
64#else
65#define gadget_is_lh7a40x(g) 0
66#endif
67
David Brownell7f9985c2007-05-08 21:01:30 -070068/* handhelds.org tree (?) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#ifdef CONFIG_USB_GADGET_MQ11XX
70#define gadget_is_mq11xx(g) !strcmp("mq11xx_udc", (g)->name)
71#else
72#define gadget_is_mq11xx(g) 0
73#endif
74
75#ifdef CONFIG_USB_GADGET_OMAP
76#define gadget_is_omap(g) !strcmp("omap_udc", (g)->name)
77#else
78#define gadget_is_omap(g) 0
79#endif
80
David Brownell7f9985c2007-05-08 21:01:30 -070081/* not yet ported 2.4 --> 2.6 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#ifdef CONFIG_USB_GADGET_N9604
83#define gadget_is_n9604(g) !strcmp("n9604_udc", (g)->name)
84#else
85#define gadget_is_n9604(g) 0
86#endif
87
David Brownell7f9985c2007-05-08 21:01:30 -070088/* various unstable versions available */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#ifdef CONFIG_USB_GADGET_PXA27X
90#define gadget_is_pxa27x(g) !strcmp("pxa27x_udc", (g)->name)
91#else
92#define gadget_is_pxa27x(g) 0
93#endif
94
Haavard Skinnemoen55b3fd42007-06-14 18:01:45 +020095#ifdef CONFIG_USB_GADGET_ATMEL_USBA
96#define gadget_is_atmel_usba(g) !strcmp("atmel_usba_udc", (g)->name)
Håvard Skinnemoen1f5b9cc2007-01-17 11:03:29 -080097#else
Haavard Skinnemoen55b3fd42007-06-14 18:01:45 +020098#define gadget_is_atmel_usba(g) 0
Håvard Skinnemoen1f5b9cc2007-01-17 11:03:29 -080099#endif
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#ifdef CONFIG_USB_GADGET_S3C2410
102#define gadget_is_s3c2410(g) !strcmp("s3c2410_udc", (g)->name)
103#else
104#define gadget_is_s3c2410(g) 0
105#endif
106
107#ifdef CONFIG_USB_GADGET_AT91
108#define gadget_is_at91(g) !strcmp("at91_udc", (g)->name)
109#else
110#define gadget_is_at91(g) 0
111#endif
112
David Brownell7f9985c2007-05-08 21:01:30 -0700113/* status unclear */
David Brownell91e79c92005-07-13 15:18:30 -0700114#ifdef CONFIG_USB_GADGET_IMX
115#define gadget_is_imx(g) !strcmp("imx_udc", (g)->name)
116#else
117#define gadget_is_imx(g) 0
118#endif
119
Li Yangd2eef1f2007-04-23 10:37:36 -0700120#ifdef CONFIG_USB_GADGET_FSL_USB2
121#define gadget_is_fsl_usb2(g) !strcmp("fsl-usb2-udc", (g)->name)
122#else
123#define gadget_is_fsl_usb2(g) 0
124#endif
125
David Brownell1c05ad42006-01-25 08:45:59 -0800126/* Mentor high speed function controller */
David Brownell7f9985c2007-05-08 21:01:30 -0700127/* from Montavista kernel (?) */
David Brownell1c05ad42006-01-25 08:45:59 -0800128#ifdef CONFIG_USB_GADGET_MUSBHSFC
129#define gadget_is_musbhsfc(g) !strcmp("musbhsfc_udc", (g)->name)
130#else
131#define gadget_is_musbhsfc(g) 0
132#endif
133
David Brownell42795412006-04-02 10:18:34 -0800134/* Mentor high speed "dual role" controller, in peripheral role */
135#ifdef CONFIG_USB_GADGET_MUSB_HDRC
136#define gadget_is_musbhdrc(g) !strcmp("musb_hdrc", (g)->name)
David Brownell1c05ad42006-01-25 08:45:59 -0800137#else
138#define gadget_is_musbhdrc(g) 0
139#endif
140
David Brownell7f9985c2007-05-08 21:01:30 -0700141/* from Montavista kernel (?) */
David Brownell1c05ad42006-01-25 08:45:59 -0800142#ifdef CONFIG_USB_GADGET_MPC8272
143#define gadget_is_mpc8272(g) !strcmp("mpc8272_udc", (g)->name)
144#else
145#define gadget_is_mpc8272(g) 0
146#endif
147
Yoshihiro Shimoda4cf25032007-05-10 13:18:23 +0900148#ifdef CONFIG_USB_GADGET_M66592
149#define gadget_is_m66592(g) !strcmp("m66592_udc", (g)->name)
150#else
151#define gadget_is_m66592(g) 0
152#endif
153
Li Yang3948f0e2008-09-02 19:58:10 +0800154/* Freescale CPM/QE UDC SUPPORT */
155#ifdef CONFIG_USB_GADGET_FSL_QE
156#define gadget_is_fsl_qe(g) !strcmp("fsl_qe_udc", (g)->name)
157#else
158#define gadget_is_fsl_qe(g) 0
159#endif
160
Yoshihiro Shimoda4cf25032007-05-10 13:18:23 +0900161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162// CONFIG_USB_GADGET_SX2
163// CONFIG_USB_GADGET_AU1X00
164// ...
165
David Brownell91e79c92005-07-13 15:18:30 -0700166
167/**
168 * usb_gadget_controller_number - support bcdDevice id convention
169 * @gadget: the controller being driven
170 *
171 * Return a 2-digit BCD value associated with the peripheral controller,
172 * suitable for use as part of a bcdDevice value, or a negative error code.
173 *
174 * NOTE: this convention is purely optional, and has no meaning in terms of
175 * any USB specification. If you want to use a different convention in your
176 * gadget driver firmware -- maybe a more formal revision ID -- feel free.
177 *
178 * Hosts see these bcdDevice numbers, and are allowed (but not encouraged!)
179 * to change their behavior accordingly. For example it might help avoiding
180 * some chip bug.
181 */
182static inline int usb_gadget_controller_number(struct usb_gadget *gadget)
183{
184 if (gadget_is_net2280(gadget))
185 return 0x01;
186 else if (gadget_is_dummy(gadget))
187 return 0x02;
188 else if (gadget_is_pxa(gadget))
189 return 0x03;
190 else if (gadget_is_sh(gadget))
191 return 0x04;
192 else if (gadget_is_sa1100(gadget))
193 return 0x05;
194 else if (gadget_is_goku(gadget))
195 return 0x06;
196 else if (gadget_is_mq11xx(gadget))
197 return 0x07;
198 else if (gadget_is_omap(gadget))
199 return 0x08;
200 else if (gadget_is_lh7a40x(gadget))
201 return 0x09;
202 else if (gadget_is_n9604(gadget))
203 return 0x10;
204 else if (gadget_is_pxa27x(gadget))
205 return 0x11;
206 else if (gadget_is_s3c2410(gadget))
207 return 0x12;
208 else if (gadget_is_at91(gadget))
209 return 0x13;
210 else if (gadget_is_imx(gadget))
211 return 0x14;
David Brownell1c05ad42006-01-25 08:45:59 -0800212 else if (gadget_is_musbhsfc(gadget))
213 return 0x15;
214 else if (gadget_is_musbhdrc(gadget))
215 return 0x16;
216 else if (gadget_is_mpc8272(gadget))
217 return 0x17;
Haavard Skinnemoen55b3fd42007-06-14 18:01:45 +0200218 else if (gadget_is_atmel_usba(gadget))
Håvard Skinnemoen1f5b9cc2007-01-17 11:03:29 -0800219 return 0x18;
Li Yangd2eef1f2007-04-23 10:37:36 -0700220 else if (gadget_is_fsl_usb2(gadget))
221 return 0x19;
Thomas Dahlmann55d402d2007-07-16 21:40:54 -0700222 else if (gadget_is_amd5536udc(gadget))
223 return 0x20;
Yoshihiro Shimoda4cf25032007-05-10 13:18:23 +0900224 else if (gadget_is_m66592(gadget))
Yoshihiro Shimoda598f22e2007-07-17 21:01:17 +0900225 return 0x21;
Li Yang3948f0e2008-09-02 19:58:10 +0800226 else if (gadget_is_fsl_qe(gadget))
227 return 0x22;
David Brownell91e79c92005-07-13 15:18:30 -0700228 return -ENOENT;
229}
David Brownellda741b82008-06-19 18:19:46 -0700230
231
232/**
233 * gadget_supports_altsettings - return true if altsettings work
234 * @gadget: the gadget in question
235 */
236static inline bool gadget_supports_altsettings(struct usb_gadget *gadget)
237{
238 /* PXA 21x/25x/26x has no altsettings at all */
239 if (gadget_is_pxa(gadget))
240 return false;
241
242 /* PXA 27x and 3xx have *broken* altsetting support */
243 if (gadget_is_pxa27x(gadget))
244 return false;
245
246 /* SH3 hardware just doesn't do altsettings */
247 if (gadget_is_sh(gadget))
248 return false;
249
250 /* Everything else is *presumably* fine ... */
251 return true;
252}
Felipe Balbie67d70f2008-07-17 17:26:49 +0300253
254#endif /* __GADGET_CHIPS_H */