1 // SPDX-License-Identifier: GPL-2.0+
3 * Intel PXA25x and IXP4xx on-chip full speed USB device controllers
5 * Copyright (C) 2002 Intrinsyc, Inc. (Frank Becker)
6 * Copyright (C) 2003 Robert Schwebel, Pengutronix
7 * Copyright (C) 2003 Benedikt Spranger, Pengutronix
8 * Copyright (C) 2003 David Brownell
9 * Copyright (C) 2003 Joshua Wise
12 /* #define VERBOSE_DEBUG */
14 #include <linux/device.h>
15 #include <linux/gpio.h>
16 #include <linux/module.h>
17 #include <linux/kernel.h>
18 #include <linux/ioport.h>
19 #include <linux/types.h>
20 #include <linux/errno.h>
21 #include <linux/err.h>
22 #include <linux/delay.h>
23 #include <linux/slab.h>
24 #include <linux/timer.h>
25 #include <linux/list.h>
26 #include <linux/interrupt.h>
28 #include <linux/platform_data/pxa2xx_udc.h>
29 #include <linux/platform_device.h>
30 #include <linux/dma-mapping.h>
31 #include <linux/irq.h>
32 #include <linux/clk.h>
33 #include <linux/seq_file.h>
34 #include <linux/debugfs.h>
36 #include <linux/prefetch.h>
38 #include <asm/byteorder.h>
40 #include <asm/mach-types.h>
41 #include <asm/unaligned.h>
43 #include <linux/usb/ch9.h>
44 #include <linux/usb/gadget.h>
45 #include <linux/usb/otg.h>
47 #ifdef CONFIG_ARCH_LUBBOCK
48 #include <mach/lubbock.h>
51 #define UDCCR 0x0000 /* UDC Control Register */
52 #define UDC_RES1 0x0004 /* UDC Undocumented - Reserved1 */
53 #define UDC_RES2 0x0008 /* UDC Undocumented - Reserved2 */
54 #define UDC_RES3 0x000C /* UDC Undocumented - Reserved3 */
55 #define UDCCS0 0x0010 /* UDC Endpoint 0 Control/Status Register */
56 #define UDCCS1 0x0014 /* UDC Endpoint 1 (IN) Control/Status Register */
57 #define UDCCS2 0x0018 /* UDC Endpoint 2 (OUT) Control/Status Register */
58 #define UDCCS3 0x001C /* UDC Endpoint 3 (IN) Control/Status Register */
59 #define UDCCS4 0x0020 /* UDC Endpoint 4 (OUT) Control/Status Register */
60 #define UDCCS5 0x0024 /* UDC Endpoint 5 (Interrupt) Control/Status Register */
61 #define UDCCS6 0x0028 /* UDC Endpoint 6 (IN) Control/Status Register */
62 #define UDCCS7 0x002C /* UDC Endpoint 7 (OUT) Control/Status Register */
63 #define UDCCS8 0x0030 /* UDC Endpoint 8 (IN) Control/Status Register */
64 #define UDCCS9 0x0034 /* UDC Endpoint 9 (OUT) Control/Status Register */
65 #define UDCCS10 0x0038 /* UDC Endpoint 10 (Interrupt) Control/Status Register */
66 #define UDCCS11 0x003C /* UDC Endpoint 11 (IN) Control/Status Register */
67 #define UDCCS12 0x0040 /* UDC Endpoint 12 (OUT) Control/Status Register */
68 #define UDCCS13 0x0044 /* UDC Endpoint 13 (IN) Control/Status Register */
69 #define UDCCS14 0x0048 /* UDC Endpoint 14 (OUT) Control/Status Register */
70 #define UDCCS15 0x004C /* UDC Endpoint 15 (Interrupt) Control/Status Register */
71 #define UFNRH 0x0060 /* UDC Frame Number Register High */
72 #define UFNRL 0x0064 /* UDC Frame Number Register Low */
73 #define UBCR2 0x0068 /* UDC Byte Count Reg 2 */
74 #define UBCR4 0x006c /* UDC Byte Count Reg 4 */
75 #define UBCR7 0x0070 /* UDC Byte Count Reg 7 */
76 #define UBCR9 0x0074 /* UDC Byte Count Reg 9 */
77 #define UBCR12 0x0078 /* UDC Byte Count Reg 12 */
78 #define UBCR14 0x007c /* UDC Byte Count Reg 14 */
79 #define UDDR0 0x0080 /* UDC Endpoint 0 Data Register */
80 #define UDDR1 0x0100 /* UDC Endpoint 1 Data Register */
81 #define UDDR2 0x0180 /* UDC Endpoint 2 Data Register */
82 #define UDDR3 0x0200 /* UDC Endpoint 3 Data Register */
83 #define UDDR4 0x0400 /* UDC Endpoint 4 Data Register */
84 #define UDDR5 0x00A0 /* UDC Endpoint 5 Data Register */
85 #define UDDR6 0x0600 /* UDC Endpoint 6 Data Register */
86 #define UDDR7 0x0680 /* UDC Endpoint 7 Data Register */
87 #define UDDR8 0x0700 /* UDC Endpoint 8 Data Register */
88 #define UDDR9 0x0900 /* UDC Endpoint 9 Data Register */
89 #define UDDR10 0x00C0 /* UDC Endpoint 10 Data Register */
90 #define UDDR11 0x0B00 /* UDC Endpoint 11 Data Register */
91 #define UDDR12 0x0B80 /* UDC Endpoint 12 Data Register */
92 #define UDDR13 0x0C00 /* UDC Endpoint 13 Data Register */
93 #define UDDR14 0x0E00 /* UDC Endpoint 14 Data Register */
94 #define UDDR15 0x00E0 /* UDC Endpoint 15 Data Register */
96 #define UICR0 0x0050 /* UDC Interrupt Control Register 0 */
97 #define UICR1 0x0054 /* UDC Interrupt Control Register 1 */
99 #define USIR0 0x0058 /* UDC Status Interrupt Register 0 */
100 #define USIR1 0x005C /* UDC Status Interrupt Register 1 */
102 #define UDCCR_UDE (1 << 0) /* UDC enable */
103 #define UDCCR_UDA (1 << 1) /* UDC active */
104 #define UDCCR_RSM (1 << 2) /* Device resume */
105 #define UDCCR_RESIR (1 << 3) /* Resume interrupt request */
106 #define UDCCR_SUSIR (1 << 4) /* Suspend interrupt request */
107 #define UDCCR_SRM (1 << 5) /* Suspend/resume interrupt mask */
108 #define UDCCR_RSTIR (1 << 6) /* Reset interrupt request */
109 #define UDCCR_REM (1 << 7) /* Reset interrupt mask */
111 #define UDCCS0_OPR (1 << 0) /* OUT packet ready */
112 #define UDCCS0_IPR (1 << 1) /* IN packet ready */
113 #define UDCCS0_FTF (1 << 2) /* Flush Tx FIFO */
114 #define UDCCS0_DRWF (1 << 3) /* Device remote wakeup feature */
115 #define UDCCS0_SST (1 << 4) /* Sent stall */
116 #define UDCCS0_FST (1 << 5) /* Force stall */
117 #define UDCCS0_RNE (1 << 6) /* Receive FIFO no empty */
118 #define UDCCS0_SA (1 << 7) /* Setup active */
120 #define UDCCS_BI_TFS (1 << 0) /* Transmit FIFO service */
121 #define UDCCS_BI_TPC (1 << 1) /* Transmit packet complete */
122 #define UDCCS_BI_FTF (1 << 2) /* Flush Tx FIFO */
123 #define UDCCS_BI_TUR (1 << 3) /* Transmit FIFO underrun */
124 #define UDCCS_BI_SST (1 << 4) /* Sent stall */
125 #define UDCCS_BI_FST (1 << 5) /* Force stall */
126 #define UDCCS_BI_TSP (1 << 7) /* Transmit short packet */
128 #define UDCCS_BO_RFS (1 << 0) /* Receive FIFO service */
129 #define UDCCS_BO_RPC (1 << 1) /* Receive packet complete */
130 #define UDCCS_BO_DME (1 << 3) /* DMA enable */
131 #define UDCCS_BO_SST (1 << 4) /* Sent stall */
132 #define UDCCS_BO_FST (1 << 5) /* Force stall */
133 #define UDCCS_BO_RNE (1 << 6) /* Receive FIFO not empty */
134 #define UDCCS_BO_RSP (1 << 7) /* Receive short packet */
136 #define UDCCS_II_TFS (1 << 0) /* Transmit FIFO service */
137 #define UDCCS_II_TPC (1 << 1) /* Transmit packet complete */
138 #define UDCCS_II_FTF (1 << 2) /* Flush Tx FIFO */
139 #define UDCCS_II_TUR (1 << 3) /* Transmit FIFO underrun */
140 #define UDCCS_II_TSP (1 << 7) /* Transmit short packet */
142 #define UDCCS_IO_RFS (1 << 0) /* Receive FIFO service */
143 #define UDCCS_IO_RPC (1 << 1) /* Receive packet complete */
144 #ifdef CONFIG_ARCH_IXP4XX /* FIXME: is this right?, datasheed says '2' */
145 #define UDCCS_IO_ROF (1 << 3) /* Receive overflow */
147 #ifdef CONFIG_ARCH_PXA
148 #define UDCCS_IO_ROF (1 << 2) /* Receive overflow */
150 #define UDCCS_IO_DME (1 << 3) /* DMA enable */
151 #define UDCCS_IO_RNE (1 << 6) /* Receive FIFO not empty */
152 #define UDCCS_IO_RSP (1 << 7) /* Receive short packet */
154 #define UDCCS_INT_TFS (1 << 0) /* Transmit FIFO service */
155 #define UDCCS_INT_TPC (1 << 1) /* Transmit packet complete */
156 #define UDCCS_INT_FTF (1 << 2) /* Flush Tx FIFO */
157 #define UDCCS_INT_TUR (1 << 3) /* Transmit FIFO underrun */
158 #define UDCCS_INT_SST (1 << 4) /* Sent stall */
159 #define UDCCS_INT_FST (1 << 5) /* Force stall */
160 #define UDCCS_INT_TSP (1 << 7) /* Transmit short packet */
162 #define UICR0_IM0 (1 << 0) /* Interrupt mask ep 0 */
163 #define UICR0_IM1 (1 << 1) /* Interrupt mask ep 1 */
164 #define UICR0_IM2 (1 << 2) /* Interrupt mask ep 2 */
165 #define UICR0_IM3 (1 << 3) /* Interrupt mask ep 3 */
166 #define UICR0_IM4 (1 << 4) /* Interrupt mask ep 4 */
167 #define UICR0_IM5 (1 << 5) /* Interrupt mask ep 5 */
168 #define UICR0_IM6 (1 << 6) /* Interrupt mask ep 6 */
169 #define UICR0_IM7 (1 << 7) /* Interrupt mask ep 7 */
171 #define UICR1_IM8 (1 << 0) /* Interrupt mask ep 8 */
172 #define UICR1_IM9 (1 << 1) /* Interrupt mask ep 9 */
173 #define UICR1_IM10 (1 << 2) /* Interrupt mask ep 10 */
174 #define UICR1_IM11 (1 << 3) /* Interrupt mask ep 11 */
175 #define UICR1_IM12 (1 << 4) /* Interrupt mask ep 12 */
176 #define UICR1_IM13 (1 << 5) /* Interrupt mask ep 13 */
177 #define UICR1_IM14 (1 << 6) /* Interrupt mask ep 14 */
178 #define UICR1_IM15 (1 << 7) /* Interrupt mask ep 15 */
180 #define USIR0_IR0 (1 << 0) /* Interrupt request ep 0 */
181 #define USIR0_IR1 (1 << 1) /* Interrupt request ep 1 */
182 #define USIR0_IR2 (1 << 2) /* Interrupt request ep 2 */
183 #define USIR0_IR3 (1 << 3) /* Interrupt request ep 3 */
184 #define USIR0_IR4 (1 << 4) /* Interrupt request ep 4 */
185 #define USIR0_IR5 (1 << 5) /* Interrupt request ep 5 */
186 #define USIR0_IR6 (1 << 6) /* Interrupt request ep 6 */
187 #define USIR0_IR7 (1 << 7) /* Interrupt request ep 7 */
189 #define USIR1_IR8 (1 << 0) /* Interrupt request ep 8 */
190 #define USIR1_IR9 (1 << 1) /* Interrupt request ep 9 */
191 #define USIR1_IR10 (1 << 2) /* Interrupt request ep 10 */
192 #define USIR1_IR11 (1 << 3) /* Interrupt request ep 11 */
193 #define USIR1_IR12 (1 << 4) /* Interrupt request ep 12 */
194 #define USIR1_IR13 (1 << 5) /* Interrupt request ep 13 */
195 #define USIR1_IR14 (1 << 6) /* Interrupt request ep 14 */
196 #define USIR1_IR15 (1 << 7) /* Interrupt request ep 15 */
199 * This driver handles the USB Device Controller (UDC) in Intel's PXA 25x
200 * series processors. The UDC for the IXP 4xx series is very similar.
201 * There are fifteen endpoints, in addition to ep0.
203 * Such controller drivers work with a gadget driver. The gadget driver
204 * returns descriptors, implements configuration and data protocols used
205 * by the host to interact with this device, and allocates endpoints to
206 * the different protocol interfaces. The controller driver virtualizes
207 * usb hardware so that the gadget drivers will be more portable.
209 * This UDC hardware wants to implement a bit too much USB protocol, so
210 * it constrains the sorts of USB configuration change events that work.
211 * The errata for these chips are misleading; some "fixed" bugs from
212 * pxa250 a0/a1 b0/b1/b2 sure act like they're still there.
214 * Note that the UDC hardware supports DMA (except on IXP) but that's
215 * not used here. IN-DMA (to host) is simple enough, when the data is
216 * suitably aligned (16 bytes) ... the network stack doesn't do that,
217 * other software can. OUT-DMA is buggy in most chip versions, as well
218 * as poorly designed (data toggle not automatic). So this driver won't
219 * bother using DMA. (Mostly-working IN-DMA support was available in
220 * kernels before 2.6.23, but was never enabled or well tested.)
223 #define DRIVER_VERSION "30-June-2007"
224 #define DRIVER_DESC "PXA 25x USB Device Controller driver"
227 static const char driver_name
[] = "pxa25x_udc";
229 static const char ep0name
[] = "ep0";
232 #ifdef CONFIG_ARCH_IXP4XX
234 /* cpu-specific register addresses are compiled in to this code */
235 #ifdef CONFIG_ARCH_PXA
236 #error "Can't configure both IXP and PXA"
239 /* IXP doesn't yet support <linux/clk.h> */
240 #define clk_get(dev,name) NULL
241 #define clk_enable(clk) do { } while (0)
242 #define clk_disable(clk) do { } while (0)
243 #define clk_put(clk) do { } while (0)
247 #include "pxa25x_udc.h"
250 #ifdef CONFIG_USB_PXA25X_SMALL
251 #define SIZE_STR " (small)"
256 /* ---------------------------------------------------------------------------
257 * endpoint related parts of the api to the usb controller hardware,
258 * used by gadget driver; and the inner talker-to-hardware core.
259 * ---------------------------------------------------------------------------
262 static void pxa25x_ep_fifo_flush (struct usb_ep
*ep
);
263 static void nuke (struct pxa25x_ep
*, int status
);
265 /* one GPIO should control a D+ pullup, so host sees this device (or not) */
266 static void pullup_off(void)
268 struct pxa2xx_udc_mach_info
*mach
= the_controller
->mach
;
269 int off_level
= mach
->gpio_pullup_inverted
;
271 if (gpio_is_valid(mach
->gpio_pullup
))
272 gpio_set_value(mach
->gpio_pullup
, off_level
);
273 else if (mach
->udc_command
)
274 mach
->udc_command(PXA2XX_UDC_CMD_DISCONNECT
);
277 static void pullup_on(void)
279 struct pxa2xx_udc_mach_info
*mach
= the_controller
->mach
;
280 int on_level
= !mach
->gpio_pullup_inverted
;
282 if (gpio_is_valid(mach
->gpio_pullup
))
283 gpio_set_value(mach
->gpio_pullup
, on_level
);
284 else if (mach
->udc_command
)
285 mach
->udc_command(PXA2XX_UDC_CMD_CONNECT
);
288 #if defined(CONFIG_CPU_BIG_ENDIAN)
290 * IXP4xx has its buses wired up in a way that relies on never doing any
291 * byte swaps, independent of whether it runs in big-endian or little-endian
292 * mode, as explained by Krzysztof Hałasa.
294 * We only support pxa25x in little-endian mode, but it is very likely
295 * that it works the same way.
297 static inline void udc_set_reg(struct pxa25x_udc
*dev
, u32 reg
, u32 val
)
299 iowrite32be(val
, dev
->regs
+ reg
);
302 static inline u32
udc_get_reg(struct pxa25x_udc
*dev
, u32 reg
)
304 return ioread32be(dev
->regs
+ reg
);
307 static inline void udc_set_reg(struct pxa25x_udc
*dev
, u32 reg
, u32 val
)
309 writel(val
, dev
->regs
+ reg
);
312 static inline u32
udc_get_reg(struct pxa25x_udc
*dev
, u32 reg
)
314 return readl(dev
->regs
+ reg
);
318 static void pio_irq_enable(struct pxa25x_ep
*ep
)
320 u32 bEndpointAddress
= ep
->bEndpointAddress
& 0xf;
322 if (bEndpointAddress
< 8)
323 udc_set_reg(ep
->dev
, UICR0
, udc_get_reg(ep
->dev
, UICR0
) &
324 ~(1 << bEndpointAddress
));
326 bEndpointAddress
-= 8;
327 udc_set_reg(ep
->dev
, UICR1
, udc_get_reg(ep
->dev
, UICR1
) &
328 ~(1 << bEndpointAddress
));
332 static void pio_irq_disable(struct pxa25x_ep
*ep
)
334 u32 bEndpointAddress
= ep
->bEndpointAddress
& 0xf;
336 if (bEndpointAddress
< 8)
337 udc_set_reg(ep
->dev
, UICR0
, udc_get_reg(ep
->dev
, UICR0
) |
338 (1 << bEndpointAddress
));
340 bEndpointAddress
-= 8;
341 udc_set_reg(ep
->dev
, UICR1
, udc_get_reg(ep
->dev
, UICR1
) |
342 (1 << bEndpointAddress
));
346 /* The UDCCR reg contains mask and interrupt status bits,
347 * so using '|=' isn't safe as it may ack an interrupt.
349 #define UDCCR_MASK_BITS (UDCCR_REM | UDCCR_SRM | UDCCR_UDE)
351 static inline void udc_set_mask_UDCCR(struct pxa25x_udc
*dev
, int mask
)
353 u32 udccr
= udc_get_reg(dev
, UDCCR
);
355 udc_set_reg(dev
, (udccr
& UDCCR_MASK_BITS
) | (mask
& UDCCR_MASK_BITS
), UDCCR
);
358 static inline void udc_clear_mask_UDCCR(struct pxa25x_udc
*dev
, int mask
)
360 u32 udccr
= udc_get_reg(dev
, UDCCR
);
362 udc_set_reg(dev
, (udccr
& UDCCR_MASK_BITS
) & ~(mask
& UDCCR_MASK_BITS
), UDCCR
);
365 static inline void udc_ack_int_UDCCR(struct pxa25x_udc
*dev
, int mask
)
367 /* udccr contains the bits we dont want to change */
368 u32 udccr
= udc_get_reg(dev
, UDCCR
) & UDCCR_MASK_BITS
;
370 udc_set_reg(dev
, udccr
| (mask
& ~UDCCR_MASK_BITS
), UDCCR
);
373 static inline u32
udc_ep_get_UDCCS(struct pxa25x_ep
*ep
)
375 return udc_get_reg(ep
->dev
, ep
->regoff_udccs
);
378 static inline void udc_ep_set_UDCCS(struct pxa25x_ep
*ep
, u32 data
)
380 udc_set_reg(ep
->dev
, data
, ep
->regoff_udccs
);
383 static inline u32
udc_ep0_get_UDCCS(struct pxa25x_udc
*dev
)
385 return udc_get_reg(dev
, UDCCS0
);
388 static inline void udc_ep0_set_UDCCS(struct pxa25x_udc
*dev
, u32 data
)
390 udc_set_reg(dev
, data
, UDCCS0
);
393 static inline u32
udc_ep_get_UDDR(struct pxa25x_ep
*ep
)
395 return udc_get_reg(ep
->dev
, ep
->regoff_uddr
);
398 static inline void udc_ep_set_UDDR(struct pxa25x_ep
*ep
, u32 data
)
400 udc_set_reg(ep
->dev
, data
, ep
->regoff_uddr
);
403 static inline u32
udc_ep_get_UBCR(struct pxa25x_ep
*ep
)
405 return udc_get_reg(ep
->dev
, ep
->regoff_ubcr
);
409 * endpoint enable/disable
411 * we need to verify the descriptors used to enable endpoints. since pxa25x
412 * endpoint configurations are fixed, and are pretty much always enabled,
413 * there's not a lot to manage here.
415 * because pxa25x can't selectively initialize bulk (or interrupt) endpoints,
416 * (resetting endpoint halt and toggle), SET_INTERFACE is unusable except
417 * for a single interface (with only the default altsetting) and for gadget
418 * drivers that don't halt endpoints (not reset by set_interface). that also
419 * means that if you use ISO, you must violate the USB spec rule that all
420 * iso endpoints must be in non-default altsettings.
422 static int pxa25x_ep_enable (struct usb_ep
*_ep
,
423 const struct usb_endpoint_descriptor
*desc
)
425 struct pxa25x_ep
*ep
;
426 struct pxa25x_udc
*dev
;
428 ep
= container_of (_ep
, struct pxa25x_ep
, ep
);
429 if (!_ep
|| !desc
|| _ep
->name
== ep0name
430 || desc
->bDescriptorType
!= USB_DT_ENDPOINT
431 || ep
->bEndpointAddress
!= desc
->bEndpointAddress
432 || ep
->fifo_size
< usb_endpoint_maxp (desc
)) {
433 DMSG("%s, bad ep or descriptor\n", __func__
);
437 /* xfer types must match, except that interrupt ~= bulk */
438 if (ep
->bmAttributes
!= desc
->bmAttributes
439 && ep
->bmAttributes
!= USB_ENDPOINT_XFER_BULK
440 && desc
->bmAttributes
!= USB_ENDPOINT_XFER_INT
) {
441 DMSG("%s, %s type mismatch\n", __func__
, _ep
->name
);
445 /* hardware _could_ do smaller, but driver doesn't */
446 if ((desc
->bmAttributes
== USB_ENDPOINT_XFER_BULK
447 && usb_endpoint_maxp (desc
)
449 || !desc
->wMaxPacketSize
) {
450 DMSG("%s, bad %s maxpacket\n", __func__
, _ep
->name
);
455 if (!dev
->driver
|| dev
->gadget
.speed
== USB_SPEED_UNKNOWN
) {
456 DMSG("%s, bogus device state\n", __func__
);
463 ep
->ep
.maxpacket
= usb_endpoint_maxp (desc
);
465 /* flush fifo (mostly for OUT buffers) */
466 pxa25x_ep_fifo_flush (_ep
);
468 /* ... reset halt state too, if we could ... */
470 DBG(DBG_VERBOSE
, "enabled %s\n", _ep
->name
);
474 static int pxa25x_ep_disable (struct usb_ep
*_ep
)
476 struct pxa25x_ep
*ep
;
479 ep
= container_of (_ep
, struct pxa25x_ep
, ep
);
480 if (!_ep
|| !ep
->ep
.desc
) {
481 DMSG("%s, %s not enabled\n", __func__
,
482 _ep
? ep
->ep
.name
: NULL
);
485 local_irq_save(flags
);
487 nuke (ep
, -ESHUTDOWN
);
489 /* flush fifo (mostly for IN buffers) */
490 pxa25x_ep_fifo_flush (_ep
);
495 local_irq_restore(flags
);
496 DBG(DBG_VERBOSE
, "%s disabled\n", _ep
->name
);
500 /*-------------------------------------------------------------------------*/
502 /* for the pxa25x, these can just wrap kmalloc/kfree. gadget drivers
503 * must still pass correctly initialized endpoints, since other controller
504 * drivers may care about how it's currently set up (dma issues etc).
508 * pxa25x_ep_alloc_request - allocate a request data structure
510 static struct usb_request
*
511 pxa25x_ep_alloc_request (struct usb_ep
*_ep
, gfp_t gfp_flags
)
513 struct pxa25x_request
*req
;
515 req
= kzalloc(sizeof(*req
), gfp_flags
);
519 INIT_LIST_HEAD (&req
->queue
);
525 * pxa25x_ep_free_request - deallocate a request data structure
528 pxa25x_ep_free_request (struct usb_ep
*_ep
, struct usb_request
*_req
)
530 struct pxa25x_request
*req
;
532 req
= container_of (_req
, struct pxa25x_request
, req
);
533 WARN_ON(!list_empty (&req
->queue
));
537 /*-------------------------------------------------------------------------*/
540 * done - retire a request; caller blocked irqs
542 static void done(struct pxa25x_ep
*ep
, struct pxa25x_request
*req
, int status
)
544 unsigned stopped
= ep
->stopped
;
546 list_del_init(&req
->queue
);
548 if (likely (req
->req
.status
== -EINPROGRESS
))
549 req
->req
.status
= status
;
551 status
= req
->req
.status
;
553 if (status
&& status
!= -ESHUTDOWN
)
554 DBG(DBG_VERBOSE
, "complete %s req %p stat %d len %u/%u\n",
555 ep
->ep
.name
, &req
->req
, status
,
556 req
->req
.actual
, req
->req
.length
);
558 /* don't modify queue heads during completion callback */
560 usb_gadget_giveback_request(&ep
->ep
, &req
->req
);
561 ep
->stopped
= stopped
;
565 static inline void ep0_idle (struct pxa25x_udc
*dev
)
567 dev
->ep0state
= EP0_IDLE
;
571 write_packet(struct pxa25x_ep
*ep
, struct pxa25x_request
*req
, unsigned max
)
574 unsigned length
, count
;
576 buf
= req
->req
.buf
+ req
->req
.actual
;
579 /* how big will this packet be? */
580 length
= min(req
->req
.length
- req
->req
.actual
, max
);
581 req
->req
.actual
+= length
;
584 while (likely(count
--))
585 udc_ep_set_UDDR(ep
, *buf
++);
591 * write to an IN endpoint fifo, as many packets as possible.
592 * irqs will use this to write the rest later.
593 * caller guarantees at least one packet buffer is ready (or a zlp).
596 write_fifo (struct pxa25x_ep
*ep
, struct pxa25x_request
*req
)
600 max
= usb_endpoint_maxp(ep
->ep
.desc
);
603 int is_last
, is_short
;
605 count
= write_packet(ep
, req
, max
);
607 /* last packet is usually short (or a zlp) */
608 if (unlikely (count
!= max
))
609 is_last
= is_short
= 1;
611 if (likely(req
->req
.length
!= req
->req
.actual
)
616 /* interrupt/iso maxpacket may not fill the fifo */
617 is_short
= unlikely (max
< ep
->fifo_size
);
620 DBG(DBG_VERY_NOISY
, "wrote %s %d bytes%s%s %d left %p\n",
622 is_last
? "/L" : "", is_short
? "/S" : "",
623 req
->req
.length
- req
->req
.actual
, req
);
625 /* let loose that packet. maybe try writing another one,
626 * double buffering might work. TSP, TPC, and TFS
627 * bit values are the same for all normal IN endpoints.
629 udc_ep_set_UDCCS(ep
, UDCCS_BI_TPC
);
631 udc_ep_set_UDCCS(ep
, UDCCS_BI_TSP
);
633 /* requests complete when all IN data is in the FIFO */
636 if (list_empty(&ep
->queue
))
641 // TODO experiment: how robust can fifo mode tweaking be?
642 // double buffering is off in the default fifo mode, which
643 // prevents TFS from being set here.
645 } while (udc_ep_get_UDCCS(ep
) & UDCCS_BI_TFS
);
649 /* caller asserts req->pending (ep0 irq status nyet cleared); starts
650 * ep0 data stage. these chips want very simple state transitions.
653 void ep0start(struct pxa25x_udc
*dev
, u32 flags
, const char *tag
)
655 udc_ep0_set_UDCCS(dev
, flags
|UDCCS0_SA
|UDCCS0_OPR
);
656 udc_set_reg(dev
, USIR0
, USIR0_IR0
);
657 dev
->req_pending
= 0;
658 DBG(DBG_VERY_NOISY
, "%s %s, %02x/%02x\n",
659 __func__
, tag
, udc_ep0_get_UDCCS(dev
), flags
);
663 write_ep0_fifo (struct pxa25x_ep
*ep
, struct pxa25x_request
*req
)
665 struct pxa25x_udc
*dev
= ep
->dev
;
669 count
= write_packet(&dev
->ep
[0], req
, EP0_FIFO_SIZE
);
670 ep
->dev
->stats
.write
.bytes
+= count
;
672 /* last packet "must be" short (or a zlp) */
673 is_short
= (count
!= EP0_FIFO_SIZE
);
675 DBG(DBG_VERY_NOISY
, "ep0in %d bytes %d left %p\n", count
,
676 req
->req
.length
- req
->req
.actual
, req
);
678 if (unlikely (is_short
)) {
679 if (ep
->dev
->req_pending
)
680 ep0start(ep
->dev
, UDCCS0_IPR
, "short IN");
682 udc_ep0_set_UDCCS(dev
, UDCCS0_IPR
);
684 count
= req
->req
.length
;
687 #ifndef CONFIG_ARCH_IXP4XX
689 /* This seems to get rid of lost status irqs in some cases:
690 * host responds quickly, or next request involves config
691 * change automagic, or should have been hidden, or ...
693 * FIXME get rid of all udelays possible...
695 if (count
>= EP0_FIFO_SIZE
) {
698 if ((udc_ep0_get_UDCCS(dev
) & UDCCS0_OPR
) != 0) {
699 /* clear OPR, generate ack */
700 udc_ep0_set_UDCCS(dev
, UDCCS0_OPR
);
709 } else if (ep
->dev
->req_pending
)
710 ep0start(ep
->dev
, 0, "IN");
716 * read_fifo - unload packet(s) from the fifo we use for usb OUT
717 * transfers and put them into the request. caller should have made
718 * sure there's at least one packet ready.
720 * returns true if the request completed because of short packet or the
721 * request buffer having filled (and maybe overran till end-of-packet).
724 read_fifo (struct pxa25x_ep
*ep
, struct pxa25x_request
*req
)
729 unsigned bufferspace
, count
, is_short
;
731 /* make sure there's a packet in the FIFO.
732 * UDCCS_{BO,IO}_RPC are all the same bit value.
733 * UDCCS_{BO,IO}_RNE are all the same bit value.
735 udccs
= udc_ep_get_UDCCS(ep
);
736 if (unlikely ((udccs
& UDCCS_BO_RPC
) == 0))
738 buf
= req
->req
.buf
+ req
->req
.actual
;
740 bufferspace
= req
->req
.length
- req
->req
.actual
;
742 /* read all bytes from this packet */
743 if (likely (udccs
& UDCCS_BO_RNE
)) {
744 count
= 1 + (0x0ff & udc_ep_get_UBCR(ep
));
745 req
->req
.actual
+= min (count
, bufferspace
);
748 is_short
= (count
< ep
->ep
.maxpacket
);
749 DBG(DBG_VERY_NOISY
, "read %s %02x, %d bytes%s req %p %d/%d\n",
750 ep
->ep
.name
, udccs
, count
,
751 is_short
? "/S" : "",
752 req
, req
->req
.actual
, req
->req
.length
);
753 while (likely (count
-- != 0)) {
754 u8 byte
= (u8
) udc_ep_get_UDDR(ep
);
756 if (unlikely (bufferspace
== 0)) {
757 /* this happens when the driver's buffer
758 * is smaller than what the host sent.
759 * discard the extra data.
761 if (req
->req
.status
!= -EOVERFLOW
)
762 DMSG("%s overflow %d\n",
764 req
->req
.status
= -EOVERFLOW
;
770 udc_ep_set_UDCCS(ep
, UDCCS_BO_RPC
);
771 /* RPC/RSP/RNE could now reflect the other packet buffer */
773 /* iso is one request per packet */
774 if (ep
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
) {
775 if (udccs
& UDCCS_IO_ROF
)
776 req
->req
.status
= -EHOSTUNREACH
;
777 /* more like "is_done" */
782 if (is_short
|| req
->req
.actual
== req
->req
.length
) {
784 if (list_empty(&ep
->queue
))
789 /* finished that packet. the next one may be waiting... */
795 * special ep0 version of the above. no UBCR0 or double buffering; status
796 * handshaking is magic. most device protocols don't need control-OUT.
797 * CDC vendor commands (and RNDIS), mass storage CB/CBI, and some other
798 * protocols do use them.
801 read_ep0_fifo (struct pxa25x_ep
*ep
, struct pxa25x_request
*req
)
804 unsigned bufferspace
;
806 buf
= req
->req
.buf
+ req
->req
.actual
;
807 bufferspace
= req
->req
.length
- req
->req
.actual
;
809 while (udc_ep_get_UDCCS(ep
) & UDCCS0_RNE
) {
812 if (unlikely (bufferspace
== 0)) {
813 /* this happens when the driver's buffer
814 * is smaller than what the host sent.
815 * discard the extra data.
817 if (req
->req
.status
!= -EOVERFLOW
)
818 DMSG("%s overflow\n", ep
->ep
.name
);
819 req
->req
.status
= -EOVERFLOW
;
827 udc_ep_set_UDCCS(ep
, UDCCS0_OPR
| UDCCS0_IPR
);
830 if (req
->req
.actual
>= req
->req
.length
)
833 /* finished that packet. the next one may be waiting... */
837 /*-------------------------------------------------------------------------*/
840 pxa25x_ep_queue(struct usb_ep
*_ep
, struct usb_request
*_req
, gfp_t gfp_flags
)
842 struct pxa25x_request
*req
;
843 struct pxa25x_ep
*ep
;
844 struct pxa25x_udc
*dev
;
847 req
= container_of(_req
, struct pxa25x_request
, req
);
848 if (unlikely (!_req
|| !_req
->complete
|| !_req
->buf
849 || !list_empty(&req
->queue
))) {
850 DMSG("%s, bad params\n", __func__
);
854 ep
= container_of(_ep
, struct pxa25x_ep
, ep
);
855 if (unlikely(!_ep
|| (!ep
->ep
.desc
&& ep
->ep
.name
!= ep0name
))) {
856 DMSG("%s, bad ep\n", __func__
);
861 if (unlikely (!dev
->driver
862 || dev
->gadget
.speed
== USB_SPEED_UNKNOWN
)) {
863 DMSG("%s, bogus device state\n", __func__
);
867 /* iso is always one packet per request, that's the only way
868 * we can report per-packet status. that also helps with dma.
870 if (unlikely (ep
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
871 && req
->req
.length
> usb_endpoint_maxp(ep
->ep
.desc
)))
874 DBG(DBG_NOISY
, "%s queue req %p, len %d buf %p\n",
875 _ep
->name
, _req
, _req
->length
, _req
->buf
);
877 local_irq_save(flags
);
879 _req
->status
= -EINPROGRESS
;
882 /* kickstart this i/o queue? */
883 if (list_empty(&ep
->queue
) && !ep
->stopped
) {
884 if (ep
->ep
.desc
== NULL
/* ep0 */) {
885 unsigned length
= _req
->length
;
887 switch (dev
->ep0state
) {
888 case EP0_IN_DATA_PHASE
:
889 dev
->stats
.write
.ops
++;
890 if (write_ep0_fifo(ep
, req
))
894 case EP0_OUT_DATA_PHASE
:
895 dev
->stats
.read
.ops
++;
897 if (dev
->req_config
) {
898 DBG(DBG_VERBOSE
, "ep0 config ack%s\n",
899 dev
->has_cfr
? "" : " raced");
901 udc_set_reg(dev
, UDCCFR
, UDCCFR_AREN
|
902 UDCCFR_ACM
| UDCCFR_MB1
);
904 dev
->ep0state
= EP0_END_XFER
;
905 local_irq_restore (flags
);
908 if (dev
->req_pending
)
909 ep0start(dev
, UDCCS0_IPR
, "OUT");
910 if (length
== 0 || ((udc_ep0_get_UDCCS(dev
) & UDCCS0_RNE
) != 0
911 && read_ep0_fifo(ep
, req
))) {
919 DMSG("ep0 i/o, odd state %d\n", dev
->ep0state
);
920 local_irq_restore (flags
);
923 /* can the FIFO can satisfy the request immediately? */
924 } else if ((ep
->bEndpointAddress
& USB_DIR_IN
) != 0) {
925 if ((udc_ep_get_UDCCS(ep
) & UDCCS_BI_TFS
) != 0
926 && write_fifo(ep
, req
))
928 } else if ((udc_ep_get_UDCCS(ep
) & UDCCS_BO_RFS
) != 0
929 && read_fifo(ep
, req
)) {
933 if (likely(req
&& ep
->ep
.desc
))
937 /* pio or dma irq handler advances the queue. */
938 if (likely(req
!= NULL
))
939 list_add_tail(&req
->queue
, &ep
->queue
);
940 local_irq_restore(flags
);
947 * nuke - dequeue ALL requests
949 static void nuke(struct pxa25x_ep
*ep
, int status
)
951 struct pxa25x_request
*req
;
953 /* called with irqs blocked */
954 while (!list_empty(&ep
->queue
)) {
955 req
= list_entry(ep
->queue
.next
,
956 struct pxa25x_request
,
958 done(ep
, req
, status
);
965 /* dequeue JUST ONE request */
966 static int pxa25x_ep_dequeue(struct usb_ep
*_ep
, struct usb_request
*_req
)
968 struct pxa25x_ep
*ep
;
969 struct pxa25x_request
*req
;
972 ep
= container_of(_ep
, struct pxa25x_ep
, ep
);
973 if (!_ep
|| ep
->ep
.name
== ep0name
)
976 local_irq_save(flags
);
978 /* make sure it's actually queued on this endpoint */
979 list_for_each_entry (req
, &ep
->queue
, queue
) {
980 if (&req
->req
== _req
)
983 if (&req
->req
!= _req
) {
984 local_irq_restore(flags
);
988 done(ep
, req
, -ECONNRESET
);
990 local_irq_restore(flags
);
994 /*-------------------------------------------------------------------------*/
996 static int pxa25x_ep_set_halt(struct usb_ep
*_ep
, int value
)
998 struct pxa25x_ep
*ep
;
1001 ep
= container_of(_ep
, struct pxa25x_ep
, ep
);
1003 || (!ep
->ep
.desc
&& ep
->ep
.name
!= ep0name
))
1004 || ep
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
) {
1005 DMSG("%s, bad ep\n", __func__
);
1009 /* this path (reset toggle+halt) is needed to implement
1010 * SET_INTERFACE on normal hardware. but it can't be
1011 * done from software on the PXA UDC, and the hardware
1012 * forgets to do it as part of SET_INTERFACE automagic.
1014 DMSG("only host can clear %s halt\n", _ep
->name
);
1018 local_irq_save(flags
);
1020 if ((ep
->bEndpointAddress
& USB_DIR_IN
) != 0
1021 && ((udc_ep_get_UDCCS(ep
) & UDCCS_BI_TFS
) == 0
1022 || !list_empty(&ep
->queue
))) {
1023 local_irq_restore(flags
);
1027 /* FST bit is the same for control, bulk in, bulk out, interrupt in */
1028 udc_ep_set_UDCCS(ep
, UDCCS_BI_FST
|UDCCS_BI_FTF
);
1030 /* ep0 needs special care */
1032 start_watchdog(ep
->dev
);
1033 ep
->dev
->req_pending
= 0;
1034 ep
->dev
->ep0state
= EP0_STALL
;
1036 /* and bulk/intr endpoints like dropping stalls too */
1039 for (i
= 0; i
< 1000; i
+= 20) {
1040 if (udc_ep_get_UDCCS(ep
) & UDCCS_BI_SST
)
1045 local_irq_restore(flags
);
1047 DBG(DBG_VERBOSE
, "%s halt\n", _ep
->name
);
1051 static int pxa25x_ep_fifo_status(struct usb_ep
*_ep
)
1053 struct pxa25x_ep
*ep
;
1055 ep
= container_of(_ep
, struct pxa25x_ep
, ep
);
1057 DMSG("%s, bad ep\n", __func__
);
1060 /* pxa can't report unclaimed bytes from IN fifos */
1061 if ((ep
->bEndpointAddress
& USB_DIR_IN
) != 0)
1063 if (ep
->dev
->gadget
.speed
== USB_SPEED_UNKNOWN
1064 || (udc_ep_get_UDCCS(ep
) & UDCCS_BO_RFS
) == 0)
1067 return (udc_ep_get_UBCR(ep
) & 0xfff) + 1;
1070 static void pxa25x_ep_fifo_flush(struct usb_ep
*_ep
)
1072 struct pxa25x_ep
*ep
;
1074 ep
= container_of(_ep
, struct pxa25x_ep
, ep
);
1075 if (!_ep
|| ep
->ep
.name
== ep0name
|| !list_empty(&ep
->queue
)) {
1076 DMSG("%s, bad ep\n", __func__
);
1080 /* toggle and halt bits stay unchanged */
1082 /* for OUT, just read and discard the FIFO contents. */
1083 if ((ep
->bEndpointAddress
& USB_DIR_IN
) == 0) {
1084 while (((udc_ep_get_UDCCS(ep
)) & UDCCS_BO_RNE
) != 0)
1085 (void)udc_ep_get_UDDR(ep
);
1089 /* most IN status is the same, but ISO can't stall */
1090 udc_ep_set_UDCCS(ep
, UDCCS_BI_TPC
|UDCCS_BI_FTF
|UDCCS_BI_TUR
1091 | (ep
->bmAttributes
== USB_ENDPOINT_XFER_ISOC
1092 ? 0 : UDCCS_BI_SST
));
1096 static struct usb_ep_ops pxa25x_ep_ops
= {
1097 .enable
= pxa25x_ep_enable
,
1098 .disable
= pxa25x_ep_disable
,
1100 .alloc_request
= pxa25x_ep_alloc_request
,
1101 .free_request
= pxa25x_ep_free_request
,
1103 .queue
= pxa25x_ep_queue
,
1104 .dequeue
= pxa25x_ep_dequeue
,
1106 .set_halt
= pxa25x_ep_set_halt
,
1107 .fifo_status
= pxa25x_ep_fifo_status
,
1108 .fifo_flush
= pxa25x_ep_fifo_flush
,
1112 /* ---------------------------------------------------------------------------
1113 * device-scoped parts of the api to the usb controller hardware
1114 * ---------------------------------------------------------------------------
1117 static int pxa25x_udc_get_frame(struct usb_gadget
*_gadget
)
1119 struct pxa25x_udc
*dev
;
1121 dev
= container_of(_gadget
, struct pxa25x_udc
, gadget
);
1122 return ((udc_get_reg(dev
, UFNRH
) & 0x07) << 8) |
1123 (udc_get_reg(dev
, UFNRL
) & 0xff);
1126 static int pxa25x_udc_wakeup(struct usb_gadget
*_gadget
)
1128 struct pxa25x_udc
*udc
;
1130 udc
= container_of(_gadget
, struct pxa25x_udc
, gadget
);
1132 /* host may not have enabled remote wakeup */
1133 if ((udc_ep0_get_UDCCS(udc
) & UDCCS0_DRWF
) == 0)
1134 return -EHOSTUNREACH
;
1135 udc_set_mask_UDCCR(udc
, UDCCR_RSM
);
1139 static void stop_activity(struct pxa25x_udc
*, struct usb_gadget_driver
*);
1140 static void udc_enable (struct pxa25x_udc
*);
1141 static void udc_disable(struct pxa25x_udc
*);
1143 /* We disable the UDC -- and its 48 MHz clock -- whenever it's not
1146 static int pullup(struct pxa25x_udc
*udc
)
1148 int is_active
= udc
->vbus
&& udc
->pullup
&& !udc
->suspended
;
1149 DMSG("%s\n", is_active
? "active" : "inactive");
1153 /* Enable clock for USB device */
1154 clk_enable(udc
->clk
);
1159 if (udc
->gadget
.speed
!= USB_SPEED_UNKNOWN
) {
1160 DMSG("disconnect %s\n", udc
->driver
1161 ? udc
->driver
->driver
.name
1163 stop_activity(udc
, udc
->driver
);
1166 /* Disable clock for USB device */
1167 clk_disable(udc
->clk
);
1175 /* VBUS reporting logically comes from a transceiver */
1176 static int pxa25x_udc_vbus_session(struct usb_gadget
*_gadget
, int is_active
)
1178 struct pxa25x_udc
*udc
;
1180 udc
= container_of(_gadget
, struct pxa25x_udc
, gadget
);
1181 udc
->vbus
= is_active
;
1182 DMSG("vbus %s\n", is_active
? "supplied" : "inactive");
1187 /* drivers may have software control over D+ pullup */
1188 static int pxa25x_udc_pullup(struct usb_gadget
*_gadget
, int is_active
)
1190 struct pxa25x_udc
*udc
;
1192 udc
= container_of(_gadget
, struct pxa25x_udc
, gadget
);
1194 /* not all boards support pullup control */
1195 if (!gpio_is_valid(udc
->mach
->gpio_pullup
) && !udc
->mach
->udc_command
)
1198 udc
->pullup
= (is_active
!= 0);
1203 /* boards may consume current from VBUS, up to 100-500mA based on config.
1204 * the 500uA suspend ceiling means that exclusively vbus-powered PXA designs
1205 * violate USB specs.
1207 static int pxa25x_udc_vbus_draw(struct usb_gadget
*_gadget
, unsigned mA
)
1209 struct pxa25x_udc
*udc
;
1211 udc
= container_of(_gadget
, struct pxa25x_udc
, gadget
);
1213 if (!IS_ERR_OR_NULL(udc
->transceiver
))
1214 return usb_phy_set_power(udc
->transceiver
, mA
);
1218 static int pxa25x_udc_start(struct usb_gadget
*g
,
1219 struct usb_gadget_driver
*driver
);
1220 static int pxa25x_udc_stop(struct usb_gadget
*g
);
1222 static const struct usb_gadget_ops pxa25x_udc_ops
= {
1223 .get_frame
= pxa25x_udc_get_frame
,
1224 .wakeup
= pxa25x_udc_wakeup
,
1225 .vbus_session
= pxa25x_udc_vbus_session
,
1226 .pullup
= pxa25x_udc_pullup
,
1227 .vbus_draw
= pxa25x_udc_vbus_draw
,
1228 .udc_start
= pxa25x_udc_start
,
1229 .udc_stop
= pxa25x_udc_stop
,
1232 /*-------------------------------------------------------------------------*/
1234 #ifdef CONFIG_USB_GADGET_DEBUG_FS
1236 static int udc_debug_show(struct seq_file
*m
, void *_d
)
1238 struct pxa25x_udc
*dev
= m
->private;
1239 unsigned long flags
;
1243 local_irq_save(flags
);
1245 /* basic device status */
1246 seq_printf(m
, DRIVER_DESC
"\n"
1247 "%s version: %s\nGadget driver: %s\nHost %s\n\n",
1248 driver_name
, DRIVER_VERSION SIZE_STR
"(pio)",
1249 dev
->driver
? dev
->driver
->driver
.name
: "(none)",
1250 dev
->gadget
.speed
== USB_SPEED_FULL
? "full speed" : "disconnected");
1252 /* registers for device and ep0 */
1254 "uicr %02X.%02X, usir %02X.%02x, ufnr %02X.%02X\n",
1255 udc_get_reg(dev
, UICR1
), udc_get_reg(dev
, UICR0
),
1256 udc_get_reg(dev
, USIR1
), udc_get_reg(dev
, USIR0
),
1257 udc_get_reg(dev
, UFNRH
), udc_get_reg(dev
, UFNRL
));
1259 tmp
= udc_get_reg(dev
, UDCCR
);
1261 "udccr %02X =%s%s%s%s%s%s%s%s\n", tmp
,
1262 (tmp
& UDCCR_REM
) ? " rem" : "",
1263 (tmp
& UDCCR_RSTIR
) ? " rstir" : "",
1264 (tmp
& UDCCR_SRM
) ? " srm" : "",
1265 (tmp
& UDCCR_SUSIR
) ? " susir" : "",
1266 (tmp
& UDCCR_RESIR
) ? " resir" : "",
1267 (tmp
& UDCCR_RSM
) ? " rsm" : "",
1268 (tmp
& UDCCR_UDA
) ? " uda" : "",
1269 (tmp
& UDCCR_UDE
) ? " ude" : "");
1271 tmp
= udc_ep0_get_UDCCS(dev
);
1273 "udccs0 %02X =%s%s%s%s%s%s%s%s\n", tmp
,
1274 (tmp
& UDCCS0_SA
) ? " sa" : "",
1275 (tmp
& UDCCS0_RNE
) ? " rne" : "",
1276 (tmp
& UDCCS0_FST
) ? " fst" : "",
1277 (tmp
& UDCCS0_SST
) ? " sst" : "",
1278 (tmp
& UDCCS0_DRWF
) ? " dwrf" : "",
1279 (tmp
& UDCCS0_FTF
) ? " ftf" : "",
1280 (tmp
& UDCCS0_IPR
) ? " ipr" : "",
1281 (tmp
& UDCCS0_OPR
) ? " opr" : "");
1284 tmp
= udc_get_reg(dev
, UDCCFR
);
1286 "udccfr %02X =%s%s\n", tmp
,
1287 (tmp
& UDCCFR_AREN
) ? " aren" : "",
1288 (tmp
& UDCCFR_ACM
) ? " acm" : "");
1291 if (dev
->gadget
.speed
!= USB_SPEED_FULL
|| !dev
->driver
)
1294 seq_printf(m
, "ep0 IN %lu/%lu, OUT %lu/%lu\nirqs %lu\n\n",
1295 dev
->stats
.write
.bytes
, dev
->stats
.write
.ops
,
1296 dev
->stats
.read
.bytes
, dev
->stats
.read
.ops
,
1299 /* dump endpoint queues */
1300 for (i
= 0; i
< PXA_UDC_NUM_ENDPOINTS
; i
++) {
1301 struct pxa25x_ep
*ep
= &dev
->ep
[i
];
1302 struct pxa25x_request
*req
;
1305 const struct usb_endpoint_descriptor
*desc
;
1310 tmp
= udc_ep_get_UDCCS(&dev
->ep
[i
]);
1312 "%s max %d %s udccs %02x irqs %lu\n",
1313 ep
->ep
.name
, usb_endpoint_maxp(desc
),
1314 "pio", tmp
, ep
->pio_irqs
);
1315 /* TODO translate all five groups of udccs bits! */
1317 } else /* ep0 should only have one transfer queued */
1318 seq_printf(m
, "ep0 max 16 pio irqs %lu\n",
1321 if (list_empty(&ep
->queue
)) {
1322 seq_printf(m
, "\t(nothing queued)\n");
1325 list_for_each_entry(req
, &ep
->queue
, queue
) {
1327 "\treq %p len %d/%d buf %p\n",
1328 &req
->req
, req
->req
.actual
,
1329 req
->req
.length
, req
->req
.buf
);
1334 local_irq_restore(flags
);
1337 DEFINE_SHOW_ATTRIBUTE(udc_debug
);
1339 #define create_debug_files(dev) \
1341 dev->debugfs_udc = debugfs_create_file(dev->gadget.name, \
1342 S_IRUGO, NULL, dev, &udc_debug_fops); \
1344 #define remove_debug_files(dev) debugfs_remove(dev->debugfs_udc)
1346 #else /* !CONFIG_USB_GADGET_DEBUG_FILES */
1348 #define create_debug_files(dev) do {} while (0)
1349 #define remove_debug_files(dev) do {} while (0)
1351 #endif /* CONFIG_USB_GADGET_DEBUG_FILES */
1353 /*-------------------------------------------------------------------------*/
1356 * udc_disable - disable USB device controller
1358 static void udc_disable(struct pxa25x_udc
*dev
)
1360 /* block all irqs */
1361 udc_set_mask_UDCCR(dev
, UDCCR_SRM
|UDCCR_REM
);
1362 udc_set_reg(dev
, UICR0
, 0xff);
1363 udc_set_reg(dev
, UICR1
, 0xff);
1364 udc_set_reg(dev
, UFNRH
, UFNRH_SIM
);
1366 /* if hardware supports it, disconnect from usb */
1369 udc_clear_mask_UDCCR(dev
, UDCCR_UDE
);
1372 dev
->gadget
.speed
= USB_SPEED_UNKNOWN
;
1377 * udc_reinit - initialize software state
1379 static void udc_reinit(struct pxa25x_udc
*dev
)
1383 /* device/ep0 records init */
1384 INIT_LIST_HEAD (&dev
->gadget
.ep_list
);
1385 INIT_LIST_HEAD (&dev
->gadget
.ep0
->ep_list
);
1386 dev
->ep0state
= EP0_IDLE
;
1387 dev
->gadget
.quirk_altset_not_supp
= 1;
1389 /* basic endpoint records init */
1390 for (i
= 0; i
< PXA_UDC_NUM_ENDPOINTS
; i
++) {
1391 struct pxa25x_ep
*ep
= &dev
->ep
[i
];
1394 list_add_tail (&ep
->ep
.ep_list
, &dev
->gadget
.ep_list
);
1398 INIT_LIST_HEAD (&ep
->queue
);
1400 usb_ep_set_maxpacket_limit(&ep
->ep
, ep
->ep
.maxpacket
);
1403 /* the rest was statically initialized, and is read-only */
1406 /* until it's enabled, this UDC should be completely invisible
1409 static void udc_enable (struct pxa25x_udc
*dev
)
1411 udc_clear_mask_UDCCR(dev
, UDCCR_UDE
);
1413 /* try to clear these bits before we enable the udc */
1414 udc_ack_int_UDCCR(dev
, UDCCR_SUSIR
|/*UDCCR_RSTIR|*/UDCCR_RESIR
);
1417 dev
->gadget
.speed
= USB_SPEED_UNKNOWN
;
1418 dev
->stats
.irqs
= 0;
1421 * sequence taken from chapter 12.5.10, PXA250 AppProcDevManual:
1423 * - if RESET is already in progress, ack interrupt
1424 * - unmask reset interrupt
1426 udc_set_mask_UDCCR(dev
, UDCCR_UDE
);
1427 if (!(udc_get_reg(dev
, UDCCR
) & UDCCR_UDA
))
1428 udc_ack_int_UDCCR(dev
, UDCCR_RSTIR
);
1430 if (dev
->has_cfr
/* UDC_RES2 is defined */) {
1431 /* pxa255 (a0+) can avoid a set_config race that could
1432 * prevent gadget drivers from configuring correctly
1434 udc_set_reg(dev
, UDCCFR
, UDCCFR_ACM
| UDCCFR_MB1
);
1436 /* "USB test mode" for pxa250 errata 40-42 (stepping a0, a1)
1437 * which could result in missing packets and interrupts.
1438 * supposedly one bit per endpoint, controlling whether it
1439 * double buffers or not; ACM/AREN bits fit into the holes.
1440 * zero bits (like USIR0_IRx) disable double buffering.
1442 udc_set_reg(dev
, UDC_RES1
, 0x00);
1443 udc_set_reg(dev
, UDC_RES2
, 0x00);
1446 /* enable suspend/resume and reset irqs */
1447 udc_clear_mask_UDCCR(dev
, UDCCR_SRM
| UDCCR_REM
);
1449 /* enable ep0 irqs */
1450 udc_set_reg(dev
, UICR0
, udc_get_reg(dev
, UICR0
) & ~UICR0_IM0
);
1452 /* if hardware supports it, pullup D+ and wait for reset */
1457 /* when a driver is successfully registered, it will receive
1458 * control requests including set_configuration(), which enables
1459 * non-control requests. then usb traffic follows until a
1460 * disconnect is reported. then a host may connect again, or
1461 * the driver might get unbound.
1463 static int pxa25x_udc_start(struct usb_gadget
*g
,
1464 struct usb_gadget_driver
*driver
)
1466 struct pxa25x_udc
*dev
= to_pxa25x(g
);
1469 /* first hook up the driver ... */
1470 dev
->driver
= driver
;
1473 /* ... then enable host detection and ep0; and we're ready
1474 * for set_configuration as well as eventual disconnect.
1476 /* connect to bus through transceiver */
1477 if (!IS_ERR_OR_NULL(dev
->transceiver
)) {
1478 retval
= otg_set_peripheral(dev
->transceiver
->otg
,
1491 reset_gadget(struct pxa25x_udc
*dev
, struct usb_gadget_driver
*driver
)
1495 /* don't disconnect drivers more than once */
1496 if (dev
->gadget
.speed
== USB_SPEED_UNKNOWN
)
1498 dev
->gadget
.speed
= USB_SPEED_UNKNOWN
;
1500 /* prevent new request submissions, kill any outstanding requests */
1501 for (i
= 0; i
< PXA_UDC_NUM_ENDPOINTS
; i
++) {
1502 struct pxa25x_ep
*ep
= &dev
->ep
[i
];
1505 nuke(ep
, -ESHUTDOWN
);
1507 del_timer_sync(&dev
->timer
);
1509 /* report reset; the driver is already quiesced */
1511 usb_gadget_udc_reset(&dev
->gadget
, driver
);
1513 /* re-init driver-visible data structures */
1518 stop_activity(struct pxa25x_udc
*dev
, struct usb_gadget_driver
*driver
)
1522 /* don't disconnect drivers more than once */
1523 if (dev
->gadget
.speed
== USB_SPEED_UNKNOWN
)
1525 dev
->gadget
.speed
= USB_SPEED_UNKNOWN
;
1527 /* prevent new request submissions, kill any outstanding requests */
1528 for (i
= 0; i
< PXA_UDC_NUM_ENDPOINTS
; i
++) {
1529 struct pxa25x_ep
*ep
= &dev
->ep
[i
];
1532 nuke(ep
, -ESHUTDOWN
);
1534 del_timer_sync(&dev
->timer
);
1536 /* report disconnect; the driver is already quiesced */
1538 driver
->disconnect(&dev
->gadget
);
1540 /* re-init driver-visible data structures */
1544 static int pxa25x_udc_stop(struct usb_gadget
*g
)
1546 struct pxa25x_udc
*dev
= to_pxa25x(g
);
1548 local_irq_disable();
1550 stop_activity(dev
, NULL
);
1553 if (!IS_ERR_OR_NULL(dev
->transceiver
))
1554 (void) otg_set_peripheral(dev
->transceiver
->otg
, NULL
);
1563 /*-------------------------------------------------------------------------*/
1565 #ifdef CONFIG_ARCH_LUBBOCK
1567 /* Lubbock has separate connect and disconnect irqs. More typical designs
1568 * use one GPIO as the VBUS IRQ, and another to control the D+ pullup.
1572 lubbock_vbus_irq(int irq
, void *_dev
)
1574 struct pxa25x_udc
*dev
= _dev
;
1579 case LUBBOCK_USB_IRQ
:
1581 disable_irq(LUBBOCK_USB_IRQ
);
1582 enable_irq(LUBBOCK_USB_DISC_IRQ
);
1584 case LUBBOCK_USB_DISC_IRQ
:
1586 disable_irq(LUBBOCK_USB_DISC_IRQ
);
1587 enable_irq(LUBBOCK_USB_IRQ
);
1593 pxa25x_udc_vbus_session(&dev
->gadget
, vbus
);
1600 /*-------------------------------------------------------------------------*/
1602 static inline void clear_ep_state (struct pxa25x_udc
*dev
)
1606 /* hardware SET_{CONFIGURATION,INTERFACE} automagic resets endpoint
1607 * fifos, and pending transactions mustn't be continued in any case.
1609 for (i
= 1; i
< PXA_UDC_NUM_ENDPOINTS
; i
++)
1610 nuke(&dev
->ep
[i
], -ECONNABORTED
);
1613 static void udc_watchdog(struct timer_list
*t
)
1615 struct pxa25x_udc
*dev
= from_timer(dev
, t
, timer
);
1617 local_irq_disable();
1618 if (dev
->ep0state
== EP0_STALL
1619 && (udc_ep0_get_UDCCS(dev
) & UDCCS0_FST
) == 0
1620 && (udc_ep0_get_UDCCS(dev
) & UDCCS0_SST
) == 0) {
1621 udc_ep0_set_UDCCS(dev
, UDCCS0_FST
|UDCCS0_FTF
);
1622 DBG(DBG_VERBOSE
, "ep0 re-stall\n");
1623 start_watchdog(dev
);
1628 static void handle_ep0 (struct pxa25x_udc
*dev
)
1630 u32 udccs0
= udc_ep0_get_UDCCS(dev
);
1631 struct pxa25x_ep
*ep
= &dev
->ep
[0];
1632 struct pxa25x_request
*req
;
1634 struct usb_ctrlrequest r
;
1639 if (list_empty(&ep
->queue
))
1642 req
= list_entry(ep
->queue
.next
, struct pxa25x_request
, queue
);
1644 /* clear stall status */
1645 if (udccs0
& UDCCS0_SST
) {
1647 udc_ep0_set_UDCCS(dev
, UDCCS0_SST
);
1648 del_timer(&dev
->timer
);
1652 /* previous request unfinished? non-error iff back-to-back ... */
1653 if ((udccs0
& UDCCS0_SA
) != 0 && dev
->ep0state
!= EP0_IDLE
) {
1655 del_timer(&dev
->timer
);
1659 switch (dev
->ep0state
) {
1661 /* late-breaking status? */
1662 udccs0
= udc_ep0_get_UDCCS(dev
);
1664 /* start control request? */
1665 if (likely((udccs0
& (UDCCS0_OPR
|UDCCS0_SA
|UDCCS0_RNE
))
1666 == (UDCCS0_OPR
|UDCCS0_SA
|UDCCS0_RNE
))) {
1671 /* read SETUP packet */
1672 for (i
= 0; i
< 8; i
++) {
1673 if (unlikely(!(udc_ep0_get_UDCCS(dev
) & UDCCS0_RNE
))) {
1675 DMSG("SETUP %d!\n", i
);
1678 u
.raw
[i
] = (u8
) UDDR0
;
1680 if (unlikely((udc_ep0_get_UDCCS(dev
) & UDCCS0_RNE
) != 0))
1684 DBG(DBG_VERBOSE
, "SETUP %02x.%02x v%04x i%04x l%04x\n",
1685 u
.r
.bRequestType
, u
.r
.bRequest
,
1686 le16_to_cpu(u
.r
.wValue
),
1687 le16_to_cpu(u
.r
.wIndex
),
1688 le16_to_cpu(u
.r
.wLength
));
1690 /* cope with automagic for some standard requests. */
1691 dev
->req_std
= (u
.r
.bRequestType
& USB_TYPE_MASK
)
1692 == USB_TYPE_STANDARD
;
1693 dev
->req_config
= 0;
1694 dev
->req_pending
= 1;
1695 switch (u
.r
.bRequest
) {
1696 /* hardware restricts gadget drivers here! */
1697 case USB_REQ_SET_CONFIGURATION
:
1698 if (u
.r
.bRequestType
== USB_RECIP_DEVICE
) {
1699 /* reflect hardware's automagic
1700 * up to the gadget driver.
1703 dev
->req_config
= 1;
1704 clear_ep_state(dev
);
1705 /* if !has_cfr, there's no synch
1706 * else use AREN (later) not SA|OPR
1707 * USIR0_IR0 acts edge sensitive
1711 /* ... and here, even more ... */
1712 case USB_REQ_SET_INTERFACE
:
1713 if (u
.r
.bRequestType
== USB_RECIP_INTERFACE
) {
1714 /* udc hardware is broken by design:
1715 * - altsetting may only be zero;
1716 * - hw resets all interfaces' eps;
1717 * - ep reset doesn't include halt(?).
1719 DMSG("broken set_interface (%d/%d)\n",
1720 le16_to_cpu(u
.r
.wIndex
),
1721 le16_to_cpu(u
.r
.wValue
));
1725 /* hardware was supposed to hide this */
1726 case USB_REQ_SET_ADDRESS
:
1727 if (u
.r
.bRequestType
== USB_RECIP_DEVICE
) {
1728 ep0start(dev
, 0, "address");
1734 if (u
.r
.bRequestType
& USB_DIR_IN
)
1735 dev
->ep0state
= EP0_IN_DATA_PHASE
;
1737 dev
->ep0state
= EP0_OUT_DATA_PHASE
;
1739 i
= dev
->driver
->setup(&dev
->gadget
, &u
.r
);
1741 /* hardware automagic preventing STALL... */
1742 if (dev
->req_config
) {
1743 /* hardware sometimes neglects to tell
1744 * tell us about config change events,
1745 * so later ones may fail...
1747 WARNING("config change %02x fail %d?\n",
1750 /* TODO experiment: if has_cfr,
1751 * hardware didn't ACK; maybe we
1752 * could actually STALL!
1755 DBG(DBG_VERBOSE
, "protocol STALL, "
1756 "%02x err %d\n", udc_ep0_get_UDCCS(dev
), i
);
1758 /* the watchdog timer helps deal with cases
1759 * where udc seems to clear FST wrongly, and
1760 * then NAKs instead of STALLing.
1762 ep0start(dev
, UDCCS0_FST
|UDCCS0_FTF
, "stall");
1763 start_watchdog(dev
);
1764 dev
->ep0state
= EP0_STALL
;
1766 /* deferred i/o == no response yet */
1767 } else if (dev
->req_pending
) {
1768 if (likely(dev
->ep0state
== EP0_IN_DATA_PHASE
1769 || dev
->req_std
|| u
.r
.wLength
))
1770 ep0start(dev
, 0, "defer");
1772 ep0start(dev
, UDCCS0_IPR
, "defer/IPR");
1775 /* expect at least one data or status stage irq */
1778 } else if (likely((udccs0
& (UDCCS0_OPR
|UDCCS0_SA
))
1779 == (UDCCS0_OPR
|UDCCS0_SA
))) {
1782 /* pxa210/250 erratum 131 for B0/B1 says RNE lies.
1783 * still observed on a pxa255 a0.
1785 DBG(DBG_VERBOSE
, "e131\n");
1788 /* read SETUP data, but don't trust it too much */
1789 for (i
= 0; i
< 8; i
++)
1790 u
.raw
[i
] = (u8
) UDDR0
;
1791 if ((u
.r
.bRequestType
& USB_RECIP_MASK
)
1794 if (u
.word
[0] == 0 && u
.word
[1] == 0)
1798 /* some random early IRQ:
1801 * - OPR got set, without SA (likely status stage)
1803 udc_ep0_set_UDCCS(dev
, udccs0
& (UDCCS0_SA
|UDCCS0_OPR
));
1806 case EP0_IN_DATA_PHASE
: /* GET_DESCRIPTOR etc */
1807 if (udccs0
& UDCCS0_OPR
) {
1808 udc_ep0_set_UDCCS(dev
, UDCCS0_OPR
|UDCCS0_FTF
);
1809 DBG(DBG_VERBOSE
, "ep0in premature status\n");
1813 } else /* irq was IPR clearing */ {
1815 /* this IN packet might finish the request */
1816 (void) write_ep0_fifo(ep
, req
);
1817 } /* else IN token before response was written */
1820 case EP0_OUT_DATA_PHASE
: /* SET_DESCRIPTOR etc */
1821 if (udccs0
& UDCCS0_OPR
) {
1823 /* this OUT packet might finish the request */
1824 if (read_ep0_fifo(ep
, req
))
1826 /* else more OUT packets expected */
1827 } /* else OUT token before read was issued */
1828 } else /* irq was IPR clearing */ {
1829 DBG(DBG_VERBOSE
, "ep0out premature status\n");
1838 /* ack control-IN status (maybe in-zlp was skipped)
1839 * also appears after some config change events.
1841 if (udccs0
& UDCCS0_OPR
)
1842 udc_ep0_set_UDCCS(dev
, UDCCS0_OPR
);
1846 udc_ep0_set_UDCCS(dev
, UDCCS0_FST
);
1849 udc_set_reg(dev
, USIR0
, USIR0_IR0
);
1852 static void handle_ep(struct pxa25x_ep
*ep
)
1854 struct pxa25x_request
*req
;
1855 int is_in
= ep
->bEndpointAddress
& USB_DIR_IN
;
1861 if (likely (!list_empty(&ep
->queue
)))
1862 req
= list_entry(ep
->queue
.next
,
1863 struct pxa25x_request
, queue
);
1867 // TODO check FST handling
1869 udccs
= udc_ep_get_UDCCS(ep
);
1870 if (unlikely(is_in
)) { /* irq from TPC, SST, or (ISO) TUR */
1872 if (likely(ep
->bmAttributes
== USB_ENDPOINT_XFER_BULK
))
1873 tmp
|= UDCCS_BI_SST
;
1876 udc_ep_set_UDCCS(ep
, tmp
);
1877 if (req
&& likely ((udccs
& UDCCS_BI_TFS
) != 0))
1878 completed
= write_fifo(ep
, req
);
1880 } else { /* irq from RPC (or for ISO, ROF) */
1881 if (likely(ep
->bmAttributes
== USB_ENDPOINT_XFER_BULK
))
1882 tmp
= UDCCS_BO_SST
| UDCCS_BO_DME
;
1884 tmp
= UDCCS_IO_ROF
| UDCCS_IO_DME
;
1887 udc_ep_set_UDCCS(ep
, tmp
);
1889 /* fifos can hold packets, ready for reading... */
1891 completed
= read_fifo(ep
, req
);
1893 pio_irq_disable(ep
);
1896 } while (completed
);
1900 * pxa25x_udc_irq - interrupt handler
1902 * avoid delays in ep0 processing. the control handshaking isn't always
1903 * under software control (pxa250c0 and the pxa255 are better), and delays
1904 * could cause usb protocol errors.
1907 pxa25x_udc_irq(int irq
, void *_dev
)
1909 struct pxa25x_udc
*dev
= _dev
;
1914 u32 udccr
= udc_get_reg(dev
, UDCCR
);
1918 /* SUSpend Interrupt Request */
1919 if (unlikely(udccr
& UDCCR_SUSIR
)) {
1920 udc_ack_int_UDCCR(dev
, UDCCR_SUSIR
);
1922 DBG(DBG_VERBOSE
, "USB suspend\n");
1924 if (dev
->gadget
.speed
!= USB_SPEED_UNKNOWN
1926 && dev
->driver
->suspend
)
1927 dev
->driver
->suspend(&dev
->gadget
);
1931 /* RESume Interrupt Request */
1932 if (unlikely(udccr
& UDCCR_RESIR
)) {
1933 udc_ack_int_UDCCR(dev
, UDCCR_RESIR
);
1935 DBG(DBG_VERBOSE
, "USB resume\n");
1937 if (dev
->gadget
.speed
!= USB_SPEED_UNKNOWN
1939 && dev
->driver
->resume
)
1940 dev
->driver
->resume(&dev
->gadget
);
1943 /* ReSeT Interrupt Request - USB reset */
1944 if (unlikely(udccr
& UDCCR_RSTIR
)) {
1945 udc_ack_int_UDCCR(dev
, UDCCR_RSTIR
);
1948 if ((udc_get_reg(dev
, UDCCR
) & UDCCR_UDA
) == 0) {
1949 DBG(DBG_VERBOSE
, "USB reset start\n");
1951 /* reset driver and endpoints,
1952 * in case that's not yet done
1954 reset_gadget(dev
, dev
->driver
);
1957 DBG(DBG_VERBOSE
, "USB reset end\n");
1958 dev
->gadget
.speed
= USB_SPEED_FULL
;
1959 memset(&dev
->stats
, 0, sizeof dev
->stats
);
1960 /* driver and endpoints are still reset */
1964 u32 usir0
= udc_get_reg(dev
, USIR0
) &
1965 ~udc_get_reg(dev
, UICR0
);
1966 u32 usir1
= udc_get_reg(dev
, USIR1
) &
1967 ~udc_get_reg(dev
, UICR1
);
1970 if (unlikely (!usir0
&& !usir1
))
1973 DBG(DBG_VERY_NOISY
, "irq %02x.%02x\n", usir1
, usir0
);
1975 /* control traffic */
1976 if (usir0
& USIR0_IR0
) {
1977 dev
->ep
[0].pio_irqs
++;
1982 /* endpoint data transfers */
1983 for (i
= 0; i
< 8; i
++) {
1986 if (i
&& (usir0
& tmp
)) {
1987 handle_ep(&dev
->ep
[i
]);
1988 udc_set_reg(dev
, USIR0
,
1989 udc_get_reg(dev
, USIR0
) | tmp
);
1992 #ifndef CONFIG_USB_PXA25X_SMALL
1994 handle_ep(&dev
->ep
[i
+8]);
1995 udc_set_reg(dev
, USIR1
,
1996 udc_get_reg(dev
, USIR1
) | tmp
);
2003 /* we could also ask for 1 msec SOF (SIR) interrupts */
2009 /*-------------------------------------------------------------------------*/
2011 static void nop_release (struct device
*dev
)
2013 DMSG("%s %s\n", __func__
, dev_name(dev
));
2016 /* this uses load-time allocation and initialization (instead of
2017 * doing it at run-time) to save code, eliminate fault paths, and
2018 * be more obviously correct.
2020 static struct pxa25x_udc memory
= {
2022 .ops
= &pxa25x_udc_ops
,
2023 .ep0
= &memory
.ep
[0].ep
,
2024 .name
= driver_name
,
2026 .init_name
= "gadget",
2027 .release
= nop_release
,
2031 /* control endpoint */
2035 .ops
= &pxa25x_ep_ops
,
2036 .maxpacket
= EP0_FIFO_SIZE
,
2037 .caps
= USB_EP_CAPS(USB_EP_CAPS_TYPE_CONTROL
,
2038 USB_EP_CAPS_DIR_ALL
),
2041 .regoff_udccs
= UDCCS0
,
2042 .regoff_uddr
= UDDR0
,
2045 /* first group of endpoints */
2048 .name
= "ep1in-bulk",
2049 .ops
= &pxa25x_ep_ops
,
2050 .maxpacket
= BULK_FIFO_SIZE
,
2051 .caps
= USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK
,
2052 USB_EP_CAPS_DIR_IN
),
2055 .fifo_size
= BULK_FIFO_SIZE
,
2056 .bEndpointAddress
= USB_DIR_IN
| 1,
2057 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
2058 .regoff_udccs
= UDCCS1
,
2059 .regoff_uddr
= UDDR1
,
2063 .name
= "ep2out-bulk",
2064 .ops
= &pxa25x_ep_ops
,
2065 .maxpacket
= BULK_FIFO_SIZE
,
2066 .caps
= USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK
,
2067 USB_EP_CAPS_DIR_OUT
),
2070 .fifo_size
= BULK_FIFO_SIZE
,
2071 .bEndpointAddress
= 2,
2072 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
2073 .regoff_udccs
= UDCCS2
,
2074 .regoff_ubcr
= UBCR2
,
2075 .regoff_uddr
= UDDR2
,
2077 #ifndef CONFIG_USB_PXA25X_SMALL
2080 .name
= "ep3in-iso",
2081 .ops
= &pxa25x_ep_ops
,
2082 .maxpacket
= ISO_FIFO_SIZE
,
2083 .caps
= USB_EP_CAPS(USB_EP_CAPS_TYPE_ISO
,
2084 USB_EP_CAPS_DIR_IN
),
2087 .fifo_size
= ISO_FIFO_SIZE
,
2088 .bEndpointAddress
= USB_DIR_IN
| 3,
2089 .bmAttributes
= USB_ENDPOINT_XFER_ISOC
,
2090 .regoff_udccs
= UDCCS3
,
2091 .regoff_uddr
= UDDR3
,
2095 .name
= "ep4out-iso",
2096 .ops
= &pxa25x_ep_ops
,
2097 .maxpacket
= ISO_FIFO_SIZE
,
2098 .caps
= USB_EP_CAPS(USB_EP_CAPS_TYPE_ISO
,
2099 USB_EP_CAPS_DIR_OUT
),
2102 .fifo_size
= ISO_FIFO_SIZE
,
2103 .bEndpointAddress
= 4,
2104 .bmAttributes
= USB_ENDPOINT_XFER_ISOC
,
2105 .regoff_udccs
= UDCCS4
,
2106 .regoff_ubcr
= UBCR4
,
2107 .regoff_uddr
= UDDR4
,
2111 .name
= "ep5in-int",
2112 .ops
= &pxa25x_ep_ops
,
2113 .maxpacket
= INT_FIFO_SIZE
,
2114 .caps
= USB_EP_CAPS(0, 0),
2117 .fifo_size
= INT_FIFO_SIZE
,
2118 .bEndpointAddress
= USB_DIR_IN
| 5,
2119 .bmAttributes
= USB_ENDPOINT_XFER_INT
,
2120 .regoff_udccs
= UDCCS5
,
2121 .regoff_uddr
= UDDR5
,
2124 /* second group of endpoints */
2127 .name
= "ep6in-bulk",
2128 .ops
= &pxa25x_ep_ops
,
2129 .maxpacket
= BULK_FIFO_SIZE
,
2130 .caps
= USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK
,
2131 USB_EP_CAPS_DIR_IN
),
2134 .fifo_size
= BULK_FIFO_SIZE
,
2135 .bEndpointAddress
= USB_DIR_IN
| 6,
2136 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
2137 .regoff_udccs
= UDCCS6
,
2138 .regoff_uddr
= UDDR6
,
2142 .name
= "ep7out-bulk",
2143 .ops
= &pxa25x_ep_ops
,
2144 .maxpacket
= BULK_FIFO_SIZE
,
2145 .caps
= USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK
,
2146 USB_EP_CAPS_DIR_OUT
),
2149 .fifo_size
= BULK_FIFO_SIZE
,
2150 .bEndpointAddress
= 7,
2151 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
2152 .regoff_udccs
= UDCCS7
,
2153 .regoff_ubcr
= UBCR7
,
2154 .regoff_uddr
= UDDR7
,
2158 .name
= "ep8in-iso",
2159 .ops
= &pxa25x_ep_ops
,
2160 .maxpacket
= ISO_FIFO_SIZE
,
2161 .caps
= USB_EP_CAPS(USB_EP_CAPS_TYPE_ISO
,
2162 USB_EP_CAPS_DIR_IN
),
2165 .fifo_size
= ISO_FIFO_SIZE
,
2166 .bEndpointAddress
= USB_DIR_IN
| 8,
2167 .bmAttributes
= USB_ENDPOINT_XFER_ISOC
,
2168 .regoff_udccs
= UDCCS8
,
2169 .regoff_uddr
= UDDR8
,
2173 .name
= "ep9out-iso",
2174 .ops
= &pxa25x_ep_ops
,
2175 .maxpacket
= ISO_FIFO_SIZE
,
2176 .caps
= USB_EP_CAPS(USB_EP_CAPS_TYPE_ISO
,
2177 USB_EP_CAPS_DIR_OUT
),
2180 .fifo_size
= ISO_FIFO_SIZE
,
2181 .bEndpointAddress
= 9,
2182 .bmAttributes
= USB_ENDPOINT_XFER_ISOC
,
2183 .regoff_udccs
= UDCCS9
,
2184 .regoff_ubcr
= UBCR9
,
2185 .regoff_uddr
= UDDR9
,
2189 .name
= "ep10in-int",
2190 .ops
= &pxa25x_ep_ops
,
2191 .maxpacket
= INT_FIFO_SIZE
,
2192 .caps
= USB_EP_CAPS(0, 0),
2195 .fifo_size
= INT_FIFO_SIZE
,
2196 .bEndpointAddress
= USB_DIR_IN
| 10,
2197 .bmAttributes
= USB_ENDPOINT_XFER_INT
,
2198 .regoff_udccs
= UDCCS10
,
2199 .regoff_uddr
= UDDR10
,
2202 /* third group of endpoints */
2205 .name
= "ep11in-bulk",
2206 .ops
= &pxa25x_ep_ops
,
2207 .maxpacket
= BULK_FIFO_SIZE
,
2208 .caps
= USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK
,
2209 USB_EP_CAPS_DIR_IN
),
2212 .fifo_size
= BULK_FIFO_SIZE
,
2213 .bEndpointAddress
= USB_DIR_IN
| 11,
2214 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
2215 .regoff_udccs
= UDCCS11
,
2216 .regoff_uddr
= UDDR11
,
2220 .name
= "ep12out-bulk",
2221 .ops
= &pxa25x_ep_ops
,
2222 .maxpacket
= BULK_FIFO_SIZE
,
2223 .caps
= USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK
,
2224 USB_EP_CAPS_DIR_OUT
),
2227 .fifo_size
= BULK_FIFO_SIZE
,
2228 .bEndpointAddress
= 12,
2229 .bmAttributes
= USB_ENDPOINT_XFER_BULK
,
2230 .regoff_udccs
= UDCCS12
,
2231 .regoff_ubcr
= UBCR12
,
2232 .regoff_uddr
= UDDR12
,
2236 .name
= "ep13in-iso",
2237 .ops
= &pxa25x_ep_ops
,
2238 .maxpacket
= ISO_FIFO_SIZE
,
2239 .caps
= USB_EP_CAPS(USB_EP_CAPS_TYPE_ISO
,
2240 USB_EP_CAPS_DIR_IN
),
2243 .fifo_size
= ISO_FIFO_SIZE
,
2244 .bEndpointAddress
= USB_DIR_IN
| 13,
2245 .bmAttributes
= USB_ENDPOINT_XFER_ISOC
,
2246 .regoff_udccs
= UDCCS13
,
2247 .regoff_uddr
= UDDR13
,
2251 .name
= "ep14out-iso",
2252 .ops
= &pxa25x_ep_ops
,
2253 .maxpacket
= ISO_FIFO_SIZE
,
2254 .caps
= USB_EP_CAPS(USB_EP_CAPS_TYPE_ISO
,
2255 USB_EP_CAPS_DIR_OUT
),
2258 .fifo_size
= ISO_FIFO_SIZE
,
2259 .bEndpointAddress
= 14,
2260 .bmAttributes
= USB_ENDPOINT_XFER_ISOC
,
2261 .regoff_udccs
= UDCCS14
,
2262 .regoff_ubcr
= UBCR14
,
2263 .regoff_uddr
= UDDR14
,
2267 .name
= "ep15in-int",
2268 .ops
= &pxa25x_ep_ops
,
2269 .maxpacket
= INT_FIFO_SIZE
,
2270 .caps
= USB_EP_CAPS(0, 0),
2273 .fifo_size
= INT_FIFO_SIZE
,
2274 .bEndpointAddress
= USB_DIR_IN
| 15,
2275 .bmAttributes
= USB_ENDPOINT_XFER_INT
,
2276 .regoff_udccs
= UDCCS15
,
2277 .regoff_uddr
= UDDR15
,
2279 #endif /* !CONFIG_USB_PXA25X_SMALL */
2282 #define CP15R0_VENDOR_MASK 0xffffe000
2284 #if defined(CONFIG_ARCH_PXA)
2285 #define CP15R0_XSCALE_VALUE 0x69052000 /* intel/arm/xscale */
2287 #elif defined(CONFIG_ARCH_IXP4XX)
2288 #define CP15R0_XSCALE_VALUE 0x69054000 /* intel/arm/ixp4xx */
2292 #define CP15R0_PROD_MASK 0x000003f0
2293 #define PXA25x 0x00000100 /* and PXA26x */
2294 #define PXA210 0x00000120
2296 #define CP15R0_REV_MASK 0x0000000f
2298 #define CP15R0_PRODREV_MASK (CP15R0_PROD_MASK | CP15R0_REV_MASK)
2300 #define PXA255_A0 0x00000106 /* or PXA260_B1 */
2301 #define PXA250_C0 0x00000105 /* or PXA26x_B0 */
2302 #define PXA250_B2 0x00000104
2303 #define PXA250_B1 0x00000103 /* or PXA260_A0 */
2304 #define PXA250_B0 0x00000102
2305 #define PXA250_A1 0x00000101
2306 #define PXA250_A0 0x00000100
2308 #define PXA210_C0 0x00000125
2309 #define PXA210_B2 0x00000124
2310 #define PXA210_B1 0x00000123
2311 #define PXA210_B0 0x00000122
2312 #define IXP425_A0 0x000001c1
2313 #define IXP425_B0 0x000001f1
2314 #define IXP465_AD 0x00000200
2317 * probe - binds to the platform device
2319 static int pxa25x_udc_probe(struct platform_device
*pdev
)
2321 struct pxa25x_udc
*dev
= &memory
;
2325 pr_info("%s: version %s\n", driver_name
, DRIVER_VERSION
);
2327 /* insist on Intel/ARM/XScale */
2328 asm("mrc%? p15, 0, %0, c0, c0" : "=r" (chiprev
));
2329 if ((chiprev
& CP15R0_VENDOR_MASK
) != CP15R0_XSCALE_VALUE
) {
2330 pr_err("%s: not XScale!\n", driver_name
);
2334 /* trigger chiprev-specific logic */
2335 switch (chiprev
& CP15R0_PRODREV_MASK
) {
2336 #if defined(CONFIG_ARCH_PXA)
2342 /* A0/A1 "not released"; ep 13, 15 unusable */
2344 case PXA250_B2
: case PXA210_B2
:
2345 case PXA250_B1
: case PXA210_B1
:
2346 case PXA250_B0
: case PXA210_B0
:
2347 /* OUT-DMA is broken ... */
2349 case PXA250_C0
: case PXA210_C0
:
2351 #elif defined(CONFIG_ARCH_IXP4XX)
2359 pr_err("%s: unrecognized processor: %08x\n",
2360 driver_name
, chiprev
);
2361 /* iop3xx, ixp4xx, ... */
2365 irq
= platform_get_irq(pdev
, 0);
2369 dev
->regs
= devm_platform_ioremap_resource(pdev
, 0);
2370 if (IS_ERR(dev
->regs
))
2371 return PTR_ERR(dev
->regs
);
2373 dev
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
2374 if (IS_ERR(dev
->clk
))
2375 return PTR_ERR(dev
->clk
);
2377 pr_debug("%s: IRQ %d%s%s\n", driver_name
, irq
,
2378 dev
->has_cfr
? "" : " (!cfr)",
2382 /* other non-static parts of init */
2383 dev
->dev
= &pdev
->dev
;
2384 dev
->mach
= dev_get_platdata(&pdev
->dev
);
2386 dev
->transceiver
= devm_usb_get_phy(&pdev
->dev
, USB_PHY_TYPE_USB2
);
2388 if (gpio_is_valid(dev
->mach
->gpio_pullup
)) {
2389 retval
= devm_gpio_request(&pdev
->dev
, dev
->mach
->gpio_pullup
,
2390 "pca25x_udc GPIO PULLUP");
2393 "can't get pullup gpio %d, err: %d\n",
2394 dev
->mach
->gpio_pullup
, retval
);
2397 gpio_direction_output(dev
->mach
->gpio_pullup
, 0);
2400 timer_setup(&dev
->timer
, udc_watchdog
, 0);
2402 the_controller
= dev
;
2403 platform_set_drvdata(pdev
, dev
);
2410 /* irq setup after old hardware state is cleaned up */
2411 retval
= devm_request_irq(&pdev
->dev
, irq
, pxa25x_udc_irq
, 0,
2414 pr_err("%s: can't get irq %d, err %d\n",
2415 driver_name
, irq
, retval
);
2420 #ifdef CONFIG_ARCH_LUBBOCK
2421 if (machine_is_lubbock()) {
2422 retval
= devm_request_irq(&pdev
->dev
, LUBBOCK_USB_DISC_IRQ
,
2423 lubbock_vbus_irq
, 0, driver_name
,
2426 pr_err("%s: can't get irq %i, err %d\n",
2427 driver_name
, LUBBOCK_USB_DISC_IRQ
, retval
);
2430 retval
= devm_request_irq(&pdev
->dev
, LUBBOCK_USB_IRQ
,
2431 lubbock_vbus_irq
, 0, driver_name
,
2434 pr_err("%s: can't get irq %i, err %d\n",
2435 driver_name
, LUBBOCK_USB_IRQ
, retval
);
2440 create_debug_files(dev
);
2442 retval
= usb_add_gadget_udc(&pdev
->dev
, &dev
->gadget
);
2446 remove_debug_files(dev
);
2448 if (!IS_ERR_OR_NULL(dev
->transceiver
))
2449 dev
->transceiver
= NULL
;
2453 static void pxa25x_udc_shutdown(struct platform_device
*_dev
)
2458 static int pxa25x_udc_remove(struct platform_device
*pdev
)
2460 struct pxa25x_udc
*dev
= platform_get_drvdata(pdev
);
2465 usb_del_gadget_udc(&dev
->gadget
);
2469 remove_debug_files(dev
);
2471 if (!IS_ERR_OR_NULL(dev
->transceiver
))
2472 dev
->transceiver
= NULL
;
2474 the_controller
= NULL
;
2478 /*-------------------------------------------------------------------------*/
2482 /* USB suspend (controlled by the host) and system suspend (controlled
2483 * by the PXA) don't necessarily work well together. If USB is active,
2484 * the 48 MHz clock is required; so the system can't enter 33 MHz idle
2485 * mode, or any deeper PM saving state.
2487 * For now, we punt and forcibly disconnect from the USB host when PXA
2488 * enters any suspend state. While we're disconnected, we always disable
2489 * the 48MHz USB clock ... allowing PXA sleep and/or 33 MHz idle states.
2490 * Boards without software pullup control shouldn't use those states.
2491 * VBUS IRQs should probably be ignored so that the PXA device just acts
2492 * "dead" to USB hosts until system resume.
2494 static int pxa25x_udc_suspend(struct platform_device
*dev
, pm_message_t state
)
2496 struct pxa25x_udc
*udc
= platform_get_drvdata(dev
);
2497 unsigned long flags
;
2499 if (!gpio_is_valid(udc
->mach
->gpio_pullup
) && !udc
->mach
->udc_command
)
2500 WARNING("USB host won't detect disconnect!\n");
2503 local_irq_save(flags
);
2505 local_irq_restore(flags
);
2510 static int pxa25x_udc_resume(struct platform_device
*dev
)
2512 struct pxa25x_udc
*udc
= platform_get_drvdata(dev
);
2513 unsigned long flags
;
2516 local_irq_save(flags
);
2518 local_irq_restore(flags
);
2524 #define pxa25x_udc_suspend NULL
2525 #define pxa25x_udc_resume NULL
2528 /*-------------------------------------------------------------------------*/
2530 static struct platform_driver udc_driver
= {
2531 .shutdown
= pxa25x_udc_shutdown
,
2532 .probe
= pxa25x_udc_probe
,
2533 .remove
= pxa25x_udc_remove
,
2534 .suspend
= pxa25x_udc_suspend
,
2535 .resume
= pxa25x_udc_resume
,
2537 .name
= "pxa25x-udc",
2541 module_platform_driver(udc_driver
);
2543 MODULE_DESCRIPTION(DRIVER_DESC
);
2544 MODULE_AUTHOR("Frank Becker, Robert Schwebel, David Brownell");
2545 MODULE_LICENSE("GPL");
2546 MODULE_ALIAS("platform:pxa25x-udc");