blob: 85918e85be3ceb6f094a7df2c6073e648969db7d [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Michael Trimarchi241f7512008-11-28 13:20:46 +01002/*-
3 * Copyright (c) 2007-2008, Juniper Networks, Inc.
michael0a326102008-12-10 17:55:19 +01004 * Copyright (c) 2008, Excito Elektronik i Skåne AB
Remy Böhmer33e87482008-12-13 22:51:58 +01005 * Copyright (c) 2008, Michael Trimarchi <trimarchimichael@yahoo.it>
6 *
Michael Trimarchi241f7512008-11-28 13:20:46 +01007 * All rights reserved.
Michael Trimarchi241f7512008-11-28 13:20:46 +01008 */
Michael Trimarchi241f7512008-11-28 13:20:46 +01009#include <common.h>
Simon Glassa194b252015-03-25 12:22:29 -060010#include <dm.h>
Patrick Georgie55fdac2013-03-06 14:08:31 +000011#include <errno.h>
michael0a326102008-12-10 17:55:19 +010012#include <asm/byteorder.h>
Lucas Stach835e11e2012-09-06 08:00:13 +020013#include <asm/unaligned.h>
Michael Trimarchi241f7512008-11-28 13:20:46 +010014#include <usb.h>
15#include <asm/io.h>
michael0a326102008-12-10 17:55:19 +010016#include <malloc.h>
Simon Glass2dd337a2015-09-02 17:24:58 -060017#include <memalign.h>
Stefan Roese86b34cf2010-11-26 15:43:28 +010018#include <watchdog.h>
Patrick Georgie55fdac2013-03-06 14:08:31 +000019#include <linux/compiler.h>
Jean-Christophe PLAGNIOL-VILLARD8f6bcf42009-04-03 12:46:58 +020020
21#include "ehci.h"
Michael Trimarchi241f7512008-11-28 13:20:46 +010022
Lucas Stach3494a4c2012-09-26 00:14:35 +020023#ifndef CONFIG_USB_MAX_CONTROLLER_COUNT
24#define CONFIG_USB_MAX_CONTROLLER_COUNT 1
25#endif
Michael Trimarchi241f7512008-11-28 13:20:46 +010026
Julius Werner5c1a1ad2013-09-24 10:53:07 -070027/*
28 * EHCI spec page 20 says that the HC may take up to 16 uFrames (= 4ms) to halt.
29 * Let's time out after 8 to have a little safety margin on top of that.
30 */
31#define HCHALT_TIMEOUT (8 * 1000)
32
Sven Schwermer8a3cb9f12018-11-21 08:43:56 +010033#if !CONFIG_IS_ENABLED(DM_USB)
Marek Vasutfd349a12013-07-10 03:16:31 +020034static struct ehci_ctrl ehcic[CONFIG_USB_MAX_CONTROLLER_COUNT];
Simon Glassa194b252015-03-25 12:22:29 -060035#endif
Tom Rini2cabcf72012-07-15 22:14:24 +000036
37#define ALIGN_END_ADDR(type, ptr, size) \
Rob Herringf14d54b2015-03-17 15:46:37 -050038 ((unsigned long)(ptr) + roundup((size) * sizeof(type), USB_DMA_MINALIGN))
Michael Trimarchi241f7512008-11-28 13:20:46 +010039
michael0a326102008-12-10 17:55:19 +010040static struct descriptor {
41 struct usb_hub_descriptor hub;
42 struct usb_device_descriptor device;
43 struct usb_linux_config_descriptor config;
44 struct usb_linux_interface_descriptor interface;
45 struct usb_endpoint_descriptor endpoint;
46} __attribute__ ((packed)) descriptor = {
47 {
48 0x8, /* bDescLength */
49 0x29, /* bDescriptorType: hub descriptor */
50 2, /* bNrPorts -- runtime modified */
51 0, /* wHubCharacteristics */
Vincent Palatin8277b502011-12-05 14:52:22 -080052 10, /* bPwrOn2PwrGood */
michael0a326102008-12-10 17:55:19 +010053 0, /* bHubCntrCurrent */
Bin Meng0d66b3a2017-07-19 21:50:00 +080054 { /* Device removable */
55 } /* at most 7 ports! XXX */
michael0a326102008-12-10 17:55:19 +010056 },
57 {
58 0x12, /* bLength */
59 1, /* bDescriptorType: UDESC_DEVICE */
Sergei Shtylyovfa30a272010-02-27 21:29:42 +030060 cpu_to_le16(0x0200), /* bcdUSB: v2.0 */
michael0a326102008-12-10 17:55:19 +010061 9, /* bDeviceClass: UDCLASS_HUB */
62 0, /* bDeviceSubClass: UDSUBCLASS_HUB */
63 1, /* bDeviceProtocol: UDPROTO_HSHUBSTT */
64 64, /* bMaxPacketSize: 64 bytes */
65 0x0000, /* idVendor */
66 0x0000, /* idProduct */
Sergei Shtylyovfa30a272010-02-27 21:29:42 +030067 cpu_to_le16(0x0100), /* bcdDevice */
michael0a326102008-12-10 17:55:19 +010068 1, /* iManufacturer */
69 2, /* iProduct */
70 0, /* iSerialNumber */
71 1 /* bNumConfigurations: 1 */
72 },
73 {
74 0x9,
75 2, /* bDescriptorType: UDESC_CONFIG */
76 cpu_to_le16(0x19),
77 1, /* bNumInterface */
78 1, /* bConfigurationValue */
79 0, /* iConfiguration */
80 0x40, /* bmAttributes: UC_SELF_POWER */
81 0 /* bMaxPower */
82 },
83 {
84 0x9, /* bLength */
85 4, /* bDescriptorType: UDESC_INTERFACE */
86 0, /* bInterfaceNumber */
87 0, /* bAlternateSetting */
88 1, /* bNumEndpoints */
89 9, /* bInterfaceClass: UICLASS_HUB */
90 0, /* bInterfaceSubClass: UISUBCLASS_HUB */
91 0, /* bInterfaceProtocol: UIPROTO_HSHUBSTT */
92 0 /* iInterface */
93 },
94 {
95 0x7, /* bLength */
96 5, /* bDescriptorType: UDESC_ENDPOINT */
97 0x81, /* bEndpointAddress:
98 * UE_DIR_IN | EHCI_INTR_ENDPT
99 */
100 3, /* bmAttributes: UE_INTERRUPT */
Tom Rix83b9e1d2009-10-31 12:37:38 -0500101 8, /* wMaxPacketSize */
michael0a326102008-12-10 17:55:19 +0100102 255 /* bInterval */
103 },
Michael Trimarchi241f7512008-11-28 13:20:46 +0100104};
105
Remy Böhmer33e87482008-12-13 22:51:58 +0100106#if defined(CONFIG_EHCI_IS_TDI)
107#define ehci_is_TDI() (1)
108#else
109#define ehci_is_TDI() (0)
110#endif
111
Simon Glasscb7cf602015-03-25 12:22:25 -0600112static struct ehci_ctrl *ehci_get_ctrl(struct usb_device *udev)
113{
Sven Schwermer8a3cb9f12018-11-21 08:43:56 +0100114#if CONFIG_IS_ENABLED(DM_USB)
Hans de Goede6be39d12015-05-05 11:54:33 +0200115 return dev_get_priv(usb_get_bus(udev->dev));
Simon Glassa194b252015-03-25 12:22:29 -0600116#else
Simon Glasscb7cf602015-03-25 12:22:25 -0600117 return udev->controller;
Simon Glassa194b252015-03-25 12:22:29 -0600118#endif
Simon Glasscb7cf602015-03-25 12:22:25 -0600119}
120
Simon Glassdc9f3ed2015-03-25 12:22:27 -0600121static int ehci_get_port_speed(struct ehci_ctrl *ctrl, uint32_t reg)
Jim Lin54f3dfe2013-03-27 00:52:32 +0000122{
123 return PORTSC_PSPD(reg);
124}
125
Simon Glassdc9f3ed2015-03-25 12:22:27 -0600126static void ehci_set_usbmode(struct ehci_ctrl *ctrl)
Jim Lin54f3dfe2013-03-27 00:52:32 +0000127{
128 uint32_t tmp;
129 uint32_t *reg_ptr;
130
Simon Glass2d387ab2015-03-25 12:22:23 -0600131 reg_ptr = (uint32_t *)((u8 *)&ctrl->hcor->or_usbcmd + USBMODE);
Jim Lin54f3dfe2013-03-27 00:52:32 +0000132 tmp = ehci_readl(reg_ptr);
133 tmp |= USBMODE_CM_HC;
134#if defined(CONFIG_EHCI_MMIO_BIG_ENDIAN)
135 tmp |= USBMODE_BE;
Marek Vasutd9fa0482016-01-23 21:04:46 +0100136#else
137 tmp &= ~USBMODE_BE;
Jim Lin54f3dfe2013-03-27 00:52:32 +0000138#endif
139 ehci_writel(reg_ptr, tmp);
140}
141
Simon Glassdc9f3ed2015-03-25 12:22:27 -0600142static void ehci_powerup_fixup(struct ehci_ctrl *ctrl, uint32_t *status_reg,
Simon Glasscc0dc6b2015-03-25 12:22:21 -0600143 uint32_t *reg)
Marek Vasut09734772011-07-11 02:37:01 +0200144{
145 mdelay(50);
146}
147
Simon Glassdc9f3ed2015-03-25 12:22:27 -0600148static uint32_t *ehci_get_portsc_register(struct ehci_ctrl *ctrl, int port)
Simon Glass0bec1282015-03-25 12:22:17 -0600149{
Bin Mengc6336ee2017-07-19 21:50:05 +0800150 int max_ports = HCS_N_PORTS(ehci_readl(&ctrl->hccr->cr_hcsparams));
151
152 if (port < 0 || port >= max_ports) {
Simon Glass0bec1282015-03-25 12:22:17 -0600153 /* Printing the message would cause a scan failure! */
Bin Mengc6336ee2017-07-19 21:50:05 +0800154 debug("The request port(%u) exceeds maximum port number\n",
155 port);
Simon Glass0bec1282015-03-25 12:22:17 -0600156 return NULL;
157 }
158
Simon Glassdfbf1862015-03-25 12:22:24 -0600159 return (uint32_t *)&ctrl->hcor->or_portsc[port];
Simon Glass0bec1282015-03-25 12:22:17 -0600160}
161
Michael Trimarchi6d4b91c2008-12-31 10:33:22 +0100162static int handshake(uint32_t *ptr, uint32_t mask, uint32_t done, int usec)
michael0a326102008-12-10 17:55:19 +0100163{
michael0bf2a032008-12-11 13:43:55 +0100164 uint32_t result;
165 do {
166 result = ehci_readl(ptr);
Wolfgang Denkcdc5a7a2010-10-22 14:23:00 +0200167 udelay(5);
michael0bf2a032008-12-11 13:43:55 +0100168 if (result == ~(uint32_t)0)
169 return -1;
170 result &= mask;
171 if (result == done)
172 return 0;
Michael Trimarchi6d4b91c2008-12-31 10:33:22 +0100173 usec--;
174 } while (usec > 0);
michael0bf2a032008-12-11 13:43:55 +0100175 return -1;
176}
177
Simon Glass302696b2015-03-25 12:22:28 -0600178static int ehci_reset(struct ehci_ctrl *ctrl)
michael0bf2a032008-12-11 13:43:55 +0100179{
180 uint32_t cmd;
michael0bf2a032008-12-11 13:43:55 +0100181 int ret = 0;
182
Simon Glass302696b2015-03-25 12:22:28 -0600183 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
Stefan Roese745af442010-11-26 15:44:00 +0100184 cmd = (cmd & ~CMD_RUN) | CMD_RESET;
Simon Glass302696b2015-03-25 12:22:28 -0600185 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
186 ret = handshake((uint32_t *)&ctrl->hcor->or_usbcmd,
Lucas Stach3494a4c2012-09-26 00:14:35 +0200187 CMD_RESET, 0, 250 * 1000);
michael0bf2a032008-12-11 13:43:55 +0100188 if (ret < 0) {
189 printf("EHCI fail to reset\n");
190 goto out;
191 }
192
Jim Lin54f3dfe2013-03-27 00:52:32 +0000193 if (ehci_is_TDI())
Simon Glass302696b2015-03-25 12:22:28 -0600194 ctrl->ops.set_usb_mode(ctrl);
Simon Glass5978cdb2012-02-27 10:52:47 +0000195
196#ifdef CONFIG_USB_EHCI_TXFIFO_THRESH
Simon Glass302696b2015-03-25 12:22:28 -0600197 cmd = ehci_readl(&ctrl->hcor->or_txfilltuning);
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200198 cmd &= ~TXFIFO_THRESH_MASK;
Simon Glass5978cdb2012-02-27 10:52:47 +0000199 cmd |= TXFIFO_THRESH(CONFIG_USB_EHCI_TXFIFO_THRESH);
Simon Glass302696b2015-03-25 12:22:28 -0600200 ehci_writel(&ctrl->hcor->or_txfilltuning, cmd);
Simon Glass5978cdb2012-02-27 10:52:47 +0000201#endif
michael0bf2a032008-12-11 13:43:55 +0100202out:
203 return ret;
michael0a326102008-12-10 17:55:19 +0100204}
Michael Trimarchi241f7512008-11-28 13:20:46 +0100205
Julius Werner5c1a1ad2013-09-24 10:53:07 -0700206static int ehci_shutdown(struct ehci_ctrl *ctrl)
207{
208 int i, ret = 0;
209 uint32_t cmd, reg;
Bin Mengc6336ee2017-07-19 21:50:05 +0800210 int max_ports = HCS_N_PORTS(ehci_readl(&ctrl->hccr->cr_hcsparams));
Julius Werner5c1a1ad2013-09-24 10:53:07 -0700211
212 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
Peng Fanba397ba2016-06-15 13:15:46 +0800213 /* If not run, directly return */
214 if (!(cmd & CMD_RUN))
215 return 0;
Julius Werner5c1a1ad2013-09-24 10:53:07 -0700216 cmd &= ~(CMD_PSE | CMD_ASE);
217 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
218 ret = handshake(&ctrl->hcor->or_usbsts, STS_ASS | STS_PSS, 0,
219 100 * 1000);
220
221 if (!ret) {
Bin Mengc6336ee2017-07-19 21:50:05 +0800222 for (i = 0; i < max_ports; i++) {
Julius Werner5c1a1ad2013-09-24 10:53:07 -0700223 reg = ehci_readl(&ctrl->hcor->or_portsc[i]);
224 reg |= EHCI_PS_SUSP;
225 ehci_writel(&ctrl->hcor->or_portsc[i], reg);
226 }
227
228 cmd &= ~CMD_RUN;
229 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
230 ret = handshake(&ctrl->hcor->or_usbsts, STS_HALT, STS_HALT,
231 HCHALT_TIMEOUT);
232 }
233
234 if (ret)
235 puts("EHCI failed to shut down host controller.\n");
236
237 return ret;
238}
239
Michael Trimarchi241f7512008-11-28 13:20:46 +0100240static int ehci_td_buffer(struct qTD *td, void *buf, size_t sz)
241{
Marek Vasutff24dc32012-04-09 04:07:46 +0200242 uint32_t delta, next;
Marek Vasutcadf42c2016-02-26 19:23:27 +0100243 unsigned long addr = (unsigned long)buf;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100244 int idx;
245
Ilya Yanokfb113712012-07-15 04:43:49 +0000246 if (addr != ALIGN(addr, ARCH_DMA_MINALIGN))
Marek Vasutff24dc32012-04-09 04:07:46 +0200247 debug("EHCI-HCD: Misaligned buffer address (%p)\n", buf);
248
Ilya Yanokfb113712012-07-15 04:43:49 +0000249 flush_dcache_range(addr, ALIGN(addr + sz, ARCH_DMA_MINALIGN));
250
Michael Trimarchi241f7512008-11-28 13:20:46 +0100251 idx = 0;
Benoît Thébaudeaue68f48a2012-07-19 22:16:38 +0200252 while (idx < QT_BUFFER_CNT) {
Marek Vasutdf0b6242016-01-23 21:04:46 +0100253 td->qt_buffer[idx] = cpu_to_hc32(virt_to_phys((void *)addr));
Wolfgang Denkebb829f2010-10-19 16:13:15 +0200254 td->qt_buffer_hi[idx] = 0;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200255 next = (addr + EHCI_PAGE_SIZE) & ~(EHCI_PAGE_SIZE - 1);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100256 delta = next - addr;
257 if (delta >= sz)
258 break;
259 sz -= delta;
260 addr = next;
261 idx++;
262 }
263
Benoît Thébaudeaue68f48a2012-07-19 22:16:38 +0200264 if (idx == QT_BUFFER_CNT) {
Rob Herringf14d54b2015-03-17 15:46:37 -0500265 printf("out of buffer pointers (%zu bytes left)\n", sz);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100266 return -1;
267 }
268
269 return 0;
270}
271
Ilya Yanoka1cf10f2012-11-06 13:48:20 +0000272static inline u8 ehci_encode_speed(enum usb_device_speed speed)
273{
274 #define QH_HIGH_SPEED 2
275 #define QH_FULL_SPEED 0
276 #define QH_LOW_SPEED 1
277 if (speed == USB_SPEED_HIGH)
278 return QH_HIGH_SPEED;
279 if (speed == USB_SPEED_LOW)
280 return QH_LOW_SPEED;
281 return QH_FULL_SPEED;
282}
283
Simon Glassa194b252015-03-25 12:22:29 -0600284static void ehci_update_endpt2_dev_n_port(struct usb_device *udev,
Hans de Goededa166772014-09-20 16:51:22 +0200285 struct QH *qh)
286{
Stefan Brünsa0105682015-12-22 01:21:03 +0100287 uint8_t portnr = 0;
288 uint8_t hubaddr = 0;
Hans de Goededa166772014-09-20 16:51:22 +0200289
Simon Glassa194b252015-03-25 12:22:29 -0600290 if (udev->speed != USB_SPEED_LOW && udev->speed != USB_SPEED_FULL)
Hans de Goededa166772014-09-20 16:51:22 +0200291 return;
292
Stefan Brünsa0105682015-12-22 01:21:03 +0100293 usb_find_usb2_hub_address_port(udev, &hubaddr, &portnr);
Hans de Goededa166772014-09-20 16:51:22 +0200294
Stefan Brünsa0105682015-12-22 01:21:03 +0100295 qh->qh_endpt2 |= cpu_to_hc32(QH_ENDPT2_PORTNUM(portnr) |
296 QH_ENDPT2_HUBADDR(hubaddr));
Hans de Goededa166772014-09-20 16:51:22 +0200297}
298
Michael Trimarchi241f7512008-11-28 13:20:46 +0100299static int
300ehci_submit_async(struct usb_device *dev, unsigned long pipe, void *buffer,
301 int length, struct devrequest *req)
302{
Tom Rini2cabcf72012-07-15 22:14:24 +0000303 ALLOC_ALIGN_BUFFER(struct QH, qh, 1, USB_DMA_MINALIGN);
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200304 struct qTD *qtd;
305 int qtd_count = 0;
Marek Vasut4f668312012-04-08 23:32:05 +0200306 int qtd_counter = 0;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100307 volatile struct qTD *vtd;
308 unsigned long ts;
309 uint32_t *tdp;
Marek Vasut569c2a52019-10-06 16:13:38 +0200310 uint32_t endpt, maxpacket, token, usbsts, qhtoken;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100311 uint32_t c, toggle;
michael0a326102008-12-10 17:55:19 +0100312 uint32_t cmd;
Simon Glassfd7f5132011-02-07 14:42:16 -0800313 int timeout;
Michael Trimarchi6d4b91c2008-12-31 10:33:22 +0100314 int ret = 0;
Simon Glasscb7cf602015-03-25 12:22:25 -0600315 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100316
michael0a326102008-12-10 17:55:19 +0100317 debug("dev=%p, pipe=%lx, buffer=%p, length=%d, req=%p\n", dev, pipe,
Michael Trimarchi241f7512008-11-28 13:20:46 +0100318 buffer, length, req);
319 if (req != NULL)
michael0a326102008-12-10 17:55:19 +0100320 debug("req=%u (%#x), type=%u (%#x), value=%u (%#x), index=%u\n",
Michael Trimarchi241f7512008-11-28 13:20:46 +0100321 req->request, req->request,
322 req->requesttype, req->requesttype,
323 le16_to_cpu(req->value), le16_to_cpu(req->value),
michael0a326102008-12-10 17:55:19 +0100324 le16_to_cpu(req->index));
Michael Trimarchi241f7512008-11-28 13:20:46 +0100325
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200326#define PKT_ALIGN 512
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200327 /*
328 * The USB transfer is split into qTD transfers. Eeach qTD transfer is
329 * described by a transfer descriptor (the qTD). The qTDs form a linked
330 * list with a queue head (QH).
331 *
332 * Each qTD transfer starts with a new USB packet, i.e. a packet cannot
333 * have its beginning in a qTD transfer and its end in the following
334 * one, so the qTD transfer lengths have to be chosen accordingly.
335 *
336 * Each qTD transfer uses up to QT_BUFFER_CNT data buffers, mapped to
337 * single pages. The first data buffer can start at any offset within a
338 * page (not considering the cache-line alignment issues), while the
339 * following buffers must be page-aligned. There is no alignment
340 * constraint on the size of a qTD transfer.
341 */
342 if (req != NULL)
343 /* 1 qTD will be needed for SETUP, and 1 for ACK. */
344 qtd_count += 1 + 1;
345 if (length > 0 || req == NULL) {
346 /*
347 * Determine the qTD transfer size that will be used for the
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200348 * data payload (not considering the first qTD transfer, which
349 * may be longer or shorter, and the final one, which may be
350 * shorter).
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200351 *
352 * In order to keep each packet within a qTD transfer, the qTD
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200353 * transfer size is aligned to PKT_ALIGN, which is a multiple of
354 * wMaxPacketSize (except in some cases for interrupt transfers,
355 * see comment in submit_int_msg()).
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200356 *
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200357 * By default, i.e. if the input buffer is aligned to PKT_ALIGN,
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200358 * QT_BUFFER_CNT full pages will be used.
359 */
360 int xfr_sz = QT_BUFFER_CNT;
361 /*
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200362 * However, if the input buffer is not aligned to PKT_ALIGN, the
363 * qTD transfer size will be one page shorter, and the first qTD
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200364 * data buffer of each transfer will be page-unaligned.
365 */
Rob Herringf14d54b2015-03-17 15:46:37 -0500366 if ((unsigned long)buffer & (PKT_ALIGN - 1))
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200367 xfr_sz--;
368 /* Convert the qTD transfer size to bytes. */
369 xfr_sz *= EHCI_PAGE_SIZE;
370 /*
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200371 * Approximate by excess the number of qTDs that will be
372 * required for the data payload. The exact formula is way more
373 * complicated and saves at most 2 qTDs, i.e. a total of 128
374 * bytes.
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200375 */
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200376 qtd_count += 2 + length / xfr_sz;
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200377 }
378/*
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200379 * Threshold value based on the worst-case total size of the allocated qTDs for
380 * a mass-storage transfer of 65535 blocks of 512 bytes.
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200381 */
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200382#if CONFIG_SYS_MALLOC_LEN <= 64 + 128 * 1024
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200383#warning CONFIG_SYS_MALLOC_LEN may be too small for EHCI
384#endif
385 qtd = memalign(USB_DMA_MINALIGN, qtd_count * sizeof(struct qTD));
386 if (qtd == NULL) {
387 printf("unable to allocate TDs\n");
388 return -1;
389 }
390
Tom Rini2cabcf72012-07-15 22:14:24 +0000391 memset(qh, 0, sizeof(struct QH));
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200392 memset(qtd, 0, qtd_count * sizeof(*qtd));
Marek Vasut4f668312012-04-08 23:32:05 +0200393
Marek Vasutff24dc32012-04-09 04:07:46 +0200394 toggle = usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
395
Marek Vasut285c8b32012-04-09 04:13:00 +0200396 /*
397 * Setup QH (3.6 in ehci-r10.pdf)
398 *
399 * qh_link ................. 03-00 H
400 * qh_endpt1 ............... 07-04 H
401 * qh_endpt2 ............... 0B-08 H
402 * - qh_curtd
403 * qh_overlay.qt_next ...... 13-10 H
404 * - qh_overlay.qt_altnext
405 */
Marek Vasutdf0b6242016-01-23 21:04:46 +0100406 qh->qh_link = cpu_to_hc32(virt_to_phys(&ctrl->qh_list) | QH_LINK_TYPE_QH);
Ilya Yanoka1cf10f2012-11-06 13:48:20 +0000407 c = (dev->speed != USB_SPEED_HIGH) && !usb_pipeendpoint(pipe);
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200408 maxpacket = usb_maxpacket(dev, pipe);
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200409 endpt = QH_ENDPT1_RL(8) | QH_ENDPT1_C(c) |
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200410 QH_ENDPT1_MAXPKTLEN(maxpacket) | QH_ENDPT1_H(0) |
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200411 QH_ENDPT1_DTC(QH_ENDPT1_DTC_DT_FROM_QTD) |
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200412 QH_ENDPT1_ENDPT(usb_pipeendpoint(pipe)) | QH_ENDPT1_I(0) |
413 QH_ENDPT1_DEVADDR(usb_pipedevice(pipe));
Chris Packham434f0582018-10-04 20:03:53 +1300414
415 /* Force FS for fsl HS quirk */
416 if (!ctrl->has_fsl_erratum_a005275)
417 endpt |= QH_ENDPT1_EPS(ehci_encode_speed(dev->speed));
418 else
419 endpt |= QH_ENDPT1_EPS(ehci_encode_speed(QH_FULL_SPEED));
420
Tom Rini2cabcf72012-07-15 22:14:24 +0000421 qh->qh_endpt1 = cpu_to_hc32(endpt);
Hans de Goededa166772014-09-20 16:51:22 +0200422 endpt = QH_ENDPT2_MULT(1) | QH_ENDPT2_UFCMASK(0) | QH_ENDPT2_UFSMASK(0);
Tom Rini2cabcf72012-07-15 22:14:24 +0000423 qh->qh_endpt2 = cpu_to_hc32(endpt);
Hans de Goededa166772014-09-20 16:51:22 +0200424 ehci_update_endpt2_dev_n_port(dev, qh);
Tom Rini2cabcf72012-07-15 22:14:24 +0000425 qh->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
Stephen Warren1907e5a2014-02-07 09:53:50 -0700426 qh->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100427
Tom Rini2cabcf72012-07-15 22:14:24 +0000428 tdp = &qh->qh_overlay.qt_next;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100429 if (req != NULL) {
Marek Vasut285c8b32012-04-09 04:13:00 +0200430 /*
431 * Setup request qTD (3.5 in ehci-r10.pdf)
432 *
433 * qt_next ................ 03-00 H
434 * qt_altnext ............. 07-04 H
435 * qt_token ............... 0B-08 H
436 *
437 * [ buffer, buffer_hi ] loaded with "req".
438 */
Marek Vasut4f668312012-04-08 23:32:05 +0200439 qtd[qtd_counter].qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
440 qtd[qtd_counter].qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200441 token = QT_TOKEN_DT(0) | QT_TOKEN_TOTALBYTES(sizeof(*req)) |
442 QT_TOKEN_IOC(0) | QT_TOKEN_CPAGE(0) | QT_TOKEN_CERR(3) |
443 QT_TOKEN_PID(QT_TOKEN_PID_SETUP) |
444 QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE);
Marek Vasut4f668312012-04-08 23:32:05 +0200445 qtd[qtd_counter].qt_token = cpu_to_hc32(token);
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200446 if (ehci_td_buffer(&qtd[qtd_counter], req, sizeof(*req))) {
447 printf("unable to construct SETUP TD\n");
Michael Trimarchi241f7512008-11-28 13:20:46 +0100448 goto fail;
449 }
Marek Vasut285c8b32012-04-09 04:13:00 +0200450 /* Update previous qTD! */
Marek Vasutdf0b6242016-01-23 21:04:46 +0100451 *tdp = cpu_to_hc32(virt_to_phys(&qtd[qtd_counter]));
Marek Vasut4f668312012-04-08 23:32:05 +0200452 tdp = &qtd[qtd_counter++].qt_next;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100453 toggle = 1;
454 }
455
456 if (length > 0 || req == NULL) {
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200457 uint8_t *buf_ptr = buffer;
458 int left_length = length;
459
460 do {
461 /*
462 * Determine the size of this qTD transfer. By default,
463 * QT_BUFFER_CNT full pages can be used.
464 */
465 int xfr_bytes = QT_BUFFER_CNT * EHCI_PAGE_SIZE;
466 /*
467 * However, if the input buffer is not page-aligned, the
468 * portion of the first page before the buffer start
469 * offset within that page is unusable.
470 */
Rob Herringf14d54b2015-03-17 15:46:37 -0500471 xfr_bytes -= (unsigned long)buf_ptr & (EHCI_PAGE_SIZE - 1);
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200472 /*
473 * In order to keep each packet within a qTD transfer,
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200474 * align the qTD transfer size to PKT_ALIGN.
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200475 */
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200476 xfr_bytes &= ~(PKT_ALIGN - 1);
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200477 /*
478 * This transfer may be shorter than the available qTD
479 * transfer size that has just been computed.
480 */
481 xfr_bytes = min(xfr_bytes, left_length);
482
483 /*
484 * Setup request qTD (3.5 in ehci-r10.pdf)
485 *
486 * qt_next ................ 03-00 H
487 * qt_altnext ............. 07-04 H
488 * qt_token ............... 0B-08 H
489 *
490 * [ buffer, buffer_hi ] loaded with "buffer".
491 */
492 qtd[qtd_counter].qt_next =
493 cpu_to_hc32(QT_NEXT_TERMINATE);
494 qtd[qtd_counter].qt_altnext =
495 cpu_to_hc32(QT_NEXT_TERMINATE);
496 token = QT_TOKEN_DT(toggle) |
497 QT_TOKEN_TOTALBYTES(xfr_bytes) |
498 QT_TOKEN_IOC(req == NULL) | QT_TOKEN_CPAGE(0) |
499 QT_TOKEN_CERR(3) |
500 QT_TOKEN_PID(usb_pipein(pipe) ?
501 QT_TOKEN_PID_IN : QT_TOKEN_PID_OUT) |
502 QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE);
503 qtd[qtd_counter].qt_token = cpu_to_hc32(token);
504 if (ehci_td_buffer(&qtd[qtd_counter], buf_ptr,
505 xfr_bytes)) {
506 printf("unable to construct DATA TD\n");
507 goto fail;
508 }
509 /* Update previous qTD! */
Marek Vasutdf0b6242016-01-23 21:04:46 +0100510 *tdp = cpu_to_hc32(virt_to_phys(&qtd[qtd_counter]));
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200511 tdp = &qtd[qtd_counter++].qt_next;
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200512 /*
513 * Data toggle has to be adjusted since the qTD transfer
514 * size is not always an even multiple of
515 * wMaxPacketSize.
516 */
517 if ((xfr_bytes / maxpacket) & 1)
518 toggle ^= 1;
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200519 buf_ptr += xfr_bytes;
520 left_length -= xfr_bytes;
521 } while (left_length > 0);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100522 }
523
524 if (req != NULL) {
Marek Vasut285c8b32012-04-09 04:13:00 +0200525 /*
526 * Setup request qTD (3.5 in ehci-r10.pdf)
527 *
528 * qt_next ................ 03-00 H
529 * qt_altnext ............. 07-04 H
530 * qt_token ............... 0B-08 H
531 */
Marek Vasut4f668312012-04-08 23:32:05 +0200532 qtd[qtd_counter].qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
533 qtd[qtd_counter].qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200534 token = QT_TOKEN_DT(1) | QT_TOKEN_TOTALBYTES(0) |
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200535 QT_TOKEN_IOC(1) | QT_TOKEN_CPAGE(0) | QT_TOKEN_CERR(3) |
536 QT_TOKEN_PID(usb_pipein(pipe) ?
537 QT_TOKEN_PID_OUT : QT_TOKEN_PID_IN) |
538 QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE);
Marek Vasut4f668312012-04-08 23:32:05 +0200539 qtd[qtd_counter].qt_token = cpu_to_hc32(token);
Marek Vasut285c8b32012-04-09 04:13:00 +0200540 /* Update previous qTD! */
Marek Vasutdf0b6242016-01-23 21:04:46 +0100541 *tdp = cpu_to_hc32(virt_to_phys(&qtd[qtd_counter]));
Marek Vasut4f668312012-04-08 23:32:05 +0200542 tdp = &qtd[qtd_counter++].qt_next;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100543 }
544
Marek Vasutdf0b6242016-01-23 21:04:46 +0100545 ctrl->qh_list.qh_link = cpu_to_hc32(virt_to_phys(qh) | QH_LINK_TYPE_QH);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100546
Stefan Roese25983c12009-01-21 17:12:19 +0100547 /* Flush dcache */
Rob Herringf14d54b2015-03-17 15:46:37 -0500548 flush_dcache_range((unsigned long)&ctrl->qh_list,
Lucas Stach3494a4c2012-09-26 00:14:35 +0200549 ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1));
Rob Herringf14d54b2015-03-17 15:46:37 -0500550 flush_dcache_range((unsigned long)qh, ALIGN_END_ADDR(struct QH, qh, 1));
551 flush_dcache_range((unsigned long)qtd,
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200552 ALIGN_END_ADDR(struct qTD, qtd, qtd_count));
Stefan Roese25983c12009-01-21 17:12:19 +0100553
Lucas Stach3494a4c2012-09-26 00:14:35 +0200554 usbsts = ehci_readl(&ctrl->hcor->or_usbsts);
555 ehci_writel(&ctrl->hcor->or_usbsts, (usbsts & 0x3f));
Michael Trimarchi241f7512008-11-28 13:20:46 +0100556
557 /* Enable async. schedule. */
Lucas Stach3494a4c2012-09-26 00:14:35 +0200558 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
Marek Vasut569c2a52019-10-06 16:13:38 +0200559 if (!(cmd & CMD_ASE)) {
560 cmd |= CMD_ASE;
561 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
michael0a326102008-12-10 17:55:19 +0100562
Marek Vasut569c2a52019-10-06 16:13:38 +0200563 ret = handshake((uint32_t *)&ctrl->hcor->or_usbsts, STS_ASS, STS_ASS,
564 100 * 1000);
565 if (ret < 0) {
566 printf("EHCI fail timeout STS_ASS set\n");
567 goto fail;
568 }
michael0bf2a032008-12-11 13:43:55 +0100569 }
Michael Trimarchi241f7512008-11-28 13:20:46 +0100570
571 /* Wait for TDs to be processed. */
572 ts = get_timer(0);
Marek Vasut4f668312012-04-08 23:32:05 +0200573 vtd = &qtd[qtd_counter - 1];
Simon Glassfd7f5132011-02-07 14:42:16 -0800574 timeout = USB_TIMEOUT_MS(pipe);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100575 do {
Stefan Roese25983c12009-01-21 17:12:19 +0100576 /* Invalidate dcache */
Rob Herringf14d54b2015-03-17 15:46:37 -0500577 invalidate_dcache_range((unsigned long)&ctrl->qh_list,
Lucas Stach3494a4c2012-09-26 00:14:35 +0200578 ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1));
Rob Herringf14d54b2015-03-17 15:46:37 -0500579 invalidate_dcache_range((unsigned long)qh,
Tom Rini2cabcf72012-07-15 22:14:24 +0000580 ALIGN_END_ADDR(struct QH, qh, 1));
Rob Herringf14d54b2015-03-17 15:46:37 -0500581 invalidate_dcache_range((unsigned long)qtd,
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200582 ALIGN_END_ADDR(struct qTD, qtd, qtd_count));
Marek Vasutff24dc32012-04-09 04:07:46 +0200583
michael0a326102008-12-10 17:55:19 +0100584 token = hc32_to_cpu(vtd->qt_token);
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200585 if (!(QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE))
Michael Trimarchi241f7512008-11-28 13:20:46 +0100586 break;
Stefan Roese86b34cf2010-11-26 15:43:28 +0100587 WATCHDOG_RESET();
Simon Glassfd7f5132011-02-07 14:42:16 -0800588 } while (get_timer(ts) < timeout);
Marek Vasut569c2a52019-10-06 16:13:38 +0200589 qhtoken = hc32_to_cpu(qh->qh_overlay.qt_token);
590
591 ctrl->qh_list.qh_link = cpu_to_hc32(virt_to_phys(&ctrl->qh_list) | QH_LINK_TYPE_QH);
592 flush_dcache_range((unsigned long)&ctrl->qh_list,
593 ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1));
Simon Glassfd7f5132011-02-07 14:42:16 -0800594
Ilya Yanokfb113712012-07-15 04:43:49 +0000595 /*
596 * Invalidate the memory area occupied by buffer
597 * Don't try to fix the buffer alignment, if it isn't properly
598 * aligned it's upper layer's fault so let invalidate_dcache_range()
599 * vow about it. But we have to fix the length as it's actual
600 * transfer length and can be unaligned. This is potentially
601 * dangerous operation, it's responsibility of the calling
602 * code to make sure enough space is reserved.
603 */
Dirk Behme78c73562017-11-17 15:28:36 +0100604 if (buffer != NULL && length > 0)
605 invalidate_dcache_range((unsigned long)buffer,
606 ALIGN((unsigned long)buffer + length, ARCH_DMA_MINALIGN));
Marek Vasutff24dc32012-04-09 04:07:46 +0200607
Simon Glassfd7f5132011-02-07 14:42:16 -0800608 /* Check that the TD processing happened */
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200609 if (QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE)
Simon Glassfd7f5132011-02-07 14:42:16 -0800610 printf("EHCI timed out on TD - token=%#x\n", token);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100611
Marek Vasut569c2a52019-10-06 16:13:38 +0200612 if (!(QT_TOKEN_GET_STATUS(qhtoken) & QT_TOKEN_STATUS_ACTIVE)) {
613 debug("TOKEN=%#x\n", qhtoken);
614 switch (QT_TOKEN_GET_STATUS(qhtoken) &
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200615 ~(QT_TOKEN_STATUS_SPLITXSTATE | QT_TOKEN_STATUS_PERR)) {
Michael Trimarchi241f7512008-11-28 13:20:46 +0100616 case 0:
Marek Vasut569c2a52019-10-06 16:13:38 +0200617 toggle = QT_TOKEN_GET_DT(qhtoken);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100618 usb_settoggle(dev, usb_pipeendpoint(pipe),
619 usb_pipeout(pipe), toggle);
620 dev->status = 0;
621 break;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200622 case QT_TOKEN_STATUS_HALTED:
Michael Trimarchi241f7512008-11-28 13:20:46 +0100623 dev->status = USB_ST_STALLED;
624 break;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200625 case QT_TOKEN_STATUS_ACTIVE | QT_TOKEN_STATUS_DATBUFERR:
626 case QT_TOKEN_STATUS_DATBUFERR:
Michael Trimarchi241f7512008-11-28 13:20:46 +0100627 dev->status = USB_ST_BUF_ERR;
628 break;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200629 case QT_TOKEN_STATUS_HALTED | QT_TOKEN_STATUS_BABBLEDET:
630 case QT_TOKEN_STATUS_BABBLEDET:
Michael Trimarchi241f7512008-11-28 13:20:46 +0100631 dev->status = USB_ST_BABBLE_DET;
632 break;
633 default:
634 dev->status = USB_ST_CRC_ERR;
Marek Vasut569c2a52019-10-06 16:13:38 +0200635 if (QT_TOKEN_GET_STATUS(qhtoken) & QT_TOKEN_STATUS_HALTED)
Anatolij Gustschine1e09312010-11-02 11:47:29 +0100636 dev->status |= USB_ST_STALLED;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100637 break;
638 }
Marek Vasut569c2a52019-10-06 16:13:38 +0200639 dev->act_len = length - QT_TOKEN_GET_TOTALBYTES(qhtoken);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100640 } else {
641 dev->act_len = 0;
Kuo-Jung Sub5d59de2013-05-15 15:29:23 +0800642#ifndef CONFIG_USB_EHCI_FARADAY
michael0a326102008-12-10 17:55:19 +0100643 debug("dev=%u, usbsts=%#x, p[1]=%#x, p[2]=%#x\n",
Lucas Stach3494a4c2012-09-26 00:14:35 +0200644 dev->devnum, ehci_readl(&ctrl->hcor->or_usbsts),
645 ehci_readl(&ctrl->hcor->or_portsc[0]),
646 ehci_readl(&ctrl->hcor->or_portsc[1]));
Kuo-Jung Sub5d59de2013-05-15 15:29:23 +0800647#endif
Michael Trimarchi241f7512008-11-28 13:20:46 +0100648 }
649
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200650 free(qtd);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100651 return (dev->status != USB_ST_NOT_PROC) ? 0 : -1;
652
653fail:
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200654 free(qtd);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100655 return -1;
656}
657
Simon Glasscb7cf602015-03-25 12:22:25 -0600658static int ehci_submit_root(struct usb_device *dev, unsigned long pipe,
659 void *buffer, int length, struct devrequest *req)
Michael Trimarchi241f7512008-11-28 13:20:46 +0100660{
661 uint8_t tmpbuf[4];
662 u16 typeReq;
michael0a326102008-12-10 17:55:19 +0100663 void *srcptr = NULL;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100664 int len, srclen;
665 uint32_t reg;
Remy Böhmer33e87482008-12-13 22:51:58 +0100666 uint32_t *status_reg;
Julius Wernerd4046702013-02-28 18:08:40 +0000667 int port = le16_to_cpu(req->index) & 0xff;
Simon Glasscb7cf602015-03-25 12:22:25 -0600668 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100669
670 srclen = 0;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100671
michael0a326102008-12-10 17:55:19 +0100672 debug("req=%u (%#x), type=%u (%#x), value=%u, index=%u\n",
Michael Trimarchi241f7512008-11-28 13:20:46 +0100673 req->request, req->request,
674 req->requesttype, req->requesttype,
675 le16_to_cpu(req->value), le16_to_cpu(req->index));
676
Prafulla Wadaskar22810292009-07-17 19:56:30 +0530677 typeReq = req->request | req->requesttype << 8;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100678
Prafulla Wadaskar22810292009-07-17 19:56:30 +0530679 switch (typeReq) {
Kuo-Jung Su9930e9f2013-05-15 15:29:20 +0800680 case USB_REQ_GET_STATUS | ((USB_RT_PORT | USB_DIR_IN) << 8):
681 case USB_REQ_SET_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
682 case USB_REQ_CLEAR_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
Simon Glassdc9f3ed2015-03-25 12:22:27 -0600683 status_reg = ctrl->ops.get_portsc_register(ctrl, port - 1);
Kuo-Jung Su6a656df2013-05-15 15:29:21 +0800684 if (!status_reg)
Kuo-Jung Su9930e9f2013-05-15 15:29:20 +0800685 return -1;
Kuo-Jung Su9930e9f2013-05-15 15:29:20 +0800686 break;
687 default:
688 status_reg = NULL;
689 break;
690 }
691
692 switch (typeReq) {
Michael Trimarchi241f7512008-11-28 13:20:46 +0100693 case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
694 switch (le16_to_cpu(req->value) >> 8) {
695 case USB_DT_DEVICE:
michael0a326102008-12-10 17:55:19 +0100696 debug("USB_DT_DEVICE request\n");
697 srcptr = &descriptor.device;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200698 srclen = descriptor.device.bLength;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100699 break;
700 case USB_DT_CONFIG:
michael0a326102008-12-10 17:55:19 +0100701 debug("USB_DT_CONFIG config\n");
702 srcptr = &descriptor.config;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200703 srclen = descriptor.config.bLength +
704 descriptor.interface.bLength +
705 descriptor.endpoint.bLength;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100706 break;
707 case USB_DT_STRING:
michael0a326102008-12-10 17:55:19 +0100708 debug("USB_DT_STRING config\n");
Michael Trimarchi241f7512008-11-28 13:20:46 +0100709 switch (le16_to_cpu(req->value) & 0xff) {
710 case 0: /* Language */
711 srcptr = "\4\3\1\0";
712 srclen = 4;
713 break;
714 case 1: /* Vendor */
715 srcptr = "\16\3u\0-\0b\0o\0o\0t\0";
716 srclen = 14;
717 break;
718 case 2: /* Product */
719 srcptr = "\52\3E\0H\0C\0I\0 "
720 "\0H\0o\0s\0t\0 "
721 "\0C\0o\0n\0t\0r\0o\0l\0l\0e\0r\0";
722 srclen = 42;
723 break;
724 default:
michael0a326102008-12-10 17:55:19 +0100725 debug("unknown value DT_STRING %x\n",
726 le16_to_cpu(req->value));
Michael Trimarchi241f7512008-11-28 13:20:46 +0100727 goto unknown;
728 }
729 break;
730 default:
michael0a326102008-12-10 17:55:19 +0100731 debug("unknown value %x\n", le16_to_cpu(req->value));
Michael Trimarchi241f7512008-11-28 13:20:46 +0100732 goto unknown;
733 }
734 break;
735 case USB_REQ_GET_DESCRIPTOR | ((USB_DIR_IN | USB_RT_HUB) << 8):
736 switch (le16_to_cpu(req->value) >> 8) {
737 case USB_DT_HUB:
michael0a326102008-12-10 17:55:19 +0100738 debug("USB_DT_HUB config\n");
739 srcptr = &descriptor.hub;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200740 srclen = descriptor.hub.bLength;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100741 break;
742 default:
michael0a326102008-12-10 17:55:19 +0100743 debug("unknown value %x\n", le16_to_cpu(req->value));
Michael Trimarchi241f7512008-11-28 13:20:46 +0100744 goto unknown;
745 }
746 break;
747 case USB_REQ_SET_ADDRESS | (USB_RECIP_DEVICE << 8):
michael0a326102008-12-10 17:55:19 +0100748 debug("USB_REQ_SET_ADDRESS\n");
Lucas Stach3494a4c2012-09-26 00:14:35 +0200749 ctrl->rootdev = le16_to_cpu(req->value);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100750 break;
751 case DeviceOutRequest | USB_REQ_SET_CONFIGURATION:
michael0a326102008-12-10 17:55:19 +0100752 debug("USB_REQ_SET_CONFIGURATION\n");
Michael Trimarchi241f7512008-11-28 13:20:46 +0100753 /* Nothing to do */
754 break;
755 case USB_REQ_GET_STATUS | ((USB_DIR_IN | USB_RT_HUB) << 8):
756 tmpbuf[0] = 1; /* USB_STATUS_SELFPOWERED */
757 tmpbuf[1] = 0;
758 srcptr = tmpbuf;
759 srclen = 2;
760 break;
michael0a326102008-12-10 17:55:19 +0100761 case USB_REQ_GET_STATUS | ((USB_RT_PORT | USB_DIR_IN) << 8):
Michael Trimarchi241f7512008-11-28 13:20:46 +0100762 memset(tmpbuf, 0, 4);
Remy Böhmer33e87482008-12-13 22:51:58 +0100763 reg = ehci_readl(status_reg);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100764 if (reg & EHCI_PS_CS)
765 tmpbuf[0] |= USB_PORT_STAT_CONNECTION;
766 if (reg & EHCI_PS_PE)
767 tmpbuf[0] |= USB_PORT_STAT_ENABLE;
768 if (reg & EHCI_PS_SUSP)
769 tmpbuf[0] |= USB_PORT_STAT_SUSPEND;
770 if (reg & EHCI_PS_OCA)
771 tmpbuf[0] |= USB_PORT_STAT_OVERCURRENT;
Sergei Shtylyov23dec682010-02-27 21:33:21 +0300772 if (reg & EHCI_PS_PR)
773 tmpbuf[0] |= USB_PORT_STAT_RESET;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100774 if (reg & EHCI_PS_PP)
775 tmpbuf[1] |= USB_PORT_STAT_POWER >> 8;
Stefan Roese497f1842009-01-21 17:12:01 +0100776
777 if (ehci_is_TDI()) {
Simon Glassdc9f3ed2015-03-25 12:22:27 -0600778 switch (ctrl->ops.get_port_speed(ctrl, reg)) {
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200779 case PORTSC_PSPD_FS:
Stefan Roese497f1842009-01-21 17:12:01 +0100780 break;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200781 case PORTSC_PSPD_LS:
Stefan Roese497f1842009-01-21 17:12:01 +0100782 tmpbuf[1] |= USB_PORT_STAT_LOW_SPEED >> 8;
783 break;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200784 case PORTSC_PSPD_HS:
Stefan Roese497f1842009-01-21 17:12:01 +0100785 default:
786 tmpbuf[1] |= USB_PORT_STAT_HIGH_SPEED >> 8;
787 break;
788 }
789 } else {
790 tmpbuf[1] |= USB_PORT_STAT_HIGH_SPEED >> 8;
791 }
Michael Trimarchi241f7512008-11-28 13:20:46 +0100792
793 if (reg & EHCI_PS_CSC)
794 tmpbuf[2] |= USB_PORT_STAT_C_CONNECTION;
795 if (reg & EHCI_PS_PEC)
796 tmpbuf[2] |= USB_PORT_STAT_C_ENABLE;
797 if (reg & EHCI_PS_OCC)
798 tmpbuf[2] |= USB_PORT_STAT_C_OVERCURRENT;
Julius Wernerd4046702013-02-28 18:08:40 +0000799 if (ctrl->portreset & (1 << port))
Michael Trimarchi241f7512008-11-28 13:20:46 +0100800 tmpbuf[2] |= USB_PORT_STAT_C_RESET;
Remy Böhmer33e87482008-12-13 22:51:58 +0100801
Michael Trimarchi241f7512008-11-28 13:20:46 +0100802 srcptr = tmpbuf;
803 srclen = 4;
804 break;
michael0a326102008-12-10 17:55:19 +0100805 case USB_REQ_SET_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
Remy Böhmer33e87482008-12-13 22:51:58 +0100806 reg = ehci_readl(status_reg);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100807 reg &= ~EHCI_PS_CLEAR;
808 switch (le16_to_cpu(req->value)) {
michael0bf2a032008-12-11 13:43:55 +0100809 case USB_PORT_FEAT_ENABLE:
810 reg |= EHCI_PS_PE;
Remy Böhmer33e87482008-12-13 22:51:58 +0100811 ehci_writel(status_reg, reg);
michael0bf2a032008-12-11 13:43:55 +0100812 break;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100813 case USB_PORT_FEAT_POWER:
Lucas Stach3494a4c2012-09-26 00:14:35 +0200814 if (HCS_PPC(ehci_readl(&ctrl->hccr->cr_hcsparams))) {
Remy Böhmer33e87482008-12-13 22:51:58 +0100815 reg |= EHCI_PS_PP;
816 ehci_writel(status_reg, reg);
817 }
Michael Trimarchi241f7512008-11-28 13:20:46 +0100818 break;
819 case USB_PORT_FEAT_RESET:
Remy Böhmer33e87482008-12-13 22:51:58 +0100820 if ((reg & (EHCI_PS_PE | EHCI_PS_CS)) == EHCI_PS_CS &&
821 !ehci_is_TDI() &&
822 EHCI_PS_IS_LOWSPEED(reg)) {
Michael Trimarchi241f7512008-11-28 13:20:46 +0100823 /* Low speed device, give up ownership. */
Remy Böhmer33e87482008-12-13 22:51:58 +0100824 debug("port %d low speed --> companion\n",
Julius Wernerd4046702013-02-28 18:08:40 +0000825 port - 1);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100826 reg |= EHCI_PS_PO;
Remy Böhmer33e87482008-12-13 22:51:58 +0100827 ehci_writel(status_reg, reg);
Hans de Goede63f34ca2015-05-10 14:10:16 +0200828 return -ENXIO;
Remy Böhmer33e87482008-12-13 22:51:58 +0100829 } else {
Sergei Shtylyov23dec682010-02-27 21:33:21 +0300830 int ret;
831
Chris Packham434f0582018-10-04 20:03:53 +1300832 /* Disable chirp for HS erratum */
833 if (ctrl->has_fsl_erratum_a005275)
834 reg |= PORTSC_FSL_PFSC;
835
Remy Böhmer33e87482008-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 Glassdc9f3ed2015-03-25 12:22:27 -0600844 ctrl->ops.powerup_fixup(ctrl, status_reg, &reg);
Marek Vasut09734772011-07-11 02:37:01 +0200845
Chris Zhangfddf6d62010-01-06 13:34:04 -0800846 ehci_writel(status_reg, reg & ~EHCI_PS_PR);
Sergei Shtylyov23dec682010-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 Goedeb5b3ef22015-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 Goede63f34ca2015-05-10 14:10:16 +0200862 return -ENXIO;
Hans de Goedeb5b3ef22015-05-10 14:10:13 +0200863 } else {
864 ctrl->portreset |= 1 << port;
865 }
866 } else {
Sergei Shtylyov23dec682010-02-27 21:33:21 +0300867 printf("port(%d) reset error\n",
Julius Wernerd4046702013-02-28 18:08:40 +0000868 port - 1);
Hans de Goedeb5b3ef22015-05-10 14:10:13 +0200869 }
Michael Trimarchi241f7512008-11-28 13:20:46 +0100870 }
Michael Trimarchi241f7512008-11-28 13:20:46 +0100871 break;
Julius Wernerd4046702013-02-28 18:08:40 +0000872 case USB_PORT_FEAT_TEST:
Julius Werner5c1a1ad2013-09-24 10:53:07 -0700873 ehci_shutdown(ctrl);
Julius Wernerd4046702013-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 Trimarchi241f7512008-11-28 13:20:46 +0100878 default:
michael0a326102008-12-10 17:55:19 +0100879 debug("unknown feature %x\n", le16_to_cpu(req->value));
Michael Trimarchi241f7512008-11-28 13:20:46 +0100880 goto unknown;
881 }
Remy Böhmer33e87482008-12-13 22:51:58 +0100882 /* unblock posted writes */
Lucas Stach3494a4c2012-09-26 00:14:35 +0200883 (void) ehci_readl(&ctrl->hcor->or_usbcmd);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100884 break;
michael0a326102008-12-10 17:55:19 +0100885 case USB_REQ_CLEAR_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
Remy Böhmer33e87482008-12-13 22:51:58 +0100886 reg = ehci_readl(status_reg);
Simon Glass0554ba52013-05-10 19:49:00 -0700887 reg &= ~EHCI_PS_CLEAR;
Michael Trimarchi241f7512008-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öhmer33e87482008-12-13 22:51:58 +0100892 case USB_PORT_FEAT_C_ENABLE:
Simon Glass0554ba52013-05-10 19:49:00 -0700893 reg |= EHCI_PS_PE;
Remy Böhmer33e87482008-12-13 22:51:58 +0100894 break;
895 case USB_PORT_FEAT_POWER:
Lucas Stach3494a4c2012-09-26 00:14:35 +0200896 if (HCS_PPC(ehci_readl(&ctrl->hccr->cr_hcsparams)))
Simon Glass0554ba52013-05-10 19:49:00 -0700897 reg &= ~EHCI_PS_PP;
898 break;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100899 case USB_PORT_FEAT_C_CONNECTION:
Simon Glass0554ba52013-05-10 19:49:00 -0700900 reg |= EHCI_PS_CSC;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100901 break;
michael0bf2a032008-12-11 13:43:55 +0100902 case USB_PORT_FEAT_OVER_CURRENT:
Simon Glass0554ba52013-05-10 19:49:00 -0700903 reg |= EHCI_PS_OCC;
michael0bf2a032008-12-11 13:43:55 +0100904 break;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100905 case USB_PORT_FEAT_C_RESET:
Julius Wernerd4046702013-02-28 18:08:40 +0000906 ctrl->portreset &= ~(1 << port);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100907 break;
908 default:
michael0a326102008-12-10 17:55:19 +0100909 debug("unknown feature %x\n", le16_to_cpu(req->value));
Michael Trimarchi241f7512008-11-28 13:20:46 +0100910 goto unknown;
911 }
Remy Böhmer33e87482008-12-13 22:51:58 +0100912 ehci_writel(status_reg, reg);
913 /* unblock posted write */
Lucas Stach3494a4c2012-09-26 00:14:35 +0200914 (void) ehci_readl(&ctrl->hcor->or_usbcmd);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100915 break;
916 default:
michael0a326102008-12-10 17:55:19 +0100917 debug("Unknown request\n");
Michael Trimarchi241f7512008-11-28 13:20:46 +0100918 goto unknown;
919 }
920
Mike Frysinger60ce19a2012-03-05 13:47:00 +0000921 mdelay(1);
Masahiro Yamadadb204642014-11-07 03:03:31 +0900922 len = min3(srclen, (int)le16_to_cpu(req->length), length);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100923 if (srcptr != NULL && len > 0)
924 memcpy(buffer, srcptr, len);
michael0a326102008-12-10 17:55:19 +0100925 else
926 debug("Len is 0\n");
927
Michael Trimarchi241f7512008-11-28 13:20:46 +0100928 dev->act_len = len;
929 dev->status = 0;
930 return 0;
931
932unknown:
michael0a326102008-12-10 17:55:19 +0100933 debug("requesttype=%x, request=%x, value=%x, index=%x, length=%x\n",
Michael Trimarchi241f7512008-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 Yamada6d8e4332017-06-22 16:35:14 +0900942static const struct ehci_ops default_ehci_ops = {
Simon Glassdc9f3ed2015-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 Glass0851caa2015-03-25 12:22:19 -0600950{
Simon Glassdc9f3ed2015-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 }
Simon Glass0851caa2015-03-25 12:22:19 -0600965}
966
Sven Schwermer8a3cb9f12018-11-21 08:43:56 +0100967#if !CONFIG_IS_ENABLED(DM_USB)
Simon Glassdc9f3ed2015-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);
974}
975
Simon Glass0851caa2015-03-25 12:22:19 -0600976void *ehci_get_controller_priv(int index)
977{
978 return ehcic[index].priv;
979}
Simon Glassa194b252015-03-25 12:22:29 -0600980#endif
Simon Glass0851caa2015-03-25 12:22:19 -0600981
Simon Glassccc40fd2015-03-25 12:22:26 -0600982static int ehci_common_init(struct ehci_ctrl *ctrl, uint tweaks)
Michael Trimarchi241f7512008-11-28 13:20:46 +0100983{
Lucas Stach3494a4c2012-09-26 00:14:35 +0200984 struct QH *qh_list;
Patrick Georgie55fdac2013-03-06 14:08:31 +0000985 struct QH *periodic;
Simon Glassccc40fd2015-03-25 12:22:26 -0600986 uint32_t reg;
987 uint32_t cmd;
Patrick Georgie55fdac2013-03-06 14:08:31 +0000988 int i;
michael0bf2a032008-12-11 13:43:55 +0100989
Vincent Palatin0d6f77c2012-12-12 17:55:22 -0800990 /* Set the high address word (aka segment) for 64-bit controller */
Simon Glassccc40fd2015-03-25 12:22:26 -0600991 if (ehci_readl(&ctrl->hccr->cr_hccparams) & 1)
992 ehci_writel(&ctrl->hcor->or_ctrldssegment, 0);
Stefan Roese2e98fc72009-01-21 17:12:10 +0100993
Simon Glassccc40fd2015-03-25 12:22:26 -0600994 qh_list = &ctrl->qh_list;
Lucas Stach3494a4c2012-09-26 00:14:35 +0200995
Michael Trimarchi241f7512008-11-28 13:20:46 +0100996 /* Set head of reclaim list */
Tom Rini2cabcf72012-07-15 22:14:24 +0000997 memset(qh_list, 0, sizeof(*qh_list));
Marek Vasutdf0b6242016-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ébaudeau458fb1e2012-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 Rini2cabcf72012-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ébaudeau458fb1e2012-08-10 18:22:11 +02001003 qh_list->qh_overlay.qt_token =
1004 cpu_to_hc32(QT_TOKEN_STATUS(QT_TOKEN_STATUS_HALTED));
Michael Trimarchi241f7512008-11-28 13:20:46 +01001005
Rob Herringf14d54b2015-03-17 15:46:37 -05001006 flush_dcache_range((unsigned long)qh_list,
Stephen Warren36dad662013-05-24 15:03:17 -06001007 ALIGN_END_ADDR(struct QH, qh_list, 1));
1008
Patrick Georgie55fdac2013-03-06 14:08:31 +00001009 /* Set async. queue head pointer. */
Marek Vasutdf0b6242016-01-23 21:04:46 +01001010 ehci_writel(&ctrl->hcor->or_asynclistaddr, virt_to_phys(qh_list));
Patrick Georgie55fdac2013-03-06 14:08:31 +00001011
1012 /*
1013 * Set up periodic list
1014 * Step 1: Parent QH for all periodic transfers.
1015 */
Simon Glassccc40fd2015-03-25 12:22:26 -06001016 ctrl->periodic_schedules = 0;
1017 periodic = &ctrl->periodic_queue;
Patrick Georgie55fdac2013-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 Herringf14d54b2015-03-17 15:46:37 -05001023 flush_dcache_range((unsigned long)periodic,
Stephen Warren36dad662013-05-24 15:03:17 -06001024 ALIGN_END_ADDR(struct QH, periodic, 1));
1025
Patrick Georgie55fdac2013-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 Glassccc40fd2015-03-25 12:22:26 -06001035 if (ctrl->periodic_list == NULL)
1036 ctrl->periodic_list = memalign(4096, 1024 * 4);
Nikita Kiryanov2f13e442013-07-29 13:27:40 +03001037
Simon Glassccc40fd2015-03-25 12:22:26 -06001038 if (!ctrl->periodic_list)
Patrick Georgie55fdac2013-03-06 14:08:31 +00001039 return -ENOMEM;
1040 for (i = 0; i < 1024; i++) {
Simon Glassccc40fd2015-03-25 12:22:26 -06001041 ctrl->periodic_list[i] = cpu_to_hc32((unsigned long)periodic
Adrian Cox29d05872014-04-10 13:29:45 +01001042 | QH_LINK_TYPE_QH);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001043 }
1044
Simon Glassccc40fd2015-03-25 12:22:26 -06001045 flush_dcache_range((unsigned long)ctrl->periodic_list,
1046 ALIGN_END_ADDR(uint32_t, ctrl->periodic_list,
Stephen Warren36dad662013-05-24 15:03:17 -06001047 1024));
1048
Patrick Georgie55fdac2013-03-06 14:08:31 +00001049 /* Set periodic list base address */
Simon Glassccc40fd2015-03-25 12:22:26 -06001050 ehci_writel(&ctrl->hcor->or_periodiclistbase,
1051 (unsigned long)ctrl->periodic_list);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001052
Simon Glassccc40fd2015-03-25 12:22:26 -06001053 reg = ehci_readl(&ctrl->hccr->cr_hcsparams);
michael0bf2a032008-12-11 13:43:55 +01001054 descriptor.hub.bNbrPorts = HCS_N_PORTS(reg);
Lucas Stachf5b34082012-09-28 00:26:19 +02001055 debug("Register %x NbrPorts %d\n", reg, descriptor.hub.bNbrPorts);
Remy Böhmer33e87482008-12-13 22:51:58 +01001056 /* Port Indicators */
1057 if (HCS_INDICATOR(reg))
Lucas Stach835e11e2012-09-06 08:00:13 +02001058 put_unaligned(get_unaligned(&descriptor.hub.wHubCharacteristics)
1059 | 0x80, &descriptor.hub.wHubCharacteristics);
Remy Böhmer33e87482008-12-13 22:51:58 +01001060 /* Port Power Control */
1061 if (HCS_PPC(reg))
Lucas Stach835e11e2012-09-06 08:00:13 +02001062 put_unaligned(get_unaligned(&descriptor.hub.wHubCharacteristics)
1063 | 0x01, &descriptor.hub.wHubCharacteristics);
Michael Trimarchi241f7512008-11-28 13:20:46 +01001064
Michael Trimarchi241f7512008-11-28 13:20:46 +01001065 /* Start the host controller. */
Simon Glassccc40fd2015-03-25 12:22:26 -06001066 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
Wolfgang Denkfb718e12009-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 */
michael0bf2a032008-12-11 13:43:55 +01001071 cmd &= ~(CMD_LRESET|CMD_IAAD|CMD_PSE|CMD_ASE|CMD_RESET);
1072 cmd |= CMD_RUN;
Simon Glassccc40fd2015-03-25 12:22:26 -06001073 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
michael0bf2a032008-12-11 13:43:55 +01001074
Simon Glassccc40fd2015-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 Sub5d59de2013-05-15 15:29:23 +08001081
Remy Böhmer33e87482008-12-13 22:51:58 +01001082 /* unblock posted write */
Simon Glassccc40fd2015-03-25 12:22:26 -06001083 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
Mike Frysinger60ce19a2012-03-05 13:47:00 +00001084 mdelay(5);
Simon Glassccc40fd2015-03-25 12:22:26 -06001085 reg = HC_VERSION(ehci_readl(&ctrl->hccr->cr_capbase));
Remy Böhmer33e87482008-12-13 22:51:58 +01001086 printf("USB EHCI %x.%02x\n", reg >> 8, reg & 0xff);
Michael Trimarchi241f7512008-11-28 13:20:46 +01001087
Simon Glassccc40fd2015-03-25 12:22:26 -06001088 return 0;
1089}
1090
Sven Schwermer8a3cb9f12018-11-21 08:43:56 +01001091#if !CONFIG_IS_ENABLED(DM_USB)
Simon Glassccc40fd2015-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 Glassdc9f3ed2015-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 Glassccc40fd2015-03-25 12:22:26 -06001110 rc = ehci_hcd_init(index, init, &ctrl->hccr, &ctrl->hcor);
1111 if (rc)
1112 return rc;
Heinrich Schuchardtab4304b2017-11-20 19:33:39 +01001113 if (!ctrl->hccr || !ctrl->hcor)
1114 return -1;
Simon Glassccc40fd2015-03-25 12:22:26 -06001115 if (init == USB_INIT_DEVICE)
1116 goto done;
1117
1118 /* EHCI spec section 4.1 */
Simon Glass302696b2015-03-25 12:22:28 -06001119 if (ehci_reset(ctrl))
Simon Glassccc40fd2015-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 Kisky7d6bbb92013-10-10 15:27:57 -07001135done:
Lucas Stach3494a4c2012-09-26 00:14:35 +02001136 *controller = &ehcic[index];
Michael Trimarchi241f7512008-11-28 13:20:46 +01001137 return 0;
1138}
Simon Glassa194b252015-03-25 12:22:29 -06001139#endif
Michael Trimarchi241f7512008-11-28 13:20:46 +01001140
Simon Glasscb7cf602015-03-25 12:22:25 -06001141static int _ehci_submit_bulk_msg(struct usb_device *dev, unsigned long pipe,
1142 void *buffer, int length)
Michael Trimarchi241f7512008-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 Glasscb7cf602015-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 Trimarchi241f7512008-11-28 13:20:46 +01001155{
Simon Glasscb7cf602015-03-25 12:22:25 -06001156 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Michael Trimarchi241f7512008-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 Stach3494a4c2012-09-26 00:14:35 +02001163 if (usb_pipedevice(pipe) == ctrl->rootdev) {
1164 if (!ctrl->rootdev)
Michael Trimarchi241f7512008-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 Georgie55fdac2013-03-06 14:08:31 +00001171struct int_queue {
Hans de Goede8c5c5ca2014-09-24 14:06:05 +02001172 int elementsize;
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001173 unsigned long pipe;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001174 struct QH *first;
1175 struct QH *current;
1176 struct QH *last;
1177 struct qTD *tds;
1178};
1179
Rob Herringf14d54b2015-03-17 15:46:37 -05001180#define NEXT_QH(qh) (struct QH *)((unsigned long)hc32_to_cpu((qh)->qh_link) & ~0x1f)
Patrick Georgie55fdac2013-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 Goede53ca9de2015-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 Georgie55fdac2013-03-06 14:08:31 +00001226{
Simon Glasscb7cf602015-03-25 12:22:25 -06001227 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001228 struct int_queue *result = NULL;
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001229 uint32_t i, toggle;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001230
Hans de Goede7f7cb732014-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 Georgie55fdac2013-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 Goede8c5c5ca2014-09-24 14:06:05 +02001268 result->elementsize = elementsize;
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001269 result->pipe = pipe;
Stephen Warrend7fe61d2014-02-06 13:13:06 -07001270 result->first = memalign(USB_DMA_MINALIGN,
1271 sizeof(struct QH) * queuesize);
Patrick Georgie55fdac2013-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 Warrend7fe61d2014-02-06 13:13:06 -07001278 result->tds = memalign(USB_DMA_MINALIGN,
1279 sizeof(struct qTD) * queuesize);
Patrick Georgie55fdac2013-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 Goede61a5a1c2015-06-18 22:34:33 +02001287 toggle = usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
1288
Patrick Georgie55fdac2013-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 Herringf14d54b2015-03-17 15:46:37 -05001294 qh->qh_link = cpu_to_hc32((unsigned long)(qh+1) | QH_LINK_TYPE_QH);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001295 if (i == queuesize - 1)
Adrian Cox29d05872014-04-10 13:29:45 +01001296 qh->qh_link = cpu_to_hc32(QH_LINK_TERMINATE);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001297
Rob Herringf14d54b2015-03-17 15:46:37 -05001298 qh->qh_overlay.qt_next = cpu_to_hc32((unsigned long)td);
Adrian Cox29d05872014-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 Georgie55fdac2013-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 Cox29d05872014-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 Georgie55fdac2013-03-06 14:08:31 +00001309 if (dev->speed == USB_SPEED_LOW ||
1310 dev->speed == USB_SPEED_FULL) {
Hans de Goededa166772014-09-20 16:51:22 +02001311 /* C-mask: microframes 2-4 */
1312 qh->qh_endpt2 |= cpu_to_hc32((0x1c << 8));
Patrick Georgie55fdac2013-03-06 14:08:31 +00001313 }
Hans de Goededa166772014-09-20 16:51:22 +02001314 ehci_update_endpt2_dev_n_port(dev, qh);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001315
Adrian Cox29d05872014-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 Georgie55fdac2013-03-06 14:08:31 +00001318 debug("communication direction is '%s'\n",
1319 usb_pipein(pipe) ? "in" : "out");
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001320 td->qt_token = cpu_to_hc32(
1321 QT_TOKEN_DT(toggle) |
1322 (elementsize << 16) |
Patrick Georgie55fdac2013-03-06 14:08:31 +00001323 ((usb_pipein(pipe) ? 1 : 0) << 8) | /* IN/OUT token */
Adrian Cox29d05872014-04-10 13:29:45 +01001324 0x80); /* active */
1325 td->qt_buffer[0] =
Rob Herringf14d54b2015-03-17 15:46:37 -05001326 cpu_to_hc32((unsigned long)buffer + i * elementsize);
Adrian Cox29d05872014-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 Georgie55fdac2013-03-06 14:08:31 +00001335
1336 *buf = buffer + i * elementsize;
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001337 toggle ^= 1;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001338 }
1339
Rob Herringf14d54b2015-03-17 15:46:37 -05001340 flush_dcache_range((unsigned long)buffer,
Stephen Warren36dad662013-05-24 15:03:17 -06001341 ALIGN_END_ADDR(char, buffer,
1342 queuesize * elementsize));
Rob Herringf14d54b2015-03-17 15:46:37 -05001343 flush_dcache_range((unsigned long)result->first,
Stephen Warren36dad662013-05-24 15:03:17 -06001344 ALIGN_END_ADDR(struct QH, result->first,
1345 queuesize));
Rob Herringf14d54b2015-03-17 15:46:37 -05001346 flush_dcache_range((unsigned long)result->tds,
Stephen Warren36dad662013-05-24 15:03:17 -06001347 ALIGN_END_ADDR(struct qTD, result->tds,
1348 queuesize));
1349
Hans de Goede8ba55ed2014-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 Georgie55fdac2013-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 Herringf14d54b2015-03-17 15:46:37 -05001360 list->qh_link = cpu_to_hc32((unsigned long)result->first | QH_LINK_TYPE_QH);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001361
Rob Herringf14d54b2015-03-17 15:46:37 -05001362 flush_dcache_range((unsigned long)result->last,
Stephen Warren36dad662013-05-24 15:03:17 -06001363 ALIGN_END_ADDR(struct QH, result->last, 1));
Rob Herringf14d54b2015-03-17 15:46:37 -05001364 flush_dcache_range((unsigned long)list,
Stephen Warren36dad662013-05-24 15:03:17 -06001365 ALIGN_END_ADDR(struct QH, list, 1));
1366
Patrick Georgie55fdac2013-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 Goede8f5f4f72014-09-20 16:51:25 +02001371 ctrl->periodic_schedules++;
Patrick Georgie55fdac2013-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 Goede53ca9de2015-05-11 20:43:52 +02001387static void *_ehci_poll_int_queue(struct usb_device *dev,
1388 struct int_queue *queue)
Patrick Georgie55fdac2013-03-06 14:08:31 +00001389{
1390 struct QH *cur = queue->current;
Hans de Goede9db174c2014-09-20 16:51:24 +02001391 struct qTD *cur_td;
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001392 uint32_t token, toggle;
1393 unsigned long pipe = queue->pipe;
Patrick Georgie55fdac2013-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 Goede9db174c2014-09-20 16:51:24 +02001401 cur_td = &queue->tds[queue->current - queue->first];
Rob Herringf14d54b2015-03-17 15:46:37 -05001402 invalidate_dcache_range((unsigned long)cur_td,
Hans de Goede9db174c2014-09-20 16:51:24 +02001403 ALIGN_END_ADDR(struct qTD, cur_td, 1));
Hans de Goede61a5a1c2015-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 Georgie55fdac2013-03-06 14:08:31 +00001407 return NULL;
1408 }
Hans de Goede61a5a1c2015-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 Georgie55fdac2013-03-06 14:08:31 +00001413 if (!(cur->qh_link & QH_LINK_TERMINATE))
1414 queue->current++;
1415 else
1416 queue->current = NULL;
Hans de Goede8c5c5ca2014-09-24 14:06:05 +02001417
Rob Herringf14d54b2015-03-17 15:46:37 -05001418 invalidate_dcache_range((unsigned long)cur->buffer,
Hans de Goede8c5c5ca2014-09-24 14:06:05 +02001419 ALIGN_END_ADDR(char, cur->buffer,
1420 queue->elementsize));
1421
Hans de Goede9db174c2014-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 Goede61a5a1c2015-06-18 22:34:33 +02001423 token, cur, queue->first);
Patrick Georgie55fdac2013-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 Goede53ca9de2015-05-11 20:43:52 +02001428static int _ehci_destroy_int_queue(struct usb_device *dev,
1429 struct int_queue *queue)
Patrick Georgie55fdac2013-03-06 14:08:31 +00001430{
Simon Glasscb7cf602015-03-25 12:22:25 -06001431 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Patrick Georgie55fdac2013-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 Goede8f5f4f72014-09-20 16:51:25 +02001439 ctrl->periodic_schedules--;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001440
1441 struct QH *cur = &ctrl->periodic_queue;
1442 timeout = get_timer(0) + 500; /* abort after 500ms */
Adrian Cox29d05872014-04-10 13:29:45 +01001443 while (!(cur->qh_link & cpu_to_hc32(QH_LINK_TERMINATE))) {
Patrick Georgie55fdac2013-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 Herringf14d54b2015-03-17 15:46:37 -05001448 flush_dcache_range((unsigned long)cur,
Hans de Goede8e00cf62014-09-20 16:51:23 +02001449 ALIGN_END_ADDR(struct QH, cur, 1));
Patrick Georgie55fdac2013-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 Goede8f5f4f72014-09-20 16:51:25 +02001461 if (ctrl->periodic_schedules > 0) {
Patrick Georgie55fdac2013-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 Glasscb7cf602015-03-25 12:22:25 -06001475static int _ehci_submit_int_msg(struct usb_device *dev, unsigned long pipe,
Michal Suchanek1c95b9f2019-08-18 10:55:27 +02001476 void *buffer, int length, int interval,
1477 bool nonblock)
Michael Trimarchi241f7512008-11-28 13:20:46 +01001478{
Patrick Georgie55fdac2013-03-06 14:08:31 +00001479 void *backbuffer;
1480 struct int_queue *queue;
1481 unsigned long timeout;
1482 int result = 0, ret;
1483
Michael Trimarchi241f7512008-11-28 13:20:46 +01001484 debug("dev=%p, pipe=%lu, buffer=%p, length=%d, interval=%d",
1485 dev, pipe, buffer, length, interval);
Benoît Thébaudeau58c4dfb2012-08-09 23:50:44 +02001486
Hans de Goede53ca9de2015-05-11 20:43:52 +02001487 queue = _ehci_create_int_queue(dev, pipe, 1, length, buffer, interval);
Hans de Goede7f7cb732014-09-24 14:06:04 +02001488 if (!queue)
1489 return -1;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001490
1491 timeout = get_timer(0) + USB_TIMEOUT_MS(pipe);
Hans de Goede53ca9de2015-05-11 20:43:52 +02001492 while ((backbuffer = _ehci_poll_int_queue(dev, queue)) == NULL)
Patrick Georgie55fdac2013-03-06 14:08:31 +00001493 if (get_timer(0) > timeout) {
1494 printf("Timeout poll on interrupt endpoint\n");
1495 result = -ETIMEDOUT;
1496 break;
1497 }
1498
1499 if (backbuffer != buffer) {
Rob Herringf14d54b2015-03-17 15:46:37 -05001500 debug("got wrong buffer back (%p instead of %p)\n",
1501 backbuffer, buffer);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001502 return -EINVAL;
1503 }
1504
Hans de Goede53ca9de2015-05-11 20:43:52 +02001505 ret = _ehci_destroy_int_queue(dev, queue);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001506 if (ret < 0)
1507 return ret;
1508
1509 /* everything worked out fine */
1510 return result;
Marek Vasut9b315fe2011-09-25 21:07:56 +02001511}
Simon Glasscb7cf602015-03-25 12:22:25 -06001512
Sven Schwermer8a3cb9f12018-11-21 08:43:56 +01001513#if !CONFIG_IS_ENABLED(DM_USB)
Simon Glasscb7cf602015-03-25 12:22:25 -06001514int submit_bulk_msg(struct usb_device *dev, unsigned long pipe,
1515 void *buffer, int length)
1516{
1517 return _ehci_submit_bulk_msg(dev, pipe, buffer, length);
1518}
1519
1520int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1521 int length, struct devrequest *setup)
1522{
1523 return _ehci_submit_control_msg(dev, pipe, buffer, length, setup);
1524}
1525
1526int submit_int_msg(struct usb_device *dev, unsigned long pipe,
Michal Suchanek1c95b9f2019-08-18 10:55:27 +02001527 void *buffer, int length, int interval, bool nonblock)
Simon Glasscb7cf602015-03-25 12:22:25 -06001528{
Michal Suchanek1c95b9f2019-08-18 10:55:27 +02001529 return _ehci_submit_int_msg(dev, pipe, buffer, length, interval,
1530 nonblock);
Simon Glasscb7cf602015-03-25 12:22:25 -06001531}
Hans de Goede53ca9de2015-05-11 20:43:52 +02001532
1533struct int_queue *create_int_queue(struct usb_device *dev,
1534 unsigned long pipe, int queuesize, int elementsize,
1535 void *buffer, int interval)
1536{
1537 return _ehci_create_int_queue(dev, pipe, queuesize, elementsize,
1538 buffer, interval);
1539}
1540
1541void *poll_int_queue(struct usb_device *dev, struct int_queue *queue)
1542{
1543 return _ehci_poll_int_queue(dev, queue);
1544}
1545
1546int destroy_int_queue(struct usb_device *dev, struct int_queue *queue)
1547{
1548 return _ehci_destroy_int_queue(dev, queue);
1549}
Simon Glassa194b252015-03-25 12:22:29 -06001550#endif
1551
Sven Schwermer8a3cb9f12018-11-21 08:43:56 +01001552#if CONFIG_IS_ENABLED(DM_USB)
Simon Glassa194b252015-03-25 12:22:29 -06001553static int ehci_submit_control_msg(struct udevice *dev, struct usb_device *udev,
1554 unsigned long pipe, void *buffer, int length,
1555 struct devrequest *setup)
1556{
1557 debug("%s: dev='%s', udev=%p, udev->dev='%s', portnr=%d\n", __func__,
1558 dev->name, udev, udev->dev->name, udev->portnr);
1559
1560 return _ehci_submit_control_msg(udev, pipe, buffer, length, setup);
1561}
1562
1563static int ehci_submit_bulk_msg(struct udevice *dev, struct usb_device *udev,
1564 unsigned long pipe, void *buffer, int length)
1565{
1566 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1567 return _ehci_submit_bulk_msg(udev, pipe, buffer, length);
1568}
1569
1570static int ehci_submit_int_msg(struct udevice *dev, struct usb_device *udev,
1571 unsigned long pipe, void *buffer, int length,
Michal Suchanek1c95b9f2019-08-18 10:55:27 +02001572 int interval, bool nonblock)
Simon Glassa194b252015-03-25 12:22:29 -06001573{
1574 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
Michal Suchanek1c95b9f2019-08-18 10:55:27 +02001575 return _ehci_submit_int_msg(udev, pipe, buffer, length, interval,
1576 nonblock);
Simon Glassa194b252015-03-25 12:22:29 -06001577}
1578
Hans de Goede0a7fa272015-05-10 14:10:18 +02001579static struct int_queue *ehci_create_int_queue(struct udevice *dev,
1580 struct usb_device *udev, unsigned long pipe, int queuesize,
1581 int elementsize, void *buffer, int interval)
1582{
1583 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1584 return _ehci_create_int_queue(udev, pipe, queuesize, elementsize,
1585 buffer, interval);
1586}
1587
1588static void *ehci_poll_int_queue(struct udevice *dev, struct usb_device *udev,
1589 struct int_queue *queue)
1590{
1591 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1592 return _ehci_poll_int_queue(udev, queue);
1593}
1594
1595static int ehci_destroy_int_queue(struct udevice *dev, struct usb_device *udev,
1596 struct int_queue *queue)
1597{
1598 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1599 return _ehci_destroy_int_queue(udev, queue);
1600}
1601
Bin Meng0441b872017-09-07 06:13:19 -07001602static int ehci_get_max_xfer_size(struct udevice *dev, size_t *size)
1603{
1604 /*
1605 * EHCD can handle any transfer length as long as there is enough
1606 * free heap space left, hence set the theoretical max number here.
1607 */
1608 *size = SIZE_MAX;
1609
1610 return 0;
1611}
1612
Simon Glassa194b252015-03-25 12:22:29 -06001613int ehci_register(struct udevice *dev, struct ehci_hccr *hccr,
1614 struct ehci_hcor *hcor, const struct ehci_ops *ops,
1615 uint tweaks, enum usb_init_type init)
1616{
Hans de Goede76bc7f42015-05-05 11:54:35 +02001617 struct usb_bus_priv *priv = dev_get_uclass_priv(dev);
Simon Glassa194b252015-03-25 12:22:29 -06001618 struct ehci_ctrl *ctrl = dev_get_priv(dev);
Heinrich Schuchardtab4304b2017-11-20 19:33:39 +01001619 int ret = -1;
Simon Glassa194b252015-03-25 12:22:29 -06001620
1621 debug("%s: dev='%s', ctrl=%p, hccr=%p, hcor=%p, init=%d\n", __func__,
1622 dev->name, ctrl, hccr, hcor, init);
1623
Heinrich Schuchardtab4304b2017-11-20 19:33:39 +01001624 if (!ctrl || !hccr || !hcor)
1625 goto err;
1626
Hans de Goede76bc7f42015-05-05 11:54:35 +02001627 priv->desc_before_addr = true;
1628
Simon Glassa194b252015-03-25 12:22:29 -06001629 ehci_setup_ops(ctrl, ops);
1630 ctrl->hccr = hccr;
1631 ctrl->hcor = hcor;
1632 ctrl->priv = ctrl;
1633
Stephen Warren71eced32015-08-20 17:38:05 -06001634 ctrl->init = init;
1635 if (ctrl->init == USB_INIT_DEVICE)
Simon Glassa194b252015-03-25 12:22:29 -06001636 goto done;
Stephen Warren71eced32015-08-20 17:38:05 -06001637
Simon Glassa194b252015-03-25 12:22:29 -06001638 ret = ehci_reset(ctrl);
1639 if (ret)
1640 goto err;
1641
Mateusz Kulikowski3e13f392016-04-03 13:38:26 +02001642 if (ctrl->ops.init_after_reset) {
1643 ret = ctrl->ops.init_after_reset(ctrl);
Mateusz Kulikowskiaab5a5a2016-03-31 23:12:17 +02001644 if (ret)
1645 goto err;
1646 }
1647
Simon Glassa194b252015-03-25 12:22:29 -06001648 ret = ehci_common_init(ctrl, tweaks);
1649 if (ret)
1650 goto err;
1651done:
1652 return 0;
1653err:
1654 free(ctrl);
1655 debug("%s: failed, ret=%d\n", __func__, ret);
1656 return ret;
1657}
1658
1659int ehci_deregister(struct udevice *dev)
1660{
1661 struct ehci_ctrl *ctrl = dev_get_priv(dev);
1662
Stephen Warren71eced32015-08-20 17:38:05 -06001663 if (ctrl->init == USB_INIT_DEVICE)
1664 return 0;
1665
Simon Glassa194b252015-03-25 12:22:29 -06001666 ehci_shutdown(ctrl);
1667
1668 return 0;
1669}
1670
1671struct dm_usb_ops ehci_usb_ops = {
1672 .control = ehci_submit_control_msg,
1673 .bulk = ehci_submit_bulk_msg,
1674 .interrupt = ehci_submit_int_msg,
Hans de Goede0a7fa272015-05-10 14:10:18 +02001675 .create_int_queue = ehci_create_int_queue,
1676 .poll_int_queue = ehci_poll_int_queue,
1677 .destroy_int_queue = ehci_destroy_int_queue,
Bin Meng0441b872017-09-07 06:13:19 -07001678 .get_max_xfer_size = ehci_get_max_xfer_size,
Simon Glassa194b252015-03-25 12:22:29 -06001679};
1680
1681#endif
Marek Vasutd9af6cd2018-08-08 14:29:55 +02001682
1683#ifdef CONFIG_PHY
1684int ehci_setup_phy(struct udevice *dev, struct phy *phy, int index)
1685{
1686 int ret;
1687
1688 if (!phy)
1689 return 0;
1690
1691 ret = generic_phy_get_by_index(dev, index, phy);
1692 if (ret) {
1693 if (ret != -ENOENT) {
1694 dev_err(dev, "failed to get usb phy\n");
1695 return ret;
1696 }
1697 } else {
1698 ret = generic_phy_init(phy);
1699 if (ret) {
1700 dev_err(dev, "failed to init usb phy\n");
1701 return ret;
1702 }
1703
1704 ret = generic_phy_power_on(phy);
1705 if (ret) {
1706 dev_err(dev, "failed to power on usb phy\n");
1707 return generic_phy_exit(phy);
1708 }
1709 }
1710
1711 return 0;
1712}
1713
1714int ehci_shutdown_phy(struct udevice *dev, struct phy *phy)
1715{
1716 int ret = 0;
1717
1718 if (!phy)
1719 return 0;
1720
1721 if (generic_phy_valid(phy)) {
1722 ret = generic_phy_power_off(phy);
1723 if (ret) {
1724 dev_err(dev, "failed to power off usb phy\n");
1725 return ret;
1726 }
1727
1728 ret = generic_phy_exit(phy);
1729 if (ret) {
1730 dev_err(dev, "failed to power off usb phy\n");
1731 return ret;
1732 }
1733 }
1734
1735 return 0;
1736}
1737#else
1738int ehci_setup_phy(struct udevice *dev, struct phy *phy, int index)
1739{
1740 return 0;
1741}
1742
1743int ehci_shutdown_phy(struct udevice *dev, struct phy *phy)
1744{
1745 return 0;
1746}
1747#endif