blob: 2b9dbf06b991d527965a91e0694cc18c805725fc [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Lei Wena91ee2a2011-10-05 08:11:40 -07002/*
3 * Copyright 2011, Marvell Semiconductor Inc.
4 * Lei Wen <leiwen@marvell.com>
5 *
Lei Wena91ee2a2011-10-05 08:11:40 -07006 * Back ported to the 8xx platform (from the 8260 platform) by
7 * Murray.Jensen@cmst.csiro.au, 27-Jan-01.
8 */
9
10#include <common.h>
11#include <command.h>
12#include <config.h>
13#include <net.h>
14#include <malloc.h>
Troy Kiskyf1573942013-10-10 15:28:03 -070015#include <asm/byteorder.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090016#include <linux/errno.h>
Lei Wena91ee2a2011-10-05 08:11:40 -070017#include <asm/io.h>
Troy Kisky256a3172013-10-10 15:28:00 -070018#include <asm/unaligned.h>
Lei Wena91ee2a2011-10-05 08:11:40 -070019#include <linux/types.h>
Troy Kiskyf1573942013-10-10 15:28:03 -070020#include <linux/usb/ch9.h>
21#include <linux/usb/gadget.h>
Marek Vasut9ba89972014-02-06 02:43:45 +010022#include <usb/ci_udc.h>
Troy Kiskyf1573942013-10-10 15:28:03 -070023#include "../host/ehci.h"
Marek Vasut9ba89972014-02-06 02:43:45 +010024#include "ci_udc.h"
Lei Wena91ee2a2011-10-05 08:11:40 -070025
Marek Vasut9d64ac92013-07-10 03:16:38 +020026/*
27 * Check if the system has too long cachelines. If the cachelines are
28 * longer then 128b, the driver will not be able flush/invalidate data
29 * cache over separate QH entries. We use 128b because one QH entry is
30 * 64b long and there are always two QH list entries for each endpoint.
31 */
32#if ARCH_DMA_MINALIGN > 128
33#error This driver can not work on systems with caches longer than 128b
34#endif
35
Stephen Warrenfe529102014-07-01 11:41:15 -060036/*
Stephen Warrend13034e2014-07-01 11:41:16 -060037 * Every QTD must be individually aligned, since we can program any
38 * QTD's address into HW. Cache flushing requires ARCH_DMA_MINALIGN,
39 * and the USB HW requires 32-byte alignment. Align to both:
Stephen Warrenfe529102014-07-01 11:41:15 -060040 */
41#define ILIST_ALIGN roundup(ARCH_DMA_MINALIGN, 32)
Stephen Warrend13034e2014-07-01 11:41:16 -060042/* Each QTD is this size */
43#define ILIST_ENT_RAW_SZ sizeof(struct ept_queue_item)
44/*
45 * Align the size of the QTD too, so we can add this value to each
46 * QTD's address to get another aligned address.
47 */
48#define ILIST_ENT_SZ roundup(ILIST_ENT_RAW_SZ, ILIST_ALIGN)
49/* For each endpoint, we need 2 QTDs, one for each of IN and OUT */
50#define ILIST_SZ (NUM_ENDPOINTS * 2 * ILIST_ENT_SZ)
Stephen Warrenfe529102014-07-01 11:41:15 -060051
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +053052#define EP_MAX_LENGTH_TRANSFER 0x4000
53
Lei Wena91ee2a2011-10-05 08:11:40 -070054#ifndef DEBUG
55#define DBG(x...) do {} while (0)
56#else
57#define DBG(x...) printf(x)
58static const char *reqname(unsigned r)
59{
60 switch (r) {
61 case USB_REQ_GET_STATUS: return "GET_STATUS";
62 case USB_REQ_CLEAR_FEATURE: return "CLEAR_FEATURE";
63 case USB_REQ_SET_FEATURE: return "SET_FEATURE";
64 case USB_REQ_SET_ADDRESS: return "SET_ADDRESS";
65 case USB_REQ_GET_DESCRIPTOR: return "GET_DESCRIPTOR";
66 case USB_REQ_SET_DESCRIPTOR: return "SET_DESCRIPTOR";
67 case USB_REQ_GET_CONFIGURATION: return "GET_CONFIGURATION";
68 case USB_REQ_SET_CONFIGURATION: return "SET_CONFIGURATION";
69 case USB_REQ_GET_INTERFACE: return "GET_INTERFACE";
70 case USB_REQ_SET_INTERFACE: return "SET_INTERFACE";
71 default: return "*UNKNOWN*";
72 }
73}
74#endif
75
Stephen Warrenb3dc4222014-05-29 14:53:01 -060076static struct usb_endpoint_descriptor ep0_desc = {
Lei Wena91ee2a2011-10-05 08:11:40 -070077 .bLength = sizeof(struct usb_endpoint_descriptor),
78 .bDescriptorType = USB_DT_ENDPOINT,
Lei Wena91ee2a2011-10-05 08:11:40 -070079 .bEndpointAddress = USB_DIR_IN,
80 .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
81};
82
Marek Vasut9ba89972014-02-06 02:43:45 +010083static int ci_pullup(struct usb_gadget *gadget, int is_on);
84static int ci_ep_enable(struct usb_ep *ep,
Lei Wena91ee2a2011-10-05 08:11:40 -070085 const struct usb_endpoint_descriptor *desc);
Marek Vasut9ba89972014-02-06 02:43:45 +010086static int ci_ep_disable(struct usb_ep *ep);
87static int ci_ep_queue(struct usb_ep *ep,
Lei Wena91ee2a2011-10-05 08:11:40 -070088 struct usb_request *req, gfp_t gfp_flags);
Peng Fan0afb2a92015-08-28 09:20:30 +080089static int ci_ep_dequeue(struct usb_ep *ep, struct usb_request *req);
Lei Wena91ee2a2011-10-05 08:11:40 -070090static struct usb_request *
Marek Vasut9ba89972014-02-06 02:43:45 +010091ci_ep_alloc_request(struct usb_ep *ep, unsigned int gfp_flags);
92static void ci_ep_free_request(struct usb_ep *ep, struct usb_request *_req);
Lei Wena91ee2a2011-10-05 08:11:40 -070093
Marek Vasut9ba89972014-02-06 02:43:45 +010094static struct usb_gadget_ops ci_udc_ops = {
95 .pullup = ci_pullup,
Lei Wena91ee2a2011-10-05 08:11:40 -070096};
97
Marek Vasut9ba89972014-02-06 02:43:45 +010098static struct usb_ep_ops ci_ep_ops = {
99 .enable = ci_ep_enable,
100 .disable = ci_ep_disable,
101 .queue = ci_ep_queue,
Peng Fan0afb2a92015-08-28 09:20:30 +0800102 .dequeue = ci_ep_dequeue,
Marek Vasut9ba89972014-02-06 02:43:45 +0100103 .alloc_request = ci_ep_alloc_request,
104 .free_request = ci_ep_free_request,
Lei Wena91ee2a2011-10-05 08:11:40 -0700105};
106
Marek Vasute1263412013-07-10 03:16:30 +0200107/* Init values for USB endpoints. */
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530108static const struct usb_ep ci_ep_init[5] = {
Marek Vasute1263412013-07-10 03:16:30 +0200109 [0] = { /* EP 0 */
110 .maxpacket = 64,
111 .name = "ep0",
Marek Vasut9ba89972014-02-06 02:43:45 +0100112 .ops = &ci_ep_ops,
Marek Vasute1263412013-07-10 03:16:30 +0200113 },
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530114 [1] = {
115 .maxpacket = 512,
116 .name = "ep1in-bulk",
117 .ops = &ci_ep_ops,
118 },
119 [2] = {
120 .maxpacket = 512,
121 .name = "ep2out-bulk",
122 .ops = &ci_ep_ops,
123 },
124 [3] = {
125 .maxpacket = 512,
126 .name = "ep3in-int",
127 .ops = &ci_ep_ops,
128 },
129 [4] = {
Marek Vasute1263412013-07-10 03:16:30 +0200130 .maxpacket = 512,
131 .name = "ep-",
Marek Vasut9ba89972014-02-06 02:43:45 +0100132 .ops = &ci_ep_ops,
Marek Vasute1263412013-07-10 03:16:30 +0200133 },
134};
135
Marek Vasut9ba89972014-02-06 02:43:45 +0100136static struct ci_drv controller = {
Marek Vasutbe0b0e72013-07-10 03:16:35 +0200137 .gadget = {
Marek Vasut9ba89972014-02-06 02:43:45 +0100138 .name = "ci_udc",
139 .ops = &ci_udc_ops,
Troy Kisky4b4df472013-09-25 18:41:09 -0700140 .is_dualspeed = 1,
Lei Wena91ee2a2011-10-05 08:11:40 -0700141 },
142};
143
Marek Vasut9212f892013-07-10 03:16:39 +0200144/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100145 * ci_get_qh() - return queue head for endpoint
Marek Vasut9212f892013-07-10 03:16:39 +0200146 * @ep_num: Endpoint number
147 * @dir_in: Direction of the endpoint (IN = 1, OUT = 0)
148 *
149 * This function returns the QH associated with particular endpoint
150 * and it's direction.
151 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100152static struct ept_queue_head *ci_get_qh(int ep_num, int dir_in)
Marek Vasut9212f892013-07-10 03:16:39 +0200153{
154 return &controller.epts[(ep_num * 2) + dir_in];
155}
156
Marek Vasuta6f6b082013-07-10 03:16:41 +0200157/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100158 * ci_get_qtd() - return queue item for endpoint
Marek Vasuta6f6b082013-07-10 03:16:41 +0200159 * @ep_num: Endpoint number
160 * @dir_in: Direction of the endpoint (IN = 1, OUT = 0)
161 *
162 * This function returns the QH associated with particular endpoint
163 * and it's direction.
164 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100165static struct ept_queue_item *ci_get_qtd(int ep_num, int dir_in)
Marek Vasuta6f6b082013-07-10 03:16:41 +0200166{
Stephen Warrenb8a872c2014-07-01 11:41:17 -0600167 int index = (ep_num * 2) + dir_in;
168 uint8_t *imem = controller.items_mem + (index * ILIST_ENT_SZ);
169 return (struct ept_queue_item *)imem;
Marek Vasuta6f6b082013-07-10 03:16:41 +0200170}
171
Marek Vasut58465342013-07-10 03:16:42 +0200172/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100173 * ci_flush_qh - flush cache over queue head
Marek Vasut58465342013-07-10 03:16:42 +0200174 * @ep_num: Endpoint number
175 *
176 * This function flushes cache over QH for particular endpoint.
177 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100178static void ci_flush_qh(int ep_num)
Marek Vasut58465342013-07-10 03:16:42 +0200179{
Marek Vasut9ba89972014-02-06 02:43:45 +0100180 struct ept_queue_head *head = ci_get_qh(ep_num, 0);
Rob Herring7f406232015-03-17 15:46:35 -0500181 const unsigned long start = (unsigned long)head;
182 const unsigned long end = start + 2 * sizeof(*head);
Marek Vasut58465342013-07-10 03:16:42 +0200183
184 flush_dcache_range(start, end);
185}
186
187/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100188 * ci_invalidate_qh - invalidate cache over queue head
Marek Vasut58465342013-07-10 03:16:42 +0200189 * @ep_num: Endpoint number
190 *
191 * This function invalidates cache over QH for particular endpoint.
192 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100193static void ci_invalidate_qh(int ep_num)
Marek Vasut58465342013-07-10 03:16:42 +0200194{
Marek Vasut9ba89972014-02-06 02:43:45 +0100195 struct ept_queue_head *head = ci_get_qh(ep_num, 0);
Rob Herring7f406232015-03-17 15:46:35 -0500196 unsigned long start = (unsigned long)head;
197 unsigned long end = start + 2 * sizeof(*head);
Marek Vasut58465342013-07-10 03:16:42 +0200198
199 invalidate_dcache_range(start, end);
200}
201
202/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100203 * ci_flush_qtd - flush cache over queue item
Marek Vasut58465342013-07-10 03:16:42 +0200204 * @ep_num: Endpoint number
205 *
206 * This function flushes cache over qTD pair for particular endpoint.
207 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100208static void ci_flush_qtd(int ep_num)
Marek Vasut58465342013-07-10 03:16:42 +0200209{
Marek Vasut9ba89972014-02-06 02:43:45 +0100210 struct ept_queue_item *item = ci_get_qtd(ep_num, 0);
Rob Herring7f406232015-03-17 15:46:35 -0500211 const unsigned long start = (unsigned long)item;
212 const unsigned long end = start + 2 * ILIST_ENT_SZ;
Marek Vasut58465342013-07-10 03:16:42 +0200213
214 flush_dcache_range(start, end);
215}
216
217/**
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530218 * ci_flush_td - flush cache over queue item
219 * @td: td pointer
220 *
221 * This function flushes cache for particular transfer descriptor.
222 */
223static void ci_flush_td(struct ept_queue_item *td)
224{
Stephen Warrene0fa3b82015-07-22 15:16:20 -0600225 const unsigned long start = (unsigned long)td;
226 const unsigned long end = (unsigned long)td + ILIST_ENT_SZ;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530227 flush_dcache_range(start, end);
228}
229
230/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100231 * ci_invalidate_qtd - invalidate cache over queue item
Marek Vasut58465342013-07-10 03:16:42 +0200232 * @ep_num: Endpoint number
233 *
234 * This function invalidates cache over qTD pair for particular endpoint.
235 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100236static void ci_invalidate_qtd(int ep_num)
Marek Vasut58465342013-07-10 03:16:42 +0200237{
Marek Vasut9ba89972014-02-06 02:43:45 +0100238 struct ept_queue_item *item = ci_get_qtd(ep_num, 0);
Rob Herring7f406232015-03-17 15:46:35 -0500239 const unsigned long start = (unsigned long)item;
240 const unsigned long end = start + 2 * ILIST_ENT_SZ;
Marek Vasut58465342013-07-10 03:16:42 +0200241
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530242 invalidate_dcache_range(start, end);
243}
244
245/**
246 * ci_invalidate_td - invalidate cache over queue item
247 * @td: td pointer
248 *
249 * This function invalidates cache for particular transfer descriptor.
250 */
251static void ci_invalidate_td(struct ept_queue_item *td)
252{
Stephen Warrene0fa3b82015-07-22 15:16:20 -0600253 const unsigned long start = (unsigned long)td;
254 const unsigned long end = start + ILIST_ENT_SZ;
Marek Vasut58465342013-07-10 03:16:42 +0200255 invalidate_dcache_range(start, end);
256}
257
Lei Wena91ee2a2011-10-05 08:11:40 -0700258static struct usb_request *
Marek Vasut9ba89972014-02-06 02:43:45 +0100259ci_ep_alloc_request(struct usb_ep *ep, unsigned int gfp_flags)
Lei Wena91ee2a2011-10-05 08:11:40 -0700260{
Stephen Warren9ac8b542014-05-29 14:53:02 -0600261 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
Rob Herringc267e7b2015-07-24 10:14:21 -0500262 int num = -1;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600263 struct ci_req *ci_req;
264
Rob Herringc267e7b2015-07-24 10:14:21 -0500265 if (ci_ep->desc)
266 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
267
Stephen Warren9ac8b542014-05-29 14:53:02 -0600268 if (num == 0 && controller.ep0_req)
269 return &controller.ep0_req->req;
270
Stephen Warren1d0788f2014-07-01 11:41:18 -0600271 ci_req = calloc(1, sizeof(*ci_req));
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600272 if (!ci_req)
273 return NULL;
274
275 INIT_LIST_HEAD(&ci_req->queue);
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600276
Stephen Warren9ac8b542014-05-29 14:53:02 -0600277 if (num == 0)
278 controller.ep0_req = ci_req;
279
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600280 return &ci_req->req;
Lei Wena91ee2a2011-10-05 08:11:40 -0700281}
282
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600283static void ci_ep_free_request(struct usb_ep *ep, struct usb_request *req)
Lei Wena91ee2a2011-10-05 08:11:40 -0700284{
Stephen Warren10fecbd2014-06-10 11:02:36 -0600285 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
286 struct ci_req *ci_req = container_of(req, struct ci_req, req);
Rob Herringc267e7b2015-07-24 10:14:21 -0500287 int num = -1;
288
289 if (ci_ep->desc)
290 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
Stephen Warren10fecbd2014-06-10 11:02:36 -0600291
Stephen Warrenf66ae992014-06-23 12:02:48 -0600292 if (num == 0) {
293 if (!controller.ep0_req)
294 return;
Stephen Warren10fecbd2014-06-10 11:02:36 -0600295 controller.ep0_req = 0;
Stephen Warrenf66ae992014-06-23 12:02:48 -0600296 }
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600297
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600298 if (ci_req->b_buf)
299 free(ci_req->b_buf);
300 free(ci_req);
Lei Wena91ee2a2011-10-05 08:11:40 -0700301}
302
Troy Kisky256a3172013-10-10 15:28:00 -0700303static void ep_enable(int num, int in, int maxpacket)
Lei Wena91ee2a2011-10-05 08:11:40 -0700304{
Marek Vasut9ba89972014-02-06 02:43:45 +0100305 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700306 unsigned n;
Lei Wena91ee2a2011-10-05 08:11:40 -0700307
308 n = readl(&udc->epctrl[num]);
309 if (in)
310 n |= (CTRL_TXE | CTRL_TXR | CTRL_TXT_BULK);
311 else
312 n |= (CTRL_RXE | CTRL_RXR | CTRL_RXT_BULK);
313
Marek Vasut58465342013-07-10 03:16:42 +0200314 if (num != 0) {
Marek Vasut9ba89972014-02-06 02:43:45 +0100315 struct ept_queue_head *head = ci_get_qh(num, in);
Troy Kisky06bb97a2013-10-10 15:28:02 -0700316
Troy Kisky256a3172013-10-10 15:28:00 -0700317 head->config = CONFIG_MAX_PKT(maxpacket) | CONFIG_ZLT;
Marek Vasut9ba89972014-02-06 02:43:45 +0100318 ci_flush_qh(num);
Marek Vasut58465342013-07-10 03:16:42 +0200319 }
Lei Wena91ee2a2011-10-05 08:11:40 -0700320 writel(n, &udc->epctrl[num]);
321}
322
Marek Vasut9ba89972014-02-06 02:43:45 +0100323static int ci_ep_enable(struct usb_ep *ep,
Lei Wena91ee2a2011-10-05 08:11:40 -0700324 const struct usb_endpoint_descriptor *desc)
325{
Marek Vasut9ba89972014-02-06 02:43:45 +0100326 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
Lei Wena91ee2a2011-10-05 08:11:40 -0700327 int num, in;
328 num = desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
329 in = (desc->bEndpointAddress & USB_DIR_IN) != 0;
Marek Vasut9ba89972014-02-06 02:43:45 +0100330 ci_ep->desc = desc;
Troy Kisky256a3172013-10-10 15:28:00 -0700331
332 if (num) {
333 int max = get_unaligned_le16(&desc->wMaxPacketSize);
334
335 if ((max > 64) && (controller.gadget.speed == USB_SPEED_FULL))
336 max = 64;
337 if (ep->maxpacket != max) {
338 DBG("%s: from %d to %d\n", __func__,
339 ep->maxpacket, max);
340 ep->maxpacket = max;
341 }
342 }
343 ep_enable(num, in, ep->maxpacket);
344 DBG("%s: num=%d maxpacket=%d\n", __func__, num, ep->maxpacket);
Lei Wena91ee2a2011-10-05 08:11:40 -0700345 return 0;
346}
347
Marek Vasut9ba89972014-02-06 02:43:45 +0100348static int ci_ep_disable(struct usb_ep *ep)
Lei Wena91ee2a2011-10-05 08:11:40 -0700349{
Marek Vasut9ba89972014-02-06 02:43:45 +0100350 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
Troy Kisky35494072013-09-25 18:41:15 -0700351
Marek Vasut9ba89972014-02-06 02:43:45 +0100352 ci_ep->desc = NULL;
Lei Wena91ee2a2011-10-05 08:11:40 -0700353 return 0;
354}
355
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600356static int ci_bounce(struct ci_req *ci_req, int in)
Marek Vasute0fc5822013-07-10 03:16:43 +0200357{
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600358 struct usb_request *req = &ci_req->req;
Rob Herring7f406232015-03-17 15:46:35 -0500359 unsigned long addr = (unsigned long)req->buf;
360 unsigned long hwaddr;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600361 uint32_t aligned_used_len;
Marek Vasute0fc5822013-07-10 03:16:43 +0200362
363 /* Input buffer address is not aligned. */
364 if (addr & (ARCH_DMA_MINALIGN - 1))
365 goto align;
366
367 /* Input buffer length is not aligned. */
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600368 if (req->length & (ARCH_DMA_MINALIGN - 1))
Marek Vasute0fc5822013-07-10 03:16:43 +0200369 goto align;
370
371 /* The buffer is well aligned, only flush cache. */
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600372 ci_req->hw_len = req->length;
373 ci_req->hw_buf = req->buf;
Marek Vasute0fc5822013-07-10 03:16:43 +0200374 goto flush;
375
376align:
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600377 if (ci_req->b_buf && req->length > ci_req->b_len) {
378 free(ci_req->b_buf);
379 ci_req->b_buf = 0;
380 }
381 if (!ci_req->b_buf) {
382 ci_req->b_len = roundup(req->length, ARCH_DMA_MINALIGN);
383 ci_req->b_buf = memalign(ARCH_DMA_MINALIGN, ci_req->b_len);
384 if (!ci_req->b_buf)
Marek Vasute0fc5822013-07-10 03:16:43 +0200385 return -ENOMEM;
386 }
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600387 ci_req->hw_len = ci_req->b_len;
388 ci_req->hw_buf = ci_req->b_buf;
389
Troy Kisky1567b882013-10-10 15:28:01 -0700390 if (in)
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600391 memcpy(ci_req->hw_buf, req->buf, req->length);
Marek Vasute0fc5822013-07-10 03:16:43 +0200392
393flush:
Rob Herring7f406232015-03-17 15:46:35 -0500394 hwaddr = (unsigned long)ci_req->hw_buf;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600395 aligned_used_len = roundup(req->length, ARCH_DMA_MINALIGN);
396 flush_dcache_range(hwaddr, hwaddr + aligned_used_len);
Marek Vasute0fc5822013-07-10 03:16:43 +0200397
398 return 0;
399}
400
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600401static void ci_debounce(struct ci_req *ci_req, int in)
Marek Vasute0fc5822013-07-10 03:16:43 +0200402{
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600403 struct usb_request *req = &ci_req->req;
Rob Herring7f406232015-03-17 15:46:35 -0500404 unsigned long addr = (unsigned long)req->buf;
405 unsigned long hwaddr = (unsigned long)ci_req->hw_buf;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600406 uint32_t aligned_used_len;
Marek Vasute0fc5822013-07-10 03:16:43 +0200407
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600408 if (in)
409 return;
410
411 aligned_used_len = roundup(req->actual, ARCH_DMA_MINALIGN);
412 invalidate_dcache_range(hwaddr, hwaddr + aligned_used_len);
Marek Vasute0fc5822013-07-10 03:16:43 +0200413
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600414 if (addr == hwaddr)
415 return; /* not a bounce */
Marek Vasute0fc5822013-07-10 03:16:43 +0200416
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600417 memcpy(req->buf, ci_req->hw_buf, req->actual);
Marek Vasute0fc5822013-07-10 03:16:43 +0200418}
419
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600420static void ci_ep_submit_next_request(struct ci_ep *ci_ep)
Lei Wena91ee2a2011-10-05 08:11:40 -0700421{
Marek Vasut9ba89972014-02-06 02:43:45 +0100422 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700423 struct ept_queue_item *item;
424 struct ept_queue_head *head;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600425 int bit, num, len, in;
426 struct ci_req *ci_req;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530427 u8 *buf;
Stephen Warrenea6bf692015-09-11 17:10:02 -0600428 uint32_t len_left, len_this_dtd;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530429 struct ept_queue_item *dtd, *qtd;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600430
431 ci_ep->req_primed = true;
432
Marek Vasut9ba89972014-02-06 02:43:45 +0100433 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
434 in = (ci_ep->desc->bEndpointAddress & USB_DIR_IN) != 0;
435 item = ci_get_qtd(num, in);
436 head = ci_get_qh(num, in);
Lei Wena91ee2a2011-10-05 08:11:40 -0700437
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600438 ci_req = list_first_entry(&ci_ep->queue, struct ci_req, queue);
439 len = ci_req->req.length;
Marek Vasute0fc5822013-07-10 03:16:43 +0200440
Rob Herring7f406232015-03-17 15:46:35 -0500441 head->next = (unsigned long)item;
Lei Wena91ee2a2011-10-05 08:11:40 -0700442 head->info = 0;
443
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530444 ci_req->dtd_count = 0;
445 buf = ci_req->hw_buf;
Stephen Warrenea6bf692015-09-11 17:10:02 -0600446 len_left = len;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530447 dtd = item;
448
449 do {
Stephen Warrenea6bf692015-09-11 17:10:02 -0600450 len_this_dtd = min(len_left, (unsigned)EP_MAX_LENGTH_TRANSFER);
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530451
Stephen Warrenea6bf692015-09-11 17:10:02 -0600452 dtd->info = INFO_BYTES(len_this_dtd) | INFO_ACTIVE;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530453 dtd->page0 = (unsigned long)buf;
454 dtd->page1 = ((unsigned long)buf & 0xfffff000) + 0x1000;
455 dtd->page2 = ((unsigned long)buf & 0xfffff000) + 0x2000;
456 dtd->page3 = ((unsigned long)buf & 0xfffff000) + 0x3000;
457 dtd->page4 = ((unsigned long)buf & 0xfffff000) + 0x4000;
458
Stephen Warrenea6bf692015-09-11 17:10:02 -0600459 len_left -= len_this_dtd;
460 buf += len_this_dtd;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530461
Stephen Warrenea6bf692015-09-11 17:10:02 -0600462 if (len_left) {
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530463 qtd = (struct ept_queue_item *)
464 memalign(ILIST_ALIGN, ILIST_ENT_SZ);
Stephen Warrene0fa3b82015-07-22 15:16:20 -0600465 dtd->next = (unsigned long)qtd;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530466 dtd = qtd;
467 memset(dtd, 0, ILIST_ENT_SZ);
468 }
469
470 ci_req->dtd_count++;
Stephen Warrenea6bf692015-09-11 17:10:02 -0600471 } while (len_left);
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530472
473 item = dtd;
Stephen Warrena9e91da2014-06-10 15:27:39 -0600474 /*
475 * When sending the data for an IN transaction, the attached host
476 * knows that all data for the IN is sent when one of the following
477 * occurs:
478 * a) A zero-length packet is transmitted.
479 * b) A packet with length that isn't an exact multiple of the ep's
480 * maxpacket is transmitted.
481 * c) Enough data is sent to exactly fill the host's maximum expected
482 * IN transaction size.
483 *
484 * One of these conditions MUST apply at the end of an IN transaction,
485 * or the transaction will not be considered complete by the host. If
486 * none of (a)..(c) already applies, then we must force (a) to apply
487 * by explicitly sending an extra zero-length packet.
488 */
489 /* IN !a !b !c */
490 if (in && len && !(len % ci_ep->ep.maxpacket) && ci_req->req.zero) {
491 /*
492 * Each endpoint has 2 items allocated, even though typically
493 * only 1 is used at a time since either an IN or an OUT but
494 * not both is queued. For an IN transaction, item currently
495 * points at the second of these items, so we know that we
Stephen Warren6667e232014-07-01 11:41:14 -0600496 * can use the other to transmit the extra zero-length packet.
Stephen Warrena9e91da2014-06-10 15:27:39 -0600497 */
Stephen Warren6667e232014-07-01 11:41:14 -0600498 struct ept_queue_item *other_item = ci_get_qtd(num, 0);
Rob Herring7f406232015-03-17 15:46:35 -0500499 item->next = (unsigned long)other_item;
Stephen Warren6667e232014-07-01 11:41:14 -0600500 item = other_item;
Stephen Warrena9e91da2014-06-10 15:27:39 -0600501 item->info = INFO_ACTIVE;
502 }
503
504 item->next = TERMINATE;
505 item->info |= INFO_IOC;
506
507 ci_flush_qtd(num);
508
Stephen Warrene0fa3b82015-07-22 15:16:20 -0600509 item = (struct ept_queue_item *)(unsigned long)head->next;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530510 while (item->next != TERMINATE) {
Stephen Warrene0fa3b82015-07-22 15:16:20 -0600511 ci_flush_td((struct ept_queue_item *)(unsigned long)item->next);
512 item = (struct ept_queue_item *)(unsigned long)item->next;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530513 }
514
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600515 DBG("ept%d %s queue len %x, req %p, buffer %p\n",
516 num, in ? "in" : "out", len, ci_req, ci_req->hw_buf);
Marek Vasut9ba89972014-02-06 02:43:45 +0100517 ci_flush_qh(num);
Lei Wena91ee2a2011-10-05 08:11:40 -0700518
519 if (in)
520 bit = EPT_TX(num);
521 else
522 bit = EPT_RX(num);
523
Lei Wena91ee2a2011-10-05 08:11:40 -0700524 writel(bit, &udc->epprime);
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600525}
526
Peng Fan0afb2a92015-08-28 09:20:30 +0800527static int ci_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
528{
529 struct ci_ep *ci_ep = container_of(_ep, struct ci_ep, ep);
530 struct ci_req *ci_req;
531
532 list_for_each_entry(ci_req, &ci_ep->queue, queue) {
533 if (&ci_req->req == _req)
534 break;
535 }
536
537 if (&ci_req->req != _req)
538 return -EINVAL;
539
540 list_del_init(&ci_req->queue);
541
542 if (ci_req->req.status == -EINPROGRESS) {
543 ci_req->req.status = -ECONNRESET;
544 if (ci_req->req.complete)
545 ci_req->req.complete(_ep, _req);
546 }
547
548 return 0;
549}
550
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600551static int ci_ep_queue(struct usb_ep *ep,
552 struct usb_request *req, gfp_t gfp_flags)
553{
554 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
555 struct ci_req *ci_req = container_of(req, struct ci_req, req);
556 int in, ret;
557 int __maybe_unused num;
558
559 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
560 in = (ci_ep->desc->bEndpointAddress & USB_DIR_IN) != 0;
561
Stephen Warren62237cf2014-05-29 14:53:00 -0600562 if (!num && ci_ep->req_primed) {
563 /*
564 * The flipping of ep0 between IN and OUT relies on
565 * ci_ep_queue consuming the current IN/OUT setting
566 * immediately. If this is deferred to a later point when the
567 * req is pulled out of ci_req->queue, then the IN/OUT setting
568 * may have been changed since the req was queued, and state
569 * will get out of sync. This condition doesn't occur today,
570 * but could if bugs were introduced later, and this error
571 * check will save a lot of debugging time.
572 */
573 printf("%s: ep0 transaction already in progress\n", __func__);
574 return -EPROTO;
575 }
576
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600577 ret = ci_bounce(ci_req, in);
578 if (ret)
579 return ret;
580
581 DBG("ept%d %s pre-queue req %p, buffer %p\n",
582 num, in ? "in" : "out", ci_req, ci_req->hw_buf);
583 list_add_tail(&ci_req->queue, &ci_ep->queue);
584
585 if (!ci_ep->req_primed)
586 ci_ep_submit_next_request(ci_ep);
Lei Wena91ee2a2011-10-05 08:11:40 -0700587
588 return 0;
589}
590
Stephen Warrenaa449fa2014-05-29 14:53:03 -0600591static void flip_ep0_direction(void)
592{
593 if (ep0_desc.bEndpointAddress == USB_DIR_IN) {
Stephen Warrenfa514172014-06-25 11:03:18 -0600594 DBG("%s: Flipping ep0 to OUT\n", __func__);
Stephen Warrenaa449fa2014-05-29 14:53:03 -0600595 ep0_desc.bEndpointAddress = 0;
596 } else {
Stephen Warrenfa514172014-06-25 11:03:18 -0600597 DBG("%s: Flipping ep0 to IN\n", __func__);
Stephen Warrenaa449fa2014-05-29 14:53:03 -0600598 ep0_desc.bEndpointAddress = USB_DIR_IN;
599 }
600}
601
Stephen Warren192e8eb2014-07-01 14:22:27 -0600602static void handle_ep_complete(struct ci_ep *ci_ep)
Lei Wena91ee2a2011-10-05 08:11:40 -0700603{
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530604 struct ept_queue_item *item, *next_td;
605 int num, in, len, j;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600606 struct ci_req *ci_req;
607
Stephen Warren192e8eb2014-07-01 14:22:27 -0600608 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
609 in = (ci_ep->desc->bEndpointAddress & USB_DIR_IN) != 0;
Marek Vasut9ba89972014-02-06 02:43:45 +0100610 item = ci_get_qtd(num, in);
611 ci_invalidate_qtd(num);
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530612 ci_req = list_first_entry(&ci_ep->queue, struct ci_req, queue);
Wolfgang Denkbd8ec7e2013-10-07 13:07:26 +0200613
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530614 next_td = item;
615 len = 0;
616 for (j = 0; j < ci_req->dtd_count; j++) {
617 ci_invalidate_td(next_td);
618 item = next_td;
619 len += (item->info >> 16) & 0x7fff;
620 if (item->info & 0xff)
621 printf("EP%d/%s FAIL info=%x pg0=%x\n",
622 num, in ? "in" : "out", item->info, item->page0);
623 if (j != ci_req->dtd_count - 1)
Stephen Warrene0fa3b82015-07-22 15:16:20 -0600624 next_td = (struct ept_queue_item *)(unsigned long)
625 item->next;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530626 if (j != 0)
627 free(item);
628 }
Lei Wena91ee2a2011-10-05 08:11:40 -0700629
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600630 list_del_init(&ci_req->queue);
Stephen Warren192e8eb2014-07-01 14:22:27 -0600631 ci_ep->req_primed = false;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600632
Stephen Warren192e8eb2014-07-01 14:22:27 -0600633 if (!list_empty(&ci_ep->queue))
634 ci_ep_submit_next_request(ci_ep);
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600635
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600636 ci_req->req.actual = ci_req->req.length - len;
637 ci_debounce(ci_req, in);
Troy Kisky1567b882013-10-10 15:28:01 -0700638
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600639 DBG("ept%d %s req %p, complete %x\n",
640 num, in ? "in" : "out", ci_req, len);
Stephen Warrenaa449fa2014-05-29 14:53:03 -0600641 if (num != 0 || controller.ep0_data_phase)
Stephen Warren192e8eb2014-07-01 14:22:27 -0600642 ci_req->req.complete(&ci_ep->ep, &ci_req->req);
Stephen Warrenaa449fa2014-05-29 14:53:03 -0600643 if (num == 0 && controller.ep0_data_phase) {
644 /*
645 * Data Stage is complete, so flip ep0 dir for Status Stage,
646 * which always transfers a packet in the opposite direction.
647 */
648 DBG("%s: flip ep0 dir for Status Stage\n", __func__);
649 flip_ep0_direction();
650 controller.ep0_data_phase = false;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600651 ci_req->req.length = 0;
Stephen Warren192e8eb2014-07-01 14:22:27 -0600652 usb_ep_queue(&ci_ep->ep, &ci_req->req, 0);
Lei Wena91ee2a2011-10-05 08:11:40 -0700653 }
654}
655
656#define SETUP(type, request) (((type) << 8) | (request))
657
658static void handle_setup(void)
659{
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600660 struct ci_ep *ci_ep = &controller.ep[0];
661 struct ci_req *ci_req;
662 struct usb_request *req;
Marek Vasut9ba89972014-02-06 02:43:45 +0100663 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700664 struct ept_queue_head *head;
665 struct usb_ctrlrequest r;
666 int status = 0;
667 int num, in, _num, _in, i;
668 char *buf;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600669
Stephen Warren9ac8b542014-05-29 14:53:02 -0600670 ci_req = controller.ep0_req;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600671 req = &ci_req->req;
Marek Vasut9ba89972014-02-06 02:43:45 +0100672 head = ci_get_qh(0, 0); /* EP0 OUT */
Lei Wena91ee2a2011-10-05 08:11:40 -0700673
Marek Vasut9ba89972014-02-06 02:43:45 +0100674 ci_invalidate_qh(0);
Lei Wena91ee2a2011-10-05 08:11:40 -0700675 memcpy(&r, head->setup_data, sizeof(struct usb_ctrlrequest));
Stephen Warrene13a7042014-04-24 17:52:39 -0600676#ifdef CONFIG_CI_UDC_HAS_HOSTPC
677 writel(EPT_RX(0), &udc->epsetupstat);
678#else
Lei Wena91ee2a2011-10-05 08:11:40 -0700679 writel(EPT_RX(0), &udc->epstat);
Stephen Warrene13a7042014-04-24 17:52:39 -0600680#endif
Stephen Warrenaa449fa2014-05-29 14:53:03 -0600681 DBG("handle setup %s, %x, %x index %x value %x length %x\n",
682 reqname(r.bRequest), r.bRequestType, r.bRequest, r.wIndex,
683 r.wValue, r.wLength);
684
685 /* Set EP0 dir for Data Stage based on Setup Stage data */
686 if (r.bRequestType & USB_DIR_IN) {
687 DBG("%s: Set ep0 to IN for Data Stage\n", __func__);
688 ep0_desc.bEndpointAddress = USB_DIR_IN;
689 } else {
690 DBG("%s: Set ep0 to OUT for Data Stage\n", __func__);
691 ep0_desc.bEndpointAddress = 0;
692 }
693 if (r.wLength) {
694 controller.ep0_data_phase = true;
695 } else {
696 /* 0 length -> no Data Stage. Flip dir for Status Stage */
697 DBG("%s: 0 length: flip ep0 dir for Status Stage\n", __func__);
698 flip_ep0_direction();
699 controller.ep0_data_phase = false;
700 }
Lei Wena91ee2a2011-10-05 08:11:40 -0700701
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600702 list_del_init(&ci_req->queue);
703 ci_ep->req_primed = false;
704
Lei Wena91ee2a2011-10-05 08:11:40 -0700705 switch (SETUP(r.bRequestType, r.bRequest)) {
706 case SETUP(USB_RECIP_ENDPOINT, USB_REQ_CLEAR_FEATURE):
707 _num = r.wIndex & 15;
708 _in = !!(r.wIndex & 0x80);
709
710 if ((r.wValue == 0) && (r.wLength == 0)) {
711 req->length = 0;
712 for (i = 0; i < NUM_ENDPOINTS; i++) {
Marek Vasut9ba89972014-02-06 02:43:45 +0100713 struct ci_ep *ep = &controller.ep[i];
Troy Kisky256a3172013-10-10 15:28:00 -0700714
715 if (!ep->desc)
Lei Wena91ee2a2011-10-05 08:11:40 -0700716 continue;
Troy Kisky256a3172013-10-10 15:28:00 -0700717 num = ep->desc->bEndpointAddress
Marek Vasut98377322013-07-10 03:16:29 +0200718 & USB_ENDPOINT_NUMBER_MASK;
Troy Kisky256a3172013-10-10 15:28:00 -0700719 in = (ep->desc->bEndpointAddress
Lei Wena91ee2a2011-10-05 08:11:40 -0700720 & USB_DIR_IN) != 0;
721 if ((num == _num) && (in == _in)) {
Troy Kisky256a3172013-10-10 15:28:00 -0700722 ep_enable(num, in, ep->ep.maxpacket);
Lei Wena91ee2a2011-10-05 08:11:40 -0700723 usb_ep_queue(controller.gadget.ep0,
724 req, 0);
725 break;
726 }
727 }
728 }
729 return;
730
731 case SETUP(USB_RECIP_DEVICE, USB_REQ_SET_ADDRESS):
732 /*
733 * write address delayed (will take effect
734 * after the next IN txn)
735 */
736 writel((r.wValue << 25) | (1 << 24), &udc->devaddr);
737 req->length = 0;
738 usb_ep_queue(controller.gadget.ep0, req, 0);
739 return;
740
741 case SETUP(USB_DIR_IN | USB_RECIP_DEVICE, USB_REQ_GET_STATUS):
742 req->length = 2;
743 buf = (char *)req->buf;
744 buf[0] = 1 << USB_DEVICE_SELF_POWERED;
745 buf[1] = 0;
746 usb_ep_queue(controller.gadget.ep0, req, 0);
747 return;
748 }
749 /* pass request up to the gadget driver */
750 if (controller.driver)
751 status = controller.driver->setup(&controller.gadget, &r);
752 else
753 status = -ENODEV;
754
755 if (!status)
756 return;
757 DBG("STALL reqname %s type %x value %x, index %x\n",
758 reqname(r.bRequest), r.bRequestType, r.wValue, r.wIndex);
759 writel((1<<16) | (1 << 0), &udc->epctrl[0]);
760}
761
762static void stop_activity(void)
763{
764 int i, num, in;
765 struct ept_queue_head *head;
Marek Vasut9ba89972014-02-06 02:43:45 +0100766 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700767 writel(readl(&udc->epcomp), &udc->epcomp);
Stephen Warrene13a7042014-04-24 17:52:39 -0600768#ifdef CONFIG_CI_UDC_HAS_HOSTPC
769 writel(readl(&udc->epsetupstat), &udc->epsetupstat);
770#endif
Lei Wena91ee2a2011-10-05 08:11:40 -0700771 writel(readl(&udc->epstat), &udc->epstat);
772 writel(0xffffffff, &udc->epflush);
773
774 /* error out any pending reqs */
775 for (i = 0; i < NUM_ENDPOINTS; i++) {
776 if (i != 0)
777 writel(0, &udc->epctrl[i]);
Marek Vasut98377322013-07-10 03:16:29 +0200778 if (controller.ep[i].desc) {
779 num = controller.ep[i].desc->bEndpointAddress
Lei Wena91ee2a2011-10-05 08:11:40 -0700780 & USB_ENDPOINT_NUMBER_MASK;
Marek Vasut98377322013-07-10 03:16:29 +0200781 in = (controller.ep[i].desc->bEndpointAddress
782 & USB_DIR_IN) != 0;
Marek Vasut9ba89972014-02-06 02:43:45 +0100783 head = ci_get_qh(num, in);
Lei Wena91ee2a2011-10-05 08:11:40 -0700784 head->info = INFO_ACTIVE;
Marek Vasut9ba89972014-02-06 02:43:45 +0100785 ci_flush_qh(num);
Lei Wena91ee2a2011-10-05 08:11:40 -0700786 }
787 }
788}
789
790void udc_irq(void)
791{
Marek Vasut9ba89972014-02-06 02:43:45 +0100792 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700793 unsigned n = readl(&udc->usbsts);
794 writel(n, &udc->usbsts);
795 int bit, i, num, in;
796
797 n &= (STS_SLI | STS_URI | STS_PCI | STS_UI | STS_UEI);
798 if (n == 0)
799 return;
800
801 if (n & STS_URI) {
802 DBG("-- reset --\n");
803 stop_activity();
804 }
805 if (n & STS_SLI)
806 DBG("-- suspend --\n");
807
808 if (n & STS_PCI) {
Troy Kisky256a3172013-10-10 15:28:00 -0700809 int max = 64;
810 int speed = USB_SPEED_FULL;
811
Stephen Warrene13a7042014-04-24 17:52:39 -0600812#ifdef CONFIG_CI_UDC_HAS_HOSTPC
813 bit = (readl(&udc->hostpc1_devlc) >> 25) & 3;
814#else
Lei Wena91ee2a2011-10-05 08:11:40 -0700815 bit = (readl(&udc->portsc) >> 26) & 3;
Stephen Warrene13a7042014-04-24 17:52:39 -0600816#endif
Troy Kisky256a3172013-10-10 15:28:00 -0700817 DBG("-- portchange %x %s\n", bit, (bit == 2) ? "High" : "Full");
Lei Wena91ee2a2011-10-05 08:11:40 -0700818 if (bit == 2) {
Troy Kisky256a3172013-10-10 15:28:00 -0700819 speed = USB_SPEED_HIGH;
820 max = 512;
821 }
822 controller.gadget.speed = speed;
823 for (i = 1; i < NUM_ENDPOINTS; i++) {
824 if (controller.ep[i].ep.maxpacket > max)
825 controller.ep[i].ep.maxpacket = max;
Lei Wena91ee2a2011-10-05 08:11:40 -0700826 }
827 }
828
829 if (n & STS_UEI)
830 printf("<UEI %x>\n", readl(&udc->epcomp));
831
832 if ((n & STS_UI) || (n & STS_UEI)) {
Stephen Warrene13a7042014-04-24 17:52:39 -0600833#ifdef CONFIG_CI_UDC_HAS_HOSTPC
834 n = readl(&udc->epsetupstat);
835#else
Lei Wena91ee2a2011-10-05 08:11:40 -0700836 n = readl(&udc->epstat);
Stephen Warrene13a7042014-04-24 17:52:39 -0600837#endif
Lei Wena91ee2a2011-10-05 08:11:40 -0700838 if (n & EPT_RX(0))
839 handle_setup();
840
841 n = readl(&udc->epcomp);
842 if (n != 0)
843 writel(n, &udc->epcomp);
844
845 for (i = 0; i < NUM_ENDPOINTS && n; i++) {
Marek Vasut98377322013-07-10 03:16:29 +0200846 if (controller.ep[i].desc) {
847 num = controller.ep[i].desc->bEndpointAddress
Lei Wena91ee2a2011-10-05 08:11:40 -0700848 & USB_ENDPOINT_NUMBER_MASK;
Marek Vasut98377322013-07-10 03:16:29 +0200849 in = (controller.ep[i].desc->bEndpointAddress
Lei Wena91ee2a2011-10-05 08:11:40 -0700850 & USB_DIR_IN) != 0;
851 bit = (in) ? EPT_TX(num) : EPT_RX(num);
852 if (n & bit)
Marek Vasut98377322013-07-10 03:16:29 +0200853 handle_ep_complete(&controller.ep[i]);
Lei Wena91ee2a2011-10-05 08:11:40 -0700854 }
855 }
856 }
857}
858
Kishon Vijay Abraham I4763e162015-02-23 18:40:23 +0530859int usb_gadget_handle_interrupts(int index)
Lei Wena91ee2a2011-10-05 08:11:40 -0700860{
861 u32 value;
Marek Vasut9ba89972014-02-06 02:43:45 +0100862 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700863
864 value = readl(&udc->usbsts);
865 if (value)
866 udc_irq();
867
868 return value;
869}
870
Stephen Warren6e9aa0d2014-06-10 11:02:35 -0600871void udc_disconnect(void)
872{
873 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
874 /* disable pullup */
875 stop_activity();
876 writel(USBCMD_FS2, &udc->usbcmd);
877 udelay(800);
878 if (controller.driver)
879 controller.driver->disconnect(&controller.gadget);
880}
881
Marek Vasut9ba89972014-02-06 02:43:45 +0100882static int ci_pullup(struct usb_gadget *gadget, int is_on)
Lei Wena91ee2a2011-10-05 08:11:40 -0700883{
Marek Vasut9ba89972014-02-06 02:43:45 +0100884 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700885 if (is_on) {
886 /* RESET */
887 writel(USBCMD_ITC(MICRO_8FRAME) | USBCMD_RST, &udc->usbcmd);
888 udelay(200);
889
Rob Herring7f406232015-03-17 15:46:35 -0500890 writel((unsigned long)controller.epts, &udc->epinitaddr);
Lei Wena91ee2a2011-10-05 08:11:40 -0700891
892 /* select DEVICE mode */
893 writel(USBMODE_DEVICE, &udc->usbmode);
894
Eric Nelsonfe24e162014-09-28 18:35:14 -0700895#if !defined(CONFIG_USB_GADGET_DUALSPEED)
896 /* Port force Full-Speed Connect */
897 setbits_le32(&udc->portsc, PFSC);
898#endif
899
Lei Wena91ee2a2011-10-05 08:11:40 -0700900 writel(0xffffffff, &udc->epflush);
901
902 /* Turn on the USB connection by enabling the pullup resistor */
903 writel(USBCMD_ITC(MICRO_8FRAME) | USBCMD_RUN, &udc->usbcmd);
904 } else {
Stephen Warren6e9aa0d2014-06-10 11:02:35 -0600905 udc_disconnect();
Lei Wena91ee2a2011-10-05 08:11:40 -0700906 }
907
908 return 0;
909}
910
Marek Vasut9ba89972014-02-06 02:43:45 +0100911static int ci_udc_probe(void)
Lei Wena91ee2a2011-10-05 08:11:40 -0700912{
913 struct ept_queue_head *head;
914 int i;
Marek Vasut456707d2013-07-10 03:16:37 +0200915
Marek Vasut806d76c2013-07-10 03:16:34 +0200916 const int num = 2 * NUM_ENDPOINTS;
Lei Wena91ee2a2011-10-05 08:11:40 -0700917
Marek Vasut456707d2013-07-10 03:16:37 +0200918 const int eplist_min_align = 4096;
919 const int eplist_align = roundup(eplist_min_align, ARCH_DMA_MINALIGN);
920 const int eplist_raw_sz = num * sizeof(struct ept_queue_head);
921 const int eplist_sz = roundup(eplist_raw_sz, ARCH_DMA_MINALIGN);
922
923 /* The QH list must be aligned to 4096 bytes. */
924 controller.epts = memalign(eplist_align, eplist_sz);
925 if (!controller.epts)
926 return -ENOMEM;
927 memset(controller.epts, 0, eplist_sz);
928
Stephen Warrenfe529102014-07-01 11:41:15 -0600929 controller.items_mem = memalign(ILIST_ALIGN, ILIST_SZ);
Marek Vasutb62fa7d2013-07-10 03:16:40 +0200930 if (!controller.items_mem) {
931 free(controller.epts);
932 return -ENOMEM;
933 }
Stephen Warrenfe529102014-07-01 11:41:15 -0600934 memset(controller.items_mem, 0, ILIST_SZ);
Marek Vasutb62fa7d2013-07-10 03:16:40 +0200935
Lei Wena91ee2a2011-10-05 08:11:40 -0700936 for (i = 0; i < 2 * NUM_ENDPOINTS; i++) {
937 /*
Marek Vasut456707d2013-07-10 03:16:37 +0200938 * Configure QH for each endpoint. The structure of the QH list
939 * is such that each two subsequent fields, N and N+1 where N is
940 * even, in the QH list represent QH for one endpoint. The Nth
941 * entry represents OUT configuration and the N+1th entry does
942 * represent IN configuration of the endpoint.
Lei Wena91ee2a2011-10-05 08:11:40 -0700943 */
Marek Vasut393004e2013-07-10 03:16:36 +0200944 head = controller.epts + i;
Lei Wena91ee2a2011-10-05 08:11:40 -0700945 if (i < 2)
946 head->config = CONFIG_MAX_PKT(EP0_MAX_PACKET_SIZE)
947 | CONFIG_ZLT | CONFIG_IOS;
948 else
949 head->config = CONFIG_MAX_PKT(EP_MAX_PACKET_SIZE)
950 | CONFIG_ZLT;
951 head->next = TERMINATE;
952 head->info = 0;
953
Marek Vasut58465342013-07-10 03:16:42 +0200954 if (i & 1) {
Stephen Warrenbec1c132014-07-01 11:41:13 -0600955 ci_flush_qh(i / 2);
956 ci_flush_qtd(i / 2);
Marek Vasut58465342013-07-10 03:16:42 +0200957 }
Lei Wena91ee2a2011-10-05 08:11:40 -0700958 }
959
960 INIT_LIST_HEAD(&controller.gadget.ep_list);
Marek Vasute1263412013-07-10 03:16:30 +0200961
962 /* Init EP 0 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100963 memcpy(&controller.ep[0].ep, &ci_ep_init[0], sizeof(*ci_ep_init));
Stephen Warrenb3dc4222014-05-29 14:53:01 -0600964 controller.ep[0].desc = &ep0_desc;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600965 INIT_LIST_HEAD(&controller.ep[0].queue);
966 controller.ep[0].req_primed = false;
Marek Vasute1263412013-07-10 03:16:30 +0200967 controller.gadget.ep0 = &controller.ep[0].ep;
Lei Wena91ee2a2011-10-05 08:11:40 -0700968 INIT_LIST_HEAD(&controller.gadget.ep0->ep_list);
Marek Vasute1263412013-07-10 03:16:30 +0200969
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530970 /* Init EP 1..3 */
971 for (i = 1; i < 4; i++) {
972 memcpy(&controller.ep[i].ep, &ci_ep_init[i],
973 sizeof(*ci_ep_init));
974 INIT_LIST_HEAD(&controller.ep[i].queue);
975 controller.ep[i].req_primed = false;
976 list_add_tail(&controller.ep[i].ep.ep_list,
977 &controller.gadget.ep_list);
978 }
979
980 /* Init EP 4..n */
981 for (i = 4; i < NUM_ENDPOINTS; i++) {
982 memcpy(&controller.ep[i].ep, &ci_ep_init[4],
Marek Vasut9ba89972014-02-06 02:43:45 +0100983 sizeof(*ci_ep_init));
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600984 INIT_LIST_HEAD(&controller.ep[i].queue);
985 controller.ep[i].req_primed = false;
Marek Vasute1263412013-07-10 03:16:30 +0200986 list_add_tail(&controller.ep[i].ep.ep_list,
987 &controller.gadget.ep_list);
Lei Wena91ee2a2011-10-05 08:11:40 -0700988 }
Marek Vasute1263412013-07-10 03:16:30 +0200989
Stephen Warren9ac8b542014-05-29 14:53:02 -0600990 ci_ep_alloc_request(&controller.ep[0].ep, 0);
991 if (!controller.ep0_req) {
Stephen Warrenc5d619b2014-06-10 11:02:37 -0600992 free(controller.items_mem);
Stephen Warren9ac8b542014-05-29 14:53:02 -0600993 free(controller.epts);
994 return -ENOMEM;
995 }
996
Lei Wena91ee2a2011-10-05 08:11:40 -0700997 return 0;
998}
999
1000int usb_gadget_register_driver(struct usb_gadget_driver *driver)
1001{
Marek Vasut1f4b4912013-07-10 03:16:32 +02001002 int ret;
Lei Wena91ee2a2011-10-05 08:11:40 -07001003
Marek Vasutfe67fe72013-07-10 03:16:33 +02001004 if (!driver)
1005 return -EINVAL;
1006 if (!driver->bind || !driver->setup || !driver->disconnect)
1007 return -EINVAL;
1008 if (driver->speed != USB_SPEED_FULL && driver->speed != USB_SPEED_HIGH)
Lei Wena91ee2a2011-10-05 08:11:40 -07001009 return -EINVAL;
Lei Wena91ee2a2011-10-05 08:11:40 -07001010
Simon Glass444b1e02015-03-25 12:22:32 -06001011#ifdef CONFIG_DM_USB
1012 ret = usb_setup_ehci_gadget(&controller.ctrl);
1013#else
Troy Kisky8f9c49d2013-10-10 15:27:56 -07001014 ret = usb_lowlevel_init(0, USB_INIT_DEVICE, (void **)&controller.ctrl);
Simon Glass444b1e02015-03-25 12:22:32 -06001015#endif
Marek Vasut1f4b4912013-07-10 03:16:32 +02001016 if (ret)
1017 return ret;
1018
Marek Vasut9ba89972014-02-06 02:43:45 +01001019 ret = ci_udc_probe();
Ye.Li560bee92015-12-31 15:24:45 +08001020 if (ret) {
1021 DBG("udc probe failed, returned %d\n", ret);
1022 return ret;
Lei Wena91ee2a2011-10-05 08:11:40 -07001023 }
Marek Vasut1f4b4912013-07-10 03:16:32 +02001024
1025 ret = driver->bind(&controller.gadget);
1026 if (ret) {
1027 DBG("driver->bind() returned %d\n", ret);
1028 return ret;
Lei Wena91ee2a2011-10-05 08:11:40 -07001029 }
1030 controller.driver = driver;
1031
1032 return 0;
1033}
1034
1035int usb_gadget_unregister_driver(struct usb_gadget_driver *driver)
1036{
Stephen Warren9c7ebe72014-06-10 11:02:38 -06001037 udc_disconnect();
1038
Stephen Warrenf66ae992014-06-23 12:02:48 -06001039 driver->unbind(&controller.gadget);
1040 controller.driver = NULL;
1041
Stephen Warren9c7ebe72014-06-10 11:02:38 -06001042 ci_ep_free_request(&controller.ep[0].ep, &controller.ep0_req->req);
1043 free(controller.items_mem);
1044 free(controller.epts);
1045
Lei Wena91ee2a2011-10-05 08:11:40 -07001046 return 0;
1047}
Stephen Warrenfb12f452014-08-25 14:02:15 -06001048
1049bool dfu_usb_get_reset(void)
1050{
1051 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
1052
1053 return !!(readl(&udc->usbsts) & STS_URI);
1054}