blob: fc4226462f8f5da2f71741a77093b7d69343afe3 [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>
Boris Brezillonf0bceab2015-01-14 17:22:02 +010034#include <linux/regmap.h>
35#include <linux/mfd/syscon.h>
36#include <linux/mfd/syscon/atmel-matrix.h>
David Brownellbae4bd82006-01-22 10:32:37 -080037
38#include "at91_udc.h"
39
40
41/*
42 * This controller is simple and PIO-only. It's used in many AT91-series
David Brownell8b2e7662006-07-05 02:38:56 -070043 * full speed USB controllers, including the at91rm9200 (arm920T, with MMU),
44 * at91sam926x (arm926ejs, with MMU), and several no-mmu versions.
David Brownellbae4bd82006-01-22 10:32:37 -080045 *
Masanari Iidad7558142012-08-22 18:40:21 +090046 * This driver expects the board has been wired with two GPIOs supporting
David Brownellbae4bd82006-01-22 10:32:37 -080047 * a VBUS sensing IRQ, and a D+ pullup. (They may be omitted, but the
David Brownell8b2e7662006-07-05 02:38:56 -070048 * testing hasn't covered such cases.)
49 *
50 * The pullup is most important (so it's integrated on sam926x parts). It
David Brownellbae4bd82006-01-22 10:32:37 -080051 * provides software control over whether the host enumerates the device.
David Brownell8b2e7662006-07-05 02:38:56 -070052 *
David Brownellbae4bd82006-01-22 10:32:37 -080053 * The VBUS sensing helps during enumeration, and allows both USB clocks
54 * (and the transceiver) to stay gated off until they're necessary, saving
David Brownell8b2e7662006-07-05 02:38:56 -070055 * power. During USB suspend, the 48 MHz clock is gated off in hardware;
56 * it may also be gated off by software during some Linux sleep states.
David Brownellbae4bd82006-01-22 10:32:37 -080057 */
58
David Brownell8b2e7662006-07-05 02:38:56 -070059#define DRIVER_VERSION "3 May 2006"
David Brownellbae4bd82006-01-22 10:32:37 -080060
61static const char driver_name [] = "at91_udc";
Boris Brezillona5514d142015-01-14 17:22:04 +010062static const char * const ep_names[] = {
63 "ep0",
64 "ep1",
65 "ep2",
66 "ep3-int",
67 "ep4",
68 "ep5",
69};
70#define ep0name ep_names[0]
David Brownellbae4bd82006-01-22 10:32:37 -080071
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",
Peter Chen73019712015-01-28 16:32:26 +0800180 udc->gadget.is_selfpowered ? "self" : "VBUS",
David Brownellbae4bd82006-01-22 10:32:37 -0800181 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);
Michal Sojka304f7e52014-09-24 22:43:19 +0200271 usb_gadget_giveback_request(&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
Peter Chen236e5062014-11-06 14:28:02 +0800844static void reset_gadget(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;
852 udc->suspended = 0;
853
854 for (i = 0; i < NUM_ENDPOINTS; i++) {
855 struct at91_ep *ep = &udc->ep[i];
856
857 ep->stopped = 1;
858 nuke(ep, -ESHUTDOWN);
859 }
860 if (driver) {
861 spin_unlock(&udc->lock);
862 usb_gadget_udc_reset(&udc->gadget, driver);
863 spin_lock(&udc->lock);
864 }
865
866 udc_reinit(udc);
867}
868
David Brownellbae4bd82006-01-22 10:32:37 -0800869static void stop_activity(struct at91_udc *udc)
870{
871 struct usb_gadget_driver *driver = udc->driver;
872 int i;
873
874 if (udc->gadget.speed == USB_SPEED_UNKNOWN)
875 driver = NULL;
876 udc->gadget.speed = USB_SPEED_UNKNOWN;
David Brownell8b2e7662006-07-05 02:38:56 -0700877 udc->suspended = 0;
David Brownellbae4bd82006-01-22 10:32:37 -0800878
879 for (i = 0; i < NUM_ENDPOINTS; i++) {
880 struct at91_ep *ep = &udc->ep[i];
881 ep->stopped = 1;
882 nuke(ep, -ESHUTDOWN);
883 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100884 if (driver) {
885 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -0800886 driver->disconnect(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100887 spin_lock(&udc->lock);
888 }
David Brownellbae4bd82006-01-22 10:32:37 -0800889
890 udc_reinit(udc);
891}
892
893static void clk_on(struct at91_udc *udc)
894{
895 if (udc->clocked)
896 return;
897 udc->clocked = 1;
Boris BREZILLONc0aefc72013-08-02 10:37:34 +0200898
Ronald Wahlb2ba27a2014-11-19 16:37:27 +0100899 clk_enable(udc->iclk);
900 clk_enable(udc->fclk);
David Brownellbae4bd82006-01-22 10:32:37 -0800901}
902
903static void clk_off(struct at91_udc *udc)
904{
905 if (!udc->clocked)
906 return;
907 udc->clocked = 0;
908 udc->gadget.speed = USB_SPEED_UNKNOWN;
Ronald Wahlb2ba27a2014-11-19 16:37:27 +0100909 clk_disable(udc->fclk);
910 clk_disable(udc->iclk);
David Brownellbae4bd82006-01-22 10:32:37 -0800911}
912
913/*
914 * activate/deactivate link with host; minimize power usage for
915 * inactive links by cutting clocks and transceiver power.
916 */
917static void pullup(struct at91_udc *udc, int is_on)
918{
919 if (!udc->enabled || !udc->vbus)
920 is_on = 0;
921 DBG("%sactive\n", is_on ? "" : "in");
Andrew Victorffd33262006-12-07 22:44:33 -0800922
David Brownellbae4bd82006-01-22 10:32:37 -0800923 if (is_on) {
924 clk_on(udc);
Nicolas Ferre08cbc702007-12-13 15:52:58 -0800925 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXRSM);
Andrew Victorffd33262006-12-07 22:44:33 -0800926 at91_udp_write(udc, AT91_UDP_TXVC, 0);
Andrew Victorffd33262006-12-07 22:44:33 -0800927 } else {
David Brownellbae4bd82006-01-22 10:32:37 -0800928 stop_activity(udc);
Nicolas Ferre08cbc702007-12-13 15:52:58 -0800929 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXRSM);
Andrew Victorffd33262006-12-07 22:44:33 -0800930 at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
David Brownellbae4bd82006-01-22 10:32:37 -0800931 clk_off(udc);
David Brownellbae4bd82006-01-22 10:32:37 -0800932 }
Boris Brezillonf0bceab2015-01-14 17:22:02 +0100933
934 if (udc->caps && udc->caps->pullup)
935 udc->caps->pullup(udc, is_on);
David Brownellbae4bd82006-01-22 10:32:37 -0800936}
937
938/* vbus is here! turn everything on that's ready */
939static int at91_vbus_session(struct usb_gadget *gadget, int is_active)
940{
941 struct at91_udc *udc = to_udc(gadget);
942 unsigned long flags;
943
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200944 /* VDBG("vbus %s\n", is_active ? "on" : "off"); */
Harro Haan4f4c5e32010-03-01 18:01:56 +0100945 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800946 udc->vbus = (is_active != 0);
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -0800947 if (udc->driver)
948 pullup(udc, is_active);
949 else
950 pullup(udc, 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100951 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800952 return 0;
953}
954
955static int at91_pullup(struct usb_gadget *gadget, int is_on)
956{
957 struct at91_udc *udc = to_udc(gadget);
958 unsigned long flags;
959
Harro Haan4f4c5e32010-03-01 18:01:56 +0100960 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800961 udc->enabled = is_on = !!is_on;
962 pullup(udc, is_on);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100963 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800964 return 0;
965}
966
967static int at91_set_selfpowered(struct usb_gadget *gadget, int is_on)
968{
969 struct at91_udc *udc = to_udc(gadget);
970 unsigned long flags;
971
Harro Haan4f4c5e32010-03-01 18:01:56 +0100972 spin_lock_irqsave(&udc->lock, flags);
Peter Chen73019712015-01-28 16:32:26 +0800973 gadget->is_selfpowered = (is_on != 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100974 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800975 return 0;
976}
977
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +0100978static int at91_start(struct usb_gadget *gadget,
979 struct usb_gadget_driver *driver);
Felipe Balbi22835b82014-10-17 12:05:12 -0500980static int at91_stop(struct usb_gadget *gadget);
981
David Brownellbae4bd82006-01-22 10:32:37 -0800982static const struct usb_gadget_ops at91_udc_ops = {
983 .get_frame = at91_get_frame,
984 .wakeup = at91_wakeup,
985 .set_selfpowered = at91_set_selfpowered,
986 .vbus_session = at91_vbus_session,
987 .pullup = at91_pullup,
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +0100988 .udc_start = at91_start,
989 .udc_stop = at91_stop,
David Brownellbae4bd82006-01-22 10:32:37 -0800990
991 /*
992 * VBUS-powered devices may also also want to support bigger
993 * power budgets after an appropriate SET_CONFIGURATION.
994 */
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200995 /* .vbus_power = at91_vbus_power, */
David Brownellbae4bd82006-01-22 10:32:37 -0800996};
997
998/*-------------------------------------------------------------------------*/
999
1000static int handle_ep(struct at91_ep *ep)
1001{
1002 struct at91_request *req;
1003 u32 __iomem *creg = ep->creg;
1004 u32 csr = __raw_readl(creg);
1005
1006 if (!list_empty(&ep->queue))
1007 req = list_entry(ep->queue.next,
1008 struct at91_request, queue);
1009 else
1010 req = NULL;
1011
1012 if (ep->is_in) {
1013 if (csr & (AT91_UDP_STALLSENT | AT91_UDP_TXCOMP)) {
1014 csr |= CLR_FX;
1015 csr &= ~(SET_FX | AT91_UDP_STALLSENT | AT91_UDP_TXCOMP);
1016 __raw_writel(csr, creg);
1017 }
1018 if (req)
1019 return write_fifo(ep, req);
1020
1021 } else {
1022 if (csr & AT91_UDP_STALLSENT) {
1023 /* STALLSENT bit == ISOERR */
1024 if (ep->is_iso && req)
1025 req->req.status = -EILSEQ;
1026 csr |= CLR_FX;
1027 csr &= ~(SET_FX | AT91_UDP_STALLSENT);
1028 __raw_writel(csr, creg);
1029 csr = __raw_readl(creg);
1030 }
1031 if (req && (csr & RX_DATA_READY))
1032 return read_fifo(ep, req);
1033 }
1034 return 0;
1035}
1036
1037union setup {
1038 u8 raw[8];
1039 struct usb_ctrlrequest r;
1040};
1041
1042static void handle_setup(struct at91_udc *udc, struct at91_ep *ep, u32 csr)
1043{
1044 u32 __iomem *creg = ep->creg;
1045 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
1046 unsigned rxcount, i = 0;
1047 u32 tmp;
1048 union setup pkt;
1049 int status = 0;
1050
1051 /* read and ack SETUP; hard-fail for bogus packets */
1052 rxcount = (csr & AT91_UDP_RXBYTECNT) >> 16;
1053 if (likely(rxcount == 8)) {
1054 while (rxcount--)
1055 pkt.raw[i++] = __raw_readb(dreg);
1056 if (pkt.r.bRequestType & USB_DIR_IN) {
1057 csr |= AT91_UDP_DIR;
1058 ep->is_in = 1;
1059 } else {
1060 csr &= ~AT91_UDP_DIR;
1061 ep->is_in = 0;
1062 }
1063 } else {
Robert Schwebel1a8060d2011-10-06 21:36:26 +02001064 /* REVISIT this happens sometimes under load; why?? */
David Brownellbae4bd82006-01-22 10:32:37 -08001065 ERR("SETUP len %d, csr %08x\n", rxcount, csr);
1066 status = -EINVAL;
1067 }
1068 csr |= CLR_FX;
1069 csr &= ~(SET_FX | AT91_UDP_RXSETUP);
1070 __raw_writel(csr, creg);
1071 udc->wait_for_addr_ack = 0;
1072 udc->wait_for_config_ack = 0;
1073 ep->stopped = 0;
1074 if (unlikely(status != 0))
1075 goto stall;
1076
1077#define w_index le16_to_cpu(pkt.r.wIndex)
1078#define w_value le16_to_cpu(pkt.r.wValue)
1079#define w_length le16_to_cpu(pkt.r.wLength)
1080
1081 VDBG("SETUP %02x.%02x v%04x i%04x l%04x\n",
1082 pkt.r.bRequestType, pkt.r.bRequest,
1083 w_value, w_index, w_length);
1084
1085 /*
1086 * A few standard requests get handled here, ones that touch
1087 * hardware ... notably for device and endpoint features.
1088 */
1089 udc->req_pending = 1;
1090 csr = __raw_readl(creg);
1091 csr |= CLR_FX;
1092 csr &= ~SET_FX;
1093 switch ((pkt.r.bRequestType << 8) | pkt.r.bRequest) {
1094
1095 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1096 | USB_REQ_SET_ADDRESS:
1097 __raw_writel(csr | AT91_UDP_TXPKTRDY, creg);
1098 udc->addr = w_value;
1099 udc->wait_for_addr_ack = 1;
1100 udc->req_pending = 0;
1101 /* FADDR is set later, when we ack host STATUS */
1102 return;
1103
1104 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1105 | USB_REQ_SET_CONFIGURATION:
Andrew Victorffd33262006-12-07 22:44:33 -08001106 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_CONFG;
David Brownellbae4bd82006-01-22 10:32:37 -08001107 if (pkt.r.wValue)
1108 udc->wait_for_config_ack = (tmp == 0);
1109 else
1110 udc->wait_for_config_ack = (tmp != 0);
1111 if (udc->wait_for_config_ack)
1112 VDBG("wait for config\n");
1113 /* CONFG is toggled later, if gadget driver succeeds */
1114 break;
1115
1116 /*
1117 * Hosts may set or clear remote wakeup status, and
1118 * devices may report they're VBUS powered.
1119 */
1120 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1121 | USB_REQ_GET_STATUS:
Peter Chen73019712015-01-28 16:32:26 +08001122 tmp = (udc->gadget.is_selfpowered << USB_DEVICE_SELF_POWERED);
Andrew Victorffd33262006-12-07 22:44:33 -08001123 if (at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_ESR)
David Brownellbae4bd82006-01-22 10:32:37 -08001124 tmp |= (1 << USB_DEVICE_REMOTE_WAKEUP);
1125 PACKET("get device status\n");
1126 __raw_writeb(tmp, dreg);
1127 __raw_writeb(0, dreg);
1128 goto write_in;
1129 /* then STATUS starts later, automatically */
1130 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1131 | USB_REQ_SET_FEATURE:
1132 if (w_value != USB_DEVICE_REMOTE_WAKEUP)
1133 goto stall;
Andrew Victorffd33262006-12-07 22:44:33 -08001134 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001135 tmp |= AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -08001136 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001137 goto succeed;
1138 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1139 | USB_REQ_CLEAR_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
1147 /*
1148 * Interfaces have no feature settings; this is pretty useless.
1149 * we won't even insist the interface exists...
1150 */
1151 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1152 | USB_REQ_GET_STATUS:
1153 PACKET("get interface status\n");
1154 __raw_writeb(0, dreg);
1155 __raw_writeb(0, dreg);
1156 goto write_in;
1157 /* then STATUS starts later, automatically */
1158 case ((USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1159 | USB_REQ_SET_FEATURE:
1160 case ((USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1161 | USB_REQ_CLEAR_FEATURE:
1162 goto stall;
1163
1164 /*
1165 * Hosts may clear bulk/intr endpoint halt after the gadget
1166 * driver sets it (not widely used); or set it (for testing)
1167 */
1168 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1169 | USB_REQ_GET_STATUS:
1170 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1171 ep = &udc->ep[tmp];
Ido Shayevitz5a6506f2012-03-12 20:25:26 +02001172 if (tmp >= NUM_ENDPOINTS || (tmp && !ep->ep.desc))
David Brownellbae4bd82006-01-22 10:32:37 -08001173 goto stall;
1174
1175 if (tmp) {
1176 if ((w_index & USB_DIR_IN)) {
1177 if (!ep->is_in)
1178 goto stall;
1179 } else if (ep->is_in)
1180 goto stall;
1181 }
1182 PACKET("get %s status\n", ep->ep.name);
1183 if (__raw_readl(ep->creg) & AT91_UDP_FORCESTALL)
1184 tmp = (1 << USB_ENDPOINT_HALT);
1185 else
1186 tmp = 0;
1187 __raw_writeb(tmp, dreg);
1188 __raw_writeb(0, dreg);
1189 goto write_in;
1190 /* then STATUS starts later, automatically */
1191 case ((USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1192 | USB_REQ_SET_FEATURE:
1193 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1194 ep = &udc->ep[tmp];
David Brownell1440e092007-12-09 22:53:09 -08001195 if (w_value != USB_ENDPOINT_HALT || tmp >= NUM_ENDPOINTS)
David Brownellbae4bd82006-01-22 10:32:37 -08001196 goto stall;
Ido Shayevitz5a6506f2012-03-12 20:25:26 +02001197 if (!ep->ep.desc || ep->is_iso)
David Brownellbae4bd82006-01-22 10:32:37 -08001198 goto stall;
1199 if ((w_index & USB_DIR_IN)) {
1200 if (!ep->is_in)
1201 goto stall;
1202 } else if (ep->is_in)
1203 goto stall;
1204
1205 tmp = __raw_readl(ep->creg);
1206 tmp &= ~SET_FX;
1207 tmp |= CLR_FX | AT91_UDP_FORCESTALL;
1208 __raw_writel(tmp, ep->creg);
1209 goto succeed;
1210 case ((USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1211 | USB_REQ_CLEAR_FEATURE:
1212 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1213 ep = &udc->ep[tmp];
David Brownell1440e092007-12-09 22:53:09 -08001214 if (w_value != USB_ENDPOINT_HALT || tmp >= NUM_ENDPOINTS)
David Brownellbae4bd82006-01-22 10:32:37 -08001215 goto stall;
1216 if (tmp == 0)
1217 goto succeed;
Ido Shayevitz5a6506f2012-03-12 20:25:26 +02001218 if (!ep->ep.desc || ep->is_iso)
David Brownellbae4bd82006-01-22 10:32:37 -08001219 goto stall;
1220 if ((w_index & USB_DIR_IN)) {
1221 if (!ep->is_in)
1222 goto stall;
1223 } else if (ep->is_in)
1224 goto stall;
1225
Andrew Victorffd33262006-12-07 22:44:33 -08001226 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
1227 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -08001228 tmp = __raw_readl(ep->creg);
1229 tmp |= CLR_FX;
1230 tmp &= ~(SET_FX | AT91_UDP_FORCESTALL);
1231 __raw_writel(tmp, ep->creg);
1232 if (!list_empty(&ep->queue))
1233 handle_ep(ep);
1234 goto succeed;
1235 }
1236
1237#undef w_value
1238#undef w_index
1239#undef w_length
1240
1241 /* pass request up to the gadget driver */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001242 if (udc->driver) {
1243 spin_unlock(&udc->lock);
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -08001244 status = udc->driver->setup(&udc->gadget, &pkt.r);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001245 spin_lock(&udc->lock);
1246 }
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -08001247 else
1248 status = -ENODEV;
David Brownellbae4bd82006-01-22 10:32:37 -08001249 if (status < 0) {
1250stall:
1251 VDBG("req %02x.%02x protocol STALL; stat %d\n",
1252 pkt.r.bRequestType, pkt.r.bRequest, status);
1253 csr |= AT91_UDP_FORCESTALL;
1254 __raw_writel(csr, creg);
1255 udc->req_pending = 0;
1256 }
1257 return;
1258
1259succeed:
1260 /* immediate successful (IN) STATUS after zero length DATA */
1261 PACKET("ep0 in/status\n");
1262write_in:
1263 csr |= AT91_UDP_TXPKTRDY;
1264 __raw_writel(csr, creg);
1265 udc->req_pending = 0;
David Brownellbae4bd82006-01-22 10:32:37 -08001266}
1267
1268static void handle_ep0(struct at91_udc *udc)
1269{
1270 struct at91_ep *ep0 = &udc->ep[0];
1271 u32 __iomem *creg = ep0->creg;
1272 u32 csr = __raw_readl(creg);
1273 struct at91_request *req;
1274
1275 if (unlikely(csr & AT91_UDP_STALLSENT)) {
1276 nuke(ep0, -EPROTO);
1277 udc->req_pending = 0;
1278 csr |= CLR_FX;
1279 csr &= ~(SET_FX | AT91_UDP_STALLSENT | AT91_UDP_FORCESTALL);
1280 __raw_writel(csr, creg);
1281 VDBG("ep0 stalled\n");
1282 csr = __raw_readl(creg);
1283 }
1284 if (csr & AT91_UDP_RXSETUP) {
1285 nuke(ep0, 0);
1286 udc->req_pending = 0;
1287 handle_setup(udc, ep0, csr);
1288 return;
1289 }
1290
1291 if (list_empty(&ep0->queue))
1292 req = NULL;
1293 else
1294 req = list_entry(ep0->queue.next, struct at91_request, queue);
1295
1296 /* host ACKed an IN packet that we sent */
1297 if (csr & AT91_UDP_TXCOMP) {
1298 csr |= CLR_FX;
1299 csr &= ~(SET_FX | AT91_UDP_TXCOMP);
1300
1301 /* write more IN DATA? */
1302 if (req && ep0->is_in) {
1303 if (handle_ep(ep0))
1304 udc->req_pending = 0;
1305
1306 /*
1307 * Ack after:
1308 * - last IN DATA packet (including GET_STATUS)
1309 * - IN/STATUS for OUT DATA
1310 * - IN/STATUS for any zero-length DATA stage
1311 * except for the IN DATA case, the host should send
1312 * an OUT status later, which we'll ack.
1313 */
1314 } else {
1315 udc->req_pending = 0;
1316 __raw_writel(csr, creg);
1317
1318 /*
1319 * SET_ADDRESS takes effect only after the STATUS
1320 * (to the original address) gets acked.
1321 */
1322 if (udc->wait_for_addr_ack) {
1323 u32 tmp;
1324
Andrew Victorffd33262006-12-07 22:44:33 -08001325 at91_udp_write(udc, AT91_UDP_FADDR,
David Brownell8b2e7662006-07-05 02:38:56 -07001326 AT91_UDP_FEN | udc->addr);
Andrew Victorffd33262006-12-07 22:44:33 -08001327 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001328 tmp &= ~AT91_UDP_FADDEN;
1329 if (udc->addr)
1330 tmp |= AT91_UDP_FADDEN;
Andrew Victorffd33262006-12-07 22:44:33 -08001331 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001332
1333 udc->wait_for_addr_ack = 0;
1334 VDBG("address %d\n", udc->addr);
1335 }
1336 }
1337 }
1338
1339 /* OUT packet arrived ... */
1340 else if (csr & AT91_UDP_RX_DATA_BK0) {
1341 csr |= CLR_FX;
1342 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
1343
1344 /* OUT DATA stage */
1345 if (!ep0->is_in) {
1346 if (req) {
1347 if (handle_ep(ep0)) {
1348 /* send IN/STATUS */
1349 PACKET("ep0 in/status\n");
1350 csr = __raw_readl(creg);
1351 csr &= ~SET_FX;
1352 csr |= CLR_FX | AT91_UDP_TXPKTRDY;
1353 __raw_writel(csr, creg);
1354 udc->req_pending = 0;
1355 }
1356 } else if (udc->req_pending) {
1357 /*
1358 * AT91 hardware has a hard time with this
1359 * "deferred response" mode for control-OUT
1360 * transfers. (For control-IN it's fine.)
1361 *
1362 * The normal solution leaves OUT data in the
1363 * fifo until the gadget driver is ready.
1364 * We couldn't do that here without disabling
1365 * the IRQ that tells about SETUP packets,
1366 * e.g. when the host gets impatient...
1367 *
1368 * Working around it by copying into a buffer
1369 * would almost be a non-deferred response,
1370 * except that it wouldn't permit reliable
1371 * stalling of the request. Instead, demand
1372 * that gadget drivers not use this mode.
1373 */
1374 DBG("no control-OUT deferred responses!\n");
1375 __raw_writel(csr | AT91_UDP_FORCESTALL, creg);
1376 udc->req_pending = 0;
1377 }
1378
1379 /* STATUS stage for control-IN; ack. */
1380 } else {
1381 PACKET("ep0 out/status ACK\n");
1382 __raw_writel(csr, creg);
1383
1384 /* "early" status stage */
1385 if (req)
1386 done(ep0, req, 0);
1387 }
1388 }
1389}
1390
David Howells7d12e782006-10-05 14:55:46 +01001391static irqreturn_t at91_udc_irq (int irq, void *_udc)
David Brownellbae4bd82006-01-22 10:32:37 -08001392{
1393 struct at91_udc *udc = _udc;
1394 u32 rescans = 5;
Harro Haanc6c35232010-03-01 17:38:37 +01001395 int disable_clock = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001396 unsigned long flags;
1397
1398 spin_lock_irqsave(&udc->lock, flags);
Harro Haanc6c35232010-03-01 17:38:37 +01001399
1400 if (!udc->clocked) {
1401 clk_on(udc);
1402 disable_clock = 1;
1403 }
David Brownellbae4bd82006-01-22 10:32:37 -08001404
1405 while (rescans--) {
David Brownell8b2e7662006-07-05 02:38:56 -07001406 u32 status;
David Brownellbae4bd82006-01-22 10:32:37 -08001407
Andrew Victorffd33262006-12-07 22:44:33 -08001408 status = at91_udp_read(udc, AT91_UDP_ISR)
1409 & at91_udp_read(udc, AT91_UDP_IMR);
David Brownellbae4bd82006-01-22 10:32:37 -08001410 if (!status)
1411 break;
1412
1413 /* USB reset irq: not maskable */
1414 if (status & AT91_UDP_ENDBUSRES) {
Andrew Victorffd33262006-12-07 22:44:33 -08001415 at91_udp_write(udc, AT91_UDP_IDR, ~MINIMUS_INTERRUPTUS);
1416 at91_udp_write(udc, AT91_UDP_IER, MINIMUS_INTERRUPTUS);
David Brownellbae4bd82006-01-22 10:32:37 -08001417 /* Atmel code clears this irq twice */
Andrew Victorffd33262006-12-07 22:44:33 -08001418 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
1419 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
David Brownellbae4bd82006-01-22 10:32:37 -08001420 VDBG("end bus reset\n");
1421 udc->addr = 0;
Peter Chen236e5062014-11-06 14:28:02 +08001422 reset_gadget(udc);
David Brownellbae4bd82006-01-22 10:32:37 -08001423
1424 /* enable ep0 */
Andrew Victorffd33262006-12-07 22:44:33 -08001425 at91_udp_write(udc, AT91_UDP_CSR(0),
David Brownell8b2e7662006-07-05 02:38:56 -07001426 AT91_UDP_EPEDS | AT91_UDP_EPTYPE_CTRL);
David Brownellbae4bd82006-01-22 10:32:37 -08001427 udc->gadget.speed = USB_SPEED_FULL;
1428 udc->suspended = 0;
Andrew Victorffd33262006-12-07 22:44:33 -08001429 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_EP(0));
David Brownellbae4bd82006-01-22 10:32:37 -08001430
1431 /*
1432 * NOTE: this driver keeps clocks off unless the
David Brownell8b2e7662006-07-05 02:38:56 -07001433 * USB host is present. That saves power, but for
1434 * boards that don't support VBUS detection, both
1435 * clocks need to be active most of the time.
David Brownellbae4bd82006-01-22 10:32:37 -08001436 */
1437
1438 /* host initiated suspend (3+ms bus idle) */
1439 } else if (status & AT91_UDP_RXSUSP) {
Andrew Victorffd33262006-12-07 22:44:33 -08001440 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXSUSP);
1441 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXRSM);
1442 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXSUSP);
Robert Schwebel1a8060d2011-10-06 21:36:26 +02001443 /* VDBG("bus suspend\n"); */
David Brownellbae4bd82006-01-22 10:32:37 -08001444 if (udc->suspended)
1445 continue;
1446 udc->suspended = 1;
1447
1448 /*
1449 * NOTE: when suspending a VBUS-powered device, the
1450 * gadget driver should switch into slow clock mode
1451 * and then into standby to avoid drawing more than
1452 * 500uA power (2500uA for some high-power configs).
1453 */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001454 if (udc->driver && udc->driver->suspend) {
1455 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001456 udc->driver->suspend(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001457 spin_lock(&udc->lock);
1458 }
David Brownellbae4bd82006-01-22 10:32:37 -08001459
1460 /* host initiated resume */
1461 } else if (status & AT91_UDP_RXRSM) {
Andrew Victorffd33262006-12-07 22:44:33 -08001462 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXRSM);
1463 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXSUSP);
1464 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXRSM);
Robert Schwebel1a8060d2011-10-06 21:36:26 +02001465 /* VDBG("bus resume\n"); */
David Brownellbae4bd82006-01-22 10:32:37 -08001466 if (!udc->suspended)
1467 continue;
1468 udc->suspended = 0;
1469
1470 /*
1471 * NOTE: for a VBUS-powered device, the gadget driver
1472 * would normally want to switch out of slow clock
1473 * mode into normal mode.
1474 */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001475 if (udc->driver && udc->driver->resume) {
1476 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001477 udc->driver->resume(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001478 spin_lock(&udc->lock);
1479 }
David Brownellbae4bd82006-01-22 10:32:37 -08001480
1481 /* endpoint IRQs are cleared by handling them */
1482 } else {
1483 int i;
1484 unsigned mask = 1;
1485 struct at91_ep *ep = &udc->ep[1];
1486
1487 if (status & mask)
1488 handle_ep0(udc);
1489 for (i = 1; i < NUM_ENDPOINTS; i++) {
1490 mask <<= 1;
1491 if (status & mask)
1492 handle_ep(ep);
1493 ep++;
1494 }
1495 }
1496 }
1497
Harro Haanc6c35232010-03-01 17:38:37 +01001498 if (disable_clock)
1499 clk_off(udc);
1500
Harro Haan4f4c5e32010-03-01 18:01:56 +01001501 spin_unlock_irqrestore(&udc->lock, flags);
1502
David Brownellbae4bd82006-01-22 10:32:37 -08001503 return IRQ_HANDLED;
1504}
1505
1506/*-------------------------------------------------------------------------*/
1507
Ryan Mallon40372422010-07-13 05:09:16 +01001508static void at91_vbus_update(struct at91_udc *udc, unsigned value)
1509{
1510 value ^= udc->board.vbus_active_low;
1511 if (value != udc->vbus)
1512 at91_vbus_session(&udc->gadget, value);
1513}
1514
David Howells7d12e782006-10-05 14:55:46 +01001515static irqreturn_t at91_vbus_irq(int irq, void *_udc)
David Brownellbae4bd82006-01-22 10:32:37 -08001516{
1517 struct at91_udc *udc = _udc;
David Brownellbae4bd82006-01-22 10:32:37 -08001518
1519 /* vbus needs at least brief debouncing */
1520 udelay(10);
Ryan Mallon40372422010-07-13 05:09:16 +01001521 at91_vbus_update(udc, gpio_get_value(udc->board.vbus_pin));
David Brownellbae4bd82006-01-22 10:32:37 -08001522
1523 return IRQ_HANDLED;
1524}
1525
Ryan Mallon40372422010-07-13 05:09:16 +01001526static void at91_vbus_timer_work(struct work_struct *work)
1527{
1528 struct at91_udc *udc = container_of(work, struct at91_udc,
1529 vbus_timer_work);
1530
1531 at91_vbus_update(udc, gpio_get_value_cansleep(udc->board.vbus_pin));
1532
1533 if (!timer_pending(&udc->vbus_timer))
1534 mod_timer(&udc->vbus_timer, jiffies + VBUS_POLL_TIMEOUT);
1535}
1536
1537static void at91_vbus_timer(unsigned long data)
1538{
1539 struct at91_udc *udc = (struct at91_udc *)data;
1540
1541 /*
1542 * If we are polling vbus it is likely that the gpio is on an
1543 * bus such as i2c or spi which may sleep, so schedule some work
1544 * to read the vbus gpio
1545 */
Tejun Heo348409a2012-12-21 17:57:12 -08001546 schedule_work(&udc->vbus_timer_work);
Ryan Mallon40372422010-07-13 05:09:16 +01001547}
1548
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +01001549static int at91_start(struct usb_gadget *gadget,
1550 struct usb_gadget_driver *driver)
David Brownellbae4bd82006-01-22 10:32:37 -08001551{
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +01001552 struct at91_udc *udc;
David Brownellbae4bd82006-01-22 10:32:37 -08001553
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +01001554 udc = container_of(gadget, struct at91_udc, gadget);
David Brownellbae4bd82006-01-22 10:32:37 -08001555 udc->driver = driver;
Alexandre Pereira da Silva65c84ea2012-06-26 11:27:12 -03001556 udc->gadget.dev.of_node = udc->pdev->dev.of_node;
David Brownellbae4bd82006-01-22 10:32:37 -08001557 udc->enabled = 1;
Peter Chen73019712015-01-28 16:32:26 +08001558 udc->gadget.is_selfpowered = 1;
David Brownellbae4bd82006-01-22 10:32:37 -08001559
David Brownellbae4bd82006-01-22 10:32:37 -08001560 return 0;
1561}
David Brownellbae4bd82006-01-22 10:32:37 -08001562
Felipe Balbi22835b82014-10-17 12:05:12 -05001563static int at91_stop(struct usb_gadget *gadget)
David Brownellbae4bd82006-01-22 10:32:37 -08001564{
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +01001565 struct at91_udc *udc;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001566 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001567
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +01001568 udc = container_of(gadget, struct at91_udc, gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001569 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001570 udc->enabled = 0;
Andrew Victorffd33262006-12-07 22:44:33 -08001571 at91_udp_write(udc, AT91_UDP_IDR, ~0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001572 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001573
David Brownellbae4bd82006-01-22 10:32:37 -08001574 udc->driver = NULL;
1575
David Brownellbae4bd82006-01-22 10:32:37 -08001576 return 0;
1577}
David Brownellbae4bd82006-01-22 10:32:37 -08001578
1579/*-------------------------------------------------------------------------*/
1580
1581static void at91udc_shutdown(struct platform_device *dev)
1582{
Harro Haan4f4c5e32010-03-01 18:01:56 +01001583 struct at91_udc *udc = platform_get_drvdata(dev);
1584 unsigned long flags;
1585
David Brownellbae4bd82006-01-22 10:32:37 -08001586 /* force disconnect on reboot */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001587 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001588 pullup(platform_get_drvdata(dev), 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001589 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001590}
1591
Boris Brezillonf0bceab2015-01-14 17:22:02 +01001592static int at91rm9200_udc_init(struct at91_udc *udc)
1593{
1594 struct at91_ep *ep;
1595 int ret;
1596 int i;
1597
1598 for (i = 0; i < NUM_ENDPOINTS; i++) {
1599 ep = &udc->ep[i];
1600
1601 switch (i) {
1602 case 0:
1603 case 3:
1604 ep->maxpacket = 8;
1605 break;
1606 case 1 ... 2:
1607 ep->maxpacket = 64;
1608 break;
1609 case 4 ... 5:
1610 ep->maxpacket = 256;
1611 break;
1612 }
1613 }
1614
1615 if (!gpio_is_valid(udc->board.pullup_pin)) {
1616 DBG("no D+ pullup?\n");
1617 return -ENODEV;
1618 }
1619
1620 ret = devm_gpio_request(&udc->pdev->dev, udc->board.pullup_pin,
1621 "udc_pullup");
1622 if (ret) {
1623 DBG("D+ pullup is busy\n");
1624 return ret;
1625 }
1626
1627 gpio_direction_output(udc->board.pullup_pin,
1628 udc->board.pullup_active_low);
1629
1630 return 0;
1631}
1632
1633static void at91rm9200_udc_pullup(struct at91_udc *udc, int is_on)
1634{
1635 int active = !udc->board.pullup_active_low;
1636
1637 if (is_on)
1638 gpio_set_value(udc->board.pullup_pin, active);
1639 else
1640 gpio_set_value(udc->board.pullup_pin, !active);
1641}
1642
1643static const struct at91_udc_caps at91rm9200_udc_caps = {
1644 .init = at91rm9200_udc_init,
1645 .pullup = at91rm9200_udc_pullup,
1646};
1647
1648static int at91sam9260_udc_init(struct at91_udc *udc)
1649{
1650 struct at91_ep *ep;
1651 int i;
1652
1653 for (i = 0; i < NUM_ENDPOINTS; i++) {
1654 ep = &udc->ep[i];
1655
1656 switch (i) {
1657 case 0 ... 3:
1658 ep->maxpacket = 64;
1659 break;
1660 case 4 ... 5:
1661 ep->maxpacket = 512;
1662 break;
1663 }
1664 }
1665
1666 return 0;
1667}
1668
1669static void at91sam9260_udc_pullup(struct at91_udc *udc, int is_on)
1670{
1671 u32 txvc = at91_udp_read(udc, AT91_UDP_TXVC);
1672
1673 if (is_on)
1674 txvc |= AT91_UDP_TXVC_PUON;
1675 else
1676 txvc &= ~AT91_UDP_TXVC_PUON;
1677
1678 at91_udp_write(udc, AT91_UDP_TXVC, txvc);
1679}
1680
1681static const struct at91_udc_caps at91sam9260_udc_caps = {
1682 .init = at91sam9260_udc_init,
1683 .pullup = at91sam9260_udc_pullup,
1684};
1685
1686static int at91sam9261_udc_init(struct at91_udc *udc)
1687{
1688 struct at91_ep *ep;
1689 int i;
1690
1691 for (i = 0; i < NUM_ENDPOINTS; i++) {
1692 ep = &udc->ep[i];
1693
1694 switch (i) {
1695 case 0:
1696 ep->maxpacket = 8;
1697 break;
1698 case 1 ... 3:
1699 ep->maxpacket = 64;
1700 break;
1701 case 4 ... 5:
1702 ep->maxpacket = 256;
1703 break;
1704 }
1705 }
1706
1707 udc->matrix = syscon_regmap_lookup_by_phandle(udc->pdev->dev.of_node,
1708 "atmel,matrix");
1709 if (IS_ERR(udc->matrix))
1710 return PTR_ERR(udc->matrix);
1711
1712 return 0;
1713}
1714
1715static void at91sam9261_udc_pullup(struct at91_udc *udc, int is_on)
1716{
1717 u32 usbpucr = 0;
1718
1719 if (is_on)
1720 usbpucr = AT91_MATRIX_USBPUCR_PUON;
1721
1722 regmap_update_bits(udc->matrix, AT91SAM9261_MATRIX_USBPUCR,
1723 AT91_MATRIX_USBPUCR_PUON, usbpucr);
1724}
1725
1726static const struct at91_udc_caps at91sam9261_udc_caps = {
1727 .init = at91sam9261_udc_init,
1728 .pullup = at91sam9261_udc_pullup,
1729};
1730
1731static int at91sam9263_udc_init(struct at91_udc *udc)
1732{
1733 struct at91_ep *ep;
1734 int i;
1735
1736 for (i = 0; i < NUM_ENDPOINTS; i++) {
1737 ep = &udc->ep[i];
1738
1739 switch (i) {
1740 case 0:
1741 case 1:
1742 case 2:
1743 case 3:
1744 ep->maxpacket = 64;
1745 break;
1746 case 4:
1747 case 5:
1748 ep->maxpacket = 256;
1749 break;
1750 }
1751 }
1752
1753 return 0;
1754}
1755
1756static const struct at91_udc_caps at91sam9263_udc_caps = {
1757 .init = at91sam9263_udc_init,
1758 .pullup = at91sam9260_udc_pullup,
1759};
1760
1761static const struct of_device_id at91_udc_dt_ids[] = {
1762 {
1763 .compatible = "atmel,at91rm9200-udc",
1764 .data = &at91rm9200_udc_caps,
1765 },
1766 {
1767 .compatible = "atmel,at91sam9260-udc",
1768 .data = &at91sam9260_udc_caps,
1769 },
1770 {
1771 .compatible = "atmel,at91sam9261-udc",
1772 .data = &at91sam9261_udc_caps,
1773 },
1774 {
1775 .compatible = "atmel,at91sam9263-udc",
1776 .data = &at91sam9263_udc_caps,
1777 },
1778 { /* sentinel */ }
1779};
1780MODULE_DEVICE_TABLE(of, at91_udc_dt_ids);
1781
1782static void at91udc_of_init(struct at91_udc *udc, struct device_node *np)
Jean-Christophe PLAGNIOL-VILLARDd1494a32012-01-28 22:35:36 +08001783{
1784 struct at91_udc_data *board = &udc->board;
Boris Brezillonf0bceab2015-01-14 17:22:02 +01001785 const struct of_device_id *match;
Jean-Christophe PLAGNIOL-VILLARDd1494a32012-01-28 22:35:36 +08001786 enum of_gpio_flags flags;
Boris Brezillonf0bceab2015-01-14 17:22:02 +01001787 u32 val;
Jean-Christophe PLAGNIOL-VILLARDd1494a32012-01-28 22:35:36 +08001788
1789 if (of_property_read_u32(np, "atmel,vbus-polled", &val) == 0)
1790 board->vbus_polled = 1;
1791
1792 board->vbus_pin = of_get_named_gpio_flags(np, "atmel,vbus-gpio", 0,
1793 &flags);
1794 board->vbus_active_low = (flags & OF_GPIO_ACTIVE_LOW) ? 1 : 0;
1795
1796 board->pullup_pin = of_get_named_gpio_flags(np, "atmel,pullup-gpio", 0,
1797 &flags);
1798
1799 board->pullup_active_low = (flags & OF_GPIO_ACTIVE_LOW) ? 1 : 0;
Boris Brezillonf0bceab2015-01-14 17:22:02 +01001800
1801 match = of_match_node(at91_udc_dt_ids, np);
1802 if (match)
1803 udc->caps = match->data;
Jean-Christophe PLAGNIOL-VILLARDd1494a32012-01-28 22:35:36 +08001804}
1805
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001806static int at91udc_probe(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001807{
1808 struct device *dev = &pdev->dev;
1809 struct at91_udc *udc;
1810 int retval;
Andrew Victorffd33262006-12-07 22:44:33 -08001811 struct resource *res;
Boris Brezillonf0bceab2015-01-14 17:22:02 +01001812 struct at91_ep *ep;
1813 int i;
David Brownellbae4bd82006-01-22 10:32:37 -08001814
Boris Brezillona5514d142015-01-14 17:22:04 +01001815 udc = devm_kzalloc(dev, sizeof(*udc), GFP_KERNEL);
1816 if (!udc)
1817 return -ENOMEM;
David Brownellbae4bd82006-01-22 10:32:37 -08001818
1819 /* init software state */
David Brownellbae4bd82006-01-22 10:32:37 -08001820 udc->gadget.dev.parent = dev;
Boris Brezillon9f00fc12015-01-14 17:22:00 +01001821 at91udc_of_init(udc, pdev->dev.of_node);
David Brownellbae4bd82006-01-22 10:32:37 -08001822 udc->pdev = pdev;
David Brownellbae4bd82006-01-22 10:32:37 -08001823 udc->enabled = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001824 spin_lock_init(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001825
Boris Brezillona5514d142015-01-14 17:22:04 +01001826 udc->gadget.ops = &at91_udc_ops;
1827 udc->gadget.ep0 = &udc->ep[0].ep;
1828 udc->gadget.name = driver_name;
1829 udc->gadget.dev.init_name = "gadget";
David Brownellf3db6e82008-01-05 13:21:43 -08001830
Boris Brezillona5514d142015-01-14 17:22:04 +01001831 for (i = 0; i < NUM_ENDPOINTS; i++) {
1832 ep = &udc->ep[i];
1833 ep->ep.name = ep_names[i];
1834 ep->ep.ops = &at91_ep_ops;
1835 ep->udc = udc;
1836 ep->int_mask = BIT(i);
1837 if (i != 0 && i != 3)
1838 ep->is_pingpong = 1;
David Brownellbae4bd82006-01-22 10:32:37 -08001839 }
1840
Boris Brezillon422cde22015-01-14 17:22:01 +01001841 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1842 udc->udp_baseaddr = devm_ioremap_resource(dev, res);
1843 if (IS_ERR(udc->udp_baseaddr))
1844 return PTR_ERR(udc->udp_baseaddr);
David Brownellbb242802008-05-27 19:24:20 -07001845
Boris Brezillonf0bceab2015-01-14 17:22:02 +01001846 if (udc->caps && udc->caps->init) {
1847 retval = udc->caps->init(udc);
1848 if (retval)
1849 return retval;
Andrew Victorffd33262006-12-07 22:44:33 -08001850 }
1851
1852 udc_reinit(udc);
1853
David Brownellbae4bd82006-01-22 10:32:37 -08001854 /* get interface and function clocks */
Boris Brezillon422cde22015-01-14 17:22:01 +01001855 udc->iclk = devm_clk_get(dev, "pclk");
1856 if (IS_ERR(udc->iclk))
1857 return PTR_ERR(udc->iclk);
1858
1859 udc->fclk = devm_clk_get(dev, "hclk");
1860 if (IS_ERR(udc->fclk))
1861 return PTR_ERR(udc->fclk);
David Brownellbae4bd82006-01-22 10:32:37 -08001862
David Brownell8b2e7662006-07-05 02:38:56 -07001863 /* don't do anything until we have both gadget driver and VBUS */
Boris Brezillon9aa02162015-01-14 17:21:58 +01001864 clk_set_rate(udc->fclk, 48000000);
Ronald Wahlb2ba27a2014-11-19 16:37:27 +01001865 retval = clk_prepare(udc->fclk);
1866 if (retval)
Boris Brezillon422cde22015-01-14 17:22:01 +01001867 return retval;
Ronald Wahlb2ba27a2014-11-19 16:37:27 +01001868
Boris BREZILLON76280832013-06-25 10:12:56 +02001869 retval = clk_prepare_enable(udc->iclk);
1870 if (retval)
Boris Brezillon422cde22015-01-14 17:22:01 +01001871 goto err_unprepare_fclk;
1872
Andrew Victorffd33262006-12-07 22:44:33 -08001873 at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
1874 at91_udp_write(udc, AT91_UDP_IDR, 0xffffffff);
Andrew Victor29ba4b52006-12-07 22:44:38 -08001875 /* Clear all pending interrupts - UDP may be used by bootloader. */
1876 at91_udp_write(udc, AT91_UDP_ICR, 0xffffffff);
Ronald Wahlb2ba27a2014-11-19 16:37:27 +01001877 clk_disable(udc->iclk);
David Brownellbae4bd82006-01-22 10:32:37 -08001878
1879 /* request UDC and maybe VBUS irqs */
David Brownell8b2e7662006-07-05 02:38:56 -07001880 udc->udp_irq = platform_get_irq(pdev, 0);
Boris Brezillon422cde22015-01-14 17:22:01 +01001881 retval = devm_request_irq(dev, udc->udp_irq, at91_udc_irq, 0,
1882 driver_name, udc);
1883 if (retval) {
David Brownell8b2e7662006-07-05 02:38:56 -07001884 DBG("request irq %d failed\n", udc->udp_irq);
Boris Brezillon422cde22015-01-14 17:22:01 +01001885 goto err_unprepare_iclk;
David Brownellbae4bd82006-01-22 10:32:37 -08001886 }
Boris Brezillon422cde22015-01-14 17:22:01 +01001887
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001888 if (gpio_is_valid(udc->board.vbus_pin)) {
Boris Brezillon422cde22015-01-14 17:22:01 +01001889 retval = devm_gpio_request(dev, udc->board.vbus_pin,
1890 "udc_vbus");
1891 if (retval) {
David Brownellf3db6e82008-01-05 13:21:43 -08001892 DBG("request vbus pin failed\n");
Boris Brezillon422cde22015-01-14 17:22:01 +01001893 goto err_unprepare_iclk;
David Brownellf3db6e82008-01-05 13:21:43 -08001894 }
Boris Brezillon422cde22015-01-14 17:22:01 +01001895
David Brownellf3db6e82008-01-05 13:21:43 -08001896 gpio_direction_input(udc->board.vbus_pin);
1897
Andrew Victor29ba4b52006-12-07 22:44:38 -08001898 /*
1899 * Get the initial state of VBUS - we cannot expect
1900 * a pending interrupt.
1901 */
Ryan Mallon40372422010-07-13 05:09:16 +01001902 udc->vbus = gpio_get_value_cansleep(udc->board.vbus_pin) ^
1903 udc->board.vbus_active_low;
1904
1905 if (udc->board.vbus_polled) {
1906 INIT_WORK(&udc->vbus_timer_work, at91_vbus_timer_work);
1907 setup_timer(&udc->vbus_timer, at91_vbus_timer,
1908 (unsigned long)udc);
1909 mod_timer(&udc->vbus_timer,
1910 jiffies + VBUS_POLL_TIMEOUT);
1911 } else {
Boris Brezillon422cde22015-01-14 17:22:01 +01001912 retval = devm_request_irq(dev,
1913 gpio_to_irq(udc->board.vbus_pin),
1914 at91_vbus_irq, 0, driver_name, udc);
1915 if (retval) {
Ryan Mallon40372422010-07-13 05:09:16 +01001916 DBG("request vbus irq %d failed\n",
1917 udc->board.vbus_pin);
Boris Brezillon422cde22015-01-14 17:22:01 +01001918 goto err_unprepare_iclk;
Ryan Mallon40372422010-07-13 05:09:16 +01001919 }
David Brownellbae4bd82006-01-22 10:32:37 -08001920 }
1921 } else {
1922 DBG("no VBUS detection, assuming always-on\n");
1923 udc->vbus = 1;
1924 }
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001925 retval = usb_add_gadget_udc(dev, &udc->gadget);
1926 if (retval)
Boris Brezillon422cde22015-01-14 17:22:01 +01001927 goto err_unprepare_iclk;
David Brownellbae4bd82006-01-22 10:32:37 -08001928 dev_set_drvdata(dev, udc);
David Brownell8b2e7662006-07-05 02:38:56 -07001929 device_init_wakeup(dev, 1);
David Brownellbae4bd82006-01-22 10:32:37 -08001930 create_debug_file(udc);
1931
1932 INFO("%s version %s\n", driver_name, DRIVER_VERSION);
1933 return 0;
Boris Brezillon422cde22015-01-14 17:22:01 +01001934
1935err_unprepare_iclk:
Ronald Wahlb2ba27a2014-11-19 16:37:27 +01001936 clk_unprepare(udc->iclk);
Boris Brezillon422cde22015-01-14 17:22:01 +01001937err_unprepare_fclk:
Ronald Wahlb2ba27a2014-11-19 16:37:27 +01001938 clk_unprepare(udc->fclk);
Boris Brezillon422cde22015-01-14 17:22:01 +01001939
David Brownellbae4bd82006-01-22 10:32:37 -08001940 DBG("%s probe failed, %d\n", driver_name, retval);
Boris Brezillon422cde22015-01-14 17:22:01 +01001941
David Brownellbae4bd82006-01-22 10:32:37 -08001942 return retval;
1943}
1944
Arnd Bergmannc94e2892015-04-11 00:14:21 +02001945static int at91udc_remove(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001946{
David Brownell8b2e7662006-07-05 02:38:56 -07001947 struct at91_udc *udc = platform_get_drvdata(pdev);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001948 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001949
1950 DBG("remove\n");
1951
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001952 usb_del_gadget_udc(&udc->gadget);
David Brownell6bea4762006-12-05 03:15:33 -08001953 if (udc->driver)
1954 return -EBUSY;
David Brownellbae4bd82006-01-22 10:32:37 -08001955
Harro Haan4f4c5e32010-03-01 18:01:56 +01001956 spin_lock_irqsave(&udc->lock, flags);
David Brownell6bea4762006-12-05 03:15:33 -08001957 pullup(udc, 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001958 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001959
David Brownell8b2e7662006-07-05 02:38:56 -07001960 device_init_wakeup(&pdev->dev, 0);
David Brownellbae4bd82006-01-22 10:32:37 -08001961 remove_debug_file(udc);
Ronald Wahlb2ba27a2014-11-19 16:37:27 +01001962 clk_unprepare(udc->fclk);
1963 clk_unprepare(udc->iclk);
1964
David Brownellbae4bd82006-01-22 10:32:37 -08001965 return 0;
1966}
1967
1968#ifdef CONFIG_PM
David Brownell8b2e7662006-07-05 02:38:56 -07001969static int at91udc_suspend(struct platform_device *pdev, pm_message_t mesg)
David Brownellbae4bd82006-01-22 10:32:37 -08001970{
David Brownell8b2e7662006-07-05 02:38:56 -07001971 struct at91_udc *udc = platform_get_drvdata(pdev);
1972 int wake = udc->driver && device_may_wakeup(&pdev->dev);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001973 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001974
David Brownell8b2e7662006-07-05 02:38:56 -07001975 /* Unless we can act normally to the host (letting it wake us up
1976 * whenever it has work for us) force disconnect. Wakeup requires
1977 * PLLB for USB events (signaling for reset, wakeup, or incoming
1978 * tokens) and VBUS irqs (on systems which support them).
David Brownellbae4bd82006-01-22 10:32:37 -08001979 */
David Brownell8b2e7662006-07-05 02:38:56 -07001980 if ((!udc->suspended && udc->addr)
1981 || !wake
1982 || at91_suspend_entering_slow_clock()) {
Harro Haan4f4c5e32010-03-01 18:01:56 +01001983 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001984 pullup(udc, 0);
David Brownell66e56ce2007-01-16 12:46:39 -08001985 wake = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001986 spin_unlock_irqrestore(&udc->lock, flags);
David Brownell8b2e7662006-07-05 02:38:56 -07001987 } else
1988 enable_irq_wake(udc->udp_irq);
1989
David Brownell66e56ce2007-01-16 12:46:39 -08001990 udc->active_suspend = wake;
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08001991 if (gpio_is_valid(udc->board.vbus_pin) && !udc->board.vbus_polled && wake)
David Brownell66e56ce2007-01-16 12:46:39 -08001992 enable_irq_wake(udc->board.vbus_pin);
David Brownellbae4bd82006-01-22 10:32:37 -08001993 return 0;
1994}
1995
David Brownell8b2e7662006-07-05 02:38:56 -07001996static int at91udc_resume(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001997{
David Brownell8b2e7662006-07-05 02:38:56 -07001998 struct at91_udc *udc = platform_get_drvdata(pdev);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001999 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08002000
Jean-Christophe PLAGNIOL-VILLARD3285e0e2011-09-19 15:31:58 +08002001 if (gpio_is_valid(udc->board.vbus_pin) && !udc->board.vbus_polled &&
Ryan Mallon40372422010-07-13 05:09:16 +01002002 udc->active_suspend)
David Brownell66e56ce2007-01-16 12:46:39 -08002003 disable_irq_wake(udc->board.vbus_pin);
2004
David Brownellbae4bd82006-01-22 10:32:37 -08002005 /* maybe reconnect to host; if so, clocks on */
David Brownell66e56ce2007-01-16 12:46:39 -08002006 if (udc->active_suspend)
2007 disable_irq_wake(udc->udp_irq);
Harro Haan4f4c5e32010-03-01 18:01:56 +01002008 else {
2009 spin_lock_irqsave(&udc->lock, flags);
David Brownell66e56ce2007-01-16 12:46:39 -08002010 pullup(udc, 1);
Harro Haan4f4c5e32010-03-01 18:01:56 +01002011 spin_unlock_irqrestore(&udc->lock, flags);
2012 }
David Brownellbae4bd82006-01-22 10:32:37 -08002013 return 0;
2014}
2015#else
2016#define at91udc_suspend NULL
2017#define at91udc_resume NULL
2018#endif
2019
David Brownelldee497d2007-02-24 13:54:56 -08002020static struct platform_driver at91_udc_driver = {
Arnd Bergmannc94e2892015-04-11 00:14:21 +02002021 .remove = at91udc_remove,
David Brownellbae4bd82006-01-22 10:32:37 -08002022 .shutdown = at91udc_shutdown,
2023 .suspend = at91udc_suspend,
David Brownell8b2e7662006-07-05 02:38:56 -07002024 .resume = at91udc_resume,
David Brownellbae4bd82006-01-22 10:32:37 -08002025 .driver = {
2026 .name = (char *) driver_name,
Boris Brezillon9f00fc12015-01-14 17:22:00 +01002027 .of_match_table = at91_udc_dt_ids,
David Brownellbae4bd82006-01-22 10:32:37 -08002028 },
2029};
2030
Fabio Porcedda52f7a822013-01-09 12:15:28 +01002031module_platform_driver_probe(at91_udc_driver, at91udc_probe);
David Brownellbae4bd82006-01-22 10:32:37 -08002032
David Brownell8b2e7662006-07-05 02:38:56 -07002033MODULE_DESCRIPTION("AT91 udc driver");
David Brownellbae4bd82006-01-22 10:32:37 -08002034MODULE_AUTHOR("Thomas Rathbone, David Brownell");
2035MODULE_LICENSE("GPL");
Kay Sieversf34c32f2008-04-10 21:29:21 -07002036MODULE_ALIAS("platform:at91_udc");