Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
David Brownell | 9198769 | 2005-05-07 13:20:19 -0700 | [diff] [blame] | 2 | * Intel PXA25x and IXP4xx on-chip full speed USB device controllers |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2002 Intrinsyc, Inc. (Frank Becker) |
| 5 | * Copyright (C) 2003 Robert Schwebel, Pengutronix |
| 6 | * Copyright (C) 2003 Benedikt Spranger, Pengutronix |
| 7 | * Copyright (C) 2003 David Brownell |
| 8 | * Copyright (C) 2003 Joshua Wise |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; either version 2 of the License, or |
| 13 | * (at your option) any later version. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | */ |
| 15 | |
Dmitry Baryshkov | 040fa1b | 2007-12-30 11:56:27 -0800 | [diff] [blame] | 16 | /* #define VERBOSE_DEBUG */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
Milan Svoboda | 9068a4c | 2007-06-30 06:25:35 -0700 | [diff] [blame] | 18 | #include <linux/device.h> |
Arnd Bergmann | 56e5cea | 2014-07-09 11:24:44 +0200 | [diff] [blame^] | 19 | #include <linux/gpio.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/module.h> |
| 21 | #include <linux/kernel.h> |
| 22 | #include <linux/ioport.h> |
| 23 | #include <linux/types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/errno.h> |
Kishon Vijay Abraham I | ded017e | 2012-06-26 17:40:32 +0530 | [diff] [blame] | 25 | #include <linux/err.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/delay.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/timer.h> |
| 29 | #include <linux/list.h> |
| 30 | #include <linux/interrupt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/mm.h> |
Russell King | 4600006 | 2012-09-21 10:23:44 +0100 | [diff] [blame] | 32 | #include <linux/platform_data/pxa2xx_udc.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 33 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <linux/dma-mapping.h> |
Nicolas Pitre | c7a3bd1 | 2006-10-20 14:20:17 -0700 | [diff] [blame] | 35 | #include <linux/irq.h> |
Russell King | 6549e6c | 2007-08-20 10:33:35 +0100 | [diff] [blame] | 36 | #include <linux/clk.h> |
Dmitry Baryshkov | 040fa1b | 2007-12-30 11:56:27 -0800 | [diff] [blame] | 37 | #include <linux/seq_file.h> |
| 38 | #include <linux/debugfs.h> |
Russell King | 284d115 | 2008-04-20 17:32:16 +0100 | [diff] [blame] | 39 | #include <linux/io.h> |
Linus Torvalds | 268bb0c | 2011-05-20 12:50:29 -0700 | [diff] [blame] | 40 | #include <linux/prefetch.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
| 42 | #include <asm/byteorder.h> |
| 43 | #include <asm/dma.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | #include <asm/mach-types.h> |
| 45 | #include <asm/unaligned.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
David Brownell | 5f84813 | 2006-12-16 15:34:53 -0800 | [diff] [blame] | 47 | #include <linux/usb/ch9.h> |
David Brownell | 9454a57 | 2007-10-04 18:05:17 -0700 | [diff] [blame] | 48 | #include <linux/usb/gadget.h> |
Philipp Zabel | ab26d20 | 2009-07-01 03:46:25 -0700 | [diff] [blame] | 49 | #include <linux/usb/otg.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
Russell King | 284d115 | 2008-04-20 17:32:16 +0100 | [diff] [blame] | 51 | /* |
| 52 | * This driver is PXA25x only. Grab the right register definitions. |
| 53 | */ |
| 54 | #ifdef CONFIG_ARCH_PXA |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 55 | #include <mach/pxa25x-udc.h> |
Linus Walleij | b144e4a | 2013-11-18 11:37:20 +0100 | [diff] [blame] | 56 | #include <mach/hardware.h> |
Russell King | 284d115 | 2008-04-20 17:32:16 +0100 | [diff] [blame] | 57 | #endif |
| 58 | |
Eric Miao | 0dc726b | 2009-12-27 23:01:25 +0800 | [diff] [blame] | 59 | #ifdef CONFIG_ARCH_LUBBOCK |
| 60 | #include <mach/lubbock.h> |
| 61 | #endif |
| 62 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | /* |
David Brownell | 9198769 | 2005-05-07 13:20:19 -0700 | [diff] [blame] | 64 | * This driver handles the USB Device Controller (UDC) in Intel's PXA 25x |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | * series processors. The UDC for the IXP 4xx series is very similar. |
| 66 | * There are fifteen endpoints, in addition to ep0. |
| 67 | * |
| 68 | * Such controller drivers work with a gadget driver. The gadget driver |
| 69 | * returns descriptors, implements configuration and data protocols used |
| 70 | * by the host to interact with this device, and allocates endpoints to |
| 71 | * the different protocol interfaces. The controller driver virtualizes |
| 72 | * usb hardware so that the gadget drivers will be more portable. |
David Brownell | 34ebcd2 | 2007-02-24 12:23:52 -0800 | [diff] [blame] | 73 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | * This UDC hardware wants to implement a bit too much USB protocol, so |
| 75 | * it constrains the sorts of USB configuration change events that work. |
| 76 | * The errata for these chips are misleading; some "fixed" bugs from |
| 77 | * pxa250 a0/a1 b0/b1/b2 sure act like they're still there. |
David Brownell | ad8c623 | 2007-06-30 06:30:04 -0700 | [diff] [blame] | 78 | * |
| 79 | * Note that the UDC hardware supports DMA (except on IXP) but that's |
| 80 | * not used here. IN-DMA (to host) is simple enough, when the data is |
| 81 | * suitably aligned (16 bytes) ... the network stack doesn't do that, |
| 82 | * other software can. OUT-DMA is buggy in most chip versions, as well |
| 83 | * as poorly designed (data toggle not automatic). So this driver won't |
| 84 | * bother using DMA. (Mostly-working IN-DMA support was available in |
| 85 | * kernels before 2.6.23, but was never enabled or well tested.) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | */ |
| 87 | |
David Brownell | ad8c623 | 2007-06-30 06:30:04 -0700 | [diff] [blame] | 88 | #define DRIVER_VERSION "30-June-2007" |
David Brownell | 9198769 | 2005-05-07 13:20:19 -0700 | [diff] [blame] | 89 | #define DRIVER_DESC "PXA 25x USB Device Controller driver" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | |
| 91 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 92 | static const char driver_name [] = "pxa25x_udc"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
| 94 | static const char ep0name [] = "ep0"; |
| 95 | |
| 96 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | #ifdef CONFIG_ARCH_IXP4XX |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | |
| 99 | /* cpu-specific register addresses are compiled in to this code */ |
| 100 | #ifdef CONFIG_ARCH_PXA |
| 101 | #error "Can't configure both IXP and PXA" |
| 102 | #endif |
| 103 | |
Dmitry Baryshkov | 64cc2dd | 2008-02-22 17:17:19 -0800 | [diff] [blame] | 104 | /* IXP doesn't yet support <linux/clk.h> */ |
| 105 | #define clk_get(dev,name) NULL |
| 106 | #define clk_enable(clk) do { } while (0) |
| 107 | #define clk_disable(clk) do { } while (0) |
| 108 | #define clk_put(clk) do { } while (0) |
| 109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | #endif |
| 111 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 112 | #include "pxa25x_udc.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
| 114 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 115 | #ifdef CONFIG_USB_PXA25X_SMALL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | #define SIZE_STR " (small)" |
| 117 | #else |
| 118 | #define SIZE_STR "" |
| 119 | #endif |
| 120 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | /* --------------------------------------------------------------------------- |
David Brownell | 34ebcd2 | 2007-02-24 12:23:52 -0800 | [diff] [blame] | 122 | * endpoint related parts of the api to the usb controller hardware, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | * used by gadget driver; and the inner talker-to-hardware core. |
| 124 | * --------------------------------------------------------------------------- |
| 125 | */ |
| 126 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 127 | static void pxa25x_ep_fifo_flush (struct usb_ep *ep); |
| 128 | static void nuke (struct pxa25x_ep *, int status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
David Brownell | b2bbb20 | 2006-06-29 12:25:39 -0700 | [diff] [blame] | 130 | /* one GPIO should control a D+ pullup, so host sees this device (or not) */ |
| 131 | static void pullup_off(void) |
| 132 | { |
| 133 | struct pxa2xx_udc_mach_info *mach = the_controller->mach; |
Ian Molton | 8fb105f | 2008-06-25 22:34:51 +0100 | [diff] [blame] | 134 | int off_level = mach->gpio_pullup_inverted; |
David Brownell | b2bbb20 | 2006-06-29 12:25:39 -0700 | [diff] [blame] | 135 | |
Philipp Zabel | 56a075d | 2009-07-01 03:42:45 -0700 | [diff] [blame] | 136 | if (gpio_is_valid(mach->gpio_pullup)) |
Ian Molton | 8fb105f | 2008-06-25 22:34:51 +0100 | [diff] [blame] | 137 | gpio_set_value(mach->gpio_pullup, off_level); |
David Brownell | b2bbb20 | 2006-06-29 12:25:39 -0700 | [diff] [blame] | 138 | else if (mach->udc_command) |
| 139 | mach->udc_command(PXA2XX_UDC_CMD_DISCONNECT); |
| 140 | } |
| 141 | |
| 142 | static void pullup_on(void) |
| 143 | { |
| 144 | struct pxa2xx_udc_mach_info *mach = the_controller->mach; |
Ian Molton | 8fb105f | 2008-06-25 22:34:51 +0100 | [diff] [blame] | 145 | int on_level = !mach->gpio_pullup_inverted; |
David Brownell | b2bbb20 | 2006-06-29 12:25:39 -0700 | [diff] [blame] | 146 | |
Philipp Zabel | 56a075d | 2009-07-01 03:42:45 -0700 | [diff] [blame] | 147 | if (gpio_is_valid(mach->gpio_pullup)) |
Ian Molton | 8fb105f | 2008-06-25 22:34:51 +0100 | [diff] [blame] | 148 | gpio_set_value(mach->gpio_pullup, on_level); |
David Brownell | b2bbb20 | 2006-06-29 12:25:39 -0700 | [diff] [blame] | 149 | else if (mach->udc_command) |
| 150 | mach->udc_command(PXA2XX_UDC_CMD_CONNECT); |
| 151 | } |
| 152 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | static void pio_irq_enable(int bEndpointAddress) |
| 154 | { |
| 155 | bEndpointAddress &= 0xf; |
| 156 | if (bEndpointAddress < 8) |
| 157 | UICR0 &= ~(1 << bEndpointAddress); |
| 158 | else { |
| 159 | bEndpointAddress -= 8; |
| 160 | UICR1 &= ~(1 << bEndpointAddress); |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | static void pio_irq_disable(int bEndpointAddress) |
| 165 | { |
| 166 | bEndpointAddress &= 0xf; |
| 167 | if (bEndpointAddress < 8) |
| 168 | UICR0 |= 1 << bEndpointAddress; |
| 169 | else { |
| 170 | bEndpointAddress -= 8; |
| 171 | UICR1 |= 1 << bEndpointAddress; |
| 172 | } |
| 173 | } |
| 174 | |
| 175 | /* The UDCCR reg contains mask and interrupt status bits, |
| 176 | * so using '|=' isn't safe as it may ack an interrupt. |
| 177 | */ |
| 178 | #define UDCCR_MASK_BITS (UDCCR_REM | UDCCR_SRM | UDCCR_UDE) |
| 179 | |
| 180 | static inline void udc_set_mask_UDCCR(int mask) |
| 181 | { |
| 182 | UDCCR = (UDCCR & UDCCR_MASK_BITS) | (mask & UDCCR_MASK_BITS); |
| 183 | } |
| 184 | |
| 185 | static inline void udc_clear_mask_UDCCR(int mask) |
| 186 | { |
| 187 | UDCCR = (UDCCR & UDCCR_MASK_BITS) & ~(mask & UDCCR_MASK_BITS); |
| 188 | } |
| 189 | |
| 190 | static inline void udc_ack_int_UDCCR(int mask) |
| 191 | { |
| 192 | /* udccr contains the bits we dont want to change */ |
| 193 | __u32 udccr = UDCCR & UDCCR_MASK_BITS; |
| 194 | |
| 195 | UDCCR = udccr | (mask & ~UDCCR_MASK_BITS); |
| 196 | } |
| 197 | |
| 198 | /* |
| 199 | * endpoint enable/disable |
| 200 | * |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 201 | * we need to verify the descriptors used to enable endpoints. since pxa25x |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | * endpoint configurations are fixed, and are pretty much always enabled, |
| 203 | * there's not a lot to manage here. |
| 204 | * |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 205 | * because pxa25x can't selectively initialize bulk (or interrupt) endpoints, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | * (resetting endpoint halt and toggle), SET_INTERFACE is unusable except |
| 207 | * for a single interface (with only the default altsetting) and for gadget |
| 208 | * drivers that don't halt endpoints (not reset by set_interface). that also |
| 209 | * means that if you use ISO, you must violate the USB spec rule that all |
| 210 | * iso endpoints must be in non-default altsettings. |
| 211 | */ |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 212 | static int pxa25x_ep_enable (struct usb_ep *_ep, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | const struct usb_endpoint_descriptor *desc) |
| 214 | { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 215 | struct pxa25x_ep *ep; |
| 216 | struct pxa25x_udc *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 218 | ep = container_of (_ep, struct pxa25x_ep, ep); |
Ido Shayevitz | 3ba0b31 | 2012-06-04 13:35:26 +0300 | [diff] [blame] | 219 | if (!_ep || !desc || _ep->name == ep0name |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | || desc->bDescriptorType != USB_DT_ENDPOINT |
| 221 | || ep->bEndpointAddress != desc->bEndpointAddress |
Kuninori Morimoto | 29cc889 | 2011-08-23 03:12:03 -0700 | [diff] [blame] | 222 | || ep->fifo_size < usb_endpoint_maxp (desc)) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 223 | DMSG("%s, bad ep or descriptor\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | return -EINVAL; |
| 225 | } |
| 226 | |
| 227 | /* xfer types must match, except that interrupt ~= bulk */ |
| 228 | if (ep->bmAttributes != desc->bmAttributes |
| 229 | && ep->bmAttributes != USB_ENDPOINT_XFER_BULK |
| 230 | && desc->bmAttributes != USB_ENDPOINT_XFER_INT) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 231 | DMSG("%s, %s type mismatch\n", __func__, _ep->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | return -EINVAL; |
| 233 | } |
| 234 | |
| 235 | /* hardware _could_ do smaller, but driver doesn't */ |
| 236 | if ((desc->bmAttributes == USB_ENDPOINT_XFER_BULK |
Kuninori Morimoto | 29cc889 | 2011-08-23 03:12:03 -0700 | [diff] [blame] | 237 | && usb_endpoint_maxp (desc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | != BULK_FIFO_SIZE) |
| 239 | || !desc->wMaxPacketSize) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 240 | DMSG("%s, bad %s maxpacket\n", __func__, _ep->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | return -ERANGE; |
| 242 | } |
| 243 | |
| 244 | dev = ep->dev; |
| 245 | if (!dev->driver || dev->gadget.speed == USB_SPEED_UNKNOWN) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 246 | DMSG("%s, bogus device state\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | return -ESHUTDOWN; |
| 248 | } |
| 249 | |
Ido Shayevitz | c18800d | 2012-03-12 20:25:36 +0200 | [diff] [blame] | 250 | ep->ep.desc = desc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | ep->stopped = 0; |
David Brownell | ad8c623 | 2007-06-30 06:30:04 -0700 | [diff] [blame] | 252 | ep->pio_irqs = 0; |
Kuninori Morimoto | 29cc889 | 2011-08-23 03:12:03 -0700 | [diff] [blame] | 253 | ep->ep.maxpacket = usb_endpoint_maxp (desc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | |
| 255 | /* flush fifo (mostly for OUT buffers) */ |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 256 | pxa25x_ep_fifo_flush (_ep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | |
| 258 | /* ... reset halt state too, if we could ... */ |
| 259 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | DBG(DBG_VERBOSE, "enabled %s\n", _ep->name); |
| 261 | return 0; |
| 262 | } |
| 263 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 264 | static int pxa25x_ep_disable (struct usb_ep *_ep) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 266 | struct pxa25x_ep *ep; |
David Brownell | 9198769 | 2005-05-07 13:20:19 -0700 | [diff] [blame] | 267 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 269 | ep = container_of (_ep, struct pxa25x_ep, ep); |
Ido Shayevitz | c18800d | 2012-03-12 20:25:36 +0200 | [diff] [blame] | 270 | if (!_ep || !ep->ep.desc) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 271 | DMSG("%s, %s not enabled\n", __func__, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | _ep ? ep->ep.name : NULL); |
| 273 | return -EINVAL; |
| 274 | } |
David Brownell | 9198769 | 2005-05-07 13:20:19 -0700 | [diff] [blame] | 275 | local_irq_save(flags); |
| 276 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | nuke (ep, -ESHUTDOWN); |
| 278 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | /* flush fifo (mostly for IN buffers) */ |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 280 | pxa25x_ep_fifo_flush (_ep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | |
Ido Shayevitz | f9c56cd | 2012-02-08 13:56:48 +0200 | [diff] [blame] | 282 | ep->ep.desc = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | ep->stopped = 1; |
| 284 | |
David Brownell | 9198769 | 2005-05-07 13:20:19 -0700 | [diff] [blame] | 285 | local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | DBG(DBG_VERBOSE, "%s disabled\n", _ep->name); |
| 287 | return 0; |
| 288 | } |
| 289 | |
| 290 | /*-------------------------------------------------------------------------*/ |
| 291 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 292 | /* for the pxa25x, these can just wrap kmalloc/kfree. gadget drivers |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | * must still pass correctly initialized endpoints, since other controller |
| 294 | * drivers may care about how it's currently set up (dma issues etc). |
| 295 | */ |
| 296 | |
| 297 | /* |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 298 | * pxa25x_ep_alloc_request - allocate a request data structure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | */ |
| 300 | static struct usb_request * |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 301 | pxa25x_ep_alloc_request (struct usb_ep *_ep, gfp_t gfp_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 303 | struct pxa25x_request *req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | |
Eric Sesterhenn | 7039f42 | 2006-02-27 13:34:10 -0800 | [diff] [blame] | 305 | req = kzalloc(sizeof(*req), gfp_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | if (!req) |
| 307 | return NULL; |
| 308 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | INIT_LIST_HEAD (&req->queue); |
| 310 | return &req->req; |
| 311 | } |
| 312 | |
| 313 | |
| 314 | /* |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 315 | * pxa25x_ep_free_request - deallocate a request data structure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | */ |
| 317 | static void |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 318 | pxa25x_ep_free_request (struct usb_ep *_ep, struct usb_request *_req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 320 | struct pxa25x_request *req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 322 | req = container_of (_req, struct pxa25x_request, req); |
Arjan van de Ven | b6c6393 | 2008-07-25 01:45:52 -0700 | [diff] [blame] | 323 | WARN_ON(!list_empty (&req->queue)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | kfree(req); |
| 325 | } |
| 326 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | /*-------------------------------------------------------------------------*/ |
| 328 | |
| 329 | /* |
| 330 | * done - retire a request; caller blocked irqs |
| 331 | */ |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 332 | static void done(struct pxa25x_ep *ep, struct pxa25x_request *req, int status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | { |
| 334 | unsigned stopped = ep->stopped; |
| 335 | |
| 336 | list_del_init(&req->queue); |
| 337 | |
| 338 | if (likely (req->req.status == -EINPROGRESS)) |
| 339 | req->req.status = status; |
| 340 | else |
| 341 | status = req->req.status; |
| 342 | |
| 343 | if (status && status != -ESHUTDOWN) |
| 344 | DBG(DBG_VERBOSE, "complete %s req %p stat %d len %u/%u\n", |
| 345 | ep->ep.name, &req->req, status, |
| 346 | req->req.actual, req->req.length); |
| 347 | |
| 348 | /* don't modify queue heads during completion callback */ |
| 349 | ep->stopped = 1; |
| 350 | req->req.complete(&ep->ep, &req->req); |
| 351 | ep->stopped = stopped; |
| 352 | } |
| 353 | |
| 354 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 355 | static inline void ep0_idle (struct pxa25x_udc *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | { |
| 357 | dev->ep0state = EP0_IDLE; |
| 358 | } |
| 359 | |
| 360 | static int |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 361 | write_packet(volatile u32 *uddr, struct pxa25x_request *req, unsigned max) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | { |
| 363 | u8 *buf; |
| 364 | unsigned length, count; |
| 365 | |
| 366 | buf = req->req.buf + req->req.actual; |
| 367 | prefetch(buf); |
| 368 | |
| 369 | /* how big will this packet be? */ |
| 370 | length = min(req->req.length - req->req.actual, max); |
| 371 | req->req.actual += length; |
| 372 | |
| 373 | count = length; |
| 374 | while (likely(count--)) |
| 375 | *uddr = *buf++; |
| 376 | |
| 377 | return length; |
| 378 | } |
| 379 | |
| 380 | /* |
| 381 | * write to an IN endpoint fifo, as many packets as possible. |
| 382 | * irqs will use this to write the rest later. |
| 383 | * caller guarantees at least one packet buffer is ready (or a zlp). |
| 384 | */ |
| 385 | static int |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 386 | write_fifo (struct pxa25x_ep *ep, struct pxa25x_request *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | { |
| 388 | unsigned max; |
| 389 | |
Ido Shayevitz | c18800d | 2012-03-12 20:25:36 +0200 | [diff] [blame] | 390 | max = usb_endpoint_maxp(ep->ep.desc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | do { |
| 392 | unsigned count; |
| 393 | int is_last, is_short; |
| 394 | |
| 395 | count = write_packet(ep->reg_uddr, req, max); |
| 396 | |
| 397 | /* last packet is usually short (or a zlp) */ |
| 398 | if (unlikely (count != max)) |
| 399 | is_last = is_short = 1; |
| 400 | else { |
| 401 | if (likely(req->req.length != req->req.actual) |
| 402 | || req->req.zero) |
| 403 | is_last = 0; |
| 404 | else |
| 405 | is_last = 1; |
| 406 | /* interrupt/iso maxpacket may not fill the fifo */ |
| 407 | is_short = unlikely (max < ep->fifo_size); |
| 408 | } |
| 409 | |
| 410 | DBG(DBG_VERY_NOISY, "wrote %s %d bytes%s%s %d left %p\n", |
| 411 | ep->ep.name, count, |
| 412 | is_last ? "/L" : "", is_short ? "/S" : "", |
| 413 | req->req.length - req->req.actual, req); |
| 414 | |
| 415 | /* let loose that packet. maybe try writing another one, |
| 416 | * double buffering might work. TSP, TPC, and TFS |
| 417 | * bit values are the same for all normal IN endpoints. |
| 418 | */ |
| 419 | *ep->reg_udccs = UDCCS_BI_TPC; |
| 420 | if (is_short) |
| 421 | *ep->reg_udccs = UDCCS_BI_TSP; |
| 422 | |
| 423 | /* requests complete when all IN data is in the FIFO */ |
| 424 | if (is_last) { |
| 425 | done (ep, req, 0); |
David Brownell | ad8c623 | 2007-06-30 06:30:04 -0700 | [diff] [blame] | 426 | if (list_empty(&ep->queue)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | pio_irq_disable (ep->bEndpointAddress); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | return 1; |
| 429 | } |
| 430 | |
| 431 | // TODO experiment: how robust can fifo mode tweaking be? |
| 432 | // double buffering is off in the default fifo mode, which |
| 433 | // prevents TFS from being set here. |
| 434 | |
| 435 | } while (*ep->reg_udccs & UDCCS_BI_TFS); |
| 436 | return 0; |
| 437 | } |
| 438 | |
| 439 | /* caller asserts req->pending (ep0 irq status nyet cleared); starts |
| 440 | * ep0 data stage. these chips want very simple state transitions. |
| 441 | */ |
| 442 | static inline |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 443 | void ep0start(struct pxa25x_udc *dev, u32 flags, const char *tag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | { |
| 445 | UDCCS0 = flags|UDCCS0_SA|UDCCS0_OPR; |
| 446 | USIR0 = USIR0_IR0; |
| 447 | dev->req_pending = 0; |
| 448 | DBG(DBG_VERY_NOISY, "%s %s, %02x/%02x\n", |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 449 | __func__, tag, UDCCS0, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | } |
| 451 | |
| 452 | static int |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 453 | write_ep0_fifo (struct pxa25x_ep *ep, struct pxa25x_request *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | { |
| 455 | unsigned count; |
| 456 | int is_short; |
| 457 | |
| 458 | count = write_packet(&UDDR0, req, EP0_FIFO_SIZE); |
| 459 | ep->dev->stats.write.bytes += count; |
| 460 | |
| 461 | /* last packet "must be" short (or a zlp) */ |
| 462 | is_short = (count != EP0_FIFO_SIZE); |
| 463 | |
| 464 | DBG(DBG_VERY_NOISY, "ep0in %d bytes %d left %p\n", count, |
| 465 | req->req.length - req->req.actual, req); |
| 466 | |
| 467 | if (unlikely (is_short)) { |
| 468 | if (ep->dev->req_pending) |
| 469 | ep0start(ep->dev, UDCCS0_IPR, "short IN"); |
| 470 | else |
| 471 | UDCCS0 = UDCCS0_IPR; |
| 472 | |
| 473 | count = req->req.length; |
| 474 | done (ep, req, 0); |
| 475 | ep0_idle(ep->dev); |
Milan Svoboda | 043ea18 | 2006-05-29 03:34:00 -0700 | [diff] [blame] | 476 | #ifndef CONFIG_ARCH_IXP4XX |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | #if 1 |
| 478 | /* This seems to get rid of lost status irqs in some cases: |
| 479 | * host responds quickly, or next request involves config |
| 480 | * change automagic, or should have been hidden, or ... |
| 481 | * |
| 482 | * FIXME get rid of all udelays possible... |
| 483 | */ |
| 484 | if (count >= EP0_FIFO_SIZE) { |
| 485 | count = 100; |
| 486 | do { |
| 487 | if ((UDCCS0 & UDCCS0_OPR) != 0) { |
| 488 | /* clear OPR, generate ack */ |
| 489 | UDCCS0 = UDCCS0_OPR; |
| 490 | break; |
| 491 | } |
| 492 | count--; |
| 493 | udelay(1); |
| 494 | } while (count); |
| 495 | } |
| 496 | #endif |
Milan Svoboda | 043ea18 | 2006-05-29 03:34:00 -0700 | [diff] [blame] | 497 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | } else if (ep->dev->req_pending) |
| 499 | ep0start(ep->dev, 0, "IN"); |
| 500 | return is_short; |
| 501 | } |
| 502 | |
| 503 | |
| 504 | /* |
| 505 | * read_fifo - unload packet(s) from the fifo we use for usb OUT |
| 506 | * transfers and put them into the request. caller should have made |
| 507 | * sure there's at least one packet ready. |
| 508 | * |
| 509 | * returns true if the request completed because of short packet or the |
| 510 | * request buffer having filled (and maybe overran till end-of-packet). |
| 511 | */ |
| 512 | static int |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 513 | read_fifo (struct pxa25x_ep *ep, struct pxa25x_request *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | { |
| 515 | for (;;) { |
| 516 | u32 udccs; |
| 517 | u8 *buf; |
| 518 | unsigned bufferspace, count, is_short; |
| 519 | |
| 520 | /* make sure there's a packet in the FIFO. |
| 521 | * UDCCS_{BO,IO}_RPC are all the same bit value. |
| 522 | * UDCCS_{BO,IO}_RNE are all the same bit value. |
| 523 | */ |
| 524 | udccs = *ep->reg_udccs; |
| 525 | if (unlikely ((udccs & UDCCS_BO_RPC) == 0)) |
| 526 | break; |
| 527 | buf = req->req.buf + req->req.actual; |
| 528 | prefetchw(buf); |
| 529 | bufferspace = req->req.length - req->req.actual; |
| 530 | |
| 531 | /* read all bytes from this packet */ |
| 532 | if (likely (udccs & UDCCS_BO_RNE)) { |
| 533 | count = 1 + (0x0ff & *ep->reg_ubcr); |
| 534 | req->req.actual += min (count, bufferspace); |
| 535 | } else /* zlp */ |
| 536 | count = 0; |
| 537 | is_short = (count < ep->ep.maxpacket); |
| 538 | DBG(DBG_VERY_NOISY, "read %s %02x, %d bytes%s req %p %d/%d\n", |
| 539 | ep->ep.name, udccs, count, |
| 540 | is_short ? "/S" : "", |
| 541 | req, req->req.actual, req->req.length); |
| 542 | while (likely (count-- != 0)) { |
| 543 | u8 byte = (u8) *ep->reg_uddr; |
| 544 | |
| 545 | if (unlikely (bufferspace == 0)) { |
| 546 | /* this happens when the driver's buffer |
| 547 | * is smaller than what the host sent. |
| 548 | * discard the extra data. |
| 549 | */ |
| 550 | if (req->req.status != -EOVERFLOW) |
| 551 | DMSG("%s overflow %d\n", |
| 552 | ep->ep.name, count); |
| 553 | req->req.status = -EOVERFLOW; |
| 554 | } else { |
| 555 | *buf++ = byte; |
| 556 | bufferspace--; |
| 557 | } |
| 558 | } |
| 559 | *ep->reg_udccs = UDCCS_BO_RPC; |
| 560 | /* RPC/RSP/RNE could now reflect the other packet buffer */ |
| 561 | |
| 562 | /* iso is one request per packet */ |
| 563 | if (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC) { |
| 564 | if (udccs & UDCCS_IO_ROF) |
| 565 | req->req.status = -EHOSTUNREACH; |
| 566 | /* more like "is_done" */ |
| 567 | is_short = 1; |
| 568 | } |
| 569 | |
| 570 | /* completion */ |
| 571 | if (is_short || req->req.actual == req->req.length) { |
| 572 | done (ep, req, 0); |
| 573 | if (list_empty(&ep->queue)) |
| 574 | pio_irq_disable (ep->bEndpointAddress); |
| 575 | return 1; |
| 576 | } |
| 577 | |
| 578 | /* finished that packet. the next one may be waiting... */ |
| 579 | } |
| 580 | return 0; |
| 581 | } |
| 582 | |
| 583 | /* |
| 584 | * special ep0 version of the above. no UBCR0 or double buffering; status |
| 585 | * handshaking is magic. most device protocols don't need control-OUT. |
| 586 | * CDC vendor commands (and RNDIS), mass storage CB/CBI, and some other |
| 587 | * protocols do use them. |
| 588 | */ |
| 589 | static int |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 590 | read_ep0_fifo (struct pxa25x_ep *ep, struct pxa25x_request *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 | { |
| 592 | u8 *buf, byte; |
| 593 | unsigned bufferspace; |
| 594 | |
| 595 | buf = req->req.buf + req->req.actual; |
| 596 | bufferspace = req->req.length - req->req.actual; |
| 597 | |
| 598 | while (UDCCS0 & UDCCS0_RNE) { |
| 599 | byte = (u8) UDDR0; |
| 600 | |
| 601 | if (unlikely (bufferspace == 0)) { |
| 602 | /* this happens when the driver's buffer |
| 603 | * is smaller than what the host sent. |
| 604 | * discard the extra data. |
| 605 | */ |
| 606 | if (req->req.status != -EOVERFLOW) |
| 607 | DMSG("%s overflow\n", ep->ep.name); |
| 608 | req->req.status = -EOVERFLOW; |
| 609 | } else { |
| 610 | *buf++ = byte; |
| 611 | req->req.actual++; |
| 612 | bufferspace--; |
| 613 | } |
| 614 | } |
| 615 | |
| 616 | UDCCS0 = UDCCS0_OPR | UDCCS0_IPR; |
| 617 | |
| 618 | /* completion */ |
| 619 | if (req->req.actual >= req->req.length) |
| 620 | return 1; |
| 621 | |
| 622 | /* finished that packet. the next one may be waiting... */ |
| 623 | return 0; |
| 624 | } |
| 625 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | /*-------------------------------------------------------------------------*/ |
| 627 | |
| 628 | static int |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 629 | pxa25x_ep_queue(struct usb_ep *_ep, struct usb_request *_req, gfp_t gfp_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 631 | struct pxa25x_request *req; |
| 632 | struct pxa25x_ep *ep; |
| 633 | struct pxa25x_udc *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | unsigned long flags; |
| 635 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 636 | req = container_of(_req, struct pxa25x_request, req); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | if (unlikely (!_req || !_req->complete || !_req->buf |
| 638 | || !list_empty(&req->queue))) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 639 | DMSG("%s, bad params\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | return -EINVAL; |
| 641 | } |
| 642 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 643 | ep = container_of(_ep, struct pxa25x_ep, ep); |
Ido Shayevitz | c18800d | 2012-03-12 20:25:36 +0200 | [diff] [blame] | 644 | if (unlikely(!_ep || (!ep->ep.desc && ep->ep.name != ep0name))) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 645 | DMSG("%s, bad ep\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | return -EINVAL; |
| 647 | } |
| 648 | |
| 649 | dev = ep->dev; |
| 650 | if (unlikely (!dev->driver |
| 651 | || dev->gadget.speed == USB_SPEED_UNKNOWN)) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 652 | DMSG("%s, bogus device state\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | return -ESHUTDOWN; |
| 654 | } |
| 655 | |
| 656 | /* iso is always one packet per request, that's the only way |
| 657 | * we can report per-packet status. that also helps with dma. |
| 658 | */ |
| 659 | if (unlikely (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC |
Ido Shayevitz | c18800d | 2012-03-12 20:25:36 +0200 | [diff] [blame] | 660 | && req->req.length > usb_endpoint_maxp(ep->ep.desc))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | return -EMSGSIZE; |
| 662 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | DBG(DBG_NOISY, "%s queue req %p, len %d buf %p\n", |
David Brownell | ad8c623 | 2007-06-30 06:30:04 -0700 | [diff] [blame] | 664 | _ep->name, _req, _req->length, _req->buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | |
| 666 | local_irq_save(flags); |
| 667 | |
| 668 | _req->status = -EINPROGRESS; |
| 669 | _req->actual = 0; |
| 670 | |
| 671 | /* kickstart this i/o queue? */ |
| 672 | if (list_empty(&ep->queue) && !ep->stopped) { |
Ido Shayevitz | c18800d | 2012-03-12 20:25:36 +0200 | [diff] [blame] | 673 | if (ep->ep.desc == NULL/* ep0 */) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | unsigned length = _req->length; |
| 675 | |
| 676 | switch (dev->ep0state) { |
| 677 | case EP0_IN_DATA_PHASE: |
| 678 | dev->stats.write.ops++; |
| 679 | if (write_ep0_fifo(ep, req)) |
| 680 | req = NULL; |
| 681 | break; |
| 682 | |
| 683 | case EP0_OUT_DATA_PHASE: |
| 684 | dev->stats.read.ops++; |
| 685 | /* messy ... */ |
| 686 | if (dev->req_config) { |
| 687 | DBG(DBG_VERBOSE, "ep0 config ack%s\n", |
| 688 | dev->has_cfr ? "" : " raced"); |
| 689 | if (dev->has_cfr) |
| 690 | UDCCFR = UDCCFR_AREN|UDCCFR_ACM |
| 691 | |UDCCFR_MB1; |
| 692 | done(ep, req, 0); |
| 693 | dev->ep0state = EP0_END_XFER; |
| 694 | local_irq_restore (flags); |
| 695 | return 0; |
| 696 | } |
| 697 | if (dev->req_pending) |
| 698 | ep0start(dev, UDCCS0_IPR, "OUT"); |
| 699 | if (length == 0 || ((UDCCS0 & UDCCS0_RNE) != 0 |
| 700 | && read_ep0_fifo(ep, req))) { |
| 701 | ep0_idle(dev); |
| 702 | done(ep, req, 0); |
| 703 | req = NULL; |
| 704 | } |
| 705 | break; |
| 706 | |
| 707 | default: |
| 708 | DMSG("ep0 i/o, odd state %d\n", dev->ep0state); |
| 709 | local_irq_restore (flags); |
| 710 | return -EL2HLT; |
| 711 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | /* can the FIFO can satisfy the request immediately? */ |
David Brownell | 9198769 | 2005-05-07 13:20:19 -0700 | [diff] [blame] | 713 | } else if ((ep->bEndpointAddress & USB_DIR_IN) != 0) { |
| 714 | if ((*ep->reg_udccs & UDCCS_BI_TFS) != 0 |
| 715 | && write_fifo(ep, req)) |
| 716 | req = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | } else if ((*ep->reg_udccs & UDCCS_BO_RFS) != 0 |
| 718 | && read_fifo(ep, req)) { |
| 719 | req = NULL; |
| 720 | } |
| 721 | |
Ido Shayevitz | c18800d | 2012-03-12 20:25:36 +0200 | [diff] [blame] | 722 | if (likely(req && ep->ep.desc)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | pio_irq_enable(ep->bEndpointAddress); |
| 724 | } |
| 725 | |
| 726 | /* pio or dma irq handler advances the queue. */ |
Dmitry Baryshkov | 040fa1b | 2007-12-30 11:56:27 -0800 | [diff] [blame] | 727 | if (likely(req != NULL)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | list_add_tail(&req->queue, &ep->queue); |
| 729 | local_irq_restore(flags); |
| 730 | |
| 731 | return 0; |
| 732 | } |
| 733 | |
| 734 | |
| 735 | /* |
David Brownell | 34ebcd2 | 2007-02-24 12:23:52 -0800 | [diff] [blame] | 736 | * nuke - dequeue ALL requests |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | */ |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 738 | static void nuke(struct pxa25x_ep *ep, int status) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 740 | struct pxa25x_request *req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | |
| 742 | /* called with irqs blocked */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | while (!list_empty(&ep->queue)) { |
| 744 | req = list_entry(ep->queue.next, |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 745 | struct pxa25x_request, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | queue); |
| 747 | done(ep, req, status); |
| 748 | } |
Ido Shayevitz | c18800d | 2012-03-12 20:25:36 +0200 | [diff] [blame] | 749 | if (ep->ep.desc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | pio_irq_disable (ep->bEndpointAddress); |
| 751 | } |
| 752 | |
| 753 | |
| 754 | /* dequeue JUST ONE request */ |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 755 | static int pxa25x_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 757 | struct pxa25x_ep *ep; |
| 758 | struct pxa25x_request *req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | unsigned long flags; |
| 760 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 761 | ep = container_of(_ep, struct pxa25x_ep, ep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | if (!_ep || ep->ep.name == ep0name) |
| 763 | return -EINVAL; |
| 764 | |
| 765 | local_irq_save(flags); |
| 766 | |
| 767 | /* make sure it's actually queued on this endpoint */ |
| 768 | list_for_each_entry (req, &ep->queue, queue) { |
| 769 | if (&req->req == _req) |
| 770 | break; |
| 771 | } |
| 772 | if (&req->req != _req) { |
| 773 | local_irq_restore(flags); |
| 774 | return -EINVAL; |
| 775 | } |
| 776 | |
David Brownell | ad8c623 | 2007-06-30 06:30:04 -0700 | [diff] [blame] | 777 | done(ep, req, -ECONNRESET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | |
| 779 | local_irq_restore(flags); |
| 780 | return 0; |
| 781 | } |
| 782 | |
| 783 | /*-------------------------------------------------------------------------*/ |
| 784 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 785 | static int pxa25x_ep_set_halt(struct usb_ep *_ep, int value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 787 | struct pxa25x_ep *ep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | unsigned long flags; |
| 789 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 790 | ep = container_of(_ep, struct pxa25x_ep, ep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | if (unlikely (!_ep |
Ido Shayevitz | c18800d | 2012-03-12 20:25:36 +0200 | [diff] [blame] | 792 | || (!ep->ep.desc && ep->ep.name != ep0name)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | || ep->bmAttributes == USB_ENDPOINT_XFER_ISOC) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 794 | DMSG("%s, bad ep\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | return -EINVAL; |
| 796 | } |
| 797 | if (value == 0) { |
| 798 | /* this path (reset toggle+halt) is needed to implement |
| 799 | * SET_INTERFACE on normal hardware. but it can't be |
| 800 | * done from software on the PXA UDC, and the hardware |
| 801 | * forgets to do it as part of SET_INTERFACE automagic. |
| 802 | */ |
| 803 | DMSG("only host can clear %s halt\n", _ep->name); |
| 804 | return -EROFS; |
| 805 | } |
| 806 | |
| 807 | local_irq_save(flags); |
| 808 | |
| 809 | if ((ep->bEndpointAddress & USB_DIR_IN) != 0 |
| 810 | && ((*ep->reg_udccs & UDCCS_BI_TFS) == 0 |
| 811 | || !list_empty(&ep->queue))) { |
| 812 | local_irq_restore(flags); |
| 813 | return -EAGAIN; |
| 814 | } |
| 815 | |
| 816 | /* FST bit is the same for control, bulk in, bulk out, interrupt in */ |
| 817 | *ep->reg_udccs = UDCCS_BI_FST|UDCCS_BI_FTF; |
| 818 | |
| 819 | /* ep0 needs special care */ |
Ido Shayevitz | c18800d | 2012-03-12 20:25:36 +0200 | [diff] [blame] | 820 | if (!ep->ep.desc) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 821 | start_watchdog(ep->dev); |
| 822 | ep->dev->req_pending = 0; |
| 823 | ep->dev->ep0state = EP0_STALL; |
| 824 | |
David Brownell | 34ebcd2 | 2007-02-24 12:23:52 -0800 | [diff] [blame] | 825 | /* and bulk/intr endpoints like dropping stalls too */ |
| 826 | } else { |
| 827 | unsigned i; |
| 828 | for (i = 0; i < 1000; i += 20) { |
| 829 | if (*ep->reg_udccs & UDCCS_BI_SST) |
| 830 | break; |
| 831 | udelay(20); |
| 832 | } |
| 833 | } |
| 834 | local_irq_restore(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | |
| 836 | DBG(DBG_VERBOSE, "%s halt\n", _ep->name); |
| 837 | return 0; |
| 838 | } |
| 839 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 840 | static int pxa25x_ep_fifo_status(struct usb_ep *_ep) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 842 | struct pxa25x_ep *ep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 844 | ep = container_of(_ep, struct pxa25x_ep, ep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | if (!_ep) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 846 | DMSG("%s, bad ep\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | return -ENODEV; |
| 848 | } |
| 849 | /* pxa can't report unclaimed bytes from IN fifos */ |
| 850 | if ((ep->bEndpointAddress & USB_DIR_IN) != 0) |
| 851 | return -EOPNOTSUPP; |
| 852 | if (ep->dev->gadget.speed == USB_SPEED_UNKNOWN |
| 853 | || (*ep->reg_udccs & UDCCS_BO_RFS) == 0) |
| 854 | return 0; |
| 855 | else |
| 856 | return (*ep->reg_ubcr & 0xfff) + 1; |
| 857 | } |
| 858 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 859 | static void pxa25x_ep_fifo_flush(struct usb_ep *_ep) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 861 | struct pxa25x_ep *ep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 863 | ep = container_of(_ep, struct pxa25x_ep, ep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | if (!_ep || ep->ep.name == ep0name || !list_empty(&ep->queue)) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 865 | DMSG("%s, bad ep\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | return; |
| 867 | } |
| 868 | |
| 869 | /* toggle and halt bits stay unchanged */ |
| 870 | |
| 871 | /* for OUT, just read and discard the FIFO contents. */ |
| 872 | if ((ep->bEndpointAddress & USB_DIR_IN) == 0) { |
| 873 | while (((*ep->reg_udccs) & UDCCS_BO_RNE) != 0) |
| 874 | (void) *ep->reg_uddr; |
| 875 | return; |
| 876 | } |
| 877 | |
| 878 | /* most IN status is the same, but ISO can't stall */ |
| 879 | *ep->reg_udccs = UDCCS_BI_TPC|UDCCS_BI_FTF|UDCCS_BI_TUR |
Roel Kluin | 22eb36f | 2009-02-19 11:57:46 +0100 | [diff] [blame] | 880 | | (ep->bmAttributes == USB_ENDPOINT_XFER_ISOC |
| 881 | ? 0 : UDCCS_BI_SST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | } |
| 883 | |
| 884 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 885 | static struct usb_ep_ops pxa25x_ep_ops = { |
| 886 | .enable = pxa25x_ep_enable, |
| 887 | .disable = pxa25x_ep_disable, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 889 | .alloc_request = pxa25x_ep_alloc_request, |
| 890 | .free_request = pxa25x_ep_free_request, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 892 | .queue = pxa25x_ep_queue, |
| 893 | .dequeue = pxa25x_ep_dequeue, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 895 | .set_halt = pxa25x_ep_set_halt, |
| 896 | .fifo_status = pxa25x_ep_fifo_status, |
| 897 | .fifo_flush = pxa25x_ep_fifo_flush, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | }; |
| 899 | |
| 900 | |
| 901 | /* --------------------------------------------------------------------------- |
David Brownell | 34ebcd2 | 2007-02-24 12:23:52 -0800 | [diff] [blame] | 902 | * device-scoped parts of the api to the usb controller hardware |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | * --------------------------------------------------------------------------- |
| 904 | */ |
| 905 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 906 | static int pxa25x_udc_get_frame(struct usb_gadget *_gadget) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | { |
| 908 | return ((UFNRH & 0x07) << 8) | (UFNRL & 0xff); |
| 909 | } |
| 910 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 911 | static int pxa25x_udc_wakeup(struct usb_gadget *_gadget) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | { |
| 913 | /* host may not have enabled remote wakeup */ |
| 914 | if ((UDCCS0 & UDCCS0_DRWF) == 0) |
| 915 | return -EHOSTUNREACH; |
| 916 | udc_set_mask_UDCCR(UDCCR_RSM); |
| 917 | return 0; |
| 918 | } |
| 919 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 920 | static void stop_activity(struct pxa25x_udc *, struct usb_gadget_driver *); |
| 921 | static void udc_enable (struct pxa25x_udc *); |
| 922 | static void udc_disable(struct pxa25x_udc *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | |
| 924 | /* We disable the UDC -- and its 48 MHz clock -- whenever it's not |
David Brownell | 34ebcd2 | 2007-02-24 12:23:52 -0800 | [diff] [blame] | 925 | * in active use. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | */ |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 927 | static int pullup(struct pxa25x_udc *udc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | { |
Dmitry Baryshkov | 64cc2dd | 2008-02-22 17:17:19 -0800 | [diff] [blame] | 929 | int is_active = udc->vbus && udc->pullup && !udc->suspended; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | DMSG("%s\n", is_active ? "active" : "inactive"); |
Dmitry Baryshkov | 64cc2dd | 2008-02-22 17:17:19 -0800 | [diff] [blame] | 931 | if (is_active) { |
| 932 | if (!udc->active) { |
| 933 | udc->active = 1; |
| 934 | /* Enable clock for USB device */ |
| 935 | clk_enable(udc->clk); |
| 936 | udc_enable(udc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | } |
Dmitry Baryshkov | 64cc2dd | 2008-02-22 17:17:19 -0800 | [diff] [blame] | 938 | } else { |
| 939 | if (udc->active) { |
| 940 | if (udc->gadget.speed != USB_SPEED_UNKNOWN) { |
| 941 | DMSG("disconnect %s\n", udc->driver |
| 942 | ? udc->driver->driver.name |
| 943 | : "(no driver)"); |
| 944 | stop_activity(udc, udc->driver); |
| 945 | } |
| 946 | udc_disable(udc); |
| 947 | /* Disable clock for USB device */ |
| 948 | clk_disable(udc->clk); |
| 949 | udc->active = 0; |
| 950 | } |
| 951 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | } |
| 953 | return 0; |
| 954 | } |
| 955 | |
| 956 | /* VBUS reporting logically comes from a transceiver */ |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 957 | static int pxa25x_udc_vbus_session(struct usb_gadget *_gadget, int is_active) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 959 | struct pxa25x_udc *udc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 961 | udc = container_of(_gadget, struct pxa25x_udc, gadget); |
Jaya Kumar | 47fd6f7 | 2008-11-18 02:32:36 +0100 | [diff] [blame] | 962 | udc->vbus = is_active; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | DMSG("vbus %s\n", is_active ? "supplied" : "inactive"); |
Dmitry Baryshkov | 64cc2dd | 2008-02-22 17:17:19 -0800 | [diff] [blame] | 964 | pullup(udc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | return 0; |
| 966 | } |
| 967 | |
| 968 | /* drivers may have software control over D+ pullup */ |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 969 | static int pxa25x_udc_pullup(struct usb_gadget *_gadget, int is_active) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 970 | { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 971 | struct pxa25x_udc *udc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 973 | udc = container_of(_gadget, struct pxa25x_udc, gadget); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | |
| 975 | /* not all boards support pullup control */ |
Philipp Zabel | 56a075d | 2009-07-01 03:42:45 -0700 | [diff] [blame] | 976 | if (!gpio_is_valid(udc->mach->gpio_pullup) && !udc->mach->udc_command) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | return -EOPNOTSUPP; |
| 978 | |
Dmitry Baryshkov | 64cc2dd | 2008-02-22 17:17:19 -0800 | [diff] [blame] | 979 | udc->pullup = (is_active != 0); |
| 980 | pullup(udc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | return 0; |
| 982 | } |
| 983 | |
Philipp Zabel | ab26d20 | 2009-07-01 03:46:25 -0700 | [diff] [blame] | 984 | /* boards may consume current from VBUS, up to 100-500mA based on config. |
| 985 | * the 500uA suspend ceiling means that exclusively vbus-powered PXA designs |
| 986 | * violate USB specs. |
| 987 | */ |
| 988 | static int pxa25x_udc_vbus_draw(struct usb_gadget *_gadget, unsigned mA) |
| 989 | { |
| 990 | struct pxa25x_udc *udc; |
| 991 | |
| 992 | udc = container_of(_gadget, struct pxa25x_udc, gadget); |
| 993 | |
Kishon Vijay Abraham I | ded017e | 2012-06-26 17:40:32 +0530 | [diff] [blame] | 994 | if (!IS_ERR_OR_NULL(udc->transceiver)) |
Heikki Krogerus | b96d3b0 | 2012-02-13 13:24:18 +0200 | [diff] [blame] | 995 | return usb_phy_set_power(udc->transceiver, mA); |
Philipp Zabel | ab26d20 | 2009-07-01 03:46:25 -0700 | [diff] [blame] | 996 | return -EOPNOTSUPP; |
| 997 | } |
| 998 | |
Felipe Balbi | 6166c24 | 2013-01-24 17:11:44 +0200 | [diff] [blame] | 999 | static int pxa25x_udc_start(struct usb_gadget *g, |
| 1000 | struct usb_gadget_driver *driver); |
| 1001 | static int pxa25x_udc_stop(struct usb_gadget *g, |
| 1002 | struct usb_gadget_driver *driver); |
Sebastian Andrzej Siewior | 0f91349 | 2011-06-28 16:33:47 +0300 | [diff] [blame] | 1003 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1004 | static const struct usb_gadget_ops pxa25x_udc_ops = { |
| 1005 | .get_frame = pxa25x_udc_get_frame, |
| 1006 | .wakeup = pxa25x_udc_wakeup, |
| 1007 | .vbus_session = pxa25x_udc_vbus_session, |
| 1008 | .pullup = pxa25x_udc_pullup, |
Philipp Zabel | ab26d20 | 2009-07-01 03:46:25 -0700 | [diff] [blame] | 1009 | .vbus_draw = pxa25x_udc_vbus_draw, |
Felipe Balbi | 6166c24 | 2013-01-24 17:11:44 +0200 | [diff] [blame] | 1010 | .udc_start = pxa25x_udc_start, |
| 1011 | .udc_stop = pxa25x_udc_stop, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1012 | }; |
| 1013 | |
| 1014 | /*-------------------------------------------------------------------------*/ |
| 1015 | |
Dmitry Baryshkov | 040fa1b | 2007-12-30 11:56:27 -0800 | [diff] [blame] | 1016 | #ifdef CONFIG_USB_GADGET_DEBUG_FS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | |
| 1018 | static int |
Dmitry Baryshkov | 64cc2dd | 2008-02-22 17:17:19 -0800 | [diff] [blame] | 1019 | udc_seq_show(struct seq_file *m, void *_d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1021 | struct pxa25x_udc *dev = m->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1022 | unsigned long flags; |
Dmitry Baryshkov | 040fa1b | 2007-12-30 11:56:27 -0800 | [diff] [blame] | 1023 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | u32 tmp; |
| 1025 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | local_irq_save(flags); |
| 1027 | |
| 1028 | /* basic device status */ |
Dmitry Baryshkov | 040fa1b | 2007-12-30 11:56:27 -0800 | [diff] [blame] | 1029 | seq_printf(m, DRIVER_DESC "\n" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | "%s version: %s\nGadget driver: %s\nHost %s\n\n", |
David Brownell | ad8c623 | 2007-06-30 06:30:04 -0700 | [diff] [blame] | 1031 | driver_name, DRIVER_VERSION SIZE_STR "(pio)", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | dev->driver ? dev->driver->driver.name : "(none)", |
Dmitry Eremin-Solenikov | a8ecc86 | 2011-02-14 15:33:19 +0300 | [diff] [blame] | 1033 | dev->gadget.speed == USB_SPEED_FULL ? "full speed" : "disconnected"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | |
| 1035 | /* registers for device and ep0 */ |
Dmitry Baryshkov | 040fa1b | 2007-12-30 11:56:27 -0800 | [diff] [blame] | 1036 | seq_printf(m, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | "uicr %02X.%02X, usir %02X.%02x, ufnr %02X.%02X\n", |
| 1038 | UICR1, UICR0, USIR1, USIR0, UFNRH, UFNRL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | |
| 1040 | tmp = UDCCR; |
Dmitry Baryshkov | 040fa1b | 2007-12-30 11:56:27 -0800 | [diff] [blame] | 1041 | seq_printf(m, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | "udccr %02X =%s%s%s%s%s%s%s%s\n", tmp, |
| 1043 | (tmp & UDCCR_REM) ? " rem" : "", |
| 1044 | (tmp & UDCCR_RSTIR) ? " rstir" : "", |
| 1045 | (tmp & UDCCR_SRM) ? " srm" : "", |
| 1046 | (tmp & UDCCR_SUSIR) ? " susir" : "", |
| 1047 | (tmp & UDCCR_RESIR) ? " resir" : "", |
| 1048 | (tmp & UDCCR_RSM) ? " rsm" : "", |
| 1049 | (tmp & UDCCR_UDA) ? " uda" : "", |
| 1050 | (tmp & UDCCR_UDE) ? " ude" : ""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | |
| 1052 | tmp = UDCCS0; |
Dmitry Baryshkov | 040fa1b | 2007-12-30 11:56:27 -0800 | [diff] [blame] | 1053 | seq_printf(m, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | "udccs0 %02X =%s%s%s%s%s%s%s%s\n", tmp, |
| 1055 | (tmp & UDCCS0_SA) ? " sa" : "", |
| 1056 | (tmp & UDCCS0_RNE) ? " rne" : "", |
| 1057 | (tmp & UDCCS0_FST) ? " fst" : "", |
| 1058 | (tmp & UDCCS0_SST) ? " sst" : "", |
| 1059 | (tmp & UDCCS0_DRWF) ? " dwrf" : "", |
| 1060 | (tmp & UDCCS0_FTF) ? " ftf" : "", |
| 1061 | (tmp & UDCCS0_IPR) ? " ipr" : "", |
| 1062 | (tmp & UDCCS0_OPR) ? " opr" : ""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | |
| 1064 | if (dev->has_cfr) { |
| 1065 | tmp = UDCCFR; |
Dmitry Baryshkov | 040fa1b | 2007-12-30 11:56:27 -0800 | [diff] [blame] | 1066 | seq_printf(m, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | "udccfr %02X =%s%s\n", tmp, |
| 1068 | (tmp & UDCCFR_AREN) ? " aren" : "", |
| 1069 | (tmp & UDCCFR_ACM) ? " acm" : ""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | } |
| 1071 | |
Dmitry Eremin-Solenikov | a8ecc86 | 2011-02-14 15:33:19 +0300 | [diff] [blame] | 1072 | if (dev->gadget.speed != USB_SPEED_FULL || !dev->driver) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | goto done; |
| 1074 | |
Dmitry Baryshkov | 040fa1b | 2007-12-30 11:56:27 -0800 | [diff] [blame] | 1075 | seq_printf(m, "ep0 IN %lu/%lu, OUT %lu/%lu\nirqs %lu\n\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | dev->stats.write.bytes, dev->stats.write.ops, |
| 1077 | dev->stats.read.bytes, dev->stats.read.ops, |
| 1078 | dev->stats.irqs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | |
| 1080 | /* dump endpoint queues */ |
| 1081 | for (i = 0; i < PXA_UDC_NUM_ENDPOINTS; i++) { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1082 | struct pxa25x_ep *ep = &dev->ep [i]; |
| 1083 | struct pxa25x_request *req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | |
| 1085 | if (i != 0) { |
Dmitry Baryshkov | 040fa1b | 2007-12-30 11:56:27 -0800 | [diff] [blame] | 1086 | const struct usb_endpoint_descriptor *desc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | |
Ido Shayevitz | c18800d | 2012-03-12 20:25:36 +0200 | [diff] [blame] | 1088 | desc = ep->ep.desc; |
Dmitry Baryshkov | 040fa1b | 2007-12-30 11:56:27 -0800 | [diff] [blame] | 1089 | if (!desc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | continue; |
| 1091 | tmp = *dev->ep [i].reg_udccs; |
Dmitry Baryshkov | 040fa1b | 2007-12-30 11:56:27 -0800 | [diff] [blame] | 1092 | seq_printf(m, |
David Brownell | ad8c623 | 2007-06-30 06:30:04 -0700 | [diff] [blame] | 1093 | "%s max %d %s udccs %02x irqs %lu\n", |
Kuninori Morimoto | 29cc889 | 2011-08-23 03:12:03 -0700 | [diff] [blame] | 1094 | ep->ep.name, usb_endpoint_maxp(desc), |
David Brownell | ad8c623 | 2007-06-30 06:30:04 -0700 | [diff] [blame] | 1095 | "pio", tmp, ep->pio_irqs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | /* TODO translate all five groups of udccs bits! */ |
| 1097 | |
| 1098 | } else /* ep0 should only have one transfer queued */ |
Dmitry Baryshkov | 040fa1b | 2007-12-30 11:56:27 -0800 | [diff] [blame] | 1099 | seq_printf(m, "ep0 max 16 pio irqs %lu\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | ep->pio_irqs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1101 | |
| 1102 | if (list_empty(&ep->queue)) { |
Dmitry Baryshkov | 040fa1b | 2007-12-30 11:56:27 -0800 | [diff] [blame] | 1103 | seq_printf(m, "\t(nothing queued)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1104 | continue; |
| 1105 | } |
| 1106 | list_for_each_entry(req, &ep->queue, queue) { |
Dmitry Baryshkov | 040fa1b | 2007-12-30 11:56:27 -0800 | [diff] [blame] | 1107 | seq_printf(m, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | "\treq %p len %d/%d buf %p\n", |
| 1109 | &req->req, req->req.actual, |
| 1110 | req->req.length, req->req.buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1111 | } |
| 1112 | } |
| 1113 | |
| 1114 | done: |
| 1115 | local_irq_restore(flags); |
Dmitry Baryshkov | 040fa1b | 2007-12-30 11:56:27 -0800 | [diff] [blame] | 1116 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | } |
| 1118 | |
Dmitry Baryshkov | 040fa1b | 2007-12-30 11:56:27 -0800 | [diff] [blame] | 1119 | static int |
| 1120 | udc_debugfs_open(struct inode *inode, struct file *file) |
| 1121 | { |
| 1122 | return single_open(file, udc_seq_show, inode->i_private); |
| 1123 | } |
| 1124 | |
| 1125 | static const struct file_operations debug_fops = { |
| 1126 | .open = udc_debugfs_open, |
| 1127 | .read = seq_read, |
| 1128 | .llseek = seq_lseek, |
| 1129 | .release = single_release, |
| 1130 | .owner = THIS_MODULE, |
| 1131 | }; |
| 1132 | |
| 1133 | #define create_debug_files(dev) \ |
| 1134 | do { \ |
| 1135 | dev->debugfs_udc = debugfs_create_file(dev->gadget.name, \ |
| 1136 | S_IRUGO, NULL, dev, &debug_fops); \ |
| 1137 | } while (0) |
| 1138 | #define remove_debug_files(dev) \ |
| 1139 | do { \ |
| 1140 | if (dev->debugfs_udc) \ |
| 1141 | debugfs_remove(dev->debugfs_udc); \ |
| 1142 | } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | |
| 1144 | #else /* !CONFIG_USB_GADGET_DEBUG_FILES */ |
| 1145 | |
Dmitry Baryshkov | 040fa1b | 2007-12-30 11:56:27 -0800 | [diff] [blame] | 1146 | #define create_debug_files(dev) do {} while (0) |
| 1147 | #define remove_debug_files(dev) do {} while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1148 | |
| 1149 | #endif /* CONFIG_USB_GADGET_DEBUG_FILES */ |
| 1150 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | /*-------------------------------------------------------------------------*/ |
| 1152 | |
| 1153 | /* |
David Brownell | 34ebcd2 | 2007-02-24 12:23:52 -0800 | [diff] [blame] | 1154 | * udc_disable - disable USB device controller |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | */ |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1156 | static void udc_disable(struct pxa25x_udc *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1157 | { |
| 1158 | /* block all irqs */ |
| 1159 | udc_set_mask_UDCCR(UDCCR_SRM|UDCCR_REM); |
| 1160 | UICR0 = UICR1 = 0xff; |
| 1161 | UFNRH = UFNRH_SIM; |
| 1162 | |
| 1163 | /* if hardware supports it, disconnect from usb */ |
David Brownell | 9198769 | 2005-05-07 13:20:19 -0700 | [diff] [blame] | 1164 | pullup_off(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1165 | |
| 1166 | udc_clear_mask_UDCCR(UDCCR_UDE); |
| 1167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | ep0_idle (dev); |
| 1169 | dev->gadget.speed = USB_SPEED_UNKNOWN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | } |
| 1171 | |
| 1172 | |
| 1173 | /* |
David Brownell | 34ebcd2 | 2007-02-24 12:23:52 -0800 | [diff] [blame] | 1174 | * udc_reinit - initialize software state |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | */ |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1176 | static void udc_reinit(struct pxa25x_udc *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1177 | { |
| 1178 | u32 i; |
| 1179 | |
| 1180 | /* device/ep0 records init */ |
| 1181 | INIT_LIST_HEAD (&dev->gadget.ep_list); |
| 1182 | INIT_LIST_HEAD (&dev->gadget.ep0->ep_list); |
| 1183 | dev->ep0state = EP0_IDLE; |
| 1184 | |
| 1185 | /* basic endpoint records init */ |
| 1186 | for (i = 0; i < PXA_UDC_NUM_ENDPOINTS; i++) { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1187 | struct pxa25x_ep *ep = &dev->ep[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1188 | |
| 1189 | if (i != 0) |
| 1190 | list_add_tail (&ep->ep.ep_list, &dev->gadget.ep_list); |
| 1191 | |
Ido Shayevitz | f9c56cd | 2012-02-08 13:56:48 +0200 | [diff] [blame] | 1192 | ep->ep.desc = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1193 | ep->stopped = 0; |
| 1194 | INIT_LIST_HEAD (&ep->queue); |
David Brownell | ad8c623 | 2007-06-30 06:30:04 -0700 | [diff] [blame] | 1195 | ep->pio_irqs = 0; |
Robert Baldyga | e117e74 | 2013-12-13 12:23:38 +0100 | [diff] [blame] | 1196 | usb_ep_set_maxpacket_limit(&ep->ep, ep->ep.maxpacket); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | } |
| 1198 | |
| 1199 | /* the rest was statically initialized, and is read-only */ |
| 1200 | } |
| 1201 | |
| 1202 | /* until it's enabled, this UDC should be completely invisible |
| 1203 | * to any USB host. |
| 1204 | */ |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1205 | static void udc_enable (struct pxa25x_udc *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | { |
| 1207 | udc_clear_mask_UDCCR(UDCCR_UDE); |
| 1208 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | /* try to clear these bits before we enable the udc */ |
| 1210 | udc_ack_int_UDCCR(UDCCR_SUSIR|/*UDCCR_RSTIR|*/UDCCR_RESIR); |
| 1211 | |
| 1212 | ep0_idle(dev); |
| 1213 | dev->gadget.speed = USB_SPEED_UNKNOWN; |
| 1214 | dev->stats.irqs = 0; |
| 1215 | |
| 1216 | /* |
| 1217 | * sequence taken from chapter 12.5.10, PXA250 AppProcDevManual: |
| 1218 | * - enable UDC |
| 1219 | * - if RESET is already in progress, ack interrupt |
| 1220 | * - unmask reset interrupt |
| 1221 | */ |
| 1222 | udc_set_mask_UDCCR(UDCCR_UDE); |
| 1223 | if (!(UDCCR & UDCCR_UDA)) |
| 1224 | udc_ack_int_UDCCR(UDCCR_RSTIR); |
| 1225 | |
| 1226 | if (dev->has_cfr /* UDC_RES2 is defined */) { |
| 1227 | /* pxa255 (a0+) can avoid a set_config race that could |
| 1228 | * prevent gadget drivers from configuring correctly |
| 1229 | */ |
| 1230 | UDCCFR = UDCCFR_ACM | UDCCFR_MB1; |
| 1231 | } else { |
| 1232 | /* "USB test mode" for pxa250 errata 40-42 (stepping a0, a1) |
| 1233 | * which could result in missing packets and interrupts. |
| 1234 | * supposedly one bit per endpoint, controlling whether it |
| 1235 | * double buffers or not; ACM/AREN bits fit into the holes. |
| 1236 | * zero bits (like USIR0_IRx) disable double buffering. |
| 1237 | */ |
| 1238 | UDC_RES1 = 0x00; |
| 1239 | UDC_RES2 = 0x00; |
| 1240 | } |
| 1241 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1242 | /* enable suspend/resume and reset irqs */ |
| 1243 | udc_clear_mask_UDCCR(UDCCR_SRM | UDCCR_REM); |
| 1244 | |
| 1245 | /* enable ep0 irqs */ |
| 1246 | UICR0 &= ~UICR0_IM0; |
| 1247 | |
| 1248 | /* if hardware supports it, pullup D+ and wait for reset */ |
David Brownell | 9198769 | 2005-05-07 13:20:19 -0700 | [diff] [blame] | 1249 | pullup_on(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1250 | } |
| 1251 | |
| 1252 | |
| 1253 | /* when a driver is successfully registered, it will receive |
| 1254 | * control requests including set_configuration(), which enables |
| 1255 | * non-control requests. then usb traffic follows until a |
| 1256 | * disconnect is reported. then a host may connect again, or |
| 1257 | * the driver might get unbound. |
| 1258 | */ |
Felipe Balbi | 6166c24 | 2013-01-24 17:11:44 +0200 | [diff] [blame] | 1259 | static int pxa25x_udc_start(struct usb_gadget *g, |
| 1260 | struct usb_gadget_driver *driver) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1261 | { |
Felipe Balbi | 6166c24 | 2013-01-24 17:11:44 +0200 | [diff] [blame] | 1262 | struct pxa25x_udc *dev = to_pxa25x(g); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 | int retval; |
| 1264 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1265 | /* first hook up the driver ... */ |
| 1266 | dev->driver = driver; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1267 | dev->pullup = 1; |
| 1268 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | /* ... then enable host detection and ep0; and we're ready |
| 1270 | * for set_configuration as well as eventual disconnect. |
| 1271 | */ |
Philipp Zabel | ab26d20 | 2009-07-01 03:46:25 -0700 | [diff] [blame] | 1272 | /* connect to bus through transceiver */ |
Kishon Vijay Abraham I | ded017e | 2012-06-26 17:40:32 +0530 | [diff] [blame] | 1273 | if (!IS_ERR_OR_NULL(dev->transceiver)) { |
Heikki Krogerus | 6e13c65 | 2012-02-13 13:24:20 +0200 | [diff] [blame] | 1274 | retval = otg_set_peripheral(dev->transceiver->otg, |
| 1275 | &dev->gadget); |
Felipe Balbi | 6166c24 | 2013-01-24 17:11:44 +0200 | [diff] [blame] | 1276 | if (retval) |
Philipp Zabel | ab26d20 | 2009-07-01 03:46:25 -0700 | [diff] [blame] | 1277 | goto bind_fail; |
Philipp Zabel | ab26d20 | 2009-07-01 03:46:25 -0700 | [diff] [blame] | 1278 | } |
| 1279 | |
Dmitry Baryshkov | 64cc2dd | 2008-02-22 17:17:19 -0800 | [diff] [blame] | 1280 | pullup(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1281 | dump_state(dev); |
| 1282 | return 0; |
Philipp Zabel | ab26d20 | 2009-07-01 03:46:25 -0700 | [diff] [blame] | 1283 | bind_fail: |
| 1284 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1285 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1286 | |
| 1287 | static void |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1288 | stop_activity(struct pxa25x_udc *dev, struct usb_gadget_driver *driver) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1289 | { |
| 1290 | int i; |
| 1291 | |
| 1292 | /* don't disconnect drivers more than once */ |
| 1293 | if (dev->gadget.speed == USB_SPEED_UNKNOWN) |
| 1294 | driver = NULL; |
| 1295 | dev->gadget.speed = USB_SPEED_UNKNOWN; |
| 1296 | |
| 1297 | /* prevent new request submissions, kill any outstanding requests */ |
| 1298 | for (i = 0; i < PXA_UDC_NUM_ENDPOINTS; i++) { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1299 | struct pxa25x_ep *ep = &dev->ep[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1300 | |
| 1301 | ep->stopped = 1; |
| 1302 | nuke(ep, -ESHUTDOWN); |
| 1303 | } |
| 1304 | del_timer_sync(&dev->timer); |
| 1305 | |
Felipe Balbi | 66e4afc | 2013-03-11 12:40:31 +0200 | [diff] [blame] | 1306 | /* report disconnect; the driver is already quiesced */ |
| 1307 | if (driver) |
| 1308 | driver->disconnect(&dev->gadget); |
| 1309 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | /* re-init driver-visible data structures */ |
| 1311 | udc_reinit(dev); |
| 1312 | } |
| 1313 | |
Felipe Balbi | 6166c24 | 2013-01-24 17:11:44 +0200 | [diff] [blame] | 1314 | static int pxa25x_udc_stop(struct usb_gadget*g, |
| 1315 | struct usb_gadget_driver *driver) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1316 | { |
Felipe Balbi | 6166c24 | 2013-01-24 17:11:44 +0200 | [diff] [blame] | 1317 | struct pxa25x_udc *dev = to_pxa25x(g); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1318 | |
| 1319 | local_irq_disable(); |
Dmitry Baryshkov | 64cc2dd | 2008-02-22 17:17:19 -0800 | [diff] [blame] | 1320 | dev->pullup = 0; |
| 1321 | pullup(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1322 | stop_activity(dev, driver); |
| 1323 | local_irq_enable(); |
| 1324 | |
Kishon Vijay Abraham I | ded017e | 2012-06-26 17:40:32 +0530 | [diff] [blame] | 1325 | if (!IS_ERR_OR_NULL(dev->transceiver)) |
Heikki Krogerus | 6e13c65 | 2012-02-13 13:24:20 +0200 | [diff] [blame] | 1326 | (void) otg_set_peripheral(dev->transceiver->otg, NULL); |
Philipp Zabel | ab26d20 | 2009-07-01 03:46:25 -0700 | [diff] [blame] | 1327 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1328 | dev->driver = NULL; |
| 1329 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1330 | dump_state(dev); |
Felipe Balbi | 6166c24 | 2013-01-24 17:11:44 +0200 | [diff] [blame] | 1331 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | return 0; |
| 1333 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1334 | |
| 1335 | /*-------------------------------------------------------------------------*/ |
| 1336 | |
| 1337 | #ifdef CONFIG_ARCH_LUBBOCK |
| 1338 | |
| 1339 | /* Lubbock has separate connect and disconnect irqs. More typical designs |
| 1340 | * use one GPIO as the VBUS IRQ, and another to control the D+ pullup. |
| 1341 | */ |
| 1342 | |
| 1343 | static irqreturn_t |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1344 | lubbock_vbus_irq(int irq, void *_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1345 | { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1346 | struct pxa25x_udc *dev = _dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1347 | int vbus; |
| 1348 | |
| 1349 | dev->stats.irqs++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | switch (irq) { |
| 1351 | case LUBBOCK_USB_IRQ: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | vbus = 1; |
| 1353 | disable_irq(LUBBOCK_USB_IRQ); |
| 1354 | enable_irq(LUBBOCK_USB_DISC_IRQ); |
| 1355 | break; |
| 1356 | case LUBBOCK_USB_DISC_IRQ: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1357 | vbus = 0; |
| 1358 | disable_irq(LUBBOCK_USB_DISC_IRQ); |
| 1359 | enable_irq(LUBBOCK_USB_IRQ); |
| 1360 | break; |
| 1361 | default: |
| 1362 | return IRQ_NONE; |
| 1363 | } |
| 1364 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1365 | pxa25x_udc_vbus_session(&dev->gadget, vbus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1366 | return IRQ_HANDLED; |
| 1367 | } |
| 1368 | |
| 1369 | #endif |
| 1370 | |
| 1371 | |
| 1372 | /*-------------------------------------------------------------------------*/ |
| 1373 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1374 | static inline void clear_ep_state (struct pxa25x_udc *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1375 | { |
| 1376 | unsigned i; |
| 1377 | |
| 1378 | /* hardware SET_{CONFIGURATION,INTERFACE} automagic resets endpoint |
| 1379 | * fifos, and pending transactions mustn't be continued in any case. |
| 1380 | */ |
| 1381 | for (i = 1; i < PXA_UDC_NUM_ENDPOINTS; i++) |
| 1382 | nuke(&dev->ep[i], -ECONNABORTED); |
| 1383 | } |
| 1384 | |
| 1385 | static void udc_watchdog(unsigned long _dev) |
| 1386 | { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1387 | struct pxa25x_udc *dev = (void *)_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1388 | |
| 1389 | local_irq_disable(); |
| 1390 | if (dev->ep0state == EP0_STALL |
| 1391 | && (UDCCS0 & UDCCS0_FST) == 0 |
| 1392 | && (UDCCS0 & UDCCS0_SST) == 0) { |
| 1393 | UDCCS0 = UDCCS0_FST|UDCCS0_FTF; |
| 1394 | DBG(DBG_VERBOSE, "ep0 re-stall\n"); |
| 1395 | start_watchdog(dev); |
| 1396 | } |
| 1397 | local_irq_enable(); |
| 1398 | } |
| 1399 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1400 | static void handle_ep0 (struct pxa25x_udc *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1401 | { |
| 1402 | u32 udccs0 = UDCCS0; |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1403 | struct pxa25x_ep *ep = &dev->ep [0]; |
| 1404 | struct pxa25x_request *req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1405 | union { |
| 1406 | struct usb_ctrlrequest r; |
| 1407 | u8 raw [8]; |
| 1408 | u32 word [2]; |
| 1409 | } u; |
| 1410 | |
| 1411 | if (list_empty(&ep->queue)) |
| 1412 | req = NULL; |
| 1413 | else |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1414 | req = list_entry(ep->queue.next, struct pxa25x_request, queue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1415 | |
| 1416 | /* clear stall status */ |
| 1417 | if (udccs0 & UDCCS0_SST) { |
| 1418 | nuke(ep, -EPIPE); |
| 1419 | UDCCS0 = UDCCS0_SST; |
| 1420 | del_timer(&dev->timer); |
| 1421 | ep0_idle(dev); |
| 1422 | } |
| 1423 | |
| 1424 | /* previous request unfinished? non-error iff back-to-back ... */ |
| 1425 | if ((udccs0 & UDCCS0_SA) != 0 && dev->ep0state != EP0_IDLE) { |
| 1426 | nuke(ep, 0); |
| 1427 | del_timer(&dev->timer); |
| 1428 | ep0_idle(dev); |
| 1429 | } |
| 1430 | |
| 1431 | switch (dev->ep0state) { |
| 1432 | case EP0_IDLE: |
| 1433 | /* late-breaking status? */ |
| 1434 | udccs0 = UDCCS0; |
| 1435 | |
| 1436 | /* start control request? */ |
| 1437 | if (likely((udccs0 & (UDCCS0_OPR|UDCCS0_SA|UDCCS0_RNE)) |
| 1438 | == (UDCCS0_OPR|UDCCS0_SA|UDCCS0_RNE))) { |
| 1439 | int i; |
| 1440 | |
| 1441 | nuke (ep, -EPROTO); |
| 1442 | |
| 1443 | /* read SETUP packet */ |
| 1444 | for (i = 0; i < 8; i++) { |
| 1445 | if (unlikely(!(UDCCS0 & UDCCS0_RNE))) { |
| 1446 | bad_setup: |
| 1447 | DMSG("SETUP %d!\n", i); |
| 1448 | goto stall; |
| 1449 | } |
| 1450 | u.raw [i] = (u8) UDDR0; |
| 1451 | } |
| 1452 | if (unlikely((UDCCS0 & UDCCS0_RNE) != 0)) |
| 1453 | goto bad_setup; |
| 1454 | |
| 1455 | got_setup: |
| 1456 | DBG(DBG_VERBOSE, "SETUP %02x.%02x v%04x i%04x l%04x\n", |
| 1457 | u.r.bRequestType, u.r.bRequest, |
| 1458 | le16_to_cpu(u.r.wValue), |
| 1459 | le16_to_cpu(u.r.wIndex), |
| 1460 | le16_to_cpu(u.r.wLength)); |
| 1461 | |
| 1462 | /* cope with automagic for some standard requests. */ |
| 1463 | dev->req_std = (u.r.bRequestType & USB_TYPE_MASK) |
| 1464 | == USB_TYPE_STANDARD; |
| 1465 | dev->req_config = 0; |
| 1466 | dev->req_pending = 1; |
| 1467 | switch (u.r.bRequest) { |
| 1468 | /* hardware restricts gadget drivers here! */ |
| 1469 | case USB_REQ_SET_CONFIGURATION: |
| 1470 | if (u.r.bRequestType == USB_RECIP_DEVICE) { |
| 1471 | /* reflect hardware's automagic |
| 1472 | * up to the gadget driver. |
| 1473 | */ |
| 1474 | config_change: |
| 1475 | dev->req_config = 1; |
| 1476 | clear_ep_state(dev); |
| 1477 | /* if !has_cfr, there's no synch |
| 1478 | * else use AREN (later) not SA|OPR |
| 1479 | * USIR0_IR0 acts edge sensitive |
| 1480 | */ |
| 1481 | } |
| 1482 | break; |
| 1483 | /* ... and here, even more ... */ |
| 1484 | case USB_REQ_SET_INTERFACE: |
| 1485 | if (u.r.bRequestType == USB_RECIP_INTERFACE) { |
| 1486 | /* udc hardware is broken by design: |
| 1487 | * - altsetting may only be zero; |
| 1488 | * - hw resets all interfaces' eps; |
| 1489 | * - ep reset doesn't include halt(?). |
| 1490 | */ |
| 1491 | DMSG("broken set_interface (%d/%d)\n", |
| 1492 | le16_to_cpu(u.r.wIndex), |
| 1493 | le16_to_cpu(u.r.wValue)); |
| 1494 | goto config_change; |
| 1495 | } |
| 1496 | break; |
| 1497 | /* hardware was supposed to hide this */ |
| 1498 | case USB_REQ_SET_ADDRESS: |
| 1499 | if (u.r.bRequestType == USB_RECIP_DEVICE) { |
| 1500 | ep0start(dev, 0, "address"); |
| 1501 | return; |
| 1502 | } |
| 1503 | break; |
| 1504 | } |
| 1505 | |
| 1506 | if (u.r.bRequestType & USB_DIR_IN) |
| 1507 | dev->ep0state = EP0_IN_DATA_PHASE; |
| 1508 | else |
| 1509 | dev->ep0state = EP0_OUT_DATA_PHASE; |
| 1510 | |
| 1511 | i = dev->driver->setup(&dev->gadget, &u.r); |
| 1512 | if (i < 0) { |
| 1513 | /* hardware automagic preventing STALL... */ |
| 1514 | if (dev->req_config) { |
| 1515 | /* hardware sometimes neglects to tell |
| 1516 | * tell us about config change events, |
| 1517 | * so later ones may fail... |
| 1518 | */ |
Arjan van de Ven | b6c6393 | 2008-07-25 01:45:52 -0700 | [diff] [blame] | 1519 | WARNING("config change %02x fail %d?\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1520 | u.r.bRequest, i); |
| 1521 | return; |
| 1522 | /* TODO experiment: if has_cfr, |
| 1523 | * hardware didn't ACK; maybe we |
| 1524 | * could actually STALL! |
| 1525 | */ |
| 1526 | } |
| 1527 | DBG(DBG_VERBOSE, "protocol STALL, " |
| 1528 | "%02x err %d\n", UDCCS0, i); |
| 1529 | stall: |
| 1530 | /* the watchdog timer helps deal with cases |
| 1531 | * where udc seems to clear FST wrongly, and |
| 1532 | * then NAKs instead of STALLing. |
| 1533 | */ |
| 1534 | ep0start(dev, UDCCS0_FST|UDCCS0_FTF, "stall"); |
| 1535 | start_watchdog(dev); |
| 1536 | dev->ep0state = EP0_STALL; |
| 1537 | |
| 1538 | /* deferred i/o == no response yet */ |
| 1539 | } else if (dev->req_pending) { |
| 1540 | if (likely(dev->ep0state == EP0_IN_DATA_PHASE |
| 1541 | || dev->req_std || u.r.wLength)) |
| 1542 | ep0start(dev, 0, "defer"); |
| 1543 | else |
| 1544 | ep0start(dev, UDCCS0_IPR, "defer/IPR"); |
| 1545 | } |
| 1546 | |
| 1547 | /* expect at least one data or status stage irq */ |
| 1548 | return; |
| 1549 | |
| 1550 | } else if (likely((udccs0 & (UDCCS0_OPR|UDCCS0_SA)) |
| 1551 | == (UDCCS0_OPR|UDCCS0_SA))) { |
| 1552 | unsigned i; |
| 1553 | |
| 1554 | /* pxa210/250 erratum 131 for B0/B1 says RNE lies. |
| 1555 | * still observed on a pxa255 a0. |
| 1556 | */ |
| 1557 | DBG(DBG_VERBOSE, "e131\n"); |
| 1558 | nuke(ep, -EPROTO); |
| 1559 | |
| 1560 | /* read SETUP data, but don't trust it too much */ |
| 1561 | for (i = 0; i < 8; i++) |
| 1562 | u.raw [i] = (u8) UDDR0; |
| 1563 | if ((u.r.bRequestType & USB_RECIP_MASK) |
| 1564 | > USB_RECIP_OTHER) |
| 1565 | goto stall; |
| 1566 | if (u.word [0] == 0 && u.word [1] == 0) |
| 1567 | goto stall; |
| 1568 | goto got_setup; |
| 1569 | } else { |
| 1570 | /* some random early IRQ: |
| 1571 | * - we acked FST |
| 1572 | * - IPR cleared |
| 1573 | * - OPR got set, without SA (likely status stage) |
| 1574 | */ |
| 1575 | UDCCS0 = udccs0 & (UDCCS0_SA|UDCCS0_OPR); |
| 1576 | } |
| 1577 | break; |
| 1578 | case EP0_IN_DATA_PHASE: /* GET_DESCRIPTOR etc */ |
| 1579 | if (udccs0 & UDCCS0_OPR) { |
| 1580 | UDCCS0 = UDCCS0_OPR|UDCCS0_FTF; |
| 1581 | DBG(DBG_VERBOSE, "ep0in premature status\n"); |
| 1582 | if (req) |
| 1583 | done(ep, req, 0); |
| 1584 | ep0_idle(dev); |
| 1585 | } else /* irq was IPR clearing */ { |
| 1586 | if (req) { |
| 1587 | /* this IN packet might finish the request */ |
| 1588 | (void) write_ep0_fifo(ep, req); |
| 1589 | } /* else IN token before response was written */ |
| 1590 | } |
| 1591 | break; |
| 1592 | case EP0_OUT_DATA_PHASE: /* SET_DESCRIPTOR etc */ |
| 1593 | if (udccs0 & UDCCS0_OPR) { |
| 1594 | if (req) { |
| 1595 | /* this OUT packet might finish the request */ |
| 1596 | if (read_ep0_fifo(ep, req)) |
| 1597 | done(ep, req, 0); |
| 1598 | /* else more OUT packets expected */ |
| 1599 | } /* else OUT token before read was issued */ |
| 1600 | } else /* irq was IPR clearing */ { |
| 1601 | DBG(DBG_VERBOSE, "ep0out premature status\n"); |
| 1602 | if (req) |
| 1603 | done(ep, req, 0); |
| 1604 | ep0_idle(dev); |
| 1605 | } |
| 1606 | break; |
| 1607 | case EP0_END_XFER: |
| 1608 | if (req) |
| 1609 | done(ep, req, 0); |
| 1610 | /* ack control-IN status (maybe in-zlp was skipped) |
| 1611 | * also appears after some config change events. |
| 1612 | */ |
| 1613 | if (udccs0 & UDCCS0_OPR) |
| 1614 | UDCCS0 = UDCCS0_OPR; |
| 1615 | ep0_idle(dev); |
| 1616 | break; |
| 1617 | case EP0_STALL: |
| 1618 | UDCCS0 = UDCCS0_FST; |
| 1619 | break; |
| 1620 | } |
| 1621 | USIR0 = USIR0_IR0; |
| 1622 | } |
| 1623 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1624 | static void handle_ep(struct pxa25x_ep *ep) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1625 | { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1626 | struct pxa25x_request *req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1627 | int is_in = ep->bEndpointAddress & USB_DIR_IN; |
| 1628 | int completed; |
| 1629 | u32 udccs, tmp; |
| 1630 | |
| 1631 | do { |
| 1632 | completed = 0; |
| 1633 | if (likely (!list_empty(&ep->queue))) |
| 1634 | req = list_entry(ep->queue.next, |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1635 | struct pxa25x_request, queue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | else |
| 1637 | req = NULL; |
| 1638 | |
| 1639 | // TODO check FST handling |
| 1640 | |
| 1641 | udccs = *ep->reg_udccs; |
| 1642 | if (unlikely(is_in)) { /* irq from TPC, SST, or (ISO) TUR */ |
| 1643 | tmp = UDCCS_BI_TUR; |
| 1644 | if (likely(ep->bmAttributes == USB_ENDPOINT_XFER_BULK)) |
| 1645 | tmp |= UDCCS_BI_SST; |
| 1646 | tmp &= udccs; |
| 1647 | if (likely (tmp)) |
| 1648 | *ep->reg_udccs = tmp; |
| 1649 | if (req && likely ((udccs & UDCCS_BI_TFS) != 0)) |
| 1650 | completed = write_fifo(ep, req); |
| 1651 | |
| 1652 | } else { /* irq from RPC (or for ISO, ROF) */ |
| 1653 | if (likely(ep->bmAttributes == USB_ENDPOINT_XFER_BULK)) |
| 1654 | tmp = UDCCS_BO_SST | UDCCS_BO_DME; |
| 1655 | else |
| 1656 | tmp = UDCCS_IO_ROF | UDCCS_IO_DME; |
| 1657 | tmp &= udccs; |
| 1658 | if (likely(tmp)) |
| 1659 | *ep->reg_udccs = tmp; |
| 1660 | |
| 1661 | /* fifos can hold packets, ready for reading... */ |
| 1662 | if (likely(req)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1663 | completed = read_fifo(ep, req); |
| 1664 | } else |
| 1665 | pio_irq_disable (ep->bEndpointAddress); |
| 1666 | } |
| 1667 | ep->pio_irqs++; |
| 1668 | } while (completed); |
| 1669 | } |
| 1670 | |
| 1671 | /* |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1672 | * pxa25x_udc_irq - interrupt handler |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1673 | * |
| 1674 | * avoid delays in ep0 processing. the control handshaking isn't always |
| 1675 | * under software control (pxa250c0 and the pxa255 are better), and delays |
| 1676 | * could cause usb protocol errors. |
| 1677 | */ |
| 1678 | static irqreturn_t |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1679 | pxa25x_udc_irq(int irq, void *_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1680 | { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1681 | struct pxa25x_udc *dev = _dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1682 | int handled; |
| 1683 | |
| 1684 | dev->stats.irqs++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1685 | do { |
| 1686 | u32 udccr = UDCCR; |
| 1687 | |
| 1688 | handled = 0; |
| 1689 | |
| 1690 | /* SUSpend Interrupt Request */ |
| 1691 | if (unlikely(udccr & UDCCR_SUSIR)) { |
| 1692 | udc_ack_int_UDCCR(UDCCR_SUSIR); |
| 1693 | handled = 1; |
Dmitry Eremin-Solenikov | a8ecc86 | 2011-02-14 15:33:19 +0300 | [diff] [blame] | 1694 | DBG(DBG_VERBOSE, "USB suspend\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1695 | |
Dmitry Eremin-Solenikov | a8ecc86 | 2011-02-14 15:33:19 +0300 | [diff] [blame] | 1696 | if (dev->gadget.speed != USB_SPEED_UNKNOWN |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1697 | && dev->driver |
| 1698 | && dev->driver->suspend) |
| 1699 | dev->driver->suspend(&dev->gadget); |
| 1700 | ep0_idle (dev); |
| 1701 | } |
| 1702 | |
| 1703 | /* RESume Interrupt Request */ |
| 1704 | if (unlikely(udccr & UDCCR_RESIR)) { |
| 1705 | udc_ack_int_UDCCR(UDCCR_RESIR); |
| 1706 | handled = 1; |
| 1707 | DBG(DBG_VERBOSE, "USB resume\n"); |
| 1708 | |
| 1709 | if (dev->gadget.speed != USB_SPEED_UNKNOWN |
| 1710 | && dev->driver |
Dmitry Eremin-Solenikov | a8ecc86 | 2011-02-14 15:33:19 +0300 | [diff] [blame] | 1711 | && dev->driver->resume) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1712 | dev->driver->resume(&dev->gadget); |
| 1713 | } |
| 1714 | |
| 1715 | /* ReSeT Interrupt Request - USB reset */ |
| 1716 | if (unlikely(udccr & UDCCR_RSTIR)) { |
| 1717 | udc_ack_int_UDCCR(UDCCR_RSTIR); |
| 1718 | handled = 1; |
| 1719 | |
| 1720 | if ((UDCCR & UDCCR_UDA) == 0) { |
| 1721 | DBG(DBG_VERBOSE, "USB reset start\n"); |
| 1722 | |
| 1723 | /* reset driver and endpoints, |
| 1724 | * in case that's not yet done |
| 1725 | */ |
| 1726 | stop_activity (dev, dev->driver); |
| 1727 | |
| 1728 | } else { |
| 1729 | DBG(DBG_VERBOSE, "USB reset end\n"); |
| 1730 | dev->gadget.speed = USB_SPEED_FULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1731 | memset(&dev->stats, 0, sizeof dev->stats); |
| 1732 | /* driver and endpoints are still reset */ |
| 1733 | } |
| 1734 | |
| 1735 | } else { |
| 1736 | u32 usir0 = USIR0 & ~UICR0; |
| 1737 | u32 usir1 = USIR1 & ~UICR1; |
| 1738 | int i; |
| 1739 | |
| 1740 | if (unlikely (!usir0 && !usir1)) |
| 1741 | continue; |
| 1742 | |
| 1743 | DBG(DBG_VERY_NOISY, "irq %02x.%02x\n", usir1, usir0); |
| 1744 | |
| 1745 | /* control traffic */ |
| 1746 | if (usir0 & USIR0_IR0) { |
| 1747 | dev->ep[0].pio_irqs++; |
| 1748 | handle_ep0(dev); |
| 1749 | handled = 1; |
| 1750 | } |
| 1751 | |
| 1752 | /* endpoint data transfers */ |
| 1753 | for (i = 0; i < 8; i++) { |
| 1754 | u32 tmp = 1 << i; |
| 1755 | |
| 1756 | if (i && (usir0 & tmp)) { |
| 1757 | handle_ep(&dev->ep[i]); |
| 1758 | USIR0 |= tmp; |
| 1759 | handled = 1; |
| 1760 | } |
David Brownell | 6d84599 | 2009-07-01 03:43:58 -0700 | [diff] [blame] | 1761 | #ifndef CONFIG_USB_PXA25X_SMALL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1762 | if (usir1 & tmp) { |
| 1763 | handle_ep(&dev->ep[i+8]); |
| 1764 | USIR1 |= tmp; |
| 1765 | handled = 1; |
| 1766 | } |
David Brownell | 6d84599 | 2009-07-01 03:43:58 -0700 | [diff] [blame] | 1767 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1768 | } |
| 1769 | } |
| 1770 | |
| 1771 | /* we could also ask for 1 msec SOF (SIR) interrupts */ |
| 1772 | |
| 1773 | } while (handled); |
| 1774 | return IRQ_HANDLED; |
| 1775 | } |
| 1776 | |
| 1777 | /*-------------------------------------------------------------------------*/ |
| 1778 | |
| 1779 | static void nop_release (struct device *dev) |
| 1780 | { |
Kay Sievers | 7071a3c | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 1781 | DMSG("%s %s\n", __func__, dev_name(dev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1782 | } |
| 1783 | |
| 1784 | /* this uses load-time allocation and initialization (instead of |
| 1785 | * doing it at run-time) to save code, eliminate fault paths, and |
| 1786 | * be more obviously correct. |
| 1787 | */ |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1788 | static struct pxa25x_udc memory = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1789 | .gadget = { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1790 | .ops = &pxa25x_udc_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1791 | .ep0 = &memory.ep[0].ep, |
| 1792 | .name = driver_name, |
| 1793 | .dev = { |
Kay Sievers | c682b17 | 2009-01-06 10:44:42 -0800 | [diff] [blame] | 1794 | .init_name = "gadget", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1795 | .release = nop_release, |
| 1796 | }, |
| 1797 | }, |
| 1798 | |
| 1799 | /* control endpoint */ |
| 1800 | .ep[0] = { |
| 1801 | .ep = { |
| 1802 | .name = ep0name, |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1803 | .ops = &pxa25x_ep_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1804 | .maxpacket = EP0_FIFO_SIZE, |
| 1805 | }, |
| 1806 | .dev = &memory, |
| 1807 | .reg_udccs = &UDCCS0, |
| 1808 | .reg_uddr = &UDDR0, |
| 1809 | }, |
| 1810 | |
| 1811 | /* first group of endpoints */ |
| 1812 | .ep[1] = { |
| 1813 | .ep = { |
| 1814 | .name = "ep1in-bulk", |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1815 | .ops = &pxa25x_ep_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1816 | .maxpacket = BULK_FIFO_SIZE, |
| 1817 | }, |
| 1818 | .dev = &memory, |
| 1819 | .fifo_size = BULK_FIFO_SIZE, |
| 1820 | .bEndpointAddress = USB_DIR_IN | 1, |
| 1821 | .bmAttributes = USB_ENDPOINT_XFER_BULK, |
| 1822 | .reg_udccs = &UDCCS1, |
| 1823 | .reg_uddr = &UDDR1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1824 | }, |
| 1825 | .ep[2] = { |
| 1826 | .ep = { |
| 1827 | .name = "ep2out-bulk", |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1828 | .ops = &pxa25x_ep_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1829 | .maxpacket = BULK_FIFO_SIZE, |
| 1830 | }, |
| 1831 | .dev = &memory, |
| 1832 | .fifo_size = BULK_FIFO_SIZE, |
| 1833 | .bEndpointAddress = 2, |
| 1834 | .bmAttributes = USB_ENDPOINT_XFER_BULK, |
| 1835 | .reg_udccs = &UDCCS2, |
| 1836 | .reg_ubcr = &UBCR2, |
| 1837 | .reg_uddr = &UDDR2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1838 | }, |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1839 | #ifndef CONFIG_USB_PXA25X_SMALL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1840 | .ep[3] = { |
| 1841 | .ep = { |
| 1842 | .name = "ep3in-iso", |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1843 | .ops = &pxa25x_ep_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1844 | .maxpacket = ISO_FIFO_SIZE, |
| 1845 | }, |
| 1846 | .dev = &memory, |
| 1847 | .fifo_size = ISO_FIFO_SIZE, |
| 1848 | .bEndpointAddress = USB_DIR_IN | 3, |
| 1849 | .bmAttributes = USB_ENDPOINT_XFER_ISOC, |
| 1850 | .reg_udccs = &UDCCS3, |
| 1851 | .reg_uddr = &UDDR3, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1852 | }, |
| 1853 | .ep[4] = { |
| 1854 | .ep = { |
| 1855 | .name = "ep4out-iso", |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1856 | .ops = &pxa25x_ep_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1857 | .maxpacket = ISO_FIFO_SIZE, |
| 1858 | }, |
| 1859 | .dev = &memory, |
| 1860 | .fifo_size = ISO_FIFO_SIZE, |
| 1861 | .bEndpointAddress = 4, |
| 1862 | .bmAttributes = USB_ENDPOINT_XFER_ISOC, |
| 1863 | .reg_udccs = &UDCCS4, |
| 1864 | .reg_ubcr = &UBCR4, |
| 1865 | .reg_uddr = &UDDR4, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1866 | }, |
| 1867 | .ep[5] = { |
| 1868 | .ep = { |
| 1869 | .name = "ep5in-int", |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1870 | .ops = &pxa25x_ep_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1871 | .maxpacket = INT_FIFO_SIZE, |
| 1872 | }, |
| 1873 | .dev = &memory, |
| 1874 | .fifo_size = INT_FIFO_SIZE, |
| 1875 | .bEndpointAddress = USB_DIR_IN | 5, |
| 1876 | .bmAttributes = USB_ENDPOINT_XFER_INT, |
| 1877 | .reg_udccs = &UDCCS5, |
| 1878 | .reg_uddr = &UDDR5, |
| 1879 | }, |
| 1880 | |
| 1881 | /* second group of endpoints */ |
| 1882 | .ep[6] = { |
| 1883 | .ep = { |
| 1884 | .name = "ep6in-bulk", |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1885 | .ops = &pxa25x_ep_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1886 | .maxpacket = BULK_FIFO_SIZE, |
| 1887 | }, |
| 1888 | .dev = &memory, |
| 1889 | .fifo_size = BULK_FIFO_SIZE, |
| 1890 | .bEndpointAddress = USB_DIR_IN | 6, |
| 1891 | .bmAttributes = USB_ENDPOINT_XFER_BULK, |
| 1892 | .reg_udccs = &UDCCS6, |
| 1893 | .reg_uddr = &UDDR6, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1894 | }, |
| 1895 | .ep[7] = { |
| 1896 | .ep = { |
| 1897 | .name = "ep7out-bulk", |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1898 | .ops = &pxa25x_ep_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1899 | .maxpacket = BULK_FIFO_SIZE, |
| 1900 | }, |
| 1901 | .dev = &memory, |
| 1902 | .fifo_size = BULK_FIFO_SIZE, |
| 1903 | .bEndpointAddress = 7, |
| 1904 | .bmAttributes = USB_ENDPOINT_XFER_BULK, |
| 1905 | .reg_udccs = &UDCCS7, |
| 1906 | .reg_ubcr = &UBCR7, |
| 1907 | .reg_uddr = &UDDR7, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | }, |
| 1909 | .ep[8] = { |
| 1910 | .ep = { |
| 1911 | .name = "ep8in-iso", |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1912 | .ops = &pxa25x_ep_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1913 | .maxpacket = ISO_FIFO_SIZE, |
| 1914 | }, |
| 1915 | .dev = &memory, |
| 1916 | .fifo_size = ISO_FIFO_SIZE, |
| 1917 | .bEndpointAddress = USB_DIR_IN | 8, |
| 1918 | .bmAttributes = USB_ENDPOINT_XFER_ISOC, |
| 1919 | .reg_udccs = &UDCCS8, |
| 1920 | .reg_uddr = &UDDR8, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1921 | }, |
| 1922 | .ep[9] = { |
| 1923 | .ep = { |
| 1924 | .name = "ep9out-iso", |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1925 | .ops = &pxa25x_ep_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1926 | .maxpacket = ISO_FIFO_SIZE, |
| 1927 | }, |
| 1928 | .dev = &memory, |
| 1929 | .fifo_size = ISO_FIFO_SIZE, |
| 1930 | .bEndpointAddress = 9, |
| 1931 | .bmAttributes = USB_ENDPOINT_XFER_ISOC, |
| 1932 | .reg_udccs = &UDCCS9, |
| 1933 | .reg_ubcr = &UBCR9, |
| 1934 | .reg_uddr = &UDDR9, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1935 | }, |
| 1936 | .ep[10] = { |
| 1937 | .ep = { |
| 1938 | .name = "ep10in-int", |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1939 | .ops = &pxa25x_ep_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1940 | .maxpacket = INT_FIFO_SIZE, |
| 1941 | }, |
| 1942 | .dev = &memory, |
| 1943 | .fifo_size = INT_FIFO_SIZE, |
| 1944 | .bEndpointAddress = USB_DIR_IN | 10, |
| 1945 | .bmAttributes = USB_ENDPOINT_XFER_INT, |
| 1946 | .reg_udccs = &UDCCS10, |
| 1947 | .reg_uddr = &UDDR10, |
| 1948 | }, |
| 1949 | |
| 1950 | /* third group of endpoints */ |
| 1951 | .ep[11] = { |
| 1952 | .ep = { |
| 1953 | .name = "ep11in-bulk", |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1954 | .ops = &pxa25x_ep_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1955 | .maxpacket = BULK_FIFO_SIZE, |
| 1956 | }, |
| 1957 | .dev = &memory, |
| 1958 | .fifo_size = BULK_FIFO_SIZE, |
| 1959 | .bEndpointAddress = USB_DIR_IN | 11, |
| 1960 | .bmAttributes = USB_ENDPOINT_XFER_BULK, |
| 1961 | .reg_udccs = &UDCCS11, |
| 1962 | .reg_uddr = &UDDR11, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1963 | }, |
| 1964 | .ep[12] = { |
| 1965 | .ep = { |
| 1966 | .name = "ep12out-bulk", |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1967 | .ops = &pxa25x_ep_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1968 | .maxpacket = BULK_FIFO_SIZE, |
| 1969 | }, |
| 1970 | .dev = &memory, |
| 1971 | .fifo_size = BULK_FIFO_SIZE, |
| 1972 | .bEndpointAddress = 12, |
| 1973 | .bmAttributes = USB_ENDPOINT_XFER_BULK, |
| 1974 | .reg_udccs = &UDCCS12, |
| 1975 | .reg_ubcr = &UBCR12, |
| 1976 | .reg_uddr = &UDDR12, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1977 | }, |
| 1978 | .ep[13] = { |
| 1979 | .ep = { |
| 1980 | .name = "ep13in-iso", |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1981 | .ops = &pxa25x_ep_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1982 | .maxpacket = ISO_FIFO_SIZE, |
| 1983 | }, |
| 1984 | .dev = &memory, |
| 1985 | .fifo_size = ISO_FIFO_SIZE, |
| 1986 | .bEndpointAddress = USB_DIR_IN | 13, |
| 1987 | .bmAttributes = USB_ENDPOINT_XFER_ISOC, |
| 1988 | .reg_udccs = &UDCCS13, |
| 1989 | .reg_uddr = &UDDR13, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1990 | }, |
| 1991 | .ep[14] = { |
| 1992 | .ep = { |
| 1993 | .name = "ep14out-iso", |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 1994 | .ops = &pxa25x_ep_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | .maxpacket = ISO_FIFO_SIZE, |
| 1996 | }, |
| 1997 | .dev = &memory, |
| 1998 | .fifo_size = ISO_FIFO_SIZE, |
| 1999 | .bEndpointAddress = 14, |
| 2000 | .bmAttributes = USB_ENDPOINT_XFER_ISOC, |
| 2001 | .reg_udccs = &UDCCS14, |
| 2002 | .reg_ubcr = &UBCR14, |
| 2003 | .reg_uddr = &UDDR14, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2004 | }, |
| 2005 | .ep[15] = { |
| 2006 | .ep = { |
| 2007 | .name = "ep15in-int", |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 2008 | .ops = &pxa25x_ep_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2009 | .maxpacket = INT_FIFO_SIZE, |
| 2010 | }, |
| 2011 | .dev = &memory, |
| 2012 | .fifo_size = INT_FIFO_SIZE, |
| 2013 | .bEndpointAddress = USB_DIR_IN | 15, |
| 2014 | .bmAttributes = USB_ENDPOINT_XFER_INT, |
| 2015 | .reg_udccs = &UDCCS15, |
| 2016 | .reg_uddr = &UDDR15, |
| 2017 | }, |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 2018 | #endif /* !CONFIG_USB_PXA25X_SMALL */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2019 | }; |
| 2020 | |
| 2021 | #define CP15R0_VENDOR_MASK 0xffffe000 |
| 2022 | |
| 2023 | #if defined(CONFIG_ARCH_PXA) |
| 2024 | #define CP15R0_XSCALE_VALUE 0x69052000 /* intel/arm/xscale */ |
| 2025 | |
| 2026 | #elif defined(CONFIG_ARCH_IXP4XX) |
| 2027 | #define CP15R0_XSCALE_VALUE 0x69054000 /* intel/arm/ixp4xx */ |
| 2028 | |
| 2029 | #endif |
| 2030 | |
| 2031 | #define CP15R0_PROD_MASK 0x000003f0 |
| 2032 | #define PXA25x 0x00000100 /* and PXA26x */ |
| 2033 | #define PXA210 0x00000120 |
| 2034 | |
| 2035 | #define CP15R0_REV_MASK 0x0000000f |
| 2036 | |
| 2037 | #define CP15R0_PRODREV_MASK (CP15R0_PROD_MASK | CP15R0_REV_MASK) |
| 2038 | |
| 2039 | #define PXA255_A0 0x00000106 /* or PXA260_B1 */ |
| 2040 | #define PXA250_C0 0x00000105 /* or PXA26x_B0 */ |
| 2041 | #define PXA250_B2 0x00000104 |
| 2042 | #define PXA250_B1 0x00000103 /* or PXA260_A0 */ |
| 2043 | #define PXA250_B0 0x00000102 |
| 2044 | #define PXA250_A1 0x00000101 |
| 2045 | #define PXA250_A0 0x00000100 |
| 2046 | |
| 2047 | #define PXA210_C0 0x00000125 |
| 2048 | #define PXA210_B2 0x00000124 |
| 2049 | #define PXA210_B1 0x00000123 |
| 2050 | #define PXA210_B0 0x00000122 |
| 2051 | #define IXP425_A0 0x000001c1 |
David Brownell | 827982c | 2006-11-20 11:38:57 -0800 | [diff] [blame] | 2052 | #define IXP425_B0 0x000001f1 |
Milan Svoboda | 043ea18 | 2006-05-29 03:34:00 -0700 | [diff] [blame] | 2053 | #define IXP465_AD 0x00000200 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2054 | |
| 2055 | /* |
David Brownell | 34ebcd2 | 2007-02-24 12:23:52 -0800 | [diff] [blame] | 2056 | * probe - binds to the platform device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2057 | */ |
Johan Hovold | 8233729 | 2013-09-23 16:27:30 +0200 | [diff] [blame] | 2058 | static int pxa25x_udc_probe(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2059 | { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 2060 | struct pxa25x_udc *dev = &memory; |
Dmitry Eremin-Solenikov | a8ecc86 | 2011-02-14 15:33:19 +0300 | [diff] [blame] | 2061 | int retval, irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2062 | u32 chiprev; |
| 2063 | |
Fabio Porcedda | 52f7a82 | 2013-01-09 12:15:28 +0100 | [diff] [blame] | 2064 | pr_info("%s: version %s\n", driver_name, DRIVER_VERSION); |
| 2065 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2066 | /* insist on Intel/ARM/XScale */ |
| 2067 | asm("mrc%? p15, 0, %0, c0, c0" : "=r" (chiprev)); |
| 2068 | if ((chiprev & CP15R0_VENDOR_MASK) != CP15R0_XSCALE_VALUE) { |
David Brownell | 0027492 | 2007-11-19 12:58:36 -0800 | [diff] [blame] | 2069 | pr_err("%s: not XScale!\n", driver_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2070 | return -ENODEV; |
| 2071 | } |
| 2072 | |
| 2073 | /* trigger chiprev-specific logic */ |
| 2074 | switch (chiprev & CP15R0_PRODREV_MASK) { |
| 2075 | #if defined(CONFIG_ARCH_PXA) |
| 2076 | case PXA255_A0: |
| 2077 | dev->has_cfr = 1; |
| 2078 | break; |
| 2079 | case PXA250_A0: |
| 2080 | case PXA250_A1: |
| 2081 | /* A0/A1 "not released"; ep 13, 15 unusable */ |
| 2082 | /* fall through */ |
| 2083 | case PXA250_B2: case PXA210_B2: |
| 2084 | case PXA250_B1: case PXA210_B1: |
| 2085 | case PXA250_B0: case PXA210_B0: |
David Brownell | ad8c623 | 2007-06-30 06:30:04 -0700 | [diff] [blame] | 2086 | /* OUT-DMA is broken ... */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2087 | /* fall through */ |
| 2088 | case PXA250_C0: case PXA210_C0: |
| 2089 | break; |
| 2090 | #elif defined(CONFIG_ARCH_IXP4XX) |
| 2091 | case IXP425_A0: |
David Brownell | 827982c | 2006-11-20 11:38:57 -0800 | [diff] [blame] | 2092 | case IXP425_B0: |
Milan Svoboda | 043ea18 | 2006-05-29 03:34:00 -0700 | [diff] [blame] | 2093 | case IXP465_AD: |
| 2094 | dev->has_cfr = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2095 | break; |
| 2096 | #endif |
| 2097 | default: |
David Brownell | 0027492 | 2007-11-19 12:58:36 -0800 | [diff] [blame] | 2098 | pr_err("%s: unrecognized processor: %08x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2099 | driver_name, chiprev); |
| 2100 | /* iop3xx, ixp4xx, ... */ |
| 2101 | return -ENODEV; |
| 2102 | } |
| 2103 | |
David Brownell | 34ebcd2 | 2007-02-24 12:23:52 -0800 | [diff] [blame] | 2104 | irq = platform_get_irq(pdev, 0); |
| 2105 | if (irq < 0) |
| 2106 | return -ENODEV; |
| 2107 | |
Himangi Saraogi | c63d222 | 2014-06-22 12:47:51 +0530 | [diff] [blame] | 2108 | dev->clk = devm_clk_get(&pdev->dev, NULL); |
| 2109 | if (IS_ERR(dev->clk)) |
| 2110 | return PTR_ERR(dev->clk); |
Russell King | 6549e6c | 2007-08-20 10:33:35 +0100 | [diff] [blame] | 2111 | |
David Brownell | ad8c623 | 2007-06-30 06:30:04 -0700 | [diff] [blame] | 2112 | pr_debug("%s: IRQ %d%s%s\n", driver_name, irq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2113 | dev->has_cfr ? "" : " (!cfr)", |
David Brownell | ad8c623 | 2007-06-30 06:30:04 -0700 | [diff] [blame] | 2114 | SIZE_STR "(pio)" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2115 | ); |
| 2116 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2117 | /* other non-static parts of init */ |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 2118 | dev->dev = &pdev->dev; |
Jingoo Han | e01ee9f | 2013-07-30 17:00:51 +0900 | [diff] [blame] | 2119 | dev->mach = dev_get_platdata(&pdev->dev); |
Milan Svoboda | 9068a4c | 2007-06-30 06:25:35 -0700 | [diff] [blame] | 2120 | |
Himangi Saraogi | c63d222 | 2014-06-22 12:47:51 +0530 | [diff] [blame] | 2121 | dev->transceiver = devm_usb_get_phy(&pdev->dev, USB_PHY_TYPE_USB2); |
Philipp Zabel | ab26d20 | 2009-07-01 03:46:25 -0700 | [diff] [blame] | 2122 | |
Philipp Zabel | 56a075d | 2009-07-01 03:42:45 -0700 | [diff] [blame] | 2123 | if (gpio_is_valid(dev->mach->gpio_pullup)) { |
Himangi Saraogi | c63d222 | 2014-06-22 12:47:51 +0530 | [diff] [blame] | 2124 | retval = devm_gpio_request(&pdev->dev, dev->mach->gpio_pullup, |
| 2125 | "pca25x_udc GPIO PULLUP"); |
| 2126 | if (retval) { |
Milan Svoboda | 9068a4c | 2007-06-30 06:25:35 -0700 | [diff] [blame] | 2127 | dev_dbg(&pdev->dev, |
| 2128 | "can't get pullup gpio %d, err: %d\n", |
| 2129 | dev->mach->gpio_pullup, retval); |
Himangi Saraogi | c63d222 | 2014-06-22 12:47:51 +0530 | [diff] [blame] | 2130 | goto err; |
Milan Svoboda | 9068a4c | 2007-06-30 06:25:35 -0700 | [diff] [blame] | 2131 | } |
| 2132 | gpio_direction_output(dev->mach->gpio_pullup, 0); |
| 2133 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2134 | |
| 2135 | init_timer(&dev->timer); |
| 2136 | dev->timer.function = udc_watchdog; |
| 2137 | dev->timer.data = (unsigned long) dev; |
| 2138 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2139 | the_controller = dev; |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 2140 | platform_set_drvdata(pdev, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2141 | |
| 2142 | udc_disable(dev); |
| 2143 | udc_reinit(dev); |
| 2144 | |
Dmitry Eremin-Solenikov | a8ecc86 | 2011-02-14 15:33:19 +0300 | [diff] [blame] | 2145 | dev->vbus = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2146 | |
| 2147 | /* irq setup after old hardware state is cleaned up */ |
Himangi Saraogi | c63d222 | 2014-06-22 12:47:51 +0530 | [diff] [blame] | 2148 | retval = devm_request_irq(&pdev->dev, irq, pxa25x_udc_irq, 0, |
| 2149 | driver_name, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2150 | if (retval != 0) { |
David Brownell | 0027492 | 2007-11-19 12:58:36 -0800 | [diff] [blame] | 2151 | pr_err("%s: can't get irq %d, err %d\n", |
David Brownell | 34ebcd2 | 2007-02-24 12:23:52 -0800 | [diff] [blame] | 2152 | driver_name, irq, retval); |
Himangi Saraogi | c63d222 | 2014-06-22 12:47:51 +0530 | [diff] [blame] | 2153 | goto err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2154 | } |
| 2155 | dev->got_irq = 1; |
| 2156 | |
| 2157 | #ifdef CONFIG_ARCH_LUBBOCK |
| 2158 | if (machine_is_lubbock()) { |
Himangi Saraogi | c63d222 | 2014-06-22 12:47:51 +0530 | [diff] [blame] | 2159 | retval = devm_request_irq(&pdev->dev, LUBBOCK_USB_DISC_IRQ, |
| 2160 | lubbock_vbus_irq, 0, driver_name, |
| 2161 | dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2162 | if (retval != 0) { |
David Brownell | 0027492 | 2007-11-19 12:58:36 -0800 | [diff] [blame] | 2163 | pr_err("%s: can't get irq %i, err %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2164 | driver_name, LUBBOCK_USB_DISC_IRQ, retval); |
Himangi Saraogi | c63d222 | 2014-06-22 12:47:51 +0530 | [diff] [blame] | 2165 | goto err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2166 | } |
Himangi Saraogi | c63d222 | 2014-06-22 12:47:51 +0530 | [diff] [blame] | 2167 | retval = devm_request_irq(&pdev->dev, LUBBOCK_USB_IRQ, |
| 2168 | lubbock_vbus_irq, 0, driver_name, |
| 2169 | dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2170 | if (retval != 0) { |
David Brownell | 0027492 | 2007-11-19 12:58:36 -0800 | [diff] [blame] | 2171 | pr_err("%s: can't get irq %i, err %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2172 | driver_name, LUBBOCK_USB_IRQ, retval); |
Himangi Saraogi | c63d222 | 2014-06-22 12:47:51 +0530 | [diff] [blame] | 2173 | goto err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2174 | } |
David Brownell | b2bbb20 | 2006-06-29 12:25:39 -0700 | [diff] [blame] | 2175 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2176 | #endif |
Dmitry Baryshkov | 040fa1b | 2007-12-30 11:56:27 -0800 | [diff] [blame] | 2177 | create_debug_files(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2178 | |
Sebastian Andrzej Siewior | 0f91349 | 2011-06-28 16:33:47 +0300 | [diff] [blame] | 2179 | retval = usb_add_gadget_udc(&pdev->dev, &dev->gadget); |
| 2180 | if (!retval) |
| 2181 | return retval; |
Russell King | 6549e6c | 2007-08-20 10:33:35 +0100 | [diff] [blame] | 2182 | |
Sebastian Andrzej Siewior | 0f91349 | 2011-06-28 16:33:47 +0300 | [diff] [blame] | 2183 | remove_debug_files(dev); |
Himangi Saraogi | c63d222 | 2014-06-22 12:47:51 +0530 | [diff] [blame] | 2184 | err: |
| 2185 | if (!IS_ERR_OR_NULL(dev->transceiver)) |
Philipp Zabel | ab26d20 | 2009-07-01 03:46:25 -0700 | [diff] [blame] | 2186 | dev->transceiver = NULL; |
Russell King | 6549e6c | 2007-08-20 10:33:35 +0100 | [diff] [blame] | 2187 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2188 | } |
David Brownell | 9198769 | 2005-05-07 13:20:19 -0700 | [diff] [blame] | 2189 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 2190 | static void pxa25x_udc_shutdown(struct platform_device *_dev) |
David Brownell | 9198769 | 2005-05-07 13:20:19 -0700 | [diff] [blame] | 2191 | { |
| 2192 | pullup_off(); |
| 2193 | } |
| 2194 | |
Johan Hovold | 8233729 | 2013-09-23 16:27:30 +0200 | [diff] [blame] | 2195 | static int pxa25x_udc_remove(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2196 | { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 2197 | struct pxa25x_udc *dev = platform_get_drvdata(pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2198 | |
David Brownell | 6bea476 | 2006-12-05 03:15:33 -0800 | [diff] [blame] | 2199 | if (dev->driver) |
| 2200 | return -EBUSY; |
| 2201 | |
Felipe Balbi | 9992a99 | 2013-02-25 21:15:41 +0200 | [diff] [blame] | 2202 | usb_del_gadget_udc(&dev->gadget); |
Dmitry Baryshkov | 64cc2dd | 2008-02-22 17:17:19 -0800 | [diff] [blame] | 2203 | dev->pullup = 0; |
| 2204 | pullup(dev); |
| 2205 | |
Dmitry Baryshkov | 040fa1b | 2007-12-30 11:56:27 -0800 | [diff] [blame] | 2206 | remove_debug_files(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2207 | |
Himangi Saraogi | c63d222 | 2014-06-22 12:47:51 +0530 | [diff] [blame] | 2208 | if (!IS_ERR_OR_NULL(dev->transceiver)) |
Philipp Zabel | ab26d20 | 2009-07-01 03:46:25 -0700 | [diff] [blame] | 2209 | dev->transceiver = NULL; |
Philipp Zabel | ab26d20 | 2009-07-01 03:46:25 -0700 | [diff] [blame] | 2210 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | the_controller = NULL; |
| 2212 | return 0; |
| 2213 | } |
| 2214 | |
| 2215 | /*-------------------------------------------------------------------------*/ |
| 2216 | |
| 2217 | #ifdef CONFIG_PM |
| 2218 | |
| 2219 | /* USB suspend (controlled by the host) and system suspend (controlled |
| 2220 | * by the PXA) don't necessarily work well together. If USB is active, |
| 2221 | * the 48 MHz clock is required; so the system can't enter 33 MHz idle |
| 2222 | * mode, or any deeper PM saving state. |
| 2223 | * |
| 2224 | * For now, we punt and forcibly disconnect from the USB host when PXA |
| 2225 | * enters any suspend state. While we're disconnected, we always disable |
David Brownell | 34ebcd2 | 2007-02-24 12:23:52 -0800 | [diff] [blame] | 2226 | * the 48MHz USB clock ... allowing PXA sleep and/or 33 MHz idle states. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2227 | * Boards without software pullup control shouldn't use those states. |
| 2228 | * VBUS IRQs should probably be ignored so that the PXA device just acts |
| 2229 | * "dead" to USB hosts until system resume. |
| 2230 | */ |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 2231 | static int pxa25x_udc_suspend(struct platform_device *dev, pm_message_t state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2232 | { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 2233 | struct pxa25x_udc *udc = platform_get_drvdata(dev); |
Dmitry Baryshkov | 64cc2dd | 2008-02-22 17:17:19 -0800 | [diff] [blame] | 2234 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2235 | |
Philipp Zabel | 56a075d | 2009-07-01 03:42:45 -0700 | [diff] [blame] | 2236 | if (!gpio_is_valid(udc->mach->gpio_pullup) && !udc->mach->udc_command) |
Arjan van de Ven | b6c6393 | 2008-07-25 01:45:52 -0700 | [diff] [blame] | 2237 | WARNING("USB host won't detect disconnect!\n"); |
Dmitry Baryshkov | 64cc2dd | 2008-02-22 17:17:19 -0800 | [diff] [blame] | 2238 | udc->suspended = 1; |
| 2239 | |
| 2240 | local_irq_save(flags); |
| 2241 | pullup(udc); |
| 2242 | local_irq_restore(flags); |
Russell King | 9480e30 | 2005-10-28 09:52:56 -0700 | [diff] [blame] | 2243 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2244 | return 0; |
| 2245 | } |
| 2246 | |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 2247 | static int pxa25x_udc_resume(struct platform_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2248 | { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 2249 | struct pxa25x_udc *udc = platform_get_drvdata(dev); |
Dmitry Baryshkov | 64cc2dd | 2008-02-22 17:17:19 -0800 | [diff] [blame] | 2250 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2251 | |
Dmitry Baryshkov | 64cc2dd | 2008-02-22 17:17:19 -0800 | [diff] [blame] | 2252 | udc->suspended = 0; |
| 2253 | local_irq_save(flags); |
| 2254 | pullup(udc); |
| 2255 | local_irq_restore(flags); |
Russell King | 9480e30 | 2005-10-28 09:52:56 -0700 | [diff] [blame] | 2256 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2257 | return 0; |
| 2258 | } |
| 2259 | |
| 2260 | #else |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 2261 | #define pxa25x_udc_suspend NULL |
| 2262 | #define pxa25x_udc_resume NULL |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2263 | #endif |
| 2264 | |
| 2265 | /*-------------------------------------------------------------------------*/ |
| 2266 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 2267 | static struct platform_driver udc_driver = { |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 2268 | .shutdown = pxa25x_udc_shutdown, |
Johan Hovold | 8233729 | 2013-09-23 16:27:30 +0200 | [diff] [blame] | 2269 | .probe = pxa25x_udc_probe, |
| 2270 | .remove = pxa25x_udc_remove, |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 2271 | .suspend = pxa25x_udc_suspend, |
| 2272 | .resume = pxa25x_udc_resume, |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 2273 | .driver = { |
| 2274 | .owner = THIS_MODULE, |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 2275 | .name = "pxa25x-udc", |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 2276 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2277 | }; |
| 2278 | |
Johan Hovold | 8233729 | 2013-09-23 16:27:30 +0200 | [diff] [blame] | 2279 | module_platform_driver(udc_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2280 | |
| 2281 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 2282 | MODULE_AUTHOR("Frank Becker, Robert Schwebel, David Brownell"); |
| 2283 | MODULE_LICENSE("GPL"); |
Philipp Zabel | 7a85762 | 2008-06-22 23:36:39 +0100 | [diff] [blame] | 2284 | MODULE_ALIAS("platform:pxa25x-udc"); |