blob: a2edadfbec41e7a42cdf7d4f9076c4a5306afcac [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#ifdef CONFIG_USB_GADGET_OMAP
49#define gadget_is_omap(g) !strcmp("omap_udc", (g)->name)
50#else
51#define gadget_is_omap(g) 0
52#endif
53
David Brownell7f9985c2007-05-08 21:01:30 -070054/* various unstable versions available */
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#ifdef CONFIG_USB_GADGET_PXA27X
56#define gadget_is_pxa27x(g) !strcmp("pxa27x_udc", (g)->name)
57#else
58#define gadget_is_pxa27x(g) 0
59#endif
60
Haavard Skinnemoen55b3fd42007-06-14 18:01:45 +020061#ifdef CONFIG_USB_GADGET_ATMEL_USBA
62#define gadget_is_atmel_usba(g) !strcmp("atmel_usba_udc", (g)->name)
Håvard Skinnemoen1f5b9cc2007-01-17 11:03:29 -080063#else
Haavard Skinnemoen55b3fd42007-06-14 18:01:45 +020064#define gadget_is_atmel_usba(g) 0
Håvard Skinnemoen1f5b9cc2007-01-17 11:03:29 -080065#endif
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#ifdef CONFIG_USB_GADGET_S3C2410
68#define gadget_is_s3c2410(g) !strcmp("s3c2410_udc", (g)->name)
69#else
70#define gadget_is_s3c2410(g) 0
71#endif
72
73#ifdef CONFIG_USB_GADGET_AT91
74#define gadget_is_at91(g) !strcmp("at91_udc", (g)->name)
75#else
76#define gadget_is_at91(g) 0
77#endif
78
David Brownell91e79c92005-07-13 15:18:30 -070079#ifdef CONFIG_USB_GADGET_IMX
80#define gadget_is_imx(g) !strcmp("imx_udc", (g)->name)
81#else
82#define gadget_is_imx(g) 0
83#endif
84
Li Yangd2eef1f2007-04-23 10:37:36 -070085#ifdef CONFIG_USB_GADGET_FSL_USB2
86#define gadget_is_fsl_usb2(g) !strcmp("fsl-usb2-udc", (g)->name)
87#else
88#define gadget_is_fsl_usb2(g) 0
89#endif
90
David Brownell42795412006-04-02 10:18:34 -080091/* Mentor high speed "dual role" controller, in peripheral role */
92#ifdef CONFIG_USB_GADGET_MUSB_HDRC
Felipe Balbi05ac10d2010-12-02 08:49:26 +020093#define gadget_is_musbhdrc(g) !strcmp("musb-hdrc", (g)->name)
David Brownell1c05ad42006-01-25 08:45:59 -080094#else
95#define gadget_is_musbhdrc(g) 0
96#endif
97
Xiaochen Shen5be19a92009-06-04 15:34:49 +080098#ifdef CONFIG_USB_GADGET_LANGWELL
99#define gadget_is_langwell(g) (!strcmp("langwell_udc", (g)->name))
100#else
101#define gadget_is_langwell(g) 0
102#endif
103
Yoshihiro Shimoda4cf25032007-05-10 13:18:23 +0900104#ifdef CONFIG_USB_GADGET_M66592
105#define gadget_is_m66592(g) !strcmp("m66592_udc", (g)->name)
106#else
107#define gadget_is_m66592(g) 0
108#endif
109
Li Yang3948f0e2008-09-02 19:58:10 +0800110/* Freescale CPM/QE UDC SUPPORT */
111#ifdef CONFIG_USB_GADGET_FSL_QE
112#define gadget_is_fsl_qe(g) !strcmp("fsl_qe_udc", (g)->name)
113#else
114#define gadget_is_fsl_qe(g) 0
115#endif
116
Pavankumar Kondeti409a15d2010-12-07 17:53:59 +0530117#ifdef CONFIG_USB_GADGET_CI13XXX_PCI
118#define gadget_is_ci13xxx_pci(g) (!strcmp("ci13xxx_pci", (g)->name))
David Lopoaa69a802008-11-17 14:14:51 -0800119#else
Pavankumar Kondeti409a15d2010-12-07 17:53:59 +0530120#define gadget_is_ci13xxx_pci(g) 0
David Lopoaa69a802008-11-17 14:14:51 -0800121#endif
Yoshihiro Shimoda4cf25032007-05-10 13:18:23 +0900122
Felipe Balbi348a4c22011-08-19 18:10:57 +0300123#define gadget_is_dwc3(g) (!strcmp("dwc3-gadget", (g)->name))
124
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700125#ifdef CONFIG_USB_GADGET_MSM_72K
126#define gadget_is_msm72k(g) !strcmp("msm72k_udc", (g)->name)
127#else
128#define gadget_is_msm72k(g) 0
129#endif
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131// CONFIG_USB_GADGET_SX2
132// CONFIG_USB_GADGET_AU1X00
133// ...
134
Yoshihiro Shimodac4144242009-08-19 04:59:39 +0000135#ifdef CONFIG_USB_GADGET_R8A66597
136#define gadget_is_r8a66597(g) !strcmp("r8a66597_udc", (g)->name)
137#else
138#define gadget_is_r8a66597(g) 0
139#endif
140
Maurus Cuelenaere83ba11d2010-03-08 18:20:59 +0100141#ifdef CONFIG_USB_S3C_HSOTG
142#define gadget_is_s3c_hsotg(g) (!strcmp("s3c-hsotg", (g)->name))
143#else
144#define gadget_is_s3c_hsotg(g) 0
145#endif
146
Thomas Abrahama9df3042011-05-07 22:28:04 +0200147#ifdef CONFIG_USB_S3C_HSUDC
148#define gadget_is_s3c_hsudc(g) (!strcmp("s3c-hsudc", (g)->name))
149#else
150#define gadget_is_s3c_hsudc(g) 0
151#endif
152
Toshiharu Okadaf646cf92010-11-11 18:27:57 +0900153#ifdef CONFIG_USB_GADGET_EG20T
154#define gadget_is_pch(g) (!strcmp("pch_udc", (g)->name))
155#else
156#define gadget_is_pch(g) 0
157#endif
David Brownell91e79c92005-07-13 15:18:30 -0700158
Pavankumar Kondeti33f82f32010-12-07 17:54:03 +0530159#ifdef CONFIG_USB_GADGET_CI13XXX_MSM
160#define gadget_is_ci13xxx_msm(g) (!strcmp("ci13xxx_msm", (g)->name))
161#else
162#define gadget_is_ci13xxx_msm(g) 0
163#endif
164
Ofir Cohen06789f12012-01-16 09:43:13 +0200165#ifdef CONFIG_USB_GADGET_CI13XXX_MSM_HSIC
166#define gadget_is_ci13xxx_msm_hsic(g) \
167 (!strncmp("ci13xxx_msm_hsic", (g)->name, 16))
168#else
169#define gadget_is_ci13xxx_msm_hsic(g) 0
170#endif
171
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900172#ifdef CONFIG_USB_GADGET_RENESAS_USBHS
173#define gadget_is_renesas_usbhs(g) (!strcmp("renesas_usbhs_udc", (g)->name))
174#else
175#define gadget_is_renesas_usbhs(g) 0
176#endif
177
David Brownell91e79c92005-07-13 15:18:30 -0700178/**
179 * usb_gadget_controller_number - support bcdDevice id convention
180 * @gadget: the controller being driven
181 *
182 * Return a 2-digit BCD value associated with the peripheral controller,
183 * suitable for use as part of a bcdDevice value, or a negative error code.
184 *
185 * NOTE: this convention is purely optional, and has no meaning in terms of
186 * any USB specification. If you want to use a different convention in your
187 * gadget driver firmware -- maybe a more formal revision ID -- feel free.
188 *
189 * Hosts see these bcdDevice numbers, and are allowed (but not encouraged!)
190 * to change their behavior accordingly. For example it might help avoiding
191 * some chip bug.
192 */
193static inline int usb_gadget_controller_number(struct usb_gadget *gadget)
194{
195 if (gadget_is_net2280(gadget))
196 return 0x01;
197 else if (gadget_is_dummy(gadget))
198 return 0x02;
199 else if (gadget_is_pxa(gadget))
200 return 0x03;
David Brownell91e79c92005-07-13 15:18:30 -0700201 else if (gadget_is_goku(gadget))
202 return 0x06;
David Brownell91e79c92005-07-13 15:18:30 -0700203 else if (gadget_is_omap(gadget))
204 return 0x08;
David Brownell91e79c92005-07-13 15:18:30 -0700205 else if (gadget_is_pxa27x(gadget))
206 return 0x11;
207 else if (gadget_is_s3c2410(gadget))
208 return 0x12;
209 else if (gadget_is_at91(gadget))
210 return 0x13;
211 else if (gadget_is_imx(gadget))
212 return 0x14;
David Brownell1c05ad42006-01-25 08:45:59 -0800213 else if (gadget_is_musbhdrc(gadget))
214 return 0x16;
Haavard Skinnemoen55b3fd42007-06-14 18:01:45 +0200215 else if (gadget_is_atmel_usba(gadget))
Håvard Skinnemoen1f5b9cc2007-01-17 11:03:29 -0800216 return 0x18;
Li Yangd2eef1f2007-04-23 10:37:36 -0700217 else if (gadget_is_fsl_usb2(gadget))
218 return 0x19;
Thomas Dahlmann55d402d2007-07-16 21:40:54 -0700219 else if (gadget_is_amd5536udc(gadget))
220 return 0x20;
Yoshihiro Shimoda4cf25032007-05-10 13:18:23 +0900221 else if (gadget_is_m66592(gadget))
Yoshihiro Shimoda598f22e2007-07-17 21:01:17 +0900222 return 0x21;
Li Yang3948f0e2008-09-02 19:58:10 +0800223 else if (gadget_is_fsl_qe(gadget))
224 return 0x22;
Pavankumar Kondeti409a15d2010-12-07 17:53:59 +0530225 else if (gadget_is_ci13xxx_pci(gadget))
David Lopoaa69a802008-11-17 14:14:51 -0800226 return 0x23;
Xiaochen Shen5be19a92009-06-04 15:34:49 +0800227 else if (gadget_is_langwell(gadget))
228 return 0x24;
Yoshihiro Shimodac4144242009-08-19 04:59:39 +0000229 else if (gadget_is_r8a66597(gadget))
230 return 0x25;
Maurus Cuelenaere83ba11d2010-03-08 18:20:59 +0100231 else if (gadget_is_s3c_hsotg(gadget))
232 return 0x26;
Toshiharu Okadaf646cf92010-11-11 18:27:57 +0900233 else if (gadget_is_pch(gadget))
234 return 0x27;
Pavankumar Kondeti33f82f32010-12-07 17:54:03 +0530235 else if (gadget_is_ci13xxx_msm(gadget))
236 return 0x28;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900237 else if (gadget_is_renesas_usbhs(gadget))
238 return 0x29;
Thomas Abrahama9df3042011-05-07 22:28:04 +0200239 else if (gadget_is_s3c_hsudc(gadget))
240 return 0x30;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700241 else if (gadget_is_msm72k(gadget))
242 return 0x31;
Ofir Cohen06789f12012-01-16 09:43:13 +0200243 else if (gadget_is_ci13xxx_msm_hsic(gadget))
244 return 0x32;
Felipe Balbi348a4c22011-08-19 18:10:57 +0300245 else if (gadget_is_dwc3(gadget))
246 return 0x33;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900247
David Brownell91e79c92005-07-13 15:18:30 -0700248 return -ENOENT;
249}
David Brownellda741b82008-06-19 18:19:46 -0700250
251
252/**
253 * gadget_supports_altsettings - return true if altsettings work
254 * @gadget: the gadget in question
255 */
256static inline bool gadget_supports_altsettings(struct usb_gadget *gadget)
257{
258 /* PXA 21x/25x/26x has no altsettings at all */
259 if (gadget_is_pxa(gadget))
260 return false;
261
262 /* PXA 27x and 3xx have *broken* altsetting support */
263 if (gadget_is_pxa27x(gadget))
264 return false;
265
David Brownellda741b82008-06-19 18:19:46 -0700266 /* Everything else is *presumably* fine ... */
267 return true;
268}
Felipe Balbie67d70f2008-07-17 17:26:49 +0300269
270#endif /* __GADGET_CHIPS_H */