blob: dd0819df096e1a87d9cb8cdacf2fe51cf13f9705 [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0+
David Brownellbae4bd82006-01-22 10:32:37 -08002/*
3 * at91_udc -- driver for at91-series USB peripheral controller
4 *
5 * Copyright (C) 2004 by Thomas Rathbone
6 * Copyright (C) 2005 by HP Labs
7 * Copyright (C) 2005 by David Brownell
David Brownellbae4bd82006-01-22 10:32:37 -08008 */
9
David Brownellf3db6e82008-01-05 13:21:43 -080010#undef VERBOSE_DEBUG
David Brownellbae4bd82006-01-22 10:32:37 -080011#undef PACKET_TRACE
12
David Brownellbae4bd82006-01-22 10:32:37 -080013#include <linux/kernel.h>
14#include <linux/module.h>
15#include <linux/platform_device.h>
16#include <linux/delay.h>
17#include <linux/ioport.h>
David Brownellbae4bd82006-01-22 10:32:37 -080018#include <linux/slab.h>
David Brownellbae4bd82006-01-22 10:32:37 -080019#include <linux/errno.h>
David Brownellbae4bd82006-01-22 10:32:37 -080020#include <linux/list.h>
21#include <linux/interrupt.h>
22#include <linux/proc_fs.h>
Jean-Christophe PLAGNIOL-VILLARDeed39362011-05-29 10:01:48 +020023#include <linux/prefetch.h>
David Brownellbae4bd82006-01-22 10:32:37 -080024#include <linux/clk.h>
David Brownell5f848132006-12-16 15:34:53 -080025#include <linux/usb/ch9.h>
David Brownell9454a572007-10-04 18:05:17 -070026#include <linux/usb/gadget.h>
Jean-Christophe PLAGNIOL-VILLARDd1494a32012-01-28 22:35:36 +080027#include <linux/of.h>
Balamanikandan Gunasundar4a555f22021-10-26 14:26:10 +053028#include <linux/gpio/consumer.h>
Jean-Christophe PLAGNIOL-VILLARDbcd23602012-10-30 05:12:23 +080029#include <linux/platform_data/atmel.h>
Boris Brezillonf0bceab2015-01-14 17:22:02 +010030#include <linux/regmap.h>
31#include <linux/mfd/syscon.h>
32#include <linux/mfd/syscon/atmel-matrix.h>
David Brownellbae4bd82006-01-22 10:32:37 -080033
34#include "at91_udc.h"
35
36
37/*
38 * This controller is simple and PIO-only. It's used in many AT91-series
David Brownell8b2e7662006-07-05 02:38:56 -070039 * full speed USB controllers, including the at91rm9200 (arm920T, with MMU),
40 * at91sam926x (arm926ejs, with MMU), and several no-mmu versions.
David Brownellbae4bd82006-01-22 10:32:37 -080041 *
Masanari Iidad7558142012-08-22 18:40:21 +090042 * This driver expects the board has been wired with two GPIOs supporting
David Brownellbae4bd82006-01-22 10:32:37 -080043 * a VBUS sensing IRQ, and a D+ pullup. (They may be omitted, but the
David Brownell8b2e7662006-07-05 02:38:56 -070044 * testing hasn't covered such cases.)
45 *
46 * The pullup is most important (so it's integrated on sam926x parts). It
David Brownellbae4bd82006-01-22 10:32:37 -080047 * provides software control over whether the host enumerates the device.
David Brownell8b2e7662006-07-05 02:38:56 -070048 *
David Brownellbae4bd82006-01-22 10:32:37 -080049 * The VBUS sensing helps during enumeration, and allows both USB clocks
50 * (and the transceiver) to stay gated off until they're necessary, saving
David Brownell8b2e7662006-07-05 02:38:56 -070051 * power. During USB suspend, the 48 MHz clock is gated off in hardware;
52 * it may also be gated off by software during some Linux sleep states.
David Brownellbae4bd82006-01-22 10:32:37 -080053 */
54
David Brownell8b2e7662006-07-05 02:38:56 -070055#define DRIVER_VERSION "3 May 2006"
David Brownellbae4bd82006-01-22 10:32:37 -080056
57static const char driver_name [] = "at91_udc";
Robert Baldygab9ed96d72015-07-31 16:00:21 +020058
59static const struct {
60 const char *name;
61 const struct usb_ep_caps caps;
62} ep_info[] = {
63#define EP_INFO(_name, _caps) \
64 { \
65 .name = _name, \
66 .caps = _caps, \
67 }
68
69 EP_INFO("ep0",
70 USB_EP_CAPS(USB_EP_CAPS_TYPE_CONTROL, USB_EP_CAPS_DIR_ALL)),
71 EP_INFO("ep1",
72 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_ALL)),
73 EP_INFO("ep2",
74 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_ALL)),
75 EP_INFO("ep3-int",
76 USB_EP_CAPS(USB_EP_CAPS_TYPE_INT, USB_EP_CAPS_DIR_ALL)),
77 EP_INFO("ep4",
78 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_ALL)),
79 EP_INFO("ep5",
80 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_ALL)),
81
82#undef EP_INFO
Boris Brezillona5514d142015-01-14 17:22:04 +010083};
Robert Baldygab9ed96d72015-07-31 16:00:21 +020084
85#define ep0name ep_info[0].name
David Brownellbae4bd82006-01-22 10:32:37 -080086
Ryan Mallon40372422010-07-13 05:09:16 +010087#define VBUS_POLL_TIMEOUT msecs_to_jiffies(1000)
David Brownellbae4bd82006-01-22 10:32:37 -080088
Harro Haan4f4c5e32010-03-01 18:01:56 +010089#define at91_udp_read(udc, reg) \
90 __raw_readl((udc)->udp_baseaddr + (reg))
91#define at91_udp_write(udc, reg, val) \
92 __raw_writel((val), (udc)->udp_baseaddr + (reg))
David Brownellbae4bd82006-01-22 10:32:37 -080093
94/*-------------------------------------------------------------------------*/
95
96#ifdef CONFIG_USB_GADGET_DEBUG_FILES
97
98#include <linux/seq_file.h>
99
100static const char debug_filename[] = "driver/udc";
101
102#define FOURBITS "%s%s%s%s"
103#define EIGHTBITS FOURBITS FOURBITS
104
105static void proc_ep_show(struct seq_file *s, struct at91_ep *ep)
106{
107 static char *types[] = {
108 "control", "out-iso", "out-bulk", "out-int",
109 "BOGUS", "in-iso", "in-bulk", "in-int"};
110
111 u32 csr;
112 struct at91_request *req;
113 unsigned long flags;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100114 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800115
Harro Haan4f4c5e32010-03-01 18:01:56 +0100116 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800117
118 csr = __raw_readl(ep->creg);
119
120 /* NOTE: not collecting per-endpoint irq statistics... */
121
122 seq_printf(s, "\n");
123 seq_printf(s, "%s, maxpacket %d %s%s %s%s\n",
124 ep->ep.name, ep->ep.maxpacket,
125 ep->is_in ? "in" : "out",
126 ep->is_iso ? " iso" : "",
127 ep->is_pingpong
128 ? (ep->fifo_bank ? "pong" : "ping")
129 : "",
130 ep->stopped ? " stopped" : "");
131 seq_printf(s, "csr %08x rxbytes=%d %s %s %s" EIGHTBITS "\n",
132 csr,
133 (csr & 0x07ff0000) >> 16,
134 (csr & (1 << 15)) ? "enabled" : "disabled",
135 (csr & (1 << 11)) ? "DATA1" : "DATA0",
136 types[(csr & 0x700) >> 8],
137
138 /* iff type is control then print current direction */
139 (!(csr & 0x700))
140 ? ((csr & (1 << 7)) ? " IN" : " OUT")
141 : "",
142 (csr & (1 << 6)) ? " rxdatabk1" : "",
143 (csr & (1 << 5)) ? " forcestall" : "",
144 (csr & (1 << 4)) ? " txpktrdy" : "",
145
146 (csr & (1 << 3)) ? " stallsent" : "",
147 (csr & (1 << 2)) ? " rxsetup" : "",
148 (csr & (1 << 1)) ? " rxdatabk0" : "",
149 (csr & (1 << 0)) ? " txcomp" : "");
150 if (list_empty (&ep->queue))
151 seq_printf(s, "\t(queue empty)\n");
152
153 else list_for_each_entry (req, &ep->queue, queue) {
154 unsigned length = req->req.actual;
155
156 seq_printf(s, "\treq %p len %d/%d buf %p\n",
157 &req->req, length,
158 req->req.length, req->req.buf);
159 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100160 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800161}
162
163static void proc_irq_show(struct seq_file *s, const char *label, u32 mask)
164{
165 int i;
166
167 seq_printf(s, "%s %04x:%s%s" FOURBITS, label, mask,
168 (mask & (1 << 13)) ? " wakeup" : "",
169 (mask & (1 << 12)) ? " endbusres" : "",
170
171 (mask & (1 << 11)) ? " sofint" : "",
172 (mask & (1 << 10)) ? " extrsm" : "",
173 (mask & (1 << 9)) ? " rxrsm" : "",
174 (mask & (1 << 8)) ? " rxsusp" : "");
175 for (i = 0; i < 8; i++) {
176 if (mask & (1 << i))
177 seq_printf(s, " ep%d", i);
178 }
179 seq_printf(s, "\n");
180}
181
182static int proc_udc_show(struct seq_file *s, void *unused)
183{
184 struct at91_udc *udc = s->private;
185 struct at91_ep *ep;
186 u32 tmp;
187
188 seq_printf(s, "%s: version %s\n", driver_name, DRIVER_VERSION);
189
190 seq_printf(s, "vbus %s, pullup %s, %s powered%s, gadget %s\n\n",
191 udc->vbus ? "present" : "off",
192 udc->enabled
193 ? (udc->vbus ? "active" : "enabled")
194 : "disabled",
Peter Chen73019712015-01-28 16:32:26 +0800195 udc->gadget.is_selfpowered ? "self" : "VBUS",
David Brownellbae4bd82006-01-22 10:32:37 -0800196 udc->suspended ? ", suspended" : "",
197 udc->driver ? udc->driver->driver.name : "(none)");
198
199 /* don't access registers when interface isn't clocked */
200 if (!udc->clocked) {
201 seq_printf(s, "(not clocked)\n");
202 return 0;
203 }
204
Andrew Victorffd33262006-12-07 22:44:33 -0800205 tmp = at91_udp_read(udc, AT91_UDP_FRM_NUM);
David Brownellbae4bd82006-01-22 10:32:37 -0800206 seq_printf(s, "frame %05x:%s%s frame=%d\n", tmp,
207 (tmp & AT91_UDP_FRM_OK) ? " ok" : "",
208 (tmp & AT91_UDP_FRM_ERR) ? " err" : "",
209 (tmp & AT91_UDP_NUM));
210
Andrew Victorffd33262006-12-07 22:44:33 -0800211 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800212 seq_printf(s, "glbstate %02x:%s" FOURBITS "\n", tmp,
213 (tmp & AT91_UDP_RMWUPE) ? " rmwupe" : "",
214 (tmp & AT91_UDP_RSMINPR) ? " rsminpr" : "",
215 (tmp & AT91_UDP_ESR) ? " esr" : "",
216 (tmp & AT91_UDP_CONFG) ? " confg" : "",
217 (tmp & AT91_UDP_FADDEN) ? " fadden" : "");
218
Andrew Victorffd33262006-12-07 22:44:33 -0800219 tmp = at91_udp_read(udc, AT91_UDP_FADDR);
David Brownellbae4bd82006-01-22 10:32:37 -0800220 seq_printf(s, "faddr %03x:%s fadd=%d\n", tmp,
221 (tmp & AT91_UDP_FEN) ? " fen" : "",
222 (tmp & AT91_UDP_FADD));
223
Andrew Victorffd33262006-12-07 22:44:33 -0800224 proc_irq_show(s, "imr ", at91_udp_read(udc, AT91_UDP_IMR));
225 proc_irq_show(s, "isr ", at91_udp_read(udc, AT91_UDP_ISR));
David Brownellbae4bd82006-01-22 10:32:37 -0800226
227 if (udc->enabled && udc->vbus) {
228 proc_ep_show(s, &udc->ep[0]);
229 list_for_each_entry (ep, &udc->gadget.ep_list, ep.ep_list) {
Ido Shayevitz5a6506f2012-03-12 20:25:26 +0200230 if (ep->ep.desc)
David Brownellbae4bd82006-01-22 10:32:37 -0800231 proc_ep_show(s, ep);
232 }
233 }
234 return 0;
235}
236
David Brownellbae4bd82006-01-22 10:32:37 -0800237static void create_debug_file(struct at91_udc *udc)
238{
Christoph Hellwig3f3942a2018-05-15 15:57:23 +0200239 udc->pde = proc_create_single_data(debug_filename, 0, NULL,
240 proc_udc_show, udc);
David Brownellbae4bd82006-01-22 10:32:37 -0800241}
242
243static void remove_debug_file(struct at91_udc *udc)
244{
245 if (udc->pde)
246 remove_proc_entry(debug_filename, NULL);
247}
248
249#else
250
251static inline void create_debug_file(struct at91_udc *udc) {}
252static inline void remove_debug_file(struct at91_udc *udc) {}
253
254#endif
255
256
257/*-------------------------------------------------------------------------*/
258
259static void done(struct at91_ep *ep, struct at91_request *req, int status)
260{
261 unsigned stopped = ep->stopped;
Andrew Victorffd33262006-12-07 22:44:33 -0800262 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800263
264 list_del_init(&req->queue);
265 if (req->req.status == -EINPROGRESS)
266 req->req.status = status;
267 else
268 status = req->req.status;
269 if (status && status != -ESHUTDOWN)
270 VDBG("%s done %p, status %d\n", ep->ep.name, req, status);
271
272 ep->stopped = 1;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100273 spin_unlock(&udc->lock);
Michal Sojka304f7e52014-09-24 22:43:19 +0200274 usb_gadget_giveback_request(&ep->ep, &req->req);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100275 spin_lock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -0800276 ep->stopped = stopped;
277
278 /* ep0 is always ready; other endpoints need a non-empty queue */
279 if (list_empty(&ep->queue) && ep->int_mask != (1 << 0))
Andrew Victorffd33262006-12-07 22:44:33 -0800280 at91_udp_write(udc, AT91_UDP_IDR, ep->int_mask);
David Brownellbae4bd82006-01-22 10:32:37 -0800281}
282
283/*-------------------------------------------------------------------------*/
284
285/* bits indicating OUT fifo has data ready */
286#define RX_DATA_READY (AT91_UDP_RX_DATA_BK0 | AT91_UDP_RX_DATA_BK1)
287
288/*
289 * Endpoint FIFO CSR bits have a mix of bits, making it unsafe to just write
290 * back most of the value you just read (because of side effects, including
291 * bits that may change after reading and before writing).
292 *
293 * Except when changing a specific bit, always write values which:
294 * - clear SET_FX bits (setting them could change something)
295 * - set CLR_FX bits (clearing them could change something)
296 *
297 * There are also state bits like FORCESTALL, EPEDS, DIR, and EPTYPE
298 * that shouldn't normally be changed.
David Brownell8b2e7662006-07-05 02:38:56 -0700299 *
300 * NOTE at91sam9260 docs mention synch between UDPCK and MCK clock domains,
301 * implying a need to wait for one write to complete (test relevant bits)
302 * before starting the next write. This shouldn't be an issue given how
303 * infrequently we write, except maybe for write-then-read idioms.
David Brownellbae4bd82006-01-22 10:32:37 -0800304 */
305#define SET_FX (AT91_UDP_TXPKTRDY)
David Brownell8b2e7662006-07-05 02:38:56 -0700306#define CLR_FX (RX_DATA_READY | AT91_UDP_RXSETUP \
307 | AT91_UDP_STALLSENT | AT91_UDP_TXCOMP)
David Brownellbae4bd82006-01-22 10:32:37 -0800308
309/* pull OUT packet data from the endpoint's fifo */
310static int read_fifo (struct at91_ep *ep, struct at91_request *req)
311{
312 u32 __iomem *creg = ep->creg;
313 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
314 u32 csr;
315 u8 *buf;
316 unsigned int count, bufferspace, is_done;
317
318 buf = req->req.buf + req->req.actual;
319 bufferspace = req->req.length - req->req.actual;
320
321 /*
322 * there might be nothing to read if ep_queue() calls us,
323 * or if we already emptied both pingpong buffers
324 */
325rescan:
326 csr = __raw_readl(creg);
327 if ((csr & RX_DATA_READY) == 0)
328 return 0;
329
330 count = (csr & AT91_UDP_RXBYTECNT) >> 16;
331 if (count > ep->ep.maxpacket)
332 count = ep->ep.maxpacket;
333 if (count > bufferspace) {
334 DBG("%s buffer overflow\n", ep->ep.name);
335 req->req.status = -EOVERFLOW;
336 count = bufferspace;
337 }
338 __raw_readsb(dreg, buf, count);
339
340 /* release and swap pingpong mem bank */
341 csr |= CLR_FX;
342 if (ep->is_pingpong) {
343 if (ep->fifo_bank == 0) {
344 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
345 ep->fifo_bank = 1;
346 } else {
347 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK1);
348 ep->fifo_bank = 0;
349 }
350 } else
351 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
352 __raw_writel(csr, creg);
353
354 req->req.actual += count;
355 is_done = (count < ep->ep.maxpacket);
356 if (count == bufferspace)
357 is_done = 1;
358
359 PACKET("%s %p out/%d%s\n", ep->ep.name, &req->req, count,
360 is_done ? " (done)" : "");
361
362 /*
363 * avoid extra trips through IRQ logic for packets already in
364 * the fifo ... maybe preventing an extra (expensive) OUT-NAK
365 */
366 if (is_done)
367 done(ep, req, 0);
368 else if (ep->is_pingpong) {
Harro Haan76225372010-03-01 17:54:55 +0100369 /*
370 * One dummy read to delay the code because of a HW glitch:
371 * CSR returns bad RXCOUNT when read too soon after updating
372 * RX_DATA_BK flags.
373 */
374 csr = __raw_readl(creg);
375
David Brownellbae4bd82006-01-22 10:32:37 -0800376 bufferspace -= count;
377 buf += count;
378 goto rescan;
379 }
380
381 return is_done;
382}
383
384/* load fifo for an IN packet */
385static int write_fifo(struct at91_ep *ep, struct at91_request *req)
386{
387 u32 __iomem *creg = ep->creg;
388 u32 csr = __raw_readl(creg);
389 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
390 unsigned total, count, is_last;
David Brownell3cf27232008-04-06 23:32:55 -0700391 u8 *buf;
David Brownellbae4bd82006-01-22 10:32:37 -0800392
393 /*
394 * TODO: allow for writing two packets to the fifo ... that'll
395 * reduce the amount of IN-NAKing, but probably won't affect
396 * throughput much. (Unlike preventing OUT-NAKing!)
397 */
398
399 /*
400 * If ep_queue() calls us, the queue is empty and possibly in
401 * odd states like TXCOMP not yet cleared (we do it, saving at
402 * least one IRQ) or the fifo not yet being free. Those aren't
403 * issues normally (IRQ handler fast path).
404 */
405 if (unlikely(csr & (AT91_UDP_TXCOMP | AT91_UDP_TXPKTRDY))) {
406 if (csr & AT91_UDP_TXCOMP) {
407 csr |= CLR_FX;
408 csr &= ~(SET_FX | AT91_UDP_TXCOMP);
409 __raw_writel(csr, creg);
410 csr = __raw_readl(creg);
411 }
412 if (csr & AT91_UDP_TXPKTRDY)
413 return 0;
414 }
415
David Brownell3cf27232008-04-06 23:32:55 -0700416 buf = req->req.buf + req->req.actual;
417 prefetch(buf);
David Brownellbae4bd82006-01-22 10:32:37 -0800418 total = req->req.length - req->req.actual;
419 if (ep->ep.maxpacket < total) {
420 count = ep->ep.maxpacket;
421 is_last = 0;
422 } else {
423 count = total;
424 is_last = (count < ep->ep.maxpacket) || !req->req.zero;
425 }
426
427 /*
428 * Write the packet, maybe it's a ZLP.
429 *
430 * NOTE: incrementing req->actual before we receive the ACK means
431 * gadget driver IN bytecounts can be wrong in fault cases. That's
432 * fixable with PIO drivers like this one (save "count" here, and
433 * do the increment later on TX irq), but not for most DMA hardware.
434 *
435 * So all gadget drivers must accept that potential error. Some
436 * hardware supports precise fifo status reporting, letting them
437 * recover when the actual bytecount matters (e.g. for USB Test
438 * and Measurement Class devices).
439 */
David Brownell3cf27232008-04-06 23:32:55 -0700440 __raw_writesb(dreg, buf, count);
David Brownellbae4bd82006-01-22 10:32:37 -0800441 csr &= ~SET_FX;
442 csr |= CLR_FX | AT91_UDP_TXPKTRDY;
443 __raw_writel(csr, creg);
444 req->req.actual += count;
445
446 PACKET("%s %p in/%d%s\n", ep->ep.name, &req->req, count,
447 is_last ? " (done)" : "");
448 if (is_last)
449 done(ep, req, 0);
450 return is_last;
451}
452
453static void nuke(struct at91_ep *ep, int status)
454{
455 struct at91_request *req;
456
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200457 /* terminate any request in the queue */
David Brownellbae4bd82006-01-22 10:32:37 -0800458 ep->stopped = 1;
459 if (list_empty(&ep->queue))
460 return;
461
Harvey Harrison441b62c2008-03-03 16:08:34 -0800462 VDBG("%s %s\n", __func__, ep->ep.name);
David Brownellbae4bd82006-01-22 10:32:37 -0800463 while (!list_empty(&ep->queue)) {
464 req = list_entry(ep->queue.next, struct at91_request, queue);
465 done(ep, req, status);
466 }
467}
468
469/*-------------------------------------------------------------------------*/
470
David Brownell8b2e7662006-07-05 02:38:56 -0700471static int at91_ep_enable(struct usb_ep *_ep,
472 const struct usb_endpoint_descriptor *desc)
David Brownellbae4bd82006-01-22 10:32:37 -0800473{
474 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Wei Yongjun162ca3c2012-09-07 14:54:25 +0800475 struct at91_udc *udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800476 u16 maxpacket;
477 u32 tmp;
478 unsigned long flags;
479
480 if (!_ep || !ep
Sebastian Andrzej Siewiorf3bb8e62012-07-20 20:34:25 +0200481 || !desc || _ep->name == ep0name
David Brownellbae4bd82006-01-22 10:32:37 -0800482 || desc->bDescriptorType != USB_DT_ENDPOINT
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700483 || (maxpacket = usb_endpoint_maxp(desc)) == 0
David Brownellbae4bd82006-01-22 10:32:37 -0800484 || maxpacket > ep->maxpacket) {
485 DBG("bad ep or descriptor\n");
486 return -EINVAL;
487 }
488
Wei Yongjun162ca3c2012-09-07 14:54:25 +0800489 udc = ep->udc;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100490 if (!udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) {
David Brownellbae4bd82006-01-22 10:32:37 -0800491 DBG("bogus device state\n");
492 return -ESHUTDOWN;
493 }
494
Matthias Kaehlcke81c8d8d2009-04-15 22:28:02 +0200495 tmp = usb_endpoint_type(desc);
David Brownellbae4bd82006-01-22 10:32:37 -0800496 switch (tmp) {
497 case USB_ENDPOINT_XFER_CONTROL:
498 DBG("only one control endpoint\n");
499 return -EINVAL;
500 case USB_ENDPOINT_XFER_INT:
501 if (maxpacket > 64)
502 goto bogus_max;
503 break;
504 case USB_ENDPOINT_XFER_BULK:
505 switch (maxpacket) {
506 case 8:
507 case 16:
508 case 32:
509 case 64:
510 goto ok;
511 }
512bogus_max:
513 DBG("bogus maxpacket %d\n", maxpacket);
514 return -EINVAL;
515 case USB_ENDPOINT_XFER_ISOC:
516 if (!ep->is_pingpong) {
517 DBG("iso requires double buffering\n");
518 return -EINVAL;
519 }
520 break;
521 }
522
523ok:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100524 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800525
526 /* initialize endpoint to match this descriptor */
Matthias Kaehlcke81c8d8d2009-04-15 22:28:02 +0200527 ep->is_in = usb_endpoint_dir_in(desc);
David Brownellbae4bd82006-01-22 10:32:37 -0800528 ep->is_iso = (tmp == USB_ENDPOINT_XFER_ISOC);
529 ep->stopped = 0;
530 if (ep->is_in)
531 tmp |= 0x04;
532 tmp <<= 8;
533 tmp |= AT91_UDP_EPEDS;
534 __raw_writel(tmp, ep->creg);
535
David Brownellbae4bd82006-01-22 10:32:37 -0800536 ep->ep.maxpacket = maxpacket;
537
538 /*
539 * reset/init endpoint fifo. NOTE: leaves fifo_bank alone,
540 * since endpoint resets don't reset hw pingpong state.
541 */
Harro Haan4f4c5e32010-03-01 18:01:56 +0100542 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
543 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800544
Harro Haan4f4c5e32010-03-01 18:01:56 +0100545 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800546 return 0;
547}
548
549static int at91_ep_disable (struct usb_ep * _ep)
550{
551 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Andrew Victorffd33262006-12-07 22:44:33 -0800552 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800553 unsigned long flags;
554
555 if (ep == &ep->udc->ep[0])
556 return -EINVAL;
557
Harro Haan4f4c5e32010-03-01 18:01:56 +0100558 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800559
560 nuke(ep, -ESHUTDOWN);
561
562 /* restore the endpoint's pristine config */
Ido Shayevitzf9c56cd2012-02-08 13:56:48 +0200563 ep->ep.desc = NULL;
David Brownellbae4bd82006-01-22 10:32:37 -0800564 ep->ep.maxpacket = ep->maxpacket;
565
566 /* reset fifos and endpoint */
567 if (ep->udc->clocked) {
Andrew Victorffd33262006-12-07 22:44:33 -0800568 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
569 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800570 __raw_writel(0, ep->creg);
571 }
572
Harro Haan4f4c5e32010-03-01 18:01:56 +0100573 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800574 return 0;
575}
576
577/*
578 * this is a PIO-only driver, so there's nothing
579 * interesting for request or buffer allocation.
580 */
581
David Brownell8b2e7662006-07-05 02:38:56 -0700582static struct usb_request *
David Brownellf3db6e82008-01-05 13:21:43 -0800583at91_ep_alloc_request(struct usb_ep *_ep, gfp_t gfp_flags)
David Brownellbae4bd82006-01-22 10:32:37 -0800584{
585 struct at91_request *req;
586
Robert P. J. Daycd861282006-12-13 00:34:52 -0800587 req = kzalloc(sizeof (struct at91_request), gfp_flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800588 if (!req)
589 return NULL;
590
591 INIT_LIST_HEAD(&req->queue);
592 return &req->req;
593}
594
595static void at91_ep_free_request(struct usb_ep *_ep, struct usb_request *_req)
596{
597 struct at91_request *req;
598
599 req = container_of(_req, struct at91_request, req);
600 BUG_ON(!list_empty(&req->queue));
601 kfree(req);
602}
603
David Brownellbae4bd82006-01-22 10:32:37 -0800604static int at91_ep_queue(struct usb_ep *_ep,
605 struct usb_request *_req, gfp_t gfp_flags)
606{
607 struct at91_request *req;
608 struct at91_ep *ep;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100609 struct at91_udc *udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800610 int status;
611 unsigned long flags;
612
613 req = container_of(_req, struct at91_request, req);
614 ep = container_of(_ep, struct at91_ep, ep);
615
616 if (!_req || !_req->complete
617 || !_req->buf || !list_empty(&req->queue)) {
618 DBG("invalid request\n");
619 return -EINVAL;
620 }
621
Ido Shayevitz5a6506f2012-03-12 20:25:26 +0200622 if (!_ep || (!ep->ep.desc && ep->ep.name != ep0name)) {
David Brownellbae4bd82006-01-22 10:32:37 -0800623 DBG("invalid ep\n");
624 return -EINVAL;
625 }
626
Harro Haan4f4c5e32010-03-01 18:01:56 +0100627 udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800628
Harro Haan4f4c5e32010-03-01 18:01:56 +0100629 if (!udc || !udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) {
David Brownellbae4bd82006-01-22 10:32:37 -0800630 DBG("invalid device\n");
631 return -EINVAL;
632 }
633
634 _req->status = -EINPROGRESS;
635 _req->actual = 0;
636
Harro Haan4f4c5e32010-03-01 18:01:56 +0100637 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800638
639 /* try to kickstart any empty and idle queue */
640 if (list_empty(&ep->queue) && !ep->stopped) {
641 int is_ep0;
642
643 /*
644 * If this control request has a non-empty DATA stage, this
645 * will start that stage. It works just like a non-control
646 * request (until the status stage starts, maybe early).
647 *
648 * If the data stage is empty, then this starts a successful
649 * IN/STATUS stage. (Unsuccessful ones use set_halt.)
650 */
651 is_ep0 = (ep->ep.name == ep0name);
652 if (is_ep0) {
653 u32 tmp;
654
Harro Haan4f4c5e32010-03-01 18:01:56 +0100655 if (!udc->req_pending) {
David Brownellbae4bd82006-01-22 10:32:37 -0800656 status = -EINVAL;
657 goto done;
658 }
659
660 /*
661 * defer changing CONFG until after the gadget driver
662 * reconfigures the endpoints.
663 */
Harro Haan4f4c5e32010-03-01 18:01:56 +0100664 if (udc->wait_for_config_ack) {
665 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800666 tmp ^= AT91_UDP_CONFG;
667 VDBG("toggle config\n");
Harro Haan4f4c5e32010-03-01 18:01:56 +0100668 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -0800669 }
670 if (req->req.length == 0) {
671ep0_in_status:
672 PACKET("ep0 in/status\n");
673 status = 0;
674 tmp = __raw_readl(ep->creg);
675 tmp &= ~SET_FX;
676 tmp |= CLR_FX | AT91_UDP_TXPKTRDY;
677 __raw_writel(tmp, ep->creg);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100678 udc->req_pending = 0;
David Brownellbae4bd82006-01-22 10:32:37 -0800679 goto done;
680 }
681 }
682
683 if (ep->is_in)
684 status = write_fifo(ep, req);
685 else {
686 status = read_fifo(ep, req);
687
688 /* IN/STATUS stage is otherwise triggered by irq */
689 if (status && is_ep0)
690 goto ep0_in_status;
691 }
692 } else
693 status = 0;
694
695 if (req && !status) {
696 list_add_tail (&req->queue, &ep->queue);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100697 at91_udp_write(udc, AT91_UDP_IER, ep->int_mask);
David Brownellbae4bd82006-01-22 10:32:37 -0800698 }
699done:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100700 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800701 return (status < 0) ? status : 0;
702}
703
704static int at91_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
705{
Harro Haan4f4c5e32010-03-01 18:01:56 +0100706 struct at91_ep *ep;
David Brownellbae4bd82006-01-22 10:32:37 -0800707 struct at91_request *req;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100708 unsigned long flags;
709 struct at91_udc *udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800710
711 ep = container_of(_ep, struct at91_ep, ep);
712 if (!_ep || ep->ep.name == ep0name)
713 return -EINVAL;
714
Harro Haan4f4c5e32010-03-01 18:01:56 +0100715 udc = ep->udc;
716
717 spin_lock_irqsave(&udc->lock, flags);
718
David Brownellbae4bd82006-01-22 10:32:37 -0800719 /* make sure it's actually queued on this endpoint */
720 list_for_each_entry (req, &ep->queue, queue) {
721 if (&req->req == _req)
722 break;
723 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100724 if (&req->req != _req) {
725 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800726 return -EINVAL;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100727 }
David Brownellbae4bd82006-01-22 10:32:37 -0800728
729 done(ep, req, -ECONNRESET);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100730 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800731 return 0;
732}
733
734static int at91_ep_set_halt(struct usb_ep *_ep, int value)
735{
736 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep);
Andrew Victorffd33262006-12-07 22:44:33 -0800737 struct at91_udc *udc = ep->udc;
David Brownellbae4bd82006-01-22 10:32:37 -0800738 u32 __iomem *creg;
739 u32 csr;
740 unsigned long flags;
741 int status = 0;
742
743 if (!_ep || ep->is_iso || !ep->udc->clocked)
744 return -EINVAL;
745
746 creg = ep->creg;
Harro Haan4f4c5e32010-03-01 18:01:56 +0100747 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800748
749 csr = __raw_readl(creg);
750
751 /*
752 * fail with still-busy IN endpoints, ensuring correct sequencing
753 * of data tx then stall. note that the fifo rx bytecount isn't
754 * completely accurate as a tx bytecount.
755 */
756 if (ep->is_in && (!list_empty(&ep->queue) || (csr >> 16) != 0))
757 status = -EAGAIN;
758 else {
759 csr |= CLR_FX;
760 csr &= ~SET_FX;
761 if (value) {
762 csr |= AT91_UDP_FORCESTALL;
763 VDBG("halt %s\n", ep->ep.name);
764 } else {
Andrew Victorffd33262006-12-07 22:44:33 -0800765 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
766 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -0800767 csr &= ~AT91_UDP_FORCESTALL;
768 }
769 __raw_writel(csr, creg);
770 }
771
Harro Haan4f4c5e32010-03-01 18:01:56 +0100772 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800773 return status;
774}
775
David Brownell398acce2007-02-15 18:47:17 -0800776static const struct usb_ep_ops at91_ep_ops = {
David Brownellbae4bd82006-01-22 10:32:37 -0800777 .enable = at91_ep_enable,
778 .disable = at91_ep_disable,
779 .alloc_request = at91_ep_alloc_request,
780 .free_request = at91_ep_free_request,
David Brownellbae4bd82006-01-22 10:32:37 -0800781 .queue = at91_ep_queue,
782 .dequeue = at91_ep_dequeue,
783 .set_halt = at91_ep_set_halt,
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200784 /* there's only imprecise fifo status reporting */
David Brownellbae4bd82006-01-22 10:32:37 -0800785};
786
787/*-------------------------------------------------------------------------*/
788
789static int at91_get_frame(struct usb_gadget *gadget)
790{
Andrew Victorffd33262006-12-07 22:44:33 -0800791 struct at91_udc *udc = to_udc(gadget);
792
David Brownellbae4bd82006-01-22 10:32:37 -0800793 if (!to_udc(gadget)->clocked)
794 return -EINVAL;
Andrew Victorffd33262006-12-07 22:44:33 -0800795 return at91_udp_read(udc, AT91_UDP_FRM_NUM) & AT91_UDP_NUM;
David Brownellbae4bd82006-01-22 10:32:37 -0800796}
797
798static int at91_wakeup(struct usb_gadget *gadget)
799{
800 struct at91_udc *udc = to_udc(gadget);
801 u32 glbstate;
David Brownellbae4bd82006-01-22 10:32:37 -0800802 unsigned long flags;
803
Harvey Harrison441b62c2008-03-03 16:08:34 -0800804 DBG("%s\n", __func__ );
Harro Haan4f4c5e32010-03-01 18:01:56 +0100805 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800806
807 if (!udc->clocked || !udc->suspended)
808 goto done;
809
810 /* NOTE: some "early versions" handle ESR differently ... */
811
Andrew Victorffd33262006-12-07 22:44:33 -0800812 glbstate = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -0800813 if (!(glbstate & AT91_UDP_ESR))
814 goto done;
815 glbstate |= AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -0800816 at91_udp_write(udc, AT91_UDP_GLB_STAT, glbstate);
David Brownellbae4bd82006-01-22 10:32:37 -0800817
818done:
Harro Haan4f4c5e32010-03-01 18:01:56 +0100819 spin_unlock_irqrestore(&udc->lock, flags);
Hariprasad Kelam67929a72019-06-05 19:42:53 +0530820 return 0;
David Brownellbae4bd82006-01-22 10:32:37 -0800821}
822
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300823/* reinit == restore initial software state */
David Brownellbae4bd82006-01-22 10:32:37 -0800824static void udc_reinit(struct at91_udc *udc)
825{
826 u32 i;
827
828 INIT_LIST_HEAD(&udc->gadget.ep_list);
829 INIT_LIST_HEAD(&udc->gadget.ep0->ep_list);
Robert Baldyga02ded1b2015-07-28 07:19:59 +0200830 udc->gadget.quirk_stall_not_supp = 1;
David Brownellbae4bd82006-01-22 10:32:37 -0800831
832 for (i = 0; i < NUM_ENDPOINTS; i++) {
833 struct at91_ep *ep = &udc->ep[i];
834
835 if (i != 0)
836 list_add_tail(&ep->ep.ep_list, &udc->gadget.ep_list);
Ido Shayevitz5a6506f2012-03-12 20:25:26 +0200837 ep->ep.desc = NULL;
David Brownellbae4bd82006-01-22 10:32:37 -0800838 ep->stopped = 0;
839 ep->fifo_bank = 0;
Robert Baldygae117e742013-12-13 12:23:38 +0100840 usb_ep_set_maxpacket_limit(&ep->ep, ep->maxpacket);
Andrew Victorffd33262006-12-07 22:44:33 -0800841 ep->creg = (void __iomem *) udc->udp_baseaddr + AT91_UDP_CSR(i);
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200842 /* initialize one queue per endpoint */
David Brownellbae4bd82006-01-22 10:32:37 -0800843 INIT_LIST_HEAD(&ep->queue);
844 }
845}
846
Peter Chen236e5062014-11-06 14:28:02 +0800847static void reset_gadget(struct at91_udc *udc)
848{
849 struct usb_gadget_driver *driver = udc->driver;
850 int i;
851
852 if (udc->gadget.speed == USB_SPEED_UNKNOWN)
853 driver = NULL;
854 udc->gadget.speed = USB_SPEED_UNKNOWN;
855 udc->suspended = 0;
856
857 for (i = 0; i < NUM_ENDPOINTS; i++) {
858 struct at91_ep *ep = &udc->ep[i];
859
860 ep->stopped = 1;
861 nuke(ep, -ESHUTDOWN);
862 }
863 if (driver) {
864 spin_unlock(&udc->lock);
865 usb_gadget_udc_reset(&udc->gadget, driver);
866 spin_lock(&udc->lock);
867 }
868
869 udc_reinit(udc);
870}
871
David Brownellbae4bd82006-01-22 10:32:37 -0800872static void stop_activity(struct at91_udc *udc)
873{
874 struct usb_gadget_driver *driver = udc->driver;
875 int i;
876
877 if (udc->gadget.speed == USB_SPEED_UNKNOWN)
878 driver = NULL;
879 udc->gadget.speed = USB_SPEED_UNKNOWN;
David Brownell8b2e7662006-07-05 02:38:56 -0700880 udc->suspended = 0;
David Brownellbae4bd82006-01-22 10:32:37 -0800881
882 for (i = 0; i < NUM_ENDPOINTS; i++) {
883 struct at91_ep *ep = &udc->ep[i];
884 ep->stopped = 1;
885 nuke(ep, -ESHUTDOWN);
886 }
Harro Haan4f4c5e32010-03-01 18:01:56 +0100887 if (driver) {
888 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -0800889 driver->disconnect(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100890 spin_lock(&udc->lock);
891 }
David Brownellbae4bd82006-01-22 10:32:37 -0800892
893 udc_reinit(udc);
894}
895
896static void clk_on(struct at91_udc *udc)
897{
898 if (udc->clocked)
899 return;
900 udc->clocked = 1;
Boris BREZILLONc0aefc72013-08-02 10:37:34 +0200901
Ronald Wahlb2ba27a2014-11-19 16:37:27 +0100902 clk_enable(udc->iclk);
903 clk_enable(udc->fclk);
David Brownellbae4bd82006-01-22 10:32:37 -0800904}
905
906static void clk_off(struct at91_udc *udc)
907{
908 if (!udc->clocked)
909 return;
910 udc->clocked = 0;
911 udc->gadget.speed = USB_SPEED_UNKNOWN;
Ronald Wahlb2ba27a2014-11-19 16:37:27 +0100912 clk_disable(udc->fclk);
913 clk_disable(udc->iclk);
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{
922 if (!udc->enabled || !udc->vbus)
923 is_on = 0;
924 DBG("%sactive\n", is_on ? "" : "in");
Andrew Victorffd33262006-12-07 22:44:33 -0800925
David Brownellbae4bd82006-01-22 10:32:37 -0800926 if (is_on) {
927 clk_on(udc);
Nicolas Ferre08cbc702007-12-13 15:52:58 -0800928 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXRSM);
Andrew Victorffd33262006-12-07 22:44:33 -0800929 at91_udp_write(udc, AT91_UDP_TXVC, 0);
Andrew Victorffd33262006-12-07 22:44:33 -0800930 } else {
David Brownellbae4bd82006-01-22 10:32:37 -0800931 stop_activity(udc);
Nicolas Ferre08cbc702007-12-13 15:52:58 -0800932 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXRSM);
Andrew Victorffd33262006-12-07 22:44:33 -0800933 at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
David Brownellbae4bd82006-01-22 10:32:37 -0800934 clk_off(udc);
David Brownellbae4bd82006-01-22 10:32:37 -0800935 }
Boris Brezillonf0bceab2015-01-14 17:22:02 +0100936
937 if (udc->caps && udc->caps->pullup)
938 udc->caps->pullup(udc, is_on);
David Brownellbae4bd82006-01-22 10:32:37 -0800939}
940
941/* vbus is here! turn everything on that's ready */
942static int at91_vbus_session(struct usb_gadget *gadget, int is_active)
943{
944 struct at91_udc *udc = to_udc(gadget);
945 unsigned long flags;
946
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200947 /* VDBG("vbus %s\n", is_active ? "on" : "off"); */
Harro Haan4f4c5e32010-03-01 18:01:56 +0100948 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800949 udc->vbus = (is_active != 0);
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -0800950 if (udc->driver)
951 pullup(udc, is_active);
952 else
953 pullup(udc, 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100954 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800955 return 0;
956}
957
958static int at91_pullup(struct usb_gadget *gadget, int is_on)
959{
960 struct at91_udc *udc = to_udc(gadget);
961 unsigned long flags;
962
Harro Haan4f4c5e32010-03-01 18:01:56 +0100963 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800964 udc->enabled = is_on = !!is_on;
965 pullup(udc, is_on);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100966 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800967 return 0;
968}
969
970static int at91_set_selfpowered(struct usb_gadget *gadget, int is_on)
971{
972 struct at91_udc *udc = to_udc(gadget);
973 unsigned long flags;
974
Harro Haan4f4c5e32010-03-01 18:01:56 +0100975 spin_lock_irqsave(&udc->lock, flags);
Peter Chen73019712015-01-28 16:32:26 +0800976 gadget->is_selfpowered = (is_on != 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +0100977 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -0800978 return 0;
979}
980
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +0100981static int at91_start(struct usb_gadget *gadget,
982 struct usb_gadget_driver *driver);
Felipe Balbi22835b82014-10-17 12:05:12 -0500983static int at91_stop(struct usb_gadget *gadget);
984
David Brownellbae4bd82006-01-22 10:32:37 -0800985static const struct usb_gadget_ops at91_udc_ops = {
986 .get_frame = at91_get_frame,
987 .wakeup = at91_wakeup,
988 .set_selfpowered = at91_set_selfpowered,
989 .vbus_session = at91_vbus_session,
990 .pullup = at91_pullup,
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +0100991 .udc_start = at91_start,
992 .udc_stop = at91_stop,
David Brownellbae4bd82006-01-22 10:32:37 -0800993
994 /*
995 * VBUS-powered devices may also also want to support bigger
996 * power budgets after an appropriate SET_CONFIGURATION.
997 */
Robert Schwebel1a8060d2011-10-06 21:36:26 +0200998 /* .vbus_power = at91_vbus_power, */
David Brownellbae4bd82006-01-22 10:32:37 -0800999};
1000
1001/*-------------------------------------------------------------------------*/
1002
1003static int handle_ep(struct at91_ep *ep)
1004{
1005 struct at91_request *req;
1006 u32 __iomem *creg = ep->creg;
1007 u32 csr = __raw_readl(creg);
1008
1009 if (!list_empty(&ep->queue))
1010 req = list_entry(ep->queue.next,
1011 struct at91_request, queue);
1012 else
1013 req = NULL;
1014
1015 if (ep->is_in) {
1016 if (csr & (AT91_UDP_STALLSENT | AT91_UDP_TXCOMP)) {
1017 csr |= CLR_FX;
1018 csr &= ~(SET_FX | AT91_UDP_STALLSENT | AT91_UDP_TXCOMP);
1019 __raw_writel(csr, creg);
1020 }
1021 if (req)
1022 return write_fifo(ep, req);
1023
1024 } else {
1025 if (csr & AT91_UDP_STALLSENT) {
1026 /* STALLSENT bit == ISOERR */
1027 if (ep->is_iso && req)
1028 req->req.status = -EILSEQ;
1029 csr |= CLR_FX;
1030 csr &= ~(SET_FX | AT91_UDP_STALLSENT);
1031 __raw_writel(csr, creg);
1032 csr = __raw_readl(creg);
1033 }
1034 if (req && (csr & RX_DATA_READY))
1035 return read_fifo(ep, req);
1036 }
1037 return 0;
1038}
1039
1040union setup {
1041 u8 raw[8];
1042 struct usb_ctrlrequest r;
1043};
1044
1045static void handle_setup(struct at91_udc *udc, struct at91_ep *ep, u32 csr)
1046{
1047 u32 __iomem *creg = ep->creg;
1048 u8 __iomem *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
1049 unsigned rxcount, i = 0;
1050 u32 tmp;
1051 union setup pkt;
1052 int status = 0;
1053
1054 /* read and ack SETUP; hard-fail for bogus packets */
1055 rxcount = (csr & AT91_UDP_RXBYTECNT) >> 16;
1056 if (likely(rxcount == 8)) {
1057 while (rxcount--)
1058 pkt.raw[i++] = __raw_readb(dreg);
1059 if (pkt.r.bRequestType & USB_DIR_IN) {
1060 csr |= AT91_UDP_DIR;
1061 ep->is_in = 1;
1062 } else {
1063 csr &= ~AT91_UDP_DIR;
1064 ep->is_in = 0;
1065 }
1066 } else {
Robert Schwebel1a8060d2011-10-06 21:36:26 +02001067 /* REVISIT this happens sometimes under load; why?? */
David Brownellbae4bd82006-01-22 10:32:37 -08001068 ERR("SETUP len %d, csr %08x\n", rxcount, csr);
1069 status = -EINVAL;
1070 }
1071 csr |= CLR_FX;
1072 csr &= ~(SET_FX | AT91_UDP_RXSETUP);
1073 __raw_writel(csr, creg);
1074 udc->wait_for_addr_ack = 0;
1075 udc->wait_for_config_ack = 0;
1076 ep->stopped = 0;
1077 if (unlikely(status != 0))
1078 goto stall;
1079
1080#define w_index le16_to_cpu(pkt.r.wIndex)
1081#define w_value le16_to_cpu(pkt.r.wValue)
1082#define w_length le16_to_cpu(pkt.r.wLength)
1083
1084 VDBG("SETUP %02x.%02x v%04x i%04x l%04x\n",
1085 pkt.r.bRequestType, pkt.r.bRequest,
1086 w_value, w_index, w_length);
1087
1088 /*
1089 * A few standard requests get handled here, ones that touch
1090 * hardware ... notably for device and endpoint features.
1091 */
1092 udc->req_pending = 1;
1093 csr = __raw_readl(creg);
1094 csr |= CLR_FX;
1095 csr &= ~SET_FX;
1096 switch ((pkt.r.bRequestType << 8) | pkt.r.bRequest) {
1097
1098 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1099 | USB_REQ_SET_ADDRESS:
1100 __raw_writel(csr | AT91_UDP_TXPKTRDY, creg);
1101 udc->addr = w_value;
1102 udc->wait_for_addr_ack = 1;
1103 udc->req_pending = 0;
1104 /* FADDR is set later, when we ack host STATUS */
1105 return;
1106
1107 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1108 | USB_REQ_SET_CONFIGURATION:
Andrew Victorffd33262006-12-07 22:44:33 -08001109 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_CONFG;
David Brownellbae4bd82006-01-22 10:32:37 -08001110 if (pkt.r.wValue)
1111 udc->wait_for_config_ack = (tmp == 0);
1112 else
1113 udc->wait_for_config_ack = (tmp != 0);
1114 if (udc->wait_for_config_ack)
1115 VDBG("wait for config\n");
1116 /* CONFG is toggled later, if gadget driver succeeds */
1117 break;
1118
1119 /*
1120 * Hosts may set or clear remote wakeup status, and
1121 * devices may report they're VBUS powered.
1122 */
1123 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1124 | USB_REQ_GET_STATUS:
Peter Chen73019712015-01-28 16:32:26 +08001125 tmp = (udc->gadget.is_selfpowered << USB_DEVICE_SELF_POWERED);
Andrew Victorffd33262006-12-07 22:44:33 -08001126 if (at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_ESR)
David Brownellbae4bd82006-01-22 10:32:37 -08001127 tmp |= (1 << USB_DEVICE_REMOTE_WAKEUP);
1128 PACKET("get device status\n");
1129 __raw_writeb(tmp, dreg);
1130 __raw_writeb(0, dreg);
1131 goto write_in;
1132 /* then STATUS starts later, automatically */
1133 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1134 | USB_REQ_SET_FEATURE:
1135 if (w_value != USB_DEVICE_REMOTE_WAKEUP)
1136 goto stall;
Andrew Victorffd33262006-12-07 22:44:33 -08001137 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001138 tmp |= AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -08001139 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001140 goto succeed;
1141 case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1142 | USB_REQ_CLEAR_FEATURE:
1143 if (w_value != USB_DEVICE_REMOTE_WAKEUP)
1144 goto stall;
Andrew Victorffd33262006-12-07 22:44:33 -08001145 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001146 tmp &= ~AT91_UDP_ESR;
Andrew Victorffd33262006-12-07 22:44:33 -08001147 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001148 goto succeed;
1149
1150 /*
1151 * Interfaces have no feature settings; this is pretty useless.
1152 * we won't even insist the interface exists...
1153 */
1154 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1155 | USB_REQ_GET_STATUS:
1156 PACKET("get interface status\n");
1157 __raw_writeb(0, dreg);
1158 __raw_writeb(0, dreg);
1159 goto write_in;
1160 /* then STATUS starts later, automatically */
1161 case ((USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1162 | USB_REQ_SET_FEATURE:
1163 case ((USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1164 | USB_REQ_CLEAR_FEATURE:
1165 goto stall;
1166
1167 /*
1168 * Hosts may clear bulk/intr endpoint halt after the gadget
1169 * driver sets it (not widely used); or set it (for testing)
1170 */
1171 case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1172 | USB_REQ_GET_STATUS:
1173 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1174 ep = &udc->ep[tmp];
Ido Shayevitz5a6506f2012-03-12 20:25:26 +02001175 if (tmp >= NUM_ENDPOINTS || (tmp && !ep->ep.desc))
David Brownellbae4bd82006-01-22 10:32:37 -08001176 goto stall;
1177
1178 if (tmp) {
1179 if ((w_index & USB_DIR_IN)) {
1180 if (!ep->is_in)
1181 goto stall;
1182 } else if (ep->is_in)
1183 goto stall;
1184 }
1185 PACKET("get %s status\n", ep->ep.name);
1186 if (__raw_readl(ep->creg) & AT91_UDP_FORCESTALL)
1187 tmp = (1 << USB_ENDPOINT_HALT);
1188 else
1189 tmp = 0;
1190 __raw_writeb(tmp, dreg);
1191 __raw_writeb(0, dreg);
1192 goto write_in;
1193 /* then STATUS starts later, automatically */
1194 case ((USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1195 | USB_REQ_SET_FEATURE:
1196 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1197 ep = &udc->ep[tmp];
David Brownell1440e092007-12-09 22:53:09 -08001198 if (w_value != USB_ENDPOINT_HALT || tmp >= NUM_ENDPOINTS)
David Brownellbae4bd82006-01-22 10:32:37 -08001199 goto stall;
Ido Shayevitz5a6506f2012-03-12 20:25:26 +02001200 if (!ep->ep.desc || ep->is_iso)
David Brownellbae4bd82006-01-22 10:32:37 -08001201 goto stall;
1202 if ((w_index & USB_DIR_IN)) {
1203 if (!ep->is_in)
1204 goto stall;
1205 } else if (ep->is_in)
1206 goto stall;
1207
1208 tmp = __raw_readl(ep->creg);
1209 tmp &= ~SET_FX;
1210 tmp |= CLR_FX | AT91_UDP_FORCESTALL;
1211 __raw_writel(tmp, ep->creg);
1212 goto succeed;
1213 case ((USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1214 | USB_REQ_CLEAR_FEATURE:
1215 tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1216 ep = &udc->ep[tmp];
David Brownell1440e092007-12-09 22:53:09 -08001217 if (w_value != USB_ENDPOINT_HALT || tmp >= NUM_ENDPOINTS)
David Brownellbae4bd82006-01-22 10:32:37 -08001218 goto stall;
1219 if (tmp == 0)
1220 goto succeed;
Ido Shayevitz5a6506f2012-03-12 20:25:26 +02001221 if (!ep->ep.desc || ep->is_iso)
David Brownellbae4bd82006-01-22 10:32:37 -08001222 goto stall;
1223 if ((w_index & USB_DIR_IN)) {
1224 if (!ep->is_in)
1225 goto stall;
1226 } else if (ep->is_in)
1227 goto stall;
1228
Andrew Victorffd33262006-12-07 22:44:33 -08001229 at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
1230 at91_udp_write(udc, AT91_UDP_RST_EP, 0);
David Brownellbae4bd82006-01-22 10:32:37 -08001231 tmp = __raw_readl(ep->creg);
1232 tmp |= CLR_FX;
1233 tmp &= ~(SET_FX | AT91_UDP_FORCESTALL);
1234 __raw_writel(tmp, ep->creg);
1235 if (!list_empty(&ep->queue))
1236 handle_ep(ep);
1237 goto succeed;
1238 }
1239
1240#undef w_value
1241#undef w_index
1242#undef w_length
1243
1244 /* pass request up to the gadget driver */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001245 if (udc->driver) {
1246 spin_unlock(&udc->lock);
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -08001247 status = udc->driver->setup(&udc->gadget, &pkt.r);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001248 spin_lock(&udc->lock);
1249 }
Wojtek Kaniewskibfb7fb72006-12-08 03:26:00 -08001250 else
1251 status = -ENODEV;
David Brownellbae4bd82006-01-22 10:32:37 -08001252 if (status < 0) {
1253stall:
1254 VDBG("req %02x.%02x protocol STALL; stat %d\n",
1255 pkt.r.bRequestType, pkt.r.bRequest, status);
1256 csr |= AT91_UDP_FORCESTALL;
1257 __raw_writel(csr, creg);
1258 udc->req_pending = 0;
1259 }
1260 return;
1261
1262succeed:
1263 /* immediate successful (IN) STATUS after zero length DATA */
1264 PACKET("ep0 in/status\n");
1265write_in:
1266 csr |= AT91_UDP_TXPKTRDY;
1267 __raw_writel(csr, creg);
1268 udc->req_pending = 0;
David Brownellbae4bd82006-01-22 10:32:37 -08001269}
1270
1271static void handle_ep0(struct at91_udc *udc)
1272{
1273 struct at91_ep *ep0 = &udc->ep[0];
1274 u32 __iomem *creg = ep0->creg;
1275 u32 csr = __raw_readl(creg);
1276 struct at91_request *req;
1277
1278 if (unlikely(csr & AT91_UDP_STALLSENT)) {
1279 nuke(ep0, -EPROTO);
1280 udc->req_pending = 0;
1281 csr |= CLR_FX;
1282 csr &= ~(SET_FX | AT91_UDP_STALLSENT | AT91_UDP_FORCESTALL);
1283 __raw_writel(csr, creg);
1284 VDBG("ep0 stalled\n");
1285 csr = __raw_readl(creg);
1286 }
1287 if (csr & AT91_UDP_RXSETUP) {
1288 nuke(ep0, 0);
1289 udc->req_pending = 0;
1290 handle_setup(udc, ep0, csr);
1291 return;
1292 }
1293
1294 if (list_empty(&ep0->queue))
1295 req = NULL;
1296 else
1297 req = list_entry(ep0->queue.next, struct at91_request, queue);
1298
1299 /* host ACKed an IN packet that we sent */
1300 if (csr & AT91_UDP_TXCOMP) {
1301 csr |= CLR_FX;
1302 csr &= ~(SET_FX | AT91_UDP_TXCOMP);
1303
1304 /* write more IN DATA? */
1305 if (req && ep0->is_in) {
1306 if (handle_ep(ep0))
1307 udc->req_pending = 0;
1308
1309 /*
1310 * Ack after:
1311 * - last IN DATA packet (including GET_STATUS)
1312 * - IN/STATUS for OUT DATA
1313 * - IN/STATUS for any zero-length DATA stage
1314 * except for the IN DATA case, the host should send
1315 * an OUT status later, which we'll ack.
1316 */
1317 } else {
1318 udc->req_pending = 0;
1319 __raw_writel(csr, creg);
1320
1321 /*
1322 * SET_ADDRESS takes effect only after the STATUS
1323 * (to the original address) gets acked.
1324 */
1325 if (udc->wait_for_addr_ack) {
1326 u32 tmp;
1327
Andrew Victorffd33262006-12-07 22:44:33 -08001328 at91_udp_write(udc, AT91_UDP_FADDR,
David Brownell8b2e7662006-07-05 02:38:56 -07001329 AT91_UDP_FEN | udc->addr);
Andrew Victorffd33262006-12-07 22:44:33 -08001330 tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
David Brownellbae4bd82006-01-22 10:32:37 -08001331 tmp &= ~AT91_UDP_FADDEN;
1332 if (udc->addr)
1333 tmp |= AT91_UDP_FADDEN;
Andrew Victorffd33262006-12-07 22:44:33 -08001334 at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
David Brownellbae4bd82006-01-22 10:32:37 -08001335
1336 udc->wait_for_addr_ack = 0;
1337 VDBG("address %d\n", udc->addr);
1338 }
1339 }
1340 }
1341
1342 /* OUT packet arrived ... */
1343 else if (csr & AT91_UDP_RX_DATA_BK0) {
1344 csr |= CLR_FX;
1345 csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
1346
1347 /* OUT DATA stage */
1348 if (!ep0->is_in) {
1349 if (req) {
1350 if (handle_ep(ep0)) {
1351 /* send IN/STATUS */
1352 PACKET("ep0 in/status\n");
1353 csr = __raw_readl(creg);
1354 csr &= ~SET_FX;
1355 csr |= CLR_FX | AT91_UDP_TXPKTRDY;
1356 __raw_writel(csr, creg);
1357 udc->req_pending = 0;
1358 }
1359 } else if (udc->req_pending) {
1360 /*
1361 * AT91 hardware has a hard time with this
1362 * "deferred response" mode for control-OUT
1363 * transfers. (For control-IN it's fine.)
1364 *
1365 * The normal solution leaves OUT data in the
1366 * fifo until the gadget driver is ready.
1367 * We couldn't do that here without disabling
1368 * the IRQ that tells about SETUP packets,
1369 * e.g. when the host gets impatient...
1370 *
1371 * Working around it by copying into a buffer
1372 * would almost be a non-deferred response,
1373 * except that it wouldn't permit reliable
1374 * stalling of the request. Instead, demand
1375 * that gadget drivers not use this mode.
1376 */
1377 DBG("no control-OUT deferred responses!\n");
1378 __raw_writel(csr | AT91_UDP_FORCESTALL, creg);
1379 udc->req_pending = 0;
1380 }
1381
1382 /* STATUS stage for control-IN; ack. */
1383 } else {
1384 PACKET("ep0 out/status ACK\n");
1385 __raw_writel(csr, creg);
1386
1387 /* "early" status stage */
1388 if (req)
1389 done(ep0, req, 0);
1390 }
1391 }
1392}
1393
David Howells7d12e782006-10-05 14:55:46 +01001394static irqreturn_t at91_udc_irq (int irq, void *_udc)
David Brownellbae4bd82006-01-22 10:32:37 -08001395{
1396 struct at91_udc *udc = _udc;
1397 u32 rescans = 5;
Harro Haanc6c35232010-03-01 17:38:37 +01001398 int disable_clock = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001399 unsigned long flags;
1400
1401 spin_lock_irqsave(&udc->lock, flags);
Harro Haanc6c35232010-03-01 17:38:37 +01001402
1403 if (!udc->clocked) {
1404 clk_on(udc);
1405 disable_clock = 1;
1406 }
David Brownellbae4bd82006-01-22 10:32:37 -08001407
1408 while (rescans--) {
David Brownell8b2e7662006-07-05 02:38:56 -07001409 u32 status;
David Brownellbae4bd82006-01-22 10:32:37 -08001410
Andrew Victorffd33262006-12-07 22:44:33 -08001411 status = at91_udp_read(udc, AT91_UDP_ISR)
1412 & at91_udp_read(udc, AT91_UDP_IMR);
David Brownellbae4bd82006-01-22 10:32:37 -08001413 if (!status)
1414 break;
1415
1416 /* USB reset irq: not maskable */
1417 if (status & AT91_UDP_ENDBUSRES) {
Andrew Victorffd33262006-12-07 22:44:33 -08001418 at91_udp_write(udc, AT91_UDP_IDR, ~MINIMUS_INTERRUPTUS);
1419 at91_udp_write(udc, AT91_UDP_IER, MINIMUS_INTERRUPTUS);
David Brownellbae4bd82006-01-22 10:32:37 -08001420 /* Atmel code clears this irq twice */
Andrew Victorffd33262006-12-07 22:44:33 -08001421 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
1422 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
David Brownellbae4bd82006-01-22 10:32:37 -08001423 VDBG("end bus reset\n");
1424 udc->addr = 0;
Peter Chen236e5062014-11-06 14:28:02 +08001425 reset_gadget(udc);
David Brownellbae4bd82006-01-22 10:32:37 -08001426
1427 /* enable ep0 */
Andrew Victorffd33262006-12-07 22:44:33 -08001428 at91_udp_write(udc, AT91_UDP_CSR(0),
David Brownell8b2e7662006-07-05 02:38:56 -07001429 AT91_UDP_EPEDS | AT91_UDP_EPTYPE_CTRL);
David Brownellbae4bd82006-01-22 10:32:37 -08001430 udc->gadget.speed = USB_SPEED_FULL;
1431 udc->suspended = 0;
Andrew Victorffd33262006-12-07 22:44:33 -08001432 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_EP(0));
David Brownellbae4bd82006-01-22 10:32:37 -08001433
1434 /*
1435 * NOTE: this driver keeps clocks off unless the
David Brownell8b2e7662006-07-05 02:38:56 -07001436 * USB host is present. That saves power, but for
1437 * boards that don't support VBUS detection, both
1438 * clocks need to be active most of the time.
David Brownellbae4bd82006-01-22 10:32:37 -08001439 */
1440
1441 /* host initiated suspend (3+ms bus idle) */
1442 } else if (status & AT91_UDP_RXSUSP) {
Andrew Victorffd33262006-12-07 22:44:33 -08001443 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXSUSP);
1444 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXRSM);
1445 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXSUSP);
Robert Schwebel1a8060d2011-10-06 21:36:26 +02001446 /* VDBG("bus suspend\n"); */
David Brownellbae4bd82006-01-22 10:32:37 -08001447 if (udc->suspended)
1448 continue;
1449 udc->suspended = 1;
1450
1451 /*
1452 * NOTE: when suspending a VBUS-powered device, the
1453 * gadget driver should switch into slow clock mode
1454 * and then into standby to avoid drawing more than
1455 * 500uA power (2500uA for some high-power configs).
1456 */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001457 if (udc->driver && udc->driver->suspend) {
1458 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001459 udc->driver->suspend(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001460 spin_lock(&udc->lock);
1461 }
David Brownellbae4bd82006-01-22 10:32:37 -08001462
1463 /* host initiated resume */
1464 } else if (status & AT91_UDP_RXRSM) {
Andrew Victorffd33262006-12-07 22:44:33 -08001465 at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXRSM);
1466 at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXSUSP);
1467 at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXRSM);
Robert Schwebel1a8060d2011-10-06 21:36:26 +02001468 /* VDBG("bus resume\n"); */
David Brownellbae4bd82006-01-22 10:32:37 -08001469 if (!udc->suspended)
1470 continue;
1471 udc->suspended = 0;
1472
1473 /*
1474 * NOTE: for a VBUS-powered device, the gadget driver
1475 * would normally want to switch out of slow clock
1476 * mode into normal mode.
1477 */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001478 if (udc->driver && udc->driver->resume) {
1479 spin_unlock(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001480 udc->driver->resume(&udc->gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001481 spin_lock(&udc->lock);
1482 }
David Brownellbae4bd82006-01-22 10:32:37 -08001483
1484 /* endpoint IRQs are cleared by handling them */
1485 } else {
1486 int i;
1487 unsigned mask = 1;
1488 struct at91_ep *ep = &udc->ep[1];
1489
1490 if (status & mask)
1491 handle_ep0(udc);
1492 for (i = 1; i < NUM_ENDPOINTS; i++) {
1493 mask <<= 1;
1494 if (status & mask)
1495 handle_ep(ep);
1496 ep++;
1497 }
1498 }
1499 }
1500
Harro Haanc6c35232010-03-01 17:38:37 +01001501 if (disable_clock)
1502 clk_off(udc);
1503
Harro Haan4f4c5e32010-03-01 18:01:56 +01001504 spin_unlock_irqrestore(&udc->lock, flags);
1505
David Brownellbae4bd82006-01-22 10:32:37 -08001506 return IRQ_HANDLED;
1507}
1508
1509/*-------------------------------------------------------------------------*/
1510
Ryan Mallon40372422010-07-13 05:09:16 +01001511static void at91_vbus_update(struct at91_udc *udc, unsigned value)
1512{
Ryan Mallon40372422010-07-13 05:09:16 +01001513 if (value != udc->vbus)
1514 at91_vbus_session(&udc->gadget, value);
1515}
1516
David Howells7d12e782006-10-05 14:55:46 +01001517static irqreturn_t at91_vbus_irq(int irq, void *_udc)
David Brownellbae4bd82006-01-22 10:32:37 -08001518{
1519 struct at91_udc *udc = _udc;
David Brownellbae4bd82006-01-22 10:32:37 -08001520
1521 /* vbus needs at least brief debouncing */
1522 udelay(10);
Balamanikandan Gunasundar4a555f22021-10-26 14:26:10 +05301523 at91_vbus_update(udc, gpiod_get_value(udc->board.vbus_pin));
David Brownellbae4bd82006-01-22 10:32:37 -08001524
1525 return IRQ_HANDLED;
1526}
1527
Ryan Mallon40372422010-07-13 05:09:16 +01001528static void at91_vbus_timer_work(struct work_struct *work)
1529{
1530 struct at91_udc *udc = container_of(work, struct at91_udc,
1531 vbus_timer_work);
1532
Balamanikandan Gunasundar4a555f22021-10-26 14:26:10 +05301533 at91_vbus_update(udc, gpiod_get_value_cansleep(udc->board.vbus_pin));
Ryan Mallon40372422010-07-13 05:09:16 +01001534
1535 if (!timer_pending(&udc->vbus_timer))
1536 mod_timer(&udc->vbus_timer, jiffies + VBUS_POLL_TIMEOUT);
1537}
1538
Kees Cooke99e88a2017-10-16 14:43:17 -07001539static void at91_vbus_timer(struct timer_list *t)
Ryan Mallon40372422010-07-13 05:09:16 +01001540{
Kees Cooke99e88a2017-10-16 14:43:17 -07001541 struct at91_udc *udc = from_timer(udc, t, vbus_timer);
Ryan Mallon40372422010-07-13 05:09:16 +01001542
1543 /*
1544 * If we are polling vbus it is likely that the gpio is on an
1545 * bus such as i2c or spi which may sleep, so schedule some work
1546 * to read the vbus gpio
1547 */
Tejun Heo348409a2012-12-21 17:57:12 -08001548 schedule_work(&udc->vbus_timer_work);
Ryan Mallon40372422010-07-13 05:09:16 +01001549}
1550
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +01001551static int at91_start(struct usb_gadget *gadget,
1552 struct usb_gadget_driver *driver)
David Brownellbae4bd82006-01-22 10:32:37 -08001553{
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +01001554 struct at91_udc *udc;
David Brownellbae4bd82006-01-22 10:32:37 -08001555
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +01001556 udc = container_of(gadget, struct at91_udc, gadget);
David Brownellbae4bd82006-01-22 10:32:37 -08001557 udc->driver = driver;
Alexandre Pereira da Silva65c84ea2012-06-26 11:27:12 -03001558 udc->gadget.dev.of_node = udc->pdev->dev.of_node;
David Brownellbae4bd82006-01-22 10:32:37 -08001559 udc->enabled = 1;
Peter Chen73019712015-01-28 16:32:26 +08001560 udc->gadget.is_selfpowered = 1;
David Brownellbae4bd82006-01-22 10:32:37 -08001561
David Brownellbae4bd82006-01-22 10:32:37 -08001562 return 0;
1563}
David Brownellbae4bd82006-01-22 10:32:37 -08001564
Felipe Balbi22835b82014-10-17 12:05:12 -05001565static int at91_stop(struct usb_gadget *gadget)
David Brownellbae4bd82006-01-22 10:32:37 -08001566{
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +01001567 struct at91_udc *udc;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001568 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001569
Sebastian Andrzej Siewiorf3d8bf32012-02-04 18:55:23 +01001570 udc = container_of(gadget, struct at91_udc, gadget);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001571 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001572 udc->enabled = 0;
Andrew Victorffd33262006-12-07 22:44:33 -08001573 at91_udp_write(udc, AT91_UDP_IDR, ~0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001574 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001575
David Brownellbae4bd82006-01-22 10:32:37 -08001576 udc->driver = NULL;
1577
David Brownellbae4bd82006-01-22 10:32:37 -08001578 return 0;
1579}
David Brownellbae4bd82006-01-22 10:32:37 -08001580
1581/*-------------------------------------------------------------------------*/
1582
1583static void at91udc_shutdown(struct platform_device *dev)
1584{
Harro Haan4f4c5e32010-03-01 18:01:56 +01001585 struct at91_udc *udc = platform_get_drvdata(dev);
1586 unsigned long flags;
1587
David Brownellbae4bd82006-01-22 10:32:37 -08001588 /* force disconnect on reboot */
Harro Haan4f4c5e32010-03-01 18:01:56 +01001589 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001590 pullup(platform_get_drvdata(dev), 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001591 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001592}
1593
Boris Brezillonf0bceab2015-01-14 17:22:02 +01001594static int at91rm9200_udc_init(struct at91_udc *udc)
1595{
1596 struct at91_ep *ep;
Boris Brezillonf0bceab2015-01-14 17:22:02 +01001597 int i;
1598
1599 for (i = 0; i < NUM_ENDPOINTS; i++) {
1600 ep = &udc->ep[i];
1601
1602 switch (i) {
1603 case 0:
1604 case 3:
1605 ep->maxpacket = 8;
1606 break;
1607 case 1 ... 2:
1608 ep->maxpacket = 64;
1609 break;
1610 case 4 ... 5:
1611 ep->maxpacket = 256;
1612 break;
1613 }
1614 }
1615
Balamanikandan Gunasundar4a555f22021-10-26 14:26:10 +05301616 if (!udc->board.pullup_pin) {
Boris Brezillonf0bceab2015-01-14 17:22:02 +01001617 DBG("no D+ pullup?\n");
1618 return -ENODEV;
1619 }
1620
Balamanikandan Gunasundar4a555f22021-10-26 14:26:10 +05301621 gpiod_direction_output(udc->board.pullup_pin,
1622 gpiod_is_active_low(udc->board.pullup_pin));
Boris Brezillonf0bceab2015-01-14 17:22:02 +01001623
1624 return 0;
1625}
1626
1627static void at91rm9200_udc_pullup(struct at91_udc *udc, int is_on)
1628{
Boris Brezillonf0bceab2015-01-14 17:22:02 +01001629 if (is_on)
Balamanikandan Gunasundar4a555f22021-10-26 14:26:10 +05301630 gpiod_set_value(udc->board.pullup_pin, 1);
Boris Brezillonf0bceab2015-01-14 17:22:02 +01001631 else
Balamanikandan Gunasundar4a555f22021-10-26 14:26:10 +05301632 gpiod_set_value(udc->board.pullup_pin, 0);
Boris Brezillonf0bceab2015-01-14 17:22:02 +01001633}
1634
1635static const struct at91_udc_caps at91rm9200_udc_caps = {
1636 .init = at91rm9200_udc_init,
1637 .pullup = at91rm9200_udc_pullup,
1638};
1639
1640static int at91sam9260_udc_init(struct at91_udc *udc)
1641{
1642 struct at91_ep *ep;
1643 int i;
1644
1645 for (i = 0; i < NUM_ENDPOINTS; i++) {
1646 ep = &udc->ep[i];
1647
1648 switch (i) {
1649 case 0 ... 3:
1650 ep->maxpacket = 64;
1651 break;
1652 case 4 ... 5:
1653 ep->maxpacket = 512;
1654 break;
1655 }
1656 }
1657
1658 return 0;
1659}
1660
1661static void at91sam9260_udc_pullup(struct at91_udc *udc, int is_on)
1662{
1663 u32 txvc = at91_udp_read(udc, AT91_UDP_TXVC);
1664
1665 if (is_on)
1666 txvc |= AT91_UDP_TXVC_PUON;
1667 else
1668 txvc &= ~AT91_UDP_TXVC_PUON;
1669
1670 at91_udp_write(udc, AT91_UDP_TXVC, txvc);
1671}
1672
1673static const struct at91_udc_caps at91sam9260_udc_caps = {
1674 .init = at91sam9260_udc_init,
1675 .pullup = at91sam9260_udc_pullup,
1676};
1677
1678static int at91sam9261_udc_init(struct at91_udc *udc)
1679{
1680 struct at91_ep *ep;
1681 int i;
1682
1683 for (i = 0; i < NUM_ENDPOINTS; i++) {
1684 ep = &udc->ep[i];
1685
1686 switch (i) {
1687 case 0:
1688 ep->maxpacket = 8;
1689 break;
1690 case 1 ... 3:
1691 ep->maxpacket = 64;
1692 break;
1693 case 4 ... 5:
1694 ep->maxpacket = 256;
1695 break;
1696 }
1697 }
1698
1699 udc->matrix = syscon_regmap_lookup_by_phandle(udc->pdev->dev.of_node,
1700 "atmel,matrix");
Felipe Balbi46cdd192016-03-29 12:26:06 +03001701 return PTR_ERR_OR_ZERO(udc->matrix);
Boris Brezillonf0bceab2015-01-14 17:22:02 +01001702}
1703
1704static void at91sam9261_udc_pullup(struct at91_udc *udc, int is_on)
1705{
1706 u32 usbpucr = 0;
1707
1708 if (is_on)
1709 usbpucr = AT91_MATRIX_USBPUCR_PUON;
1710
1711 regmap_update_bits(udc->matrix, AT91SAM9261_MATRIX_USBPUCR,
1712 AT91_MATRIX_USBPUCR_PUON, usbpucr);
1713}
1714
1715static const struct at91_udc_caps at91sam9261_udc_caps = {
1716 .init = at91sam9261_udc_init,
1717 .pullup = at91sam9261_udc_pullup,
1718};
1719
1720static int at91sam9263_udc_init(struct at91_udc *udc)
1721{
1722 struct at91_ep *ep;
1723 int i;
1724
1725 for (i = 0; i < NUM_ENDPOINTS; i++) {
1726 ep = &udc->ep[i];
1727
1728 switch (i) {
1729 case 0:
1730 case 1:
1731 case 2:
1732 case 3:
1733 ep->maxpacket = 64;
1734 break;
1735 case 4:
1736 case 5:
1737 ep->maxpacket = 256;
1738 break;
1739 }
1740 }
1741
1742 return 0;
1743}
1744
1745static const struct at91_udc_caps at91sam9263_udc_caps = {
1746 .init = at91sam9263_udc_init,
1747 .pullup = at91sam9260_udc_pullup,
1748};
1749
1750static const struct of_device_id at91_udc_dt_ids[] = {
1751 {
1752 .compatible = "atmel,at91rm9200-udc",
1753 .data = &at91rm9200_udc_caps,
1754 },
1755 {
1756 .compatible = "atmel,at91sam9260-udc",
1757 .data = &at91sam9260_udc_caps,
1758 },
1759 {
1760 .compatible = "atmel,at91sam9261-udc",
1761 .data = &at91sam9261_udc_caps,
1762 },
1763 {
1764 .compatible = "atmel,at91sam9263-udc",
1765 .data = &at91sam9263_udc_caps,
1766 },
1767 { /* sentinel */ }
1768};
1769MODULE_DEVICE_TABLE(of, at91_udc_dt_ids);
1770
1771static void at91udc_of_init(struct at91_udc *udc, struct device_node *np)
Jean-Christophe PLAGNIOL-VILLARDd1494a32012-01-28 22:35:36 +08001772{
1773 struct at91_udc_data *board = &udc->board;
Boris Brezillonf0bceab2015-01-14 17:22:02 +01001774 const struct of_device_id *match;
Boris Brezillonf0bceab2015-01-14 17:22:02 +01001775 u32 val;
Jean-Christophe PLAGNIOL-VILLARDd1494a32012-01-28 22:35:36 +08001776
1777 if (of_property_read_u32(np, "atmel,vbus-polled", &val) == 0)
1778 board->vbus_polled = 1;
1779
Balamanikandan Gunasundar4a555f22021-10-26 14:26:10 +05301780 board->vbus_pin = gpiod_get_from_of_node(np, "atmel,vbus-gpio", 0,
1781 GPIOD_IN, "udc_vbus");
1782 if (IS_ERR(board->vbus_pin))
1783 board->vbus_pin = NULL;
Jean-Christophe PLAGNIOL-VILLARDd1494a32012-01-28 22:35:36 +08001784
Balamanikandan Gunasundar4a555f22021-10-26 14:26:10 +05301785 board->pullup_pin = gpiod_get_from_of_node(np, "atmel,pullup-gpio", 0,
1786 GPIOD_ASIS, "udc_pullup");
1787 if (IS_ERR(board->pullup_pin))
1788 board->pullup_pin = NULL;
Boris Brezillonf0bceab2015-01-14 17:22:02 +01001789
1790 match = of_match_node(at91_udc_dt_ids, np);
1791 if (match)
1792 udc->caps = match->data;
Jean-Christophe PLAGNIOL-VILLARDd1494a32012-01-28 22:35:36 +08001793}
1794
Bill Pemberton41ac7b32012-11-19 13:21:48 -05001795static int at91udc_probe(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001796{
1797 struct device *dev = &pdev->dev;
1798 struct at91_udc *udc;
1799 int retval;
Boris Brezillonf0bceab2015-01-14 17:22:02 +01001800 struct at91_ep *ep;
1801 int i;
David Brownellbae4bd82006-01-22 10:32:37 -08001802
Boris Brezillona5514d142015-01-14 17:22:04 +01001803 udc = devm_kzalloc(dev, sizeof(*udc), GFP_KERNEL);
1804 if (!udc)
1805 return -ENOMEM;
David Brownellbae4bd82006-01-22 10:32:37 -08001806
1807 /* init software state */
David Brownellbae4bd82006-01-22 10:32:37 -08001808 udc->gadget.dev.parent = dev;
Boris Brezillon9f00fc12015-01-14 17:22:00 +01001809 at91udc_of_init(udc, pdev->dev.of_node);
David Brownellbae4bd82006-01-22 10:32:37 -08001810 udc->pdev = pdev;
David Brownellbae4bd82006-01-22 10:32:37 -08001811 udc->enabled = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001812 spin_lock_init(&udc->lock);
David Brownellbae4bd82006-01-22 10:32:37 -08001813
Boris Brezillona5514d142015-01-14 17:22:04 +01001814 udc->gadget.ops = &at91_udc_ops;
1815 udc->gadget.ep0 = &udc->ep[0].ep;
1816 udc->gadget.name = driver_name;
1817 udc->gadget.dev.init_name = "gadget";
David Brownellf3db6e82008-01-05 13:21:43 -08001818
Boris Brezillona5514d142015-01-14 17:22:04 +01001819 for (i = 0; i < NUM_ENDPOINTS; i++) {
1820 ep = &udc->ep[i];
Robert Baldygab9ed96d72015-07-31 16:00:21 +02001821 ep->ep.name = ep_info[i].name;
1822 ep->ep.caps = ep_info[i].caps;
Boris Brezillona5514d142015-01-14 17:22:04 +01001823 ep->ep.ops = &at91_ep_ops;
1824 ep->udc = udc;
1825 ep->int_mask = BIT(i);
1826 if (i != 0 && i != 3)
1827 ep->is_pingpong = 1;
David Brownellbae4bd82006-01-22 10:32:37 -08001828 }
1829
YueHaibinge719ffb2019-09-04 17:02:39 +08001830 udc->udp_baseaddr = devm_platform_ioremap_resource(pdev, 0);
Boris Brezillon422cde22015-01-14 17:22:01 +01001831 if (IS_ERR(udc->udp_baseaddr))
1832 return PTR_ERR(udc->udp_baseaddr);
David Brownellbb242802008-05-27 19:24:20 -07001833
Boris Brezillonf0bceab2015-01-14 17:22:02 +01001834 if (udc->caps && udc->caps->init) {
1835 retval = udc->caps->init(udc);
1836 if (retval)
1837 return retval;
Andrew Victorffd33262006-12-07 22:44:33 -08001838 }
1839
1840 udc_reinit(udc);
1841
David Brownellbae4bd82006-01-22 10:32:37 -08001842 /* get interface and function clocks */
Boris Brezillon422cde22015-01-14 17:22:01 +01001843 udc->iclk = devm_clk_get(dev, "pclk");
1844 if (IS_ERR(udc->iclk))
1845 return PTR_ERR(udc->iclk);
1846
1847 udc->fclk = devm_clk_get(dev, "hclk");
1848 if (IS_ERR(udc->fclk))
1849 return PTR_ERR(udc->fclk);
David Brownellbae4bd82006-01-22 10:32:37 -08001850
David Brownell8b2e7662006-07-05 02:38:56 -07001851 /* don't do anything until we have both gadget driver and VBUS */
Boris Brezillon9aa02162015-01-14 17:21:58 +01001852 clk_set_rate(udc->fclk, 48000000);
Ronald Wahlb2ba27a2014-11-19 16:37:27 +01001853 retval = clk_prepare(udc->fclk);
1854 if (retval)
Boris Brezillon422cde22015-01-14 17:22:01 +01001855 return retval;
Ronald Wahlb2ba27a2014-11-19 16:37:27 +01001856
Boris BREZILLON76280832013-06-25 10:12:56 +02001857 retval = clk_prepare_enable(udc->iclk);
1858 if (retval)
Boris Brezillon422cde22015-01-14 17:22:01 +01001859 goto err_unprepare_fclk;
1860
Andrew Victorffd33262006-12-07 22:44:33 -08001861 at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
1862 at91_udp_write(udc, AT91_UDP_IDR, 0xffffffff);
Andrew Victor29ba4b52006-12-07 22:44:38 -08001863 /* Clear all pending interrupts - UDP may be used by bootloader. */
1864 at91_udp_write(udc, AT91_UDP_ICR, 0xffffffff);
Ronald Wahlb2ba27a2014-11-19 16:37:27 +01001865 clk_disable(udc->iclk);
David Brownellbae4bd82006-01-22 10:32:37 -08001866
1867 /* request UDC and maybe VBUS irqs */
Sergey Shtylyov50855c32021-08-09 23:27:28 +03001868 udc->udp_irq = retval = platform_get_irq(pdev, 0);
1869 if (retval < 0)
1870 goto err_unprepare_iclk;
Boris Brezillon422cde22015-01-14 17:22:01 +01001871 retval = devm_request_irq(dev, udc->udp_irq, at91_udc_irq, 0,
1872 driver_name, udc);
1873 if (retval) {
David Brownell8b2e7662006-07-05 02:38:56 -07001874 DBG("request irq %d failed\n", udc->udp_irq);
Boris Brezillon422cde22015-01-14 17:22:01 +01001875 goto err_unprepare_iclk;
David Brownellbae4bd82006-01-22 10:32:37 -08001876 }
Boris Brezillon422cde22015-01-14 17:22:01 +01001877
Balamanikandan Gunasundar4a555f22021-10-26 14:26:10 +05301878 if (udc->board.vbus_pin) {
1879 gpiod_direction_input(udc->board.vbus_pin);
David Brownellf3db6e82008-01-05 13:21:43 -08001880
Andrew Victor29ba4b52006-12-07 22:44:38 -08001881 /*
1882 * Get the initial state of VBUS - we cannot expect
1883 * a pending interrupt.
1884 */
Balamanikandan Gunasundar4a555f22021-10-26 14:26:10 +05301885 udc->vbus = gpiod_get_value_cansleep(udc->board.vbus_pin);
Ryan Mallon40372422010-07-13 05:09:16 +01001886
1887 if (udc->board.vbus_polled) {
1888 INIT_WORK(&udc->vbus_timer_work, at91_vbus_timer_work);
Kees Cooke99e88a2017-10-16 14:43:17 -07001889 timer_setup(&udc->vbus_timer, at91_vbus_timer, 0);
Ryan Mallon40372422010-07-13 05:09:16 +01001890 mod_timer(&udc->vbus_timer,
1891 jiffies + VBUS_POLL_TIMEOUT);
1892 } else {
Boris Brezillon422cde22015-01-14 17:22:01 +01001893 retval = devm_request_irq(dev,
Balamanikandan Gunasundar4a555f22021-10-26 14:26:10 +05301894 gpiod_to_irq(udc->board.vbus_pin),
Boris Brezillon422cde22015-01-14 17:22:01 +01001895 at91_vbus_irq, 0, driver_name, udc);
1896 if (retval) {
Ryan Mallon40372422010-07-13 05:09:16 +01001897 DBG("request vbus irq %d failed\n",
1898 udc->board.vbus_pin);
Boris Brezillon422cde22015-01-14 17:22:01 +01001899 goto err_unprepare_iclk;
Ryan Mallon40372422010-07-13 05:09:16 +01001900 }
David Brownellbae4bd82006-01-22 10:32:37 -08001901 }
1902 } else {
1903 DBG("no VBUS detection, assuming always-on\n");
1904 udc->vbus = 1;
1905 }
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001906 retval = usb_add_gadget_udc(dev, &udc->gadget);
1907 if (retval)
Boris Brezillon422cde22015-01-14 17:22:01 +01001908 goto err_unprepare_iclk;
David Brownellbae4bd82006-01-22 10:32:37 -08001909 dev_set_drvdata(dev, udc);
David Brownell8b2e7662006-07-05 02:38:56 -07001910 device_init_wakeup(dev, 1);
David Brownellbae4bd82006-01-22 10:32:37 -08001911 create_debug_file(udc);
1912
1913 INFO("%s version %s\n", driver_name, DRIVER_VERSION);
1914 return 0;
Boris Brezillon422cde22015-01-14 17:22:01 +01001915
1916err_unprepare_iclk:
Ronald Wahlb2ba27a2014-11-19 16:37:27 +01001917 clk_unprepare(udc->iclk);
Boris Brezillon422cde22015-01-14 17:22:01 +01001918err_unprepare_fclk:
Ronald Wahlb2ba27a2014-11-19 16:37:27 +01001919 clk_unprepare(udc->fclk);
Boris Brezillon422cde22015-01-14 17:22:01 +01001920
David Brownellbae4bd82006-01-22 10:32:37 -08001921 DBG("%s probe failed, %d\n", driver_name, retval);
Boris Brezillon422cde22015-01-14 17:22:01 +01001922
David Brownellbae4bd82006-01-22 10:32:37 -08001923 return retval;
1924}
1925
Arnd Bergmannc94e2892015-04-11 00:14:21 +02001926static int at91udc_remove(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001927{
David Brownell8b2e7662006-07-05 02:38:56 -07001928 struct at91_udc *udc = platform_get_drvdata(pdev);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001929 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001930
1931 DBG("remove\n");
1932
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001933 usb_del_gadget_udc(&udc->gadget);
David Brownell6bea4762006-12-05 03:15:33 -08001934 if (udc->driver)
1935 return -EBUSY;
David Brownellbae4bd82006-01-22 10:32:37 -08001936
Harro Haan4f4c5e32010-03-01 18:01:56 +01001937 spin_lock_irqsave(&udc->lock, flags);
David Brownell6bea4762006-12-05 03:15:33 -08001938 pullup(udc, 0);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001939 spin_unlock_irqrestore(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001940
David Brownell8b2e7662006-07-05 02:38:56 -07001941 device_init_wakeup(&pdev->dev, 0);
David Brownellbae4bd82006-01-22 10:32:37 -08001942 remove_debug_file(udc);
Ronald Wahlb2ba27a2014-11-19 16:37:27 +01001943 clk_unprepare(udc->fclk);
1944 clk_unprepare(udc->iclk);
1945
David Brownellbae4bd82006-01-22 10:32:37 -08001946 return 0;
1947}
1948
1949#ifdef CONFIG_PM
David Brownell8b2e7662006-07-05 02:38:56 -07001950static int at91udc_suspend(struct platform_device *pdev, pm_message_t mesg)
David Brownellbae4bd82006-01-22 10:32:37 -08001951{
David Brownell8b2e7662006-07-05 02:38:56 -07001952 struct at91_udc *udc = platform_get_drvdata(pdev);
1953 int wake = udc->driver && device_may_wakeup(&pdev->dev);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001954 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001955
David Brownell8b2e7662006-07-05 02:38:56 -07001956 /* Unless we can act normally to the host (letting it wake us up
1957 * whenever it has work for us) force disconnect. Wakeup requires
1958 * PLLB for USB events (signaling for reset, wakeup, or incoming
1959 * tokens) and VBUS irqs (on systems which support them).
David Brownellbae4bd82006-01-22 10:32:37 -08001960 */
David Brownell8b2e7662006-07-05 02:38:56 -07001961 if ((!udc->suspended && udc->addr)
1962 || !wake
1963 || at91_suspend_entering_slow_clock()) {
Harro Haan4f4c5e32010-03-01 18:01:56 +01001964 spin_lock_irqsave(&udc->lock, flags);
David Brownellbae4bd82006-01-22 10:32:37 -08001965 pullup(udc, 0);
David Brownell66e56ce2007-01-16 12:46:39 -08001966 wake = 0;
Harro Haan4f4c5e32010-03-01 18:01:56 +01001967 spin_unlock_irqrestore(&udc->lock, flags);
David Brownell8b2e7662006-07-05 02:38:56 -07001968 } else
1969 enable_irq_wake(udc->udp_irq);
1970
David Brownell66e56ce2007-01-16 12:46:39 -08001971 udc->active_suspend = wake;
Balamanikandan Gunasundar4a555f22021-10-26 14:26:10 +05301972 if (udc->board.vbus_pin && !udc->board.vbus_polled && wake)
1973 enable_irq_wake(gpiod_to_irq(udc->board.vbus_pin));
David Brownellbae4bd82006-01-22 10:32:37 -08001974 return 0;
1975}
1976
David Brownell8b2e7662006-07-05 02:38:56 -07001977static int at91udc_resume(struct platform_device *pdev)
David Brownellbae4bd82006-01-22 10:32:37 -08001978{
David Brownell8b2e7662006-07-05 02:38:56 -07001979 struct at91_udc *udc = platform_get_drvdata(pdev);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001980 unsigned long flags;
David Brownellbae4bd82006-01-22 10:32:37 -08001981
Balamanikandan Gunasundar4a555f22021-10-26 14:26:10 +05301982 if (udc->board.vbus_pin && !udc->board.vbus_polled &&
Ryan Mallon40372422010-07-13 05:09:16 +01001983 udc->active_suspend)
Balamanikandan Gunasundar4a555f22021-10-26 14:26:10 +05301984 disable_irq_wake(gpiod_to_irq(udc->board.vbus_pin));
David Brownell66e56ce2007-01-16 12:46:39 -08001985
David Brownellbae4bd82006-01-22 10:32:37 -08001986 /* maybe reconnect to host; if so, clocks on */
David Brownell66e56ce2007-01-16 12:46:39 -08001987 if (udc->active_suspend)
1988 disable_irq_wake(udc->udp_irq);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001989 else {
1990 spin_lock_irqsave(&udc->lock, flags);
David Brownell66e56ce2007-01-16 12:46:39 -08001991 pullup(udc, 1);
Harro Haan4f4c5e32010-03-01 18:01:56 +01001992 spin_unlock_irqrestore(&udc->lock, flags);
1993 }
David Brownellbae4bd82006-01-22 10:32:37 -08001994 return 0;
1995}
1996#else
1997#define at91udc_suspend NULL
1998#define at91udc_resume NULL
1999#endif
2000
David Brownelldee497d2007-02-24 13:54:56 -08002001static struct platform_driver at91_udc_driver = {
Arnd Bergmannc94e2892015-04-11 00:14:21 +02002002 .remove = 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 = {
Corentin Labbebd699532020-02-18 19:32:47 +00002007 .name = driver_name,
Boris Brezillon9f00fc12015-01-14 17:22:00 +01002008 .of_match_table = at91_udc_dt_ids,
David Brownellbae4bd82006-01-22 10:32:37 -08002009 },
2010};
2011
Fabio Porcedda52f7a822013-01-09 12:15:28 +01002012module_platform_driver_probe(at91_udc_driver, at91udc_probe);
David Brownellbae4bd82006-01-22 10:32:37 -08002013
David Brownell8b2e7662006-07-05 02:38:56 -07002014MODULE_DESCRIPTION("AT91 udc driver");
David Brownellbae4bd82006-01-22 10:32:37 -08002015MODULE_AUTHOR("Thomas Rathbone, David Brownell");
2016MODULE_LICENSE("GPL");
Kay Sieversf34c32f2008-04-10 21:29:21 -07002017MODULE_ALIAS("platform:at91_udc");