2 * Handles the Intel 27x USB Device Controller (UDC)
4 * Inspired by original driver by Frank Becker, David Brownell, and others.
5 * Copyright (C) 2008 Robert Jarzmik
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 #include <linux/module.h>
13 #include <linux/kernel.h>
14 #include <linux/types.h>
15 #include <linux/errno.h>
16 #include <linux/err.h>
17 #include <linux/platform_device.h>
18 #include <linux/delay.h>
19 #include <linux/list.h>
20 #include <linux/interrupt.h>
21 #include <linux/proc_fs.h>
22 #include <linux/clk.h>
23 #include <linux/irq.h>
24 #include <linux/gpio.h>
25 #include <linux/slab.h>
26 #include <linux/prefetch.h>
28 #include <asm/byteorder.h>
29 #include <mach/hardware.h>
31 #include <linux/usb.h>
32 #include <linux/usb/ch9.h>
33 #include <linux/usb/gadget.h>
36 #include "pxa27x_udc.h"
39 * This driver handles the USB Device Controller (UDC) in Intel's PXA 27x
42 * Such controller drivers work with a gadget driver. The gadget driver
43 * returns descriptors, implements configuration and data protocols used
44 * by the host to interact with this device, and allocates endpoints to
45 * the different protocol interfaces. The controller driver virtualizes
46 * usb hardware so that the gadget drivers will be more portable.
48 * This UDC hardware wants to implement a bit too much USB protocol. The
49 * biggest issues are: that the endpoints have to be set up before the
50 * controller can be enabled (minor, and not uncommon); and each endpoint
51 * can only have one configuration, interface and alternative interface
52 * number (major, and very unusual). Once set up, these cannot be changed
53 * without a controller reset.
55 * The workaround is to setup all combinations necessary for the gadgets which
56 * will work with this driver. This is done in pxa_udc structure, statically.
57 * See pxa_udc, udc_usb_ep versus pxa_ep, and matching function find_pxa_ep.
58 * (You could modify this if needed. Some drivers have a "fifo_mode" module
59 * parameter to facilitate such changes.)
61 * The combinations have been tested with these gadgets :
63 * - file storage gadget
66 * The driver doesn't use DMA, only IO access and IRQ callbacks. No use is
67 * made of UDC's double buffering either. USB "On-The-Go" is not implemented.
69 * All the requests are handled the same way :
70 * - the drivers tries to handle the request directly to the IO
71 * - if the IO fifo is not big enough, the remaining is send/received in
75 #define DRIVER_VERSION "2008-04-18"
76 #define DRIVER_DESC "PXA 27x USB Device Controller driver"
78 static const char driver_name
[] = "pxa27x_udc";
79 static struct pxa_udc
*the_controller
;
81 static void handle_ep(struct pxa_ep
*ep
);
86 #ifdef CONFIG_USB_GADGET_DEBUG_FS
88 #include <linux/debugfs.h>
89 #include <linux/uaccess.h>
90 #include <linux/seq_file.h>
92 static int state_dbg_show(struct seq_file
*s
, void *p
)
94 struct pxa_udc
*udc
= s
->private;
102 /* basic device status */
103 pos
+= seq_printf(s
, DRIVER_DESC
"\n"
104 "%s version: %s\nGadget driver: %s\n",
105 driver_name
, DRIVER_VERSION
,
106 udc
->driver
? udc
->driver
->driver
.name
: "(none)");
108 tmp
= udc_readl(udc
, UDCCR
);
110 "udccr=0x%0x(%s%s%s%s%s%s%s%s%s%s), "
111 "con=%d,inter=%d,altinter=%d\n", tmp
,
112 (tmp
& UDCCR_OEN
) ? " oen":"",
113 (tmp
& UDCCR_AALTHNP
) ? " aalthnp":"",
114 (tmp
& UDCCR_AHNP
) ? " rem" : "",
115 (tmp
& UDCCR_BHNP
) ? " rstir" : "",
116 (tmp
& UDCCR_DWRE
) ? " dwre" : "",
117 (tmp
& UDCCR_SMAC
) ? " smac" : "",
118 (tmp
& UDCCR_EMCE
) ? " emce" : "",
119 (tmp
& UDCCR_UDR
) ? " udr" : "",
120 (tmp
& UDCCR_UDA
) ? " uda" : "",
121 (tmp
& UDCCR_UDE
) ? " ude" : "",
122 (tmp
& UDCCR_ACN
) >> UDCCR_ACN_S
,
123 (tmp
& UDCCR_AIN
) >> UDCCR_AIN_S
,
124 (tmp
& UDCCR_AAISN
) >> UDCCR_AAISN_S
);
125 /* registers for device and ep0 */
126 pos
+= seq_printf(s
, "udcicr0=0x%08x udcicr1=0x%08x\n",
127 udc_readl(udc
, UDCICR0
), udc_readl(udc
, UDCICR1
));
128 pos
+= seq_printf(s
, "udcisr0=0x%08x udcisr1=0x%08x\n",
129 udc_readl(udc
, UDCISR0
), udc_readl(udc
, UDCISR1
));
130 pos
+= seq_printf(s
, "udcfnr=%d\n", udc_readl(udc
, UDCFNR
));
131 pos
+= seq_printf(s
, "irqs: reset=%lu, suspend=%lu, resume=%lu, "
133 udc
->stats
.irqs_reset
, udc
->stats
.irqs_suspend
,
134 udc
->stats
.irqs_resume
, udc
->stats
.irqs_reconfig
);
141 static int queues_dbg_show(struct seq_file
*s
, void *p
)
143 struct pxa_udc
*udc
= s
->private;
145 struct pxa27x_request
*req
;
146 int pos
= 0, i
, maxpkt
, ret
;
152 /* dump endpoint queues */
153 for (i
= 0; i
< NR_PXA_ENDPOINTS
; i
++) {
154 ep
= &udc
->pxa_ep
[i
];
155 maxpkt
= ep
->fifo_size
;
156 pos
+= seq_printf(s
, "%-12s max_pkt=%d %s\n",
157 EPNAME(ep
), maxpkt
, "pio");
159 if (list_empty(&ep
->queue
)) {
160 pos
+= seq_printf(s
, "\t(nothing queued)\n");
164 list_for_each_entry(req
, &ep
->queue
, queue
) {
165 pos
+= seq_printf(s
, "\treq %p len %d/%d buf %p\n",
166 &req
->req
, req
->req
.actual
,
167 req
->req
.length
, req
->req
.buf
);
176 static int eps_dbg_show(struct seq_file
*s
, void *p
)
178 struct pxa_udc
*udc
= s
->private;
187 ep
= &udc
->pxa_ep
[0];
188 tmp
= udc_ep_readl(ep
, UDCCSR
);
189 pos
+= seq_printf(s
, "udccsr0=0x%03x(%s%s%s%s%s%s%s)\n", tmp
,
190 (tmp
& UDCCSR0_SA
) ? " sa" : "",
191 (tmp
& UDCCSR0_RNE
) ? " rne" : "",
192 (tmp
& UDCCSR0_FST
) ? " fst" : "",
193 (tmp
& UDCCSR0_SST
) ? " sst" : "",
194 (tmp
& UDCCSR0_DME
) ? " dme" : "",
195 (tmp
& UDCCSR0_IPR
) ? " ipr" : "",
196 (tmp
& UDCCSR0_OPC
) ? " opc" : "");
197 for (i
= 0; i
< NR_PXA_ENDPOINTS
; i
++) {
198 ep
= &udc
->pxa_ep
[i
];
199 tmp
= i
? udc_ep_readl(ep
, UDCCR
) : udc_readl(udc
, UDCCR
);
200 pos
+= seq_printf(s
, "%-12s: "
201 "IN %lu(%lu reqs), OUT %lu(%lu reqs), "
202 "irqs=%lu, udccr=0x%08x, udccsr=0x%03x, "
205 ep
->stats
.in_bytes
, ep
->stats
.in_ops
,
206 ep
->stats
.out_bytes
, ep
->stats
.out_ops
,
208 tmp
, udc_ep_readl(ep
, UDCCSR
),
209 udc_ep_readl(ep
, UDCBCR
));
217 static int eps_dbg_open(struct inode
*inode
, struct file
*file
)
219 return single_open(file
, eps_dbg_show
, inode
->i_private
);
222 static int queues_dbg_open(struct inode
*inode
, struct file
*file
)
224 return single_open(file
, queues_dbg_show
, inode
->i_private
);
227 static int state_dbg_open(struct inode
*inode
, struct file
*file
)
229 return single_open(file
, state_dbg_show
, inode
->i_private
);
232 static const struct file_operations state_dbg_fops
= {
233 .owner
= THIS_MODULE
,
234 .open
= state_dbg_open
,
237 .release
= single_release
,
240 static const struct file_operations queues_dbg_fops
= {
241 .owner
= THIS_MODULE
,
242 .open
= queues_dbg_open
,
245 .release
= single_release
,
248 static const struct file_operations eps_dbg_fops
= {
249 .owner
= THIS_MODULE
,
250 .open
= eps_dbg_open
,
253 .release
= single_release
,
256 static void pxa_init_debugfs(struct pxa_udc
*udc
)
258 struct dentry
*root
, *state
, *queues
, *eps
;
260 root
= debugfs_create_dir(udc
->gadget
.name
, NULL
);
261 if (IS_ERR(root
) || !root
)
264 state
= debugfs_create_file("udcstate", 0400, root
, udc
,
268 queues
= debugfs_create_file("queues", 0400, root
, udc
,
272 eps
= debugfs_create_file("epstate", 0400, root
, udc
,
277 udc
->debugfs_root
= root
;
278 udc
->debugfs_state
= state
;
279 udc
->debugfs_queues
= queues
;
280 udc
->debugfs_eps
= eps
;
285 debugfs_remove(queues
);
287 debugfs_remove(root
);
289 dev_err(udc
->dev
, "debugfs is not available\n");
292 static void pxa_cleanup_debugfs(struct pxa_udc
*udc
)
294 debugfs_remove(udc
->debugfs_eps
);
295 debugfs_remove(udc
->debugfs_queues
);
296 debugfs_remove(udc
->debugfs_state
);
297 debugfs_remove(udc
->debugfs_root
);
298 udc
->debugfs_eps
= NULL
;
299 udc
->debugfs_queues
= NULL
;
300 udc
->debugfs_state
= NULL
;
301 udc
->debugfs_root
= NULL
;
305 static inline void pxa_init_debugfs(struct pxa_udc
*udc
)
309 static inline void pxa_cleanup_debugfs(struct pxa_udc
*udc
)
315 * is_match_usb_pxa - check if usb_ep and pxa_ep match
316 * @udc_usb_ep: usb endpoint
318 * @config: configuration required in pxa_ep
319 * @interface: interface required in pxa_ep
320 * @altsetting: altsetting required in pxa_ep
322 * Returns 1 if all criteria match between pxa and usb endpoint, 0 otherwise
324 static int is_match_usb_pxa(struct udc_usb_ep
*udc_usb_ep
, struct pxa_ep
*ep
,
325 int config
, int interface
, int altsetting
)
327 if (usb_endpoint_num(&udc_usb_ep
->desc
) != ep
->addr
)
329 if (usb_endpoint_dir_in(&udc_usb_ep
->desc
) != ep
->dir_in
)
331 if (usb_endpoint_type(&udc_usb_ep
->desc
) != ep
->type
)
333 if ((ep
->config
!= config
) || (ep
->interface
!= interface
)
334 || (ep
->alternate
!= altsetting
))
340 * find_pxa_ep - find pxa_ep structure matching udc_usb_ep
342 * @udc_usb_ep: udc_usb_ep structure
344 * Match udc_usb_ep and all pxa_ep available, to see if one matches.
345 * This is necessary because of the strong pxa hardware restriction requiring
346 * that once pxa endpoints are initialized, their configuration is freezed, and
347 * no change can be made to their address, direction, or in which configuration,
348 * interface or altsetting they are active ... which differs from more usual
349 * models which have endpoints be roughly just addressable fifos, and leave
350 * configuration events up to gadget drivers (like all control messages).
352 * Note that there is still a blurred point here :
353 * - we rely on UDCCR register "active interface" and "active altsetting".
354 * This is a nonsense in regard of USB spec, where multiple interfaces are
355 * active at the same time.
356 * - if we knew for sure that the pxa can handle multiple interface at the
357 * same time, assuming Intel's Developer Guide is wrong, this function
358 * should be reviewed, and a cache of couples (iface, altsetting) should
359 * be kept in the pxa_udc structure. In this case this function would match
360 * against the cache of couples instead of the "last altsetting" set up.
362 * Returns the matched pxa_ep structure or NULL if none found
364 static struct pxa_ep
*find_pxa_ep(struct pxa_udc
*udc
,
365 struct udc_usb_ep
*udc_usb_ep
)
369 int cfg
= udc
->config
;
370 int iface
= udc
->last_interface
;
371 int alt
= udc
->last_alternate
;
373 if (udc_usb_ep
== &udc
->udc_usb_ep
[0])
374 return &udc
->pxa_ep
[0];
376 for (i
= 1; i
< NR_PXA_ENDPOINTS
; i
++) {
377 ep
= &udc
->pxa_ep
[i
];
378 if (is_match_usb_pxa(udc_usb_ep
, ep
, cfg
, iface
, alt
))
385 * update_pxa_ep_matches - update pxa_ep cached values in all udc_usb_ep
388 * Context: in_interrupt()
390 * Updates all pxa_ep fields in udc_usb_ep structures, if this field was
391 * previously set up (and is not NULL). The update is necessary is a
392 * configuration change or altsetting change was issued by the USB host.
394 static void update_pxa_ep_matches(struct pxa_udc
*udc
)
397 struct udc_usb_ep
*udc_usb_ep
;
399 for (i
= 1; i
< NR_USB_ENDPOINTS
; i
++) {
400 udc_usb_ep
= &udc
->udc_usb_ep
[i
];
401 if (udc_usb_ep
->pxa_ep
)
402 udc_usb_ep
->pxa_ep
= find_pxa_ep(udc
, udc_usb_ep
);
407 * pio_irq_enable - Enables irq generation for one endpoint
410 static void pio_irq_enable(struct pxa_ep
*ep
)
412 struct pxa_udc
*udc
= ep
->dev
;
413 int index
= EPIDX(ep
);
414 u32 udcicr0
= udc_readl(udc
, UDCICR0
);
415 u32 udcicr1
= udc_readl(udc
, UDCICR1
);
418 udc_writel(udc
, UDCICR0
, udcicr0
| (3 << (index
* 2)));
420 udc_writel(udc
, UDCICR1
, udcicr1
| (3 << ((index
- 16) * 2)));
424 * pio_irq_disable - Disables irq generation for one endpoint
427 static void pio_irq_disable(struct pxa_ep
*ep
)
429 struct pxa_udc
*udc
= ep
->dev
;
430 int index
= EPIDX(ep
);
431 u32 udcicr0
= udc_readl(udc
, UDCICR0
);
432 u32 udcicr1
= udc_readl(udc
, UDCICR1
);
435 udc_writel(udc
, UDCICR0
, udcicr0
& ~(3 << (index
* 2)));
437 udc_writel(udc
, UDCICR1
, udcicr1
& ~(3 << ((index
- 16) * 2)));
441 * udc_set_mask_UDCCR - set bits in UDCCR
443 * @mask: bits to set in UDCCR
445 * Sets bits in UDCCR, leaving DME and FST bits as they were.
447 static inline void udc_set_mask_UDCCR(struct pxa_udc
*udc
, int mask
)
449 u32 udccr
= udc_readl(udc
, UDCCR
);
450 udc_writel(udc
, UDCCR
,
451 (udccr
& UDCCR_MASK_BITS
) | (mask
& UDCCR_MASK_BITS
));
455 * udc_clear_mask_UDCCR - clears bits in UDCCR
457 * @mask: bit to clear in UDCCR
459 * Clears bits in UDCCR, leaving DME and FST bits as they were.
461 static inline void udc_clear_mask_UDCCR(struct pxa_udc
*udc
, int mask
)
463 u32 udccr
= udc_readl(udc
, UDCCR
);
464 udc_writel(udc
, UDCCR
,
465 (udccr
& UDCCR_MASK_BITS
) & ~(mask
& UDCCR_MASK_BITS
));
469 * ep_write_UDCCSR - set bits in UDCCSR
471 * @mask: bits to set in UDCCR
473 * Sets bits in UDCCSR (UDCCSR0 and UDCCSR*).
475 * A specific case is applied to ep0 : the ACM bit is always set to 1, for
476 * SET_INTERFACE and SET_CONFIGURATION.
478 static inline void ep_write_UDCCSR(struct pxa_ep
*ep
, int mask
)
482 udc_ep_writel(ep
, UDCCSR
, mask
);
486 * ep_count_bytes_remain - get how many bytes in udc endpoint
489 * Returns number of bytes in OUT fifos. Broken for IN fifos (-EOPNOTSUPP)
491 static int ep_count_bytes_remain(struct pxa_ep
*ep
)
495 return udc_ep_readl(ep
, UDCBCR
) & 0x3ff;
499 * ep_is_empty - checks if ep has byte ready for reading
502 * If endpoint is the control endpoint, checks if there are bytes in the
503 * control endpoint fifo. If endpoint is a data endpoint, checks if bytes
504 * are ready for reading on OUT endpoint.
506 * Returns 0 if ep not empty, 1 if ep empty, -EOPNOTSUPP if IN endpoint
508 static int ep_is_empty(struct pxa_ep
*ep
)
512 if (!is_ep0(ep
) && ep
->dir_in
)
515 ret
= !(udc_ep_readl(ep
, UDCCSR
) & UDCCSR0_RNE
);
517 ret
= !(udc_ep_readl(ep
, UDCCSR
) & UDCCSR_BNE
);
522 * ep_is_full - checks if ep has place to write bytes
525 * If endpoint is not the control endpoint and is an IN endpoint, checks if
526 * there is place to write bytes into the endpoint.
528 * Returns 0 if ep not full, 1 if ep full, -EOPNOTSUPP if OUT endpoint
530 static int ep_is_full(struct pxa_ep
*ep
)
533 return (udc_ep_readl(ep
, UDCCSR
) & UDCCSR0_IPR
);
536 return (!(udc_ep_readl(ep
, UDCCSR
) & UDCCSR_BNF
));
540 * epout_has_pkt - checks if OUT endpoint fifo has a packet available
543 * Returns 1 if a complete packet is available, 0 if not, -EOPNOTSUPP for IN ep.
545 static int epout_has_pkt(struct pxa_ep
*ep
)
547 if (!is_ep0(ep
) && ep
->dir_in
)
550 return (udc_ep_readl(ep
, UDCCSR
) & UDCCSR0_OPC
);
551 return (udc_ep_readl(ep
, UDCCSR
) & UDCCSR_PC
);
555 * set_ep0state - Set ep0 automata state
559 static void set_ep0state(struct pxa_udc
*udc
, int state
)
561 struct pxa_ep
*ep
= &udc
->pxa_ep
[0];
562 char *old_stname
= EP0_STNAME(udc
);
564 udc
->ep0state
= state
;
565 ep_dbg(ep
, "state=%s->%s, udccsr0=0x%03x, udcbcr=%d\n", old_stname
,
566 EP0_STNAME(udc
), udc_ep_readl(ep
, UDCCSR
),
567 udc_ep_readl(ep
, UDCBCR
));
571 * ep0_idle - Put control endpoint into idle state
574 static void ep0_idle(struct pxa_udc
*dev
)
576 set_ep0state(dev
, WAIT_FOR_SETUP
);
580 * inc_ep_stats_reqs - Update ep stats counts
581 * @ep: physical endpoint
583 * @is_in: ep direction (USB_DIR_IN or 0)
586 static void inc_ep_stats_reqs(struct pxa_ep
*ep
, int is_in
)
595 * inc_ep_stats_bytes - Update ep stats counts
596 * @ep: physical endpoint
597 * @count: bytes transferred on endpoint
598 * @is_in: ep direction (USB_DIR_IN or 0)
600 static void inc_ep_stats_bytes(struct pxa_ep
*ep
, int count
, int is_in
)
603 ep
->stats
.in_bytes
+= count
;
605 ep
->stats
.out_bytes
+= count
;
609 * pxa_ep_setup - Sets up an usb physical endpoint
610 * @ep: pxa27x physical endpoint
612 * Find the physical pxa27x ep, and setup its UDCCR
614 static __init
void pxa_ep_setup(struct pxa_ep
*ep
)
618 new_udccr
= ((ep
->config
<< UDCCONR_CN_S
) & UDCCONR_CN
)
619 | ((ep
->interface
<< UDCCONR_IN_S
) & UDCCONR_IN
)
620 | ((ep
->alternate
<< UDCCONR_AISN_S
) & UDCCONR_AISN
)
621 | ((EPADDR(ep
) << UDCCONR_EN_S
) & UDCCONR_EN
)
622 | ((EPXFERTYPE(ep
) << UDCCONR_ET_S
) & UDCCONR_ET
)
623 | ((ep
->dir_in
) ? UDCCONR_ED
: 0)
624 | ((ep
->fifo_size
<< UDCCONR_MPS_S
) & UDCCONR_MPS
)
627 udc_ep_writel(ep
, UDCCR
, new_udccr
);
631 * pxa_eps_setup - Sets up all usb physical endpoints
634 * Setup all pxa physical endpoints, except ep0
636 static __init
void pxa_eps_setup(struct pxa_udc
*dev
)
640 dev_dbg(dev
->dev
, "%s: dev=%p\n", __func__
, dev
);
642 for (i
= 1; i
< NR_PXA_ENDPOINTS
; i
++)
643 pxa_ep_setup(&dev
->pxa_ep
[i
]);
647 * pxa_ep_alloc_request - Allocate usb request
651 * For the pxa27x, these can just wrap kmalloc/kfree. gadget drivers
652 * must still pass correctly initialized endpoints, since other controller
653 * drivers may care about how it's currently set up (dma issues etc).
655 static struct usb_request
*
656 pxa_ep_alloc_request(struct usb_ep
*_ep
, gfp_t gfp_flags
)
658 struct pxa27x_request
*req
;
660 req
= kzalloc(sizeof *req
, gfp_flags
);
664 INIT_LIST_HEAD(&req
->queue
);
666 req
->udc_usb_ep
= container_of(_ep
, struct udc_usb_ep
, usb_ep
);
672 * pxa_ep_free_request - Free usb request
676 * Wrapper around kfree to free _req
678 static void pxa_ep_free_request(struct usb_ep
*_ep
, struct usb_request
*_req
)
680 struct pxa27x_request
*req
;
682 req
= container_of(_req
, struct pxa27x_request
, req
);
683 WARN_ON(!list_empty(&req
->queue
));
688 * ep_add_request - add a request to the endpoint's queue
692 * Context: ep->lock held
694 * Queues the request in the endpoint's queue, and enables the interrupts
697 static void ep_add_request(struct pxa_ep
*ep
, struct pxa27x_request
*req
)
701 ep_vdbg(ep
, "req:%p, lg=%d, udccsr=0x%03x\n", req
,
702 req
->req
.length
, udc_ep_readl(ep
, UDCCSR
));
705 list_add_tail(&req
->queue
, &ep
->queue
);
710 * ep_del_request - removes a request from the endpoint's queue
714 * Context: ep->lock held
716 * Unqueue the request from the endpoint's queue. If there are no more requests
717 * on the endpoint, and if it's not the control endpoint, interrupts are
718 * disabled on the endpoint.
720 static void ep_del_request(struct pxa_ep
*ep
, struct pxa27x_request
*req
)
724 ep_vdbg(ep
, "req:%p, lg=%d, udccsr=0x%03x\n", req
,
725 req
->req
.length
, udc_ep_readl(ep
, UDCCSR
));
727 list_del_init(&req
->queue
);
729 if (!is_ep0(ep
) && list_empty(&ep
->queue
))
734 * req_done - Complete an usb request
735 * @ep: pxa physical endpoint
737 * @status: usb request status sent to gadget API
738 * @pflags: flags of previous spinlock_irq_save() or NULL if no lock held
740 * Context: ep->lock held if flags not NULL, else ep->lock released
742 * Retire a pxa27x usb request. Endpoint must be locked.
744 static void req_done(struct pxa_ep
*ep
, struct pxa27x_request
*req
, int status
,
745 unsigned long *pflags
)
749 ep_del_request(ep
, req
);
750 if (likely(req
->req
.status
== -EINPROGRESS
))
751 req
->req
.status
= status
;
753 status
= req
->req
.status
;
755 if (status
&& status
!= -ESHUTDOWN
)
756 ep_dbg(ep
, "complete req %p stat %d len %u/%u\n",
758 req
->req
.actual
, req
->req
.length
);
761 spin_unlock_irqrestore(&ep
->lock
, *pflags
);
762 local_irq_save(flags
);
763 req
->req
.complete(&req
->udc_usb_ep
->usb_ep
, &req
->req
);
764 local_irq_restore(flags
);
766 spin_lock_irqsave(&ep
->lock
, *pflags
);
770 * ep_end_out_req - Ends endpoint OUT request
771 * @ep: physical endpoint
773 * @pflags: flags of previous spinlock_irq_save() or NULL if no lock held
775 * Context: ep->lock held or released (see req_done())
777 * Ends endpoint OUT request (completes usb request).
779 static void ep_end_out_req(struct pxa_ep
*ep
, struct pxa27x_request
*req
,
780 unsigned long *pflags
)
782 inc_ep_stats_reqs(ep
, !USB_DIR_IN
);
783 req_done(ep
, req
, 0, pflags
);
787 * ep0_end_out_req - Ends control endpoint OUT request (ends data stage)
788 * @ep: physical endpoint
790 * @pflags: flags of previous spinlock_irq_save() or NULL if no lock held
792 * Context: ep->lock held or released (see req_done())
794 * Ends control endpoint OUT request (completes usb request), and puts
795 * control endpoint into idle state
797 static void ep0_end_out_req(struct pxa_ep
*ep
, struct pxa27x_request
*req
,
798 unsigned long *pflags
)
800 set_ep0state(ep
->dev
, OUT_STATUS_STAGE
);
801 ep_end_out_req(ep
, req
, pflags
);
806 * ep_end_in_req - Ends endpoint IN request
807 * @ep: physical endpoint
809 * @pflags: flags of previous spinlock_irq_save() or NULL if no lock held
811 * Context: ep->lock held or released (see req_done())
813 * Ends endpoint IN request (completes usb request).
815 static void ep_end_in_req(struct pxa_ep
*ep
, struct pxa27x_request
*req
,
816 unsigned long *pflags
)
818 inc_ep_stats_reqs(ep
, USB_DIR_IN
);
819 req_done(ep
, req
, 0, pflags
);
823 * ep0_end_in_req - Ends control endpoint IN request (ends data stage)
824 * @ep: physical endpoint
826 * @pflags: flags of previous spinlock_irq_save() or NULL if no lock held
828 * Context: ep->lock held or released (see req_done())
830 * Ends control endpoint IN request (completes usb request), and puts
831 * control endpoint into status state
833 static void ep0_end_in_req(struct pxa_ep
*ep
, struct pxa27x_request
*req
,
834 unsigned long *pflags
)
836 set_ep0state(ep
->dev
, IN_STATUS_STAGE
);
837 ep_end_in_req(ep
, req
, pflags
);
841 * nuke - Dequeue all requests
843 * @status: usb request status
845 * Context: ep->lock released
847 * Dequeues all requests on an endpoint. As a side effect, interrupts will be
848 * disabled on that endpoint (because no more requests).
850 static void nuke(struct pxa_ep
*ep
, int status
)
852 struct pxa27x_request
*req
;
855 spin_lock_irqsave(&ep
->lock
, flags
);
856 while (!list_empty(&ep
->queue
)) {
857 req
= list_entry(ep
->queue
.next
, struct pxa27x_request
, queue
);
858 req_done(ep
, req
, status
, &flags
);
860 spin_unlock_irqrestore(&ep
->lock
, flags
);
864 * read_packet - transfer 1 packet from an OUT endpoint into request
865 * @ep: pxa physical endpoint
868 * Takes bytes from OUT endpoint and transfers them info the usb request.
869 * If there is less space in request than bytes received in OUT endpoint,
870 * bytes are left in the OUT endpoint.
872 * Returns how many bytes were actually transferred
874 static int read_packet(struct pxa_ep
*ep
, struct pxa27x_request
*req
)
877 int bytes_ep
, bufferspace
, count
, i
;
879 bytes_ep
= ep_count_bytes_remain(ep
);
880 bufferspace
= req
->req
.length
- req
->req
.actual
;
882 buf
= (u32
*)(req
->req
.buf
+ req
->req
.actual
);
885 if (likely(!ep_is_empty(ep
)))
886 count
= min(bytes_ep
, bufferspace
);
890 for (i
= count
; i
> 0; i
-= 4)
891 *buf
++ = udc_ep_readl(ep
, UDCDR
);
892 req
->req
.actual
+= count
;
894 ep_write_UDCCSR(ep
, UDCCSR_PC
);
900 * write_packet - transfer 1 packet from request into an IN endpoint
901 * @ep: pxa physical endpoint
903 * @max: max bytes that fit into endpoint
905 * Takes bytes from usb request, and transfers them into the physical
906 * endpoint. If there are no bytes to transfer, doesn't write anything
907 * to physical endpoint.
909 * Returns how many bytes were actually transferred.
911 static int write_packet(struct pxa_ep
*ep
, struct pxa27x_request
*req
,
914 int length
, count
, remain
, i
;
918 buf
= (u32
*)(req
->req
.buf
+ req
->req
.actual
);
921 length
= min(req
->req
.length
- req
->req
.actual
, max
);
922 req
->req
.actual
+= length
;
924 remain
= length
& 0x3;
925 count
= length
& ~(0x3);
926 for (i
= count
; i
> 0 ; i
-= 4)
927 udc_ep_writel(ep
, UDCDR
, *buf
++);
930 for (i
= remain
; i
> 0; i
--)
931 udc_ep_writeb(ep
, UDCDR
, *buf_8
++);
933 ep_vdbg(ep
, "length=%d+%d, udccsr=0x%03x\n", count
, remain
,
934 udc_ep_readl(ep
, UDCCSR
));
940 * read_fifo - Transfer packets from OUT endpoint into usb request
941 * @ep: pxa physical endpoint
944 * Context: callable when in_interrupt()
946 * Unload as many packets as possible from the fifo we use for usb OUT
947 * transfers and put them into the request. Caller should have made sure
948 * there's at least one packet ready.
949 * Doesn't complete the request, that's the caller's job
951 * Returns 1 if the request completed, 0 otherwise
953 static int read_fifo(struct pxa_ep
*ep
, struct pxa27x_request
*req
)
955 int count
, is_short
, completed
= 0;
957 while (epout_has_pkt(ep
)) {
958 count
= read_packet(ep
, req
);
959 inc_ep_stats_bytes(ep
, count
, !USB_DIR_IN
);
961 is_short
= (count
< ep
->fifo_size
);
962 ep_dbg(ep
, "read udccsr:%03x, count:%d bytes%s req %p %d/%d\n",
963 udc_ep_readl(ep
, UDCCSR
), count
, is_short
? "/S" : "",
964 &req
->req
, req
->req
.actual
, req
->req
.length
);
967 if (is_short
|| req
->req
.actual
== req
->req
.length
) {
971 /* finished that packet. the next one may be waiting... */
977 * write_fifo - transfer packets from usb request into an IN endpoint
978 * @ep: pxa physical endpoint
979 * @req: pxa usb request
981 * Write to an IN endpoint fifo, as many packets as possible.
982 * irqs will use this to write the rest later.
983 * caller guarantees at least one packet buffer is ready (or a zlp).
984 * Doesn't complete the request, that's the caller's job
986 * Returns 1 if request fully transferred, 0 if partial transfer
988 static int write_fifo(struct pxa_ep
*ep
, struct pxa27x_request
*req
)
991 int count
, is_short
, is_last
= 0, completed
= 0, totcount
= 0;
998 udccsr
= udc_ep_readl(ep
, UDCCSR
);
999 if (udccsr
& UDCCSR_PC
) {
1000 ep_vdbg(ep
, "Clearing Transmit Complete, udccsr=%x\n",
1002 ep_write_UDCCSR(ep
, UDCCSR_PC
);
1004 if (udccsr
& UDCCSR_TRN
) {
1005 ep_vdbg(ep
, "Clearing Underrun on, udccsr=%x\n",
1007 ep_write_UDCCSR(ep
, UDCCSR_TRN
);
1010 count
= write_packet(ep
, req
, max
);
1011 inc_ep_stats_bytes(ep
, count
, USB_DIR_IN
);
1014 /* last packet is usually short (or a zlp) */
1015 if (unlikely(count
< max
)) {
1019 if (likely(req
->req
.length
> req
->req
.actual
)
1024 /* interrupt/iso maxpacket may not fill the fifo */
1025 is_short
= unlikely(max
< ep
->fifo_size
);
1029 ep_write_UDCCSR(ep
, UDCCSR_SP
);
1031 /* requests complete when all IN data is in the FIFO */
1036 } while (!ep_is_full(ep
));
1038 ep_dbg(ep
, "wrote count:%d bytes%s%s, left:%d req=%p\n",
1039 totcount
, is_last
? "/L" : "", is_short
? "/S" : "",
1040 req
->req
.length
- req
->req
.actual
, &req
->req
);
1046 * read_ep0_fifo - Transfer packets from control endpoint into usb request
1047 * @ep: control endpoint
1048 * @req: pxa usb request
1050 * Special ep0 version of the above read_fifo. Reads as many bytes from control
1051 * endpoint as can be read, and stores them into usb request (limited by request
1054 * Returns 0 if usb request only partially filled, 1 if fully filled
1056 static int read_ep0_fifo(struct pxa_ep
*ep
, struct pxa27x_request
*req
)
1058 int count
, is_short
, completed
= 0;
1060 while (epout_has_pkt(ep
)) {
1061 count
= read_packet(ep
, req
);
1062 ep_write_UDCCSR(ep
, UDCCSR0_OPC
);
1063 inc_ep_stats_bytes(ep
, count
, !USB_DIR_IN
);
1065 is_short
= (count
< ep
->fifo_size
);
1066 ep_dbg(ep
, "read udccsr:%03x, count:%d bytes%s req %p %d/%d\n",
1067 udc_ep_readl(ep
, UDCCSR
), count
, is_short
? "/S" : "",
1068 &req
->req
, req
->req
.actual
, req
->req
.length
);
1070 if (is_short
|| req
->req
.actual
>= req
->req
.length
) {
1080 * write_ep0_fifo - Send a request to control endpoint (ep0 in)
1081 * @ep: control endpoint
1084 * Context: callable when in_interrupt()
1086 * Sends a request (or a part of the request) to the control endpoint (ep0 in).
1087 * If the request doesn't fit, the remaining part will be sent from irq.
1088 * The request is considered fully written only if either :
1089 * - last write transferred all remaining bytes, but fifo was not fully filled
1090 * - last write was a 0 length write
1092 * Returns 1 if request fully written, 0 if request only partially sent
1094 static int write_ep0_fifo(struct pxa_ep
*ep
, struct pxa27x_request
*req
)
1097 int is_last
, is_short
;
1099 count
= write_packet(ep
, req
, EP0_FIFO_SIZE
);
1100 inc_ep_stats_bytes(ep
, count
, USB_DIR_IN
);
1102 is_short
= (count
< EP0_FIFO_SIZE
);
1103 is_last
= ((count
== 0) || (count
< EP0_FIFO_SIZE
));
1105 /* Sends either a short packet or a 0 length packet */
1106 if (unlikely(is_short
))
1107 ep_write_UDCCSR(ep
, UDCCSR0_IPR
);
1109 ep_dbg(ep
, "in %d bytes%s%s, %d left, req=%p, udccsr0=0x%03x\n",
1110 count
, is_short
? "/S" : "", is_last
? "/L" : "",
1111 req
->req
.length
- req
->req
.actual
,
1112 &req
->req
, udc_ep_readl(ep
, UDCCSR
));
1118 * pxa_ep_queue - Queue a request into an IN endpoint
1119 * @_ep: usb endpoint
1120 * @_req: usb request
1123 * Context: normally called when !in_interrupt, but callable when in_interrupt()
1124 * in the special case of ep0 setup :
1125 * (irq->handle_ep0_ctrl_req->gadget_setup->pxa_ep_queue)
1127 * Returns 0 if succedeed, error otherwise
1129 static int pxa_ep_queue(struct usb_ep
*_ep
, struct usb_request
*_req
,
1132 struct udc_usb_ep
*udc_usb_ep
;
1134 struct pxa27x_request
*req
;
1135 struct pxa_udc
*dev
;
1136 unsigned long flags
;
1140 int recursion_detected
;
1142 req
= container_of(_req
, struct pxa27x_request
, req
);
1143 udc_usb_ep
= container_of(_ep
, struct udc_usb_ep
, usb_ep
);
1145 if (unlikely(!_req
|| !_req
->complete
|| !_req
->buf
))
1151 dev
= udc_usb_ep
->dev
;
1152 ep
= udc_usb_ep
->pxa_ep
;
1157 if (unlikely(!dev
->driver
|| dev
->gadget
.speed
== USB_SPEED_UNKNOWN
)) {
1158 ep_dbg(ep
, "bogus device state\n");
1162 /* iso is always one packet per request, that's the only way
1163 * we can report per-packet status. that also helps with dma.
1165 if (unlikely(EPXFERTYPE_is_ISO(ep
)
1166 && req
->req
.length
> ep
->fifo_size
))
1169 spin_lock_irqsave(&ep
->lock
, flags
);
1170 recursion_detected
= ep
->in_handle_ep
;
1172 is_first_req
= list_empty(&ep
->queue
);
1173 ep_dbg(ep
, "queue req %p(first=%s), len %d buf %p\n",
1174 _req
, is_first_req
? "yes" : "no",
1175 _req
->length
, _req
->buf
);
1178 _req
->status
= -ESHUTDOWN
;
1184 ep_err(ep
, "refusing to queue req %p (already queued)\n", req
);
1188 length
= _req
->length
;
1189 _req
->status
= -EINPROGRESS
;
1192 ep_add_request(ep
, req
);
1193 spin_unlock_irqrestore(&ep
->lock
, flags
);
1196 switch (dev
->ep0state
) {
1197 case WAIT_ACK_SET_CONF_INTERF
:
1199 ep_end_in_req(ep
, req
, NULL
);
1201 ep_err(ep
, "got a request of %d bytes while"
1202 "in state WAIT_ACK_SET_CONF_INTERF\n",
1204 ep_del_request(ep
, req
);
1210 if (!ep_is_full(ep
))
1211 if (write_ep0_fifo(ep
, req
))
1212 ep0_end_in_req(ep
, req
, NULL
);
1214 case OUT_DATA_STAGE
:
1215 if ((length
== 0) || !epout_has_pkt(ep
))
1216 if (read_ep0_fifo(ep
, req
))
1217 ep0_end_out_req(ep
, req
, NULL
);
1220 ep_err(ep
, "odd state %s to send me a request\n",
1221 EP0_STNAME(ep
->dev
));
1222 ep_del_request(ep
, req
);
1227 if (!recursion_detected
)
1234 spin_unlock_irqrestore(&ep
->lock
, flags
);
1239 * pxa_ep_dequeue - Dequeue one request
1240 * @_ep: usb endpoint
1241 * @_req: usb request
1243 * Return 0 if no error, -EINVAL or -ECONNRESET otherwise
1245 static int pxa_ep_dequeue(struct usb_ep
*_ep
, struct usb_request
*_req
)
1248 struct udc_usb_ep
*udc_usb_ep
;
1249 struct pxa27x_request
*req
;
1250 unsigned long flags
;
1255 udc_usb_ep
= container_of(_ep
, struct udc_usb_ep
, usb_ep
);
1256 ep
= udc_usb_ep
->pxa_ep
;
1257 if (!ep
|| is_ep0(ep
))
1260 spin_lock_irqsave(&ep
->lock
, flags
);
1262 /* make sure it's actually queued on this endpoint */
1263 list_for_each_entry(req
, &ep
->queue
, queue
) {
1264 if (&req
->req
== _req
) {
1270 spin_unlock_irqrestore(&ep
->lock
, flags
);
1272 req_done(ep
, req
, -ECONNRESET
, NULL
);
1277 * pxa_ep_set_halt - Halts operations on one endpoint
1278 * @_ep: usb endpoint
1281 * Returns 0 if no error, -EINVAL, -EROFS, -EAGAIN otherwise
1283 static int pxa_ep_set_halt(struct usb_ep
*_ep
, int value
)
1286 struct udc_usb_ep
*udc_usb_ep
;
1287 unsigned long flags
;
1293 udc_usb_ep
= container_of(_ep
, struct udc_usb_ep
, usb_ep
);
1294 ep
= udc_usb_ep
->pxa_ep
;
1295 if (!ep
|| is_ep0(ep
))
1300 * This path (reset toggle+halt) is needed to implement
1301 * SET_INTERFACE on normal hardware. but it can't be
1302 * done from software on the PXA UDC, and the hardware
1303 * forgets to do it as part of SET_INTERFACE automagic.
1305 ep_dbg(ep
, "only host can clear halt\n");
1309 spin_lock_irqsave(&ep
->lock
, flags
);
1312 if (ep
->dir_in
&& (ep_is_full(ep
) || !list_empty(&ep
->queue
)))
1315 /* FST, FEF bits are the same for control and non control endpoints */
1317 ep_write_UDCCSR(ep
, UDCCSR_FST
| UDCCSR_FEF
);
1319 set_ep0state(ep
->dev
, STALL
);
1322 spin_unlock_irqrestore(&ep
->lock
, flags
);
1327 * pxa_ep_fifo_status - Get how many bytes in physical endpoint
1328 * @_ep: usb endpoint
1330 * Returns number of bytes in OUT fifos. Broken for IN fifos.
1332 static int pxa_ep_fifo_status(struct usb_ep
*_ep
)
1335 struct udc_usb_ep
*udc_usb_ep
;
1339 udc_usb_ep
= container_of(_ep
, struct udc_usb_ep
, usb_ep
);
1340 ep
= udc_usb_ep
->pxa_ep
;
1341 if (!ep
|| is_ep0(ep
))
1346 if (ep
->dev
->gadget
.speed
== USB_SPEED_UNKNOWN
|| ep_is_empty(ep
))
1349 return ep_count_bytes_remain(ep
) + 1;
1353 * pxa_ep_fifo_flush - Flushes one endpoint
1354 * @_ep: usb endpoint
1356 * Discards all data in one endpoint(IN or OUT), except control endpoint.
1358 static void pxa_ep_fifo_flush(struct usb_ep
*_ep
)
1361 struct udc_usb_ep
*udc_usb_ep
;
1362 unsigned long flags
;
1366 udc_usb_ep
= container_of(_ep
, struct udc_usb_ep
, usb_ep
);
1367 ep
= udc_usb_ep
->pxa_ep
;
1368 if (!ep
|| is_ep0(ep
))
1371 spin_lock_irqsave(&ep
->lock
, flags
);
1373 if (unlikely(!list_empty(&ep
->queue
)))
1374 ep_dbg(ep
, "called while queue list not empty\n");
1375 ep_dbg(ep
, "called\n");
1377 /* for OUT, just read and discard the FIFO contents. */
1379 while (!ep_is_empty(ep
))
1380 udc_ep_readl(ep
, UDCDR
);
1382 /* most IN status is the same, but ISO can't stall */
1384 UDCCSR_PC
| UDCCSR_FEF
| UDCCSR_TRN
1385 | (EPXFERTYPE_is_ISO(ep
) ? 0 : UDCCSR_SST
));
1388 spin_unlock_irqrestore(&ep
->lock
, flags
);
1392 * pxa_ep_enable - Enables usb endpoint
1393 * @_ep: usb endpoint
1394 * @desc: usb endpoint descriptor
1396 * Nothing much to do here, as ep configuration is done once and for all
1397 * before udc is enabled. After udc enable, no physical endpoint configuration
1399 * Function makes sanity checks and flushes the endpoint.
1401 static int pxa_ep_enable(struct usb_ep
*_ep
,
1402 const struct usb_endpoint_descriptor
*desc
)
1405 struct udc_usb_ep
*udc_usb_ep
;
1406 struct pxa_udc
*udc
;
1411 udc_usb_ep
= container_of(_ep
, struct udc_usb_ep
, usb_ep
);
1412 if (udc_usb_ep
->pxa_ep
) {
1413 ep
= udc_usb_ep
->pxa_ep
;
1414 ep_warn(ep
, "usb_ep %s already enabled, doing nothing\n",
1417 ep
= find_pxa_ep(udc_usb_ep
->dev
, udc_usb_ep
);
1420 if (!ep
|| is_ep0(ep
)) {
1421 dev_err(udc_usb_ep
->dev
->dev
,
1422 "unable to match pxa_ep for ep %s\n",
1427 if ((desc
->bDescriptorType
!= USB_DT_ENDPOINT
)
1428 || (ep
->type
!= usb_endpoint_type(desc
))) {
1429 ep_err(ep
, "type mismatch\n");
1433 if (ep
->fifo_size
< usb_endpoint_maxp(desc
)) {
1434 ep_err(ep
, "bad maxpacket\n");
1438 udc_usb_ep
->pxa_ep
= ep
;
1441 if (!udc
->driver
|| udc
->gadget
.speed
== USB_SPEED_UNKNOWN
) {
1442 ep_err(ep
, "bogus device state\n");
1448 /* flush fifo (mostly for OUT buffers) */
1449 pxa_ep_fifo_flush(_ep
);
1451 ep_dbg(ep
, "enabled\n");
1456 * pxa_ep_disable - Disable usb endpoint
1457 * @_ep: usb endpoint
1459 * Same as for pxa_ep_enable, no physical endpoint configuration can be
1461 * Function flushes the endpoint and related requests.
1463 static int pxa_ep_disable(struct usb_ep
*_ep
)
1466 struct udc_usb_ep
*udc_usb_ep
;
1471 udc_usb_ep
= container_of(_ep
, struct udc_usb_ep
, usb_ep
);
1472 ep
= udc_usb_ep
->pxa_ep
;
1473 if (!ep
|| is_ep0(ep
) || !list_empty(&ep
->queue
))
1477 nuke(ep
, -ESHUTDOWN
);
1479 pxa_ep_fifo_flush(_ep
);
1480 udc_usb_ep
->pxa_ep
= NULL
;
1482 ep_dbg(ep
, "disabled\n");
1486 static struct usb_ep_ops pxa_ep_ops
= {
1487 .enable
= pxa_ep_enable
,
1488 .disable
= pxa_ep_disable
,
1490 .alloc_request
= pxa_ep_alloc_request
,
1491 .free_request
= pxa_ep_free_request
,
1493 .queue
= pxa_ep_queue
,
1494 .dequeue
= pxa_ep_dequeue
,
1496 .set_halt
= pxa_ep_set_halt
,
1497 .fifo_status
= pxa_ep_fifo_status
,
1498 .fifo_flush
= pxa_ep_fifo_flush
,
1502 * dplus_pullup - Connect or disconnect pullup resistor to D+ pin
1504 * @on: 0 if disconnect pullup resistor, 1 otherwise
1507 * Handle D+ pullup resistor, make the device visible to the usb bus, and
1508 * declare it as a full speed usb device
1510 static void dplus_pullup(struct pxa_udc
*udc
, int on
)
1513 if (gpio_is_valid(udc
->mach
->gpio_pullup
))
1514 gpio_set_value(udc
->mach
->gpio_pullup
,
1515 !udc
->mach
->gpio_pullup_inverted
);
1516 if (udc
->mach
->udc_command
)
1517 udc
->mach
->udc_command(PXA2XX_UDC_CMD_CONNECT
);
1519 if (gpio_is_valid(udc
->mach
->gpio_pullup
))
1520 gpio_set_value(udc
->mach
->gpio_pullup
,
1521 udc
->mach
->gpio_pullup_inverted
);
1522 if (udc
->mach
->udc_command
)
1523 udc
->mach
->udc_command(PXA2XX_UDC_CMD_DISCONNECT
);
1525 udc
->pullup_on
= on
;
1529 * pxa_udc_get_frame - Returns usb frame number
1530 * @_gadget: usb gadget
1532 static int pxa_udc_get_frame(struct usb_gadget
*_gadget
)
1534 struct pxa_udc
*udc
= to_gadget_udc(_gadget
);
1536 return (udc_readl(udc
, UDCFNR
) & 0x7ff);
1540 * pxa_udc_wakeup - Force udc device out of suspend
1541 * @_gadget: usb gadget
1543 * Returns 0 if successful, error code otherwise
1545 static int pxa_udc_wakeup(struct usb_gadget
*_gadget
)
1547 struct pxa_udc
*udc
= to_gadget_udc(_gadget
);
1549 /* host may not have enabled remote wakeup */
1550 if ((udc_readl(udc
, UDCCR
) & UDCCR_DWRE
) == 0)
1551 return -EHOSTUNREACH
;
1552 udc_set_mask_UDCCR(udc
, UDCCR_UDR
);
1556 static void udc_enable(struct pxa_udc
*udc
);
1557 static void udc_disable(struct pxa_udc
*udc
);
1560 * should_enable_udc - Tells if UDC should be enabled
1564 * The UDC should be enabled if :
1566 * - the pullup resistor is connected
1567 * - and a gadget driver is bound
1568 * - and vbus is sensed (or no vbus sense is available)
1570 * Returns 1 if UDC should be enabled, 0 otherwise
1572 static int should_enable_udc(struct pxa_udc
*udc
)
1576 put_on
= ((udc
->pullup_on
) && (udc
->driver
));
1577 put_on
&= ((udc
->vbus_sensed
) || (IS_ERR_OR_NULL(udc
->transceiver
)));
1582 * should_disable_udc - Tells if UDC should be disabled
1586 * The UDC should be disabled if :
1587 * - the pullup resistor is not connected
1588 * - or no gadget driver is bound
1589 * - or no vbus is sensed (when vbus sesing is available)
1591 * Returns 1 if UDC should be disabled
1593 static int should_disable_udc(struct pxa_udc
*udc
)
1597 put_off
= ((!udc
->pullup_on
) || (!udc
->driver
));
1598 put_off
|= ((!udc
->vbus_sensed
) && (!IS_ERR_OR_NULL(udc
->transceiver
)));
1603 * pxa_udc_pullup - Offer manual D+ pullup control
1604 * @_gadget: usb gadget using the control
1605 * @is_active: 0 if disconnect, else connect D+ pullup resistor
1606 * Context: !in_interrupt()
1608 * Returns 0 if OK, -EOPNOTSUPP if udc driver doesn't handle D+ pullup
1610 static int pxa_udc_pullup(struct usb_gadget
*_gadget
, int is_active
)
1612 struct pxa_udc
*udc
= to_gadget_udc(_gadget
);
1614 if (!gpio_is_valid(udc
->mach
->gpio_pullup
) && !udc
->mach
->udc_command
)
1617 dplus_pullup(udc
, is_active
);
1619 if (should_enable_udc(udc
))
1621 if (should_disable_udc(udc
))
1626 static void udc_enable(struct pxa_udc
*udc
);
1627 static void udc_disable(struct pxa_udc
*udc
);
1630 * pxa_udc_vbus_session - Called by external transceiver to enable/disable udc
1631 * @_gadget: usb gadget
1632 * @is_active: 0 if should disable the udc, 1 if should enable
1634 * Enables the udc, and optionnaly activates D+ pullup resistor. Or disables the
1635 * udc, and deactivates D+ pullup resistor.
1639 static int pxa_udc_vbus_session(struct usb_gadget
*_gadget
, int is_active
)
1641 struct pxa_udc
*udc
= to_gadget_udc(_gadget
);
1643 udc
->vbus_sensed
= is_active
;
1644 if (should_enable_udc(udc
))
1646 if (should_disable_udc(udc
))
1653 * pxa_udc_vbus_draw - Called by gadget driver after SET_CONFIGURATION completed
1654 * @_gadget: usb gadget
1655 * @mA: current drawn
1657 * Context: !in_interrupt()
1659 * Called after a configuration was chosen by a USB host, to inform how much
1660 * current can be drawn by the device from VBus line.
1662 * Returns 0 or -EOPNOTSUPP if no transceiver is handling the udc
1664 static int pxa_udc_vbus_draw(struct usb_gadget
*_gadget
, unsigned mA
)
1666 struct pxa_udc
*udc
;
1668 udc
= to_gadget_udc(_gadget
);
1669 if (!IS_ERR_OR_NULL(udc
->transceiver
))
1670 return usb_phy_set_power(udc
->transceiver
, mA
);
1674 static int pxa27x_udc_start(struct usb_gadget_driver
*driver
,
1675 int (*bind
)(struct usb_gadget
*));
1676 static int pxa27x_udc_stop(struct usb_gadget_driver
*driver
);
1678 static const struct usb_gadget_ops pxa_udc_ops
= {
1679 .get_frame
= pxa_udc_get_frame
,
1680 .wakeup
= pxa_udc_wakeup
,
1681 .pullup
= pxa_udc_pullup
,
1682 .vbus_session
= pxa_udc_vbus_session
,
1683 .vbus_draw
= pxa_udc_vbus_draw
,
1684 .start
= pxa27x_udc_start
,
1685 .stop
= pxa27x_udc_stop
,
1689 * udc_disable - disable udc device controller
1693 * Disables the udc device : disables clocks, udc interrupts, control endpoint
1696 static void udc_disable(struct pxa_udc
*udc
)
1701 udc_writel(udc
, UDCICR0
, 0);
1702 udc_writel(udc
, UDCICR1
, 0);
1704 udc_clear_mask_UDCCR(udc
, UDCCR_UDE
);
1705 clk_disable(udc
->clk
);
1708 udc
->gadget
.speed
= USB_SPEED_UNKNOWN
;
1714 * udc_init_data - Initialize udc device data structures
1717 * Initializes gadget endpoint list, endpoints locks. No action is taken
1720 static __init
void udc_init_data(struct pxa_udc
*dev
)
1725 /* device/ep0 records init */
1726 INIT_LIST_HEAD(&dev
->gadget
.ep_list
);
1727 INIT_LIST_HEAD(&dev
->gadget
.ep0
->ep_list
);
1728 dev
->udc_usb_ep
[0].pxa_ep
= &dev
->pxa_ep
[0];
1731 /* PXA endpoints init */
1732 for (i
= 0; i
< NR_PXA_ENDPOINTS
; i
++) {
1733 ep
= &dev
->pxa_ep
[i
];
1735 ep
->enabled
= is_ep0(ep
);
1736 INIT_LIST_HEAD(&ep
->queue
);
1737 spin_lock_init(&ep
->lock
);
1740 /* USB endpoints init */
1741 for (i
= 1; i
< NR_USB_ENDPOINTS
; i
++)
1742 list_add_tail(&dev
->udc_usb_ep
[i
].usb_ep
.ep_list
,
1743 &dev
->gadget
.ep_list
);
1747 * udc_enable - Enables the udc device
1750 * Enables the udc device : enables clocks, udc interrupts, control endpoint
1751 * interrupts, sets usb as UDC client and setups endpoints.
1753 static void udc_enable(struct pxa_udc
*udc
)
1758 udc_writel(udc
, UDCICR0
, 0);
1759 udc_writel(udc
, UDCICR1
, 0);
1760 udc_clear_mask_UDCCR(udc
, UDCCR_UDE
);
1762 clk_enable(udc
->clk
);
1765 udc
->gadget
.speed
= USB_SPEED_FULL
;
1766 memset(&udc
->stats
, 0, sizeof(udc
->stats
));
1768 udc_set_mask_UDCCR(udc
, UDCCR_UDE
);
1769 ep_write_UDCCSR(&udc
->pxa_ep
[0], UDCCSR0_ACM
);
1771 if (udc_readl(udc
, UDCCR
) & UDCCR_EMCE
)
1772 dev_err(udc
->dev
, "Configuration errors, udc disabled\n");
1775 * Caller must be able to sleep in order to cope with startup transients
1779 /* enable suspend/resume and reset irqs */
1780 udc_writel(udc
, UDCICR1
,
1781 UDCICR1_IECC
| UDCICR1_IERU
1782 | UDCICR1_IESU
| UDCICR1_IERS
);
1784 /* enable ep0 irqs */
1785 pio_irq_enable(&udc
->pxa_ep
[0]);
1791 * pxa27x_start - Register gadget driver
1792 * @driver: gadget driver
1793 * @bind: bind function
1795 * When a driver is successfully registered, it will receive control requests
1796 * including set_configuration(), which enables non-control requests. Then
1797 * usb traffic follows until a disconnect is reported. Then a host may connect
1798 * again, or the driver might get unbound.
1800 * Note that the udc is not automatically enabled. Check function
1801 * should_enable_udc().
1803 * Returns 0 if no error, -EINVAL, -ENODEV, -EBUSY otherwise
1805 static int pxa27x_udc_start(struct usb_gadget_driver
*driver
,
1806 int (*bind
)(struct usb_gadget
*))
1808 struct pxa_udc
*udc
= the_controller
;
1811 if (!driver
|| driver
->max_speed
< USB_SPEED_FULL
|| !bind
1812 || !driver
->disconnect
|| !driver
->setup
)
1819 /* first hook up the driver ... */
1820 udc
->driver
= driver
;
1821 udc
->gadget
.dev
.driver
= &driver
->driver
;
1822 dplus_pullup(udc
, 1);
1824 retval
= device_add(&udc
->gadget
.dev
);
1826 dev_err(udc
->dev
, "device_add error %d\n", retval
);
1829 retval
= bind(&udc
->gadget
);
1831 dev_err(udc
->dev
, "bind to driver %s --> error %d\n",
1832 driver
->driver
.name
, retval
);
1835 dev_dbg(udc
->dev
, "registered gadget driver '%s'\n",
1836 driver
->driver
.name
);
1838 if (!IS_ERR_OR_NULL(udc
->transceiver
)) {
1839 retval
= otg_set_peripheral(udc
->transceiver
->otg
,
1842 dev_err(udc
->dev
, "can't bind to transceiver\n");
1843 goto transceiver_fail
;
1847 if (should_enable_udc(udc
))
1853 driver
->unbind(&udc
->gadget
);
1855 device_del(&udc
->gadget
.dev
);
1858 udc
->gadget
.dev
.driver
= NULL
;
1863 * stop_activity - Stops udc endpoints
1865 * @driver: gadget driver
1867 * Disables all udc endpoints (even control endpoint), report disconnect to
1870 static void stop_activity(struct pxa_udc
*udc
, struct usb_gadget_driver
*driver
)
1874 /* don't disconnect drivers more than once */
1875 if (udc
->gadget
.speed
== USB_SPEED_UNKNOWN
)
1877 udc
->gadget
.speed
= USB_SPEED_UNKNOWN
;
1879 for (i
= 0; i
< NR_USB_ENDPOINTS
; i
++)
1880 pxa_ep_disable(&udc
->udc_usb_ep
[i
].usb_ep
);
1883 driver
->disconnect(&udc
->gadget
);
1887 * pxa27x_udc_stop - Unregister the gadget driver
1888 * @driver: gadget driver
1890 * Returns 0 if no error, -ENODEV, -EINVAL otherwise
1892 static int pxa27x_udc_stop(struct usb_gadget_driver
*driver
)
1894 struct pxa_udc
*udc
= the_controller
;
1898 if (!driver
|| driver
!= udc
->driver
|| !driver
->unbind
)
1901 stop_activity(udc
, driver
);
1903 dplus_pullup(udc
, 0);
1905 driver
->unbind(&udc
->gadget
);
1908 device_del(&udc
->gadget
.dev
);
1909 dev_info(udc
->dev
, "unregistered gadget driver '%s'\n",
1910 driver
->driver
.name
);
1912 if (!IS_ERR_OR_NULL(udc
->transceiver
))
1913 return otg_set_peripheral(udc
->transceiver
->otg
, NULL
);
1918 * handle_ep0_ctrl_req - handle control endpoint control request
1920 * @req: control request
1922 static void handle_ep0_ctrl_req(struct pxa_udc
*udc
,
1923 struct pxa27x_request
*req
)
1925 struct pxa_ep
*ep
= &udc
->pxa_ep
[0];
1927 struct usb_ctrlrequest r
;
1931 int have_extrabytes
= 0;
1932 unsigned long flags
;
1935 spin_lock_irqsave(&ep
->lock
, flags
);
1938 * In the PXA320 manual, in the section about Back-to-Back setup
1939 * packets, it describes this situation. The solution is to set OPC to
1940 * get rid of the status packet, and then continue with the setup
1941 * packet. Generalize to pxa27x CPUs.
1943 if (epout_has_pkt(ep
) && (ep_count_bytes_remain(ep
) == 0))
1944 ep_write_UDCCSR(ep
, UDCCSR0_OPC
);
1946 /* read SETUP packet */
1947 for (i
= 0; i
< 2; i
++) {
1948 if (unlikely(ep_is_empty(ep
)))
1950 u
.word
[i
] = udc_ep_readl(ep
, UDCDR
);
1953 have_extrabytes
= !ep_is_empty(ep
);
1954 while (!ep_is_empty(ep
)) {
1955 i
= udc_ep_readl(ep
, UDCDR
);
1956 ep_err(ep
, "wrong to have extra bytes for setup : 0x%08x\n", i
);
1959 ep_dbg(ep
, "SETUP %02x.%02x v%04x i%04x l%04x\n",
1960 u
.r
.bRequestType
, u
.r
.bRequest
,
1961 le16_to_cpu(u
.r
.wValue
), le16_to_cpu(u
.r
.wIndex
),
1962 le16_to_cpu(u
.r
.wLength
));
1963 if (unlikely(have_extrabytes
))
1966 if (u
.r
.bRequestType
& USB_DIR_IN
)
1967 set_ep0state(udc
, IN_DATA_STAGE
);
1969 set_ep0state(udc
, OUT_DATA_STAGE
);
1971 /* Tell UDC to enter Data Stage */
1972 ep_write_UDCCSR(ep
, UDCCSR0_SA
| UDCCSR0_OPC
);
1974 spin_unlock_irqrestore(&ep
->lock
, flags
);
1975 i
= udc
->driver
->setup(&udc
->gadget
, &u
.r
);
1976 spin_lock_irqsave(&ep
->lock
, flags
);
1980 spin_unlock_irqrestore(&ep
->lock
, flags
);
1983 ep_dbg(ep
, "protocol STALL, udccsr0=%03x err %d\n",
1984 udc_ep_readl(ep
, UDCCSR
), i
);
1985 ep_write_UDCCSR(ep
, UDCCSR0_FST
| UDCCSR0_FTF
);
1986 set_ep0state(udc
, STALL
);
1991 * handle_ep0 - Handle control endpoint data transfers
1993 * @fifo_irq: 1 if triggered by fifo service type irq
1994 * @opc_irq: 1 if triggered by output packet complete type irq
1996 * Context : when in_interrupt() or with ep->lock held
1998 * Tries to transfer all pending request data into the endpoint and/or
1999 * transfer all pending data in the endpoint into usb requests.
2000 * Handles states of ep0 automata.
2002 * PXA27x hardware handles several standard usb control requests without
2003 * driver notification. The requests fully handled by hardware are :
2004 * SET_ADDRESS, SET_FEATURE, CLEAR_FEATURE, GET_CONFIGURATION, GET_INTERFACE,
2006 * The requests handled by hardware, but with irq notification are :
2007 * SYNCH_FRAME, SET_CONFIGURATION, SET_INTERFACE
2008 * The remaining standard requests really handled by handle_ep0 are :
2009 * GET_DESCRIPTOR, SET_DESCRIPTOR, specific requests.
2010 * Requests standardized outside of USB 2.0 chapter 9 are handled more
2011 * uniformly, by gadget drivers.
2013 * The control endpoint state machine is _not_ USB spec compliant, it's even
2014 * hardly compliant with Intel PXA270 developers guide.
2015 * The key points which inferred this state machine are :
2016 * - on every setup token, bit UDCCSR0_SA is raised and held until cleared by
2018 * - on every OUT packet received, UDCCSR0_OPC is raised and held until
2019 * cleared by software.
2020 * - clearing UDCCSR0_OPC always flushes ep0. If in setup stage, never do it
2021 * before reading ep0.
2022 * This is true only for PXA27x. This is not true anymore for PXA3xx family
2023 * (check Back-to-Back setup packet in developers guide).
2024 * - irq can be called on a "packet complete" event (opc_irq=1), while
2025 * UDCCSR0_OPC is not yet raised (delta can be as big as 100ms
2026 * from experimentation).
2027 * - as UDCCSR0_SA can be activated while in irq handling, and clearing
2028 * UDCCSR0_OPC would flush the setup data, we almost never clear UDCCSR0_OPC
2029 * => we never actually read the "status stage" packet of an IN data stage
2030 * => this is not documented in Intel documentation
2031 * - hardware as no idea of STATUS STAGE, it only handle SETUP STAGE and DATA
2032 * STAGE. The driver add STATUS STAGE to send last zero length packet in
2034 * - special attention was needed for IN_STATUS_STAGE. If a packet complete
2035 * event is detected, we terminate the status stage without ackowledging the
2036 * packet (not to risk to loose a potential SETUP packet)
2038 static void handle_ep0(struct pxa_udc
*udc
, int fifo_irq
, int opc_irq
)
2041 struct pxa_ep
*ep
= &udc
->pxa_ep
[0];
2042 struct pxa27x_request
*req
= NULL
;
2045 if (!list_empty(&ep
->queue
))
2046 req
= list_entry(ep
->queue
.next
, struct pxa27x_request
, queue
);
2048 udccsr0
= udc_ep_readl(ep
, UDCCSR
);
2049 ep_dbg(ep
, "state=%s, req=%p, udccsr0=0x%03x, udcbcr=%d, irq_msk=%x\n",
2050 EP0_STNAME(udc
), req
, udccsr0
, udc_ep_readl(ep
, UDCBCR
),
2051 (fifo_irq
<< 1 | opc_irq
));
2053 if (udccsr0
& UDCCSR0_SST
) {
2054 ep_dbg(ep
, "clearing stall status\n");
2056 ep_write_UDCCSR(ep
, UDCCSR0_SST
);
2060 if (udccsr0
& UDCCSR0_SA
) {
2062 set_ep0state(udc
, SETUP_STAGE
);
2065 switch (udc
->ep0state
) {
2066 case WAIT_FOR_SETUP
:
2068 * Hardware bug : beware, we cannot clear OPC, since we would
2069 * miss a potential OPC irq for a setup packet.
2070 * So, we only do ... nothing, and hope for a next irq with
2075 udccsr0
&= UDCCSR0_CTRL_REQ_MASK
;
2076 if (likely(udccsr0
== UDCCSR0_CTRL_REQ_MASK
))
2077 handle_ep0_ctrl_req(udc
, req
);
2079 case IN_DATA_STAGE
: /* GET_DESCRIPTOR */
2080 if (epout_has_pkt(ep
))
2081 ep_write_UDCCSR(ep
, UDCCSR0_OPC
);
2082 if (req
&& !ep_is_full(ep
))
2083 completed
= write_ep0_fifo(ep
, req
);
2085 ep0_end_in_req(ep
, req
, NULL
);
2087 case OUT_DATA_STAGE
: /* SET_DESCRIPTOR */
2088 if (epout_has_pkt(ep
) && req
)
2089 completed
= read_ep0_fifo(ep
, req
);
2091 ep0_end_out_req(ep
, req
, NULL
);
2094 ep_write_UDCCSR(ep
, UDCCSR0_FST
);
2096 case IN_STATUS_STAGE
:
2098 * Hardware bug : beware, we cannot clear OPC, since we would
2099 * miss a potential PC irq for a setup packet.
2100 * So, we only put the ep0 into WAIT_FOR_SETUP state.
2105 case OUT_STATUS_STAGE
:
2106 case WAIT_ACK_SET_CONF_INTERF
:
2107 ep_warn(ep
, "should never get in %s state here!!!\n",
2108 EP0_STNAME(ep
->dev
));
2115 * handle_ep - Handle endpoint data tranfers
2116 * @ep: pxa physical endpoint
2118 * Tries to transfer all pending request data into the endpoint and/or
2119 * transfer all pending data in the endpoint into usb requests.
2121 * Is always called when in_interrupt() and with ep->lock released.
2123 static void handle_ep(struct pxa_ep
*ep
)
2125 struct pxa27x_request
*req
;
2128 int is_in
= ep
->dir_in
;
2130 unsigned long flags
;
2132 spin_lock_irqsave(&ep
->lock
, flags
);
2133 if (ep
->in_handle_ep
)
2134 goto recursion_detected
;
2135 ep
->in_handle_ep
= 1;
2139 udccsr
= udc_ep_readl(ep
, UDCCSR
);
2141 if (likely(!list_empty(&ep
->queue
)))
2142 req
= list_entry(ep
->queue
.next
,
2143 struct pxa27x_request
, queue
);
2147 ep_dbg(ep
, "req:%p, udccsr 0x%03x loop=%d\n",
2148 req
, udccsr
, loop
++);
2150 if (unlikely(udccsr
& (UDCCSR_SST
| UDCCSR_TRN
)))
2151 udc_ep_writel(ep
, UDCCSR
,
2152 udccsr
& (UDCCSR_SST
| UDCCSR_TRN
));
2156 if (unlikely(is_in
)) {
2157 if (likely(!ep_is_full(ep
)))
2158 completed
= write_fifo(ep
, req
);
2160 if (likely(epout_has_pkt(ep
)))
2161 completed
= read_fifo(ep
, req
);
2166 ep_end_in_req(ep
, req
, &flags
);
2168 ep_end_out_req(ep
, req
, &flags
);
2170 } while (completed
);
2172 ep
->in_handle_ep
= 0;
2174 spin_unlock_irqrestore(&ep
->lock
, flags
);
2178 * pxa27x_change_configuration - Handle SET_CONF usb request notification
2180 * @config: usb configuration
2182 * Post the request to upper level.
2183 * Don't use any pxa specific harware configuration capabilities
2185 static void pxa27x_change_configuration(struct pxa_udc
*udc
, int config
)
2187 struct usb_ctrlrequest req
;
2189 dev_dbg(udc
->dev
, "config=%d\n", config
);
2191 udc
->config
= config
;
2192 udc
->last_interface
= 0;
2193 udc
->last_alternate
= 0;
2195 req
.bRequestType
= 0;
2196 req
.bRequest
= USB_REQ_SET_CONFIGURATION
;
2197 req
.wValue
= config
;
2201 set_ep0state(udc
, WAIT_ACK_SET_CONF_INTERF
);
2202 udc
->driver
->setup(&udc
->gadget
, &req
);
2203 ep_write_UDCCSR(&udc
->pxa_ep
[0], UDCCSR0_AREN
);
2207 * pxa27x_change_interface - Handle SET_INTERF usb request notification
2209 * @iface: interface number
2210 * @alt: alternate setting number
2212 * Post the request to upper level.
2213 * Don't use any pxa specific harware configuration capabilities
2215 static void pxa27x_change_interface(struct pxa_udc
*udc
, int iface
, int alt
)
2217 struct usb_ctrlrequest req
;
2219 dev_dbg(udc
->dev
, "interface=%d, alternate setting=%d\n", iface
, alt
);
2221 udc
->last_interface
= iface
;
2222 udc
->last_alternate
= alt
;
2224 req
.bRequestType
= USB_RECIP_INTERFACE
;
2225 req
.bRequest
= USB_REQ_SET_INTERFACE
;
2230 set_ep0state(udc
, WAIT_ACK_SET_CONF_INTERF
);
2231 udc
->driver
->setup(&udc
->gadget
, &req
);
2232 ep_write_UDCCSR(&udc
->pxa_ep
[0], UDCCSR0_AREN
);
2236 * irq_handle_data - Handle data transfer
2237 * @irq: irq IRQ number
2238 * @udc: dev pxa_udc device structure
2240 * Called from irq handler, transferts data to or from endpoint to queue
2242 static void irq_handle_data(int irq
, struct pxa_udc
*udc
)
2246 u32 udcisr0
= udc_readl(udc
, UDCISR0
) & UDCCISR0_EP_MASK
;
2247 u32 udcisr1
= udc_readl(udc
, UDCISR1
) & UDCCISR1_EP_MASK
;
2249 if (udcisr0
& UDCISR_INT_MASK
) {
2250 udc
->pxa_ep
[0].stats
.irqs
++;
2251 udc_writel(udc
, UDCISR0
, UDCISR_INT(0, UDCISR_INT_MASK
));
2252 handle_ep0(udc
, !!(udcisr0
& UDCICR_FIFOERR
),
2253 !!(udcisr0
& UDCICR_PKTCOMPL
));
2257 for (i
= 1; udcisr0
!= 0 && i
< 16; udcisr0
>>= 2, i
++) {
2258 if (!(udcisr0
& UDCISR_INT_MASK
))
2261 udc_writel(udc
, UDCISR0
, UDCISR_INT(i
, UDCISR_INT_MASK
));
2263 WARN_ON(i
>= ARRAY_SIZE(udc
->pxa_ep
));
2264 if (i
< ARRAY_SIZE(udc
->pxa_ep
)) {
2265 ep
= &udc
->pxa_ep
[i
];
2271 for (i
= 16; udcisr1
!= 0 && i
< 24; udcisr1
>>= 2, i
++) {
2272 udc_writel(udc
, UDCISR1
, UDCISR_INT(i
- 16, UDCISR_INT_MASK
));
2273 if (!(udcisr1
& UDCISR_INT_MASK
))
2276 WARN_ON(i
>= ARRAY_SIZE(udc
->pxa_ep
));
2277 if (i
< ARRAY_SIZE(udc
->pxa_ep
)) {
2278 ep
= &udc
->pxa_ep
[i
];
2287 * irq_udc_suspend - Handle IRQ "UDC Suspend"
2290 static void irq_udc_suspend(struct pxa_udc
*udc
)
2292 udc_writel(udc
, UDCISR1
, UDCISR1_IRSU
);
2293 udc
->stats
.irqs_suspend
++;
2295 if (udc
->gadget
.speed
!= USB_SPEED_UNKNOWN
2296 && udc
->driver
&& udc
->driver
->suspend
)
2297 udc
->driver
->suspend(&udc
->gadget
);
2302 * irq_udc_resume - Handle IRQ "UDC Resume"
2305 static void irq_udc_resume(struct pxa_udc
*udc
)
2307 udc_writel(udc
, UDCISR1
, UDCISR1_IRRU
);
2308 udc
->stats
.irqs_resume
++;
2310 if (udc
->gadget
.speed
!= USB_SPEED_UNKNOWN
2311 && udc
->driver
&& udc
->driver
->resume
)
2312 udc
->driver
->resume(&udc
->gadget
);
2316 * irq_udc_reconfig - Handle IRQ "UDC Change Configuration"
2319 static void irq_udc_reconfig(struct pxa_udc
*udc
)
2321 unsigned config
, interface
, alternate
, config_change
;
2322 u32 udccr
= udc_readl(udc
, UDCCR
);
2324 udc_writel(udc
, UDCISR1
, UDCISR1_IRCC
);
2325 udc
->stats
.irqs_reconfig
++;
2327 config
= (udccr
& UDCCR_ACN
) >> UDCCR_ACN_S
;
2328 config_change
= (config
!= udc
->config
);
2329 pxa27x_change_configuration(udc
, config
);
2331 interface
= (udccr
& UDCCR_AIN
) >> UDCCR_AIN_S
;
2332 alternate
= (udccr
& UDCCR_AAISN
) >> UDCCR_AAISN_S
;
2333 pxa27x_change_interface(udc
, interface
, alternate
);
2336 update_pxa_ep_matches(udc
);
2337 udc_set_mask_UDCCR(udc
, UDCCR_SMAC
);
2341 * irq_udc_reset - Handle IRQ "UDC Reset"
2344 static void irq_udc_reset(struct pxa_udc
*udc
)
2346 u32 udccr
= udc_readl(udc
, UDCCR
);
2347 struct pxa_ep
*ep
= &udc
->pxa_ep
[0];
2349 dev_info(udc
->dev
, "USB reset\n");
2350 udc_writel(udc
, UDCISR1
, UDCISR1_IRRS
);
2351 udc
->stats
.irqs_reset
++;
2353 if ((udccr
& UDCCR_UDA
) == 0) {
2354 dev_dbg(udc
->dev
, "USB reset start\n");
2355 stop_activity(udc
, udc
->driver
);
2357 udc
->gadget
.speed
= USB_SPEED_FULL
;
2358 memset(&udc
->stats
, 0, sizeof udc
->stats
);
2361 ep_write_UDCCSR(ep
, UDCCSR0_FTF
| UDCCSR0_OPC
);
2366 * pxa_udc_irq - Main irq handler
2370 * Handles all udc interrupts
2372 static irqreturn_t
pxa_udc_irq(int irq
, void *_dev
)
2374 struct pxa_udc
*udc
= _dev
;
2375 u32 udcisr0
= udc_readl(udc
, UDCISR0
);
2376 u32 udcisr1
= udc_readl(udc
, UDCISR1
);
2377 u32 udccr
= udc_readl(udc
, UDCCR
);
2380 dev_vdbg(udc
->dev
, "Interrupt, UDCISR0:0x%08x, UDCISR1:0x%08x, "
2381 "UDCCR:0x%08x\n", udcisr0
, udcisr1
, udccr
);
2383 udcisr1_spec
= udcisr1
& 0xf8000000;
2384 if (unlikely(udcisr1_spec
& UDCISR1_IRSU
))
2385 irq_udc_suspend(udc
);
2386 if (unlikely(udcisr1_spec
& UDCISR1_IRRU
))
2387 irq_udc_resume(udc
);
2388 if (unlikely(udcisr1_spec
& UDCISR1_IRCC
))
2389 irq_udc_reconfig(udc
);
2390 if (unlikely(udcisr1_spec
& UDCISR1_IRRS
))
2393 if ((udcisr0
& UDCCISR0_EP_MASK
) | (udcisr1
& UDCCISR1_EP_MASK
))
2394 irq_handle_data(irq
, udc
);
2399 static struct pxa_udc memory
= {
2401 .ops
= &pxa_udc_ops
,
2402 .ep0
= &memory
.udc_usb_ep
[0].usb_ep
,
2403 .name
= driver_name
,
2405 .init_name
= "gadget",
2420 /* Endpoints for gadget zero */
2421 PXA_EP_OUT_BULK(1, 1, 3, 0, 0),
2422 PXA_EP_IN_BULK(2, 2, 3, 0, 0),
2423 /* Endpoints for ether gadget, file storage gadget */
2424 PXA_EP_OUT_BULK(3, 1, 1, 0, 0),
2425 PXA_EP_IN_BULK(4, 2, 1, 0, 0),
2426 PXA_EP_IN_ISO(5, 3, 1, 0, 0),
2427 PXA_EP_OUT_ISO(6, 4, 1, 0, 0),
2428 PXA_EP_IN_INT(7, 5, 1, 0, 0),
2429 /* Endpoints for RNDIS, serial */
2430 PXA_EP_OUT_BULK(8, 1, 2, 0, 0),
2431 PXA_EP_IN_BULK(9, 2, 2, 0, 0),
2432 PXA_EP_IN_INT(10, 5, 2, 0, 0),
2434 * All the following endpoints are only for completion. They
2435 * won't never work, as multiple interfaces are really broken on
2438 PXA_EP_OUT_BULK(11, 1, 2, 1, 0),
2439 PXA_EP_IN_BULK(12, 2, 2, 1, 0),
2440 /* Endpoint for CDC Ether */
2441 PXA_EP_OUT_BULK(13, 1, 1, 1, 1),
2442 PXA_EP_IN_BULK(14, 2, 1, 1, 1),
2447 * pxa_udc_probe - probes the udc device
2448 * @_dev: platform device
2450 * Perform basic init : allocates udc clock, creates sysfs files, requests
2453 static int __init
pxa_udc_probe(struct platform_device
*pdev
)
2455 struct resource
*regs
;
2456 struct pxa_udc
*udc
= &memory
;
2457 int retval
= 0, gpio
;
2459 regs
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
2462 udc
->irq
= platform_get_irq(pdev
, 0);
2466 udc
->dev
= &pdev
->dev
;
2467 udc
->mach
= pdev
->dev
.platform_data
;
2468 udc
->transceiver
= usb_get_phy(USB_PHY_TYPE_USB2
);
2470 gpio
= udc
->mach
->gpio_pullup
;
2471 if (gpio_is_valid(gpio
)) {
2472 retval
= gpio_request(gpio
, "USB D+ pullup");
2474 gpio_direction_output(gpio
,
2475 udc
->mach
->gpio_pullup_inverted
);
2478 dev_err(&pdev
->dev
, "Couldn't request gpio %d : %d\n",
2483 udc
->clk
= clk_get(&pdev
->dev
, NULL
);
2484 if (IS_ERR(udc
->clk
)) {
2485 retval
= PTR_ERR(udc
->clk
);
2490 udc
->regs
= ioremap(regs
->start
, resource_size(regs
));
2492 dev_err(&pdev
->dev
, "Unable to map UDC I/O memory\n");
2496 device_initialize(&udc
->gadget
.dev
);
2497 udc
->gadget
.dev
.parent
= &pdev
->dev
;
2498 udc
->gadget
.dev
.dma_mask
= NULL
;
2499 udc
->vbus_sensed
= 0;
2501 the_controller
= udc
;
2502 platform_set_drvdata(pdev
, udc
);
2506 /* irq setup after old hardware state is cleaned up */
2507 retval
= request_irq(udc
->irq
, pxa_udc_irq
,
2508 IRQF_SHARED
, driver_name
, udc
);
2510 dev_err(udc
->dev
, "%s: can't get irq %i, err %d\n",
2511 driver_name
, IRQ_USB
, retval
);
2514 retval
= usb_add_gadget_udc(&pdev
->dev
, &udc
->gadget
);
2518 pxa_init_debugfs(udc
);
2521 free_irq(udc
->irq
, udc
);
2532 * pxa_udc_remove - removes the udc device driver
2533 * @_dev: platform device
2535 static int __exit
pxa_udc_remove(struct platform_device
*_dev
)
2537 struct pxa_udc
*udc
= platform_get_drvdata(_dev
);
2538 int gpio
= udc
->mach
->gpio_pullup
;
2540 usb_del_gadget_udc(&udc
->gadget
);
2541 usb_gadget_unregister_driver(udc
->driver
);
2542 free_irq(udc
->irq
, udc
);
2543 pxa_cleanup_debugfs(udc
);
2544 if (gpio_is_valid(gpio
))
2547 usb_put_phy(udc
->transceiver
);
2549 udc
->transceiver
= NULL
;
2550 platform_set_drvdata(_dev
, NULL
);
2551 the_controller
= NULL
;
2558 static void pxa_udc_shutdown(struct platform_device
*_dev
)
2560 struct pxa_udc
*udc
= platform_get_drvdata(_dev
);
2562 if (udc_readl(udc
, UDCCR
) & UDCCR_UDE
)
2566 #ifdef CONFIG_PXA27x
2567 extern void pxa27x_clear_otgph(void);
2569 #define pxa27x_clear_otgph() do {} while (0)
2574 * pxa_udc_suspend - Suspend udc device
2575 * @_dev: platform device
2576 * @state: suspend state
2578 * Suspends udc : saves configuration registers (UDCCR*), then disables the udc
2581 static int pxa_udc_suspend(struct platform_device
*_dev
, pm_message_t state
)
2584 struct pxa_udc
*udc
= platform_get_drvdata(_dev
);
2587 ep
= &udc
->pxa_ep
[0];
2588 udc
->udccsr0
= udc_ep_readl(ep
, UDCCSR
);
2589 for (i
= 1; i
< NR_PXA_ENDPOINTS
; i
++) {
2590 ep
= &udc
->pxa_ep
[i
];
2591 ep
->udccsr_value
= udc_ep_readl(ep
, UDCCSR
);
2592 ep
->udccr_value
= udc_ep_readl(ep
, UDCCR
);
2593 ep_dbg(ep
, "udccsr:0x%03x, udccr:0x%x\n",
2594 ep
->udccsr_value
, ep
->udccr_value
);
2598 udc
->pullup_resume
= udc
->pullup_on
;
2599 dplus_pullup(udc
, 0);
2605 * pxa_udc_resume - Resume udc device
2606 * @_dev: platform device
2608 * Resumes udc : restores configuration registers (UDCCR*), then enables the udc
2611 static int pxa_udc_resume(struct platform_device
*_dev
)
2614 struct pxa_udc
*udc
= platform_get_drvdata(_dev
);
2617 ep
= &udc
->pxa_ep
[0];
2618 udc_ep_writel(ep
, UDCCSR
, udc
->udccsr0
& (UDCCSR0_FST
| UDCCSR0_DME
));
2619 for (i
= 1; i
< NR_PXA_ENDPOINTS
; i
++) {
2620 ep
= &udc
->pxa_ep
[i
];
2621 udc_ep_writel(ep
, UDCCSR
, ep
->udccsr_value
);
2622 udc_ep_writel(ep
, UDCCR
, ep
->udccr_value
);
2623 ep_dbg(ep
, "udccsr:0x%03x, udccr:0x%x\n",
2624 ep
->udccsr_value
, ep
->udccr_value
);
2627 dplus_pullup(udc
, udc
->pullup_resume
);
2628 if (should_enable_udc(udc
))
2631 * We do not handle OTG yet.
2633 * OTGPH bit is set when sleep mode is entered.
2634 * it indicates that OTG pad is retaining its state.
2635 * Upon exit from sleep mode and before clearing OTGPH,
2636 * Software must configure the USB OTG pad, UDC, and UHC
2637 * to the state they were in before entering sleep mode.
2639 pxa27x_clear_otgph();
2645 /* work with hotplug and coldplug */
2646 MODULE_ALIAS("platform:pxa27x-udc");
2648 static struct platform_driver udc_driver
= {
2650 .name
= "pxa27x-udc",
2651 .owner
= THIS_MODULE
,
2653 .remove
= __exit_p(pxa_udc_remove
),
2654 .shutdown
= pxa_udc_shutdown
,
2656 .suspend
= pxa_udc_suspend
,
2657 .resume
= pxa_udc_resume
2661 static int __init
udc_init(void)
2663 if (!cpu_is_pxa27x() && !cpu_is_pxa3xx())
2666 printk(KERN_INFO
"%s: version %s\n", driver_name
, DRIVER_VERSION
);
2667 return platform_driver_probe(&udc_driver
, pxa_udc_probe
);
2669 module_init(udc_init
);
2672 static void __exit
udc_exit(void)
2674 platform_driver_unregister(&udc_driver
);
2676 module_exit(udc_exit
);
2678 MODULE_DESCRIPTION(DRIVER_DESC
);
2679 MODULE_AUTHOR("Robert Jarzmik");
2680 MODULE_LICENSE("GPL");