blob: aadff42a9cdc66ea1879b05d9017d893f4c634d2 [file] [log] [blame]
Lei Wen26cc5122011-10-05 08:11:40 -07001/*
2 * Copyright 2011, Marvell Semiconductor Inc.
3 * Lei Wen <leiwen@marvell.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Lei Wen26cc5122011-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 Kisky0f740cb2013-10-10 15:28:03 -070016#include <asm/byteorder.h>
17#include <asm/errno.h>
Lei Wen26cc5122011-10-05 08:11:40 -070018#include <asm/io.h>
Troy Kisky3b59abf2013-10-10 15:28:00 -070019#include <asm/unaligned.h>
Lei Wen26cc5122011-10-05 08:11:40 -070020#include <linux/types.h>
Troy Kisky0f740cb2013-10-10 15:28:03 -070021#include <linux/usb/ch9.h>
22#include <linux/usb/gadget.h>
Marek Vasutf016f8c2014-02-06 02:43:45 +010023#include <usb/ci_udc.h>
Troy Kisky0f740cb2013-10-10 15:28:03 -070024#include "../host/ehci.h"
Marek Vasutf016f8c2014-02-06 02:43:45 +010025#include "ci_udc.h"
Lei Wen26cc5122011-10-05 08:11:40 -070026
Marek Vasut5804b882013-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 Warren06b38fc2014-07-01 11:41:15 -060037/*
Stephen Warren7e541882014-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 Warren06b38fc2014-07-01 11:41:15 -060041 */
42#define ILIST_ALIGN roundup(ARCH_DMA_MINALIGN, 32)
Stephen Warren7e541882014-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 Warren06b38fc2014-07-01 11:41:15 -060052
Siva Durga Prasad Paladugu6a132412015-04-29 10:42:10 +053053#define EP_MAX_LENGTH_TRANSFER 0x4000
54
Lei Wen26cc5122011-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 Warren054731b2014-05-29 14:53:01 -060077static struct usb_endpoint_descriptor ep0_desc = {
Lei Wen26cc5122011-10-05 08:11:40 -070078 .bLength = sizeof(struct usb_endpoint_descriptor),
79 .bDescriptorType = USB_DT_ENDPOINT,
80 .bEndpointAddress = USB_DIR_IN,
81 .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
82};
83
Marek Vasutf016f8c2014-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 Wen26cc5122011-10-05 08:11:40 -070086 const struct usb_endpoint_descriptor *desc);
Marek Vasutf016f8c2014-02-06 02:43:45 +010087static int ci_ep_disable(struct usb_ep *ep);
88static int ci_ep_queue(struct usb_ep *ep,
Lei Wen26cc5122011-10-05 08:11:40 -070089 struct usb_request *req, gfp_t gfp_flags);
90static struct usb_request *
Marek Vasutf016f8c2014-02-06 02:43:45 +010091ci_ep_alloc_request(struct usb_ep *ep, unsigned int gfp_flags);
92static void ci_ep_free_request(struct usb_ep *ep, struct usb_request *_req);
Lei Wen26cc5122011-10-05 08:11:40 -070093
Marek Vasutf016f8c2014-02-06 02:43:45 +010094static struct usb_gadget_ops ci_udc_ops = {
95 .pullup = ci_pullup,
Lei Wen26cc5122011-10-05 08:11:40 -070096};
97
Marek Vasutf016f8c2014-02-06 02:43:45 +010098static struct usb_ep_ops ci_ep_ops = {
99 .enable = ci_ep_enable,
100 .disable = ci_ep_disable,
101 .queue = ci_ep_queue,
102 .alloc_request = ci_ep_alloc_request,
103 .free_request = ci_ep_free_request,
Lei Wen26cc5122011-10-05 08:11:40 -0700104};
105
Marek Vasut2ea4b442013-07-10 03:16:30 +0200106/* Init values for USB endpoints. */
Siva Durga Prasad Paladugu6a132412015-04-29 10:42:10 +0530107static const struct usb_ep ci_ep_init[5] = {
Marek Vasut2ea4b442013-07-10 03:16:30 +0200108 [0] = { /* EP 0 */
109 .maxpacket = 64,
110 .name = "ep0",
Marek Vasutf016f8c2014-02-06 02:43:45 +0100111 .ops = &ci_ep_ops,
Marek Vasut2ea4b442013-07-10 03:16:30 +0200112 },
Siva Durga Prasad Paladugu6a132412015-04-29 10:42:10 +0530113 [1] = {
114 .maxpacket = 512,
115 .name = "ep1in-bulk",
116 .ops = &ci_ep_ops,
117 },
118 [2] = {
119 .maxpacket = 512,
120 .name = "ep2out-bulk",
121 .ops = &ci_ep_ops,
122 },
123 [3] = {
124 .maxpacket = 512,
125 .name = "ep3in-int",
126 .ops = &ci_ep_ops,
127 },
128 [4] = {
Marek Vasut2ea4b442013-07-10 03:16:30 +0200129 .maxpacket = 512,
130 .name = "ep-",
Marek Vasutf016f8c2014-02-06 02:43:45 +0100131 .ops = &ci_ep_ops,
Marek Vasut2ea4b442013-07-10 03:16:30 +0200132 },
133};
134
Marek Vasutf016f8c2014-02-06 02:43:45 +0100135static struct ci_drv controller = {
Marek Vasutfe48f052013-07-10 03:16:35 +0200136 .gadget = {
Marek Vasutf016f8c2014-02-06 02:43:45 +0100137 .name = "ci_udc",
138 .ops = &ci_udc_ops,
Troy Kisky5a904432013-09-25 18:41:09 -0700139 .is_dualspeed = 1,
Lei Wen26cc5122011-10-05 08:11:40 -0700140 },
141};
142
Marek Vasutb5cd45b2013-07-10 03:16:39 +0200143/**
Marek Vasutf016f8c2014-02-06 02:43:45 +0100144 * ci_get_qh() - return queue head for endpoint
Marek Vasutb5cd45b2013-07-10 03:16:39 +0200145 * @ep_num: Endpoint number
146 * @dir_in: Direction of the endpoint (IN = 1, OUT = 0)
147 *
148 * This function returns the QH associated with particular endpoint
149 * and it's direction.
150 */
Marek Vasutf016f8c2014-02-06 02:43:45 +0100151static struct ept_queue_head *ci_get_qh(int ep_num, int dir_in)
Marek Vasutb5cd45b2013-07-10 03:16:39 +0200152{
153 return &controller.epts[(ep_num * 2) + dir_in];
154}
155
Marek Vasutede709c2013-07-10 03:16:41 +0200156/**
Marek Vasutf016f8c2014-02-06 02:43:45 +0100157 * ci_get_qtd() - return queue item for endpoint
Marek Vasutede709c2013-07-10 03:16:41 +0200158 * @ep_num: Endpoint number
159 * @dir_in: Direction of the endpoint (IN = 1, OUT = 0)
160 *
161 * This function returns the QH associated with particular endpoint
162 * and it's direction.
163 */
Marek Vasutf016f8c2014-02-06 02:43:45 +0100164static struct ept_queue_item *ci_get_qtd(int ep_num, int dir_in)
Marek Vasutede709c2013-07-10 03:16:41 +0200165{
Stephen Warren6ac15fd2014-07-01 11:41:17 -0600166 int index = (ep_num * 2) + dir_in;
167 uint8_t *imem = controller.items_mem + (index * ILIST_ENT_SZ);
168 return (struct ept_queue_item *)imem;
Marek Vasutede709c2013-07-10 03:16:41 +0200169}
170
Marek Vasutf19a3432013-07-10 03:16:42 +0200171/**
Marek Vasutf016f8c2014-02-06 02:43:45 +0100172 * ci_flush_qh - flush cache over queue head
Marek Vasutf19a3432013-07-10 03:16:42 +0200173 * @ep_num: Endpoint number
174 *
175 * This function flushes cache over QH for particular endpoint.
176 */
Marek Vasutf016f8c2014-02-06 02:43:45 +0100177static void ci_flush_qh(int ep_num)
Marek Vasutf19a3432013-07-10 03:16:42 +0200178{
Marek Vasutf016f8c2014-02-06 02:43:45 +0100179 struct ept_queue_head *head = ci_get_qh(ep_num, 0);
Rob Herringf72d8322015-03-17 15:46:35 -0500180 const unsigned long start = (unsigned long)head;
181 const unsigned long end = start + 2 * sizeof(*head);
Marek Vasutf19a3432013-07-10 03:16:42 +0200182
183 flush_dcache_range(start, end);
184}
185
186/**
Marek Vasutf016f8c2014-02-06 02:43:45 +0100187 * ci_invalidate_qh - invalidate cache over queue head
Marek Vasutf19a3432013-07-10 03:16:42 +0200188 * @ep_num: Endpoint number
189 *
190 * This function invalidates cache over QH for particular endpoint.
191 */
Marek Vasutf016f8c2014-02-06 02:43:45 +0100192static void ci_invalidate_qh(int ep_num)
Marek Vasutf19a3432013-07-10 03:16:42 +0200193{
Marek Vasutf016f8c2014-02-06 02:43:45 +0100194 struct ept_queue_head *head = ci_get_qh(ep_num, 0);
Rob Herringf72d8322015-03-17 15:46:35 -0500195 unsigned long start = (unsigned long)head;
196 unsigned long end = start + 2 * sizeof(*head);
Marek Vasutf19a3432013-07-10 03:16:42 +0200197
198 invalidate_dcache_range(start, end);
199}
200
201/**
Marek Vasutf016f8c2014-02-06 02:43:45 +0100202 * ci_flush_qtd - flush cache over queue item
Marek Vasutf19a3432013-07-10 03:16:42 +0200203 * @ep_num: Endpoint number
204 *
205 * This function flushes cache over qTD pair for particular endpoint.
206 */
Marek Vasutf016f8c2014-02-06 02:43:45 +0100207static void ci_flush_qtd(int ep_num)
Marek Vasutf19a3432013-07-10 03:16:42 +0200208{
Marek Vasutf016f8c2014-02-06 02:43:45 +0100209 struct ept_queue_item *item = ci_get_qtd(ep_num, 0);
Rob Herringf72d8322015-03-17 15:46:35 -0500210 const unsigned long start = (unsigned long)item;
211 const unsigned long end = start + 2 * ILIST_ENT_SZ;
Marek Vasutf19a3432013-07-10 03:16:42 +0200212
213 flush_dcache_range(start, end);
214}
215
216/**
Siva Durga Prasad Paladugu6a132412015-04-29 10:42:10 +0530217 * ci_flush_td - flush cache over queue item
218 * @td: td pointer
219 *
220 * This function flushes cache for particular transfer descriptor.
221 */
222static void ci_flush_td(struct ept_queue_item *td)
223{
224 const uint32_t start = (uint32_t)td;
225 const uint32_t end = (uint32_t) td + ILIST_ENT_SZ;
226 flush_dcache_range(start, end);
227}
228
229/**
Marek Vasutf016f8c2014-02-06 02:43:45 +0100230 * ci_invalidate_qtd - invalidate cache over queue item
Marek Vasutf19a3432013-07-10 03:16:42 +0200231 * @ep_num: Endpoint number
232 *
233 * This function invalidates cache over qTD pair for particular endpoint.
234 */
Marek Vasutf016f8c2014-02-06 02:43:45 +0100235static void ci_invalidate_qtd(int ep_num)
Marek Vasutf19a3432013-07-10 03:16:42 +0200236{
Marek Vasutf016f8c2014-02-06 02:43:45 +0100237 struct ept_queue_item *item = ci_get_qtd(ep_num, 0);
Rob Herringf72d8322015-03-17 15:46:35 -0500238 const unsigned long start = (unsigned long)item;
239 const unsigned long end = start + 2 * ILIST_ENT_SZ;
Marek Vasutf19a3432013-07-10 03:16:42 +0200240
241 invalidate_dcache_range(start, end);
242}
243
Siva Durga Prasad Paladugu6a132412015-04-29 10:42:10 +0530244/**
245 * ci_invalidate_td - invalidate cache over queue item
246 * @td: td pointer
247 *
248 * This function invalidates cache for particular transfer descriptor.
249 */
250static void ci_invalidate_td(struct ept_queue_item *td)
251{
252 const uint32_t start = (uint32_t)td;
253 const uint32_t end = start + ILIST_ENT_SZ;
254 invalidate_dcache_range(start, end);
255}
256
Lei Wen26cc5122011-10-05 08:11:40 -0700257static struct usb_request *
Marek Vasutf016f8c2014-02-06 02:43:45 +0100258ci_ep_alloc_request(struct usb_ep *ep, unsigned int gfp_flags)
Lei Wen26cc5122011-10-05 08:11:40 -0700259{
Stephen Warrena2d8f922014-05-29 14:53:02 -0600260 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
261 int num;
Stephen Warren28130062014-05-05 17:48:11 -0600262 struct ci_req *ci_req;
263
Stephen Warrena2d8f922014-05-29 14:53:02 -0600264 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
265 if (num == 0 && controller.ep0_req)
266 return &controller.ep0_req->req;
267
Stephen Warren639e9902014-07-01 11:41:18 -0600268 ci_req = calloc(1, sizeof(*ci_req));
Stephen Warren28130062014-05-05 17:48:11 -0600269 if (!ci_req)
270 return NULL;
271
272 INIT_LIST_HEAD(&ci_req->queue);
Stephen Warren28130062014-05-05 17:48:11 -0600273
Stephen Warrena2d8f922014-05-29 14:53:02 -0600274 if (num == 0)
275 controller.ep0_req = ci_req;
276
Stephen Warren28130062014-05-05 17:48:11 -0600277 return &ci_req->req;
Lei Wen26cc5122011-10-05 08:11:40 -0700278}
279
Stephen Warren28130062014-05-05 17:48:11 -0600280static void ci_ep_free_request(struct usb_ep *ep, struct usb_request *req)
Lei Wen26cc5122011-10-05 08:11:40 -0700281{
Stephen Warrenbdf81612014-06-10 11:02:36 -0600282 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
283 struct ci_req *ci_req = container_of(req, struct ci_req, req);
284 int num;
Stephen Warren28130062014-05-05 17:48:11 -0600285
Stephen Warrenbdf81612014-06-10 11:02:36 -0600286 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
Stephen Warrenfb22ae62014-06-23 12:02:48 -0600287 if (num == 0) {
288 if (!controller.ep0_req)
289 return;
Stephen Warrenbdf81612014-06-10 11:02:36 -0600290 controller.ep0_req = 0;
Stephen Warrenfb22ae62014-06-23 12:02:48 -0600291 }
Stephen Warrenbdf81612014-06-10 11:02:36 -0600292
Stephen Warren28130062014-05-05 17:48:11 -0600293 if (ci_req->b_buf)
294 free(ci_req->b_buf);
295 free(ci_req);
Lei Wen26cc5122011-10-05 08:11:40 -0700296}
297
Troy Kisky3b59abf2013-10-10 15:28:00 -0700298static void ep_enable(int num, int in, int maxpacket)
Lei Wen26cc5122011-10-05 08:11:40 -0700299{
Marek Vasutf016f8c2014-02-06 02:43:45 +0100300 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wen26cc5122011-10-05 08:11:40 -0700301 unsigned n;
Lei Wen26cc5122011-10-05 08:11:40 -0700302
303 n = readl(&udc->epctrl[num]);
304 if (in)
305 n |= (CTRL_TXE | CTRL_TXR | CTRL_TXT_BULK);
306 else
307 n |= (CTRL_RXE | CTRL_RXR | CTRL_RXT_BULK);
308
Marek Vasutf19a3432013-07-10 03:16:42 +0200309 if (num != 0) {
Marek Vasutf016f8c2014-02-06 02:43:45 +0100310 struct ept_queue_head *head = ci_get_qh(num, in);
Troy Kisky7b7924c2013-10-10 15:28:02 -0700311
Troy Kisky3b59abf2013-10-10 15:28:00 -0700312 head->config = CONFIG_MAX_PKT(maxpacket) | CONFIG_ZLT;
Marek Vasutf016f8c2014-02-06 02:43:45 +0100313 ci_flush_qh(num);
Marek Vasutf19a3432013-07-10 03:16:42 +0200314 }
Lei Wen26cc5122011-10-05 08:11:40 -0700315 writel(n, &udc->epctrl[num]);
316}
317
Marek Vasutf016f8c2014-02-06 02:43:45 +0100318static int ci_ep_enable(struct usb_ep *ep,
Lei Wen26cc5122011-10-05 08:11:40 -0700319 const struct usb_endpoint_descriptor *desc)
320{
Marek Vasutf016f8c2014-02-06 02:43:45 +0100321 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
Lei Wen26cc5122011-10-05 08:11:40 -0700322 int num, in;
323 num = desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
324 in = (desc->bEndpointAddress & USB_DIR_IN) != 0;
Marek Vasutf016f8c2014-02-06 02:43:45 +0100325 ci_ep->desc = desc;
Troy Kisky3b59abf2013-10-10 15:28:00 -0700326
327 if (num) {
328 int max = get_unaligned_le16(&desc->wMaxPacketSize);
329
330 if ((max > 64) && (controller.gadget.speed == USB_SPEED_FULL))
331 max = 64;
332 if (ep->maxpacket != max) {
333 DBG("%s: from %d to %d\n", __func__,
334 ep->maxpacket, max);
335 ep->maxpacket = max;
336 }
337 }
338 ep_enable(num, in, ep->maxpacket);
339 DBG("%s: num=%d maxpacket=%d\n", __func__, num, ep->maxpacket);
Lei Wen26cc5122011-10-05 08:11:40 -0700340 return 0;
341}
342
Marek Vasutf016f8c2014-02-06 02:43:45 +0100343static int ci_ep_disable(struct usb_ep *ep)
Lei Wen26cc5122011-10-05 08:11:40 -0700344{
Marek Vasutf016f8c2014-02-06 02:43:45 +0100345 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
Troy Kiskyb065eb72013-09-25 18:41:15 -0700346
Marek Vasutf016f8c2014-02-06 02:43:45 +0100347 ci_ep->desc = NULL;
Lei Wen26cc5122011-10-05 08:11:40 -0700348 return 0;
349}
350
Stephen Warren28130062014-05-05 17:48:11 -0600351static int ci_bounce(struct ci_req *ci_req, int in)
Marek Vasut6dd30af2013-07-10 03:16:43 +0200352{
Stephen Warren28130062014-05-05 17:48:11 -0600353 struct usb_request *req = &ci_req->req;
Rob Herringf72d8322015-03-17 15:46:35 -0500354 unsigned long addr = (unsigned long)req->buf;
355 unsigned long hwaddr;
Stephen Warren28130062014-05-05 17:48:11 -0600356 uint32_t aligned_used_len;
Marek Vasut6dd30af2013-07-10 03:16:43 +0200357
358 /* Input buffer address is not aligned. */
359 if (addr & (ARCH_DMA_MINALIGN - 1))
360 goto align;
361
362 /* Input buffer length is not aligned. */
Stephen Warren28130062014-05-05 17:48:11 -0600363 if (req->length & (ARCH_DMA_MINALIGN - 1))
Marek Vasut6dd30af2013-07-10 03:16:43 +0200364 goto align;
365
366 /* The buffer is well aligned, only flush cache. */
Stephen Warren28130062014-05-05 17:48:11 -0600367 ci_req->hw_len = req->length;
368 ci_req->hw_buf = req->buf;
Marek Vasut6dd30af2013-07-10 03:16:43 +0200369 goto flush;
370
371align:
Stephen Warren28130062014-05-05 17:48:11 -0600372 if (ci_req->b_buf && req->length > ci_req->b_len) {
373 free(ci_req->b_buf);
374 ci_req->b_buf = 0;
375 }
376 if (!ci_req->b_buf) {
377 ci_req->b_len = roundup(req->length, ARCH_DMA_MINALIGN);
378 ci_req->b_buf = memalign(ARCH_DMA_MINALIGN, ci_req->b_len);
379 if (!ci_req->b_buf)
Marek Vasut6dd30af2013-07-10 03:16:43 +0200380 return -ENOMEM;
381 }
Stephen Warren28130062014-05-05 17:48:11 -0600382 ci_req->hw_len = ci_req->b_len;
383 ci_req->hw_buf = ci_req->b_buf;
384
Troy Kisky1ebf0272013-10-10 15:28:01 -0700385 if (in)
Stephen Warren28130062014-05-05 17:48:11 -0600386 memcpy(ci_req->hw_buf, req->buf, req->length);
Marek Vasut6dd30af2013-07-10 03:16:43 +0200387
388flush:
Rob Herringf72d8322015-03-17 15:46:35 -0500389 hwaddr = (unsigned long)ci_req->hw_buf;
Stephen Warren28130062014-05-05 17:48:11 -0600390 aligned_used_len = roundup(req->length, ARCH_DMA_MINALIGN);
391 flush_dcache_range(hwaddr, hwaddr + aligned_used_len);
Marek Vasut6dd30af2013-07-10 03:16:43 +0200392
393 return 0;
394}
395
Stephen Warren28130062014-05-05 17:48:11 -0600396static void ci_debounce(struct ci_req *ci_req, int in)
Marek Vasut6dd30af2013-07-10 03:16:43 +0200397{
Stephen Warren28130062014-05-05 17:48:11 -0600398 struct usb_request *req = &ci_req->req;
Rob Herringf72d8322015-03-17 15:46:35 -0500399 unsigned long addr = (unsigned long)req->buf;
400 unsigned long hwaddr = (unsigned long)ci_req->hw_buf;
Stephen Warren28130062014-05-05 17:48:11 -0600401 uint32_t aligned_used_len;
Marek Vasut6dd30af2013-07-10 03:16:43 +0200402
Stephen Warren28130062014-05-05 17:48:11 -0600403 if (in)
404 return;
Marek Vasut6dd30af2013-07-10 03:16:43 +0200405
Stephen Warren28130062014-05-05 17:48:11 -0600406 aligned_used_len = roundup(req->actual, ARCH_DMA_MINALIGN);
407 invalidate_dcache_range(hwaddr, hwaddr + aligned_used_len);
Marek Vasut6dd30af2013-07-10 03:16:43 +0200408
Stephen Warren28130062014-05-05 17:48:11 -0600409 if (addr == hwaddr)
410 return; /* not a bounce */
411
412 memcpy(req->buf, ci_req->hw_buf, req->actual);
Marek Vasut6dd30af2013-07-10 03:16:43 +0200413}
414
Stephen Warren28130062014-05-05 17:48:11 -0600415static void ci_ep_submit_next_request(struct ci_ep *ci_ep)
Lei Wen26cc5122011-10-05 08:11:40 -0700416{
Marek Vasutf016f8c2014-02-06 02:43:45 +0100417 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wen26cc5122011-10-05 08:11:40 -0700418 struct ept_queue_item *item;
419 struct ept_queue_head *head;
Stephen Warren28130062014-05-05 17:48:11 -0600420 int bit, num, len, in;
421 struct ci_req *ci_req;
Siva Durga Prasad Paladugu6a132412015-04-29 10:42:10 +0530422 u8 *buf;
423 uint32_t length, actlen;
424 struct ept_queue_item *dtd, *qtd;
Stephen Warren28130062014-05-05 17:48:11 -0600425
426 ci_ep->req_primed = true;
427
Marek Vasutf016f8c2014-02-06 02:43:45 +0100428 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
429 in = (ci_ep->desc->bEndpointAddress & USB_DIR_IN) != 0;
430 item = ci_get_qtd(num, in);
431 head = ci_get_qh(num, in);
Lei Wen26cc5122011-10-05 08:11:40 -0700432
Stephen Warren28130062014-05-05 17:48:11 -0600433 ci_req = list_first_entry(&ci_ep->queue, struct ci_req, queue);
434 len = ci_req->req.length;
Marek Vasut6dd30af2013-07-10 03:16:43 +0200435
Rob Herringf72d8322015-03-17 15:46:35 -0500436 head->next = (unsigned long)item;
Lei Wen26cc5122011-10-05 08:11:40 -0700437 head->info = 0;
438
Siva Durga Prasad Paladugu6a132412015-04-29 10:42:10 +0530439 ci_req->dtd_count = 0;
440 buf = ci_req->hw_buf;
441 actlen = 0;
442 dtd = item;
443
444 do {
445 length = min(ci_req->req.length - actlen,
446 (unsigned)EP_MAX_LENGTH_TRANSFER);
447
448 dtd->info = INFO_BYTES(length) | INFO_ACTIVE;
449 dtd->page0 = (unsigned long)buf;
450 dtd->page1 = ((unsigned long)buf & 0xfffff000) + 0x1000;
451 dtd->page2 = ((unsigned long)buf & 0xfffff000) + 0x2000;
452 dtd->page3 = ((unsigned long)buf & 0xfffff000) + 0x3000;
453 dtd->page4 = ((unsigned long)buf & 0xfffff000) + 0x4000;
454
455 len -= length;
456 actlen += length;
457 buf += length;
458
459 if (len) {
460 qtd = (struct ept_queue_item *)
461 memalign(ILIST_ALIGN, ILIST_ENT_SZ);
462 dtd->next = (uint32_t)qtd;
463 dtd = qtd;
464 memset(dtd, 0, ILIST_ENT_SZ);
465 }
466
467 ci_req->dtd_count++;
468 } while (len);
469
470 item = dtd;
Stephen Warrene0672b32014-06-10 15:27:39 -0600471 /*
472 * When sending the data for an IN transaction, the attached host
473 * knows that all data for the IN is sent when one of the following
474 * occurs:
475 * a) A zero-length packet is transmitted.
476 * b) A packet with length that isn't an exact multiple of the ep's
477 * maxpacket is transmitted.
478 * c) Enough data is sent to exactly fill the host's maximum expected
479 * IN transaction size.
480 *
481 * One of these conditions MUST apply at the end of an IN transaction,
482 * or the transaction will not be considered complete by the host. If
483 * none of (a)..(c) already applies, then we must force (a) to apply
484 * by explicitly sending an extra zero-length packet.
485 */
486 /* IN !a !b !c */
487 if (in && len && !(len % ci_ep->ep.maxpacket) && ci_req->req.zero) {
488 /*
489 * Each endpoint has 2 items allocated, even though typically
490 * only 1 is used at a time since either an IN or an OUT but
491 * not both is queued. For an IN transaction, item currently
492 * points at the second of these items, so we know that we
Stephen Warren8d7c39d2014-07-01 11:41:14 -0600493 * can use the other to transmit the extra zero-length packet.
Stephen Warrene0672b32014-06-10 15:27:39 -0600494 */
Stephen Warren8d7c39d2014-07-01 11:41:14 -0600495 struct ept_queue_item *other_item = ci_get_qtd(num, 0);
Rob Herringf72d8322015-03-17 15:46:35 -0500496 item->next = (unsigned long)other_item;
Stephen Warren8d7c39d2014-07-01 11:41:14 -0600497 item = other_item;
Stephen Warrene0672b32014-06-10 15:27:39 -0600498 item->info = INFO_ACTIVE;
499 }
500
501 item->next = TERMINATE;
502 item->info |= INFO_IOC;
503
504 ci_flush_qtd(num);
505
Siva Durga Prasad Paladugu6a132412015-04-29 10:42:10 +0530506 item = (struct ept_queue_item *)head->next;
507 while (item->next != TERMINATE) {
508 ci_flush_td((struct ept_queue_item *)item->next);
509 item = (struct ept_queue_item *)item->next;
510 }
511
Stephen Warren28130062014-05-05 17:48:11 -0600512 DBG("ept%d %s queue len %x, req %p, buffer %p\n",
513 num, in ? "in" : "out", len, ci_req, ci_req->hw_buf);
Marek Vasutf016f8c2014-02-06 02:43:45 +0100514 ci_flush_qh(num);
Lei Wen26cc5122011-10-05 08:11:40 -0700515
516 if (in)
517 bit = EPT_TX(num);
518 else
519 bit = EPT_RX(num);
520
Lei Wen26cc5122011-10-05 08:11:40 -0700521 writel(bit, &udc->epprime);
Stephen Warren28130062014-05-05 17:48:11 -0600522}
523
524static int ci_ep_queue(struct usb_ep *ep,
525 struct usb_request *req, gfp_t gfp_flags)
526{
527 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep);
528 struct ci_req *ci_req = container_of(req, struct ci_req, req);
529 int in, ret;
530 int __maybe_unused num;
531
532 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
533 in = (ci_ep->desc->bEndpointAddress & USB_DIR_IN) != 0;
534
Stephen Warren7484d842014-05-29 14:53:00 -0600535 if (!num && ci_ep->req_primed) {
536 /*
537 * The flipping of ep0 between IN and OUT relies on
538 * ci_ep_queue consuming the current IN/OUT setting
539 * immediately. If this is deferred to a later point when the
540 * req is pulled out of ci_req->queue, then the IN/OUT setting
541 * may have been changed since the req was queued, and state
542 * will get out of sync. This condition doesn't occur today,
543 * but could if bugs were introduced later, and this error
544 * check will save a lot of debugging time.
545 */
546 printf("%s: ep0 transaction already in progress\n", __func__);
547 return -EPROTO;
548 }
549
Stephen Warren28130062014-05-05 17:48:11 -0600550 ret = ci_bounce(ci_req, in);
551 if (ret)
552 return ret;
553
554 DBG("ept%d %s pre-queue req %p, buffer %p\n",
555 num, in ? "in" : "out", ci_req, ci_req->hw_buf);
556 list_add_tail(&ci_req->queue, &ci_ep->queue);
557
558 if (!ci_ep->req_primed)
559 ci_ep_submit_next_request(ci_ep);
Lei Wen26cc5122011-10-05 08:11:40 -0700560
561 return 0;
562}
563
Stephen Warren006c7022014-05-29 14:53:03 -0600564static void flip_ep0_direction(void)
565{
566 if (ep0_desc.bEndpointAddress == USB_DIR_IN) {
Stephen Warren83c37502014-06-25 11:03:18 -0600567 DBG("%s: Flipping ep0 to OUT\n", __func__);
Stephen Warren006c7022014-05-29 14:53:03 -0600568 ep0_desc.bEndpointAddress = 0;
569 } else {
Stephen Warren83c37502014-06-25 11:03:18 -0600570 DBG("%s: Flipping ep0 to IN\n", __func__);
Stephen Warren006c7022014-05-29 14:53:03 -0600571 ep0_desc.bEndpointAddress = USB_DIR_IN;
572 }
573}
574
Stephen Warrendcb89b52014-07-01 14:22:27 -0600575static void handle_ep_complete(struct ci_ep *ci_ep)
Lei Wen26cc5122011-10-05 08:11:40 -0700576{
Siva Durga Prasad Paladugu6a132412015-04-29 10:42:10 +0530577 struct ept_queue_item *item, *next_td;
578 int num, in, len, j;
Stephen Warren28130062014-05-05 17:48:11 -0600579 struct ci_req *ci_req;
580
Stephen Warrendcb89b52014-07-01 14:22:27 -0600581 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK;
582 in = (ci_ep->desc->bEndpointAddress & USB_DIR_IN) != 0;
Marek Vasutf016f8c2014-02-06 02:43:45 +0100583 item = ci_get_qtd(num, in);
584 ci_invalidate_qtd(num);
Stephen Warrendcb89b52014-07-01 14:22:27 -0600585 ci_req = list_first_entry(&ci_ep->queue, struct ci_req, queue);
Siva Durga Prasad Paladugu6a132412015-04-29 10:42:10 +0530586
587 next_td = item;
588 len = 0;
589 for (j = 0; j < ci_req->dtd_count; j++) {
590 ci_invalidate_td(next_td);
591 item = next_td;
592 len += (item->info >> 16) & 0x7fff;
593 if (item->info & 0xff)
594 printf("EP%d/%s FAIL info=%x pg0=%x\n",
595 num, in ? "in" : "out", item->info, item->page0);
596 if (j != ci_req->dtd_count - 1)
597 next_td = (struct ept_queue_item *)item->next;
598 if (j != 0)
599 free(item);
600 }
601
Stephen Warren28130062014-05-05 17:48:11 -0600602 list_del_init(&ci_req->queue);
Stephen Warrendcb89b52014-07-01 14:22:27 -0600603 ci_ep->req_primed = false;
Troy Kisky1ebf0272013-10-10 15:28:01 -0700604
Stephen Warrendcb89b52014-07-01 14:22:27 -0600605 if (!list_empty(&ci_ep->queue))
606 ci_ep_submit_next_request(ci_ep);
Stephen Warren28130062014-05-05 17:48:11 -0600607
Stephen Warren28130062014-05-05 17:48:11 -0600608 ci_req->req.actual = ci_req->req.length - len;
609 ci_debounce(ci_req, in);
610
611 DBG("ept%d %s req %p, complete %x\n",
612 num, in ? "in" : "out", ci_req, len);
Stephen Warren006c7022014-05-29 14:53:03 -0600613 if (num != 0 || controller.ep0_data_phase)
Stephen Warrendcb89b52014-07-01 14:22:27 -0600614 ci_req->req.complete(&ci_ep->ep, &ci_req->req);
Stephen Warren006c7022014-05-29 14:53:03 -0600615 if (num == 0 && controller.ep0_data_phase) {
616 /*
617 * Data Stage is complete, so flip ep0 dir for Status Stage,
618 * which always transfers a packet in the opposite direction.
619 */
620 DBG("%s: flip ep0 dir for Status Stage\n", __func__);
621 flip_ep0_direction();
622 controller.ep0_data_phase = false;
Stephen Warren28130062014-05-05 17:48:11 -0600623 ci_req->req.length = 0;
Stephen Warrendcb89b52014-07-01 14:22:27 -0600624 usb_ep_queue(&ci_ep->ep, &ci_req->req, 0);
Lei Wen26cc5122011-10-05 08:11:40 -0700625 }
626}
627
628#define SETUP(type, request) (((type) << 8) | (request))
629
630static void handle_setup(void)
631{
Stephen Warren28130062014-05-05 17:48:11 -0600632 struct ci_ep *ci_ep = &controller.ep[0];
633 struct ci_req *ci_req;
634 struct usb_request *req;
Marek Vasutf016f8c2014-02-06 02:43:45 +0100635 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wen26cc5122011-10-05 08:11:40 -0700636 struct ept_queue_head *head;
637 struct usb_ctrlrequest r;
638 int status = 0;
639 int num, in, _num, _in, i;
640 char *buf;
Stephen Warren28130062014-05-05 17:48:11 -0600641
Stephen Warrena2d8f922014-05-29 14:53:02 -0600642 ci_req = controller.ep0_req;
Stephen Warren28130062014-05-05 17:48:11 -0600643 req = &ci_req->req;
Marek Vasutf016f8c2014-02-06 02:43:45 +0100644 head = ci_get_qh(0, 0); /* EP0 OUT */
Lei Wen26cc5122011-10-05 08:11:40 -0700645
Marek Vasutf016f8c2014-02-06 02:43:45 +0100646 ci_invalidate_qh(0);
Lei Wen26cc5122011-10-05 08:11:40 -0700647 memcpy(&r, head->setup_data, sizeof(struct usb_ctrlrequest));
Stephen Warrenfcf2ede2014-04-24 17:52:39 -0600648#ifdef CONFIG_CI_UDC_HAS_HOSTPC
649 writel(EPT_RX(0), &udc->epsetupstat);
650#else
Lei Wen26cc5122011-10-05 08:11:40 -0700651 writel(EPT_RX(0), &udc->epstat);
Stephen Warrenfcf2ede2014-04-24 17:52:39 -0600652#endif
Stephen Warren006c7022014-05-29 14:53:03 -0600653 DBG("handle setup %s, %x, %x index %x value %x length %x\n",
654 reqname(r.bRequest), r.bRequestType, r.bRequest, r.wIndex,
655 r.wValue, r.wLength);
656
657 /* Set EP0 dir for Data Stage based on Setup Stage data */
658 if (r.bRequestType & USB_DIR_IN) {
659 DBG("%s: Set ep0 to IN for Data Stage\n", __func__);
660 ep0_desc.bEndpointAddress = USB_DIR_IN;
661 } else {
662 DBG("%s: Set ep0 to OUT for Data Stage\n", __func__);
663 ep0_desc.bEndpointAddress = 0;
664 }
665 if (r.wLength) {
666 controller.ep0_data_phase = true;
667 } else {
668 /* 0 length -> no Data Stage. Flip dir for Status Stage */
669 DBG("%s: 0 length: flip ep0 dir for Status Stage\n", __func__);
670 flip_ep0_direction();
671 controller.ep0_data_phase = false;
672 }
Lei Wen26cc5122011-10-05 08:11:40 -0700673
Stephen Warren28130062014-05-05 17:48:11 -0600674 list_del_init(&ci_req->queue);
675 ci_ep->req_primed = false;
676
Lei Wen26cc5122011-10-05 08:11:40 -0700677 switch (SETUP(r.bRequestType, r.bRequest)) {
678 case SETUP(USB_RECIP_ENDPOINT, USB_REQ_CLEAR_FEATURE):
679 _num = r.wIndex & 15;
680 _in = !!(r.wIndex & 0x80);
681
682 if ((r.wValue == 0) && (r.wLength == 0)) {
683 req->length = 0;
684 for (i = 0; i < NUM_ENDPOINTS; i++) {
Marek Vasutf016f8c2014-02-06 02:43:45 +0100685 struct ci_ep *ep = &controller.ep[i];
Troy Kisky3b59abf2013-10-10 15:28:00 -0700686
687 if (!ep->desc)
Lei Wen26cc5122011-10-05 08:11:40 -0700688 continue;
Troy Kisky3b59abf2013-10-10 15:28:00 -0700689 num = ep->desc->bEndpointAddress
Marek Vasut532d8462013-07-10 03:16:29 +0200690 & USB_ENDPOINT_NUMBER_MASK;
Troy Kisky3b59abf2013-10-10 15:28:00 -0700691 in = (ep->desc->bEndpointAddress
Lei Wen26cc5122011-10-05 08:11:40 -0700692 & USB_DIR_IN) != 0;
693 if ((num == _num) && (in == _in)) {
Troy Kisky3b59abf2013-10-10 15:28:00 -0700694 ep_enable(num, in, ep->ep.maxpacket);
Lei Wen26cc5122011-10-05 08:11:40 -0700695 usb_ep_queue(controller.gadget.ep0,
696 req, 0);
697 break;
698 }
699 }
700 }
701 return;
702
703 case SETUP(USB_RECIP_DEVICE, USB_REQ_SET_ADDRESS):
704 /*
705 * write address delayed (will take effect
706 * after the next IN txn)
707 */
708 writel((r.wValue << 25) | (1 << 24), &udc->devaddr);
709 req->length = 0;
710 usb_ep_queue(controller.gadget.ep0, req, 0);
711 return;
712
713 case SETUP(USB_DIR_IN | USB_RECIP_DEVICE, USB_REQ_GET_STATUS):
714 req->length = 2;
715 buf = (char *)req->buf;
716 buf[0] = 1 << USB_DEVICE_SELF_POWERED;
717 buf[1] = 0;
718 usb_ep_queue(controller.gadget.ep0, req, 0);
719 return;
720 }
721 /* pass request up to the gadget driver */
722 if (controller.driver)
723 status = controller.driver->setup(&controller.gadget, &r);
724 else
725 status = -ENODEV;
726
727 if (!status)
728 return;
729 DBG("STALL reqname %s type %x value %x, index %x\n",
730 reqname(r.bRequest), r.bRequestType, r.wValue, r.wIndex);
731 writel((1<<16) | (1 << 0), &udc->epctrl[0]);
732}
733
734static void stop_activity(void)
735{
736 int i, num, in;
737 struct ept_queue_head *head;
Marek Vasutf016f8c2014-02-06 02:43:45 +0100738 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wen26cc5122011-10-05 08:11:40 -0700739 writel(readl(&udc->epcomp), &udc->epcomp);
Stephen Warrenfcf2ede2014-04-24 17:52:39 -0600740#ifdef CONFIG_CI_UDC_HAS_HOSTPC
741 writel(readl(&udc->epsetupstat), &udc->epsetupstat);
742#endif
Lei Wen26cc5122011-10-05 08:11:40 -0700743 writel(readl(&udc->epstat), &udc->epstat);
744 writel(0xffffffff, &udc->epflush);
745
746 /* error out any pending reqs */
747 for (i = 0; i < NUM_ENDPOINTS; i++) {
748 if (i != 0)
749 writel(0, &udc->epctrl[i]);
Marek Vasut532d8462013-07-10 03:16:29 +0200750 if (controller.ep[i].desc) {
751 num = controller.ep[i].desc->bEndpointAddress
Lei Wen26cc5122011-10-05 08:11:40 -0700752 & USB_ENDPOINT_NUMBER_MASK;
Marek Vasut532d8462013-07-10 03:16:29 +0200753 in = (controller.ep[i].desc->bEndpointAddress
754 & USB_DIR_IN) != 0;
Marek Vasutf016f8c2014-02-06 02:43:45 +0100755 head = ci_get_qh(num, in);
Lei Wen26cc5122011-10-05 08:11:40 -0700756 head->info = INFO_ACTIVE;
Marek Vasutf016f8c2014-02-06 02:43:45 +0100757 ci_flush_qh(num);
Lei Wen26cc5122011-10-05 08:11:40 -0700758 }
759 }
760}
761
762void udc_irq(void)
763{
Marek Vasutf016f8c2014-02-06 02:43:45 +0100764 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wen26cc5122011-10-05 08:11:40 -0700765 unsigned n = readl(&udc->usbsts);
766 writel(n, &udc->usbsts);
767 int bit, i, num, in;
768
769 n &= (STS_SLI | STS_URI | STS_PCI | STS_UI | STS_UEI);
770 if (n == 0)
771 return;
772
773 if (n & STS_URI) {
774 DBG("-- reset --\n");
775 stop_activity();
776 }
777 if (n & STS_SLI)
778 DBG("-- suspend --\n");
779
780 if (n & STS_PCI) {
Troy Kisky3b59abf2013-10-10 15:28:00 -0700781 int max = 64;
782 int speed = USB_SPEED_FULL;
783
Stephen Warrenfcf2ede2014-04-24 17:52:39 -0600784#ifdef CONFIG_CI_UDC_HAS_HOSTPC
785 bit = (readl(&udc->hostpc1_devlc) >> 25) & 3;
786#else
Lei Wen26cc5122011-10-05 08:11:40 -0700787 bit = (readl(&udc->portsc) >> 26) & 3;
Stephen Warrenfcf2ede2014-04-24 17:52:39 -0600788#endif
Troy Kisky3b59abf2013-10-10 15:28:00 -0700789 DBG("-- portchange %x %s\n", bit, (bit == 2) ? "High" : "Full");
Lei Wen26cc5122011-10-05 08:11:40 -0700790 if (bit == 2) {
Troy Kisky3b59abf2013-10-10 15:28:00 -0700791 speed = USB_SPEED_HIGH;
792 max = 512;
793 }
794 controller.gadget.speed = speed;
795 for (i = 1; i < NUM_ENDPOINTS; i++) {
796 if (controller.ep[i].ep.maxpacket > max)
797 controller.ep[i].ep.maxpacket = max;
Lei Wen26cc5122011-10-05 08:11:40 -0700798 }
799 }
800
801 if (n & STS_UEI)
802 printf("<UEI %x>\n", readl(&udc->epcomp));
803
804 if ((n & STS_UI) || (n & STS_UEI)) {
Stephen Warrenfcf2ede2014-04-24 17:52:39 -0600805#ifdef CONFIG_CI_UDC_HAS_HOSTPC
806 n = readl(&udc->epsetupstat);
807#else
Lei Wen26cc5122011-10-05 08:11:40 -0700808 n = readl(&udc->epstat);
Stephen Warrenfcf2ede2014-04-24 17:52:39 -0600809#endif
Lei Wen26cc5122011-10-05 08:11:40 -0700810 if (n & EPT_RX(0))
811 handle_setup();
812
813 n = readl(&udc->epcomp);
814 if (n != 0)
815 writel(n, &udc->epcomp);
816
817 for (i = 0; i < NUM_ENDPOINTS && n; i++) {
Marek Vasut532d8462013-07-10 03:16:29 +0200818 if (controller.ep[i].desc) {
819 num = controller.ep[i].desc->bEndpointAddress
Lei Wen26cc5122011-10-05 08:11:40 -0700820 & USB_ENDPOINT_NUMBER_MASK;
Marek Vasut532d8462013-07-10 03:16:29 +0200821 in = (controller.ep[i].desc->bEndpointAddress
Lei Wen26cc5122011-10-05 08:11:40 -0700822 & USB_DIR_IN) != 0;
823 bit = (in) ? EPT_TX(num) : EPT_RX(num);
824 if (n & bit)
Marek Vasut532d8462013-07-10 03:16:29 +0200825 handle_ep_complete(&controller.ep[i]);
Lei Wen26cc5122011-10-05 08:11:40 -0700826 }
827 }
828 }
829}
830
Kishon Vijay Abraham I2d48aa62015-02-23 18:40:23 +0530831int usb_gadget_handle_interrupts(int index)
Lei Wen26cc5122011-10-05 08:11:40 -0700832{
833 u32 value;
Marek Vasutf016f8c2014-02-06 02:43:45 +0100834 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wen26cc5122011-10-05 08:11:40 -0700835
836 value = readl(&udc->usbsts);
837 if (value)
838 udc_irq();
839
840 return value;
841}
842
Stephen Warren43a8f252014-06-10 11:02:35 -0600843void udc_disconnect(void)
844{
845 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
846 /* disable pullup */
847 stop_activity();
848 writel(USBCMD_FS2, &udc->usbcmd);
849 udelay(800);
850 if (controller.driver)
851 controller.driver->disconnect(&controller.gadget);
852}
853
Marek Vasutf016f8c2014-02-06 02:43:45 +0100854static int ci_pullup(struct usb_gadget *gadget, int is_on)
Lei Wen26cc5122011-10-05 08:11:40 -0700855{
Marek Vasutf016f8c2014-02-06 02:43:45 +0100856 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Lei Wen26cc5122011-10-05 08:11:40 -0700857 if (is_on) {
858 /* RESET */
859 writel(USBCMD_ITC(MICRO_8FRAME) | USBCMD_RST, &udc->usbcmd);
860 udelay(200);
861
Rob Herringf72d8322015-03-17 15:46:35 -0500862 writel((unsigned long)controller.epts, &udc->epinitaddr);
Lei Wen26cc5122011-10-05 08:11:40 -0700863
864 /* select DEVICE mode */
865 writel(USBMODE_DEVICE, &udc->usbmode);
866
Eric Nelsone2067992014-09-28 18:35:14 -0700867#if !defined(CONFIG_USB_GADGET_DUALSPEED)
868 /* Port force Full-Speed Connect */
869 setbits_le32(&udc->portsc, PFSC);
870#endif
871
Lei Wen26cc5122011-10-05 08:11:40 -0700872 writel(0xffffffff, &udc->epflush);
873
874 /* Turn on the USB connection by enabling the pullup resistor */
875 writel(USBCMD_ITC(MICRO_8FRAME) | USBCMD_RUN, &udc->usbcmd);
876 } else {
Stephen Warren43a8f252014-06-10 11:02:35 -0600877 udc_disconnect();
Lei Wen26cc5122011-10-05 08:11:40 -0700878 }
879
880 return 0;
881}
882
Marek Vasutf016f8c2014-02-06 02:43:45 +0100883static int ci_udc_probe(void)
Lei Wen26cc5122011-10-05 08:11:40 -0700884{
885 struct ept_queue_head *head;
886 int i;
Marek Vasutab65da12013-07-10 03:16:37 +0200887
Marek Vasutf6463172013-07-10 03:16:34 +0200888 const int num = 2 * NUM_ENDPOINTS;
Lei Wen26cc5122011-10-05 08:11:40 -0700889
Marek Vasutab65da12013-07-10 03:16:37 +0200890 const int eplist_min_align = 4096;
891 const int eplist_align = roundup(eplist_min_align, ARCH_DMA_MINALIGN);
892 const int eplist_raw_sz = num * sizeof(struct ept_queue_head);
893 const int eplist_sz = roundup(eplist_raw_sz, ARCH_DMA_MINALIGN);
894
895 /* The QH list must be aligned to 4096 bytes. */
896 controller.epts = memalign(eplist_align, eplist_sz);
897 if (!controller.epts)
898 return -ENOMEM;
899 memset(controller.epts, 0, eplist_sz);
900
Stephen Warren06b38fc2014-07-01 11:41:15 -0600901 controller.items_mem = memalign(ILIST_ALIGN, ILIST_SZ);
Marek Vasut8a095a62013-07-10 03:16:40 +0200902 if (!controller.items_mem) {
903 free(controller.epts);
904 return -ENOMEM;
905 }
Stephen Warren06b38fc2014-07-01 11:41:15 -0600906 memset(controller.items_mem, 0, ILIST_SZ);
Marek Vasut8a095a62013-07-10 03:16:40 +0200907
Lei Wen26cc5122011-10-05 08:11:40 -0700908 for (i = 0; i < 2 * NUM_ENDPOINTS; i++) {
909 /*
Marek Vasutab65da12013-07-10 03:16:37 +0200910 * Configure QH for each endpoint. The structure of the QH list
911 * is such that each two subsequent fields, N and N+1 where N is
912 * even, in the QH list represent QH for one endpoint. The Nth
913 * entry represents OUT configuration and the N+1th entry does
914 * represent IN configuration of the endpoint.
Lei Wen26cc5122011-10-05 08:11:40 -0700915 */
Marek Vasutab52df12013-07-10 03:16:36 +0200916 head = controller.epts + i;
Lei Wen26cc5122011-10-05 08:11:40 -0700917 if (i < 2)
918 head->config = CONFIG_MAX_PKT(EP0_MAX_PACKET_SIZE)
919 | CONFIG_ZLT | CONFIG_IOS;
920 else
921 head->config = CONFIG_MAX_PKT(EP_MAX_PACKET_SIZE)
922 | CONFIG_ZLT;
923 head->next = TERMINATE;
924 head->info = 0;
925
Marek Vasutf19a3432013-07-10 03:16:42 +0200926 if (i & 1) {
Stephen Warrend7beeb92014-07-01 11:41:13 -0600927 ci_flush_qh(i / 2);
928 ci_flush_qtd(i / 2);
Marek Vasutf19a3432013-07-10 03:16:42 +0200929 }
Lei Wen26cc5122011-10-05 08:11:40 -0700930 }
931
932 INIT_LIST_HEAD(&controller.gadget.ep_list);
Marek Vasut2ea4b442013-07-10 03:16:30 +0200933
934 /* Init EP 0 */
Marek Vasutf016f8c2014-02-06 02:43:45 +0100935 memcpy(&controller.ep[0].ep, &ci_ep_init[0], sizeof(*ci_ep_init));
Stephen Warren054731b2014-05-29 14:53:01 -0600936 controller.ep[0].desc = &ep0_desc;
Stephen Warren28130062014-05-05 17:48:11 -0600937 INIT_LIST_HEAD(&controller.ep[0].queue);
938 controller.ep[0].req_primed = false;
Marek Vasut2ea4b442013-07-10 03:16:30 +0200939 controller.gadget.ep0 = &controller.ep[0].ep;
Lei Wen26cc5122011-10-05 08:11:40 -0700940 INIT_LIST_HEAD(&controller.gadget.ep0->ep_list);
Marek Vasut2ea4b442013-07-10 03:16:30 +0200941
Siva Durga Prasad Paladugu6a132412015-04-29 10:42:10 +0530942 /* Init EP 1..3 */
943 for (i = 1; i < 4; i++) {
944 memcpy(&controller.ep[i].ep, &ci_ep_init[i],
945 sizeof(*ci_ep_init));
946 INIT_LIST_HEAD(&controller.ep[i].queue);
947 controller.ep[i].req_primed = false;
948 list_add_tail(&controller.ep[i].ep.ep_list,
949 &controller.gadget.ep_list);
950 }
951
952 /* Init EP 4..n */
953 for (i = 4; i < NUM_ENDPOINTS; i++) {
954 memcpy(&controller.ep[i].ep, &ci_ep_init[4],
Marek Vasutf016f8c2014-02-06 02:43:45 +0100955 sizeof(*ci_ep_init));
Stephen Warren28130062014-05-05 17:48:11 -0600956 INIT_LIST_HEAD(&controller.ep[i].queue);
957 controller.ep[i].req_primed = false;
Marek Vasut2ea4b442013-07-10 03:16:30 +0200958 list_add_tail(&controller.ep[i].ep.ep_list,
959 &controller.gadget.ep_list);
Lei Wen26cc5122011-10-05 08:11:40 -0700960 }
Marek Vasut2ea4b442013-07-10 03:16:30 +0200961
Stephen Warrena2d8f922014-05-29 14:53:02 -0600962 ci_ep_alloc_request(&controller.ep[0].ep, 0);
963 if (!controller.ep0_req) {
Stephen Warren9a7d34b2014-06-10 11:02:37 -0600964 free(controller.items_mem);
Stephen Warrena2d8f922014-05-29 14:53:02 -0600965 free(controller.epts);
966 return -ENOMEM;
967 }
968
Lei Wen26cc5122011-10-05 08:11:40 -0700969 return 0;
970}
971
972int usb_gadget_register_driver(struct usb_gadget_driver *driver)
973{
Marek Vasutbe7ed252013-07-10 03:16:32 +0200974 int ret;
Lei Wen26cc5122011-10-05 08:11:40 -0700975
Marek Vasutd7663032013-07-10 03:16:33 +0200976 if (!driver)
Lei Wen26cc5122011-10-05 08:11:40 -0700977 return -EINVAL;
Marek Vasutd7663032013-07-10 03:16:33 +0200978 if (!driver->bind || !driver->setup || !driver->disconnect)
979 return -EINVAL;
980 if (driver->speed != USB_SPEED_FULL && driver->speed != USB_SPEED_HIGH)
981 return -EINVAL;
Lei Wen26cc5122011-10-05 08:11:40 -0700982
Simon Glassfbeceb22015-03-25 12:22:32 -0600983#ifdef CONFIG_DM_USB
984 ret = usb_setup_ehci_gadget(&controller.ctrl);
985#else
Troy Kisky06d513e2013-10-10 15:27:56 -0700986 ret = usb_lowlevel_init(0, USB_INIT_DEVICE, (void **)&controller.ctrl);
Simon Glassfbeceb22015-03-25 12:22:32 -0600987#endif
Marek Vasutbe7ed252013-07-10 03:16:32 +0200988 if (ret)
989 return ret;
990
Marek Vasutf016f8c2014-02-06 02:43:45 +0100991 ret = ci_udc_probe();
Stephen Warren0c51dc62014-04-24 17:52:38 -0600992#if defined(CONFIG_USB_EHCI_MX6) || defined(CONFIG_USB_EHCI_MXS)
993 /*
994 * FIXME: usb_lowlevel_init()->ehci_hcd_init() should be doing all
995 * HW-specific initialization, e.g. ULPI-vs-UTMI PHY selection
996 */
Marek Vasutbe7ed252013-07-10 03:16:32 +0200997 if (!ret) {
Stephen Warren0c51dc62014-04-24 17:52:38 -0600998 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
Marek Vasutbe7ed252013-07-10 03:16:32 +0200999
Lei Wen26cc5122011-10-05 08:11:40 -07001000 /* select ULPI phy */
1001 writel(PTS(PTS_ENABLE) | PFSC, &udc->portsc);
1002 }
Stephen Warren0c51dc62014-04-24 17:52:38 -06001003#endif
Marek Vasutbe7ed252013-07-10 03:16:32 +02001004
1005 ret = driver->bind(&controller.gadget);
1006 if (ret) {
1007 DBG("driver->bind() returned %d\n", ret);
1008 return ret;
Lei Wen26cc5122011-10-05 08:11:40 -07001009 }
1010 controller.driver = driver;
1011
1012 return 0;
1013}
1014
1015int usb_gadget_unregister_driver(struct usb_gadget_driver *driver)
1016{
Stephen Warrenb7c00512014-06-10 11:02:38 -06001017 udc_disconnect();
1018
Stephen Warrenfb22ae62014-06-23 12:02:48 -06001019 driver->unbind(&controller.gadget);
1020 controller.driver = NULL;
1021
Stephen Warrenb7c00512014-06-10 11:02:38 -06001022 ci_ep_free_request(&controller.ep[0].ep, &controller.ep0_req->req);
1023 free(controller.items_mem);
1024 free(controller.epts);
1025
Lei Wen26cc5122011-10-05 08:11:40 -07001026 return 0;
1027}
Stephen Warren842ef9a2014-08-25 14:02:15 -06001028
1029bool dfu_usb_get_reset(void)
1030{
1031 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor;
1032
1033 return !!(readl(&udc->usbsts) & STS_URI);
1034}