blob: 226a9e6d671edb954a5dd9fdbd8509e489cdfdd0 [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>
Simon Glass274e0b02020-05-10 11:39:56 -060017#include <asm/cache.h>
Simon Glassdbd79542020-05-10 11:40:11 -060018#include <linux/delay.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090019#include <linux/errno.h>
Lei Wena91ee2a2011-10-05 08:11:40 -070020#include <asm/io.h>
Troy Kisky256a3172013-10-10 15:28:00 -070021#include <asm/unaligned.h>
Lei Wena91ee2a2011-10-05 08:11:40 -070022#include <linux/types.h>
Troy Kiskyf1573942013-10-10 15:28:03 -070023#include <linux/usb/ch9.h>
24#include <linux/usb/gadget.h>
Marek Vasut9ba89972014-02-06 02:43:45 +010025#include <usb/ci_udc.h>
Troy Kiskyf1573942013-10-10 15:28:03 -070026#include "../host/ehci.h"
Marek Vasut9ba89972014-02-06 02:43:45 +010027#include "ci_udc.h"
Lei Wena91ee2a2011-10-05 08:11:40 -070028
Marek Vasut9d64ac92013-07-10 03:16:38 +020029/*
30 * Check if the system has too long cachelines. If the cachelines are
31 * longer then 128b, the driver will not be able flush/invalidate data
32 * cache over separate QH entries. We use 128b because one QH entry is
33 * 64b long and there are always two QH list entries for each endpoint.
34 */
35#if ARCH_DMA_MINALIGN > 128
36#error This driver can not work on systems with caches longer than 128b
37#endif
38
Stephen Warrenfe529102014-07-01 11:41:15 -060039/*
Stephen Warrend13034e2014-07-01 11:41:16 -060040 * Every QTD must be individually aligned, since we can program any
41 * QTD's address into HW. Cache flushing requires ARCH_DMA_MINALIGN,
42 * and the USB HW requires 32-byte alignment. Align to both:
Stephen Warrenfe529102014-07-01 11:41:15 -060043 */
44#define ILIST_ALIGN roundup(ARCH_DMA_MINALIGN, 32)
Stephen Warrend13034e2014-07-01 11:41:16 -060045/* Each QTD is this size */
46#define ILIST_ENT_RAW_SZ sizeof(struct ept_queue_item)
47/*
48 * Align the size of the QTD too, so we can add this value to each
49 * QTD's address to get another aligned address.
50 */
51#define ILIST_ENT_SZ roundup(ILIST_ENT_RAW_SZ, ILIST_ALIGN)
52/* For each endpoint, we need 2 QTDs, one for each of IN and OUT */
53#define ILIST_SZ (NUM_ENDPOINTS * 2 * ILIST_ENT_SZ)
Stephen Warrenfe529102014-07-01 11:41:15 -060054
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +053055#define EP_MAX_LENGTH_TRANSFER 0x4000
56
Lei Wena91ee2a2011-10-05 08:11:40 -070057#ifndef DEBUG
58#define DBG(x...) do {} while (0)
59#else
60#define DBG(x...) printf(x)
61static const char *reqname(unsigned r)
62{
63 switch (r) {
64 case USB_REQ_GET_STATUS: return "GET_STATUS";
65 case USB_REQ_CLEAR_FEATURE: return "CLEAR_FEATURE";
66 case USB_REQ_SET_FEATURE: return "SET_FEATURE";
67 case USB_REQ_SET_ADDRESS: return "SET_ADDRESS";
68 case USB_REQ_GET_DESCRIPTOR: return "GET_DESCRIPTOR";
69 case USB_REQ_SET_DESCRIPTOR: return "SET_DESCRIPTOR";
70 case USB_REQ_GET_CONFIGURATION: return "GET_CONFIGURATION";
71 case USB_REQ_SET_CONFIGURATION: return "SET_CONFIGURATION";
72 case USB_REQ_GET_INTERFACE: return "GET_INTERFACE";
73 case USB_REQ_SET_INTERFACE: return "SET_INTERFACE";
74 default: return "*UNKNOWN*";
75 }
76}
77#endif
78
Stephen Warrenb3dc4222014-05-29 14:53:01 -060079static struct usb_endpoint_descriptor ep0_desc = {
Lei Wena91ee2a2011-10-05 08:11:40 -070080 .bLength = sizeof(struct usb_endpoint_descriptor),
81 .bDescriptorType = USB_DT_ENDPOINT,
Lei Wena91ee2a2011-10-05 08:11:40 -070082 .bEndpointAddress = USB_DIR_IN,
83 .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
84};
85
Marek Vasut9ba89972014-02-06 02:43:45 +010086static int ci_pullup(struct usb_gadget *gadget, int is_on);
87static int ci_ep_enable(struct usb_ep *ep,
Lei Wena91ee2a2011-10-05 08:11:40 -070088 const struct usb_endpoint_descriptor *desc);
Marek Vasut9ba89972014-02-06 02:43:45 +010089static int ci_ep_disable(struct usb_ep *ep);
90static int ci_ep_queue(struct usb_ep *ep,
Lei Wena91ee2a2011-10-05 08:11:40 -070091 struct usb_request *req, gfp_t gfp_flags);
Peng Fan0afb2a92015-08-28 09:20:30 +080092static int ci_ep_dequeue(struct usb_ep *ep, struct usb_request *req);
Lei Wena91ee2a2011-10-05 08:11:40 -070093static struct usb_request *
Marek Vasut9ba89972014-02-06 02:43:45 +010094ci_ep_alloc_request(struct usb_ep *ep, unsigned int gfp_flags);
95static void ci_ep_free_request(struct usb_ep *ep, struct usb_request *_req);
Lei Wena91ee2a2011-10-05 08:11:40 -070096
Marek Vasut9ba89972014-02-06 02:43:45 +010097static struct usb_gadget_ops ci_udc_ops = {
98 .pullup = ci_pullup,
Lei Wena91ee2a2011-10-05 08:11:40 -070099};
100
Marek Vasut9ba89972014-02-06 02:43:45 +0100101static struct usb_ep_ops ci_ep_ops = {
102 .enable = ci_ep_enable,
103 .disable = ci_ep_disable,
104 .queue = ci_ep_queue,
Peng Fan0afb2a92015-08-28 09:20:30 +0800105 .dequeue = ci_ep_dequeue,
Marek Vasut9ba89972014-02-06 02:43:45 +0100106 .alloc_request = ci_ep_alloc_request,
107 .free_request = ci_ep_free_request,
Lei Wena91ee2a2011-10-05 08:11:40 -0700108};
109
Ramon Fried5d4eb842018-09-21 13:35:52 +0300110__weak void ci_init_after_reset(struct ehci_ctrl *ctrl)
111{
112}
113
Marek Vasute1263412013-07-10 03:16:30 +0200114/* Init values for USB endpoints. */
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530115static const struct usb_ep ci_ep_init[5] = {
Marek Vasute1263412013-07-10 03:16:30 +0200116 [0] = { /* EP 0 */
117 .maxpacket = 64,
118 .name = "ep0",
Marek Vasut9ba89972014-02-06 02:43:45 +0100119 .ops = &ci_ep_ops,
Marek Vasute1263412013-07-10 03:16:30 +0200120 },
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530121 [1] = {
122 .maxpacket = 512,
123 .name = "ep1in-bulk",
124 .ops = &ci_ep_ops,
125 },
126 [2] = {
127 .maxpacket = 512,
128 .name = "ep2out-bulk",
129 .ops = &ci_ep_ops,
130 },
131 [3] = {
132 .maxpacket = 512,
133 .name = "ep3in-int",
134 .ops = &ci_ep_ops,
135 },
136 [4] = {
Marek Vasute1263412013-07-10 03:16:30 +0200137 .maxpacket = 512,
138 .name = "ep-",
Marek Vasut9ba89972014-02-06 02:43:45 +0100139 .ops = &ci_ep_ops,
Marek Vasute1263412013-07-10 03:16:30 +0200140 },
141};
142
Marek Vasut9ba89972014-02-06 02:43:45 +0100143static struct ci_drv controller = {
Marek Vasutbe0b0e72013-07-10 03:16:35 +0200144 .gadget = {
Marek Vasut9ba89972014-02-06 02:43:45 +0100145 .name = "ci_udc",
146 .ops = &ci_udc_ops,
Troy Kisky4b4df472013-09-25 18:41:09 -0700147 .is_dualspeed = 1,
Li Jun3c5a8572021-01-25 21:43:58 +0800148 .max_speed = USB_SPEED_HIGH,
Lei Wena91ee2a2011-10-05 08:11:40 -0700149 },
150};
151
Marek Vasut9212f892013-07-10 03:16:39 +0200152/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100153 * ci_get_qh() - return queue head for endpoint
Marek Vasut9212f892013-07-10 03:16:39 +0200154 * @ep_num: Endpoint number
155 * @dir_in: Direction of the endpoint (IN = 1, OUT = 0)
156 *
157 * This function returns the QH associated with particular endpoint
158 * and it's direction.
159 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100160static struct ept_queue_head *ci_get_qh(int ep_num, int dir_in)
Marek Vasut9212f892013-07-10 03:16:39 +0200161{
162 return &controller.epts[(ep_num * 2) + dir_in];
163}
164
Marek Vasuta6f6b082013-07-10 03:16:41 +0200165/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100166 * ci_get_qtd() - return queue item for endpoint
Marek Vasuta6f6b082013-07-10 03:16:41 +0200167 * @ep_num: Endpoint number
168 * @dir_in: Direction of the endpoint (IN = 1, OUT = 0)
169 *
170 * This function returns the QH associated with particular endpoint
171 * and it's direction.
172 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100173static struct ept_queue_item *ci_get_qtd(int ep_num, int dir_in)
Marek Vasuta6f6b082013-07-10 03:16:41 +0200174{
Stephen Warrenb8a872c2014-07-01 11:41:17 -0600175 int index = (ep_num * 2) + dir_in;
176 uint8_t *imem = controller.items_mem + (index * ILIST_ENT_SZ);
177 return (struct ept_queue_item *)imem;
Marek Vasuta6f6b082013-07-10 03:16:41 +0200178}
179
Marek Vasut58465342013-07-10 03:16:42 +0200180/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100181 * ci_flush_qh - flush cache over queue head
Marek Vasut58465342013-07-10 03:16:42 +0200182 * @ep_num: Endpoint number
183 *
184 * This function flushes cache over QH for particular endpoint.
185 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100186static void ci_flush_qh(int ep_num)
Marek Vasut58465342013-07-10 03:16:42 +0200187{
Marek Vasut9ba89972014-02-06 02:43:45 +0100188 struct ept_queue_head *head = ci_get_qh(ep_num, 0);
Rob Herring7f406232015-03-17 15:46:35 -0500189 const unsigned long start = (unsigned long)head;
190 const unsigned long end = start + 2 * sizeof(*head);
Marek Vasut58465342013-07-10 03:16:42 +0200191
192 flush_dcache_range(start, end);
193}
194
195/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100196 * ci_invalidate_qh - invalidate cache over queue head
Marek Vasut58465342013-07-10 03:16:42 +0200197 * @ep_num: Endpoint number
198 *
199 * This function invalidates cache over QH for particular endpoint.
200 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100201static void ci_invalidate_qh(int ep_num)
Marek Vasut58465342013-07-10 03:16:42 +0200202{
Marek Vasut9ba89972014-02-06 02:43:45 +0100203 struct ept_queue_head *head = ci_get_qh(ep_num, 0);
Rob Herring7f406232015-03-17 15:46:35 -0500204 unsigned long start = (unsigned long)head;
205 unsigned long end = start + 2 * sizeof(*head);
Marek Vasut58465342013-07-10 03:16:42 +0200206
207 invalidate_dcache_range(start, end);
208}
209
210/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100211 * ci_flush_qtd - flush cache over queue item
Marek Vasut58465342013-07-10 03:16:42 +0200212 * @ep_num: Endpoint number
213 *
214 * This function flushes cache over qTD pair for particular endpoint.
215 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100216static void ci_flush_qtd(int ep_num)
Marek Vasut58465342013-07-10 03:16:42 +0200217{
Marek Vasut9ba89972014-02-06 02:43:45 +0100218 struct ept_queue_item *item = ci_get_qtd(ep_num, 0);
Rob Herring7f406232015-03-17 15:46:35 -0500219 const unsigned long start = (unsigned long)item;
220 const unsigned long end = start + 2 * ILIST_ENT_SZ;
Marek Vasut58465342013-07-10 03:16:42 +0200221
222 flush_dcache_range(start, end);
223}
224
225/**
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530226 * ci_flush_td - flush cache over queue item
227 * @td: td pointer
228 *
229 * This function flushes cache for particular transfer descriptor.
230 */
231static void ci_flush_td(struct ept_queue_item *td)
232{
Stephen Warrene0fa3b82015-07-22 15:16:20 -0600233 const unsigned long start = (unsigned long)td;
234 const unsigned long end = (unsigned long)td + ILIST_ENT_SZ;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530235 flush_dcache_range(start, end);
236}
237
238/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100239 * ci_invalidate_qtd - invalidate cache over queue item
Marek Vasut58465342013-07-10 03:16:42 +0200240 * @ep_num: Endpoint number
241 *
242 * This function invalidates cache over qTD pair for particular endpoint.
243 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100244static void ci_invalidate_qtd(int ep_num)
Marek Vasut58465342013-07-10 03:16:42 +0200245{
Marek Vasut9ba89972014-02-06 02:43:45 +0100246 struct ept_queue_item *item = ci_get_qtd(ep_num, 0);
Rob Herring7f406232015-03-17 15:46:35 -0500247 const unsigned long start = (unsigned long)item;
248 const unsigned long end = start + 2 * ILIST_ENT_SZ;
Marek Vasut58465342013-07-10 03:16:42 +0200249
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530250 invalidate_dcache_range(start, end);
251}
252
253/**
254 * ci_invalidate_td - invalidate cache over queue item
255 * @td: td pointer
256 *
257 * This function invalidates cache for particular transfer descriptor.
258 */
259static void ci_invalidate_td(struct ept_queue_item *td)
260{
Stephen Warrene0fa3b82015-07-22 15:16:20 -0600261 const unsigned long start = (unsigned long)td;
262 const unsigned long end = start + ILIST_ENT_SZ;
Marek Vasut58465342013-07-10 03:16:42 +0200263 invalidate_dcache_range(start, end);
264}
265
Lei Wena91ee2a2011-10-05 08:11:40 -0700266static struct usb_request *
Marek Vasut9ba89972014-02-06 02:43:45 +0100267ci_ep_alloc_request(struct usb_ep *ep, unsigned int gfp_flags)
Lei Wena91ee2a2011-10-05 08:11:40 -0700268{
Stephen Warren9ac8b542014-05-29 14:53:02 -0600269 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
Rob Herringc267e7b2015-07-24 10:14:21 -0500270 int num = -1;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600271 struct ci_req *ci_req;
272
Rob Herringc267e7b2015-07-24 10:14:21 -0500273 if (ci_ep->desc)
274 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
275
Stephen Warren9ac8b542014-05-29 14:53:02 -0600276 if (num == 0 && controller.ep0_req)
277 return &controller.ep0_req->req;
278
Stephen Warren1d0788f2014-07-01 11:41:18 -0600279 ci_req = calloc(1, sizeof(*ci_req));
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600280 if (!ci_req)
281 return NULL;
282
283 INIT_LIST_HEAD(&ci_req->queue);
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600284
Stephen Warren9ac8b542014-05-29 14:53:02 -0600285 if (num == 0)
286 controller.ep0_req = ci_req;
287
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600288 return &ci_req->req;
Lei Wena91ee2a2011-10-05 08:11:40 -0700289}
290
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600291static void ci_ep_free_request(struct usb_ep *ep, struct usb_request *req)
Lei Wena91ee2a2011-10-05 08:11:40 -0700292{
Stephen Warren10fecbd2014-06-10 11:02:36 -0600293 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
294 struct ci_req *ci_req = container_of(req, struct ci_req, req);
Rob Herringc267e7b2015-07-24 10:14:21 -0500295 int num = -1;
296
297 if (ci_ep->desc)
298 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
Stephen Warren10fecbd2014-06-10 11:02:36 -0600299
Stephen Warrenf66ae992014-06-23 12:02:48 -0600300 if (num == 0) {
301 if (!controller.ep0_req)
302 return;
Stephen Warren10fecbd2014-06-10 11:02:36 -0600303 controller.ep0_req = 0;
Stephen Warrenf66ae992014-06-23 12:02:48 -0600304 }
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600305
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600306 if (ci_req->b_buf)
307 free(ci_req->b_buf);
308 free(ci_req);
Lei Wena91ee2a2011-10-05 08:11:40 -0700309}
310
Troy Kisky256a3172013-10-10 15:28:00 -0700311static void ep_enable(int num, int in, int maxpacket)
Lei Wena91ee2a2011-10-05 08:11:40 -0700312{
Marek Vasut9ba89972014-02-06 02:43:45 +0100313 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700314 unsigned n;
Lei Wena91ee2a2011-10-05 08:11:40 -0700315
316 n = readl(&udc->epctrl[num]);
317 if (in)
318 n |= (CTRL_TXE | CTRL_TXR | CTRL_TXT_BULK);
319 else
320 n |= (CTRL_RXE | CTRL_RXR | CTRL_RXT_BULK);
321
Marek Vasut58465342013-07-10 03:16:42 +0200322 if (num != 0) {
Marek Vasut9ba89972014-02-06 02:43:45 +0100323 struct ept_queue_head *head = ci_get_qh(num, in);
Troy Kisky06bb97a2013-10-10 15:28:02 -0700324
Troy Kisky256a3172013-10-10 15:28:00 -0700325 head->config = CONFIG_MAX_PKT(maxpacket) | CONFIG_ZLT;
Marek Vasut9ba89972014-02-06 02:43:45 +0100326 ci_flush_qh(num);
Marek Vasut58465342013-07-10 03:16:42 +0200327 }
Lei Wena91ee2a2011-10-05 08:11:40 -0700328 writel(n, &udc->epctrl[num]);
329}
330
Marek Vasut9ba89972014-02-06 02:43:45 +0100331static int ci_ep_enable(struct usb_ep *ep,
Lei Wena91ee2a2011-10-05 08:11:40 -0700332 const struct usb_endpoint_descriptor *desc)
333{
Marek Vasut9ba89972014-02-06 02:43:45 +0100334 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
Lei Wena91ee2a2011-10-05 08:11:40 -0700335 int num, in;
336 num = desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
337 in = (desc->bEndpointAddress & USB_DIR_IN) != 0;
Marek Vasut9ba89972014-02-06 02:43:45 +0100338 ci_ep->desc = desc;
Li Junfd892c32021-01-25 21:44:00 +0800339 ep->desc = desc;
Troy Kisky256a3172013-10-10 15:28:00 -0700340
341 if (num) {
342 int max = get_unaligned_le16(&desc->wMaxPacketSize);
343
344 if ((max > 64) && (controller.gadget.speed == USB_SPEED_FULL))
345 max = 64;
346 if (ep->maxpacket != max) {
347 DBG("%s: from %d to %d\n", __func__,
348 ep->maxpacket, max);
349 ep->maxpacket = max;
350 }
351 }
352 ep_enable(num, in, ep->maxpacket);
353 DBG("%s: num=%d maxpacket=%d\n", __func__, num, ep->maxpacket);
Lei Wena91ee2a2011-10-05 08:11:40 -0700354 return 0;
355}
356
Marek Vasut9ba89972014-02-06 02:43:45 +0100357static int ci_ep_disable(struct usb_ep *ep)
Lei Wena91ee2a2011-10-05 08:11:40 -0700358{
Marek Vasut9ba89972014-02-06 02:43:45 +0100359 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
Troy Kisky35494072013-09-25 18:41:15 -0700360
Marek Vasut9ba89972014-02-06 02:43:45 +0100361 ci_ep->desc = NULL;
Li Junfd892c32021-01-25 21:44:00 +0800362 ep->desc = NULL;
Lei Wena91ee2a2011-10-05 08:11:40 -0700363 return 0;
364}
365
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600366static int ci_bounce(struct ci_req *ci_req, int in)
Marek Vasute0fc5822013-07-10 03:16:43 +0200367{
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600368 struct usb_request *req = &ci_req->req;
Rob Herring7f406232015-03-17 15:46:35 -0500369 unsigned long addr = (unsigned long)req->buf;
370 unsigned long hwaddr;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600371 uint32_t aligned_used_len;
Marek Vasute0fc5822013-07-10 03:16:43 +0200372
373 /* Input buffer address is not aligned. */
374 if (addr & (ARCH_DMA_MINALIGN - 1))
375 goto align;
376
377 /* Input buffer length is not aligned. */
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600378 if (req->length & (ARCH_DMA_MINALIGN - 1))
Marek Vasute0fc5822013-07-10 03:16:43 +0200379 goto align;
380
381 /* The buffer is well aligned, only flush cache. */
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600382 ci_req->hw_len = req->length;
383 ci_req->hw_buf = req->buf;
Marek Vasute0fc5822013-07-10 03:16:43 +0200384 goto flush;
385
386align:
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600387 if (ci_req->b_buf && req->length > ci_req->b_len) {
388 free(ci_req->b_buf);
389 ci_req->b_buf = 0;
390 }
391 if (!ci_req->b_buf) {
392 ci_req->b_len = roundup(req->length, ARCH_DMA_MINALIGN);
393 ci_req->b_buf = memalign(ARCH_DMA_MINALIGN, ci_req->b_len);
394 if (!ci_req->b_buf)
Marek Vasute0fc5822013-07-10 03:16:43 +0200395 return -ENOMEM;
396 }
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600397 ci_req->hw_len = ci_req->b_len;
398 ci_req->hw_buf = ci_req->b_buf;
399
Troy Kisky1567b882013-10-10 15:28:01 -0700400 if (in)
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600401 memcpy(ci_req->hw_buf, req->buf, req->length);
Marek Vasute0fc5822013-07-10 03:16:43 +0200402
403flush:
Rob Herring7f406232015-03-17 15:46:35 -0500404 hwaddr = (unsigned long)ci_req->hw_buf;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600405 aligned_used_len = roundup(req->length, ARCH_DMA_MINALIGN);
406 flush_dcache_range(hwaddr, hwaddr + aligned_used_len);
Marek Vasute0fc5822013-07-10 03:16:43 +0200407
408 return 0;
409}
410
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600411static void ci_debounce(struct ci_req *ci_req, int in)
Marek Vasute0fc5822013-07-10 03:16:43 +0200412{
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600413 struct usb_request *req = &ci_req->req;
Rob Herring7f406232015-03-17 15:46:35 -0500414 unsigned long addr = (unsigned long)req->buf;
415 unsigned long hwaddr = (unsigned long)ci_req->hw_buf;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600416 uint32_t aligned_used_len;
Marek Vasute0fc5822013-07-10 03:16:43 +0200417
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600418 if (in)
419 return;
420
421 aligned_used_len = roundup(req->actual, ARCH_DMA_MINALIGN);
422 invalidate_dcache_range(hwaddr, hwaddr + aligned_used_len);
Marek Vasute0fc5822013-07-10 03:16:43 +0200423
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600424 if (addr == hwaddr)
425 return; /* not a bounce */
Marek Vasute0fc5822013-07-10 03:16:43 +0200426
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600427 memcpy(req->buf, ci_req->hw_buf, req->actual);
Marek Vasute0fc5822013-07-10 03:16:43 +0200428}
429
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600430static void ci_ep_submit_next_request(struct ci_ep *ci_ep)
Lei Wena91ee2a2011-10-05 08:11:40 -0700431{
Marek Vasut9ba89972014-02-06 02:43:45 +0100432 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700433 struct ept_queue_item *item;
434 struct ept_queue_head *head;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600435 int bit, num, len, in;
436 struct ci_req *ci_req;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530437 u8 *buf;
Stephen Warrenea6bf692015-09-11 17:10:02 -0600438 uint32_t len_left, len_this_dtd;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530439 struct ept_queue_item *dtd, *qtd;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600440
441 ci_ep->req_primed = true;
442
Marek Vasut9ba89972014-02-06 02:43:45 +0100443 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
444 in = (ci_ep->desc->bEndpointAddress & USB_DIR_IN) != 0;
445 item = ci_get_qtd(num, in);
446 head = ci_get_qh(num, in);
Lei Wena91ee2a2011-10-05 08:11:40 -0700447
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600448 ci_req = list_first_entry(&ci_ep->queue, struct ci_req, queue);
449 len = ci_req->req.length;
Marek Vasute0fc5822013-07-10 03:16:43 +0200450
Rob Herring7f406232015-03-17 15:46:35 -0500451 head->next = (unsigned long)item;
Lei Wena91ee2a2011-10-05 08:11:40 -0700452 head->info = 0;
453
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530454 ci_req->dtd_count = 0;
455 buf = ci_req->hw_buf;
Stephen Warrenea6bf692015-09-11 17:10:02 -0600456 len_left = len;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530457 dtd = item;
458
459 do {
Stephen Warrenea6bf692015-09-11 17:10:02 -0600460 len_this_dtd = min(len_left, (unsigned)EP_MAX_LENGTH_TRANSFER);
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530461
Stephen Warrenea6bf692015-09-11 17:10:02 -0600462 dtd->info = INFO_BYTES(len_this_dtd) | INFO_ACTIVE;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530463 dtd->page0 = (unsigned long)buf;
464 dtd->page1 = ((unsigned long)buf & 0xfffff000) + 0x1000;
465 dtd->page2 = ((unsigned long)buf & 0xfffff000) + 0x2000;
466 dtd->page3 = ((unsigned long)buf & 0xfffff000) + 0x3000;
467 dtd->page4 = ((unsigned long)buf & 0xfffff000) + 0x4000;
468
Stephen Warrenea6bf692015-09-11 17:10:02 -0600469 len_left -= len_this_dtd;
470 buf += len_this_dtd;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530471
Stephen Warrenea6bf692015-09-11 17:10:02 -0600472 if (len_left) {
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530473 qtd = (struct ept_queue_item *)
474 memalign(ILIST_ALIGN, ILIST_ENT_SZ);
Stephen Warrene0fa3b82015-07-22 15:16:20 -0600475 dtd->next = (unsigned long)qtd;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530476 dtd = qtd;
477 memset(dtd, 0, ILIST_ENT_SZ);
478 }
479
480 ci_req->dtd_count++;
Stephen Warrenea6bf692015-09-11 17:10:02 -0600481 } while (len_left);
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530482
483 item = dtd;
Stephen Warrena9e91da2014-06-10 15:27:39 -0600484 /*
485 * When sending the data for an IN transaction, the attached host
486 * knows that all data for the IN is sent when one of the following
487 * occurs:
488 * a) A zero-length packet is transmitted.
489 * b) A packet with length that isn't an exact multiple of the ep's
490 * maxpacket is transmitted.
491 * c) Enough data is sent to exactly fill the host's maximum expected
492 * IN transaction size.
493 *
494 * One of these conditions MUST apply at the end of an IN transaction,
495 * or the transaction will not be considered complete by the host. If
496 * none of (a)..(c) already applies, then we must force (a) to apply
497 * by explicitly sending an extra zero-length packet.
498 */
499 /* IN !a !b !c */
500 if (in && len && !(len % ci_ep->ep.maxpacket) && ci_req->req.zero) {
501 /*
502 * Each endpoint has 2 items allocated, even though typically
503 * only 1 is used at a time since either an IN or an OUT but
504 * not both is queued. For an IN transaction, item currently
505 * points at the second of these items, so we know that we
Stephen Warren6667e232014-07-01 11:41:14 -0600506 * can use the other to transmit the extra zero-length packet.
Stephen Warrena9e91da2014-06-10 15:27:39 -0600507 */
Stephen Warren6667e232014-07-01 11:41:14 -0600508 struct ept_queue_item *other_item = ci_get_qtd(num, 0);
Rob Herring7f406232015-03-17 15:46:35 -0500509 item->next = (unsigned long)other_item;
Stephen Warren6667e232014-07-01 11:41:14 -0600510 item = other_item;
Stephen Warrena9e91da2014-06-10 15:27:39 -0600511 item->info = INFO_ACTIVE;
512 }
513
514 item->next = TERMINATE;
515 item->info |= INFO_IOC;
516
517 ci_flush_qtd(num);
518
Stephen Warrene0fa3b82015-07-22 15:16:20 -0600519 item = (struct ept_queue_item *)(unsigned long)head->next;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530520 while (item->next != TERMINATE) {
Stephen Warrene0fa3b82015-07-22 15:16:20 -0600521 ci_flush_td((struct ept_queue_item *)(unsigned long)item->next);
522 item = (struct ept_queue_item *)(unsigned long)item->next;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530523 }
524
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600525 DBG("ept%d %s queue len %x, req %p, buffer %p\n",
526 num, in ? "in" : "out", len, ci_req, ci_req->hw_buf);
Marek Vasut9ba89972014-02-06 02:43:45 +0100527 ci_flush_qh(num);
Lei Wena91ee2a2011-10-05 08:11:40 -0700528
529 if (in)
530 bit = EPT_TX(num);
531 else
532 bit = EPT_RX(num);
533
Lei Wena91ee2a2011-10-05 08:11:40 -0700534 writel(bit, &udc->epprime);
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600535}
536
Peng Fan0afb2a92015-08-28 09:20:30 +0800537static int ci_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
538{
539 struct ci_ep *ci_ep = container_of(_ep, struct ci_ep, ep);
540 struct ci_req *ci_req;
541
542 list_for_each_entry(ci_req, &ci_ep->queue, queue) {
543 if (&ci_req->req == _req)
544 break;
545 }
546
547 if (&ci_req->req != _req)
548 return -EINVAL;
549
550 list_del_init(&ci_req->queue);
551
552 if (ci_req->req.status == -EINPROGRESS) {
553 ci_req->req.status = -ECONNRESET;
554 if (ci_req->req.complete)
555 ci_req->req.complete(_ep, _req);
556 }
557
558 return 0;
559}
560
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600561static int ci_ep_queue(struct usb_ep *ep,
562 struct usb_request *req, gfp_t gfp_flags)
563{
564 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
565 struct ci_req *ci_req = container_of(req, struct ci_req, req);
566 int in, ret;
567 int __maybe_unused num;
568
569 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
570 in = (ci_ep->desc->bEndpointAddress & USB_DIR_IN) != 0;
571
Stephen Warren62237cf2014-05-29 14:53:00 -0600572 if (!num && ci_ep->req_primed) {
573 /*
574 * The flipping of ep0 between IN and OUT relies on
575 * ci_ep_queue consuming the current IN/OUT setting
576 * immediately. If this is deferred to a later point when the
577 * req is pulled out of ci_req->queue, then the IN/OUT setting
578 * may have been changed since the req was queued, and state
579 * will get out of sync. This condition doesn't occur today,
580 * but could if bugs were introduced later, and this error
581 * check will save a lot of debugging time.
582 */
583 printf("%s: ep0 transaction already in progress\n", __func__);
584 return -EPROTO;
585 }
586
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600587 ret = ci_bounce(ci_req, in);
588 if (ret)
589 return ret;
590
591 DBG("ept%d %s pre-queue req %p, buffer %p\n",
592 num, in ? "in" : "out", ci_req, ci_req->hw_buf);
593 list_add_tail(&ci_req->queue, &ci_ep->queue);
594
595 if (!ci_ep->req_primed)
596 ci_ep_submit_next_request(ci_ep);
Lei Wena91ee2a2011-10-05 08:11:40 -0700597
598 return 0;
599}
600
Stephen Warrenaa449fa2014-05-29 14:53:03 -0600601static void flip_ep0_direction(void)
602{
603 if (ep0_desc.bEndpointAddress == USB_DIR_IN) {
Stephen Warrenfa514172014-06-25 11:03:18 -0600604 DBG("%s: Flipping ep0 to OUT\n", __func__);
Stephen Warrenaa449fa2014-05-29 14:53:03 -0600605 ep0_desc.bEndpointAddress = 0;
606 } else {
Stephen Warrenfa514172014-06-25 11:03:18 -0600607 DBG("%s: Flipping ep0 to IN\n", __func__);
Stephen Warrenaa449fa2014-05-29 14:53:03 -0600608 ep0_desc.bEndpointAddress = USB_DIR_IN;
609 }
610}
611
Stephen Warren192e8eb2014-07-01 14:22:27 -0600612static void handle_ep_complete(struct ci_ep *ci_ep)
Lei Wena91ee2a2011-10-05 08:11:40 -0700613{
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530614 struct ept_queue_item *item, *next_td;
615 int num, in, len, j;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600616 struct ci_req *ci_req;
617
Stephen Warren192e8eb2014-07-01 14:22:27 -0600618 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
619 in = (ci_ep->desc->bEndpointAddress & USB_DIR_IN) != 0;
Marek Vasut9ba89972014-02-06 02:43:45 +0100620 item = ci_get_qtd(num, in);
621 ci_invalidate_qtd(num);
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530622 ci_req = list_first_entry(&ci_ep->queue, struct ci_req, queue);
Wolfgang Denkbd8ec7e2013-10-07 13:07:26 +0200623
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530624 next_td = item;
625 len = 0;
626 for (j = 0; j < ci_req->dtd_count; j++) {
627 ci_invalidate_td(next_td);
628 item = next_td;
629 len += (item->info >> 16) & 0x7fff;
630 if (item->info & 0xff)
631 printf("EP%d/%s FAIL info=%x pg0=%x\n",
632 num, in ? "in" : "out", item->info, item->page0);
633 if (j != ci_req->dtd_count - 1)
Stephen Warrene0fa3b82015-07-22 15:16:20 -0600634 next_td = (struct ept_queue_item *)(unsigned long)
635 item->next;
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530636 if (j != 0)
637 free(item);
638 }
Lei Wena91ee2a2011-10-05 08:11:40 -0700639
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600640 list_del_init(&ci_req->queue);
Stephen Warren192e8eb2014-07-01 14:22:27 -0600641 ci_ep->req_primed = false;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600642
Stephen Warren192e8eb2014-07-01 14:22:27 -0600643 if (!list_empty(&ci_ep->queue))
644 ci_ep_submit_next_request(ci_ep);
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600645
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600646 ci_req->req.actual = ci_req->req.length - len;
647 ci_debounce(ci_req, in);
Troy Kisky1567b882013-10-10 15:28:01 -0700648
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600649 DBG("ept%d %s req %p, complete %x\n",
650 num, in ? "in" : "out", ci_req, len);
Stephen Warrenaa449fa2014-05-29 14:53:03 -0600651 if (num != 0 || controller.ep0_data_phase)
Stephen Warren192e8eb2014-07-01 14:22:27 -0600652 ci_req->req.complete(&ci_ep->ep, &ci_req->req);
Stephen Warrenaa449fa2014-05-29 14:53:03 -0600653 if (num == 0 && controller.ep0_data_phase) {
654 /*
655 * Data Stage is complete, so flip ep0 dir for Status Stage,
656 * which always transfers a packet in the opposite direction.
657 */
658 DBG("%s: flip ep0 dir for Status Stage\n", __func__);
659 flip_ep0_direction();
660 controller.ep0_data_phase = false;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600661 ci_req->req.length = 0;
Stephen Warren192e8eb2014-07-01 14:22:27 -0600662 usb_ep_queue(&ci_ep->ep, &ci_req->req, 0);
Lei Wena91ee2a2011-10-05 08:11:40 -0700663 }
664}
665
666#define SETUP(type, request) (((type) << 8) | (request))
667
668static void handle_setup(void)
669{
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600670 struct ci_ep *ci_ep = &controller.ep[0];
671 struct ci_req *ci_req;
672 struct usb_request *req;
Marek Vasut9ba89972014-02-06 02:43:45 +0100673 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700674 struct ept_queue_head *head;
675 struct usb_ctrlrequest r;
676 int status = 0;
677 int num, in, _num, _in, i;
678 char *buf;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600679
Stephen Warren9ac8b542014-05-29 14:53:02 -0600680 ci_req = controller.ep0_req;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600681 req = &ci_req->req;
Marek Vasut9ba89972014-02-06 02:43:45 +0100682 head = ci_get_qh(0, 0); /* EP0 OUT */
Lei Wena91ee2a2011-10-05 08:11:40 -0700683
Marek Vasut9ba89972014-02-06 02:43:45 +0100684 ci_invalidate_qh(0);
Lei Wena91ee2a2011-10-05 08:11:40 -0700685 memcpy(&r, head->setup_data, sizeof(struct usb_ctrlrequest));
Stephen Warrene13a7042014-04-24 17:52:39 -0600686#ifdef CONFIG_CI_UDC_HAS_HOSTPC
687 writel(EPT_RX(0), &udc->epsetupstat);
688#else
Lei Wena91ee2a2011-10-05 08:11:40 -0700689 writel(EPT_RX(0), &udc->epstat);
Stephen Warrene13a7042014-04-24 17:52:39 -0600690#endif
Stephen Warrenaa449fa2014-05-29 14:53:03 -0600691 DBG("handle setup %s, %x, %x index %x value %x length %x\n",
692 reqname(r.bRequest), r.bRequestType, r.bRequest, r.wIndex,
693 r.wValue, r.wLength);
694
695 /* Set EP0 dir for Data Stage based on Setup Stage data */
696 if (r.bRequestType & USB_DIR_IN) {
697 DBG("%s: Set ep0 to IN for Data Stage\n", __func__);
698 ep0_desc.bEndpointAddress = USB_DIR_IN;
699 } else {
700 DBG("%s: Set ep0 to OUT for Data Stage\n", __func__);
701 ep0_desc.bEndpointAddress = 0;
702 }
703 if (r.wLength) {
704 controller.ep0_data_phase = true;
705 } else {
706 /* 0 length -> no Data Stage. Flip dir for Status Stage */
707 DBG("%s: 0 length: flip ep0 dir for Status Stage\n", __func__);
708 flip_ep0_direction();
709 controller.ep0_data_phase = false;
710 }
Lei Wena91ee2a2011-10-05 08:11:40 -0700711
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600712 list_del_init(&ci_req->queue);
713 ci_ep->req_primed = false;
714
Lei Wena91ee2a2011-10-05 08:11:40 -0700715 switch (SETUP(r.bRequestType, r.bRequest)) {
716 case SETUP(USB_RECIP_ENDPOINT, USB_REQ_CLEAR_FEATURE):
717 _num = r.wIndex & 15;
718 _in = !!(r.wIndex & 0x80);
719
720 if ((r.wValue == 0) && (r.wLength == 0)) {
721 req->length = 0;
722 for (i = 0; i < NUM_ENDPOINTS; i++) {
Marek Vasut9ba89972014-02-06 02:43:45 +0100723 struct ci_ep *ep = &controller.ep[i];
Troy Kisky256a3172013-10-10 15:28:00 -0700724
725 if (!ep->desc)
Lei Wena91ee2a2011-10-05 08:11:40 -0700726 continue;
Troy Kisky256a3172013-10-10 15:28:00 -0700727 num = ep->desc->bEndpointAddress
Marek Vasut98377322013-07-10 03:16:29 +0200728 & USB_ENDPOINT_NUMBER_MASK;
Troy Kisky256a3172013-10-10 15:28:00 -0700729 in = (ep->desc->bEndpointAddress
Lei Wena91ee2a2011-10-05 08:11:40 -0700730 & USB_DIR_IN) != 0;
731 if ((num == _num) && (in == _in)) {
Troy Kisky256a3172013-10-10 15:28:00 -0700732 ep_enable(num, in, ep->ep.maxpacket);
Lei Wena91ee2a2011-10-05 08:11:40 -0700733 usb_ep_queue(controller.gadget.ep0,
734 req, 0);
735 break;
736 }
737 }
738 }
739 return;
740
741 case SETUP(USB_RECIP_DEVICE, USB_REQ_SET_ADDRESS):
742 /*
743 * write address delayed (will take effect
744 * after the next IN txn)
745 */
746 writel((r.wValue << 25) | (1 << 24), &udc->devaddr);
747 req->length = 0;
748 usb_ep_queue(controller.gadget.ep0, req, 0);
749 return;
750
751 case SETUP(USB_DIR_IN | USB_RECIP_DEVICE, USB_REQ_GET_STATUS):
752 req->length = 2;
753 buf = (char *)req->buf;
754 buf[0] = 1 << USB_DEVICE_SELF_POWERED;
755 buf[1] = 0;
756 usb_ep_queue(controller.gadget.ep0, req, 0);
757 return;
758 }
759 /* pass request up to the gadget driver */
760 if (controller.driver)
761 status = controller.driver->setup(&controller.gadget, &r);
762 else
763 status = -ENODEV;
764
765 if (!status)
766 return;
767 DBG("STALL reqname %s type %x value %x, index %x\n",
768 reqname(r.bRequest), r.bRequestType, r.wValue, r.wIndex);
769 writel((1<<16) | (1 << 0), &udc->epctrl[0]);
770}
771
772static void stop_activity(void)
773{
774 int i, num, in;
775 struct ept_queue_head *head;
Marek Vasut9ba89972014-02-06 02:43:45 +0100776 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700777 writel(readl(&udc->epcomp), &udc->epcomp);
Stephen Warrene13a7042014-04-24 17:52:39 -0600778#ifdef CONFIG_CI_UDC_HAS_HOSTPC
779 writel(readl(&udc->epsetupstat), &udc->epsetupstat);
780#endif
Lei Wena91ee2a2011-10-05 08:11:40 -0700781 writel(readl(&udc->epstat), &udc->epstat);
782 writel(0xffffffff, &udc->epflush);
783
784 /* error out any pending reqs */
785 for (i = 0; i < NUM_ENDPOINTS; i++) {
786 if (i != 0)
787 writel(0, &udc->epctrl[i]);
Marek Vasut98377322013-07-10 03:16:29 +0200788 if (controller.ep[i].desc) {
789 num = controller.ep[i].desc->bEndpointAddress
Lei Wena91ee2a2011-10-05 08:11:40 -0700790 & USB_ENDPOINT_NUMBER_MASK;
Marek Vasut98377322013-07-10 03:16:29 +0200791 in = (controller.ep[i].desc->bEndpointAddress
792 & USB_DIR_IN) != 0;
Marek Vasut9ba89972014-02-06 02:43:45 +0100793 head = ci_get_qh(num, in);
Lei Wena91ee2a2011-10-05 08:11:40 -0700794 head->info = INFO_ACTIVE;
Marek Vasut9ba89972014-02-06 02:43:45 +0100795 ci_flush_qh(num);
Lei Wena91ee2a2011-10-05 08:11:40 -0700796 }
797 }
798}
799
800void udc_irq(void)
801{
Marek Vasut9ba89972014-02-06 02:43:45 +0100802 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700803 unsigned n = readl(&udc->usbsts);
804 writel(n, &udc->usbsts);
805 int bit, i, num, in;
806
807 n &= (STS_SLI | STS_URI | STS_PCI | STS_UI | STS_UEI);
808 if (n == 0)
809 return;
810
811 if (n & STS_URI) {
812 DBG("-- reset --\n");
813 stop_activity();
814 }
815 if (n & STS_SLI)
816 DBG("-- suspend --\n");
817
818 if (n & STS_PCI) {
Troy Kisky256a3172013-10-10 15:28:00 -0700819 int max = 64;
820 int speed = USB_SPEED_FULL;
821
Stephen Warrene13a7042014-04-24 17:52:39 -0600822#ifdef CONFIG_CI_UDC_HAS_HOSTPC
823 bit = (readl(&udc->hostpc1_devlc) >> 25) & 3;
824#else
Lei Wena91ee2a2011-10-05 08:11:40 -0700825 bit = (readl(&udc->portsc) >> 26) & 3;
Stephen Warrene13a7042014-04-24 17:52:39 -0600826#endif
Troy Kisky256a3172013-10-10 15:28:00 -0700827 DBG("-- portchange %x %s\n", bit, (bit == 2) ? "High" : "Full");
Lei Wena91ee2a2011-10-05 08:11:40 -0700828 if (bit == 2) {
Troy Kisky256a3172013-10-10 15:28:00 -0700829 speed = USB_SPEED_HIGH;
830 max = 512;
831 }
832 controller.gadget.speed = speed;
833 for (i = 1; i < NUM_ENDPOINTS; i++) {
834 if (controller.ep[i].ep.maxpacket > max)
835 controller.ep[i].ep.maxpacket = max;
Lei Wena91ee2a2011-10-05 08:11:40 -0700836 }
837 }
838
839 if (n & STS_UEI)
840 printf("<UEI %x>\n", readl(&udc->epcomp));
841
842 if ((n & STS_UI) || (n & STS_UEI)) {
Stephen Warrene13a7042014-04-24 17:52:39 -0600843#ifdef CONFIG_CI_UDC_HAS_HOSTPC
844 n = readl(&udc->epsetupstat);
845#else
Lei Wena91ee2a2011-10-05 08:11:40 -0700846 n = readl(&udc->epstat);
Stephen Warrene13a7042014-04-24 17:52:39 -0600847#endif
Lei Wena91ee2a2011-10-05 08:11:40 -0700848 if (n & EPT_RX(0))
849 handle_setup();
850
851 n = readl(&udc->epcomp);
852 if (n != 0)
853 writel(n, &udc->epcomp);
854
855 for (i = 0; i < NUM_ENDPOINTS && n; i++) {
Marek Vasut98377322013-07-10 03:16:29 +0200856 if (controller.ep[i].desc) {
857 num = controller.ep[i].desc->bEndpointAddress
Lei Wena91ee2a2011-10-05 08:11:40 -0700858 & USB_ENDPOINT_NUMBER_MASK;
Marek Vasut98377322013-07-10 03:16:29 +0200859 in = (controller.ep[i].desc->bEndpointAddress
Lei Wena91ee2a2011-10-05 08:11:40 -0700860 & USB_DIR_IN) != 0;
861 bit = (in) ? EPT_TX(num) : EPT_RX(num);
862 if (n & bit)
Marek Vasut98377322013-07-10 03:16:29 +0200863 handle_ep_complete(&controller.ep[i]);
Lei Wena91ee2a2011-10-05 08:11:40 -0700864 }
865 }
866 }
867}
868
Kishon Vijay Abraham I4763e162015-02-23 18:40:23 +0530869int usb_gadget_handle_interrupts(int index)
Lei Wena91ee2a2011-10-05 08:11:40 -0700870{
871 u32 value;
Marek Vasut9ba89972014-02-06 02:43:45 +0100872 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700873
874 value = readl(&udc->usbsts);
875 if (value)
876 udc_irq();
877
878 return value;
879}
880
Stephen Warren6e9aa0d2014-06-10 11:02:35 -0600881void udc_disconnect(void)
882{
883 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
884 /* disable pullup */
885 stop_activity();
886 writel(USBCMD_FS2, &udc->usbcmd);
887 udelay(800);
888 if (controller.driver)
889 controller.driver->disconnect(&controller.gadget);
890}
891
Marek Vasut9ba89972014-02-06 02:43:45 +0100892static int ci_pullup(struct usb_gadget *gadget, int is_on)
Lei Wena91ee2a2011-10-05 08:11:40 -0700893{
Marek Vasut9ba89972014-02-06 02:43:45 +0100894 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700895 if (is_on) {
896 /* RESET */
897 writel(USBCMD_ITC(MICRO_8FRAME) | USBCMD_RST, &udc->usbcmd);
898 udelay(200);
899
Ramon Fried5d4eb842018-09-21 13:35:52 +0300900 ci_init_after_reset(controller.ctrl);
901
Rob Herring7f406232015-03-17 15:46:35 -0500902 writel((unsigned long)controller.epts, &udc->epinitaddr);
Lei Wena91ee2a2011-10-05 08:11:40 -0700903
904 /* select DEVICE mode */
905 writel(USBMODE_DEVICE, &udc->usbmode);
906
Eric Nelsonfe24e162014-09-28 18:35:14 -0700907#if !defined(CONFIG_USB_GADGET_DUALSPEED)
908 /* Port force Full-Speed Connect */
909 setbits_le32(&udc->portsc, PFSC);
910#endif
911
Lei Wena91ee2a2011-10-05 08:11:40 -0700912 writel(0xffffffff, &udc->epflush);
913
914 /* Turn on the USB connection by enabling the pullup resistor */
Ramon Fried8c09fce2018-09-21 13:35:56 +0300915 setbits_le32(&udc->usbcmd, USBCMD_ITC(MICRO_8FRAME) |
916 USBCMD_RUN);
Lei Wena91ee2a2011-10-05 08:11:40 -0700917 } else {
Stephen Warren6e9aa0d2014-06-10 11:02:35 -0600918 udc_disconnect();
Lei Wena91ee2a2011-10-05 08:11:40 -0700919 }
920
921 return 0;
922}
923
Marek Vasut9ba89972014-02-06 02:43:45 +0100924static int ci_udc_probe(void)
Lei Wena91ee2a2011-10-05 08:11:40 -0700925{
926 struct ept_queue_head *head;
927 int i;
Marek Vasut456707d2013-07-10 03:16:37 +0200928
Marek Vasut806d76c2013-07-10 03:16:34 +0200929 const int num = 2 * NUM_ENDPOINTS;
Lei Wena91ee2a2011-10-05 08:11:40 -0700930
Marek Vasut456707d2013-07-10 03:16:37 +0200931 const int eplist_min_align = 4096;
932 const int eplist_align = roundup(eplist_min_align, ARCH_DMA_MINALIGN);
933 const int eplist_raw_sz = num * sizeof(struct ept_queue_head);
934 const int eplist_sz = roundup(eplist_raw_sz, ARCH_DMA_MINALIGN);
935
936 /* The QH list must be aligned to 4096 bytes. */
937 controller.epts = memalign(eplist_align, eplist_sz);
938 if (!controller.epts)
939 return -ENOMEM;
940 memset(controller.epts, 0, eplist_sz);
941
Stephen Warrenfe529102014-07-01 11:41:15 -0600942 controller.items_mem = memalign(ILIST_ALIGN, ILIST_SZ);
Marek Vasutb62fa7d2013-07-10 03:16:40 +0200943 if (!controller.items_mem) {
944 free(controller.epts);
945 return -ENOMEM;
946 }
Stephen Warrenfe529102014-07-01 11:41:15 -0600947 memset(controller.items_mem, 0, ILIST_SZ);
Marek Vasutb62fa7d2013-07-10 03:16:40 +0200948
Lei Wena91ee2a2011-10-05 08:11:40 -0700949 for (i = 0; i < 2 * NUM_ENDPOINTS; i++) {
950 /*
Marek Vasut456707d2013-07-10 03:16:37 +0200951 * Configure QH for each endpoint. The structure of the QH list
952 * is such that each two subsequent fields, N and N+1 where N is
953 * even, in the QH list represent QH for one endpoint. The Nth
954 * entry represents OUT configuration and the N+1th entry does
955 * represent IN configuration of the endpoint.
Lei Wena91ee2a2011-10-05 08:11:40 -0700956 */
Marek Vasut393004e2013-07-10 03:16:36 +0200957 head = controller.epts + i;
Lei Wena91ee2a2011-10-05 08:11:40 -0700958 if (i < 2)
959 head->config = CONFIG_MAX_PKT(EP0_MAX_PACKET_SIZE)
960 | CONFIG_ZLT | CONFIG_IOS;
961 else
962 head->config = CONFIG_MAX_PKT(EP_MAX_PACKET_SIZE)
963 | CONFIG_ZLT;
964 head->next = TERMINATE;
965 head->info = 0;
966
Marek Vasut58465342013-07-10 03:16:42 +0200967 if (i & 1) {
Stephen Warrenbec1c132014-07-01 11:41:13 -0600968 ci_flush_qh(i / 2);
969 ci_flush_qtd(i / 2);
Marek Vasut58465342013-07-10 03:16:42 +0200970 }
Lei Wena91ee2a2011-10-05 08:11:40 -0700971 }
972
973 INIT_LIST_HEAD(&controller.gadget.ep_list);
Marek Vasute1263412013-07-10 03:16:30 +0200974
975 /* Init EP 0 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100976 memcpy(&controller.ep[0].ep, &ci_ep_init[0], sizeof(*ci_ep_init));
Stephen Warrenb3dc4222014-05-29 14:53:01 -0600977 controller.ep[0].desc = &ep0_desc;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600978 INIT_LIST_HEAD(&controller.ep[0].queue);
979 controller.ep[0].req_primed = false;
Marek Vasute1263412013-07-10 03:16:30 +0200980 controller.gadget.ep0 = &controller.ep[0].ep;
Lei Wena91ee2a2011-10-05 08:11:40 -0700981 INIT_LIST_HEAD(&controller.gadget.ep0->ep_list);
Marek Vasute1263412013-07-10 03:16:30 +0200982
Siva Durga Prasad Paladugu2c24ed12015-04-29 10:42:10 +0530983 /* Init EP 1..3 */
984 for (i = 1; i < 4; i++) {
985 memcpy(&controller.ep[i].ep, &ci_ep_init[i],
986 sizeof(*ci_ep_init));
987 INIT_LIST_HEAD(&controller.ep[i].queue);
988 controller.ep[i].req_primed = false;
989 list_add_tail(&controller.ep[i].ep.ep_list,
990 &controller.gadget.ep_list);
991 }
992
993 /* Init EP 4..n */
994 for (i = 4; i < NUM_ENDPOINTS; i++) {
995 memcpy(&controller.ep[i].ep, &ci_ep_init[4],
Marek Vasut9ba89972014-02-06 02:43:45 +0100996 sizeof(*ci_ep_init));
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600997 INIT_LIST_HEAD(&controller.ep[i].queue);
998 controller.ep[i].req_primed = false;
Marek Vasute1263412013-07-10 03:16:30 +0200999 list_add_tail(&controller.ep[i].ep.ep_list,
1000 &controller.gadget.ep_list);
Lei Wena91ee2a2011-10-05 08:11:40 -07001001 }
Marek Vasute1263412013-07-10 03:16:30 +02001002
Stephen Warren9ac8b542014-05-29 14:53:02 -06001003 ci_ep_alloc_request(&controller.ep[0].ep, 0);
1004 if (!controller.ep0_req) {
Stephen Warrenc5d619b2014-06-10 11:02:37 -06001005 free(controller.items_mem);
Stephen Warren9ac8b542014-05-29 14:53:02 -06001006 free(controller.epts);
1007 return -ENOMEM;
1008 }
1009
Lei Wena91ee2a2011-10-05 08:11:40 -07001010 return 0;
1011}
1012
1013int usb_gadget_register_driver(struct usb_gadget_driver *driver)
1014{
Marek Vasut1f4b4912013-07-10 03:16:32 +02001015 int ret;
Lei Wena91ee2a2011-10-05 08:11:40 -07001016
Marek Vasutfe67fe72013-07-10 03:16:33 +02001017 if (!driver)
1018 return -EINVAL;
1019 if (!driver->bind || !driver->setup || !driver->disconnect)
1020 return -EINVAL;
Lei Wena91ee2a2011-10-05 08:11:40 -07001021
Sven Schwermer8a3cb9f12018-11-21 08:43:56 +01001022#if CONFIG_IS_ENABLED(DM_USB)
Simon Glass444b1e02015-03-25 12:22:32 -06001023 ret = usb_setup_ehci_gadget(&controller.ctrl);
1024#else
Troy Kisky8f9c49d2013-10-10 15:27:56 -07001025 ret = usb_lowlevel_init(0, USB_INIT_DEVICE, (void **)&controller.ctrl);
Simon Glass444b1e02015-03-25 12:22:32 -06001026#endif
Marek Vasut1f4b4912013-07-10 03:16:32 +02001027 if (ret)
1028 return ret;
1029
Marek Vasut9ba89972014-02-06 02:43:45 +01001030 ret = ci_udc_probe();
Ye.Li560bee92015-12-31 15:24:45 +08001031 if (ret) {
1032 DBG("udc probe failed, returned %d\n", ret);
1033 return ret;
Lei Wena91ee2a2011-10-05 08:11:40 -07001034 }
Marek Vasut1f4b4912013-07-10 03:16:32 +02001035
1036 ret = driver->bind(&controller.gadget);
1037 if (ret) {
1038 DBG("driver->bind() returned %d\n", ret);
1039 return ret;
Lei Wena91ee2a2011-10-05 08:11:40 -07001040 }
1041 controller.driver = driver;
1042
1043 return 0;
1044}
1045
1046int usb_gadget_unregister_driver(struct usb_gadget_driver *driver)
1047{
Stephen Warren9c7ebe72014-06-10 11:02:38 -06001048 udc_disconnect();
1049
Stephen Warrenf66ae992014-06-23 12:02:48 -06001050 driver->unbind(&controller.gadget);
1051 controller.driver = NULL;
1052
Stephen Warren9c7ebe72014-06-10 11:02:38 -06001053 ci_ep_free_request(&controller.ep[0].ep, &controller.ep0_req->req);
1054 free(controller.items_mem);
1055 free(controller.epts);
1056
Ye Li68801eb2020-06-29 10:12:59 +08001057#if CONFIG_IS_ENABLED(DM_USB)
1058 usb_remove_ehci_gadget(&controller.ctrl);
1059#else
1060 usb_lowlevel_stop(0);
1061 controller.ctrl = NULL;
1062#endif
1063
Lei Wena91ee2a2011-10-05 08:11:40 -07001064 return 0;
1065}
Stephen Warrenfb12f452014-08-25 14:02:15 -06001066
1067bool dfu_usb_get_reset(void)
1068{
1069 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
1070
1071 return !!(readl(&udc->usbsts) & STS_URI);
1072}