Merge branch 'release' of git://lm-sensors.org/kernel/mhoffman/hwmon-2.6
[pandora-kernel.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 #ifdef CONFIG_USB_GADGET_NET2280
15 #define gadget_is_net2280(g)    !strcmp("net2280", (g)->name)
16 #else
17 #define gadget_is_net2280(g)    0
18 #endif
19
20 #ifdef CONFIG_USB_GADGET_DUMMY_HCD
21 #define gadget_is_dummy(g)      !strcmp("dummy_udc", (g)->name)
22 #else
23 #define gadget_is_dummy(g)      0
24 #endif
25
26 #ifdef CONFIG_USB_GADGET_PXA2XX
27 #define gadget_is_pxa(g)        !strcmp("pxa2xx_udc", (g)->name)
28 #else
29 #define gadget_is_pxa(g)        0
30 #endif
31
32 #ifdef CONFIG_USB_GADGET_GOKU
33 #define gadget_is_goku(g)       !strcmp("goku_udc", (g)->name)
34 #else
35 #define gadget_is_goku(g)       0
36 #endif
37
38 /* SH3 UDC -- not yet ported 2.4 --> 2.6 */
39 #ifdef CONFIG_USB_GADGET_SUPERH
40 #define gadget_is_sh(g)         !strcmp("sh_udc", (g)->name)
41 #else
42 #define gadget_is_sh(g)         0
43 #endif
44
45 /* not yet stable on 2.6 (would help "original Zaurus") */
46 #ifdef CONFIG_USB_GADGET_SA1100
47 #define gadget_is_sa1100(g)     !strcmp("sa1100_udc", (g)->name)
48 #else
49 #define gadget_is_sa1100(g)     0
50 #endif
51
52 #ifdef CONFIG_USB_GADGET_LH7A40X
53 #define gadget_is_lh7a40x(g)    !strcmp("lh7a40x_udc", (g)->name)
54 #else
55 #define gadget_is_lh7a40x(g)    0
56 #endif
57
58 /* handhelds.org tree (?) */
59 #ifdef CONFIG_USB_GADGET_MQ11XX
60 #define gadget_is_mq11xx(g)     !strcmp("mq11xx_udc", (g)->name)
61 #else
62 #define gadget_is_mq11xx(g)     0
63 #endif
64
65 #ifdef CONFIG_USB_GADGET_OMAP
66 #define gadget_is_omap(g)       !strcmp("omap_udc", (g)->name)
67 #else
68 #define gadget_is_omap(g)       0
69 #endif
70
71 /* not yet ported 2.4 --> 2.6 */
72 #ifdef CONFIG_USB_GADGET_N9604
73 #define gadget_is_n9604(g)      !strcmp("n9604_udc", (g)->name)
74 #else
75 #define gadget_is_n9604(g)      0
76 #endif
77
78 /* various unstable versions available */
79 #ifdef CONFIG_USB_GADGET_PXA27X
80 #define gadget_is_pxa27x(g)     !strcmp("pxa27x_udc", (g)->name)
81 #else
82 #define gadget_is_pxa27x(g)     0
83 #endif
84
85 #ifdef CONFIG_USB_GADGET_ATMEL_USBA
86 #define gadget_is_atmel_usba(g) !strcmp("atmel_usba_udc", (g)->name)
87 #else
88 #define gadget_is_atmel_usba(g) 0
89 #endif
90
91 #ifdef CONFIG_USB_GADGET_S3C2410
92 #define gadget_is_s3c2410(g)    !strcmp("s3c2410_udc", (g)->name)
93 #else
94 #define gadget_is_s3c2410(g)    0
95 #endif
96
97 #ifdef CONFIG_USB_GADGET_AT91
98 #define gadget_is_at91(g)       !strcmp("at91_udc", (g)->name)
99 #else
100 #define gadget_is_at91(g)       0
101 #endif
102
103 /* status unclear */
104 #ifdef CONFIG_USB_GADGET_IMX
105 #define gadget_is_imx(g)        !strcmp("imx_udc", (g)->name)
106 #else
107 #define gadget_is_imx(g)        0
108 #endif
109
110 #ifdef CONFIG_USB_GADGET_FSL_USB2
111 #define gadget_is_fsl_usb2(g)   !strcmp("fsl-usb2-udc", (g)->name)
112 #else
113 #define gadget_is_fsl_usb2(g)   0
114 #endif
115
116 /* Mentor high speed function controller */
117 /* from Montavista kernel (?) */
118 #ifdef CONFIG_USB_GADGET_MUSBHSFC
119 #define gadget_is_musbhsfc(g)   !strcmp("musbhsfc_udc", (g)->name)
120 #else
121 #define gadget_is_musbhsfc(g)   0
122 #endif
123
124 /* Mentor high speed "dual role" controller, in peripheral role */
125 #ifdef CONFIG_USB_GADGET_MUSB_HDRC
126 #define gadget_is_musbhdrc(g)   !strcmp("musb_hdrc", (g)->name)
127 #else
128 #define gadget_is_musbhdrc(g)   0
129 #endif
130
131 /* from Montavista kernel (?) */
132 #ifdef CONFIG_USB_GADGET_MPC8272
133 #define gadget_is_mpc8272(g)    !strcmp("mpc8272_udc", (g)->name)
134 #else
135 #define gadget_is_mpc8272(g)    0
136 #endif
137
138 #ifdef CONFIG_USB_GADGET_M66592
139 #define gadget_is_m66592(g)     !strcmp("m66592_udc", (g)->name)
140 #else
141 #define gadget_is_m66592(g)     0
142 #endif
143
144
145 // CONFIG_USB_GADGET_SX2
146 // CONFIG_USB_GADGET_AU1X00
147 // ...
148
149
150 /**
151  * usb_gadget_controller_number - support bcdDevice id convention
152  * @gadget: the controller being driven
153  *
154  * Return a 2-digit BCD value associated with the peripheral controller,
155  * suitable for use as part of a bcdDevice value, or a negative error code.
156  *
157  * NOTE:  this convention is purely optional, and has no meaning in terms of
158  * any USB specification.  If you want to use a different convention in your
159  * gadget driver firmware -- maybe a more formal revision ID -- feel free.
160  *
161  * Hosts see these bcdDevice numbers, and are allowed (but not encouraged!)
162  * to change their behavior accordingly.  For example it might help avoiding
163  * some chip bug.
164  */
165 static inline int usb_gadget_controller_number(struct usb_gadget *gadget)
166 {
167         if (gadget_is_net2280(gadget))
168                 return 0x01;
169         else if (gadget_is_dummy(gadget))
170                 return 0x02;
171         else if (gadget_is_pxa(gadget))
172                 return 0x03;
173         else if (gadget_is_sh(gadget))
174                 return 0x04;
175         else if (gadget_is_sa1100(gadget))
176                 return 0x05;
177         else if (gadget_is_goku(gadget))
178                 return 0x06;
179         else if (gadget_is_mq11xx(gadget))
180                 return 0x07;
181         else if (gadget_is_omap(gadget))
182                 return 0x08;
183         else if (gadget_is_lh7a40x(gadget))
184                 return 0x09;
185         else if (gadget_is_n9604(gadget))
186                 return 0x10;
187         else if (gadget_is_pxa27x(gadget))
188                 return 0x11;
189         else if (gadget_is_s3c2410(gadget))
190                 return 0x12;
191         else if (gadget_is_at91(gadget))
192                 return 0x13;
193         else if (gadget_is_imx(gadget))
194                 return 0x14;
195         else if (gadget_is_musbhsfc(gadget))
196                 return 0x15;
197         else if (gadget_is_musbhdrc(gadget))
198                 return 0x16;
199         else if (gadget_is_mpc8272(gadget))
200                 return 0x17;
201         else if (gadget_is_atmel_usba(gadget))
202                 return 0x18;
203         else if (gadget_is_fsl_usb2(gadget))
204                 return 0x19;
205         else if (gadget_is_m66592(gadget))
206                 return 0x20;
207         return -ENOENT;
208 }