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.
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!)
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.
15 #ifndef __GADGET_CHIPS_H
16 #define __GADGET_CHIPS_H
18 #ifdef CONFIG_USB_GADGET_NET2280
19 #define gadget_is_net2280(g) !strcmp("net2280", (g)->name)
21 #define gadget_is_net2280(g) 0
24 #ifdef CONFIG_USB_GADGET_AMD5536UDC
25 #define gadget_is_amd5536udc(g) !strcmp("amd5536udc", (g)->name)
27 #define gadget_is_amd5536udc(g) 0
30 #ifdef CONFIG_USB_GADGET_DUMMY_HCD
31 #define gadget_is_dummy(g) !strcmp("dummy_udc", (g)->name)
33 #define gadget_is_dummy(g) 0
36 #ifdef CONFIG_USB_GADGET_PXA25X
37 #define gadget_is_pxa(g) !strcmp("pxa25x_udc", (g)->name)
39 #define gadget_is_pxa(g) 0
42 #ifdef CONFIG_USB_GADGET_GOKU
43 #define gadget_is_goku(g) !strcmp("goku_udc", (g)->name)
45 #define gadget_is_goku(g) 0
48 #ifdef CONFIG_USB_GADGET_LH7A40X
49 #define gadget_is_lh7a40x(g) !strcmp("lh7a40x_udc", (g)->name)
51 #define gadget_is_lh7a40x(g) 0
54 #ifdef CONFIG_USB_GADGET_OMAP
55 #define gadget_is_omap(g) !strcmp("omap_udc", (g)->name)
57 #define gadget_is_omap(g) 0
60 /* various unstable versions available */
61 #ifdef CONFIG_USB_GADGET_PXA27X
62 #define gadget_is_pxa27x(g) !strcmp("pxa27x_udc", (g)->name)
64 #define gadget_is_pxa27x(g) 0
67 #ifdef CONFIG_USB_GADGET_ATMEL_USBA
68 #define gadget_is_atmel_usba(g) !strcmp("atmel_usba_udc", (g)->name)
70 #define gadget_is_atmel_usba(g) 0
73 #ifdef CONFIG_USB_GADGET_S3C2410
74 #define gadget_is_s3c2410(g) !strcmp("s3c2410_udc", (g)->name)
76 #define gadget_is_s3c2410(g) 0
79 #ifdef CONFIG_USB_GADGET_AT91
80 #define gadget_is_at91(g) !strcmp("at91_udc", (g)->name)
82 #define gadget_is_at91(g) 0
85 #ifdef CONFIG_USB_GADGET_IMX
86 #define gadget_is_imx(g) !strcmp("imx_udc", (g)->name)
88 #define gadget_is_imx(g) 0
91 #ifdef CONFIG_USB_GADGET_FSL_USB2
92 #define gadget_is_fsl_usb2(g) !strcmp("fsl-usb2-udc", (g)->name)
94 #define gadget_is_fsl_usb2(g) 0
97 /* Mentor high speed "dual role" controller, in peripheral role */
98 #ifdef CONFIG_USB_GADGET_MUSB_HDRC
99 #define gadget_is_musbhdrc(g) !strcmp("musb-hdrc", (g)->name)
101 #define gadget_is_musbhdrc(g) 0
104 #ifdef CONFIG_USB_GADGET_LANGWELL
105 #define gadget_is_langwell(g) (!strcmp("langwell_udc", (g)->name))
107 #define gadget_is_langwell(g) 0
110 #ifdef CONFIG_USB_GADGET_M66592
111 #define gadget_is_m66592(g) !strcmp("m66592_udc", (g)->name)
113 #define gadget_is_m66592(g) 0
116 /* Freescale CPM/QE UDC SUPPORT */
117 #ifdef CONFIG_USB_GADGET_FSL_QE
118 #define gadget_is_fsl_qe(g) !strcmp("fsl_qe_udc", (g)->name)
120 #define gadget_is_fsl_qe(g) 0
123 #ifdef CONFIG_USB_GADGET_CI13XXX_PCI
124 #define gadget_is_ci13xxx_pci(g) (!strcmp("ci13xxx_pci", (g)->name))
126 #define gadget_is_ci13xxx_pci(g) 0
129 // CONFIG_USB_GADGET_SX2
130 // CONFIG_USB_GADGET_AU1X00
133 #ifdef CONFIG_USB_GADGET_R8A66597
134 #define gadget_is_r8a66597(g) !strcmp("r8a66597_udc", (g)->name)
136 #define gadget_is_r8a66597(g) 0
139 #ifdef CONFIG_USB_S3C_HSOTG
140 #define gadget_is_s3c_hsotg(g) (!strcmp("s3c-hsotg", (g)->name))
142 #define gadget_is_s3c_hsotg(g) 0
145 #ifdef CONFIG_USB_GADGET_EG20T
146 #define gadget_is_pch(g) (!strcmp("pch_udc", (g)->name))
148 #define gadget_is_pch(g) 0
151 #ifdef CONFIG_USB_GADGET_CI13XXX_MSM
152 #define gadget_is_ci13xxx_msm(g) (!strcmp("ci13xxx_msm", (g)->name))
154 #define gadget_is_ci13xxx_msm(g) 0
158 * usb_gadget_controller_number - support bcdDevice id convention
159 * @gadget: the controller being driven
161 * Return a 2-digit BCD value associated with the peripheral controller,
162 * suitable for use as part of a bcdDevice value, or a negative error code.
164 * NOTE: this convention is purely optional, and has no meaning in terms of
165 * any USB specification. If you want to use a different convention in your
166 * gadget driver firmware -- maybe a more formal revision ID -- feel free.
168 * Hosts see these bcdDevice numbers, and are allowed (but not encouraged!)
169 * to change their behavior accordingly. For example it might help avoiding
172 static inline int usb_gadget_controller_number(struct usb_gadget
*gadget
)
174 if (gadget_is_net2280(gadget
))
176 else if (gadget_is_dummy(gadget
))
178 else if (gadget_is_pxa(gadget
))
180 else if (gadget_is_goku(gadget
))
182 else if (gadget_is_omap(gadget
))
184 else if (gadget_is_lh7a40x(gadget
))
186 else if (gadget_is_pxa27x(gadget
))
188 else if (gadget_is_s3c2410(gadget
))
190 else if (gadget_is_at91(gadget
))
192 else if (gadget_is_imx(gadget
))
194 else if (gadget_is_musbhdrc(gadget
))
196 else if (gadget_is_atmel_usba(gadget
))
198 else if (gadget_is_fsl_usb2(gadget
))
200 else if (gadget_is_amd5536udc(gadget
))
202 else if (gadget_is_m66592(gadget
))
204 else if (gadget_is_fsl_qe(gadget
))
206 else if (gadget_is_ci13xxx_pci(gadget
))
208 else if (gadget_is_langwell(gadget
))
210 else if (gadget_is_r8a66597(gadget
))
212 else if (gadget_is_s3c_hsotg(gadget
))
214 else if (gadget_is_pch(gadget
))
216 else if (gadget_is_ci13xxx_msm(gadget
))
223 * gadget_supports_altsettings - return true if altsettings work
224 * @gadget: the gadget in question
226 static inline bool gadget_supports_altsettings(struct usb_gadget
*gadget
)
228 /* PXA 21x/25x/26x has no altsettings at all */
229 if (gadget_is_pxa(gadget
))
232 /* PXA 27x and 3xx have *broken* altsetting support */
233 if (gadget_is_pxa27x(gadget
))
236 /* Everything else is *presumably* fine ... */
240 #endif /* __GADGET_CHIPS_H */