blob: eb2999c5d03c1eb661b40ad52e8d0ae259b9c44a [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>
David Brownellbae4bd82006-01-22 10:32:37 -080024#include <linux/list.h>
25#include <linux/interrupt.h>
26#include <linux/proc_fs.h>
Jean-Christophe PLAGNIOL-VILLARDeed39362011-05-29 10:01:48 +020027#include <linux/prefetch.h>
David Brownellbae4bd82006-01-22 10:32:37 -080028#include <linux/clk.h>
David Brownell5f848132006-12-16 15:34:53 -080029#include <linux/usb/ch9.h>
David Brownell9454a572007-10-04 18:05:17 -070030#include <linux/usb/gadget.h>
Jean-Christophe PLAGNIOL-VILLARDd1494a32012-01-28 22:35:36 +080031#include <linux/of.h>
32#include <linux/of_gpio.h>
Jean-Christophe PLAGNIOL-VILLARDbcd23602012-10-30 05:12:23 +080033#include <linux/platform_data/atmel.h>
David Brownellbae4bd82006-01-22 10:32:37 -080034
35#include <asm/byteorder.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010036#include <mach/hardware.h>
David Brownellbae4bd82006-01-22 10:32:37 -080037#include <asm/io.h>
38#include <asm/irq.h>
David Brownellf3db6e82008-01-05 13:21:43 -080039#include <asm/gpio.h>
David Brownellbae4bd82006-01-22 10:32:37 -080040
Russell Kinga09e64f2008-08-05 16:14:15 +010041#include <mach/cpu.h>
42#include <mach/at91sam9261_matrix.h>
Jean-Christophe PLAGNIOL-VILLARD4342d642011-11-27 23:15:50 +080043#include <mach/at91_matrix.h>
David Brownellbae4bd82006-01-22 10:32:37 -080044
45#include "at91_udc.h"
46
47
48/*
49 * This controller is simple and PIO-only. It's used in many AT91-series
David Brownell8b2e7662006-07-05 02:38:56 -070050 * full speed USB controllers, including the at91rm9200 (arm920T, with MMU),
51 * at91sam926x (arm926ejs, with MMU), and several no-mmu versions.
David Brownellbae4bd82006-01-22 10:32:37 -080052 *
Masanari Iidad7558142012-08-22 18:40:21 +090053 * This driver expects the board has been wired with two GPIOs supporting
David Brownellbae4bd82006-01-22 10:32:37 -080054 * a VBUS sensing IRQ, and a D+ pullup. (They may be omitted, but the
David Brownell8b2e7662006-07-05 02:38:56 -070055 * testing hasn't covered such cases.)
56 *
57 * The pullup is most important (so it's integrated on sam926x parts). It
David Brownellbae4bd82006-01-22 10:32:37 -080058 * provides software control over whether the host enumerates the device.
David Brownell8b2e7662006-07-05 02:38:56 -070059 *
David Brownellbae4bd82006-01-22 10:32:37 -080060 * The VBUS sensing helps during enumeration, and allows both USB clocks
61 * (and the transceiver) to stay gated off until they're necessary, saving
David Brownell8b2e7662006-07-05 02:38:56 -070062 * power. During USB suspend, the 48 MHz clock is gated off in hardware;
63 * it may also be gated off by software during some Linux sleep states.
David Brownellbae4bd82006-01-22 10:32:37 -080064 */
65
David Brownell8b2e7662006-07-05 02:38:56 -070066#define DRIVER_VERSION "3 May 2006"
David Brownellbae4bd82006-01-22 10:32:37 -080067
68static const char driver_name [] = "at91_udc";
69static const char ep0name[] = "ep0";
70
Ryan Mallon40372422010-07-13 05:09:16 +010071#define VBUS_POLL_TIMEOUT msecs_to_jiffies(1000)
David Brownellbae4bd82006-01-22 10:32:37 -080072
Harro Haan4f4c5e32010-03-01 18:01:56 +010073#define at91_udp_read(udc, reg) \
74 __raw_readl((udc)->udp_baseaddr + (reg))
75#define at91_udp_write(udc, reg, val) \
76 __raw_writel((val), (udc)->udp_baseaddr + (reg))
David Brownellbae4bd82006-01-22 10:32:37 -080077
78/*-------------------------------------------------------------------------*/
79
80#ifdef CONFIG_USB_GADGET_DEBUG_FILES
81
82#include <linux/seq_file.h>
83
84static const char debug_filename[] = "driver/udc";
85
86#define FOURBITS "%s%s%s%s"
87#define EIGHTBITS FOURBITS FOURBITS
88
89static void proc_ep_show(struct seq_file *s, struct at91_ep *ep)
90{
91 static char *types[] = {
92 "control", "out-iso", "out-bulk", "out-int",
93 "BOGUS", "in-iso", "in-bulk", "in-int"};
94
95 u32 csr;
96 struct at91_request *req;
97 unsigned long flags;
Harro Haan4f4c5e32010-03-01 18:01:56 +010098 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -080099
Harro Haan4f4c5e32010-03-01 18:01:56 +0100100 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800101
102 csr = __raw_readl(ep->creg);
103
104 /* NOTE: not collecting per-endpoint irq statistics... */
105
106 seq_printf(s, "\n");
107 seq_printf(s, "%s, maxpacket %d %s%s %s%s\n",
108 ep->ep.name, ep->ep.maxpacket,
109 ep->is_in ? "in" : "out",
110 ep->is_iso ? " iso" : "",
111 ep->is_pingpong
112 ? (ep->fifo_bank ? "pong" : "ping")
113 : "",
114 ep->stopped ? " stopped" : "");
115 seq_printf(s, "csr %08x rxbytes=%d %s %s %s" EIGHTBITS "\n",
116 csr,
117 (csr & 0x07ff0000) >> 16,
118 (csr & (1 << 15)) ? "enabled" : "disabled",
119 (csr & (1 << 11)) ? "DATA1" : "DATA0",
120 types[(csr & 0x700) >> 8],
121
122 /* iff type is control then print current direction */
123 (!(csr & 0x700))
124 ? ((csr & (1 << 7)) ? " IN" : " OUT")
125 : "",
126 (csr & (1 << 6)) ? " rxdatabk1" : "",
127 (csr & (1 << 5)) ? " forcestall" : "",
128 (csr & (1 << 4)) ? " txpktrdy" : "",
129
130 (csr & (1 << 3)) ? " stallsent" : "",
131 (csr & (1 << 2)) ? " rxsetup" : "",
132 (csr & (1 << 1)) ? " rxdatabk0" : "",
133 (csr & (1 << 0)) ? " txcomp" : "");
134 if (list_empty (&ep->queue))
135 seq_printf(s, "\t(queue empty)\n");
136
137 else list_for_each_entry (req, &ep->queue, queue) {
138 unsigned length = req->req.actual;
139
140 seq_printf(s, "\treq %p len %d/%d buf %p\n",
141 &req->req, length,
142 req->req.length, req->req.buf);
143 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100144 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800145}
146
147static void proc_irq_show(struct seq_file *s, const char *label, u32 mask)
148{
149 int i;
150
151 seq_printf(s, "%s %04x:%s%s" FOURBITS, label, mask,
152 (mask & (1 << 13)) ? " wakeup" : "",
153 (mask & (1 << 12)) ? " endbusres" : "",
154
155 (mask & (1 << 11)) ? " sofint" : "",
156 (mask & (1 << 10)) ? " extrsm" : "",
157 (mask & (1 << 9)) ? " rxrsm" : "",
158 (mask & (1 << 8)) ? " rxsusp" : "");
159 for (i = 0; i < 8; i++) {
160 if (mask & (1 << i))
161 seq_printf(s, " ep%d", i);
162 }
163 seq_printf(s, "\n");
164}
165
166static int proc_udc_show(struct seq_file *s, void *unused)
167{
168 struct at91_udc *udc = s->private;
169 struct at91_ep *ep;
170 u32 tmp;
171
172 seq_printf(s, "%s: version %s\n", driver_name, DRIVER_VERSION);
173
174 seq_printf(s, "vbus %s, pullup %s, %s powered%s, gadget %s\n\n",
175 udc->vbus ? "present" : "off",
176 udc->enabled
177 ? (udc->vbus ? "active" : "enabled")
178 : "disabled",
179 udc->selfpowered ? "self" : "VBUS",
180 udc->suspended ? ", suspended" : "",
181 udc->driver ? udc->driver->driver.name : "(none)");
182
183 /* don't access registers when interface isn't clocked */
184 if (!udc->clocked) {
185 seq_printf(s, "(not clocked)\n");
186 return 0;
187 }
188
Andrew Victorffd33262006-12-07 22:44:33 -0800189 tmp = at91_udp_read(udc, AT91_UDP_FRM_NUM);
David Brownellbae4bd82006-01-22 10:32:37 -0800190 seq_printf(s, "frame %05x:%s%s frame=%d\n", tmp,
191 (tmp & AT91_UDP_FRM_OK) ? " ok" : "",
192 (tmp & AT91_UDP_FRM_ERR) ? " err" : "",
193 (tmp & AT91_UDP_NUM));
194
Andrew Victorffd33262006-12-07 22:44:33 -0800195 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800196 seq_printf(s, "glbstate %02x:%s" FOURBITS "\n", tmp,
197 (tmp & AT91_UDP_RMWUPE) ? " rmwupe" : "",
198 (tmp & AT91_UDP_RSMINPR) ? " rsminpr" : "",
199 (tmp & AT91_UDP_ESR) ? " esr" : "",
200 (tmp & AT91_UDP_CONFG) ? " confg" : "",
201 (tmp & AT91_UDP_FADDEN) ? " fadden" : "");
202
Andrew Victorffd33262006-12-07 22:44:33 -0800203 tmp = at91_udp_read(udc, AT91_UDP_FADDR);
David Brownellbae4bd82006-01-22 10:32:37 -0800204 seq_printf(s, "faddr %03x:%s fadd=%d\n", tmp,
205 (tmp & AT91_UDP_FEN) ? " fen" : "",
206 (tmp & AT91_UDP_FADD));
207
Andrew Victorffd33262006-12-07 22:44:33 -0800208 proc_irq_show(s, "imr ", at91_udp_read(udc, AT91_UDP_IMR));
209 proc_irq_show(s, "isr ", at91_udp_read(udc, AT91_UDP_ISR));
David Brownellbae4bd82006-01-22 10:32:37 -0800210
211 if (udc->enabled && udc->vbus) {
212 proc_ep_show(s, &udc->ep[0]);
213 list_for_each_entry (ep, &udc->gadget.ep_list, ep.ep_list) {
Ido Shayevitz5a6506f2012-03-12 20:25:26 +0200214 if (ep->ep.desc)
David Brownellbae4bd82006-01-22 10:32:37 -0800215 proc_ep_show(s, ep);
216 }
217 }
218 return 0;
219}
220
221static int proc_udc_open(struct inode *inode, struct file *file)
222{
Al Virod9dda782013-03-31 18:16:14 -0400223 return single_open(file, proc_udc_show, PDE_DATA(inode));
David Brownellbae4bd82006-01-22 10:32:37 -0800224}
225
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300226static const struct file_operations proc_ops = {
Denis V. Lunevcdefa182008-04-29 01:02:19 -0700227 .owner = THIS_MODULE,
David Brownellbae4bd82006-01-22 10:32:37 -0800228 .open = proc_udc_open,
229 .read = seq_read,
230 .llseek = seq_lseek,
231 .release = single_release,
232};
233
234static void create_debug_file(struct at91_udc *udc)
235{
Denis V. Lunevcdefa182008-04-29 01:02:19 -0700236 udc->pde = proc_create_data(debug_filename, 0, NULL, &proc_ops, udc);
David Brownellbae4bd82006-01-22 10:32:37 -0800237}
238
239static void remove_debug_file(struct at91_udc *udc)
240{
241 if (udc->pde)
242 remove_proc_entry(debug_filename, NULL);
243}
244
245#else
246
247static inline void create_debug_file(struct at91_udc *udc) {}
248static inline void remove_debug_file(struct at91_udc *udc) {}
249
250#endif
251
252
253/*-------------------------------------------------------------------------*/
254
255static void done(struct at91_ep *ep, struct at91_request *req, int status)
256{
257 unsigned stopped = ep->stopped;
Andrew Victorffd33262006-12-07 22:44:33 -0800258 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800259
260 list_del_init(&req->queue);
261 if (req->req.status == -EINPROGRESS)
262 req->req.status = status;
263 else
264 status = req->req.status;
265 if (status && status != -ESHUTDOWN)
266 VDBG("%s done %p, status %d\n", ep->ep.name, req, status);
267
268 ep->stopped = 1;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100269 spin_unlock(&udc->lock);
Michal Sojka304f7e52014-09-24 22:43:19 +0200270 usb_gadget_giveback_request(&ep->ep, &req->req);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100271 spin_lock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -0800272 ep->stopped = stopped;
273
274 /* ep0 is always ready; other endpoints need a non-empty queue */
275 if (list_empty(&ep->queue) && ep->int_mask != (1 << 0))
Andrew Victorffd33262006-12-07 22:44:33 -0800276 at91_udp_write(udc, AT91_UDP_IDR, ep->int_mask);
David Brownellbae4bd82006-01-22 10:32:37 -0800277}
278
279/*-------------------------------------------------------------------------*/
280
281/* bits indicating OUT fifo has data ready */
282#define RX_DATA_READY (AT91_UDP_RX_DATA_BK0 | AT91_UDP_RX_DATA_BK1)
283
284/*
285 * Endpoint FIFO CSR bits have a mix of bits, making it unsafe to just write
286 * back most of the value you just read (because of side effects, including
287 * bits that may change after reading and before writing).
288 *
289 * Except when changing a specific bit, always write values which:
290 * - clear SET_FX bits (setting them could change something)
291 * - set CLR_FX bits (clearing them could change something)
292 *
293 * There are also state bits like FORCESTALL, EPEDS, DIR, and EPTYPE
294 * that shouldn't normally be changed.
David Brownell8b2e7662006-07-05 02:38:56 -0700295 *
296 * NOTE at91sam9260 docs mention synch between UDPCK and MCK clock domains,
297 * implying a need to wait for one write to complete (test relevant bits)
298 * before starting the next write. This shouldn't be an issue given how
299 * infrequently we write, except maybe for write-then-read idioms.
David Brownellbae4bd82006-01-22 10:32:37 -0800300 */
301#define SET_FX (AT91_UDP_TXPKTRDY)
David Brownell8b2e7662006-07-05 02:38:56 -0700302#define CLR_FX (RX_DATA_READY | AT91_UDP_RXSETUP \
303 | AT91_UDP_STALLSENT | AT91_UDP_TXCOMP)
David Brownellbae4bd82006-01-22 10:32:37 -0800304
305/* pull OUT packet data from the endpoint's fifo */
306static int read_fifo (struct at91_ep *ep, struct at91_request *req)
307{
308 u32 __iomem *creg = ep->creg;
309 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
310 u32 csr;
311 u8 *buf;
312 unsigned int count, bufferspace, is_done;
313
314 buf = req->req.buf + req->req.actual;
315 bufferspace = req->req.length - req->req.actual;
316
317 /*
318 * there might be nothing to read if ep_queue() calls us,
319 * or if we already emptied both pingpong buffers
320 */
321rescan:
322 csr = __raw_readl(creg);
323 if ((csr & RX_DATA_READY) == 0)
324 return 0;
325
326 count = (csr & AT91_UDP_RXBYTECNT) >> 16;
327 if (count > ep->ep.maxpacket)
328 count = ep->ep.maxpacket;
329 if (count > bufferspace) {
330 DBG("%s buffer overflow\n", ep->ep.name);
331 req->req.status = -EOVERFLOW;
332 count = bufferspace;
333 }
334 __raw_readsb(dreg, buf, count);
335
336 /* release and swap pingpong mem bank */
337 csr |= CLR_FX;
338 if (ep->is_pingpong) {
339 if (ep->fifo_bank == 0) {
340 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
341 ep->fifo_bank = 1;
342 } else {
343 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK1);
344 ep->fifo_bank = 0;
345 }
346 } else
347 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
348 __raw_writel(csr, creg);
349
350 req->req.actual += count;
351 is_done = (count < ep->ep.maxpacket);
352 if (count == bufferspace)
353 is_done = 1;
354
355 PACKET("%s %p out/%d%s\n", ep->ep.name, &req->req, count,
356 is_done ? " (done)" : "");
357
358 /*
359 * avoid extra trips through IRQ logic for packets already in
360 * the fifo ... maybe preventing an extra (expensive) OUT-NAK
361 */
362 if (is_done)
363 done(ep, req, 0);
364 else if (ep->is_pingpong) {
Harro Haan76225372010-03-01 17:54:55 +0100365 /*
366 * One dummy read to delay the code because of a HW glitch:
367 * CSR returns bad RXCOUNT when read too soon after updating
368 * RX_DATA_BK flags.
369 */
370 csr = __raw_readl(creg);
371
David Brownellbae4bd82006-01-22 10:32:37 -0800372 bufferspace -= count;
373 buf += count;
374 goto rescan;
375 }
376
377 return is_done;
378}
379
380/* load fifo for an IN packet */
381static int write_fifo(struct at91_ep *ep, struct at91_request *req)
382{
383 u32 __iomem *creg = ep->creg;
384 u32 csr = __raw_readl(creg);
385 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
386 unsigned total, count, is_last;
David Brownell3cf27232008-04-06 23:32:55 -0700387 u8 *buf;
David Brownellbae4bd82006-01-22 10:32:37 -0800388
389 /*
390 * TODO: allow for writing two packets to the fifo ... that'll
391 * reduce the amount of IN-NAKing, but probably won't affect
392 * throughput much. (Unlike preventing OUT-NAKing!)
393 */
394
395 /*
396 * If ep_queue() calls us, the queue is empty and possibly in
397 * odd states like TXCOMP not yet cleared (we do it, saving at
398 * least one IRQ) or the fifo not yet being free. Those aren't
399 * issues normally (IRQ handler fast path).
400 */
401 if (unlikely(csr & (AT91_UDP_TXCOMP | AT91_UDP_TXPKTRDY))) {
402 if (csr & AT91_UDP_TXCOMP) {
403 csr |= CLR_FX;
404 csr &= ~(SET_FX | AT91_UDP_TXCOMP);
405 __raw_writel(csr, creg);
406 csr = __raw_readl(creg);
407 }
408 if (csr & AT91_UDP_TXPKTRDY)
409 return 0;
410 }
411
David Brownell3cf27232008-04-06 23:32:55 -0700412 buf = req->req.buf + req->req.actual;
413 prefetch(buf);
David Brownellbae4bd82006-01-22 10:32:37 -0800414 total = req->req.length - req->req.actual;
415 if (ep->ep.maxpacket < total) {
416 count = ep->ep.maxpacket;
417 is_last = 0;
418 } else {
419 count = total;
420 is_last = (count < ep->ep.maxpacket) || !req->req.zero;
421 }
422
423 /*
424 * Write the packet, maybe it's a ZLP.
425 *
426 * NOTE: incrementing req->actual before we receive the ACK means
427 * gadget driver IN bytecounts can be wrong in fault cases. That's
428 * fixable with PIO drivers like this one (save "count" here, and
429 * do the increment later on TX irq), but not for most DMA hardware.
430 *
431 * So all gadget drivers must accept that potential error. Some
432 * hardware supports precise fifo status reporting, letting them
433 * recover when the actual bytecount matters (e.g. for USB Test
434 * and Measurement Class devices).
435 */
David Brownell3cf27232008-04-06 23:32:55 -0700436 __raw_writesb(dreg, buf, count);
David Brownellbae4bd82006-01-22 10:32:37 -0800437 csr &= ~SET_FX;
438 csr |= CLR_FX | AT91_UDP_TXPKTRDY;
439 __raw_writel(csr, creg);
440 req->req.actual += count;
441
442 PACKET("%s %p in/%d%s\n", ep->ep.name, &req->req, count,
443 is_last ? " (done)" : "");
444 if (is_last)
445 done(ep, req, 0);
446 return is_last;
447}
448
449static void nuke(struct at91_ep *ep, int status)
450{
451 struct at91_request *req;
452
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200453 /* terminate any request in the queue */
David Brownellbae4bd82006-01-22 10:32:37 -0800454 ep->stopped = 1;
455 if (list_empty(&ep->queue))
456 return;
457
Harvey Harrison441b62c2008-03-03 16:08:34 -0800458 VDBG("%s %s\n", __func__, ep->ep.name);
David Brownellbae4bd82006-01-22 10:32:37 -0800459 while (!list_empty(&ep->queue)) {
460 req = list_entry(ep->queue.next, struct at91_request, queue);
461 done(ep, req, status);
462 }
463}
464
465/*-------------------------------------------------------------------------*/
466
David Brownell8b2e7662006-07-05 02:38:56 -0700467static int at91_ep_enable(struct usb_ep *_ep,
468 const struct usb_endpoint_descriptor *desc)
David Brownellbae4bd82006-01-22 10:32:37 -0800469{
470 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Wei Yongjun162ca3c2012-09-07 14:54:25 +0800471 struct at91_udc *udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800472 u16 maxpacket;
473 u32 tmp;
474 unsigned long flags;
475
476 if (!_ep || !ep
Sebastian Andrzej Siewiorf3bb8e62012-07-20 20:34:25 +0200477 || !desc || _ep->name == ep0name
David Brownellbae4bd82006-01-22 10:32:37 -0800478 || desc->bDescriptorType != USB_DT_ENDPOINT
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700479 || (maxpacket = usb_endpoint_maxp(desc)) == 0
David Brownellbae4bd82006-01-22 10:32:37 -0800480 || maxpacket > ep->maxpacket) {
481 DBG("bad ep or descriptor\n");
482 return -EINVAL;
483 }
484
Wei Yongjun162ca3c2012-09-07 14:54:25 +0800485 udc = ep->udc;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100486 if (!udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) {
David Brownellbae4bd82006-01-22 10:32:37 -0800487 DBG("bogus device state\n");
488 return -ESHUTDOWN;
489 }
490
Matthias Kaehlcke81c8d8d2009-04-15 22:28:02 +0200491 tmp = usb_endpoint_type(desc);
David Brownellbae4bd82006-01-22 10:32:37 -0800492 switch (tmp) {
493 case USB_ENDPOINT_XFER_CONTROL:
494 DBG("only one control endpoint\n");
495 return -EINVAL;
496 case USB_ENDPOINT_XFER_INT:
497 if (maxpacket > 64)
498 goto bogus_max;
499 break;
500 case USB_ENDPOINT_XFER_BULK:
501 switch (maxpacket) {
502 case 8:
503 case 16:
504 case 32:
505 case 64:
506 goto ok;
507 }
508bogus_max:
509 DBG("bogus maxpacket %d\n", maxpacket);
510 return -EINVAL;
511 case USB_ENDPOINT_XFER_ISOC:
512 if (!ep->is_pingpong) {
513 DBG("iso requires double buffering\n");
514 return -EINVAL;
515 }
516 break;
517 }
518
519ok:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100520 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800521
522 /* initialize endpoint to match this descriptor */
Matthias Kaehlcke81c8d8d2009-04-15 22:28:02 +0200523 ep->is_in = usb_endpoint_dir_in(desc);
David Brownellbae4bd82006-01-22 10:32:37 -0800524 ep->is_iso = (tmp == USB_ENDPOINT_XFER_ISOC);
525 ep->stopped = 0;
526 if (ep->is_in)
527 tmp |= 0x04;
528 tmp <<= 8;
529 tmp |= AT91_UDP_EPEDS;
530 __raw_writel(tmp, ep->creg);
531
David Brownellbae4bd82006-01-22 10:32:37 -0800532 ep->ep.maxpacket = maxpacket;
533
534 /*
535 * reset/init endpoint fifo. NOTE: leaves fifo_bank alone,
536 * since endpoint resets don't reset hw pingpong state.
537 */
Harro Haan4f4c5e32010-03-01 18:01:56 +0100538 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
539 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800540
Harro Haan4f4c5e32010-03-01 18:01:56 +0100541 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800542 return 0;
543}
544
545static int at91_ep_disable (struct usb_ep * _ep)
546{
547 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Andrew Victorffd33262006-12-07 22:44:33 -0800548 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800549 unsigned long flags;
550
551 if (ep == &ep->udc->ep[0])
552 return -EINVAL;
553
Harro Haan4f4c5e32010-03-01 18:01:56 +0100554 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800555
556 nuke(ep, -ESHUTDOWN);
557
558 /* restore the endpoint's pristine config */
Ido Shayevitzf9c56cd2012-02-08 13:56:48 +0200559 ep->ep.desc = NULL;
David Brownellbae4bd82006-01-22 10:32:37 -0800560 ep->ep.maxpacket = ep->maxpacket;
561
562 /* reset fifos and endpoint */
563 if (ep->udc->clocked) {
Andrew Victorffd33262006-12-07 22:44:33 -0800564 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
565 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800566 __raw_writel(0, ep->creg);
567 }
568
Harro Haan4f4c5e32010-03-01 18:01:56 +0100569 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800570 return 0;
571}
572
573/*
574 * this is a PIO-only driver, so there's nothing
575 * interesting for request or buffer allocation.
576 */
577
David Brownell8b2e7662006-07-05 02:38:56 -0700578static struct usb_request *
David Brownellf3db6e82008-01-05 13:21:43 -0800579at91_ep_alloc_request(struct usb_ep *_ep, gfp_t gfp_flags)
David Brownellbae4bd82006-01-22 10:32:37 -0800580{
581 struct at91_request *req;
582
Robert P. J. Daycd861282006-12-13 00:34:52 -0800583 req = kzalloc(sizeof (struct at91_request), gfp_flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800584 if (!req)
585 return NULL;
586
587 INIT_LIST_HEAD(&req->queue);
588 return &req->req;
589}
590
591static void at91_ep_free_request(struct usb_ep *_ep, struct usb_request *_req)
592{
593 struct at91_request *req;
594
595 req = container_of(_req, struct at91_request, req);
596 BUG_ON(!list_empty(&req->queue));
597 kfree(req);
598}
599
David Brownellbae4bd82006-01-22 10:32:37 -0800600static int at91_ep_queue(struct usb_ep *_ep,
601 struct usb_request *_req, gfp_t gfp_flags)
602{
603 struct at91_request *req;
604 struct at91_ep *ep;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100605 struct at91_udc *udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800606 int status;
607 unsigned long flags;
608
609 req = container_of(_req, struct at91_request, req);
610 ep = container_of(_ep, struct at91_ep, ep);
611
612 if (!_req || !_req->complete
613 || !_req->buf || !list_empty(&req->queue)) {
614 DBG("invalid request\n");
615 return -EINVAL;
616 }
617
Ido Shayevitz5a6506f2012-03-12 20:25:26 +0200618 if (!_ep || (!ep->ep.desc && ep->ep.name != ep0name)) {
David Brownellbae4bd82006-01-22 10:32:37 -0800619 DBG("invalid ep\n");
620 return -EINVAL;
621 }
622
Harro Haan4f4c5e32010-03-01 18:01:56 +0100623 udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800624
Harro Haan4f4c5e32010-03-01 18:01:56 +0100625 if (!udc || !udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) {
David Brownellbae4bd82006-01-22 10:32:37 -0800626 DBG("invalid device\n");
627 return -EINVAL;
628 }
629
630 _req->status = -EINPROGRESS;
631 _req->actual = 0;
632
Harro Haan4f4c5e32010-03-01 18:01:56 +0100633 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800634
635 /* try to kickstart any empty and idle queue */
636 if (list_empty(&ep->queue) && !ep->stopped) {
637 int is_ep0;
638
639 /*
640 * If this control request has a non-empty DATA stage, this
641 * will start that stage. It works just like a non-control
642 * request (until the status stage starts, maybe early).
643 *
644 * If the data stage is empty, then this starts a successful
645 * IN/STATUS stage. (Unsuccessful ones use set_halt.)
646 */
647 is_ep0 = (ep->ep.name == ep0name);
648 if (is_ep0) {
649 u32 tmp;
650
Harro Haan4f4c5e32010-03-01 18:01:56 +0100651 if (!udc->req_pending) {
David Brownellbae4bd82006-01-22 10:32:37 -0800652 status = -EINVAL;
653 goto done;
654 }
655
656 /*
657 * defer changing CONFG until after the gadget driver
658 * reconfigures the endpoints.
659 */
Harro Haan4f4c5e32010-03-01 18:01:56 +0100660 if (udc->wait_for_config_ack) {
661 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800662 tmp ^= AT91_UDP_CONFG;
663 VDBG("toggle config\n");
Harro Haan4f4c5e32010-03-01 18:01:56 +0100664 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -0800665 }
666 if (req->req.length == 0) {
667ep0_in_status:
668 PACKET("ep0 in/status\n");
669 status = 0;
670 tmp = __raw_readl(ep->creg);
671 tmp &= ~SET_FX;
672 tmp |= CLR_FX | AT91_UDP_TXPKTRDY;
673 __raw_writel(tmp, ep->creg);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100674 udc->req_pending = 0;
David Brownellbae4bd82006-01-22 10:32:37 -0800675 goto done;
676 }
677 }
678
679 if (ep->is_in)
680 status = write_fifo(ep, req);
681 else {
682 status = read_fifo(ep, req);
683
684 /* IN/STATUS stage is otherwise triggered by irq */
685 if (status && is_ep0)
686 goto ep0_in_status;
687 }
688 } else
689 status = 0;
690
691 if (req && !status) {
692 list_add_tail (&req->queue, &ep->queue);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100693 at91_udp_write(udc, AT91_UDP_IER, ep->int_mask);
David Brownellbae4bd82006-01-22 10:32:37 -0800694 }
695done:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100696 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800697 return (status < 0) ? status : 0;
698}
699
700static int at91_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
701{
Harro Haan4f4c5e32010-03-01 18:01:56 +0100702 struct at91_ep *ep;
David Brownellbae4bd82006-01-22 10:32:37 -0800703 struct at91_request *req;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100704 unsigned long flags;
705 struct at91_udc *udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800706
707 ep = container_of(_ep, struct at91_ep, ep);
708 if (!_ep || ep->ep.name == ep0name)
709 return -EINVAL;
710
Harro Haan4f4c5e32010-03-01 18:01:56 +0100711 udc = ep->udc;
712
713 spin_lock_irqsave(&udc->lock, flags);
714
David Brownellbae4bd82006-01-22 10:32:37 -0800715 /* make sure it's actually queued on this endpoint */
716 list_for_each_entry (req, &ep->queue, queue) {
717 if (&req->req == _req)
718 break;
719 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100720 if (&req->req != _req) {
721 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800722 return -EINVAL;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100723 }
David Brownellbae4bd82006-01-22 10:32:37 -0800724
725 done(ep, req, -ECONNRESET);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100726 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800727 return 0;
728}
729
730static int at91_ep_set_halt(struct usb_ep *_ep, int value)
731{
732 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Andrew Victorffd33262006-12-07 22:44:33 -0800733 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800734 u32 __iomem *creg;
735 u32 csr;
736 unsigned long flags;
737 int status = 0;
738
739 if (!_ep || ep->is_iso || !ep->udc->clocked)
740 return -EINVAL;
741
742 creg = ep->creg;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100743 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800744
745 csr = __raw_readl(creg);
746
747 /*
748 * fail with still-busy IN endpoints, ensuring correct sequencing
749 * of data tx then stall. note that the fifo rx bytecount isn't
750 * completely accurate as a tx bytecount.
751 */
752 if (ep->is_in && (!list_empty(&ep->queue) || (csr >> 16) != 0))
753 status = -EAGAIN;
754 else {
755 csr |= CLR_FX;
756 csr &= ~SET_FX;
757 if (value) {
758 csr |= AT91_UDP_FORCESTALL;
759 VDBG("halt %s\n", ep->ep.name);
760 } else {
Andrew Victorffd33262006-12-07 22:44:33 -0800761 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
762 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800763 csr &= ~AT91_UDP_FORCESTALL;
764 }
765 __raw_writel(csr, creg);
766 }
767
Harro Haan4f4c5e32010-03-01 18:01:56 +0100768 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800769 return status;
770}
771
David Brownell398acce2007-02-15 18:47:17 -0800772static const struct usb_ep_ops at91_ep_ops = {
David Brownellbae4bd82006-01-22 10:32:37 -0800773 .enable = at91_ep_enable,
774 .disable = at91_ep_disable,
775 .alloc_request = at91_ep_alloc_request,
776 .free_request = at91_ep_free_request,
David Brownellbae4bd82006-01-22 10:32:37 -0800777 .queue = at91_ep_queue,
778 .dequeue = at91_ep_dequeue,
779 .set_halt = at91_ep_set_halt,
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200780 /* there's only imprecise fifo status reporting */
David Brownellbae4bd82006-01-22 10:32:37 -0800781};
782
783/*-------------------------------------------------------------------------*/
784
785static int at91_get_frame(struct usb_gadget *gadget)
786{
Andrew Victorffd33262006-12-07 22:44:33 -0800787 struct at91_udc *udc = to_udc(gadget);
788
David Brownellbae4bd82006-01-22 10:32:37 -0800789 if (!to_udc(gadget)->clocked)
790 return -EINVAL;
Andrew Victorffd33262006-12-07 22:44:33 -0800791 return at91_udp_read(udc, AT91_UDP_FRM_NUM) & AT91_UDP_NUM;
David Brownellbae4bd82006-01-22 10:32:37 -0800792}
793
794static int at91_wakeup(struct usb_gadget *gadget)
795{
796 struct at91_udc *udc = to_udc(gadget);
797 u32 glbstate;
798 int status = -EINVAL;
799 unsigned long flags;
800
Harvey Harrison441b62c2008-03-03 16:08:34 -0800801 DBG("%s\n", __func__ );
Harro Haan4f4c5e32010-03-01 18:01:56 +0100802 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800803
804 if (!udc->clocked || !udc->suspended)
805 goto done;
806
807 /* NOTE: some "early versions" handle ESR differently ... */
808
Andrew Victorffd33262006-12-07 22:44:33 -0800809 glbstate = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800810 if (!(glbstate & AT91_UDP_ESR))
811 goto done;
812 glbstate |= AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -0800813 at91_udp_write(udc, AT91_UDP_GLB_STAT, glbstate);
David Brownellbae4bd82006-01-22 10:32:37 -0800814
815done:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100816 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800817 return status;
818}
819
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300820/* reinit == restore initial software state */
David Brownellbae4bd82006-01-22 10:32:37 -0800821static void udc_reinit(struct at91_udc *udc)
822{
823 u32 i;
824
825 INIT_LIST_HEAD(&udc->gadget.ep_list);
826 INIT_LIST_HEAD(&udc->gadget.ep0->ep_list);
827
828 for (i = 0; i < NUM_ENDPOINTS; i++) {
829 struct at91_ep *ep = &udc->ep[i];
830
831 if (i != 0)
832 list_add_tail(&ep->ep.ep_list, &udc->gadget.ep_list);
Ido Shayevitz5a6506f2012-03-12 20:25:26 +0200833 ep->ep.desc = NULL;
David Brownellbae4bd82006-01-22 10:32:37 -0800834 ep->stopped = 0;
835 ep->fifo_bank = 0;
Robert Baldygae117e742013-12-13 12:23:38 +0100836 usb_ep_set_maxpacket_limit(&ep->ep, ep->maxpacket);
Andrew Victorffd33262006-12-07 22:44:33 -0800837 ep->creg = (void __iomem *) udc->udp_baseaddr + AT91_UDP_CSR(i);
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200838 /* initialize one queue per endpoint */
David Brownellbae4bd82006-01-22 10:32:37 -0800839 INIT_LIST_HEAD(&ep->queue);
840 }
841}
842
Peter Chen236e5062014-11-06 14:28:02 +0800843static void reset_gadget(struct at91_udc *udc)
844{
845 struct usb_gadget_driver *driver = udc->driver;
846 int i;
847
848 if (udc->gadget.speed == USB_SPEED_UNKNOWN)
849 driver = NULL;
850 udc->gadget.speed = USB_SPEED_UNKNOWN;
851 udc->suspended = 0;
852
853 for (i = 0; i < NUM_ENDPOINTS; i++) {
854 struct at91_ep *ep = &udc->ep[i];
855
856 ep->stopped = 1;
857 nuke(ep, -ESHUTDOWN);
858 }
859 if (driver) {
860 spin_unlock(&udc->lock);
861 usb_gadget_udc_reset(&udc->gadget, driver);
862 spin_lock(&udc->lock);
863 }
864
865 udc_reinit(udc);
866}
867
David Brownellbae4bd82006-01-22 10:32:37 -0800868static void stop_activity(struct at91_udc *udc)
869{
870 struct usb_gadget_driver *driver = udc->driver;
871 int i;
872
873 if (udc->gadget.speed == USB_SPEED_UNKNOWN)
874 driver = NULL;
875 udc->gadget.speed = USB_SPEED_UNKNOWN;
David Brownell8b2e7662006-07-05 02:38:56 -0700876 udc->suspended = 0;
David Brownellbae4bd82006-01-22 10:32:37 -0800877
878 for (i = 0; i < NUM_ENDPOINTS; i++) {
879 struct at91_ep *ep = &udc->ep[i];
880 ep->stopped = 1;
881 nuke(ep, -ESHUTDOWN);
882 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100883 if (driver) {
884 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -0800885 driver->disconnect(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100886 spin_lock(&udc->lock);
887 }
David Brownellbae4bd82006-01-22 10:32:37 -0800888
889 udc_reinit(udc);
890}
891
892static void clk_on(struct at91_udc *udc)
893{
894 if (udc->clocked)
895 return;
896 udc->clocked = 1;
Boris BREZILLONc0aefc72013-08-02 10:37:34 +0200897
Ronald Wahlb2ba27a2014-11-19 16:37:27 +0100898 if (IS_ENABLED(CONFIG_COMMON_CLK))
899 clk_enable(udc->uclk);
900 clk_enable(udc->iclk);
901 clk_enable(udc->fclk);
David Brownellbae4bd82006-01-22 10:32:37 -0800902}
903
904static void clk_off(struct at91_udc *udc)
905{
906 if (!udc->clocked)
907 return;
908 udc->clocked = 0;
909 udc->gadget.speed = USB_SPEED_UNKNOWN;
Ronald Wahlb2ba27a2014-11-19 16:37:27 +0100910 clk_disable(udc->fclk);
911 clk_disable(udc->iclk);
Boris BREZILLONc0aefc72013-08-02 10:37:34 +0200912 if (IS_ENABLED(CONFIG_COMMON_CLK))
Ronald Wahlb2ba27a2014-11-19 16:37:27 +0100913 clk_disable(udc->uclk);
David Brownellbae4bd82006-01-22 10:32:37 -0800914}
915
916/*
917 * activate/deactivate link with host; minimize power usage for
918 * inactive links by cutting clocks and transceiver power.
919 */
920static void pullup(struct at91_udc *udc, int is_on)
921{
David Brownellf3db6e82008-01-05 13:21:43 -0800922 int active = !udc->board.pullup_active_low;
923
David Brownellbae4bd82006-01-22 10:32:37 -0800924 if (!udc->enabled || !udc->vbus)
925 is_on = 0;
926 DBG("%sactive\n", is_on ? "" : "in");
Andrew Victorffd33262006-12-07 22:44:33 -0800927
David Brownellbae4bd82006-01-22 10:32:37 -0800928 if (is_on) {
929 clk_on(udc);
Nicolas Ferre08cbc702007-12-13 15:52:58 -0800930 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXRSM);
Andrew Victorffd33262006-12-07 22:44:33 -0800931 at91_udp_write(udc, AT91_UDP_TXVC, 0);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800932 if (cpu_is_at91rm9200())
David Brownellf3db6e82008-01-05 13:21:43 -0800933 gpio_set_value(udc->board.pullup_pin, active);
sedji gaouaou61352662008-07-10 10:15:35 +0100934 else if (cpu_is_at91sam9260() || cpu_is_at91sam9263() || cpu_is_at91sam9g20()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800935 u32 txvc = at91_udp_read(udc, AT91_UDP_TXVC);
936
937 txvc |= AT91_UDP_TXVC_PUON;
938 at91_udp_write(udc, AT91_UDP_TXVC, txvc);
Hong Xu23f6d912009-09-25 12:24:12 +0200939 } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800940 u32 usbpucr;
941
Jean-Christophe PLAGNIOL-VILLARD4342d642011-11-27 23:15:50 +0800942 usbpucr = at91_matrix_read(AT91_MATRIX_USBPUCR);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800943 usbpucr |= AT91_MATRIX_USBPUCR_PUON;
Jean-Christophe PLAGNIOL-VILLARD4342d642011-11-27 23:15:50 +0800944 at91_matrix_write(AT91_MATRIX_USBPUCR, usbpucr);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800945 }
Andrew Victorffd33262006-12-07 22:44:33 -0800946 } else {
David Brownellbae4bd82006-01-22 10:32:37 -0800947 stop_activity(udc);
Nicolas Ferre08cbc702007-12-13 15:52:58 -0800948 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXRSM);
Andrew Victorffd33262006-12-07 22:44:33 -0800949 at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800950 if (cpu_is_at91rm9200())
David Brownellf3db6e82008-01-05 13:21:43 -0800951 gpio_set_value(udc->board.pullup_pin, !active);
sedji gaouaou61352662008-07-10 10:15:35 +0100952 else if (cpu_is_at91sam9260() || cpu_is_at91sam9263() || cpu_is_at91sam9g20()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800953 u32 txvc = at91_udp_read(udc, AT91_UDP_TXVC);
954
955 txvc &= ~AT91_UDP_TXVC_PUON;
956 at91_udp_write(udc, AT91_UDP_TXVC, txvc);
Hong Xu23f6d912009-09-25 12:24:12 +0200957 } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
Andrew Victor29ba4b52006-12-07 22:44:38 -0800958 u32 usbpucr;
959
Jean-Christophe PLAGNIOL-VILLARD4342d642011-11-27 23:15:50 +0800960 usbpucr = at91_matrix_read(AT91_MATRIX_USBPUCR);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800961 usbpucr &= ~AT91_MATRIX_USBPUCR_PUON;
Jean-Christophe PLAGNIOL-VILLARD4342d642011-11-27 23:15:50 +0800962 at91_matrix_write(AT91_MATRIX_USBPUCR, usbpucr);
Andrew Victor29ba4b52006-12-07 22:44:38 -0800963 }
David Brownellbae4bd82006-01-22 10:32:37 -0800964 clk_off(udc);
David Brownellbae4bd82006-01-22 10:32:37 -0800965 }
966}
967
968/* vbus is here! turn everything on that's ready */
969static int at91_vbus_session(struct usb_gadget *gadget, int is_active)
970{
971 struct at91_udc *udc = to_udc(gadget);
972 unsigned long flags;
973
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200974 /* VDBG("vbus %s\n", is_active ? "on" : "off"); */
Harro Haan4f4c5e32010-03-01 18:01:56 +0100975 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800976 udc->vbus = (is_active != 0);
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -0800977 if (udc->driver)
978 pullup(udc, is_active);
979 else
980 pullup(udc, 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100981 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800982 return 0;
983}
984
985static int at91_pullup(struct usb_gadget *gadget, int is_on)
986{
987 struct at91_udc *udc = to_udc(gadget);
988 unsigned long flags;
989
Harro Haan4f4c5e32010-03-01 18:01:56 +0100990 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800991 udc->enabled = is_on = !!is_on;
992 pullup(udc, is_on);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100993 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800994 return 0;
995}
996
997static int at91_set_selfpowered(struct usb_gadget *gadget, int is_on)
998{
999 struct at91_udc *udc = to_udc(gadget);
1000 unsigned long flags;
1001
Harro Haan4f4c5e32010-03-01 18:01:56 +01001002 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001003 udc->selfpowered = (is_on != 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001004 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001005 return 0;
1006}
1007
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +01001008static int at91_start(struct usb_gadget *gadget,
1009 struct usb_gadget_driver *driver);
Felipe Balbi22835b82014-10-17 12:05:12 -05001010static int at91_stop(struct usb_gadget *gadget);
1011
David Brownellbae4bd82006-01-22 10:32:37 -08001012static const struct usb_gadget_ops at91_udc_ops = {
1013 .get_frame = at91_get_frame,
1014 .wakeup = at91_wakeup,
1015 .set_selfpowered = at91_set_selfpowered,
1016 .vbus_session = at91_vbus_session,
1017 .pullup = at91_pullup,
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +01001018 .udc_start = at91_start,
1019 .udc_stop = at91_stop,
David Brownellbae4bd82006-01-22 10:32:37 -08001020
1021 /*
1022 * VBUS-powered devices may also also want to support bigger
1023 * power budgets after an appropriate SET_CONFIGURATION.
1024 */
Robert Schwebel1a8060d2011-10-06 21:36:26 +02001025 /* .vbus_power = at91_vbus_power, */
David Brownellbae4bd82006-01-22 10:32:37 -08001026};
1027
1028/*-------------------------------------------------------------------------*/
1029
1030static int handle_ep(struct at91_ep *ep)
1031{
1032 struct at91_request *req;
1033 u32 __iomem *creg = ep->creg;
1034 u32 csr = __raw_readl(creg);
1035
1036 if (!list_empty(&ep->queue))
1037 req = list_entry(ep->queue.next,
1038 struct at91_request, queue);
1039 else
1040 req = NULL;
1041
1042 if (ep->is_in) {
1043 if (csr & (AT91_UDP_STALLSENT | AT91_UDP_TXCOMP)) {
1044 csr |= CLR_FX;
1045 csr &= ~(SET_FX | AT91_UDP_STALLSENT | AT91_UDP_TXCOMP);
1046 __raw_writel(csr, creg);
1047 }
1048 if (req)
1049 return write_fifo(ep, req);
1050
1051 } else {
1052 if (csr & AT91_UDP_STALLSENT) {
1053 /* STALLSENT bit == ISOERR */
1054 if (ep->is_iso && req)
1055 req->req.status = -EILSEQ;
1056 csr |= CLR_FX;
1057 csr &= ~(SET_FX | AT91_UDP_STALLSENT);
1058 __raw_writel(csr, creg);
1059 csr = __raw_readl(creg);
1060 }
1061 if (req && (csr & RX_DATA_READY))
1062 return read_fifo(ep, req);
1063 }
1064 return 0;
1065}
1066
1067union setup {
1068 u8 raw[8];
1069 struct usb_ctrlrequest r;
1070};
1071
1072static void handle_setup(struct at91_udc *udc, struct at91_ep *ep, u32 csr)
1073{
1074 u32 __iomem *creg = ep->creg;
1075 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
1076 unsigned rxcount, i = 0;
1077 u32 tmp;
1078 union setup pkt;
1079 int status = 0;
1080
1081 /* read and ack SETUP; hard-fail for bogus packets */
1082 rxcount = (csr & AT91_UDP_RXBYTECNT) >> 16;
1083 if (likely(rxcount == 8)) {
1084 while (rxcount--)
1085 pkt.raw[i++] = __raw_readb(dreg);
1086 if (pkt.r.bRequestType & USB_DIR_IN) {
1087 csr |= AT91_UDP_DIR;
1088 ep->is_in = 1;
1089 } else {
1090 csr &= ~AT91_UDP_DIR;
1091 ep->is_in = 0;
1092 }
1093 } else {
Robert Schwebel1a8060d2011-10-06 21:36:26 +02001094 /* REVISIT this happens sometimes under load; why?? */
David Brownellbae4bd82006-01-22 10:32:37 -08001095 ERR("SETUP len %d, csr %08x\n", rxcount, csr);
1096 status = -EINVAL;
1097 }
1098 csr |= CLR_FX;
1099 csr &= ~(SET_FX | AT91_UDP_RXSETUP);
1100 __raw_writel(csr, creg);
1101 udc->wait_for_addr_ack = 0;
1102 udc->wait_for_config_ack = 0;
1103 ep->stopped = 0;
1104 if (unlikely(status != 0))
1105 goto stall;
1106
1107#define w_index le16_to_cpu(pkt.r.wIndex)
1108#define w_value le16_to_cpu(pkt.r.wValue)
1109#define w_length le16_to_cpu(pkt.r.wLength)
1110
1111 VDBG("SETUP %02x.%02x v%04x i%04x l%04x\n",
1112 pkt.r.bRequestType, pkt.r.bRequest,
1113 w_value, w_index, w_length);
1114
1115 /*
1116 * A few standard requests get handled here, ones that touch
1117 * hardware ... notably for device and endpoint features.
1118 */
1119 udc->req_pending = 1;
1120 csr = __raw_readl(creg);
1121 csr |= CLR_FX;
1122 csr &= ~SET_FX;
1123 switch ((pkt.r.bRequestType << 8) | pkt.r.bRequest) {
1124
1125 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1126 | USB_REQ_SET_ADDRESS:
1127 __raw_writel(csr | AT91_UDP_TXPKTRDY, creg);
1128 udc->addr = w_value;
1129 udc->wait_for_addr_ack = 1;
1130 udc->req_pending = 0;
1131 /* FADDR is set later, when we ack host STATUS */
1132 return;
1133
1134 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1135 | USB_REQ_SET_CONFIGURATION:
Andrew Victorffd33262006-12-07 22:44:33 -08001136 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_CONFG;
David Brownellbae4bd82006-01-22 10:32:37 -08001137 if (pkt.r.wValue)
1138 udc->wait_for_config_ack = (tmp == 0);
1139 else
1140 udc->wait_for_config_ack = (tmp != 0);
1141 if (udc->wait_for_config_ack)
1142 VDBG("wait for config\n");
1143 /* CONFG is toggled later, if gadget driver succeeds */
1144 break;
1145
1146 /*
1147 * Hosts may set or clear remote wakeup status, and
1148 * devices may report they're VBUS powered.
1149 */
1150 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1151 | USB_REQ_GET_STATUS:
1152 tmp = (udc->selfpowered << USB_DEVICE_SELF_POWERED);
Andrew Victorffd33262006-12-07 22:44:33 -08001153 if (at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_ESR)
David Brownellbae4bd82006-01-22 10:32:37 -08001154 tmp |= (1 << USB_DEVICE_REMOTE_WAKEUP);
1155 PACKET("get device status\n");
1156 __raw_writeb(tmp, dreg);
1157 __raw_writeb(0, dreg);
1158 goto write_in;
1159 /* then STATUS starts later, automatically */
1160 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1161 | USB_REQ_SET_FEATURE:
1162 if (w_value != USB_DEVICE_REMOTE_WAKEUP)
1163 goto stall;
Andrew Victorffd33262006-12-07 22:44:33 -08001164 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001165 tmp |= AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -08001166 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001167 goto succeed;
1168 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1169 | USB_REQ_CLEAR_FEATURE:
1170 if (w_value != USB_DEVICE_REMOTE_WAKEUP)
1171 goto stall;
Andrew Victorffd33262006-12-07 22:44:33 -08001172 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001173 tmp &= ~AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -08001174 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001175 goto succeed;
1176
1177 /*
1178 * Interfaces have no feature settings; this is pretty useless.
1179 * we won't even insist the interface exists...
1180 */
1181 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1182 | USB_REQ_GET_STATUS:
1183 PACKET("get interface status\n");
1184 __raw_writeb(0, dreg);
1185 __raw_writeb(0, dreg);
1186 goto write_in;
1187 /* then STATUS starts later, automatically */
1188 case ((USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1189 | USB_REQ_SET_FEATURE:
1190 case ((USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1191 | USB_REQ_CLEAR_FEATURE:
1192 goto stall;
1193
1194 /*
1195 * Hosts may clear bulk/intr endpoint halt after the gadget
1196 * driver sets it (not widely used); or set it (for testing)
1197 */
1198 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1199 | USB_REQ_GET_STATUS:
1200 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1201 ep = &udc->ep[tmp];
Ido Shayevitz5a6506f2012-03-12 20:25:26 +02001202 if (tmp >= NUM_ENDPOINTS || (tmp && !ep->ep.desc))
David Brownellbae4bd82006-01-22 10:32:37 -08001203 goto stall;
1204
1205 if (tmp) {
1206 if ((w_index & USB_DIR_IN)) {
1207 if (!ep->is_in)
1208 goto stall;
1209 } else if (ep->is_in)
1210 goto stall;
1211 }
1212 PACKET("get %s status\n", ep->ep.name);
1213 if (__raw_readl(ep->creg) & AT91_UDP_FORCESTALL)
1214 tmp = (1 << USB_ENDPOINT_HALT);
1215 else
1216 tmp = 0;
1217 __raw_writeb(tmp, dreg);
1218 __raw_writeb(0, dreg);
1219 goto write_in;
1220 /* then STATUS starts later, automatically */
1221 case ((USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1222 | USB_REQ_SET_FEATURE:
1223 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1224 ep = &udc->ep[tmp];
David Brownell1440e092007-12-09 22:53:09 -08001225 if (w_value != USB_ENDPOINT_HALT || tmp >= NUM_ENDPOINTS)
David Brownellbae4bd82006-01-22 10:32:37 -08001226 goto stall;
Ido Shayevitz5a6506f2012-03-12 20:25:26 +02001227 if (!ep->ep.desc || ep->is_iso)
David Brownellbae4bd82006-01-22 10:32:37 -08001228 goto stall;
1229 if ((w_index & USB_DIR_IN)) {
1230 if (!ep->is_in)
1231 goto stall;
1232 } else if (ep->is_in)
1233 goto stall;
1234
1235 tmp = __raw_readl(ep->creg);
1236 tmp &= ~SET_FX;
1237 tmp |= CLR_FX | AT91_UDP_FORCESTALL;
1238 __raw_writel(tmp, ep->creg);
1239 goto succeed;
1240 case ((USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1241 | USB_REQ_CLEAR_FEATURE:
1242 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1243 ep = &udc->ep[tmp];
David Brownell1440e092007-12-09 22:53:09 -08001244 if (w_value != USB_ENDPOINT_HALT || tmp >= NUM_ENDPOINTS)
David Brownellbae4bd82006-01-22 10:32:37 -08001245 goto stall;
1246 if (tmp == 0)
1247 goto succeed;
Ido Shayevitz5a6506f2012-03-12 20:25:26 +02001248 if (!ep->ep.desc || ep->is_iso)
David Brownellbae4bd82006-01-22 10:32:37 -08001249 goto stall;
1250 if ((w_index & USB_DIR_IN)) {
1251 if (!ep->is_in)
1252 goto stall;
1253 } else if (ep->is_in)
1254 goto stall;
1255
Andrew Victorffd33262006-12-07 22:44:33 -08001256 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
1257 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -08001258 tmp = __raw_readl(ep->creg);
1259 tmp |= CLR_FX;
1260 tmp &= ~(SET_FX | AT91_UDP_FORCESTALL);
1261 __raw_writel(tmp, ep->creg);
1262 if (!list_empty(&ep->queue))
1263 handle_ep(ep);
1264 goto succeed;
1265 }
1266
1267#undef w_value
1268#undef w_index
1269#undef w_length
1270
1271 /* pass request up to the gadget driver */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001272 if (udc->driver) {
1273 spin_unlock(&udc->lock);
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -08001274 status = udc->driver->setup(&udc->gadget, &pkt.r);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001275 spin_lock(&udc->lock);
1276 }
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -08001277 else
1278 status = -ENODEV;
David Brownellbae4bd82006-01-22 10:32:37 -08001279 if (status < 0) {
1280stall:
1281 VDBG("req %02x.%02x protocol STALL; stat %d\n",
1282 pkt.r.bRequestType, pkt.r.bRequest, status);
1283 csr |= AT91_UDP_FORCESTALL;
1284 __raw_writel(csr, creg);
1285 udc->req_pending = 0;
1286 }
1287 return;
1288
1289succeed:
1290 /* immediate successful (IN) STATUS after zero length DATA */
1291 PACKET("ep0 in/status\n");
1292write_in:
1293 csr |= AT91_UDP_TXPKTRDY;
1294 __raw_writel(csr, creg);
1295 udc->req_pending = 0;
David Brownellbae4bd82006-01-22 10:32:37 -08001296}
1297
1298static void handle_ep0(struct at91_udc *udc)
1299{
1300 struct at91_ep *ep0 = &udc->ep[0];
1301 u32 __iomem *creg = ep0->creg;
1302 u32 csr = __raw_readl(creg);
1303 struct at91_request *req;
1304
1305 if (unlikely(csr & AT91_UDP_STALLSENT)) {
1306 nuke(ep0, -EPROTO);
1307 udc->req_pending = 0;
1308 csr |= CLR_FX;
1309 csr &= ~(SET_FX | AT91_UDP_STALLSENT | AT91_UDP_FORCESTALL);
1310 __raw_writel(csr, creg);
1311 VDBG("ep0 stalled\n");
1312 csr = __raw_readl(creg);
1313 }
1314 if (csr & AT91_UDP_RXSETUP) {
1315 nuke(ep0, 0);
1316 udc->req_pending = 0;
1317 handle_setup(udc, ep0, csr);
1318 return;
1319 }
1320
1321 if (list_empty(&ep0->queue))
1322 req = NULL;
1323 else
1324 req = list_entry(ep0->queue.next, struct at91_request, queue);
1325
1326 /* host ACKed an IN packet that we sent */
1327 if (csr & AT91_UDP_TXCOMP) {
1328 csr |= CLR_FX;
1329 csr &= ~(SET_FX | AT91_UDP_TXCOMP);
1330
1331 /* write more IN DATA? */
1332 if (req && ep0->is_in) {
1333 if (handle_ep(ep0))
1334 udc->req_pending = 0;
1335
1336 /*
1337 * Ack after:
1338 * - last IN DATA packet (including GET_STATUS)
1339 * - IN/STATUS for OUT DATA
1340 * - IN/STATUS for any zero-length DATA stage
1341 * except for the IN DATA case, the host should send
1342 * an OUT status later, which we'll ack.
1343 */
1344 } else {
1345 udc->req_pending = 0;
1346 __raw_writel(csr, creg);
1347
1348 /*
1349 * SET_ADDRESS takes effect only after the STATUS
1350 * (to the original address) gets acked.
1351 */
1352 if (udc->wait_for_addr_ack) {
1353 u32 tmp;
1354
Andrew Victorffd33262006-12-07 22:44:33 -08001355 at91_udp_write(udc, AT91_UDP_FADDR,
David Brownell8b2e7662006-07-05 02:38:56 -07001356 AT91_UDP_FEN | udc->addr);
Andrew Victorffd33262006-12-07 22:44:33 -08001357 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001358 tmp &= ~AT91_UDP_FADDEN;
1359 if (udc->addr)
1360 tmp |= AT91_UDP_FADDEN;
Andrew Victorffd33262006-12-07 22:44:33 -08001361 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001362
1363 udc->wait_for_addr_ack = 0;
1364 VDBG("address %d\n", udc->addr);
1365 }
1366 }
1367 }
1368
1369 /* OUT packet arrived ... */
1370 else if (csr & AT91_UDP_RX_DATA_BK0) {
1371 csr |= CLR_FX;
1372 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
1373
1374 /* OUT DATA stage */
1375 if (!ep0->is_in) {
1376 if (req) {
1377 if (handle_ep(ep0)) {
1378 /* send IN/STATUS */
1379 PACKET("ep0 in/status\n");
1380 csr = __raw_readl(creg);
1381 csr &= ~SET_FX;
1382 csr |= CLR_FX | AT91_UDP_TXPKTRDY;
1383 __raw_writel(csr, creg);
1384 udc->req_pending = 0;
1385 }
1386 } else if (udc->req_pending) {
1387 /*
1388 * AT91 hardware has a hard time with this
1389 * "deferred response" mode for control-OUT
1390 * transfers. (For control-IN it's fine.)
1391 *
1392 * The normal solution leaves OUT data in the
1393 * fifo until the gadget driver is ready.
1394 * We couldn't do that here without disabling
1395 * the IRQ that tells about SETUP packets,
1396 * e.g. when the host gets impatient...
1397 *
1398 * Working around it by copying into a buffer
1399 * would almost be a non-deferred response,
1400 * except that it wouldn't permit reliable
1401 * stalling of the request. Instead, demand
1402 * that gadget drivers not use this mode.
1403 */
1404 DBG("no control-OUT deferred responses!\n");
1405 __raw_writel(csr | AT91_UDP_FORCESTALL, creg);
1406 udc->req_pending = 0;
1407 }
1408
1409 /* STATUS stage for control-IN; ack. */
1410 } else {
1411 PACKET("ep0 out/status ACK\n");
1412 __raw_writel(csr, creg);
1413
1414 /* "early" status stage */
1415 if (req)
1416 done(ep0, req, 0);
1417 }
1418 }
1419}
1420
David Howells7d12e782006-10-05 14:55:46 +01001421static irqreturn_t at91_udc_irq (int irq, void *_udc)
David Brownellbae4bd82006-01-22 10:32:37 -08001422{
1423 struct at91_udc *udc = _udc;
1424 u32 rescans = 5;
Harro Haanc6c35232010-03-01 17:38:37 +01001425 int disable_clock = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001426 unsigned long flags;
1427
1428 spin_lock_irqsave(&udc->lock, flags);
Harro Haanc6c35232010-03-01 17:38:37 +01001429
1430 if (!udc->clocked) {
1431 clk_on(udc);
1432 disable_clock = 1;
1433 }
David Brownellbae4bd82006-01-22 10:32:37 -08001434
1435 while (rescans--) {
David Brownell8b2e7662006-07-05 02:38:56 -07001436 u32 status;
David Brownellbae4bd82006-01-22 10:32:37 -08001437
Andrew Victorffd33262006-12-07 22:44:33 -08001438 status = at91_udp_read(udc, AT91_UDP_ISR)
1439 & at91_udp_read(udc, AT91_UDP_IMR);
David Brownellbae4bd82006-01-22 10:32:37 -08001440 if (!status)
1441 break;
1442
1443 /* USB reset irq: not maskable */
1444 if (status & AT91_UDP_ENDBUSRES) {
Andrew Victorffd33262006-12-07 22:44:33 -08001445 at91_udp_write(udc, AT91_UDP_IDR, ~MINIMUS_INTERRUPTUS);
1446 at91_udp_write(udc, AT91_UDP_IER, MINIMUS_INTERRUPTUS);
David Brownellbae4bd82006-01-22 10:32:37 -08001447 /* Atmel code clears this irq twice */
Andrew Victorffd33262006-12-07 22:44:33 -08001448 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
1449 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
David Brownellbae4bd82006-01-22 10:32:37 -08001450 VDBG("end bus reset\n");
1451 udc->addr = 0;
Peter Chen236e5062014-11-06 14:28:02 +08001452 reset_gadget(udc);
David Brownellbae4bd82006-01-22 10:32:37 -08001453
1454 /* enable ep0 */
Andrew Victorffd33262006-12-07 22:44:33 -08001455 at91_udp_write(udc, AT91_UDP_CSR(0),
David Brownell8b2e7662006-07-05 02:38:56 -07001456 AT91_UDP_EPEDS | AT91_UDP_EPTYPE_CTRL);
David Brownellbae4bd82006-01-22 10:32:37 -08001457 udc->gadget.speed = USB_SPEED_FULL;
1458 udc->suspended = 0;
Andrew Victorffd33262006-12-07 22:44:33 -08001459 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_EP(0));
David Brownellbae4bd82006-01-22 10:32:37 -08001460
1461 /*
1462 * NOTE: this driver keeps clocks off unless the
David Brownell8b2e7662006-07-05 02:38:56 -07001463 * USB host is present. That saves power, but for
1464 * boards that don't support VBUS detection, both
1465 * clocks need to be active most of the time.
David Brownellbae4bd82006-01-22 10:32:37 -08001466 */
1467
1468 /* host initiated suspend (3+ms bus idle) */
1469 } else if (status & AT91_UDP_RXSUSP) {
Andrew Victorffd33262006-12-07 22:44:33 -08001470 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXSUSP);
1471 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXRSM);
1472 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXSUSP);
Robert Schwebel1a8060d2011-10-06 21:36:26 +02001473 /* VDBG("bus suspend\n"); */
David Brownellbae4bd82006-01-22 10:32:37 -08001474 if (udc->suspended)
1475 continue;
1476 udc->suspended = 1;
1477
1478 /*
1479 * NOTE: when suspending a VBUS-powered device, the
1480 * gadget driver should switch into slow clock mode
1481 * and then into standby to avoid drawing more than
1482 * 500uA power (2500uA for some high-power configs).
1483 */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001484 if (udc->driver && udc->driver->suspend) {
1485 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001486 udc->driver->suspend(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001487 spin_lock(&udc->lock);
1488 }
David Brownellbae4bd82006-01-22 10:32:37 -08001489
1490 /* host initiated resume */
1491 } else if (status & AT91_UDP_RXRSM) {
Andrew Victorffd33262006-12-07 22:44:33 -08001492 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXRSM);
1493 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXSUSP);
1494 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXRSM);
Robert Schwebel1a8060d2011-10-06 21:36:26 +02001495 /* VDBG("bus resume\n"); */
David Brownellbae4bd82006-01-22 10:32:37 -08001496 if (!udc->suspended)
1497 continue;
1498 udc->suspended = 0;
1499
1500 /*
1501 * NOTE: for a VBUS-powered device, the gadget driver
1502 * would normally want to switch out of slow clock
1503 * mode into normal mode.
1504 */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001505 if (udc->driver && udc->driver->resume) {
1506 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001507 udc->driver->resume(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001508 spin_lock(&udc->lock);
1509 }
David Brownellbae4bd82006-01-22 10:32:37 -08001510
1511 /* endpoint IRQs are cleared by handling them */
1512 } else {
1513 int i;
1514 unsigned mask = 1;
1515 struct at91_ep *ep = &udc->ep[1];
1516
1517 if (status & mask)
1518 handle_ep0(udc);
1519 for (i = 1; i < NUM_ENDPOINTS; i++) {
1520 mask <<= 1;
1521 if (status & mask)
1522 handle_ep(ep);
1523 ep++;
1524 }
1525 }
1526 }
1527
Harro Haanc6c35232010-03-01 17:38:37 +01001528 if (disable_clock)
1529 clk_off(udc);
1530
Harro Haan4f4c5e32010-03-01 18:01:56 +01001531 spin_unlock_irqrestore(&udc->lock, flags);
1532
David Brownellbae4bd82006-01-22 10:32:37 -08001533 return IRQ_HANDLED;
1534}
1535
1536/*-------------------------------------------------------------------------*/
1537
1538static struct at91_udc controller = {
1539 .gadget = {
David Brownell8b2e7662006-07-05 02:38:56 -07001540 .ops = &at91_udc_ops,
1541 .ep0 = &controller.ep[0].ep,
1542 .name = driver_name,
David Brownellbae4bd82006-01-22 10:32:37 -08001543 },
1544 .ep[0] = {
1545 .ep = {
1546 .name = ep0name,
1547 .ops = &at91_ep_ops,
1548 },
1549 .udc = &controller,
1550 .maxpacket = 8,
David Brownellbae4bd82006-01-22 10:32:37 -08001551 .int_mask = 1 << 0,
1552 },
1553 .ep[1] = {
1554 .ep = {
1555 .name = "ep1",
1556 .ops = &at91_ep_ops,
1557 },
1558 .udc = &controller,
1559 .is_pingpong = 1,
1560 .maxpacket = 64,
David Brownellbae4bd82006-01-22 10:32:37 -08001561 .int_mask = 1 << 1,
1562 },
1563 .ep[2] = {
1564 .ep = {
1565 .name = "ep2",
1566 .ops = &at91_ep_ops,
1567 },
1568 .udc = &controller,
1569 .is_pingpong = 1,
1570 .maxpacket = 64,
David Brownellbae4bd82006-01-22 10:32:37 -08001571 .int_mask = 1 << 2,
1572 },
1573 .ep[3] = {
1574 .ep = {
1575 /* could actually do bulk too */
1576 .name = "ep3-int",
1577 .ops = &at91_ep_ops,
1578 },
1579 .udc = &controller,
1580 .maxpacket = 8,
David Brownellbae4bd82006-01-22 10:32:37 -08001581 .int_mask = 1 << 3,
1582 },
1583 .ep[4] = {
1584 .ep = {
1585 .name = "ep4",
1586 .ops = &at91_ep_ops,
1587 },
1588 .udc = &controller,
1589 .is_pingpong = 1,
1590 .maxpacket = 256,
David Brownellbae4bd82006-01-22 10:32:37 -08001591 .int_mask = 1 << 4,
1592 },
1593 .ep[5] = {
1594 .ep = {
1595 .name = "ep5",
1596 .ops = &at91_ep_ops,
1597 },
1598 .udc = &controller,
1599 .is_pingpong = 1,
1600 .maxpacket = 256,
David Brownellbae4bd82006-01-22 10:32:37 -08001601 .int_mask = 1 << 5,
1602 },
David Brownell8b2e7662006-07-05 02:38:56 -07001603 /* ep6 and ep7 are also reserved (custom silicon might use them) */
David Brownellbae4bd82006-01-22 10:32:37 -08001604};
1605
Ryan Mallon40372422010-07-13 05:09:16 +01001606static void at91_vbus_update(struct at91_udc *udc, unsigned value)
1607{
1608 value ^= udc->board.vbus_active_low;
1609 if (value != udc->vbus)
1610 at91_vbus_session(&udc->gadget, value);
1611}
1612
David Howells7d12e782006-10-05 14:55:46 +01001613static irqreturn_t at91_vbus_irq(int irq, void *_udc)
David Brownellbae4bd82006-01-22 10:32:37 -08001614{
1615 struct at91_udc *udc = _udc;
David Brownellbae4bd82006-01-22 10:32:37 -08001616
1617 /* vbus needs at least brief debouncing */
1618 udelay(10);
Ryan Mallon40372422010-07-13 05:09:16 +01001619 at91_vbus_update(udc, gpio_get_value(udc->board.vbus_pin));
David Brownellbae4bd82006-01-22 10:32:37 -08001620
1621 return IRQ_HANDLED;
1622}
1623
Ryan Mallon40372422010-07-13 05:09:16 +01001624static void at91_vbus_timer_work(struct work_struct *work)
1625{
1626 struct at91_udc *udc = container_of(work, struct at91_udc,
1627 vbus_timer_work);
1628
1629 at91_vbus_update(udc, gpio_get_value_cansleep(udc->board.vbus_pin));
1630
1631 if (!timer_pending(&udc->vbus_timer))
1632 mod_timer(&udc->vbus_timer, jiffies + VBUS_POLL_TIMEOUT);
1633}
1634
1635static void at91_vbus_timer(unsigned long data)
1636{
1637 struct at91_udc *udc = (struct at91_udc *)data;
1638
1639 /*
1640 * If we are polling vbus it is likely that the gpio is on an
1641 * bus such as i2c or spi which may sleep, so schedule some work
1642 * to read the vbus gpio
1643 */
Tejun Heo348409a2012-12-21 17:57:12 -08001644 schedule_work(&udc->vbus_timer_work);
Ryan Mallon40372422010-07-13 05:09:16 +01001645}
1646
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +01001647static int at91_start(struct usb_gadget *gadget,
1648 struct usb_gadget_driver *driver)
David Brownellbae4bd82006-01-22 10:32:37 -08001649{
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +01001650 struct at91_udc *udc;
David Brownellbae4bd82006-01-22 10:32:37 -08001651
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +01001652 udc = container_of(gadget, struct at91_udc, gadget);
David Brownellbae4bd82006-01-22 10:32:37 -08001653 udc->driver = driver;
Alexandre Pereira da Silva65c84ea2012-06-26 11:27:12 -03001654 udc->gadget.dev.of_node = udc->pdev->dev.of_node;
David Brownellbae4bd82006-01-22 10:32:37 -08001655 udc->enabled = 1;
1656 udc->selfpowered = 1;
1657
David Brownellbae4bd82006-01-22 10:32:37 -08001658 return 0;
1659}
David Brownellbae4bd82006-01-22 10:32:37 -08001660
Felipe Balbi22835b82014-10-17 12:05:12 -05001661static int at91_stop(struct usb_gadget *gadget)
David Brownellbae4bd82006-01-22 10:32:37 -08001662{
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +01001663 struct at91_udc *udc;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001664 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001665
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +01001666 udc = container_of(gadget, struct at91_udc, gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001667 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001668 udc->enabled = 0;
Andrew Victorffd33262006-12-07 22:44:33 -08001669 at91_udp_write(udc, AT91_UDP_IDR, ~0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001670 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001671
David Brownellbae4bd82006-01-22 10:32:37 -08001672 udc->driver = NULL;
1673
David Brownellbae4bd82006-01-22 10:32:37 -08001674 return 0;
1675}
David Brownellbae4bd82006-01-22 10:32:37 -08001676
1677/*-------------------------------------------------------------------------*/
1678
1679static void at91udc_shutdown(struct platform_device *dev)
1680{
Harro Haan4f4c5e32010-03-01 18:01:56 +01001681 struct at91_udc *udc = platform_get_drvdata(dev);
1682 unsigned long flags;
1683
David Brownellbae4bd82006-01-22 10:32:37 -08001684 /* force disconnect on reboot */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001685 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001686 pullup(platform_get_drvdata(dev), 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001687 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001688}
1689
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001690static void at91udc_of_init(struct at91_udc *udc,
Jean-Christophe PLAGNIOL-VILLARDd1494a32012-01-28 22:35:36 +08001691 struct device_node *np)
1692{
1693 struct at91_udc_data *board = &udc->board;
1694 u32 val;
1695 enum of_gpio_flags flags;
1696
1697 if (of_property_read_u32(np, "atmel,vbus-polled", &val) == 0)
1698 board->vbus_polled = 1;
1699
1700 board->vbus_pin = of_get_named_gpio_flags(np, "atmel,vbus-gpio", 0,
1701 &flags);
1702 board->vbus_active_low = (flags & OF_GPIO_ACTIVE_LOW) ? 1 : 0;
1703
1704 board->pullup_pin = of_get_named_gpio_flags(np, "atmel,pullup-gpio", 0,
1705 &flags);
1706
1707 board->pullup_active_low = (flags & OF_GPIO_ACTIVE_LOW) ? 1 : 0;
1708}
1709
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001710static int at91udc_probe(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001711{
1712 struct device *dev = &pdev->dev;
1713 struct at91_udc *udc;
1714 int retval;
Andrew Victorffd33262006-12-07 22:44:33 -08001715 struct resource *res;
David Brownellbae4bd82006-01-22 10:32:37 -08001716
Jingoo Hane01ee9f2013-07-30 17:00:51 +09001717 if (!dev_get_platdata(dev) && !pdev->dev.of_node) {
David Brownellbae4bd82006-01-22 10:32:37 -08001718 /* small (so we copy it) but critical! */
1719 DBG("missing platform_data\n");
1720 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()) {
Robert Baldyga0e06bca2014-02-20 09:26:25 +01001762 udc->ep[0].maxpacket = 64;
1763 udc->ep[3].maxpacket = 64;
1764 udc->ep[4].maxpacket = 512;
1765 udc->ep[5].maxpacket = 512;
Hong Xu23f6d912009-09-25 12:24:12 +02001766 } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
Robert Baldyga0e06bca2014-02-20 09:26:25 +01001767 udc->ep[3].maxpacket = 64;
David Brownellbb242802008-05-27 19:24:20 -07001768 } else if (cpu_is_at91sam9263()) {
Robert Baldyga0e06bca2014-02-20 09:26:25 +01001769 udc->ep[0].maxpacket = 64;
1770 udc->ep[3].maxpacket = 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 */
Ronald Wahlb2ba27a2014-11-19 16:37:27 +01001794 if (IS_ENABLED(CONFIG_COMMON_CLK)) {
1795 clk_set_rate(udc->uclk, 48000000);
1796 retval = clk_prepare(udc->uclk);
1797 if (retval)
1798 goto fail1;
1799 }
1800 retval = clk_prepare(udc->fclk);
1801 if (retval)
1802 goto fail1a;
1803
Boris BREZILLON76280832013-06-25 10:12:56 +02001804 retval = clk_prepare_enable(udc->iclk);
1805 if (retval)
Ronald Wahlb2ba27a2014-11-19 16:37:27 +01001806 goto fail1b;
Andrew Victorffd33262006-12-07 22:44:33 -08001807 at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
1808 at91_udp_write(udc, AT91_UDP_IDR, 0xffffffff);
Andrew Victor29ba4b52006-12-07 22:44:38 -08001809 /* Clear all pending interrupts - UDP may be used by bootloader. */
1810 at91_udp_write(udc, AT91_UDP_ICR, 0xffffffff);
Ronald Wahlb2ba27a2014-11-19 16:37:27 +01001811 clk_disable(udc->iclk);
David Brownellbae4bd82006-01-22 10:32:37 -08001812
1813 /* request UDC and maybe VBUS irqs */
David Brownell8b2e7662006-07-05 02:38:56 -07001814 udc->udp_irq = platform_get_irq(pdev, 0);
David Brownellf3db6e82008-01-05 13:21:43 -08001815 retval = request_irq(udc->udp_irq, at91_udc_irq,
Yong Zhangb5dd18d2011-09-07 16:10:52 +08001816 0, driver_name, udc);
David Brownellf3db6e82008-01-05 13:21:43 -08001817 if (retval < 0) {
David Brownell8b2e7662006-07-05 02:38:56 -07001818 DBG("request irq %d failed\n", udc->udp_irq);
Ronald Wahlb2ba27a2014-11-19 16:37:27 +01001819 goto fail1c;
David Brownellbae4bd82006-01-22 10:32:37 -08001820 }
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001821 if (gpio_is_valid(udc->board.vbus_pin)) {
David Brownellf3db6e82008-01-05 13:21:43 -08001822 retval = gpio_request(udc->board.vbus_pin, "udc_vbus");
1823 if (retval < 0) {
1824 DBG("request vbus pin failed\n");
1825 goto fail2;
1826 }
1827 gpio_direction_input(udc->board.vbus_pin);
1828
Andrew Victor29ba4b52006-12-07 22:44:38 -08001829 /*
1830 * Get the initial state of VBUS - we cannot expect
1831 * a pending interrupt.
1832 */
Ryan Mallon40372422010-07-13 05:09:16 +01001833 udc->vbus = gpio_get_value_cansleep(udc->board.vbus_pin) ^
1834 udc->board.vbus_active_low;
1835
1836 if (udc->board.vbus_polled) {
1837 INIT_WORK(&udc->vbus_timer_work, at91_vbus_timer_work);
1838 setup_timer(&udc->vbus_timer, at91_vbus_timer,
1839 (unsigned long)udc);
1840 mod_timer(&udc->vbus_timer,
1841 jiffies + VBUS_POLL_TIMEOUT);
1842 } else {
Nicolas Ferre70756022012-04-16 10:58:12 +02001843 if (request_irq(gpio_to_irq(udc->board.vbus_pin),
1844 at91_vbus_irq, 0, driver_name, udc)) {
Ryan Mallon40372422010-07-13 05:09:16 +01001845 DBG("request vbus irq %d failed\n",
1846 udc->board.vbus_pin);
1847 retval = -EBUSY;
1848 goto fail3;
1849 }
David Brownellbae4bd82006-01-22 10:32:37 -08001850 }
1851 } else {
1852 DBG("no VBUS detection, assuming always-on\n");
1853 udc->vbus = 1;
1854 }
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001855 retval = usb_add_gadget_udc(dev, &udc->gadget);
1856 if (retval)
1857 goto fail4;
David Brownellbae4bd82006-01-22 10:32:37 -08001858 dev_set_drvdata(dev, udc);
David Brownell8b2e7662006-07-05 02:38:56 -07001859 device_init_wakeup(dev, 1);
David Brownellbae4bd82006-01-22 10:32:37 -08001860 create_debug_file(udc);
1861
1862 INFO("%s version %s\n", driver_name, DRIVER_VERSION);
1863 return 0;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001864fail4:
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001865 if (gpio_is_valid(udc->board.vbus_pin) && !udc->board.vbus_polled)
Nicolas Ferre70756022012-04-16 10:58:12 +02001866 free_irq(gpio_to_irq(udc->board.vbus_pin), udc);
David Brownellf3db6e82008-01-05 13:21:43 -08001867fail3:
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001868 if (gpio_is_valid(udc->board.vbus_pin))
David Brownellf3db6e82008-01-05 13:21:43 -08001869 gpio_free(udc->board.vbus_pin);
1870fail2:
1871 free_irq(udc->udp_irq, udc);
Ronald Wahlb2ba27a2014-11-19 16:37:27 +01001872fail1c:
1873 clk_unprepare(udc->iclk);
1874fail1b:
1875 clk_unprepare(udc->fclk);
1876fail1a:
1877 if (IS_ENABLED(CONFIG_COMMON_CLK))
1878 clk_unprepare(udc->uclk);
David Brownellbae4bd82006-01-22 10:32:37 -08001879fail1:
Boris BREZILLONc0aefc72013-08-02 10:37:34 +02001880 if (IS_ENABLED(CONFIG_COMMON_CLK) && !IS_ERR(udc->uclk))
1881 clk_put(udc->uclk);
Boris BREZILLON30ce1982013-08-02 10:37:27 +02001882 if (!IS_ERR(udc->fclk))
1883 clk_put(udc->fclk);
1884 if (!IS_ERR(udc->iclk))
1885 clk_put(udc->iclk);
David Brownellf3db6e82008-01-05 13:21:43 -08001886 iounmap(udc->udp_baseaddr);
1887fail0a:
1888 if (cpu_is_at91rm9200())
1889 gpio_free(udc->board.pullup_pin);
David Brownellbae4bd82006-01-22 10:32:37 -08001890fail0:
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001891 release_mem_region(res->start, resource_size(res));
David Brownellbae4bd82006-01-22 10:32:37 -08001892 DBG("%s probe failed, %d\n", driver_name, retval);
1893 return retval;
1894}
1895
David Brownell398acce2007-02-15 18:47:17 -08001896static int __exit at91udc_remove(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001897{
David Brownell8b2e7662006-07-05 02:38:56 -07001898 struct at91_udc *udc = platform_get_drvdata(pdev);
Andrew Victorffd33262006-12-07 22:44:33 -08001899 struct resource *res;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001900 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001901
1902 DBG("remove\n");
1903
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001904 usb_del_gadget_udc(&udc->gadget);
David Brownell6bea4762006-12-05 03:15:33 -08001905 if (udc->driver)
1906 return -EBUSY;
David Brownellbae4bd82006-01-22 10:32:37 -08001907
Harro Haan4f4c5e32010-03-01 18:01:56 +01001908 spin_lock_irqsave(&udc->lock, flags);
David Brownell6bea4762006-12-05 03:15:33 -08001909 pullup(udc, 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001910 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001911
David Brownell8b2e7662006-07-05 02:38:56 -07001912 device_init_wakeup(&pdev->dev, 0);
David Brownellbae4bd82006-01-22 10:32:37 -08001913 remove_debug_file(udc);
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001914 if (gpio_is_valid(udc->board.vbus_pin)) {
Nicolas Ferre70756022012-04-16 10:58:12 +02001915 free_irq(gpio_to_irq(udc->board.vbus_pin), udc);
David Brownellf3db6e82008-01-05 13:21:43 -08001916 gpio_free(udc->board.vbus_pin);
1917 }
David Brownell8b2e7662006-07-05 02:38:56 -07001918 free_irq(udc->udp_irq, udc);
Andrew Victorffd33262006-12-07 22:44:33 -08001919 iounmap(udc->udp_baseaddr);
David Brownellf3db6e82008-01-05 13:21:43 -08001920
1921 if (cpu_is_at91rm9200())
1922 gpio_free(udc->board.pullup_pin);
1923
Andrew Victorffd33262006-12-07 22:44:33 -08001924 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
H Hartley Sweetend8bb0fd2009-12-14 17:59:22 -05001925 release_mem_region(res->start, resource_size(res));
David Brownellbae4bd82006-01-22 10:32:37 -08001926
Ronald Wahlb2ba27a2014-11-19 16:37:27 +01001927 if (IS_ENABLED(CONFIG_COMMON_CLK))
1928 clk_unprepare(udc->uclk);
1929 clk_unprepare(udc->fclk);
1930 clk_unprepare(udc->iclk);
1931
David Brownellbae4bd82006-01-22 10:32:37 -08001932 clk_put(udc->iclk);
1933 clk_put(udc->fclk);
Boris BREZILLONc0aefc72013-08-02 10:37:34 +02001934 if (IS_ENABLED(CONFIG_COMMON_CLK))
1935 clk_put(udc->uclk);
David Brownellbae4bd82006-01-22 10:32:37 -08001936
1937 return 0;
1938}
1939
1940#ifdef CONFIG_PM
David Brownell8b2e7662006-07-05 02:38:56 -07001941static int at91udc_suspend(struct platform_device *pdev, pm_message_t mesg)
David Brownellbae4bd82006-01-22 10:32:37 -08001942{
David Brownell8b2e7662006-07-05 02:38:56 -07001943 struct at91_udc *udc = platform_get_drvdata(pdev);
1944 int wake = udc->driver && device_may_wakeup(&pdev->dev);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001945 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001946
David Brownell8b2e7662006-07-05 02:38:56 -07001947 /* Unless we can act normally to the host (letting it wake us up
1948 * whenever it has work for us) force disconnect. Wakeup requires
1949 * PLLB for USB events (signaling for reset, wakeup, or incoming
1950 * tokens) and VBUS irqs (on systems which support them).
David Brownellbae4bd82006-01-22 10:32:37 -08001951 */
David Brownell8b2e7662006-07-05 02:38:56 -07001952 if ((!udc->suspended && udc->addr)
1953 || !wake
1954 || at91_suspend_entering_slow_clock()) {
Harro Haan4f4c5e32010-03-01 18:01:56 +01001955 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001956 pullup(udc, 0);
David Brownell66e56ce2007-01-16 12:46:39 -08001957 wake = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001958 spin_unlock_irqrestore(&udc->lock, flags);
David Brownell8b2e7662006-07-05 02:38:56 -07001959 } else
1960 enable_irq_wake(udc->udp_irq);
1961
David Brownell66e56ce2007-01-16 12:46:39 -08001962 udc->active_suspend = wake;
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001963 if (gpio_is_valid(udc->board.vbus_pin) && !udc->board.vbus_polled && wake)
David Brownell66e56ce2007-01-16 12:46:39 -08001964 enable_irq_wake(udc->board.vbus_pin);
David Brownellbae4bd82006-01-22 10:32:37 -08001965 return 0;
1966}
1967
David Brownell8b2e7662006-07-05 02:38:56 -07001968static int at91udc_resume(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001969{
David Brownell8b2e7662006-07-05 02:38:56 -07001970 struct at91_udc *udc = platform_get_drvdata(pdev);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001971 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001972
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001973 if (gpio_is_valid(udc->board.vbus_pin) && !udc->board.vbus_polled &&
Ryan Mallon40372422010-07-13 05:09:16 +01001974 udc->active_suspend)
David Brownell66e56ce2007-01-16 12:46:39 -08001975 disable_irq_wake(udc->board.vbus_pin);
1976
David Brownellbae4bd82006-01-22 10:32:37 -08001977 /* maybe reconnect to host; if so, clocks on */
David Brownell66e56ce2007-01-16 12:46:39 -08001978 if (udc->active_suspend)
1979 disable_irq_wake(udc->udp_irq);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001980 else {
1981 spin_lock_irqsave(&udc->lock, flags);
David Brownell66e56ce2007-01-16 12:46:39 -08001982 pullup(udc, 1);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001983 spin_unlock_irqrestore(&udc->lock, flags);
1984 }
David Brownellbae4bd82006-01-22 10:32:37 -08001985 return 0;
1986}
1987#else
1988#define at91udc_suspend NULL
1989#define at91udc_resume NULL
1990#endif
1991
Jean-Christophe PLAGNIOL-VILLARDd1494a32012-01-28 22:35:36 +08001992#if defined(CONFIG_OF)
1993static const struct of_device_id at91_udc_dt_ids[] = {
1994 { .compatible = "atmel,at91rm9200-udc" },
1995 { /* sentinel */ }
1996};
1997
1998MODULE_DEVICE_TABLE(of, at91_udc_dt_ids);
1999#endif
2000
David Brownelldee497d2007-02-24 13:54:56 -08002001static struct platform_driver at91_udc_driver = {
David Brownell398acce2007-02-15 18:47:17 -08002002 .remove = __exit_p(at91udc_remove),
David Brownellbae4bd82006-01-22 10:32:37 -08002003 .shutdown = at91udc_shutdown,
2004 .suspend = at91udc_suspend,
David Brownell8b2e7662006-07-05 02:38:56 -07002005 .resume = at91udc_resume,
David Brownellbae4bd82006-01-22 10:32:37 -08002006 .driver = {
2007 .name = (char *) driver_name,
2008 .owner = THIS_MODULE,
Jean-Christophe PLAGNIOL-VILLARDd1494a32012-01-28 22:35:36 +08002009 .of_match_table = of_match_ptr(at91_udc_dt_ids),
David Brownellbae4bd82006-01-22 10:32:37 -08002010 },
2011};
2012
Fabio Porcedda52f7a822013-01-09 12:15:28 +01002013module_platform_driver_probe(at91_udc_driver, at91udc_probe);
David Brownellbae4bd82006-01-22 10:32:37 -08002014
David Brownell8b2e7662006-07-05 02:38:56 -07002015MODULE_DESCRIPTION("AT91 udc driver");
David Brownellbae4bd82006-01-22 10:32:37 -08002016MODULE_AUTHOR("Thomas Rathbone, David Brownell");
2017MODULE_LICENSE("GPL");
Kay Sieversf34c32f2008-04-10 21:29:21 -07002018MODULE_ALIAS("platform:at91_udc");