blob: 1e03c83fe6b4874512a69f8e294eebd160499a93 [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 Glass63334482019-11-14 12:57:39 -070010#include <cpu_func.h>
Simon Glassa194b252015-03-25 12:22:29 -060011#include <dm.h>
Patrick Georgie55fdac2013-03-06 14:08:31 +000012#include <errno.h>
Simon Glass0f2af882020-05-10 11:40:05 -060013#include <log.h>
michael0a326102008-12-10 17:55:19 +010014#include <asm/byteorder.h>
Simon Glass274e0b02020-05-10 11:39:56 -060015#include <asm/cache.h>
Lucas Stach835e11e2012-09-06 08:00:13 +020016#include <asm/unaligned.h>
Michael Trimarchi241f7512008-11-28 13:20:46 +010017#include <usb.h>
18#include <asm/io.h>
michael0a326102008-12-10 17:55:19 +010019#include <malloc.h>
Simon Glass2dd337a2015-09-02 17:24:58 -060020#include <memalign.h>
Stefan Roese86b34cf2010-11-26 15:43:28 +010021#include <watchdog.h>
Simon Glass9bc15642020-02-03 07:36:16 -070022#include <dm/device_compat.h>
Patrick Georgie55fdac2013-03-06 14:08:31 +000023#include <linux/compiler.h>
Jean-Christophe PLAGNIOL-VILLARD8f6bcf42009-04-03 12:46:58 +020024
25#include "ehci.h"
Michael Trimarchi241f7512008-11-28 13:20:46 +010026
Lucas Stach3494a4c2012-09-26 00:14:35 +020027#ifndef CONFIG_USB_MAX_CONTROLLER_COUNT
28#define CONFIG_USB_MAX_CONTROLLER_COUNT 1
29#endif
Michael Trimarchi241f7512008-11-28 13:20:46 +010030
Julius Werner5c1a1ad2013-09-24 10:53:07 -070031/*
32 * EHCI spec page 20 says that the HC may take up to 16 uFrames (= 4ms) to halt.
33 * Let's time out after 8 to have a little safety margin on top of that.
34 */
35#define HCHALT_TIMEOUT (8 * 1000)
36
Sven Schwermer8a3cb9f12018-11-21 08:43:56 +010037#if !CONFIG_IS_ENABLED(DM_USB)
Marek Vasutfd349a12013-07-10 03:16:31 +020038static struct ehci_ctrl ehcic[CONFIG_USB_MAX_CONTROLLER_COUNT];
Simon Glassa194b252015-03-25 12:22:29 -060039#endif
Tom Rini2cabcf72012-07-15 22:14:24 +000040
41#define ALIGN_END_ADDR(type, ptr, size) \
Rob Herringf14d54b2015-03-17 15:46:37 -050042 ((unsigned long)(ptr) + roundup((size) * sizeof(type), USB_DMA_MINALIGN))
Michael Trimarchi241f7512008-11-28 13:20:46 +010043
michael0a326102008-12-10 17:55:19 +010044static struct descriptor {
45 struct usb_hub_descriptor hub;
46 struct usb_device_descriptor device;
47 struct usb_linux_config_descriptor config;
48 struct usb_linux_interface_descriptor interface;
49 struct usb_endpoint_descriptor endpoint;
50} __attribute__ ((packed)) descriptor = {
51 {
52 0x8, /* bDescLength */
53 0x29, /* bDescriptorType: hub descriptor */
54 2, /* bNrPorts -- runtime modified */
55 0, /* wHubCharacteristics */
Vincent Palatin8277b502011-12-05 14:52:22 -080056 10, /* bPwrOn2PwrGood */
michael0a326102008-12-10 17:55:19 +010057 0, /* bHubCntrCurrent */
Bin Meng0d66b3a2017-07-19 21:50:00 +080058 { /* Device removable */
59 } /* at most 7 ports! XXX */
michael0a326102008-12-10 17:55:19 +010060 },
61 {
62 0x12, /* bLength */
63 1, /* bDescriptorType: UDESC_DEVICE */
Sergei Shtylyovfa30a272010-02-27 21:29:42 +030064 cpu_to_le16(0x0200), /* bcdUSB: v2.0 */
michael0a326102008-12-10 17:55:19 +010065 9, /* bDeviceClass: UDCLASS_HUB */
66 0, /* bDeviceSubClass: UDSUBCLASS_HUB */
67 1, /* bDeviceProtocol: UDPROTO_HSHUBSTT */
68 64, /* bMaxPacketSize: 64 bytes */
69 0x0000, /* idVendor */
70 0x0000, /* idProduct */
Sergei Shtylyovfa30a272010-02-27 21:29:42 +030071 cpu_to_le16(0x0100), /* bcdDevice */
michael0a326102008-12-10 17:55:19 +010072 1, /* iManufacturer */
73 2, /* iProduct */
74 0, /* iSerialNumber */
75 1 /* bNumConfigurations: 1 */
76 },
77 {
78 0x9,
79 2, /* bDescriptorType: UDESC_CONFIG */
80 cpu_to_le16(0x19),
81 1, /* bNumInterface */
82 1, /* bConfigurationValue */
83 0, /* iConfiguration */
84 0x40, /* bmAttributes: UC_SELF_POWER */
85 0 /* bMaxPower */
86 },
87 {
88 0x9, /* bLength */
89 4, /* bDescriptorType: UDESC_INTERFACE */
90 0, /* bInterfaceNumber */
91 0, /* bAlternateSetting */
92 1, /* bNumEndpoints */
93 9, /* bInterfaceClass: UICLASS_HUB */
94 0, /* bInterfaceSubClass: UISUBCLASS_HUB */
95 0, /* bInterfaceProtocol: UIPROTO_HSHUBSTT */
96 0 /* iInterface */
97 },
98 {
99 0x7, /* bLength */
100 5, /* bDescriptorType: UDESC_ENDPOINT */
101 0x81, /* bEndpointAddress:
102 * UE_DIR_IN | EHCI_INTR_ENDPT
103 */
104 3, /* bmAttributes: UE_INTERRUPT */
Tom Rix83b9e1d2009-10-31 12:37:38 -0500105 8, /* wMaxPacketSize */
michael0a326102008-12-10 17:55:19 +0100106 255 /* bInterval */
107 },
Michael Trimarchi241f7512008-11-28 13:20:46 +0100108};
109
Remy Böhmer33e87482008-12-13 22:51:58 +0100110#if defined(CONFIG_EHCI_IS_TDI)
111#define ehci_is_TDI() (1)
112#else
113#define ehci_is_TDI() (0)
114#endif
115
Simon Glasscb7cf602015-03-25 12:22:25 -0600116static struct ehci_ctrl *ehci_get_ctrl(struct usb_device *udev)
117{
Sven Schwermer8a3cb9f12018-11-21 08:43:56 +0100118#if CONFIG_IS_ENABLED(DM_USB)
Hans de Goede6be39d12015-05-05 11:54:33 +0200119 return dev_get_priv(usb_get_bus(udev->dev));
Simon Glassa194b252015-03-25 12:22:29 -0600120#else
Simon Glasscb7cf602015-03-25 12:22:25 -0600121 return udev->controller;
Simon Glassa194b252015-03-25 12:22:29 -0600122#endif
Simon Glasscb7cf602015-03-25 12:22:25 -0600123}
124
Simon Glassdc9f3ed2015-03-25 12:22:27 -0600125static int ehci_get_port_speed(struct ehci_ctrl *ctrl, uint32_t reg)
Jim Lin54f3dfe2013-03-27 00:52:32 +0000126{
127 return PORTSC_PSPD(reg);
128}
129
Simon Glassdc9f3ed2015-03-25 12:22:27 -0600130static void ehci_set_usbmode(struct ehci_ctrl *ctrl)
Jim Lin54f3dfe2013-03-27 00:52:32 +0000131{
132 uint32_t tmp;
133 uint32_t *reg_ptr;
134
Simon Glass2d387ab2015-03-25 12:22:23 -0600135 reg_ptr = (uint32_t *)((u8 *)&ctrl->hcor->or_usbcmd + USBMODE);
Jim Lin54f3dfe2013-03-27 00:52:32 +0000136 tmp = ehci_readl(reg_ptr);
137 tmp |= USBMODE_CM_HC;
138#if defined(CONFIG_EHCI_MMIO_BIG_ENDIAN)
139 tmp |= USBMODE_BE;
Marek Vasutd9fa0482016-01-23 21:04:46 +0100140#else
141 tmp &= ~USBMODE_BE;
Jim Lin54f3dfe2013-03-27 00:52:32 +0000142#endif
143 ehci_writel(reg_ptr, tmp);
144}
145
Simon Glassdc9f3ed2015-03-25 12:22:27 -0600146static void ehci_powerup_fixup(struct ehci_ctrl *ctrl, uint32_t *status_reg,
Simon Glasscc0dc6b2015-03-25 12:22:21 -0600147 uint32_t *reg)
Marek Vasut09734772011-07-11 02:37:01 +0200148{
149 mdelay(50);
150}
151
Simon Glassdc9f3ed2015-03-25 12:22:27 -0600152static uint32_t *ehci_get_portsc_register(struct ehci_ctrl *ctrl, int port)
Simon Glass0bec1282015-03-25 12:22:17 -0600153{
Bin Mengc6336ee2017-07-19 21:50:05 +0800154 int max_ports = HCS_N_PORTS(ehci_readl(&ctrl->hccr->cr_hcsparams));
155
156 if (port < 0 || port >= max_ports) {
Simon Glass0bec1282015-03-25 12:22:17 -0600157 /* Printing the message would cause a scan failure! */
Bin Mengc6336ee2017-07-19 21:50:05 +0800158 debug("The request port(%u) exceeds maximum port number\n",
159 port);
Simon Glass0bec1282015-03-25 12:22:17 -0600160 return NULL;
161 }
162
Simon Glassdfbf1862015-03-25 12:22:24 -0600163 return (uint32_t *)&ctrl->hcor->or_portsc[port];
Simon Glass0bec1282015-03-25 12:22:17 -0600164}
165
Michael Trimarchi6d4b91c2008-12-31 10:33:22 +0100166static int handshake(uint32_t *ptr, uint32_t mask, uint32_t done, int usec)
michael0a326102008-12-10 17:55:19 +0100167{
michael0bf2a032008-12-11 13:43:55 +0100168 uint32_t result;
169 do {
170 result = ehci_readl(ptr);
Wolfgang Denkcdc5a7a2010-10-22 14:23:00 +0200171 udelay(5);
michael0bf2a032008-12-11 13:43:55 +0100172 if (result == ~(uint32_t)0)
173 return -1;
174 result &= mask;
175 if (result == done)
176 return 0;
Michael Trimarchi6d4b91c2008-12-31 10:33:22 +0100177 usec--;
178 } while (usec > 0);
michael0bf2a032008-12-11 13:43:55 +0100179 return -1;
180}
181
Simon Glass302696b2015-03-25 12:22:28 -0600182static int ehci_reset(struct ehci_ctrl *ctrl)
michael0bf2a032008-12-11 13:43:55 +0100183{
184 uint32_t cmd;
michael0bf2a032008-12-11 13:43:55 +0100185 int ret = 0;
186
Simon Glass302696b2015-03-25 12:22:28 -0600187 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
Stefan Roese745af442010-11-26 15:44:00 +0100188 cmd = (cmd & ~CMD_RUN) | CMD_RESET;
Simon Glass302696b2015-03-25 12:22:28 -0600189 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
190 ret = handshake((uint32_t *)&ctrl->hcor->or_usbcmd,
Lucas Stach3494a4c2012-09-26 00:14:35 +0200191 CMD_RESET, 0, 250 * 1000);
michael0bf2a032008-12-11 13:43:55 +0100192 if (ret < 0) {
193 printf("EHCI fail to reset\n");
194 goto out;
195 }
196
Jim Lin54f3dfe2013-03-27 00:52:32 +0000197 if (ehci_is_TDI())
Simon Glass302696b2015-03-25 12:22:28 -0600198 ctrl->ops.set_usb_mode(ctrl);
Simon Glass5978cdb2012-02-27 10:52:47 +0000199
200#ifdef CONFIG_USB_EHCI_TXFIFO_THRESH
Simon Glass302696b2015-03-25 12:22:28 -0600201 cmd = ehci_readl(&ctrl->hcor->or_txfilltuning);
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200202 cmd &= ~TXFIFO_THRESH_MASK;
Simon Glass5978cdb2012-02-27 10:52:47 +0000203 cmd |= TXFIFO_THRESH(CONFIG_USB_EHCI_TXFIFO_THRESH);
Simon Glass302696b2015-03-25 12:22:28 -0600204 ehci_writel(&ctrl->hcor->or_txfilltuning, cmd);
Simon Glass5978cdb2012-02-27 10:52:47 +0000205#endif
michael0bf2a032008-12-11 13:43:55 +0100206out:
207 return ret;
michael0a326102008-12-10 17:55:19 +0100208}
Michael Trimarchi241f7512008-11-28 13:20:46 +0100209
Julius Werner5c1a1ad2013-09-24 10:53:07 -0700210static int ehci_shutdown(struct ehci_ctrl *ctrl)
211{
212 int i, ret = 0;
213 uint32_t cmd, reg;
Bin Mengc6336ee2017-07-19 21:50:05 +0800214 int max_ports = HCS_N_PORTS(ehci_readl(&ctrl->hccr->cr_hcsparams));
Julius Werner5c1a1ad2013-09-24 10:53:07 -0700215
216 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
Peng Fanba397ba2016-06-15 13:15:46 +0800217 /* If not run, directly return */
218 if (!(cmd & CMD_RUN))
219 return 0;
Julius Werner5c1a1ad2013-09-24 10:53:07 -0700220 cmd &= ~(CMD_PSE | CMD_ASE);
221 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
222 ret = handshake(&ctrl->hcor->or_usbsts, STS_ASS | STS_PSS, 0,
223 100 * 1000);
224
225 if (!ret) {
Bin Mengc6336ee2017-07-19 21:50:05 +0800226 for (i = 0; i < max_ports; i++) {
Julius Werner5c1a1ad2013-09-24 10:53:07 -0700227 reg = ehci_readl(&ctrl->hcor->or_portsc[i]);
228 reg |= EHCI_PS_SUSP;
229 ehci_writel(&ctrl->hcor->or_portsc[i], reg);
230 }
231
232 cmd &= ~CMD_RUN;
233 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
234 ret = handshake(&ctrl->hcor->or_usbsts, STS_HALT, STS_HALT,
235 HCHALT_TIMEOUT);
236 }
237
238 if (ret)
239 puts("EHCI failed to shut down host controller.\n");
240
241 return ret;
242}
243
Michael Trimarchi241f7512008-11-28 13:20:46 +0100244static int ehci_td_buffer(struct qTD *td, void *buf, size_t sz)
245{
Marek Vasutff24dc32012-04-09 04:07:46 +0200246 uint32_t delta, next;
Marek Vasutcadf42c2016-02-26 19:23:27 +0100247 unsigned long addr = (unsigned long)buf;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100248 int idx;
249
Ilya Yanokfb113712012-07-15 04:43:49 +0000250 if (addr != ALIGN(addr, ARCH_DMA_MINALIGN))
Marek Vasutff24dc32012-04-09 04:07:46 +0200251 debug("EHCI-HCD: Misaligned buffer address (%p)\n", buf);
252
Ilya Yanokfb113712012-07-15 04:43:49 +0000253 flush_dcache_range(addr, ALIGN(addr + sz, ARCH_DMA_MINALIGN));
254
Michael Trimarchi241f7512008-11-28 13:20:46 +0100255 idx = 0;
Benoît Thébaudeaue68f48a2012-07-19 22:16:38 +0200256 while (idx < QT_BUFFER_CNT) {
Marek Vasutdf0b6242016-01-23 21:04:46 +0100257 td->qt_buffer[idx] = cpu_to_hc32(virt_to_phys((void *)addr));
Wolfgang Denkebb829f2010-10-19 16:13:15 +0200258 td->qt_buffer_hi[idx] = 0;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200259 next = (addr + EHCI_PAGE_SIZE) & ~(EHCI_PAGE_SIZE - 1);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100260 delta = next - addr;
261 if (delta >= sz)
262 break;
263 sz -= delta;
264 addr = next;
265 idx++;
266 }
267
Benoît Thébaudeaue68f48a2012-07-19 22:16:38 +0200268 if (idx == QT_BUFFER_CNT) {
Rob Herringf14d54b2015-03-17 15:46:37 -0500269 printf("out of buffer pointers (%zu bytes left)\n", sz);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100270 return -1;
271 }
272
273 return 0;
274}
275
Ilya Yanoka1cf10f2012-11-06 13:48:20 +0000276static inline u8 ehci_encode_speed(enum usb_device_speed speed)
277{
278 #define QH_HIGH_SPEED 2
279 #define QH_FULL_SPEED 0
280 #define QH_LOW_SPEED 1
281 if (speed == USB_SPEED_HIGH)
282 return QH_HIGH_SPEED;
283 if (speed == USB_SPEED_LOW)
284 return QH_LOW_SPEED;
285 return QH_FULL_SPEED;
286}
287
Simon Glassa194b252015-03-25 12:22:29 -0600288static void ehci_update_endpt2_dev_n_port(struct usb_device *udev,
Hans de Goededa166772014-09-20 16:51:22 +0200289 struct QH *qh)
290{
Stefan Brünsa0105682015-12-22 01:21:03 +0100291 uint8_t portnr = 0;
292 uint8_t hubaddr = 0;
Hans de Goededa166772014-09-20 16:51:22 +0200293
Simon Glassa194b252015-03-25 12:22:29 -0600294 if (udev->speed != USB_SPEED_LOW && udev->speed != USB_SPEED_FULL)
Hans de Goededa166772014-09-20 16:51:22 +0200295 return;
296
Stefan Brünsa0105682015-12-22 01:21:03 +0100297 usb_find_usb2_hub_address_port(udev, &hubaddr, &portnr);
Hans de Goededa166772014-09-20 16:51:22 +0200298
Stefan Brünsa0105682015-12-22 01:21:03 +0100299 qh->qh_endpt2 |= cpu_to_hc32(QH_ENDPT2_PORTNUM(portnr) |
300 QH_ENDPT2_HUBADDR(hubaddr));
Hans de Goededa166772014-09-20 16:51:22 +0200301}
302
Marek Vasut118a9032020-04-06 14:29:44 +0200303static int ehci_enable_async(struct ehci_ctrl *ctrl)
304{
305 u32 cmd;
306 int ret;
307
308 /* Enable async. schedule. */
309 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
310 if (cmd & CMD_ASE)
311 return 0;
312
313 cmd |= CMD_ASE;
314 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
315
316 ret = handshake((uint32_t *)&ctrl->hcor->or_usbsts, STS_ASS, STS_ASS,
317 100 * 1000);
318 if (ret < 0)
319 printf("EHCI fail timeout STS_ASS set\n");
320
321 return ret;
322}
323
324static int ehci_disable_async(struct ehci_ctrl *ctrl)
325{
326 u32 cmd;
327 int ret;
328
329 if (ctrl->async_locked)
330 return 0;
331
332 /* Disable async schedule. */
333 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
334 if (!(cmd & CMD_ASE))
335 return 0;
336
337 cmd &= ~CMD_ASE;
338 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
339
340 ret = handshake((uint32_t *)&ctrl->hcor->or_usbsts, STS_ASS, 0,
341 100 * 1000);
342 if (ret < 0)
343 printf("EHCI fail timeout STS_ASS reset\n");
344
345 return ret;
346}
347
Michael Trimarchi241f7512008-11-28 13:20:46 +0100348static int
349ehci_submit_async(struct usb_device *dev, unsigned long pipe, void *buffer,
350 int length, struct devrequest *req)
351{
Tom Rini2cabcf72012-07-15 22:14:24 +0000352 ALLOC_ALIGN_BUFFER(struct QH, qh, 1, USB_DMA_MINALIGN);
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200353 struct qTD *qtd;
354 int qtd_count = 0;
Marek Vasut4f668312012-04-08 23:32:05 +0200355 int qtd_counter = 0;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100356 volatile struct qTD *vtd;
357 unsigned long ts;
358 uint32_t *tdp;
Marek Vasut569c2a52019-10-06 16:13:38 +0200359 uint32_t endpt, maxpacket, token, usbsts, qhtoken;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100360 uint32_t c, toggle;
Simon Glassfd7f5132011-02-07 14:42:16 -0800361 int timeout;
Michael Trimarchi6d4b91c2008-12-31 10:33:22 +0100362 int ret = 0;
Simon Glasscb7cf602015-03-25 12:22:25 -0600363 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100364
michael0a326102008-12-10 17:55:19 +0100365 debug("dev=%p, pipe=%lx, buffer=%p, length=%d, req=%p\n", dev, pipe,
Michael Trimarchi241f7512008-11-28 13:20:46 +0100366 buffer, length, req);
367 if (req != NULL)
michael0a326102008-12-10 17:55:19 +0100368 debug("req=%u (%#x), type=%u (%#x), value=%u (%#x), index=%u\n",
Michael Trimarchi241f7512008-11-28 13:20:46 +0100369 req->request, req->request,
370 req->requesttype, req->requesttype,
371 le16_to_cpu(req->value), le16_to_cpu(req->value),
michael0a326102008-12-10 17:55:19 +0100372 le16_to_cpu(req->index));
Michael Trimarchi241f7512008-11-28 13:20:46 +0100373
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200374#define PKT_ALIGN 512
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200375 /*
376 * The USB transfer is split into qTD transfers. Eeach qTD transfer is
377 * described by a transfer descriptor (the qTD). The qTDs form a linked
378 * list with a queue head (QH).
379 *
380 * Each qTD transfer starts with a new USB packet, i.e. a packet cannot
381 * have its beginning in a qTD transfer and its end in the following
382 * one, so the qTD transfer lengths have to be chosen accordingly.
383 *
384 * Each qTD transfer uses up to QT_BUFFER_CNT data buffers, mapped to
385 * single pages. The first data buffer can start at any offset within a
386 * page (not considering the cache-line alignment issues), while the
387 * following buffers must be page-aligned. There is no alignment
388 * constraint on the size of a qTD transfer.
389 */
390 if (req != NULL)
391 /* 1 qTD will be needed for SETUP, and 1 for ACK. */
392 qtd_count += 1 + 1;
393 if (length > 0 || req == NULL) {
394 /*
395 * Determine the qTD transfer size that will be used for the
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200396 * data payload (not considering the first qTD transfer, which
397 * may be longer or shorter, and the final one, which may be
398 * shorter).
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200399 *
400 * In order to keep each packet within a qTD transfer, the qTD
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200401 * transfer size is aligned to PKT_ALIGN, which is a multiple of
402 * wMaxPacketSize (except in some cases for interrupt transfers,
403 * see comment in submit_int_msg()).
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200404 *
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200405 * By default, i.e. if the input buffer is aligned to PKT_ALIGN,
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200406 * QT_BUFFER_CNT full pages will be used.
407 */
408 int xfr_sz = QT_BUFFER_CNT;
409 /*
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200410 * However, if the input buffer is not aligned to PKT_ALIGN, the
411 * qTD transfer size will be one page shorter, and the first qTD
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200412 * data buffer of each transfer will be page-unaligned.
413 */
Rob Herringf14d54b2015-03-17 15:46:37 -0500414 if ((unsigned long)buffer & (PKT_ALIGN - 1))
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200415 xfr_sz--;
416 /* Convert the qTD transfer size to bytes. */
417 xfr_sz *= EHCI_PAGE_SIZE;
418 /*
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200419 * Approximate by excess the number of qTDs that will be
420 * required for the data payload. The exact formula is way more
421 * complicated and saves at most 2 qTDs, i.e. a total of 128
422 * bytes.
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200423 */
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200424 qtd_count += 2 + length / xfr_sz;
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200425 }
426/*
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200427 * Threshold value based on the worst-case total size of the allocated qTDs for
428 * a mass-storage transfer of 65535 blocks of 512 bytes.
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200429 */
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200430#if CONFIG_SYS_MALLOC_LEN <= 64 + 128 * 1024
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200431#warning CONFIG_SYS_MALLOC_LEN may be too small for EHCI
432#endif
433 qtd = memalign(USB_DMA_MINALIGN, qtd_count * sizeof(struct qTD));
434 if (qtd == NULL) {
435 printf("unable to allocate TDs\n");
436 return -1;
437 }
438
Tom Rini2cabcf72012-07-15 22:14:24 +0000439 memset(qh, 0, sizeof(struct QH));
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200440 memset(qtd, 0, qtd_count * sizeof(*qtd));
Marek Vasut4f668312012-04-08 23:32:05 +0200441
Marek Vasutff24dc32012-04-09 04:07:46 +0200442 toggle = usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
443
Marek Vasut285c8b32012-04-09 04:13:00 +0200444 /*
445 * Setup QH (3.6 in ehci-r10.pdf)
446 *
447 * qh_link ................. 03-00 H
448 * qh_endpt1 ............... 07-04 H
449 * qh_endpt2 ............... 0B-08 H
450 * - qh_curtd
451 * qh_overlay.qt_next ...... 13-10 H
452 * - qh_overlay.qt_altnext
453 */
Marek Vasutdf0b6242016-01-23 21:04:46 +0100454 qh->qh_link = cpu_to_hc32(virt_to_phys(&ctrl->qh_list) | QH_LINK_TYPE_QH);
Ilya Yanoka1cf10f2012-11-06 13:48:20 +0000455 c = (dev->speed != USB_SPEED_HIGH) && !usb_pipeendpoint(pipe);
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200456 maxpacket = usb_maxpacket(dev, pipe);
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200457 endpt = QH_ENDPT1_RL(8) | QH_ENDPT1_C(c) |
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200458 QH_ENDPT1_MAXPKTLEN(maxpacket) | QH_ENDPT1_H(0) |
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200459 QH_ENDPT1_DTC(QH_ENDPT1_DTC_DT_FROM_QTD) |
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200460 QH_ENDPT1_ENDPT(usb_pipeendpoint(pipe)) | QH_ENDPT1_I(0) |
461 QH_ENDPT1_DEVADDR(usb_pipedevice(pipe));
Chris Packham434f0582018-10-04 20:03:53 +1300462
463 /* Force FS for fsl HS quirk */
464 if (!ctrl->has_fsl_erratum_a005275)
465 endpt |= QH_ENDPT1_EPS(ehci_encode_speed(dev->speed));
466 else
467 endpt |= QH_ENDPT1_EPS(ehci_encode_speed(QH_FULL_SPEED));
468
Tom Rini2cabcf72012-07-15 22:14:24 +0000469 qh->qh_endpt1 = cpu_to_hc32(endpt);
Hans de Goededa166772014-09-20 16:51:22 +0200470 endpt = QH_ENDPT2_MULT(1) | QH_ENDPT2_UFCMASK(0) | QH_ENDPT2_UFSMASK(0);
Tom Rini2cabcf72012-07-15 22:14:24 +0000471 qh->qh_endpt2 = cpu_to_hc32(endpt);
Hans de Goededa166772014-09-20 16:51:22 +0200472 ehci_update_endpt2_dev_n_port(dev, qh);
Tom Rini2cabcf72012-07-15 22:14:24 +0000473 qh->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
Stephen Warren1907e5a2014-02-07 09:53:50 -0700474 qh->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100475
Tom Rini2cabcf72012-07-15 22:14:24 +0000476 tdp = &qh->qh_overlay.qt_next;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100477 if (req != NULL) {
Marek Vasut285c8b32012-04-09 04:13:00 +0200478 /*
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 "req".
486 */
Marek Vasut4f668312012-04-08 23:32:05 +0200487 qtd[qtd_counter].qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
488 qtd[qtd_counter].qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200489 token = QT_TOKEN_DT(0) | QT_TOKEN_TOTALBYTES(sizeof(*req)) |
490 QT_TOKEN_IOC(0) | QT_TOKEN_CPAGE(0) | QT_TOKEN_CERR(3) |
491 QT_TOKEN_PID(QT_TOKEN_PID_SETUP) |
492 QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE);
Marek Vasut4f668312012-04-08 23:32:05 +0200493 qtd[qtd_counter].qt_token = cpu_to_hc32(token);
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200494 if (ehci_td_buffer(&qtd[qtd_counter], req, sizeof(*req))) {
495 printf("unable to construct SETUP TD\n");
Michael Trimarchi241f7512008-11-28 13:20:46 +0100496 goto fail;
497 }
Marek Vasut285c8b32012-04-09 04:13:00 +0200498 /* Update previous qTD! */
Marek Vasutdf0b6242016-01-23 21:04:46 +0100499 *tdp = cpu_to_hc32(virt_to_phys(&qtd[qtd_counter]));
Marek Vasut4f668312012-04-08 23:32:05 +0200500 tdp = &qtd[qtd_counter++].qt_next;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100501 toggle = 1;
502 }
503
504 if (length > 0 || req == NULL) {
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200505 uint8_t *buf_ptr = buffer;
506 int left_length = length;
507
508 do {
509 /*
510 * Determine the size of this qTD transfer. By default,
511 * QT_BUFFER_CNT full pages can be used.
512 */
513 int xfr_bytes = QT_BUFFER_CNT * EHCI_PAGE_SIZE;
514 /*
515 * However, if the input buffer is not page-aligned, the
516 * portion of the first page before the buffer start
517 * offset within that page is unusable.
518 */
Rob Herringf14d54b2015-03-17 15:46:37 -0500519 xfr_bytes -= (unsigned long)buf_ptr & (EHCI_PAGE_SIZE - 1);
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200520 /*
521 * In order to keep each packet within a qTD transfer,
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200522 * align the qTD transfer size to PKT_ALIGN.
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200523 */
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200524 xfr_bytes &= ~(PKT_ALIGN - 1);
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200525 /*
526 * This transfer may be shorter than the available qTD
527 * transfer size that has just been computed.
528 */
529 xfr_bytes = min(xfr_bytes, left_length);
530
531 /*
532 * Setup request qTD (3.5 in ehci-r10.pdf)
533 *
534 * qt_next ................ 03-00 H
535 * qt_altnext ............. 07-04 H
536 * qt_token ............... 0B-08 H
537 *
538 * [ buffer, buffer_hi ] loaded with "buffer".
539 */
540 qtd[qtd_counter].qt_next =
541 cpu_to_hc32(QT_NEXT_TERMINATE);
542 qtd[qtd_counter].qt_altnext =
543 cpu_to_hc32(QT_NEXT_TERMINATE);
544 token = QT_TOKEN_DT(toggle) |
545 QT_TOKEN_TOTALBYTES(xfr_bytes) |
546 QT_TOKEN_IOC(req == NULL) | QT_TOKEN_CPAGE(0) |
547 QT_TOKEN_CERR(3) |
548 QT_TOKEN_PID(usb_pipein(pipe) ?
549 QT_TOKEN_PID_IN : QT_TOKEN_PID_OUT) |
550 QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE);
551 qtd[qtd_counter].qt_token = cpu_to_hc32(token);
552 if (ehci_td_buffer(&qtd[qtd_counter], buf_ptr,
553 xfr_bytes)) {
554 printf("unable to construct DATA TD\n");
555 goto fail;
556 }
557 /* Update previous qTD! */
Marek Vasutdf0b6242016-01-23 21:04:46 +0100558 *tdp = cpu_to_hc32(virt_to_phys(&qtd[qtd_counter]));
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200559 tdp = &qtd[qtd_counter++].qt_next;
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200560 /*
561 * Data toggle has to be adjusted since the qTD transfer
562 * size is not always an even multiple of
563 * wMaxPacketSize.
564 */
565 if ((xfr_bytes / maxpacket) & 1)
566 toggle ^= 1;
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200567 buf_ptr += xfr_bytes;
568 left_length -= xfr_bytes;
569 } while (left_length > 0);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100570 }
571
572 if (req != NULL) {
Marek Vasut285c8b32012-04-09 04:13:00 +0200573 /*
574 * Setup request qTD (3.5 in ehci-r10.pdf)
575 *
576 * qt_next ................ 03-00 H
577 * qt_altnext ............. 07-04 H
578 * qt_token ............... 0B-08 H
579 */
Marek Vasut4f668312012-04-08 23:32:05 +0200580 qtd[qtd_counter].qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
581 qtd[qtd_counter].qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200582 token = QT_TOKEN_DT(1) | QT_TOKEN_TOTALBYTES(0) |
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200583 QT_TOKEN_IOC(1) | QT_TOKEN_CPAGE(0) | QT_TOKEN_CERR(3) |
584 QT_TOKEN_PID(usb_pipein(pipe) ?
585 QT_TOKEN_PID_OUT : QT_TOKEN_PID_IN) |
586 QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE);
Marek Vasut4f668312012-04-08 23:32:05 +0200587 qtd[qtd_counter].qt_token = cpu_to_hc32(token);
Marek Vasut285c8b32012-04-09 04:13:00 +0200588 /* Update previous qTD! */
Marek Vasutdf0b6242016-01-23 21:04:46 +0100589 *tdp = cpu_to_hc32(virt_to_phys(&qtd[qtd_counter]));
Marek Vasut4f668312012-04-08 23:32:05 +0200590 tdp = &qtd[qtd_counter++].qt_next;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100591 }
592
Marek Vasutdf0b6242016-01-23 21:04:46 +0100593 ctrl->qh_list.qh_link = cpu_to_hc32(virt_to_phys(qh) | QH_LINK_TYPE_QH);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100594
Stefan Roese25983c12009-01-21 17:12:19 +0100595 /* Flush dcache */
Rob Herringf14d54b2015-03-17 15:46:37 -0500596 flush_dcache_range((unsigned long)&ctrl->qh_list,
Lucas Stach3494a4c2012-09-26 00:14:35 +0200597 ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1));
Rob Herringf14d54b2015-03-17 15:46:37 -0500598 flush_dcache_range((unsigned long)qh, ALIGN_END_ADDR(struct QH, qh, 1));
599 flush_dcache_range((unsigned long)qtd,
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200600 ALIGN_END_ADDR(struct qTD, qtd, qtd_count));
Stefan Roese25983c12009-01-21 17:12:19 +0100601
Lucas Stach3494a4c2012-09-26 00:14:35 +0200602 usbsts = ehci_readl(&ctrl->hcor->or_usbsts);
603 ehci_writel(&ctrl->hcor->or_usbsts, (usbsts & 0x3f));
Michael Trimarchi241f7512008-11-28 13:20:46 +0100604
Marek Vasut118a9032020-04-06 14:29:44 +0200605 ret = ehci_enable_async(ctrl);
606 if (ret)
607 goto fail;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100608
609 /* Wait for TDs to be processed. */
610 ts = get_timer(0);
Marek Vasut4f668312012-04-08 23:32:05 +0200611 vtd = &qtd[qtd_counter - 1];
Simon Glassfd7f5132011-02-07 14:42:16 -0800612 timeout = USB_TIMEOUT_MS(pipe);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100613 do {
Stefan Roese25983c12009-01-21 17:12:19 +0100614 /* Invalidate dcache */
Rob Herringf14d54b2015-03-17 15:46:37 -0500615 invalidate_dcache_range((unsigned long)&ctrl->qh_list,
Lucas Stach3494a4c2012-09-26 00:14:35 +0200616 ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1));
Rob Herringf14d54b2015-03-17 15:46:37 -0500617 invalidate_dcache_range((unsigned long)qh,
Tom Rini2cabcf72012-07-15 22:14:24 +0000618 ALIGN_END_ADDR(struct QH, qh, 1));
Rob Herringf14d54b2015-03-17 15:46:37 -0500619 invalidate_dcache_range((unsigned long)qtd,
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200620 ALIGN_END_ADDR(struct qTD, qtd, qtd_count));
Marek Vasutff24dc32012-04-09 04:07:46 +0200621
michael0a326102008-12-10 17:55:19 +0100622 token = hc32_to_cpu(vtd->qt_token);
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200623 if (!(QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE))
Michael Trimarchi241f7512008-11-28 13:20:46 +0100624 break;
Stefan Roese86b34cf2010-11-26 15:43:28 +0100625 WATCHDOG_RESET();
Simon Glassfd7f5132011-02-07 14:42:16 -0800626 } while (get_timer(ts) < timeout);
Marek Vasut569c2a52019-10-06 16:13:38 +0200627 qhtoken = hc32_to_cpu(qh->qh_overlay.qt_token);
628
629 ctrl->qh_list.qh_link = cpu_to_hc32(virt_to_phys(&ctrl->qh_list) | QH_LINK_TYPE_QH);
630 flush_dcache_range((unsigned long)&ctrl->qh_list,
631 ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1));
Simon Glassfd7f5132011-02-07 14:42:16 -0800632
Ilya Yanokfb113712012-07-15 04:43:49 +0000633 /*
634 * Invalidate the memory area occupied by buffer
635 * Don't try to fix the buffer alignment, if it isn't properly
636 * aligned it's upper layer's fault so let invalidate_dcache_range()
637 * vow about it. But we have to fix the length as it's actual
638 * transfer length and can be unaligned. This is potentially
639 * dangerous operation, it's responsibility of the calling
640 * code to make sure enough space is reserved.
641 */
Dirk Behme78c73562017-11-17 15:28:36 +0100642 if (buffer != NULL && length > 0)
643 invalidate_dcache_range((unsigned long)buffer,
644 ALIGN((unsigned long)buffer + length, ARCH_DMA_MINALIGN));
Marek Vasutff24dc32012-04-09 04:07:46 +0200645
Simon Glassfd7f5132011-02-07 14:42:16 -0800646 /* Check that the TD processing happened */
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200647 if (QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE)
Simon Glassfd7f5132011-02-07 14:42:16 -0800648 printf("EHCI timed out on TD - token=%#x\n", token);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100649
Marek Vasut118a9032020-04-06 14:29:44 +0200650 ret = ehci_disable_async(ctrl);
651 if (ret)
652 goto fail;
653
Marek Vasut569c2a52019-10-06 16:13:38 +0200654 if (!(QT_TOKEN_GET_STATUS(qhtoken) & QT_TOKEN_STATUS_ACTIVE)) {
655 debug("TOKEN=%#x\n", qhtoken);
656 switch (QT_TOKEN_GET_STATUS(qhtoken) &
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200657 ~(QT_TOKEN_STATUS_SPLITXSTATE | QT_TOKEN_STATUS_PERR)) {
Michael Trimarchi241f7512008-11-28 13:20:46 +0100658 case 0:
Marek Vasut569c2a52019-10-06 16:13:38 +0200659 toggle = QT_TOKEN_GET_DT(qhtoken);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100660 usb_settoggle(dev, usb_pipeendpoint(pipe),
661 usb_pipeout(pipe), toggle);
662 dev->status = 0;
663 break;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200664 case QT_TOKEN_STATUS_HALTED:
Michael Trimarchi241f7512008-11-28 13:20:46 +0100665 dev->status = USB_ST_STALLED;
666 break;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200667 case QT_TOKEN_STATUS_ACTIVE | QT_TOKEN_STATUS_DATBUFERR:
668 case QT_TOKEN_STATUS_DATBUFERR:
Michael Trimarchi241f7512008-11-28 13:20:46 +0100669 dev->status = USB_ST_BUF_ERR;
670 break;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200671 case QT_TOKEN_STATUS_HALTED | QT_TOKEN_STATUS_BABBLEDET:
672 case QT_TOKEN_STATUS_BABBLEDET:
Michael Trimarchi241f7512008-11-28 13:20:46 +0100673 dev->status = USB_ST_BABBLE_DET;
674 break;
675 default:
676 dev->status = USB_ST_CRC_ERR;
Marek Vasut569c2a52019-10-06 16:13:38 +0200677 if (QT_TOKEN_GET_STATUS(qhtoken) & QT_TOKEN_STATUS_HALTED)
Anatolij Gustschine1e09312010-11-02 11:47:29 +0100678 dev->status |= USB_ST_STALLED;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100679 break;
680 }
Marek Vasut569c2a52019-10-06 16:13:38 +0200681 dev->act_len = length - QT_TOKEN_GET_TOTALBYTES(qhtoken);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100682 } else {
683 dev->act_len = 0;
Kuo-Jung Sub5d59de2013-05-15 15:29:23 +0800684#ifndef CONFIG_USB_EHCI_FARADAY
michael0a326102008-12-10 17:55:19 +0100685 debug("dev=%u, usbsts=%#x, p[1]=%#x, p[2]=%#x\n",
Lucas Stach3494a4c2012-09-26 00:14:35 +0200686 dev->devnum, ehci_readl(&ctrl->hcor->or_usbsts),
687 ehci_readl(&ctrl->hcor->or_portsc[0]),
688 ehci_readl(&ctrl->hcor->or_portsc[1]));
Kuo-Jung Sub5d59de2013-05-15 15:29:23 +0800689#endif
Michael Trimarchi241f7512008-11-28 13:20:46 +0100690 }
691
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200692 free(qtd);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100693 return (dev->status != USB_ST_NOT_PROC) ? 0 : -1;
694
695fail:
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200696 free(qtd);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100697 return -1;
698}
699
Simon Glasscb7cf602015-03-25 12:22:25 -0600700static int ehci_submit_root(struct usb_device *dev, unsigned long pipe,
701 void *buffer, int length, struct devrequest *req)
Michael Trimarchi241f7512008-11-28 13:20:46 +0100702{
703 uint8_t tmpbuf[4];
704 u16 typeReq;
michael0a326102008-12-10 17:55:19 +0100705 void *srcptr = NULL;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100706 int len, srclen;
707 uint32_t reg;
Remy Böhmer33e87482008-12-13 22:51:58 +0100708 uint32_t *status_reg;
Julius Wernerd4046702013-02-28 18:08:40 +0000709 int port = le16_to_cpu(req->index) & 0xff;
Simon Glasscb7cf602015-03-25 12:22:25 -0600710 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100711
712 srclen = 0;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100713
michael0a326102008-12-10 17:55:19 +0100714 debug("req=%u (%#x), type=%u (%#x), value=%u, index=%u\n",
Michael Trimarchi241f7512008-11-28 13:20:46 +0100715 req->request, req->request,
716 req->requesttype, req->requesttype,
717 le16_to_cpu(req->value), le16_to_cpu(req->index));
718
Prafulla Wadaskar22810292009-07-17 19:56:30 +0530719 typeReq = req->request | req->requesttype << 8;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100720
Prafulla Wadaskar22810292009-07-17 19:56:30 +0530721 switch (typeReq) {
Kuo-Jung Su9930e9f2013-05-15 15:29:20 +0800722 case USB_REQ_GET_STATUS | ((USB_RT_PORT | USB_DIR_IN) << 8):
723 case USB_REQ_SET_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
724 case USB_REQ_CLEAR_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
Simon Glassdc9f3ed2015-03-25 12:22:27 -0600725 status_reg = ctrl->ops.get_portsc_register(ctrl, port - 1);
Kuo-Jung Su6a656df2013-05-15 15:29:21 +0800726 if (!status_reg)
Kuo-Jung Su9930e9f2013-05-15 15:29:20 +0800727 return -1;
Kuo-Jung Su9930e9f2013-05-15 15:29:20 +0800728 break;
729 default:
730 status_reg = NULL;
731 break;
732 }
733
734 switch (typeReq) {
Michael Trimarchi241f7512008-11-28 13:20:46 +0100735 case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
736 switch (le16_to_cpu(req->value) >> 8) {
737 case USB_DT_DEVICE:
michael0a326102008-12-10 17:55:19 +0100738 debug("USB_DT_DEVICE request\n");
739 srcptr = &descriptor.device;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200740 srclen = descriptor.device.bLength;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100741 break;
742 case USB_DT_CONFIG:
michael0a326102008-12-10 17:55:19 +0100743 debug("USB_DT_CONFIG config\n");
744 srcptr = &descriptor.config;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200745 srclen = descriptor.config.bLength +
746 descriptor.interface.bLength +
747 descriptor.endpoint.bLength;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100748 break;
749 case USB_DT_STRING:
michael0a326102008-12-10 17:55:19 +0100750 debug("USB_DT_STRING config\n");
Michael Trimarchi241f7512008-11-28 13:20:46 +0100751 switch (le16_to_cpu(req->value) & 0xff) {
752 case 0: /* Language */
753 srcptr = "\4\3\1\0";
754 srclen = 4;
755 break;
756 case 1: /* Vendor */
757 srcptr = "\16\3u\0-\0b\0o\0o\0t\0";
758 srclen = 14;
759 break;
760 case 2: /* Product */
761 srcptr = "\52\3E\0H\0C\0I\0 "
762 "\0H\0o\0s\0t\0 "
763 "\0C\0o\0n\0t\0r\0o\0l\0l\0e\0r\0";
764 srclen = 42;
765 break;
766 default:
michael0a326102008-12-10 17:55:19 +0100767 debug("unknown value DT_STRING %x\n",
768 le16_to_cpu(req->value));
Michael Trimarchi241f7512008-11-28 13:20:46 +0100769 goto unknown;
770 }
771 break;
772 default:
michael0a326102008-12-10 17:55:19 +0100773 debug("unknown value %x\n", le16_to_cpu(req->value));
Michael Trimarchi241f7512008-11-28 13:20:46 +0100774 goto unknown;
775 }
776 break;
777 case USB_REQ_GET_DESCRIPTOR | ((USB_DIR_IN | USB_RT_HUB) << 8):
778 switch (le16_to_cpu(req->value) >> 8) {
779 case USB_DT_HUB:
michael0a326102008-12-10 17:55:19 +0100780 debug("USB_DT_HUB config\n");
781 srcptr = &descriptor.hub;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200782 srclen = descriptor.hub.bLength;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100783 break;
784 default:
michael0a326102008-12-10 17:55:19 +0100785 debug("unknown value %x\n", le16_to_cpu(req->value));
Michael Trimarchi241f7512008-11-28 13:20:46 +0100786 goto unknown;
787 }
788 break;
789 case USB_REQ_SET_ADDRESS | (USB_RECIP_DEVICE << 8):
michael0a326102008-12-10 17:55:19 +0100790 debug("USB_REQ_SET_ADDRESS\n");
Lucas Stach3494a4c2012-09-26 00:14:35 +0200791 ctrl->rootdev = le16_to_cpu(req->value);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100792 break;
793 case DeviceOutRequest | USB_REQ_SET_CONFIGURATION:
michael0a326102008-12-10 17:55:19 +0100794 debug("USB_REQ_SET_CONFIGURATION\n");
Michael Trimarchi241f7512008-11-28 13:20:46 +0100795 /* Nothing to do */
796 break;
797 case USB_REQ_GET_STATUS | ((USB_DIR_IN | USB_RT_HUB) << 8):
798 tmpbuf[0] = 1; /* USB_STATUS_SELFPOWERED */
799 tmpbuf[1] = 0;
800 srcptr = tmpbuf;
801 srclen = 2;
802 break;
michael0a326102008-12-10 17:55:19 +0100803 case USB_REQ_GET_STATUS | ((USB_RT_PORT | USB_DIR_IN) << 8):
Michael Trimarchi241f7512008-11-28 13:20:46 +0100804 memset(tmpbuf, 0, 4);
Remy Böhmer33e87482008-12-13 22:51:58 +0100805 reg = ehci_readl(status_reg);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100806 if (reg & EHCI_PS_CS)
807 tmpbuf[0] |= USB_PORT_STAT_CONNECTION;
808 if (reg & EHCI_PS_PE)
809 tmpbuf[0] |= USB_PORT_STAT_ENABLE;
810 if (reg & EHCI_PS_SUSP)
811 tmpbuf[0] |= USB_PORT_STAT_SUSPEND;
812 if (reg & EHCI_PS_OCA)
813 tmpbuf[0] |= USB_PORT_STAT_OVERCURRENT;
Sergei Shtylyov23dec682010-02-27 21:33:21 +0300814 if (reg & EHCI_PS_PR)
815 tmpbuf[0] |= USB_PORT_STAT_RESET;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100816 if (reg & EHCI_PS_PP)
817 tmpbuf[1] |= USB_PORT_STAT_POWER >> 8;
Stefan Roese497f1842009-01-21 17:12:01 +0100818
819 if (ehci_is_TDI()) {
Simon Glassdc9f3ed2015-03-25 12:22:27 -0600820 switch (ctrl->ops.get_port_speed(ctrl, reg)) {
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200821 case PORTSC_PSPD_FS:
Stefan Roese497f1842009-01-21 17:12:01 +0100822 break;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200823 case PORTSC_PSPD_LS:
Stefan Roese497f1842009-01-21 17:12:01 +0100824 tmpbuf[1] |= USB_PORT_STAT_LOW_SPEED >> 8;
825 break;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200826 case PORTSC_PSPD_HS:
Stefan Roese497f1842009-01-21 17:12:01 +0100827 default:
828 tmpbuf[1] |= USB_PORT_STAT_HIGH_SPEED >> 8;
829 break;
830 }
831 } else {
832 tmpbuf[1] |= USB_PORT_STAT_HIGH_SPEED >> 8;
833 }
Michael Trimarchi241f7512008-11-28 13:20:46 +0100834
835 if (reg & EHCI_PS_CSC)
836 tmpbuf[2] |= USB_PORT_STAT_C_CONNECTION;
837 if (reg & EHCI_PS_PEC)
838 tmpbuf[2] |= USB_PORT_STAT_C_ENABLE;
839 if (reg & EHCI_PS_OCC)
840 tmpbuf[2] |= USB_PORT_STAT_C_OVERCURRENT;
Julius Wernerd4046702013-02-28 18:08:40 +0000841 if (ctrl->portreset & (1 << port))
Michael Trimarchi241f7512008-11-28 13:20:46 +0100842 tmpbuf[2] |= USB_PORT_STAT_C_RESET;
Remy Böhmer33e87482008-12-13 22:51:58 +0100843
Michael Trimarchi241f7512008-11-28 13:20:46 +0100844 srcptr = tmpbuf;
845 srclen = 4;
846 break;
michael0a326102008-12-10 17:55:19 +0100847 case USB_REQ_SET_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
Remy Böhmer33e87482008-12-13 22:51:58 +0100848 reg = ehci_readl(status_reg);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100849 reg &= ~EHCI_PS_CLEAR;
850 switch (le16_to_cpu(req->value)) {
michael0bf2a032008-12-11 13:43:55 +0100851 case USB_PORT_FEAT_ENABLE:
852 reg |= EHCI_PS_PE;
Remy Böhmer33e87482008-12-13 22:51:58 +0100853 ehci_writel(status_reg, reg);
michael0bf2a032008-12-11 13:43:55 +0100854 break;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100855 case USB_PORT_FEAT_POWER:
Lucas Stach3494a4c2012-09-26 00:14:35 +0200856 if (HCS_PPC(ehci_readl(&ctrl->hccr->cr_hcsparams))) {
Remy Böhmer33e87482008-12-13 22:51:58 +0100857 reg |= EHCI_PS_PP;
858 ehci_writel(status_reg, reg);
859 }
Michael Trimarchi241f7512008-11-28 13:20:46 +0100860 break;
861 case USB_PORT_FEAT_RESET:
Remy Böhmer33e87482008-12-13 22:51:58 +0100862 if ((reg & (EHCI_PS_PE | EHCI_PS_CS)) == EHCI_PS_CS &&
863 !ehci_is_TDI() &&
864 EHCI_PS_IS_LOWSPEED(reg)) {
Michael Trimarchi241f7512008-11-28 13:20:46 +0100865 /* Low speed device, give up ownership. */
Remy Böhmer33e87482008-12-13 22:51:58 +0100866 debug("port %d low speed --> companion\n",
Julius Wernerd4046702013-02-28 18:08:40 +0000867 port - 1);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100868 reg |= EHCI_PS_PO;
Remy Böhmer33e87482008-12-13 22:51:58 +0100869 ehci_writel(status_reg, reg);
Hans de Goede63f34ca2015-05-10 14:10:16 +0200870 return -ENXIO;
Remy Böhmer33e87482008-12-13 22:51:58 +0100871 } else {
Sergei Shtylyov23dec682010-02-27 21:33:21 +0300872 int ret;
873
Chris Packham434f0582018-10-04 20:03:53 +1300874 /* Disable chirp for HS erratum */
875 if (ctrl->has_fsl_erratum_a005275)
876 reg |= PORTSC_FSL_PFSC;
877
Remy Böhmer33e87482008-12-13 22:51:58 +0100878 reg |= EHCI_PS_PR;
879 reg &= ~EHCI_PS_PE;
880 ehci_writel(status_reg, reg);
881 /*
882 * caller must wait, then call GetPortStatus
883 * usb 2.0 specification say 50 ms resets on
884 * root
885 */
Simon Glassdc9f3ed2015-03-25 12:22:27 -0600886 ctrl->ops.powerup_fixup(ctrl, status_reg, &reg);
Marek Vasut09734772011-07-11 02:37:01 +0200887
Chris Zhangfddf6d62010-01-06 13:34:04 -0800888 ehci_writel(status_reg, reg & ~EHCI_PS_PR);
Sergei Shtylyov23dec682010-02-27 21:33:21 +0300889 /*
890 * A host controller must terminate the reset
891 * and stabilize the state of the port within
892 * 2 milliseconds
893 */
894 ret = handshake(status_reg, EHCI_PS_PR, 0,
895 2 * 1000);
Hans de Goedeb5b3ef22015-05-10 14:10:13 +0200896 if (!ret) {
897 reg = ehci_readl(status_reg);
898 if ((reg & (EHCI_PS_PE | EHCI_PS_CS))
899 == EHCI_PS_CS && !ehci_is_TDI()) {
900 debug("port %d full speed --> companion\n", port - 1);
901 reg &= ~EHCI_PS_CLEAR;
902 reg |= EHCI_PS_PO;
903 ehci_writel(status_reg, reg);
Hans de Goede63f34ca2015-05-10 14:10:16 +0200904 return -ENXIO;
Hans de Goedeb5b3ef22015-05-10 14:10:13 +0200905 } else {
906 ctrl->portreset |= 1 << port;
907 }
908 } else {
Sergei Shtylyov23dec682010-02-27 21:33:21 +0300909 printf("port(%d) reset error\n",
Julius Wernerd4046702013-02-28 18:08:40 +0000910 port - 1);
Hans de Goedeb5b3ef22015-05-10 14:10:13 +0200911 }
Michael Trimarchi241f7512008-11-28 13:20:46 +0100912 }
Michael Trimarchi241f7512008-11-28 13:20:46 +0100913 break;
Julius Wernerd4046702013-02-28 18:08:40 +0000914 case USB_PORT_FEAT_TEST:
Julius Werner5c1a1ad2013-09-24 10:53:07 -0700915 ehci_shutdown(ctrl);
Julius Wernerd4046702013-02-28 18:08:40 +0000916 reg &= ~(0xf << 16);
917 reg |= ((le16_to_cpu(req->index) >> 8) & 0xf) << 16;
918 ehci_writel(status_reg, reg);
919 break;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100920 default:
michael0a326102008-12-10 17:55:19 +0100921 debug("unknown feature %x\n", le16_to_cpu(req->value));
Michael Trimarchi241f7512008-11-28 13:20:46 +0100922 goto unknown;
923 }
Remy Böhmer33e87482008-12-13 22:51:58 +0100924 /* unblock posted writes */
Lucas Stach3494a4c2012-09-26 00:14:35 +0200925 (void) ehci_readl(&ctrl->hcor->or_usbcmd);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100926 break;
michael0a326102008-12-10 17:55:19 +0100927 case USB_REQ_CLEAR_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
Remy Böhmer33e87482008-12-13 22:51:58 +0100928 reg = ehci_readl(status_reg);
Simon Glass0554ba52013-05-10 19:49:00 -0700929 reg &= ~EHCI_PS_CLEAR;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100930 switch (le16_to_cpu(req->value)) {
931 case USB_PORT_FEAT_ENABLE:
932 reg &= ~EHCI_PS_PE;
933 break;
Remy Böhmer33e87482008-12-13 22:51:58 +0100934 case USB_PORT_FEAT_C_ENABLE:
Simon Glass0554ba52013-05-10 19:49:00 -0700935 reg |= EHCI_PS_PE;
Remy Böhmer33e87482008-12-13 22:51:58 +0100936 break;
937 case USB_PORT_FEAT_POWER:
Lucas Stach3494a4c2012-09-26 00:14:35 +0200938 if (HCS_PPC(ehci_readl(&ctrl->hccr->cr_hcsparams)))
Simon Glass0554ba52013-05-10 19:49:00 -0700939 reg &= ~EHCI_PS_PP;
940 break;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100941 case USB_PORT_FEAT_C_CONNECTION:
Simon Glass0554ba52013-05-10 19:49:00 -0700942 reg |= EHCI_PS_CSC;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100943 break;
michael0bf2a032008-12-11 13:43:55 +0100944 case USB_PORT_FEAT_OVER_CURRENT:
Simon Glass0554ba52013-05-10 19:49:00 -0700945 reg |= EHCI_PS_OCC;
michael0bf2a032008-12-11 13:43:55 +0100946 break;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100947 case USB_PORT_FEAT_C_RESET:
Julius Wernerd4046702013-02-28 18:08:40 +0000948 ctrl->portreset &= ~(1 << port);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100949 break;
950 default:
michael0a326102008-12-10 17:55:19 +0100951 debug("unknown feature %x\n", le16_to_cpu(req->value));
Michael Trimarchi241f7512008-11-28 13:20:46 +0100952 goto unknown;
953 }
Remy Böhmer33e87482008-12-13 22:51:58 +0100954 ehci_writel(status_reg, reg);
955 /* unblock posted write */
Lucas Stach3494a4c2012-09-26 00:14:35 +0200956 (void) ehci_readl(&ctrl->hcor->or_usbcmd);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100957 break;
958 default:
michael0a326102008-12-10 17:55:19 +0100959 debug("Unknown request\n");
Michael Trimarchi241f7512008-11-28 13:20:46 +0100960 goto unknown;
961 }
962
Mike Frysinger60ce19a2012-03-05 13:47:00 +0000963 mdelay(1);
Masahiro Yamadadb204642014-11-07 03:03:31 +0900964 len = min3(srclen, (int)le16_to_cpu(req->length), length);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100965 if (srcptr != NULL && len > 0)
966 memcpy(buffer, srcptr, len);
michael0a326102008-12-10 17:55:19 +0100967 else
968 debug("Len is 0\n");
969
Michael Trimarchi241f7512008-11-28 13:20:46 +0100970 dev->act_len = len;
971 dev->status = 0;
972 return 0;
973
974unknown:
michael0a326102008-12-10 17:55:19 +0100975 debug("requesttype=%x, request=%x, value=%x, index=%x, length=%x\n",
Michael Trimarchi241f7512008-11-28 13:20:46 +0100976 req->requesttype, req->request, le16_to_cpu(req->value),
977 le16_to_cpu(req->index), le16_to_cpu(req->length));
978
979 dev->act_len = 0;
980 dev->status = USB_ST_STALLED;
981 return -1;
982}
983
Masahiro Yamada6d8e4332017-06-22 16:35:14 +0900984static const struct ehci_ops default_ehci_ops = {
Simon Glassdc9f3ed2015-03-25 12:22:27 -0600985 .set_usb_mode = ehci_set_usbmode,
986 .get_port_speed = ehci_get_port_speed,
987 .powerup_fixup = ehci_powerup_fixup,
988 .get_portsc_register = ehci_get_portsc_register,
989};
990
991static void ehci_setup_ops(struct ehci_ctrl *ctrl, const struct ehci_ops *ops)
Simon Glass0851caa2015-03-25 12:22:19 -0600992{
Simon Glassdc9f3ed2015-03-25 12:22:27 -0600993 if (!ops) {
994 ctrl->ops = default_ehci_ops;
995 } else {
996 ctrl->ops = *ops;
997 if (!ctrl->ops.set_usb_mode)
998 ctrl->ops.set_usb_mode = ehci_set_usbmode;
999 if (!ctrl->ops.get_port_speed)
1000 ctrl->ops.get_port_speed = ehci_get_port_speed;
1001 if (!ctrl->ops.powerup_fixup)
1002 ctrl->ops.powerup_fixup = ehci_powerup_fixup;
1003 if (!ctrl->ops.get_portsc_register)
1004 ctrl->ops.get_portsc_register =
1005 ehci_get_portsc_register;
1006 }
Simon Glass0851caa2015-03-25 12:22:19 -06001007}
1008
Sven Schwermer8a3cb9f12018-11-21 08:43:56 +01001009#if !CONFIG_IS_ENABLED(DM_USB)
Simon Glassdc9f3ed2015-03-25 12:22:27 -06001010void ehci_set_controller_priv(int index, void *priv, const struct ehci_ops *ops)
1011{
1012 struct ehci_ctrl *ctrl = &ehcic[index];
1013
1014 ctrl->priv = priv;
1015 ehci_setup_ops(ctrl, ops);
1016}
1017
Simon Glass0851caa2015-03-25 12:22:19 -06001018void *ehci_get_controller_priv(int index)
1019{
1020 return ehcic[index].priv;
1021}
Simon Glassa194b252015-03-25 12:22:29 -06001022#endif
Simon Glass0851caa2015-03-25 12:22:19 -06001023
Simon Glassccc40fd2015-03-25 12:22:26 -06001024static int ehci_common_init(struct ehci_ctrl *ctrl, uint tweaks)
Michael Trimarchi241f7512008-11-28 13:20:46 +01001025{
Lucas Stach3494a4c2012-09-26 00:14:35 +02001026 struct QH *qh_list;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001027 struct QH *periodic;
Simon Glassccc40fd2015-03-25 12:22:26 -06001028 uint32_t reg;
1029 uint32_t cmd;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001030 int i;
michael0bf2a032008-12-11 13:43:55 +01001031
Vincent Palatin0d6f77c2012-12-12 17:55:22 -08001032 /* Set the high address word (aka segment) for 64-bit controller */
Simon Glassccc40fd2015-03-25 12:22:26 -06001033 if (ehci_readl(&ctrl->hccr->cr_hccparams) & 1)
1034 ehci_writel(&ctrl->hcor->or_ctrldssegment, 0);
Stefan Roese2e98fc72009-01-21 17:12:10 +01001035
Simon Glassccc40fd2015-03-25 12:22:26 -06001036 qh_list = &ctrl->qh_list;
Lucas Stach3494a4c2012-09-26 00:14:35 +02001037
Michael Trimarchi241f7512008-11-28 13:20:46 +01001038 /* Set head of reclaim list */
Tom Rini2cabcf72012-07-15 22:14:24 +00001039 memset(qh_list, 0, sizeof(*qh_list));
Marek Vasutdf0b6242016-01-23 21:04:46 +01001040 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 +02001041 qh_list->qh_endpt1 = cpu_to_hc32(QH_ENDPT1_H(1) |
1042 QH_ENDPT1_EPS(USB_SPEED_HIGH));
Tom Rini2cabcf72012-07-15 22:14:24 +00001043 qh_list->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
1044 qh_list->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +02001045 qh_list->qh_overlay.qt_token =
1046 cpu_to_hc32(QT_TOKEN_STATUS(QT_TOKEN_STATUS_HALTED));
Michael Trimarchi241f7512008-11-28 13:20:46 +01001047
Rob Herringf14d54b2015-03-17 15:46:37 -05001048 flush_dcache_range((unsigned long)qh_list,
Stephen Warren36dad662013-05-24 15:03:17 -06001049 ALIGN_END_ADDR(struct QH, qh_list, 1));
1050
Patrick Georgie55fdac2013-03-06 14:08:31 +00001051 /* Set async. queue head pointer. */
Marek Vasutdf0b6242016-01-23 21:04:46 +01001052 ehci_writel(&ctrl->hcor->or_asynclistaddr, virt_to_phys(qh_list));
Patrick Georgie55fdac2013-03-06 14:08:31 +00001053
1054 /*
1055 * Set up periodic list
1056 * Step 1: Parent QH for all periodic transfers.
1057 */
Simon Glassccc40fd2015-03-25 12:22:26 -06001058 ctrl->periodic_schedules = 0;
1059 periodic = &ctrl->periodic_queue;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001060 memset(periodic, 0, sizeof(*periodic));
1061 periodic->qh_link = cpu_to_hc32(QH_LINK_TERMINATE);
1062 periodic->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
1063 periodic->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
1064
Rob Herringf14d54b2015-03-17 15:46:37 -05001065 flush_dcache_range((unsigned long)periodic,
Stephen Warren36dad662013-05-24 15:03:17 -06001066 ALIGN_END_ADDR(struct QH, periodic, 1));
1067
Patrick Georgie55fdac2013-03-06 14:08:31 +00001068 /*
1069 * Step 2: Setup frame-list: Every microframe, USB tries the same list.
1070 * In particular, device specifications on polling frequency
1071 * are disregarded. Keyboards seem to send NAK/NYet reliably
1072 * when polled with an empty buffer.
1073 *
1074 * Split Transactions will be spread across microframes using
1075 * S-mask and C-mask.
1076 */
Simon Glassccc40fd2015-03-25 12:22:26 -06001077 if (ctrl->periodic_list == NULL)
1078 ctrl->periodic_list = memalign(4096, 1024 * 4);
Nikita Kiryanov2f13e442013-07-29 13:27:40 +03001079
Simon Glassccc40fd2015-03-25 12:22:26 -06001080 if (!ctrl->periodic_list)
Patrick Georgie55fdac2013-03-06 14:08:31 +00001081 return -ENOMEM;
1082 for (i = 0; i < 1024; i++) {
Simon Glassccc40fd2015-03-25 12:22:26 -06001083 ctrl->periodic_list[i] = cpu_to_hc32((unsigned long)periodic
Adrian Cox29d05872014-04-10 13:29:45 +01001084 | QH_LINK_TYPE_QH);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001085 }
1086
Simon Glassccc40fd2015-03-25 12:22:26 -06001087 flush_dcache_range((unsigned long)ctrl->periodic_list,
1088 ALIGN_END_ADDR(uint32_t, ctrl->periodic_list,
Stephen Warren36dad662013-05-24 15:03:17 -06001089 1024));
1090
Patrick Georgie55fdac2013-03-06 14:08:31 +00001091 /* Set periodic list base address */
Simon Glassccc40fd2015-03-25 12:22:26 -06001092 ehci_writel(&ctrl->hcor->or_periodiclistbase,
1093 (unsigned long)ctrl->periodic_list);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001094
Simon Glassccc40fd2015-03-25 12:22:26 -06001095 reg = ehci_readl(&ctrl->hccr->cr_hcsparams);
michael0bf2a032008-12-11 13:43:55 +01001096 descriptor.hub.bNbrPorts = HCS_N_PORTS(reg);
Lucas Stachf5b34082012-09-28 00:26:19 +02001097 debug("Register %x NbrPorts %d\n", reg, descriptor.hub.bNbrPorts);
Remy Böhmer33e87482008-12-13 22:51:58 +01001098 /* Port Indicators */
1099 if (HCS_INDICATOR(reg))
Lucas Stach835e11e2012-09-06 08:00:13 +02001100 put_unaligned(get_unaligned(&descriptor.hub.wHubCharacteristics)
1101 | 0x80, &descriptor.hub.wHubCharacteristics);
Remy Böhmer33e87482008-12-13 22:51:58 +01001102 /* Port Power Control */
1103 if (HCS_PPC(reg))
Lucas Stach835e11e2012-09-06 08:00:13 +02001104 put_unaligned(get_unaligned(&descriptor.hub.wHubCharacteristics)
1105 | 0x01, &descriptor.hub.wHubCharacteristics);
Michael Trimarchi241f7512008-11-28 13:20:46 +01001106
Michael Trimarchi241f7512008-11-28 13:20:46 +01001107 /* Start the host controller. */
Simon Glassccc40fd2015-03-25 12:22:26 -06001108 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
Wolfgang Denkfb718e12009-02-12 00:08:39 +01001109 /*
1110 * Philips, Intel, and maybe others need CMD_RUN before the
1111 * root hub will detect new devices (why?); NEC doesn't
1112 */
michael0bf2a032008-12-11 13:43:55 +01001113 cmd &= ~(CMD_LRESET|CMD_IAAD|CMD_PSE|CMD_ASE|CMD_RESET);
1114 cmd |= CMD_RUN;
Simon Glassccc40fd2015-03-25 12:22:26 -06001115 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
michael0bf2a032008-12-11 13:43:55 +01001116
Simon Glassccc40fd2015-03-25 12:22:26 -06001117 if (!(tweaks & EHCI_TWEAK_NO_INIT_CF)) {
1118 /* take control over the ports */
1119 cmd = ehci_readl(&ctrl->hcor->or_configflag);
1120 cmd |= FLAG_CF;
1121 ehci_writel(&ctrl->hcor->or_configflag, cmd);
1122 }
Kuo-Jung Sub5d59de2013-05-15 15:29:23 +08001123
Remy Böhmer33e87482008-12-13 22:51:58 +01001124 /* unblock posted write */
Simon Glassccc40fd2015-03-25 12:22:26 -06001125 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
Mike Frysinger60ce19a2012-03-05 13:47:00 +00001126 mdelay(5);
Simon Glassccc40fd2015-03-25 12:22:26 -06001127 reg = HC_VERSION(ehci_readl(&ctrl->hccr->cr_capbase));
Remy Böhmer33e87482008-12-13 22:51:58 +01001128 printf("USB EHCI %x.%02x\n", reg >> 8, reg & 0xff);
Michael Trimarchi241f7512008-11-28 13:20:46 +01001129
Simon Glassccc40fd2015-03-25 12:22:26 -06001130 return 0;
1131}
1132
Sven Schwermer8a3cb9f12018-11-21 08:43:56 +01001133#if !CONFIG_IS_ENABLED(DM_USB)
Simon Glassccc40fd2015-03-25 12:22:26 -06001134int usb_lowlevel_stop(int index)
1135{
1136 ehci_shutdown(&ehcic[index]);
1137 return ehci_hcd_stop(index);
1138}
1139
1140int usb_lowlevel_init(int index, enum usb_init_type init, void **controller)
1141{
1142 struct ehci_ctrl *ctrl = &ehcic[index];
1143 uint tweaks = 0;
1144 int rc;
1145
Simon Glassdc9f3ed2015-03-25 12:22:27 -06001146 /**
1147 * Set ops to default_ehci_ops, ehci_hcd_init should call
1148 * ehci_set_controller_priv to change any of these function pointers.
1149 */
1150 ctrl->ops = default_ehci_ops;
1151
Simon Glassccc40fd2015-03-25 12:22:26 -06001152 rc = ehci_hcd_init(index, init, &ctrl->hccr, &ctrl->hcor);
1153 if (rc)
1154 return rc;
Heinrich Schuchardtab4304b2017-11-20 19:33:39 +01001155 if (!ctrl->hccr || !ctrl->hcor)
1156 return -1;
Simon Glassccc40fd2015-03-25 12:22:26 -06001157 if (init == USB_INIT_DEVICE)
1158 goto done;
1159
1160 /* EHCI spec section 4.1 */
Simon Glass302696b2015-03-25 12:22:28 -06001161 if (ehci_reset(ctrl))
Simon Glassccc40fd2015-03-25 12:22:26 -06001162 return -1;
1163
1164#if defined(CONFIG_EHCI_HCD_INIT_AFTER_RESET)
1165 rc = ehci_hcd_init(index, init, &ctrl->hccr, &ctrl->hcor);
1166 if (rc)
1167 return rc;
1168#endif
1169#ifdef CONFIG_USB_EHCI_FARADAY
1170 tweaks |= EHCI_TWEAK_NO_INIT_CF;
1171#endif
1172 rc = ehci_common_init(ctrl, tweaks);
1173 if (rc)
1174 return rc;
1175
1176 ctrl->rootdev = 0;
Troy Kisky7d6bbb92013-10-10 15:27:57 -07001177done:
Lucas Stach3494a4c2012-09-26 00:14:35 +02001178 *controller = &ehcic[index];
Michael Trimarchi241f7512008-11-28 13:20:46 +01001179 return 0;
1180}
Simon Glassa194b252015-03-25 12:22:29 -06001181#endif
Michael Trimarchi241f7512008-11-28 13:20:46 +01001182
Simon Glasscb7cf602015-03-25 12:22:25 -06001183static int _ehci_submit_bulk_msg(struct usb_device *dev, unsigned long pipe,
1184 void *buffer, int length)
Michael Trimarchi241f7512008-11-28 13:20:46 +01001185{
1186
1187 if (usb_pipetype(pipe) != PIPE_BULK) {
1188 debug("non-bulk pipe (type=%lu)", usb_pipetype(pipe));
1189 return -1;
1190 }
1191 return ehci_submit_async(dev, pipe, buffer, length, NULL);
1192}
1193
Simon Glasscb7cf602015-03-25 12:22:25 -06001194static int _ehci_submit_control_msg(struct usb_device *dev, unsigned long pipe,
1195 void *buffer, int length,
1196 struct devrequest *setup)
Michael Trimarchi241f7512008-11-28 13:20:46 +01001197{
Simon Glasscb7cf602015-03-25 12:22:25 -06001198 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Michael Trimarchi241f7512008-11-28 13:20:46 +01001199
1200 if (usb_pipetype(pipe) != PIPE_CONTROL) {
1201 debug("non-control pipe (type=%lu)", usb_pipetype(pipe));
1202 return -1;
1203 }
1204
Lucas Stach3494a4c2012-09-26 00:14:35 +02001205 if (usb_pipedevice(pipe) == ctrl->rootdev) {
1206 if (!ctrl->rootdev)
Michael Trimarchi241f7512008-11-28 13:20:46 +01001207 dev->speed = USB_SPEED_HIGH;
1208 return ehci_submit_root(dev, pipe, buffer, length, setup);
1209 }
1210 return ehci_submit_async(dev, pipe, buffer, length, setup);
1211}
1212
Patrick Georgie55fdac2013-03-06 14:08:31 +00001213struct int_queue {
Hans de Goede8c5c5ca2014-09-24 14:06:05 +02001214 int elementsize;
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001215 unsigned long pipe;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001216 struct QH *first;
1217 struct QH *current;
1218 struct QH *last;
1219 struct qTD *tds;
1220};
1221
Rob Herringf14d54b2015-03-17 15:46:37 -05001222#define NEXT_QH(qh) (struct QH *)((unsigned long)hc32_to_cpu((qh)->qh_link) & ~0x1f)
Patrick Georgie55fdac2013-03-06 14:08:31 +00001223
1224static int
1225enable_periodic(struct ehci_ctrl *ctrl)
1226{
1227 uint32_t cmd;
1228 struct ehci_hcor *hcor = ctrl->hcor;
1229 int ret;
1230
1231 cmd = ehci_readl(&hcor->or_usbcmd);
1232 cmd |= CMD_PSE;
1233 ehci_writel(&hcor->or_usbcmd, cmd);
1234
1235 ret = handshake((uint32_t *)&hcor->or_usbsts,
1236 STS_PSS, STS_PSS, 100 * 1000);
1237 if (ret < 0) {
1238 printf("EHCI failed: timeout when enabling periodic list\n");
1239 return -ETIMEDOUT;
1240 }
1241 udelay(1000);
1242 return 0;
1243}
1244
1245static int
1246disable_periodic(struct ehci_ctrl *ctrl)
1247{
1248 uint32_t cmd;
1249 struct ehci_hcor *hcor = ctrl->hcor;
1250 int ret;
1251
1252 cmd = ehci_readl(&hcor->or_usbcmd);
1253 cmd &= ~CMD_PSE;
1254 ehci_writel(&hcor->or_usbcmd, cmd);
1255
1256 ret = handshake((uint32_t *)&hcor->or_usbsts,
1257 STS_PSS, 0, 100 * 1000);
1258 if (ret < 0) {
1259 printf("EHCI failed: timeout when disabling periodic list\n");
1260 return -ETIMEDOUT;
1261 }
1262 return 0;
1263}
1264
Hans de Goede53ca9de2015-05-11 20:43:52 +02001265static struct int_queue *_ehci_create_int_queue(struct usb_device *dev,
1266 unsigned long pipe, int queuesize, int elementsize,
1267 void *buffer, int interval)
Patrick Georgie55fdac2013-03-06 14:08:31 +00001268{
Simon Glasscb7cf602015-03-25 12:22:25 -06001269 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001270 struct int_queue *result = NULL;
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001271 uint32_t i, toggle;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001272
Hans de Goede7f7cb732014-09-24 14:06:04 +02001273 /*
1274 * Interrupt transfers requiring several transactions are not supported
1275 * because bInterval is ignored.
1276 *
1277 * Also, ehci_submit_async() relies on wMaxPacketSize being a power of 2
1278 * <= PKT_ALIGN if several qTDs are required, while the USB
1279 * specification does not constrain this for interrupt transfers. That
1280 * means that ehci_submit_async() would support interrupt transfers
1281 * requiring several transactions only as long as the transfer size does
1282 * not require more than a single qTD.
1283 */
1284 if (elementsize > usb_maxpacket(dev, pipe)) {
1285 printf("%s: xfers requiring several transactions are not supported.\n",
1286 __func__);
1287 return NULL;
1288 }
1289
Patrick Georgie55fdac2013-03-06 14:08:31 +00001290 debug("Enter create_int_queue\n");
1291 if (usb_pipetype(pipe) != PIPE_INTERRUPT) {
1292 debug("non-interrupt pipe (type=%lu)", usb_pipetype(pipe));
1293 return NULL;
1294 }
1295
1296 /* limit to 4 full pages worth of data -
1297 * we can safely fit them in a single TD,
1298 * no matter the alignment
1299 */
1300 if (elementsize >= 16384) {
1301 debug("too large elements for interrupt transfers\n");
1302 return NULL;
1303 }
1304
1305 result = malloc(sizeof(*result));
1306 if (!result) {
1307 debug("ehci intr queue: out of memory\n");
1308 goto fail1;
1309 }
Hans de Goede8c5c5ca2014-09-24 14:06:05 +02001310 result->elementsize = elementsize;
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001311 result->pipe = pipe;
Stephen Warrend7fe61d2014-02-06 13:13:06 -07001312 result->first = memalign(USB_DMA_MINALIGN,
1313 sizeof(struct QH) * queuesize);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001314 if (!result->first) {
1315 debug("ehci intr queue: out of memory\n");
1316 goto fail2;
1317 }
1318 result->current = result->first;
1319 result->last = result->first + queuesize - 1;
Stephen Warrend7fe61d2014-02-06 13:13:06 -07001320 result->tds = memalign(USB_DMA_MINALIGN,
1321 sizeof(struct qTD) * queuesize);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001322 if (!result->tds) {
1323 debug("ehci intr queue: out of memory\n");
1324 goto fail3;
1325 }
1326 memset(result->first, 0, sizeof(struct QH) * queuesize);
1327 memset(result->tds, 0, sizeof(struct qTD) * queuesize);
1328
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001329 toggle = usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
1330
Patrick Georgie55fdac2013-03-06 14:08:31 +00001331 for (i = 0; i < queuesize; i++) {
1332 struct QH *qh = result->first + i;
1333 struct qTD *td = result->tds + i;
1334 void **buf = &qh->buffer;
1335
Rob Herringf14d54b2015-03-17 15:46:37 -05001336 qh->qh_link = cpu_to_hc32((unsigned long)(qh+1) | QH_LINK_TYPE_QH);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001337 if (i == queuesize - 1)
Adrian Cox29d05872014-04-10 13:29:45 +01001338 qh->qh_link = cpu_to_hc32(QH_LINK_TERMINATE);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001339
Rob Herringf14d54b2015-03-17 15:46:37 -05001340 qh->qh_overlay.qt_next = cpu_to_hc32((unsigned long)td);
Adrian Cox29d05872014-04-10 13:29:45 +01001341 qh->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
1342 qh->qh_endpt1 =
1343 cpu_to_hc32((0 << 28) | /* No NAK reload (ehci 4.9) */
Patrick Georgie55fdac2013-03-06 14:08:31 +00001344 (usb_maxpacket(dev, pipe) << 16) | /* MPS */
1345 (1 << 14) |
1346 QH_ENDPT1_EPS(ehci_encode_speed(dev->speed)) |
1347 (usb_pipeendpoint(pipe) << 8) | /* Endpoint Number */
Adrian Cox29d05872014-04-10 13:29:45 +01001348 (usb_pipedevice(pipe) << 0));
1349 qh->qh_endpt2 = cpu_to_hc32((1 << 30) | /* 1 Tx per mframe */
1350 (1 << 0)); /* S-mask: microframe 0 */
Patrick Georgie55fdac2013-03-06 14:08:31 +00001351 if (dev->speed == USB_SPEED_LOW ||
1352 dev->speed == USB_SPEED_FULL) {
Hans de Goededa166772014-09-20 16:51:22 +02001353 /* C-mask: microframes 2-4 */
1354 qh->qh_endpt2 |= cpu_to_hc32((0x1c << 8));
Patrick Georgie55fdac2013-03-06 14:08:31 +00001355 }
Hans de Goededa166772014-09-20 16:51:22 +02001356 ehci_update_endpt2_dev_n_port(dev, qh);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001357
Adrian Cox29d05872014-04-10 13:29:45 +01001358 td->qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
1359 td->qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001360 debug("communication direction is '%s'\n",
1361 usb_pipein(pipe) ? "in" : "out");
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001362 td->qt_token = cpu_to_hc32(
1363 QT_TOKEN_DT(toggle) |
1364 (elementsize << 16) |
Patrick Georgie55fdac2013-03-06 14:08:31 +00001365 ((usb_pipein(pipe) ? 1 : 0) << 8) | /* IN/OUT token */
Adrian Cox29d05872014-04-10 13:29:45 +01001366 0x80); /* active */
1367 td->qt_buffer[0] =
Rob Herringf14d54b2015-03-17 15:46:37 -05001368 cpu_to_hc32((unsigned long)buffer + i * elementsize);
Adrian Cox29d05872014-04-10 13:29:45 +01001369 td->qt_buffer[1] =
1370 cpu_to_hc32((td->qt_buffer[0] + 0x1000) & ~0xfff);
1371 td->qt_buffer[2] =
1372 cpu_to_hc32((td->qt_buffer[0] + 0x2000) & ~0xfff);
1373 td->qt_buffer[3] =
1374 cpu_to_hc32((td->qt_buffer[0] + 0x3000) & ~0xfff);
1375 td->qt_buffer[4] =
1376 cpu_to_hc32((td->qt_buffer[0] + 0x4000) & ~0xfff);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001377
1378 *buf = buffer + i * elementsize;
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001379 toggle ^= 1;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001380 }
1381
Rob Herringf14d54b2015-03-17 15:46:37 -05001382 flush_dcache_range((unsigned long)buffer,
Stephen Warren36dad662013-05-24 15:03:17 -06001383 ALIGN_END_ADDR(char, buffer,
1384 queuesize * elementsize));
Rob Herringf14d54b2015-03-17 15:46:37 -05001385 flush_dcache_range((unsigned long)result->first,
Stephen Warren36dad662013-05-24 15:03:17 -06001386 ALIGN_END_ADDR(struct QH, result->first,
1387 queuesize));
Rob Herringf14d54b2015-03-17 15:46:37 -05001388 flush_dcache_range((unsigned long)result->tds,
Stephen Warren36dad662013-05-24 15:03:17 -06001389 ALIGN_END_ADDR(struct qTD, result->tds,
1390 queuesize));
1391
Hans de Goede8ba55ed2014-09-24 14:06:03 +02001392 if (ctrl->periodic_schedules > 0) {
1393 if (disable_periodic(ctrl) < 0) {
1394 debug("FATAL: periodic should never fail, but did");
1395 goto fail3;
1396 }
Patrick Georgie55fdac2013-03-06 14:08:31 +00001397 }
1398
1399 /* hook up to periodic list */
1400 struct QH *list = &ctrl->periodic_queue;
1401 result->last->qh_link = list->qh_link;
Rob Herringf14d54b2015-03-17 15:46:37 -05001402 list->qh_link = cpu_to_hc32((unsigned long)result->first | QH_LINK_TYPE_QH);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001403
Rob Herringf14d54b2015-03-17 15:46:37 -05001404 flush_dcache_range((unsigned long)result->last,
Stephen Warren36dad662013-05-24 15:03:17 -06001405 ALIGN_END_ADDR(struct QH, result->last, 1));
Rob Herringf14d54b2015-03-17 15:46:37 -05001406 flush_dcache_range((unsigned long)list,
Stephen Warren36dad662013-05-24 15:03:17 -06001407 ALIGN_END_ADDR(struct QH, list, 1));
1408
Patrick Georgie55fdac2013-03-06 14:08:31 +00001409 if (enable_periodic(ctrl) < 0) {
1410 debug("FATAL: periodic should never fail, but did");
1411 goto fail3;
1412 }
Hans de Goede8f5f4f72014-09-20 16:51:25 +02001413 ctrl->periodic_schedules++;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001414
1415 debug("Exit create_int_queue\n");
1416 return result;
1417fail3:
Heinrich Schuchardt4b88d6f2020-04-19 12:02:28 +02001418 free(result->tds);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001419fail2:
Heinrich Schuchardt4b88d6f2020-04-19 12:02:28 +02001420 free(result->first);
1421 free(result);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001422fail1:
1423 return NULL;
1424}
1425
Hans de Goede53ca9de2015-05-11 20:43:52 +02001426static void *_ehci_poll_int_queue(struct usb_device *dev,
1427 struct int_queue *queue)
Patrick Georgie55fdac2013-03-06 14:08:31 +00001428{
1429 struct QH *cur = queue->current;
Hans de Goede9db174c2014-09-20 16:51:24 +02001430 struct qTD *cur_td;
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001431 uint32_t token, toggle;
1432 unsigned long pipe = queue->pipe;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001433
1434 /* depleted queue */
1435 if (cur == NULL) {
1436 debug("Exit poll_int_queue with completed queue\n");
1437 return NULL;
1438 }
1439 /* still active */
Hans de Goede9db174c2014-09-20 16:51:24 +02001440 cur_td = &queue->tds[queue->current - queue->first];
Rob Herringf14d54b2015-03-17 15:46:37 -05001441 invalidate_dcache_range((unsigned long)cur_td,
Hans de Goede9db174c2014-09-20 16:51:24 +02001442 ALIGN_END_ADDR(struct qTD, cur_td, 1));
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001443 token = hc32_to_cpu(cur_td->qt_token);
1444 if (QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE) {
1445 debug("Exit poll_int_queue with no completed intr transfer. token is %x\n", token);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001446 return NULL;
1447 }
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001448
1449 toggle = QT_TOKEN_GET_DT(token);
1450 usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), toggle);
1451
Patrick Georgie55fdac2013-03-06 14:08:31 +00001452 if (!(cur->qh_link & QH_LINK_TERMINATE))
1453 queue->current++;
1454 else
1455 queue->current = NULL;
Hans de Goede8c5c5ca2014-09-24 14:06:05 +02001456
Rob Herringf14d54b2015-03-17 15:46:37 -05001457 invalidate_dcache_range((unsigned long)cur->buffer,
Hans de Goede8c5c5ca2014-09-24 14:06:05 +02001458 ALIGN_END_ADDR(char, cur->buffer,
1459 queue->elementsize));
1460
Hans de Goede9db174c2014-09-20 16:51:24 +02001461 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 +02001462 token, cur, queue->first);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001463 return cur->buffer;
1464}
1465
1466/* Do not free buffers associated with QHs, they're owned by someone else */
Hans de Goede53ca9de2015-05-11 20:43:52 +02001467static int _ehci_destroy_int_queue(struct usb_device *dev,
1468 struct int_queue *queue)
Patrick Georgie55fdac2013-03-06 14:08:31 +00001469{
Simon Glasscb7cf602015-03-25 12:22:25 -06001470 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001471 int result = -1;
1472 unsigned long timeout;
1473
1474 if (disable_periodic(ctrl) < 0) {
1475 debug("FATAL: periodic should never fail, but did");
1476 goto out;
1477 }
Hans de Goede8f5f4f72014-09-20 16:51:25 +02001478 ctrl->periodic_schedules--;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001479
1480 struct QH *cur = &ctrl->periodic_queue;
1481 timeout = get_timer(0) + 500; /* abort after 500ms */
Adrian Cox29d05872014-04-10 13:29:45 +01001482 while (!(cur->qh_link & cpu_to_hc32(QH_LINK_TERMINATE))) {
Patrick Georgie55fdac2013-03-06 14:08:31 +00001483 debug("considering %p, with qh_link %x\n", cur, cur->qh_link);
1484 if (NEXT_QH(cur) == queue->first) {
1485 debug("found candidate. removing from chain\n");
1486 cur->qh_link = queue->last->qh_link;
Rob Herringf14d54b2015-03-17 15:46:37 -05001487 flush_dcache_range((unsigned long)cur,
Hans de Goede8e00cf62014-09-20 16:51:23 +02001488 ALIGN_END_ADDR(struct QH, cur, 1));
Patrick Georgie55fdac2013-03-06 14:08:31 +00001489 result = 0;
1490 break;
1491 }
1492 cur = NEXT_QH(cur);
1493 if (get_timer(0) > timeout) {
1494 printf("Timeout destroying interrupt endpoint queue\n");
1495 result = -1;
1496 goto out;
1497 }
1498 }
1499
Hans de Goede8f5f4f72014-09-20 16:51:25 +02001500 if (ctrl->periodic_schedules > 0) {
Patrick Georgie55fdac2013-03-06 14:08:31 +00001501 result = enable_periodic(ctrl);
1502 if (result < 0)
1503 debug("FATAL: periodic should never fail, but did");
1504 }
1505
1506out:
1507 free(queue->tds);
1508 free(queue->first);
1509 free(queue);
1510
1511 return result;
1512}
1513
Simon Glasscb7cf602015-03-25 12:22:25 -06001514static int _ehci_submit_int_msg(struct usb_device *dev, unsigned long pipe,
Michal Suchanek1c95b9f2019-08-18 10:55:27 +02001515 void *buffer, int length, int interval,
1516 bool nonblock)
Michael Trimarchi241f7512008-11-28 13:20:46 +01001517{
Patrick Georgie55fdac2013-03-06 14:08:31 +00001518 void *backbuffer;
1519 struct int_queue *queue;
1520 unsigned long timeout;
1521 int result = 0, ret;
1522
Michael Trimarchi241f7512008-11-28 13:20:46 +01001523 debug("dev=%p, pipe=%lu, buffer=%p, length=%d, interval=%d",
1524 dev, pipe, buffer, length, interval);
Benoît Thébaudeau58c4dfb2012-08-09 23:50:44 +02001525
Hans de Goede53ca9de2015-05-11 20:43:52 +02001526 queue = _ehci_create_int_queue(dev, pipe, 1, length, buffer, interval);
Hans de Goede7f7cb732014-09-24 14:06:04 +02001527 if (!queue)
1528 return -1;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001529
1530 timeout = get_timer(0) + USB_TIMEOUT_MS(pipe);
Hans de Goede53ca9de2015-05-11 20:43:52 +02001531 while ((backbuffer = _ehci_poll_int_queue(dev, queue)) == NULL)
Patrick Georgie55fdac2013-03-06 14:08:31 +00001532 if (get_timer(0) > timeout) {
1533 printf("Timeout poll on interrupt endpoint\n");
1534 result = -ETIMEDOUT;
1535 break;
1536 }
1537
1538 if (backbuffer != buffer) {
Rob Herringf14d54b2015-03-17 15:46:37 -05001539 debug("got wrong buffer back (%p instead of %p)\n",
1540 backbuffer, buffer);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001541 return -EINVAL;
1542 }
1543
Hans de Goede53ca9de2015-05-11 20:43:52 +02001544 ret = _ehci_destroy_int_queue(dev, queue);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001545 if (ret < 0)
1546 return ret;
1547
1548 /* everything worked out fine */
1549 return result;
Marek Vasut9b315fe2011-09-25 21:07:56 +02001550}
Simon Glasscb7cf602015-03-25 12:22:25 -06001551
Marek Vasut118a9032020-04-06 14:29:44 +02001552static int _ehci_lock_async(struct ehci_ctrl *ctrl, int lock)
1553{
1554 ctrl->async_locked = lock;
1555
1556 if (lock)
1557 return 0;
1558
1559 return ehci_disable_async(ctrl);
1560}
1561
Sven Schwermer8a3cb9f12018-11-21 08:43:56 +01001562#if !CONFIG_IS_ENABLED(DM_USB)
Simon Glasscb7cf602015-03-25 12:22:25 -06001563int submit_bulk_msg(struct usb_device *dev, unsigned long pipe,
1564 void *buffer, int length)
1565{
1566 return _ehci_submit_bulk_msg(dev, pipe, buffer, length);
1567}
1568
1569int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1570 int length, struct devrequest *setup)
1571{
1572 return _ehci_submit_control_msg(dev, pipe, buffer, length, setup);
1573}
1574
1575int submit_int_msg(struct usb_device *dev, unsigned long pipe,
Michal Suchanek1c95b9f2019-08-18 10:55:27 +02001576 void *buffer, int length, int interval, bool nonblock)
Simon Glasscb7cf602015-03-25 12:22:25 -06001577{
Michal Suchanek1c95b9f2019-08-18 10:55:27 +02001578 return _ehci_submit_int_msg(dev, pipe, buffer, length, interval,
1579 nonblock);
Simon Glasscb7cf602015-03-25 12:22:25 -06001580}
Hans de Goede53ca9de2015-05-11 20:43:52 +02001581
1582struct int_queue *create_int_queue(struct usb_device *dev,
1583 unsigned long pipe, int queuesize, int elementsize,
1584 void *buffer, int interval)
1585{
1586 return _ehci_create_int_queue(dev, pipe, queuesize, elementsize,
1587 buffer, interval);
1588}
1589
1590void *poll_int_queue(struct usb_device *dev, struct int_queue *queue)
1591{
1592 return _ehci_poll_int_queue(dev, queue);
1593}
1594
1595int destroy_int_queue(struct usb_device *dev, struct int_queue *queue)
1596{
1597 return _ehci_destroy_int_queue(dev, queue);
1598}
Marek Vasut118a9032020-04-06 14:29:44 +02001599
1600int usb_lock_async(struct usb_device *dev, int lock)
1601{
1602 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
1603
1604 return _ehci_lock_async(ctrl, lock);
1605}
Simon Glassa194b252015-03-25 12:22:29 -06001606#endif
1607
Sven Schwermer8a3cb9f12018-11-21 08:43:56 +01001608#if CONFIG_IS_ENABLED(DM_USB)
Simon Glassa194b252015-03-25 12:22:29 -06001609static int ehci_submit_control_msg(struct udevice *dev, struct usb_device *udev,
1610 unsigned long pipe, void *buffer, int length,
1611 struct devrequest *setup)
1612{
1613 debug("%s: dev='%s', udev=%p, udev->dev='%s', portnr=%d\n", __func__,
1614 dev->name, udev, udev->dev->name, udev->portnr);
1615
1616 return _ehci_submit_control_msg(udev, pipe, buffer, length, setup);
1617}
1618
1619static int ehci_submit_bulk_msg(struct udevice *dev, struct usb_device *udev,
1620 unsigned long pipe, void *buffer, int length)
1621{
1622 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1623 return _ehci_submit_bulk_msg(udev, pipe, buffer, length);
1624}
1625
1626static int ehci_submit_int_msg(struct udevice *dev, struct usb_device *udev,
1627 unsigned long pipe, void *buffer, int length,
Michal Suchanek1c95b9f2019-08-18 10:55:27 +02001628 int interval, bool nonblock)
Simon Glassa194b252015-03-25 12:22:29 -06001629{
1630 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
Michal Suchanek1c95b9f2019-08-18 10:55:27 +02001631 return _ehci_submit_int_msg(udev, pipe, buffer, length, interval,
1632 nonblock);
Simon Glassa194b252015-03-25 12:22:29 -06001633}
1634
Hans de Goede0a7fa272015-05-10 14:10:18 +02001635static struct int_queue *ehci_create_int_queue(struct udevice *dev,
1636 struct usb_device *udev, unsigned long pipe, int queuesize,
1637 int elementsize, void *buffer, int interval)
1638{
1639 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1640 return _ehci_create_int_queue(udev, pipe, queuesize, elementsize,
1641 buffer, interval);
1642}
1643
1644static void *ehci_poll_int_queue(struct udevice *dev, struct usb_device *udev,
1645 struct int_queue *queue)
1646{
1647 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1648 return _ehci_poll_int_queue(udev, queue);
1649}
1650
1651static int ehci_destroy_int_queue(struct udevice *dev, struct usb_device *udev,
1652 struct int_queue *queue)
1653{
1654 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1655 return _ehci_destroy_int_queue(udev, queue);
1656}
1657
Bin Meng0441b872017-09-07 06:13:19 -07001658static int ehci_get_max_xfer_size(struct udevice *dev, size_t *size)
1659{
1660 /*
1661 * EHCD can handle any transfer length as long as there is enough
1662 * free heap space left, hence set the theoretical max number here.
1663 */
1664 *size = SIZE_MAX;
1665
1666 return 0;
1667}
1668
Marek Vasut118a9032020-04-06 14:29:44 +02001669static int ehci_lock_async(struct udevice *dev, int lock)
1670{
1671 struct ehci_ctrl *ctrl = dev_get_priv(dev);
1672
1673 return _ehci_lock_async(ctrl, lock);
1674}
1675
Simon Glassa194b252015-03-25 12:22:29 -06001676int ehci_register(struct udevice *dev, struct ehci_hccr *hccr,
1677 struct ehci_hcor *hcor, const struct ehci_ops *ops,
1678 uint tweaks, enum usb_init_type init)
1679{
Hans de Goede76bc7f42015-05-05 11:54:35 +02001680 struct usb_bus_priv *priv = dev_get_uclass_priv(dev);
Simon Glassa194b252015-03-25 12:22:29 -06001681 struct ehci_ctrl *ctrl = dev_get_priv(dev);
Heinrich Schuchardtab4304b2017-11-20 19:33:39 +01001682 int ret = -1;
Simon Glassa194b252015-03-25 12:22:29 -06001683
1684 debug("%s: dev='%s', ctrl=%p, hccr=%p, hcor=%p, init=%d\n", __func__,
1685 dev->name, ctrl, hccr, hcor, init);
1686
Heinrich Schuchardtab4304b2017-11-20 19:33:39 +01001687 if (!ctrl || !hccr || !hcor)
1688 goto err;
1689
Hans de Goede76bc7f42015-05-05 11:54:35 +02001690 priv->desc_before_addr = true;
1691
Simon Glassa194b252015-03-25 12:22:29 -06001692 ehci_setup_ops(ctrl, ops);
1693 ctrl->hccr = hccr;
1694 ctrl->hcor = hcor;
1695 ctrl->priv = ctrl;
1696
Stephen Warren71eced32015-08-20 17:38:05 -06001697 ctrl->init = init;
1698 if (ctrl->init == USB_INIT_DEVICE)
Simon Glassa194b252015-03-25 12:22:29 -06001699 goto done;
Stephen Warren71eced32015-08-20 17:38:05 -06001700
Simon Glassa194b252015-03-25 12:22:29 -06001701 ret = ehci_reset(ctrl);
1702 if (ret)
1703 goto err;
1704
Mateusz Kulikowski3e13f392016-04-03 13:38:26 +02001705 if (ctrl->ops.init_after_reset) {
1706 ret = ctrl->ops.init_after_reset(ctrl);
Mateusz Kulikowskiaab5a5a2016-03-31 23:12:17 +02001707 if (ret)
1708 goto err;
1709 }
1710
Simon Glassa194b252015-03-25 12:22:29 -06001711 ret = ehci_common_init(ctrl, tweaks);
1712 if (ret)
1713 goto err;
1714done:
1715 return 0;
1716err:
1717 free(ctrl);
1718 debug("%s: failed, ret=%d\n", __func__, ret);
1719 return ret;
1720}
1721
1722int ehci_deregister(struct udevice *dev)
1723{
1724 struct ehci_ctrl *ctrl = dev_get_priv(dev);
1725
Stephen Warren71eced32015-08-20 17:38:05 -06001726 if (ctrl->init == USB_INIT_DEVICE)
1727 return 0;
1728
Simon Glassa194b252015-03-25 12:22:29 -06001729 ehci_shutdown(ctrl);
1730
1731 return 0;
1732}
1733
1734struct dm_usb_ops ehci_usb_ops = {
1735 .control = ehci_submit_control_msg,
1736 .bulk = ehci_submit_bulk_msg,
1737 .interrupt = ehci_submit_int_msg,
Hans de Goede0a7fa272015-05-10 14:10:18 +02001738 .create_int_queue = ehci_create_int_queue,
1739 .poll_int_queue = ehci_poll_int_queue,
1740 .destroy_int_queue = ehci_destroy_int_queue,
Bin Meng0441b872017-09-07 06:13:19 -07001741 .get_max_xfer_size = ehci_get_max_xfer_size,
Marek Vasut118a9032020-04-06 14:29:44 +02001742 .lock_async = ehci_lock_async,
Simon Glassa194b252015-03-25 12:22:29 -06001743};
1744
1745#endif
Marek Vasutd9af6cd2018-08-08 14:29:55 +02001746
1747#ifdef CONFIG_PHY
1748int ehci_setup_phy(struct udevice *dev, struct phy *phy, int index)
1749{
1750 int ret;
1751
1752 if (!phy)
1753 return 0;
1754
1755 ret = generic_phy_get_by_index(dev, index, phy);
1756 if (ret) {
1757 if (ret != -ENOENT) {
1758 dev_err(dev, "failed to get usb phy\n");
1759 return ret;
1760 }
1761 } else {
1762 ret = generic_phy_init(phy);
1763 if (ret) {
1764 dev_err(dev, "failed to init usb phy\n");
1765 return ret;
1766 }
1767
1768 ret = generic_phy_power_on(phy);
1769 if (ret) {
1770 dev_err(dev, "failed to power on usb phy\n");
1771 return generic_phy_exit(phy);
1772 }
1773 }
1774
1775 return 0;
1776}
1777
1778int ehci_shutdown_phy(struct udevice *dev, struct phy *phy)
1779{
1780 int ret = 0;
1781
1782 if (!phy)
1783 return 0;
1784
1785 if (generic_phy_valid(phy)) {
1786 ret = generic_phy_power_off(phy);
1787 if (ret) {
1788 dev_err(dev, "failed to power off usb phy\n");
1789 return ret;
1790 }
1791
1792 ret = generic_phy_exit(phy);
1793 if (ret) {
1794 dev_err(dev, "failed to power off usb phy\n");
1795 return ret;
1796 }
1797 }
1798
1799 return 0;
1800}
1801#else
1802int ehci_setup_phy(struct udevice *dev, struct phy *phy, int index)
1803{
1804 return 0;
1805}
1806
1807int ehci_shutdown_phy(struct udevice *dev, struct phy *phy)
1808{
1809 return 0;
1810}
1811#endif