blob: ef5afc22b04c5f25f322d6897c9aad8e60c4e80d [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>
michaeldb632992008-12-10 17:55:19 +010024#include <asm/byteorder.h>
Michael Trimarchiaaf098c2008-11-28 13:20:46 +010025#include <usb.h>
26#include <asm/io.h>
michaeldb632992008-12-10 17:55:19 +010027#include <malloc.h>
Stefan Roese67333f72010-11-26 15:43:28 +010028#include <watchdog.h>
Jean-Christophe PLAGNIOL-VILLARD2731b9a2009-04-03 12:46:58 +020029
30#include "ehci.h"
Michael Trimarchiaaf098c2008-11-28 13:20:46 +010031
32int rootdev;
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +010033struct ehci_hccr *hccr; /* R/O registers, not need for volatile */
Michael Trimarchiaaf098c2008-11-28 13:20:46 +010034volatile struct ehci_hcor *hcor;
35
36static uint16_t portreset;
37static struct QH qh_list __attribute__((aligned(32)));
38
michaeldb632992008-12-10 17:55:19 +010039static struct descriptor {
40 struct usb_hub_descriptor hub;
41 struct usb_device_descriptor device;
42 struct usb_linux_config_descriptor config;
43 struct usb_linux_interface_descriptor interface;
44 struct usb_endpoint_descriptor endpoint;
45} __attribute__ ((packed)) descriptor = {
46 {
47 0x8, /* bDescLength */
48 0x29, /* bDescriptorType: hub descriptor */
49 2, /* bNrPorts -- runtime modified */
50 0, /* wHubCharacteristics */
Vincent Palatin5f4b4f22011-12-05 14:52:22 -080051 10, /* bPwrOn2PwrGood */
michaeldb632992008-12-10 17:55:19 +010052 0, /* bHubCntrCurrent */
53 {}, /* Device removable */
54 {} /* at most 7 ports! XXX */
55 },
56 {
57 0x12, /* bLength */
58 1, /* bDescriptorType: UDESC_DEVICE */
Sergei Shtylyov6d313c82010-02-27 21:29:42 +030059 cpu_to_le16(0x0200), /* bcdUSB: v2.0 */
michaeldb632992008-12-10 17:55:19 +010060 9, /* bDeviceClass: UDCLASS_HUB */
61 0, /* bDeviceSubClass: UDSUBCLASS_HUB */
62 1, /* bDeviceProtocol: UDPROTO_HSHUBSTT */
63 64, /* bMaxPacketSize: 64 bytes */
64 0x0000, /* idVendor */
65 0x0000, /* idProduct */
Sergei Shtylyov6d313c82010-02-27 21:29:42 +030066 cpu_to_le16(0x0100), /* bcdDevice */
michaeldb632992008-12-10 17:55:19 +010067 1, /* iManufacturer */
68 2, /* iProduct */
69 0, /* iSerialNumber */
70 1 /* bNumConfigurations: 1 */
71 },
72 {
73 0x9,
74 2, /* bDescriptorType: UDESC_CONFIG */
75 cpu_to_le16(0x19),
76 1, /* bNumInterface */
77 1, /* bConfigurationValue */
78 0, /* iConfiguration */
79 0x40, /* bmAttributes: UC_SELF_POWER */
80 0 /* bMaxPower */
81 },
82 {
83 0x9, /* bLength */
84 4, /* bDescriptorType: UDESC_INTERFACE */
85 0, /* bInterfaceNumber */
86 0, /* bAlternateSetting */
87 1, /* bNumEndpoints */
88 9, /* bInterfaceClass: UICLASS_HUB */
89 0, /* bInterfaceSubClass: UISUBCLASS_HUB */
90 0, /* bInterfaceProtocol: UIPROTO_HSHUBSTT */
91 0 /* iInterface */
92 },
93 {
94 0x7, /* bLength */
95 5, /* bDescriptorType: UDESC_ENDPOINT */
96 0x81, /* bEndpointAddress:
97 * UE_DIR_IN | EHCI_INTR_ENDPT
98 */
99 3, /* bmAttributes: UE_INTERRUPT */
Tom Rix8f8bd562009-10-31 12:37:38 -0500100 8, /* wMaxPacketSize */
michaeldb632992008-12-10 17:55:19 +0100101 255 /* bInterval */
102 },
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100103};
104
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100105#if defined(CONFIG_EHCI_IS_TDI)
106#define ehci_is_TDI() (1)
107#else
108#define ehci_is_TDI() (0)
109#endif
110
Stefan Roesedaa2daf2009-01-21 17:12:19 +0100111#if defined(CONFIG_EHCI_DCACHE)
112/*
113 * Routines to handle (flush/invalidate) the dcache for the QH and qTD
114 * structures and data buffers. This is needed on platforms using this
115 * EHCI support with dcache enabled.
116 */
117static void flush_invalidate(u32 addr, int size, int flush)
118{
119 if (flush)
120 flush_dcache_range(addr, addr + size);
121 else
122 invalidate_dcache_range(addr, addr + size);
123}
124
125static void cache_qtd(struct qTD *qtd, int flush)
126{
127 u32 *ptr = (u32 *)qtd->qt_buffer[0];
128 int len = (qtd->qt_token & 0x7fff0000) >> 16;
129
130 flush_invalidate((u32)qtd, sizeof(struct qTD), flush);
131 if (ptr && len)
132 flush_invalidate((u32)ptr, len, flush);
133}
134
135
136static inline struct QH *qh_addr(struct QH *qh)
137{
138 return (struct QH *)((u32)qh & 0xffffffe0);
139}
140
141static void cache_qh(struct QH *qh, int flush)
142{
143 struct qTD *qtd;
144 struct qTD *next;
145 static struct qTD *first_qtd;
146
147 /*
148 * Walk the QH list and flush/invalidate all entries
149 */
150 while (1) {
151 flush_invalidate((u32)qh_addr(qh), sizeof(struct QH), flush);
152 if ((u32)qh & QH_LINK_TYPE_QH)
153 break;
154 qh = qh_addr(qh);
155 qh = (struct QH *)qh->qh_link;
156 }
157 qh = qh_addr(qh);
158
159 /*
160 * Save first qTD pointer, needed for invalidating pass on this QH
161 */
162 if (flush)
163 first_qtd = qtd = (struct qTD *)(*(u32 *)&qh->qh_overlay &
164 0xffffffe0);
165 else
166 qtd = first_qtd;
167
168 /*
169 * Walk the qTD list and flush/invalidate all entries
170 */
171 while (1) {
172 if (qtd == NULL)
173 break;
174 cache_qtd(qtd, flush);
175 next = (struct qTD *)((u32)qtd->qt_next & 0xffffffe0);
176 if (next == qtd)
177 break;
178 qtd = next;
179 }
180}
181
182static inline void ehci_flush_dcache(struct QH *qh)
183{
184 cache_qh(qh, 1);
185}
186
187static inline void ehci_invalidate_dcache(struct QH *qh)
188{
189 cache_qh(qh, 0);
190}
191#else /* CONFIG_EHCI_DCACHE */
192/*
193 *
194 */
195static inline void ehci_flush_dcache(struct QH *qh)
196{
197}
198
199static inline void ehci_invalidate_dcache(struct QH *qh)
200{
201}
202#endif /* CONFIG_EHCI_DCACHE */
203
Marek Vasut3874b6d2011-07-11 02:37:01 +0200204void __ehci_powerup_fixup(uint32_t *status_reg, uint32_t *reg)
205{
206 mdelay(50);
207}
208
209void ehci_powerup_fixup(uint32_t *status_reg, uint32_t *reg)
210 __attribute__((weak, alias("__ehci_powerup_fixup")));
211
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100212static int handshake(uint32_t *ptr, uint32_t mask, uint32_t done, int usec)
michaeldb632992008-12-10 17:55:19 +0100213{
michael51ab1422008-12-11 13:43:55 +0100214 uint32_t result;
215 do {
216 result = ehci_readl(ptr);
Wolfgang Denk09c83a42010-10-22 14:23:00 +0200217 udelay(5);
michael51ab1422008-12-11 13:43:55 +0100218 if (result == ~(uint32_t)0)
219 return -1;
220 result &= mask;
221 if (result == done)
222 return 0;
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100223 usec--;
224 } while (usec > 0);
michael51ab1422008-12-11 13:43:55 +0100225 return -1;
226}
227
228static void ehci_free(void *p, size_t sz)
229{
230
231}
232
233static int ehci_reset(void)
234{
235 uint32_t cmd;
236 uint32_t tmp;
237 uint32_t *reg_ptr;
238 int ret = 0;
239
240 cmd = ehci_readl(&hcor->or_usbcmd);
Stefan Roese273d7202010-11-26 15:44:00 +0100241 cmd = (cmd & ~CMD_RUN) | CMD_RESET;
michael51ab1422008-12-11 13:43:55 +0100242 ehci_writel(&hcor->or_usbcmd, cmd);
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100243 ret = handshake((uint32_t *)&hcor->or_usbcmd, CMD_RESET, 0, 250 * 1000);
michael51ab1422008-12-11 13:43:55 +0100244 if (ret < 0) {
245 printf("EHCI fail to reset\n");
246 goto out;
247 }
248
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100249 if (ehci_is_TDI()) {
250 reg_ptr = (uint32_t *)((u8 *)hcor + USBMODE);
251 tmp = ehci_readl(reg_ptr);
252 tmp |= USBMODE_CM_HC;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100253#if defined(CONFIG_EHCI_MMIO_BIG_ENDIAN)
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100254 tmp |= USBMODE_BE;
michael51ab1422008-12-11 13:43:55 +0100255#endif
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100256 ehci_writel(reg_ptr, tmp);
257 }
michael51ab1422008-12-11 13:43:55 +0100258out:
259 return ret;
michaeldb632992008-12-10 17:55:19 +0100260}
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100261
262static void *ehci_alloc(size_t sz, size_t align)
263{
264 static struct QH qh __attribute__((aligned(32)));
265 static struct qTD td[3] __attribute__((aligned (32)));
266 static int ntds;
267 void *p;
268
269 switch (sz) {
270 case sizeof(struct QH):
271 p = &qh;
272 ntds = 0;
273 break;
274 case sizeof(struct qTD):
275 if (ntds == 3) {
michaeldb632992008-12-10 17:55:19 +0100276 debug("out of TDs\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100277 return NULL;
278 }
279 p = &td[ntds];
280 ntds++;
281 break;
282 default:
michaeldb632992008-12-10 17:55:19 +0100283 debug("unknown allocation size\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100284 return NULL;
285 }
286
Sergei Shtylyov9fb3b502010-06-28 22:44:49 +0400287 memset(p, 0, sz);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100288 return p;
289}
290
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100291static int ehci_td_buffer(struct qTD *td, void *buf, size_t sz)
292{
293 uint32_t addr, delta, next;
294 int idx;
295
296 addr = (uint32_t) buf;
297 idx = 0;
298 while (idx < 5) {
michaeldb632992008-12-10 17:55:19 +0100299 td->qt_buffer[idx] = cpu_to_hc32(addr);
Wolfgang Denk3ed16072010-10-19 16:13:15 +0200300 td->qt_buffer_hi[idx] = 0;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100301 next = (addr + 4096) & ~4095;
302 delta = next - addr;
303 if (delta >= sz)
304 break;
305 sz -= delta;
306 addr = next;
307 idx++;
308 }
309
310 if (idx == 5) {
michaeldb632992008-12-10 17:55:19 +0100311 debug("out of buffer pointers (%u bytes left)\n", sz);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100312 return -1;
313 }
314
315 return 0;
316}
317
318static int
319ehci_submit_async(struct usb_device *dev, unsigned long pipe, void *buffer,
320 int length, struct devrequest *req)
321{
322 struct QH *qh;
323 struct qTD *td;
324 volatile struct qTD *vtd;
325 unsigned long ts;
326 uint32_t *tdp;
327 uint32_t endpt, token, usbsts;
328 uint32_t c, toggle;
michaeldb632992008-12-10 17:55:19 +0100329 uint32_t cmd;
Simon Glass96820a32011-02-07 14:42:16 -0800330 int timeout;
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100331 int ret = 0;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100332
michaeldb632992008-12-10 17:55:19 +0100333 debug("dev=%p, pipe=%lx, buffer=%p, length=%d, req=%p\n", dev, pipe,
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100334 buffer, length, req);
335 if (req != NULL)
michaeldb632992008-12-10 17:55:19 +0100336 debug("req=%u (%#x), type=%u (%#x), value=%u (%#x), index=%u\n",
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100337 req->request, req->request,
338 req->requesttype, req->requesttype,
339 le16_to_cpu(req->value), le16_to_cpu(req->value),
michaeldb632992008-12-10 17:55:19 +0100340 le16_to_cpu(req->index));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100341
342 qh = ehci_alloc(sizeof(struct QH), 32);
343 if (qh == NULL) {
michaeldb632992008-12-10 17:55:19 +0100344 debug("unable to allocate QH\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100345 return -1;
346 }
michaeldb632992008-12-10 17:55:19 +0100347 qh->qh_link = cpu_to_hc32((uint32_t)&qh_list | QH_LINK_TYPE_QH);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100348 c = (usb_pipespeed(pipe) != USB_SPEED_HIGH &&
349 usb_pipeendpoint(pipe) == 0) ? 1 : 0;
350 endpt = (8 << 28) |
351 (c << 27) |
352 (usb_maxpacket(dev, pipe) << 16) |
353 (0 << 15) |
354 (1 << 14) |
355 (usb_pipespeed(pipe) << 12) |
356 (usb_pipeendpoint(pipe) << 8) |
357 (0 << 7) | (usb_pipedevice(pipe) << 0);
michaeldb632992008-12-10 17:55:19 +0100358 qh->qh_endpt1 = cpu_to_hc32(endpt);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100359 endpt = (1 << 30) |
360 (dev->portnr << 23) |
361 (dev->parent->devnum << 16) | (0 << 8) | (0 << 0);
michaeldb632992008-12-10 17:55:19 +0100362 qh->qh_endpt2 = cpu_to_hc32(endpt);
363 qh->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100364
365 td = NULL;
366 tdp = &qh->qh_overlay.qt_next;
367
368 toggle =
369 usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
370
371 if (req != NULL) {
372 td = ehci_alloc(sizeof(struct qTD), 32);
373 if (td == NULL) {
michaeldb632992008-12-10 17:55:19 +0100374 debug("unable to allocate SETUP td\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100375 goto fail;
376 }
michaeldb632992008-12-10 17:55:19 +0100377 td->qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
378 td->qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100379 token = (0 << 31) |
380 (sizeof(*req) << 16) |
381 (0 << 15) | (0 << 12) | (3 << 10) | (2 << 8) | (0x80 << 0);
michaeldb632992008-12-10 17:55:19 +0100382 td->qt_token = cpu_to_hc32(token);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100383 if (ehci_td_buffer(td, req, sizeof(*req)) != 0) {
michaeldb632992008-12-10 17:55:19 +0100384 debug("unable construct SETUP td\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100385 ehci_free(td, sizeof(*td));
386 goto fail;
387 }
michaeldb632992008-12-10 17:55:19 +0100388 *tdp = cpu_to_hc32((uint32_t) td);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100389 tdp = &td->qt_next;
390 toggle = 1;
391 }
392
393 if (length > 0 || req == NULL) {
394 td = ehci_alloc(sizeof(struct qTD), 32);
395 if (td == NULL) {
michaeldb632992008-12-10 17:55:19 +0100396 debug("unable to allocate DATA td\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100397 goto fail;
398 }
michaeldb632992008-12-10 17:55:19 +0100399 td->qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
400 td->qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100401 token = (toggle << 31) |
402 (length << 16) |
403 ((req == NULL ? 1 : 0) << 15) |
404 (0 << 12) |
405 (3 << 10) |
406 ((usb_pipein(pipe) ? 1 : 0) << 8) | (0x80 << 0);
michaeldb632992008-12-10 17:55:19 +0100407 td->qt_token = cpu_to_hc32(token);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100408 if (ehci_td_buffer(td, buffer, length) != 0) {
michaeldb632992008-12-10 17:55:19 +0100409 debug("unable construct DATA td\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100410 ehci_free(td, sizeof(*td));
411 goto fail;
412 }
michaeldb632992008-12-10 17:55:19 +0100413 *tdp = cpu_to_hc32((uint32_t) td);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100414 tdp = &td->qt_next;
415 }
416
417 if (req != NULL) {
418 td = ehci_alloc(sizeof(struct qTD), 32);
419 if (td == NULL) {
michaeldb632992008-12-10 17:55:19 +0100420 debug("unable to allocate ACK td\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100421 goto fail;
422 }
michaeldb632992008-12-10 17:55:19 +0100423 td->qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
424 td->qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100425 token = (toggle << 31) |
426 (0 << 16) |
427 (1 << 15) |
428 (0 << 12) |
429 (3 << 10) |
430 ((usb_pipein(pipe) ? 0 : 1) << 8) | (0x80 << 0);
michaeldb632992008-12-10 17:55:19 +0100431 td->qt_token = cpu_to_hc32(token);
432 *tdp = cpu_to_hc32((uint32_t) td);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100433 tdp = &td->qt_next;
434 }
435
michaeldb632992008-12-10 17:55:19 +0100436 qh_list.qh_link = cpu_to_hc32((uint32_t) qh | QH_LINK_TYPE_QH);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100437
Stefan Roesedaa2daf2009-01-21 17:12:19 +0100438 /* Flush dcache */
439 ehci_flush_dcache(&qh_list);
440
michael51ab1422008-12-11 13:43:55 +0100441 usbsts = ehci_readl(&hcor->or_usbsts);
442 ehci_writel(&hcor->or_usbsts, (usbsts & 0x3f));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100443
444 /* Enable async. schedule. */
michael51ab1422008-12-11 13:43:55 +0100445 cmd = ehci_readl(&hcor->or_usbcmd);
446 cmd |= CMD_ASE;
447 ehci_writel(&hcor->or_usbcmd, cmd);
michaeldb632992008-12-10 17:55:19 +0100448
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100449 ret = handshake((uint32_t *)&hcor->or_usbsts, STD_ASS, STD_ASS,
450 100 * 1000);
451 if (ret < 0) {
452 printf("EHCI fail timeout STD_ASS set\n");
453 goto fail;
michael51ab1422008-12-11 13:43:55 +0100454 }
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100455
456 /* Wait for TDs to be processed. */
457 ts = get_timer(0);
458 vtd = td;
Simon Glass96820a32011-02-07 14:42:16 -0800459 timeout = USB_TIMEOUT_MS(pipe);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100460 do {
Stefan Roesedaa2daf2009-01-21 17:12:19 +0100461 /* Invalidate dcache */
462 ehci_invalidate_dcache(&qh_list);
michaeldb632992008-12-10 17:55:19 +0100463 token = hc32_to_cpu(vtd->qt_token);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100464 if (!(token & 0x80))
465 break;
Stefan Roese67333f72010-11-26 15:43:28 +0100466 WATCHDOG_RESET();
Simon Glass96820a32011-02-07 14:42:16 -0800467 } while (get_timer(ts) < timeout);
468
469 /* Check that the TD processing happened */
470 if (token & 0x80) {
471 printf("EHCI timed out on TD - token=%#x\n", token);
Simon Glass96820a32011-02-07 14:42:16 -0800472 }
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100473
474 /* Disable async schedule. */
michael51ab1422008-12-11 13:43:55 +0100475 cmd = ehci_readl(&hcor->or_usbcmd);
michaeldb632992008-12-10 17:55:19 +0100476 cmd &= ~CMD_ASE;
michael51ab1422008-12-11 13:43:55 +0100477 ehci_writel(&hcor->or_usbcmd, cmd);
478
Michael Trimarchi1ed9f9a2008-12-31 10:33:22 +0100479 ret = handshake((uint32_t *)&hcor->or_usbsts, STD_ASS, 0,
480 100 * 1000);
481 if (ret < 0) {
482 printf("EHCI fail timeout STD_ASS reset\n");
483 goto fail;
michael51ab1422008-12-11 13:43:55 +0100484 }
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100485
michaeldb632992008-12-10 17:55:19 +0100486 qh_list.qh_link = cpu_to_hc32((uint32_t)&qh_list | QH_LINK_TYPE_QH);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100487
michaeldb632992008-12-10 17:55:19 +0100488 token = hc32_to_cpu(qh->qh_overlay.qt_token);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100489 if (!(token & 0x80)) {
michaeldb632992008-12-10 17:55:19 +0100490 debug("TOKEN=%#x\n", token);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100491 switch (token & 0xfc) {
492 case 0:
493 toggle = token >> 31;
494 usb_settoggle(dev, usb_pipeendpoint(pipe),
495 usb_pipeout(pipe), toggle);
496 dev->status = 0;
497 break;
498 case 0x40:
499 dev->status = USB_ST_STALLED;
500 break;
501 case 0xa0:
502 case 0x20:
503 dev->status = USB_ST_BUF_ERR;
504 break;
505 case 0x50:
506 case 0x10:
507 dev->status = USB_ST_BABBLE_DET;
508 break;
509 default:
510 dev->status = USB_ST_CRC_ERR;
Anatolij Gustschin222d6df2010-11-02 11:47:29 +0100511 if ((token & 0x40) == 0x40)
512 dev->status |= USB_ST_STALLED;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100513 break;
514 }
515 dev->act_len = length - ((token >> 16) & 0x7fff);
516 } else {
517 dev->act_len = 0;
michaeldb632992008-12-10 17:55:19 +0100518 debug("dev=%u, usbsts=%#x, p[1]=%#x, p[2]=%#x\n",
michael51ab1422008-12-11 13:43:55 +0100519 dev->devnum, ehci_readl(&hcor->or_usbsts),
520 ehci_readl(&hcor->or_portsc[0]),
521 ehci_readl(&hcor->or_portsc[1]));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100522 }
523
524 return (dev->status != USB_ST_NOT_PROC) ? 0 : -1;
525
526fail:
michaeldb632992008-12-10 17:55:19 +0100527 td = (void *)hc32_to_cpu(qh->qh_overlay.qt_next);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100528 while (td != (void *)QT_NEXT_TERMINATE) {
529 qh->qh_overlay.qt_next = td->qt_next;
530 ehci_free(td, sizeof(*td));
michaeldb632992008-12-10 17:55:19 +0100531 td = (void *)hc32_to_cpu(qh->qh_overlay.qt_next);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100532 }
533 ehci_free(qh, sizeof(*qh));
534 return -1;
535}
536
537static inline int min3(int a, int b, int c)
538{
539
540 if (b < a)
541 a = b;
542 if (c < a)
543 a = c;
544 return a;
545}
546
michaeldb632992008-12-10 17:55:19 +0100547int
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100548ehci_submit_root(struct usb_device *dev, unsigned long pipe, void *buffer,
549 int length, struct devrequest *req)
550{
551 uint8_t tmpbuf[4];
552 u16 typeReq;
michaeldb632992008-12-10 17:55:19 +0100553 void *srcptr = NULL;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100554 int len, srclen;
555 uint32_t reg;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100556 uint32_t *status_reg;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100557
Sergei Shtylyove06a0552010-02-27 21:32:17 +0300558 if (le16_to_cpu(req->index) > CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS) {
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100559 printf("The request port(%d) is not configured\n",
560 le16_to_cpu(req->index) - 1);
561 return -1;
562 }
563 status_reg = (uint32_t *)&hcor->or_portsc[
564 le16_to_cpu(req->index) - 1];
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100565 srclen = 0;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100566
michaeldb632992008-12-10 17:55:19 +0100567 debug("req=%u (%#x), type=%u (%#x), value=%u, index=%u\n",
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100568 req->request, req->request,
569 req->requesttype, req->requesttype,
570 le16_to_cpu(req->value), le16_to_cpu(req->index));
571
Prafulla Wadaskar44259bb2009-07-17 19:56:30 +0530572 typeReq = req->request | req->requesttype << 8;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100573
Prafulla Wadaskar44259bb2009-07-17 19:56:30 +0530574 switch (typeReq) {
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100575 case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
576 switch (le16_to_cpu(req->value) >> 8) {
577 case USB_DT_DEVICE:
michaeldb632992008-12-10 17:55:19 +0100578 debug("USB_DT_DEVICE request\n");
579 srcptr = &descriptor.device;
580 srclen = 0x12;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100581 break;
582 case USB_DT_CONFIG:
michaeldb632992008-12-10 17:55:19 +0100583 debug("USB_DT_CONFIG config\n");
584 srcptr = &descriptor.config;
585 srclen = 0x19;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100586 break;
587 case USB_DT_STRING:
michaeldb632992008-12-10 17:55:19 +0100588 debug("USB_DT_STRING config\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100589 switch (le16_to_cpu(req->value) & 0xff) {
590 case 0: /* Language */
591 srcptr = "\4\3\1\0";
592 srclen = 4;
593 break;
594 case 1: /* Vendor */
595 srcptr = "\16\3u\0-\0b\0o\0o\0t\0";
596 srclen = 14;
597 break;
598 case 2: /* Product */
599 srcptr = "\52\3E\0H\0C\0I\0 "
600 "\0H\0o\0s\0t\0 "
601 "\0C\0o\0n\0t\0r\0o\0l\0l\0e\0r\0";
602 srclen = 42;
603 break;
604 default:
michaeldb632992008-12-10 17:55:19 +0100605 debug("unknown value DT_STRING %x\n",
606 le16_to_cpu(req->value));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100607 goto unknown;
608 }
609 break;
610 default:
michaeldb632992008-12-10 17:55:19 +0100611 debug("unknown value %x\n", le16_to_cpu(req->value));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100612 goto unknown;
613 }
614 break;
615 case USB_REQ_GET_DESCRIPTOR | ((USB_DIR_IN | USB_RT_HUB) << 8):
616 switch (le16_to_cpu(req->value) >> 8) {
617 case USB_DT_HUB:
michaeldb632992008-12-10 17:55:19 +0100618 debug("USB_DT_HUB config\n");
619 srcptr = &descriptor.hub;
620 srclen = 0x8;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100621 break;
622 default:
michaeldb632992008-12-10 17:55:19 +0100623 debug("unknown value %x\n", le16_to_cpu(req->value));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100624 goto unknown;
625 }
626 break;
627 case USB_REQ_SET_ADDRESS | (USB_RECIP_DEVICE << 8):
michaeldb632992008-12-10 17:55:19 +0100628 debug("USB_REQ_SET_ADDRESS\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100629 rootdev = le16_to_cpu(req->value);
630 break;
631 case DeviceOutRequest | USB_REQ_SET_CONFIGURATION:
michaeldb632992008-12-10 17:55:19 +0100632 debug("USB_REQ_SET_CONFIGURATION\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100633 /* Nothing to do */
634 break;
635 case USB_REQ_GET_STATUS | ((USB_DIR_IN | USB_RT_HUB) << 8):
636 tmpbuf[0] = 1; /* USB_STATUS_SELFPOWERED */
637 tmpbuf[1] = 0;
638 srcptr = tmpbuf;
639 srclen = 2;
640 break;
michaeldb632992008-12-10 17:55:19 +0100641 case USB_REQ_GET_STATUS | ((USB_RT_PORT | USB_DIR_IN) << 8):
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100642 memset(tmpbuf, 0, 4);
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100643 reg = ehci_readl(status_reg);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100644 if (reg & EHCI_PS_CS)
645 tmpbuf[0] |= USB_PORT_STAT_CONNECTION;
646 if (reg & EHCI_PS_PE)
647 tmpbuf[0] |= USB_PORT_STAT_ENABLE;
648 if (reg & EHCI_PS_SUSP)
649 tmpbuf[0] |= USB_PORT_STAT_SUSPEND;
650 if (reg & EHCI_PS_OCA)
651 tmpbuf[0] |= USB_PORT_STAT_OVERCURRENT;
Sergei Shtylyovc8b2d1d2010-02-27 21:33:21 +0300652 if (reg & EHCI_PS_PR)
653 tmpbuf[0] |= USB_PORT_STAT_RESET;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100654 if (reg & EHCI_PS_PP)
655 tmpbuf[1] |= USB_PORT_STAT_POWER >> 8;
Stefan Roese597eb282009-01-21 17:12:01 +0100656
657 if (ehci_is_TDI()) {
658 switch ((reg >> 26) & 3) {
659 case 0:
660 break;
661 case 1:
662 tmpbuf[1] |= USB_PORT_STAT_LOW_SPEED >> 8;
663 break;
664 case 2:
665 default:
666 tmpbuf[1] |= USB_PORT_STAT_HIGH_SPEED >> 8;
667 break;
668 }
669 } else {
670 tmpbuf[1] |= USB_PORT_STAT_HIGH_SPEED >> 8;
671 }
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100672
673 if (reg & EHCI_PS_CSC)
674 tmpbuf[2] |= USB_PORT_STAT_C_CONNECTION;
675 if (reg & EHCI_PS_PEC)
676 tmpbuf[2] |= USB_PORT_STAT_C_ENABLE;
677 if (reg & EHCI_PS_OCC)
678 tmpbuf[2] |= USB_PORT_STAT_C_OVERCURRENT;
679 if (portreset & (1 << le16_to_cpu(req->index)))
680 tmpbuf[2] |= USB_PORT_STAT_C_RESET;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100681
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100682 srcptr = tmpbuf;
683 srclen = 4;
684 break;
michaeldb632992008-12-10 17:55:19 +0100685 case USB_REQ_SET_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100686 reg = ehci_readl(status_reg);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100687 reg &= ~EHCI_PS_CLEAR;
688 switch (le16_to_cpu(req->value)) {
michael51ab1422008-12-11 13:43:55 +0100689 case USB_PORT_FEAT_ENABLE:
690 reg |= EHCI_PS_PE;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100691 ehci_writel(status_reg, reg);
michael51ab1422008-12-11 13:43:55 +0100692 break;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100693 case USB_PORT_FEAT_POWER:
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100694 if (HCS_PPC(ehci_readl(&hccr->cr_hcsparams))) {
695 reg |= EHCI_PS_PP;
696 ehci_writel(status_reg, reg);
697 }
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100698 break;
699 case USB_PORT_FEAT_RESET:
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100700 if ((reg & (EHCI_PS_PE | EHCI_PS_CS)) == EHCI_PS_CS &&
701 !ehci_is_TDI() &&
702 EHCI_PS_IS_LOWSPEED(reg)) {
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100703 /* Low speed device, give up ownership. */
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100704 debug("port %d low speed --> companion\n",
705 req->index - 1);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100706 reg |= EHCI_PS_PO;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100707 ehci_writel(status_reg, reg);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100708 break;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100709 } else {
Sergei Shtylyovc8b2d1d2010-02-27 21:33:21 +0300710 int ret;
711
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100712 reg |= EHCI_PS_PR;
713 reg &= ~EHCI_PS_PE;
714 ehci_writel(status_reg, reg);
715 /*
716 * caller must wait, then call GetPortStatus
717 * usb 2.0 specification say 50 ms resets on
718 * root
719 */
Marek Vasut3874b6d2011-07-11 02:37:01 +0200720 ehci_powerup_fixup(status_reg, &reg);
721
Chris Zhangb4161912010-01-06 13:34:04 -0800722 ehci_writel(status_reg, reg & ~EHCI_PS_PR);
Sergei Shtylyovc8b2d1d2010-02-27 21:33:21 +0300723 /*
724 * A host controller must terminate the reset
725 * and stabilize the state of the port within
726 * 2 milliseconds
727 */
728 ret = handshake(status_reg, EHCI_PS_PR, 0,
729 2 * 1000);
730 if (!ret)
731 portreset |=
732 1 << le16_to_cpu(req->index);
733 else
734 printf("port(%d) reset error\n",
735 le16_to_cpu(req->index) - 1);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100736 }
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100737 break;
738 default:
michaeldb632992008-12-10 17:55:19 +0100739 debug("unknown feature %x\n", le16_to_cpu(req->value));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100740 goto unknown;
741 }
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100742 /* unblock posted writes */
Kumar Gala50243e32009-07-07 15:48:58 -0500743 (void) ehci_readl(&hcor->or_usbcmd);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100744 break;
michaeldb632992008-12-10 17:55:19 +0100745 case USB_REQ_CLEAR_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100746 reg = ehci_readl(status_reg);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100747 switch (le16_to_cpu(req->value)) {
748 case USB_PORT_FEAT_ENABLE:
749 reg &= ~EHCI_PS_PE;
750 break;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100751 case USB_PORT_FEAT_C_ENABLE:
752 reg = (reg & ~EHCI_PS_CLEAR) | EHCI_PS_PE;
753 break;
754 case USB_PORT_FEAT_POWER:
755 if (HCS_PPC(ehci_readl(&hccr->cr_hcsparams)))
756 reg = reg & ~(EHCI_PS_CLEAR | EHCI_PS_PP);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100757 case USB_PORT_FEAT_C_CONNECTION:
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100758 reg = (reg & ~EHCI_PS_CLEAR) | EHCI_PS_CSC;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100759 break;
michael51ab1422008-12-11 13:43:55 +0100760 case USB_PORT_FEAT_OVER_CURRENT:
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100761 reg = (reg & ~EHCI_PS_CLEAR) | EHCI_PS_OCC;
michael51ab1422008-12-11 13:43:55 +0100762 break;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100763 case USB_PORT_FEAT_C_RESET:
764 portreset &= ~(1 << le16_to_cpu(req->index));
765 break;
766 default:
michaeldb632992008-12-10 17:55:19 +0100767 debug("unknown feature %x\n", le16_to_cpu(req->value));
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100768 goto unknown;
769 }
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100770 ehci_writel(status_reg, reg);
771 /* unblock posted write */
Kumar Gala50243e32009-07-07 15:48:58 -0500772 (void) ehci_readl(&hcor->or_usbcmd);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100773 break;
774 default:
michaeldb632992008-12-10 17:55:19 +0100775 debug("Unknown request\n");
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100776 goto unknown;
777 }
778
Mike Frysinger5b84dd62012-03-05 13:47:00 +0000779 mdelay(1);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100780 len = min3(srclen, le16_to_cpu(req->length), length);
781 if (srcptr != NULL && len > 0)
782 memcpy(buffer, srcptr, len);
michaeldb632992008-12-10 17:55:19 +0100783 else
784 debug("Len is 0\n");
785
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100786 dev->act_len = len;
787 dev->status = 0;
788 return 0;
789
790unknown:
michaeldb632992008-12-10 17:55:19 +0100791 debug("requesttype=%x, request=%x, value=%x, index=%x, length=%x\n",
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100792 req->requesttype, req->request, le16_to_cpu(req->value),
793 le16_to_cpu(req->index), le16_to_cpu(req->length));
794
795 dev->act_len = 0;
796 dev->status = USB_ST_STALLED;
797 return -1;
798}
799
800int usb_lowlevel_stop(void)
801{
802 return ehci_hcd_stop();
803}
804
805int usb_lowlevel_init(void)
806{
807 uint32_t reg;
michaeldb632992008-12-10 17:55:19 +0100808 uint32_t cmd;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100809
810 if (ehci_hcd_init() != 0)
811 return -1;
812
michael51ab1422008-12-11 13:43:55 +0100813 /* EHCI spec section 4.1 */
814 if (ehci_reset() != 0)
815 return -1;
816
Stefan Roese832e6142009-01-21 17:12:10 +0100817#if defined(CONFIG_EHCI_HCD_INIT_AFTER_RESET)
818 if (ehci_hcd_init() != 0)
819 return -1;
820#endif
821
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100822 /* Set head of reclaim list */
823 memset(&qh_list, 0, sizeof(qh_list));
michaeldb632992008-12-10 17:55:19 +0100824 qh_list.qh_link = cpu_to_hc32((uint32_t)&qh_list | QH_LINK_TYPE_QH);
825 qh_list.qh_endpt1 = cpu_to_hc32((1 << 15) | (USB_SPEED_HIGH << 12));
826 qh_list.qh_curtd = cpu_to_hc32(QT_NEXT_TERMINATE);
827 qh_list.qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
828 qh_list.qh_overlay.qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
829 qh_list.qh_overlay.qt_token = cpu_to_hc32(0x40);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100830
831 /* Set async. queue head pointer. */
michael51ab1422008-12-11 13:43:55 +0100832 ehci_writel(&hcor->or_asynclistaddr, (uint32_t)&qh_list);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100833
michael51ab1422008-12-11 13:43:55 +0100834 reg = ehci_readl(&hccr->cr_hcsparams);
835 descriptor.hub.bNbrPorts = HCS_N_PORTS(reg);
836 printf("Register %x NbrPorts %d\n", reg, descriptor.hub.bNbrPorts);
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100837 /* Port Indicators */
838 if (HCS_INDICATOR(reg))
michaeldb632992008-12-10 17:55:19 +0100839 descriptor.hub.wHubCharacteristics |= 0x80;
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100840 /* Port Power Control */
841 if (HCS_PPC(reg))
michaeldb632992008-12-10 17:55:19 +0100842 descriptor.hub.wHubCharacteristics |= 0x01;
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100843
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100844 /* Start the host controller. */
michael51ab1422008-12-11 13:43:55 +0100845 cmd = ehci_readl(&hcor->or_usbcmd);
Wolfgang Denkf15c6512009-02-12 00:08:39 +0100846 /*
847 * Philips, Intel, and maybe others need CMD_RUN before the
848 * root hub will detect new devices (why?); NEC doesn't
849 */
michael51ab1422008-12-11 13:43:55 +0100850 cmd &= ~(CMD_LRESET|CMD_IAAD|CMD_PSE|CMD_ASE|CMD_RESET);
851 cmd |= CMD_RUN;
852 ehci_writel(&hcor->or_usbcmd, cmd);
853
854 /* take control over the ports */
855 cmd = ehci_readl(&hcor->or_configflag);
856 cmd |= FLAG_CF;
857 ehci_writel(&hcor->or_configflag, cmd);
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100858 /* unblock posted write */
michael51ab1422008-12-11 13:43:55 +0100859 cmd = ehci_readl(&hcor->or_usbcmd);
Mike Frysinger5b84dd62012-03-05 13:47:00 +0000860 mdelay(5);
Remy Böhmerc0d722f2008-12-13 22:51:58 +0100861 reg = HC_VERSION(ehci_readl(&hccr->cr_capbase));
862 printf("USB EHCI %x.%02x\n", reg >> 8, reg & 0xff);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100863
864 rootdev = 0;
865
866 return 0;
867}
868
869int
870submit_bulk_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
871 int length)
872{
873
874 if (usb_pipetype(pipe) != PIPE_BULK) {
875 debug("non-bulk pipe (type=%lu)", usb_pipetype(pipe));
876 return -1;
877 }
878 return ehci_submit_async(dev, pipe, buffer, length, NULL);
879}
880
881int
882submit_control_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
883 int length, struct devrequest *setup)
884{
885
886 if (usb_pipetype(pipe) != PIPE_CONTROL) {
887 debug("non-control pipe (type=%lu)", usb_pipetype(pipe));
888 return -1;
889 }
890
891 if (usb_pipedevice(pipe) == rootdev) {
892 if (rootdev == 0)
893 dev->speed = USB_SPEED_HIGH;
894 return ehci_submit_root(dev, pipe, buffer, length, setup);
895 }
896 return ehci_submit_async(dev, pipe, buffer, length, setup);
897}
898
899int
900submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
901 int length, int interval)
902{
903
904 debug("dev=%p, pipe=%lu, buffer=%p, length=%d, interval=%d",
905 dev, pipe, buffer, length, interval);
Marek Vasut7555d5e2011-09-25 21:07:56 +0200906 return ehci_submit_async(dev, pipe, buffer, length, NULL);
Michael Trimarchiaaf098c2008-11-28 13:20:46 +0100907}
Marek Vasut7555d5e2011-09-25 21:07:56 +0200908