blob: c664b1629e090cc68975cb9d392aa2846fa3cd2e [file] [log] [blame]
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001/*-
2 * Copyright (c) 2007-2008, Juniper Networks, Inc.
michaeldb632992008-12-10 17:55:19 +01003 * Copyright (c) 2008, Excito Elektronik i Skåne AB
Remy Böhmerc0d722f2008-12-13 22:51:58 +01004 * Copyright (c) 2008, Michael Trimarchi <trimarchimichael@yahoo.it>
5 *
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01006 * All rights reserved.
7 *
Simon Glasse62b5262015-07-06 16:47:42 -06008 * SPDX-License-Identifier: GPL-2.0
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01009 */
Michael Trimarchiaaf098c2008-11-28 13:20:46 +010010#include <common.h>
Simon Glass46b01792015-03-25 12:22:29 -060011#include <dm.h>
Patrick Georgi8f62ca62013-03-06 14:08:31 +000012#include <errno.h>
michaeldb632992008-12-10 17:55:19 +010013#include <asm/byteorder.h>
Lucas Stach93ad9082012-09-06 08:00:13 +020014#include <asm/unaligned.h>
Michael Trimarchiaaf098c2008-11-28 13:20:46 +010015#include <usb.h>
16#include <asm/io.h>
michaeldb632992008-12-10 17:55:19 +010017#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060018#include <memalign.h>
Stefan Roese67333f72010-11-26 15:43:28 +010019#include <watchdog.h>
Patrick Georgi8f62ca62013-03-06 14:08:31 +000020#include <linux/compiler.h>
Jean-Christophe PLAGNIOL-VILLARD2731b9a2009-04-03 12:46:58 +020021
22#include "ehci.h"
Michael Trimarchiaaf098c2008-11-28 13:20:46 +010023
Lucas Stach676ae062012-09-26 00:14:35 +020024#ifndef CONFIG_USB_MAX_CONTROLLER_COUNT
25#define CONFIG_USB_MAX_CONTROLLER_COUNT 1
26#endif
Michael Trimarchiaaf098c2008-11-28 13:20:46 +010027
Julius Werner5077f962013-09-24 10:53:07 -070028/*
29 * EHCI spec page 20 says that the HC may take up to 16 uFrames (= 4ms) to halt.
30 * Let's time out after 8 to have a little safety margin on top of that.
31 */
32#define HCHALT_TIMEOUT (8 * 1000)
33
Simon Glass46b01792015-03-25 12:22:29 -060034#ifndef CONFIG_DM_USB
Marek Vasutb9596552013-07-10 03:16:31 +020035static struct ehci_ctrl ehcic[CONFIG_USB_MAX_CONTROLLER_COUNT];
Simon Glass46b01792015-03-25 12:22:29 -060036#endif
Tom Rini71c5de42012-07-15 22:14:24 +000037
38#define ALIGN_END_ADDR(type, ptr, size) \
Rob Herring98ae8402015-03-17 15:46:37 -050039 ((unsigned long)(ptr) + roundup((size) * sizeof(type), USB_DMA_MINALIGN))
Michael Trimarchiaaf098c2008-11-28 13:20:46 +010040
michaeldb632992008-12-10 17:55:19 +010041static struct descriptor {
42 struct usb_hub_descriptor hub;
43 struct usb_device_descriptor device;
44 struct usb_linux_config_descriptor config;
45 struct usb_linux_interface_descriptor interface;
46 struct usb_endpoint_descriptor endpoint;
47} __attribute__ ((packed)) descriptor = {
48 {
49 0x8, /* bDescLength */
50 0x29, /* bDescriptorType: hub descriptor */
51 2, /* bNrPorts -- runtime modified */
52 0, /* wHubCharacteristics */
Vincent Palatin5f4b4f22011-12-05 14:52:22 -080053 10, /* bPwrOn2PwrGood */
michaeldb632992008-12-10 17:55:19 +010054 0, /* bHubCntrCurrent */
55 {}, /* Device removable */
56 {} /* at most 7 ports! XXX */
57 },
58 {
59 0x12, /* bLength */
60 1, /* bDescriptorType: UDESC_DEVICE */
Sergei Shtylyov6d313c82010-02-27 21:29:42 +030061 cpu_to_le16(0x0200), /* bcdUSB: v2.0 */
michaeldb632992008-12-10 17:55:19 +010062 9, /* bDeviceClass: UDCLASS_HUB */
63 0, /* bDeviceSubClass: UDSUBCLASS_HUB */
64 1, /* bDeviceProtocol: UDPROTO_HSHUBSTT */
65 64, /* bMaxPacketSize: 64 bytes */
66 0x0000, /* idVendor */
67 0x0000, /* idProduct */
Sergei Shtylyov6d313c82010-02-27 21:29:42 +030068 cpu_to_le16(0x0100), /* bcdDevice */
michaeldb632992008-12-10 17:55:19 +010069 1, /* iManufacturer */
70 2, /* iProduct */
71 0, /* iSerialNumber */
72 1 /* bNumConfigurations: 1 */
73 },
74 {
75 0x9,
76 2, /* bDescriptorType: UDESC_CONFIG */
77 cpu_to_le16(0x19),
78 1, /* bNumInterface */
79 1, /* bConfigurationValue */
80 0, /* iConfiguration */
81 0x40, /* bmAttributes: UC_SELF_POWER */
82 0 /* bMaxPower */
83 },
84 {
85 0x9, /* bLength */
86 4, /* bDescriptorType: UDESC_INTERFACE */
87 0, /* bInterfaceNumber */
88 0, /* bAlternateSetting */
89 1, /* bNumEndpoints */
90 9, /* bInterfaceClass: UICLASS_HUB */
91 0, /* bInterfaceSubClass: UISUBCLASS_HUB */
92 0, /* bInterfaceProtocol: UIPROTO_HSHUBSTT */
93 0 /* iInterface */
94 },
95 {
96 0x7, /* bLength */
97 5, /* bDescriptorType: UDESC_ENDPOINT */
98 0x81, /* bEndpointAddress:
99 * UE_DIR_IN | EHCI_INTR_ENDPT
100 */
101 3, /* bmAttributes: UE_INTERRUPT */
Tom Rix8f8bd562009-10-31 12:37:38 -0500102 8, /* wMaxPacketSize */
michaeldb632992008-12-10 17:55:19 +0100103 255 /* bInterval */
104 },
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100105};
106
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100107#if defined(CONFIG_EHCI_IS_TDI)
108#define ehci_is_TDI() (1)
109#else
110#define ehci_is_TDI() (0)
111#endif
112
Simon Glass24ed8942015-03-25 12:22:25 -0600113static struct ehci_ctrl *ehci_get_ctrl(struct usb_device *udev)
114{
Simon Glass46b01792015-03-25 12:22:29 -0600115#ifdef CONFIG_DM_USB
Hans de Goede25c8ebd2015-05-05 11:54:33 +0200116 return dev_get_priv(usb_get_bus(udev->dev));
Simon Glass46b01792015-03-25 12:22:29 -0600117#else
Simon Glass24ed8942015-03-25 12:22:25 -0600118 return udev->controller;
Simon Glass46b01792015-03-25 12:22:29 -0600119#endif
Simon Glass24ed8942015-03-25 12:22:25 -0600120}
121
Simon Glassdeb85082015-03-25 12:22:27 -0600122static int ehci_get_port_speed(struct ehci_ctrl *ctrl, uint32_t reg)
Jim Linb068deb2013-03-27 00:52:32 +0000123{
124 return PORTSC_PSPD(reg);
125}
126
Simon Glassdeb85082015-03-25 12:22:27 -0600127static void ehci_set_usbmode(struct ehci_ctrl *ctrl)
Jim Linb068deb2013-03-27 00:52:32 +0000128{
129 uint32_t tmp;
130 uint32_t *reg_ptr;
131
Simon Glass11d18a12015-03-25 12:22:23 -0600132 reg_ptr = (uint32_t *)((u8 *)&ctrl->hcor->or_usbcmd + USBMODE);
Jim Linb068deb2013-03-27 00:52:32 +0000133 tmp = ehci_readl(reg_ptr);
134 tmp |= USBMODE_CM_HC;
135#if defined(CONFIG_EHCI_MMIO_BIG_ENDIAN)
136 tmp |= USBMODE_BE;
137#endif
138 ehci_writel(reg_ptr, tmp);
139}
140
Simon Glassdeb85082015-03-25 12:22:27 -0600141static void ehci_powerup_fixup(struct ehci_ctrl *ctrl, uint32_t *status_reg,
Simon Glass727fce32015-03-25 12:22:21 -0600142 uint32_t *reg)
Marek Vasut3874b6d2011-07-11 02:37:01 +0200143{
144 mdelay(50);
145}
146
Simon Glassdeb85082015-03-25 12:22:27 -0600147static uint32_t *ehci_get_portsc_register(struct ehci_ctrl *ctrl, int port)
Simon Glassaac064f2015-03-25 12:22:17 -0600148{
149 if (port < 0 || port >= CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS) {
150 /* Printing the message would cause a scan failure! */
151 debug("The request port(%u) is not configured\n", port);
152 return NULL;
153 }
154
Simon Glass6a1a8162015-03-25 12:22:24 -0600155 return (uint32_t *)&ctrl->hcor->or_portsc[port];
Simon Glassaac064f2015-03-25 12:22:17 -0600156}
157
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100158static int handshake(uint32_t *ptr, uint32_t mask, uint32_t done, int usec)
michaeldb632992008-12-10 17:55:19 +0100159{
michael51ab1422008-12-11 13:43:55 +0100160 uint32_t result;
161 do {
162 result = ehci_readl(ptr);
Wolfgang Denk09c83a42010-10-22 14:23:00 +0200163 udelay(5);
michael51ab1422008-12-11 13:43:55 +0100164 if (result == ~(uint32_t)0)
165 return -1;
166 result &= mask;
167 if (result == done)
168 return 0;
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100169 usec--;
170 } while (usec > 0);
michael51ab1422008-12-11 13:43:55 +0100171 return -1;
172}
173
Simon Glassaeca43e2015-03-25 12:22:28 -0600174static int ehci_reset(struct ehci_ctrl *ctrl)
michael51ab1422008-12-11 13:43:55 +0100175{
176 uint32_t cmd;
michael51ab1422008-12-11 13:43:55 +0100177 int ret = 0;
178
Simon Glassaeca43e2015-03-25 12:22:28 -0600179 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
Stefan Roese273d7202010-11-26 15:44:00 +0100180 cmd = (cmd & ~CMD_RUN) | CMD_RESET;
Simon Glassaeca43e2015-03-25 12:22:28 -0600181 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
182 ret = handshake((uint32_t *)&ctrl->hcor->or_usbcmd,
Lucas Stach676ae062012-09-26 00:14:35 +0200183 CMD_RESET, 0, 250 * 1000);
michael51ab1422008-12-11 13:43:55 +0100184 if (ret < 0) {
185 printf("EHCI fail to reset\n");
186 goto out;
187 }
188
Jim Linb068deb2013-03-27 00:52:32 +0000189 if (ehci_is_TDI())
Simon Glassaeca43e2015-03-25 12:22:28 -0600190 ctrl->ops.set_usb_mode(ctrl);
Simon Glass9ab4ce22012-02-27 10:52:47 +0000191
192#ifdef CONFIG_USB_EHCI_TXFIFO_THRESH
Simon Glassaeca43e2015-03-25 12:22:28 -0600193 cmd = ehci_readl(&ctrl->hcor->or_txfilltuning);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200194 cmd &= ~TXFIFO_THRESH_MASK;
Simon Glass9ab4ce22012-02-27 10:52:47 +0000195 cmd |= TXFIFO_THRESH(CONFIG_USB_EHCI_TXFIFO_THRESH);
Simon Glassaeca43e2015-03-25 12:22:28 -0600196 ehci_writel(&ctrl->hcor->or_txfilltuning, cmd);
Simon Glass9ab4ce22012-02-27 10:52:47 +0000197#endif
michael51ab1422008-12-11 13:43:55 +0100198out:
199 return ret;
michaeldb632992008-12-10 17:55:19 +0100200}
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100201
Julius Werner5077f962013-09-24 10:53:07 -0700202static int ehci_shutdown(struct ehci_ctrl *ctrl)
203{
204 int i, ret = 0;
205 uint32_t cmd, reg;
206
Marek Vasut1e1be6d2013-12-14 02:03:11 +0100207 if (!ctrl || !ctrl->hcor)
208 return -EINVAL;
209
Julius Werner5077f962013-09-24 10:53:07 -0700210 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
211 cmd &= ~(CMD_PSE | CMD_ASE);
212 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
213 ret = handshake(&ctrl->hcor->or_usbsts, STS_ASS | STS_PSS, 0,
214 100 * 1000);
215
216 if (!ret) {
217 for (i = 0; i < CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS; i++) {
218 reg = ehci_readl(&ctrl->hcor->or_portsc[i]);
219 reg |= EHCI_PS_SUSP;
220 ehci_writel(&ctrl->hcor->or_portsc[i], reg);
221 }
222
223 cmd &= ~CMD_RUN;
224 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
225 ret = handshake(&ctrl->hcor->or_usbsts, STS_HALT, STS_HALT,
226 HCHALT_TIMEOUT);
227 }
228
229 if (ret)
230 puts("EHCI failed to shut down host controller.\n");
231
232 return ret;
233}
234
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100235static int ehci_td_buffer(struct qTD *td, void *buf, size_t sz)
236{
Marek Vasutb8adb122012-04-09 04:07:46 +0200237 uint32_t delta, next;
Rob Herring98ae8402015-03-17 15:46:37 -0500238 uint32_t addr = (unsigned long)buf;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100239 int idx;
240
Ilya Yanok189a6952012-07-15 04:43:49 +0000241 if (addr != ALIGN(addr, ARCH_DMA_MINALIGN))
Marek Vasutb8adb122012-04-09 04:07:46 +0200242 debug("EHCI-HCD: Misaligned buffer address (%p)\n", buf);
243
Ilya Yanok189a6952012-07-15 04:43:49 +0000244 flush_dcache_range(addr, ALIGN(addr + sz, ARCH_DMA_MINALIGN));
245
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100246 idx = 0;
Benoît Thébaudeaucdeb9162012-07-19 22:16:38 +0200247 while (idx < QT_BUFFER_CNT) {
michaeldb632992008-12-10 17:55:19 +0100248 td->qt_buffer[idx] = cpu_to_hc32(addr);
Wolfgang Denk3ed16072010-10-19 16:13:15 +0200249 td->qt_buffer_hi[idx] = 0;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200250 next = (addr + EHCI_PAGE_SIZE) & ~(EHCI_PAGE_SIZE - 1);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100251 delta = next - addr;
252 if (delta >= sz)
253 break;
254 sz -= delta;
255 addr = next;
256 idx++;
257 }
258
Benoît Thébaudeaucdeb9162012-07-19 22:16:38 +0200259 if (idx == QT_BUFFER_CNT) {
Rob Herring98ae8402015-03-17 15:46:37 -0500260 printf("out of buffer pointers (%zu bytes left)\n", sz);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100261 return -1;
262 }
263
264 return 0;
265}
266
Ilya Yanokc60795f2012-11-06 13:48:20 +0000267static inline u8 ehci_encode_speed(enum usb_device_speed speed)
268{
269 #define QH_HIGH_SPEED 2
270 #define QH_FULL_SPEED 0
271 #define QH_LOW_SPEED 1
272 if (speed == USB_SPEED_HIGH)
273 return QH_HIGH_SPEED;
274 if (speed == USB_SPEED_LOW)
275 return QH_LOW_SPEED;
276 return QH_FULL_SPEED;
277}
278
Simon Glass46b01792015-03-25 12:22:29 -0600279static void ehci_update_endpt2_dev_n_port(struct usb_device *udev,
Hans de Goede4e2c4ad2014-09-20 16:51:22 +0200280 struct QH *qh)
281{
Stefan Brünsfaa7db22015-12-22 01:21:03 +0100282 uint8_t portnr = 0;
283 uint8_t hubaddr = 0;
Hans de Goede4e2c4ad2014-09-20 16:51:22 +0200284
Simon Glass46b01792015-03-25 12:22:29 -0600285 if (udev->speed != USB_SPEED_LOW && udev->speed != USB_SPEED_FULL)
Hans de Goede4e2c4ad2014-09-20 16:51:22 +0200286 return;
287
Stefan Brünsfaa7db22015-12-22 01:21:03 +0100288 usb_find_usb2_hub_address_port(udev, &hubaddr, &portnr);
Simon Glass46b01792015-03-25 12:22:29 -0600289
Stefan Brünsfaa7db22015-12-22 01:21:03 +0100290 qh->qh_endpt2 |= cpu_to_hc32(QH_ENDPT2_PORTNUM(portnr) |
291 QH_ENDPT2_HUBADDR(hubaddr));
Hans de Goede4e2c4ad2014-09-20 16:51:22 +0200292}
293
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100294static int
295ehci_submit_async(struct usb_device *dev, unsigned long pipe, void *buffer,
296 int length, struct devrequest *req)
297{
Tom Rini71c5de42012-07-15 22:14:24 +0000298 ALLOC_ALIGN_BUFFER(struct QH, qh, 1, USB_DMA_MINALIGN);
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200299 struct qTD *qtd;
300 int qtd_count = 0;
Marek Vasutde98e8b2012-04-08 23:32:05 +0200301 int qtd_counter = 0;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100302 volatile struct qTD *vtd;
303 unsigned long ts;
304 uint32_t *tdp;
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200305 uint32_t endpt, maxpacket, token, usbsts;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100306 uint32_t c, toggle;
michaeldb632992008-12-10 17:55:19 +0100307 uint32_t cmd;
Simon Glass96820a32011-02-07 14:42:16 -0800308 int timeout;
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100309 int ret = 0;
Simon Glass24ed8942015-03-25 12:22:25 -0600310 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100311
michaeldb632992008-12-10 17:55:19 +0100312 debug("dev=%p, pipe=%lx, buffer=%p, length=%d, req=%p\n", dev, pipe,
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100313 buffer, length, req);
314 if (req != NULL)
michaeldb632992008-12-10 17:55:19 +0100315 debug("req=%u (%#x), type=%u (%#x), value=%u (%#x), index=%u\n",
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100316 req->request, req->request,
317 req->requesttype, req->requesttype,
318 le16_to_cpu(req->value), le16_to_cpu(req->value),
michaeldb632992008-12-10 17:55:19 +0100319 le16_to_cpu(req->index));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100320
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200321#define PKT_ALIGN 512
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200322 /*
323 * The USB transfer is split into qTD transfers. Eeach qTD transfer is
324 * described by a transfer descriptor (the qTD). The qTDs form a linked
325 * list with a queue head (QH).
326 *
327 * Each qTD transfer starts with a new USB packet, i.e. a packet cannot
328 * have its beginning in a qTD transfer and its end in the following
329 * one, so the qTD transfer lengths have to be chosen accordingly.
330 *
331 * Each qTD transfer uses up to QT_BUFFER_CNT data buffers, mapped to
332 * single pages. The first data buffer can start at any offset within a
333 * page (not considering the cache-line alignment issues), while the
334 * following buffers must be page-aligned. There is no alignment
335 * constraint on the size of a qTD transfer.
336 */
337 if (req != NULL)
338 /* 1 qTD will be needed for SETUP, and 1 for ACK. */
339 qtd_count += 1 + 1;
340 if (length > 0 || req == NULL) {
341 /*
342 * Determine the qTD transfer size that will be used for the
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200343 * data payload (not considering the first qTD transfer, which
344 * may be longer or shorter, and the final one, which may be
345 * shorter).
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200346 *
347 * In order to keep each packet within a qTD transfer, the qTD
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200348 * transfer size is aligned to PKT_ALIGN, which is a multiple of
349 * wMaxPacketSize (except in some cases for interrupt transfers,
350 * see comment in submit_int_msg()).
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200351 *
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200352 * By default, i.e. if the input buffer is aligned to PKT_ALIGN,
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200353 * QT_BUFFER_CNT full pages will be used.
354 */
355 int xfr_sz = QT_BUFFER_CNT;
356 /*
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200357 * However, if the input buffer is not aligned to PKT_ALIGN, the
358 * qTD transfer size will be one page shorter, and the first qTD
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200359 * data buffer of each transfer will be page-unaligned.
360 */
Rob Herring98ae8402015-03-17 15:46:37 -0500361 if ((unsigned long)buffer & (PKT_ALIGN - 1))
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200362 xfr_sz--;
363 /* Convert the qTD transfer size to bytes. */
364 xfr_sz *= EHCI_PAGE_SIZE;
365 /*
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200366 * Approximate by excess the number of qTDs that will be
367 * required for the data payload. The exact formula is way more
368 * complicated and saves at most 2 qTDs, i.e. a total of 128
369 * bytes.
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200370 */
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200371 qtd_count += 2 + length / xfr_sz;
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200372 }
373/*
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200374 * Threshold value based on the worst-case total size of the allocated qTDs for
375 * a mass-storage transfer of 65535 blocks of 512 bytes.
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200376 */
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200377#if CONFIG_SYS_MALLOC_LEN <= 64 + 128 * 1024
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200378#warning CONFIG_SYS_MALLOC_LEN may be too small for EHCI
379#endif
380 qtd = memalign(USB_DMA_MINALIGN, qtd_count * sizeof(struct qTD));
381 if (qtd == NULL) {
382 printf("unable to allocate TDs\n");
383 return -1;
384 }
385
Tom Rini71c5de42012-07-15 22:14:24 +0000386 memset(qh, 0, sizeof(struct QH));
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200387 memset(qtd, 0, qtd_count * sizeof(*qtd));
Marek Vasutde98e8b2012-04-08 23:32:05 +0200388
Marek Vasutb8adb122012-04-09 04:07:46 +0200389 toggle = usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
390
Marek Vasut41b1f0a2012-04-09 04:13:00 +0200391 /*
392 * Setup QH (3.6 in ehci-r10.pdf)
393 *
394 * qh_link ................. 03-00 H
395 * qh_endpt1 ............... 07-04 H
396 * qh_endpt2 ............... 0B-08 H
397 * - qh_curtd
398 * qh_overlay.qt_next ...... 13-10 H
399 * - qh_overlay.qt_altnext
400 */
Rob Herring98ae8402015-03-17 15:46:37 -0500401 qh->qh_link = cpu_to_hc32((unsigned long)&ctrl->qh_list | QH_LINK_TYPE_QH);
Ilya Yanokc60795f2012-11-06 13:48:20 +0000402 c = (dev->speed != USB_SPEED_HIGH) && !usb_pipeendpoint(pipe);
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200403 maxpacket = usb_maxpacket(dev, pipe);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200404 endpt = QH_ENDPT1_RL(8) | QH_ENDPT1_C(c) |
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200405 QH_ENDPT1_MAXPKTLEN(maxpacket) | QH_ENDPT1_H(0) |
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200406 QH_ENDPT1_DTC(QH_ENDPT1_DTC_DT_FROM_QTD) |
Ilya Yanokc60795f2012-11-06 13:48:20 +0000407 QH_ENDPT1_EPS(ehci_encode_speed(dev->speed)) |
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200408 QH_ENDPT1_ENDPT(usb_pipeendpoint(pipe)) | QH_ENDPT1_I(0) |
409 QH_ENDPT1_DEVADDR(usb_pipedevice(pipe));
Tom Rini71c5de42012-07-15 22:14:24 +0000410 qh->qh_endpt1 = cpu_to_hc32(endpt);
Hans de Goede4e2c4ad2014-09-20 16:51:22 +0200411 endpt = QH_ENDPT2_MULT(1) | QH_ENDPT2_UFCMASK(0) | QH_ENDPT2_UFSMASK(0);
Tom Rini71c5de42012-07-15 22:14:24 +0000412 qh->qh_endpt2 = cpu_to_hc32(endpt);
Hans de Goede4e2c4ad2014-09-20 16:51:22 +0200413 ehci_update_endpt2_dev_n_port(dev, qh);
Tom Rini71c5de42012-07-15 22:14:24 +0000414 qh->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
Stephen Warren2456b972014-02-07 09:53:50 -0700415 qh->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100416
Tom Rini71c5de42012-07-15 22:14:24 +0000417 tdp = &qh->qh_overlay.qt_next;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100418
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100419 if (req != NULL) {
Marek Vasut41b1f0a2012-04-09 04:13:00 +0200420 /*
421 * Setup request qTD (3.5 in ehci-r10.pdf)
422 *
423 * qt_next ................ 03-00 H
424 * qt_altnext ............. 07-04 H
425 * qt_token ............... 0B-08 H
426 *
427 * [ buffer, buffer_hi ] loaded with "req".
428 */
Marek Vasutde98e8b2012-04-08 23:32:05 +0200429 qtd[qtd_counter].qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
430 qtd[qtd_counter].qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200431 token = QT_TOKEN_DT(0) | QT_TOKEN_TOTALBYTES(sizeof(*req)) |
432 QT_TOKEN_IOC(0) | QT_TOKEN_CPAGE(0) | QT_TOKEN_CERR(3) |
433 QT_TOKEN_PID(QT_TOKEN_PID_SETUP) |
434 QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE);
Marek Vasutde98e8b2012-04-08 23:32:05 +0200435 qtd[qtd_counter].qt_token = cpu_to_hc32(token);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200436 if (ehci_td_buffer(&qtd[qtd_counter], req, sizeof(*req))) {
437 printf("unable to construct SETUP TD\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100438 goto fail;
439 }
Marek Vasut41b1f0a2012-04-09 04:13:00 +0200440 /* Update previous qTD! */
Rob Herring98ae8402015-03-17 15:46:37 -0500441 *tdp = cpu_to_hc32((unsigned long)&qtd[qtd_counter]);
Marek Vasutde98e8b2012-04-08 23:32:05 +0200442 tdp = &qtd[qtd_counter++].qt_next;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100443 toggle = 1;
444 }
445
446 if (length > 0 || req == NULL) {
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200447 uint8_t *buf_ptr = buffer;
448 int left_length = length;
449
450 do {
451 /*
452 * Determine the size of this qTD transfer. By default,
453 * QT_BUFFER_CNT full pages can be used.
454 */
455 int xfr_bytes = QT_BUFFER_CNT * EHCI_PAGE_SIZE;
456 /*
457 * However, if the input buffer is not page-aligned, the
458 * portion of the first page before the buffer start
459 * offset within that page is unusable.
460 */
Rob Herring98ae8402015-03-17 15:46:37 -0500461 xfr_bytes -= (unsigned long)buf_ptr & (EHCI_PAGE_SIZE - 1);
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200462 /*
463 * In order to keep each packet within a qTD transfer,
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200464 * align the qTD transfer size to PKT_ALIGN.
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200465 */
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200466 xfr_bytes &= ~(PKT_ALIGN - 1);
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200467 /*
468 * This transfer may be shorter than the available qTD
469 * transfer size that has just been computed.
470 */
471 xfr_bytes = min(xfr_bytes, left_length);
472
473 /*
474 * Setup request qTD (3.5 in ehci-r10.pdf)
475 *
476 * qt_next ................ 03-00 H
477 * qt_altnext ............. 07-04 H
478 * qt_token ............... 0B-08 H
479 *
480 * [ buffer, buffer_hi ] loaded with "buffer".
481 */
482 qtd[qtd_counter].qt_next =
483 cpu_to_hc32(QT_NEXT_TERMINATE);
484 qtd[qtd_counter].qt_altnext =
485 cpu_to_hc32(QT_NEXT_TERMINATE);
486 token = QT_TOKEN_DT(toggle) |
487 QT_TOKEN_TOTALBYTES(xfr_bytes) |
488 QT_TOKEN_IOC(req == NULL) | QT_TOKEN_CPAGE(0) |
489 QT_TOKEN_CERR(3) |
490 QT_TOKEN_PID(usb_pipein(pipe) ?
491 QT_TOKEN_PID_IN : QT_TOKEN_PID_OUT) |
492 QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE);
493 qtd[qtd_counter].qt_token = cpu_to_hc32(token);
494 if (ehci_td_buffer(&qtd[qtd_counter], buf_ptr,
495 xfr_bytes)) {
496 printf("unable to construct DATA TD\n");
497 goto fail;
498 }
499 /* Update previous qTD! */
Rob Herring98ae8402015-03-17 15:46:37 -0500500 *tdp = cpu_to_hc32((unsigned long)&qtd[qtd_counter]);
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200501 tdp = &qtd[qtd_counter++].qt_next;
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200502 /*
503 * Data toggle has to be adjusted since the qTD transfer
504 * size is not always an even multiple of
505 * wMaxPacketSize.
506 */
507 if ((xfr_bytes / maxpacket) & 1)
508 toggle ^= 1;
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200509 buf_ptr += xfr_bytes;
510 left_length -= xfr_bytes;
511 } while (left_length > 0);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100512 }
513
514 if (req != NULL) {
Marek Vasut41b1f0a2012-04-09 04:13:00 +0200515 /*
516 * Setup request qTD (3.5 in ehci-r10.pdf)
517 *
518 * qt_next ................ 03-00 H
519 * qt_altnext ............. 07-04 H
520 * qt_token ............... 0B-08 H
521 */
Marek Vasutde98e8b2012-04-08 23:32:05 +0200522 qtd[qtd_counter].qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
523 qtd[qtd_counter].qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200524 token = QT_TOKEN_DT(1) | QT_TOKEN_TOTALBYTES(0) |
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200525 QT_TOKEN_IOC(1) | QT_TOKEN_CPAGE(0) | QT_TOKEN_CERR(3) |
526 QT_TOKEN_PID(usb_pipein(pipe) ?
527 QT_TOKEN_PID_OUT : QT_TOKEN_PID_IN) |
528 QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE);
Marek Vasutde98e8b2012-04-08 23:32:05 +0200529 qtd[qtd_counter].qt_token = cpu_to_hc32(token);
Marek Vasut41b1f0a2012-04-09 04:13:00 +0200530 /* Update previous qTD! */
Rob Herring98ae8402015-03-17 15:46:37 -0500531 *tdp = cpu_to_hc32((unsigned long)&qtd[qtd_counter]);
Marek Vasutde98e8b2012-04-08 23:32:05 +0200532 tdp = &qtd[qtd_counter++].qt_next;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100533 }
534
Rob Herring98ae8402015-03-17 15:46:37 -0500535 ctrl->qh_list.qh_link = cpu_to_hc32((unsigned long)qh | QH_LINK_TYPE_QH);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100536
Stefan Roesedaa2daf2009-01-21 17:12:19 +0100537 /* Flush dcache */
Rob Herring98ae8402015-03-17 15:46:37 -0500538 flush_dcache_range((unsigned long)&ctrl->qh_list,
Lucas Stach676ae062012-09-26 00:14:35 +0200539 ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1));
Rob Herring98ae8402015-03-17 15:46:37 -0500540 flush_dcache_range((unsigned long)qh, ALIGN_END_ADDR(struct QH, qh, 1));
541 flush_dcache_range((unsigned long)qtd,
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200542 ALIGN_END_ADDR(struct qTD, qtd, qtd_count));
Stefan Roesedaa2daf2009-01-21 17:12:19 +0100543
Ilya Yanokc7701af2012-07-15 22:12:08 +0000544 /* Set async. queue head pointer. */
Rob Herring98ae8402015-03-17 15:46:37 -0500545 ehci_writel(&ctrl->hcor->or_asynclistaddr, (unsigned long)&ctrl->qh_list);
Ilya Yanokc7701af2012-07-15 22:12:08 +0000546
Lucas Stach676ae062012-09-26 00:14:35 +0200547 usbsts = ehci_readl(&ctrl->hcor->or_usbsts);
548 ehci_writel(&ctrl->hcor->or_usbsts, (usbsts & 0x3f));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100549
550 /* Enable async. schedule. */
Lucas Stach676ae062012-09-26 00:14:35 +0200551 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
michael51ab1422008-12-11 13:43:55 +0100552 cmd |= CMD_ASE;
Lucas Stach676ae062012-09-26 00:14:35 +0200553 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
michaeldb632992008-12-10 17:55:19 +0100554
Lucas Stach676ae062012-09-26 00:14:35 +0200555 ret = handshake((uint32_t *)&ctrl->hcor->or_usbsts, STS_ASS, STS_ASS,
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100556 100 * 1000);
557 if (ret < 0) {
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200558 printf("EHCI fail timeout STS_ASS set\n");
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100559 goto fail;
michael51ab1422008-12-11 13:43:55 +0100560 }
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100561
562 /* Wait for TDs to be processed. */
563 ts = get_timer(0);
Marek Vasutde98e8b2012-04-08 23:32:05 +0200564 vtd = &qtd[qtd_counter - 1];
Simon Glass96820a32011-02-07 14:42:16 -0800565 timeout = USB_TIMEOUT_MS(pipe);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100566 do {
Stefan Roesedaa2daf2009-01-21 17:12:19 +0100567 /* Invalidate dcache */
Rob Herring98ae8402015-03-17 15:46:37 -0500568 invalidate_dcache_range((unsigned long)&ctrl->qh_list,
Lucas Stach676ae062012-09-26 00:14:35 +0200569 ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1));
Rob Herring98ae8402015-03-17 15:46:37 -0500570 invalidate_dcache_range((unsigned long)qh,
Tom Rini71c5de42012-07-15 22:14:24 +0000571 ALIGN_END_ADDR(struct QH, qh, 1));
Rob Herring98ae8402015-03-17 15:46:37 -0500572 invalidate_dcache_range((unsigned long)qtd,
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200573 ALIGN_END_ADDR(struct qTD, qtd, qtd_count));
Marek Vasutb8adb122012-04-09 04:07:46 +0200574
michaeldb632992008-12-10 17:55:19 +0100575 token = hc32_to_cpu(vtd->qt_token);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200576 if (!(QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE))
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100577 break;
Stefan Roese67333f72010-11-26 15:43:28 +0100578 WATCHDOG_RESET();
Simon Glass96820a32011-02-07 14:42:16 -0800579 } while (get_timer(ts) < timeout);
580
Ilya Yanok189a6952012-07-15 04:43:49 +0000581 /*
582 * Invalidate the memory area occupied by buffer
583 * Don't try to fix the buffer alignment, if it isn't properly
584 * aligned it's upper layer's fault so let invalidate_dcache_range()
585 * vow about it. But we have to fix the length as it's actual
586 * transfer length and can be unaligned. This is potentially
587 * dangerous operation, it's responsibility of the calling
588 * code to make sure enough space is reserved.
589 */
Rob Herring98ae8402015-03-17 15:46:37 -0500590 invalidate_dcache_range((unsigned long)buffer,
591 ALIGN((unsigned long)buffer + length, ARCH_DMA_MINALIGN));
Marek Vasutb8adb122012-04-09 04:07:46 +0200592
Simon Glass96820a32011-02-07 14:42:16 -0800593 /* Check that the TD processing happened */
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200594 if (QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE)
Simon Glass96820a32011-02-07 14:42:16 -0800595 printf("EHCI timed out on TD - token=%#x\n", token);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100596
597 /* Disable async schedule. */
Lucas Stach676ae062012-09-26 00:14:35 +0200598 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
michaeldb632992008-12-10 17:55:19 +0100599 cmd &= ~CMD_ASE;
Lucas Stach676ae062012-09-26 00:14:35 +0200600 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
michael51ab1422008-12-11 13:43:55 +0100601
Lucas Stach676ae062012-09-26 00:14:35 +0200602 ret = handshake((uint32_t *)&ctrl->hcor->or_usbsts, STS_ASS, 0,
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100603 100 * 1000);
604 if (ret < 0) {
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200605 printf("EHCI fail timeout STS_ASS reset\n");
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100606 goto fail;
michael51ab1422008-12-11 13:43:55 +0100607 }
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100608
Tom Rini71c5de42012-07-15 22:14:24 +0000609 token = hc32_to_cpu(qh->qh_overlay.qt_token);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200610 if (!(QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE)) {
michaeldb632992008-12-10 17:55:19 +0100611 debug("TOKEN=%#x\n", token);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200612 switch (QT_TOKEN_GET_STATUS(token) &
613 ~(QT_TOKEN_STATUS_SPLITXSTATE | QT_TOKEN_STATUS_PERR)) {
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100614 case 0:
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200615 toggle = QT_TOKEN_GET_DT(token);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100616 usb_settoggle(dev, usb_pipeendpoint(pipe),
617 usb_pipeout(pipe), toggle);
618 dev->status = 0;
619 break;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200620 case QT_TOKEN_STATUS_HALTED:
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100621 dev->status = USB_ST_STALLED;
622 break;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200623 case QT_TOKEN_STATUS_ACTIVE | QT_TOKEN_STATUS_DATBUFERR:
624 case QT_TOKEN_STATUS_DATBUFERR:
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100625 dev->status = USB_ST_BUF_ERR;
626 break;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200627 case QT_TOKEN_STATUS_HALTED | QT_TOKEN_STATUS_BABBLEDET:
628 case QT_TOKEN_STATUS_BABBLEDET:
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100629 dev->status = USB_ST_BABBLE_DET;
630 break;
631 default:
632 dev->status = USB_ST_CRC_ERR;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200633 if (QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_HALTED)
Anatolij Gustschin222d6df2010-11-02 11:47:29 +0100634 dev->status |= USB_ST_STALLED;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100635 break;
636 }
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200637 dev->act_len = length - QT_TOKEN_GET_TOTALBYTES(token);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100638 } else {
639 dev->act_len = 0;
Kuo-Jung Sue82a3162013-05-15 15:29:23 +0800640#ifndef CONFIG_USB_EHCI_FARADAY
michaeldb632992008-12-10 17:55:19 +0100641 debug("dev=%u, usbsts=%#x, p[1]=%#x, p[2]=%#x\n",
Lucas Stach676ae062012-09-26 00:14:35 +0200642 dev->devnum, ehci_readl(&ctrl->hcor->or_usbsts),
643 ehci_readl(&ctrl->hcor->or_portsc[0]),
644 ehci_readl(&ctrl->hcor->or_portsc[1]));
Kuo-Jung Sue82a3162013-05-15 15:29:23 +0800645#endif
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100646 }
647
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200648 free(qtd);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100649 return (dev->status != USB_ST_NOT_PROC) ? 0 : -1;
650
651fail:
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200652 free(qtd);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100653 return -1;
654}
655
Simon Glass24ed8942015-03-25 12:22:25 -0600656static int ehci_submit_root(struct usb_device *dev, unsigned long pipe,
657 void *buffer, int length, struct devrequest *req)
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100658{
659 uint8_t tmpbuf[4];
660 u16 typeReq;
michaeldb632992008-12-10 17:55:19 +0100661 void *srcptr = NULL;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100662 int len, srclen;
663 uint32_t reg;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100664 uint32_t *status_reg;
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000665 int port = le16_to_cpu(req->index) & 0xff;
Simon Glass24ed8942015-03-25 12:22:25 -0600666 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100667
668 srclen = 0;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100669
michaeldb632992008-12-10 17:55:19 +0100670 debug("req=%u (%#x), type=%u (%#x), value=%u, index=%u\n",
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100671 req->request, req->request,
672 req->requesttype, req->requesttype,
673 le16_to_cpu(req->value), le16_to_cpu(req->index));
674
Prafulla Wadaskar44259bb2009-07-17 19:56:30 +0530675 typeReq = req->request | req->requesttype << 8;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100676
Prafulla Wadaskar44259bb2009-07-17 19:56:30 +0530677 switch (typeReq) {
Kuo-Jung Su9c6a9d72013-05-15 15:29:20 +0800678 case USB_REQ_GET_STATUS | ((USB_RT_PORT | USB_DIR_IN) << 8):
679 case USB_REQ_SET_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
680 case USB_REQ_CLEAR_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
Simon Glassdeb85082015-03-25 12:22:27 -0600681 status_reg = ctrl->ops.get_portsc_register(ctrl, port - 1);
Kuo-Jung Su1dde1422013-05-15 15:29:21 +0800682 if (!status_reg)
Kuo-Jung Su9c6a9d72013-05-15 15:29:20 +0800683 return -1;
Kuo-Jung Su9c6a9d72013-05-15 15:29:20 +0800684 break;
685 default:
686 status_reg = NULL;
687 break;
688 }
689
690 switch (typeReq) {
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100691 case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
692 switch (le16_to_cpu(req->value) >> 8) {
693 case USB_DT_DEVICE:
michaeldb632992008-12-10 17:55:19 +0100694 debug("USB_DT_DEVICE request\n");
695 srcptr = &descriptor.device;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200696 srclen = descriptor.device.bLength;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100697 break;
698 case USB_DT_CONFIG:
michaeldb632992008-12-10 17:55:19 +0100699 debug("USB_DT_CONFIG config\n");
700 srcptr = &descriptor.config;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200701 srclen = descriptor.config.bLength +
702 descriptor.interface.bLength +
703 descriptor.endpoint.bLength;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100704 break;
705 case USB_DT_STRING:
michaeldb632992008-12-10 17:55:19 +0100706 debug("USB_DT_STRING config\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100707 switch (le16_to_cpu(req->value) & 0xff) {
708 case 0: /* Language */
709 srcptr = "\4\3\1\0";
710 srclen = 4;
711 break;
712 case 1: /* Vendor */
713 srcptr = "\16\3u\0-\0b\0o\0o\0t\0";
714 srclen = 14;
715 break;
716 case 2: /* Product */
717 srcptr = "\52\3E\0H\0C\0I\0 "
718 "\0H\0o\0s\0t\0 "
719 "\0C\0o\0n\0t\0r\0o\0l\0l\0e\0r\0";
720 srclen = 42;
721 break;
722 default:
michaeldb632992008-12-10 17:55:19 +0100723 debug("unknown value DT_STRING %x\n",
724 le16_to_cpu(req->value));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100725 goto unknown;
726 }
727 break;
728 default:
michaeldb632992008-12-10 17:55:19 +0100729 debug("unknown value %x\n", le16_to_cpu(req->value));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100730 goto unknown;
731 }
732 break;
733 case USB_REQ_GET_DESCRIPTOR | ((USB_DIR_IN | USB_RT_HUB) << 8):
734 switch (le16_to_cpu(req->value) >> 8) {
735 case USB_DT_HUB:
michaeldb632992008-12-10 17:55:19 +0100736 debug("USB_DT_HUB config\n");
737 srcptr = &descriptor.hub;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200738 srclen = descriptor.hub.bLength;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100739 break;
740 default:
michaeldb632992008-12-10 17:55:19 +0100741 debug("unknown value %x\n", le16_to_cpu(req->value));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100742 goto unknown;
743 }
744 break;
745 case USB_REQ_SET_ADDRESS | (USB_RECIP_DEVICE << 8):
michaeldb632992008-12-10 17:55:19 +0100746 debug("USB_REQ_SET_ADDRESS\n");
Lucas Stach676ae062012-09-26 00:14:35 +0200747 ctrl->rootdev = le16_to_cpu(req->value);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100748 break;
749 case DeviceOutRequest | USB_REQ_SET_CONFIGURATION:
michaeldb632992008-12-10 17:55:19 +0100750 debug("USB_REQ_SET_CONFIGURATION\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100751 /* Nothing to do */
752 break;
753 case USB_REQ_GET_STATUS | ((USB_DIR_IN | USB_RT_HUB) << 8):
754 tmpbuf[0] = 1; /* USB_STATUS_SELFPOWERED */
755 tmpbuf[1] = 0;
756 srcptr = tmpbuf;
757 srclen = 2;
758 break;
michaeldb632992008-12-10 17:55:19 +0100759 case USB_REQ_GET_STATUS | ((USB_RT_PORT | USB_DIR_IN) << 8):
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100760 memset(tmpbuf, 0, 4);
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100761 reg = ehci_readl(status_reg);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100762 if (reg & EHCI_PS_CS)
763 tmpbuf[0] |= USB_PORT_STAT_CONNECTION;
764 if (reg & EHCI_PS_PE)
765 tmpbuf[0] |= USB_PORT_STAT_ENABLE;
766 if (reg & EHCI_PS_SUSP)
767 tmpbuf[0] |= USB_PORT_STAT_SUSPEND;
768 if (reg & EHCI_PS_OCA)
769 tmpbuf[0] |= USB_PORT_STAT_OVERCURRENT;
Sergei Shtylyovc8b2d1d2010-02-27 21:33:21 +0300770 if (reg & EHCI_PS_PR)
771 tmpbuf[0] |= USB_PORT_STAT_RESET;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100772 if (reg & EHCI_PS_PP)
773 tmpbuf[1] |= USB_PORT_STAT_POWER >> 8;
Stefan Roese597eb282009-01-21 17:12:01 +0100774
775 if (ehci_is_TDI()) {
Simon Glassdeb85082015-03-25 12:22:27 -0600776 switch (ctrl->ops.get_port_speed(ctrl, reg)) {
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200777 case PORTSC_PSPD_FS:
Stefan Roese597eb282009-01-21 17:12:01 +0100778 break;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200779 case PORTSC_PSPD_LS:
Stefan Roese597eb282009-01-21 17:12:01 +0100780 tmpbuf[1] |= USB_PORT_STAT_LOW_SPEED >> 8;
781 break;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200782 case PORTSC_PSPD_HS:
Stefan Roese597eb282009-01-21 17:12:01 +0100783 default:
784 tmpbuf[1] |= USB_PORT_STAT_HIGH_SPEED >> 8;
785 break;
786 }
787 } else {
788 tmpbuf[1] |= USB_PORT_STAT_HIGH_SPEED >> 8;
789 }
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100790
791 if (reg & EHCI_PS_CSC)
792 tmpbuf[2] |= USB_PORT_STAT_C_CONNECTION;
793 if (reg & EHCI_PS_PEC)
794 tmpbuf[2] |= USB_PORT_STAT_C_ENABLE;
795 if (reg & EHCI_PS_OCC)
796 tmpbuf[2] |= USB_PORT_STAT_C_OVERCURRENT;
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000797 if (ctrl->portreset & (1 << port))
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100798 tmpbuf[2] |= USB_PORT_STAT_C_RESET;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100799
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100800 srcptr = tmpbuf;
801 srclen = 4;
802 break;
michaeldb632992008-12-10 17:55:19 +0100803 case USB_REQ_SET_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100804 reg = ehci_readl(status_reg);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100805 reg &= ~EHCI_PS_CLEAR;
806 switch (le16_to_cpu(req->value)) {
michael51ab1422008-12-11 13:43:55 +0100807 case USB_PORT_FEAT_ENABLE:
808 reg |= EHCI_PS_PE;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100809 ehci_writel(status_reg, reg);
michael51ab1422008-12-11 13:43:55 +0100810 break;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100811 case USB_PORT_FEAT_POWER:
Lucas Stach676ae062012-09-26 00:14:35 +0200812 if (HCS_PPC(ehci_readl(&ctrl->hccr->cr_hcsparams))) {
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100813 reg |= EHCI_PS_PP;
814 ehci_writel(status_reg, reg);
815 }
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100816 break;
817 case USB_PORT_FEAT_RESET:
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100818 if ((reg & (EHCI_PS_PE | EHCI_PS_CS)) == EHCI_PS_CS &&
819 !ehci_is_TDI() &&
820 EHCI_PS_IS_LOWSPEED(reg)) {
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100821 /* Low speed device, give up ownership. */
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100822 debug("port %d low speed --> companion\n",
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000823 port - 1);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100824 reg |= EHCI_PS_PO;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100825 ehci_writel(status_reg, reg);
Hans de Goede45b9ea12015-05-10 14:10:16 +0200826 return -ENXIO;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100827 } else {
Sergei Shtylyovc8b2d1d2010-02-27 21:33:21 +0300828 int ret;
829
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100830 reg |= EHCI_PS_PR;
831 reg &= ~EHCI_PS_PE;
832 ehci_writel(status_reg, reg);
833 /*
834 * caller must wait, then call GetPortStatus
835 * usb 2.0 specification say 50 ms resets on
836 * root
837 */
Simon Glassdeb85082015-03-25 12:22:27 -0600838 ctrl->ops.powerup_fixup(ctrl, status_reg, &reg);
Marek Vasut3874b6d2011-07-11 02:37:01 +0200839
Chris Zhangb4161912010-01-06 13:34:04 -0800840 ehci_writel(status_reg, reg & ~EHCI_PS_PR);
Sergei Shtylyovc8b2d1d2010-02-27 21:33:21 +0300841 /*
842 * A host controller must terminate the reset
843 * and stabilize the state of the port within
844 * 2 milliseconds
845 */
846 ret = handshake(status_reg, EHCI_PS_PR, 0,
847 2 * 1000);
Hans de Goede71b94522015-05-10 14:10:13 +0200848 if (!ret) {
849 reg = ehci_readl(status_reg);
850 if ((reg & (EHCI_PS_PE | EHCI_PS_CS))
851 == EHCI_PS_CS && !ehci_is_TDI()) {
852 debug("port %d full speed --> companion\n", port - 1);
853 reg &= ~EHCI_PS_CLEAR;
854 reg |= EHCI_PS_PO;
855 ehci_writel(status_reg, reg);
Hans de Goede45b9ea12015-05-10 14:10:16 +0200856 return -ENXIO;
Hans de Goede71b94522015-05-10 14:10:13 +0200857 } else {
858 ctrl->portreset |= 1 << port;
859 }
860 } else {
Sergei Shtylyovc8b2d1d2010-02-27 21:33:21 +0300861 printf("port(%d) reset error\n",
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000862 port - 1);
Hans de Goede71b94522015-05-10 14:10:13 +0200863 }
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100864 }
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100865 break;
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000866 case USB_PORT_FEAT_TEST:
Julius Werner5077f962013-09-24 10:53:07 -0700867 ehci_shutdown(ctrl);
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000868 reg &= ~(0xf << 16);
869 reg |= ((le16_to_cpu(req->index) >> 8) & 0xf) << 16;
870 ehci_writel(status_reg, reg);
871 break;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100872 default:
michaeldb632992008-12-10 17:55:19 +0100873 debug("unknown feature %x\n", le16_to_cpu(req->value));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100874 goto unknown;
875 }
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100876 /* unblock posted writes */
Lucas Stach676ae062012-09-26 00:14:35 +0200877 (void) ehci_readl(&ctrl->hcor->or_usbcmd);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100878 break;
michaeldb632992008-12-10 17:55:19 +0100879 case USB_REQ_CLEAR_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100880 reg = ehci_readl(status_reg);
Simon Glassed10e662013-05-10 19:49:00 -0700881 reg &= ~EHCI_PS_CLEAR;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100882 switch (le16_to_cpu(req->value)) {
883 case USB_PORT_FEAT_ENABLE:
884 reg &= ~EHCI_PS_PE;
885 break;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100886 case USB_PORT_FEAT_C_ENABLE:
Simon Glassed10e662013-05-10 19:49:00 -0700887 reg |= EHCI_PS_PE;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100888 break;
889 case USB_PORT_FEAT_POWER:
Lucas Stach676ae062012-09-26 00:14:35 +0200890 if (HCS_PPC(ehci_readl(&ctrl->hccr->cr_hcsparams)))
Simon Glassed10e662013-05-10 19:49:00 -0700891 reg &= ~EHCI_PS_PP;
892 break;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100893 case USB_PORT_FEAT_C_CONNECTION:
Simon Glassed10e662013-05-10 19:49:00 -0700894 reg |= EHCI_PS_CSC;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100895 break;
michael51ab1422008-12-11 13:43:55 +0100896 case USB_PORT_FEAT_OVER_CURRENT:
Simon Glassed10e662013-05-10 19:49:00 -0700897 reg |= EHCI_PS_OCC;
michael51ab1422008-12-11 13:43:55 +0100898 break;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100899 case USB_PORT_FEAT_C_RESET:
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000900 ctrl->portreset &= ~(1 << port);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100901 break;
902 default:
michaeldb632992008-12-10 17:55:19 +0100903 debug("unknown feature %x\n", le16_to_cpu(req->value));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100904 goto unknown;
905 }
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100906 ehci_writel(status_reg, reg);
907 /* unblock posted write */
Lucas Stach676ae062012-09-26 00:14:35 +0200908 (void) ehci_readl(&ctrl->hcor->or_usbcmd);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100909 break;
910 default:
michaeldb632992008-12-10 17:55:19 +0100911 debug("Unknown request\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100912 goto unknown;
913 }
914
Mike Frysinger5b84dd62012-03-05 13:47:00 +0000915 mdelay(1);
Masahiro Yamadab4141192014-11-07 03:03:31 +0900916 len = min3(srclen, (int)le16_to_cpu(req->length), length);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100917 if (srcptr != NULL && len > 0)
918 memcpy(buffer, srcptr, len);
michaeldb632992008-12-10 17:55:19 +0100919 else
920 debug("Len is 0\n");
921
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100922 dev->act_len = len;
923 dev->status = 0;
924 return 0;
925
926unknown:
michaeldb632992008-12-10 17:55:19 +0100927 debug("requesttype=%x, request=%x, value=%x, index=%x, length=%x\n",
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100928 req->requesttype, req->request, le16_to_cpu(req->value),
929 le16_to_cpu(req->index), le16_to_cpu(req->length));
930
931 dev->act_len = 0;
932 dev->status = USB_ST_STALLED;
933 return -1;
934}
935
Simon Glassdeb85082015-03-25 12:22:27 -0600936const struct ehci_ops default_ehci_ops = {
937 .set_usb_mode = ehci_set_usbmode,
938 .get_port_speed = ehci_get_port_speed,
939 .powerup_fixup = ehci_powerup_fixup,
940 .get_portsc_register = ehci_get_portsc_register,
941};
942
943static void ehci_setup_ops(struct ehci_ctrl *ctrl, const struct ehci_ops *ops)
Simon Glassc4a31412015-03-25 12:22:19 -0600944{
Simon Glassdeb85082015-03-25 12:22:27 -0600945 if (!ops) {
946 ctrl->ops = default_ehci_ops;
947 } else {
948 ctrl->ops = *ops;
949 if (!ctrl->ops.set_usb_mode)
950 ctrl->ops.set_usb_mode = ehci_set_usbmode;
951 if (!ctrl->ops.get_port_speed)
952 ctrl->ops.get_port_speed = ehci_get_port_speed;
953 if (!ctrl->ops.powerup_fixup)
954 ctrl->ops.powerup_fixup = ehci_powerup_fixup;
955 if (!ctrl->ops.get_portsc_register)
956 ctrl->ops.get_portsc_register =
957 ehci_get_portsc_register;
958 }
959}
960
Simon Glass46b01792015-03-25 12:22:29 -0600961#ifndef CONFIG_DM_USB
Simon Glassdeb85082015-03-25 12:22:27 -0600962void ehci_set_controller_priv(int index, void *priv, const struct ehci_ops *ops)
963{
964 struct ehci_ctrl *ctrl = &ehcic[index];
965
966 ctrl->priv = priv;
967 ehci_setup_ops(ctrl, ops);
Simon Glassc4a31412015-03-25 12:22:19 -0600968}
969
970void *ehci_get_controller_priv(int index)
971{
972 return ehcic[index].priv;
973}
Simon Glass46b01792015-03-25 12:22:29 -0600974#endif
Simon Glassc4a31412015-03-25 12:22:19 -0600975
Simon Glass7372b5b2015-03-25 12:22:26 -0600976static int ehci_common_init(struct ehci_ctrl *ctrl, uint tweaks)
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100977{
Lucas Stach676ae062012-09-26 00:14:35 +0200978 struct QH *qh_list;
Patrick Georgi8f62ca62013-03-06 14:08:31 +0000979 struct QH *periodic;
Simon Glass7372b5b2015-03-25 12:22:26 -0600980 uint32_t reg;
981 uint32_t cmd;
Patrick Georgi8f62ca62013-03-06 14:08:31 +0000982 int i;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100983
Vincent Palatin29828372012-12-12 17:55:22 -0800984 /* Set the high address word (aka segment) for 64-bit controller */
Simon Glass7372b5b2015-03-25 12:22:26 -0600985 if (ehci_readl(&ctrl->hccr->cr_hccparams) & 1)
986 ehci_writel(&ctrl->hcor->or_ctrldssegment, 0);
Stefan Roese832e6142009-01-21 17:12:10 +0100987
Simon Glass7372b5b2015-03-25 12:22:26 -0600988 qh_list = &ctrl->qh_list;
Lucas Stach676ae062012-09-26 00:14:35 +0200989
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100990 /* Set head of reclaim list */
Tom Rini71c5de42012-07-15 22:14:24 +0000991 memset(qh_list, 0, sizeof(*qh_list));
Rob Herring98ae8402015-03-17 15:46:37 -0500992 qh_list->qh_link = cpu_to_hc32((unsigned long)qh_list | QH_LINK_TYPE_QH);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200993 qh_list->qh_endpt1 = cpu_to_hc32(QH_ENDPT1_H(1) |
994 QH_ENDPT1_EPS(USB_SPEED_HIGH));
Tom Rini71c5de42012-07-15 22:14:24 +0000995 qh_list->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
996 qh_list->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200997 qh_list->qh_overlay.qt_token =
998 cpu_to_hc32(QT_TOKEN_STATUS(QT_TOKEN_STATUS_HALTED));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100999
Rob Herring98ae8402015-03-17 15:46:37 -05001000 flush_dcache_range((unsigned long)qh_list,
Stephen Warrend3e07472013-05-24 15:03:17 -06001001 ALIGN_END_ADDR(struct QH, qh_list, 1));
1002
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001003 /* Set async. queue head pointer. */
Simon Glass7372b5b2015-03-25 12:22:26 -06001004 ehci_writel(&ctrl->hcor->or_asynclistaddr, (unsigned long)qh_list);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001005
1006 /*
1007 * Set up periodic list
1008 * Step 1: Parent QH for all periodic transfers.
1009 */
Simon Glass7372b5b2015-03-25 12:22:26 -06001010 ctrl->periodic_schedules = 0;
1011 periodic = &ctrl->periodic_queue;
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001012 memset(periodic, 0, sizeof(*periodic));
1013 periodic->qh_link = cpu_to_hc32(QH_LINK_TERMINATE);
1014 periodic->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
1015 periodic->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
1016
Rob Herring98ae8402015-03-17 15:46:37 -05001017 flush_dcache_range((unsigned long)periodic,
Stephen Warrend3e07472013-05-24 15:03:17 -06001018 ALIGN_END_ADDR(struct QH, periodic, 1));
1019
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001020 /*
1021 * Step 2: Setup frame-list: Every microframe, USB tries the same list.
1022 * In particular, device specifications on polling frequency
1023 * are disregarded. Keyboards seem to send NAK/NYet reliably
1024 * when polled with an empty buffer.
1025 *
1026 * Split Transactions will be spread across microframes using
1027 * S-mask and C-mask.
1028 */
Simon Glass7372b5b2015-03-25 12:22:26 -06001029 if (ctrl->periodic_list == NULL)
1030 ctrl->periodic_list = memalign(4096, 1024 * 4);
Nikita Kiryanov8bc36032013-07-29 13:27:40 +03001031
Simon Glass7372b5b2015-03-25 12:22:26 -06001032 if (!ctrl->periodic_list)
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001033 return -ENOMEM;
1034 for (i = 0; i < 1024; i++) {
Simon Glass7372b5b2015-03-25 12:22:26 -06001035 ctrl->periodic_list[i] = cpu_to_hc32((unsigned long)periodic
Adrian Coxea427772014-04-10 13:29:45 +01001036 | QH_LINK_TYPE_QH);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001037 }
1038
Simon Glass7372b5b2015-03-25 12:22:26 -06001039 flush_dcache_range((unsigned long)ctrl->periodic_list,
1040 ALIGN_END_ADDR(uint32_t, ctrl->periodic_list,
Stephen Warrend3e07472013-05-24 15:03:17 -06001041 1024));
1042
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001043 /* Set periodic list base address */
Simon Glass7372b5b2015-03-25 12:22:26 -06001044 ehci_writel(&ctrl->hcor->or_periodiclistbase,
1045 (unsigned long)ctrl->periodic_list);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001046
Simon Glass7372b5b2015-03-25 12:22:26 -06001047 reg = ehci_readl(&ctrl->hccr->cr_hcsparams);
michael51ab1422008-12-11 13:43:55 +01001048 descriptor.hub.bNbrPorts = HCS_N_PORTS(reg);
Lucas Stach7a46b2c2012-09-28 00:26:19 +02001049 debug("Register %x NbrPorts %d\n", reg, descriptor.hub.bNbrPorts);
Remy Böhmerc0d722f2008-12-13 22:51:58 +01001050 /* Port Indicators */
1051 if (HCS_INDICATOR(reg))
Lucas Stach93ad9082012-09-06 08:00:13 +02001052 put_unaligned(get_unaligned(&descriptor.hub.wHubCharacteristics)
1053 | 0x80, &descriptor.hub.wHubCharacteristics);
Remy Böhmerc0d722f2008-12-13 22:51:58 +01001054 /* Port Power Control */
1055 if (HCS_PPC(reg))
Lucas Stach93ad9082012-09-06 08:00:13 +02001056 put_unaligned(get_unaligned(&descriptor.hub.wHubCharacteristics)
1057 | 0x01, &descriptor.hub.wHubCharacteristics);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001058
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001059 /* Start the host controller. */
Simon Glass7372b5b2015-03-25 12:22:26 -06001060 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
Wolfgang Denkf15c6512009-02-12 00:08:39 +01001061 /*
1062 * Philips, Intel, and maybe others need CMD_RUN before the
1063 * root hub will detect new devices (why?); NEC doesn't
1064 */
michael51ab1422008-12-11 13:43:55 +01001065 cmd &= ~(CMD_LRESET|CMD_IAAD|CMD_PSE|CMD_ASE|CMD_RESET);
1066 cmd |= CMD_RUN;
Simon Glass7372b5b2015-03-25 12:22:26 -06001067 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
michael51ab1422008-12-11 13:43:55 +01001068
Simon Glass7372b5b2015-03-25 12:22:26 -06001069 if (!(tweaks & EHCI_TWEAK_NO_INIT_CF)) {
1070 /* take control over the ports */
1071 cmd = ehci_readl(&ctrl->hcor->or_configflag);
1072 cmd |= FLAG_CF;
1073 ehci_writel(&ctrl->hcor->or_configflag, cmd);
1074 }
Kuo-Jung Sue82a3162013-05-15 15:29:23 +08001075
Remy Böhmerc0d722f2008-12-13 22:51:58 +01001076 /* unblock posted write */
Simon Glass7372b5b2015-03-25 12:22:26 -06001077 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001078 mdelay(5);
Simon Glass7372b5b2015-03-25 12:22:26 -06001079 reg = HC_VERSION(ehci_readl(&ctrl->hccr->cr_capbase));
Remy Böhmerc0d722f2008-12-13 22:51:58 +01001080 printf("USB EHCI %x.%02x\n", reg >> 8, reg & 0xff);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001081
Simon Glass7372b5b2015-03-25 12:22:26 -06001082 return 0;
1083}
1084
Simon Glass46b01792015-03-25 12:22:29 -06001085#ifndef CONFIG_DM_USB
Simon Glass7372b5b2015-03-25 12:22:26 -06001086int usb_lowlevel_stop(int index)
1087{
1088 ehci_shutdown(&ehcic[index]);
1089 return ehci_hcd_stop(index);
1090}
1091
1092int usb_lowlevel_init(int index, enum usb_init_type init, void **controller)
1093{
1094 struct ehci_ctrl *ctrl = &ehcic[index];
1095 uint tweaks = 0;
1096 int rc;
1097
Simon Glassdeb85082015-03-25 12:22:27 -06001098 /**
1099 * Set ops to default_ehci_ops, ehci_hcd_init should call
1100 * ehci_set_controller_priv to change any of these function pointers.
1101 */
1102 ctrl->ops = default_ehci_ops;
1103
Simon Glass7372b5b2015-03-25 12:22:26 -06001104 rc = ehci_hcd_init(index, init, &ctrl->hccr, &ctrl->hcor);
1105 if (rc)
1106 return rc;
1107 if (init == USB_INIT_DEVICE)
1108 goto done;
1109
1110 /* EHCI spec section 4.1 */
Simon Glassaeca43e2015-03-25 12:22:28 -06001111 if (ehci_reset(ctrl))
Simon Glass7372b5b2015-03-25 12:22:26 -06001112 return -1;
1113
1114#if defined(CONFIG_EHCI_HCD_INIT_AFTER_RESET)
1115 rc = ehci_hcd_init(index, init, &ctrl->hccr, &ctrl->hcor);
1116 if (rc)
1117 return rc;
1118#endif
1119#ifdef CONFIG_USB_EHCI_FARADAY
1120 tweaks |= EHCI_TWEAK_NO_INIT_CF;
1121#endif
1122 rc = ehci_common_init(ctrl, tweaks);
1123 if (rc)
1124 return rc;
1125
1126 ctrl->rootdev = 0;
Troy Kisky127efc42013-10-10 15:27:57 -07001127done:
Lucas Stach676ae062012-09-26 00:14:35 +02001128 *controller = &ehcic[index];
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001129 return 0;
1130}
Simon Glass46b01792015-03-25 12:22:29 -06001131#endif
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001132
Simon Glass24ed8942015-03-25 12:22:25 -06001133static int _ehci_submit_bulk_msg(struct usb_device *dev, unsigned long pipe,
1134 void *buffer, int length)
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001135{
1136
1137 if (usb_pipetype(pipe) != PIPE_BULK) {
1138 debug("non-bulk pipe (type=%lu)", usb_pipetype(pipe));
1139 return -1;
1140 }
1141 return ehci_submit_async(dev, pipe, buffer, length, NULL);
1142}
1143
Simon Glass24ed8942015-03-25 12:22:25 -06001144static int _ehci_submit_control_msg(struct usb_device *dev, unsigned long pipe,
1145 void *buffer, int length,
1146 struct devrequest *setup)
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001147{
Simon Glass24ed8942015-03-25 12:22:25 -06001148 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001149
1150 if (usb_pipetype(pipe) != PIPE_CONTROL) {
1151 debug("non-control pipe (type=%lu)", usb_pipetype(pipe));
1152 return -1;
1153 }
1154
Lucas Stach676ae062012-09-26 00:14:35 +02001155 if (usb_pipedevice(pipe) == ctrl->rootdev) {
1156 if (!ctrl->rootdev)
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001157 dev->speed = USB_SPEED_HIGH;
1158 return ehci_submit_root(dev, pipe, buffer, length, setup);
1159 }
1160 return ehci_submit_async(dev, pipe, buffer, length, setup);
1161}
1162
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001163struct int_queue {
Hans de Goede8aa26b82014-09-24 14:06:05 +02001164 int elementsize;
Hans de Goede7f59d162015-06-18 22:34:33 +02001165 unsigned long pipe;
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001166 struct QH *first;
1167 struct QH *current;
1168 struct QH *last;
1169 struct qTD *tds;
1170};
1171
Rob Herring98ae8402015-03-17 15:46:37 -05001172#define NEXT_QH(qh) (struct QH *)((unsigned long)hc32_to_cpu((qh)->qh_link) & ~0x1f)
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001173
1174static int
1175enable_periodic(struct ehci_ctrl *ctrl)
1176{
1177 uint32_t cmd;
1178 struct ehci_hcor *hcor = ctrl->hcor;
1179 int ret;
1180
1181 cmd = ehci_readl(&hcor->or_usbcmd);
1182 cmd |= CMD_PSE;
1183 ehci_writel(&hcor->or_usbcmd, cmd);
1184
1185 ret = handshake((uint32_t *)&hcor->or_usbsts,
1186 STS_PSS, STS_PSS, 100 * 1000);
1187 if (ret < 0) {
1188 printf("EHCI failed: timeout when enabling periodic list\n");
1189 return -ETIMEDOUT;
1190 }
1191 udelay(1000);
1192 return 0;
1193}
1194
1195static int
1196disable_periodic(struct ehci_ctrl *ctrl)
1197{
1198 uint32_t cmd;
1199 struct ehci_hcor *hcor = ctrl->hcor;
1200 int ret;
1201
1202 cmd = ehci_readl(&hcor->or_usbcmd);
1203 cmd &= ~CMD_PSE;
1204 ehci_writel(&hcor->or_usbcmd, cmd);
1205
1206 ret = handshake((uint32_t *)&hcor->or_usbsts,
1207 STS_PSS, 0, 100 * 1000);
1208 if (ret < 0) {
1209 printf("EHCI failed: timeout when disabling periodic list\n");
1210 return -ETIMEDOUT;
1211 }
1212 return 0;
1213}
1214
Hans de Goede029fd8e2015-05-11 20:43:52 +02001215static struct int_queue *_ehci_create_int_queue(struct usb_device *dev,
1216 unsigned long pipe, int queuesize, int elementsize,
1217 void *buffer, int interval)
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001218{
Simon Glass24ed8942015-03-25 12:22:25 -06001219 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001220 struct int_queue *result = NULL;
Hans de Goede7f59d162015-06-18 22:34:33 +02001221 uint32_t i, toggle;
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001222
Hans de Goedebd818d82014-09-24 14:06:04 +02001223 /*
1224 * Interrupt transfers requiring several transactions are not supported
1225 * because bInterval is ignored.
1226 *
1227 * Also, ehci_submit_async() relies on wMaxPacketSize being a power of 2
1228 * <= PKT_ALIGN if several qTDs are required, while the USB
1229 * specification does not constrain this for interrupt transfers. That
1230 * means that ehci_submit_async() would support interrupt transfers
1231 * requiring several transactions only as long as the transfer size does
1232 * not require more than a single qTD.
1233 */
1234 if (elementsize > usb_maxpacket(dev, pipe)) {
1235 printf("%s: xfers requiring several transactions are not supported.\n",
1236 __func__);
1237 return NULL;
1238 }
1239
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001240 debug("Enter create_int_queue\n");
1241 if (usb_pipetype(pipe) != PIPE_INTERRUPT) {
1242 debug("non-interrupt pipe (type=%lu)", usb_pipetype(pipe));
1243 return NULL;
1244 }
1245
1246 /* limit to 4 full pages worth of data -
1247 * we can safely fit them in a single TD,
1248 * no matter the alignment
1249 */
1250 if (elementsize >= 16384) {
1251 debug("too large elements for interrupt transfers\n");
1252 return NULL;
1253 }
1254
1255 result = malloc(sizeof(*result));
1256 if (!result) {
1257 debug("ehci intr queue: out of memory\n");
1258 goto fail1;
1259 }
Hans de Goede8aa26b82014-09-24 14:06:05 +02001260 result->elementsize = elementsize;
Hans de Goede7f59d162015-06-18 22:34:33 +02001261 result->pipe = pipe;
Stephen Warren8165e342014-02-06 13:13:06 -07001262 result->first = memalign(USB_DMA_MINALIGN,
1263 sizeof(struct QH) * queuesize);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001264 if (!result->first) {
1265 debug("ehci intr queue: out of memory\n");
1266 goto fail2;
1267 }
1268 result->current = result->first;
1269 result->last = result->first + queuesize - 1;
Stephen Warren8165e342014-02-06 13:13:06 -07001270 result->tds = memalign(USB_DMA_MINALIGN,
1271 sizeof(struct qTD) * queuesize);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001272 if (!result->tds) {
1273 debug("ehci intr queue: out of memory\n");
1274 goto fail3;
1275 }
1276 memset(result->first, 0, sizeof(struct QH) * queuesize);
1277 memset(result->tds, 0, sizeof(struct qTD) * queuesize);
1278
Hans de Goede7f59d162015-06-18 22:34:33 +02001279 toggle = usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
1280
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001281 for (i = 0; i < queuesize; i++) {
1282 struct QH *qh = result->first + i;
1283 struct qTD *td = result->tds + i;
1284 void **buf = &qh->buffer;
1285
Rob Herring98ae8402015-03-17 15:46:37 -05001286 qh->qh_link = cpu_to_hc32((unsigned long)(qh+1) | QH_LINK_TYPE_QH);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001287 if (i == queuesize - 1)
Adrian Coxea427772014-04-10 13:29:45 +01001288 qh->qh_link = cpu_to_hc32(QH_LINK_TERMINATE);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001289
Rob Herring98ae8402015-03-17 15:46:37 -05001290 qh->qh_overlay.qt_next = cpu_to_hc32((unsigned long)td);
Adrian Coxea427772014-04-10 13:29:45 +01001291 qh->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
1292 qh->qh_endpt1 =
1293 cpu_to_hc32((0 << 28) | /* No NAK reload (ehci 4.9) */
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001294 (usb_maxpacket(dev, pipe) << 16) | /* MPS */
1295 (1 << 14) |
1296 QH_ENDPT1_EPS(ehci_encode_speed(dev->speed)) |
1297 (usb_pipeendpoint(pipe) << 8) | /* Endpoint Number */
Adrian Coxea427772014-04-10 13:29:45 +01001298 (usb_pipedevice(pipe) << 0));
1299 qh->qh_endpt2 = cpu_to_hc32((1 << 30) | /* 1 Tx per mframe */
1300 (1 << 0)); /* S-mask: microframe 0 */
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001301 if (dev->speed == USB_SPEED_LOW ||
1302 dev->speed == USB_SPEED_FULL) {
Hans de Goede4e2c4ad2014-09-20 16:51:22 +02001303 /* C-mask: microframes 2-4 */
1304 qh->qh_endpt2 |= cpu_to_hc32((0x1c << 8));
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001305 }
Hans de Goede4e2c4ad2014-09-20 16:51:22 +02001306 ehci_update_endpt2_dev_n_port(dev, qh);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001307
Adrian Coxea427772014-04-10 13:29:45 +01001308 td->qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
1309 td->qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001310 debug("communication direction is '%s'\n",
1311 usb_pipein(pipe) ? "in" : "out");
Hans de Goede7f59d162015-06-18 22:34:33 +02001312 td->qt_token = cpu_to_hc32(
1313 QT_TOKEN_DT(toggle) |
1314 (elementsize << 16) |
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001315 ((usb_pipein(pipe) ? 1 : 0) << 8) | /* IN/OUT token */
Adrian Coxea427772014-04-10 13:29:45 +01001316 0x80); /* active */
1317 td->qt_buffer[0] =
Rob Herring98ae8402015-03-17 15:46:37 -05001318 cpu_to_hc32((unsigned long)buffer + i * elementsize);
Adrian Coxea427772014-04-10 13:29:45 +01001319 td->qt_buffer[1] =
1320 cpu_to_hc32((td->qt_buffer[0] + 0x1000) & ~0xfff);
1321 td->qt_buffer[2] =
1322 cpu_to_hc32((td->qt_buffer[0] + 0x2000) & ~0xfff);
1323 td->qt_buffer[3] =
1324 cpu_to_hc32((td->qt_buffer[0] + 0x3000) & ~0xfff);
1325 td->qt_buffer[4] =
1326 cpu_to_hc32((td->qt_buffer[0] + 0x4000) & ~0xfff);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001327
1328 *buf = buffer + i * elementsize;
Hans de Goede7f59d162015-06-18 22:34:33 +02001329 toggle ^= 1;
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001330 }
1331
Rob Herring98ae8402015-03-17 15:46:37 -05001332 flush_dcache_range((unsigned long)buffer,
Stephen Warrend3e07472013-05-24 15:03:17 -06001333 ALIGN_END_ADDR(char, buffer,
1334 queuesize * elementsize));
Rob Herring98ae8402015-03-17 15:46:37 -05001335 flush_dcache_range((unsigned long)result->first,
Stephen Warrend3e07472013-05-24 15:03:17 -06001336 ALIGN_END_ADDR(struct QH, result->first,
1337 queuesize));
Rob Herring98ae8402015-03-17 15:46:37 -05001338 flush_dcache_range((unsigned long)result->tds,
Stephen Warrend3e07472013-05-24 15:03:17 -06001339 ALIGN_END_ADDR(struct qTD, result->tds,
1340 queuesize));
1341
Hans de Goede32f2eac2014-09-24 14:06:03 +02001342 if (ctrl->periodic_schedules > 0) {
1343 if (disable_periodic(ctrl) < 0) {
1344 debug("FATAL: periodic should never fail, but did");
1345 goto fail3;
1346 }
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001347 }
1348
1349 /* hook up to periodic list */
1350 struct QH *list = &ctrl->periodic_queue;
1351 result->last->qh_link = list->qh_link;
Rob Herring98ae8402015-03-17 15:46:37 -05001352 list->qh_link = cpu_to_hc32((unsigned long)result->first | QH_LINK_TYPE_QH);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001353
Rob Herring98ae8402015-03-17 15:46:37 -05001354 flush_dcache_range((unsigned long)result->last,
Stephen Warrend3e07472013-05-24 15:03:17 -06001355 ALIGN_END_ADDR(struct QH, result->last, 1));
Rob Herring98ae8402015-03-17 15:46:37 -05001356 flush_dcache_range((unsigned long)list,
Stephen Warrend3e07472013-05-24 15:03:17 -06001357 ALIGN_END_ADDR(struct QH, list, 1));
1358
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001359 if (enable_periodic(ctrl) < 0) {
1360 debug("FATAL: periodic should never fail, but did");
1361 goto fail3;
1362 }
Hans de Goede36b73102014-09-20 16:51:25 +02001363 ctrl->periodic_schedules++;
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001364
1365 debug("Exit create_int_queue\n");
1366 return result;
1367fail3:
1368 if (result->tds)
1369 free(result->tds);
1370fail2:
1371 if (result->first)
1372 free(result->first);
1373 if (result)
1374 free(result);
1375fail1:
1376 return NULL;
1377}
1378
Hans de Goede029fd8e2015-05-11 20:43:52 +02001379static void *_ehci_poll_int_queue(struct usb_device *dev,
1380 struct int_queue *queue)
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001381{
1382 struct QH *cur = queue->current;
Hans de Goede415548d2014-09-20 16:51:24 +02001383 struct qTD *cur_td;
Hans de Goede7f59d162015-06-18 22:34:33 +02001384 uint32_t token, toggle;
1385 unsigned long pipe = queue->pipe;
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001386
1387 /* depleted queue */
1388 if (cur == NULL) {
1389 debug("Exit poll_int_queue with completed queue\n");
1390 return NULL;
1391 }
1392 /* still active */
Hans de Goede415548d2014-09-20 16:51:24 +02001393 cur_td = &queue->tds[queue->current - queue->first];
Rob Herring98ae8402015-03-17 15:46:37 -05001394 invalidate_dcache_range((unsigned long)cur_td,
Hans de Goede415548d2014-09-20 16:51:24 +02001395 ALIGN_END_ADDR(struct qTD, cur_td, 1));
Hans de Goede7f59d162015-06-18 22:34:33 +02001396 token = hc32_to_cpu(cur_td->qt_token);
1397 if (QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE) {
1398 debug("Exit poll_int_queue with no completed intr transfer. token is %x\n", token);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001399 return NULL;
1400 }
Hans de Goede7f59d162015-06-18 22:34:33 +02001401
1402 toggle = QT_TOKEN_GET_DT(token);
1403 usb_settoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe), toggle);
1404
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001405 if (!(cur->qh_link & QH_LINK_TERMINATE))
1406 queue->current++;
1407 else
1408 queue->current = NULL;
Hans de Goede8aa26b82014-09-24 14:06:05 +02001409
Rob Herring98ae8402015-03-17 15:46:37 -05001410 invalidate_dcache_range((unsigned long)cur->buffer,
Hans de Goede8aa26b82014-09-24 14:06:05 +02001411 ALIGN_END_ADDR(char, cur->buffer,
1412 queue->elementsize));
1413
Hans de Goede415548d2014-09-20 16:51:24 +02001414 debug("Exit poll_int_queue with completed intr transfer. token is %x at %p (first at %p)\n",
Hans de Goede7f59d162015-06-18 22:34:33 +02001415 token, cur, queue->first);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001416 return cur->buffer;
1417}
1418
1419/* Do not free buffers associated with QHs, they're owned by someone else */
Hans de Goede029fd8e2015-05-11 20:43:52 +02001420static int _ehci_destroy_int_queue(struct usb_device *dev,
1421 struct int_queue *queue)
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001422{
Simon Glass24ed8942015-03-25 12:22:25 -06001423 struct ehci_ctrl *ctrl = ehci_get_ctrl(dev);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001424 int result = -1;
1425 unsigned long timeout;
1426
1427 if (disable_periodic(ctrl) < 0) {
1428 debug("FATAL: periodic should never fail, but did");
1429 goto out;
1430 }
Hans de Goede36b73102014-09-20 16:51:25 +02001431 ctrl->periodic_schedules--;
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001432
1433 struct QH *cur = &ctrl->periodic_queue;
1434 timeout = get_timer(0) + 500; /* abort after 500ms */
Adrian Coxea427772014-04-10 13:29:45 +01001435 while (!(cur->qh_link & cpu_to_hc32(QH_LINK_TERMINATE))) {
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001436 debug("considering %p, with qh_link %x\n", cur, cur->qh_link);
1437 if (NEXT_QH(cur) == queue->first) {
1438 debug("found candidate. removing from chain\n");
1439 cur->qh_link = queue->last->qh_link;
Rob Herring98ae8402015-03-17 15:46:37 -05001440 flush_dcache_range((unsigned long)cur,
Hans de Goedeea7b30c2014-09-20 16:51:23 +02001441 ALIGN_END_ADDR(struct QH, cur, 1));
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001442 result = 0;
1443 break;
1444 }
1445 cur = NEXT_QH(cur);
1446 if (get_timer(0) > timeout) {
1447 printf("Timeout destroying interrupt endpoint queue\n");
1448 result = -1;
1449 goto out;
1450 }
1451 }
1452
Hans de Goede36b73102014-09-20 16:51:25 +02001453 if (ctrl->periodic_schedules > 0) {
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001454 result = enable_periodic(ctrl);
1455 if (result < 0)
1456 debug("FATAL: periodic should never fail, but did");
1457 }
1458
1459out:
1460 free(queue->tds);
1461 free(queue->first);
1462 free(queue);
1463
1464 return result;
1465}
1466
Simon Glass24ed8942015-03-25 12:22:25 -06001467static int _ehci_submit_int_msg(struct usb_device *dev, unsigned long pipe,
1468 void *buffer, int length, int interval)
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001469{
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001470 void *backbuffer;
1471 struct int_queue *queue;
1472 unsigned long timeout;
1473 int result = 0, ret;
1474
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001475 debug("dev=%p, pipe=%lu, buffer=%p, length=%d, interval=%d",
1476 dev, pipe, buffer, length, interval);
Benoît Thébaudeau44ae0be2012-08-09 23:50:44 +02001477
Hans de Goede029fd8e2015-05-11 20:43:52 +02001478 queue = _ehci_create_int_queue(dev, pipe, 1, length, buffer, interval);
Hans de Goedebd818d82014-09-24 14:06:04 +02001479 if (!queue)
1480 return -1;
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001481
1482 timeout = get_timer(0) + USB_TIMEOUT_MS(pipe);
Hans de Goede029fd8e2015-05-11 20:43:52 +02001483 while ((backbuffer = _ehci_poll_int_queue(dev, queue)) == NULL)
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001484 if (get_timer(0) > timeout) {
1485 printf("Timeout poll on interrupt endpoint\n");
1486 result = -ETIMEDOUT;
1487 break;
1488 }
1489
1490 if (backbuffer != buffer) {
Rob Herring98ae8402015-03-17 15:46:37 -05001491 debug("got wrong buffer back (%p instead of %p)\n",
1492 backbuffer, buffer);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001493 return -EINVAL;
1494 }
1495
Hans de Goede029fd8e2015-05-11 20:43:52 +02001496 ret = _ehci_destroy_int_queue(dev, queue);
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001497 if (ret < 0)
1498 return ret;
1499
1500 /* everything worked out fine */
1501 return result;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001502}
Simon Glass24ed8942015-03-25 12:22:25 -06001503
Simon Glass46b01792015-03-25 12:22:29 -06001504#ifndef CONFIG_DM_USB
Simon Glass24ed8942015-03-25 12:22:25 -06001505int submit_bulk_msg(struct usb_device *dev, unsigned long pipe,
1506 void *buffer, int length)
1507{
1508 return _ehci_submit_bulk_msg(dev, pipe, buffer, length);
1509}
1510
1511int submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1512 int length, struct devrequest *setup)
1513{
1514 return _ehci_submit_control_msg(dev, pipe, buffer, length, setup);
1515}
1516
1517int submit_int_msg(struct usb_device *dev, unsigned long pipe,
1518 void *buffer, int length, int interval)
1519{
1520 return _ehci_submit_int_msg(dev, pipe, buffer, length, interval);
1521}
Hans de Goede029fd8e2015-05-11 20:43:52 +02001522
1523struct int_queue *create_int_queue(struct usb_device *dev,
1524 unsigned long pipe, int queuesize, int elementsize,
1525 void *buffer, int interval)
1526{
1527 return _ehci_create_int_queue(dev, pipe, queuesize, elementsize,
1528 buffer, interval);
1529}
1530
1531void *poll_int_queue(struct usb_device *dev, struct int_queue *queue)
1532{
1533 return _ehci_poll_int_queue(dev, queue);
1534}
1535
1536int destroy_int_queue(struct usb_device *dev, struct int_queue *queue)
1537{
1538 return _ehci_destroy_int_queue(dev, queue);
1539}
Simon Glass46b01792015-03-25 12:22:29 -06001540#endif
1541
1542#ifdef CONFIG_DM_USB
1543static int ehci_submit_control_msg(struct udevice *dev, struct usb_device *udev,
1544 unsigned long pipe, void *buffer, int length,
1545 struct devrequest *setup)
1546{
1547 debug("%s: dev='%s', udev=%p, udev->dev='%s', portnr=%d\n", __func__,
1548 dev->name, udev, udev->dev->name, udev->portnr);
1549
1550 return _ehci_submit_control_msg(udev, pipe, buffer, length, setup);
1551}
1552
1553static int ehci_submit_bulk_msg(struct udevice *dev, struct usb_device *udev,
1554 unsigned long pipe, void *buffer, int length)
1555{
1556 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1557 return _ehci_submit_bulk_msg(udev, pipe, buffer, length);
1558}
1559
1560static int ehci_submit_int_msg(struct udevice *dev, struct usb_device *udev,
1561 unsigned long pipe, void *buffer, int length,
1562 int interval)
1563{
1564 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1565 return _ehci_submit_int_msg(udev, pipe, buffer, length, interval);
1566}
1567
Hans de Goede8a5f0662015-05-10 14:10:18 +02001568static struct int_queue *ehci_create_int_queue(struct udevice *dev,
1569 struct usb_device *udev, unsigned long pipe, int queuesize,
1570 int elementsize, void *buffer, int interval)
1571{
1572 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1573 return _ehci_create_int_queue(udev, pipe, queuesize, elementsize,
1574 buffer, interval);
1575}
1576
1577static void *ehci_poll_int_queue(struct udevice *dev, struct usb_device *udev,
1578 struct int_queue *queue)
1579{
1580 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1581 return _ehci_poll_int_queue(udev, queue);
1582}
1583
1584static int ehci_destroy_int_queue(struct udevice *dev, struct usb_device *udev,
1585 struct int_queue *queue)
1586{
1587 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev);
1588 return _ehci_destroy_int_queue(udev, queue);
1589}
1590
Simon Glass46b01792015-03-25 12:22:29 -06001591int ehci_register(struct udevice *dev, struct ehci_hccr *hccr,
1592 struct ehci_hcor *hcor, const struct ehci_ops *ops,
1593 uint tweaks, enum usb_init_type init)
1594{
Hans de Goedecb8a2c12015-05-05 11:54:35 +02001595 struct usb_bus_priv *priv = dev_get_uclass_priv(dev);
Simon Glass46b01792015-03-25 12:22:29 -06001596 struct ehci_ctrl *ctrl = dev_get_priv(dev);
1597 int ret;
1598
1599 debug("%s: dev='%s', ctrl=%p, hccr=%p, hcor=%p, init=%d\n", __func__,
1600 dev->name, ctrl, hccr, hcor, init);
1601
Hans de Goedecb8a2c12015-05-05 11:54:35 +02001602 priv->desc_before_addr = true;
1603
Simon Glass46b01792015-03-25 12:22:29 -06001604 ehci_setup_ops(ctrl, ops);
1605 ctrl->hccr = hccr;
1606 ctrl->hcor = hcor;
1607 ctrl->priv = ctrl;
1608
Stephen Warren49b4c5c2015-08-20 17:38:05 -06001609 ctrl->init = init;
1610 if (ctrl->init == USB_INIT_DEVICE)
Simon Glass46b01792015-03-25 12:22:29 -06001611 goto done;
Stephen Warren49b4c5c2015-08-20 17:38:05 -06001612
Simon Glass46b01792015-03-25 12:22:29 -06001613 ret = ehci_reset(ctrl);
1614 if (ret)
1615 goto err;
1616
1617 ret = ehci_common_init(ctrl, tweaks);
1618 if (ret)
1619 goto err;
1620done:
1621 return 0;
1622err:
1623 free(ctrl);
1624 debug("%s: failed, ret=%d\n", __func__, ret);
1625 return ret;
1626}
1627
1628int ehci_deregister(struct udevice *dev)
1629{
1630 struct ehci_ctrl *ctrl = dev_get_priv(dev);
1631
Stephen Warren49b4c5c2015-08-20 17:38:05 -06001632 if (ctrl->init == USB_INIT_DEVICE)
1633 return 0;
1634
Simon Glass46b01792015-03-25 12:22:29 -06001635 ehci_shutdown(ctrl);
1636
1637 return 0;
1638}
1639
1640struct dm_usb_ops ehci_usb_ops = {
1641 .control = ehci_submit_control_msg,
1642 .bulk = ehci_submit_bulk_msg,
1643 .interrupt = ehci_submit_int_msg,
Hans de Goede8a5f0662015-05-10 14:10:18 +02001644 .create_int_queue = ehci_create_int_queue,
1645 .poll_int_queue = ehci_poll_int_queue,
1646 .destroy_int_queue = ehci_destroy_int_queue,
Simon Glass46b01792015-03-25 12:22:29 -06001647};
1648
1649#endif