blob: 7d5519c65a9e1a0fc24345cdfe47f612a069ef71 [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 */
Simon Glass63334482019-11-14 12:57:39 -07009#include <cpu_func.h>
Simon Glassa194b252015-03-25 12:22:29 -060010#include <dm.h>
Patrick Georgie55fdac2013-03-06 14:08:31 +000011#include <errno.h>
Simon Glass0f2af882020-05-10 11:40:05 -060012#include <log.h>
michael0a326102008-12-10 17:55:19 +010013#include <asm/byteorder.h>
Simon Glass274e0b02020-05-10 11:39:56 -060014#include <asm/cache.h>
Lucas Stach835e11e2012-09-06 08:00:13 +020015#include <asm/unaligned.h>
Michael Trimarchi241f7512008-11-28 13:20:46 +010016#include <usb.h>
17#include <asm/io.h>
michael0a326102008-12-10 17:55:19 +010018#include <malloc.h>
Simon Glass2dd337a2015-09-02 17:24:58 -060019#include <memalign.h>
Stefan Roese86b34cf2010-11-26 15:43:28 +010020#include <watchdog.h>
Simon Glass9bc15642020-02-03 07:36:16 -070021#include <dm/device_compat.h>
Patrick Georgie55fdac2013-03-06 14:08:31 +000022#include <linux/compiler.h>
Simon Glassdbd79542020-05-10 11:40:11 -060023#include <linux/delay.h>
Jean-Christophe PLAGNIOL-VILLARD8f6bcf42009-04-03 12:46:58 +020024
25#include "ehci.h"
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
Marek Behún372154d2021-10-09 15:27:32 +0200106#if defined(CONFIG_USB_EHCI_IS_TDI)
Remy Böhmer33e87482008-12-13 22:51:58 +0100107#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
Marek Vasut118a9032020-04-06 14:29:44 +0200299static int ehci_enable_async(struct ehci_ctrl *ctrl)
300{
301 u32 cmd;
302 int ret;
303
304 /* Enable async. schedule. */
305 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
306 if (cmd & CMD_ASE)
307 return 0;
308
309 cmd |= CMD_ASE;
310 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
311
312 ret = handshake((uint32_t *)&ctrl->hcor->or_usbsts, STS_ASS, STS_ASS,
313 100 * 1000);
314 if (ret < 0)
315 printf("EHCI fail timeout STS_ASS set\n");
316
317 return ret;
318}
319
320static int ehci_disable_async(struct ehci_ctrl *ctrl)
321{
322 u32 cmd;
323 int ret;
324
325 if (ctrl->async_locked)
326 return 0;
327
328 /* Disable async schedule. */
329 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
330 if (!(cmd & CMD_ASE))
331 return 0;
332
333 cmd &= ~CMD_ASE;
334 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
335
336 ret = handshake((uint32_t *)&ctrl->hcor->or_usbsts, STS_ASS, 0,
337 100 * 1000);
338 if (ret < 0)
339 printf("EHCI fail timeout STS_ASS reset\n");
340
341 return ret;
342}
343
Ye Li09f27272021-03-08 19:26:57 -0800344static int ehci_iaa_cycle(struct ehci_ctrl *ctrl)
345{
346 u32 cmd, status;
347 int ret;
348
349 /* Enable Interrupt on Async Advance Doorbell. */
350 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
351 cmd |= CMD_IAAD;
352 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
353
354 ret = handshake(&ctrl->hcor->or_usbsts, STS_IAA, STS_IAA,
355 10 * 1000); /* 10ms timeout */
356 if (ret < 0)
357 printf("EHCI fail timeout STS_IAA set\n");
358
359 status = ehci_readl(&ctrl->hcor->or_usbsts);
360 if (status & STS_IAA)
361 ehci_writel(&ctrl->hcor->or_usbsts, STS_IAA);
362
363 return ret;
364}
365
Michael Trimarchi241f7512008-11-28 13:20:46 +0100366static int
367ehci_submit_async(struct usb_device *dev, unsigned long pipe, void *buffer,
368 int length, struct devrequest *req)
369{
Tom Rini2cabcf72012-07-15 22:14:24 +0000370 ALLOC_ALIGN_BUFFER(struct QH, qh, 1, USB_DMA_MINALIGN);
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200371 struct qTD *qtd;
372 int qtd_count = 0;
Marek Vasut4f668312012-04-08 23:32:05 +0200373 int qtd_counter = 0;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100374 volatile struct qTD *vtd;
375 unsigned long ts;
376 uint32_t *tdp;
Marek Vasut569c2a52019-10-06 16:13:38 +0200377 uint32_t endpt, maxpacket, token, usbsts, qhtoken;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100378 uint32_t c, toggle;
Simon Glassfd7f5132011-02-07 14:42:16 -0800379 int timeout;
Michael Trimarchi6d4b91c2008-12-31 10:33:22 +0100380 int ret = 0;
Simon Glasscb7cf602015-03-25 12:22:25 -0600381 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100382
michael0a326102008-12-10 17:55:19 +0100383 debug("dev=%p, pipe=%lx, buffer=%p, length=%d, req=%p\n", dev, pipe,
Michael Trimarchi241f7512008-11-28 13:20:46 +0100384 buffer, length, req);
385 if (req != NULL)
michael0a326102008-12-10 17:55:19 +0100386 debug("req=%u (%#x), type=%u (%#x), value=%u (%#x), index=%u\n",
Michael Trimarchi241f7512008-11-28 13:20:46 +0100387 req->request, req->request,
388 req->requesttype, req->requesttype,
389 le16_to_cpu(req->value), le16_to_cpu(req->value),
michael0a326102008-12-10 17:55:19 +0100390 le16_to_cpu(req->index));
Michael Trimarchi241f7512008-11-28 13:20:46 +0100391
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200392#define PKT_ALIGN 512
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200393 /*
394 * The USB transfer is split into qTD transfers. Eeach qTD transfer is
395 * described by a transfer descriptor (the qTD). The qTDs form a linked
396 * list with a queue head (QH).
397 *
398 * Each qTD transfer starts with a new USB packet, i.e. a packet cannot
399 * have its beginning in a qTD transfer and its end in the following
400 * one, so the qTD transfer lengths have to be chosen accordingly.
401 *
402 * Each qTD transfer uses up to QT_BUFFER_CNT data buffers, mapped to
403 * single pages. The first data buffer can start at any offset within a
404 * page (not considering the cache-line alignment issues), while the
405 * following buffers must be page-aligned. There is no alignment
406 * constraint on the size of a qTD transfer.
407 */
408 if (req != NULL)
409 /* 1 qTD will be needed for SETUP, and 1 for ACK. */
410 qtd_count += 1 + 1;
411 if (length > 0 || req == NULL) {
412 /*
413 * Determine the qTD transfer size that will be used for the
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200414 * data payload (not considering the first qTD transfer, which
415 * may be longer or shorter, and the final one, which may be
416 * shorter).
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200417 *
418 * In order to keep each packet within a qTD transfer, the qTD
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200419 * transfer size is aligned to PKT_ALIGN, which is a multiple of
420 * wMaxPacketSize (except in some cases for interrupt transfers,
421 * see comment in submit_int_msg()).
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200422 *
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200423 * By default, i.e. if the input buffer is aligned to PKT_ALIGN,
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200424 * QT_BUFFER_CNT full pages will be used.
425 */
426 int xfr_sz = QT_BUFFER_CNT;
427 /*
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200428 * However, if the input buffer is not aligned to PKT_ALIGN, the
429 * qTD transfer size will be one page shorter, and the first qTD
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200430 * data buffer of each transfer will be page-unaligned.
431 */
Rob Herringf14d54b2015-03-17 15:46:37 -0500432 if ((unsigned long)buffer & (PKT_ALIGN - 1))
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200433 xfr_sz--;
434 /* Convert the qTD transfer size to bytes. */
435 xfr_sz *= EHCI_PAGE_SIZE;
436 /*
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200437 * Approximate by excess the number of qTDs that will be
438 * required for the data payload. The exact formula is way more
439 * complicated and saves at most 2 qTDs, i.e. a total of 128
440 * bytes.
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200441 */
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200442 qtd_count += 2 + length / xfr_sz;
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200443 }
444/*
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200445 * Threshold value based on the worst-case total size of the allocated qTDs for
446 * a mass-storage transfer of 65535 blocks of 512 bytes.
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200447 */
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200448#if CONFIG_SYS_MALLOC_LEN <= 64 + 128 * 1024
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200449#warning CONFIG_SYS_MALLOC_LEN may be too small for EHCI
450#endif
451 qtd = memalign(USB_DMA_MINALIGN, qtd_count * sizeof(struct qTD));
452 if (qtd == NULL) {
453 printf("unable to allocate TDs\n");
454 return -1;
455 }
456
Tom Rini2cabcf72012-07-15 22:14:24 +0000457 memset(qh, 0, sizeof(struct QH));
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200458 memset(qtd, 0, qtd_count * sizeof(*qtd));
Marek Vasut4f668312012-04-08 23:32:05 +0200459
Marek Vasutff24dc32012-04-09 04:07:46 +0200460 toggle = usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
461
Marek Vasut285c8b32012-04-09 04:13:00 +0200462 /*
463 * Setup QH (3.6 in ehci-r10.pdf)
464 *
465 * qh_link ................. 03-00 H
466 * qh_endpt1 ............... 07-04 H
467 * qh_endpt2 ............... 0B-08 H
468 * - qh_curtd
469 * qh_overlay.qt_next ...... 13-10 H
470 * - qh_overlay.qt_altnext
471 */
Marek Vasutdf0b6242016-01-23 21:04:46 +0100472 qh->qh_link = cpu_to_hc32(virt_to_phys(&ctrl->qh_list) | QH_LINK_TYPE_QH);
Ilya Yanoka1cf10f2012-11-06 13:48:20 +0000473 c = (dev->speed != USB_SPEED_HIGH) && !usb_pipeendpoint(pipe);
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200474 maxpacket = usb_maxpacket(dev, pipe);
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200475 endpt = QH_ENDPT1_RL(8) | QH_ENDPT1_C(c) |
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200476 QH_ENDPT1_MAXPKTLEN(maxpacket) | QH_ENDPT1_H(0) |
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200477 QH_ENDPT1_DTC(QH_ENDPT1_DTC_DT_FROM_QTD) |
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200478 QH_ENDPT1_ENDPT(usb_pipeendpoint(pipe)) | QH_ENDPT1_I(0) |
479 QH_ENDPT1_DEVADDR(usb_pipedevice(pipe));
Chris Packham434f0582018-10-04 20:03:53 +1300480
481 /* Force FS for fsl HS quirk */
482 if (!ctrl->has_fsl_erratum_a005275)
483 endpt |= QH_ENDPT1_EPS(ehci_encode_speed(dev->speed));
484 else
485 endpt |= QH_ENDPT1_EPS(ehci_encode_speed(QH_FULL_SPEED));
486
Tom Rini2cabcf72012-07-15 22:14:24 +0000487 qh->qh_endpt1 = cpu_to_hc32(endpt);
Hans de Goededa166772014-09-20 16:51:22 +0200488 endpt = QH_ENDPT2_MULT(1) | QH_ENDPT2_UFCMASK(0) | QH_ENDPT2_UFSMASK(0);
Tom Rini2cabcf72012-07-15 22:14:24 +0000489 qh->qh_endpt2 = cpu_to_hc32(endpt);
Hans de Goededa166772014-09-20 16:51:22 +0200490 ehci_update_endpt2_dev_n_port(dev, qh);
Tom Rini2cabcf72012-07-15 22:14:24 +0000491 qh->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
Stephen Warren1907e5a2014-02-07 09:53:50 -0700492 qh->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100493
Tom Rini2cabcf72012-07-15 22:14:24 +0000494 tdp = &qh->qh_overlay.qt_next;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100495 if (req != NULL) {
Marek Vasut285c8b32012-04-09 04:13:00 +0200496 /*
497 * Setup request qTD (3.5 in ehci-r10.pdf)
498 *
499 * qt_next ................ 03-00 H
500 * qt_altnext ............. 07-04 H
501 * qt_token ............... 0B-08 H
502 *
503 * [ buffer, buffer_hi ] loaded with "req".
504 */
Marek Vasut4f668312012-04-08 23:32:05 +0200505 qtd[qtd_counter].qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
506 qtd[qtd_counter].qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200507 token = QT_TOKEN_DT(0) | QT_TOKEN_TOTALBYTES(sizeof(*req)) |
508 QT_TOKEN_IOC(0) | QT_TOKEN_CPAGE(0) | QT_TOKEN_CERR(3) |
509 QT_TOKEN_PID(QT_TOKEN_PID_SETUP) |
510 QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE);
Marek Vasut4f668312012-04-08 23:32:05 +0200511 qtd[qtd_counter].qt_token = cpu_to_hc32(token);
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200512 if (ehci_td_buffer(&qtd[qtd_counter], req, sizeof(*req))) {
513 printf("unable to construct SETUP TD\n");
Michael Trimarchi241f7512008-11-28 13:20:46 +0100514 goto fail;
515 }
Marek Vasut285c8b32012-04-09 04:13:00 +0200516 /* Update previous qTD! */
Marek Vasutdf0b6242016-01-23 21:04:46 +0100517 *tdp = cpu_to_hc32(virt_to_phys(&qtd[qtd_counter]));
Marek Vasut4f668312012-04-08 23:32:05 +0200518 tdp = &qtd[qtd_counter++].qt_next;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100519 toggle = 1;
520 }
521
522 if (length > 0 || req == NULL) {
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200523 uint8_t *buf_ptr = buffer;
524 int left_length = length;
525
526 do {
527 /*
528 * Determine the size of this qTD transfer. By default,
529 * QT_BUFFER_CNT full pages can be used.
530 */
531 int xfr_bytes = QT_BUFFER_CNT * EHCI_PAGE_SIZE;
532 /*
533 * However, if the input buffer is not page-aligned, the
534 * portion of the first page before the buffer start
535 * offset within that page is unusable.
536 */
Rob Herringf14d54b2015-03-17 15:46:37 -0500537 xfr_bytes -= (unsigned long)buf_ptr & (EHCI_PAGE_SIZE - 1);
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200538 /*
539 * In order to keep each packet within a qTD transfer,
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200540 * align the qTD transfer size to PKT_ALIGN.
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200541 */
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200542 xfr_bytes &= ~(PKT_ALIGN - 1);
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200543 /*
544 * This transfer may be shorter than the available qTD
545 * transfer size that has just been computed.
546 */
547 xfr_bytes = min(xfr_bytes, left_length);
548
549 /*
550 * Setup request qTD (3.5 in ehci-r10.pdf)
551 *
552 * qt_next ................ 03-00 H
553 * qt_altnext ............. 07-04 H
554 * qt_token ............... 0B-08 H
555 *
556 * [ buffer, buffer_hi ] loaded with "buffer".
557 */
558 qtd[qtd_counter].qt_next =
559 cpu_to_hc32(QT_NEXT_TERMINATE);
560 qtd[qtd_counter].qt_altnext =
561 cpu_to_hc32(QT_NEXT_TERMINATE);
562 token = QT_TOKEN_DT(toggle) |
563 QT_TOKEN_TOTALBYTES(xfr_bytes) |
564 QT_TOKEN_IOC(req == NULL) | QT_TOKEN_CPAGE(0) |
565 QT_TOKEN_CERR(3) |
566 QT_TOKEN_PID(usb_pipein(pipe) ?
567 QT_TOKEN_PID_IN : QT_TOKEN_PID_OUT) |
568 QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE);
569 qtd[qtd_counter].qt_token = cpu_to_hc32(token);
570 if (ehci_td_buffer(&qtd[qtd_counter], buf_ptr,
571 xfr_bytes)) {
572 printf("unable to construct DATA TD\n");
573 goto fail;
574 }
575 /* Update previous qTD! */
Marek Vasutdf0b6242016-01-23 21:04:46 +0100576 *tdp = cpu_to_hc32(virt_to_phys(&qtd[qtd_counter]));
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200577 tdp = &qtd[qtd_counter++].qt_next;
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200578 /*
579 * Data toggle has to be adjusted since the qTD transfer
580 * size is not always an even multiple of
581 * wMaxPacketSize.
582 */
583 if ((xfr_bytes / maxpacket) & 1)
584 toggle ^= 1;
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200585 buf_ptr += xfr_bytes;
586 left_length -= xfr_bytes;
587 } while (left_length > 0);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100588 }
589
590 if (req != NULL) {
Marek Vasut285c8b32012-04-09 04:13:00 +0200591 /*
592 * Setup request qTD (3.5 in ehci-r10.pdf)
593 *
594 * qt_next ................ 03-00 H
595 * qt_altnext ............. 07-04 H
596 * qt_token ............... 0B-08 H
597 */
Marek Vasut4f668312012-04-08 23:32:05 +0200598 qtd[qtd_counter].qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
599 qtd[qtd_counter].qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Benoît Thébaudeau4e23df12012-08-10 18:27:23 +0200600 token = QT_TOKEN_DT(1) | QT_TOKEN_TOTALBYTES(0) |
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200601 QT_TOKEN_IOC(1) | QT_TOKEN_CPAGE(0) | QT_TOKEN_CERR(3) |
602 QT_TOKEN_PID(usb_pipein(pipe) ?
603 QT_TOKEN_PID_OUT : QT_TOKEN_PID_IN) |
604 QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE);
Marek Vasut4f668312012-04-08 23:32:05 +0200605 qtd[qtd_counter].qt_token = cpu_to_hc32(token);
Marek Vasut285c8b32012-04-09 04:13:00 +0200606 /* Update previous qTD! */
Marek Vasutdf0b6242016-01-23 21:04:46 +0100607 *tdp = cpu_to_hc32(virt_to_phys(&qtd[qtd_counter]));
Marek Vasut4f668312012-04-08 23:32:05 +0200608 tdp = &qtd[qtd_counter++].qt_next;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100609 }
610
Marek Vasutdf0b6242016-01-23 21:04:46 +0100611 ctrl->qh_list.qh_link = cpu_to_hc32(virt_to_phys(qh) | QH_LINK_TYPE_QH);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100612
Stefan Roese25983c12009-01-21 17:12:19 +0100613 /* Flush dcache */
Rob Herringf14d54b2015-03-17 15:46:37 -0500614 flush_dcache_range((unsigned long)&ctrl->qh_list,
Lucas Stach3494a4c2012-09-26 00:14:35 +0200615 ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1));
Rob Herringf14d54b2015-03-17 15:46:37 -0500616 flush_dcache_range((unsigned long)qh, ALIGN_END_ADDR(struct QH, qh, 1));
617 flush_dcache_range((unsigned long)qtd,
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200618 ALIGN_END_ADDR(struct qTD, qtd, qtd_count));
Stefan Roese25983c12009-01-21 17:12:19 +0100619
Lucas Stach3494a4c2012-09-26 00:14:35 +0200620 usbsts = ehci_readl(&ctrl->hcor->or_usbsts);
621 ehci_writel(&ctrl->hcor->or_usbsts, (usbsts & 0x3f));
Michael Trimarchi241f7512008-11-28 13:20:46 +0100622
Marek Vasut118a9032020-04-06 14:29:44 +0200623 ret = ehci_enable_async(ctrl);
624 if (ret)
625 goto fail;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100626
627 /* Wait for TDs to be processed. */
628 ts = get_timer(0);
Marek Vasut4f668312012-04-08 23:32:05 +0200629 vtd = &qtd[qtd_counter - 1];
Simon Glassfd7f5132011-02-07 14:42:16 -0800630 timeout = USB_TIMEOUT_MS(pipe);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100631 do {
Stefan Roese25983c12009-01-21 17:12:19 +0100632 /* Invalidate dcache */
Rob Herringf14d54b2015-03-17 15:46:37 -0500633 invalidate_dcache_range((unsigned long)&ctrl->qh_list,
Lucas Stach3494a4c2012-09-26 00:14:35 +0200634 ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1));
Rob Herringf14d54b2015-03-17 15:46:37 -0500635 invalidate_dcache_range((unsigned long)qh,
Tom Rini2cabcf72012-07-15 22:14:24 +0000636 ALIGN_END_ADDR(struct QH, qh, 1));
Rob Herringf14d54b2015-03-17 15:46:37 -0500637 invalidate_dcache_range((unsigned long)qtd,
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200638 ALIGN_END_ADDR(struct qTD, qtd, qtd_count));
Marek Vasutff24dc32012-04-09 04:07:46 +0200639
michael0a326102008-12-10 17:55:19 +0100640 token = hc32_to_cpu(vtd->qt_token);
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200641 if (!(QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE))
Michael Trimarchi241f7512008-11-28 13:20:46 +0100642 break;
Stefan Roese80877fa2022-09-02 14:10:46 +0200643 schedule();
Simon Glassfd7f5132011-02-07 14:42:16 -0800644 } while (get_timer(ts) < timeout);
Marek Vasut569c2a52019-10-06 16:13:38 +0200645 qhtoken = hc32_to_cpu(qh->qh_overlay.qt_token);
646
647 ctrl->qh_list.qh_link = cpu_to_hc32(virt_to_phys(&ctrl->qh_list) | QH_LINK_TYPE_QH);
648 flush_dcache_range((unsigned long)&ctrl->qh_list,
649 ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1));
Simon Glassfd7f5132011-02-07 14:42:16 -0800650
Ye Li09f27272021-03-08 19:26:57 -0800651 /* Set IAAD, poll IAA */
652 ret = ehci_iaa_cycle(ctrl);
653 if (ret)
654 goto fail;
655
Ilya Yanokfb113712012-07-15 04:43:49 +0000656 /*
657 * Invalidate the memory area occupied by buffer
658 * Don't try to fix the buffer alignment, if it isn't properly
659 * aligned it's upper layer's fault so let invalidate_dcache_range()
660 * vow about it. But we have to fix the length as it's actual
661 * transfer length and can be unaligned. This is potentially
662 * dangerous operation, it's responsibility of the calling
663 * code to make sure enough space is reserved.
664 */
Dirk Behme78c73562017-11-17 15:28:36 +0100665 if (buffer != NULL && length > 0)
666 invalidate_dcache_range((unsigned long)buffer,
667 ALIGN((unsigned long)buffer + length, ARCH_DMA_MINALIGN));
Marek Vasutff24dc32012-04-09 04:07:46 +0200668
Simon Glassfd7f5132011-02-07 14:42:16 -0800669 /* Check that the TD processing happened */
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200670 if (QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE)
Simon Glassfd7f5132011-02-07 14:42:16 -0800671 printf("EHCI timed out on TD - token=%#x\n", token);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100672
Marek Vasut118a9032020-04-06 14:29:44 +0200673 ret = ehci_disable_async(ctrl);
674 if (ret)
675 goto fail;
676
Marek Vasut569c2a52019-10-06 16:13:38 +0200677 if (!(QT_TOKEN_GET_STATUS(qhtoken) & QT_TOKEN_STATUS_ACTIVE)) {
678 debug("TOKEN=%#x\n", qhtoken);
679 switch (QT_TOKEN_GET_STATUS(qhtoken) &
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200680 ~(QT_TOKEN_STATUS_SPLITXSTATE | QT_TOKEN_STATUS_PERR)) {
Michael Trimarchi241f7512008-11-28 13:20:46 +0100681 case 0:
Marek Vasut569c2a52019-10-06 16:13:38 +0200682 toggle = QT_TOKEN_GET_DT(qhtoken);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100683 usb_settoggle(dev, usb_pipeendpoint(pipe),
684 usb_pipeout(pipe), toggle);
685 dev->status = 0;
686 break;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200687 case QT_TOKEN_STATUS_HALTED:
Michael Trimarchi241f7512008-11-28 13:20:46 +0100688 dev->status = USB_ST_STALLED;
689 break;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200690 case QT_TOKEN_STATUS_ACTIVE | QT_TOKEN_STATUS_DATBUFERR:
691 case QT_TOKEN_STATUS_DATBUFERR:
Michael Trimarchi241f7512008-11-28 13:20:46 +0100692 dev->status = USB_ST_BUF_ERR;
693 break;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200694 case QT_TOKEN_STATUS_HALTED | QT_TOKEN_STATUS_BABBLEDET:
695 case QT_TOKEN_STATUS_BABBLEDET:
Michael Trimarchi241f7512008-11-28 13:20:46 +0100696 dev->status = USB_ST_BABBLE_DET;
697 break;
698 default:
699 dev->status = USB_ST_CRC_ERR;
Marek Vasut569c2a52019-10-06 16:13:38 +0200700 if (QT_TOKEN_GET_STATUS(qhtoken) & QT_TOKEN_STATUS_HALTED)
Anatolij Gustschine1e09312010-11-02 11:47:29 +0100701 dev->status |= USB_ST_STALLED;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100702 break;
703 }
Marek Vasut569c2a52019-10-06 16:13:38 +0200704 dev->act_len = length - QT_TOKEN_GET_TOTALBYTES(qhtoken);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100705 } else {
706 dev->act_len = 0;
michael0a326102008-12-10 17:55:19 +0100707 debug("dev=%u, usbsts=%#x, p[1]=%#x, p[2]=%#x\n",
Lucas Stach3494a4c2012-09-26 00:14:35 +0200708 dev->devnum, ehci_readl(&ctrl->hcor->or_usbsts),
709 ehci_readl(&ctrl->hcor->or_portsc[0]),
710 ehci_readl(&ctrl->hcor->or_portsc[1]));
Michael Trimarchi241f7512008-11-28 13:20:46 +0100711 }
712
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200713 free(qtd);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100714 return (dev->status != USB_ST_NOT_PROC) ? 0 : -1;
715
716fail:
Benoît Thébaudeaub39f8b52012-08-10 18:22:32 +0200717 free(qtd);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100718 return -1;
719}
720
Simon Glasscb7cf602015-03-25 12:22:25 -0600721static int ehci_submit_root(struct usb_device *dev, unsigned long pipe,
722 void *buffer, int length, struct devrequest *req)
Michael Trimarchi241f7512008-11-28 13:20:46 +0100723{
724 uint8_t tmpbuf[4];
725 u16 typeReq;
michael0a326102008-12-10 17:55:19 +0100726 void *srcptr = NULL;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100727 int len, srclen;
728 uint32_t reg;
Remy Böhmer33e87482008-12-13 22:51:58 +0100729 uint32_t *status_reg;
Julius Wernerd4046702013-02-28 18:08:40 +0000730 int port = le16_to_cpu(req->index) & 0xff;
Simon Glasscb7cf602015-03-25 12:22:25 -0600731 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100732
733 srclen = 0;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100734
michael0a326102008-12-10 17:55:19 +0100735 debug("req=%u (%#x), type=%u (%#x), value=%u, index=%u\n",
Michael Trimarchi241f7512008-11-28 13:20:46 +0100736 req->request, req->request,
737 req->requesttype, req->requesttype,
738 le16_to_cpu(req->value), le16_to_cpu(req->index));
739
Prafulla Wadaskar22810292009-07-17 19:56:30 +0530740 typeReq = req->request | req->requesttype << 8;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100741
Prafulla Wadaskar22810292009-07-17 19:56:30 +0530742 switch (typeReq) {
Kuo-Jung Su9930e9f2013-05-15 15:29:20 +0800743 case USB_REQ_GET_STATUS | ((USB_RT_PORT | USB_DIR_IN) << 8):
744 case USB_REQ_SET_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
745 case USB_REQ_CLEAR_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
Simon Glassdc9f3ed2015-03-25 12:22:27 -0600746 status_reg = ctrl->ops.get_portsc_register(ctrl, port - 1);
Kuo-Jung Su6a656df2013-05-15 15:29:21 +0800747 if (!status_reg)
Kuo-Jung Su9930e9f2013-05-15 15:29:20 +0800748 return -1;
Kuo-Jung Su9930e9f2013-05-15 15:29:20 +0800749 break;
750 default:
751 status_reg = NULL;
752 break;
753 }
754
755 switch (typeReq) {
Michael Trimarchi241f7512008-11-28 13:20:46 +0100756 case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
757 switch (le16_to_cpu(req->value) >> 8) {
758 case USB_DT_DEVICE:
michael0a326102008-12-10 17:55:19 +0100759 debug("USB_DT_DEVICE request\n");
760 srcptr = &descriptor.device;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200761 srclen = descriptor.device.bLength;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100762 break;
763 case USB_DT_CONFIG:
michael0a326102008-12-10 17:55:19 +0100764 debug("USB_DT_CONFIG config\n");
765 srcptr = &descriptor.config;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200766 srclen = descriptor.config.bLength +
767 descriptor.interface.bLength +
768 descriptor.endpoint.bLength;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100769 break;
770 case USB_DT_STRING:
michael0a326102008-12-10 17:55:19 +0100771 debug("USB_DT_STRING config\n");
Michael Trimarchi241f7512008-11-28 13:20:46 +0100772 switch (le16_to_cpu(req->value) & 0xff) {
773 case 0: /* Language */
774 srcptr = "\4\3\1\0";
775 srclen = 4;
776 break;
777 case 1: /* Vendor */
778 srcptr = "\16\3u\0-\0b\0o\0o\0t\0";
779 srclen = 14;
780 break;
781 case 2: /* Product */
782 srcptr = "\52\3E\0H\0C\0I\0 "
783 "\0H\0o\0s\0t\0 "
784 "\0C\0o\0n\0t\0r\0o\0l\0l\0e\0r\0";
785 srclen = 42;
786 break;
787 default:
michael0a326102008-12-10 17:55:19 +0100788 debug("unknown value DT_STRING %x\n",
789 le16_to_cpu(req->value));
Michael Trimarchi241f7512008-11-28 13:20:46 +0100790 goto unknown;
791 }
792 break;
793 default:
michael0a326102008-12-10 17:55:19 +0100794 debug("unknown value %x\n", le16_to_cpu(req->value));
Michael Trimarchi241f7512008-11-28 13:20:46 +0100795 goto unknown;
796 }
797 break;
798 case USB_REQ_GET_DESCRIPTOR | ((USB_DIR_IN | USB_RT_HUB) << 8):
799 switch (le16_to_cpu(req->value) >> 8) {
800 case USB_DT_HUB:
michael0a326102008-12-10 17:55:19 +0100801 debug("USB_DT_HUB config\n");
802 srcptr = &descriptor.hub;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200803 srclen = descriptor.hub.bLength;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100804 break;
805 default:
michael0a326102008-12-10 17:55:19 +0100806 debug("unknown value %x\n", le16_to_cpu(req->value));
Michael Trimarchi241f7512008-11-28 13:20:46 +0100807 goto unknown;
808 }
809 break;
810 case USB_REQ_SET_ADDRESS | (USB_RECIP_DEVICE << 8):
michael0a326102008-12-10 17:55:19 +0100811 debug("USB_REQ_SET_ADDRESS\n");
Lucas Stach3494a4c2012-09-26 00:14:35 +0200812 ctrl->rootdev = le16_to_cpu(req->value);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100813 break;
814 case DeviceOutRequest | USB_REQ_SET_CONFIGURATION:
michael0a326102008-12-10 17:55:19 +0100815 debug("USB_REQ_SET_CONFIGURATION\n");
Michael Trimarchi241f7512008-11-28 13:20:46 +0100816 /* Nothing to do */
817 break;
818 case USB_REQ_GET_STATUS | ((USB_DIR_IN | USB_RT_HUB) << 8):
819 tmpbuf[0] = 1; /* USB_STATUS_SELFPOWERED */
820 tmpbuf[1] = 0;
821 srcptr = tmpbuf;
822 srclen = 2;
823 break;
michael0a326102008-12-10 17:55:19 +0100824 case USB_REQ_GET_STATUS | ((USB_RT_PORT | USB_DIR_IN) << 8):
Michael Trimarchi241f7512008-11-28 13:20:46 +0100825 memset(tmpbuf, 0, 4);
Remy Böhmer33e87482008-12-13 22:51:58 +0100826 reg = ehci_readl(status_reg);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100827 if (reg & EHCI_PS_CS)
828 tmpbuf[0] |= USB_PORT_STAT_CONNECTION;
829 if (reg & EHCI_PS_PE)
830 tmpbuf[0] |= USB_PORT_STAT_ENABLE;
831 if (reg & EHCI_PS_SUSP)
832 tmpbuf[0] |= USB_PORT_STAT_SUSPEND;
833 if (reg & EHCI_PS_OCA)
834 tmpbuf[0] |= USB_PORT_STAT_OVERCURRENT;
Sergei Shtylyov23dec682010-02-27 21:33:21 +0300835 if (reg & EHCI_PS_PR)
836 tmpbuf[0] |= USB_PORT_STAT_RESET;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100837 if (reg & EHCI_PS_PP)
838 tmpbuf[1] |= USB_PORT_STAT_POWER >> 8;
Stefan Roese497f1842009-01-21 17:12:01 +0100839
840 if (ehci_is_TDI()) {
Simon Glassdc9f3ed2015-03-25 12:22:27 -0600841 switch (ctrl->ops.get_port_speed(ctrl, reg)) {
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200842 case PORTSC_PSPD_FS:
Stefan Roese497f1842009-01-21 17:12:01 +0100843 break;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200844 case PORTSC_PSPD_LS:
Stefan Roese497f1842009-01-21 17:12:01 +0100845 tmpbuf[1] |= USB_PORT_STAT_LOW_SPEED >> 8;
846 break;
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +0200847 case PORTSC_PSPD_HS:
Stefan Roese497f1842009-01-21 17:12:01 +0100848 default:
849 tmpbuf[1] |= USB_PORT_STAT_HIGH_SPEED >> 8;
850 break;
851 }
852 } else {
853 tmpbuf[1] |= USB_PORT_STAT_HIGH_SPEED >> 8;
854 }
Michael Trimarchi241f7512008-11-28 13:20:46 +0100855
856 if (reg & EHCI_PS_CSC)
857 tmpbuf[2] |= USB_PORT_STAT_C_CONNECTION;
858 if (reg & EHCI_PS_PEC)
859 tmpbuf[2] |= USB_PORT_STAT_C_ENABLE;
860 if (reg & EHCI_PS_OCC)
861 tmpbuf[2] |= USB_PORT_STAT_C_OVERCURRENT;
Julius Wernerd4046702013-02-28 18:08:40 +0000862 if (ctrl->portreset & (1 << port))
Michael Trimarchi241f7512008-11-28 13:20:46 +0100863 tmpbuf[2] |= USB_PORT_STAT_C_RESET;
Remy Böhmer33e87482008-12-13 22:51:58 +0100864
Michael Trimarchi241f7512008-11-28 13:20:46 +0100865 srcptr = tmpbuf;
866 srclen = 4;
867 break;
michael0a326102008-12-10 17:55:19 +0100868 case USB_REQ_SET_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
Remy Böhmer33e87482008-12-13 22:51:58 +0100869 reg = ehci_readl(status_reg);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100870 reg &= ~EHCI_PS_CLEAR;
871 switch (le16_to_cpu(req->value)) {
michael0bf2a032008-12-11 13:43:55 +0100872 case USB_PORT_FEAT_ENABLE:
873 reg |= EHCI_PS_PE;
Remy Böhmer33e87482008-12-13 22:51:58 +0100874 ehci_writel(status_reg, reg);
michael0bf2a032008-12-11 13:43:55 +0100875 break;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100876 case USB_PORT_FEAT_POWER:
Lucas Stach3494a4c2012-09-26 00:14:35 +0200877 if (HCS_PPC(ehci_readl(&ctrl->hccr->cr_hcsparams))) {
Remy Böhmer33e87482008-12-13 22:51:58 +0100878 reg |= EHCI_PS_PP;
879 ehci_writel(status_reg, reg);
880 }
Michael Trimarchi241f7512008-11-28 13:20:46 +0100881 break;
882 case USB_PORT_FEAT_RESET:
Remy Böhmer33e87482008-12-13 22:51:58 +0100883 if ((reg & (EHCI_PS_PE | EHCI_PS_CS)) == EHCI_PS_CS &&
884 !ehci_is_TDI() &&
885 EHCI_PS_IS_LOWSPEED(reg)) {
Michael Trimarchi241f7512008-11-28 13:20:46 +0100886 /* Low speed device, give up ownership. */
Remy Böhmer33e87482008-12-13 22:51:58 +0100887 debug("port %d low speed --> companion\n",
Julius Wernerd4046702013-02-28 18:08:40 +0000888 port - 1);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100889 reg |= EHCI_PS_PO;
Remy Böhmer33e87482008-12-13 22:51:58 +0100890 ehci_writel(status_reg, reg);
Hans de Goede63f34ca2015-05-10 14:10:16 +0200891 return -ENXIO;
Remy Böhmer33e87482008-12-13 22:51:58 +0100892 } else {
Sergei Shtylyov23dec682010-02-27 21:33:21 +0300893 int ret;
894
Chris Packham434f0582018-10-04 20:03:53 +1300895 /* Disable chirp for HS erratum */
896 if (ctrl->has_fsl_erratum_a005275)
897 reg |= PORTSC_FSL_PFSC;
898
Remy Böhmer33e87482008-12-13 22:51:58 +0100899 reg |= EHCI_PS_PR;
900 reg &= ~EHCI_PS_PE;
901 ehci_writel(status_reg, reg);
902 /*
903 * caller must wait, then call GetPortStatus
904 * usb 2.0 specification say 50 ms resets on
905 * root
906 */
Simon Glassdc9f3ed2015-03-25 12:22:27 -0600907 ctrl->ops.powerup_fixup(ctrl, status_reg, &reg);
Marek Vasut09734772011-07-11 02:37:01 +0200908
Chris Zhangfddf6d62010-01-06 13:34:04 -0800909 ehci_writel(status_reg, reg & ~EHCI_PS_PR);
Sergei Shtylyov23dec682010-02-27 21:33:21 +0300910 /*
911 * A host controller must terminate the reset
912 * and stabilize the state of the port within
913 * 2 milliseconds
914 */
915 ret = handshake(status_reg, EHCI_PS_PR, 0,
916 2 * 1000);
Hans de Goedeb5b3ef22015-05-10 14:10:13 +0200917 if (!ret) {
918 reg = ehci_readl(status_reg);
919 if ((reg & (EHCI_PS_PE | EHCI_PS_CS))
920 == EHCI_PS_CS && !ehci_is_TDI()) {
921 debug("port %d full speed --> companion\n", port - 1);
922 reg &= ~EHCI_PS_CLEAR;
923 reg |= EHCI_PS_PO;
924 ehci_writel(status_reg, reg);
Hans de Goede63f34ca2015-05-10 14:10:16 +0200925 return -ENXIO;
Hans de Goedeb5b3ef22015-05-10 14:10:13 +0200926 } else {
927 ctrl->portreset |= 1 << port;
928 }
929 } else {
Sergei Shtylyov23dec682010-02-27 21:33:21 +0300930 printf("port(%d) reset error\n",
Julius Wernerd4046702013-02-28 18:08:40 +0000931 port - 1);
Hans de Goedeb5b3ef22015-05-10 14:10:13 +0200932 }
Michael Trimarchi241f7512008-11-28 13:20:46 +0100933 }
Michael Trimarchi241f7512008-11-28 13:20:46 +0100934 break;
Julius Wernerd4046702013-02-28 18:08:40 +0000935 case USB_PORT_FEAT_TEST:
Julius Werner5c1a1ad2013-09-24 10:53:07 -0700936 ehci_shutdown(ctrl);
Julius Wernerd4046702013-02-28 18:08:40 +0000937 reg &= ~(0xf << 16);
938 reg |= ((le16_to_cpu(req->index) >> 8) & 0xf) << 16;
939 ehci_writel(status_reg, reg);
940 break;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100941 default:
michael0a326102008-12-10 17:55:19 +0100942 debug("unknown feature %x\n", le16_to_cpu(req->value));
Michael Trimarchi241f7512008-11-28 13:20:46 +0100943 goto unknown;
944 }
Remy Böhmer33e87482008-12-13 22:51:58 +0100945 /* unblock posted writes */
Lucas Stach3494a4c2012-09-26 00:14:35 +0200946 (void) ehci_readl(&ctrl->hcor->or_usbcmd);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100947 break;
michael0a326102008-12-10 17:55:19 +0100948 case USB_REQ_CLEAR_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
Remy Böhmer33e87482008-12-13 22:51:58 +0100949 reg = ehci_readl(status_reg);
Simon Glass0554ba52013-05-10 19:49:00 -0700950 reg &= ~EHCI_PS_CLEAR;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100951 switch (le16_to_cpu(req->value)) {
952 case USB_PORT_FEAT_ENABLE:
953 reg &= ~EHCI_PS_PE;
954 break;
Remy Böhmer33e87482008-12-13 22:51:58 +0100955 case USB_PORT_FEAT_C_ENABLE:
Simon Glass0554ba52013-05-10 19:49:00 -0700956 reg |= EHCI_PS_PE;
Remy Böhmer33e87482008-12-13 22:51:58 +0100957 break;
958 case USB_PORT_FEAT_POWER:
Lucas Stach3494a4c2012-09-26 00:14:35 +0200959 if (HCS_PPC(ehci_readl(&ctrl->hccr->cr_hcsparams)))
Simon Glass0554ba52013-05-10 19:49:00 -0700960 reg &= ~EHCI_PS_PP;
961 break;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100962 case USB_PORT_FEAT_C_CONNECTION:
Simon Glass0554ba52013-05-10 19:49:00 -0700963 reg |= EHCI_PS_CSC;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100964 break;
michael0bf2a032008-12-11 13:43:55 +0100965 case USB_PORT_FEAT_OVER_CURRENT:
Simon Glass0554ba52013-05-10 19:49:00 -0700966 reg |= EHCI_PS_OCC;
michael0bf2a032008-12-11 13:43:55 +0100967 break;
Michael Trimarchi241f7512008-11-28 13:20:46 +0100968 case USB_PORT_FEAT_C_RESET:
Julius Wernerd4046702013-02-28 18:08:40 +0000969 ctrl->portreset &= ~(1 << port);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100970 break;
971 default:
michael0a326102008-12-10 17:55:19 +0100972 debug("unknown feature %x\n", le16_to_cpu(req->value));
Michael Trimarchi241f7512008-11-28 13:20:46 +0100973 goto unknown;
974 }
Remy Böhmer33e87482008-12-13 22:51:58 +0100975 ehci_writel(status_reg, reg);
976 /* unblock posted write */
Lucas Stach3494a4c2012-09-26 00:14:35 +0200977 (void) ehci_readl(&ctrl->hcor->or_usbcmd);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100978 break;
979 default:
michael0a326102008-12-10 17:55:19 +0100980 debug("Unknown request\n");
Michael Trimarchi241f7512008-11-28 13:20:46 +0100981 goto unknown;
982 }
983
Mike Frysinger60ce19a2012-03-05 13:47:00 +0000984 mdelay(1);
Masahiro Yamadadb204642014-11-07 03:03:31 +0900985 len = min3(srclen, (int)le16_to_cpu(req->length), length);
Michael Trimarchi241f7512008-11-28 13:20:46 +0100986 if (srcptr != NULL && len > 0)
987 memcpy(buffer, srcptr, len);
michael0a326102008-12-10 17:55:19 +0100988 else
989 debug("Len is 0\n");
990
Michael Trimarchi241f7512008-11-28 13:20:46 +0100991 dev->act_len = len;
992 dev->status = 0;
993 return 0;
994
995unknown:
michael0a326102008-12-10 17:55:19 +0100996 debug("requesttype=%x, request=%x, value=%x, index=%x, length=%x\n",
Michael Trimarchi241f7512008-11-28 13:20:46 +0100997 req->requesttype, req->request, le16_to_cpu(req->value),
998 le16_to_cpu(req->index), le16_to_cpu(req->length));
999
1000 dev->act_len = 0;
1001 dev->status = USB_ST_STALLED;
1002 return -1;
1003}
1004
Masahiro Yamada6d8e4332017-06-22 16:35:14 +09001005static const struct ehci_ops default_ehci_ops = {
Simon Glassdc9f3ed2015-03-25 12:22:27 -06001006 .set_usb_mode = ehci_set_usbmode,
1007 .get_port_speed = ehci_get_port_speed,
1008 .powerup_fixup = ehci_powerup_fixup,
1009 .get_portsc_register = ehci_get_portsc_register,
1010};
1011
1012static void ehci_setup_ops(struct ehci_ctrl *ctrl, const struct ehci_ops *ops)
Simon Glass0851caa2015-03-25 12:22:19 -06001013{
Simon Glassdc9f3ed2015-03-25 12:22:27 -06001014 if (!ops) {
1015 ctrl->ops = default_ehci_ops;
1016 } else {
1017 ctrl->ops = *ops;
1018 if (!ctrl->ops.set_usb_mode)
1019 ctrl->ops.set_usb_mode = ehci_set_usbmode;
1020 if (!ctrl->ops.get_port_speed)
1021 ctrl->ops.get_port_speed = ehci_get_port_speed;
1022 if (!ctrl->ops.powerup_fixup)
1023 ctrl->ops.powerup_fixup = ehci_powerup_fixup;
1024 if (!ctrl->ops.get_portsc_register)
1025 ctrl->ops.get_portsc_register =
1026 ehci_get_portsc_register;
1027 }
Simon Glass0851caa2015-03-25 12:22:19 -06001028}
1029
Sven Schwermer8a3cb9f12018-11-21 08:43:56 +01001030#if !CONFIG_IS_ENABLED(DM_USB)
Simon Glassdc9f3ed2015-03-25 12:22:27 -06001031void ehci_set_controller_priv(int index, void *priv, const struct ehci_ops *ops)
1032{
1033 struct ehci_ctrl *ctrl = &ehcic[index];
1034
1035 ctrl->priv = priv;
1036 ehci_setup_ops(ctrl, ops);
1037}
1038
Simon Glass0851caa2015-03-25 12:22:19 -06001039void *ehci_get_controller_priv(int index)
1040{
1041 return ehcic[index].priv;
1042}
Simon Glassa194b252015-03-25 12:22:29 -06001043#endif
Simon Glass0851caa2015-03-25 12:22:19 -06001044
Simon Glassccc40fd2015-03-25 12:22:26 -06001045static int ehci_common_init(struct ehci_ctrl *ctrl, uint tweaks)
Michael Trimarchi241f7512008-11-28 13:20:46 +01001046{
Lucas Stach3494a4c2012-09-26 00:14:35 +02001047 struct QH *qh_list;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001048 struct QH *periodic;
Simon Glassccc40fd2015-03-25 12:22:26 -06001049 uint32_t reg;
1050 uint32_t cmd;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001051 int i;
michael0bf2a032008-12-11 13:43:55 +01001052
Vincent Palatin0d6f77c2012-12-12 17:55:22 -08001053 /* Set the high address word (aka segment) for 64-bit controller */
Simon Glassccc40fd2015-03-25 12:22:26 -06001054 if (ehci_readl(&ctrl->hccr->cr_hccparams) & 1)
1055 ehci_writel(&ctrl->hcor->or_ctrldssegment, 0);
Stefan Roese2e98fc72009-01-21 17:12:10 +01001056
Simon Glassccc40fd2015-03-25 12:22:26 -06001057 qh_list = &ctrl->qh_list;
Lucas Stach3494a4c2012-09-26 00:14:35 +02001058
Michael Trimarchi241f7512008-11-28 13:20:46 +01001059 /* Set head of reclaim list */
Tom Rini2cabcf72012-07-15 22:14:24 +00001060 memset(qh_list, 0, sizeof(*qh_list));
Marek Vasutdf0b6242016-01-23 21:04:46 +01001061 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 +02001062 qh_list->qh_endpt1 = cpu_to_hc32(QH_ENDPT1_H(1) |
1063 QH_ENDPT1_EPS(USB_SPEED_HIGH));
Tom Rini2cabcf72012-07-15 22:14:24 +00001064 qh_list->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
1065 qh_list->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Benoît Thébaudeau458fb1e2012-08-10 18:22:11 +02001066 qh_list->qh_overlay.qt_token =
1067 cpu_to_hc32(QT_TOKEN_STATUS(QT_TOKEN_STATUS_HALTED));
Michael Trimarchi241f7512008-11-28 13:20:46 +01001068
Rob Herringf14d54b2015-03-17 15:46:37 -05001069 flush_dcache_range((unsigned long)qh_list,
Stephen Warren36dad662013-05-24 15:03:17 -06001070 ALIGN_END_ADDR(struct QH, qh_list, 1));
1071
Patrick Georgie55fdac2013-03-06 14:08:31 +00001072 /* Set async. queue head pointer. */
Marek Vasutdf0b6242016-01-23 21:04:46 +01001073 ehci_writel(&ctrl->hcor->or_asynclistaddr, virt_to_phys(qh_list));
Patrick Georgie55fdac2013-03-06 14:08:31 +00001074
1075 /*
1076 * Set up periodic list
1077 * Step 1: Parent QH for all periodic transfers.
1078 */
Simon Glassccc40fd2015-03-25 12:22:26 -06001079 ctrl->periodic_schedules = 0;
1080 periodic = &ctrl->periodic_queue;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001081 memset(periodic, 0, sizeof(*periodic));
1082 periodic->qh_link = cpu_to_hc32(QH_LINK_TERMINATE);
1083 periodic->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
1084 periodic->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
1085
Rob Herringf14d54b2015-03-17 15:46:37 -05001086 flush_dcache_range((unsigned long)periodic,
Stephen Warren36dad662013-05-24 15:03:17 -06001087 ALIGN_END_ADDR(struct QH, periodic, 1));
1088
Patrick Georgie55fdac2013-03-06 14:08:31 +00001089 /*
1090 * Step 2: Setup frame-list: Every microframe, USB tries the same list.
1091 * In particular, device specifications on polling frequency
1092 * are disregarded. Keyboards seem to send NAK/NYet reliably
1093 * when polled with an empty buffer.
1094 *
1095 * Split Transactions will be spread across microframes using
1096 * S-mask and C-mask.
1097 */
Simon Glassccc40fd2015-03-25 12:22:26 -06001098 if (ctrl->periodic_list == NULL)
1099 ctrl->periodic_list = memalign(4096, 1024 * 4);
Nikita Kiryanov2f13e442013-07-29 13:27:40 +03001100
Simon Glassccc40fd2015-03-25 12:22:26 -06001101 if (!ctrl->periodic_list)
Patrick Georgie55fdac2013-03-06 14:08:31 +00001102 return -ENOMEM;
1103 for (i = 0; i < 1024; i++) {
Simon Glassccc40fd2015-03-25 12:22:26 -06001104 ctrl->periodic_list[i] = cpu_to_hc32((unsigned long)periodic
Adrian Cox29d05872014-04-10 13:29:45 +01001105 | QH_LINK_TYPE_QH);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001106 }
1107
Simon Glassccc40fd2015-03-25 12:22:26 -06001108 flush_dcache_range((unsigned long)ctrl->periodic_list,
1109 ALIGN_END_ADDR(uint32_t, ctrl->periodic_list,
Stephen Warren36dad662013-05-24 15:03:17 -06001110 1024));
1111
Patrick Georgie55fdac2013-03-06 14:08:31 +00001112 /* Set periodic list base address */
Simon Glassccc40fd2015-03-25 12:22:26 -06001113 ehci_writel(&ctrl->hcor->or_periodiclistbase,
1114 (unsigned long)ctrl->periodic_list);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001115
Simon Glassccc40fd2015-03-25 12:22:26 -06001116 reg = ehci_readl(&ctrl->hccr->cr_hcsparams);
michael0bf2a032008-12-11 13:43:55 +01001117 descriptor.hub.bNbrPorts = HCS_N_PORTS(reg);
Lucas Stachf5b34082012-09-28 00:26:19 +02001118 debug("Register %x NbrPorts %d\n", reg, descriptor.hub.bNbrPorts);
Remy Böhmer33e87482008-12-13 22:51:58 +01001119 /* Port Indicators */
1120 if (HCS_INDICATOR(reg))
Lucas Stach835e11e2012-09-06 08:00:13 +02001121 put_unaligned(get_unaligned(&descriptor.hub.wHubCharacteristics)
1122 | 0x80, &descriptor.hub.wHubCharacteristics);
Remy Böhmer33e87482008-12-13 22:51:58 +01001123 /* Port Power Control */
1124 if (HCS_PPC(reg))
Lucas Stach835e11e2012-09-06 08:00:13 +02001125 put_unaligned(get_unaligned(&descriptor.hub.wHubCharacteristics)
1126 | 0x01, &descriptor.hub.wHubCharacteristics);
Michael Trimarchi241f7512008-11-28 13:20:46 +01001127
Michael Trimarchi241f7512008-11-28 13:20:46 +01001128 /* Start the host controller. */
Simon Glassccc40fd2015-03-25 12:22:26 -06001129 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
Wolfgang Denkfb718e12009-02-12 00:08:39 +01001130 /*
1131 * Philips, Intel, and maybe others need CMD_RUN before the
1132 * root hub will detect new devices (why?); NEC doesn't
1133 */
michael0bf2a032008-12-11 13:43:55 +01001134 cmd &= ~(CMD_LRESET|CMD_IAAD|CMD_PSE|CMD_ASE|CMD_RESET);
1135 cmd |= CMD_RUN;
Simon Glassccc40fd2015-03-25 12:22:26 -06001136 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
michael0bf2a032008-12-11 13:43:55 +01001137
Simon Glassccc40fd2015-03-25 12:22:26 -06001138 if (!(tweaks & EHCI_TWEAK_NO_INIT_CF)) {
1139 /* take control over the ports */
1140 cmd = ehci_readl(&ctrl->hcor->or_configflag);
1141 cmd |= FLAG_CF;
1142 ehci_writel(&ctrl->hcor->or_configflag, cmd);
1143 }
Kuo-Jung Sub5d59de2013-05-15 15:29:23 +08001144
Remy Böhmer33e87482008-12-13 22:51:58 +01001145 /* unblock posted write */
Simon Glassccc40fd2015-03-25 12:22:26 -06001146 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
Mike Frysinger60ce19a2012-03-05 13:47:00 +00001147 mdelay(5);
Simon Glassccc40fd2015-03-25 12:22:26 -06001148 reg = HC_VERSION(ehci_readl(&ctrl->hccr->cr_capbase));
Remy Böhmer33e87482008-12-13 22:51:58 +01001149 printf("USB EHCI %x.%02x\n", reg >> 8, reg & 0xff);
Michael Trimarchi241f7512008-11-28 13:20:46 +01001150
Simon Glassccc40fd2015-03-25 12:22:26 -06001151 return 0;
1152}
1153
Sven Schwermer8a3cb9f12018-11-21 08:43:56 +01001154#if !CONFIG_IS_ENABLED(DM_USB)
Simon Glassccc40fd2015-03-25 12:22:26 -06001155int usb_lowlevel_stop(int index)
1156{
1157 ehci_shutdown(&ehcic[index]);
1158 return ehci_hcd_stop(index);
1159}
1160
1161int usb_lowlevel_init(int index, enum usb_init_type init, void **controller)
1162{
1163 struct ehci_ctrl *ctrl = &ehcic[index];
1164 uint tweaks = 0;
1165 int rc;
1166
Simon Glassdc9f3ed2015-03-25 12:22:27 -06001167 /**
1168 * Set ops to default_ehci_ops, ehci_hcd_init should call
1169 * ehci_set_controller_priv to change any of these function pointers.
1170 */
1171 ctrl->ops = default_ehci_ops;
1172
Simon Glassccc40fd2015-03-25 12:22:26 -06001173 rc = ehci_hcd_init(index, init, &ctrl->hccr, &ctrl->hcor);
1174 if (rc)
1175 return rc;
Heinrich Schuchardtab4304b2017-11-20 19:33:39 +01001176 if (!ctrl->hccr || !ctrl->hcor)
1177 return -1;
Simon Glassccc40fd2015-03-25 12:22:26 -06001178 if (init == USB_INIT_DEVICE)
1179 goto done;
1180
1181 /* EHCI spec section 4.1 */
Simon Glass302696b2015-03-25 12:22:28 -06001182 if (ehci_reset(ctrl))
Simon Glassccc40fd2015-03-25 12:22:26 -06001183 return -1;
1184
1185#if defined(CONFIG_EHCI_HCD_INIT_AFTER_RESET)
1186 rc = ehci_hcd_init(index, init, &ctrl->hccr, &ctrl->hcor);
1187 if (rc)
1188 return rc;
1189#endif
Simon Glassccc40fd2015-03-25 12:22:26 -06001190 rc = ehci_common_init(ctrl, tweaks);
1191 if (rc)
1192 return rc;
1193
1194 ctrl->rootdev = 0;
Troy Kisky7d6bbb92013-10-10 15:27:57 -07001195done:
Lucas Stach3494a4c2012-09-26 00:14:35 +02001196 *controller = &ehcic[index];
Michael Trimarchi241f7512008-11-28 13:20:46 +01001197 return 0;
1198}
Simon Glassa194b252015-03-25 12:22:29 -06001199#endif
Michael Trimarchi241f7512008-11-28 13:20:46 +01001200
Simon Glasscb7cf602015-03-25 12:22:25 -06001201static int _ehci_submit_bulk_msg(struct usb_device *dev, unsigned long pipe,
1202 void *buffer, int length)
Michael Trimarchi241f7512008-11-28 13:20:46 +01001203{
1204
1205 if (usb_pipetype(pipe) != PIPE_BULK) {
1206 debug("non-bulk pipe (type=%lu)", usb_pipetype(pipe));
1207 return -1;
1208 }
1209 return ehci_submit_async(dev, pipe, buffer, length, NULL);
1210}
1211
Simon Glasscb7cf602015-03-25 12:22:25 -06001212static int _ehci_submit_control_msg(struct usb_device *dev, unsigned long pipe,
1213 void *buffer, int length,
1214 struct devrequest *setup)
Michael Trimarchi241f7512008-11-28 13:20:46 +01001215{
Simon Glasscb7cf602015-03-25 12:22:25 -06001216 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Michael Trimarchi241f7512008-11-28 13:20:46 +01001217
1218 if (usb_pipetype(pipe) != PIPE_CONTROL) {
1219 debug("non-control pipe (type=%lu)", usb_pipetype(pipe));
1220 return -1;
1221 }
1222
Lucas Stach3494a4c2012-09-26 00:14:35 +02001223 if (usb_pipedevice(pipe) == ctrl->rootdev) {
1224 if (!ctrl->rootdev)
Michael Trimarchi241f7512008-11-28 13:20:46 +01001225 dev->speed = USB_SPEED_HIGH;
1226 return ehci_submit_root(dev, pipe, buffer, length, setup);
1227 }
1228 return ehci_submit_async(dev, pipe, buffer, length, setup);
1229}
1230
Patrick Georgie55fdac2013-03-06 14:08:31 +00001231struct int_queue {
Hans de Goede8c5c5ca2014-09-24 14:06:05 +02001232 int elementsize;
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001233 unsigned long pipe;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001234 struct QH *first;
1235 struct QH *current;
1236 struct QH *last;
1237 struct qTD *tds;
1238};
1239
Rob Herringf14d54b2015-03-17 15:46:37 -05001240#define NEXT_QH(qh) (struct QH *)((unsigned long)hc32_to_cpu((qh)->qh_link) & ~0x1f)
Patrick Georgie55fdac2013-03-06 14:08:31 +00001241
1242static int
1243enable_periodic(struct ehci_ctrl *ctrl)
1244{
1245 uint32_t cmd;
1246 struct ehci_hcor *hcor = ctrl->hcor;
1247 int ret;
1248
1249 cmd = ehci_readl(&hcor->or_usbcmd);
1250 cmd |= CMD_PSE;
1251 ehci_writel(&hcor->or_usbcmd, cmd);
1252
1253 ret = handshake((uint32_t *)&hcor->or_usbsts,
1254 STS_PSS, STS_PSS, 100 * 1000);
1255 if (ret < 0) {
1256 printf("EHCI failed: timeout when enabling periodic list\n");
1257 return -ETIMEDOUT;
1258 }
1259 udelay(1000);
1260 return 0;
1261}
1262
1263static int
1264disable_periodic(struct ehci_ctrl *ctrl)
1265{
1266 uint32_t cmd;
1267 struct ehci_hcor *hcor = ctrl->hcor;
1268 int ret;
1269
1270 cmd = ehci_readl(&hcor->or_usbcmd);
1271 cmd &= ~CMD_PSE;
1272 ehci_writel(&hcor->or_usbcmd, cmd);
1273
1274 ret = handshake((uint32_t *)&hcor->or_usbsts,
1275 STS_PSS, 0, 100 * 1000);
1276 if (ret < 0) {
1277 printf("EHCI failed: timeout when disabling periodic list\n");
1278 return -ETIMEDOUT;
1279 }
1280 return 0;
1281}
1282
Hans de Goede53ca9de2015-05-11 20:43:52 +02001283static struct int_queue *_ehci_create_int_queue(struct usb_device *dev,
1284 unsigned long pipe, int queuesize, int elementsize,
1285 void *buffer, int interval)
Patrick Georgie55fdac2013-03-06 14:08:31 +00001286{
Simon Glasscb7cf602015-03-25 12:22:25 -06001287 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001288 struct int_queue *result = NULL;
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001289 uint32_t i, toggle;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001290
Hans de Goede7f7cb732014-09-24 14:06:04 +02001291 /*
1292 * Interrupt transfers requiring several transactions are not supported
1293 * because bInterval is ignored.
1294 *
1295 * Also, ehci_submit_async() relies on wMaxPacketSize being a power of 2
1296 * <= PKT_ALIGN if several qTDs are required, while the USB
1297 * specification does not constrain this for interrupt transfers. That
1298 * means that ehci_submit_async() would support interrupt transfers
1299 * requiring several transactions only as long as the transfer size does
1300 * not require more than a single qTD.
1301 */
1302 if (elementsize > usb_maxpacket(dev, pipe)) {
1303 printf("%s: xfers requiring several transactions are not supported.\n",
1304 __func__);
1305 return NULL;
1306 }
1307
Patrick Georgie55fdac2013-03-06 14:08:31 +00001308 debug("Enter create_int_queue\n");
1309 if (usb_pipetype(pipe) != PIPE_INTERRUPT) {
1310 debug("non-interrupt pipe (type=%lu)", usb_pipetype(pipe));
1311 return NULL;
1312 }
1313
1314 /* limit to 4 full pages worth of data -
1315 * we can safely fit them in a single TD,
1316 * no matter the alignment
1317 */
1318 if (elementsize >= 16384) {
1319 debug("too large elements for interrupt transfers\n");
1320 return NULL;
1321 }
1322
1323 result = malloc(sizeof(*result));
1324 if (!result) {
1325 debug("ehci intr queue: out of memory\n");
1326 goto fail1;
1327 }
Hans de Goede8c5c5ca2014-09-24 14:06:05 +02001328 result->elementsize = elementsize;
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001329 result->pipe = pipe;
Stephen Warrend7fe61d2014-02-06 13:13:06 -07001330 result->first = memalign(USB_DMA_MINALIGN,
1331 sizeof(struct QH) * queuesize);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001332 if (!result->first) {
1333 debug("ehci intr queue: out of memory\n");
1334 goto fail2;
1335 }
1336 result->current = result->first;
1337 result->last = result->first + queuesize - 1;
Stephen Warrend7fe61d2014-02-06 13:13:06 -07001338 result->tds = memalign(USB_DMA_MINALIGN,
1339 sizeof(struct qTD) * queuesize);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001340 if (!result->tds) {
1341 debug("ehci intr queue: out of memory\n");
1342 goto fail3;
1343 }
1344 memset(result->first, 0, sizeof(struct QH) * queuesize);
1345 memset(result->tds, 0, sizeof(struct qTD) * queuesize);
1346
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001347 toggle = usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
1348
Patrick Georgie55fdac2013-03-06 14:08:31 +00001349 for (i = 0; i < queuesize; i++) {
1350 struct QH *qh = result->first + i;
1351 struct qTD *td = result->tds + i;
1352 void **buf = &qh->buffer;
1353
Rob Herringf14d54b2015-03-17 15:46:37 -05001354 qh->qh_link = cpu_to_hc32((unsigned long)(qh+1) | QH_LINK_TYPE_QH);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001355 if (i == queuesize - 1)
Adrian Cox29d05872014-04-10 13:29:45 +01001356 qh->qh_link = cpu_to_hc32(QH_LINK_TERMINATE);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001357
Rob Herringf14d54b2015-03-17 15:46:37 -05001358 qh->qh_overlay.qt_next = cpu_to_hc32((unsigned long)td);
Adrian Cox29d05872014-04-10 13:29:45 +01001359 qh->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
1360 qh->qh_endpt1 =
1361 cpu_to_hc32((0 << 28) | /* No NAK reload (ehci 4.9) */
Patrick Georgie55fdac2013-03-06 14:08:31 +00001362 (usb_maxpacket(dev, pipe) << 16) | /* MPS */
1363 (1 << 14) |
1364 QH_ENDPT1_EPS(ehci_encode_speed(dev->speed)) |
1365 (usb_pipeendpoint(pipe) << 8) | /* Endpoint Number */
Adrian Cox29d05872014-04-10 13:29:45 +01001366 (usb_pipedevice(pipe) << 0));
1367 qh->qh_endpt2 = cpu_to_hc32((1 << 30) | /* 1 Tx per mframe */
1368 (1 << 0)); /* S-mask: microframe 0 */
Patrick Georgie55fdac2013-03-06 14:08:31 +00001369 if (dev->speed == USB_SPEED_LOW ||
1370 dev->speed == USB_SPEED_FULL) {
Hans de Goededa166772014-09-20 16:51:22 +02001371 /* C-mask: microframes 2-4 */
1372 qh->qh_endpt2 |= cpu_to_hc32((0x1c << 8));
Patrick Georgie55fdac2013-03-06 14:08:31 +00001373 }
Hans de Goededa166772014-09-20 16:51:22 +02001374 ehci_update_endpt2_dev_n_port(dev, qh);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001375
Adrian Cox29d05872014-04-10 13:29:45 +01001376 td->qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
1377 td->qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001378 debug("communication direction is '%s'\n",
1379 usb_pipein(pipe) ? "in" : "out");
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001380 td->qt_token = cpu_to_hc32(
1381 QT_TOKEN_DT(toggle) |
1382 (elementsize << 16) |
Patrick Georgie55fdac2013-03-06 14:08:31 +00001383 ((usb_pipein(pipe) ? 1 : 0) << 8) | /* IN/OUT token */
Adrian Cox29d05872014-04-10 13:29:45 +01001384 0x80); /* active */
1385 td->qt_buffer[0] =
Rob Herringf14d54b2015-03-17 15:46:37 -05001386 cpu_to_hc32((unsigned long)buffer + i * elementsize);
Adrian Cox29d05872014-04-10 13:29:45 +01001387 td->qt_buffer[1] =
1388 cpu_to_hc32((td->qt_buffer[0] + 0x1000) & ~0xfff);
1389 td->qt_buffer[2] =
1390 cpu_to_hc32((td->qt_buffer[0] + 0x2000) & ~0xfff);
1391 td->qt_buffer[3] =
1392 cpu_to_hc32((td->qt_buffer[0] + 0x3000) & ~0xfff);
1393 td->qt_buffer[4] =
1394 cpu_to_hc32((td->qt_buffer[0] + 0x4000) & ~0xfff);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001395
1396 *buf = buffer + i * elementsize;
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001397 toggle ^= 1;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001398 }
1399
Rob Herringf14d54b2015-03-17 15:46:37 -05001400 flush_dcache_range((unsigned long)buffer,
Stephen Warren36dad662013-05-24 15:03:17 -06001401 ALIGN_END_ADDR(char, buffer,
1402 queuesize * elementsize));
Rob Herringf14d54b2015-03-17 15:46:37 -05001403 flush_dcache_range((unsigned long)result->first,
Stephen Warren36dad662013-05-24 15:03:17 -06001404 ALIGN_END_ADDR(struct QH, result->first,
1405 queuesize));
Rob Herringf14d54b2015-03-17 15:46:37 -05001406 flush_dcache_range((unsigned long)result->tds,
Stephen Warren36dad662013-05-24 15:03:17 -06001407 ALIGN_END_ADDR(struct qTD, result->tds,
1408 queuesize));
1409
Hans de Goede8ba55ed2014-09-24 14:06:03 +02001410 if (ctrl->periodic_schedules > 0) {
1411 if (disable_periodic(ctrl) < 0) {
1412 debug("FATAL: periodic should never fail, but did");
1413 goto fail3;
1414 }
Patrick Georgie55fdac2013-03-06 14:08:31 +00001415 }
1416
1417 /* hook up to periodic list */
1418 struct QH *list = &ctrl->periodic_queue;
1419 result->last->qh_link = list->qh_link;
Rob Herringf14d54b2015-03-17 15:46:37 -05001420 list->qh_link = cpu_to_hc32((unsigned long)result->first | QH_LINK_TYPE_QH);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001421
Rob Herringf14d54b2015-03-17 15:46:37 -05001422 flush_dcache_range((unsigned long)result->last,
Stephen Warren36dad662013-05-24 15:03:17 -06001423 ALIGN_END_ADDR(struct QH, result->last, 1));
Rob Herringf14d54b2015-03-17 15:46:37 -05001424 flush_dcache_range((unsigned long)list,
Stephen Warren36dad662013-05-24 15:03:17 -06001425 ALIGN_END_ADDR(struct QH, list, 1));
1426
Patrick Georgie55fdac2013-03-06 14:08:31 +00001427 if (enable_periodic(ctrl) < 0) {
1428 debug("FATAL: periodic should never fail, but did");
1429 goto fail3;
1430 }
Hans de Goede8f5f4f72014-09-20 16:51:25 +02001431 ctrl->periodic_schedules++;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001432
1433 debug("Exit create_int_queue\n");
1434 return result;
1435fail3:
Heinrich Schuchardt4b88d6f2020-04-19 12:02:28 +02001436 free(result->tds);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001437fail2:
Heinrich Schuchardt4b88d6f2020-04-19 12:02:28 +02001438 free(result->first);
1439 free(result);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001440fail1:
1441 return NULL;
1442}
1443
Hans de Goede53ca9de2015-05-11 20:43:52 +02001444static void *_ehci_poll_int_queue(struct usb_device *dev,
1445 struct int_queue *queue)
Patrick Georgie55fdac2013-03-06 14:08:31 +00001446{
1447 struct QH *cur = queue->current;
Hans de Goede9db174c2014-09-20 16:51:24 +02001448 struct qTD *cur_td;
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001449 uint32_t token, toggle;
1450 unsigned long pipe = queue->pipe;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001451
1452 /* depleted queue */
1453 if (cur == NULL) {
1454 debug("Exit poll_int_queue with completed queue\n");
1455 return NULL;
1456 }
1457 /* still active */
Hans de Goede9db174c2014-09-20 16:51:24 +02001458 cur_td = &queue->tds[queue->current - queue->first];
Rob Herringf14d54b2015-03-17 15:46:37 -05001459 invalidate_dcache_range((unsigned long)cur_td,
Hans de Goede9db174c2014-09-20 16:51:24 +02001460 ALIGN_END_ADDR(struct qTD, cur_td, 1));
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001461 token = hc32_to_cpu(cur_td->qt_token);
1462 if (QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE) {
1463 debug("Exit poll_int_queue with no completed intr transfer. token is %x\n", token);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001464 return NULL;
1465 }
Hans de Goede61a5a1c2015-06-18 22:34:33 +02001466
1467 toggle = QT_TOKEN_GET_DT(token);
1468 usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), toggle);
1469
Patrick Georgie55fdac2013-03-06 14:08:31 +00001470 if (!(cur->qh_link & QH_LINK_TERMINATE))
1471 queue->current++;
1472 else
1473 queue->current = NULL;
Hans de Goede8c5c5ca2014-09-24 14:06:05 +02001474
Rob Herringf14d54b2015-03-17 15:46:37 -05001475 invalidate_dcache_range((unsigned long)cur->buffer,
Hans de Goede8c5c5ca2014-09-24 14:06:05 +02001476 ALIGN_END_ADDR(char, cur->buffer,
1477 queue->elementsize));
1478
Hans de Goede9db174c2014-09-20 16:51:24 +02001479 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 +02001480 token, cur, queue->first);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001481 return cur->buffer;
1482}
1483
1484/* Do not free buffers associated with QHs, they're owned by someone else */
Hans de Goede53ca9de2015-05-11 20:43:52 +02001485static int _ehci_destroy_int_queue(struct usb_device *dev,
1486 struct int_queue *queue)
Patrick Georgie55fdac2013-03-06 14:08:31 +00001487{
Simon Glasscb7cf602015-03-25 12:22:25 -06001488 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001489 int result = -1;
1490 unsigned long timeout;
1491
1492 if (disable_periodic(ctrl) < 0) {
1493 debug("FATAL: periodic should never fail, but did");
1494 goto out;
1495 }
Hans de Goede8f5f4f72014-09-20 16:51:25 +02001496 ctrl->periodic_schedules--;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001497
1498 struct QH *cur = &ctrl->periodic_queue;
1499 timeout = get_timer(0) + 500; /* abort after 500ms */
Adrian Cox29d05872014-04-10 13:29:45 +01001500 while (!(cur->qh_link & cpu_to_hc32(QH_LINK_TERMINATE))) {
Patrick Georgie55fdac2013-03-06 14:08:31 +00001501 debug("considering %p, with qh_link %x\n", cur, cur->qh_link);
1502 if (NEXT_QH(cur) == queue->first) {
1503 debug("found candidate. removing from chain\n");
1504 cur->qh_link = queue->last->qh_link;
Rob Herringf14d54b2015-03-17 15:46:37 -05001505 flush_dcache_range((unsigned long)cur,
Hans de Goede8e00cf62014-09-20 16:51:23 +02001506 ALIGN_END_ADDR(struct QH, cur, 1));
Patrick Georgie55fdac2013-03-06 14:08:31 +00001507 result = 0;
1508 break;
1509 }
1510 cur = NEXT_QH(cur);
1511 if (get_timer(0) > timeout) {
1512 printf("Timeout destroying interrupt endpoint queue\n");
1513 result = -1;
1514 goto out;
1515 }
1516 }
1517
Hans de Goede8f5f4f72014-09-20 16:51:25 +02001518 if (ctrl->periodic_schedules > 0) {
Patrick Georgie55fdac2013-03-06 14:08:31 +00001519 result = enable_periodic(ctrl);
1520 if (result < 0)
1521 debug("FATAL: periodic should never fail, but did");
1522 }
1523
1524out:
1525 free(queue->tds);
1526 free(queue->first);
1527 free(queue);
1528
1529 return result;
1530}
1531
Simon Glasscb7cf602015-03-25 12:22:25 -06001532static int _ehci_submit_int_msg(struct usb_device *dev, unsigned long pipe,
Michal Suchanek1c95b9f2019-08-18 10:55:27 +02001533 void *buffer, int length, int interval,
1534 bool nonblock)
Michael Trimarchi241f7512008-11-28 13:20:46 +01001535{
Patrick Georgie55fdac2013-03-06 14:08:31 +00001536 void *backbuffer;
1537 struct int_queue *queue;
1538 unsigned long timeout;
1539 int result = 0, ret;
1540
Michael Trimarchi241f7512008-11-28 13:20:46 +01001541 debug("dev=%p, pipe=%lu, buffer=%p, length=%d, interval=%d",
1542 dev, pipe, buffer, length, interval);
Benoît Thébaudeau58c4dfb2012-08-09 23:50:44 +02001543
Hans de Goede53ca9de2015-05-11 20:43:52 +02001544 queue = _ehci_create_int_queue(dev, pipe, 1, length, buffer, interval);
Hans de Goede7f7cb732014-09-24 14:06:04 +02001545 if (!queue)
1546 return -1;
Patrick Georgie55fdac2013-03-06 14:08:31 +00001547
1548 timeout = get_timer(0) + USB_TIMEOUT_MS(pipe);
Hans de Goede53ca9de2015-05-11 20:43:52 +02001549 while ((backbuffer = _ehci_poll_int_queue(dev, queue)) == NULL)
Patrick Georgie55fdac2013-03-06 14:08:31 +00001550 if (get_timer(0) > timeout) {
1551 printf("Timeout poll on interrupt endpoint\n");
1552 result = -ETIMEDOUT;
1553 break;
1554 }
1555
1556 if (backbuffer != buffer) {
Rob Herringf14d54b2015-03-17 15:46:37 -05001557 debug("got wrong buffer back (%p instead of %p)\n",
1558 backbuffer, buffer);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001559 return -EINVAL;
1560 }
1561
Hans de Goede53ca9de2015-05-11 20:43:52 +02001562 ret = _ehci_destroy_int_queue(dev, queue);
Patrick Georgie55fdac2013-03-06 14:08:31 +00001563 if (ret < 0)
1564 return ret;
1565
1566 /* everything worked out fine */
1567 return result;
Marek Vasut9b315fe2011-09-25 21:07:56 +02001568}
Simon Glasscb7cf602015-03-25 12:22:25 -06001569
Marek Vasut118a9032020-04-06 14:29:44 +02001570static int _ehci_lock_async(struct ehci_ctrl *ctrl, int lock)
1571{
1572 ctrl->async_locked = lock;
1573
1574 if (lock)
1575 return 0;
1576
1577 return ehci_disable_async(ctrl);
1578}
1579
Sven Schwermer8a3cb9f12018-11-21 08:43:56 +01001580#if !CONFIG_IS_ENABLED(DM_USB)
Simon Glasscb7cf602015-03-25 12:22:25 -06001581int submit_bulk_msg(struct usb_device *dev, unsigned long pipe,
1582 void *buffer, int length)
1583{
1584 return _ehci_submit_bulk_msg(dev, pipe, buffer, length);
1585}
1586
1587int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1588 int length, struct devrequest *setup)
1589{
1590 return _ehci_submit_control_msg(dev, pipe, buffer, length, setup);
1591}
1592
1593int submit_int_msg(struct usb_device *dev, unsigned long pipe,
Michal Suchanek1c95b9f2019-08-18 10:55:27 +02001594 void *buffer, int length, int interval, bool nonblock)
Simon Glasscb7cf602015-03-25 12:22:25 -06001595{
Michal Suchanek1c95b9f2019-08-18 10:55:27 +02001596 return _ehci_submit_int_msg(dev, pipe, buffer, length, interval,
1597 nonblock);
Simon Glasscb7cf602015-03-25 12:22:25 -06001598}
Hans de Goede53ca9de2015-05-11 20:43:52 +02001599
1600struct int_queue *create_int_queue(struct usb_device *dev,
1601 unsigned long pipe, int queuesize, int elementsize,
1602 void *buffer, int interval)
1603{
1604 return _ehci_create_int_queue(dev, pipe, queuesize, elementsize,
1605 buffer, interval);
1606}
1607
1608void *poll_int_queue(struct usb_device *dev, struct int_queue *queue)
1609{
1610 return _ehci_poll_int_queue(dev, queue);
1611}
1612
1613int destroy_int_queue(struct usb_device *dev, struct int_queue *queue)
1614{
1615 return _ehci_destroy_int_queue(dev, queue);
1616}
Marek Vasut118a9032020-04-06 14:29:44 +02001617
1618int usb_lock_async(struct usb_device *dev, int lock)
1619{
1620 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
1621
1622 return _ehci_lock_async(ctrl, lock);
1623}
Simon Glassa194b252015-03-25 12:22:29 -06001624#endif
1625
Sven Schwermer8a3cb9f12018-11-21 08:43:56 +01001626#if CONFIG_IS_ENABLED(DM_USB)
Simon Glassa194b252015-03-25 12:22:29 -06001627static int ehci_submit_control_msg(struct udevice *dev, struct usb_device *udev,
1628 unsigned long pipe, void *buffer, int length,
1629 struct devrequest *setup)
1630{
1631 debug("%s: dev='%s', udev=%p, udev->dev='%s', portnr=%d\n", __func__,
1632 dev->name, udev, udev->dev->name, udev->portnr);
1633
1634 return _ehci_submit_control_msg(udev, pipe, buffer, length, setup);
1635}
1636
1637static int ehci_submit_bulk_msg(struct udevice *dev, struct usb_device *udev,
1638 unsigned long pipe, void *buffer, int length)
1639{
1640 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1641 return _ehci_submit_bulk_msg(udev, pipe, buffer, length);
1642}
1643
1644static int ehci_submit_int_msg(struct udevice *dev, struct usb_device *udev,
1645 unsigned long pipe, void *buffer, int length,
Michal Suchanek1c95b9f2019-08-18 10:55:27 +02001646 int interval, bool nonblock)
Simon Glassa194b252015-03-25 12:22:29 -06001647{
1648 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
Michal Suchanek1c95b9f2019-08-18 10:55:27 +02001649 return _ehci_submit_int_msg(udev, pipe, buffer, length, interval,
1650 nonblock);
Simon Glassa194b252015-03-25 12:22:29 -06001651}
1652
Hans de Goede0a7fa272015-05-10 14:10:18 +02001653static struct int_queue *ehci_create_int_queue(struct udevice *dev,
1654 struct usb_device *udev, unsigned long pipe, int queuesize,
1655 int elementsize, void *buffer, int interval)
1656{
1657 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1658 return _ehci_create_int_queue(udev, pipe, queuesize, elementsize,
1659 buffer, interval);
1660}
1661
1662static void *ehci_poll_int_queue(struct udevice *dev, struct usb_device *udev,
1663 struct int_queue *queue)
1664{
1665 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1666 return _ehci_poll_int_queue(udev, queue);
1667}
1668
1669static int ehci_destroy_int_queue(struct udevice *dev, struct usb_device *udev,
1670 struct int_queue *queue)
1671{
1672 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1673 return _ehci_destroy_int_queue(udev, queue);
1674}
1675
Bin Meng0441b872017-09-07 06:13:19 -07001676static int ehci_get_max_xfer_size(struct udevice *dev, size_t *size)
1677{
1678 /*
1679 * EHCD can handle any transfer length as long as there is enough
1680 * free heap space left, hence set the theoretical max number here.
1681 */
1682 *size = SIZE_MAX;
1683
1684 return 0;
1685}
1686
Marek Vasut118a9032020-04-06 14:29:44 +02001687static int ehci_lock_async(struct udevice *dev, int lock)
1688{
1689 struct ehci_ctrl *ctrl = dev_get_priv(dev);
1690
1691 return _ehci_lock_async(ctrl, lock);
1692}
1693
Simon Glassa194b252015-03-25 12:22:29 -06001694int ehci_register(struct udevice *dev, struct ehci_hccr *hccr,
1695 struct ehci_hcor *hcor, const struct ehci_ops *ops,
1696 uint tweaks, enum usb_init_type init)
1697{
Hans de Goede76bc7f42015-05-05 11:54:35 +02001698 struct usb_bus_priv *priv = dev_get_uclass_priv(dev);
Simon Glassa194b252015-03-25 12:22:29 -06001699 struct ehci_ctrl *ctrl = dev_get_priv(dev);
Heinrich Schuchardtab4304b2017-11-20 19:33:39 +01001700 int ret = -1;
Simon Glassa194b252015-03-25 12:22:29 -06001701
1702 debug("%s: dev='%s', ctrl=%p, hccr=%p, hcor=%p, init=%d\n", __func__,
1703 dev->name, ctrl, hccr, hcor, init);
1704
Heinrich Schuchardtab4304b2017-11-20 19:33:39 +01001705 if (!ctrl || !hccr || !hcor)
1706 goto err;
1707
Hans de Goede76bc7f42015-05-05 11:54:35 +02001708 priv->desc_before_addr = true;
1709
Simon Glassa194b252015-03-25 12:22:29 -06001710 ehci_setup_ops(ctrl, ops);
1711 ctrl->hccr = hccr;
1712 ctrl->hcor = hcor;
1713 ctrl->priv = ctrl;
1714
Stephen Warren71eced32015-08-20 17:38:05 -06001715 ctrl->init = init;
1716 if (ctrl->init == USB_INIT_DEVICE)
Simon Glassa194b252015-03-25 12:22:29 -06001717 goto done;
Stephen Warren71eced32015-08-20 17:38:05 -06001718
Simon Glassa194b252015-03-25 12:22:29 -06001719 ret = ehci_reset(ctrl);
1720 if (ret)
1721 goto err;
1722
Mateusz Kulikowski3e13f392016-04-03 13:38:26 +02001723 if (ctrl->ops.init_after_reset) {
1724 ret = ctrl->ops.init_after_reset(ctrl);
Mateusz Kulikowskiaab5a5a2016-03-31 23:12:17 +02001725 if (ret)
1726 goto err;
1727 }
1728
Simon Glassa194b252015-03-25 12:22:29 -06001729 ret = ehci_common_init(ctrl, tweaks);
1730 if (ret)
1731 goto err;
1732done:
1733 return 0;
1734err:
1735 free(ctrl);
1736 debug("%s: failed, ret=%d\n", __func__, ret);
1737 return ret;
1738}
1739
1740int ehci_deregister(struct udevice *dev)
1741{
1742 struct ehci_ctrl *ctrl = dev_get_priv(dev);
1743
Stephen Warren71eced32015-08-20 17:38:05 -06001744 if (ctrl->init == USB_INIT_DEVICE)
1745 return 0;
1746
Simon Glassa194b252015-03-25 12:22:29 -06001747 ehci_shutdown(ctrl);
1748
1749 return 0;
1750}
1751
1752struct dm_usb_ops ehci_usb_ops = {
1753 .control = ehci_submit_control_msg,
1754 .bulk = ehci_submit_bulk_msg,
1755 .interrupt = ehci_submit_int_msg,
Hans de Goede0a7fa272015-05-10 14:10:18 +02001756 .create_int_queue = ehci_create_int_queue,
1757 .poll_int_queue = ehci_poll_int_queue,
1758 .destroy_int_queue = ehci_destroy_int_queue,
Bin Meng0441b872017-09-07 06:13:19 -07001759 .get_max_xfer_size = ehci_get_max_xfer_size,
Marek Vasut118a9032020-04-06 14:29:44 +02001760 .lock_async = ehci_lock_async,
Simon Glassa194b252015-03-25 12:22:29 -06001761};
1762
1763#endif