blob: 2582bf36eb9fb4e8b2f5d6442d765f66cf9a0be4 [file] [log] [blame]
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001/*-
2 * Copyright (c) 2007-2008, Juniper Networks, Inc.
michaeldb632992008-12-10 17:55:19 +01003 * Copyright (c) 2008, Excito Elektronik i Skåne AB
Remy Böhmerc0d722f2008-12-13 22:51:58 +01004 * Copyright (c) 2008, Michael Trimarchi <trimarchimichael@yahoo.it>
5 *
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01006 * All rights reserved.
7 *
Simon Glasse62b5262015-07-06 16:47:42 -06008 * SPDX-License-Identifier: GPL-2.0
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01009 */
Michael Trimarchiaaf098c2008-11-28 13:20:46 +010010#include <common.h>
Simon Glass46b01792015-03-25 12:22:29 -060011#include <dm.h>
Patrick Georgi8f62ca62013-03-06 14:08:31 +000012#include <errno.h>
michaeldb632992008-12-10 17:55:19 +010013#include <asm/byteorder.h>
Lucas Stach93ad9082012-09-06 08:00:13 +020014#include <asm/unaligned.h>
Michael Trimarchiaaf098c2008-11-28 13:20:46 +010015#include <usb.h>
16#include <asm/io.h>
michaeldb632992008-12-10 17:55:19 +010017#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060018#include <memalign.h>
Stefan Roese67333f72010-11-26 15:43:28 +010019#include <watchdog.h>
Patrick Georgi8f62ca62013-03-06 14:08:31 +000020#include <linux/compiler.h>
Jean-Christophe PLAGNIOL-VILLARD2731b9a2009-04-03 12:46:58 +020021
22#include "ehci.h"
Michael Trimarchiaaf098c2008-11-28 13:20:46 +010023
Lucas Stach676ae062012-09-26 00:14:35 +020024#ifndef CONFIG_USB_MAX_CONTROLLER_COUNT
25#define CONFIG_USB_MAX_CONTROLLER_COUNT 1
26#endif
Michael Trimarchiaaf098c2008-11-28 13:20:46 +010027
Julius Werner5077f962013-09-24 10:53:07 -070028/*
29 * EHCI spec page 20 says that the HC may take up to 16 uFrames (= 4ms) to halt.
30 * Let's time out after 8 to have a little safety margin on top of that.
31 */
32#define HCHALT_TIMEOUT (8 * 1000)
33
Simon Glass46b01792015-03-25 12:22:29 -060034#ifndef CONFIG_DM_USB
Marek Vasutb9596552013-07-10 03:16:31 +020035static struct ehci_ctrl ehcic[CONFIG_USB_MAX_CONTROLLER_COUNT];
Simon Glass46b01792015-03-25 12:22:29 -060036#endif
Tom Rini71c5de42012-07-15 22:14:24 +000037
38#define ALIGN_END_ADDR(type, ptr, size) \
Rob Herring98ae8402015-03-17 15:46:37 -050039 ((unsigned long)(ptr) + roundup((size) * sizeof(type), USB_DMA_MINALIGN))
Michael Trimarchiaaf098c2008-11-28 13:20:46 +010040
michaeldb632992008-12-10 17:55:19 +010041static struct descriptor {
42 struct usb_hub_descriptor hub;
43 struct usb_device_descriptor device;
44 struct usb_linux_config_descriptor config;
45 struct usb_linux_interface_descriptor interface;
46 struct usb_endpoint_descriptor endpoint;
47} __attribute__ ((packed)) descriptor = {
48 {
49 0x8, /* bDescLength */
50 0x29, /* bDescriptorType: hub descriptor */
51 2, /* bNrPorts -- runtime modified */
52 0, /* wHubCharacteristics */
Vincent Palatin5f4b4f22011-12-05 14:52:22 -080053 10, /* bPwrOn2PwrGood */
michaeldb632992008-12-10 17:55:19 +010054 0, /* bHubCntrCurrent */
Bin Meng337fc7e2017-07-19 21:50:00 +080055 { /* Device removable */
56 } /* at most 7 ports! XXX */
michaeldb632992008-12-10 17:55:19 +010057 },
58 {
59 0x12, /* bLength */
60 1, /* bDescriptorType: UDESC_DEVICE */
Sergei Shtylyov6d313c82010-02-27 21:29:42 +030061 cpu_to_le16(0x0200), /* bcdUSB: v2.0 */
michaeldb632992008-12-10 17:55:19 +010062 9, /* bDeviceClass: UDCLASS_HUB */
63 0, /* bDeviceSubClass: UDSUBCLASS_HUB */
64 1, /* bDeviceProtocol: UDPROTO_HSHUBSTT */
65 64, /* bMaxPacketSize: 64 bytes */
66 0x0000, /* idVendor */
67 0x0000, /* idProduct */
Sergei Shtylyov6d313c82010-02-27 21:29:42 +030068 cpu_to_le16(0x0100), /* bcdDevice */
michaeldb632992008-12-10 17:55:19 +010069 1, /* iManufacturer */
70 2, /* iProduct */
71 0, /* iSerialNumber */
72 1 /* bNumConfigurations: 1 */
73 },
74 {
75 0x9,
76 2, /* bDescriptorType: UDESC_CONFIG */
77 cpu_to_le16(0x19),
78 1, /* bNumInterface */
79 1, /* bConfigurationValue */
80 0, /* iConfiguration */
81 0x40, /* bmAttributes: UC_SELF_POWER */
82 0 /* bMaxPower */
83 },
84 {
85 0x9, /* bLength */
86 4, /* bDescriptorType: UDESC_INTERFACE */
87 0, /* bInterfaceNumber */
88 0, /* bAlternateSetting */
89 1, /* bNumEndpoints */
90 9, /* bInterfaceClass: UICLASS_HUB */
91 0, /* bInterfaceSubClass: UISUBCLASS_HUB */
92 0, /* bInterfaceProtocol: UIPROTO_HSHUBSTT */
93 0 /* iInterface */
94 },
95 {
96 0x7, /* bLength */
97 5, /* bDescriptorType: UDESC_ENDPOINT */
98 0x81, /* bEndpointAddress:
99 * UE_DIR_IN | EHCI_INTR_ENDPT
100 */
101 3, /* bmAttributes: UE_INTERRUPT */
Tom Rix8f8bd562009-10-31 12:37:38 -0500102 8, /* wMaxPacketSize */
michaeldb632992008-12-10 17:55:19 +0100103 255 /* bInterval */
104 },
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100105};
106
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100107#if defined(CONFIG_EHCI_IS_TDI)
108#define ehci_is_TDI() (1)
109#else
110#define ehci_is_TDI() (0)
111#endif
112
Simon Glass24ed8942015-03-25 12:22:25 -0600113static struct ehci_ctrl *ehci_get_ctrl(struct usb_device *udev)
114{
Simon Glass46b01792015-03-25 12:22:29 -0600115#ifdef CONFIG_DM_USB
Hans de Goede25c8ebd2015-05-05 11:54:33 +0200116 return dev_get_priv(usb_get_bus(udev->dev));
Simon Glass46b01792015-03-25 12:22:29 -0600117#else
Simon Glass24ed8942015-03-25 12:22:25 -0600118 return udev->controller;
Simon Glass46b01792015-03-25 12:22:29 -0600119#endif
Simon Glass24ed8942015-03-25 12:22:25 -0600120}
121
Simon Glassdeb85082015-03-25 12:22:27 -0600122static int ehci_get_port_speed(struct ehci_ctrl *ctrl, uint32_t reg)
Jim Linb068deb2013-03-27 00:52:32 +0000123{
124 return PORTSC_PSPD(reg);
125}
126
Simon Glassdeb85082015-03-25 12:22:27 -0600127static void ehci_set_usbmode(struct ehci_ctrl *ctrl)
Jim Linb068deb2013-03-27 00:52:32 +0000128{
129 uint32_t tmp;
130 uint32_t *reg_ptr;
131
Simon Glass11d18a12015-03-25 12:22:23 -0600132 reg_ptr = (uint32_t *)((u8 *)&ctrl->hcor->or_usbcmd + USBMODE);
Jim Linb068deb2013-03-27 00:52:32 +0000133 tmp = ehci_readl(reg_ptr);
134 tmp |= USBMODE_CM_HC;
135#if defined(CONFIG_EHCI_MMIO_BIG_ENDIAN)
136 tmp |= USBMODE_BE;
Marek Vasut7ab0d352016-01-23 21:04:46 +0100137#else
138 tmp &= ~USBMODE_BE;
Jim Linb068deb2013-03-27 00:52:32 +0000139#endif
140 ehci_writel(reg_ptr, tmp);
141}
142
Simon Glassdeb85082015-03-25 12:22:27 -0600143static void ehci_powerup_fixup(struct ehci_ctrl *ctrl, uint32_t *status_reg,
Simon Glass727fce32015-03-25 12:22:21 -0600144 uint32_t *reg)
Marek Vasut3874b6d2011-07-11 02:37:01 +0200145{
146 mdelay(50);
147}
148
Simon Glassdeb85082015-03-25 12:22:27 -0600149static uint32_t *ehci_get_portsc_register(struct ehci_ctrl *ctrl, int port)
Simon Glassaac064f2015-03-25 12:22:17 -0600150{
Bin Meng99c22552017-07-19 21:50:05 +0800151 int max_ports = HCS_N_PORTS(ehci_readl(&ctrl->hccr->cr_hcsparams));
152
153 if (port < 0 || port >= max_ports) {
Simon Glassaac064f2015-03-25 12:22:17 -0600154 /* Printing the message would cause a scan failure! */
Bin Meng99c22552017-07-19 21:50:05 +0800155 debug("The request port(%u) exceeds maximum port number\n",
156 port);
Simon Glassaac064f2015-03-25 12:22:17 -0600157 return NULL;
158 }
159
Simon Glass6a1a8162015-03-25 12:22:24 -0600160 return (uint32_t *)&ctrl->hcor->or_portsc[port];
Simon Glassaac064f2015-03-25 12:22:17 -0600161}
162
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100163static int handshake(uint32_t *ptr, uint32_t mask, uint32_t done, int usec)
michaeldb632992008-12-10 17:55:19 +0100164{
michael51ab1422008-12-11 13:43:55 +0100165 uint32_t result;
166 do {
167 result = ehci_readl(ptr);
Wolfgang Denk09c83a42010-10-22 14:23:00 +0200168 udelay(5);
michael51ab1422008-12-11 13:43:55 +0100169 if (result == ~(uint32_t)0)
170 return -1;
171 result &= mask;
172 if (result == done)
173 return 0;
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100174 usec--;
175 } while (usec > 0);
michael51ab1422008-12-11 13:43:55 +0100176 return -1;
177}
178
Simon Glassaeca43e2015-03-25 12:22:28 -0600179static int ehci_reset(struct ehci_ctrl *ctrl)
michael51ab1422008-12-11 13:43:55 +0100180{
181 uint32_t cmd;
michael51ab1422008-12-11 13:43:55 +0100182 int ret = 0;
183
Simon Glassaeca43e2015-03-25 12:22:28 -0600184 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
Stefan Roese273d7202010-11-26 15:44:00 +0100185 cmd = (cmd & ~CMD_RUN) | CMD_RESET;
Simon Glassaeca43e2015-03-25 12:22:28 -0600186 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
187 ret = handshake((uint32_t *)&ctrl->hcor->or_usbcmd,
Lucas Stach676ae062012-09-26 00:14:35 +0200188 CMD_RESET, 0, 250 * 1000);
michael51ab1422008-12-11 13:43:55 +0100189 if (ret < 0) {
190 printf("EHCI fail to reset\n");
191 goto out;
192 }
193
Jim Linb068deb2013-03-27 00:52:32 +0000194 if (ehci_is_TDI())
Simon Glassaeca43e2015-03-25 12:22:28 -0600195 ctrl->ops.set_usb_mode(ctrl);
Simon Glass9ab4ce22012-02-27 10:52:47 +0000196
197#ifdef CONFIG_USB_EHCI_TXFIFO_THRESH
Simon Glassaeca43e2015-03-25 12:22:28 -0600198 cmd = ehci_readl(&ctrl->hcor->or_txfilltuning);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200199 cmd &= ~TXFIFO_THRESH_MASK;
Simon Glass9ab4ce22012-02-27 10:52:47 +0000200 cmd |= TXFIFO_THRESH(CONFIG_USB_EHCI_TXFIFO_THRESH);
Simon Glassaeca43e2015-03-25 12:22:28 -0600201 ehci_writel(&ctrl->hcor->or_txfilltuning, cmd);
Simon Glass9ab4ce22012-02-27 10:52:47 +0000202#endif
michael51ab1422008-12-11 13:43:55 +0100203out:
204 return ret;
michaeldb632992008-12-10 17:55:19 +0100205}
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100206
Julius Werner5077f962013-09-24 10:53:07 -0700207static int ehci_shutdown(struct ehci_ctrl *ctrl)
208{
209 int i, ret = 0;
210 uint32_t cmd, reg;
Bin Meng99c22552017-07-19 21:50:05 +0800211 int max_ports = HCS_N_PORTS(ehci_readl(&ctrl->hccr->cr_hcsparams));
Julius Werner5077f962013-09-24 10:53:07 -0700212
213 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
Peng Fan1e6fb0e2016-06-15 13:15:46 +0800214 /* If not run, directly return */
215 if (!(cmd & CMD_RUN))
216 return 0;
Julius Werner5077f962013-09-24 10:53:07 -0700217 cmd &= ~(CMD_PSE | CMD_ASE);
218 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
219 ret = handshake(&ctrl->hcor->or_usbsts, STS_ASS | STS_PSS, 0,
220 100 * 1000);
221
222 if (!ret) {
Bin Meng99c22552017-07-19 21:50:05 +0800223 for (i = 0; i < max_ports; i++) {
Julius Werner5077f962013-09-24 10:53:07 -0700224 reg = ehci_readl(&ctrl->hcor->or_portsc[i]);
225 reg |= EHCI_PS_SUSP;
226 ehci_writel(&ctrl->hcor->or_portsc[i], reg);
227 }
228
229 cmd &= ~CMD_RUN;
230 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
231 ret = handshake(&ctrl->hcor->or_usbsts, STS_HALT, STS_HALT,
232 HCHALT_TIMEOUT);
233 }
234
235 if (ret)
236 puts("EHCI failed to shut down host controller.\n");
237
238 return ret;
239}
240
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100241static int ehci_td_buffer(struct qTD *td, void *buf, size_t sz)
242{
Marek Vasutb8adb122012-04-09 04:07:46 +0200243 uint32_t delta, next;
Marek Vasutabd702f2016-02-26 19:23:27 +0100244 unsigned long addr = (unsigned long)buf;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100245 int idx;
246
Ilya Yanok189a6952012-07-15 04:43:49 +0000247 if (addr != ALIGN(addr, ARCH_DMA_MINALIGN))
Marek Vasutb8adb122012-04-09 04:07:46 +0200248 debug("EHCI-HCD: Misaligned buffer address (%p)\n", buf);
249
Ilya Yanok189a6952012-07-15 04:43:49 +0000250 flush_dcache_range(addr, ALIGN(addr + sz, ARCH_DMA_MINALIGN));
251
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100252 idx = 0;
Benoît Thébaudeaucdeb9162012-07-19 22:16:38 +0200253 while (idx < QT_BUFFER_CNT) {
Marek Vasutcf7c93c2016-01-23 21:04:46 +0100254 td->qt_buffer[idx] = cpu_to_hc32(virt_to_phys((void *)addr));
Wolfgang Denk3ed16072010-10-19 16:13:15 +0200255 td->qt_buffer_hi[idx] = 0;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200256 next = (addr + EHCI_PAGE_SIZE) & ~(EHCI_PAGE_SIZE - 1);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100257 delta = next - addr;
258 if (delta >= sz)
259 break;
260 sz -= delta;
261 addr = next;
262 idx++;
263 }
264
Benoît Thébaudeaucdeb9162012-07-19 22:16:38 +0200265 if (idx == QT_BUFFER_CNT) {
Rob Herring98ae8402015-03-17 15:46:37 -0500266 printf("out of buffer pointers (%zu bytes left)\n", sz);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100267 return -1;
268 }
269
270 return 0;
271}
272
Ilya Yanokc60795f2012-11-06 13:48:20 +0000273static inline u8 ehci_encode_speed(enum usb_device_speed speed)
274{
275 #define QH_HIGH_SPEED 2
276 #define QH_FULL_SPEED 0
277 #define QH_LOW_SPEED 1
278 if (speed == USB_SPEED_HIGH)
279 return QH_HIGH_SPEED;
280 if (speed == USB_SPEED_LOW)
281 return QH_LOW_SPEED;
282 return QH_FULL_SPEED;
283}
284
Simon Glass46b01792015-03-25 12:22:29 -0600285static void ehci_update_endpt2_dev_n_port(struct usb_device *udev,
Hans de Goede4e2c4ad2014-09-20 16:51:22 +0200286 struct QH *qh)
287{
Stefan Brünsfaa7db22015-12-22 01:21:03 +0100288 uint8_t portnr = 0;
289 uint8_t hubaddr = 0;
Hans de Goede4e2c4ad2014-09-20 16:51:22 +0200290
Simon Glass46b01792015-03-25 12:22:29 -0600291 if (udev->speed != USB_SPEED_LOW && udev->speed != USB_SPEED_FULL)
Hans de Goede4e2c4ad2014-09-20 16:51:22 +0200292 return;
293
Stefan Brünsfaa7db22015-12-22 01:21:03 +0100294 usb_find_usb2_hub_address_port(udev, &hubaddr, &portnr);
Simon Glass46b01792015-03-25 12:22:29 -0600295
Stefan Brünsfaa7db22015-12-22 01:21:03 +0100296 qh->qh_endpt2 |= cpu_to_hc32(QH_ENDPT2_PORTNUM(portnr) |
297 QH_ENDPT2_HUBADDR(hubaddr));
Hans de Goede4e2c4ad2014-09-20 16:51:22 +0200298}
299
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100300static int
301ehci_submit_async(struct usb_device *dev, unsigned long pipe, void *buffer,
302 int length, struct devrequest *req)
303{
Tom Rini71c5de42012-07-15 22:14:24 +0000304 ALLOC_ALIGN_BUFFER(struct QH, qh, 1, USB_DMA_MINALIGN);
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200305 struct qTD *qtd;
306 int qtd_count = 0;
Marek Vasutde98e8b2012-04-08 23:32:05 +0200307 int qtd_counter = 0;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100308 volatile struct qTD *vtd;
309 unsigned long ts;
310 uint32_t *tdp;
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200311 uint32_t endpt, maxpacket, token, usbsts;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100312 uint32_t c, toggle;
michaeldb632992008-12-10 17:55:19 +0100313 uint32_t cmd;
Simon Glass96820a32011-02-07 14:42:16 -0800314 int timeout;
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100315 int ret = 0;
Simon Glass24ed8942015-03-25 12:22:25 -0600316 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100317
michaeldb632992008-12-10 17:55:19 +0100318 debug("dev=%p, pipe=%lx, buffer=%p, length=%d, req=%p\n", dev, pipe,
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100319 buffer, length, req);
320 if (req != NULL)
michaeldb632992008-12-10 17:55:19 +0100321 debug("req=%u (%#x), type=%u (%#x), value=%u (%#x), index=%u\n",
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100322 req->request, req->request,
323 req->requesttype, req->requesttype,
324 le16_to_cpu(req->value), le16_to_cpu(req->value),
michaeldb632992008-12-10 17:55:19 +0100325 le16_to_cpu(req->index));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100326
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200327#define PKT_ALIGN 512
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200328 /*
329 * The USB transfer is split into qTD transfers. Eeach qTD transfer is
330 * described by a transfer descriptor (the qTD). The qTDs form a linked
331 * list with a queue head (QH).
332 *
333 * Each qTD transfer starts with a new USB packet, i.e. a packet cannot
334 * have its beginning in a qTD transfer and its end in the following
335 * one, so the qTD transfer lengths have to be chosen accordingly.
336 *
337 * Each qTD transfer uses up to QT_BUFFER_CNT data buffers, mapped to
338 * single pages. The first data buffer can start at any offset within a
339 * page (not considering the cache-line alignment issues), while the
340 * following buffers must be page-aligned. There is no alignment
341 * constraint on the size of a qTD transfer.
342 */
343 if (req != NULL)
344 /* 1 qTD will be needed for SETUP, and 1 for ACK. */
345 qtd_count += 1 + 1;
346 if (length > 0 || req == NULL) {
347 /*
348 * Determine the qTD transfer size that will be used for the
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200349 * data payload (not considering the first qTD transfer, which
350 * may be longer or shorter, and the final one, which may be
351 * shorter).
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200352 *
353 * In order to keep each packet within a qTD transfer, the qTD
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200354 * transfer size is aligned to PKT_ALIGN, which is a multiple of
355 * wMaxPacketSize (except in some cases for interrupt transfers,
356 * see comment in submit_int_msg()).
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200357 *
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200358 * By default, i.e. if the input buffer is aligned to PKT_ALIGN,
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200359 * QT_BUFFER_CNT full pages will be used.
360 */
361 int xfr_sz = QT_BUFFER_CNT;
362 /*
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200363 * However, if the input buffer is not aligned to PKT_ALIGN, the
364 * qTD transfer size will be one page shorter, and the first qTD
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200365 * data buffer of each transfer will be page-unaligned.
366 */
Rob Herring98ae8402015-03-17 15:46:37 -0500367 if ((unsigned long)buffer & (PKT_ALIGN - 1))
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200368 xfr_sz--;
369 /* Convert the qTD transfer size to bytes. */
370 xfr_sz *= EHCI_PAGE_SIZE;
371 /*
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200372 * Approximate by excess the number of qTDs that will be
373 * required for the data payload. The exact formula is way more
374 * complicated and saves at most 2 qTDs, i.e. a total of 128
375 * bytes.
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200376 */
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200377 qtd_count += 2 + length / xfr_sz;
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200378 }
379/*
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200380 * Threshold value based on the worst-case total size of the allocated qTDs for
381 * a mass-storage transfer of 65535 blocks of 512 bytes.
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200382 */
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200383#if CONFIG_SYS_MALLOC_LEN <= 64 + 128 * 1024
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200384#warning CONFIG_SYS_MALLOC_LEN may be too small for EHCI
385#endif
386 qtd = memalign(USB_DMA_MINALIGN, qtd_count * sizeof(struct qTD));
387 if (qtd == NULL) {
388 printf("unable to allocate TDs\n");
389 return -1;
390 }
391
Tom Rini71c5de42012-07-15 22:14:24 +0000392 memset(qh, 0, sizeof(struct QH));
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200393 memset(qtd, 0, qtd_count * sizeof(*qtd));
Marek Vasutde98e8b2012-04-08 23:32:05 +0200394
Marek Vasutb8adb122012-04-09 04:07:46 +0200395 toggle = usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
396
Marek Vasut41b1f0a2012-04-09 04:13:00 +0200397 /*
398 * Setup QH (3.6 in ehci-r10.pdf)
399 *
400 * qh_link ................. 03-00 H
401 * qh_endpt1 ............... 07-04 H
402 * qh_endpt2 ............... 0B-08 H
403 * - qh_curtd
404 * qh_overlay.qt_next ...... 13-10 H
405 * - qh_overlay.qt_altnext
406 */
Marek Vasutcf7c93c2016-01-23 21:04:46 +0100407 qh->qh_link = cpu_to_hc32(virt_to_phys(&ctrl->qh_list) | QH_LINK_TYPE_QH);
Ilya Yanokc60795f2012-11-06 13:48:20 +0000408 c = (dev->speed != USB_SPEED_HIGH) && !usb_pipeendpoint(pipe);
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200409 maxpacket = usb_maxpacket(dev, pipe);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200410 endpt = QH_ENDPT1_RL(8) | QH_ENDPT1_C(c) |
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200411 QH_ENDPT1_MAXPKTLEN(maxpacket) | QH_ENDPT1_H(0) |
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200412 QH_ENDPT1_DTC(QH_ENDPT1_DTC_DT_FROM_QTD) |
Ilya Yanokc60795f2012-11-06 13:48:20 +0000413 QH_ENDPT1_EPS(ehci_encode_speed(dev->speed)) |
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200414 QH_ENDPT1_ENDPT(usb_pipeendpoint(pipe)) | QH_ENDPT1_I(0) |
415 QH_ENDPT1_DEVADDR(usb_pipedevice(pipe));
Tom Rini71c5de42012-07-15 22:14:24 +0000416 qh->qh_endpt1 = cpu_to_hc32(endpt);
Hans de Goede4e2c4ad2014-09-20 16:51:22 +0200417 endpt = QH_ENDPT2_MULT(1) | QH_ENDPT2_UFCMASK(0) | QH_ENDPT2_UFSMASK(0);
Tom Rini71c5de42012-07-15 22:14:24 +0000418 qh->qh_endpt2 = cpu_to_hc32(endpt);
Hans de Goede4e2c4ad2014-09-20 16:51:22 +0200419 ehci_update_endpt2_dev_n_port(dev, qh);
Tom Rini71c5de42012-07-15 22:14:24 +0000420 qh->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
Stephen Warren2456b972014-02-07 09:53:50 -0700421 qh->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100422
Tom Rini71c5de42012-07-15 22:14:24 +0000423 tdp = &qh->qh_overlay.qt_next;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100424 if (req != NULL) {
Marek Vasut41b1f0a2012-04-09 04:13:00 +0200425 /*
426 * Setup request qTD (3.5 in ehci-r10.pdf)
427 *
428 * qt_next ................ 03-00 H
429 * qt_altnext ............. 07-04 H
430 * qt_token ............... 0B-08 H
431 *
432 * [ buffer, buffer_hi ] loaded with "req".
433 */
Marek Vasutde98e8b2012-04-08 23:32:05 +0200434 qtd[qtd_counter].qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
435 qtd[qtd_counter].qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200436 token = QT_TOKEN_DT(0) | QT_TOKEN_TOTALBYTES(sizeof(*req)) |
437 QT_TOKEN_IOC(0) | QT_TOKEN_CPAGE(0) | QT_TOKEN_CERR(3) |
438 QT_TOKEN_PID(QT_TOKEN_PID_SETUP) |
439 QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE);
Marek Vasutde98e8b2012-04-08 23:32:05 +0200440 qtd[qtd_counter].qt_token = cpu_to_hc32(token);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200441 if (ehci_td_buffer(&qtd[qtd_counter], req, sizeof(*req))) {
442 printf("unable to construct SETUP TD\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100443 goto fail;
444 }
Marek Vasut41b1f0a2012-04-09 04:13:00 +0200445 /* Update previous qTD! */
Marek Vasutcf7c93c2016-01-23 21:04:46 +0100446 *tdp = cpu_to_hc32(virt_to_phys(&qtd[qtd_counter]));
Marek Vasutde98e8b2012-04-08 23:32:05 +0200447 tdp = &qtd[qtd_counter++].qt_next;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100448 toggle = 1;
449 }
450
451 if (length > 0 || req == NULL) {
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200452 uint8_t *buf_ptr = buffer;
453 int left_length = length;
454
455 do {
456 /*
457 * Determine the size of this qTD transfer. By default,
458 * QT_BUFFER_CNT full pages can be used.
459 */
460 int xfr_bytes = QT_BUFFER_CNT * EHCI_PAGE_SIZE;
461 /*
462 * However, if the input buffer is not page-aligned, the
463 * portion of the first page before the buffer start
464 * offset within that page is unusable.
465 */
Rob Herring98ae8402015-03-17 15:46:37 -0500466 xfr_bytes -= (unsigned long)buf_ptr & (EHCI_PAGE_SIZE - 1);
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200467 /*
468 * In order to keep each packet within a qTD transfer,
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200469 * align the qTD transfer size to PKT_ALIGN.
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200470 */
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200471 xfr_bytes &= ~(PKT_ALIGN - 1);
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200472 /*
473 * This transfer may be shorter than the available qTD
474 * transfer size that has just been computed.
475 */
476 xfr_bytes = min(xfr_bytes, left_length);
477
478 /*
479 * Setup request qTD (3.5 in ehci-r10.pdf)
480 *
481 * qt_next ................ 03-00 H
482 * qt_altnext ............. 07-04 H
483 * qt_token ............... 0B-08 H
484 *
485 * [ buffer, buffer_hi ] loaded with "buffer".
486 */
487 qtd[qtd_counter].qt_next =
488 cpu_to_hc32(QT_NEXT_TERMINATE);
489 qtd[qtd_counter].qt_altnext =
490 cpu_to_hc32(QT_NEXT_TERMINATE);
491 token = QT_TOKEN_DT(toggle) |
492 QT_TOKEN_TOTALBYTES(xfr_bytes) |
493 QT_TOKEN_IOC(req == NULL) | QT_TOKEN_CPAGE(0) |
494 QT_TOKEN_CERR(3) |
495 QT_TOKEN_PID(usb_pipein(pipe) ?
496 QT_TOKEN_PID_IN : QT_TOKEN_PID_OUT) |
497 QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE);
498 qtd[qtd_counter].qt_token = cpu_to_hc32(token);
499 if (ehci_td_buffer(&qtd[qtd_counter], buf_ptr,
500 xfr_bytes)) {
501 printf("unable to construct DATA TD\n");
502 goto fail;
503 }
504 /* Update previous qTD! */
Marek Vasutcf7c93c2016-01-23 21:04:46 +0100505 *tdp = cpu_to_hc32(virt_to_phys(&qtd[qtd_counter]));
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200506 tdp = &qtd[qtd_counter++].qt_next;
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200507 /*
508 * Data toggle has to be adjusted since the qTD transfer
509 * size is not always an even multiple of
510 * wMaxPacketSize.
511 */
512 if ((xfr_bytes / maxpacket) & 1)
513 toggle ^= 1;
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200514 buf_ptr += xfr_bytes;
515 left_length -= xfr_bytes;
516 } while (left_length > 0);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100517 }
518
519 if (req != NULL) {
Marek Vasut41b1f0a2012-04-09 04:13:00 +0200520 /*
521 * Setup request qTD (3.5 in ehci-r10.pdf)
522 *
523 * qt_next ................ 03-00 H
524 * qt_altnext ............. 07-04 H
525 * qt_token ............... 0B-08 H
526 */
Marek Vasutde98e8b2012-04-08 23:32:05 +0200527 qtd[qtd_counter].qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
528 qtd[qtd_counter].qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200529 token = QT_TOKEN_DT(1) | QT_TOKEN_TOTALBYTES(0) |
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200530 QT_TOKEN_IOC(1) | QT_TOKEN_CPAGE(0) | QT_TOKEN_CERR(3) |
531 QT_TOKEN_PID(usb_pipein(pipe) ?
532 QT_TOKEN_PID_OUT : QT_TOKEN_PID_IN) |
533 QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE);
Marek Vasutde98e8b2012-04-08 23:32:05 +0200534 qtd[qtd_counter].qt_token = cpu_to_hc32(token);
Marek Vasut41b1f0a2012-04-09 04:13:00 +0200535 /* Update previous qTD! */
Marek Vasutcf7c93c2016-01-23 21:04:46 +0100536 *tdp = cpu_to_hc32(virt_to_phys(&qtd[qtd_counter]));
Marek Vasutde98e8b2012-04-08 23:32:05 +0200537 tdp = &qtd[qtd_counter++].qt_next;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100538 }
539
Marek Vasutcf7c93c2016-01-23 21:04:46 +0100540 ctrl->qh_list.qh_link = cpu_to_hc32(virt_to_phys(qh) | QH_LINK_TYPE_QH);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100541
Stefan Roesedaa2daf2009-01-21 17:12:19 +0100542 /* Flush dcache */
Rob Herring98ae8402015-03-17 15:46:37 -0500543 flush_dcache_range((unsigned long)&ctrl->qh_list,
Lucas Stach676ae062012-09-26 00:14:35 +0200544 ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1));
Rob Herring98ae8402015-03-17 15:46:37 -0500545 flush_dcache_range((unsigned long)qh, ALIGN_END_ADDR(struct QH, qh, 1));
546 flush_dcache_range((unsigned long)qtd,
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200547 ALIGN_END_ADDR(struct qTD, qtd, qtd_count));
Stefan Roesedaa2daf2009-01-21 17:12:19 +0100548
Ilya Yanokc7701af2012-07-15 22:12:08 +0000549 /* Set async. queue head pointer. */
Marek Vasutcf7c93c2016-01-23 21:04:46 +0100550 ehci_writel(&ctrl->hcor->or_asynclistaddr, virt_to_phys(&ctrl->qh_list));
Ilya Yanokc7701af2012-07-15 22:12:08 +0000551
Lucas Stach676ae062012-09-26 00:14:35 +0200552 usbsts = ehci_readl(&ctrl->hcor->or_usbsts);
553 ehci_writel(&ctrl->hcor->or_usbsts, (usbsts & 0x3f));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100554
555 /* Enable async. schedule. */
Lucas Stach676ae062012-09-26 00:14:35 +0200556 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
michael51ab1422008-12-11 13:43:55 +0100557 cmd |= CMD_ASE;
Lucas Stach676ae062012-09-26 00:14:35 +0200558 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
michaeldb632992008-12-10 17:55:19 +0100559
Lucas Stach676ae062012-09-26 00:14:35 +0200560 ret = handshake((uint32_t *)&ctrl->hcor->or_usbsts, STS_ASS, STS_ASS,
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100561 100 * 1000);
562 if (ret < 0) {
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200563 printf("EHCI fail timeout STS_ASS set\n");
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100564 goto fail;
michael51ab1422008-12-11 13:43:55 +0100565 }
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100566
567 /* Wait for TDs to be processed. */
568 ts = get_timer(0);
Marek Vasutde98e8b2012-04-08 23:32:05 +0200569 vtd = &qtd[qtd_counter - 1];
Simon Glass96820a32011-02-07 14:42:16 -0800570 timeout = USB_TIMEOUT_MS(pipe);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100571 do {
Stefan Roesedaa2daf2009-01-21 17:12:19 +0100572 /* Invalidate dcache */
Rob Herring98ae8402015-03-17 15:46:37 -0500573 invalidate_dcache_range((unsigned long)&ctrl->qh_list,
Lucas Stach676ae062012-09-26 00:14:35 +0200574 ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1));
Rob Herring98ae8402015-03-17 15:46:37 -0500575 invalidate_dcache_range((unsigned long)qh,
Tom Rini71c5de42012-07-15 22:14:24 +0000576 ALIGN_END_ADDR(struct QH, qh, 1));
Rob Herring98ae8402015-03-17 15:46:37 -0500577 invalidate_dcache_range((unsigned long)qtd,
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200578 ALIGN_END_ADDR(struct qTD, qtd, qtd_count));
Marek Vasutb8adb122012-04-09 04:07:46 +0200579
michaeldb632992008-12-10 17:55:19 +0100580 token = hc32_to_cpu(vtd->qt_token);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200581 if (!(QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE))
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100582 break;
Stefan Roese67333f72010-11-26 15:43:28 +0100583 WATCHDOG_RESET();
Simon Glass96820a32011-02-07 14:42:16 -0800584 } while (get_timer(ts) < timeout);
585
Ilya Yanok189a6952012-07-15 04:43:49 +0000586 /*
587 * Invalidate the memory area occupied by buffer
588 * Don't try to fix the buffer alignment, if it isn't properly
589 * aligned it's upper layer's fault so let invalidate_dcache_range()
590 * vow about it. But we have to fix the length as it's actual
591 * transfer length and can be unaligned. This is potentially
592 * dangerous operation, it's responsibility of the calling
593 * code to make sure enough space is reserved.
594 */
Dirk Behmeb3cbcd92017-11-17 15:28:36 +0100595 if (buffer != NULL && length > 0)
596 invalidate_dcache_range((unsigned long)buffer,
597 ALIGN((unsigned long)buffer + length, ARCH_DMA_MINALIGN));
Marek Vasutb8adb122012-04-09 04:07:46 +0200598
Simon Glass96820a32011-02-07 14:42:16 -0800599 /* Check that the TD processing happened */
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200600 if (QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE)
Simon Glass96820a32011-02-07 14:42:16 -0800601 printf("EHCI timed out on TD - token=%#x\n", token);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100602
603 /* Disable async schedule. */
Lucas Stach676ae062012-09-26 00:14:35 +0200604 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
michaeldb632992008-12-10 17:55:19 +0100605 cmd &= ~CMD_ASE;
Lucas Stach676ae062012-09-26 00:14:35 +0200606 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
michael51ab1422008-12-11 13:43:55 +0100607
Lucas Stach676ae062012-09-26 00:14:35 +0200608 ret = handshake((uint32_t *)&ctrl->hcor->or_usbsts, STS_ASS, 0,
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100609 100 * 1000);
610 if (ret < 0) {
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200611 printf("EHCI fail timeout STS_ASS reset\n");
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100612 goto fail;
michael51ab1422008-12-11 13:43:55 +0100613 }
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100614
Tom Rini71c5de42012-07-15 22:14:24 +0000615 token = hc32_to_cpu(qh->qh_overlay.qt_token);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200616 if (!(QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE)) {
michaeldb632992008-12-10 17:55:19 +0100617 debug("TOKEN=%#x\n", token);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200618 switch (QT_TOKEN_GET_STATUS(token) &
619 ~(QT_TOKEN_STATUS_SPLITXSTATE | QT_TOKEN_STATUS_PERR)) {
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100620 case 0:
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200621 toggle = QT_TOKEN_GET_DT(token);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100622 usb_settoggle(dev, usb_pipeendpoint(pipe),
623 usb_pipeout(pipe), toggle);
624 dev->status = 0;
625 break;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200626 case QT_TOKEN_STATUS_HALTED:
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100627 dev->status = USB_ST_STALLED;
628 break;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200629 case QT_TOKEN_STATUS_ACTIVE | QT_TOKEN_STATUS_DATBUFERR:
630 case QT_TOKEN_STATUS_DATBUFERR:
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100631 dev->status = USB_ST_BUF_ERR;
632 break;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200633 case QT_TOKEN_STATUS_HALTED | QT_TOKEN_STATUS_BABBLEDET:
634 case QT_TOKEN_STATUS_BABBLEDET:
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100635 dev->status = USB_ST_BABBLE_DET;
636 break;
637 default:
638 dev->status = USB_ST_CRC_ERR;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200639 if (QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_HALTED)
Anatolij Gustschin222d6df2010-11-02 11:47:29 +0100640 dev->status |= USB_ST_STALLED;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100641 break;
642 }
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200643 dev->act_len = length - QT_TOKEN_GET_TOTALBYTES(token);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100644 } else {
645 dev->act_len = 0;
Kuo-Jung Sue82a3162013-05-15 15:29:23 +0800646#ifndef CONFIG_USB_EHCI_FARADAY
michaeldb632992008-12-10 17:55:19 +0100647 debug("dev=%u, usbsts=%#x, p[1]=%#x, p[2]=%#x\n",
Lucas Stach676ae062012-09-26 00:14:35 +0200648 dev->devnum, ehci_readl(&ctrl->hcor->or_usbsts),
649 ehci_readl(&ctrl->hcor->or_portsc[0]),
650 ehci_readl(&ctrl->hcor->or_portsc[1]));
Kuo-Jung Sue82a3162013-05-15 15:29:23 +0800651#endif
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100652 }
653
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200654 free(qtd);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100655 return (dev->status != USB_ST_NOT_PROC) ? 0 : -1;
656
657fail:
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200658 free(qtd);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100659 return -1;
660}
661
Simon Glass24ed8942015-03-25 12:22:25 -0600662static int ehci_submit_root(struct usb_device *dev, unsigned long pipe,
663 void *buffer, int length, struct devrequest *req)
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100664{
665 uint8_t tmpbuf[4];
666 u16 typeReq;
michaeldb632992008-12-10 17:55:19 +0100667 void *srcptr = NULL;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100668 int len, srclen;
669 uint32_t reg;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100670 uint32_t *status_reg;
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000671 int port = le16_to_cpu(req->index) & 0xff;
Simon Glass24ed8942015-03-25 12:22:25 -0600672 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100673
674 srclen = 0;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100675
michaeldb632992008-12-10 17:55:19 +0100676 debug("req=%u (%#x), type=%u (%#x), value=%u, index=%u\n",
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100677 req->request, req->request,
678 req->requesttype, req->requesttype,
679 le16_to_cpu(req->value), le16_to_cpu(req->index));
680
Prafulla Wadaskar44259bb2009-07-17 19:56:30 +0530681 typeReq = req->request | req->requesttype << 8;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100682
Prafulla Wadaskar44259bb2009-07-17 19:56:30 +0530683 switch (typeReq) {
Kuo-Jung Su9c6a9d72013-05-15 15:29:20 +0800684 case USB_REQ_GET_STATUS | ((USB_RT_PORT | USB_DIR_IN) << 8):
685 case USB_REQ_SET_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
686 case USB_REQ_CLEAR_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
Simon Glassdeb85082015-03-25 12:22:27 -0600687 status_reg = ctrl->ops.get_portsc_register(ctrl, port - 1);
Kuo-Jung Su1dde1422013-05-15 15:29:21 +0800688 if (!status_reg)
Kuo-Jung Su9c6a9d72013-05-15 15:29:20 +0800689 return -1;
Kuo-Jung Su9c6a9d72013-05-15 15:29:20 +0800690 break;
691 default:
692 status_reg = NULL;
693 break;
694 }
695
696 switch (typeReq) {
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100697 case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
698 switch (le16_to_cpu(req->value) >> 8) {
699 case USB_DT_DEVICE:
michaeldb632992008-12-10 17:55:19 +0100700 debug("USB_DT_DEVICE request\n");
701 srcptr = &descriptor.device;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200702 srclen = descriptor.device.bLength;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100703 break;
704 case USB_DT_CONFIG:
michaeldb632992008-12-10 17:55:19 +0100705 debug("USB_DT_CONFIG config\n");
706 srcptr = &descriptor.config;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200707 srclen = descriptor.config.bLength +
708 descriptor.interface.bLength +
709 descriptor.endpoint.bLength;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100710 break;
711 case USB_DT_STRING:
michaeldb632992008-12-10 17:55:19 +0100712 debug("USB_DT_STRING config\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100713 switch (le16_to_cpu(req->value) & 0xff) {
714 case 0: /* Language */
715 srcptr = "\4\3\1\0";
716 srclen = 4;
717 break;
718 case 1: /* Vendor */
719 srcptr = "\16\3u\0-\0b\0o\0o\0t\0";
720 srclen = 14;
721 break;
722 case 2: /* Product */
723 srcptr = "\52\3E\0H\0C\0I\0 "
724 "\0H\0o\0s\0t\0 "
725 "\0C\0o\0n\0t\0r\0o\0l\0l\0e\0r\0";
726 srclen = 42;
727 break;
728 default:
michaeldb632992008-12-10 17:55:19 +0100729 debug("unknown value DT_STRING %x\n",
730 le16_to_cpu(req->value));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100731 goto unknown;
732 }
733 break;
734 default:
michaeldb632992008-12-10 17:55:19 +0100735 debug("unknown value %x\n", le16_to_cpu(req->value));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100736 goto unknown;
737 }
738 break;
739 case USB_REQ_GET_DESCRIPTOR | ((USB_DIR_IN | USB_RT_HUB) << 8):
740 switch (le16_to_cpu(req->value) >> 8) {
741 case USB_DT_HUB:
michaeldb632992008-12-10 17:55:19 +0100742 debug("USB_DT_HUB config\n");
743 srcptr = &descriptor.hub;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200744 srclen = descriptor.hub.bLength;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100745 break;
746 default:
michaeldb632992008-12-10 17:55:19 +0100747 debug("unknown value %x\n", le16_to_cpu(req->value));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100748 goto unknown;
749 }
750 break;
751 case USB_REQ_SET_ADDRESS | (USB_RECIP_DEVICE << 8):
michaeldb632992008-12-10 17:55:19 +0100752 debug("USB_REQ_SET_ADDRESS\n");
Lucas Stach676ae062012-09-26 00:14:35 +0200753 ctrl->rootdev = le16_to_cpu(req->value);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100754 break;
755 case DeviceOutRequest | USB_REQ_SET_CONFIGURATION:
michaeldb632992008-12-10 17:55:19 +0100756 debug("USB_REQ_SET_CONFIGURATION\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100757 /* Nothing to do */
758 break;
759 case USB_REQ_GET_STATUS | ((USB_DIR_IN | USB_RT_HUB) << 8):
760 tmpbuf[0] = 1; /* USB_STATUS_SELFPOWERED */
761 tmpbuf[1] = 0;
762 srcptr = tmpbuf;
763 srclen = 2;
764 break;
michaeldb632992008-12-10 17:55:19 +0100765 case USB_REQ_GET_STATUS | ((USB_RT_PORT | USB_DIR_IN) << 8):
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100766 memset(tmpbuf, 0, 4);
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100767 reg = ehci_readl(status_reg);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100768 if (reg & EHCI_PS_CS)
769 tmpbuf[0] |= USB_PORT_STAT_CONNECTION;
770 if (reg & EHCI_PS_PE)
771 tmpbuf[0] |= USB_PORT_STAT_ENABLE;
772 if (reg & EHCI_PS_SUSP)
773 tmpbuf[0] |= USB_PORT_STAT_SUSPEND;
774 if (reg & EHCI_PS_OCA)
775 tmpbuf[0] |= USB_PORT_STAT_OVERCURRENT;
Sergei Shtylyovc8b2d1d2010-02-27 21:33:21 +0300776 if (reg & EHCI_PS_PR)
777 tmpbuf[0] |= USB_PORT_STAT_RESET;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100778 if (reg & EHCI_PS_PP)
779 tmpbuf[1] |= USB_PORT_STAT_POWER >> 8;
Stefan Roese597eb282009-01-21 17:12:01 +0100780
781 if (ehci_is_TDI()) {
Simon Glassdeb85082015-03-25 12:22:27 -0600782 switch (ctrl->ops.get_port_speed(ctrl, reg)) {
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200783 case PORTSC_PSPD_FS:
Stefan Roese597eb282009-01-21 17:12:01 +0100784 break;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200785 case PORTSC_PSPD_LS:
Stefan Roese597eb282009-01-21 17:12:01 +0100786 tmpbuf[1] |= USB_PORT_STAT_LOW_SPEED >> 8;
787 break;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200788 case PORTSC_PSPD_HS:
Stefan Roese597eb282009-01-21 17:12:01 +0100789 default:
790 tmpbuf[1] |= USB_PORT_STAT_HIGH_SPEED >> 8;
791 break;
792 }
793 } else {
794 tmpbuf[1] |= USB_PORT_STAT_HIGH_SPEED >> 8;
795 }
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100796
797 if (reg & EHCI_PS_CSC)
798 tmpbuf[2] |= USB_PORT_STAT_C_CONNECTION;
799 if (reg & EHCI_PS_PEC)
800 tmpbuf[2] |= USB_PORT_STAT_C_ENABLE;
801 if (reg & EHCI_PS_OCC)
802 tmpbuf[2] |= USB_PORT_STAT_C_OVERCURRENT;
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000803 if (ctrl->portreset & (1 << port))
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100804 tmpbuf[2] |= USB_PORT_STAT_C_RESET;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100805
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100806 srcptr = tmpbuf;
807 srclen = 4;
808 break;
michaeldb632992008-12-10 17:55:19 +0100809 case USB_REQ_SET_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100810 reg = ehci_readl(status_reg);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100811 reg &= ~EHCI_PS_CLEAR;
812 switch (le16_to_cpu(req->value)) {
michael51ab1422008-12-11 13:43:55 +0100813 case USB_PORT_FEAT_ENABLE:
814 reg |= EHCI_PS_PE;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100815 ehci_writel(status_reg, reg);
michael51ab1422008-12-11 13:43:55 +0100816 break;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100817 case USB_PORT_FEAT_POWER:
Lucas Stach676ae062012-09-26 00:14:35 +0200818 if (HCS_PPC(ehci_readl(&ctrl->hccr->cr_hcsparams))) {
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100819 reg |= EHCI_PS_PP;
820 ehci_writel(status_reg, reg);
821 }
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100822 break;
823 case USB_PORT_FEAT_RESET:
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100824 if ((reg & (EHCI_PS_PE | EHCI_PS_CS)) == EHCI_PS_CS &&
825 !ehci_is_TDI() &&
826 EHCI_PS_IS_LOWSPEED(reg)) {
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100827 /* Low speed device, give up ownership. */
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100828 debug("port %d low speed --> companion\n",
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000829 port - 1);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100830 reg |= EHCI_PS_PO;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100831 ehci_writel(status_reg, reg);
Hans de Goede45b9ea12015-05-10 14:10:16 +0200832 return -ENXIO;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100833 } else {
Sergei Shtylyovc8b2d1d2010-02-27 21:33:21 +0300834 int ret;
835
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100836 reg |= EHCI_PS_PR;
837 reg &= ~EHCI_PS_PE;
838 ehci_writel(status_reg, reg);
839 /*
840 * caller must wait, then call GetPortStatus
841 * usb 2.0 specification say 50 ms resets on
842 * root
843 */
Simon Glassdeb85082015-03-25 12:22:27 -0600844 ctrl->ops.powerup_fixup(ctrl, status_reg, &reg);
Marek Vasut3874b6d2011-07-11 02:37:01 +0200845
Chris Zhangb4161912010-01-06 13:34:04 -0800846 ehci_writel(status_reg, reg & ~EHCI_PS_PR);
Sergei Shtylyovc8b2d1d2010-02-27 21:33:21 +0300847 /*
848 * A host controller must terminate the reset
849 * and stabilize the state of the port within
850 * 2 milliseconds
851 */
852 ret = handshake(status_reg, EHCI_PS_PR, 0,
853 2 * 1000);
Hans de Goede71b94522015-05-10 14:10:13 +0200854 if (!ret) {
855 reg = ehci_readl(status_reg);
856 if ((reg & (EHCI_PS_PE | EHCI_PS_CS))
857 == EHCI_PS_CS && !ehci_is_TDI()) {
858 debug("port %d full speed --> companion\n", port - 1);
859 reg &= ~EHCI_PS_CLEAR;
860 reg |= EHCI_PS_PO;
861 ehci_writel(status_reg, reg);
Hans de Goede45b9ea12015-05-10 14:10:16 +0200862 return -ENXIO;
Hans de Goede71b94522015-05-10 14:10:13 +0200863 } else {
864 ctrl->portreset |= 1 << port;
865 }
866 } else {
Sergei Shtylyovc8b2d1d2010-02-27 21:33:21 +0300867 printf("port(%d) reset error\n",
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000868 port - 1);
Hans de Goede71b94522015-05-10 14:10:13 +0200869 }
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100870 }
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100871 break;
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000872 case USB_PORT_FEAT_TEST:
Julius Werner5077f962013-09-24 10:53:07 -0700873 ehci_shutdown(ctrl);
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000874 reg &= ~(0xf << 16);
875 reg |= ((le16_to_cpu(req->index) >> 8) & 0xf) << 16;
876 ehci_writel(status_reg, reg);
877 break;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100878 default:
michaeldb632992008-12-10 17:55:19 +0100879 debug("unknown feature %x\n", le16_to_cpu(req->value));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100880 goto unknown;
881 }
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100882 /* unblock posted writes */
Lucas Stach676ae062012-09-26 00:14:35 +0200883 (void) ehci_readl(&ctrl->hcor->or_usbcmd);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100884 break;
michaeldb632992008-12-10 17:55:19 +0100885 case USB_REQ_CLEAR_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100886 reg = ehci_readl(status_reg);
Simon Glassed10e662013-05-10 19:49:00 -0700887 reg &= ~EHCI_PS_CLEAR;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100888 switch (le16_to_cpu(req->value)) {
889 case USB_PORT_FEAT_ENABLE:
890 reg &= ~EHCI_PS_PE;
891 break;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100892 case USB_PORT_FEAT_C_ENABLE:
Simon Glassed10e662013-05-10 19:49:00 -0700893 reg |= EHCI_PS_PE;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100894 break;
895 case USB_PORT_FEAT_POWER:
Lucas Stach676ae062012-09-26 00:14:35 +0200896 if (HCS_PPC(ehci_readl(&ctrl->hccr->cr_hcsparams)))
Simon Glassed10e662013-05-10 19:49:00 -0700897 reg &= ~EHCI_PS_PP;
898 break;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100899 case USB_PORT_FEAT_C_CONNECTION:
Simon Glassed10e662013-05-10 19:49:00 -0700900 reg |= EHCI_PS_CSC;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100901 break;
michael51ab1422008-12-11 13:43:55 +0100902 case USB_PORT_FEAT_OVER_CURRENT:
Simon Glassed10e662013-05-10 19:49:00 -0700903 reg |= EHCI_PS_OCC;
michael51ab1422008-12-11 13:43:55 +0100904 break;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100905 case USB_PORT_FEAT_C_RESET:
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000906 ctrl->portreset &= ~(1 << port);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100907 break;
908 default:
michaeldb632992008-12-10 17:55:19 +0100909 debug("unknown feature %x\n", le16_to_cpu(req->value));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100910 goto unknown;
911 }
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100912 ehci_writel(status_reg, reg);
913 /* unblock posted write */
Lucas Stach676ae062012-09-26 00:14:35 +0200914 (void) ehci_readl(&ctrl->hcor->or_usbcmd);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100915 break;
916 default:
michaeldb632992008-12-10 17:55:19 +0100917 debug("Unknown request\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100918 goto unknown;
919 }
920
Mike Frysinger5b84dd62012-03-05 13:47:00 +0000921 mdelay(1);
Masahiro Yamadab4141192014-11-07 03:03:31 +0900922 len = min3(srclen, (int)le16_to_cpu(req->length), length);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100923 if (srcptr != NULL && len > 0)
924 memcpy(buffer, srcptr, len);
michaeldb632992008-12-10 17:55:19 +0100925 else
926 debug("Len is 0\n");
927
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100928 dev->act_len = len;
929 dev->status = 0;
930 return 0;
931
932unknown:
michaeldb632992008-12-10 17:55:19 +0100933 debug("requesttype=%x, request=%x, value=%x, index=%x, length=%x\n",
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100934 req->requesttype, req->request, le16_to_cpu(req->value),
935 le16_to_cpu(req->index), le16_to_cpu(req->length));
936
937 dev->act_len = 0;
938 dev->status = USB_ST_STALLED;
939 return -1;
940}
941
Masahiro Yamada121a4d12017-06-22 16:35:14 +0900942static const struct ehci_ops default_ehci_ops = {
Simon Glassdeb85082015-03-25 12:22:27 -0600943 .set_usb_mode = ehci_set_usbmode,
944 .get_port_speed = ehci_get_port_speed,
945 .powerup_fixup = ehci_powerup_fixup,
946 .get_portsc_register = ehci_get_portsc_register,
947};
948
949static void ehci_setup_ops(struct ehci_ctrl *ctrl, const struct ehci_ops *ops)
Simon Glassc4a31412015-03-25 12:22:19 -0600950{
Simon Glassdeb85082015-03-25 12:22:27 -0600951 if (!ops) {
952 ctrl->ops = default_ehci_ops;
953 } else {
954 ctrl->ops = *ops;
955 if (!ctrl->ops.set_usb_mode)
956 ctrl->ops.set_usb_mode = ehci_set_usbmode;
957 if (!ctrl->ops.get_port_speed)
958 ctrl->ops.get_port_speed = ehci_get_port_speed;
959 if (!ctrl->ops.powerup_fixup)
960 ctrl->ops.powerup_fixup = ehci_powerup_fixup;
961 if (!ctrl->ops.get_portsc_register)
962 ctrl->ops.get_portsc_register =
963 ehci_get_portsc_register;
964 }
965}
966
Simon Glass46b01792015-03-25 12:22:29 -0600967#ifndef CONFIG_DM_USB
Simon Glassdeb85082015-03-25 12:22:27 -0600968void ehci_set_controller_priv(int index, void *priv, const struct ehci_ops *ops)
969{
970 struct ehci_ctrl *ctrl = &ehcic[index];
971
972 ctrl->priv = priv;
973 ehci_setup_ops(ctrl, ops);
Simon Glassc4a31412015-03-25 12:22:19 -0600974}
975
976void *ehci_get_controller_priv(int index)
977{
978 return ehcic[index].priv;
979}
Simon Glass46b01792015-03-25 12:22:29 -0600980#endif
Simon Glassc4a31412015-03-25 12:22:19 -0600981
Simon Glass7372b5b2015-03-25 12:22:26 -0600982static int ehci_common_init(struct ehci_ctrl *ctrl, uint tweaks)
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100983{
Lucas Stach676ae062012-09-26 00:14:35 +0200984 struct QH *qh_list;
Patrick Georgi8f62ca62013-03-06 14:08:31 +0000985 struct QH *periodic;
Simon Glass7372b5b2015-03-25 12:22:26 -0600986 uint32_t reg;
987 uint32_t cmd;
Patrick Georgi8f62ca62013-03-06 14:08:31 +0000988 int i;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100989
Vincent Palatin29828372012-12-12 17:55:22 -0800990 /* Set the high address word (aka segment) for 64-bit controller */
Simon Glass7372b5b2015-03-25 12:22:26 -0600991 if (ehci_readl(&ctrl->hccr->cr_hccparams) & 1)
992 ehci_writel(&ctrl->hcor->or_ctrldssegment, 0);
Stefan Roese832e6142009-01-21 17:12:10 +0100993
Simon Glass7372b5b2015-03-25 12:22:26 -0600994 qh_list = &ctrl->qh_list;
Lucas Stach676ae062012-09-26 00:14:35 +0200995
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100996 /* Set head of reclaim list */
Tom Rini71c5de42012-07-15 22:14:24 +0000997 memset(qh_list, 0, sizeof(*qh_list));
Marek Vasutcf7c93c2016-01-23 21:04:46 +0100998 qh_list->qh_link = cpu_to_hc32(virt_to_phys(qh_list) | QH_LINK_TYPE_QH);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200999 qh_list->qh_endpt1 = cpu_to_hc32(QH_ENDPT1_H(1) |
1000 QH_ENDPT1_EPS(USB_SPEED_HIGH));
Tom Rini71c5de42012-07-15 22:14:24 +00001001 qh_list->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
1002 qh_list->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +02001003 qh_list->qh_overlay.qt_token =
1004 cpu_to_hc32(QT_TOKEN_STATUS(QT_TOKEN_STATUS_HALTED));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001005
Rob Herring98ae8402015-03-17 15:46:37 -05001006 flush_dcache_range((unsigned long)qh_list,
Stephen Warrend3e07472013-05-24 15:03:17 -06001007 ALIGN_END_ADDR(struct QH, qh_list, 1));
1008
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001009 /* Set async. queue head pointer. */
Marek Vasutcf7c93c2016-01-23 21:04:46 +01001010 ehci_writel(&ctrl->hcor->or_asynclistaddr, virt_to_phys(qh_list));
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001011
1012 /*
1013 * Set up periodic list
1014 * Step 1: Parent QH for all periodic transfers.
1015 */
Simon Glass7372b5b2015-03-25 12:22:26 -06001016 ctrl->periodic_schedules = 0;
1017 periodic = &ctrl->periodic_queue;
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001018 memset(periodic, 0, sizeof(*periodic));
1019 periodic->qh_link = cpu_to_hc32(QH_LINK_TERMINATE);
1020 periodic->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
1021 periodic->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
1022
Rob Herring98ae8402015-03-17 15:46:37 -05001023 flush_dcache_range((unsigned long)periodic,
Stephen Warrend3e07472013-05-24 15:03:17 -06001024 ALIGN_END_ADDR(struct QH, periodic, 1));
1025
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001026 /*
1027 * Step 2: Setup frame-list: Every microframe, USB tries the same list.
1028 * In particular, device specifications on polling frequency
1029 * are disregarded. Keyboards seem to send NAK/NYet reliably
1030 * when polled with an empty buffer.
1031 *
1032 * Split Transactions will be spread across microframes using
1033 * S-mask and C-mask.
1034 */
Simon Glass7372b5b2015-03-25 12:22:26 -06001035 if (ctrl->periodic_list == NULL)
1036 ctrl->periodic_list = memalign(4096, 1024 * 4);
Nikita Kiryanov8bc36032013-07-29 13:27:40 +03001037
Simon Glass7372b5b2015-03-25 12:22:26 -06001038 if (!ctrl->periodic_list)
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001039 return -ENOMEM;
1040 for (i = 0; i < 1024; i++) {
Simon Glass7372b5b2015-03-25 12:22:26 -06001041 ctrl->periodic_list[i] = cpu_to_hc32((unsigned long)periodic
Adrian Coxea427772014-04-10 13:29:45 +01001042 | QH_LINK_TYPE_QH);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001043 }
1044
Simon Glass7372b5b2015-03-25 12:22:26 -06001045 flush_dcache_range((unsigned long)ctrl->periodic_list,
1046 ALIGN_END_ADDR(uint32_t, ctrl->periodic_list,
Stephen Warrend3e07472013-05-24 15:03:17 -06001047 1024));
1048
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001049 /* Set periodic list base address */
Simon Glass7372b5b2015-03-25 12:22:26 -06001050 ehci_writel(&ctrl->hcor->or_periodiclistbase,
1051 (unsigned long)ctrl->periodic_list);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001052
Simon Glass7372b5b2015-03-25 12:22:26 -06001053 reg = ehci_readl(&ctrl->hccr->cr_hcsparams);
michael51ab1422008-12-11 13:43:55 +01001054 descriptor.hub.bNbrPorts = HCS_N_PORTS(reg);
Lucas Stach7a46b2c2012-09-28 00:26:19 +02001055 debug("Register %x NbrPorts %d\n", reg, descriptor.hub.bNbrPorts);
Remy Böhmerc0d722f2008-12-13 22:51:58 +01001056 /* Port Indicators */
1057 if (HCS_INDICATOR(reg))
Lucas Stach93ad9082012-09-06 08:00:13 +02001058 put_unaligned(get_unaligned(&descriptor.hub.wHubCharacteristics)
1059 | 0x80, &descriptor.hub.wHubCharacteristics);
Remy Böhmerc0d722f2008-12-13 22:51:58 +01001060 /* Port Power Control */
1061 if (HCS_PPC(reg))
Lucas Stach93ad9082012-09-06 08:00:13 +02001062 put_unaligned(get_unaligned(&descriptor.hub.wHubCharacteristics)
1063 | 0x01, &descriptor.hub.wHubCharacteristics);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001064
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001065 /* Start the host controller. */
Simon Glass7372b5b2015-03-25 12:22:26 -06001066 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
Wolfgang Denkf15c6512009-02-12 00:08:39 +01001067 /*
1068 * Philips, Intel, and maybe others need CMD_RUN before the
1069 * root hub will detect new devices (why?); NEC doesn't
1070 */
michael51ab1422008-12-11 13:43:55 +01001071 cmd &= ~(CMD_LRESET|CMD_IAAD|CMD_PSE|CMD_ASE|CMD_RESET);
1072 cmd |= CMD_RUN;
Simon Glass7372b5b2015-03-25 12:22:26 -06001073 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
michael51ab1422008-12-11 13:43:55 +01001074
Simon Glass7372b5b2015-03-25 12:22:26 -06001075 if (!(tweaks & EHCI_TWEAK_NO_INIT_CF)) {
1076 /* take control over the ports */
1077 cmd = ehci_readl(&ctrl->hcor->or_configflag);
1078 cmd |= FLAG_CF;
1079 ehci_writel(&ctrl->hcor->or_configflag, cmd);
1080 }
Kuo-Jung Sue82a3162013-05-15 15:29:23 +08001081
Remy Böhmerc0d722f2008-12-13 22:51:58 +01001082 /* unblock posted write */
Simon Glass7372b5b2015-03-25 12:22:26 -06001083 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001084 mdelay(5);
Simon Glass7372b5b2015-03-25 12:22:26 -06001085 reg = HC_VERSION(ehci_readl(&ctrl->hccr->cr_capbase));
Remy Böhmerc0d722f2008-12-13 22:51:58 +01001086 printf("USB EHCI %x.%02x\n", reg >> 8, reg & 0xff);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001087
Simon Glass7372b5b2015-03-25 12:22:26 -06001088 return 0;
1089}
1090
Simon Glass46b01792015-03-25 12:22:29 -06001091#ifndef CONFIG_DM_USB
Simon Glass7372b5b2015-03-25 12:22:26 -06001092int usb_lowlevel_stop(int index)
1093{
1094 ehci_shutdown(&ehcic[index]);
1095 return ehci_hcd_stop(index);
1096}
1097
1098int usb_lowlevel_init(int index, enum usb_init_type init, void **controller)
1099{
1100 struct ehci_ctrl *ctrl = &ehcic[index];
1101 uint tweaks = 0;
1102 int rc;
1103
Simon Glassdeb85082015-03-25 12:22:27 -06001104 /**
1105 * Set ops to default_ehci_ops, ehci_hcd_init should call
1106 * ehci_set_controller_priv to change any of these function pointers.
1107 */
1108 ctrl->ops = default_ehci_ops;
1109
Simon Glass7372b5b2015-03-25 12:22:26 -06001110 rc = ehci_hcd_init(index, init, &ctrl->hccr, &ctrl->hcor);
1111 if (rc)
1112 return rc;
Heinrich Schuchardt45157d22017-11-20 19:33:39 +01001113 if (!ctrl->hccr || !ctrl->hcor)
1114 return -1;
Simon Glass7372b5b2015-03-25 12:22:26 -06001115 if (init == USB_INIT_DEVICE)
1116 goto done;
1117
1118 /* EHCI spec section 4.1 */
Simon Glassaeca43e2015-03-25 12:22:28 -06001119 if (ehci_reset(ctrl))
Simon Glass7372b5b2015-03-25 12:22:26 -06001120 return -1;
1121
1122#if defined(CONFIG_EHCI_HCD_INIT_AFTER_RESET)
1123 rc = ehci_hcd_init(index, init, &ctrl->hccr, &ctrl->hcor);
1124 if (rc)
1125 return rc;
1126#endif
1127#ifdef CONFIG_USB_EHCI_FARADAY
1128 tweaks |= EHCI_TWEAK_NO_INIT_CF;
1129#endif
1130 rc = ehci_common_init(ctrl, tweaks);
1131 if (rc)
1132 return rc;
1133
1134 ctrl->rootdev = 0;
Troy Kisky127efc42013-10-10 15:27:57 -07001135done:
Lucas Stach676ae062012-09-26 00:14:35 +02001136 *controller = &ehcic[index];
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001137 return 0;
1138}
Simon Glass46b01792015-03-25 12:22:29 -06001139#endif
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001140
Simon Glass24ed8942015-03-25 12:22:25 -06001141static int _ehci_submit_bulk_msg(struct usb_device *dev, unsigned long pipe,
1142 void *buffer, int length)
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001143{
1144
1145 if (usb_pipetype(pipe) != PIPE_BULK) {
1146 debug("non-bulk pipe (type=%lu)", usb_pipetype(pipe));
1147 return -1;
1148 }
1149 return ehci_submit_async(dev, pipe, buffer, length, NULL);
1150}
1151
Simon Glass24ed8942015-03-25 12:22:25 -06001152static int _ehci_submit_control_msg(struct usb_device *dev, unsigned long pipe,
1153 void *buffer, int length,
1154 struct devrequest *setup)
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001155{
Simon Glass24ed8942015-03-25 12:22:25 -06001156 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001157
1158 if (usb_pipetype(pipe) != PIPE_CONTROL) {
1159 debug("non-control pipe (type=%lu)", usb_pipetype(pipe));
1160 return -1;
1161 }
1162
Lucas Stach676ae062012-09-26 00:14:35 +02001163 if (usb_pipedevice(pipe) == ctrl->rootdev) {
1164 if (!ctrl->rootdev)
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001165 dev->speed = USB_SPEED_HIGH;
1166 return ehci_submit_root(dev, pipe, buffer, length, setup);
1167 }
1168 return ehci_submit_async(dev, pipe, buffer, length, setup);
1169}
1170
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001171struct int_queue {
Hans de Goede8aa26b82014-09-24 14:06:05 +02001172 int elementsize;
Hans de Goede7f59d162015-06-18 22:34:33 +02001173 unsigned long pipe;
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001174 struct QH *first;
1175 struct QH *current;
1176 struct QH *last;
1177 struct qTD *tds;
1178};
1179
Rob Herring98ae8402015-03-17 15:46:37 -05001180#define NEXT_QH(qh) (struct QH *)((unsigned long)hc32_to_cpu((qh)->qh_link) & ~0x1f)
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001181
1182static int
1183enable_periodic(struct ehci_ctrl *ctrl)
1184{
1185 uint32_t cmd;
1186 struct ehci_hcor *hcor = ctrl->hcor;
1187 int ret;
1188
1189 cmd = ehci_readl(&hcor->or_usbcmd);
1190 cmd |= CMD_PSE;
1191 ehci_writel(&hcor->or_usbcmd, cmd);
1192
1193 ret = handshake((uint32_t *)&hcor->or_usbsts,
1194 STS_PSS, STS_PSS, 100 * 1000);
1195 if (ret < 0) {
1196 printf("EHCI failed: timeout when enabling periodic list\n");
1197 return -ETIMEDOUT;
1198 }
1199 udelay(1000);
1200 return 0;
1201}
1202
1203static int
1204disable_periodic(struct ehci_ctrl *ctrl)
1205{
1206 uint32_t cmd;
1207 struct ehci_hcor *hcor = ctrl->hcor;
1208 int ret;
1209
1210 cmd = ehci_readl(&hcor->or_usbcmd);
1211 cmd &= ~CMD_PSE;
1212 ehci_writel(&hcor->or_usbcmd, cmd);
1213
1214 ret = handshake((uint32_t *)&hcor->or_usbsts,
1215 STS_PSS, 0, 100 * 1000);
1216 if (ret < 0) {
1217 printf("EHCI failed: timeout when disabling periodic list\n");
1218 return -ETIMEDOUT;
1219 }
1220 return 0;
1221}
1222
Hans de Goede029fd8e2015-05-11 20:43:52 +02001223static struct int_queue *_ehci_create_int_queue(struct usb_device *dev,
1224 unsigned long pipe, int queuesize, int elementsize,
1225 void *buffer, int interval)
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001226{
Simon Glass24ed8942015-03-25 12:22:25 -06001227 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001228 struct int_queue *result = NULL;
Hans de Goede7f59d162015-06-18 22:34:33 +02001229 uint32_t i, toggle;
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001230
Hans de Goedebd818d82014-09-24 14:06:04 +02001231 /*
1232 * Interrupt transfers requiring several transactions are not supported
1233 * because bInterval is ignored.
1234 *
1235 * Also, ehci_submit_async() relies on wMaxPacketSize being a power of 2
1236 * <= PKT_ALIGN if several qTDs are required, while the USB
1237 * specification does not constrain this for interrupt transfers. That
1238 * means that ehci_submit_async() would support interrupt transfers
1239 * requiring several transactions only as long as the transfer size does
1240 * not require more than a single qTD.
1241 */
1242 if (elementsize > usb_maxpacket(dev, pipe)) {
1243 printf("%s: xfers requiring several transactions are not supported.\n",
1244 __func__);
1245 return NULL;
1246 }
1247
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001248 debug("Enter create_int_queue\n");
1249 if (usb_pipetype(pipe) != PIPE_INTERRUPT) {
1250 debug("non-interrupt pipe (type=%lu)", usb_pipetype(pipe));
1251 return NULL;
1252 }
1253
1254 /* limit to 4 full pages worth of data -
1255 * we can safely fit them in a single TD,
1256 * no matter the alignment
1257 */
1258 if (elementsize >= 16384) {
1259 debug("too large elements for interrupt transfers\n");
1260 return NULL;
1261 }
1262
1263 result = malloc(sizeof(*result));
1264 if (!result) {
1265 debug("ehci intr queue: out of memory\n");
1266 goto fail1;
1267 }
Hans de Goede8aa26b82014-09-24 14:06:05 +02001268 result->elementsize = elementsize;
Hans de Goede7f59d162015-06-18 22:34:33 +02001269 result->pipe = pipe;
Stephen Warren8165e342014-02-06 13:13:06 -07001270 result->first = memalign(USB_DMA_MINALIGN,
1271 sizeof(struct QH) * queuesize);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001272 if (!result->first) {
1273 debug("ehci intr queue: out of memory\n");
1274 goto fail2;
1275 }
1276 result->current = result->first;
1277 result->last = result->first + queuesize - 1;
Stephen Warren8165e342014-02-06 13:13:06 -07001278 result->tds = memalign(USB_DMA_MINALIGN,
1279 sizeof(struct qTD) * queuesize);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001280 if (!result->tds) {
1281 debug("ehci intr queue: out of memory\n");
1282 goto fail3;
1283 }
1284 memset(result->first, 0, sizeof(struct QH) * queuesize);
1285 memset(result->tds, 0, sizeof(struct qTD) * queuesize);
1286
Hans de Goede7f59d162015-06-18 22:34:33 +02001287 toggle = usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
1288
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001289 for (i = 0; i < queuesize; i++) {
1290 struct QH *qh = result->first + i;
1291 struct qTD *td = result->tds + i;
1292 void **buf = &qh->buffer;
1293
Rob Herring98ae8402015-03-17 15:46:37 -05001294 qh->qh_link = cpu_to_hc32((unsigned long)(qh+1) | QH_LINK_TYPE_QH);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001295 if (i == queuesize - 1)
Adrian Coxea427772014-04-10 13:29:45 +01001296 qh->qh_link = cpu_to_hc32(QH_LINK_TERMINATE);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001297
Rob Herring98ae8402015-03-17 15:46:37 -05001298 qh->qh_overlay.qt_next = cpu_to_hc32((unsigned long)td);
Adrian Coxea427772014-04-10 13:29:45 +01001299 qh->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
1300 qh->qh_endpt1 =
1301 cpu_to_hc32((0 << 28) | /* No NAK reload (ehci 4.9) */
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001302 (usb_maxpacket(dev, pipe) << 16) | /* MPS */
1303 (1 << 14) |
1304 QH_ENDPT1_EPS(ehci_encode_speed(dev->speed)) |
1305 (usb_pipeendpoint(pipe) << 8) | /* Endpoint Number */
Adrian Coxea427772014-04-10 13:29:45 +01001306 (usb_pipedevice(pipe) << 0));
1307 qh->qh_endpt2 = cpu_to_hc32((1 << 30) | /* 1 Tx per mframe */
1308 (1 << 0)); /* S-mask: microframe 0 */
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001309 if (dev->speed == USB_SPEED_LOW ||
1310 dev->speed == USB_SPEED_FULL) {
Hans de Goede4e2c4ad2014-09-20 16:51:22 +02001311 /* C-mask: microframes 2-4 */
1312 qh->qh_endpt2 |= cpu_to_hc32((0x1c << 8));
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001313 }
Hans de Goede4e2c4ad2014-09-20 16:51:22 +02001314 ehci_update_endpt2_dev_n_port(dev, qh);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001315
Adrian Coxea427772014-04-10 13:29:45 +01001316 td->qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
1317 td->qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001318 debug("communication direction is '%s'\n",
1319 usb_pipein(pipe) ? "in" : "out");
Hans de Goede7f59d162015-06-18 22:34:33 +02001320 td->qt_token = cpu_to_hc32(
1321 QT_TOKEN_DT(toggle) |
1322 (elementsize << 16) |
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001323 ((usb_pipein(pipe) ? 1 : 0) << 8) | /* IN/OUT token */
Adrian Coxea427772014-04-10 13:29:45 +01001324 0x80); /* active */
1325 td->qt_buffer[0] =
Rob Herring98ae8402015-03-17 15:46:37 -05001326 cpu_to_hc32((unsigned long)buffer + i * elementsize);
Adrian Coxea427772014-04-10 13:29:45 +01001327 td->qt_buffer[1] =
1328 cpu_to_hc32((td->qt_buffer[0] + 0x1000) & ~0xfff);
1329 td->qt_buffer[2] =
1330 cpu_to_hc32((td->qt_buffer[0] + 0x2000) & ~0xfff);
1331 td->qt_buffer[3] =
1332 cpu_to_hc32((td->qt_buffer[0] + 0x3000) & ~0xfff);
1333 td->qt_buffer[4] =
1334 cpu_to_hc32((td->qt_buffer[0] + 0x4000) & ~0xfff);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001335
1336 *buf = buffer + i * elementsize;
Hans de Goede7f59d162015-06-18 22:34:33 +02001337 toggle ^= 1;
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001338 }
1339
Rob Herring98ae8402015-03-17 15:46:37 -05001340 flush_dcache_range((unsigned long)buffer,
Stephen Warrend3e07472013-05-24 15:03:17 -06001341 ALIGN_END_ADDR(char, buffer,
1342 queuesize * elementsize));
Rob Herring98ae8402015-03-17 15:46:37 -05001343 flush_dcache_range((unsigned long)result->first,
Stephen Warrend3e07472013-05-24 15:03:17 -06001344 ALIGN_END_ADDR(struct QH, result->first,
1345 queuesize));
Rob Herring98ae8402015-03-17 15:46:37 -05001346 flush_dcache_range((unsigned long)result->tds,
Stephen Warrend3e07472013-05-24 15:03:17 -06001347 ALIGN_END_ADDR(struct qTD, result->tds,
1348 queuesize));
1349
Hans de Goede32f2eac2014-09-24 14:06:03 +02001350 if (ctrl->periodic_schedules > 0) {
1351 if (disable_periodic(ctrl) < 0) {
1352 debug("FATAL: periodic should never fail, but did");
1353 goto fail3;
1354 }
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001355 }
1356
1357 /* hook up to periodic list */
1358 struct QH *list = &ctrl->periodic_queue;
1359 result->last->qh_link = list->qh_link;
Rob Herring98ae8402015-03-17 15:46:37 -05001360 list->qh_link = cpu_to_hc32((unsigned long)result->first | QH_LINK_TYPE_QH);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001361
Rob Herring98ae8402015-03-17 15:46:37 -05001362 flush_dcache_range((unsigned long)result->last,
Stephen Warrend3e07472013-05-24 15:03:17 -06001363 ALIGN_END_ADDR(struct QH, result->last, 1));
Rob Herring98ae8402015-03-17 15:46:37 -05001364 flush_dcache_range((unsigned long)list,
Stephen Warrend3e07472013-05-24 15:03:17 -06001365 ALIGN_END_ADDR(struct QH, list, 1));
1366
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001367 if (enable_periodic(ctrl) < 0) {
1368 debug("FATAL: periodic should never fail, but did");
1369 goto fail3;
1370 }
Hans de Goede36b73102014-09-20 16:51:25 +02001371 ctrl->periodic_schedules++;
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001372
1373 debug("Exit create_int_queue\n");
1374 return result;
1375fail3:
1376 if (result->tds)
1377 free(result->tds);
1378fail2:
1379 if (result->first)
1380 free(result->first);
1381 if (result)
1382 free(result);
1383fail1:
1384 return NULL;
1385}
1386
Hans de Goede029fd8e2015-05-11 20:43:52 +02001387static void *_ehci_poll_int_queue(struct usb_device *dev,
1388 struct int_queue *queue)
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001389{
1390 struct QH *cur = queue->current;
Hans de Goede415548d2014-09-20 16:51:24 +02001391 struct qTD *cur_td;
Hans de Goede7f59d162015-06-18 22:34:33 +02001392 uint32_t token, toggle;
1393 unsigned long pipe = queue->pipe;
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001394
1395 /* depleted queue */
1396 if (cur == NULL) {
1397 debug("Exit poll_int_queue with completed queue\n");
1398 return NULL;
1399 }
1400 /* still active */
Hans de Goede415548d2014-09-20 16:51:24 +02001401 cur_td = &queue->tds[queue->current - queue->first];
Rob Herring98ae8402015-03-17 15:46:37 -05001402 invalidate_dcache_range((unsigned long)cur_td,
Hans de Goede415548d2014-09-20 16:51:24 +02001403 ALIGN_END_ADDR(struct qTD, cur_td, 1));
Hans de Goede7f59d162015-06-18 22:34:33 +02001404 token = hc32_to_cpu(cur_td->qt_token);
1405 if (QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE) {
1406 debug("Exit poll_int_queue with no completed intr transfer. token is %x\n", token);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001407 return NULL;
1408 }
Hans de Goede7f59d162015-06-18 22:34:33 +02001409
1410 toggle = QT_TOKEN_GET_DT(token);
1411 usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), toggle);
1412
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001413 if (!(cur->qh_link & QH_LINK_TERMINATE))
1414 queue->current++;
1415 else
1416 queue->current = NULL;
Hans de Goede8aa26b82014-09-24 14:06:05 +02001417
Rob Herring98ae8402015-03-17 15:46:37 -05001418 invalidate_dcache_range((unsigned long)cur->buffer,
Hans de Goede8aa26b82014-09-24 14:06:05 +02001419 ALIGN_END_ADDR(char, cur->buffer,
1420 queue->elementsize));
1421
Hans de Goede415548d2014-09-20 16:51:24 +02001422 debug("Exit poll_int_queue with completed intr transfer. token is %x at %p (first at %p)\n",
Hans de Goede7f59d162015-06-18 22:34:33 +02001423 token, cur, queue->first);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001424 return cur->buffer;
1425}
1426
1427/* Do not free buffers associated with QHs, they're owned by someone else */
Hans de Goede029fd8e2015-05-11 20:43:52 +02001428static int _ehci_destroy_int_queue(struct usb_device *dev,
1429 struct int_queue *queue)
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001430{
Simon Glass24ed8942015-03-25 12:22:25 -06001431 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001432 int result = -1;
1433 unsigned long timeout;
1434
1435 if (disable_periodic(ctrl) < 0) {
1436 debug("FATAL: periodic should never fail, but did");
1437 goto out;
1438 }
Hans de Goede36b73102014-09-20 16:51:25 +02001439 ctrl->periodic_schedules--;
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001440
1441 struct QH *cur = &ctrl->periodic_queue;
1442 timeout = get_timer(0) + 500; /* abort after 500ms */
Adrian Coxea427772014-04-10 13:29:45 +01001443 while (!(cur->qh_link & cpu_to_hc32(QH_LINK_TERMINATE))) {
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001444 debug("considering %p, with qh_link %x\n", cur, cur->qh_link);
1445 if (NEXT_QH(cur) == queue->first) {
1446 debug("found candidate. removing from chain\n");
1447 cur->qh_link = queue->last->qh_link;
Rob Herring98ae8402015-03-17 15:46:37 -05001448 flush_dcache_range((unsigned long)cur,
Hans de Goedeea7b30c2014-09-20 16:51:23 +02001449 ALIGN_END_ADDR(struct QH, cur, 1));
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001450 result = 0;
1451 break;
1452 }
1453 cur = NEXT_QH(cur);
1454 if (get_timer(0) > timeout) {
1455 printf("Timeout destroying interrupt endpoint queue\n");
1456 result = -1;
1457 goto out;
1458 }
1459 }
1460
Hans de Goede36b73102014-09-20 16:51:25 +02001461 if (ctrl->periodic_schedules > 0) {
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001462 result = enable_periodic(ctrl);
1463 if (result < 0)
1464 debug("FATAL: periodic should never fail, but did");
1465 }
1466
1467out:
1468 free(queue->tds);
1469 free(queue->first);
1470 free(queue);
1471
1472 return result;
1473}
1474
Simon Glass24ed8942015-03-25 12:22:25 -06001475static int _ehci_submit_int_msg(struct usb_device *dev, unsigned long pipe,
1476 void *buffer, int length, int interval)
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001477{
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001478 void *backbuffer;
1479 struct int_queue *queue;
1480 unsigned long timeout;
1481 int result = 0, ret;
1482
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001483 debug("dev=%p, pipe=%lu, buffer=%p, length=%d, interval=%d",
1484 dev, pipe, buffer, length, interval);
Benoît Thébaudeau44ae0be2012-08-09 23:50:44 +02001485
Hans de Goede029fd8e2015-05-11 20:43:52 +02001486 queue = _ehci_create_int_queue(dev, pipe, 1, length, buffer, interval);
Hans de Goedebd818d82014-09-24 14:06:04 +02001487 if (!queue)
1488 return -1;
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001489
1490 timeout = get_timer(0) + USB_TIMEOUT_MS(pipe);
Hans de Goede029fd8e2015-05-11 20:43:52 +02001491 while ((backbuffer = _ehci_poll_int_queue(dev, queue)) == NULL)
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001492 if (get_timer(0) > timeout) {
1493 printf("Timeout poll on interrupt endpoint\n");
1494 result = -ETIMEDOUT;
1495 break;
1496 }
1497
1498 if (backbuffer != buffer) {
Rob Herring98ae8402015-03-17 15:46:37 -05001499 debug("got wrong buffer back (%p instead of %p)\n",
1500 backbuffer, buffer);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001501 return -EINVAL;
1502 }
1503
Hans de Goede029fd8e2015-05-11 20:43:52 +02001504 ret = _ehci_destroy_int_queue(dev, queue);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001505 if (ret < 0)
1506 return ret;
1507
1508 /* everything worked out fine */
1509 return result;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001510}
Simon Glass24ed8942015-03-25 12:22:25 -06001511
Simon Glass46b01792015-03-25 12:22:29 -06001512#ifndef CONFIG_DM_USB
Simon Glass24ed8942015-03-25 12:22:25 -06001513int submit_bulk_msg(struct usb_device *dev, unsigned long pipe,
1514 void *buffer, int length)
1515{
1516 return _ehci_submit_bulk_msg(dev, pipe, buffer, length);
1517}
1518
1519int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1520 int length, struct devrequest *setup)
1521{
1522 return _ehci_submit_control_msg(dev, pipe, buffer, length, setup);
1523}
1524
1525int submit_int_msg(struct usb_device *dev, unsigned long pipe,
1526 void *buffer, int length, int interval)
1527{
1528 return _ehci_submit_int_msg(dev, pipe, buffer, length, interval);
1529}
Hans de Goede029fd8e2015-05-11 20:43:52 +02001530
1531struct int_queue *create_int_queue(struct usb_device *dev,
1532 unsigned long pipe, int queuesize, int elementsize,
1533 void *buffer, int interval)
1534{
1535 return _ehci_create_int_queue(dev, pipe, queuesize, elementsize,
1536 buffer, interval);
1537}
1538
1539void *poll_int_queue(struct usb_device *dev, struct int_queue *queue)
1540{
1541 return _ehci_poll_int_queue(dev, queue);
1542}
1543
1544int destroy_int_queue(struct usb_device *dev, struct int_queue *queue)
1545{
1546 return _ehci_destroy_int_queue(dev, queue);
1547}
Simon Glass46b01792015-03-25 12:22:29 -06001548#endif
1549
1550#ifdef CONFIG_DM_USB
1551static int ehci_submit_control_msg(struct udevice *dev, struct usb_device *udev,
1552 unsigned long pipe, void *buffer, int length,
1553 struct devrequest *setup)
1554{
1555 debug("%s: dev='%s', udev=%p, udev->dev='%s', portnr=%d\n", __func__,
1556 dev->name, udev, udev->dev->name, udev->portnr);
1557
1558 return _ehci_submit_control_msg(udev, pipe, buffer, length, setup);
1559}
1560
1561static int ehci_submit_bulk_msg(struct udevice *dev, struct usb_device *udev,
1562 unsigned long pipe, void *buffer, int length)
1563{
1564 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1565 return _ehci_submit_bulk_msg(udev, pipe, buffer, length);
1566}
1567
1568static int ehci_submit_int_msg(struct udevice *dev, struct usb_device *udev,
1569 unsigned long pipe, void *buffer, int length,
1570 int interval)
1571{
1572 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1573 return _ehci_submit_int_msg(udev, pipe, buffer, length, interval);
1574}
1575
Hans de Goede8a5f0662015-05-10 14:10:18 +02001576static struct int_queue *ehci_create_int_queue(struct udevice *dev,
1577 struct usb_device *udev, unsigned long pipe, int queuesize,
1578 int elementsize, void *buffer, int interval)
1579{
1580 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1581 return _ehci_create_int_queue(udev, pipe, queuesize, elementsize,
1582 buffer, interval);
1583}
1584
1585static void *ehci_poll_int_queue(struct udevice *dev, struct usb_device *udev,
1586 struct int_queue *queue)
1587{
1588 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1589 return _ehci_poll_int_queue(udev, queue);
1590}
1591
1592static int ehci_destroy_int_queue(struct udevice *dev, struct usb_device *udev,
1593 struct int_queue *queue)
1594{
1595 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1596 return _ehci_destroy_int_queue(udev, queue);
1597}
1598
Bin Menga23aa662017-09-07 06:13:19 -07001599static int ehci_get_max_xfer_size(struct udevice *dev, size_t *size)
1600{
1601 /*
1602 * EHCD can handle any transfer length as long as there is enough
1603 * free heap space left, hence set the theoretical max number here.
1604 */
1605 *size = SIZE_MAX;
1606
1607 return 0;
1608}
1609
Simon Glass46b01792015-03-25 12:22:29 -06001610int ehci_register(struct udevice *dev, struct ehci_hccr *hccr,
1611 struct ehci_hcor *hcor, const struct ehci_ops *ops,
1612 uint tweaks, enum usb_init_type init)
1613{
Hans de Goedecb8a2c12015-05-05 11:54:35 +02001614 struct usb_bus_priv *priv = dev_get_uclass_priv(dev);
Simon Glass46b01792015-03-25 12:22:29 -06001615 struct ehci_ctrl *ctrl = dev_get_priv(dev);
Heinrich Schuchardt45157d22017-11-20 19:33:39 +01001616 int ret = -1;
Simon Glass46b01792015-03-25 12:22:29 -06001617
1618 debug("%s: dev='%s', ctrl=%p, hccr=%p, hcor=%p, init=%d\n", __func__,
1619 dev->name, ctrl, hccr, hcor, init);
1620
Heinrich Schuchardt45157d22017-11-20 19:33:39 +01001621 if (!ctrl || !hccr || !hcor)
1622 goto err;
1623
Hans de Goedecb8a2c12015-05-05 11:54:35 +02001624 priv->desc_before_addr = true;
1625
Simon Glass46b01792015-03-25 12:22:29 -06001626 ehci_setup_ops(ctrl, ops);
1627 ctrl->hccr = hccr;
1628 ctrl->hcor = hcor;
1629 ctrl->priv = ctrl;
1630
Stephen Warren49b4c5c2015-08-20 17:38:05 -06001631 ctrl->init = init;
1632 if (ctrl->init == USB_INIT_DEVICE)
Simon Glass46b01792015-03-25 12:22:29 -06001633 goto done;
Stephen Warren49b4c5c2015-08-20 17:38:05 -06001634
Simon Glass46b01792015-03-25 12:22:29 -06001635 ret = ehci_reset(ctrl);
1636 if (ret)
1637 goto err;
1638
Mateusz Kulikowskicfb3f1c2016-04-03 13:38:26 +02001639 if (ctrl->ops.init_after_reset) {
1640 ret = ctrl->ops.init_after_reset(ctrl);
Mateusz Kulikowski3f9f8a52016-03-31 23:12:17 +02001641 if (ret)
1642 goto err;
1643 }
1644
Simon Glass46b01792015-03-25 12:22:29 -06001645 ret = ehci_common_init(ctrl, tweaks);
1646 if (ret)
1647 goto err;
1648done:
1649 return 0;
1650err:
1651 free(ctrl);
1652 debug("%s: failed, ret=%d\n", __func__, ret);
1653 return ret;
1654}
1655
1656int ehci_deregister(struct udevice *dev)
1657{
1658 struct ehci_ctrl *ctrl = dev_get_priv(dev);
1659
Stephen Warren49b4c5c2015-08-20 17:38:05 -06001660 if (ctrl->init == USB_INIT_DEVICE)
1661 return 0;
1662
Simon Glass46b01792015-03-25 12:22:29 -06001663 ehci_shutdown(ctrl);
1664
1665 return 0;
1666}
1667
1668struct dm_usb_ops ehci_usb_ops = {
1669 .control = ehci_submit_control_msg,
1670 .bulk = ehci_submit_bulk_msg,
1671 .interrupt = ehci_submit_int_msg,
Hans de Goede8a5f0662015-05-10 14:10:18 +02001672 .create_int_queue = ehci_create_int_queue,
1673 .poll_int_queue = ehci_poll_int_queue,
1674 .destroy_int_queue = ehci_destroy_int_queue,
Bin Menga23aa662017-09-07 06:13:19 -07001675 .get_max_xfer_size = ehci_get_max_xfer_size,
Simon Glass46b01792015-03-25 12:22:29 -06001676};
1677
1678#endif