1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23#include <common.h>
24#include <errno.h>
25#include <asm/byteorder.h>
26#include <asm/unaligned.h>
27#include <usb.h>
28#include <asm/io.h>
29#include <malloc.h>
30#include <watchdog.h>
31#include <linux/compiler.h>
32
33#include "ehci.h"
34
35#ifndef CONFIG_USB_MAX_CONTROLLER_COUNT
36#define CONFIG_USB_MAX_CONTROLLER_COUNT 1
37#endif
38
39
40
41
42
43#define HCHALT_TIMEOUT (8 * 1000)
44
45static struct ehci_ctrl ehcic[CONFIG_USB_MAX_CONTROLLER_COUNT];
46
47#define ALIGN_END_ADDR(type, ptr, size) \
48 ((uint32_t)(ptr) + roundup((size) * sizeof(type), USB_DMA_MINALIGN))
49
50static 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,
59 0x29,
60 2,
61 0,
62 10,
63 0,
64 {},
65 {}
66 },
67 {
68 0x12,
69 1,
70 cpu_to_le16(0x0200),
71 9,
72 0,
73 1,
74 64,
75 0x0000,
76 0x0000,
77 cpu_to_le16(0x0100),
78 1,
79 2,
80 0,
81 1
82 },
83 {
84 0x9,
85 2,
86 cpu_to_le16(0x19),
87 1,
88 1,
89 0,
90 0x40,
91 0
92 },
93 {
94 0x9,
95 4,
96 0,
97 0,
98 1,
99 9,
100 0,
101 0,
102 0
103 },
104 {
105 0x7,
106 5,
107 0x81,
108
109
110 3,
111 8,
112 255
113 },
114};
115
116#if defined(CONFIG_EHCI_IS_TDI)
117#define ehci_is_TDI() (1)
118#else
119#define ehci_is_TDI() (0)
120#endif
121
122int __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
147void __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
155static int handshake(uint32_t *ptr, uint32_t mask, uint32_t done, int usec)
156{
157 uint32_t result;
158 do {
159 result = ehci_readl(ptr);
160 udelay(5);
161 if (result == ~(uint32_t)0)
162 return -1;
163 result &= mask;
164 if (result == done)
165 return 0;
166 usec--;
167 } while (usec > 0);
168 return -1;
169}
170
171static int ehci_reset(int index)
172{
173 uint32_t cmd;
174 int ret = 0;
175
176 cmd = ehci_readl(&ehcic[index].hcor->or_usbcmd);
177 cmd = (cmd & ~CMD_RUN) | CMD_RESET;
178 ehci_writel(&ehcic[index].hcor->or_usbcmd, cmd);
179 ret = handshake((uint32_t *)&ehcic[index].hcor->or_usbcmd,
180 CMD_RESET, 0, 250 * 1000);
181 if (ret < 0) {
182 printf("EHCI fail to reset\n");
183 goto out;
184 }
185
186 if (ehci_is_TDI())
187 ehci_set_usbmode(index);
188
189#ifdef CONFIG_USB_EHCI_TXFIFO_THRESH
190 cmd = ehci_readl(&ehcic[index].hcor->or_txfilltuning);
191 cmd &= ~TXFIFO_THRESH_MASK;
192 cmd |= TXFIFO_THRESH(CONFIG_USB_EHCI_TXFIFO_THRESH);
193 ehci_writel(&ehcic[index].hcor->or_txfilltuning, cmd);
194#endif
195out:
196 return ret;
197}
198
199static 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
229static int ehci_td_buffer(struct qTD *td, void *buf, size_t sz)
230{
231 uint32_t delta, next;
232 uint32_t addr = (uint32_t)buf;
233 int idx;
234
235 if (addr != ALIGN(addr, ARCH_DMA_MINALIGN))
236 debug("EHCI-HCD: Misaligned buffer address (%p)\n", buf);
237
238 flush_dcache_range(addr, ALIGN(addr + sz, ARCH_DMA_MINALIGN));
239
240 idx = 0;
241 while (idx < QT_BUFFER_CNT) {
242 td->qt_buffer[idx] = cpu_to_hc32(addr);
243 td->qt_buffer_hi[idx] = 0;
244 next = (addr + EHCI_PAGE_SIZE) & ~(EHCI_PAGE_SIZE - 1);
245 delta = next - addr;
246 if (delta >= sz)
247 break;
248 sz -= delta;
249 addr = next;
250 idx++;
251 }
252
253 if (idx == QT_BUFFER_CNT) {
254 printf("out of buffer pointers (%u bytes left)\n", sz);
255 return -1;
256 }
257
258 return 0;
259}
260
261static 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
273static int
274ehci_submit_async(struct usb_device *dev, unsigned long pipe, void *buffer,
275 int length, struct devrequest *req)
276{
277 ALLOC_ALIGN_BUFFER(struct QH, qh, 1, USB_DMA_MINALIGN);
278 struct qTD *qtd;
279 int qtd_count = 0;
280 int qtd_counter = 0;
281 volatile struct qTD *vtd;
282 unsigned long ts;
283 uint32_t *tdp;
284 uint32_t endpt, maxpacket, token, usbsts;
285 uint32_t c, toggle;
286 uint32_t cmd;
287 int timeout;
288 int ret = 0;
289 struct ehci_ctrl *ctrl = dev->controller;
290
291 debug("dev=%p, pipe=%lx, buffer=%p, length=%d, req=%p\n", dev, pipe,
292 buffer, length, req);
293 if (req != NULL)
294 debug("req=%u (%#x), type=%u (%#x), value=%u (%#x), index=%u\n",
295 req->request, req->request,
296 req->requesttype, req->requesttype,
297 le16_to_cpu(req->value), le16_to_cpu(req->value),
298 le16_to_cpu(req->index));
299
300#define PKT_ALIGN 512
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316 if (req != NULL)
317
318 qtd_count += 1 + 1;
319 if (length > 0 || req == NULL) {
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334 int xfr_sz = QT_BUFFER_CNT;
335
336
337
338
339
340 if ((uint32_t)buffer & (PKT_ALIGN - 1))
341 xfr_sz--;
342
343 xfr_sz *= EHCI_PAGE_SIZE;
344
345
346
347
348
349
350 qtd_count += 2 + length / xfr_sz;
351 }
352
353
354
355
356#if CONFIG_SYS_MALLOC_LEN <= 64 + 128 * 1024
357#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
365 memset(qh, 0, sizeof(struct QH));
366 memset(qtd, 0, qtd_count * sizeof(*qtd));
367
368 toggle = usb_gettoggle(dev, usb_pipeendpoint(pipe), usb_pipeout(pipe));
369
370
371
372
373
374
375
376
377
378
379
380 qh->qh_link = cpu_to_hc32((uint32_t)&ctrl->qh_list | QH_LINK_TYPE_QH);
381 c = (dev->speed != USB_SPEED_HIGH) && !usb_pipeendpoint(pipe);
382 maxpacket = usb_maxpacket(dev, pipe);
383 endpt = QH_ENDPT1_RL(8) | QH_ENDPT1_C(c) |
384 QH_ENDPT1_MAXPKTLEN(maxpacket) | QH_ENDPT1_H(0) |
385 QH_ENDPT1_DTC(QH_ENDPT1_DTC_DT_FROM_QTD) |
386 QH_ENDPT1_EPS(ehci_encode_speed(dev->speed)) |
387 QH_ENDPT1_ENDPT(usb_pipeendpoint(pipe)) | QH_ENDPT1_I(0) |
388 QH_ENDPT1_DEVADDR(usb_pipedevice(pipe));
389 qh->qh_endpt1 = cpu_to_hc32(endpt);
390 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);
393 qh->qh_endpt2 = cpu_to_hc32(endpt);
394 qh->qh_overlay.qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
395
396 tdp = &qh->qh_overlay.qt_next;
397
398 if (req != NULL) {
399
400
401
402
403
404
405
406
407
408 qtd[qtd_counter].qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
409 qtd[qtd_counter].qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
410 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);
414 qtd[qtd_counter].qt_token = cpu_to_hc32(token);
415 if (ehci_td_buffer(&qtd[qtd_counter], req, sizeof(*req))) {
416 printf("unable to construct SETUP TD\n");
417 goto fail;
418 }
419
420 *tdp = cpu_to_hc32((uint32_t)&qtd[qtd_counter]);
421 tdp = &qtd[qtd_counter++].qt_next;
422 toggle = 1;
423 }
424
425 if (length > 0 || req == NULL) {
426 uint8_t *buf_ptr = buffer;
427 int left_length = length;
428
429 do {
430
431
432
433
434 int xfr_bytes = QT_BUFFER_CNT * EHCI_PAGE_SIZE;
435
436
437
438
439
440 xfr_bytes -= (uint32_t)buf_ptr & (EHCI_PAGE_SIZE - 1);
441
442
443
444
445 xfr_bytes &= ~(PKT_ALIGN - 1);
446
447
448
449
450 xfr_bytes = min(xfr_bytes, left_length);
451
452
453
454
455
456
457
458
459
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
479 *tdp = cpu_to_hc32((uint32_t)&qtd[qtd_counter]);
480 tdp = &qtd[qtd_counter++].qt_next;
481
482
483
484
485
486 if ((xfr_bytes / maxpacket) & 1)
487 toggle ^= 1;
488 buf_ptr += xfr_bytes;
489 left_length -= xfr_bytes;
490 } while (left_length > 0);
491 }
492
493 if (req != NULL) {
494
495
496
497
498
499
500
501 qtd[qtd_counter].qt_next = cpu_to_hc32(QT_NEXT_TERMINATE);
502 qtd[qtd_counter].qt_altnext = cpu_to_hc32(QT_NEXT_TERMINATE);
503 token = QT_TOKEN_DT(1) | QT_TOKEN_TOTALBYTES(0) |
504 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);
508 qtd[qtd_counter].qt_token = cpu_to_hc32(token);
509
510 *tdp = cpu_to_hc32((uint32_t)&qtd[qtd_counter]);
511 tdp = &qtd[qtd_counter++].qt_next;
512 }
513
514 ctrl->qh_list.qh_link = cpu_to_hc32((uint32_t)qh | QH_LINK_TYPE_QH);
515
516
517 flush_dcache_range((uint32_t)&ctrl->qh_list,
518 ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1));
519 flush_dcache_range((uint32_t)qh, ALIGN_END_ADDR(struct QH, qh, 1));
520 flush_dcache_range((uint32_t)qtd,
521 ALIGN_END_ADDR(struct qTD, qtd, qtd_count));
522
523
524 ehci_writel(&ctrl->hcor->or_asynclistaddr, (uint32_t)&ctrl->qh_list);
525
526 usbsts = ehci_readl(&ctrl->hcor->or_usbsts);
527 ehci_writel(&ctrl->hcor->or_usbsts, (usbsts & 0x3f));
528
529
530 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
531 cmd |= CMD_ASE;
532 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
533
534 ret = handshake((uint32_t *)&ctrl->hcor->or_usbsts, STS_ASS, STS_ASS,
535 100 * 1000);
536 if (ret < 0) {
537 printf("EHCI fail timeout STS_ASS set\n");
538 goto fail;
539 }
540
541
542 ts = get_timer(0);
543 vtd = &qtd[qtd_counter - 1];
544 timeout = USB_TIMEOUT_MS(pipe);
545 do {
546
547 invalidate_dcache_range((uint32_t)&ctrl->qh_list,
548 ALIGN_END_ADDR(struct QH, &ctrl->qh_list, 1));
549 invalidate_dcache_range((uint32_t)qh,
550 ALIGN_END_ADDR(struct QH, qh, 1));
551 invalidate_dcache_range((uint32_t)qtd,
552 ALIGN_END_ADDR(struct qTD, qtd, qtd_count));
553
554 token = hc32_to_cpu(vtd->qt_token);
555 if (!(QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE))
556 break;
557 WATCHDOG_RESET();
558 } while (get_timer(ts) < timeout);
559
560
561
562
563
564
565
566
567
568
569 invalidate_dcache_range((uint32_t)buffer,
570 ALIGN((uint32_t)buffer + length, ARCH_DMA_MINALIGN));
571
572
573 if (QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE)
574 printf("EHCI timed out on TD - token=%#x\n", token);
575
576
577 cmd = ehci_readl(&ctrl->hcor->or_usbcmd);
578 cmd &= ~CMD_ASE;
579 ehci_writel(&ctrl->hcor->or_usbcmd, cmd);
580
581 ret = handshake((uint32_t *)&ctrl->hcor->or_usbsts, STS_ASS, 0,
582 100 * 1000);
583 if (ret < 0) {
584 printf("EHCI fail timeout STS_ASS reset\n");
585 goto fail;
586 }
587
588 token = hc32_to_cpu(qh->qh_overlay.qt_token);
589 if (!(QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_ACTIVE)) {
590 debug("TOKEN=%#x\n", token);
591 switch (QT_TOKEN_GET_STATUS(token) &
592 ~(QT_TOKEN_STATUS_SPLITXSTATE | QT_TOKEN_STATUS_PERR)) {
593 case 0:
594 toggle = QT_TOKEN_GET_DT(token);
595 usb_settoggle(dev, usb_pipeendpoint(pipe),
596 usb_pipeout(pipe), toggle);
597 dev->status = 0;
598 break;
599 case QT_TOKEN_STATUS_HALTED:
600 dev->status = USB_ST_STALLED;
601 break;
602 case QT_TOKEN_STATUS_ACTIVE | QT_TOKEN_STATUS_DATBUFERR:
603 case QT_TOKEN_STATUS_DATBUFERR:
604 dev->status = USB_ST_BUF_ERR;
605 break;
606 case QT_TOKEN_STATUS_HALTED | QT_TOKEN_STATUS_BABBLEDET:
607 case QT_TOKEN_STATUS_BABBLEDET:
608 dev->status = USB_ST_BABBLE_DET;
609 break;
610 default:
611 dev->status = USB_ST_CRC_ERR;
612 if (QT_TOKEN_GET_STATUS(token) & QT_TOKEN_STATUS_HALTED)
613 dev->status |= USB_ST_STALLED;
614 break;
615 }
616 dev->act_len = length - QT_TOKEN_GET_TOTALBYTES(token);
617 } else {
618 dev->act_len = 0;
619#ifndef CONFIG_USB_EHCI_FARADAY
620 debug("dev=%u, usbsts=%#x, p[1]=%#x, p[2]=%#x\n",
621 dev->devnum, ehci_readl(&ctrl->hcor->or_usbsts),
622 ehci_readl(&ctrl->hcor->or_portsc[0]),
623 ehci_readl(&ctrl->hcor->or_portsc[1]));
624#endif
625 }
626
627 free(qtd);
628 return (dev->status != USB_ST_NOT_PROC) ? 0 : -1;
629
630fail:
631 free(qtd);
632 return -1;
633}
634
635__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
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
646int
647ehci_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;
652 void *srcptr = NULL;
653 int len, srclen;
654 uint32_t reg;
655 uint32_t *status_reg;
656 int port = le16_to_cpu(req->index) & 0xff;
657 struct ehci_ctrl *ctrl = dev->controller;
658
659 srclen = 0;
660
661 debug("req=%u (%#x), type=%u (%#x), value=%u, index=%u\n",
662 req->request, req->request,
663 req->requesttype, req->requesttype,
664 le16_to_cpu(req->value), le16_to_cpu(req->index));
665
666 typeReq = req->request | req->requesttype << 8;
667
668 switch (typeReq) {
669 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):
672 status_reg = ehci_get_portsc_register(ctrl->hcor, port - 1);
673 if (!status_reg)
674 return -1;
675 break;
676 default:
677 status_reg = NULL;
678 break;
679 }
680
681 switch (typeReq) {
682 case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
683 switch (le16_to_cpu(req->value) >> 8) {
684 case USB_DT_DEVICE:
685 debug("USB_DT_DEVICE request\n");
686 srcptr = &descriptor.device;
687 srclen = descriptor.device.bLength;
688 break;
689 case USB_DT_CONFIG:
690 debug("USB_DT_CONFIG config\n");
691 srcptr = &descriptor.config;
692 srclen = descriptor.config.bLength +
693 descriptor.interface.bLength +
694 descriptor.endpoint.bLength;
695 break;
696 case USB_DT_STRING:
697 debug("USB_DT_STRING config\n");
698 switch (le16_to_cpu(req->value) & 0xff) {
699 case 0:
700 srcptr = "\4\3\1\0";
701 srclen = 4;
702 break;
703 case 1:
704 srcptr = "\16\3u\0-\0b\0o\0o\0t\0";
705 srclen = 14;
706 break;
707 case 2:
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:
714 debug("unknown value DT_STRING %x\n",
715 le16_to_cpu(req->value));
716 goto unknown;
717 }
718 break;
719 default:
720 debug("unknown value %x\n", le16_to_cpu(req->value));
721 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:
727 debug("USB_DT_HUB config\n");
728 srcptr = &descriptor.hub;
729 srclen = descriptor.hub.bLength;
730 break;
731 default:
732 debug("unknown value %x\n", le16_to_cpu(req->value));
733 goto unknown;
734 }
735 break;
736 case USB_REQ_SET_ADDRESS | (USB_RECIP_DEVICE << 8):
737 debug("USB_REQ_SET_ADDRESS\n");
738 ctrl->rootdev = le16_to_cpu(req->value);
739 break;
740 case DeviceOutRequest | USB_REQ_SET_CONFIGURATION:
741 debug("USB_REQ_SET_CONFIGURATION\n");
742
743 break;
744 case USB_REQ_GET_STATUS | ((USB_DIR_IN | USB_RT_HUB) << 8):
745 tmpbuf[0] = 1;
746 tmpbuf[1] = 0;
747 srcptr = tmpbuf;
748 srclen = 2;
749 break;
750 case USB_REQ_GET_STATUS | ((USB_RT_PORT | USB_DIR_IN) << 8):
751 memset(tmpbuf, 0, 4);
752 reg = ehci_readl(status_reg);
753 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;
761 if (reg & EHCI_PS_PR)
762 tmpbuf[0] |= USB_PORT_STAT_RESET;
763 if (reg & EHCI_PS_PP)
764 tmpbuf[1] |= USB_PORT_STAT_POWER >> 8;
765
766 if (ehci_is_TDI()) {
767 switch (ehci_get_port_speed(ctrl->hcor, reg)) {
768 case PORTSC_PSPD_FS:
769 break;
770 case PORTSC_PSPD_LS:
771 tmpbuf[1] |= USB_PORT_STAT_LOW_SPEED >> 8;
772 break;
773 case PORTSC_PSPD_HS:
774 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 }
781
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;
788 if (ctrl->portreset & (1 << port))
789 tmpbuf[2] |= USB_PORT_STAT_C_RESET;
790
791 srcptr = tmpbuf;
792 srclen = 4;
793 break;
794 case USB_REQ_SET_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
795 reg = ehci_readl(status_reg);
796 reg &= ~EHCI_PS_CLEAR;
797 switch (le16_to_cpu(req->value)) {
798 case USB_PORT_FEAT_ENABLE:
799 reg |= EHCI_PS_PE;
800 ehci_writel(status_reg, reg);
801 break;
802 case USB_PORT_FEAT_POWER:
803 if (HCS_PPC(ehci_readl(&ctrl->hccr->cr_hcsparams))) {
804 reg |= EHCI_PS_PP;
805 ehci_writel(status_reg, reg);
806 }
807 break;
808 case USB_PORT_FEAT_RESET:
809 if ((reg & (EHCI_PS_PE | EHCI_PS_CS)) == EHCI_PS_CS &&
810 !ehci_is_TDI() &&
811 EHCI_PS_IS_LOWSPEED(reg)) {
812
813 debug("port %d low speed --> companion\n",
814 port - 1);
815 reg |= EHCI_PS_PO;
816 ehci_writel(status_reg, reg);
817 break;
818 } else {
819 int ret;
820
821 reg |= EHCI_PS_PR;
822 reg &= ~EHCI_PS_PE;
823 ehci_writel(status_reg, reg);
824
825
826
827
828
829 ehci_powerup_fixup(status_reg, ®);
830
831 ehci_writel(status_reg, reg & ~EHCI_PS_PR);
832
833
834
835
836
837 ret = handshake(status_reg, EHCI_PS_PR, 0,
838 2 * 1000);
839 if (!ret)
840 ctrl->portreset |= 1 << port;
841 else
842 printf("port(%d) reset error\n",
843 port - 1);
844 }
845 break;
846 case USB_PORT_FEAT_TEST:
847 ehci_shutdown(ctrl);
848 reg &= ~(0xf << 16);
849 reg |= ((le16_to_cpu(req->index) >> 8) & 0xf) << 16;
850 ehci_writel(status_reg, reg);
851 break;
852 default:
853 debug("unknown feature %x\n", le16_to_cpu(req->value));
854 goto unknown;
855 }
856
857 (void) ehci_readl(&ctrl->hcor->or_usbcmd);
858 break;
859 case USB_REQ_CLEAR_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8):
860 reg = ehci_readl(status_reg);
861 reg &= ~EHCI_PS_CLEAR;
862 switch (le16_to_cpu(req->value)) {
863 case USB_PORT_FEAT_ENABLE:
864 reg &= ~EHCI_PS_PE;
865 break;
866 case USB_PORT_FEAT_C_ENABLE:
867 reg |= EHCI_PS_PE;
868 break;
869 case USB_PORT_FEAT_POWER:
870 if (HCS_PPC(ehci_readl(&ctrl->hccr->cr_hcsparams)))
871 reg &= ~EHCI_PS_PP;
872 break;
873 case USB_PORT_FEAT_C_CONNECTION:
874 reg |= EHCI_PS_CSC;
875 break;
876 case USB_PORT_FEAT_OVER_CURRENT:
877 reg |= EHCI_PS_OCC;
878 break;
879 case USB_PORT_FEAT_C_RESET:
880 ctrl->portreset &= ~(1 << port);
881 break;
882 default:
883 debug("unknown feature %x\n", le16_to_cpu(req->value));
884 goto unknown;
885 }
886 ehci_writel(status_reg, reg);
887
888 (void) ehci_readl(&ctrl->hcor->or_usbcmd);
889 break;
890 default:
891 debug("Unknown request\n");
892 goto unknown;
893 }
894
895 mdelay(1);
896 len = min3(srclen, le16_to_cpu(req->length), length);
897 if (srcptr != NULL && len > 0)
898 memcpy(buffer, srcptr, len);
899 else
900 debug("Len is 0\n");
901
902 dev->act_len = len;
903 dev->status = 0;
904 return 0;
905
906unknown:
907 debug("requesttype=%x, request=%x, value=%x, index=%x, length=%x\n",
908 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
916int usb_lowlevel_stop(int index)
917{
918 ehci_shutdown(&ehcic[index]);
919 return ehci_hcd_stop(index);
920}
921
922int usb_lowlevel_init(int index, void **controller)
923{
924 uint32_t reg;
925 uint32_t cmd;
926 struct QH *qh_list;
927 struct QH *periodic;
928 int i;
929
930 if (ehci_hcd_init(index, &ehcic[index].hccr, &ehcic[index].hcor))
931 return -1;
932
933
934 if (ehci_reset(index))
935 return -1;
936
937#if defined(CONFIG_EHCI_HCD_INIT_AFTER_RESET)
938 if (ehci_hcd_init(index, &ehcic[index].hccr, &ehcic[index].hcor))
939 return -1;
940#endif
941
942 if (ehci_readl(&ehcic[index].hccr->cr_hccparams) & 1)
943 ehci_writel(ehcic[index].hcor->or_ctrldssegment, 0);
944
945 qh_list = &ehcic[index].qh_list;
946
947
948 memset(qh_list, 0, sizeof(*qh_list));
949 qh_list->qh_link = cpu_to_hc32((uint32_t)qh_list | QH_LINK_TYPE_QH);
950 qh_list->qh_endpt1 = cpu_to_hc32(QH_ENDPT1_H(1) |
951 QH_ENDPT1_EPS(USB_SPEED_HIGH));
952 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);
955 qh_list->qh_overlay.qt_token =
956 cpu_to_hc32(QT_TOKEN_STATUS(QT_TOKEN_STATUS_HALTED));
957
958 flush_dcache_range((uint32_t)qh_list,
959 ALIGN_END_ADDR(struct QH, qh_list, 1));
960
961
962 ehci_writel(&ehcic[index].hcor->or_asynclistaddr, (uint32_t)qh_list);
963
964
965
966
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
974 flush_dcache_range((uint32_t)periodic,
975 ALIGN_END_ADDR(struct QH, periodic, 1));
976
977
978
979
980
981
982
983
984
985
986 if (ehcic[index].periodic_list == NULL)
987 ehcic[index].periodic_list = memalign(4096, 1024 * 4);
988
989 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
996 flush_dcache_range((uint32_t)ehcic[index].periodic_list,
997 ALIGN_END_ADDR(uint32_t, ehcic[index].periodic_list,
998 1024));
999
1000
1001 ehci_writel(&ehcic[index].hcor->or_periodiclistbase,
1002 (uint32_t)ehcic[index].periodic_list);
1003
1004 reg = ehci_readl(&ehcic[index].hccr->cr_hcsparams);
1005 descriptor.hub.bNbrPorts = HCS_N_PORTS(reg);
1006 debug("Register %x NbrPorts %d\n", reg, descriptor.hub.bNbrPorts);
1007
1008 if (HCS_INDICATOR(reg))
1009 put_unaligned(get_unaligned(&descriptor.hub.wHubCharacteristics)
1010 | 0x80, &descriptor.hub.wHubCharacteristics);
1011
1012 if (HCS_PPC(reg))
1013 put_unaligned(get_unaligned(&descriptor.hub.wHubCharacteristics)
1014 | 0x01, &descriptor.hub.wHubCharacteristics);
1015
1016
1017 cmd = ehci_readl(&ehcic[index].hcor->or_usbcmd);
1018
1019
1020
1021
1022 cmd &= ~(CMD_LRESET|CMD_IAAD|CMD_PSE|CMD_ASE|CMD_RESET);
1023 cmd |= CMD_RUN;
1024 ehci_writel(&ehcic[index].hcor->or_usbcmd, cmd);
1025
1026#ifndef CONFIG_USB_EHCI_FARADAY
1027
1028 cmd = ehci_readl(&ehcic[index].hcor->or_configflag);
1029 cmd |= FLAG_CF;
1030 ehci_writel(&ehcic[index].hcor->or_configflag, cmd);
1031#endif
1032
1033
1034 cmd = ehci_readl(&ehcic[index].hcor->or_usbcmd);
1035 mdelay(5);
1036 reg = HC_VERSION(ehci_readl(&ehcic[index].hccr->cr_capbase));
1037 printf("USB EHCI %x.%02x\n", reg >> 8, reg & 0xff);
1038
1039 ehcic[index].rootdev = 0;
1040
1041 *controller = &ehcic[index];
1042 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{
1061 struct ehci_ctrl *ctrl = dev->controller;
1062
1063 if (usb_pipetype(pipe) != PIPE_CONTROL) {
1064 debug("non-control pipe (type=%lu)", usb_pipetype(pipe));
1065 return -1;
1066 }
1067
1068 if (usb_pipedevice(pipe) == ctrl->rootdev) {
1069 if (!ctrl->rootdev)
1070 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
1076struct 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
1143
1144
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) |
1182 (usb_maxpacket(dev, pipe) << 16) |
1183 (1 << 14) |
1184 QH_ENDPT1_EPS(ehci_encode_speed(dev->speed)) |
1185 (usb_pipeendpoint(pipe) << 8) |
1186 (usb_pipedevice(pipe) << 0);
1187 qh->qh_endpt2 = (1 << 30) |
1188 (1 << 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);
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) |
1204 0x80;
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
1214 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
1224 if (disable_periodic(ctrl) < 0) {
1225 debug("FATAL: periodic should never fail, but did");
1226 goto fail3;
1227 }
1228
1229
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
1234 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
1239 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
1264 if (cur == NULL) {
1265 debug("Exit poll_int_queue with completed queue\n");
1266 return NULL;
1267 }
1268
1269 invalidate_dcache_range((uint32_t)cur,
1270 ALIGN_END_ADDR(struct QH, cur, 1));
1271 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
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;
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
1332int
1333submit_int_msg(struct usb_device *dev, unsigned long pipe, void *buffer,
1334 int length, int interval)
1335{
1336 void *backbuffer;
1337 struct int_queue *queue;
1338 unsigned long timeout;
1339 int result = 0, ret;
1340
1341 debug("dev=%p, pipe=%lu, buffer=%p, length=%d, interval=%d",
1342 dev, pipe, buffer, length, interval);
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355 if (length > usb_maxpacket(dev, pipe)) {
1356 printf("%s: Interrupt transfers requiring several "
1357 "transactions are not supported.\n", __func__);
1358 return -1;
1359 }
1360
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
1377 invalidate_dcache_range((uint32_t)buffer,
1378 ALIGN_END_ADDR(char, buffer, length));
1379
1380 ret = destroy_int_queue(dev, queue);
1381 if (ret < 0)
1382 return ret;
1383
1384
1385 return result;
1386}
1387