c7055cd1e92eede263d430b5cdd1fc6281cec03b
[linux-2.6-block.git] / drivers / usb / gadget / gadget_chips.h
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  */
14
15 #ifndef __GADGET_CHIPS_H
16 #define __GADGET_CHIPS_H
17
18 #include <linux/usb/gadget.h>
19
20 /*
21  * NOTICE: the entries below are alphabetical and should be kept
22  * that way.
23  *
24  * Always be sure to add new entries to the correct position or
25  * accept the bashing later.
26  *
27  * If you have forgotten the alphabetical order let VIM/EMACS
28  * do that for you.
29  */
30 #define gadget_is_amd5536udc(g)         (!strcmp("amd5536udc", (g)->name))
31 #define gadget_is_at91(g)               (!strcmp("at91_udc", (g)->name))
32 #define gadget_is_atmel_usba(g)         (!strcmp("atmel_usba_udc", (g)->name))
33 #define gadget_is_bcm63xx(g)            (!strcmp("bcm63xx_udc", (g)->name))
34 #define gadget_is_ci13xxx_msm(g)        (!strcmp("ci13xxx_msm", (g)->name))
35 #define gadget_is_ci13xxx_pci(g)        (!strcmp("ci13xxx_pci", (g)->name))
36 #define gadget_is_dummy(g)              (!strcmp("dummy_udc", (g)->name))
37 #define gadget_is_dwc3(g)               (!strcmp("dwc3-gadget", (g)->name))
38 #define gadget_is_fsl_qe(g)             (!strcmp("fsl_qe_udc", (g)->name))
39 #define gadget_is_fsl_usb2(g)           (!strcmp("fsl-usb2-udc", (g)->name))
40 #define gadget_is_goku(g)               (!strcmp("goku_udc", (g)->name))
41 #define gadget_is_imx(g)                (!strcmp("imx_udc", (g)->name))
42 #define gadget_is_langwell(g)           (!strcmp("langwell_udc", (g)->name))
43 #define gadget_is_lpc32xx(g)            (!strcmp("lpc32xx_udc", (g)->name))
44 #define gadget_is_m66592(g)             (!strcmp("m66592_udc", (g)->name))
45 #define gadget_is_musbhdrc(g)           (!strcmp("musb-hdrc", (g)->name))
46 #define gadget_is_net2272(g)            (!strcmp("net2272", (g)->name))
47 #define gadget_is_net2280(g)            (!strcmp("net2280", (g)->name))
48 #define gadget_is_omap(g)               (!strcmp("omap_udc", (g)->name))
49 #define gadget_is_pch(g)                (!strcmp("pch_udc", (g)->name))
50 #define gadget_is_pxa(g)                (!strcmp("pxa25x_udc", (g)->name))
51 #define gadget_is_pxa27x(g)             (!strcmp("pxa27x_udc", (g)->name))
52 #define gadget_is_r8a66597(g)           (!strcmp("r8a66597_udc", (g)->name))
53 #define gadget_is_renesas_usbhs(g)      (!strcmp("renesas_usbhs_udc", (g)->name))
54 #define gadget_is_s3c2410(g)            (!strcmp("s3c2410_udc", (g)->name))
55 #define gadget_is_s3c_hsotg(g)          (!strcmp("s3c-hsotg", (g)->name))
56 #define gadget_is_s3c_hsudc(g)          (!strcmp("s3c-hsudc", (g)->name))
57
58 int usb_gadget_controller_number(struct usb_gadget *gadget);
59
60 /**
61  * gadget_supports_altsettings - return true if altsettings work
62  * @gadget: the gadget in question
63  */
64 static inline bool gadget_supports_altsettings(struct usb_gadget *gadget)
65 {
66         /* PXA 21x/25x/26x has no altsettings at all */
67         if (gadget_is_pxa(gadget))
68                 return false;
69
70         /* PXA 27x and 3xx have *broken* altsetting support */
71         if (gadget_is_pxa27x(gadget))
72                 return false;
73
74         /* Everything else is *presumably* fine ... */
75         return true;
76 }
77
78 #endif /* __GADGET_CHIPS_H */