1 /* 2 * Copyright 2011, Marvell Semiconductor Inc. 3 * Lei Wen <leiwen@marvell.com> 4 * 5 * SPDX-License-Identifier: GPL-2.0+ 6 * 7 * Back ported to the 8xx platform (from the 8260 platform) by 8 * Murray.Jensen@cmst.csiro.au, 27-Jan-01. 9 */ 10 11 #include <common.h> 12 #include <command.h> 13 #include <config.h> 14 #include <net.h> 15 #include <malloc.h> 16 #include <asm/byteorder.h> 17 #include <asm/errno.h> 18 #include <asm/io.h> 19 #include <asm/unaligned.h> 20 #include <linux/types.h> 21 #include <linux/usb/ch9.h> 22 #include <linux/usb/gadget.h> 23 #include <usb/ci_udc.h> 24 #include "../host/ehci.h" 25 #include "ci_udc.h" 26 27 /* 28 * Check if the system has too long cachelines. If the cachelines are 29 * longer then 128b, the driver will not be able flush/invalidate data 30 * cache over separate QH entries. We use 128b because one QH entry is 31 * 64b long and there are always two QH list entries for each endpoint. 32 */ 33 #if ARCH_DMA_MINALIGN > 128 34 #error This driver can not work on systems with caches longer than 128b 35 #endif 36 37 #ifndef DEBUG 38 #define DBG(x...) do {} while (0) 39 #else 40 #define DBG(x...) printf(x) 41 static const char *reqname(unsigned r) 42 { 43 switch (r) { 44 case USB_REQ_GET_STATUS: return "GET_STATUS"; 45 case USB_REQ_CLEAR_FEATURE: return "CLEAR_FEATURE"; 46 case USB_REQ_SET_FEATURE: return "SET_FEATURE"; 47 case USB_REQ_SET_ADDRESS: return "SET_ADDRESS"; 48 case USB_REQ_GET_DESCRIPTOR: return "GET_DESCRIPTOR"; 49 case USB_REQ_SET_DESCRIPTOR: return "SET_DESCRIPTOR"; 50 case USB_REQ_GET_CONFIGURATION: return "GET_CONFIGURATION"; 51 case USB_REQ_SET_CONFIGURATION: return "SET_CONFIGURATION"; 52 case USB_REQ_GET_INTERFACE: return "GET_INTERFACE"; 53 case USB_REQ_SET_INTERFACE: return "SET_INTERFACE"; 54 default: return "*UNKNOWN*"; 55 } 56 } 57 #endif 58 59 static struct usb_endpoint_descriptor ep0_desc = { 60 .bLength = sizeof(struct usb_endpoint_descriptor), 61 .bDescriptorType = USB_DT_ENDPOINT, 62 .bEndpointAddress = USB_DIR_IN, 63 .bmAttributes = USB_ENDPOINT_XFER_CONTROL, 64 }; 65 66 static int ci_pullup(struct usb_gadget *gadget, int is_on); 67 static int ci_ep_enable(struct usb_ep *ep, 68 const struct usb_endpoint_descriptor *desc); 69 static int ci_ep_disable(struct usb_ep *ep); 70 static int ci_ep_queue(struct usb_ep *ep, 71 struct usb_request *req, gfp_t gfp_flags); 72 static struct usb_request * 73 ci_ep_alloc_request(struct usb_ep *ep, unsigned int gfp_flags); 74 static void ci_ep_free_request(struct usb_ep *ep, struct usb_request *_req); 75 76 static struct usb_gadget_ops ci_udc_ops = { 77 .pullup = ci_pullup, 78 }; 79 80 static struct usb_ep_ops ci_ep_ops = { 81 .enable = ci_ep_enable, 82 .disable = ci_ep_disable, 83 .queue = ci_ep_queue, 84 .alloc_request = ci_ep_alloc_request, 85 .free_request = ci_ep_free_request, 86 }; 87 88 /* Init values for USB endpoints. */ 89 static const struct usb_ep ci_ep_init[2] = { 90 [0] = { /* EP 0 */ 91 .maxpacket = 64, 92 .name = "ep0", 93 .ops = &ci_ep_ops, 94 }, 95 [1] = { /* EP 1..n */ 96 .maxpacket = 512, 97 .name = "ep-", 98 .ops = &ci_ep_ops, 99 }, 100 }; 101 102 static struct ci_drv controller = { 103 .gadget = { 104 .name = "ci_udc", 105 .ops = &ci_udc_ops, 106 .is_dualspeed = 1, 107 }, 108 }; 109 110 /** 111 * ci_get_qh() - return queue head for endpoint 112 * @ep_num: Endpoint number 113 * @dir_in: Direction of the endpoint (IN = 1, OUT = 0) 114 * 115 * This function returns the QH associated with particular endpoint 116 * and it's direction. 117 */ 118 static struct ept_queue_head *ci_get_qh(int ep_num, int dir_in) 119 { 120 return &controller.epts[(ep_num * 2) + dir_in]; 121 } 122 123 /** 124 * ci_get_qtd() - return queue item for endpoint 125 * @ep_num: Endpoint number 126 * @dir_in: Direction of the endpoint (IN = 1, OUT = 0) 127 * 128 * This function returns the QH associated with particular endpoint 129 * and it's direction. 130 */ 131 static struct ept_queue_item *ci_get_qtd(int ep_num, int dir_in) 132 { 133 return controller.items[(ep_num * 2) + dir_in]; 134 } 135 136 /** 137 * ci_flush_qh - flush cache over queue head 138 * @ep_num: Endpoint number 139 * 140 * This function flushes cache over QH for particular endpoint. 141 */ 142 static void ci_flush_qh(int ep_num) 143 { 144 struct ept_queue_head *head = ci_get_qh(ep_num, 0); 145 const uint32_t start = (uint32_t)head; 146 const uint32_t end = start + 2 * sizeof(*head); 147 148 flush_dcache_range(start, end); 149 } 150 151 /** 152 * ci_invalidate_qh - invalidate cache over queue head 153 * @ep_num: Endpoint number 154 * 155 * This function invalidates cache over QH for particular endpoint. 156 */ 157 static void ci_invalidate_qh(int ep_num) 158 { 159 struct ept_queue_head *head = ci_get_qh(ep_num, 0); 160 uint32_t start = (uint32_t)head; 161 uint32_t end = start + 2 * sizeof(*head); 162 163 invalidate_dcache_range(start, end); 164 } 165 166 /** 167 * ci_flush_qtd - flush cache over queue item 168 * @ep_num: Endpoint number 169 * 170 * This function flushes cache over qTD pair for particular endpoint. 171 */ 172 static void ci_flush_qtd(int ep_num) 173 { 174 struct ept_queue_item *item = ci_get_qtd(ep_num, 0); 175 const uint32_t start = (uint32_t)item; 176 const uint32_t end_raw = start + 2 * sizeof(*item); 177 const uint32_t end = roundup(end_raw, ARCH_DMA_MINALIGN); 178 179 flush_dcache_range(start, end); 180 } 181 182 /** 183 * ci_invalidate_qtd - invalidate cache over queue item 184 * @ep_num: Endpoint number 185 * 186 * This function invalidates cache over qTD pair for particular endpoint. 187 */ 188 static void ci_invalidate_qtd(int ep_num) 189 { 190 struct ept_queue_item *item = ci_get_qtd(ep_num, 0); 191 const uint32_t start = (uint32_t)item; 192 const uint32_t end_raw = start + 2 * sizeof(*item); 193 const uint32_t end = roundup(end_raw, ARCH_DMA_MINALIGN); 194 195 invalidate_dcache_range(start, end); 196 } 197 198 static struct usb_request * 199 ci_ep_alloc_request(struct usb_ep *ep, unsigned int gfp_flags) 200 { 201 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep); 202 int num; 203 struct ci_req *ci_req; 204 205 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; 206 if (num == 0 && controller.ep0_req) 207 return &controller.ep0_req->req; 208 209 ci_req = memalign(ARCH_DMA_MINALIGN, sizeof(*ci_req)); 210 if (!ci_req) 211 return NULL; 212 213 INIT_LIST_HEAD(&ci_req->queue); 214 ci_req->b_buf = 0; 215 216 if (num == 0) 217 controller.ep0_req = ci_req; 218 219 return &ci_req->req; 220 } 221 222 static void ci_ep_free_request(struct usb_ep *ep, struct usb_request *req) 223 { 224 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep); 225 struct ci_req *ci_req = container_of(req, struct ci_req, req); 226 int num; 227 228 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; 229 if (num == 0) 230 controller.ep0_req = 0; 231 232 if (ci_req->b_buf) 233 free(ci_req->b_buf); 234 free(ci_req); 235 } 236 237 static void ep_enable(int num, int in, int maxpacket) 238 { 239 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; 240 unsigned n; 241 242 n = readl(&udc->epctrl[num]); 243 if (in) 244 n |= (CTRL_TXE | CTRL_TXR | CTRL_TXT_BULK); 245 else 246 n |= (CTRL_RXE | CTRL_RXR | CTRL_RXT_BULK); 247 248 if (num != 0) { 249 struct ept_queue_head *head = ci_get_qh(num, in); 250 251 head->config = CONFIG_MAX_PKT(maxpacket) | CONFIG_ZLT; 252 ci_flush_qh(num); 253 } 254 writel(n, &udc->epctrl[num]); 255 } 256 257 static int ci_ep_enable(struct usb_ep *ep, 258 const struct usb_endpoint_descriptor *desc) 259 { 260 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep); 261 int num, in; 262 num = desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; 263 in = (desc->bEndpointAddress & USB_DIR_IN) != 0; 264 ci_ep->desc = desc; 265 266 if (num) { 267 int max = get_unaligned_le16(&desc->wMaxPacketSize); 268 269 if ((max > 64) && (controller.gadget.speed == USB_SPEED_FULL)) 270 max = 64; 271 if (ep->maxpacket != max) { 272 DBG("%s: from %d to %d\n", __func__, 273 ep->maxpacket, max); 274 ep->maxpacket = max; 275 } 276 } 277 ep_enable(num, in, ep->maxpacket); 278 DBG("%s: num=%d maxpacket=%d\n", __func__, num, ep->maxpacket); 279 return 0; 280 } 281 282 static int ci_ep_disable(struct usb_ep *ep) 283 { 284 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep); 285 286 ci_ep->desc = NULL; 287 return 0; 288 } 289 290 static int ci_bounce(struct ci_req *ci_req, int in) 291 { 292 struct usb_request *req = &ci_req->req; 293 uint32_t addr = (uint32_t)req->buf; 294 uint32_t hwaddr; 295 uint32_t aligned_used_len; 296 297 /* Input buffer address is not aligned. */ 298 if (addr & (ARCH_DMA_MINALIGN - 1)) 299 goto align; 300 301 /* Input buffer length is not aligned. */ 302 if (req->length & (ARCH_DMA_MINALIGN - 1)) 303 goto align; 304 305 /* The buffer is well aligned, only flush cache. */ 306 ci_req->hw_len = req->length; 307 ci_req->hw_buf = req->buf; 308 goto flush; 309 310 align: 311 if (ci_req->b_buf && req->length > ci_req->b_len) { 312 free(ci_req->b_buf); 313 ci_req->b_buf = 0; 314 } 315 if (!ci_req->b_buf) { 316 ci_req->b_len = roundup(req->length, ARCH_DMA_MINALIGN); 317 ci_req->b_buf = memalign(ARCH_DMA_MINALIGN, ci_req->b_len); 318 if (!ci_req->b_buf) 319 return -ENOMEM; 320 } 321 ci_req->hw_len = ci_req->b_len; 322 ci_req->hw_buf = ci_req->b_buf; 323 324 if (in) 325 memcpy(ci_req->hw_buf, req->buf, req->length); 326 327 flush: 328 hwaddr = (uint32_t)ci_req->hw_buf; 329 aligned_used_len = roundup(req->length, ARCH_DMA_MINALIGN); 330 flush_dcache_range(hwaddr, hwaddr + aligned_used_len); 331 332 return 0; 333 } 334 335 static void ci_debounce(struct ci_req *ci_req, int in) 336 { 337 struct usb_request *req = &ci_req->req; 338 uint32_t addr = (uint32_t)req->buf; 339 uint32_t hwaddr = (uint32_t)ci_req->hw_buf; 340 uint32_t aligned_used_len; 341 342 if (in) 343 return; 344 345 aligned_used_len = roundup(req->actual, ARCH_DMA_MINALIGN); 346 invalidate_dcache_range(hwaddr, hwaddr + aligned_used_len); 347 348 if (addr == hwaddr) 349 return; /* not a bounce */ 350 351 memcpy(req->buf, ci_req->hw_buf, req->actual); 352 } 353 354 static void ci_ep_submit_next_request(struct ci_ep *ci_ep) 355 { 356 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; 357 struct ept_queue_item *item; 358 struct ept_queue_head *head; 359 int bit, num, len, in; 360 struct ci_req *ci_req; 361 362 ci_ep->req_primed = true; 363 364 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; 365 in = (ci_ep->desc->bEndpointAddress & USB_DIR_IN) != 0; 366 item = ci_get_qtd(num, in); 367 head = ci_get_qh(num, in); 368 369 ci_req = list_first_entry(&ci_ep->queue, struct ci_req, queue); 370 len = ci_req->req.length; 371 372 item->next = TERMINATE; 373 item->info = INFO_BYTES(len) | INFO_IOC | INFO_ACTIVE; 374 item->page0 = (uint32_t)ci_req->hw_buf; 375 item->page1 = ((uint32_t)ci_req->hw_buf & 0xfffff000) + 0x1000; 376 item->page2 = ((uint32_t)ci_req->hw_buf & 0xfffff000) + 0x2000; 377 item->page3 = ((uint32_t)ci_req->hw_buf & 0xfffff000) + 0x3000; 378 item->page4 = ((uint32_t)ci_req->hw_buf & 0xfffff000) + 0x4000; 379 ci_flush_qtd(num); 380 381 head->next = (unsigned) item; 382 head->info = 0; 383 384 DBG("ept%d %s queue len %x, req %p, buffer %p\n", 385 num, in ? "in" : "out", len, ci_req, ci_req->hw_buf); 386 ci_flush_qh(num); 387 388 if (in) 389 bit = EPT_TX(num); 390 else 391 bit = EPT_RX(num); 392 393 writel(bit, &udc->epprime); 394 } 395 396 static int ci_ep_queue(struct usb_ep *ep, 397 struct usb_request *req, gfp_t gfp_flags) 398 { 399 struct ci_ep *ci_ep = container_of(ep, struct ci_ep, ep); 400 struct ci_req *ci_req = container_of(req, struct ci_req, req); 401 int in, ret; 402 int __maybe_unused num; 403 404 num = ci_ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; 405 in = (ci_ep->desc->bEndpointAddress & USB_DIR_IN) != 0; 406 407 if (!num && ci_ep->req_primed) { 408 /* 409 * The flipping of ep0 between IN and OUT relies on 410 * ci_ep_queue consuming the current IN/OUT setting 411 * immediately. If this is deferred to a later point when the 412 * req is pulled out of ci_req->queue, then the IN/OUT setting 413 * may have been changed since the req was queued, and state 414 * will get out of sync. This condition doesn't occur today, 415 * but could if bugs were introduced later, and this error 416 * check will save a lot of debugging time. 417 */ 418 printf("%s: ep0 transaction already in progress\n", __func__); 419 return -EPROTO; 420 } 421 422 ret = ci_bounce(ci_req, in); 423 if (ret) 424 return ret; 425 426 DBG("ept%d %s pre-queue req %p, buffer %p\n", 427 num, in ? "in" : "out", ci_req, ci_req->hw_buf); 428 list_add_tail(&ci_req->queue, &ci_ep->queue); 429 430 if (!ci_ep->req_primed) 431 ci_ep_submit_next_request(ci_ep); 432 433 return 0; 434 } 435 436 static void flip_ep0_direction(void) 437 { 438 if (ep0_desc.bEndpointAddress == USB_DIR_IN) { 439 DBG("%s: Flipping ep0 ot OUT\n", __func__); 440 ep0_desc.bEndpointAddress = 0; 441 } else { 442 DBG("%s: Flipping ep0 ot IN\n", __func__); 443 ep0_desc.bEndpointAddress = USB_DIR_IN; 444 } 445 } 446 447 static void handle_ep_complete(struct ci_ep *ep) 448 { 449 struct ept_queue_item *item; 450 int num, in, len; 451 struct ci_req *ci_req; 452 453 num = ep->desc->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK; 454 in = (ep->desc->bEndpointAddress & USB_DIR_IN) != 0; 455 item = ci_get_qtd(num, in); 456 ci_invalidate_qtd(num); 457 458 len = (item->info >> 16) & 0x7fff; 459 if (item->info & 0xff) 460 printf("EP%d/%s FAIL info=%x pg0=%x\n", 461 num, in ? "in" : "out", item->info, item->page0); 462 463 ci_req = list_first_entry(&ep->queue, struct ci_req, queue); 464 list_del_init(&ci_req->queue); 465 ep->req_primed = false; 466 467 if (!list_empty(&ep->queue)) 468 ci_ep_submit_next_request(ep); 469 470 ci_req->req.actual = ci_req->req.length - len; 471 ci_debounce(ci_req, in); 472 473 DBG("ept%d %s req %p, complete %x\n", 474 num, in ? "in" : "out", ci_req, len); 475 if (num != 0 || controller.ep0_data_phase) 476 ci_req->req.complete(&ep->ep, &ci_req->req); 477 if (num == 0 && controller.ep0_data_phase) { 478 /* 479 * Data Stage is complete, so flip ep0 dir for Status Stage, 480 * which always transfers a packet in the opposite direction. 481 */ 482 DBG("%s: flip ep0 dir for Status Stage\n", __func__); 483 flip_ep0_direction(); 484 controller.ep0_data_phase = false; 485 ci_req->req.length = 0; 486 usb_ep_queue(&ep->ep, &ci_req->req, 0); 487 } 488 } 489 490 #define SETUP(type, request) (((type) << 8) | (request)) 491 492 static void handle_setup(void) 493 { 494 struct ci_ep *ci_ep = &controller.ep[0]; 495 struct ci_req *ci_req; 496 struct usb_request *req; 497 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; 498 struct ept_queue_head *head; 499 struct usb_ctrlrequest r; 500 int status = 0; 501 int num, in, _num, _in, i; 502 char *buf; 503 504 ci_req = controller.ep0_req; 505 req = &ci_req->req; 506 head = ci_get_qh(0, 0); /* EP0 OUT */ 507 508 ci_invalidate_qh(0); 509 memcpy(&r, head->setup_data, sizeof(struct usb_ctrlrequest)); 510 #ifdef CONFIG_CI_UDC_HAS_HOSTPC 511 writel(EPT_RX(0), &udc->epsetupstat); 512 #else 513 writel(EPT_RX(0), &udc->epstat); 514 #endif 515 DBG("handle setup %s, %x, %x index %x value %x length %x\n", 516 reqname(r.bRequest), r.bRequestType, r.bRequest, r.wIndex, 517 r.wValue, r.wLength); 518 519 /* Set EP0 dir for Data Stage based on Setup Stage data */ 520 if (r.bRequestType & USB_DIR_IN) { 521 DBG("%s: Set ep0 to IN for Data Stage\n", __func__); 522 ep0_desc.bEndpointAddress = USB_DIR_IN; 523 } else { 524 DBG("%s: Set ep0 to OUT for Data Stage\n", __func__); 525 ep0_desc.bEndpointAddress = 0; 526 } 527 if (r.wLength) { 528 controller.ep0_data_phase = true; 529 } else { 530 /* 0 length -> no Data Stage. Flip dir for Status Stage */ 531 DBG("%s: 0 length: flip ep0 dir for Status Stage\n", __func__); 532 flip_ep0_direction(); 533 controller.ep0_data_phase = false; 534 } 535 536 list_del_init(&ci_req->queue); 537 ci_ep->req_primed = false; 538 539 switch (SETUP(r.bRequestType, r.bRequest)) { 540 case SETUP(USB_RECIP_ENDPOINT, USB_REQ_CLEAR_FEATURE): 541 _num = r.wIndex & 15; 542 _in = !!(r.wIndex & 0x80); 543 544 if ((r.wValue == 0) && (r.wLength == 0)) { 545 req->length = 0; 546 for (i = 0; i < NUM_ENDPOINTS; i++) { 547 struct ci_ep *ep = &controller.ep[i]; 548 549 if (!ep->desc) 550 continue; 551 num = ep->desc->bEndpointAddress 552 & USB_ENDPOINT_NUMBER_MASK; 553 in = (ep->desc->bEndpointAddress 554 & USB_DIR_IN) != 0; 555 if ((num == _num) && (in == _in)) { 556 ep_enable(num, in, ep->ep.maxpacket); 557 usb_ep_queue(controller.gadget.ep0, 558 req, 0); 559 break; 560 } 561 } 562 } 563 return; 564 565 case SETUP(USB_RECIP_DEVICE, USB_REQ_SET_ADDRESS): 566 /* 567 * write address delayed (will take effect 568 * after the next IN txn) 569 */ 570 writel((r.wValue << 25) | (1 << 24), &udc->devaddr); 571 req->length = 0; 572 usb_ep_queue(controller.gadget.ep0, req, 0); 573 return; 574 575 case SETUP(USB_DIR_IN | USB_RECIP_DEVICE, USB_REQ_GET_STATUS): 576 req->length = 2; 577 buf = (char *)req->buf; 578 buf[0] = 1 << USB_DEVICE_SELF_POWERED; 579 buf[1] = 0; 580 usb_ep_queue(controller.gadget.ep0, req, 0); 581 return; 582 } 583 /* pass request up to the gadget driver */ 584 if (controller.driver) 585 status = controller.driver->setup(&controller.gadget, &r); 586 else 587 status = -ENODEV; 588 589 if (!status) 590 return; 591 DBG("STALL reqname %s type %x value %x, index %x\n", 592 reqname(r.bRequest), r.bRequestType, r.wValue, r.wIndex); 593 writel((1<<16) | (1 << 0), &udc->epctrl[0]); 594 } 595 596 static void stop_activity(void) 597 { 598 int i, num, in; 599 struct ept_queue_head *head; 600 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; 601 writel(readl(&udc->epcomp), &udc->epcomp); 602 #ifdef CONFIG_CI_UDC_HAS_HOSTPC 603 writel(readl(&udc->epsetupstat), &udc->epsetupstat); 604 #endif 605 writel(readl(&udc->epstat), &udc->epstat); 606 writel(0xffffffff, &udc->epflush); 607 608 /* error out any pending reqs */ 609 for (i = 0; i < NUM_ENDPOINTS; i++) { 610 if (i != 0) 611 writel(0, &udc->epctrl[i]); 612 if (controller.ep[i].desc) { 613 num = controller.ep[i].desc->bEndpointAddress 614 & USB_ENDPOINT_NUMBER_MASK; 615 in = (controller.ep[i].desc->bEndpointAddress 616 & USB_DIR_IN) != 0; 617 head = ci_get_qh(num, in); 618 head->info = INFO_ACTIVE; 619 ci_flush_qh(num); 620 } 621 } 622 } 623 624 void udc_irq(void) 625 { 626 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; 627 unsigned n = readl(&udc->usbsts); 628 writel(n, &udc->usbsts); 629 int bit, i, num, in; 630 631 n &= (STS_SLI | STS_URI | STS_PCI | STS_UI | STS_UEI); 632 if (n == 0) 633 return; 634 635 if (n & STS_URI) { 636 DBG("-- reset --\n"); 637 stop_activity(); 638 } 639 if (n & STS_SLI) 640 DBG("-- suspend --\n"); 641 642 if (n & STS_PCI) { 643 int max = 64; 644 int speed = USB_SPEED_FULL; 645 646 #ifdef CONFIG_CI_UDC_HAS_HOSTPC 647 bit = (readl(&udc->hostpc1_devlc) >> 25) & 3; 648 #else 649 bit = (readl(&udc->portsc) >> 26) & 3; 650 #endif 651 DBG("-- portchange %x %s\n", bit, (bit == 2) ? "High" : "Full"); 652 if (bit == 2) { 653 speed = USB_SPEED_HIGH; 654 max = 512; 655 } 656 controller.gadget.speed = speed; 657 for (i = 1; i < NUM_ENDPOINTS; i++) { 658 if (controller.ep[i].ep.maxpacket > max) 659 controller.ep[i].ep.maxpacket = max; 660 } 661 } 662 663 if (n & STS_UEI) 664 printf("<UEI %x>\n", readl(&udc->epcomp)); 665 666 if ((n & STS_UI) || (n & STS_UEI)) { 667 #ifdef CONFIG_CI_UDC_HAS_HOSTPC 668 n = readl(&udc->epsetupstat); 669 #else 670 n = readl(&udc->epstat); 671 #endif 672 if (n & EPT_RX(0)) 673 handle_setup(); 674 675 n = readl(&udc->epcomp); 676 if (n != 0) 677 writel(n, &udc->epcomp); 678 679 for (i = 0; i < NUM_ENDPOINTS && n; i++) { 680 if (controller.ep[i].desc) { 681 num = controller.ep[i].desc->bEndpointAddress 682 & USB_ENDPOINT_NUMBER_MASK; 683 in = (controller.ep[i].desc->bEndpointAddress 684 & USB_DIR_IN) != 0; 685 bit = (in) ? EPT_TX(num) : EPT_RX(num); 686 if (n & bit) 687 handle_ep_complete(&controller.ep[i]); 688 } 689 } 690 } 691 } 692 693 int usb_gadget_handle_interrupts(void) 694 { 695 u32 value; 696 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; 697 698 value = readl(&udc->usbsts); 699 if (value) 700 udc_irq(); 701 702 return value; 703 } 704 705 void udc_disconnect(void) 706 { 707 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; 708 /* disable pullup */ 709 stop_activity(); 710 writel(USBCMD_FS2, &udc->usbcmd); 711 udelay(800); 712 if (controller.driver) 713 controller.driver->disconnect(&controller.gadget); 714 } 715 716 static int ci_pullup(struct usb_gadget *gadget, int is_on) 717 { 718 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; 719 if (is_on) { 720 /* RESET */ 721 writel(USBCMD_ITC(MICRO_8FRAME) | USBCMD_RST, &udc->usbcmd); 722 udelay(200); 723 724 writel((unsigned)controller.epts, &udc->epinitaddr); 725 726 /* select DEVICE mode */ 727 writel(USBMODE_DEVICE, &udc->usbmode); 728 729 writel(0xffffffff, &udc->epflush); 730 731 /* Turn on the USB connection by enabling the pullup resistor */ 732 writel(USBCMD_ITC(MICRO_8FRAME) | USBCMD_RUN, &udc->usbcmd); 733 } else { 734 udc_disconnect(); 735 } 736 737 return 0; 738 } 739 740 static int ci_udc_probe(void) 741 { 742 struct ept_queue_head *head; 743 uint8_t *imem; 744 int i; 745 746 const int num = 2 * NUM_ENDPOINTS; 747 748 const int eplist_min_align = 4096; 749 const int eplist_align = roundup(eplist_min_align, ARCH_DMA_MINALIGN); 750 const int eplist_raw_sz = num * sizeof(struct ept_queue_head); 751 const int eplist_sz = roundup(eplist_raw_sz, ARCH_DMA_MINALIGN); 752 753 const int ilist_align = roundup(ARCH_DMA_MINALIGN, 32); 754 const int ilist_ent_raw_sz = 2 * sizeof(struct ept_queue_item); 755 const int ilist_ent_sz = roundup(ilist_ent_raw_sz, ARCH_DMA_MINALIGN); 756 const int ilist_sz = NUM_ENDPOINTS * ilist_ent_sz; 757 758 /* The QH list must be aligned to 4096 bytes. */ 759 controller.epts = memalign(eplist_align, eplist_sz); 760 if (!controller.epts) 761 return -ENOMEM; 762 memset(controller.epts, 0, eplist_sz); 763 764 /* 765 * Each qTD item must be 32-byte aligned, each qTD touple must be 766 * cacheline aligned. There are two qTD items for each endpoint and 767 * only one of them is used for the endpoint at time, so we can group 768 * them together. 769 */ 770 controller.items_mem = memalign(ilist_align, ilist_sz); 771 if (!controller.items_mem) { 772 free(controller.epts); 773 return -ENOMEM; 774 } 775 memset(controller.items_mem, 0, ilist_sz); 776 777 for (i = 0; i < 2 * NUM_ENDPOINTS; i++) { 778 /* 779 * Configure QH for each endpoint. The structure of the QH list 780 * is such that each two subsequent fields, N and N+1 where N is 781 * even, in the QH list represent QH for one endpoint. The Nth 782 * entry represents OUT configuration and the N+1th entry does 783 * represent IN configuration of the endpoint. 784 */ 785 head = controller.epts + i; 786 if (i < 2) 787 head->config = CONFIG_MAX_PKT(EP0_MAX_PACKET_SIZE) 788 | CONFIG_ZLT | CONFIG_IOS; 789 else 790 head->config = CONFIG_MAX_PKT(EP_MAX_PACKET_SIZE) 791 | CONFIG_ZLT; 792 head->next = TERMINATE; 793 head->info = 0; 794 795 imem = controller.items_mem + ((i >> 1) * ilist_ent_sz); 796 if (i & 1) 797 imem += sizeof(struct ept_queue_item); 798 799 controller.items[i] = (struct ept_queue_item *)imem; 800 801 if (i & 1) { 802 ci_flush_qh(i - 1); 803 ci_flush_qtd(i - 1); 804 } 805 } 806 807 INIT_LIST_HEAD(&controller.gadget.ep_list); 808 809 /* Init EP 0 */ 810 memcpy(&controller.ep[0].ep, &ci_ep_init[0], sizeof(*ci_ep_init)); 811 controller.ep[0].desc = &ep0_desc; 812 INIT_LIST_HEAD(&controller.ep[0].queue); 813 controller.ep[0].req_primed = false; 814 controller.gadget.ep0 = &controller.ep[0].ep; 815 INIT_LIST_HEAD(&controller.gadget.ep0->ep_list); 816 817 /* Init EP 1..n */ 818 for (i = 1; i < NUM_ENDPOINTS; i++) { 819 memcpy(&controller.ep[i].ep, &ci_ep_init[1], 820 sizeof(*ci_ep_init)); 821 INIT_LIST_HEAD(&controller.ep[i].queue); 822 controller.ep[i].req_primed = false; 823 list_add_tail(&controller.ep[i].ep.ep_list, 824 &controller.gadget.ep_list); 825 } 826 827 ci_ep_alloc_request(&controller.ep[0].ep, 0); 828 if (!controller.ep0_req) { 829 free(controller.items_mem); 830 free(controller.epts); 831 return -ENOMEM; 832 } 833 834 return 0; 835 } 836 837 int usb_gadget_register_driver(struct usb_gadget_driver *driver) 838 { 839 int ret; 840 841 if (!driver) 842 return -EINVAL; 843 if (!driver->bind || !driver->setup || !driver->disconnect) 844 return -EINVAL; 845 if (driver->speed != USB_SPEED_FULL && driver->speed != USB_SPEED_HIGH) 846 return -EINVAL; 847 848 ret = usb_lowlevel_init(0, USB_INIT_DEVICE, (void **)&controller.ctrl); 849 if (ret) 850 return ret; 851 852 ret = ci_udc_probe(); 853 #if defined(CONFIG_USB_EHCI_MX6) || defined(CONFIG_USB_EHCI_MXS) 854 /* 855 * FIXME: usb_lowlevel_init()->ehci_hcd_init() should be doing all 856 * HW-specific initialization, e.g. ULPI-vs-UTMI PHY selection 857 */ 858 if (!ret) { 859 struct ci_udc *udc = (struct ci_udc *)controller.ctrl->hcor; 860 861 /* select ULPI phy */ 862 writel(PTS(PTS_ENABLE) | PFSC, &udc->portsc); 863 } 864 #endif 865 866 ret = driver->bind(&controller.gadget); 867 if (ret) { 868 DBG("driver->bind() returned %d\n", ret); 869 return ret; 870 } 871 controller.driver = driver; 872 873 return 0; 874 } 875 876 int usb_gadget_unregister_driver(struct usb_gadget_driver *driver) 877 { 878 udc_disconnect(); 879 880 ci_ep_free_request(&controller.ep[0].ep, &controller.ep0_req->req); 881 free(controller.items_mem); 882 free(controller.epts); 883 884 return 0; 885 } 886