blob: d9cfff3a29f85cfba6d16b42f5f1bfbd2237fd87 [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>
Simon Glass63334482019-11-14 12:57:39 -070013#include <cpu_func.h>
Lei Wena91ee2a2011-10-05 08:11:40 -070014#include <net.h>
15#include <malloc.h>
Troy Kiskyf1573942013-10-10 15:28:03 -070016#include <asm/byteorder.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090017#include <linux/errno.h>
Lei Wena91ee2a2011-10-05 08:11:40 -070018#include <asm/io.h>
Troy Kisky256a3172013-10-10 15:28:00 -070019#include <asm/unaligned.h>
Lei Wena91ee2a2011-10-05 08:11:40 -070020#include <linux/types.h>
Troy Kiskyf1573942013-10-10 15:28:03 -070021#include <linux/usb/ch9.h>
22#include <linux/usb/gadget.h>
Marek Vasut9ba89972014-02-06 02:43:45 +010023#include <usb/ci_udc.h>
Troy Kiskyf1573942013-10-10 15:28:03 -070024#include "../host/ehci.h"
Marek Vasut9ba89972014-02-06 02:43:45 +010025#include "ci_udc.h"
Lei Wena91ee2a2011-10-05 08:11:40 -070026
Marek Vasut9d64ac92013-07-10 03:16:38 +020027/*
28 * Check if the system has too long cachelines. If the cachelines are
29 * longer then 128b, the driver will not be able flush/invalidate data
30 * cache over separate QH entries. We use 128b because one QH entry is
31 * 64b long and there are always two QH list entries for each endpoint.
32 */
33#if ARCH_DMA_MINALIGN > 128
34#error This driver can not work on systems with caches longer than 128b
35#endif
36
Stephen Warrenfe529102014-07-01 11:41:15 -060037/*
Stephen Warrend13034e2014-07-01 11:41:16 -060038 * Every QTD must be individually aligned, since we can program any
39 * QTD's address into HW. Cache flushing requires ARCH_DMA_MINALIGN,
40 * and the USB HW requires 32-byte alignment. Align to both:
Stephen Warrenfe529102014-07-01 11:41:15 -060041 */
42#define ILIST_ALIGN roundup(ARCH_DMA_MINALIGN, 32)
Stephen Warrend13034e2014-07-01 11:41:16 -060043/* Each QTD is this size */
44#define ILIST_ENT_RAW_SZ sizeof(struct ept_queue_item)
45/*
46 * Align the size of the QTD too, so we can add this value to each
47 * QTD's address to get another aligned address.
48 */
49#define ILIST_ENT_SZ roundup(ILIST_ENT_RAW_SZ, ILIST_ALIGN)
50/* For each endpoint, we need 2 QTDs, one for each of IN and OUT */
51#define ILIST_SZ (NUM_ENDPOINTS * 2 * ILIST_ENT_SZ)
Stephen Warrenfe529102014-07-01 11:41:15 -060052
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +053053#define EP_MAX_LENGTH_TRANSFER 0x4000
54
Lei Wena91ee2a2011-10-05 08:11:40 -070055#ifndef DEBUG
56#define DBG(x...) do {} while (0)
57#else
58#define DBG(x...) printf(x)
59static const char *reqname(unsigned r)
60{
61 switch (r) {
62 case USB_REQ_GET_STATUS: return "GET_STATUS";
63 case USB_REQ_CLEAR_FEATURE: return "CLEAR_FEATURE";
64 case USB_REQ_SET_FEATURE: return "SET_FEATURE";
65 case USB_REQ_SET_ADDRESS: return "SET_ADDRESS";
66 case USB_REQ_GET_DESCRIPTOR: return "GET_DESCRIPTOR";
67 case USB_REQ_SET_DESCRIPTOR: return "SET_DESCRIPTOR";
68 case USB_REQ_GET_CONFIGURATION: return "GET_CONFIGURATION";
69 case USB_REQ_SET_CONFIGURATION: return "SET_CONFIGURATION";
70 case USB_REQ_GET_INTERFACE: return "GET_INTERFACE";
71 case USB_REQ_SET_INTERFACE: return "SET_INTERFACE";
72 default: return "*UNKNOWN*";
73 }
74}
75#endif
76
Stephen Warrenb3dc4222014-05-29 14:53:01 -060077static struct usb_endpoint_descriptor ep0_desc = {
Lei Wena91ee2a2011-10-05 08:11:40 -070078 .bLength = sizeof(struct usb_endpoint_descriptor),
79 .bDescriptorType = USB_DT_ENDPOINT,
Lei Wena91ee2a2011-10-05 08:11:40 -070080 .bEndpointAddress = USB_DIR_IN,
81 .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
82};
83
Marek Vasut9ba89972014-02-06 02:43:45 +010084static int ci_pullup(struct usb_gadget *gadget, int is_on);
85static int ci_ep_enable(struct usb_ep *ep,
Lei Wena91ee2a2011-10-05 08:11:40 -070086 const struct usb_endpoint_descriptor *desc);
Marek Vasut9ba89972014-02-06 02:43:45 +010087static int ci_ep_disable(struct usb_ep *ep);
88static int ci_ep_queue(struct usb_ep *ep,
Lei Wena91ee2a2011-10-05 08:11:40 -070089 struct usb_request *req, gfp_t gfp_flags);
Peng Fan0afb2a92015-08-28 09:20:30 +080090static int ci_ep_dequeue(struct usb_ep *ep, struct usb_request *req);
Lei Wena91ee2a2011-10-05 08:11:40 -070091static struct usb_request *
Marek Vasut9ba89972014-02-06 02:43:45 +010092ci_ep_alloc_request(struct usb_ep *ep, unsigned int gfp_flags);
93static void ci_ep_free_request(struct usb_ep *ep, struct usb_request *_req);
Lei Wena91ee2a2011-10-05 08:11:40 -070094
Marek Vasut9ba89972014-02-06 02:43:45 +010095static struct usb_gadget_ops ci_udc_ops = {
96 .pullup = ci_pullup,
Lei Wena91ee2a2011-10-05 08:11:40 -070097};
98
Marek Vasut9ba89972014-02-06 02:43:45 +010099static struct usb_ep_ops ci_ep_ops = {
100 .enable = ci_ep_enable,
101 .disable = ci_ep_disable,
102 .queue = ci_ep_queue,
Peng Fan0afb2a92015-08-28 09:20:30 +0800103 .dequeue = ci_ep_dequeue,
Marek Vasut9ba89972014-02-06 02:43:45 +0100104 .alloc_request = ci_ep_alloc_request,
105 .free_request = ci_ep_free_request,
Lei Wena91ee2a2011-10-05 08:11:40 -0700106};
107
Ramon Fried5d4eb842018-09-21 13:35:52 +0300108__weak void ci_init_after_reset(struct ehci_ctrl *ctrl)
109{
110}
111
Marek Vasute1263412013-07-10 03:16:30 +0200112/* Init values for USB endpoints. */
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530113static const struct usb_ep ci_ep_init[5] = {
Marek Vasute1263412013-07-10 03:16:30 +0200114 [0] = { /* EP 0 */
115 .maxpacket = 64,
116 .name = "ep0",
Marek Vasut9ba89972014-02-06 02:43:45 +0100117 .ops = &ci_ep_ops,
Marek Vasute1263412013-07-10 03:16:30 +0200118 },
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530119 [1] = {
120 .maxpacket = 512,
121 .name = "ep1in-bulk",
122 .ops = &ci_ep_ops,
123 },
124 [2] = {
125 .maxpacket = 512,
126 .name = "ep2out-bulk",
127 .ops = &ci_ep_ops,
128 },
129 [3] = {
130 .maxpacket = 512,
131 .name = "ep3in-int",
132 .ops = &ci_ep_ops,
133 },
134 [4] = {
Marek Vasute1263412013-07-10 03:16:30 +0200135 .maxpacket = 512,
136 .name = "ep-",
Marek Vasut9ba89972014-02-06 02:43:45 +0100137 .ops = &ci_ep_ops,
Marek Vasute1263412013-07-10 03:16:30 +0200138 },
139};
140
Marek Vasut9ba89972014-02-06 02:43:45 +0100141static struct ci_drv controller = {
Marek Vasutbe0b0e72013-07-10 03:16:35 +0200142 .gadget = {
Marek Vasut9ba89972014-02-06 02:43:45 +0100143 .name = "ci_udc",
144 .ops = &ci_udc_ops,
Troy Kisky4b4df472013-09-25 18:41:09 -0700145 .is_dualspeed = 1,
Lei Wena91ee2a2011-10-05 08:11:40 -0700146 },
147};
148
Marek Vasut9212f892013-07-10 03:16:39 +0200149/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100150 * ci_get_qh() - return queue head for endpoint
Marek Vasut9212f892013-07-10 03:16:39 +0200151 * @ep_num: Endpoint number
152 * @dir_in: Direction of the endpoint (IN = 1, OUT = 0)
153 *
154 * This function returns the QH associated with particular endpoint
155 * and it's direction.
156 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100157static struct ept_queue_head *ci_get_qh(int ep_num, int dir_in)
Marek Vasut9212f892013-07-10 03:16:39 +0200158{
159 return &controller.epts[(ep_num * 2) + dir_in];
160}
161
Marek Vasuta6f6b082013-07-10 03:16:41 +0200162/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100163 * ci_get_qtd() - return queue item for endpoint
Marek Vasuta6f6b082013-07-10 03:16:41 +0200164 * @ep_num: Endpoint number
165 * @dir_in: Direction of the endpoint (IN = 1, OUT = 0)
166 *
167 * This function returns the QH associated with particular endpoint
168 * and it's direction.
169 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100170static struct ept_queue_item *ci_get_qtd(int ep_num, int dir_in)
Marek Vasuta6f6b082013-07-10 03:16:41 +0200171{
Stephen Warrenb8a872c2014-07-01 11:41:17 -0600172 int index = (ep_num * 2) + dir_in;
173 uint8_t *imem = controller.items_mem + (index * ILIST_ENT_SZ);
174 return (struct ept_queue_item *)imem;
Marek Vasuta6f6b082013-07-10 03:16:41 +0200175}
176
Marek Vasut58465342013-07-10 03:16:42 +0200177/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100178 * ci_flush_qh - flush cache over queue head
Marek Vasut58465342013-07-10 03:16:42 +0200179 * @ep_num: Endpoint number
180 *
181 * This function flushes cache over QH for particular endpoint.
182 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100183static void ci_flush_qh(int ep_num)
Marek Vasut58465342013-07-10 03:16:42 +0200184{
Marek Vasut9ba89972014-02-06 02:43:45 +0100185 struct ept_queue_head *head = ci_get_qh(ep_num, 0);
Rob Herring7f406232015-03-17 15:46:35 -0500186 const unsigned long start = (unsigned long)head;
187 const unsigned long end = start + 2 * sizeof(*head);
Marek Vasut58465342013-07-10 03:16:42 +0200188
189 flush_dcache_range(start, end);
190}
191
192/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100193 * ci_invalidate_qh - invalidate cache over queue head
Marek Vasut58465342013-07-10 03:16:42 +0200194 * @ep_num: Endpoint number
195 *
196 * This function invalidates cache over QH for particular endpoint.
197 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100198static void ci_invalidate_qh(int ep_num)
Marek Vasut58465342013-07-10 03:16:42 +0200199{
Marek Vasut9ba89972014-02-06 02:43:45 +0100200 struct ept_queue_head *head = ci_get_qh(ep_num, 0);
Rob Herring7f406232015-03-17 15:46:35 -0500201 unsigned long start = (unsigned long)head;
202 unsigned long end = start + 2 * sizeof(*head);
Marek Vasut58465342013-07-10 03:16:42 +0200203
204 invalidate_dcache_range(start, end);
205}
206
207/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100208 * ci_flush_qtd - flush cache over queue item
Marek Vasut58465342013-07-10 03:16:42 +0200209 * @ep_num: Endpoint number
210 *
211 * This function flushes cache over qTD pair for particular endpoint.
212 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100213static void ci_flush_qtd(int ep_num)
Marek Vasut58465342013-07-10 03:16:42 +0200214{
Marek Vasut9ba89972014-02-06 02:43:45 +0100215 struct ept_queue_item *item = ci_get_qtd(ep_num, 0);
Rob Herring7f406232015-03-17 15:46:35 -0500216 const unsigned long start = (unsigned long)item;
217 const unsigned long end = start + 2 * ILIST_ENT_SZ;
Marek Vasut58465342013-07-10 03:16:42 +0200218
219 flush_dcache_range(start, end);
220}
221
222/**
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530223 * ci_flush_td - flush cache over queue item
224 * @td: td pointer
225 *
226 * This function flushes cache for particular transfer descriptor.
227 */
228static void ci_flush_td(struct ept_queue_item *td)
229{
Stephen Warrene0fa3b82015-07-22 15:16:20 -0600230 const unsigned long start = (unsigned long)td;
231 const unsigned long end = (unsigned long)td + ILIST_ENT_SZ;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530232 flush_dcache_range(start, end);
233}
234
235/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100236 * ci_invalidate_qtd - invalidate cache over queue item
Marek Vasut58465342013-07-10 03:16:42 +0200237 * @ep_num: Endpoint number
238 *
239 * This function invalidates cache over qTD pair for particular endpoint.
240 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100241static void ci_invalidate_qtd(int ep_num)
Marek Vasut58465342013-07-10 03:16:42 +0200242{
Marek Vasut9ba89972014-02-06 02:43:45 +0100243 struct ept_queue_item *item = ci_get_qtd(ep_num, 0);
Rob Herring7f406232015-03-17 15:46:35 -0500244 const unsigned long start = (unsigned long)item;
245 const unsigned long end = start + 2 * ILIST_ENT_SZ;
Marek Vasut58465342013-07-10 03:16:42 +0200246
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530247 invalidate_dcache_range(start, end);
248}
249
250/**
251 * ci_invalidate_td - invalidate cache over queue item
252 * @td: td pointer
253 *
254 * This function invalidates cache for particular transfer descriptor.
255 */
256static void ci_invalidate_td(struct ept_queue_item *td)
257{
Stephen Warrene0fa3b82015-07-22 15:16:20 -0600258 const unsigned long start = (unsigned long)td;
259 const unsigned long end = start + ILIST_ENT_SZ;
Marek Vasut58465342013-07-10 03:16:42 +0200260 invalidate_dcache_range(start, end);
261}
262
Lei Wena91ee2a2011-10-05 08:11:40 -0700263static struct usb_request *
Marek Vasut9ba89972014-02-06 02:43:45 +0100264ci_ep_alloc_request(struct usb_ep *ep, unsigned int gfp_flags)
Lei Wena91ee2a2011-10-05 08:11:40 -0700265{
Stephen Warren9ac8b542014-05-29 14:53:02 -0600266 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
Rob Herringc267e7b2015-07-24 10:14:21 -0500267 int num = -1;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600268 struct ci_req *ci_req;
269
Rob Herringc267e7b2015-07-24 10:14:21 -0500270 if (ci_ep->desc)
271 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
272
Stephen Warren9ac8b542014-05-29 14:53:02 -0600273 if (num == 0 && controller.ep0_req)
274 return &controller.ep0_req->req;
275
Stephen Warren1d0788f2014-07-01 11:41:18 -0600276 ci_req = calloc(1, sizeof(*ci_req));
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600277 if (!ci_req)
278 return NULL;
279
280 INIT_LIST_HEAD(&ci_req->queue);
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600281
Stephen Warren9ac8b542014-05-29 14:53:02 -0600282 if (num == 0)
283 controller.ep0_req = ci_req;
284
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600285 return &ci_req->req;
Lei Wena91ee2a2011-10-05 08:11:40 -0700286}
287
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600288static void ci_ep_free_request(struct usb_ep *ep, struct usb_request *req)
Lei Wena91ee2a2011-10-05 08:11:40 -0700289{
Stephen Warren10fecbd2014-06-10 11:02:36 -0600290 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
291 struct ci_req *ci_req = container_of(req, struct ci_req, req);
Rob Herringc267e7b2015-07-24 10:14:21 -0500292 int num = -1;
293
294 if (ci_ep->desc)
295 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
Stephen Warren10fecbd2014-06-10 11:02:36 -0600296
Stephen Warrenf66ae992014-06-23 12:02:48 -0600297 if (num == 0) {
298 if (!controller.ep0_req)
299 return;
Stephen Warren10fecbd2014-06-10 11:02:36 -0600300 controller.ep0_req = 0;
Stephen Warrenf66ae992014-06-23 12:02:48 -0600301 }
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600302
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600303 if (ci_req->b_buf)
304 free(ci_req->b_buf);
305 free(ci_req);
Lei Wena91ee2a2011-10-05 08:11:40 -0700306}
307
Troy Kisky256a3172013-10-10 15:28:00 -0700308static void ep_enable(int num, int in, int maxpacket)
Lei Wena91ee2a2011-10-05 08:11:40 -0700309{
Marek Vasut9ba89972014-02-06 02:43:45 +0100310 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700311 unsigned n;
Lei Wena91ee2a2011-10-05 08:11:40 -0700312
313 n = readl(&udc->epctrl[num]);
314 if (in)
315 n |= (CTRL_TXE | CTRL_TXR | CTRL_TXT_BULK);
316 else
317 n |= (CTRL_RXE | CTRL_RXR | CTRL_RXT_BULK);
318
Marek Vasut58465342013-07-10 03:16:42 +0200319 if (num != 0) {
Marek Vasut9ba89972014-02-06 02:43:45 +0100320 struct ept_queue_head *head = ci_get_qh(num, in);
Troy Kisky06bb97a2013-10-10 15:28:02 -0700321
Troy Kisky256a3172013-10-10 15:28:00 -0700322 head->config = CONFIG_MAX_PKT(maxpacket) | CONFIG_ZLT;
Marek Vasut9ba89972014-02-06 02:43:45 +0100323 ci_flush_qh(num);
Marek Vasut58465342013-07-10 03:16:42 +0200324 }
Lei Wena91ee2a2011-10-05 08:11:40 -0700325 writel(n, &udc->epctrl[num]);
326}
327
Marek Vasut9ba89972014-02-06 02:43:45 +0100328static int ci_ep_enable(struct usb_ep *ep,
Lei Wena91ee2a2011-10-05 08:11:40 -0700329 const struct usb_endpoint_descriptor *desc)
330{
Marek Vasut9ba89972014-02-06 02:43:45 +0100331 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
Lei Wena91ee2a2011-10-05 08:11:40 -0700332 int num, in;
333 num = desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
334 in = (desc->bEndpointAddress & USB_DIR_IN) != 0;
Marek Vasut9ba89972014-02-06 02:43:45 +0100335 ci_ep->desc = desc;
Troy Kisky256a3172013-10-10 15:28:00 -0700336
337 if (num) {
338 int max = get_unaligned_le16(&desc->wMaxPacketSize);
339
340 if ((max > 64) && (controller.gadget.speed == USB_SPEED_FULL))
341 max = 64;
342 if (ep->maxpacket != max) {
343 DBG("%s: from %d to %d\n", __func__,
344 ep->maxpacket, max);
345 ep->maxpacket = max;
346 }
347 }
348 ep_enable(num, in, ep->maxpacket);
349 DBG("%s: num=%d maxpacket=%d\n", __func__, num, ep->maxpacket);
Lei Wena91ee2a2011-10-05 08:11:40 -0700350 return 0;
351}
352
Marek Vasut9ba89972014-02-06 02:43:45 +0100353static int ci_ep_disable(struct usb_ep *ep)
Lei Wena91ee2a2011-10-05 08:11:40 -0700354{
Marek Vasut9ba89972014-02-06 02:43:45 +0100355 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
Troy Kisky35494072013-09-25 18:41:15 -0700356
Marek Vasut9ba89972014-02-06 02:43:45 +0100357 ci_ep->desc = NULL;
Lei Wena91ee2a2011-10-05 08:11:40 -0700358 return 0;
359}
360
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600361static int ci_bounce(struct ci_req *ci_req, int in)
Marek Vasute0fc5822013-07-10 03:16:43 +0200362{
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600363 struct usb_request *req = &ci_req->req;
Rob Herring7f406232015-03-17 15:46:35 -0500364 unsigned long addr = (unsigned long)req->buf;
365 unsigned long hwaddr;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600366 uint32_t aligned_used_len;
Marek Vasute0fc5822013-07-10 03:16:43 +0200367
368 /* Input buffer address is not aligned. */
369 if (addr & (ARCH_DMA_MINALIGN - 1))
370 goto align;
371
372 /* Input buffer length is not aligned. */
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600373 if (req->length & (ARCH_DMA_MINALIGN - 1))
Marek Vasute0fc5822013-07-10 03:16:43 +0200374 goto align;
375
376 /* The buffer is well aligned, only flush cache. */
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600377 ci_req->hw_len = req->length;
378 ci_req->hw_buf = req->buf;
Marek Vasute0fc5822013-07-10 03:16:43 +0200379 goto flush;
380
381align:
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600382 if (ci_req->b_buf && req->length > ci_req->b_len) {
383 free(ci_req->b_buf);
384 ci_req->b_buf = 0;
385 }
386 if (!ci_req->b_buf) {
387 ci_req->b_len = roundup(req->length, ARCH_DMA_MINALIGN);
388 ci_req->b_buf = memalign(ARCH_DMA_MINALIGN, ci_req->b_len);
389 if (!ci_req->b_buf)
Marek Vasute0fc5822013-07-10 03:16:43 +0200390 return -ENOMEM;
391 }
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600392 ci_req->hw_len = ci_req->b_len;
393 ci_req->hw_buf = ci_req->b_buf;
394
Troy Kisky1567b882013-10-10 15:28:01 -0700395 if (in)
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600396 memcpy(ci_req->hw_buf, req->buf, req->length);
Marek Vasute0fc5822013-07-10 03:16:43 +0200397
398flush:
Rob Herring7f406232015-03-17 15:46:35 -0500399 hwaddr = (unsigned long)ci_req->hw_buf;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600400 aligned_used_len = roundup(req->length, ARCH_DMA_MINALIGN);
401 flush_dcache_range(hwaddr, hwaddr + aligned_used_len);
Marek Vasute0fc5822013-07-10 03:16:43 +0200402
403 return 0;
404}
405
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600406static void ci_debounce(struct ci_req *ci_req, int in)
Marek Vasute0fc5822013-07-10 03:16:43 +0200407{
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600408 struct usb_request *req = &ci_req->req;
Rob Herring7f406232015-03-17 15:46:35 -0500409 unsigned long addr = (unsigned long)req->buf;
410 unsigned long hwaddr = (unsigned long)ci_req->hw_buf;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600411 uint32_t aligned_used_len;
Marek Vasute0fc5822013-07-10 03:16:43 +0200412
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600413 if (in)
414 return;
415
416 aligned_used_len = roundup(req->actual, ARCH_DMA_MINALIGN);
417 invalidate_dcache_range(hwaddr, hwaddr + aligned_used_len);
Marek Vasute0fc5822013-07-10 03:16:43 +0200418
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600419 if (addr == hwaddr)
420 return; /* not a bounce */
Marek Vasute0fc5822013-07-10 03:16:43 +0200421
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600422 memcpy(req->buf, ci_req->hw_buf, req->actual);
Marek Vasute0fc5822013-07-10 03:16:43 +0200423}
424
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600425static void ci_ep_submit_next_request(struct ci_ep *ci_ep)
Lei Wena91ee2a2011-10-05 08:11:40 -0700426{
Marek Vasut9ba89972014-02-06 02:43:45 +0100427 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700428 struct ept_queue_item *item;
429 struct ept_queue_head *head;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600430 int bit, num, len, in;
431 struct ci_req *ci_req;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530432 u8 *buf;
Stephen Warrenea6bf692015-09-11 17:10:02 -0600433 uint32_t len_left, len_this_dtd;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530434 struct ept_queue_item *dtd, *qtd;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600435
436 ci_ep->req_primed = true;
437
Marek Vasut9ba89972014-02-06 02:43:45 +0100438 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
439 in = (ci_ep->desc->bEndpointAddress & USB_DIR_IN) != 0;
440 item = ci_get_qtd(num, in);
441 head = ci_get_qh(num, in);
Lei Wena91ee2a2011-10-05 08:11:40 -0700442
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600443 ci_req = list_first_entry(&ci_ep->queue, struct ci_req, queue);
444 len = ci_req->req.length;
Marek Vasute0fc5822013-07-10 03:16:43 +0200445
Rob Herring7f406232015-03-17 15:46:35 -0500446 head->next = (unsigned long)item;
Lei Wena91ee2a2011-10-05 08:11:40 -0700447 head->info = 0;
448
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530449 ci_req->dtd_count = 0;
450 buf = ci_req->hw_buf;
Stephen Warrenea6bf692015-09-11 17:10:02 -0600451 len_left = len;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530452 dtd = item;
453
454 do {
Stephen Warrenea6bf692015-09-11 17:10:02 -0600455 len_this_dtd = min(len_left, (unsigned)EP_MAX_LENGTH_TRANSFER);
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530456
Stephen Warrenea6bf692015-09-11 17:10:02 -0600457 dtd->info = INFO_BYTES(len_this_dtd) | INFO_ACTIVE;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530458 dtd->page0 = (unsigned long)buf;
459 dtd->page1 = ((unsigned long)buf & 0xfffff000) + 0x1000;
460 dtd->page2 = ((unsigned long)buf & 0xfffff000) + 0x2000;
461 dtd->page3 = ((unsigned long)buf & 0xfffff000) + 0x3000;
462 dtd->page4 = ((unsigned long)buf & 0xfffff000) + 0x4000;
463
Stephen Warrenea6bf692015-09-11 17:10:02 -0600464 len_left -= len_this_dtd;
465 buf += len_this_dtd;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530466
Stephen Warrenea6bf692015-09-11 17:10:02 -0600467 if (len_left) {
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530468 qtd = (struct ept_queue_item *)
469 memalign(ILIST_ALIGN, ILIST_ENT_SZ);
Stephen Warrene0fa3b82015-07-22 15:16:20 -0600470 dtd->next = (unsigned long)qtd;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530471 dtd = qtd;
472 memset(dtd, 0, ILIST_ENT_SZ);
473 }
474
475 ci_req->dtd_count++;
Stephen Warrenea6bf692015-09-11 17:10:02 -0600476 } while (len_left);
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530477
478 item = dtd;
Stephen Warrena9e91da2014-06-10 15:27:39 -0600479 /*
480 * When sending the data for an IN transaction, the attached host
481 * knows that all data for the IN is sent when one of the following
482 * occurs:
483 * a) A zero-length packet is transmitted.
484 * b) A packet with length that isn't an exact multiple of the ep's
485 * maxpacket is transmitted.
486 * c) Enough data is sent to exactly fill the host's maximum expected
487 * IN transaction size.
488 *
489 * One of these conditions MUST apply at the end of an IN transaction,
490 * or the transaction will not be considered complete by the host. If
491 * none of (a)..(c) already applies, then we must force (a) to apply
492 * by explicitly sending an extra zero-length packet.
493 */
494 /* IN !a !b !c */
495 if (in && len && !(len % ci_ep->ep.maxpacket) && ci_req->req.zero) {
496 /*
497 * Each endpoint has 2 items allocated, even though typically
498 * only 1 is used at a time since either an IN or an OUT but
499 * not both is queued. For an IN transaction, item currently
500 * points at the second of these items, so we know that we
Stephen Warren6667e232014-07-01 11:41:14 -0600501 * can use the other to transmit the extra zero-length packet.
Stephen Warrena9e91da2014-06-10 15:27:39 -0600502 */
Stephen Warren6667e232014-07-01 11:41:14 -0600503 struct ept_queue_item *other_item = ci_get_qtd(num, 0);
Rob Herring7f406232015-03-17 15:46:35 -0500504 item->next = (unsigned long)other_item;
Stephen Warren6667e232014-07-01 11:41:14 -0600505 item = other_item;
Stephen Warrena9e91da2014-06-10 15:27:39 -0600506 item->info = INFO_ACTIVE;
507 }
508
509 item->next = TERMINATE;
510 item->info |= INFO_IOC;
511
512 ci_flush_qtd(num);
513
Stephen Warrene0fa3b82015-07-22 15:16:20 -0600514 item = (struct ept_queue_item *)(unsigned long)head->next;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530515 while (item->next != TERMINATE) {
Stephen Warrene0fa3b82015-07-22 15:16:20 -0600516 ci_flush_td((struct ept_queue_item *)(unsigned long)item->next);
517 item = (struct ept_queue_item *)(unsigned long)item->next;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530518 }
519
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600520 DBG("ept%d %s queue len %x, req %p, buffer %p\n",
521 num, in ? "in" : "out", len, ci_req, ci_req->hw_buf);
Marek Vasut9ba89972014-02-06 02:43:45 +0100522 ci_flush_qh(num);
Lei Wena91ee2a2011-10-05 08:11:40 -0700523
524 if (in)
525 bit = EPT_TX(num);
526 else
527 bit = EPT_RX(num);
528
Lei Wena91ee2a2011-10-05 08:11:40 -0700529 writel(bit, &udc->epprime);
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600530}
531
Peng Fan0afb2a92015-08-28 09:20:30 +0800532static int ci_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
533{
534 struct ci_ep *ci_ep = container_of(_ep, struct ci_ep, ep);
535 struct ci_req *ci_req;
536
537 list_for_each_entry(ci_req, &ci_ep->queue, queue) {
538 if (&ci_req->req == _req)
539 break;
540 }
541
542 if (&ci_req->req != _req)
543 return -EINVAL;
544
545 list_del_init(&ci_req->queue);
546
547 if (ci_req->req.status == -EINPROGRESS) {
548 ci_req->req.status = -ECONNRESET;
549 if (ci_req->req.complete)
550 ci_req->req.complete(_ep, _req);
551 }
552
553 return 0;
554}
555
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600556static int ci_ep_queue(struct usb_ep *ep,
557 struct usb_request *req, gfp_t gfp_flags)
558{
559 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
560 struct ci_req *ci_req = container_of(req, struct ci_req, req);
561 int in, ret;
562 int __maybe_unused num;
563
564 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
565 in = (ci_ep->desc->bEndpointAddress & USB_DIR_IN) != 0;
566
Stephen Warren62237cf2014-05-29 14:53:00 -0600567 if (!num && ci_ep->req_primed) {
568 /*
569 * The flipping of ep0 between IN and OUT relies on
570 * ci_ep_queue consuming the current IN/OUT setting
571 * immediately. If this is deferred to a later point when the
572 * req is pulled out of ci_req->queue, then the IN/OUT setting
573 * may have been changed since the req was queued, and state
574 * will get out of sync. This condition doesn't occur today,
575 * but could if bugs were introduced later, and this error
576 * check will save a lot of debugging time.
577 */
578 printf("%s: ep0 transaction already in progress\n", __func__);
579 return -EPROTO;
580 }
581
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600582 ret = ci_bounce(ci_req, in);
583 if (ret)
584 return ret;
585
586 DBG("ept%d %s pre-queue req %p, buffer %p\n",
587 num, in ? "in" : "out", ci_req, ci_req->hw_buf);
588 list_add_tail(&ci_req->queue, &ci_ep->queue);
589
590 if (!ci_ep->req_primed)
591 ci_ep_submit_next_request(ci_ep);
Lei Wena91ee2a2011-10-05 08:11:40 -0700592
593 return 0;
594}
595
Stephen Warrenaa449fa2014-05-29 14:53:03 -0600596static void flip_ep0_direction(void)
597{
598 if (ep0_desc.bEndpointAddress == USB_DIR_IN) {
Stephen Warrenfa514172014-06-25 11:03:18 -0600599 DBG("%s: Flipping ep0 to OUT\n", __func__);
Stephen Warrenaa449fa2014-05-29 14:53:03 -0600600 ep0_desc.bEndpointAddress = 0;
601 } else {
Stephen Warrenfa514172014-06-25 11:03:18 -0600602 DBG("%s: Flipping ep0 to IN\n", __func__);
Stephen Warrenaa449fa2014-05-29 14:53:03 -0600603 ep0_desc.bEndpointAddress = USB_DIR_IN;
604 }
605}
606
Stephen Warren192e8eb2014-07-01 14:22:27 -0600607static void handle_ep_complete(struct ci_ep *ci_ep)
Lei Wena91ee2a2011-10-05 08:11:40 -0700608{
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530609 struct ept_queue_item *item, *next_td;
610 int num, in, len, j;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600611 struct ci_req *ci_req;
612
Stephen Warren192e8eb2014-07-01 14:22:27 -0600613 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
614 in = (ci_ep->desc->bEndpointAddress & USB_DIR_IN) != 0;
Marek Vasut9ba89972014-02-06 02:43:45 +0100615 item = ci_get_qtd(num, in);
616 ci_invalidate_qtd(num);
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530617 ci_req = list_first_entry(&ci_ep->queue, struct ci_req, queue);
Wolfgang Denkbd8ec7e2013-10-07 13:07:26 +0200618
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530619 next_td = item;
620 len = 0;
621 for (j = 0; j < ci_req->dtd_count; j++) {
622 ci_invalidate_td(next_td);
623 item = next_td;
624 len += (item->info >> 16) & 0x7fff;
625 if (item->info & 0xff)
626 printf("EP%d/%s FAIL info=%x pg0=%x\n",
627 num, in ? "in" : "out", item->info, item->page0);
628 if (j != ci_req->dtd_count - 1)
Stephen Warrene0fa3b82015-07-22 15:16:20 -0600629 next_td = (struct ept_queue_item *)(unsigned long)
630 item->next;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530631 if (j != 0)
632 free(item);
633 }
Lei Wena91ee2a2011-10-05 08:11:40 -0700634
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600635 list_del_init(&ci_req->queue);
Stephen Warren192e8eb2014-07-01 14:22:27 -0600636 ci_ep->req_primed = false;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600637
Stephen Warren192e8eb2014-07-01 14:22:27 -0600638 if (!list_empty(&ci_ep->queue))
639 ci_ep_submit_next_request(ci_ep);
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600640
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600641 ci_req->req.actual = ci_req->req.length - len;
642 ci_debounce(ci_req, in);
Troy Kisky1567b882013-10-10 15:28:01 -0700643
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600644 DBG("ept%d %s req %p, complete %x\n",
645 num, in ? "in" : "out", ci_req, len);
Stephen Warrenaa449fa2014-05-29 14:53:03 -0600646 if (num != 0 || controller.ep0_data_phase)
Stephen Warren192e8eb2014-07-01 14:22:27 -0600647 ci_req->req.complete(&ci_ep->ep, &ci_req->req);
Stephen Warrenaa449fa2014-05-29 14:53:03 -0600648 if (num == 0 && controller.ep0_data_phase) {
649 /*
650 * Data Stage is complete, so flip ep0 dir for Status Stage,
651 * which always transfers a packet in the opposite direction.
652 */
653 DBG("%s: flip ep0 dir for Status Stage\n", __func__);
654 flip_ep0_direction();
655 controller.ep0_data_phase = false;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600656 ci_req->req.length = 0;
Stephen Warren192e8eb2014-07-01 14:22:27 -0600657 usb_ep_queue(&ci_ep->ep, &ci_req->req, 0);
Lei Wena91ee2a2011-10-05 08:11:40 -0700658 }
659}
660
661#define SETUP(type, request) (((type) << 8) | (request))
662
663static void handle_setup(void)
664{
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600665 struct ci_ep *ci_ep = &controller.ep[0];
666 struct ci_req *ci_req;
667 struct usb_request *req;
Marek Vasut9ba89972014-02-06 02:43:45 +0100668 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700669 struct ept_queue_head *head;
670 struct usb_ctrlrequest r;
671 int status = 0;
672 int num, in, _num, _in, i;
673 char *buf;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600674
Stephen Warren9ac8b542014-05-29 14:53:02 -0600675 ci_req = controller.ep0_req;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600676 req = &ci_req->req;
Marek Vasut9ba89972014-02-06 02:43:45 +0100677 head = ci_get_qh(0, 0); /* EP0 OUT */
Lei Wena91ee2a2011-10-05 08:11:40 -0700678
Marek Vasut9ba89972014-02-06 02:43:45 +0100679 ci_invalidate_qh(0);
Lei Wena91ee2a2011-10-05 08:11:40 -0700680 memcpy(&r, head->setup_data, sizeof(struct usb_ctrlrequest));
Stephen Warrene13a7042014-04-24 17:52:39 -0600681#ifdef CONFIG_CI_UDC_HAS_HOSTPC
682 writel(EPT_RX(0), &udc->epsetupstat);
683#else
Lei Wena91ee2a2011-10-05 08:11:40 -0700684 writel(EPT_RX(0), &udc->epstat);
Stephen Warrene13a7042014-04-24 17:52:39 -0600685#endif
Stephen Warrenaa449fa2014-05-29 14:53:03 -0600686 DBG("handle setup %s, %x, %x index %x value %x length %x\n",
687 reqname(r.bRequest), r.bRequestType, r.bRequest, r.wIndex,
688 r.wValue, r.wLength);
689
690 /* Set EP0 dir for Data Stage based on Setup Stage data */
691 if (r.bRequestType & USB_DIR_IN) {
692 DBG("%s: Set ep0 to IN for Data Stage\n", __func__);
693 ep0_desc.bEndpointAddress = USB_DIR_IN;
694 } else {
695 DBG("%s: Set ep0 to OUT for Data Stage\n", __func__);
696 ep0_desc.bEndpointAddress = 0;
697 }
698 if (r.wLength) {
699 controller.ep0_data_phase = true;
700 } else {
701 /* 0 length -> no Data Stage. Flip dir for Status Stage */
702 DBG("%s: 0 length: flip ep0 dir for Status Stage\n", __func__);
703 flip_ep0_direction();
704 controller.ep0_data_phase = false;
705 }
Lei Wena91ee2a2011-10-05 08:11:40 -0700706
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600707 list_del_init(&ci_req->queue);
708 ci_ep->req_primed = false;
709
Lei Wena91ee2a2011-10-05 08:11:40 -0700710 switch (SETUP(r.bRequestType, r.bRequest)) {
711 case SETUP(USB_RECIP_ENDPOINT, USB_REQ_CLEAR_FEATURE):
712 _num = r.wIndex & 15;
713 _in = !!(r.wIndex & 0x80);
714
715 if ((r.wValue == 0) && (r.wLength == 0)) {
716 req->length = 0;
717 for (i = 0; i < NUM_ENDPOINTS; i++) {
Marek Vasut9ba89972014-02-06 02:43:45 +0100718 struct ci_ep *ep = &controller.ep[i];
Troy Kisky256a3172013-10-10 15:28:00 -0700719
720 if (!ep->desc)
Lei Wena91ee2a2011-10-05 08:11:40 -0700721 continue;
Troy Kisky256a3172013-10-10 15:28:00 -0700722 num = ep->desc->bEndpointAddress
Marek Vasut98377322013-07-10 03:16:29 +0200723 & USB_ENDPOINT_NUMBER_MASK;
Troy Kisky256a3172013-10-10 15:28:00 -0700724 in = (ep->desc->bEndpointAddress
Lei Wena91ee2a2011-10-05 08:11:40 -0700725 & USB_DIR_IN) != 0;
726 if ((num == _num) && (in == _in)) {
Troy Kisky256a3172013-10-10 15:28:00 -0700727 ep_enable(num, in, ep->ep.maxpacket);
Lei Wena91ee2a2011-10-05 08:11:40 -0700728 usb_ep_queue(controller.gadget.ep0,
729 req, 0);
730 break;
731 }
732 }
733 }
734 return;
735
736 case SETUP(USB_RECIP_DEVICE, USB_REQ_SET_ADDRESS):
737 /*
738 * write address delayed (will take effect
739 * after the next IN txn)
740 */
741 writel((r.wValue << 25) | (1 << 24), &udc->devaddr);
742 req->length = 0;
743 usb_ep_queue(controller.gadget.ep0, req, 0);
744 return;
745
746 case SETUP(USB_DIR_IN | USB_RECIP_DEVICE, USB_REQ_GET_STATUS):
747 req->length = 2;
748 buf = (char *)req->buf;
749 buf[0] = 1 << USB_DEVICE_SELF_POWERED;
750 buf[1] = 0;
751 usb_ep_queue(controller.gadget.ep0, req, 0);
752 return;
753 }
754 /* pass request up to the gadget driver */
755 if (controller.driver)
756 status = controller.driver->setup(&controller.gadget, &r);
757 else
758 status = -ENODEV;
759
760 if (!status)
761 return;
762 DBG("STALL reqname %s type %x value %x, index %x\n",
763 reqname(r.bRequest), r.bRequestType, r.wValue, r.wIndex);
764 writel((1<<16) | (1 << 0), &udc->epctrl[0]);
765}
766
767static void stop_activity(void)
768{
769 int i, num, in;
770 struct ept_queue_head *head;
Marek Vasut9ba89972014-02-06 02:43:45 +0100771 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700772 writel(readl(&udc->epcomp), &udc->epcomp);
Stephen Warrene13a7042014-04-24 17:52:39 -0600773#ifdef CONFIG_CI_UDC_HAS_HOSTPC
774 writel(readl(&udc->epsetupstat), &udc->epsetupstat);
775#endif
Lei Wena91ee2a2011-10-05 08:11:40 -0700776 writel(readl(&udc->epstat), &udc->epstat);
777 writel(0xffffffff, &udc->epflush);
778
779 /* error out any pending reqs */
780 for (i = 0; i < NUM_ENDPOINTS; i++) {
781 if (i != 0)
782 writel(0, &udc->epctrl[i]);
Marek Vasut98377322013-07-10 03:16:29 +0200783 if (controller.ep[i].desc) {
784 num = controller.ep[i].desc->bEndpointAddress
Lei Wena91ee2a2011-10-05 08:11:40 -0700785 & USB_ENDPOINT_NUMBER_MASK;
Marek Vasut98377322013-07-10 03:16:29 +0200786 in = (controller.ep[i].desc->bEndpointAddress
787 & USB_DIR_IN) != 0;
Marek Vasut9ba89972014-02-06 02:43:45 +0100788 head = ci_get_qh(num, in);
Lei Wena91ee2a2011-10-05 08:11:40 -0700789 head->info = INFO_ACTIVE;
Marek Vasut9ba89972014-02-06 02:43:45 +0100790 ci_flush_qh(num);
Lei Wena91ee2a2011-10-05 08:11:40 -0700791 }
792 }
793}
794
795void udc_irq(void)
796{
Marek Vasut9ba89972014-02-06 02:43:45 +0100797 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700798 unsigned n = readl(&udc->usbsts);
799 writel(n, &udc->usbsts);
800 int bit, i, num, in;
801
802 n &= (STS_SLI | STS_URI | STS_PCI | STS_UI | STS_UEI);
803 if (n == 0)
804 return;
805
806 if (n & STS_URI) {
807 DBG("-- reset --\n");
808 stop_activity();
809 }
810 if (n & STS_SLI)
811 DBG("-- suspend --\n");
812
813 if (n & STS_PCI) {
Troy Kisky256a3172013-10-10 15:28:00 -0700814 int max = 64;
815 int speed = USB_SPEED_FULL;
816
Stephen Warrene13a7042014-04-24 17:52:39 -0600817#ifdef CONFIG_CI_UDC_HAS_HOSTPC
818 bit = (readl(&udc->hostpc1_devlc) >> 25) & 3;
819#else
Lei Wena91ee2a2011-10-05 08:11:40 -0700820 bit = (readl(&udc->portsc) >> 26) & 3;
Stephen Warrene13a7042014-04-24 17:52:39 -0600821#endif
Troy Kisky256a3172013-10-10 15:28:00 -0700822 DBG("-- portchange %x %s\n", bit, (bit == 2) ? "High" : "Full");
Lei Wena91ee2a2011-10-05 08:11:40 -0700823 if (bit == 2) {
Troy Kisky256a3172013-10-10 15:28:00 -0700824 speed = USB_SPEED_HIGH;
825 max = 512;
826 }
827 controller.gadget.speed = speed;
828 for (i = 1; i < NUM_ENDPOINTS; i++) {
829 if (controller.ep[i].ep.maxpacket > max)
830 controller.ep[i].ep.maxpacket = max;
Lei Wena91ee2a2011-10-05 08:11:40 -0700831 }
832 }
833
834 if (n & STS_UEI)
835 printf("<UEI %x>\n", readl(&udc->epcomp));
836
837 if ((n & STS_UI) || (n & STS_UEI)) {
Stephen Warrene13a7042014-04-24 17:52:39 -0600838#ifdef CONFIG_CI_UDC_HAS_HOSTPC
839 n = readl(&udc->epsetupstat);
840#else
Lei Wena91ee2a2011-10-05 08:11:40 -0700841 n = readl(&udc->epstat);
Stephen Warrene13a7042014-04-24 17:52:39 -0600842#endif
Lei Wena91ee2a2011-10-05 08:11:40 -0700843 if (n & EPT_RX(0))
844 handle_setup();
845
846 n = readl(&udc->epcomp);
847 if (n != 0)
848 writel(n, &udc->epcomp);
849
850 for (i = 0; i < NUM_ENDPOINTS && n; i++) {
Marek Vasut98377322013-07-10 03:16:29 +0200851 if (controller.ep[i].desc) {
852 num = controller.ep[i].desc->bEndpointAddress
Lei Wena91ee2a2011-10-05 08:11:40 -0700853 & USB_ENDPOINT_NUMBER_MASK;
Marek Vasut98377322013-07-10 03:16:29 +0200854 in = (controller.ep[i].desc->bEndpointAddress
Lei Wena91ee2a2011-10-05 08:11:40 -0700855 & USB_DIR_IN) != 0;
856 bit = (in) ? EPT_TX(num) : EPT_RX(num);
857 if (n & bit)
Marek Vasut98377322013-07-10 03:16:29 +0200858 handle_ep_complete(&controller.ep[i]);
Lei Wena91ee2a2011-10-05 08:11:40 -0700859 }
860 }
861 }
862}
863
Kishon Vijay Abraham I4763e162015-02-23 18:40:23 +0530864int usb_gadget_handle_interrupts(int index)
Lei Wena91ee2a2011-10-05 08:11:40 -0700865{
866 u32 value;
Marek Vasut9ba89972014-02-06 02:43:45 +0100867 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700868
869 value = readl(&udc->usbsts);
870 if (value)
871 udc_irq();
872
873 return value;
874}
875
Stephen Warren6e9aa0d2014-06-10 11:02:35 -0600876void udc_disconnect(void)
877{
878 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
879 /* disable pullup */
880 stop_activity();
881 writel(USBCMD_FS2, &udc->usbcmd);
882 udelay(800);
883 if (controller.driver)
884 controller.driver->disconnect(&controller.gadget);
885}
886
Marek Vasut9ba89972014-02-06 02:43:45 +0100887static int ci_pullup(struct usb_gadget *gadget, int is_on)
Lei Wena91ee2a2011-10-05 08:11:40 -0700888{
Marek Vasut9ba89972014-02-06 02:43:45 +0100889 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700890 if (is_on) {
891 /* RESET */
892 writel(USBCMD_ITC(MICRO_8FRAME) | USBCMD_RST, &udc->usbcmd);
893 udelay(200);
894
Ramon Fried5d4eb842018-09-21 13:35:52 +0300895 ci_init_after_reset(controller.ctrl);
896
Rob Herring7f406232015-03-17 15:46:35 -0500897 writel((unsigned long)controller.epts, &udc->epinitaddr);
Lei Wena91ee2a2011-10-05 08:11:40 -0700898
899 /* select DEVICE mode */
900 writel(USBMODE_DEVICE, &udc->usbmode);
901
Eric Nelsonfe24e162014-09-28 18:35:14 -0700902#if !defined(CONFIG_USB_GADGET_DUALSPEED)
903 /* Port force Full-Speed Connect */
904 setbits_le32(&udc->portsc, PFSC);
905#endif
906
Lei Wena91ee2a2011-10-05 08:11:40 -0700907 writel(0xffffffff, &udc->epflush);
908
909 /* Turn on the USB connection by enabling the pullup resistor */
Ramon Fried8c09fce2018-09-21 13:35:56 +0300910 setbits_le32(&udc->usbcmd, USBCMD_ITC(MICRO_8FRAME) |
911 USBCMD_RUN);
Lei Wena91ee2a2011-10-05 08:11:40 -0700912 } else {
Stephen Warren6e9aa0d2014-06-10 11:02:35 -0600913 udc_disconnect();
Lei Wena91ee2a2011-10-05 08:11:40 -0700914 }
915
916 return 0;
917}
918
Marek Vasut9ba89972014-02-06 02:43:45 +0100919static int ci_udc_probe(void)
Lei Wena91ee2a2011-10-05 08:11:40 -0700920{
921 struct ept_queue_head *head;
922 int i;
Marek Vasut456707d2013-07-10 03:16:37 +0200923
Marek Vasut806d76c2013-07-10 03:16:34 +0200924 const int num = 2 * NUM_ENDPOINTS;
Lei Wena91ee2a2011-10-05 08:11:40 -0700925
Marek Vasut456707d2013-07-10 03:16:37 +0200926 const int eplist_min_align = 4096;
927 const int eplist_align = roundup(eplist_min_align, ARCH_DMA_MINALIGN);
928 const int eplist_raw_sz = num * sizeof(struct ept_queue_head);
929 const int eplist_sz = roundup(eplist_raw_sz, ARCH_DMA_MINALIGN);
930
931 /* The QH list must be aligned to 4096 bytes. */
932 controller.epts = memalign(eplist_align, eplist_sz);
933 if (!controller.epts)
934 return -ENOMEM;
935 memset(controller.epts, 0, eplist_sz);
936
Stephen Warrenfe529102014-07-01 11:41:15 -0600937 controller.items_mem = memalign(ILIST_ALIGN, ILIST_SZ);
Marek Vasutb62fa7d2013-07-10 03:16:40 +0200938 if (!controller.items_mem) {
939 free(controller.epts);
940 return -ENOMEM;
941 }
Stephen Warrenfe529102014-07-01 11:41:15 -0600942 memset(controller.items_mem, 0, ILIST_SZ);
Marek Vasutb62fa7d2013-07-10 03:16:40 +0200943
Lei Wena91ee2a2011-10-05 08:11:40 -0700944 for (i = 0; i < 2 * NUM_ENDPOINTS; i++) {
945 /*
Marek Vasut456707d2013-07-10 03:16:37 +0200946 * Configure QH for each endpoint. The structure of the QH list
947 * is such that each two subsequent fields, N and N+1 where N is
948 * even, in the QH list represent QH for one endpoint. The Nth
949 * entry represents OUT configuration and the N+1th entry does
950 * represent IN configuration of the endpoint.
Lei Wena91ee2a2011-10-05 08:11:40 -0700951 */
Marek Vasut393004e2013-07-10 03:16:36 +0200952 head = controller.epts + i;
Lei Wena91ee2a2011-10-05 08:11:40 -0700953 if (i < 2)
954 head->config = CONFIG_MAX_PKT(EP0_MAX_PACKET_SIZE)
955 | CONFIG_ZLT | CONFIG_IOS;
956 else
957 head->config = CONFIG_MAX_PKT(EP_MAX_PACKET_SIZE)
958 | CONFIG_ZLT;
959 head->next = TERMINATE;
960 head->info = 0;
961
Marek Vasut58465342013-07-10 03:16:42 +0200962 if (i & 1) {
Stephen Warrenbec1c132014-07-01 11:41:13 -0600963 ci_flush_qh(i / 2);
964 ci_flush_qtd(i / 2);
Marek Vasut58465342013-07-10 03:16:42 +0200965 }
Lei Wena91ee2a2011-10-05 08:11:40 -0700966 }
967
968 INIT_LIST_HEAD(&controller.gadget.ep_list);
Marek Vasute1263412013-07-10 03:16:30 +0200969
970 /* Init EP 0 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100971 memcpy(&controller.ep[0].ep, &ci_ep_init[0], sizeof(*ci_ep_init));
Stephen Warrenb3dc4222014-05-29 14:53:01 -0600972 controller.ep[0].desc = &ep0_desc;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600973 INIT_LIST_HEAD(&controller.ep[0].queue);
974 controller.ep[0].req_primed = false;
Marek Vasute1263412013-07-10 03:16:30 +0200975 controller.gadget.ep0 = &controller.ep[0].ep;
Lei Wena91ee2a2011-10-05 08:11:40 -0700976 INIT_LIST_HEAD(&controller.gadget.ep0->ep_list);
Marek Vasute1263412013-07-10 03:16:30 +0200977
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530978 /* Init EP 1..3 */
979 for (i = 1; i < 4; i++) {
980 memcpy(&controller.ep[i].ep, &ci_ep_init[i],
981 sizeof(*ci_ep_init));
982 INIT_LIST_HEAD(&controller.ep[i].queue);
983 controller.ep[i].req_primed = false;
984 list_add_tail(&controller.ep[i].ep.ep_list,
985 &controller.gadget.ep_list);
986 }
987
988 /* Init EP 4..n */
989 for (i = 4; i < NUM_ENDPOINTS; i++) {
990 memcpy(&controller.ep[i].ep, &ci_ep_init[4],
Marek Vasut9ba89972014-02-06 02:43:45 +0100991 sizeof(*ci_ep_init));
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600992 INIT_LIST_HEAD(&controller.ep[i].queue);
993 controller.ep[i].req_primed = false;
Marek Vasute1263412013-07-10 03:16:30 +0200994 list_add_tail(&controller.ep[i].ep.ep_list,
995 &controller.gadget.ep_list);
Lei Wena91ee2a2011-10-05 08:11:40 -0700996 }
Marek Vasute1263412013-07-10 03:16:30 +0200997
Stephen Warren9ac8b542014-05-29 14:53:02 -0600998 ci_ep_alloc_request(&controller.ep[0].ep, 0);
999 if (!controller.ep0_req) {
Stephen Warrenc5d619b2014-06-10 11:02:37 -06001000 free(controller.items_mem);
Stephen Warren9ac8b542014-05-29 14:53:02 -06001001 free(controller.epts);
1002 return -ENOMEM;
1003 }
1004
Lei Wena91ee2a2011-10-05 08:11:40 -07001005 return 0;
1006}
1007
1008int usb_gadget_register_driver(struct usb_gadget_driver *driver)
1009{
Marek Vasut1f4b4912013-07-10 03:16:32 +02001010 int ret;
Lei Wena91ee2a2011-10-05 08:11:40 -07001011
Marek Vasutfe67fe72013-07-10 03:16:33 +02001012 if (!driver)
1013 return -EINVAL;
1014 if (!driver->bind || !driver->setup || !driver->disconnect)
1015 return -EINVAL;
1016 if (driver->speed != USB_SPEED_FULL && driver->speed != USB_SPEED_HIGH)
Lei Wena91ee2a2011-10-05 08:11:40 -07001017 return -EINVAL;
Lei Wena91ee2a2011-10-05 08:11:40 -07001018
Sven Schwermer8a3cb9f12018-11-21 08:43:56 +01001019#if CONFIG_IS_ENABLED(DM_USB)
Simon Glass444b1e02015-03-25 12:22:32 -06001020 ret = usb_setup_ehci_gadget(&controller.ctrl);
1021#else
Troy Kisky8f9c49d2013-10-10 15:27:56 -07001022 ret = usb_lowlevel_init(0, USB_INIT_DEVICE, (void **)&controller.ctrl);
Simon Glass444b1e02015-03-25 12:22:32 -06001023#endif
Marek Vasut1f4b4912013-07-10 03:16:32 +02001024 if (ret)
1025 return ret;
1026
Marek Vasut9ba89972014-02-06 02:43:45 +01001027 ret = ci_udc_probe();
Ye.Li560bee92015-12-31 15:24:45 +08001028 if (ret) {
1029 DBG("udc probe failed, returned %d\n", ret);
1030 return ret;
Lei Wena91ee2a2011-10-05 08:11:40 -07001031 }
Marek Vasut1f4b4912013-07-10 03:16:32 +02001032
1033 ret = driver->bind(&controller.gadget);
1034 if (ret) {
1035 DBG("driver->bind() returned %d\n", ret);
1036 return ret;
Lei Wena91ee2a2011-10-05 08:11:40 -07001037 }
1038 controller.driver = driver;
1039
1040 return 0;
1041}
1042
1043int usb_gadget_unregister_driver(struct usb_gadget_driver *driver)
1044{
Stephen Warren9c7ebe72014-06-10 11:02:38 -06001045 udc_disconnect();
1046
Stephen Warrenf66ae992014-06-23 12:02:48 -06001047 driver->unbind(&controller.gadget);
1048 controller.driver = NULL;
1049
Stephen Warren9c7ebe72014-06-10 11:02:38 -06001050 ci_ep_free_request(&controller.ep[0].ep, &controller.ep0_req->req);
1051 free(controller.items_mem);
1052 free(controller.epts);
1053
Lei Wena91ee2a2011-10-05 08:11:40 -07001054 return 0;
1055}
Stephen Warrenfb12f452014-08-25 14:02:15 -06001056
1057bool dfu_usb_get_reset(void)
1058{
1059 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
1060
1061 return !!(readl(&udc->usbsts) & STS_URI);
1062}