upload tizen1.0 source
[kernel/linux-2.6.36.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 #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
24 #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
30 #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
36 #ifdef CONFIG_USB_GADGET_PXA25X
37 #define gadget_is_pxa(g)        !strcmp("pxa25x_udc", (g)->name)
38 #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
48 /* SH3 UDC -- not yet ported 2.4 --> 2.6 */
49 #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
55 /* not yet stable on 2.6 (would help "original Zaurus") */
56 #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
68 /* handhelds.org tree (?) */
69 #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
81 /* not yet ported 2.4 --> 2.6 */
82 #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
88 /* various unstable versions available */
89 #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
95 #ifdef CONFIG_USB_GADGET_ATMEL_USBA
96 #define gadget_is_atmel_usba(g) !strcmp("atmel_usba_udc", (g)->name)
97 #else
98 #define gadget_is_atmel_usba(g) 0
99 #endif
100
101 #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_S3C_OTGD
108 #define gadget_is_s3c(g)    !strcmp("s3c-udc", (g)->name)
109 #else
110 #define gadget_is_s3c(g)    0
111 #endif
112
113 #ifdef CONFIG_USB_GADGET_AT91
114 #define gadget_is_at91(g)       !strcmp("at91_udc", (g)->name)
115 #else
116 #define gadget_is_at91(g)       0
117 #endif
118
119 #ifdef CONFIG_USB_GADGET_IMX
120 #define gadget_is_imx(g)        !strcmp("imx_udc", (g)->name)
121 #else
122 #define gadget_is_imx(g)        0
123 #endif
124
125 #ifdef CONFIG_USB_GADGET_FSL_USB2
126 #define gadget_is_fsl_usb2(g)   !strcmp("fsl-usb2-udc", (g)->name)
127 #else
128 #define gadget_is_fsl_usb2(g)   0
129 #endif
130
131 /* Mentor high speed function controller */
132 /* from Montavista kernel (?) */
133 #ifdef CONFIG_USB_GADGET_MUSBHSFC
134 #define gadget_is_musbhsfc(g)   !strcmp("musbhsfc_udc", (g)->name)
135 #else
136 #define gadget_is_musbhsfc(g)   0
137 #endif
138
139 /* Mentor high speed "dual role" controller, in peripheral role */
140 #ifdef CONFIG_USB_GADGET_MUSB_HDRC
141 #define gadget_is_musbhdrc(g)   !strcmp("musb_hdrc", (g)->name)
142 #else
143 #define gadget_is_musbhdrc(g)   0
144 #endif
145
146 #ifdef CONFIG_USB_GADGET_LANGWELL
147 #define gadget_is_langwell(g)   (!strcmp("langwell_udc", (g)->name))
148 #else
149 #define gadget_is_langwell(g)   0
150 #endif
151
152 /* from Montavista kernel (?) */
153 #ifdef CONFIG_USB_GADGET_MPC8272
154 #define gadget_is_mpc8272(g)    !strcmp("mpc8272_udc", (g)->name)
155 #else
156 #define gadget_is_mpc8272(g)    0
157 #endif
158
159 #ifdef CONFIG_USB_GADGET_M66592
160 #define gadget_is_m66592(g)     !strcmp("m66592_udc", (g)->name)
161 #else
162 #define gadget_is_m66592(g)     0
163 #endif
164
165 /* Freescale CPM/QE UDC SUPPORT */
166 #ifdef CONFIG_USB_GADGET_FSL_QE
167 #define gadget_is_fsl_qe(g)     !strcmp("fsl_qe_udc", (g)->name)
168 #else
169 #define gadget_is_fsl_qe(g)     0
170 #endif
171
172 #ifdef CONFIG_USB_GADGET_CI13XXX
173 #define gadget_is_ci13xxx(g)    (!strcmp("ci13xxx_udc", (g)->name))
174 #else
175 #define gadget_is_ci13xxx(g)    0
176 #endif
177
178 // CONFIG_USB_GADGET_SX2
179 // CONFIG_USB_GADGET_AU1X00
180 // ...
181
182 #ifdef CONFIG_USB_GADGET_R8A66597
183 #define gadget_is_r8a66597(g)   !strcmp("r8a66597_udc", (g)->name)
184 #else
185 #define gadget_is_r8a66597(g)   0
186 #endif
187
188 #ifdef CONFIG_USB_S3C_HSOTG
189 #define gadget_is_s3c_hsotg(g)    (!strcmp("s3c-hsotg", (g)->name))
190 #else
191 #define gadget_is_s3c_hsotg(g)    0
192 #endif
193
194
195 #if CONFIG_USB_GADGET_S3C_OTGD
196 #define gadget_is_s3c(g)        !strcmp("s3c-udc", (g)->name)
197 #else
198 #define gadget_is_s3c(g)        0
199 #endif
200
201 /**
202  * usb_gadget_controller_number - support bcdDevice id convention
203  * @gadget: the controller being driven
204  *
205  * Return a 2-digit BCD value associated with the peripheral controller,
206  * suitable for use as part of a bcdDevice value, or a negative error code.
207  *
208  * NOTE:  this convention is purely optional, and has no meaning in terms of
209  * any USB specification.  If you want to use a different convention in your
210  * gadget driver firmware -- maybe a more formal revision ID -- feel free.
211  *
212  * Hosts see these bcdDevice numbers, and are allowed (but not encouraged!)
213  * to change their behavior accordingly.  For example it might help avoiding
214  * some chip bug.
215  */
216 static inline int usb_gadget_controller_number(struct usb_gadget *gadget)
217 {
218         if (gadget_is_net2280(gadget))
219                 return 0x01;
220         else if (gadget_is_dummy(gadget))
221                 return 0x02;
222         else if (gadget_is_pxa(gadget))
223                 return 0x03;
224         else if (gadget_is_sh(gadget))
225                 return 0x04;
226         else if (gadget_is_sa1100(gadget))
227                 return 0x05;
228         else if (gadget_is_goku(gadget))
229                 return 0x06;
230         else if (gadget_is_mq11xx(gadget))
231                 return 0x07;
232         else if (gadget_is_omap(gadget))
233                 return 0x08;
234         else if (gadget_is_lh7a40x(gadget))
235                 return 0x09;
236         else if (gadget_is_n9604(gadget))
237                 return 0x10;
238         else if (gadget_is_pxa27x(gadget))
239                 return 0x11;
240         else if (gadget_is_s3c2410(gadget))
241                 return 0x12;
242         else if (gadget_is_at91(gadget))
243                 return 0x13;
244         else if (gadget_is_imx(gadget))
245                 return 0x14;
246         else if (gadget_is_musbhsfc(gadget))
247                 return 0x15;
248         else if (gadget_is_musbhdrc(gadget))
249                 return 0x16;
250         else if (gadget_is_mpc8272(gadget))
251                 return 0x17;
252         else if (gadget_is_atmel_usba(gadget))
253                 return 0x18;
254         else if (gadget_is_fsl_usb2(gadget))
255                 return 0x19;
256         else if (gadget_is_amd5536udc(gadget))
257                 return 0x20;
258         else if (gadget_is_m66592(gadget))
259                 return 0x21;
260         else if (gadget_is_fsl_qe(gadget))
261                 return 0x22;
262         else if (gadget_is_s3c(gadget))
263                 return 0x23;
264         else if (gadget_is_ci13xxx(gadget))
265                 return 0x23;
266         else if (gadget_is_langwell(gadget))
267                 return 0x24;
268         else if (gadget_is_r8a66597(gadget))
269                 return 0x25;
270         else if (gadget_is_s3c_hsotg(gadget))
271                 return 0x26;
272         else if (gadget_is_s3c(gadget))
273                 return 0x28;
274         return -ENOENT;
275 }
276
277
278 /**
279  * gadget_supports_altsettings - return true if altsettings work
280  * @gadget: the gadget in question
281  */
282 static inline bool gadget_supports_altsettings(struct usb_gadget *gadget)
283 {
284         /* PXA 21x/25x/26x has no altsettings at all */
285         if (gadget_is_pxa(gadget))
286                 return false;
287
288         /* PXA 27x and 3xx have *broken* altsetting support */
289         if (gadget_is_pxa27x(gadget))
290                 return false;
291
292         /* SH3 hardware just doesn't do altsettings */
293         if (gadget_is_sh(gadget))
294                 return false;
295
296         /* Everything else is *presumably* fine ... */
297         return true;
298 }
299
300 #endif /* __GADGET_CHIPS_H */