blob: 89138675c32f7c56c330b465f5055de45ce99a99 [file] [log] [blame]
Lei Wena91ee2a2011-10-05 08:11:40 -07001/*
2 * Copyright 2011, Marvell Semiconductor Inc.
3 * Lei Wen <leiwen@marvell.com>
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Lei Wena91ee2a2011-10-05 08:11:40 -07006 *
7 * Back ported to the 8xx platform (from the 8260 platform) by
8 * Murray.Jensen@cmst.csiro.au, 27-Jan-01.
9 */
10
11#include <common.h>
12#include <command.h>
13#include <config.h>
14#include <net.h>
15#include <malloc.h>
Troy Kiskyf1573942013-10-10 15:28:03 -070016#include <asm/byteorder.h>
17#include <asm/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
Lei Wena91ee2a2011-10-05 08:11:40 -070053#ifndef DEBUG
54#define DBG(x...) do {} while (0)
55#else
56#define DBG(x...) printf(x)
57static const char *reqname(unsigned r)
58{
59 switch (r) {
60 case USB_REQ_GET_STATUS: return "GET_STATUS";
61 case USB_REQ_CLEAR_FEATURE: return "CLEAR_FEATURE";
62 case USB_REQ_SET_FEATURE: return "SET_FEATURE";
63 case USB_REQ_SET_ADDRESS: return "SET_ADDRESS";
64 case USB_REQ_GET_DESCRIPTOR: return "GET_DESCRIPTOR";
65 case USB_REQ_SET_DESCRIPTOR: return "SET_DESCRIPTOR";
66 case USB_REQ_GET_CONFIGURATION: return "GET_CONFIGURATION";
67 case USB_REQ_SET_CONFIGURATION: return "SET_CONFIGURATION";
68 case USB_REQ_GET_INTERFACE: return "GET_INTERFACE";
69 case USB_REQ_SET_INTERFACE: return "SET_INTERFACE";
70 default: return "*UNKNOWN*";
71 }
72}
73#endif
74
Stephen Warrenb3dc4222014-05-29 14:53:01 -060075static struct usb_endpoint_descriptor ep0_desc = {
Lei Wena91ee2a2011-10-05 08:11:40 -070076 .bLength = sizeof(struct usb_endpoint_descriptor),
77 .bDescriptorType = USB_DT_ENDPOINT,
Lei Wena91ee2a2011-10-05 08:11:40 -070078 .bEndpointAddress = USB_DIR_IN,
79 .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
80};
81
Marek Vasut9ba89972014-02-06 02:43:45 +010082static int ci_pullup(struct usb_gadget *gadget, int is_on);
83static int ci_ep_enable(struct usb_ep *ep,
Lei Wena91ee2a2011-10-05 08:11:40 -070084 const struct usb_endpoint_descriptor *desc);
Marek Vasut9ba89972014-02-06 02:43:45 +010085static int ci_ep_disable(struct usb_ep *ep);
86static int ci_ep_queue(struct usb_ep *ep,
Lei Wena91ee2a2011-10-05 08:11:40 -070087 struct usb_request *req, gfp_t gfp_flags);
88static struct usb_request *
Marek Vasut9ba89972014-02-06 02:43:45 +010089ci_ep_alloc_request(struct usb_ep *ep, unsigned int gfp_flags);
90static void ci_ep_free_request(struct usb_ep *ep, struct usb_request *_req);
Lei Wena91ee2a2011-10-05 08:11:40 -070091
Marek Vasut9ba89972014-02-06 02:43:45 +010092static struct usb_gadget_ops ci_udc_ops = {
93 .pullup = ci_pullup,
Lei Wena91ee2a2011-10-05 08:11:40 -070094};
95
Marek Vasut9ba89972014-02-06 02:43:45 +010096static struct usb_ep_ops ci_ep_ops = {
97 .enable = ci_ep_enable,
98 .disable = ci_ep_disable,
99 .queue = ci_ep_queue,
100 .alloc_request = ci_ep_alloc_request,
101 .free_request = ci_ep_free_request,
Lei Wena91ee2a2011-10-05 08:11:40 -0700102};
103
Marek Vasute1263412013-07-10 03:16:30 +0200104/* Init values for USB endpoints. */
Marek Vasut9ba89972014-02-06 02:43:45 +0100105static const struct usb_ep ci_ep_init[2] = {
Marek Vasute1263412013-07-10 03:16:30 +0200106 [0] = { /* EP 0 */
107 .maxpacket = 64,
108 .name = "ep0",
Marek Vasut9ba89972014-02-06 02:43:45 +0100109 .ops = &ci_ep_ops,
Marek Vasute1263412013-07-10 03:16:30 +0200110 },
111 [1] = { /* EP 1..n */
112 .maxpacket = 512,
113 .name = "ep-",
Marek Vasut9ba89972014-02-06 02:43:45 +0100114 .ops = &ci_ep_ops,
Marek Vasute1263412013-07-10 03:16:30 +0200115 },
116};
117
Marek Vasut9ba89972014-02-06 02:43:45 +0100118static struct ci_drv controller = {
Marek Vasutbe0b0e72013-07-10 03:16:35 +0200119 .gadget = {
Marek Vasut9ba89972014-02-06 02:43:45 +0100120 .name = "ci_udc",
121 .ops = &ci_udc_ops,
Troy Kisky4b4df472013-09-25 18:41:09 -0700122 .is_dualspeed = 1,
Lei Wena91ee2a2011-10-05 08:11:40 -0700123 },
124};
125
Marek Vasut9212f892013-07-10 03:16:39 +0200126/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100127 * ci_get_qh() - return queue head for endpoint
Marek Vasut9212f892013-07-10 03:16:39 +0200128 * @ep_num: Endpoint number
129 * @dir_in: Direction of the endpoint (IN = 1, OUT = 0)
130 *
131 * This function returns the QH associated with particular endpoint
132 * and it's direction.
133 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100134static struct ept_queue_head *ci_get_qh(int ep_num, int dir_in)
Marek Vasut9212f892013-07-10 03:16:39 +0200135{
136 return &controller.epts[(ep_num * 2) + dir_in];
137}
138
Marek Vasuta6f6b082013-07-10 03:16:41 +0200139/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100140 * ci_get_qtd() - return queue item for endpoint
Marek Vasuta6f6b082013-07-10 03:16:41 +0200141 * @ep_num: Endpoint number
142 * @dir_in: Direction of the endpoint (IN = 1, OUT = 0)
143 *
144 * This function returns the QH associated with particular endpoint
145 * and it's direction.
146 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100147static struct ept_queue_item *ci_get_qtd(int ep_num, int dir_in)
Marek Vasuta6f6b082013-07-10 03:16:41 +0200148{
Stephen Warrenb8a872c2014-07-01 11:41:17 -0600149 int index = (ep_num * 2) + dir_in;
150 uint8_t *imem = controller.items_mem + (index * ILIST_ENT_SZ);
151 return (struct ept_queue_item *)imem;
Marek Vasuta6f6b082013-07-10 03:16:41 +0200152}
153
Marek Vasut58465342013-07-10 03:16:42 +0200154/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100155 * ci_flush_qh - flush cache over queue head
Marek Vasut58465342013-07-10 03:16:42 +0200156 * @ep_num: Endpoint number
157 *
158 * This function flushes cache over QH for particular endpoint.
159 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100160static void ci_flush_qh(int ep_num)
Marek Vasut58465342013-07-10 03:16:42 +0200161{
Marek Vasut9ba89972014-02-06 02:43:45 +0100162 struct ept_queue_head *head = ci_get_qh(ep_num, 0);
Marek Vasut58465342013-07-10 03:16:42 +0200163 const uint32_t start = (uint32_t)head;
164 const uint32_t end = start + 2 * sizeof(*head);
165
166 flush_dcache_range(start, end);
167}
168
169/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100170 * ci_invalidate_qh - invalidate cache over queue head
Marek Vasut58465342013-07-10 03:16:42 +0200171 * @ep_num: Endpoint number
172 *
173 * This function invalidates cache over QH for particular endpoint.
174 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100175static void ci_invalidate_qh(int ep_num)
Marek Vasut58465342013-07-10 03:16:42 +0200176{
Marek Vasut9ba89972014-02-06 02:43:45 +0100177 struct ept_queue_head *head = ci_get_qh(ep_num, 0);
Marek Vasut58465342013-07-10 03:16:42 +0200178 uint32_t start = (uint32_t)head;
179 uint32_t end = start + 2 * sizeof(*head);
180
181 invalidate_dcache_range(start, end);
182}
183
184/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100185 * ci_flush_qtd - flush cache over queue item
Marek Vasut58465342013-07-10 03:16:42 +0200186 * @ep_num: Endpoint number
187 *
188 * This function flushes cache over qTD pair for particular endpoint.
189 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100190static void ci_flush_qtd(int ep_num)
Marek Vasut58465342013-07-10 03:16:42 +0200191{
Marek Vasut9ba89972014-02-06 02:43:45 +0100192 struct ept_queue_item *item = ci_get_qtd(ep_num, 0);
Marek Vasut58465342013-07-10 03:16:42 +0200193 const uint32_t start = (uint32_t)item;
Stephen Warrend13034e2014-07-01 11:41:16 -0600194 const uint32_t end = start + 2 * ILIST_ENT_SZ;
Marek Vasut58465342013-07-10 03:16:42 +0200195
196 flush_dcache_range(start, end);
197}
198
199/**
Marek Vasut9ba89972014-02-06 02:43:45 +0100200 * ci_invalidate_qtd - invalidate cache over queue item
Marek Vasut58465342013-07-10 03:16:42 +0200201 * @ep_num: Endpoint number
202 *
203 * This function invalidates cache over qTD pair for particular endpoint.
204 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100205static void ci_invalidate_qtd(int ep_num)
Marek Vasut58465342013-07-10 03:16:42 +0200206{
Marek Vasut9ba89972014-02-06 02:43:45 +0100207 struct ept_queue_item *item = ci_get_qtd(ep_num, 0);
Marek Vasut58465342013-07-10 03:16:42 +0200208 const uint32_t start = (uint32_t)item;
Stephen Warrend13034e2014-07-01 11:41:16 -0600209 const uint32_t end = start + 2 * ILIST_ENT_SZ;
Marek Vasut58465342013-07-10 03:16:42 +0200210
211 invalidate_dcache_range(start, end);
212}
213
Lei Wena91ee2a2011-10-05 08:11:40 -0700214static struct usb_request *
Marek Vasut9ba89972014-02-06 02:43:45 +0100215ci_ep_alloc_request(struct usb_ep *ep, unsigned int gfp_flags)
Lei Wena91ee2a2011-10-05 08:11:40 -0700216{
Stephen Warren9ac8b542014-05-29 14:53:02 -0600217 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
218 int num;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600219 struct ci_req *ci_req;
220
Stephen Warren9ac8b542014-05-29 14:53:02 -0600221 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
222 if (num == 0 && controller.ep0_req)
223 return &controller.ep0_req->req;
224
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600225 ci_req = memalign(ARCH_DMA_MINALIGN, sizeof(*ci_req));
226 if (!ci_req)
227 return NULL;
228
229 INIT_LIST_HEAD(&ci_req->queue);
230 ci_req->b_buf = 0;
231
Stephen Warren9ac8b542014-05-29 14:53:02 -0600232 if (num == 0)
233 controller.ep0_req = ci_req;
234
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600235 return &ci_req->req;
Lei Wena91ee2a2011-10-05 08:11:40 -0700236}
237
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600238static void ci_ep_free_request(struct usb_ep *ep, struct usb_request *req)
Lei Wena91ee2a2011-10-05 08:11:40 -0700239{
Stephen Warren10fecbd2014-06-10 11:02:36 -0600240 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
241 struct ci_req *ci_req = container_of(req, struct ci_req, req);
242 int num;
243
244 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
Stephen Warrenf66ae992014-06-23 12:02:48 -0600245 if (num == 0) {
246 if (!controller.ep0_req)
247 return;
Stephen Warren10fecbd2014-06-10 11:02:36 -0600248 controller.ep0_req = 0;
Stephen Warrenf66ae992014-06-23 12:02:48 -0600249 }
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600250
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600251 if (ci_req->b_buf)
252 free(ci_req->b_buf);
253 free(ci_req);
Lei Wena91ee2a2011-10-05 08:11:40 -0700254}
255
Troy Kisky256a3172013-10-10 15:28:00 -0700256static void ep_enable(int num, int in, int maxpacket)
Lei Wena91ee2a2011-10-05 08:11:40 -0700257{
Marek Vasut9ba89972014-02-06 02:43:45 +0100258 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700259 unsigned n;
Lei Wena91ee2a2011-10-05 08:11:40 -0700260
261 n = readl(&udc->epctrl[num]);
262 if (in)
263 n |= (CTRL_TXE | CTRL_TXR | CTRL_TXT_BULK);
264 else
265 n |= (CTRL_RXE | CTRL_RXR | CTRL_RXT_BULK);
266
Marek Vasut58465342013-07-10 03:16:42 +0200267 if (num != 0) {
Marek Vasut9ba89972014-02-06 02:43:45 +0100268 struct ept_queue_head *head = ci_get_qh(num, in);
Troy Kisky06bb97a2013-10-10 15:28:02 -0700269
Troy Kisky256a3172013-10-10 15:28:00 -0700270 head->config = CONFIG_MAX_PKT(maxpacket) | CONFIG_ZLT;
Marek Vasut9ba89972014-02-06 02:43:45 +0100271 ci_flush_qh(num);
Marek Vasut58465342013-07-10 03:16:42 +0200272 }
Lei Wena91ee2a2011-10-05 08:11:40 -0700273 writel(n, &udc->epctrl[num]);
274}
275
Marek Vasut9ba89972014-02-06 02:43:45 +0100276static int ci_ep_enable(struct usb_ep *ep,
Lei Wena91ee2a2011-10-05 08:11:40 -0700277 const struct usb_endpoint_descriptor *desc)
278{
Marek Vasut9ba89972014-02-06 02:43:45 +0100279 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
Lei Wena91ee2a2011-10-05 08:11:40 -0700280 int num, in;
281 num = desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
282 in = (desc->bEndpointAddress & USB_DIR_IN) != 0;
Marek Vasut9ba89972014-02-06 02:43:45 +0100283 ci_ep->desc = desc;
Troy Kisky256a3172013-10-10 15:28:00 -0700284
285 if (num) {
286 int max = get_unaligned_le16(&desc->wMaxPacketSize);
287
288 if ((max > 64) && (controller.gadget.speed == USB_SPEED_FULL))
289 max = 64;
290 if (ep->maxpacket != max) {
291 DBG("%s: from %d to %d\n", __func__,
292 ep->maxpacket, max);
293 ep->maxpacket = max;
294 }
295 }
296 ep_enable(num, in, ep->maxpacket);
297 DBG("%s: num=%d maxpacket=%d\n", __func__, num, ep->maxpacket);
Lei Wena91ee2a2011-10-05 08:11:40 -0700298 return 0;
299}
300
Marek Vasut9ba89972014-02-06 02:43:45 +0100301static int ci_ep_disable(struct usb_ep *ep)
Lei Wena91ee2a2011-10-05 08:11:40 -0700302{
Marek Vasut9ba89972014-02-06 02:43:45 +0100303 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
Troy Kisky35494072013-09-25 18:41:15 -0700304
Marek Vasut9ba89972014-02-06 02:43:45 +0100305 ci_ep->desc = NULL;
Lei Wena91ee2a2011-10-05 08:11:40 -0700306 return 0;
307}
308
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600309static int ci_bounce(struct ci_req *ci_req, int in)
Marek Vasute0fc5822013-07-10 03:16:43 +0200310{
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600311 struct usb_request *req = &ci_req->req;
312 uint32_t addr = (uint32_t)req->buf;
313 uint32_t hwaddr;
314 uint32_t aligned_used_len;
Marek Vasute0fc5822013-07-10 03:16:43 +0200315
316 /* Input buffer address is not aligned. */
317 if (addr & (ARCH_DMA_MINALIGN - 1))
318 goto align;
319
320 /* Input buffer length is not aligned. */
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600321 if (req->length & (ARCH_DMA_MINALIGN - 1))
Marek Vasute0fc5822013-07-10 03:16:43 +0200322 goto align;
323
324 /* The buffer is well aligned, only flush cache. */
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600325 ci_req->hw_len = req->length;
326 ci_req->hw_buf = req->buf;
Marek Vasute0fc5822013-07-10 03:16:43 +0200327 goto flush;
328
329align:
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600330 if (ci_req->b_buf && req->length > ci_req->b_len) {
331 free(ci_req->b_buf);
332 ci_req->b_buf = 0;
333 }
334 if (!ci_req->b_buf) {
335 ci_req->b_len = roundup(req->length, ARCH_DMA_MINALIGN);
336 ci_req->b_buf = memalign(ARCH_DMA_MINALIGN, ci_req->b_len);
337 if (!ci_req->b_buf)
Marek Vasute0fc5822013-07-10 03:16:43 +0200338 return -ENOMEM;
339 }
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600340 ci_req->hw_len = ci_req->b_len;
341 ci_req->hw_buf = ci_req->b_buf;
342
Troy Kisky1567b882013-10-10 15:28:01 -0700343 if (in)
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600344 memcpy(ci_req->hw_buf, req->buf, req->length);
Marek Vasute0fc5822013-07-10 03:16:43 +0200345
346flush:
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600347 hwaddr = (uint32_t)ci_req->hw_buf;
348 aligned_used_len = roundup(req->length, ARCH_DMA_MINALIGN);
349 flush_dcache_range(hwaddr, hwaddr + aligned_used_len);
Marek Vasute0fc5822013-07-10 03:16:43 +0200350
351 return 0;
352}
353
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600354static void ci_debounce(struct ci_req *ci_req, int in)
Marek Vasute0fc5822013-07-10 03:16:43 +0200355{
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600356 struct usb_request *req = &ci_req->req;
357 uint32_t addr = (uint32_t)req->buf;
358 uint32_t hwaddr = (uint32_t)ci_req->hw_buf;
359 uint32_t aligned_used_len;
Marek Vasute0fc5822013-07-10 03:16:43 +0200360
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600361 if (in)
362 return;
363
364 aligned_used_len = roundup(req->actual, ARCH_DMA_MINALIGN);
365 invalidate_dcache_range(hwaddr, hwaddr + aligned_used_len);
Marek Vasute0fc5822013-07-10 03:16:43 +0200366
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600367 if (addr == hwaddr)
368 return; /* not a bounce */
Marek Vasute0fc5822013-07-10 03:16:43 +0200369
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600370 memcpy(req->buf, ci_req->hw_buf, req->actual);
Marek Vasute0fc5822013-07-10 03:16:43 +0200371}
372
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600373static void ci_ep_submit_next_request(struct ci_ep *ci_ep)
Lei Wena91ee2a2011-10-05 08:11:40 -0700374{
Marek Vasut9ba89972014-02-06 02:43:45 +0100375 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700376 struct ept_queue_item *item;
377 struct ept_queue_head *head;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600378 int bit, num, len, in;
379 struct ci_req *ci_req;
380
381 ci_ep->req_primed = true;
382
Marek Vasut9ba89972014-02-06 02:43:45 +0100383 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
384 in = (ci_ep->desc->bEndpointAddress & USB_DIR_IN) != 0;
385 item = ci_get_qtd(num, in);
386 head = ci_get_qh(num, in);
Lei Wena91ee2a2011-10-05 08:11:40 -0700387
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600388 ci_req = list_first_entry(&ci_ep->queue, struct ci_req, queue);
389 len = ci_req->req.length;
Marek Vasute0fc5822013-07-10 03:16:43 +0200390
Stephen Warrena9e91da2014-06-10 15:27:39 -0600391 item->info = INFO_BYTES(len) | INFO_ACTIVE;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600392 item->page0 = (uint32_t)ci_req->hw_buf;
393 item->page1 = ((uint32_t)ci_req->hw_buf & 0xfffff000) + 0x1000;
394 item->page2 = ((uint32_t)ci_req->hw_buf & 0xfffff000) + 0x2000;
395 item->page3 = ((uint32_t)ci_req->hw_buf & 0xfffff000) + 0x3000;
396 item->page4 = ((uint32_t)ci_req->hw_buf & 0xfffff000) + 0x4000;
Lei Wena91ee2a2011-10-05 08:11:40 -0700397
398 head->next = (unsigned) item;
399 head->info = 0;
400
Stephen Warrena9e91da2014-06-10 15:27:39 -0600401 /*
402 * When sending the data for an IN transaction, the attached host
403 * knows that all data for the IN is sent when one of the following
404 * occurs:
405 * a) A zero-length packet is transmitted.
406 * b) A packet with length that isn't an exact multiple of the ep's
407 * maxpacket is transmitted.
408 * c) Enough data is sent to exactly fill the host's maximum expected
409 * IN transaction size.
410 *
411 * One of these conditions MUST apply at the end of an IN transaction,
412 * or the transaction will not be considered complete by the host. If
413 * none of (a)..(c) already applies, then we must force (a) to apply
414 * by explicitly sending an extra zero-length packet.
415 */
416 /* IN !a !b !c */
417 if (in && len && !(len % ci_ep->ep.maxpacket) && ci_req->req.zero) {
418 /*
419 * Each endpoint has 2 items allocated, even though typically
420 * only 1 is used at a time since either an IN or an OUT but
421 * not both is queued. For an IN transaction, item currently
422 * points at the second of these items, so we know that we
Stephen Warren6667e232014-07-01 11:41:14 -0600423 * can use the other to transmit the extra zero-length packet.
Stephen Warrena9e91da2014-06-10 15:27:39 -0600424 */
Stephen Warren6667e232014-07-01 11:41:14 -0600425 struct ept_queue_item *other_item = ci_get_qtd(num, 0);
426 item->next = (unsigned)other_item;
427 item = other_item;
Stephen Warrena9e91da2014-06-10 15:27:39 -0600428 item->info = INFO_ACTIVE;
429 }
430
431 item->next = TERMINATE;
432 item->info |= INFO_IOC;
433
434 ci_flush_qtd(num);
435
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600436 DBG("ept%d %s queue len %x, req %p, buffer %p\n",
437 num, in ? "in" : "out", len, ci_req, ci_req->hw_buf);
Marek Vasut9ba89972014-02-06 02:43:45 +0100438 ci_flush_qh(num);
Lei Wena91ee2a2011-10-05 08:11:40 -0700439
440 if (in)
441 bit = EPT_TX(num);
442 else
443 bit = EPT_RX(num);
444
Lei Wena91ee2a2011-10-05 08:11:40 -0700445 writel(bit, &udc->epprime);
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600446}
447
448static int ci_ep_queue(struct usb_ep *ep,
449 struct usb_request *req, gfp_t gfp_flags)
450{
451 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
452 struct ci_req *ci_req = container_of(req, struct ci_req, req);
453 int in, ret;
454 int __maybe_unused num;
455
456 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
457 in = (ci_ep->desc->bEndpointAddress & USB_DIR_IN) != 0;
458
Stephen Warren62237cf2014-05-29 14:53:00 -0600459 if (!num && ci_ep->req_primed) {
460 /*
461 * The flipping of ep0 between IN and OUT relies on
462 * ci_ep_queue consuming the current IN/OUT setting
463 * immediately. If this is deferred to a later point when the
464 * req is pulled out of ci_req->queue, then the IN/OUT setting
465 * may have been changed since the req was queued, and state
466 * will get out of sync. This condition doesn't occur today,
467 * but could if bugs were introduced later, and this error
468 * check will save a lot of debugging time.
469 */
470 printf("%s: ep0 transaction already in progress\n", __func__);
471 return -EPROTO;
472 }
473
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600474 ret = ci_bounce(ci_req, in);
475 if (ret)
476 return ret;
477
478 DBG("ept%d %s pre-queue req %p, buffer %p\n",
479 num, in ? "in" : "out", ci_req, ci_req->hw_buf);
480 list_add_tail(&ci_req->queue, &ci_ep->queue);
481
482 if (!ci_ep->req_primed)
483 ci_ep_submit_next_request(ci_ep);
Lei Wena91ee2a2011-10-05 08:11:40 -0700484
485 return 0;
486}
487
Stephen Warrenaa449fa2014-05-29 14:53:03 -0600488static void flip_ep0_direction(void)
489{
490 if (ep0_desc.bEndpointAddress == USB_DIR_IN) {
Stephen Warrenfa514172014-06-25 11:03:18 -0600491 DBG("%s: Flipping ep0 to OUT\n", __func__);
Stephen Warrenaa449fa2014-05-29 14:53:03 -0600492 ep0_desc.bEndpointAddress = 0;
493 } else {
Stephen Warrenfa514172014-06-25 11:03:18 -0600494 DBG("%s: Flipping ep0 to IN\n", __func__);
Stephen Warrenaa449fa2014-05-29 14:53:03 -0600495 ep0_desc.bEndpointAddress = USB_DIR_IN;
496 }
497}
498
Marek Vasut9ba89972014-02-06 02:43:45 +0100499static void handle_ep_complete(struct ci_ep *ep)
Lei Wena91ee2a2011-10-05 08:11:40 -0700500{
501 struct ept_queue_item *item;
502 int num, in, len;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600503 struct ci_req *ci_req;
504
Lei Wena91ee2a2011-10-05 08:11:40 -0700505 num = ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
506 in = (ep->desc->bEndpointAddress & USB_DIR_IN) != 0;
Marek Vasut9ba89972014-02-06 02:43:45 +0100507 item = ci_get_qtd(num, in);
508 ci_invalidate_qtd(num);
Wolfgang Denkbd8ec7e2013-10-07 13:07:26 +0200509
Stephen Warren8c02b612014-05-13 10:51:54 -0600510 len = (item->info >> 16) & 0x7fff;
Lei Wena91ee2a2011-10-05 08:11:40 -0700511 if (item->info & 0xff)
Troy Kisky3703c452013-09-25 18:41:08 -0700512 printf("EP%d/%s FAIL info=%x pg0=%x\n",
513 num, in ? "in" : "out", item->info, item->page0);
Lei Wena91ee2a2011-10-05 08:11:40 -0700514
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600515 ci_req = list_first_entry(&ep->queue, struct ci_req, queue);
516 list_del_init(&ci_req->queue);
517 ep->req_primed = false;
518
519 if (!list_empty(&ep->queue))
520 ci_ep_submit_next_request(ep);
521
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600522 ci_req->req.actual = ci_req->req.length - len;
523 ci_debounce(ci_req, in);
Troy Kisky1567b882013-10-10 15:28:01 -0700524
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600525 DBG("ept%d %s req %p, complete %x\n",
526 num, in ? "in" : "out", ci_req, len);
Stephen Warrenaa449fa2014-05-29 14:53:03 -0600527 if (num != 0 || controller.ep0_data_phase)
528 ci_req->req.complete(&ep->ep, &ci_req->req);
529 if (num == 0 && controller.ep0_data_phase) {
530 /*
531 * Data Stage is complete, so flip ep0 dir for Status Stage,
532 * which always transfers a packet in the opposite direction.
533 */
534 DBG("%s: flip ep0 dir for Status Stage\n", __func__);
535 flip_ep0_direction();
536 controller.ep0_data_phase = false;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600537 ci_req->req.length = 0;
538 usb_ep_queue(&ep->ep, &ci_req->req, 0);
Lei Wena91ee2a2011-10-05 08:11:40 -0700539 }
540}
541
542#define SETUP(type, request) (((type) << 8) | (request))
543
544static void handle_setup(void)
545{
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600546 struct ci_ep *ci_ep = &controller.ep[0];
547 struct ci_req *ci_req;
548 struct usb_request *req;
Marek Vasut9ba89972014-02-06 02:43:45 +0100549 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700550 struct ept_queue_head *head;
551 struct usb_ctrlrequest r;
552 int status = 0;
553 int num, in, _num, _in, i;
554 char *buf;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600555
Stephen Warren9ac8b542014-05-29 14:53:02 -0600556 ci_req = controller.ep0_req;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600557 req = &ci_req->req;
Marek Vasut9ba89972014-02-06 02:43:45 +0100558 head = ci_get_qh(0, 0); /* EP0 OUT */
Lei Wena91ee2a2011-10-05 08:11:40 -0700559
Marek Vasut9ba89972014-02-06 02:43:45 +0100560 ci_invalidate_qh(0);
Lei Wena91ee2a2011-10-05 08:11:40 -0700561 memcpy(&r, head->setup_data, sizeof(struct usb_ctrlrequest));
Stephen Warrene13a7042014-04-24 17:52:39 -0600562#ifdef CONFIG_CI_UDC_HAS_HOSTPC
563 writel(EPT_RX(0), &udc->epsetupstat);
564#else
Lei Wena91ee2a2011-10-05 08:11:40 -0700565 writel(EPT_RX(0), &udc->epstat);
Stephen Warrene13a7042014-04-24 17:52:39 -0600566#endif
Stephen Warrenaa449fa2014-05-29 14:53:03 -0600567 DBG("handle setup %s, %x, %x index %x value %x length %x\n",
568 reqname(r.bRequest), r.bRequestType, r.bRequest, r.wIndex,
569 r.wValue, r.wLength);
570
571 /* Set EP0 dir for Data Stage based on Setup Stage data */
572 if (r.bRequestType & USB_DIR_IN) {
573 DBG("%s: Set ep0 to IN for Data Stage\n", __func__);
574 ep0_desc.bEndpointAddress = USB_DIR_IN;
575 } else {
576 DBG("%s: Set ep0 to OUT for Data Stage\n", __func__);
577 ep0_desc.bEndpointAddress = 0;
578 }
579 if (r.wLength) {
580 controller.ep0_data_phase = true;
581 } else {
582 /* 0 length -> no Data Stage. Flip dir for Status Stage */
583 DBG("%s: 0 length: flip ep0 dir for Status Stage\n", __func__);
584 flip_ep0_direction();
585 controller.ep0_data_phase = false;
586 }
Lei Wena91ee2a2011-10-05 08:11:40 -0700587
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600588 list_del_init(&ci_req->queue);
589 ci_ep->req_primed = false;
590
Lei Wena91ee2a2011-10-05 08:11:40 -0700591 switch (SETUP(r.bRequestType, r.bRequest)) {
592 case SETUP(USB_RECIP_ENDPOINT, USB_REQ_CLEAR_FEATURE):
593 _num = r.wIndex & 15;
594 _in = !!(r.wIndex & 0x80);
595
596 if ((r.wValue == 0) && (r.wLength == 0)) {
597 req->length = 0;
598 for (i = 0; i < NUM_ENDPOINTS; i++) {
Marek Vasut9ba89972014-02-06 02:43:45 +0100599 struct ci_ep *ep = &controller.ep[i];
Troy Kisky256a3172013-10-10 15:28:00 -0700600
601 if (!ep->desc)
Lei Wena91ee2a2011-10-05 08:11:40 -0700602 continue;
Troy Kisky256a3172013-10-10 15:28:00 -0700603 num = ep->desc->bEndpointAddress
Marek Vasut98377322013-07-10 03:16:29 +0200604 & USB_ENDPOINT_NUMBER_MASK;
Troy Kisky256a3172013-10-10 15:28:00 -0700605 in = (ep->desc->bEndpointAddress
Lei Wena91ee2a2011-10-05 08:11:40 -0700606 & USB_DIR_IN) != 0;
607 if ((num == _num) && (in == _in)) {
Troy Kisky256a3172013-10-10 15:28:00 -0700608 ep_enable(num, in, ep->ep.maxpacket);
Lei Wena91ee2a2011-10-05 08:11:40 -0700609 usb_ep_queue(controller.gadget.ep0,
610 req, 0);
611 break;
612 }
613 }
614 }
615 return;
616
617 case SETUP(USB_RECIP_DEVICE, USB_REQ_SET_ADDRESS):
618 /*
619 * write address delayed (will take effect
620 * after the next IN txn)
621 */
622 writel((r.wValue << 25) | (1 << 24), &udc->devaddr);
623 req->length = 0;
624 usb_ep_queue(controller.gadget.ep0, req, 0);
625 return;
626
627 case SETUP(USB_DIR_IN | USB_RECIP_DEVICE, USB_REQ_GET_STATUS):
628 req->length = 2;
629 buf = (char *)req->buf;
630 buf[0] = 1 << USB_DEVICE_SELF_POWERED;
631 buf[1] = 0;
632 usb_ep_queue(controller.gadget.ep0, req, 0);
633 return;
634 }
635 /* pass request up to the gadget driver */
636 if (controller.driver)
637 status = controller.driver->setup(&controller.gadget, &r);
638 else
639 status = -ENODEV;
640
641 if (!status)
642 return;
643 DBG("STALL reqname %s type %x value %x, index %x\n",
644 reqname(r.bRequest), r.bRequestType, r.wValue, r.wIndex);
645 writel((1<<16) | (1 << 0), &udc->epctrl[0]);
646}
647
648static void stop_activity(void)
649{
650 int i, num, in;
651 struct ept_queue_head *head;
Marek Vasut9ba89972014-02-06 02:43:45 +0100652 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700653 writel(readl(&udc->epcomp), &udc->epcomp);
Stephen Warrene13a7042014-04-24 17:52:39 -0600654#ifdef CONFIG_CI_UDC_HAS_HOSTPC
655 writel(readl(&udc->epsetupstat), &udc->epsetupstat);
656#endif
Lei Wena91ee2a2011-10-05 08:11:40 -0700657 writel(readl(&udc->epstat), &udc->epstat);
658 writel(0xffffffff, &udc->epflush);
659
660 /* error out any pending reqs */
661 for (i = 0; i < NUM_ENDPOINTS; i++) {
662 if (i != 0)
663 writel(0, &udc->epctrl[i]);
Marek Vasut98377322013-07-10 03:16:29 +0200664 if (controller.ep[i].desc) {
665 num = controller.ep[i].desc->bEndpointAddress
Lei Wena91ee2a2011-10-05 08:11:40 -0700666 & USB_ENDPOINT_NUMBER_MASK;
Marek Vasut98377322013-07-10 03:16:29 +0200667 in = (controller.ep[i].desc->bEndpointAddress
668 & USB_DIR_IN) != 0;
Marek Vasut9ba89972014-02-06 02:43:45 +0100669 head = ci_get_qh(num, in);
Lei Wena91ee2a2011-10-05 08:11:40 -0700670 head->info = INFO_ACTIVE;
Marek Vasut9ba89972014-02-06 02:43:45 +0100671 ci_flush_qh(num);
Lei Wena91ee2a2011-10-05 08:11:40 -0700672 }
673 }
674}
675
676void udc_irq(void)
677{
Marek Vasut9ba89972014-02-06 02:43:45 +0100678 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700679 unsigned n = readl(&udc->usbsts);
680 writel(n, &udc->usbsts);
681 int bit, i, num, in;
682
683 n &= (STS_SLI | STS_URI | STS_PCI | STS_UI | STS_UEI);
684 if (n == 0)
685 return;
686
687 if (n & STS_URI) {
688 DBG("-- reset --\n");
689 stop_activity();
690 }
691 if (n & STS_SLI)
692 DBG("-- suspend --\n");
693
694 if (n & STS_PCI) {
Troy Kisky256a3172013-10-10 15:28:00 -0700695 int max = 64;
696 int speed = USB_SPEED_FULL;
697
Stephen Warrene13a7042014-04-24 17:52:39 -0600698#ifdef CONFIG_CI_UDC_HAS_HOSTPC
699 bit = (readl(&udc->hostpc1_devlc) >> 25) & 3;
700#else
Lei Wena91ee2a2011-10-05 08:11:40 -0700701 bit = (readl(&udc->portsc) >> 26) & 3;
Stephen Warrene13a7042014-04-24 17:52:39 -0600702#endif
Troy Kisky256a3172013-10-10 15:28:00 -0700703 DBG("-- portchange %x %s\n", bit, (bit == 2) ? "High" : "Full");
Lei Wena91ee2a2011-10-05 08:11:40 -0700704 if (bit == 2) {
Troy Kisky256a3172013-10-10 15:28:00 -0700705 speed = USB_SPEED_HIGH;
706 max = 512;
707 }
708 controller.gadget.speed = speed;
709 for (i = 1; i < NUM_ENDPOINTS; i++) {
710 if (controller.ep[i].ep.maxpacket > max)
711 controller.ep[i].ep.maxpacket = max;
Lei Wena91ee2a2011-10-05 08:11:40 -0700712 }
713 }
714
715 if (n & STS_UEI)
716 printf("<UEI %x>\n", readl(&udc->epcomp));
717
718 if ((n & STS_UI) || (n & STS_UEI)) {
Stephen Warrene13a7042014-04-24 17:52:39 -0600719#ifdef CONFIG_CI_UDC_HAS_HOSTPC
720 n = readl(&udc->epsetupstat);
721#else
Lei Wena91ee2a2011-10-05 08:11:40 -0700722 n = readl(&udc->epstat);
Stephen Warrene13a7042014-04-24 17:52:39 -0600723#endif
Lei Wena91ee2a2011-10-05 08:11:40 -0700724 if (n & EPT_RX(0))
725 handle_setup();
726
727 n = readl(&udc->epcomp);
728 if (n != 0)
729 writel(n, &udc->epcomp);
730
731 for (i = 0; i < NUM_ENDPOINTS && n; i++) {
Marek Vasut98377322013-07-10 03:16:29 +0200732 if (controller.ep[i].desc) {
733 num = controller.ep[i].desc->bEndpointAddress
Lei Wena91ee2a2011-10-05 08:11:40 -0700734 & USB_ENDPOINT_NUMBER_MASK;
Marek Vasut98377322013-07-10 03:16:29 +0200735 in = (controller.ep[i].desc->bEndpointAddress
Lei Wena91ee2a2011-10-05 08:11:40 -0700736 & USB_DIR_IN) != 0;
737 bit = (in) ? EPT_TX(num) : EPT_RX(num);
738 if (n & bit)
Marek Vasut98377322013-07-10 03:16:29 +0200739 handle_ep_complete(&controller.ep[i]);
Lei Wena91ee2a2011-10-05 08:11:40 -0700740 }
741 }
742 }
743}
744
745int usb_gadget_handle_interrupts(void)
746{
747 u32 value;
Marek Vasut9ba89972014-02-06 02:43:45 +0100748 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700749
750 value = readl(&udc->usbsts);
751 if (value)
752 udc_irq();
753
754 return value;
755}
756
Stephen Warren6e9aa0d2014-06-10 11:02:35 -0600757void udc_disconnect(void)
758{
759 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
760 /* disable pullup */
761 stop_activity();
762 writel(USBCMD_FS2, &udc->usbcmd);
763 udelay(800);
764 if (controller.driver)
765 controller.driver->disconnect(&controller.gadget);
766}
767
Marek Vasut9ba89972014-02-06 02:43:45 +0100768static int ci_pullup(struct usb_gadget *gadget, int is_on)
Lei Wena91ee2a2011-10-05 08:11:40 -0700769{
Marek Vasut9ba89972014-02-06 02:43:45 +0100770 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wena91ee2a2011-10-05 08:11:40 -0700771 if (is_on) {
772 /* RESET */
773 writel(USBCMD_ITC(MICRO_8FRAME) | USBCMD_RST, &udc->usbcmd);
774 udelay(200);
775
Marek Vasut9212f892013-07-10 03:16:39 +0200776 writel((unsigned)controller.epts, &udc->epinitaddr);
Lei Wena91ee2a2011-10-05 08:11:40 -0700777
778 /* select DEVICE mode */
779 writel(USBMODE_DEVICE, &udc->usbmode);
780
781 writel(0xffffffff, &udc->epflush);
782
783 /* Turn on the USB connection by enabling the pullup resistor */
784 writel(USBCMD_ITC(MICRO_8FRAME) | USBCMD_RUN, &udc->usbcmd);
785 } else {
Stephen Warren6e9aa0d2014-06-10 11:02:35 -0600786 udc_disconnect();
Lei Wena91ee2a2011-10-05 08:11:40 -0700787 }
788
789 return 0;
790}
791
Marek Vasut9ba89972014-02-06 02:43:45 +0100792static int ci_udc_probe(void)
Lei Wena91ee2a2011-10-05 08:11:40 -0700793{
794 struct ept_queue_head *head;
795 int i;
Marek Vasut456707d2013-07-10 03:16:37 +0200796
Marek Vasut806d76c2013-07-10 03:16:34 +0200797 const int num = 2 * NUM_ENDPOINTS;
Lei Wena91ee2a2011-10-05 08:11:40 -0700798
Marek Vasut456707d2013-07-10 03:16:37 +0200799 const int eplist_min_align = 4096;
800 const int eplist_align = roundup(eplist_min_align, ARCH_DMA_MINALIGN);
801 const int eplist_raw_sz = num * sizeof(struct ept_queue_head);
802 const int eplist_sz = roundup(eplist_raw_sz, ARCH_DMA_MINALIGN);
803
804 /* The QH list must be aligned to 4096 bytes. */
805 controller.epts = memalign(eplist_align, eplist_sz);
806 if (!controller.epts)
807 return -ENOMEM;
808 memset(controller.epts, 0, eplist_sz);
809
Stephen Warrenfe529102014-07-01 11:41:15 -0600810 controller.items_mem = memalign(ILIST_ALIGN, ILIST_SZ);
Marek Vasutb62fa7d2013-07-10 03:16:40 +0200811 if (!controller.items_mem) {
812 free(controller.epts);
813 return -ENOMEM;
814 }
Stephen Warrenfe529102014-07-01 11:41:15 -0600815 memset(controller.items_mem, 0, ILIST_SZ);
Marek Vasutb62fa7d2013-07-10 03:16:40 +0200816
Lei Wena91ee2a2011-10-05 08:11:40 -0700817 for (i = 0; i < 2 * NUM_ENDPOINTS; i++) {
818 /*
Marek Vasut456707d2013-07-10 03:16:37 +0200819 * Configure QH for each endpoint. The structure of the QH list
820 * is such that each two subsequent fields, N and N+1 where N is
821 * even, in the QH list represent QH for one endpoint. The Nth
822 * entry represents OUT configuration and the N+1th entry does
823 * represent IN configuration of the endpoint.
Lei Wena91ee2a2011-10-05 08:11:40 -0700824 */
Marek Vasut393004e2013-07-10 03:16:36 +0200825 head = controller.epts + i;
Lei Wena91ee2a2011-10-05 08:11:40 -0700826 if (i < 2)
827 head->config = CONFIG_MAX_PKT(EP0_MAX_PACKET_SIZE)
828 | CONFIG_ZLT | CONFIG_IOS;
829 else
830 head->config = CONFIG_MAX_PKT(EP_MAX_PACKET_SIZE)
831 | CONFIG_ZLT;
832 head->next = TERMINATE;
833 head->info = 0;
834
Marek Vasut58465342013-07-10 03:16:42 +0200835 if (i & 1) {
Stephen Warrenbec1c132014-07-01 11:41:13 -0600836 ci_flush_qh(i / 2);
837 ci_flush_qtd(i / 2);
Marek Vasut58465342013-07-10 03:16:42 +0200838 }
Lei Wena91ee2a2011-10-05 08:11:40 -0700839 }
840
841 INIT_LIST_HEAD(&controller.gadget.ep_list);
Marek Vasute1263412013-07-10 03:16:30 +0200842
843 /* Init EP 0 */
Marek Vasut9ba89972014-02-06 02:43:45 +0100844 memcpy(&controller.ep[0].ep, &ci_ep_init[0], sizeof(*ci_ep_init));
Stephen Warrenb3dc4222014-05-29 14:53:01 -0600845 controller.ep[0].desc = &ep0_desc;
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600846 INIT_LIST_HEAD(&controller.ep[0].queue);
847 controller.ep[0].req_primed = false;
Marek Vasute1263412013-07-10 03:16:30 +0200848 controller.gadget.ep0 = &controller.ep[0].ep;
Lei Wena91ee2a2011-10-05 08:11:40 -0700849 INIT_LIST_HEAD(&controller.gadget.ep0->ep_list);
Marek Vasute1263412013-07-10 03:16:30 +0200850
851 /* Init EP 1..n */
852 for (i = 1; i < NUM_ENDPOINTS; i++) {
Marek Vasut9ba89972014-02-06 02:43:45 +0100853 memcpy(&controller.ep[i].ep, &ci_ep_init[1],
854 sizeof(*ci_ep_init));
Stephen Warrenaa5e8642014-05-05 17:48:11 -0600855 INIT_LIST_HEAD(&controller.ep[i].queue);
856 controller.ep[i].req_primed = false;
Marek Vasute1263412013-07-10 03:16:30 +0200857 list_add_tail(&controller.ep[i].ep.ep_list,
858 &controller.gadget.ep_list);
Lei Wena91ee2a2011-10-05 08:11:40 -0700859 }
Marek Vasute1263412013-07-10 03:16:30 +0200860
Stephen Warren9ac8b542014-05-29 14:53:02 -0600861 ci_ep_alloc_request(&controller.ep[0].ep, 0);
862 if (!controller.ep0_req) {
Stephen Warrenc5d619b2014-06-10 11:02:37 -0600863 free(controller.items_mem);
Stephen Warren9ac8b542014-05-29 14:53:02 -0600864 free(controller.epts);
865 return -ENOMEM;
866 }
867
Lei Wena91ee2a2011-10-05 08:11:40 -0700868 return 0;
869}
870
871int usb_gadget_register_driver(struct usb_gadget_driver *driver)
872{
Marek Vasut1f4b4912013-07-10 03:16:32 +0200873 int ret;
Lei Wena91ee2a2011-10-05 08:11:40 -0700874
Marek Vasutfe67fe72013-07-10 03:16:33 +0200875 if (!driver)
876 return -EINVAL;
877 if (!driver->bind || !driver->setup || !driver->disconnect)
878 return -EINVAL;
879 if (driver->speed != USB_SPEED_FULL && driver->speed != USB_SPEED_HIGH)
Lei Wena91ee2a2011-10-05 08:11:40 -0700880 return -EINVAL;
Lei Wena91ee2a2011-10-05 08:11:40 -0700881
Troy Kisky8f9c49d2013-10-10 15:27:56 -0700882 ret = usb_lowlevel_init(0, USB_INIT_DEVICE, (void **)&controller.ctrl);
Marek Vasut1f4b4912013-07-10 03:16:32 +0200883 if (ret)
884 return ret;
885
Marek Vasut9ba89972014-02-06 02:43:45 +0100886 ret = ci_udc_probe();
Stephen Warren0381a7272014-04-24 17:52:38 -0600887#if defined(CONFIG_USB_EHCI_MX6) || defined(CONFIG_USB_EHCI_MXS)
888 /*
889 * FIXME: usb_lowlevel_init()->ehci_hcd_init() should be doing all
890 * HW-specific initialization, e.g. ULPI-vs-UTMI PHY selection
891 */
Marek Vasut1f4b4912013-07-10 03:16:32 +0200892 if (!ret) {
Stephen Warren0381a7272014-04-24 17:52:38 -0600893 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Marek Vasut1f4b4912013-07-10 03:16:32 +0200894
Lei Wena91ee2a2011-10-05 08:11:40 -0700895 /* select ULPI phy */
896 writel(PTS(PTS_ENABLE) | PFSC, &udc->portsc);
897 }
Stephen Warren0381a7272014-04-24 17:52:38 -0600898#endif
Marek Vasut1f4b4912013-07-10 03:16:32 +0200899
900 ret = driver->bind(&controller.gadget);
901 if (ret) {
902 DBG("driver->bind() returned %d\n", ret);
903 return ret;
Lei Wena91ee2a2011-10-05 08:11:40 -0700904 }
905 controller.driver = driver;
906
907 return 0;
908}
909
910int usb_gadget_unregister_driver(struct usb_gadget_driver *driver)
911{
Stephen Warren9c7ebe72014-06-10 11:02:38 -0600912 udc_disconnect();
913
Stephen Warrenf66ae992014-06-23 12:02:48 -0600914 driver->unbind(&controller.gadget);
915 controller.driver = NULL;
916
Stephen Warren9c7ebe72014-06-10 11:02:38 -0600917 ci_ep_free_request(&controller.ep[0].ep, &controller.ep0_req->req);
918 free(controller.items_mem);
919 free(controller.epts);
920
Lei Wena91ee2a2011-10-05 08:11:40 -0700921 return 0;
922}