blob: 3ae04c0253b694c32e310824627301b395e9ffe0 [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 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation version 2 of
11 * the License.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
Michael Trimarchiaaf098c2008-11-28 13:20:46 +010023#include <common.h>
Patrick Georgi8f62ca62013-03-06 14:08:31 +000024#include <errno.h>
michaeldb632992008-12-10 17:55:19 +010025#include <asm/byteorder.h>
Lucas Stach93ad9082012-09-06 08:00:13 +020026#include <asm/unaligned.h>
Michael Trimarchiaaf098c2008-11-28 13:20:46 +010027#include <usb.h>
28#include <asm/io.h>
michaeldb632992008-12-10 17:55:19 +010029#include <malloc.h>
Stefan Roese67333f72010-11-26 15:43:28 +010030#include <watchdog.h>
Patrick Georgi8f62ca62013-03-06 14:08:31 +000031#include <linux/compiler.h>
Jean-Christophe PLAGNIOL-VILLARD2731b9a2009-04-03 12:46:58 +020032
33#include "ehci.h"
Michael Trimarchiaaf098c2008-11-28 13:20:46 +010034
Lucas Stach676ae062012-09-26 00:14:35 +020035#ifndef CONFIG_USB_MAX_CONTROLLER_COUNT
36#define CONFIG_USB_MAX_CONTROLLER_COUNT 1
37#endif
Michael Trimarchiaaf098c2008-11-28 13:20:46 +010038
Julius Werner5077f962013-09-24 10:53:07 -070039/*
40 * EHCI spec page 20 says that the HC may take up to 16 uFrames (= 4ms) to halt.
41 * Let's time out after 8 to have a little safety margin on top of that.
42 */
43#define HCHALT_TIMEOUT (8 * 1000)
44
Marek Vasutb9596552013-07-10 03:16:31 +020045static struct ehci_ctrl ehcic[CONFIG_USB_MAX_CONTROLLER_COUNT];
Tom Rini71c5de42012-07-15 22:14:24 +000046
47#define ALIGN_END_ADDR(type, ptr, size) \
48 ((uint32_t)(ptr) + roundup((size) * sizeof(type), USB_DMA_MINALIGN))
Michael Trimarchiaaf098c2008-11-28 13:20:46 +010049
michaeldb632992008-12-10 17:55:19 +010050static struct descriptor {
51 struct usb_hub_descriptor hub;
52 struct usb_device_descriptor device;
53 struct usb_linux_config_descriptor config;
54 struct usb_linux_interface_descriptor interface;
55 struct usb_endpoint_descriptor endpoint;
56} __attribute__ ((packed)) descriptor = {
57 {
58 0x8, /* bDescLength */
59 0x29, /* bDescriptorType: hub descriptor */
60 2, /* bNrPorts -- runtime modified */
61 0, /* wHubCharacteristics */
Vincent Palatin5f4b4f22011-12-05 14:52:22 -080062 10, /* bPwrOn2PwrGood */
michaeldb632992008-12-10 17:55:19 +010063 0, /* bHubCntrCurrent */
64 {}, /* Device removable */
65 {} /* at most 7 ports! XXX */
66 },
67 {
68 0x12, /* bLength */
69 1, /* bDescriptorType: UDESC_DEVICE */
Sergei Shtylyov6d313c82010-02-27 21:29:42 +030070 cpu_to_le16(0x0200), /* bcdUSB: v2.0 */
michaeldb632992008-12-10 17:55:19 +010071 9, /* bDeviceClass: UDCLASS_HUB */
72 0, /* bDeviceSubClass: UDSUBCLASS_HUB */
73 1, /* bDeviceProtocol: UDPROTO_HSHUBSTT */
74 64, /* bMaxPacketSize: 64 bytes */
75 0x0000, /* idVendor */
76 0x0000, /* idProduct */
Sergei Shtylyov6d313c82010-02-27 21:29:42 +030077 cpu_to_le16(0x0100), /* bcdDevice */
michaeldb632992008-12-10 17:55:19 +010078 1, /* iManufacturer */
79 2, /* iProduct */
80 0, /* iSerialNumber */
81 1 /* bNumConfigurations: 1 */
82 },
83 {
84 0x9,
85 2, /* bDescriptorType: UDESC_CONFIG */
86 cpu_to_le16(0x19),
87 1, /* bNumInterface */
88 1, /* bConfigurationValue */
89 0, /* iConfiguration */
90 0x40, /* bmAttributes: UC_SELF_POWER */
91 0 /* bMaxPower */
92 },
93 {
94 0x9, /* bLength */
95 4, /* bDescriptorType: UDESC_INTERFACE */
96 0, /* bInterfaceNumber */
97 0, /* bAlternateSetting */
98 1, /* bNumEndpoints */
99 9, /* bInterfaceClass: UICLASS_HUB */
100 0, /* bInterfaceSubClass: UISUBCLASS_HUB */
101 0, /* bInterfaceProtocol: UIPROTO_HSHUBSTT */
102 0 /* iInterface */
103 },
104 {
105 0x7, /* bLength */
106 5, /* bDescriptorType: UDESC_ENDPOINT */
107 0x81, /* bEndpointAddress:
108 * UE_DIR_IN | EHCI_INTR_ENDPT
109 */
110 3, /* bmAttributes: UE_INTERRUPT */
Tom Rix8f8bd562009-10-31 12:37:38 -0500111 8, /* wMaxPacketSize */
michaeldb632992008-12-10 17:55:19 +0100112 255 /* bInterval */
113 },
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100114};
115
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100116#if defined(CONFIG_EHCI_IS_TDI)
117#define ehci_is_TDI() (1)
118#else
119#define ehci_is_TDI() (0)
120#endif
121
Jim Linb068deb2013-03-27 00:52:32 +0000122int __ehci_get_port_speed(struct ehci_hcor *hcor, uint32_t reg)
123{
124 return PORTSC_PSPD(reg);
125}
126
127int ehci_get_port_speed(struct ehci_hcor *hcor, uint32_t reg)
128 __attribute__((weak, alias("__ehci_get_port_speed")));
129
130void __ehci_set_usbmode(int index)
131{
132 uint32_t tmp;
133 uint32_t *reg_ptr;
134
135 reg_ptr = (uint32_t *)((u8 *)&ehcic[index].hcor->or_usbcmd + USBMODE);
136 tmp = ehci_readl(reg_ptr);
137 tmp |= USBMODE_CM_HC;
138#if defined(CONFIG_EHCI_MMIO_BIG_ENDIAN)
139 tmp |= USBMODE_BE;
140#endif
141 ehci_writel(reg_ptr, tmp);
142}
143
144void ehci_set_usbmode(int index)
145 __attribute__((weak, alias("__ehci_set_usbmode")));
146
Marek Vasut3874b6d2011-07-11 02:37:01 +0200147void __ehci_powerup_fixup(uint32_t *status_reg, uint32_t *reg)
148{
149 mdelay(50);
150}
151
152void ehci_powerup_fixup(uint32_t *status_reg, uint32_t *reg)
153 __attribute__((weak, alias("__ehci_powerup_fixup")));
154
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100155static int handshake(uint32_t *ptr, uint32_t mask, uint32_t done, int usec)
michaeldb632992008-12-10 17:55:19 +0100156{
michael51ab1422008-12-11 13:43:55 +0100157 uint32_t result;
158 do {
159 result = ehci_readl(ptr);
Wolfgang Denk09c83a42010-10-22 14:23:00 +0200160 udelay(5);
michael51ab1422008-12-11 13:43:55 +0100161 if (result == ~(uint32_t)0)
162 return -1;
163 result &= mask;
164 if (result == done)
165 return 0;
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100166 usec--;
167 } while (usec > 0);
michael51ab1422008-12-11 13:43:55 +0100168 return -1;
169}
170
Lucas Stach676ae062012-09-26 00:14:35 +0200171static int ehci_reset(int index)
michael51ab1422008-12-11 13:43:55 +0100172{
173 uint32_t cmd;
michael51ab1422008-12-11 13:43:55 +0100174 int ret = 0;
175
Lucas Stach676ae062012-09-26 00:14:35 +0200176 cmd = ehci_readl(&ehcic[index].hcor->or_usbcmd);
Stefan Roese273d7202010-11-26 15:44:00 +0100177 cmd = (cmd & ~CMD_RUN) | CMD_RESET;
Lucas Stach676ae062012-09-26 00:14:35 +0200178 ehci_writel(&ehcic[index].hcor->or_usbcmd, cmd);
179 ret = handshake((uint32_t *)&ehcic[index].hcor->or_usbcmd,
180 CMD_RESET, 0, 250 * 1000);
michael51ab1422008-12-11 13:43:55 +0100181 if (ret < 0) {
182 printf("EHCI fail to reset\n");
183 goto out;
184 }
185
Jim Linb068deb2013-03-27 00:52:32 +0000186 if (ehci_is_TDI())
187 ehci_set_usbmode(index);
Simon Glass9ab4ce22012-02-27 10:52:47 +0000188
189#ifdef CONFIG_USB_EHCI_TXFIFO_THRESH
Lucas Stach676ae062012-09-26 00:14:35 +0200190 cmd = ehci_readl(&ehcic[index].hcor->or_txfilltuning);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200191 cmd &= ~TXFIFO_THRESH_MASK;
Simon Glass9ab4ce22012-02-27 10:52:47 +0000192 cmd |= TXFIFO_THRESH(CONFIG_USB_EHCI_TXFIFO_THRESH);
Lucas Stach676ae062012-09-26 00:14:35 +0200193 ehci_writel(&ehcic[index].hcor->or_txfilltuning, cmd);
Simon Glass9ab4ce22012-02-27 10:52:47 +0000194#endif
michael51ab1422008-12-11 13:43:55 +0100195out:
196 return ret;
michaeldb632992008-12-10 17:55:19 +0100197}
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100198
Julius Werner5077f962013-09-24 10:53:07 -0700199static int ehci_shutdown(struct ehci_ctrl *ctrl)
200{
201 int i, ret = 0;
202 uint32_t cmd, reg;
203
204 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
205 cmd &= ~(CMD_PSE | CMD_ASE);
206 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
207 ret = handshake(&ctrl->hcor->or_usbsts, STS_ASS | STS_PSS, 0,
208 100 * 1000);
209
210 if (!ret) {
211 for (i = 0; i < CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS; i++) {
212 reg = ehci_readl(&ctrl->hcor->or_portsc[i]);
213 reg |= EHCI_PS_SUSP;
214 ehci_writel(&ctrl->hcor->or_portsc[i], reg);
215 }
216
217 cmd &= ~CMD_RUN;
218 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
219 ret = handshake(&ctrl->hcor->or_usbsts, STS_HALT, STS_HALT,
220 HCHALT_TIMEOUT);
221 }
222
223 if (ret)
224 puts("EHCI failed to shut down host controller.\n");
225
226 return ret;
227}
228
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100229static int ehci_td_buffer(struct qTD *td, void *buf, size_t sz)
230{
Marek Vasutb8adb122012-04-09 04:07:46 +0200231 uint32_t delta, next;
232 uint32_t addr = (uint32_t)buf;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100233 int idx;
234
Ilya Yanok189a6952012-07-15 04:43:49 +0000235 if (addr != ALIGN(addr, ARCH_DMA_MINALIGN))
Marek Vasutb8adb122012-04-09 04:07:46 +0200236 debug("EHCI-HCD: Misaligned buffer address (%p)\n", buf);
237
Ilya Yanok189a6952012-07-15 04:43:49 +0000238 flush_dcache_range(addr, ALIGN(addr + sz, ARCH_DMA_MINALIGN));
239
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100240 idx = 0;
Benoît Thébaudeaucdeb9162012-07-19 22:16:38 +0200241 while (idx < QT_BUFFER_CNT) {
michaeldb632992008-12-10 17:55:19 +0100242 td->qt_buffer[idx] = cpu_to_hc32(addr);
Wolfgang Denk3ed16072010-10-19 16:13:15 +0200243 td->qt_buffer_hi[idx] = 0;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200244 next = (addr + EHCI_PAGE_SIZE) & ~(EHCI_PAGE_SIZE - 1);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100245 delta = next - addr;
246 if (delta >= sz)
247 break;
248 sz -= delta;
249 addr = next;
250 idx++;
251 }
252
Benoît Thébaudeaucdeb9162012-07-19 22:16:38 +0200253 if (idx == QT_BUFFER_CNT) {
Ilya Yanok2af16f82012-07-15 04:43:52 +0000254 printf("out of buffer pointers (%u bytes left)\n", sz);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100255 return -1;
256 }
257
258 return 0;
259}
260
Ilya Yanokc60795f2012-11-06 13:48:20 +0000261static inline u8 ehci_encode_speed(enum usb_device_speed speed)
262{
263 #define QH_HIGH_SPEED 2
264 #define QH_FULL_SPEED 0
265 #define QH_LOW_SPEED 1
266 if (speed == USB_SPEED_HIGH)
267 return QH_HIGH_SPEED;
268 if (speed == USB_SPEED_LOW)
269 return QH_LOW_SPEED;
270 return QH_FULL_SPEED;
271}
272
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100273static int
274ehci_submit_async(struct usb_device *dev, unsigned long pipe, void *buffer,
275 int length, struct devrequest *req)
276{
Tom Rini71c5de42012-07-15 22:14:24 +0000277 ALLOC_ALIGN_BUFFER(struct QH, qh, 1, USB_DMA_MINALIGN);
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200278 struct qTD *qtd;
279 int qtd_count = 0;
Marek Vasutde98e8b2012-04-08 23:32:05 +0200280 int qtd_counter = 0;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100281 volatile struct qTD *vtd;
282 unsigned long ts;
283 uint32_t *tdp;
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200284 uint32_t endpt, maxpacket, token, usbsts;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100285 uint32_t c, toggle;
michaeldb632992008-12-10 17:55:19 +0100286 uint32_t cmd;
Simon Glass96820a32011-02-07 14:42:16 -0800287 int timeout;
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100288 int ret = 0;
Lucas Stach676ae062012-09-26 00:14:35 +0200289 struct ehci_ctrl *ctrl = dev->controller;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100290
michaeldb632992008-12-10 17:55:19 +0100291 debug("dev=%p, pipe=%lx, buffer=%p, length=%d, req=%p\n", dev, pipe,
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100292 buffer, length, req);
293 if (req != NULL)
michaeldb632992008-12-10 17:55:19 +0100294 debug("req=%u (%#x), type=%u (%#x), value=%u (%#x), index=%u\n",
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100295 req->request, req->request,
296 req->requesttype, req->requesttype,
297 le16_to_cpu(req->value), le16_to_cpu(req->value),
michaeldb632992008-12-10 17:55:19 +0100298 le16_to_cpu(req->index));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100299
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200300#define PKT_ALIGN 512
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200301 /*
302 * The USB transfer is split into qTD transfers. Eeach qTD transfer is
303 * described by a transfer descriptor (the qTD). The qTDs form a linked
304 * list with a queue head (QH).
305 *
306 * Each qTD transfer starts with a new USB packet, i.e. a packet cannot
307 * have its beginning in a qTD transfer and its end in the following
308 * one, so the qTD transfer lengths have to be chosen accordingly.
309 *
310 * Each qTD transfer uses up to QT_BUFFER_CNT data buffers, mapped to
311 * single pages. The first data buffer can start at any offset within a
312 * page (not considering the cache-line alignment issues), while the
313 * following buffers must be page-aligned. There is no alignment
314 * constraint on the size of a qTD transfer.
315 */
316 if (req != NULL)
317 /* 1 qTD will be needed for SETUP, and 1 for ACK. */
318 qtd_count += 1 + 1;
319 if (length > 0 || req == NULL) {
320 /*
321 * Determine the qTD transfer size that will be used for the
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200322 * data payload (not considering the first qTD transfer, which
323 * may be longer or shorter, and the final one, which may be
324 * shorter).
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200325 *
326 * In order to keep each packet within a qTD transfer, the qTD
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200327 * transfer size is aligned to PKT_ALIGN, which is a multiple of
328 * wMaxPacketSize (except in some cases for interrupt transfers,
329 * see comment in submit_int_msg()).
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200330 *
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200331 * By default, i.e. if the input buffer is aligned to PKT_ALIGN,
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200332 * QT_BUFFER_CNT full pages will be used.
333 */
334 int xfr_sz = QT_BUFFER_CNT;
335 /*
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200336 * However, if the input buffer is not aligned to PKT_ALIGN, the
337 * qTD transfer size will be one page shorter, and the first qTD
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200338 * data buffer of each transfer will be page-unaligned.
339 */
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200340 if ((uint32_t)buffer & (PKT_ALIGN - 1))
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200341 xfr_sz--;
342 /* Convert the qTD transfer size to bytes. */
343 xfr_sz *= EHCI_PAGE_SIZE;
344 /*
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200345 * Approximate by excess the number of qTDs that will be
346 * required for the data payload. The exact formula is way more
347 * complicated and saves at most 2 qTDs, i.e. a total of 128
348 * bytes.
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200349 */
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200350 qtd_count += 2 + length / xfr_sz;
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200351 }
352/*
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200353 * Threshold value based on the worst-case total size of the allocated qTDs for
354 * a mass-storage transfer of 65535 blocks of 512 bytes.
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200355 */
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200356#if CONFIG_SYS_MALLOC_LEN <= 64 + 128 * 1024
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200357#warning CONFIG_SYS_MALLOC_LEN may be too small for EHCI
358#endif
359 qtd = memalign(USB_DMA_MINALIGN, qtd_count * sizeof(struct qTD));
360 if (qtd == NULL) {
361 printf("unable to allocate TDs\n");
362 return -1;
363 }
364
Tom Rini71c5de42012-07-15 22:14:24 +0000365 memset(qh, 0, sizeof(struct QH));
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200366 memset(qtd, 0, qtd_count * sizeof(*qtd));
Marek Vasutde98e8b2012-04-08 23:32:05 +0200367
Marek Vasutb8adb122012-04-09 04:07:46 +0200368 toggle = usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
369
Marek Vasut41b1f0a2012-04-09 04:13:00 +0200370 /*
371 * Setup QH (3.6 in ehci-r10.pdf)
372 *
373 * qh_link ................. 03-00 H
374 * qh_endpt1 ............... 07-04 H
375 * qh_endpt2 ............... 0B-08 H
376 * - qh_curtd
377 * qh_overlay.qt_next ...... 13-10 H
378 * - qh_overlay.qt_altnext
379 */
Lucas Stach676ae062012-09-26 00:14:35 +0200380 qh->qh_link = cpu_to_hc32((uint32_t)&ctrl->qh_list | QH_LINK_TYPE_QH);
Ilya Yanokc60795f2012-11-06 13:48:20 +0000381 c = (dev->speed != USB_SPEED_HIGH) && !usb_pipeendpoint(pipe);
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200382 maxpacket = usb_maxpacket(dev, pipe);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200383 endpt = QH_ENDPT1_RL(8) | QH_ENDPT1_C(c) |
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200384 QH_ENDPT1_MAXPKTLEN(maxpacket) | QH_ENDPT1_H(0) |
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200385 QH_ENDPT1_DTC(QH_ENDPT1_DTC_DT_FROM_QTD) |
Ilya Yanokc60795f2012-11-06 13:48:20 +0000386 QH_ENDPT1_EPS(ehci_encode_speed(dev->speed)) |
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200387 QH_ENDPT1_ENDPT(usb_pipeendpoint(pipe)) | QH_ENDPT1_I(0) |
388 QH_ENDPT1_DEVADDR(usb_pipedevice(pipe));
Tom Rini71c5de42012-07-15 22:14:24 +0000389 qh->qh_endpt1 = cpu_to_hc32(endpt);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200390 endpt = QH_ENDPT2_MULT(1) | QH_ENDPT2_PORTNUM(dev->portnr) |
391 QH_ENDPT2_HUBADDR(dev->parent->devnum) |
392 QH_ENDPT2_UFCMASK(0) | QH_ENDPT2_UFSMASK(0);
Tom Rini71c5de42012-07-15 22:14:24 +0000393 qh->qh_endpt2 = cpu_to_hc32(endpt);
394 qh->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100395
Tom Rini71c5de42012-07-15 22:14:24 +0000396 tdp = &qh->qh_overlay.qt_next;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100397
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100398 if (req != NULL) {
Marek Vasut41b1f0a2012-04-09 04:13:00 +0200399 /*
400 * Setup request qTD (3.5 in ehci-r10.pdf)
401 *
402 * qt_next ................ 03-00 H
403 * qt_altnext ............. 07-04 H
404 * qt_token ............... 0B-08 H
405 *
406 * [ buffer, buffer_hi ] loaded with "req".
407 */
Marek Vasutde98e8b2012-04-08 23:32:05 +0200408 qtd[qtd_counter].qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
409 qtd[qtd_counter].qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200410 token = QT_TOKEN_DT(0) | QT_TOKEN_TOTALBYTES(sizeof(*req)) |
411 QT_TOKEN_IOC(0) | QT_TOKEN_CPAGE(0) | QT_TOKEN_CERR(3) |
412 QT_TOKEN_PID(QT_TOKEN_PID_SETUP) |
413 QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE);
Marek Vasutde98e8b2012-04-08 23:32:05 +0200414 qtd[qtd_counter].qt_token = cpu_to_hc32(token);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200415 if (ehci_td_buffer(&qtd[qtd_counter], req, sizeof(*req))) {
416 printf("unable to construct SETUP TD\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100417 goto fail;
418 }
Marek Vasut41b1f0a2012-04-09 04:13:00 +0200419 /* Update previous qTD! */
Marek Vasutde98e8b2012-04-08 23:32:05 +0200420 *tdp = cpu_to_hc32((uint32_t)&qtd[qtd_counter]);
421 tdp = &qtd[qtd_counter++].qt_next;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100422 toggle = 1;
423 }
424
425 if (length > 0 || req == NULL) {
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200426 uint8_t *buf_ptr = buffer;
427 int left_length = length;
428
429 do {
430 /*
431 * Determine the size of this qTD transfer. By default,
432 * QT_BUFFER_CNT full pages can be used.
433 */
434 int xfr_bytes = QT_BUFFER_CNT * EHCI_PAGE_SIZE;
435 /*
436 * However, if the input buffer is not page-aligned, the
437 * portion of the first page before the buffer start
438 * offset within that page is unusable.
439 */
440 xfr_bytes -= (uint32_t)buf_ptr & (EHCI_PAGE_SIZE - 1);
441 /*
442 * In order to keep each packet within a qTD transfer,
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200443 * align the qTD transfer size to PKT_ALIGN.
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200444 */
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200445 xfr_bytes &= ~(PKT_ALIGN - 1);
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200446 /*
447 * This transfer may be shorter than the available qTD
448 * transfer size that has just been computed.
449 */
450 xfr_bytes = min(xfr_bytes, left_length);
451
452 /*
453 * Setup request qTD (3.5 in ehci-r10.pdf)
454 *
455 * qt_next ................ 03-00 H
456 * qt_altnext ............. 07-04 H
457 * qt_token ............... 0B-08 H
458 *
459 * [ buffer, buffer_hi ] loaded with "buffer".
460 */
461 qtd[qtd_counter].qt_next =
462 cpu_to_hc32(QT_NEXT_TERMINATE);
463 qtd[qtd_counter].qt_altnext =
464 cpu_to_hc32(QT_NEXT_TERMINATE);
465 token = QT_TOKEN_DT(toggle) |
466 QT_TOKEN_TOTALBYTES(xfr_bytes) |
467 QT_TOKEN_IOC(req == NULL) | QT_TOKEN_CPAGE(0) |
468 QT_TOKEN_CERR(3) |
469 QT_TOKEN_PID(usb_pipein(pipe) ?
470 QT_TOKEN_PID_IN : QT_TOKEN_PID_OUT) |
471 QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE);
472 qtd[qtd_counter].qt_token = cpu_to_hc32(token);
473 if (ehci_td_buffer(&qtd[qtd_counter], buf_ptr,
474 xfr_bytes)) {
475 printf("unable to construct DATA TD\n");
476 goto fail;
477 }
478 /* Update previous qTD! */
479 *tdp = cpu_to_hc32((uint32_t)&qtd[qtd_counter]);
480 tdp = &qtd[qtd_counter++].qt_next;
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200481 /*
482 * Data toggle has to be adjusted since the qTD transfer
483 * size is not always an even multiple of
484 * wMaxPacketSize.
485 */
486 if ((xfr_bytes / maxpacket) & 1)
487 toggle ^= 1;
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200488 buf_ptr += xfr_bytes;
489 left_length -= xfr_bytes;
490 } while (left_length > 0);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100491 }
492
493 if (req != NULL) {
Marek Vasut41b1f0a2012-04-09 04:13:00 +0200494 /*
495 * Setup request qTD (3.5 in ehci-r10.pdf)
496 *
497 * qt_next ................ 03-00 H
498 * qt_altnext ............. 07-04 H
499 * qt_token ............... 0B-08 H
500 */
Marek Vasutde98e8b2012-04-08 23:32:05 +0200501 qtd[qtd_counter].qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
502 qtd[qtd_counter].qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Benoît Thébaudeaudb191342012-08-10 18:27:23 +0200503 token = QT_TOKEN_DT(1) | QT_TOKEN_TOTALBYTES(0) |
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200504 QT_TOKEN_IOC(1) | QT_TOKEN_CPAGE(0) | QT_TOKEN_CERR(3) |
505 QT_TOKEN_PID(usb_pipein(pipe) ?
506 QT_TOKEN_PID_OUT : QT_TOKEN_PID_IN) |
507 QT_TOKEN_STATUS(QT_TOKEN_STATUS_ACTIVE);
Marek Vasutde98e8b2012-04-08 23:32:05 +0200508 qtd[qtd_counter].qt_token = cpu_to_hc32(token);
Marek Vasut41b1f0a2012-04-09 04:13:00 +0200509 /* Update previous qTD! */
Marek Vasutde98e8b2012-04-08 23:32:05 +0200510 *tdp = cpu_to_hc32((uint32_t)&qtd[qtd_counter]);
511 tdp = &qtd[qtd_counter++].qt_next;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100512 }
513
Lucas Stach676ae062012-09-26 00:14:35 +0200514 ctrl->qh_list.qh_link = cpu_to_hc32((uint32_t)qh | QH_LINK_TYPE_QH);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100515
Stefan Roesedaa2daf2009-01-21 17:12:19 +0100516 /* Flush dcache */
Lucas Stach676ae062012-09-26 00:14:35 +0200517 flush_dcache_range((uint32_t)&ctrl->qh_list,
518 ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1));
Tom Rini71c5de42012-07-15 22:14:24 +0000519 flush_dcache_range((uint32_t)qh, ALIGN_END_ADDR(struct QH, qh, 1));
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200520 flush_dcache_range((uint32_t)qtd,
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200521 ALIGN_END_ADDR(struct qTD, qtd, qtd_count));
Stefan Roesedaa2daf2009-01-21 17:12:19 +0100522
Ilya Yanokc7701af2012-07-15 22:12:08 +0000523 /* Set async. queue head pointer. */
Lucas Stach676ae062012-09-26 00:14:35 +0200524 ehci_writel(&ctrl->hcor->or_asynclistaddr, (uint32_t)&ctrl->qh_list);
Ilya Yanokc7701af2012-07-15 22:12:08 +0000525
Lucas Stach676ae062012-09-26 00:14:35 +0200526 usbsts = ehci_readl(&ctrl->hcor->or_usbsts);
527 ehci_writel(&ctrl->hcor->or_usbsts, (usbsts & 0x3f));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100528
529 /* Enable async. schedule. */
Lucas Stach676ae062012-09-26 00:14:35 +0200530 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
michael51ab1422008-12-11 13:43:55 +0100531 cmd |= CMD_ASE;
Lucas Stach676ae062012-09-26 00:14:35 +0200532 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
michaeldb632992008-12-10 17:55:19 +0100533
Lucas Stach676ae062012-09-26 00:14:35 +0200534 ret = handshake((uint32_t *)&ctrl->hcor->or_usbsts, STS_ASS, STS_ASS,
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100535 100 * 1000);
536 if (ret < 0) {
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200537 printf("EHCI fail timeout STS_ASS set\n");
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100538 goto fail;
michael51ab1422008-12-11 13:43:55 +0100539 }
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100540
541 /* Wait for TDs to be processed. */
542 ts = get_timer(0);
Marek Vasutde98e8b2012-04-08 23:32:05 +0200543 vtd = &qtd[qtd_counter - 1];
Simon Glass96820a32011-02-07 14:42:16 -0800544 timeout = USB_TIMEOUT_MS(pipe);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100545 do {
Stefan Roesedaa2daf2009-01-21 17:12:19 +0100546 /* Invalidate dcache */
Lucas Stach676ae062012-09-26 00:14:35 +0200547 invalidate_dcache_range((uint32_t)&ctrl->qh_list,
548 ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1));
Tom Rini71c5de42012-07-15 22:14:24 +0000549 invalidate_dcache_range((uint32_t)qh,
550 ALIGN_END_ADDR(struct QH, qh, 1));
Marek Vasutb8adb122012-04-09 04:07:46 +0200551 invalidate_dcache_range((uint32_t)qtd,
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200552 ALIGN_END_ADDR(struct qTD, qtd, qtd_count));
Marek Vasutb8adb122012-04-09 04:07:46 +0200553
michaeldb632992008-12-10 17:55:19 +0100554 token = hc32_to_cpu(vtd->qt_token);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200555 if (!(QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE))
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100556 break;
Stefan Roese67333f72010-11-26 15:43:28 +0100557 WATCHDOG_RESET();
Simon Glass96820a32011-02-07 14:42:16 -0800558 } while (get_timer(ts) < timeout);
559
Ilya Yanok189a6952012-07-15 04:43:49 +0000560 /*
561 * Invalidate the memory area occupied by buffer
562 * Don't try to fix the buffer alignment, if it isn't properly
563 * aligned it's upper layer's fault so let invalidate_dcache_range()
564 * vow about it. But we have to fix the length as it's actual
565 * transfer length and can be unaligned. This is potentially
566 * dangerous operation, it's responsibility of the calling
567 * code to make sure enough space is reserved.
568 */
569 invalidate_dcache_range((uint32_t)buffer,
570 ALIGN((uint32_t)buffer + length, ARCH_DMA_MINALIGN));
Marek Vasutb8adb122012-04-09 04:07:46 +0200571
Simon Glass96820a32011-02-07 14:42:16 -0800572 /* Check that the TD processing happened */
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200573 if (QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE)
Simon Glass96820a32011-02-07 14:42:16 -0800574 printf("EHCI timed out on TD - token=%#x\n", token);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100575
576 /* Disable async schedule. */
Lucas Stach676ae062012-09-26 00:14:35 +0200577 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
michaeldb632992008-12-10 17:55:19 +0100578 cmd &= ~CMD_ASE;
Lucas Stach676ae062012-09-26 00:14:35 +0200579 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
michael51ab1422008-12-11 13:43:55 +0100580
Lucas Stach676ae062012-09-26 00:14:35 +0200581 ret = handshake((uint32_t *)&ctrl->hcor->or_usbsts, STS_ASS, 0,
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100582 100 * 1000);
583 if (ret < 0) {
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200584 printf("EHCI fail timeout STS_ASS reset\n");
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100585 goto fail;
michael51ab1422008-12-11 13:43:55 +0100586 }
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100587
Tom Rini71c5de42012-07-15 22:14:24 +0000588 token = hc32_to_cpu(qh->qh_overlay.qt_token);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200589 if (!(QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE)) {
michaeldb632992008-12-10 17:55:19 +0100590 debug("TOKEN=%#x\n", token);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200591 switch (QT_TOKEN_GET_STATUS(token) &
592 ~(QT_TOKEN_STATUS_SPLITXSTATE | QT_TOKEN_STATUS_PERR)) {
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100593 case 0:
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200594 toggle = QT_TOKEN_GET_DT(token);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100595 usb_settoggle(dev, usb_pipeendpoint(pipe),
596 usb_pipeout(pipe), toggle);
597 dev->status = 0;
598 break;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200599 case QT_TOKEN_STATUS_HALTED:
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100600 dev->status = USB_ST_STALLED;
601 break;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200602 case QT_TOKEN_STATUS_ACTIVE | QT_TOKEN_STATUS_DATBUFERR:
603 case QT_TOKEN_STATUS_DATBUFERR:
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100604 dev->status = USB_ST_BUF_ERR;
605 break;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200606 case QT_TOKEN_STATUS_HALTED | QT_TOKEN_STATUS_BABBLEDET:
607 case QT_TOKEN_STATUS_BABBLEDET:
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100608 dev->status = USB_ST_BABBLE_DET;
609 break;
610 default:
611 dev->status = USB_ST_CRC_ERR;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200612 if (QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_HALTED)
Anatolij Gustschin222d6df2010-11-02 11:47:29 +0100613 dev->status |= USB_ST_STALLED;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100614 break;
615 }
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200616 dev->act_len = length - QT_TOKEN_GET_TOTALBYTES(token);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100617 } else {
618 dev->act_len = 0;
Kuo-Jung Sue82a3162013-05-15 15:29:23 +0800619#ifndef CONFIG_USB_EHCI_FARADAY
michaeldb632992008-12-10 17:55:19 +0100620 debug("dev=%u, usbsts=%#x, p[1]=%#x, p[2]=%#x\n",
Lucas Stach676ae062012-09-26 00:14:35 +0200621 dev->devnum, ehci_readl(&ctrl->hcor->or_usbsts),
622 ehci_readl(&ctrl->hcor->or_portsc[0]),
623 ehci_readl(&ctrl->hcor->or_portsc[1]));
Kuo-Jung Sue82a3162013-05-15 15:29:23 +0800624#endif
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100625 }
626
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200627 free(qtd);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100628 return (dev->status != USB_ST_NOT_PROC) ? 0 : -1;
629
630fail:
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +0200631 free(qtd);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100632 return -1;
633}
634
Kuo-Jung Su1dde1422013-05-15 15:29:21 +0800635__weak uint32_t *ehci_get_portsc_register(struct ehci_hcor *hcor, int port)
636{
637 if (port < 0 || port >= CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS) {
638 /* Printing the message would cause a scan failure! */
639 debug("The request port(%u) is not configured\n", port);
640 return NULL;
641 }
642
643 return (uint32_t *)&hcor->or_portsc[port];
644}
645
michaeldb632992008-12-10 17:55:19 +0100646int
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100647ehci_submit_root(struct usb_device *dev, unsigned long pipe, void *buffer,
648 int length, struct devrequest *req)
649{
650 uint8_t tmpbuf[4];
651 u16 typeReq;
michaeldb632992008-12-10 17:55:19 +0100652 void *srcptr = NULL;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100653 int len, srclen;
654 uint32_t reg;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100655 uint32_t *status_reg;
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000656 int port = le16_to_cpu(req->index) & 0xff;
Lucas Stach676ae062012-09-26 00:14:35 +0200657 struct ehci_ctrl *ctrl = dev->controller;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100658
659 srclen = 0;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100660
michaeldb632992008-12-10 17:55:19 +0100661 debug("req=%u (%#x), type=%u (%#x), value=%u, index=%u\n",
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100662 req->request, req->request,
663 req->requesttype, req->requesttype,
664 le16_to_cpu(req->value), le16_to_cpu(req->index));
665
Prafulla Wadaskar44259bb2009-07-17 19:56:30 +0530666 typeReq = req->request | req->requesttype << 8;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100667
Prafulla Wadaskar44259bb2009-07-17 19:56:30 +0530668 switch (typeReq) {
Kuo-Jung Su9c6a9d72013-05-15 15:29:20 +0800669 case USB_REQ_GET_STATUS | ((USB_RT_PORT | USB_DIR_IN) << 8):
670 case USB_REQ_SET_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
671 case USB_REQ_CLEAR_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
Kuo-Jung Su1dde1422013-05-15 15:29:21 +0800672 status_reg = ehci_get_portsc_register(ctrl->hcor, port - 1);
673 if (!status_reg)
Kuo-Jung Su9c6a9d72013-05-15 15:29:20 +0800674 return -1;
Kuo-Jung Su9c6a9d72013-05-15 15:29:20 +0800675 break;
676 default:
677 status_reg = NULL;
678 break;
679 }
680
681 switch (typeReq) {
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100682 case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
683 switch (le16_to_cpu(req->value) >> 8) {
684 case USB_DT_DEVICE:
michaeldb632992008-12-10 17:55:19 +0100685 debug("USB_DT_DEVICE request\n");
686 srcptr = &descriptor.device;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200687 srclen = descriptor.device.bLength;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100688 break;
689 case USB_DT_CONFIG:
michaeldb632992008-12-10 17:55:19 +0100690 debug("USB_DT_CONFIG config\n");
691 srcptr = &descriptor.config;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200692 srclen = descriptor.config.bLength +
693 descriptor.interface.bLength +
694 descriptor.endpoint.bLength;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100695 break;
696 case USB_DT_STRING:
michaeldb632992008-12-10 17:55:19 +0100697 debug("USB_DT_STRING config\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100698 switch (le16_to_cpu(req->value) & 0xff) {
699 case 0: /* Language */
700 srcptr = "\4\3\1\0";
701 srclen = 4;
702 break;
703 case 1: /* Vendor */
704 srcptr = "\16\3u\0-\0b\0o\0o\0t\0";
705 srclen = 14;
706 break;
707 case 2: /* Product */
708 srcptr = "\52\3E\0H\0C\0I\0 "
709 "\0H\0o\0s\0t\0 "
710 "\0C\0o\0n\0t\0r\0o\0l\0l\0e\0r\0";
711 srclen = 42;
712 break;
713 default:
michaeldb632992008-12-10 17:55:19 +0100714 debug("unknown value DT_STRING %x\n",
715 le16_to_cpu(req->value));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100716 goto unknown;
717 }
718 break;
719 default:
michaeldb632992008-12-10 17:55:19 +0100720 debug("unknown value %x\n", le16_to_cpu(req->value));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100721 goto unknown;
722 }
723 break;
724 case USB_REQ_GET_DESCRIPTOR | ((USB_DIR_IN | USB_RT_HUB) << 8):
725 switch (le16_to_cpu(req->value) >> 8) {
726 case USB_DT_HUB:
michaeldb632992008-12-10 17:55:19 +0100727 debug("USB_DT_HUB config\n");
728 srcptr = &descriptor.hub;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200729 srclen = descriptor.hub.bLength;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100730 break;
731 default:
michaeldb632992008-12-10 17:55:19 +0100732 debug("unknown value %x\n", le16_to_cpu(req->value));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100733 goto unknown;
734 }
735 break;
736 case USB_REQ_SET_ADDRESS | (USB_RECIP_DEVICE << 8):
michaeldb632992008-12-10 17:55:19 +0100737 debug("USB_REQ_SET_ADDRESS\n");
Lucas Stach676ae062012-09-26 00:14:35 +0200738 ctrl->rootdev = le16_to_cpu(req->value);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100739 break;
740 case DeviceOutRequest | USB_REQ_SET_CONFIGURATION:
michaeldb632992008-12-10 17:55:19 +0100741 debug("USB_REQ_SET_CONFIGURATION\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100742 /* Nothing to do */
743 break;
744 case USB_REQ_GET_STATUS | ((USB_DIR_IN | USB_RT_HUB) << 8):
745 tmpbuf[0] = 1; /* USB_STATUS_SELFPOWERED */
746 tmpbuf[1] = 0;
747 srcptr = tmpbuf;
748 srclen = 2;
749 break;
michaeldb632992008-12-10 17:55:19 +0100750 case USB_REQ_GET_STATUS | ((USB_RT_PORT | USB_DIR_IN) << 8):
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100751 memset(tmpbuf, 0, 4);
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100752 reg = ehci_readl(status_reg);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100753 if (reg & EHCI_PS_CS)
754 tmpbuf[0] |= USB_PORT_STAT_CONNECTION;
755 if (reg & EHCI_PS_PE)
756 tmpbuf[0] |= USB_PORT_STAT_ENABLE;
757 if (reg & EHCI_PS_SUSP)
758 tmpbuf[0] |= USB_PORT_STAT_SUSPEND;
759 if (reg & EHCI_PS_OCA)
760 tmpbuf[0] |= USB_PORT_STAT_OVERCURRENT;
Sergei Shtylyovc8b2d1d2010-02-27 21:33:21 +0300761 if (reg & EHCI_PS_PR)
762 tmpbuf[0] |= USB_PORT_STAT_RESET;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100763 if (reg & EHCI_PS_PP)
764 tmpbuf[1] |= USB_PORT_STAT_POWER >> 8;
Stefan Roese597eb282009-01-21 17:12:01 +0100765
766 if (ehci_is_TDI()) {
Jim Linb068deb2013-03-27 00:52:32 +0000767 switch (ehci_get_port_speed(ctrl->hcor, reg)) {
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200768 case PORTSC_PSPD_FS:
Stefan Roese597eb282009-01-21 17:12:01 +0100769 break;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200770 case PORTSC_PSPD_LS:
Stefan Roese597eb282009-01-21 17:12:01 +0100771 tmpbuf[1] |= USB_PORT_STAT_LOW_SPEED >> 8;
772 break;
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200773 case PORTSC_PSPD_HS:
Stefan Roese597eb282009-01-21 17:12:01 +0100774 default:
775 tmpbuf[1] |= USB_PORT_STAT_HIGH_SPEED >> 8;
776 break;
777 }
778 } else {
779 tmpbuf[1] |= USB_PORT_STAT_HIGH_SPEED >> 8;
780 }
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100781
782 if (reg & EHCI_PS_CSC)
783 tmpbuf[2] |= USB_PORT_STAT_C_CONNECTION;
784 if (reg & EHCI_PS_PEC)
785 tmpbuf[2] |= USB_PORT_STAT_C_ENABLE;
786 if (reg & EHCI_PS_OCC)
787 tmpbuf[2] |= USB_PORT_STAT_C_OVERCURRENT;
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000788 if (ctrl->portreset & (1 << port))
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100789 tmpbuf[2] |= USB_PORT_STAT_C_RESET;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100790
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100791 srcptr = tmpbuf;
792 srclen = 4;
793 break;
michaeldb632992008-12-10 17:55:19 +0100794 case USB_REQ_SET_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100795 reg = ehci_readl(status_reg);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100796 reg &= ~EHCI_PS_CLEAR;
797 switch (le16_to_cpu(req->value)) {
michael51ab1422008-12-11 13:43:55 +0100798 case USB_PORT_FEAT_ENABLE:
799 reg |= EHCI_PS_PE;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100800 ehci_writel(status_reg, reg);
michael51ab1422008-12-11 13:43:55 +0100801 break;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100802 case USB_PORT_FEAT_POWER:
Lucas Stach676ae062012-09-26 00:14:35 +0200803 if (HCS_PPC(ehci_readl(&ctrl->hccr->cr_hcsparams))) {
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100804 reg |= EHCI_PS_PP;
805 ehci_writel(status_reg, reg);
806 }
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100807 break;
808 case USB_PORT_FEAT_RESET:
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100809 if ((reg & (EHCI_PS_PE | EHCI_PS_CS)) == EHCI_PS_CS &&
810 !ehci_is_TDI() &&
811 EHCI_PS_IS_LOWSPEED(reg)) {
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100812 /* Low speed device, give up ownership. */
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100813 debug("port %d low speed --> companion\n",
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000814 port - 1);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100815 reg |= EHCI_PS_PO;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100816 ehci_writel(status_reg, reg);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100817 break;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100818 } else {
Sergei Shtylyovc8b2d1d2010-02-27 21:33:21 +0300819 int ret;
820
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100821 reg |= EHCI_PS_PR;
822 reg &= ~EHCI_PS_PE;
823 ehci_writel(status_reg, reg);
824 /*
825 * caller must wait, then call GetPortStatus
826 * usb 2.0 specification say 50 ms resets on
827 * root
828 */
Marek Vasut3874b6d2011-07-11 02:37:01 +0200829 ehci_powerup_fixup(status_reg, &reg);
830
Chris Zhangb4161912010-01-06 13:34:04 -0800831 ehci_writel(status_reg, reg & ~EHCI_PS_PR);
Sergei Shtylyovc8b2d1d2010-02-27 21:33:21 +0300832 /*
833 * A host controller must terminate the reset
834 * and stabilize the state of the port within
835 * 2 milliseconds
836 */
837 ret = handshake(status_reg, EHCI_PS_PR, 0,
838 2 * 1000);
839 if (!ret)
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000840 ctrl->portreset |= 1 << port;
Sergei Shtylyovc8b2d1d2010-02-27 21:33:21 +0300841 else
842 printf("port(%d) reset error\n",
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000843 port - 1);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100844 }
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100845 break;
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000846 case USB_PORT_FEAT_TEST:
Julius Werner5077f962013-09-24 10:53:07 -0700847 ehci_shutdown(ctrl);
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000848 reg &= ~(0xf << 16);
849 reg |= ((le16_to_cpu(req->index) >> 8) & 0xf) << 16;
850 ehci_writel(status_reg, reg);
851 break;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100852 default:
michaeldb632992008-12-10 17:55:19 +0100853 debug("unknown feature %x\n", le16_to_cpu(req->value));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100854 goto unknown;
855 }
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100856 /* unblock posted writes */
Lucas Stach676ae062012-09-26 00:14:35 +0200857 (void) ehci_readl(&ctrl->hcor->or_usbcmd);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100858 break;
michaeldb632992008-12-10 17:55:19 +0100859 case USB_REQ_CLEAR_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100860 reg = ehci_readl(status_reg);
Simon Glassed10e662013-05-10 19:49:00 -0700861 reg &= ~EHCI_PS_CLEAR;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100862 switch (le16_to_cpu(req->value)) {
863 case USB_PORT_FEAT_ENABLE:
864 reg &= ~EHCI_PS_PE;
865 break;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100866 case USB_PORT_FEAT_C_ENABLE:
Simon Glassed10e662013-05-10 19:49:00 -0700867 reg |= EHCI_PS_PE;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100868 break;
869 case USB_PORT_FEAT_POWER:
Lucas Stach676ae062012-09-26 00:14:35 +0200870 if (HCS_PPC(ehci_readl(&ctrl->hccr->cr_hcsparams)))
Simon Glassed10e662013-05-10 19:49:00 -0700871 reg &= ~EHCI_PS_PP;
872 break;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100873 case USB_PORT_FEAT_C_CONNECTION:
Simon Glassed10e662013-05-10 19:49:00 -0700874 reg |= EHCI_PS_CSC;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100875 break;
michael51ab1422008-12-11 13:43:55 +0100876 case USB_PORT_FEAT_OVER_CURRENT:
Simon Glassed10e662013-05-10 19:49:00 -0700877 reg |= EHCI_PS_OCC;
michael51ab1422008-12-11 13:43:55 +0100878 break;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100879 case USB_PORT_FEAT_C_RESET:
Julius Werner7d9aa8f2013-02-28 18:08:40 +0000880 ctrl->portreset &= ~(1 << port);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100881 break;
882 default:
michaeldb632992008-12-10 17:55:19 +0100883 debug("unknown feature %x\n", le16_to_cpu(req->value));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100884 goto unknown;
885 }
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100886 ehci_writel(status_reg, reg);
887 /* unblock posted write */
Lucas Stach676ae062012-09-26 00:14:35 +0200888 (void) ehci_readl(&ctrl->hcor->or_usbcmd);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100889 break;
890 default:
michaeldb632992008-12-10 17:55:19 +0100891 debug("Unknown request\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100892 goto unknown;
893 }
894
Mike Frysinger5b84dd62012-03-05 13:47:00 +0000895 mdelay(1);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100896 len = min3(srclen, le16_to_cpu(req->length), length);
897 if (srcptr != NULL && len > 0)
898 memcpy(buffer, srcptr, len);
michaeldb632992008-12-10 17:55:19 +0100899 else
900 debug("Len is 0\n");
901
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100902 dev->act_len = len;
903 dev->status = 0;
904 return 0;
905
906unknown:
michaeldb632992008-12-10 17:55:19 +0100907 debug("requesttype=%x, request=%x, value=%x, index=%x, length=%x\n",
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100908 req->requesttype, req->request, le16_to_cpu(req->value),
909 le16_to_cpu(req->index), le16_to_cpu(req->length));
910
911 dev->act_len = 0;
912 dev->status = USB_ST_STALLED;
913 return -1;
914}
915
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200916int usb_lowlevel_stop(int index)
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100917{
Julius Werner5077f962013-09-24 10:53:07 -0700918 ehci_shutdown(&ehcic[index]);
Lucas Stach676ae062012-09-26 00:14:35 +0200919 return ehci_hcd_stop(index);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100920}
921
Lucas Stachc7e3b2b2012-09-26 00:14:34 +0200922int usb_lowlevel_init(int index, void **controller)
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100923{
924 uint32_t reg;
michaeldb632992008-12-10 17:55:19 +0100925 uint32_t cmd;
Lucas Stach676ae062012-09-26 00:14:35 +0200926 struct QH *qh_list;
Patrick Georgi8f62ca62013-03-06 14:08:31 +0000927 struct QH *periodic;
928 int i;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100929
Lucas Stach676ae062012-09-26 00:14:35 +0200930 if (ehci_hcd_init(index, &ehcic[index].hccr, &ehcic[index].hcor))
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100931 return -1;
932
michael51ab1422008-12-11 13:43:55 +0100933 /* EHCI spec section 4.1 */
Lucas Stach676ae062012-09-26 00:14:35 +0200934 if (ehci_reset(index))
michael51ab1422008-12-11 13:43:55 +0100935 return -1;
936
Stefan Roese832e6142009-01-21 17:12:10 +0100937#if defined(CONFIG_EHCI_HCD_INIT_AFTER_RESET)
Lucas Stach676ae062012-09-26 00:14:35 +0200938 if (ehci_hcd_init(index, &ehcic[index].hccr, &ehcic[index].hcor))
Stefan Roese832e6142009-01-21 17:12:10 +0100939 return -1;
940#endif
Vincent Palatin29828372012-12-12 17:55:22 -0800941 /* Set the high address word (aka segment) for 64-bit controller */
942 if (ehci_readl(&ehcic[index].hccr->cr_hccparams) & 1)
943 ehci_writel(ehcic[index].hcor->or_ctrldssegment, 0);
Stefan Roese832e6142009-01-21 17:12:10 +0100944
Lucas Stach676ae062012-09-26 00:14:35 +0200945 qh_list = &ehcic[index].qh_list;
946
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100947 /* Set head of reclaim list */
Tom Rini71c5de42012-07-15 22:14:24 +0000948 memset(qh_list, 0, sizeof(*qh_list));
949 qh_list->qh_link = cpu_to_hc32((uint32_t)qh_list | QH_LINK_TYPE_QH);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200950 qh_list->qh_endpt1 = cpu_to_hc32(QH_ENDPT1_H(1) |
951 QH_ENDPT1_EPS(USB_SPEED_HIGH));
Tom Rini71c5de42012-07-15 22:14:24 +0000952 qh_list->qh_curtd = cpu_to_hc32(QT_NEXT_TERMINATE);
953 qh_list->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
954 qh_list->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Benoît Thébaudeau14eb79b2012-08-10 18:22:11 +0200955 qh_list->qh_overlay.qt_token =
956 cpu_to_hc32(QT_TOKEN_STATUS(QT_TOKEN_STATUS_HALTED));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100957
Stephen Warrend3e07472013-05-24 15:03:17 -0600958 flush_dcache_range((uint32_t)qh_list,
959 ALIGN_END_ADDR(struct QH, qh_list, 1));
960
Patrick Georgi8f62ca62013-03-06 14:08:31 +0000961 /* Set async. queue head pointer. */
962 ehci_writel(&ehcic[index].hcor->or_asynclistaddr, (uint32_t)qh_list);
963
964 /*
965 * Set up periodic list
966 * Step 1: Parent QH for all periodic transfers.
967 */
968 periodic = &ehcic[index].periodic_queue;
969 memset(periodic, 0, sizeof(*periodic));
970 periodic->qh_link = cpu_to_hc32(QH_LINK_TERMINATE);
971 periodic->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
972 periodic->qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
973
Stephen Warrend3e07472013-05-24 15:03:17 -0600974 flush_dcache_range((uint32_t)periodic,
975 ALIGN_END_ADDR(struct QH, periodic, 1));
976
Patrick Georgi8f62ca62013-03-06 14:08:31 +0000977 /*
978 * Step 2: Setup frame-list: Every microframe, USB tries the same list.
979 * In particular, device specifications on polling frequency
980 * are disregarded. Keyboards seem to send NAK/NYet reliably
981 * when polled with an empty buffer.
982 *
983 * Split Transactions will be spread across microframes using
984 * S-mask and C-mask.
985 */
Nikita Kiryanov8bc36032013-07-29 13:27:40 +0300986 if (ehcic[index].periodic_list == NULL)
987 ehcic[index].periodic_list = memalign(4096, 1024 * 4);
988
Patrick Georgi8f62ca62013-03-06 14:08:31 +0000989 if (!ehcic[index].periodic_list)
990 return -ENOMEM;
991 for (i = 0; i < 1024; i++) {
992 ehcic[index].periodic_list[i] = (uint32_t)periodic
993 | QH_LINK_TYPE_QH;
994 }
995
Stephen Warrend3e07472013-05-24 15:03:17 -0600996 flush_dcache_range((uint32_t)ehcic[index].periodic_list,
997 ALIGN_END_ADDR(uint32_t, ehcic[index].periodic_list,
998 1024));
999
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001000 /* Set periodic list base address */
1001 ehci_writel(&ehcic[index].hcor->or_periodiclistbase,
1002 (uint32_t)ehcic[index].periodic_list);
1003
Lucas Stach676ae062012-09-26 00:14:35 +02001004 reg = ehci_readl(&ehcic[index].hccr->cr_hcsparams);
michael51ab1422008-12-11 13:43:55 +01001005 descriptor.hub.bNbrPorts = HCS_N_PORTS(reg);
Lucas Stach7a46b2c2012-09-28 00:26:19 +02001006 debug("Register %x NbrPorts %d\n", reg, descriptor.hub.bNbrPorts);
Remy Böhmerc0d722f2008-12-13 22:51:58 +01001007 /* Port Indicators */
1008 if (HCS_INDICATOR(reg))
Lucas Stach93ad9082012-09-06 08:00:13 +02001009 put_unaligned(get_unaligned(&descriptor.hub.wHubCharacteristics)
1010 | 0x80, &descriptor.hub.wHubCharacteristics);
Remy Böhmerc0d722f2008-12-13 22:51:58 +01001011 /* Port Power Control */
1012 if (HCS_PPC(reg))
Lucas Stach93ad9082012-09-06 08:00:13 +02001013 put_unaligned(get_unaligned(&descriptor.hub.wHubCharacteristics)
1014 | 0x01, &descriptor.hub.wHubCharacteristics);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001015
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001016 /* Start the host controller. */
Lucas Stach676ae062012-09-26 00:14:35 +02001017 cmd = ehci_readl(&ehcic[index].hcor->or_usbcmd);
Wolfgang Denkf15c6512009-02-12 00:08:39 +01001018 /*
1019 * Philips, Intel, and maybe others need CMD_RUN before the
1020 * root hub will detect new devices (why?); NEC doesn't
1021 */
michael51ab1422008-12-11 13:43:55 +01001022 cmd &= ~(CMD_LRESET|CMD_IAAD|CMD_PSE|CMD_ASE|CMD_RESET);
1023 cmd |= CMD_RUN;
Lucas Stach676ae062012-09-26 00:14:35 +02001024 ehci_writel(&ehcic[index].hcor->or_usbcmd, cmd);
michael51ab1422008-12-11 13:43:55 +01001025
Kuo-Jung Sue82a3162013-05-15 15:29:23 +08001026#ifndef CONFIG_USB_EHCI_FARADAY
michael51ab1422008-12-11 13:43:55 +01001027 /* take control over the ports */
Lucas Stach676ae062012-09-26 00:14:35 +02001028 cmd = ehci_readl(&ehcic[index].hcor->or_configflag);
michael51ab1422008-12-11 13:43:55 +01001029 cmd |= FLAG_CF;
Lucas Stach676ae062012-09-26 00:14:35 +02001030 ehci_writel(&ehcic[index].hcor->or_configflag, cmd);
Kuo-Jung Sue82a3162013-05-15 15:29:23 +08001031#endif
1032
Remy Böhmerc0d722f2008-12-13 22:51:58 +01001033 /* unblock posted write */
Lucas Stach676ae062012-09-26 00:14:35 +02001034 cmd = ehci_readl(&ehcic[index].hcor->or_usbcmd);
Mike Frysinger5b84dd62012-03-05 13:47:00 +00001035 mdelay(5);
Lucas Stach676ae062012-09-26 00:14:35 +02001036 reg = HC_VERSION(ehci_readl(&ehcic[index].hccr->cr_capbase));
Remy Böhmerc0d722f2008-12-13 22:51:58 +01001037 printf("USB EHCI %x.%02x\n", reg >> 8, reg & 0xff);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001038
Lucas Stach676ae062012-09-26 00:14:35 +02001039 ehcic[index].rootdev = 0;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001040
Lucas Stach676ae062012-09-26 00:14:35 +02001041 *controller = &ehcic[index];
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001042 return 0;
1043}
1044
1045int
1046submit_bulk_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1047 int length)
1048{
1049
1050 if (usb_pipetype(pipe) != PIPE_BULK) {
1051 debug("non-bulk pipe (type=%lu)", usb_pipetype(pipe));
1052 return -1;
1053 }
1054 return ehci_submit_async(dev, pipe, buffer, length, NULL);
1055}
1056
1057int
1058submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1059 int length, struct devrequest *setup)
1060{
Lucas Stach676ae062012-09-26 00:14:35 +02001061 struct ehci_ctrl *ctrl = dev->controller;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001062
1063 if (usb_pipetype(pipe) != PIPE_CONTROL) {
1064 debug("non-control pipe (type=%lu)", usb_pipetype(pipe));
1065 return -1;
1066 }
1067
Lucas Stach676ae062012-09-26 00:14:35 +02001068 if (usb_pipedevice(pipe) == ctrl->rootdev) {
1069 if (!ctrl->rootdev)
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001070 dev->speed = USB_SPEED_HIGH;
1071 return ehci_submit_root(dev, pipe, buffer, length, setup);
1072 }
1073 return ehci_submit_async(dev, pipe, buffer, length, setup);
1074}
1075
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001076struct int_queue {
1077 struct QH *first;
1078 struct QH *current;
1079 struct QH *last;
1080 struct qTD *tds;
1081};
1082
1083#define NEXT_QH(qh) (struct QH *)((qh)->qh_link & ~0x1f)
1084
1085static int
1086enable_periodic(struct ehci_ctrl *ctrl)
1087{
1088 uint32_t cmd;
1089 struct ehci_hcor *hcor = ctrl->hcor;
1090 int ret;
1091
1092 cmd = ehci_readl(&hcor->or_usbcmd);
1093 cmd |= CMD_PSE;
1094 ehci_writel(&hcor->or_usbcmd, cmd);
1095
1096 ret = handshake((uint32_t *)&hcor->or_usbsts,
1097 STS_PSS, STS_PSS, 100 * 1000);
1098 if (ret < 0) {
1099 printf("EHCI failed: timeout when enabling periodic list\n");
1100 return -ETIMEDOUT;
1101 }
1102 udelay(1000);
1103 return 0;
1104}
1105
1106static int
1107disable_periodic(struct ehci_ctrl *ctrl)
1108{
1109 uint32_t cmd;
1110 struct ehci_hcor *hcor = ctrl->hcor;
1111 int ret;
1112
1113 cmd = ehci_readl(&hcor->or_usbcmd);
1114 cmd &= ~CMD_PSE;
1115 ehci_writel(&hcor->or_usbcmd, cmd);
1116
1117 ret = handshake((uint32_t *)&hcor->or_usbsts,
1118 STS_PSS, 0, 100 * 1000);
1119 if (ret < 0) {
1120 printf("EHCI failed: timeout when disabling periodic list\n");
1121 return -ETIMEDOUT;
1122 }
1123 return 0;
1124}
1125
1126static int periodic_schedules;
1127
1128struct int_queue *
1129create_int_queue(struct usb_device *dev, unsigned long pipe, int queuesize,
1130 int elementsize, void *buffer)
1131{
1132 struct ehci_ctrl *ctrl = dev->controller;
1133 struct int_queue *result = NULL;
1134 int i;
1135
1136 debug("Enter create_int_queue\n");
1137 if (usb_pipetype(pipe) != PIPE_INTERRUPT) {
1138 debug("non-interrupt pipe (type=%lu)", usb_pipetype(pipe));
1139 return NULL;
1140 }
1141
1142 /* limit to 4 full pages worth of data -
1143 * we can safely fit them in a single TD,
1144 * no matter the alignment
1145 */
1146 if (elementsize >= 16384) {
1147 debug("too large elements for interrupt transfers\n");
1148 return NULL;
1149 }
1150
1151 result = malloc(sizeof(*result));
1152 if (!result) {
1153 debug("ehci intr queue: out of memory\n");
1154 goto fail1;
1155 }
1156 result->first = memalign(32, sizeof(struct QH) * queuesize);
1157 if (!result->first) {
1158 debug("ehci intr queue: out of memory\n");
1159 goto fail2;
1160 }
1161 result->current = result->first;
1162 result->last = result->first + queuesize - 1;
1163 result->tds = memalign(32, sizeof(struct qTD) * queuesize);
1164 if (!result->tds) {
1165 debug("ehci intr queue: out of memory\n");
1166 goto fail3;
1167 }
1168 memset(result->first, 0, sizeof(struct QH) * queuesize);
1169 memset(result->tds, 0, sizeof(struct qTD) * queuesize);
1170
1171 for (i = 0; i < queuesize; i++) {
1172 struct QH *qh = result->first + i;
1173 struct qTD *td = result->tds + i;
1174 void **buf = &qh->buffer;
1175
1176 qh->qh_link = (uint32_t)(qh+1) | QH_LINK_TYPE_QH;
1177 if (i == queuesize - 1)
1178 qh->qh_link = QH_LINK_TERMINATE;
1179
1180 qh->qh_overlay.qt_next = (uint32_t)td;
1181 qh->qh_endpt1 = (0 << 28) | /* No NAK reload (ehci 4.9) */
1182 (usb_maxpacket(dev, pipe) << 16) | /* MPS */
1183 (1 << 14) |
1184 QH_ENDPT1_EPS(ehci_encode_speed(dev->speed)) |
1185 (usb_pipeendpoint(pipe) << 8) | /* Endpoint Number */
1186 (usb_pipedevice(pipe) << 0);
1187 qh->qh_endpt2 = (1 << 30) | /* 1 Tx per mframe */
1188 (1 << 0); /* S-mask: microframe 0 */
1189 if (dev->speed == USB_SPEED_LOW ||
1190 dev->speed == USB_SPEED_FULL) {
1191 debug("TT: port: %d, hub address: %d\n",
1192 dev->portnr, dev->parent->devnum);
1193 qh->qh_endpt2 |= (dev->portnr << 23) |
1194 (dev->parent->devnum << 16) |
1195 (0x1c << 8); /* C-mask: microframes 2-4 */
1196 }
1197
1198 td->qt_next = QT_NEXT_TERMINATE;
1199 td->qt_altnext = QT_NEXT_TERMINATE;
1200 debug("communication direction is '%s'\n",
1201 usb_pipein(pipe) ? "in" : "out");
1202 td->qt_token = (elementsize << 16) |
1203 ((usb_pipein(pipe) ? 1 : 0) << 8) | /* IN/OUT token */
1204 0x80; /* active */
1205 td->qt_buffer[0] = (uint32_t)buffer + i * elementsize;
1206 td->qt_buffer[1] = (td->qt_buffer[0] + 0x1000) & ~0xfff;
1207 td->qt_buffer[2] = (td->qt_buffer[0] + 0x2000) & ~0xfff;
1208 td->qt_buffer[3] = (td->qt_buffer[0] + 0x3000) & ~0xfff;
1209 td->qt_buffer[4] = (td->qt_buffer[0] + 0x4000) & ~0xfff;
1210
1211 *buf = buffer + i * elementsize;
1212 }
1213
Stephen Warrend3e07472013-05-24 15:03:17 -06001214 flush_dcache_range((uint32_t)buffer,
1215 ALIGN_END_ADDR(char, buffer,
1216 queuesize * elementsize));
1217 flush_dcache_range((uint32_t)result->first,
1218 ALIGN_END_ADDR(struct QH, result->first,
1219 queuesize));
1220 flush_dcache_range((uint32_t)result->tds,
1221 ALIGN_END_ADDR(struct qTD, result->tds,
1222 queuesize));
1223
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001224 if (disable_periodic(ctrl) < 0) {
1225 debug("FATAL: periodic should never fail, but did");
1226 goto fail3;
1227 }
1228
1229 /* hook up to periodic list */
1230 struct QH *list = &ctrl->periodic_queue;
1231 result->last->qh_link = list->qh_link;
1232 list->qh_link = (uint32_t)result->first | QH_LINK_TYPE_QH;
1233
Stephen Warrend3e07472013-05-24 15:03:17 -06001234 flush_dcache_range((uint32_t)result->last,
1235 ALIGN_END_ADDR(struct QH, result->last, 1));
1236 flush_dcache_range((uint32_t)list,
1237 ALIGN_END_ADDR(struct QH, list, 1));
1238
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001239 if (enable_periodic(ctrl) < 0) {
1240 debug("FATAL: periodic should never fail, but did");
1241 goto fail3;
1242 }
1243 periodic_schedules++;
1244
1245 debug("Exit create_int_queue\n");
1246 return result;
1247fail3:
1248 if (result->tds)
1249 free(result->tds);
1250fail2:
1251 if (result->first)
1252 free(result->first);
1253 if (result)
1254 free(result);
1255fail1:
1256 return NULL;
1257}
1258
1259void *poll_int_queue(struct usb_device *dev, struct int_queue *queue)
1260{
1261 struct QH *cur = queue->current;
1262
1263 /* depleted queue */
1264 if (cur == NULL) {
1265 debug("Exit poll_int_queue with completed queue\n");
1266 return NULL;
1267 }
1268 /* still active */
Stephen Warrend3e07472013-05-24 15:03:17 -06001269 invalidate_dcache_range((uint32_t)cur,
1270 ALIGN_END_ADDR(struct QH, cur, 1));
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001271 if (cur->qh_overlay.qt_token & 0x80) {
1272 debug("Exit poll_int_queue with no completed intr transfer. "
1273 "token is %x\n", cur->qh_overlay.qt_token);
1274 return NULL;
1275 }
1276 if (!(cur->qh_link & QH_LINK_TERMINATE))
1277 queue->current++;
1278 else
1279 queue->current = NULL;
1280 debug("Exit poll_int_queue with completed intr transfer. "
1281 "token is %x at %p (first at %p)\n", cur->qh_overlay.qt_token,
1282 &cur->qh_overlay.qt_token, queue->first);
1283 return cur->buffer;
1284}
1285
1286/* Do not free buffers associated with QHs, they're owned by someone else */
1287int
1288destroy_int_queue(struct usb_device *dev, struct int_queue *queue)
1289{
1290 struct ehci_ctrl *ctrl = dev->controller;
1291 int result = -1;
1292 unsigned long timeout;
1293
1294 if (disable_periodic(ctrl) < 0) {
1295 debug("FATAL: periodic should never fail, but did");
1296 goto out;
1297 }
1298 periodic_schedules--;
1299
1300 struct QH *cur = &ctrl->periodic_queue;
1301 timeout = get_timer(0) + 500; /* abort after 500ms */
1302 while (!(cur->qh_link & QH_LINK_TERMINATE)) {
1303 debug("considering %p, with qh_link %x\n", cur, cur->qh_link);
1304 if (NEXT_QH(cur) == queue->first) {
1305 debug("found candidate. removing from chain\n");
1306 cur->qh_link = queue->last->qh_link;
1307 result = 0;
1308 break;
1309 }
1310 cur = NEXT_QH(cur);
1311 if (get_timer(0) > timeout) {
1312 printf("Timeout destroying interrupt endpoint queue\n");
1313 result = -1;
1314 goto out;
1315 }
1316 }
1317
1318 if (periodic_schedules > 0) {
1319 result = enable_periodic(ctrl);
1320 if (result < 0)
1321 debug("FATAL: periodic should never fail, but did");
1322 }
1323
1324out:
1325 free(queue->tds);
1326 free(queue->first);
1327 free(queue);
1328
1329 return result;
1330}
1331
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001332int
1333submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1334 int length, int interval)
1335{
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001336 void *backbuffer;
1337 struct int_queue *queue;
1338 unsigned long timeout;
1339 int result = 0, ret;
1340
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001341 debug("dev=%p, pipe=%lu, buffer=%p, length=%d, interval=%d",
1342 dev, pipe, buffer, length, interval);
Benoît Thébaudeau44ae0be2012-08-09 23:50:44 +02001343
1344 /*
1345 * Interrupt transfers requiring several transactions are not supported
1346 * because bInterval is ignored.
Benoît Thébaudeau5cec2142012-08-10 18:22:32 +02001347 *
1348 * Also, ehci_submit_async() relies on wMaxPacketSize being a power of 2
Benoît Thébaudeaudb191342012-08-10 18:27:23 +02001349 * <= PKT_ALIGN if several qTDs are required, while the USB
1350 * specification does not constrain this for interrupt transfers. That
1351 * means that ehci_submit_async() would support interrupt transfers
1352 * requiring several transactions only as long as the transfer size does
1353 * not require more than a single qTD.
Benoît Thébaudeau44ae0be2012-08-09 23:50:44 +02001354 */
1355 if (length > usb_maxpacket(dev, pipe)) {
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001356 printf("%s: Interrupt transfers requiring several "
1357 "transactions are not supported.\n", __func__);
Benoît Thébaudeau44ae0be2012-08-09 23:50:44 +02001358 return -1;
1359 }
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001360
1361 queue = create_int_queue(dev, pipe, 1, length, buffer);
1362
1363 timeout = get_timer(0) + USB_TIMEOUT_MS(pipe);
1364 while ((backbuffer = poll_int_queue(dev, queue)) == NULL)
1365 if (get_timer(0) > timeout) {
1366 printf("Timeout poll on interrupt endpoint\n");
1367 result = -ETIMEDOUT;
1368 break;
1369 }
1370
1371 if (backbuffer != buffer) {
1372 debug("got wrong buffer back (%x instead of %x)\n",
1373 (uint32_t)backbuffer, (uint32_t)buffer);
1374 return -EINVAL;
1375 }
1376
Stephen Warrend3e07472013-05-24 15:03:17 -06001377 invalidate_dcache_range((uint32_t)buffer,
1378 ALIGN_END_ADDR(char, buffer, length));
1379
Patrick Georgi8f62ca62013-03-06 14:08:31 +00001380 ret = destroy_int_queue(dev, queue);
1381 if (ret < 0)
1382 return ret;
1383
1384 /* everything worked out fine */
1385 return result;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +01001386}