blob: c3f49fd83250e93f11cf636dccd5a1ac80ab0ce5 [file] [log] [blame]
David Brownellbae4bd82006-01-22 10:32:37 -08001/*
2 * at91_udc -- driver for at91-series USB peripheral controller
3 *
4 * Copyright (C) 2004 by Thomas Rathbone
5 * Copyright (C) 2005 by HP Labs
6 * Copyright (C) 2005 by David Brownell
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
David Brownellbae4bd82006-01-22 10:32:37 -080012 */
13
David Brownellf3db6e82008-01-05 13:21:43 -080014#undef VERBOSE_DEBUG
David Brownellbae4bd82006-01-22 10:32:37 -080015#undef PACKET_TRACE
16
David Brownellbae4bd82006-01-22 10:32:37 -080017#include <linux/kernel.h>
18#include <linux/module.h>
19#include <linux/platform_device.h>
20#include <linux/delay.h>
21#include <linux/ioport.h>
David Brownellbae4bd82006-01-22 10:32:37 -080022#include <linux/slab.h>
David Brownellbae4bd82006-01-22 10:32:37 -080023#include <linux/errno.h>
24#include <linux/init.h>
25#include <linux/list.h>
26#include <linux/interrupt.h>
27#include <linux/proc_fs.h>
Jean-Christophe PLAGNIOL-VILLARDeed39362011-05-29 10:01:48 +020028#include <linux/prefetch.h>
David Brownellbae4bd82006-01-22 10:32:37 -080029#include <linux/clk.h>
David Brownell5f848132006-12-16 15:34:53 -080030#include <linux/usb/ch9.h>
David Brownell9454a572007-10-04 18:05:17 -070031#include <linux/usb/gadget.h>
Jean-Christophe PLAGNIOL-VILLARDd1494a32012-01-28 22:35:36 +080032#include <linux/of.h>
33#include <linux/of_gpio.h>
Jean-Christophe PLAGNIOL-VILLARDbcd23602012-10-30 05:12:23 +080034#include <linux/platform_data/atmel.h>
David Brownellbae4bd82006-01-22 10:32:37 -080035
36#include <asm/byteorder.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010037#include <mach/hardware.h>
David Brownellbae4bd82006-01-22 10:32:37 -080038#include <asm/io.h>
39#include <asm/irq.h>
David Brownellf3db6e82008-01-05 13:21:43 -080040#include <asm/gpio.h>
David Brownellbae4bd82006-01-22 10:32:37 -080041
Russell Kinga09e64f2008-08-05 16:14:15 +010042#include <mach/cpu.h>
43#include <mach/at91sam9261_matrix.h>
Jean-Christophe PLAGNIOL-VILLARD4342d642011-11-27 23:15:50 +080044#include <mach/at91_matrix.h>
David Brownellbae4bd82006-01-22 10:32:37 -080045
46#include "at91_udc.h"
47
48
49/*
50 * This controller is simple and PIO-only. It's used in many AT91-series
David Brownell8b2e7662006-07-05 02:38:56 -070051 * full speed USB controllers, including the at91rm9200 (arm920T, with MMU),
52 * at91sam926x (arm926ejs, with MMU), and several no-mmu versions.
David Brownellbae4bd82006-01-22 10:32:37 -080053 *
Masanari Iidad7558142012-08-22 18:40:21 +090054 * This driver expects the board has been wired with two GPIOs supporting
David Brownellbae4bd82006-01-22 10:32:37 -080055 * a VBUS sensing IRQ, and a D+ pullup. (They may be omitted, but the
David Brownell8b2e7662006-07-05 02:38:56 -070056 * testing hasn't covered such cases.)
57 *
58 * The pullup is most important (so it's integrated on sam926x parts). It
David Brownellbae4bd82006-01-22 10:32:37 -080059 * provides software control over whether the host enumerates the device.
David Brownell8b2e7662006-07-05 02:38:56 -070060 *
David Brownellbae4bd82006-01-22 10:32:37 -080061 * The VBUS sensing helps during enumeration, and allows both USB clocks
62 * (and the transceiver) to stay gated off until they're necessary, saving
David Brownell8b2e7662006-07-05 02:38:56 -070063 * power. During USB suspend, the 48 MHz clock is gated off in hardware;
64 * it may also be gated off by software during some Linux sleep states.
David Brownellbae4bd82006-01-22 10:32:37 -080065 */
66
David Brownell8b2e7662006-07-05 02:38:56 -070067#define DRIVER_VERSION "3 May 2006"
David Brownellbae4bd82006-01-22 10:32:37 -080068
69static const char driver_name [] = "at91_udc";
70static const char ep0name[] = "ep0";
71
Ryan Mallon40372422010-07-13 05:09:16 +010072#define VBUS_POLL_TIMEOUT msecs_to_jiffies(1000)
David Brownellbae4bd82006-01-22 10:32:37 -080073
Harro Haan4f4c5e32010-03-01 18:01:56 +010074#define at91_udp_read(udc, reg) \
75 __raw_readl((udc)->udp_baseaddr + (reg))
76#define at91_udp_write(udc, reg, val) \
77 __raw_writel((val), (udc)->udp_baseaddr + (reg))
David Brownellbae4bd82006-01-22 10:32:37 -080078
79/*-------------------------------------------------------------------------*/
80
81#ifdef CONFIG_USB_GADGET_DEBUG_FILES
82
83#include <linux/seq_file.h>
84
85static const char debug_filename[] = "driver/udc";
86
87#define FOURBITS "%s%s%s%s"
88#define EIGHTBITS FOURBITS FOURBITS
89
90static void proc_ep_show(struct seq_file *s, struct at91_ep *ep)
91{
92 static char *types[] = {
93 "control", "out-iso", "out-bulk", "out-int",
94 "BOGUS", "in-iso", "in-bulk", "in-int"};
95
96 u32 csr;
97 struct at91_request *req;
98 unsigned long flags;
Harro Haan4f4c5e32010-03-01 18:01:56 +010099 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800100
Harro Haan4f4c5e32010-03-01 18:01:56 +0100101 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800102
103 csr = __raw_readl(ep->creg);
104
105 /* NOTE: not collecting per-endpoint irq statistics... */
106
107 seq_printf(s, "\n");
108 seq_printf(s, "%s, maxpacket %d %s%s %s%s\n",
109 ep->ep.name, ep->ep.maxpacket,
110 ep->is_in ? "in" : "out",
111 ep->is_iso ? " iso" : "",
112 ep->is_pingpong
113 ? (ep->fifo_bank ? "pong" : "ping")
114 : "",
115 ep->stopped ? " stopped" : "");
116 seq_printf(s, "csr %08x rxbytes=%d %s %s %s" EIGHTBITS "\n",
117 csr,
118 (csr & 0x07ff0000) >> 16,
119 (csr & (1 << 15)) ? "enabled" : "disabled",
120 (csr & (1 << 11)) ? "DATA1" : "DATA0",
121 types[(csr & 0x700) >> 8],
122
123 /* iff type is control then print current direction */
124 (!(csr & 0x700))
125 ? ((csr & (1 << 7)) ? " IN" : " OUT")
126 : "",
127 (csr & (1 << 6)) ? " rxdatabk1" : "",
128 (csr & (1 << 5)) ? " forcestall" : "",
129 (csr & (1 << 4)) ? " txpktrdy" : "",
130
131 (csr & (1 << 3)) ? " stallsent" : "",
132 (csr & (1 << 2)) ? " rxsetup" : "",
133 (csr & (1 << 1)) ? " rxdatabk0" : "",
134 (csr & (1 << 0)) ? " txcomp" : "");
135 if (list_empty (&ep->queue))
136 seq_printf(s, "\t(queue empty)\n");
137
138 else list_for_each_entry (req, &ep->queue, queue) {
139 unsigned length = req->req.actual;
140
141 seq_printf(s, "\treq %p len %d/%d buf %p\n",
142 &req->req, length,
143 req->req.length, req->req.buf);
144 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100145 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800146}
147
148static void proc_irq_show(struct seq_file *s, const char *label, u32 mask)
149{
150 int i;
151
152 seq_printf(s, "%s %04x:%s%s" FOURBITS, label, mask,
153 (mask & (1 << 13)) ? " wakeup" : "",
154 (mask & (1 << 12)) ? " endbusres" : "",
155
156 (mask & (1 << 11)) ? " sofint" : "",
157 (mask & (1 << 10)) ? " extrsm" : "",
158 (mask & (1 << 9)) ? " rxrsm" : "",
159 (mask & (1 << 8)) ? " rxsusp" : "");
160 for (i = 0; i < 8; i++) {
161 if (mask & (1 << i))
162 seq_printf(s, " ep%d", i);
163 }
164 seq_printf(s, "\n");
165}
166
167static int proc_udc_show(struct seq_file *s, void *unused)
168{
169 struct at91_udc *udc = s->private;
170 struct at91_ep *ep;
171 u32 tmp;
172
173 seq_printf(s, "%s: version %s\n", driver_name, DRIVER_VERSION);
174
175 seq_printf(s, "vbus %s, pullup %s, %s powered%s, gadget %s\n\n",
176 udc->vbus ? "present" : "off",
177 udc->enabled
178 ? (udc->vbus ? "active" : "enabled")
179 : "disabled",
180 udc->selfpowered ? "self" : "VBUS",
181 udc->suspended ? ", suspended" : "",
182 udc->driver ? udc->driver->driver.name : "(none)");
183
184 /* don't access registers when interface isn't clocked */
185 if (!udc->clocked) {
186 seq_printf(s, "(not clocked)\n");
187 return 0;
188 }
189
Andrew Victorffd33262006-12-07 22:44:33 -0800190 tmp = at91_udp_read(udc, AT91_UDP_FRM_NUM);
David Brownellbae4bd82006-01-22 10:32:37 -0800191 seq_printf(s, "frame %05x:%s%s frame=%d\n", tmp,
192 (tmp & AT91_UDP_FRM_OK) ? " ok" : "",
193 (tmp & AT91_UDP_FRM_ERR) ? " err" : "",
194 (tmp & AT91_UDP_NUM));
195
Andrew Victorffd33262006-12-07 22:44:33 -0800196 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800197 seq_printf(s, "glbstate %02x:%s" FOURBITS "\n", tmp,
198 (tmp & AT91_UDP_RMWUPE) ? " rmwupe" : "",
199 (tmp & AT91_UDP_RSMINPR) ? " rsminpr" : "",
200 (tmp & AT91_UDP_ESR) ? " esr" : "",
201 (tmp & AT91_UDP_CONFG) ? " confg" : "",
202 (tmp & AT91_UDP_FADDEN) ? " fadden" : "");
203
Andrew Victorffd33262006-12-07 22:44:33 -0800204 tmp = at91_udp_read(udc, AT91_UDP_FADDR);
David Brownellbae4bd82006-01-22 10:32:37 -0800205 seq_printf(s, "faddr %03x:%s fadd=%d\n", tmp,
206 (tmp & AT91_UDP_FEN) ? " fen" : "",
207 (tmp & AT91_UDP_FADD));
208
Andrew Victorffd33262006-12-07 22:44:33 -0800209 proc_irq_show(s, "imr ", at91_udp_read(udc, AT91_UDP_IMR));
210 proc_irq_show(s, "isr ", at91_udp_read(udc, AT91_UDP_ISR));
David Brownellbae4bd82006-01-22 10:32:37 -0800211
212 if (udc->enabled && udc->vbus) {
213 proc_ep_show(s, &udc->ep[0]);
214 list_for_each_entry (ep, &udc->gadget.ep_list, ep.ep_list) {
Ido Shayevitz5a6506f2012-03-12 20:25:26 +0200215 if (ep->ep.desc)
David Brownellbae4bd82006-01-22 10:32:37 -0800216 proc_ep_show(s, ep);
217 }
218 }
219 return 0;
220}
221
222static int proc_udc_open(struct inode *inode, struct file *file)
223{
Al Virod9dda782013-03-31 18:16:14 -0400224 return single_open(file, proc_udc_show, PDE_DATA(inode));
David Brownellbae4bd82006-01-22 10:32:37 -0800225}
226
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300227static const struct file_operations proc_ops = {
Denis V. Lunevcdefa182008-04-29 01:02:19 -0700228 .owner = THIS_MODULE,
David Brownellbae4bd82006-01-22 10:32:37 -0800229 .open = proc_udc_open,
230 .read = seq_read,
231 .llseek = seq_lseek,
232 .release = single_release,
233};
234
235static void create_debug_file(struct at91_udc *udc)
236{
Denis V. Lunevcdefa182008-04-29 01:02:19 -0700237 udc->pde = proc_create_data(debug_filename, 0, NULL, &proc_ops, udc);
David Brownellbae4bd82006-01-22 10:32:37 -0800238}
239
240static void remove_debug_file(struct at91_udc *udc)
241{
242 if (udc->pde)
243 remove_proc_entry(debug_filename, NULL);
244}
245
246#else
247
248static inline void create_debug_file(struct at91_udc *udc) {}
249static inline void remove_debug_file(struct at91_udc *udc) {}
250
251#endif
252
253
254/*-------------------------------------------------------------------------*/
255
256static void done(struct at91_ep *ep, struct at91_request *req, int status)
257{
258 unsigned stopped = ep->stopped;
Andrew Victorffd33262006-12-07 22:44:33 -0800259 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800260
261 list_del_init(&req->queue);
262 if (req->req.status == -EINPROGRESS)
263 req->req.status = status;
264 else
265 status = req->req.status;
266 if (status && status != -ESHUTDOWN)
267 VDBG("%s done %p, status %d\n", ep->ep.name, req, status);
268
269 ep->stopped = 1;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100270 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -0800271 req->req.complete(&ep->ep, &req->req);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100272 spin_lock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -0800273 ep->stopped = stopped;
274
275 /* ep0 is always ready; other endpoints need a non-empty queue */
276 if (list_empty(&ep->queue) && ep->int_mask != (1 << 0))
Andrew Victorffd33262006-12-07 22:44:33 -0800277 at91_udp_write(udc, AT91_UDP_IDR, ep->int_mask);
David Brownellbae4bd82006-01-22 10:32:37 -0800278}
279
280/*-------------------------------------------------------------------------*/
281
282/* bits indicating OUT fifo has data ready */
283#define RX_DATA_READY (AT91_UDP_RX_DATA_BK0 | AT91_UDP_RX_DATA_BK1)
284
285/*
286 * Endpoint FIFO CSR bits have a mix of bits, making it unsafe to just write
287 * back most of the value you just read (because of side effects, including
288 * bits that may change after reading and before writing).
289 *
290 * Except when changing a specific bit, always write values which:
291 * - clear SET_FX bits (setting them could change something)
292 * - set CLR_FX bits (clearing them could change something)
293 *
294 * There are also state bits like FORCESTALL, EPEDS, DIR, and EPTYPE
295 * that shouldn't normally be changed.
David Brownell8b2e7662006-07-05 02:38:56 -0700296 *
297 * NOTE at91sam9260 docs mention synch between UDPCK and MCK clock domains,
298 * implying a need to wait for one write to complete (test relevant bits)
299 * before starting the next write. This shouldn't be an issue given how
300 * infrequently we write, except maybe for write-then-read idioms.
David Brownellbae4bd82006-01-22 10:32:37 -0800301 */
302#define SET_FX (AT91_UDP_TXPKTRDY)
David Brownell8b2e7662006-07-05 02:38:56 -0700303#define CLR_FX (RX_DATA_READY | AT91_UDP_RXSETUP \
304 | AT91_UDP_STALLSENT | AT91_UDP_TXCOMP)
David Brownellbae4bd82006-01-22 10:32:37 -0800305
306/* pull OUT packet data from the endpoint's fifo */
307static int read_fifo (struct at91_ep *ep, struct at91_request *req)
308{
309 u32 __iomem *creg = ep->creg;
310 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
311 u32 csr;
312 u8 *buf;
313 unsigned int count, bufferspace, is_done;
314
315 buf = req->req.buf + req->req.actual;
316 bufferspace = req->req.length - req->req.actual;
317
318 /*
319 * there might be nothing to read if ep_queue() calls us,
320 * or if we already emptied both pingpong buffers
321 */
322rescan:
323 csr = __raw_readl(creg);
324 if ((csr & RX_DATA_READY) == 0)
325 return 0;
326
327 count = (csr & AT91_UDP_RXBYTECNT) >> 16;
328 if (count > ep->ep.maxpacket)
329 count = ep->ep.maxpacket;
330 if (count > bufferspace) {
331 DBG("%s buffer overflow\n", ep->ep.name);
332 req->req.status = -EOVERFLOW;
333 count = bufferspace;
334 }
335 __raw_readsb(dreg, buf, count);
336
337 /* release and swap pingpong mem bank */
338 csr |= CLR_FX;
339 if (ep->is_pingpong) {
340 if (ep->fifo_bank == 0) {
341 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
342 ep->fifo_bank = 1;
343 } else {
344 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK1);
345 ep->fifo_bank = 0;
346 }
347 } else
348 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
349 __raw_writel(csr, creg);
350
351 req->req.actual += count;
352 is_done = (count < ep->ep.maxpacket);
353 if (count == bufferspace)
354 is_done = 1;
355
356 PACKET("%s %p out/%d%s\n", ep->ep.name, &req->req, count,
357 is_done ? " (done)" : "");
358
359 /*
360 * avoid extra trips through IRQ logic for packets already in
361 * the fifo ... maybe preventing an extra (expensive) OUT-NAK
362 */
363 if (is_done)
364 done(ep, req, 0);
365 else if (ep->is_pingpong) {
Harro Haan76225372010-03-01 17:54:55 +0100366 /*
367 * One dummy read to delay the code because of a HW glitch:
368 * CSR returns bad RXCOUNT when read too soon after updating
369 * RX_DATA_BK flags.
370 */
371 csr = __raw_readl(creg);
372
David Brownellbae4bd82006-01-22 10:32:37 -0800373 bufferspace -= count;
374 buf += count;
375 goto rescan;
376 }
377
378 return is_done;
379}
380
381/* load fifo for an IN packet */
382static int write_fifo(struct at91_ep *ep, struct at91_request *req)
383{
384 u32 __iomem *creg = ep->creg;
385 u32 csr = __raw_readl(creg);
386 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
387 unsigned total, count, is_last;
David Brownell3cf27232008-04-06 23:32:55 -0700388 u8 *buf;
David Brownellbae4bd82006-01-22 10:32:37 -0800389
390 /*
391 * TODO: allow for writing two packets to the fifo ... that'll
392 * reduce the amount of IN-NAKing, but probably won't affect
393 * throughput much. (Unlike preventing OUT-NAKing!)
394 */
395
396 /*
397 * If ep_queue() calls us, the queue is empty and possibly in
398 * odd states like TXCOMP not yet cleared (we do it, saving at
399 * least one IRQ) or the fifo not yet being free. Those aren't
400 * issues normally (IRQ handler fast path).
401 */
402 if (unlikely(csr & (AT91_UDP_TXCOMP | AT91_UDP_TXPKTRDY))) {
403 if (csr & AT91_UDP_TXCOMP) {
404 csr |= CLR_FX;
405 csr &= ~(SET_FX | AT91_UDP_TXCOMP);
406 __raw_writel(csr, creg);
407 csr = __raw_readl(creg);
408 }
409 if (csr & AT91_UDP_TXPKTRDY)
410 return 0;
411 }
412
David Brownell3cf27232008-04-06 23:32:55 -0700413 buf = req->req.buf + req->req.actual;
414 prefetch(buf);
David Brownellbae4bd82006-01-22 10:32:37 -0800415 total = req->req.length - req->req.actual;
416 if (ep->ep.maxpacket < total) {
417 count = ep->ep.maxpacket;
418 is_last = 0;
419 } else {
420 count = total;
421 is_last = (count < ep->ep.maxpacket) || !req->req.zero;
422 }
423
424 /*
425 * Write the packet, maybe it's a ZLP.
426 *
427 * NOTE: incrementing req->actual before we receive the ACK means
428 * gadget driver IN bytecounts can be wrong in fault cases. That's
429 * fixable with PIO drivers like this one (save "count" here, and
430 * do the increment later on TX irq), but not for most DMA hardware.
431 *
432 * So all gadget drivers must accept that potential error. Some
433 * hardware supports precise fifo status reporting, letting them
434 * recover when the actual bytecount matters (e.g. for USB Test
435 * and Measurement Class devices).
436 */
David Brownell3cf27232008-04-06 23:32:55 -0700437 __raw_writesb(dreg, buf, count);
David Brownellbae4bd82006-01-22 10:32:37 -0800438 csr &= ~SET_FX;
439 csr |= CLR_FX | AT91_UDP_TXPKTRDY;
440 __raw_writel(csr, creg);
441 req->req.actual += count;
442
443 PACKET("%s %p in/%d%s\n", ep->ep.name, &req->req, count,
444 is_last ? " (done)" : "");
445 if (is_last)
446 done(ep, req, 0);
447 return is_last;
448}
449
450static void nuke(struct at91_ep *ep, int status)
451{
452 struct at91_request *req;
453
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200454 /* terminate any request in the queue */
David Brownellbae4bd82006-01-22 10:32:37 -0800455 ep->stopped = 1;
456 if (list_empty(&ep->queue))
457 return;
458
Harvey Harrison441b62c2008-03-03 16:08:34 -0800459 VDBG("%s %s\n", __func__, ep->ep.name);
David Brownellbae4bd82006-01-22 10:32:37 -0800460 while (!list_empty(&ep->queue)) {
461 req = list_entry(ep->queue.next, struct at91_request, queue);
462 done(ep, req, status);
463 }
464}
465
466/*-------------------------------------------------------------------------*/
467
David Brownell8b2e7662006-07-05 02:38:56 -0700468static int at91_ep_enable(struct usb_ep *_ep,
469 const struct usb_endpoint_descriptor *desc)
David Brownellbae4bd82006-01-22 10:32:37 -0800470{
471 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Wei Yongjun162ca3c2012-09-07 14:54:25 +0800472 struct at91_udc *udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800473 u16 maxpacket;
474 u32 tmp;
475 unsigned long flags;
476
477 if (!_ep || !ep
Sebastian Andrzej Siewiorf3bb8e62012-07-20 20:34:25 +0200478 || !desc || _ep->name == ep0name
David Brownellbae4bd82006-01-22 10:32:37 -0800479 || desc->bDescriptorType != USB_DT_ENDPOINT
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700480 || (maxpacket = usb_endpoint_maxp(desc)) == 0
David Brownellbae4bd82006-01-22 10:32:37 -0800481 || maxpacket > ep->maxpacket) {
482 DBG("bad ep or descriptor\n");
483 return -EINVAL;
484 }
485
Wei Yongjun162ca3c2012-09-07 14:54:25 +0800486 udc = ep->udc;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100487 if (!udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) {
David Brownellbae4bd82006-01-22 10:32:37 -0800488 DBG("bogus device state\n");
489 return -ESHUTDOWN;
490 }
491
Matthias Kaehlcke81c8d8d2009-04-15 22:28:02 +0200492 tmp = usb_endpoint_type(desc);
David Brownellbae4bd82006-01-22 10:32:37 -0800493 switch (tmp) {
494 case USB_ENDPOINT_XFER_CONTROL:
495 DBG("only one control endpoint\n");
496 return -EINVAL;
497 case USB_ENDPOINT_XFER_INT:
498 if (maxpacket > 64)
499 goto bogus_max;
500 break;
501 case USB_ENDPOINT_XFER_BULK:
502 switch (maxpacket) {
503 case 8:
504 case 16:
505 case 32:
506 case 64:
507 goto ok;
508 }
509bogus_max:
510 DBG("bogus maxpacket %d\n", maxpacket);
511 return -EINVAL;
512 case USB_ENDPOINT_XFER_ISOC:
513 if (!ep->is_pingpong) {
514 DBG("iso requires double buffering\n");
515 return -EINVAL;
516 }
517 break;
518 }
519
520ok:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100521 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800522
523 /* initialize endpoint to match this descriptor */
Matthias Kaehlcke81c8d8d2009-04-15 22:28:02 +0200524 ep->is_in = usb_endpoint_dir_in(desc);
David Brownellbae4bd82006-01-22 10:32:37 -0800525 ep->is_iso = (tmp == USB_ENDPOINT_XFER_ISOC);
526 ep->stopped = 0;
527 if (ep->is_in)
528 tmp |= 0x04;
529 tmp <<= 8;
530 tmp |= AT91_UDP_EPEDS;
531 __raw_writel(tmp, ep->creg);
532
David Brownellbae4bd82006-01-22 10:32:37 -0800533 ep->ep.maxpacket = maxpacket;
534
535 /*
536 * reset/init endpoint fifo. NOTE: leaves fifo_bank alone,
537 * since endpoint resets don't reset hw pingpong state.
538 */
Harro Haan4f4c5e32010-03-01 18:01:56 +0100539 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
540 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800541
Harro Haan4f4c5e32010-03-01 18:01:56 +0100542 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800543 return 0;
544}
545
546static int at91_ep_disable (struct usb_ep * _ep)
547{
548 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Andrew Victorffd33262006-12-07 22:44:33 -0800549 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800550 unsigned long flags;
551
552 if (ep == &ep->udc->ep[0])
553 return -EINVAL;
554
Harro Haan4f4c5e32010-03-01 18:01:56 +0100555 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800556
557 nuke(ep, -ESHUTDOWN);
558
559 /* restore the endpoint's pristine config */
Ido Shayevitzf9c56cd2012-02-08 13:56:48 +0200560 ep->ep.desc = NULL;
David Brownellbae4bd82006-01-22 10:32:37 -0800561 ep->ep.maxpacket = ep->maxpacket;
562
563 /* reset fifos and endpoint */
564 if (ep->udc->clocked) {
Andrew Victorffd33262006-12-07 22:44:33 -0800565 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
566 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800567 __raw_writel(0, ep->creg);
568 }
569
Harro Haan4f4c5e32010-03-01 18:01:56 +0100570 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800571 return 0;
572}
573
574/*
575 * this is a PIO-only driver, so there's nothing
576 * interesting for request or buffer allocation.
577 */
578
David Brownell8b2e7662006-07-05 02:38:56 -0700579static struct usb_request *
David Brownellf3db6e82008-01-05 13:21:43 -0800580at91_ep_alloc_request(struct usb_ep *_ep, gfp_t gfp_flags)
David Brownellbae4bd82006-01-22 10:32:37 -0800581{
582 struct at91_request *req;
583
Robert P. J. Daycd861282006-12-13 00:34:52 -0800584 req = kzalloc(sizeof (struct at91_request), gfp_flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800585 if (!req)
586 return NULL;
587
588 INIT_LIST_HEAD(&req->queue);
589 return &req->req;
590}
591
592static void at91_ep_free_request(struct usb_ep *_ep, struct usb_request *_req)
593{
594 struct at91_request *req;
595
596 req = container_of(_req, struct at91_request, req);
597 BUG_ON(!list_empty(&req->queue));
598 kfree(req);
599}
600
David Brownellbae4bd82006-01-22 10:32:37 -0800601static int at91_ep_queue(struct usb_ep *_ep,
602 struct usb_request *_req, gfp_t gfp_flags)
603{
604 struct at91_request *req;
605 struct at91_ep *ep;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100606 struct at91_udc *udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800607 int status;
608 unsigned long flags;
609
610 req = container_of(_req, struct at91_request, req);
611 ep = container_of(_ep, struct at91_ep, ep);
612
613 if (!_req || !_req->complete
614 || !_req->buf || !list_empty(&req->queue)) {
615 DBG("invalid request\n");
616 return -EINVAL;
617 }
618
Ido Shayevitz5a6506f2012-03-12 20:25:26 +0200619 if (!_ep || (!ep->ep.desc && ep->ep.name != ep0name)) {
David Brownellbae4bd82006-01-22 10:32:37 -0800620 DBG("invalid ep\n");
621 return -EINVAL;
622 }
623
Harro Haan4f4c5e32010-03-01 18:01:56 +0100624 udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800625
Harro Haan4f4c5e32010-03-01 18:01:56 +0100626 if (!udc || !udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) {
David Brownellbae4bd82006-01-22 10:32:37 -0800627 DBG("invalid device\n");
628 return -EINVAL;
629 }
630
631 _req->status = -EINPROGRESS;
632 _req->actual = 0;
633
Harro Haan4f4c5e32010-03-01 18:01:56 +0100634 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800635
636 /* try to kickstart any empty and idle queue */
637 if (list_empty(&ep->queue) && !ep->stopped) {
638 int is_ep0;
639
640 /*
641 * If this control request has a non-empty DATA stage, this
642 * will start that stage. It works just like a non-control
643 * request (until the status stage starts, maybe early).
644 *
645 * If the data stage is empty, then this starts a successful
646 * IN/STATUS stage. (Unsuccessful ones use set_halt.)
647 */
648 is_ep0 = (ep->ep.name == ep0name);
649 if (is_ep0) {
650 u32 tmp;
651
Harro Haan4f4c5e32010-03-01 18:01:56 +0100652 if (!udc->req_pending) {
David Brownellbae4bd82006-01-22 10:32:37 -0800653 status = -EINVAL;
654 goto done;
655 }
656
657 /*
658 * defer changing CONFG until after the gadget driver
659 * reconfigures the endpoints.
660 */
Harro Haan4f4c5e32010-03-01 18:01:56 +0100661 if (udc->wait_for_config_ack) {
662 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800663 tmp ^= AT91_UDP_CONFG;
664 VDBG("toggle config\n");
Harro Haan4f4c5e32010-03-01 18:01:56 +0100665 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -0800666 }
667 if (req->req.length == 0) {
668ep0_in_status:
669 PACKET("ep0 in/status\n");
670 status = 0;
671 tmp = __raw_readl(ep->creg);
672 tmp &= ~SET_FX;
673 tmp |= CLR_FX | AT91_UDP_TXPKTRDY;
674 __raw_writel(tmp, ep->creg);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100675 udc->req_pending = 0;
David Brownellbae4bd82006-01-22 10:32:37 -0800676 goto done;
677 }
678 }
679
680 if (ep->is_in)
681 status = write_fifo(ep, req);
682 else {
683 status = read_fifo(ep, req);
684
685 /* IN/STATUS stage is otherwise triggered by irq */
686 if (status && is_ep0)
687 goto ep0_in_status;
688 }
689 } else
690 status = 0;
691
692 if (req && !status) {
693 list_add_tail (&req->queue, &ep->queue);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100694 at91_udp_write(udc, AT91_UDP_IER, ep->int_mask);
David Brownellbae4bd82006-01-22 10:32:37 -0800695 }
696done:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100697 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800698 return (status < 0) ? status : 0;
699}
700
701static int at91_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
702{
Harro Haan4f4c5e32010-03-01 18:01:56 +0100703 struct at91_ep *ep;
David Brownellbae4bd82006-01-22 10:32:37 -0800704 struct at91_request *req;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100705 unsigned long flags;
706 struct at91_udc *udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800707
708 ep = container_of(_ep, struct at91_ep, ep);
709 if (!_ep || ep->ep.name == ep0name)
710 return -EINVAL;
711
Harro Haan4f4c5e32010-03-01 18:01:56 +0100712 udc = ep->udc;
713
714 spin_lock_irqsave(&udc->lock, flags);
715
David Brownellbae4bd82006-01-22 10:32:37 -0800716 /* make sure it's actually queued on this endpoint */
717 list_for_each_entry (req, &ep->queue, queue) {
718 if (&req->req == _req)
719 break;
720 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100721 if (&req->req != _req) {
722 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800723 return -EINVAL;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100724 }
David Brownellbae4bd82006-01-22 10:32:37 -0800725
726 done(ep, req, -ECONNRESET);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100727 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800728 return 0;
729}
730
731static int at91_ep_set_halt(struct usb_ep *_ep, int value)
732{
733 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Andrew Victorffd33262006-12-07 22:44:33 -0800734 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800735 u32 __iomem *creg;
736 u32 csr;
737 unsigned long flags;
738 int status = 0;
739
740 if (!_ep || ep->is_iso || !ep->udc->clocked)
741 return -EINVAL;
742
743 creg = ep->creg;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100744 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800745
746 csr = __raw_readl(creg);
747
748 /*
749 * fail with still-busy IN endpoints, ensuring correct sequencing
750 * of data tx then stall. note that the fifo rx bytecount isn't
751 * completely accurate as a tx bytecount.
752 */
753 if (ep->is_in && (!list_empty(&ep->queue) || (csr >> 16) != 0))
754 status = -EAGAIN;
755 else {
756 csr |= CLR_FX;
757 csr &= ~SET_FX;
758 if (value) {
759 csr |= AT91_UDP_FORCESTALL;
760 VDBG("halt %s\n", ep->ep.name);
761 } else {
Andrew Victorffd33262006-12-07 22:44:33 -0800762 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
763 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800764 csr &= ~AT91_UDP_FORCESTALL;
765 }
766 __raw_writel(csr, creg);
767 }
768
Harro Haan4f4c5e32010-03-01 18:01:56 +0100769 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800770 return status;
771}
772
David Brownell398acce2007-02-15 18:47:17 -0800773static const struct usb_ep_ops at91_ep_ops = {
David Brownellbae4bd82006-01-22 10:32:37 -0800774 .enable = at91_ep_enable,
775 .disable = at91_ep_disable,
776 .alloc_request = at91_ep_alloc_request,
777 .free_request = at91_ep_free_request,
David Brownellbae4bd82006-01-22 10:32:37 -0800778 .queue = at91_ep_queue,
779 .dequeue = at91_ep_dequeue,
780 .set_halt = at91_ep_set_halt,
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200781 /* there's only imprecise fifo status reporting */
David Brownellbae4bd82006-01-22 10:32:37 -0800782};
783
784/*-------------------------------------------------------------------------*/
785
786static int at91_get_frame(struct usb_gadget *gadget)
787{
Andrew Victorffd33262006-12-07 22:44:33 -0800788 struct at91_udc *udc = to_udc(gadget);
789
David Brownellbae4bd82006-01-22 10:32:37 -0800790 if (!to_udc(gadget)->clocked)
791 return -EINVAL;
Andrew Victorffd33262006-12-07 22:44:33 -0800792 return at91_udp_read(udc, AT91_UDP_FRM_NUM) & AT91_UDP_NUM;
David Brownellbae4bd82006-01-22 10:32:37 -0800793}
794
795static int at91_wakeup(struct usb_gadget *gadget)
796{
797 struct at91_udc *udc = to_udc(gadget);
798 u32 glbstate;
799 int status = -EINVAL;
800 unsigned long flags;
801
Harvey Harrison441b62c2008-03-03 16:08:34 -0800802 DBG("%s\n", __func__ );
Harro Haan4f4c5e32010-03-01 18:01:56 +0100803 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800804
805 if (!udc->clocked || !udc->suspended)
806 goto done;
807
808 /* NOTE: some "early versions" handle ESR differently ... */
809
Andrew Victorffd33262006-12-07 22:44:33 -0800810 glbstate = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800811 if (!(glbstate & AT91_UDP_ESR))
812 goto done;
813 glbstate |= AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -0800814 at91_udp_write(udc, AT91_UDP_GLB_STAT, glbstate);
David Brownellbae4bd82006-01-22 10:32:37 -0800815
816done:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100817 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800818 return status;
819}
820
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300821/* reinit == restore initial software state */
David Brownellbae4bd82006-01-22 10:32:37 -0800822static void udc_reinit(struct at91_udc *udc)
823{
824 u32 i;
825
826 INIT_LIST_HEAD(&udc->gadget.ep_list);
827 INIT_LIST_HEAD(&udc->gadget.ep0->ep_list);
828
829 for (i = 0; i < NUM_ENDPOINTS; i++) {
830 struct at91_ep *ep = &udc->ep[i];
831
832 if (i != 0)
833 list_add_tail(&ep->ep.ep_list, &udc->gadget.ep_list);
Ido Shayevitz5a6506f2012-03-12 20:25:26 +0200834 ep->ep.desc = NULL;
David Brownellbae4bd82006-01-22 10:32:37 -0800835 ep->stopped = 0;
836 ep->fifo_bank = 0;
Robert Baldygae117e742013-12-13 12:23:38 +0100837 usb_ep_set_maxpacket_limit(&ep->ep, ep->maxpacket);
Andrew Victorffd33262006-12-07 22:44:33 -0800838 ep->creg = (void __iomem *) udc->udp_baseaddr + AT91_UDP_CSR(i);
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200839 /* initialize one queue per endpoint */
David Brownellbae4bd82006-01-22 10:32:37 -0800840 INIT_LIST_HEAD(&ep->queue);
841 }
842}
843
844static void stop_activity(struct at91_udc *udc)
845{
846 struct usb_gadget_driver *driver = udc->driver;
847 int i;
848
849 if (udc->gadget.speed == USB_SPEED_UNKNOWN)
850 driver = NULL;
851 udc->gadget.speed = USB_SPEED_UNKNOWN;
David Brownell8b2e7662006-07-05 02:38:56 -0700852 udc->suspended = 0;
David Brownellbae4bd82006-01-22 10:32:37 -0800853
854 for (i = 0; i < NUM_ENDPOINTS; i++) {
855 struct at91_ep *ep = &udc->ep[i];
856 ep->stopped = 1;
857 nuke(ep, -ESHUTDOWN);
858 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100859 if (driver) {
860 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -0800861 driver->disconnect(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100862 spin_lock(&udc->lock);
863 }
David Brownellbae4bd82006-01-22 10:32:37 -0800864
865 udc_reinit(udc);
866}
867
868static void clk_on(struct at91_udc *udc)
869{
870 if (udc->clocked)
871 return;
872 udc->clocked = 1;
Boris BREZILLONc0aefc72013-08-02 10:37:34 +0200873
874 if (IS_ENABLED(CONFIG_COMMON_CLK)) {
875 clk_set_rate(udc->uclk, 48000000);
876 clk_prepare_enable(udc->uclk);
877 }
Boris BREZILLON76280832013-06-25 10:12:56 +0200878 clk_prepare_enable(udc->iclk);
879 clk_prepare_enable(udc->fclk);
David Brownellbae4bd82006-01-22 10:32:37 -0800880}
881
882static void clk_off(struct at91_udc *udc)
883{
884 if (!udc->clocked)
885 return;
886 udc->clocked = 0;
887 udc->gadget.speed = USB_SPEED_UNKNOWN;
Boris BREZILLON76280832013-06-25 10:12:56 +0200888 clk_disable_unprepare(udc->fclk);
889 clk_disable_unprepare(udc->iclk);
Boris BREZILLONc0aefc72013-08-02 10:37:34 +0200890 if (IS_ENABLED(CONFIG_COMMON_CLK))
891 clk_disable_unprepare(udc->uclk);
David Brownellbae4bd82006-01-22 10:32:37 -0800892}
893
894/*
895 * activate/deactivate link with host; minimize power usage for
896 * inactive links by cutting clocks and transceiver power.
897 */
898static void pullup(struct at91_udc *udc, int is_on)
899{
David Brownellf3db6e82008-01-05 13:21:43 -0800900 int active = !udc->board.pullup_active_low;
901
David Brownellbae4bd82006-01-22 10:32:37 -0800902 if (!udc->enabled || !udc->vbus)
903 is_on = 0;
904 DBG("%sactive\n", is_on ? "" : "in");
Andrew Victorffd33262006-12-07 22:44:33 -0800905
David Brownellbae4bd82006-01-22 10:32:37 -0800906 if (is_on) {
907 clk_on(udc);
Nicolas Ferre08cbc702007-12-13 15:52:58 -0800908 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXRSM);
Andrew Victorffd33262006-12-07 22:44:33 -0800909 at91_udp_write(udc, AT91_UDP_TXVC, 0);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800910 if (cpu_is_at91rm9200())
David Brownellf3db6e82008-01-05 13:21:43 -0800911 gpio_set_value(udc->board.pullup_pin, active);
sedji gaouaou61352662008-07-10 10:15:35 +0100912 else if (cpu_is_at91sam9260() || cpu_is_at91sam9263() || cpu_is_at91sam9g20()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800913 u32 txvc = at91_udp_read(udc, AT91_UDP_TXVC);
914
915 txvc |= AT91_UDP_TXVC_PUON;
916 at91_udp_write(udc, AT91_UDP_TXVC, txvc);
Hong Xu23f6d912009-09-25 12:24:12 +0200917 } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800918 u32 usbpucr;
919
Jean-Christophe PLAGNIOL-VILLARD4342d642011-11-27 23:15:50 +0800920 usbpucr = at91_matrix_read(AT91_MATRIX_USBPUCR);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800921 usbpucr |= AT91_MATRIX_USBPUCR_PUON;
Jean-Christophe PLAGNIOL-VILLARD4342d642011-11-27 23:15:50 +0800922 at91_matrix_write(AT91_MATRIX_USBPUCR, usbpucr);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800923 }
Andrew Victorffd33262006-12-07 22:44:33 -0800924 } else {
David Brownellbae4bd82006-01-22 10:32:37 -0800925 stop_activity(udc);
Nicolas Ferre08cbc702007-12-13 15:52:58 -0800926 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXRSM);
Andrew Victorffd33262006-12-07 22:44:33 -0800927 at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800928 if (cpu_is_at91rm9200())
David Brownellf3db6e82008-01-05 13:21:43 -0800929 gpio_set_value(udc->board.pullup_pin, !active);
sedji gaouaou61352662008-07-10 10:15:35 +0100930 else if (cpu_is_at91sam9260() || cpu_is_at91sam9263() || cpu_is_at91sam9g20()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800931 u32 txvc = at91_udp_read(udc, AT91_UDP_TXVC);
932
933 txvc &= ~AT91_UDP_TXVC_PUON;
934 at91_udp_write(udc, AT91_UDP_TXVC, txvc);
Hong Xu23f6d912009-09-25 12:24:12 +0200935 } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800936 u32 usbpucr;
937
Jean-Christophe PLAGNIOL-VILLARD4342d642011-11-27 23:15:50 +0800938 usbpucr = at91_matrix_read(AT91_MATRIX_USBPUCR);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800939 usbpucr &= ~AT91_MATRIX_USBPUCR_PUON;
Jean-Christophe PLAGNIOL-VILLARD4342d642011-11-27 23:15:50 +0800940 at91_matrix_write(AT91_MATRIX_USBPUCR, usbpucr);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800941 }
David Brownellbae4bd82006-01-22 10:32:37 -0800942 clk_off(udc);
David Brownellbae4bd82006-01-22 10:32:37 -0800943 }
944}
945
946/* vbus is here! turn everything on that's ready */
947static int at91_vbus_session(struct usb_gadget *gadget, int is_active)
948{
949 struct at91_udc *udc = to_udc(gadget);
950 unsigned long flags;
951
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200952 /* VDBG("vbus %s\n", is_active ? "on" : "off"); */
Harro Haan4f4c5e32010-03-01 18:01:56 +0100953 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800954 udc->vbus = (is_active != 0);
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -0800955 if (udc->driver)
956 pullup(udc, is_active);
957 else
958 pullup(udc, 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100959 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800960 return 0;
961}
962
963static int at91_pullup(struct usb_gadget *gadget, int is_on)
964{
965 struct at91_udc *udc = to_udc(gadget);
966 unsigned long flags;
967
Harro Haan4f4c5e32010-03-01 18:01:56 +0100968 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800969 udc->enabled = is_on = !!is_on;
970 pullup(udc, is_on);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100971 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800972 return 0;
973}
974
975static int at91_set_selfpowered(struct usb_gadget *gadget, int is_on)
976{
977 struct at91_udc *udc = to_udc(gadget);
978 unsigned long flags;
979
Harro Haan4f4c5e32010-03-01 18:01:56 +0100980 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800981 udc->selfpowered = (is_on != 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100982 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800983 return 0;
984}
985
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +0100986static int at91_start(struct usb_gadget *gadget,
987 struct usb_gadget_driver *driver);
988static int at91_stop(struct usb_gadget *gadget,
989 struct usb_gadget_driver *driver);
David Brownellbae4bd82006-01-22 10:32:37 -0800990static const struct usb_gadget_ops at91_udc_ops = {
991 .get_frame = at91_get_frame,
992 .wakeup = at91_wakeup,
993 .set_selfpowered = at91_set_selfpowered,
994 .vbus_session = at91_vbus_session,
995 .pullup = at91_pullup,
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +0100996 .udc_start = at91_start,
997 .udc_stop = at91_stop,
David Brownellbae4bd82006-01-22 10:32:37 -0800998
999 /*
1000 * VBUS-powered devices may also also want to support bigger
1001 * power budgets after an appropriate SET_CONFIGURATION.
1002 */
Robert Schwebel1a8060d2011-10-06 21:36:26 +02001003 /* .vbus_power = at91_vbus_power, */
David Brownellbae4bd82006-01-22 10:32:37 -08001004};
1005
1006/*-------------------------------------------------------------------------*/
1007
1008static int handle_ep(struct at91_ep *ep)
1009{
1010 struct at91_request *req;
1011 u32 __iomem *creg = ep->creg;
1012 u32 csr = __raw_readl(creg);
1013
1014 if (!list_empty(&ep->queue))
1015 req = list_entry(ep->queue.next,
1016 struct at91_request, queue);
1017 else
1018 req = NULL;
1019
1020 if (ep->is_in) {
1021 if (csr & (AT91_UDP_STALLSENT | AT91_UDP_TXCOMP)) {
1022 csr |= CLR_FX;
1023 csr &= ~(SET_FX | AT91_UDP_STALLSENT | AT91_UDP_TXCOMP);
1024 __raw_writel(csr, creg);
1025 }
1026 if (req)
1027 return write_fifo(ep, req);
1028
1029 } else {
1030 if (csr & AT91_UDP_STALLSENT) {
1031 /* STALLSENT bit == ISOERR */
1032 if (ep->is_iso && req)
1033 req->req.status = -EILSEQ;
1034 csr |= CLR_FX;
1035 csr &= ~(SET_FX | AT91_UDP_STALLSENT);
1036 __raw_writel(csr, creg);
1037 csr = __raw_readl(creg);
1038 }
1039 if (req && (csr & RX_DATA_READY))
1040 return read_fifo(ep, req);
1041 }
1042 return 0;
1043}
1044
1045union setup {
1046 u8 raw[8];
1047 struct usb_ctrlrequest r;
1048};
1049
1050static void handle_setup(struct at91_udc *udc, struct at91_ep *ep, u32 csr)
1051{
1052 u32 __iomem *creg = ep->creg;
1053 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
1054 unsigned rxcount, i = 0;
1055 u32 tmp;
1056 union setup pkt;
1057 int status = 0;
1058
1059 /* read and ack SETUP; hard-fail for bogus packets */
1060 rxcount = (csr & AT91_UDP_RXBYTECNT) >> 16;
1061 if (likely(rxcount == 8)) {
1062 while (rxcount--)
1063 pkt.raw[i++] = __raw_readb(dreg);
1064 if (pkt.r.bRequestType & USB_DIR_IN) {
1065 csr |= AT91_UDP_DIR;
1066 ep->is_in = 1;
1067 } else {
1068 csr &= ~AT91_UDP_DIR;
1069 ep->is_in = 0;
1070 }
1071 } else {
Robert Schwebel1a8060d2011-10-06 21:36:26 +02001072 /* REVISIT this happens sometimes under load; why?? */
David Brownellbae4bd82006-01-22 10:32:37 -08001073 ERR("SETUP len %d, csr %08x\n", rxcount, csr);
1074 status = -EINVAL;
1075 }
1076 csr |= CLR_FX;
1077 csr &= ~(SET_FX | AT91_UDP_RXSETUP);
1078 __raw_writel(csr, creg);
1079 udc->wait_for_addr_ack = 0;
1080 udc->wait_for_config_ack = 0;
1081 ep->stopped = 0;
1082 if (unlikely(status != 0))
1083 goto stall;
1084
1085#define w_index le16_to_cpu(pkt.r.wIndex)
1086#define w_value le16_to_cpu(pkt.r.wValue)
1087#define w_length le16_to_cpu(pkt.r.wLength)
1088
1089 VDBG("SETUP %02x.%02x v%04x i%04x l%04x\n",
1090 pkt.r.bRequestType, pkt.r.bRequest,
1091 w_value, w_index, w_length);
1092
1093 /*
1094 * A few standard requests get handled here, ones that touch
1095 * hardware ... notably for device and endpoint features.
1096 */
1097 udc->req_pending = 1;
1098 csr = __raw_readl(creg);
1099 csr |= CLR_FX;
1100 csr &= ~SET_FX;
1101 switch ((pkt.r.bRequestType << 8) | pkt.r.bRequest) {
1102
1103 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1104 | USB_REQ_SET_ADDRESS:
1105 __raw_writel(csr | AT91_UDP_TXPKTRDY, creg);
1106 udc->addr = w_value;
1107 udc->wait_for_addr_ack = 1;
1108 udc->req_pending = 0;
1109 /* FADDR is set later, when we ack host STATUS */
1110 return;
1111
1112 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1113 | USB_REQ_SET_CONFIGURATION:
Andrew Victorffd33262006-12-07 22:44:33 -08001114 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_CONFG;
David Brownellbae4bd82006-01-22 10:32:37 -08001115 if (pkt.r.wValue)
1116 udc->wait_for_config_ack = (tmp == 0);
1117 else
1118 udc->wait_for_config_ack = (tmp != 0);
1119 if (udc->wait_for_config_ack)
1120 VDBG("wait for config\n");
1121 /* CONFG is toggled later, if gadget driver succeeds */
1122 break;
1123
1124 /*
1125 * Hosts may set or clear remote wakeup status, and
1126 * devices may report they're VBUS powered.
1127 */
1128 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1129 | USB_REQ_GET_STATUS:
1130 tmp = (udc->selfpowered << USB_DEVICE_SELF_POWERED);
Andrew Victorffd33262006-12-07 22:44:33 -08001131 if (at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_ESR)
David Brownellbae4bd82006-01-22 10:32:37 -08001132 tmp |= (1 << USB_DEVICE_REMOTE_WAKEUP);
1133 PACKET("get device status\n");
1134 __raw_writeb(tmp, dreg);
1135 __raw_writeb(0, dreg);
1136 goto write_in;
1137 /* then STATUS starts later, automatically */
1138 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1139 | USB_REQ_SET_FEATURE:
1140 if (w_value != USB_DEVICE_REMOTE_WAKEUP)
1141 goto stall;
Andrew Victorffd33262006-12-07 22:44:33 -08001142 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001143 tmp |= AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -08001144 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001145 goto succeed;
1146 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1147 | USB_REQ_CLEAR_FEATURE:
1148 if (w_value != USB_DEVICE_REMOTE_WAKEUP)
1149 goto stall;
Andrew Victorffd33262006-12-07 22:44:33 -08001150 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001151 tmp &= ~AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -08001152 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001153 goto succeed;
1154
1155 /*
1156 * Interfaces have no feature settings; this is pretty useless.
1157 * we won't even insist the interface exists...
1158 */
1159 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1160 | USB_REQ_GET_STATUS:
1161 PACKET("get interface status\n");
1162 __raw_writeb(0, dreg);
1163 __raw_writeb(0, dreg);
1164 goto write_in;
1165 /* then STATUS starts later, automatically */
1166 case ((USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1167 | USB_REQ_SET_FEATURE:
1168 case ((USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1169 | USB_REQ_CLEAR_FEATURE:
1170 goto stall;
1171
1172 /*
1173 * Hosts may clear bulk/intr endpoint halt after the gadget
1174 * driver sets it (not widely used); or set it (for testing)
1175 */
1176 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1177 | USB_REQ_GET_STATUS:
1178 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1179 ep = &udc->ep[tmp];
Ido Shayevitz5a6506f2012-03-12 20:25:26 +02001180 if (tmp >= NUM_ENDPOINTS || (tmp && !ep->ep.desc))
David Brownellbae4bd82006-01-22 10:32:37 -08001181 goto stall;
1182
1183 if (tmp) {
1184 if ((w_index & USB_DIR_IN)) {
1185 if (!ep->is_in)
1186 goto stall;
1187 } else if (ep->is_in)
1188 goto stall;
1189 }
1190 PACKET("get %s status\n", ep->ep.name);
1191 if (__raw_readl(ep->creg) & AT91_UDP_FORCESTALL)
1192 tmp = (1 << USB_ENDPOINT_HALT);
1193 else
1194 tmp = 0;
1195 __raw_writeb(tmp, dreg);
1196 __raw_writeb(0, dreg);
1197 goto write_in;
1198 /* then STATUS starts later, automatically */
1199 case ((USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1200 | USB_REQ_SET_FEATURE:
1201 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1202 ep = &udc->ep[tmp];
David Brownell1440e092007-12-09 22:53:09 -08001203 if (w_value != USB_ENDPOINT_HALT || tmp >= NUM_ENDPOINTS)
David Brownellbae4bd82006-01-22 10:32:37 -08001204 goto stall;
Ido Shayevitz5a6506f2012-03-12 20:25:26 +02001205 if (!ep->ep.desc || ep->is_iso)
David Brownellbae4bd82006-01-22 10:32:37 -08001206 goto stall;
1207 if ((w_index & USB_DIR_IN)) {
1208 if (!ep->is_in)
1209 goto stall;
1210 } else if (ep->is_in)
1211 goto stall;
1212
1213 tmp = __raw_readl(ep->creg);
1214 tmp &= ~SET_FX;
1215 tmp |= CLR_FX | AT91_UDP_FORCESTALL;
1216 __raw_writel(tmp, ep->creg);
1217 goto succeed;
1218 case ((USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1219 | USB_REQ_CLEAR_FEATURE:
1220 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1221 ep = &udc->ep[tmp];
David Brownell1440e092007-12-09 22:53:09 -08001222 if (w_value != USB_ENDPOINT_HALT || tmp >= NUM_ENDPOINTS)
David Brownellbae4bd82006-01-22 10:32:37 -08001223 goto stall;
1224 if (tmp == 0)
1225 goto succeed;
Ido Shayevitz5a6506f2012-03-12 20:25:26 +02001226 if (!ep->ep.desc || ep->is_iso)
David Brownellbae4bd82006-01-22 10:32:37 -08001227 goto stall;
1228 if ((w_index & USB_DIR_IN)) {
1229 if (!ep->is_in)
1230 goto stall;
1231 } else if (ep->is_in)
1232 goto stall;
1233
Andrew Victorffd33262006-12-07 22:44:33 -08001234 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
1235 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -08001236 tmp = __raw_readl(ep->creg);
1237 tmp |= CLR_FX;
1238 tmp &= ~(SET_FX | AT91_UDP_FORCESTALL);
1239 __raw_writel(tmp, ep->creg);
1240 if (!list_empty(&ep->queue))
1241 handle_ep(ep);
1242 goto succeed;
1243 }
1244
1245#undef w_value
1246#undef w_index
1247#undef w_length
1248
1249 /* pass request up to the gadget driver */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001250 if (udc->driver) {
1251 spin_unlock(&udc->lock);
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -08001252 status = udc->driver->setup(&udc->gadget, &pkt.r);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001253 spin_lock(&udc->lock);
1254 }
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -08001255 else
1256 status = -ENODEV;
David Brownellbae4bd82006-01-22 10:32:37 -08001257 if (status < 0) {
1258stall:
1259 VDBG("req %02x.%02x protocol STALL; stat %d\n",
1260 pkt.r.bRequestType, pkt.r.bRequest, status);
1261 csr |= AT91_UDP_FORCESTALL;
1262 __raw_writel(csr, creg);
1263 udc->req_pending = 0;
1264 }
1265 return;
1266
1267succeed:
1268 /* immediate successful (IN) STATUS after zero length DATA */
1269 PACKET("ep0 in/status\n");
1270write_in:
1271 csr |= AT91_UDP_TXPKTRDY;
1272 __raw_writel(csr, creg);
1273 udc->req_pending = 0;
David Brownellbae4bd82006-01-22 10:32:37 -08001274}
1275
1276static void handle_ep0(struct at91_udc *udc)
1277{
1278 struct at91_ep *ep0 = &udc->ep[0];
1279 u32 __iomem *creg = ep0->creg;
1280 u32 csr = __raw_readl(creg);
1281 struct at91_request *req;
1282
1283 if (unlikely(csr & AT91_UDP_STALLSENT)) {
1284 nuke(ep0, -EPROTO);
1285 udc->req_pending = 0;
1286 csr |= CLR_FX;
1287 csr &= ~(SET_FX | AT91_UDP_STALLSENT | AT91_UDP_FORCESTALL);
1288 __raw_writel(csr, creg);
1289 VDBG("ep0 stalled\n");
1290 csr = __raw_readl(creg);
1291 }
1292 if (csr & AT91_UDP_RXSETUP) {
1293 nuke(ep0, 0);
1294 udc->req_pending = 0;
1295 handle_setup(udc, ep0, csr);
1296 return;
1297 }
1298
1299 if (list_empty(&ep0->queue))
1300 req = NULL;
1301 else
1302 req = list_entry(ep0->queue.next, struct at91_request, queue);
1303
1304 /* host ACKed an IN packet that we sent */
1305 if (csr & AT91_UDP_TXCOMP) {
1306 csr |= CLR_FX;
1307 csr &= ~(SET_FX | AT91_UDP_TXCOMP);
1308
1309 /* write more IN DATA? */
1310 if (req && ep0->is_in) {
1311 if (handle_ep(ep0))
1312 udc->req_pending = 0;
1313
1314 /*
1315 * Ack after:
1316 * - last IN DATA packet (including GET_STATUS)
1317 * - IN/STATUS for OUT DATA
1318 * - IN/STATUS for any zero-length DATA stage
1319 * except for the IN DATA case, the host should send
1320 * an OUT status later, which we'll ack.
1321 */
1322 } else {
1323 udc->req_pending = 0;
1324 __raw_writel(csr, creg);
1325
1326 /*
1327 * SET_ADDRESS takes effect only after the STATUS
1328 * (to the original address) gets acked.
1329 */
1330 if (udc->wait_for_addr_ack) {
1331 u32 tmp;
1332
Andrew Victorffd33262006-12-07 22:44:33 -08001333 at91_udp_write(udc, AT91_UDP_FADDR,
David Brownell8b2e7662006-07-05 02:38:56 -07001334 AT91_UDP_FEN | udc->addr);
Andrew Victorffd33262006-12-07 22:44:33 -08001335 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001336 tmp &= ~AT91_UDP_FADDEN;
1337 if (udc->addr)
1338 tmp |= AT91_UDP_FADDEN;
Andrew Victorffd33262006-12-07 22:44:33 -08001339 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001340
1341 udc->wait_for_addr_ack = 0;
1342 VDBG("address %d\n", udc->addr);
1343 }
1344 }
1345 }
1346
1347 /* OUT packet arrived ... */
1348 else if (csr & AT91_UDP_RX_DATA_BK0) {
1349 csr |= CLR_FX;
1350 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
1351
1352 /* OUT DATA stage */
1353 if (!ep0->is_in) {
1354 if (req) {
1355 if (handle_ep(ep0)) {
1356 /* send IN/STATUS */
1357 PACKET("ep0 in/status\n");
1358 csr = __raw_readl(creg);
1359 csr &= ~SET_FX;
1360 csr |= CLR_FX | AT91_UDP_TXPKTRDY;
1361 __raw_writel(csr, creg);
1362 udc->req_pending = 0;
1363 }
1364 } else if (udc->req_pending) {
1365 /*
1366 * AT91 hardware has a hard time with this
1367 * "deferred response" mode for control-OUT
1368 * transfers. (For control-IN it's fine.)
1369 *
1370 * The normal solution leaves OUT data in the
1371 * fifo until the gadget driver is ready.
1372 * We couldn't do that here without disabling
1373 * the IRQ that tells about SETUP packets,
1374 * e.g. when the host gets impatient...
1375 *
1376 * Working around it by copying into a buffer
1377 * would almost be a non-deferred response,
1378 * except that it wouldn't permit reliable
1379 * stalling of the request. Instead, demand
1380 * that gadget drivers not use this mode.
1381 */
1382 DBG("no control-OUT deferred responses!\n");
1383 __raw_writel(csr | AT91_UDP_FORCESTALL, creg);
1384 udc->req_pending = 0;
1385 }
1386
1387 /* STATUS stage for control-IN; ack. */
1388 } else {
1389 PACKET("ep0 out/status ACK\n");
1390 __raw_writel(csr, creg);
1391
1392 /* "early" status stage */
1393 if (req)
1394 done(ep0, req, 0);
1395 }
1396 }
1397}
1398
David Howells7d12e782006-10-05 14:55:46 +01001399static irqreturn_t at91_udc_irq (int irq, void *_udc)
David Brownellbae4bd82006-01-22 10:32:37 -08001400{
1401 struct at91_udc *udc = _udc;
1402 u32 rescans = 5;
Harro Haanc6c35232010-03-01 17:38:37 +01001403 int disable_clock = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001404 unsigned long flags;
1405
1406 spin_lock_irqsave(&udc->lock, flags);
Harro Haanc6c35232010-03-01 17:38:37 +01001407
1408 if (!udc->clocked) {
1409 clk_on(udc);
1410 disable_clock = 1;
1411 }
David Brownellbae4bd82006-01-22 10:32:37 -08001412
1413 while (rescans--) {
David Brownell8b2e7662006-07-05 02:38:56 -07001414 u32 status;
David Brownellbae4bd82006-01-22 10:32:37 -08001415
Andrew Victorffd33262006-12-07 22:44:33 -08001416 status = at91_udp_read(udc, AT91_UDP_ISR)
1417 & at91_udp_read(udc, AT91_UDP_IMR);
David Brownellbae4bd82006-01-22 10:32:37 -08001418 if (!status)
1419 break;
1420
1421 /* USB reset irq: not maskable */
1422 if (status & AT91_UDP_ENDBUSRES) {
Andrew Victorffd33262006-12-07 22:44:33 -08001423 at91_udp_write(udc, AT91_UDP_IDR, ~MINIMUS_INTERRUPTUS);
1424 at91_udp_write(udc, AT91_UDP_IER, MINIMUS_INTERRUPTUS);
David Brownellbae4bd82006-01-22 10:32:37 -08001425 /* Atmel code clears this irq twice */
Andrew Victorffd33262006-12-07 22:44:33 -08001426 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
1427 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
David Brownellbae4bd82006-01-22 10:32:37 -08001428 VDBG("end bus reset\n");
1429 udc->addr = 0;
1430 stop_activity(udc);
1431
1432 /* enable ep0 */
Andrew Victorffd33262006-12-07 22:44:33 -08001433 at91_udp_write(udc, AT91_UDP_CSR(0),
David Brownell8b2e7662006-07-05 02:38:56 -07001434 AT91_UDP_EPEDS | AT91_UDP_EPTYPE_CTRL);
David Brownellbae4bd82006-01-22 10:32:37 -08001435 udc->gadget.speed = USB_SPEED_FULL;
1436 udc->suspended = 0;
Andrew Victorffd33262006-12-07 22:44:33 -08001437 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_EP(0));
David Brownellbae4bd82006-01-22 10:32:37 -08001438
1439 /*
1440 * NOTE: this driver keeps clocks off unless the
David Brownell8b2e7662006-07-05 02:38:56 -07001441 * USB host is present. That saves power, but for
1442 * boards that don't support VBUS detection, both
1443 * clocks need to be active most of the time.
David Brownellbae4bd82006-01-22 10:32:37 -08001444 */
1445
1446 /* host initiated suspend (3+ms bus idle) */
1447 } else if (status & AT91_UDP_RXSUSP) {
Andrew Victorffd33262006-12-07 22:44:33 -08001448 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXSUSP);
1449 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXRSM);
1450 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXSUSP);
Robert Schwebel1a8060d2011-10-06 21:36:26 +02001451 /* VDBG("bus suspend\n"); */
David Brownellbae4bd82006-01-22 10:32:37 -08001452 if (udc->suspended)
1453 continue;
1454 udc->suspended = 1;
1455
1456 /*
1457 * NOTE: when suspending a VBUS-powered device, the
1458 * gadget driver should switch into slow clock mode
1459 * and then into standby to avoid drawing more than
1460 * 500uA power (2500uA for some high-power configs).
1461 */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001462 if (udc->driver && udc->driver->suspend) {
1463 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001464 udc->driver->suspend(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001465 spin_lock(&udc->lock);
1466 }
David Brownellbae4bd82006-01-22 10:32:37 -08001467
1468 /* host initiated resume */
1469 } else if (status & AT91_UDP_RXRSM) {
Andrew Victorffd33262006-12-07 22:44:33 -08001470 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXRSM);
1471 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXSUSP);
1472 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXRSM);
Robert Schwebel1a8060d2011-10-06 21:36:26 +02001473 /* VDBG("bus resume\n"); */
David Brownellbae4bd82006-01-22 10:32:37 -08001474 if (!udc->suspended)
1475 continue;
1476 udc->suspended = 0;
1477
1478 /*
1479 * NOTE: for a VBUS-powered device, the gadget driver
1480 * would normally want to switch out of slow clock
1481 * mode into normal mode.
1482 */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001483 if (udc->driver && udc->driver->resume) {
1484 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001485 udc->driver->resume(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001486 spin_lock(&udc->lock);
1487 }
David Brownellbae4bd82006-01-22 10:32:37 -08001488
1489 /* endpoint IRQs are cleared by handling them */
1490 } else {
1491 int i;
1492 unsigned mask = 1;
1493 struct at91_ep *ep = &udc->ep[1];
1494
1495 if (status & mask)
1496 handle_ep0(udc);
1497 for (i = 1; i < NUM_ENDPOINTS; i++) {
1498 mask <<= 1;
1499 if (status & mask)
1500 handle_ep(ep);
1501 ep++;
1502 }
1503 }
1504 }
1505
Harro Haanc6c35232010-03-01 17:38:37 +01001506 if (disable_clock)
1507 clk_off(udc);
1508
Harro Haan4f4c5e32010-03-01 18:01:56 +01001509 spin_unlock_irqrestore(&udc->lock, flags);
1510
David Brownellbae4bd82006-01-22 10:32:37 -08001511 return IRQ_HANDLED;
1512}
1513
1514/*-------------------------------------------------------------------------*/
1515
David Brownell8b2e7662006-07-05 02:38:56 -07001516static void nop_release(struct device *dev)
1517{
1518 /* nothing to free */
1519}
1520
David Brownellbae4bd82006-01-22 10:32:37 -08001521static struct at91_udc controller = {
1522 .gadget = {
David Brownell8b2e7662006-07-05 02:38:56 -07001523 .ops = &at91_udc_ops,
1524 .ep0 = &controller.ep[0].ep,
1525 .name = driver_name,
1526 .dev = {
Kay Sieversc682b172009-01-06 10:44:42 -08001527 .init_name = "gadget",
David Brownell8b2e7662006-07-05 02:38:56 -07001528 .release = nop_release,
David Brownellbae4bd82006-01-22 10:32:37 -08001529 }
1530 },
1531 .ep[0] = {
1532 .ep = {
1533 .name = ep0name,
1534 .ops = &at91_ep_ops,
1535 },
1536 .udc = &controller,
1537 .maxpacket = 8,
David Brownellbae4bd82006-01-22 10:32:37 -08001538 .int_mask = 1 << 0,
1539 },
1540 .ep[1] = {
1541 .ep = {
1542 .name = "ep1",
1543 .ops = &at91_ep_ops,
1544 },
1545 .udc = &controller,
1546 .is_pingpong = 1,
1547 .maxpacket = 64,
David Brownellbae4bd82006-01-22 10:32:37 -08001548 .int_mask = 1 << 1,
1549 },
1550 .ep[2] = {
1551 .ep = {
1552 .name = "ep2",
1553 .ops = &at91_ep_ops,
1554 },
1555 .udc = &controller,
1556 .is_pingpong = 1,
1557 .maxpacket = 64,
David Brownellbae4bd82006-01-22 10:32:37 -08001558 .int_mask = 1 << 2,
1559 },
1560 .ep[3] = {
1561 .ep = {
1562 /* could actually do bulk too */
1563 .name = "ep3-int",
1564 .ops = &at91_ep_ops,
1565 },
1566 .udc = &controller,
1567 .maxpacket = 8,
David Brownellbae4bd82006-01-22 10:32:37 -08001568 .int_mask = 1 << 3,
1569 },
1570 .ep[4] = {
1571 .ep = {
1572 .name = "ep4",
1573 .ops = &at91_ep_ops,
1574 },
1575 .udc = &controller,
1576 .is_pingpong = 1,
1577 .maxpacket = 256,
David Brownellbae4bd82006-01-22 10:32:37 -08001578 .int_mask = 1 << 4,
1579 },
1580 .ep[5] = {
1581 .ep = {
1582 .name = "ep5",
1583 .ops = &at91_ep_ops,
1584 },
1585 .udc = &controller,
1586 .is_pingpong = 1,
1587 .maxpacket = 256,
David Brownellbae4bd82006-01-22 10:32:37 -08001588 .int_mask = 1 << 5,
1589 },
David Brownell8b2e7662006-07-05 02:38:56 -07001590 /* ep6 and ep7 are also reserved (custom silicon might use them) */
David Brownellbae4bd82006-01-22 10:32:37 -08001591};
1592
Ryan Mallon40372422010-07-13 05:09:16 +01001593static void at91_vbus_update(struct at91_udc *udc, unsigned value)
1594{
1595 value ^= udc->board.vbus_active_low;
1596 if (value != udc->vbus)
1597 at91_vbus_session(&udc->gadget, value);
1598}
1599
David Howells7d12e782006-10-05 14:55:46 +01001600static irqreturn_t at91_vbus_irq(int irq, void *_udc)
David Brownellbae4bd82006-01-22 10:32:37 -08001601{
1602 struct at91_udc *udc = _udc;
David Brownellbae4bd82006-01-22 10:32:37 -08001603
1604 /* vbus needs at least brief debouncing */
1605 udelay(10);
Ryan Mallon40372422010-07-13 05:09:16 +01001606 at91_vbus_update(udc, gpio_get_value(udc->board.vbus_pin));
David Brownellbae4bd82006-01-22 10:32:37 -08001607
1608 return IRQ_HANDLED;
1609}
1610
Ryan Mallon40372422010-07-13 05:09:16 +01001611static void at91_vbus_timer_work(struct work_struct *work)
1612{
1613 struct at91_udc *udc = container_of(work, struct at91_udc,
1614 vbus_timer_work);
1615
1616 at91_vbus_update(udc, gpio_get_value_cansleep(udc->board.vbus_pin));
1617
1618 if (!timer_pending(&udc->vbus_timer))
1619 mod_timer(&udc->vbus_timer, jiffies + VBUS_POLL_TIMEOUT);
1620}
1621
1622static void at91_vbus_timer(unsigned long data)
1623{
1624 struct at91_udc *udc = (struct at91_udc *)data;
1625
1626 /*
1627 * If we are polling vbus it is likely that the gpio is on an
1628 * bus such as i2c or spi which may sleep, so schedule some work
1629 * to read the vbus gpio
1630 */
Tejun Heo348409a2012-12-21 17:57:12 -08001631 schedule_work(&udc->vbus_timer_work);
Ryan Mallon40372422010-07-13 05:09:16 +01001632}
1633
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +01001634static int at91_start(struct usb_gadget *gadget,
1635 struct usb_gadget_driver *driver)
David Brownellbae4bd82006-01-22 10:32:37 -08001636{
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +01001637 struct at91_udc *udc;
David Brownellbae4bd82006-01-22 10:32:37 -08001638
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +01001639 udc = container_of(gadget, struct at91_udc, gadget);
David Brownellbae4bd82006-01-22 10:32:37 -08001640 udc->driver = driver;
Alexandre Pereira da Silva65c84ea2012-06-26 11:27:12 -03001641 udc->gadget.dev.of_node = udc->pdev->dev.of_node;
David Brownellbae4bd82006-01-22 10:32:37 -08001642 udc->enabled = 1;
1643 udc->selfpowered = 1;
1644
David Brownellbae4bd82006-01-22 10:32:37 -08001645 DBG("bound to %s\n", driver->driver.name);
1646 return 0;
1647}
David Brownellbae4bd82006-01-22 10:32:37 -08001648
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +01001649static int at91_stop(struct usb_gadget *gadget,
1650 struct usb_gadget_driver *driver)
David Brownellbae4bd82006-01-22 10:32:37 -08001651{
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +01001652 struct at91_udc *udc;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001653 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001654
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +01001655 udc = container_of(gadget, struct at91_udc, gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001656 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001657 udc->enabled = 0;
Andrew Victorffd33262006-12-07 22:44:33 -08001658 at91_udp_write(udc, AT91_UDP_IDR, ~0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001659 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001660
David Brownellbae4bd82006-01-22 10:32:37 -08001661 udc->driver = NULL;
1662
1663 DBG("unbound from %s\n", driver->driver.name);
1664 return 0;
1665}
David Brownellbae4bd82006-01-22 10:32:37 -08001666
1667/*-------------------------------------------------------------------------*/
1668
1669static void at91udc_shutdown(struct platform_device *dev)
1670{
Harro Haan4f4c5e32010-03-01 18:01:56 +01001671 struct at91_udc *udc = platform_get_drvdata(dev);
1672 unsigned long flags;
1673
David Brownellbae4bd82006-01-22 10:32:37 -08001674 /* force disconnect on reboot */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001675 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001676 pullup(platform_get_drvdata(dev), 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001677 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001678}
1679
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001680static void at91udc_of_init(struct at91_udc *udc,
Jean-Christophe PLAGNIOL-VILLARDd1494a32012-01-28 22:35:36 +08001681 struct device_node *np)
1682{
1683 struct at91_udc_data *board = &udc->board;
1684 u32 val;
1685 enum of_gpio_flags flags;
1686
1687 if (of_property_read_u32(np, "atmel,vbus-polled", &val) == 0)
1688 board->vbus_polled = 1;
1689
1690 board->vbus_pin = of_get_named_gpio_flags(np, "atmel,vbus-gpio", 0,
1691 &flags);
1692 board->vbus_active_low = (flags & OF_GPIO_ACTIVE_LOW) ? 1 : 0;
1693
1694 board->pullup_pin = of_get_named_gpio_flags(np, "atmel,pullup-gpio", 0,
1695 &flags);
1696
1697 board->pullup_active_low = (flags & OF_GPIO_ACTIVE_LOW) ? 1 : 0;
1698}
1699
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001700static int at91udc_probe(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001701{
1702 struct device *dev = &pdev->dev;
1703 struct at91_udc *udc;
1704 int retval;
Andrew Victorffd33262006-12-07 22:44:33 -08001705 struct resource *res;
David Brownellbae4bd82006-01-22 10:32:37 -08001706
Jingoo Hane01ee9f2013-07-30 17:00:51 +09001707 if (!dev_get_platdata(dev) && !pdev->dev.of_node) {
David Brownellbae4bd82006-01-22 10:32:37 -08001708 /* small (so we copy it) but critical! */
1709 DBG("missing platform_data\n");
1710 return -ENODEV;
1711 }
1712
David Brownell8b2e7662006-07-05 02:38:56 -07001713 if (pdev->num_resources != 2) {
David Brownellf3db6e82008-01-05 13:21:43 -08001714 DBG("invalid num_resources\n");
David Brownell8b2e7662006-07-05 02:38:56 -07001715 return -ENODEV;
1716 }
1717 if ((pdev->resource[0].flags != IORESOURCE_MEM)
1718 || (pdev->resource[1].flags != IORESOURCE_IRQ)) {
David Brownellf3db6e82008-01-05 13:21:43 -08001719 DBG("invalid resource type\n");
David Brownell8b2e7662006-07-05 02:38:56 -07001720 return -ENODEV;
1721 }
1722
Andrew Victorffd33262006-12-07 22:44:33 -08001723 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1724 if (!res)
1725 return -ENXIO;
1726
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001727 if (!request_mem_region(res->start, resource_size(res), driver_name)) {
David Brownellbae4bd82006-01-22 10:32:37 -08001728 DBG("someone's using UDC memory\n");
1729 return -EBUSY;
1730 }
1731
1732 /* init software state */
1733 udc = &controller;
1734 udc->gadget.dev.parent = dev;
Arnd Bergmannae40d642013-06-19 13:27:27 +02001735 if (IS_ENABLED(CONFIG_OF) && pdev->dev.of_node)
Jean-Christophe PLAGNIOL-VILLARDd1494a32012-01-28 22:35:36 +08001736 at91udc_of_init(udc, pdev->dev.of_node);
1737 else
Jingoo Hane01ee9f2013-07-30 17:00:51 +09001738 memcpy(&udc->board, dev_get_platdata(dev),
Jean-Christophe PLAGNIOL-VILLARDd1494a32012-01-28 22:35:36 +08001739 sizeof(struct at91_udc_data));
David Brownellbae4bd82006-01-22 10:32:37 -08001740 udc->pdev = pdev;
David Brownellbae4bd82006-01-22 10:32:37 -08001741 udc->enabled = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001742 spin_lock_init(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001743
David Brownellf3db6e82008-01-05 13:21:43 -08001744 /* rm9200 needs manual D+ pullup; off by default */
1745 if (cpu_is_at91rm9200()) {
Jean-Christophe PLAGNIOL-VILLARDd2aec372012-12-23 19:08:04 +01001746 if (!gpio_is_valid(udc->board.pullup_pin)) {
David Brownellf3db6e82008-01-05 13:21:43 -08001747 DBG("no D+ pullup?\n");
1748 retval = -ENODEV;
1749 goto fail0;
1750 }
1751 retval = gpio_request(udc->board.pullup_pin, "udc_pullup");
1752 if (retval) {
1753 DBG("D+ pullup is busy\n");
1754 goto fail0;
1755 }
1756 gpio_direction_output(udc->board.pullup_pin,
1757 udc->board.pullup_active_low);
1758 }
1759
David Brownellbb242802008-05-27 19:24:20 -07001760 /* newer chips have more FIFO memory than rm9200 */
Jean-Christophe PLAGNIOL-VILLARDbf1f0a02011-05-13 17:03:02 +02001761 if (cpu_is_at91sam9260() || cpu_is_at91sam9g20()) {
Felipe Balbi4685d022013-12-23 19:28:17 -06001762 usb_ep_set_maxpacket_limit(&udc->ep[0].ep, 64);
1763 usb_ep_set_maxpacket_limit(&udc->ep[3].ep, 64);
1764 usb_ep_set_maxpacket_limit(&udc->ep[4].ep, 512);
1765 usb_ep_set_maxpacket_limit(&udc->ep[5].ep, 512);
Hong Xu23f6d912009-09-25 12:24:12 +02001766 } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
Felipe Balbi4685d022013-12-23 19:28:17 -06001767 usb_ep_set_maxpacket_limit(&udc->ep[3].ep, 64);
David Brownellbb242802008-05-27 19:24:20 -07001768 } else if (cpu_is_at91sam9263()) {
Felipe Balbi4685d022013-12-23 19:28:17 -06001769 usb_ep_set_maxpacket_limit(&udc->ep[0].ep, 64);
1770 usb_ep_set_maxpacket_limit(&udc->ep[3].ep, 64);
David Brownellbb242802008-05-27 19:24:20 -07001771 }
1772
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001773 udc->udp_baseaddr = ioremap(res->start, resource_size(res));
Andrew Victorffd33262006-12-07 22:44:33 -08001774 if (!udc->udp_baseaddr) {
David Brownellf3db6e82008-01-05 13:21:43 -08001775 retval = -ENOMEM;
1776 goto fail0a;
Andrew Victorffd33262006-12-07 22:44:33 -08001777 }
1778
1779 udc_reinit(udc);
1780
David Brownellbae4bd82006-01-22 10:32:37 -08001781 /* get interface and function clocks */
1782 udc->iclk = clk_get(dev, "udc_clk");
1783 udc->fclk = clk_get(dev, "udpck");
Boris BREZILLONc0aefc72013-08-02 10:37:34 +02001784 if (IS_ENABLED(CONFIG_COMMON_CLK))
1785 udc->uclk = clk_get(dev, "usb_clk");
1786 if (IS_ERR(udc->iclk) || IS_ERR(udc->fclk) ||
1787 (IS_ENABLED(CONFIG_COMMON_CLK) && IS_ERR(udc->uclk))) {
David Brownellbae4bd82006-01-22 10:32:37 -08001788 DBG("clocks missing\n");
Andrew Victor29ba4b52006-12-07 22:44:38 -08001789 retval = -ENODEV;
Felipe Balbi2533bee2013-01-24 15:15:30 +02001790 goto fail1;
Rahul Ruikar8ab10402011-02-09 13:44:28 +01001791 }
David Brownellbae4bd82006-01-22 10:32:37 -08001792
David Brownell8b2e7662006-07-05 02:38:56 -07001793 /* don't do anything until we have both gadget driver and VBUS */
Boris BREZILLON76280832013-06-25 10:12:56 +02001794 retval = clk_prepare_enable(udc->iclk);
1795 if (retval)
1796 goto fail1;
Andrew Victorffd33262006-12-07 22:44:33 -08001797 at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
1798 at91_udp_write(udc, AT91_UDP_IDR, 0xffffffff);
Andrew Victor29ba4b52006-12-07 22:44:38 -08001799 /* Clear all pending interrupts - UDP may be used by bootloader. */
1800 at91_udp_write(udc, AT91_UDP_ICR, 0xffffffff);
Boris BREZILLON76280832013-06-25 10:12:56 +02001801 clk_disable_unprepare(udc->iclk);
David Brownellbae4bd82006-01-22 10:32:37 -08001802
1803 /* request UDC and maybe VBUS irqs */
David Brownell8b2e7662006-07-05 02:38:56 -07001804 udc->udp_irq = platform_get_irq(pdev, 0);
David Brownellf3db6e82008-01-05 13:21:43 -08001805 retval = request_irq(udc->udp_irq, at91_udc_irq,
Yong Zhangb5dd18d2011-09-07 16:10:52 +08001806 0, driver_name, udc);
David Brownellf3db6e82008-01-05 13:21:43 -08001807 if (retval < 0) {
David Brownell8b2e7662006-07-05 02:38:56 -07001808 DBG("request irq %d failed\n", udc->udp_irq);
David Brownellbae4bd82006-01-22 10:32:37 -08001809 goto fail1;
1810 }
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001811 if (gpio_is_valid(udc->board.vbus_pin)) {
David Brownellf3db6e82008-01-05 13:21:43 -08001812 retval = gpio_request(udc->board.vbus_pin, "udc_vbus");
1813 if (retval < 0) {
1814 DBG("request vbus pin failed\n");
1815 goto fail2;
1816 }
1817 gpio_direction_input(udc->board.vbus_pin);
1818
Andrew Victor29ba4b52006-12-07 22:44:38 -08001819 /*
1820 * Get the initial state of VBUS - we cannot expect
1821 * a pending interrupt.
1822 */
Ryan Mallon40372422010-07-13 05:09:16 +01001823 udc->vbus = gpio_get_value_cansleep(udc->board.vbus_pin) ^
1824 udc->board.vbus_active_low;
1825
1826 if (udc->board.vbus_polled) {
1827 INIT_WORK(&udc->vbus_timer_work, at91_vbus_timer_work);
1828 setup_timer(&udc->vbus_timer, at91_vbus_timer,
1829 (unsigned long)udc);
1830 mod_timer(&udc->vbus_timer,
1831 jiffies + VBUS_POLL_TIMEOUT);
1832 } else {
Nicolas Ferre70756022012-04-16 10:58:12 +02001833 if (request_irq(gpio_to_irq(udc->board.vbus_pin),
1834 at91_vbus_irq, 0, driver_name, udc)) {
Ryan Mallon40372422010-07-13 05:09:16 +01001835 DBG("request vbus irq %d failed\n",
1836 udc->board.vbus_pin);
1837 retval = -EBUSY;
1838 goto fail3;
1839 }
David Brownellbae4bd82006-01-22 10:32:37 -08001840 }
1841 } else {
1842 DBG("no VBUS detection, assuming always-on\n");
1843 udc->vbus = 1;
1844 }
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001845 retval = usb_add_gadget_udc(dev, &udc->gadget);
1846 if (retval)
1847 goto fail4;
David Brownellbae4bd82006-01-22 10:32:37 -08001848 dev_set_drvdata(dev, udc);
David Brownell8b2e7662006-07-05 02:38:56 -07001849 device_init_wakeup(dev, 1);
David Brownellbae4bd82006-01-22 10:32:37 -08001850 create_debug_file(udc);
1851
1852 INFO("%s version %s\n", driver_name, DRIVER_VERSION);
1853 return 0;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001854fail4:
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001855 if (gpio_is_valid(udc->board.vbus_pin) && !udc->board.vbus_polled)
Nicolas Ferre70756022012-04-16 10:58:12 +02001856 free_irq(gpio_to_irq(udc->board.vbus_pin), udc);
David Brownellf3db6e82008-01-05 13:21:43 -08001857fail3:
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001858 if (gpio_is_valid(udc->board.vbus_pin))
David Brownellf3db6e82008-01-05 13:21:43 -08001859 gpio_free(udc->board.vbus_pin);
1860fail2:
1861 free_irq(udc->udp_irq, udc);
David Brownellbae4bd82006-01-22 10:32:37 -08001862fail1:
Boris BREZILLONc0aefc72013-08-02 10:37:34 +02001863 if (IS_ENABLED(CONFIG_COMMON_CLK) && !IS_ERR(udc->uclk))
1864 clk_put(udc->uclk);
Boris BREZILLON30ce1982013-08-02 10:37:27 +02001865 if (!IS_ERR(udc->fclk))
1866 clk_put(udc->fclk);
1867 if (!IS_ERR(udc->iclk))
1868 clk_put(udc->iclk);
David Brownellf3db6e82008-01-05 13:21:43 -08001869 iounmap(udc->udp_baseaddr);
1870fail0a:
1871 if (cpu_is_at91rm9200())
1872 gpio_free(udc->board.pullup_pin);
David Brownellbae4bd82006-01-22 10:32:37 -08001873fail0:
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001874 release_mem_region(res->start, resource_size(res));
David Brownellbae4bd82006-01-22 10:32:37 -08001875 DBG("%s probe failed, %d\n", driver_name, retval);
1876 return retval;
1877}
1878
David Brownell398acce2007-02-15 18:47:17 -08001879static int __exit at91udc_remove(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001880{
David Brownell8b2e7662006-07-05 02:38:56 -07001881 struct at91_udc *udc = platform_get_drvdata(pdev);
Andrew Victorffd33262006-12-07 22:44:33 -08001882 struct resource *res;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001883 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001884
1885 DBG("remove\n");
1886
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001887 usb_del_gadget_udc(&udc->gadget);
David Brownell6bea4762006-12-05 03:15:33 -08001888 if (udc->driver)
1889 return -EBUSY;
David Brownellbae4bd82006-01-22 10:32:37 -08001890
Harro Haan4f4c5e32010-03-01 18:01:56 +01001891 spin_lock_irqsave(&udc->lock, flags);
David Brownell6bea4762006-12-05 03:15:33 -08001892 pullup(udc, 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001893 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001894
David Brownell8b2e7662006-07-05 02:38:56 -07001895 device_init_wakeup(&pdev->dev, 0);
David Brownellbae4bd82006-01-22 10:32:37 -08001896 remove_debug_file(udc);
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001897 if (gpio_is_valid(udc->board.vbus_pin)) {
Nicolas Ferre70756022012-04-16 10:58:12 +02001898 free_irq(gpio_to_irq(udc->board.vbus_pin), udc);
David Brownellf3db6e82008-01-05 13:21:43 -08001899 gpio_free(udc->board.vbus_pin);
1900 }
David Brownell8b2e7662006-07-05 02:38:56 -07001901 free_irq(udc->udp_irq, udc);
Andrew Victorffd33262006-12-07 22:44:33 -08001902 iounmap(udc->udp_baseaddr);
David Brownellf3db6e82008-01-05 13:21:43 -08001903
1904 if (cpu_is_at91rm9200())
1905 gpio_free(udc->board.pullup_pin);
1906
Andrew Victorffd33262006-12-07 22:44:33 -08001907 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001908 release_mem_region(res->start, resource_size(res));
David Brownellbae4bd82006-01-22 10:32:37 -08001909
1910 clk_put(udc->iclk);
1911 clk_put(udc->fclk);
Boris BREZILLONc0aefc72013-08-02 10:37:34 +02001912 if (IS_ENABLED(CONFIG_COMMON_CLK))
1913 clk_put(udc->uclk);
David Brownellbae4bd82006-01-22 10:32:37 -08001914
1915 return 0;
1916}
1917
1918#ifdef CONFIG_PM
David Brownell8b2e7662006-07-05 02:38:56 -07001919static int at91udc_suspend(struct platform_device *pdev, pm_message_t mesg)
David Brownellbae4bd82006-01-22 10:32:37 -08001920{
David Brownell8b2e7662006-07-05 02:38:56 -07001921 struct at91_udc *udc = platform_get_drvdata(pdev);
1922 int wake = udc->driver && device_may_wakeup(&pdev->dev);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001923 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001924
David Brownell8b2e7662006-07-05 02:38:56 -07001925 /* Unless we can act normally to the host (letting it wake us up
1926 * whenever it has work for us) force disconnect. Wakeup requires
1927 * PLLB for USB events (signaling for reset, wakeup, or incoming
1928 * tokens) and VBUS irqs (on systems which support them).
David Brownellbae4bd82006-01-22 10:32:37 -08001929 */
David Brownell8b2e7662006-07-05 02:38:56 -07001930 if ((!udc->suspended && udc->addr)
1931 || !wake
1932 || at91_suspend_entering_slow_clock()) {
Harro Haan4f4c5e32010-03-01 18:01:56 +01001933 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001934 pullup(udc, 0);
David Brownell66e56ce2007-01-16 12:46:39 -08001935 wake = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001936 spin_unlock_irqrestore(&udc->lock, flags);
David Brownell8b2e7662006-07-05 02:38:56 -07001937 } else
1938 enable_irq_wake(udc->udp_irq);
1939
David Brownell66e56ce2007-01-16 12:46:39 -08001940 udc->active_suspend = wake;
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001941 if (gpio_is_valid(udc->board.vbus_pin) && !udc->board.vbus_polled && wake)
David Brownell66e56ce2007-01-16 12:46:39 -08001942 enable_irq_wake(udc->board.vbus_pin);
David Brownellbae4bd82006-01-22 10:32:37 -08001943 return 0;
1944}
1945
David Brownell8b2e7662006-07-05 02:38:56 -07001946static int at91udc_resume(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001947{
David Brownell8b2e7662006-07-05 02:38:56 -07001948 struct at91_udc *udc = platform_get_drvdata(pdev);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001949 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001950
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001951 if (gpio_is_valid(udc->board.vbus_pin) && !udc->board.vbus_polled &&
Ryan Mallon40372422010-07-13 05:09:16 +01001952 udc->active_suspend)
David Brownell66e56ce2007-01-16 12:46:39 -08001953 disable_irq_wake(udc->board.vbus_pin);
1954
David Brownellbae4bd82006-01-22 10:32:37 -08001955 /* maybe reconnect to host; if so, clocks on */
David Brownell66e56ce2007-01-16 12:46:39 -08001956 if (udc->active_suspend)
1957 disable_irq_wake(udc->udp_irq);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001958 else {
1959 spin_lock_irqsave(&udc->lock, flags);
David Brownell66e56ce2007-01-16 12:46:39 -08001960 pullup(udc, 1);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001961 spin_unlock_irqrestore(&udc->lock, flags);
1962 }
David Brownellbae4bd82006-01-22 10:32:37 -08001963 return 0;
1964}
1965#else
1966#define at91udc_suspend NULL
1967#define at91udc_resume NULL
1968#endif
1969
Jean-Christophe PLAGNIOL-VILLARDd1494a32012-01-28 22:35:36 +08001970#if defined(CONFIG_OF)
1971static const struct of_device_id at91_udc_dt_ids[] = {
1972 { .compatible = "atmel,at91rm9200-udc" },
1973 { /* sentinel */ }
1974};
1975
1976MODULE_DEVICE_TABLE(of, at91_udc_dt_ids);
1977#endif
1978
David Brownelldee497d2007-02-24 13:54:56 -08001979static struct platform_driver at91_udc_driver = {
David Brownell398acce2007-02-15 18:47:17 -08001980 .remove = __exit_p(at91udc_remove),
David Brownellbae4bd82006-01-22 10:32:37 -08001981 .shutdown = at91udc_shutdown,
1982 .suspend = at91udc_suspend,
David Brownell8b2e7662006-07-05 02:38:56 -07001983 .resume = at91udc_resume,
David Brownellbae4bd82006-01-22 10:32:37 -08001984 .driver = {
1985 .name = (char *) driver_name,
1986 .owner = THIS_MODULE,
Jean-Christophe PLAGNIOL-VILLARDd1494a32012-01-28 22:35:36 +08001987 .of_match_table = of_match_ptr(at91_udc_dt_ids),
David Brownellbae4bd82006-01-22 10:32:37 -08001988 },
1989};
1990
Fabio Porcedda52f7a822013-01-09 12:15:28 +01001991module_platform_driver_probe(at91_udc_driver, at91udc_probe);
David Brownellbae4bd82006-01-22 10:32:37 -08001992
David Brownell8b2e7662006-07-05 02:38:56 -07001993MODULE_DESCRIPTION("AT91 udc driver");
David Brownellbae4bd82006-01-22 10:32:37 -08001994MODULE_AUTHOR("Thomas Rathbone, David Brownell");
1995MODULE_LICENSE("GPL");
Kay Sieversf34c32f2008-04-10 21:29:21 -07001996MODULE_ALIAS("platform:at91_udc");