1 /* 2 * USB HOST XHCI Controller stack 3 * 4 * Based on xHCI host controller driver in linux-kernel 5 * by Sarah Sharp. 6 * 7 * Copyright (C) 2008 Intel Corp. 8 * Author: Sarah Sharp 9 * 10 * Copyright (C) 2013 Samsung Electronics Co.Ltd 11 * Authors: Vivek Gautam <gautam.vivek@samsung.com> 12 * Vikas Sajjan <vikas.sajjan@samsung.com> 13 * 14 * SPDX-License-Identifier: GPL-2.0+ 15 */ 16 17 /** 18 * This file gives the xhci stack for usb3.0 looking into 19 * xhci specification Rev1.0 (5/21/10). 20 * The quirk devices support hasn't been given yet. 21 */ 22 23 #include <common.h> 24 #include <dm.h> 25 #include <asm/byteorder.h> 26 #include <usb.h> 27 #include <malloc.h> 28 #include <watchdog.h> 29 #include <asm/cache.h> 30 #include <asm/unaligned.h> 31 #include <linux/errno.h> 32 #include "xhci.h" 33 34 #ifndef CONFIG_USB_MAX_CONTROLLER_COUNT 35 #define CONFIG_USB_MAX_CONTROLLER_COUNT 1 36 #endif 37 38 static struct descriptor { 39 struct usb_hub_descriptor hub; 40 struct usb_device_descriptor device; 41 struct usb_config_descriptor config; 42 struct usb_interface_descriptor interface; 43 struct usb_endpoint_descriptor endpoint; 44 struct usb_ss_ep_comp_descriptor ep_companion; 45 } __attribute__ ((packed)) descriptor = { 46 { 47 0xc, /* bDescLength */ 48 0x2a, /* bDescriptorType: hub descriptor */ 49 2, /* bNrPorts -- runtime modified */ 50 cpu_to_le16(0x8), /* wHubCharacteristics */ 51 10, /* bPwrOn2PwrGood */ 52 0, /* bHubCntrCurrent */ 53 { /* Device removable */ 54 } /* at most 7 ports! XXX */ 55 }, 56 { 57 0x12, /* bLength */ 58 1, /* bDescriptorType: UDESC_DEVICE */ 59 cpu_to_le16(0x0300), /* bcdUSB: v3.0 */ 60 9, /* bDeviceClass: UDCLASS_HUB */ 61 0, /* bDeviceSubClass: UDSUBCLASS_HUB */ 62 3, /* bDeviceProtocol: UDPROTO_SSHUBSTT */ 63 9, /* bMaxPacketSize: 512 bytes 2^9 */ 64 0x0000, /* idVendor */ 65 0x0000, /* idProduct */ 66 cpu_to_le16(0x0100), /* bcdDevice */ 67 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(0x1f), /* includes SS endpoint descriptor */ 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: IN endpoint 1 */ 97 3, /* bmAttributes: UE_INTERRUPT */ 98 8, /* wMaxPacketSize */ 99 255 /* bInterval */ 100 }, 101 { 102 0x06, /* ss_bLength */ 103 0x30, /* ss_bDescriptorType: SS EP Companion */ 104 0x00, /* ss_bMaxBurst: allows 1 TX between ACKs */ 105 /* ss_bmAttributes: 1 packet per service interval */ 106 0x00, 107 /* ss_wBytesPerInterval: 15 bits for max 15 ports */ 108 cpu_to_le16(0x02), 109 }, 110 }; 111 112 #ifndef CONFIG_DM_USB 113 static struct xhci_ctrl xhcic[CONFIG_USB_MAX_CONTROLLER_COUNT]; 114 #endif 115 116 struct xhci_ctrl *xhci_get_ctrl(struct usb_device *udev) 117 { 118 #ifdef CONFIG_DM_USB 119 struct udevice *dev; 120 121 /* Find the USB controller */ 122 for (dev = udev->dev; 123 device_get_uclass_id(dev) != UCLASS_USB; 124 dev = dev->parent) 125 ; 126 return dev_get_priv(dev); 127 #else 128 return udev->controller; 129 #endif 130 } 131 132 /** 133 * Waits for as per specified amount of time 134 * for the "result" to match with "done" 135 * 136 * @param ptr pointer to the register to be read 137 * @param mask mask for the value read 138 * @param done value to be campared with result 139 * @param usec time to wait till 140 * @return 0 if handshake is success else < 0 on failure 141 */ 142 static int handshake(uint32_t volatile *ptr, uint32_t mask, 143 uint32_t done, int usec) 144 { 145 uint32_t result; 146 147 do { 148 result = xhci_readl(ptr); 149 if (result == ~(uint32_t)0) 150 return -ENODEV; 151 result &= mask; 152 if (result == done) 153 return 0; 154 usec--; 155 udelay(1); 156 } while (usec > 0); 157 158 return -ETIMEDOUT; 159 } 160 161 /** 162 * Set the run bit and wait for the host to be running. 163 * 164 * @param hcor pointer to host controller operation registers 165 * @return status of the Handshake 166 */ 167 static int xhci_start(struct xhci_hcor *hcor) 168 { 169 u32 temp; 170 int ret; 171 172 puts("Starting the controller\n"); 173 temp = xhci_readl(&hcor->or_usbcmd); 174 temp |= (CMD_RUN); 175 xhci_writel(&hcor->or_usbcmd, temp); 176 177 /* 178 * Wait for the HCHalted Status bit to be 0 to indicate the host is 179 * running. 180 */ 181 ret = handshake(&hcor->or_usbsts, STS_HALT, 0, XHCI_MAX_HALT_USEC); 182 if (ret) 183 debug("Host took too long to start, " 184 "waited %u microseconds.\n", 185 XHCI_MAX_HALT_USEC); 186 return ret; 187 } 188 189 /** 190 * Resets the XHCI Controller 191 * 192 * @param hcor pointer to host controller operation registers 193 * @return -EBUSY if XHCI Controller is not halted else status of handshake 194 */ 195 static int xhci_reset(struct xhci_hcor *hcor) 196 { 197 u32 cmd; 198 u32 state; 199 int ret; 200 201 /* Halting the Host first */ 202 debug("// Halt the HC: %p\n", hcor); 203 state = xhci_readl(&hcor->or_usbsts) & STS_HALT; 204 if (!state) { 205 cmd = xhci_readl(&hcor->or_usbcmd); 206 cmd &= ~CMD_RUN; 207 xhci_writel(&hcor->or_usbcmd, cmd); 208 } 209 210 ret = handshake(&hcor->or_usbsts, 211 STS_HALT, STS_HALT, XHCI_MAX_HALT_USEC); 212 if (ret) { 213 printf("Host not halted after %u microseconds.\n", 214 XHCI_MAX_HALT_USEC); 215 return -EBUSY; 216 } 217 218 debug("// Reset the HC\n"); 219 cmd = xhci_readl(&hcor->or_usbcmd); 220 cmd |= CMD_RESET; 221 xhci_writel(&hcor->or_usbcmd, cmd); 222 223 ret = handshake(&hcor->or_usbcmd, CMD_RESET, 0, XHCI_MAX_RESET_USEC); 224 if (ret) 225 return ret; 226 227 /* 228 * xHCI cannot write to any doorbells or operational registers other 229 * than status until the "Controller Not Ready" flag is cleared. 230 */ 231 return handshake(&hcor->or_usbsts, STS_CNR, 0, XHCI_MAX_RESET_USEC); 232 } 233 234 /** 235 * Used for passing endpoint bitmasks between the core and HCDs. 236 * Find the index for an endpoint given its descriptor. 237 * Use the return value to right shift 1 for the bitmask. 238 * 239 * Index = (epnum * 2) + direction - 1, 240 * where direction = 0 for OUT, 1 for IN. 241 * For control endpoints, the IN index is used (OUT index is unused), so 242 * index = (epnum * 2) + direction - 1 = (epnum * 2) + 1 - 1 = (epnum * 2) 243 * 244 * @param desc USB enpdoint Descriptor 245 * @return index of the Endpoint 246 */ 247 static unsigned int xhci_get_ep_index(struct usb_endpoint_descriptor *desc) 248 { 249 unsigned int index; 250 251 if (usb_endpoint_xfer_control(desc)) 252 index = (unsigned int)(usb_endpoint_num(desc) * 2); 253 else 254 index = (unsigned int)((usb_endpoint_num(desc) * 2) - 255 (usb_endpoint_dir_in(desc) ? 0 : 1)); 256 257 return index; 258 } 259 260 /* 261 * Convert bInterval expressed in microframes (in 1-255 range) to exponent of 262 * microframes, rounded down to nearest power of 2. 263 */ 264 static unsigned int xhci_microframes_to_exponent(unsigned int desc_interval, 265 unsigned int min_exponent, 266 unsigned int max_exponent) 267 { 268 unsigned int interval; 269 270 interval = fls(desc_interval) - 1; 271 interval = clamp_val(interval, min_exponent, max_exponent); 272 if ((1 << interval) != desc_interval) 273 debug("rounding interval to %d microframes, "\ 274 "ep desc says %d microframes\n", 275 1 << interval, desc_interval); 276 277 return interval; 278 } 279 280 static unsigned int xhci_parse_microframe_interval(struct usb_device *udev, 281 struct usb_endpoint_descriptor *endpt_desc) 282 { 283 if (endpt_desc->bInterval == 0) 284 return 0; 285 286 return xhci_microframes_to_exponent(endpt_desc->bInterval, 0, 15); 287 } 288 289 static unsigned int xhci_parse_frame_interval(struct usb_device *udev, 290 struct usb_endpoint_descriptor *endpt_desc) 291 { 292 return xhci_microframes_to_exponent(endpt_desc->bInterval * 8, 3, 10); 293 } 294 295 /* 296 * Convert interval expressed as 2^(bInterval - 1) == interval into 297 * straight exponent value 2^n == interval. 298 */ 299 static unsigned int xhci_parse_exponent_interval(struct usb_device *udev, 300 struct usb_endpoint_descriptor *endpt_desc) 301 { 302 unsigned int interval; 303 304 interval = clamp_val(endpt_desc->bInterval, 1, 16) - 1; 305 if (interval != endpt_desc->bInterval - 1) 306 debug("ep %#x - rounding interval to %d %sframes\n", 307 endpt_desc->bEndpointAddress, 1 << interval, 308 udev->speed == USB_SPEED_FULL ? "" : "micro"); 309 310 if (udev->speed == USB_SPEED_FULL) { 311 /* 312 * Full speed isoc endpoints specify interval in frames, 313 * not microframes. We are using microframes everywhere, 314 * so adjust accordingly. 315 */ 316 interval += 3; /* 1 frame = 2^3 uframes */ 317 } 318 319 return interval; 320 } 321 322 /* 323 * Return the polling or NAK interval. 324 * 325 * The polling interval is expressed in "microframes". If xHCI's Interval field 326 * is set to N, it will service the endpoint every 2^(Interval)*125us. 327 * 328 * The NAK interval is one NAK per 1 to 255 microframes, or no NAKs if interval 329 * is set to 0. 330 */ 331 static unsigned int xhci_get_endpoint_interval(struct usb_device *udev, 332 struct usb_endpoint_descriptor *endpt_desc) 333 { 334 unsigned int interval = 0; 335 336 switch (udev->speed) { 337 case USB_SPEED_HIGH: 338 /* Max NAK rate */ 339 if (usb_endpoint_xfer_control(endpt_desc) || 340 usb_endpoint_xfer_bulk(endpt_desc)) { 341 interval = xhci_parse_microframe_interval(udev, 342 endpt_desc); 343 break; 344 } 345 /* Fall through - SS and HS isoc/int have same decoding */ 346 347 case USB_SPEED_SUPER: 348 if (usb_endpoint_xfer_int(endpt_desc) || 349 usb_endpoint_xfer_isoc(endpt_desc)) { 350 interval = xhci_parse_exponent_interval(udev, 351 endpt_desc); 352 } 353 break; 354 355 case USB_SPEED_FULL: 356 if (usb_endpoint_xfer_isoc(endpt_desc)) { 357 interval = xhci_parse_exponent_interval(udev, 358 endpt_desc); 359 break; 360 } 361 /* 362 * Fall through for interrupt endpoint interval decoding 363 * since it uses the same rules as low speed interrupt 364 * endpoints. 365 */ 366 367 case USB_SPEED_LOW: 368 if (usb_endpoint_xfer_int(endpt_desc) || 369 usb_endpoint_xfer_isoc(endpt_desc)) { 370 interval = xhci_parse_frame_interval(udev, endpt_desc); 371 } 372 break; 373 374 default: 375 BUG(); 376 } 377 378 return interval; 379 } 380 381 /* 382 * The "Mult" field in the endpoint context is only set for SuperSpeed isoc eps. 383 * High speed endpoint descriptors can define "the number of additional 384 * transaction opportunities per microframe", but that goes in the Max Burst 385 * endpoint context field. 386 */ 387 static u32 xhci_get_endpoint_mult(struct usb_device *udev, 388 struct usb_endpoint_descriptor *endpt_desc, 389 struct usb_ss_ep_comp_descriptor *ss_ep_comp_desc) 390 { 391 if (udev->speed < USB_SPEED_SUPER || 392 !usb_endpoint_xfer_isoc(endpt_desc)) 393 return 0; 394 395 return ss_ep_comp_desc->bmAttributes; 396 } 397 398 static u32 xhci_get_endpoint_max_burst(struct usb_device *udev, 399 struct usb_endpoint_descriptor *endpt_desc, 400 struct usb_ss_ep_comp_descriptor *ss_ep_comp_desc) 401 { 402 /* Super speed and Plus have max burst in ep companion desc */ 403 if (udev->speed >= USB_SPEED_SUPER) 404 return ss_ep_comp_desc->bMaxBurst; 405 406 if (udev->speed == USB_SPEED_HIGH && 407 (usb_endpoint_xfer_isoc(endpt_desc) || 408 usb_endpoint_xfer_int(endpt_desc))) 409 return usb_endpoint_maxp_mult(endpt_desc) - 1; 410 411 return 0; 412 } 413 414 /* 415 * Return the maximum endpoint service interval time (ESIT) payload. 416 * Basically, this is the maxpacket size, multiplied by the burst size 417 * and mult size. 418 */ 419 static u32 xhci_get_max_esit_payload(struct usb_device *udev, 420 struct usb_endpoint_descriptor *endpt_desc, 421 struct usb_ss_ep_comp_descriptor *ss_ep_comp_desc) 422 { 423 int max_burst; 424 int max_packet; 425 426 /* Only applies for interrupt or isochronous endpoints */ 427 if (usb_endpoint_xfer_control(endpt_desc) || 428 usb_endpoint_xfer_bulk(endpt_desc)) 429 return 0; 430 431 /* SuperSpeed Isoc ep with less than 48k per esit */ 432 if (udev->speed >= USB_SPEED_SUPER) 433 return le16_to_cpu(ss_ep_comp_desc->wBytesPerInterval); 434 435 max_packet = usb_endpoint_maxp(endpt_desc); 436 max_burst = usb_endpoint_maxp_mult(endpt_desc); 437 438 /* A 0 in max burst means 1 transfer per ESIT */ 439 return max_packet * max_burst; 440 } 441 442 /** 443 * Issue a configure endpoint command or evaluate context command 444 * and wait for it to finish. 445 * 446 * @param udev pointer to the Device Data Structure 447 * @param ctx_change flag to indicate the Context has changed or NOT 448 * @return 0 on success, -1 on failure 449 */ 450 static int xhci_configure_endpoints(struct usb_device *udev, bool ctx_change) 451 { 452 struct xhci_container_ctx *in_ctx; 453 struct xhci_virt_device *virt_dev; 454 struct xhci_ctrl *ctrl = xhci_get_ctrl(udev); 455 union xhci_trb *event; 456 457 virt_dev = ctrl->devs[udev->slot_id]; 458 in_ctx = virt_dev->in_ctx; 459 460 xhci_flush_cache((uintptr_t)in_ctx->bytes, in_ctx->size); 461 xhci_queue_command(ctrl, in_ctx->bytes, udev->slot_id, 0, 462 ctx_change ? TRB_EVAL_CONTEXT : TRB_CONFIG_EP); 463 event = xhci_wait_for_event(ctrl, TRB_COMPLETION); 464 BUG_ON(TRB_TO_SLOT_ID(le32_to_cpu(event->event_cmd.flags)) 465 != udev->slot_id); 466 467 switch (GET_COMP_CODE(le32_to_cpu(event->event_cmd.status))) { 468 case COMP_SUCCESS: 469 debug("Successful %s command\n", 470 ctx_change ? "Evaluate Context" : "Configure Endpoint"); 471 break; 472 default: 473 printf("ERROR: %s command returned completion code %d.\n", 474 ctx_change ? "Evaluate Context" : "Configure Endpoint", 475 GET_COMP_CODE(le32_to_cpu(event->event_cmd.status))); 476 return -EINVAL; 477 } 478 479 xhci_acknowledge_event(ctrl); 480 481 return 0; 482 } 483 484 /** 485 * Configure the endpoint, programming the device contexts. 486 * 487 * @param udev pointer to the USB device structure 488 * @return returns the status of the xhci_configure_endpoints 489 */ 490 static int xhci_set_configuration(struct usb_device *udev) 491 { 492 struct xhci_container_ctx *in_ctx; 493 struct xhci_container_ctx *out_ctx; 494 struct xhci_input_control_ctx *ctrl_ctx; 495 struct xhci_slot_ctx *slot_ctx; 496 struct xhci_ep_ctx *ep_ctx[MAX_EP_CTX_NUM]; 497 int cur_ep; 498 int max_ep_flag = 0; 499 int ep_index; 500 unsigned int dir; 501 unsigned int ep_type; 502 struct xhci_ctrl *ctrl = xhci_get_ctrl(udev); 503 int num_of_ep; 504 int ep_flag = 0; 505 u64 trb_64 = 0; 506 int slot_id = udev->slot_id; 507 struct xhci_virt_device *virt_dev = ctrl->devs[slot_id]; 508 struct usb_interface *ifdesc; 509 u32 max_esit_payload; 510 unsigned int interval; 511 unsigned int mult; 512 unsigned int max_burst; 513 unsigned int avg_trb_len; 514 unsigned int err_count = 0; 515 516 out_ctx = virt_dev->out_ctx; 517 in_ctx = virt_dev->in_ctx; 518 519 num_of_ep = udev->config.if_desc[0].no_of_ep; 520 ifdesc = &udev->config.if_desc[0]; 521 522 ctrl_ctx = xhci_get_input_control_ctx(in_ctx); 523 /* Initialize the input context control */ 524 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG); 525 ctrl_ctx->drop_flags = 0; 526 527 /* EP_FLAG gives values 1 & 4 for EP1OUT and EP2IN */ 528 for (cur_ep = 0; cur_ep < num_of_ep; cur_ep++) { 529 ep_flag = xhci_get_ep_index(&ifdesc->ep_desc[cur_ep]); 530 ctrl_ctx->add_flags |= cpu_to_le32(1 << (ep_flag + 1)); 531 if (max_ep_flag < ep_flag) 532 max_ep_flag = ep_flag; 533 } 534 535 xhci_inval_cache((uintptr_t)out_ctx->bytes, out_ctx->size); 536 537 /* slot context */ 538 xhci_slot_copy(ctrl, in_ctx, out_ctx); 539 slot_ctx = xhci_get_slot_ctx(ctrl, in_ctx); 540 slot_ctx->dev_info &= ~(LAST_CTX_MASK); 541 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(max_ep_flag + 1) | 0); 542 543 xhci_endpoint_copy(ctrl, in_ctx, out_ctx, 0); 544 545 /* filling up ep contexts */ 546 for (cur_ep = 0; cur_ep < num_of_ep; cur_ep++) { 547 struct usb_endpoint_descriptor *endpt_desc = NULL; 548 struct usb_ss_ep_comp_descriptor *ss_ep_comp_desc = NULL; 549 550 endpt_desc = &ifdesc->ep_desc[cur_ep]; 551 ss_ep_comp_desc = &ifdesc->ss_ep_comp_desc[cur_ep]; 552 trb_64 = 0; 553 554 /* 555 * Get values to fill the endpoint context, mostly from ep 556 * descriptor. The average TRB buffer lengt for bulk endpoints 557 * is unclear as we have no clue on scatter gather list entry 558 * size. For Isoc and Int, set it to max available. 559 * See xHCI 1.1 spec 4.14.1.1 for details. 560 */ 561 max_esit_payload = xhci_get_max_esit_payload(udev, endpt_desc, 562 ss_ep_comp_desc); 563 interval = xhci_get_endpoint_interval(udev, endpt_desc); 564 mult = xhci_get_endpoint_mult(udev, endpt_desc, 565 ss_ep_comp_desc); 566 max_burst = xhci_get_endpoint_max_burst(udev, endpt_desc, 567 ss_ep_comp_desc); 568 avg_trb_len = max_esit_payload; 569 570 ep_index = xhci_get_ep_index(endpt_desc); 571 ep_ctx[ep_index] = xhci_get_ep_ctx(ctrl, in_ctx, ep_index); 572 573 /* Allocate the ep rings */ 574 virt_dev->eps[ep_index].ring = xhci_ring_alloc(1, true); 575 if (!virt_dev->eps[ep_index].ring) 576 return -ENOMEM; 577 578 /*NOTE: ep_desc[0] actually represents EP1 and so on */ 579 dir = (((endpt_desc->bEndpointAddress) & (0x80)) >> 7); 580 ep_type = (((endpt_desc->bmAttributes) & (0x3)) | (dir << 2)); 581 582 ep_ctx[ep_index]->ep_info = 583 cpu_to_le32(EP_MAX_ESIT_PAYLOAD_HI(max_esit_payload) | 584 EP_INTERVAL(interval) | EP_MULT(mult)); 585 586 ep_ctx[ep_index]->ep_info2 = 587 cpu_to_le32(ep_type << EP_TYPE_SHIFT); 588 ep_ctx[ep_index]->ep_info2 |= 589 cpu_to_le32(MAX_PACKET 590 (get_unaligned(&endpt_desc->wMaxPacketSize))); 591 592 /* Allow 3 retries for everything but isoc, set CErr = 3 */ 593 if (!usb_endpoint_xfer_isoc(endpt_desc)) 594 err_count = 3; 595 ep_ctx[ep_index]->ep_info2 |= 596 cpu_to_le32(MAX_BURST(max_burst) | 597 ERROR_COUNT(err_count)); 598 599 trb_64 = (uintptr_t) 600 virt_dev->eps[ep_index].ring->enqueue; 601 ep_ctx[ep_index]->deq = cpu_to_le64(trb_64 | 602 virt_dev->eps[ep_index].ring->cycle_state); 603 604 ep_ctx[ep_index]->tx_info = 605 cpu_to_le32(EP_MAX_ESIT_PAYLOAD_LO(max_esit_payload) | 606 EP_AVG_TRB_LENGTH(avg_trb_len)); 607 } 608 609 return xhci_configure_endpoints(udev, false); 610 } 611 612 /** 613 * Issue an Address Device command (which will issue a SetAddress request to 614 * the device). 615 * 616 * @param udev pointer to the Device Data Structure 617 * @return 0 if successful else error code on failure 618 */ 619 static int xhci_address_device(struct usb_device *udev, int root_portnr) 620 { 621 int ret = 0; 622 struct xhci_ctrl *ctrl = xhci_get_ctrl(udev); 623 struct xhci_slot_ctx *slot_ctx; 624 struct xhci_input_control_ctx *ctrl_ctx; 625 struct xhci_virt_device *virt_dev; 626 int slot_id = udev->slot_id; 627 union xhci_trb *event; 628 629 virt_dev = ctrl->devs[slot_id]; 630 631 /* 632 * This is the first Set Address since device plug-in 633 * so setting up the slot context. 634 */ 635 debug("Setting up addressable devices %p\n", ctrl->dcbaa); 636 xhci_setup_addressable_virt_dev(ctrl, udev, root_portnr); 637 638 ctrl_ctx = xhci_get_input_control_ctx(virt_dev->in_ctx); 639 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG | EP0_FLAG); 640 ctrl_ctx->drop_flags = 0; 641 642 xhci_queue_command(ctrl, (void *)ctrl_ctx, slot_id, 0, TRB_ADDR_DEV); 643 event = xhci_wait_for_event(ctrl, TRB_COMPLETION); 644 BUG_ON(TRB_TO_SLOT_ID(le32_to_cpu(event->event_cmd.flags)) != slot_id); 645 646 switch (GET_COMP_CODE(le32_to_cpu(event->event_cmd.status))) { 647 case COMP_CTX_STATE: 648 case COMP_EBADSLT: 649 printf("Setup ERROR: address device command for slot %d.\n", 650 slot_id); 651 ret = -EINVAL; 652 break; 653 case COMP_TX_ERR: 654 puts("Device not responding to set address.\n"); 655 ret = -EPROTO; 656 break; 657 case COMP_DEV_ERR: 658 puts("ERROR: Incompatible device" 659 "for address device command.\n"); 660 ret = -ENODEV; 661 break; 662 case COMP_SUCCESS: 663 debug("Successful Address Device command\n"); 664 udev->status = 0; 665 break; 666 default: 667 printf("ERROR: unexpected command completion code 0x%x.\n", 668 GET_COMP_CODE(le32_to_cpu(event->event_cmd.status))); 669 ret = -EINVAL; 670 break; 671 } 672 673 xhci_acknowledge_event(ctrl); 674 675 if (ret < 0) 676 /* 677 * TODO: Unsuccessful Address Device command shall leave the 678 * slot in default state. So, issue Disable Slot command now. 679 */ 680 return ret; 681 682 xhci_inval_cache((uintptr_t)virt_dev->out_ctx->bytes, 683 virt_dev->out_ctx->size); 684 slot_ctx = xhci_get_slot_ctx(ctrl, virt_dev->out_ctx); 685 686 debug("xHC internal address is: %d\n", 687 le32_to_cpu(slot_ctx->dev_state) & DEV_ADDR_MASK); 688 689 return 0; 690 } 691 692 /** 693 * Issue Enable slot command to the controller to allocate 694 * device slot and assign the slot id. It fails if the xHC 695 * ran out of device slots, the Enable Slot command timed out, 696 * or allocating memory failed. 697 * 698 * @param udev pointer to the Device Data Structure 699 * @return Returns 0 on succes else return error code on failure 700 */ 701 static int _xhci_alloc_device(struct usb_device *udev) 702 { 703 struct xhci_ctrl *ctrl = xhci_get_ctrl(udev); 704 union xhci_trb *event; 705 int ret; 706 707 /* 708 * Root hub will be first device to be initailized. 709 * If this device is root-hub, don't do any xHC related 710 * stuff. 711 */ 712 if (ctrl->rootdev == 0) { 713 udev->speed = USB_SPEED_SUPER; 714 return 0; 715 } 716 717 xhci_queue_command(ctrl, NULL, 0, 0, TRB_ENABLE_SLOT); 718 event = xhci_wait_for_event(ctrl, TRB_COMPLETION); 719 BUG_ON(GET_COMP_CODE(le32_to_cpu(event->event_cmd.status)) 720 != COMP_SUCCESS); 721 722 udev->slot_id = TRB_TO_SLOT_ID(le32_to_cpu(event->event_cmd.flags)); 723 724 xhci_acknowledge_event(ctrl); 725 726 ret = xhci_alloc_virt_device(ctrl, udev->slot_id); 727 if (ret < 0) { 728 /* 729 * TODO: Unsuccessful Address Device command shall leave 730 * the slot in default. So, issue Disable Slot command now. 731 */ 732 puts("Could not allocate xHCI USB device data structures\n"); 733 return ret; 734 } 735 736 return 0; 737 } 738 739 #ifndef CONFIG_DM_USB 740 int usb_alloc_device(struct usb_device *udev) 741 { 742 return _xhci_alloc_device(udev); 743 } 744 #endif 745 746 /* 747 * Full speed devices may have a max packet size greater than 8 bytes, but the 748 * USB core doesn't know that until it reads the first 8 bytes of the 749 * descriptor. If the usb_device's max packet size changes after that point, 750 * we need to issue an evaluate context command and wait on it. 751 * 752 * @param udev pointer to the Device Data Structure 753 * @return returns the status of the xhci_configure_endpoints 754 */ 755 int xhci_check_maxpacket(struct usb_device *udev) 756 { 757 struct xhci_ctrl *ctrl = xhci_get_ctrl(udev); 758 unsigned int slot_id = udev->slot_id; 759 int ep_index = 0; /* control endpoint */ 760 struct xhci_container_ctx *in_ctx; 761 struct xhci_container_ctx *out_ctx; 762 struct xhci_input_control_ctx *ctrl_ctx; 763 struct xhci_ep_ctx *ep_ctx; 764 int max_packet_size; 765 int hw_max_packet_size; 766 int ret = 0; 767 768 out_ctx = ctrl->devs[slot_id]->out_ctx; 769 xhci_inval_cache((uintptr_t)out_ctx->bytes, out_ctx->size); 770 771 ep_ctx = xhci_get_ep_ctx(ctrl, out_ctx, ep_index); 772 hw_max_packet_size = MAX_PACKET_DECODED(le32_to_cpu(ep_ctx->ep_info2)); 773 max_packet_size = udev->epmaxpacketin[0]; 774 if (hw_max_packet_size != max_packet_size) { 775 debug("Max Packet Size for ep 0 changed.\n"); 776 debug("Max packet size in usb_device = %d\n", max_packet_size); 777 debug("Max packet size in xHCI HW = %d\n", hw_max_packet_size); 778 debug("Issuing evaluate context command.\n"); 779 780 /* Set up the modified control endpoint 0 */ 781 xhci_endpoint_copy(ctrl, ctrl->devs[slot_id]->in_ctx, 782 ctrl->devs[slot_id]->out_ctx, ep_index); 783 in_ctx = ctrl->devs[slot_id]->in_ctx; 784 ep_ctx = xhci_get_ep_ctx(ctrl, in_ctx, ep_index); 785 ep_ctx->ep_info2 &= cpu_to_le32(~((0xffff & MAX_PACKET_MASK) 786 << MAX_PACKET_SHIFT)); 787 ep_ctx->ep_info2 |= cpu_to_le32(MAX_PACKET(max_packet_size)); 788 789 /* 790 * Set up the input context flags for the command 791 * FIXME: This won't work if a non-default control endpoint 792 * changes max packet sizes. 793 */ 794 ctrl_ctx = xhci_get_input_control_ctx(in_ctx); 795 ctrl_ctx->add_flags = cpu_to_le32(EP0_FLAG); 796 ctrl_ctx->drop_flags = 0; 797 798 ret = xhci_configure_endpoints(udev, true); 799 } 800 return ret; 801 } 802 803 /** 804 * Clears the Change bits of the Port Status Register 805 * 806 * @param wValue request value 807 * @param wIndex request index 808 * @param addr address of posrt status register 809 * @param port_status state of port status register 810 * @return none 811 */ 812 static void xhci_clear_port_change_bit(u16 wValue, 813 u16 wIndex, volatile uint32_t *addr, u32 port_status) 814 { 815 char *port_change_bit; 816 u32 status; 817 818 switch (wValue) { 819 case USB_PORT_FEAT_C_RESET: 820 status = PORT_RC; 821 port_change_bit = "reset"; 822 break; 823 case USB_PORT_FEAT_C_CONNECTION: 824 status = PORT_CSC; 825 port_change_bit = "connect"; 826 break; 827 case USB_PORT_FEAT_C_OVER_CURRENT: 828 status = PORT_OCC; 829 port_change_bit = "over-current"; 830 break; 831 case USB_PORT_FEAT_C_ENABLE: 832 status = PORT_PEC; 833 port_change_bit = "enable/disable"; 834 break; 835 case USB_PORT_FEAT_C_SUSPEND: 836 status = PORT_PLC; 837 port_change_bit = "suspend/resume"; 838 break; 839 default: 840 /* Should never happen */ 841 return; 842 } 843 844 /* Change bits are all write 1 to clear */ 845 xhci_writel(addr, port_status | status); 846 847 port_status = xhci_readl(addr); 848 debug("clear port %s change, actual port %d status = 0x%x\n", 849 port_change_bit, wIndex, port_status); 850 } 851 852 /** 853 * Save Read Only (RO) bits and save read/write bits where 854 * writing a 0 clears the bit and writing a 1 sets the bit (RWS). 855 * For all other types (RW1S, RW1CS, RW, and RZ), writing a '0' has no effect. 856 * 857 * @param state state of the Port Status and Control Regsiter 858 * @return a value that would result in the port being in the 859 * same state, if the value was written to the port 860 * status control register. 861 */ 862 static u32 xhci_port_state_to_neutral(u32 state) 863 { 864 /* Save read-only status and port state */ 865 return (state & XHCI_PORT_RO) | (state & XHCI_PORT_RWS); 866 } 867 868 /** 869 * Submits the Requests to the XHCI Host Controller 870 * 871 * @param udev pointer to the USB device structure 872 * @param pipe contains the DIR_IN or OUT , devnum 873 * @param buffer buffer to be read/written based on the request 874 * @return returns 0 if successful else -1 on failure 875 */ 876 static int xhci_submit_root(struct usb_device *udev, unsigned long pipe, 877 void *buffer, struct devrequest *req) 878 { 879 uint8_t tmpbuf[4]; 880 u16 typeReq; 881 void *srcptr = NULL; 882 int len, srclen; 883 uint32_t reg; 884 volatile uint32_t *status_reg; 885 struct xhci_ctrl *ctrl = xhci_get_ctrl(udev); 886 struct xhci_hccr *hccr = ctrl->hccr; 887 struct xhci_hcor *hcor = ctrl->hcor; 888 int max_ports = HCS_MAX_PORTS(xhci_readl(&hccr->cr_hcsparams1)); 889 890 if ((req->requesttype & USB_RT_PORT) && 891 le16_to_cpu(req->index) > max_ports) { 892 printf("The request port(%d) exceeds maximum port number\n", 893 le16_to_cpu(req->index) - 1); 894 return -EINVAL; 895 } 896 897 status_reg = (volatile uint32_t *) 898 (&hcor->portregs[le16_to_cpu(req->index) - 1].or_portsc); 899 srclen = 0; 900 901 typeReq = req->request | req->requesttype << 8; 902 903 switch (typeReq) { 904 case DeviceRequest | USB_REQ_GET_DESCRIPTOR: 905 switch (le16_to_cpu(req->value) >> 8) { 906 case USB_DT_DEVICE: 907 debug("USB_DT_DEVICE request\n"); 908 srcptr = &descriptor.device; 909 srclen = 0x12; 910 break; 911 case USB_DT_CONFIG: 912 debug("USB_DT_CONFIG config\n"); 913 srcptr = &descriptor.config; 914 srclen = 0x19; 915 break; 916 case USB_DT_STRING: 917 debug("USB_DT_STRING config\n"); 918 switch (le16_to_cpu(req->value) & 0xff) { 919 case 0: /* Language */ 920 srcptr = "\4\3\11\4"; 921 srclen = 4; 922 break; 923 case 1: /* Vendor String */ 924 srcptr = "\16\3U\0-\0B\0o\0o\0t\0"; 925 srclen = 14; 926 break; 927 case 2: /* Product Name */ 928 srcptr = "\52\3X\0H\0C\0I\0 " 929 "\0H\0o\0s\0t\0 " 930 "\0C\0o\0n\0t\0r\0o\0l\0l\0e\0r\0"; 931 srclen = 42; 932 break; 933 default: 934 printf("unknown value DT_STRING %x\n", 935 le16_to_cpu(req->value)); 936 goto unknown; 937 } 938 break; 939 default: 940 printf("unknown value %x\n", le16_to_cpu(req->value)); 941 goto unknown; 942 } 943 break; 944 case USB_REQ_GET_DESCRIPTOR | ((USB_DIR_IN | USB_RT_HUB) << 8): 945 switch (le16_to_cpu(req->value) >> 8) { 946 case USB_DT_HUB: 947 case USB_DT_SS_HUB: 948 debug("USB_DT_HUB config\n"); 949 srcptr = &descriptor.hub; 950 srclen = 0x8; 951 break; 952 default: 953 printf("unknown value %x\n", le16_to_cpu(req->value)); 954 goto unknown; 955 } 956 break; 957 case USB_REQ_SET_ADDRESS | (USB_RECIP_DEVICE << 8): 958 debug("USB_REQ_SET_ADDRESS\n"); 959 ctrl->rootdev = le16_to_cpu(req->value); 960 break; 961 case DeviceOutRequest | USB_REQ_SET_CONFIGURATION: 962 /* Do nothing */ 963 break; 964 case USB_REQ_GET_STATUS | ((USB_DIR_IN | USB_RT_HUB) << 8): 965 tmpbuf[0] = 1; /* USB_STATUS_SELFPOWERED */ 966 tmpbuf[1] = 0; 967 srcptr = tmpbuf; 968 srclen = 2; 969 break; 970 case USB_REQ_GET_STATUS | ((USB_RT_PORT | USB_DIR_IN) << 8): 971 memset(tmpbuf, 0, 4); 972 reg = xhci_readl(status_reg); 973 if (reg & PORT_CONNECT) { 974 tmpbuf[0] |= USB_PORT_STAT_CONNECTION; 975 switch (reg & DEV_SPEED_MASK) { 976 case XDEV_FS: 977 debug("SPEED = FULLSPEED\n"); 978 break; 979 case XDEV_LS: 980 debug("SPEED = LOWSPEED\n"); 981 tmpbuf[1] |= USB_PORT_STAT_LOW_SPEED >> 8; 982 break; 983 case XDEV_HS: 984 debug("SPEED = HIGHSPEED\n"); 985 tmpbuf[1] |= USB_PORT_STAT_HIGH_SPEED >> 8; 986 break; 987 case XDEV_SS: 988 debug("SPEED = SUPERSPEED\n"); 989 tmpbuf[1] |= USB_PORT_STAT_SUPER_SPEED >> 8; 990 break; 991 } 992 } 993 if (reg & PORT_PE) 994 tmpbuf[0] |= USB_PORT_STAT_ENABLE; 995 if ((reg & PORT_PLS_MASK) == XDEV_U3) 996 tmpbuf[0] |= USB_PORT_STAT_SUSPEND; 997 if (reg & PORT_OC) 998 tmpbuf[0] |= USB_PORT_STAT_OVERCURRENT; 999 if (reg & PORT_RESET) 1000 tmpbuf[0] |= USB_PORT_STAT_RESET; 1001 if (reg & PORT_POWER) 1002 /* 1003 * XXX: This Port power bit (for USB 3.0 hub) 1004 * we are faking in USB 2.0 hub port status; 1005 * since there's a change in bit positions in 1006 * two: 1007 * USB 2.0 port status PP is at position[8] 1008 * USB 3.0 port status PP is at position[9] 1009 * So, we are still keeping it at position [8] 1010 */ 1011 tmpbuf[1] |= USB_PORT_STAT_POWER >> 8; 1012 if (reg & PORT_CSC) 1013 tmpbuf[2] |= USB_PORT_STAT_C_CONNECTION; 1014 if (reg & PORT_PEC) 1015 tmpbuf[2] |= USB_PORT_STAT_C_ENABLE; 1016 if (reg & PORT_OCC) 1017 tmpbuf[2] |= USB_PORT_STAT_C_OVERCURRENT; 1018 if (reg & PORT_RC) 1019 tmpbuf[2] |= USB_PORT_STAT_C_RESET; 1020 1021 srcptr = tmpbuf; 1022 srclen = 4; 1023 break; 1024 case USB_REQ_SET_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8): 1025 reg = xhci_readl(status_reg); 1026 reg = xhci_port_state_to_neutral(reg); 1027 switch (le16_to_cpu(req->value)) { 1028 case USB_PORT_FEAT_ENABLE: 1029 reg |= PORT_PE; 1030 xhci_writel(status_reg, reg); 1031 break; 1032 case USB_PORT_FEAT_POWER: 1033 reg |= PORT_POWER; 1034 xhci_writel(status_reg, reg); 1035 break; 1036 case USB_PORT_FEAT_RESET: 1037 reg |= PORT_RESET; 1038 xhci_writel(status_reg, reg); 1039 break; 1040 default: 1041 printf("unknown feature %x\n", le16_to_cpu(req->value)); 1042 goto unknown; 1043 } 1044 break; 1045 case USB_REQ_CLEAR_FEATURE | ((USB_DIR_OUT | USB_RT_PORT) << 8): 1046 reg = xhci_readl(status_reg); 1047 reg = xhci_port_state_to_neutral(reg); 1048 switch (le16_to_cpu(req->value)) { 1049 case USB_PORT_FEAT_ENABLE: 1050 reg &= ~PORT_PE; 1051 break; 1052 case USB_PORT_FEAT_POWER: 1053 reg &= ~PORT_POWER; 1054 break; 1055 case USB_PORT_FEAT_C_RESET: 1056 case USB_PORT_FEAT_C_CONNECTION: 1057 case USB_PORT_FEAT_C_OVER_CURRENT: 1058 case USB_PORT_FEAT_C_ENABLE: 1059 xhci_clear_port_change_bit((le16_to_cpu(req->value)), 1060 le16_to_cpu(req->index), 1061 status_reg, reg); 1062 break; 1063 default: 1064 printf("unknown feature %x\n", le16_to_cpu(req->value)); 1065 goto unknown; 1066 } 1067 xhci_writel(status_reg, reg); 1068 break; 1069 default: 1070 puts("Unknown request\n"); 1071 goto unknown; 1072 } 1073 1074 debug("scrlen = %d\n req->length = %d\n", 1075 srclen, le16_to_cpu(req->length)); 1076 1077 len = min(srclen, (int)le16_to_cpu(req->length)); 1078 1079 if (srcptr != NULL && len > 0) 1080 memcpy(buffer, srcptr, len); 1081 else 1082 debug("Len is 0\n"); 1083 1084 udev->act_len = len; 1085 udev->status = 0; 1086 1087 return 0; 1088 1089 unknown: 1090 udev->act_len = 0; 1091 udev->status = USB_ST_STALLED; 1092 1093 return -ENODEV; 1094 } 1095 1096 /** 1097 * Submits the INT request to XHCI Host cotroller 1098 * 1099 * @param udev pointer to the USB device 1100 * @param pipe contains the DIR_IN or OUT , devnum 1101 * @param buffer buffer to be read/written based on the request 1102 * @param length length of the buffer 1103 * @param interval interval of the interrupt 1104 * @return 0 1105 */ 1106 static int _xhci_submit_int_msg(struct usb_device *udev, unsigned long pipe, 1107 void *buffer, int length, int interval) 1108 { 1109 if (usb_pipetype(pipe) != PIPE_INTERRUPT) { 1110 printf("non-interrupt pipe (type=%lu)", usb_pipetype(pipe)); 1111 return -EINVAL; 1112 } 1113 1114 /* 1115 * xHCI uses normal TRBs for both bulk and interrupt. When the 1116 * interrupt endpoint is to be serviced, the xHC will consume 1117 * (at most) one TD. A TD (comprised of sg list entries) can 1118 * take several service intervals to transmit. 1119 */ 1120 return xhci_bulk_tx(udev, pipe, length, buffer); 1121 } 1122 1123 /** 1124 * submit the BULK type of request to the USB Device 1125 * 1126 * @param udev pointer to the USB device 1127 * @param pipe contains the DIR_IN or OUT , devnum 1128 * @param buffer buffer to be read/written based on the request 1129 * @param length length of the buffer 1130 * @return returns 0 if successful else -1 on failure 1131 */ 1132 static int _xhci_submit_bulk_msg(struct usb_device *udev, unsigned long pipe, 1133 void *buffer, int length) 1134 { 1135 if (usb_pipetype(pipe) != PIPE_BULK) { 1136 printf("non-bulk pipe (type=%lu)", usb_pipetype(pipe)); 1137 return -EINVAL; 1138 } 1139 1140 return xhci_bulk_tx(udev, pipe, length, buffer); 1141 } 1142 1143 /** 1144 * submit the control type of request to the Root hub/Device based on the devnum 1145 * 1146 * @param udev pointer to the USB device 1147 * @param pipe contains the DIR_IN or OUT , devnum 1148 * @param buffer buffer to be read/written based on the request 1149 * @param length length of the buffer 1150 * @param setup Request type 1151 * @param root_portnr Root port number that this device is on 1152 * @return returns 0 if successful else -1 on failure 1153 */ 1154 static int _xhci_submit_control_msg(struct usb_device *udev, unsigned long pipe, 1155 void *buffer, int length, 1156 struct devrequest *setup, int root_portnr) 1157 { 1158 struct xhci_ctrl *ctrl = xhci_get_ctrl(udev); 1159 int ret = 0; 1160 1161 if (usb_pipetype(pipe) != PIPE_CONTROL) { 1162 printf("non-control pipe (type=%lu)", usb_pipetype(pipe)); 1163 return -EINVAL; 1164 } 1165 1166 if (usb_pipedevice(pipe) == ctrl->rootdev) 1167 return xhci_submit_root(udev, pipe, buffer, setup); 1168 1169 if (setup->request == USB_REQ_SET_ADDRESS && 1170 (setup->requesttype & USB_TYPE_MASK) == USB_TYPE_STANDARD) 1171 return xhci_address_device(udev, root_portnr); 1172 1173 if (setup->request == USB_REQ_SET_CONFIGURATION && 1174 (setup->requesttype & USB_TYPE_MASK) == USB_TYPE_STANDARD) { 1175 ret = xhci_set_configuration(udev); 1176 if (ret) { 1177 puts("Failed to configure xHCI endpoint\n"); 1178 return ret; 1179 } 1180 } 1181 1182 return xhci_ctrl_tx(udev, pipe, setup, length, buffer); 1183 } 1184 1185 static int xhci_lowlevel_init(struct xhci_ctrl *ctrl) 1186 { 1187 struct xhci_hccr *hccr; 1188 struct xhci_hcor *hcor; 1189 uint32_t val; 1190 uint32_t val2; 1191 uint32_t reg; 1192 1193 hccr = ctrl->hccr; 1194 hcor = ctrl->hcor; 1195 /* 1196 * Program the Number of Device Slots Enabled field in the CONFIG 1197 * register with the max value of slots the HC can handle. 1198 */ 1199 val = (xhci_readl(&hccr->cr_hcsparams1) & HCS_SLOTS_MASK); 1200 val2 = xhci_readl(&hcor->or_config); 1201 val |= (val2 & ~HCS_SLOTS_MASK); 1202 xhci_writel(&hcor->or_config, val); 1203 1204 /* initializing xhci data structures */ 1205 if (xhci_mem_init(ctrl, hccr, hcor) < 0) 1206 return -ENOMEM; 1207 1208 reg = xhci_readl(&hccr->cr_hcsparams1); 1209 descriptor.hub.bNbrPorts = ((reg & HCS_MAX_PORTS_MASK) >> 1210 HCS_MAX_PORTS_SHIFT); 1211 printf("Register %x NbrPorts %d\n", reg, descriptor.hub.bNbrPorts); 1212 1213 /* Port Indicators */ 1214 reg = xhci_readl(&hccr->cr_hccparams); 1215 if (HCS_INDICATOR(reg)) 1216 put_unaligned(get_unaligned(&descriptor.hub.wHubCharacteristics) 1217 | 0x80, &descriptor.hub.wHubCharacteristics); 1218 1219 /* Port Power Control */ 1220 if (HCC_PPC(reg)) 1221 put_unaligned(get_unaligned(&descriptor.hub.wHubCharacteristics) 1222 | 0x01, &descriptor.hub.wHubCharacteristics); 1223 1224 if (xhci_start(hcor)) { 1225 xhci_reset(hcor); 1226 return -ENODEV; 1227 } 1228 1229 /* Zero'ing IRQ control register and IRQ pending register */ 1230 xhci_writel(&ctrl->ir_set->irq_control, 0x0); 1231 xhci_writel(&ctrl->ir_set->irq_pending, 0x0); 1232 1233 reg = HC_VERSION(xhci_readl(&hccr->cr_capbase)); 1234 printf("USB XHCI %x.%02x\n", reg >> 8, reg & 0xff); 1235 1236 return 0; 1237 } 1238 1239 static int xhci_lowlevel_stop(struct xhci_ctrl *ctrl) 1240 { 1241 u32 temp; 1242 1243 xhci_reset(ctrl->hcor); 1244 1245 debug("// Disabling event ring interrupts\n"); 1246 temp = xhci_readl(&ctrl->hcor->or_usbsts); 1247 xhci_writel(&ctrl->hcor->or_usbsts, temp & ~STS_EINT); 1248 temp = xhci_readl(&ctrl->ir_set->irq_pending); 1249 xhci_writel(&ctrl->ir_set->irq_pending, ER_IRQ_DISABLE(temp)); 1250 1251 return 0; 1252 } 1253 1254 #ifndef CONFIG_DM_USB 1255 int submit_control_msg(struct usb_device *udev, unsigned long pipe, 1256 void *buffer, int length, struct devrequest *setup) 1257 { 1258 struct usb_device *hop = udev; 1259 1260 if (hop->parent) 1261 while (hop->parent->parent) 1262 hop = hop->parent; 1263 1264 return _xhci_submit_control_msg(udev, pipe, buffer, length, setup, 1265 hop->portnr); 1266 } 1267 1268 int submit_bulk_msg(struct usb_device *udev, unsigned long pipe, void *buffer, 1269 int length) 1270 { 1271 return _xhci_submit_bulk_msg(udev, pipe, buffer, length); 1272 } 1273 1274 int submit_int_msg(struct usb_device *udev, unsigned long pipe, void *buffer, 1275 int length, int interval) 1276 { 1277 return _xhci_submit_int_msg(udev, pipe, buffer, length, interval); 1278 } 1279 1280 /** 1281 * Intialises the XHCI host controller 1282 * and allocates the necessary data structures 1283 * 1284 * @param index index to the host controller data structure 1285 * @return pointer to the intialised controller 1286 */ 1287 int usb_lowlevel_init(int index, enum usb_init_type init, void **controller) 1288 { 1289 struct xhci_hccr *hccr; 1290 struct xhci_hcor *hcor; 1291 struct xhci_ctrl *ctrl; 1292 int ret; 1293 1294 *controller = NULL; 1295 1296 if (xhci_hcd_init(index, &hccr, (struct xhci_hcor **)&hcor) != 0) 1297 return -ENODEV; 1298 1299 if (xhci_reset(hcor) != 0) 1300 return -ENODEV; 1301 1302 ctrl = &xhcic[index]; 1303 1304 ctrl->hccr = hccr; 1305 ctrl->hcor = hcor; 1306 1307 ret = xhci_lowlevel_init(ctrl); 1308 1309 if (ret) { 1310 ctrl->hccr = NULL; 1311 ctrl->hcor = NULL; 1312 } else { 1313 *controller = &xhcic[index]; 1314 } 1315 1316 return ret; 1317 } 1318 1319 /** 1320 * Stops the XHCI host controller 1321 * and cleans up all the related data structures 1322 * 1323 * @param index index to the host controller data structure 1324 * @return none 1325 */ 1326 int usb_lowlevel_stop(int index) 1327 { 1328 struct xhci_ctrl *ctrl = (xhcic + index); 1329 1330 if (ctrl->hcor) { 1331 xhci_lowlevel_stop(ctrl); 1332 xhci_hcd_stop(index); 1333 xhci_cleanup(ctrl); 1334 } 1335 1336 return 0; 1337 } 1338 #endif /* CONFIG_DM_USB */ 1339 1340 #ifdef CONFIG_DM_USB 1341 1342 static int xhci_submit_control_msg(struct udevice *dev, struct usb_device *udev, 1343 unsigned long pipe, void *buffer, int length, 1344 struct devrequest *setup) 1345 { 1346 struct usb_device *uhop; 1347 struct udevice *hub; 1348 int root_portnr = 0; 1349 1350 debug("%s: dev='%s', udev=%p, udev->dev='%s', portnr=%d\n", __func__, 1351 dev->name, udev, udev->dev->name, udev->portnr); 1352 hub = udev->dev; 1353 if (device_get_uclass_id(hub) == UCLASS_USB_HUB) { 1354 /* Figure out our port number on the root hub */ 1355 if (usb_hub_is_root_hub(hub)) { 1356 root_portnr = udev->portnr; 1357 } else { 1358 while (!usb_hub_is_root_hub(hub->parent)) 1359 hub = hub->parent; 1360 uhop = dev_get_parent_priv(hub); 1361 root_portnr = uhop->portnr; 1362 } 1363 } 1364 /* 1365 struct usb_device *hop = udev; 1366 1367 if (hop->parent) 1368 while (hop->parent->parent) 1369 hop = hop->parent; 1370 */ 1371 return _xhci_submit_control_msg(udev, pipe, buffer, length, setup, 1372 root_portnr); 1373 } 1374 1375 static int xhci_submit_bulk_msg(struct udevice *dev, struct usb_device *udev, 1376 unsigned long pipe, void *buffer, int length) 1377 { 1378 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev); 1379 return _xhci_submit_bulk_msg(udev, pipe, buffer, length); 1380 } 1381 1382 static int xhci_submit_int_msg(struct udevice *dev, struct usb_device *udev, 1383 unsigned long pipe, void *buffer, int length, 1384 int interval) 1385 { 1386 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev); 1387 return _xhci_submit_int_msg(udev, pipe, buffer, length, interval); 1388 } 1389 1390 static int xhci_alloc_device(struct udevice *dev, struct usb_device *udev) 1391 { 1392 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev); 1393 return _xhci_alloc_device(udev); 1394 } 1395 1396 static int xhci_update_hub_device(struct udevice *dev, struct usb_device *udev) 1397 { 1398 struct xhci_ctrl *ctrl = dev_get_priv(dev); 1399 struct usb_hub_device *hub = dev_get_uclass_priv(udev->dev); 1400 struct xhci_virt_device *virt_dev; 1401 struct xhci_input_control_ctx *ctrl_ctx; 1402 struct xhci_container_ctx *out_ctx; 1403 struct xhci_container_ctx *in_ctx; 1404 struct xhci_slot_ctx *slot_ctx; 1405 int slot_id = udev->slot_id; 1406 unsigned think_time; 1407 1408 debug("%s: dev='%s', udev=%p\n", __func__, dev->name, udev); 1409 1410 /* Ignore root hubs */ 1411 if (usb_hub_is_root_hub(udev->dev)) 1412 return 0; 1413 1414 virt_dev = ctrl->devs[slot_id]; 1415 BUG_ON(!virt_dev); 1416 1417 out_ctx = virt_dev->out_ctx; 1418 in_ctx = virt_dev->in_ctx; 1419 1420 ctrl_ctx = xhci_get_input_control_ctx(in_ctx); 1421 /* Initialize the input context control */ 1422 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG); 1423 ctrl_ctx->drop_flags = 0; 1424 1425 xhci_inval_cache((uintptr_t)out_ctx->bytes, out_ctx->size); 1426 1427 /* slot context */ 1428 xhci_slot_copy(ctrl, in_ctx, out_ctx); 1429 slot_ctx = xhci_get_slot_ctx(ctrl, in_ctx); 1430 1431 /* Update hub related fields */ 1432 slot_ctx->dev_info |= cpu_to_le32(DEV_HUB); 1433 if (hub->tt.multi && udev->speed == USB_SPEED_HIGH) 1434 slot_ctx->dev_info |= cpu_to_le32(DEV_MTT); 1435 slot_ctx->dev_info2 |= cpu_to_le32(XHCI_MAX_PORTS(udev->maxchild)); 1436 /* 1437 * Set TT think time - convert from ns to FS bit times. 1438 * Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns 1439 * 1440 * 0 = 8 FS bit times, 1 = 16 FS bit times, 1441 * 2 = 24 FS bit times, 3 = 32 FS bit times. 1442 * 1443 * This field shall be 0 if the device is not a high-spped hub. 1444 */ 1445 think_time = hub->tt.think_time; 1446 if (think_time != 0) 1447 think_time = (think_time / 666) - 1; 1448 if (udev->speed == USB_SPEED_HIGH) 1449 slot_ctx->tt_info |= cpu_to_le32(TT_THINK_TIME(think_time)); 1450 1451 return xhci_configure_endpoints(udev, false); 1452 } 1453 1454 static int xhci_get_max_xfer_size(struct udevice *dev, size_t *size) 1455 { 1456 /* 1457 * xHCD allocates one segment which includes 64 TRBs for each endpoint 1458 * and the last TRB in this segment is configured as a link TRB to form 1459 * a TRB ring. Each TRB can transfer up to 64K bytes, however data 1460 * buffers referenced by transfer TRBs shall not span 64KB boundaries. 1461 * Hence the maximum number of TRBs we can use in one transfer is 62. 1462 */ 1463 *size = (TRBS_PER_SEGMENT - 2) * TRB_MAX_BUFF_SIZE; 1464 1465 return 0; 1466 } 1467 1468 int xhci_register(struct udevice *dev, struct xhci_hccr *hccr, 1469 struct xhci_hcor *hcor) 1470 { 1471 struct xhci_ctrl *ctrl = dev_get_priv(dev); 1472 struct usb_bus_priv *priv = dev_get_uclass_priv(dev); 1473 int ret; 1474 1475 debug("%s: dev='%s', ctrl=%p, hccr=%p, hcor=%p\n", __func__, dev->name, 1476 ctrl, hccr, hcor); 1477 1478 ctrl->dev = dev; 1479 1480 /* 1481 * XHCI needs to issue a Address device command to setup 1482 * proper device context structures, before it can interact 1483 * with the device. So a get_descriptor will fail before any 1484 * of that is done for XHCI unlike EHCI. 1485 */ 1486 priv->desc_before_addr = false; 1487 1488 ret = xhci_reset(hcor); 1489 if (ret) 1490 goto err; 1491 1492 ctrl->hccr = hccr; 1493 ctrl->hcor = hcor; 1494 ret = xhci_lowlevel_init(ctrl); 1495 if (ret) 1496 goto err; 1497 1498 return 0; 1499 err: 1500 free(ctrl); 1501 debug("%s: failed, ret=%d\n", __func__, ret); 1502 return ret; 1503 } 1504 1505 int xhci_deregister(struct udevice *dev) 1506 { 1507 struct xhci_ctrl *ctrl = dev_get_priv(dev); 1508 1509 xhci_lowlevel_stop(ctrl); 1510 xhci_cleanup(ctrl); 1511 1512 return 0; 1513 } 1514 1515 struct dm_usb_ops xhci_usb_ops = { 1516 .control = xhci_submit_control_msg, 1517 .bulk = xhci_submit_bulk_msg, 1518 .interrupt = xhci_submit_int_msg, 1519 .alloc_device = xhci_alloc_device, 1520 .update_hub_device = xhci_update_hub_device, 1521 .get_max_xfer_size = xhci_get_max_xfer_size, 1522 }; 1523 1524 #endif 1525