Changeset 665368c in mainline
- Timestamp:
- 2018-01-11T17:59:21Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f3baab1
- Parents:
- 69a93d02
- Location:
- uspace/drv/bus/usb/xhci
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/hc.c
r69a93d02 r665368c 192 192 hc->ac64 = XHCI_REG_RD(hc->cap_regs, XHCI_CAP_AC64); 193 193 hc->max_slots = XHCI_REG_RD(hc->cap_regs, XHCI_CAP_MAX_SLOTS); 194 hc->wrap_count = 0; 194 195 unsigned ist = XHCI_REG_RD(hc->cap_regs, XHCI_CAP_IST); 195 196 hc->ist = (ist & 0x10 >> 1) * (ist & 0xf); … … 377 378 378 379 /** 379 * Ask the xHC to reset its state. Implements sequence 380 * Ask the xHC to reset its state. Implements sequence 380 381 */ 381 382 static int hc_reset(xhci_hc_t *hc) … … 422 423 XHCI_REG_WR(hc->op_regs, XHCI_OP_CRCR_LO, LOWER32(crcr)); 423 424 XHCI_REG_WR(hc->op_regs, XHCI_OP_CRCR_HI, UPPER32(crcr)); 425 426 XHCI_REG_SET(hc->op_regs, XHCI_OP_EWE, 1); 424 427 425 428 xhci_interrupter_regs_t *intr0 = &hc->rt_regs->ir[0]; … … 432 435 XHCI_REG_WR(intr0, XHCI_INTR_ERSTBA_HI, UPPER32(erstptr)); 433 436 437 434 438 if (irq) { 435 439 XHCI_REG_SET(intr0, XHCI_INTR_IE, 1); … … 470 474 } 471 475 476 static int xhci_handle_mfindex_wrap_event(xhci_hc_t *hc, xhci_trb_t *trb) 477 { 478 ++hc->wrap_count; 479 return EOK; 480 } 481 472 482 typedef int (*event_handler) (xhci_hc_t *, xhci_trb_t *trb); 473 483 … … 476 486 [XHCI_TRB_TYPE_PORT_STATUS_CHANGE_EVENT] = &xhci_rh_handle_port_status_change_event, 477 487 [XHCI_TRB_TYPE_TRANSFER_EVENT] = &xhci_handle_transfer_event, 488 [XHCI_TRB_TYPE_MFINDEX_WRAP_EVENT] = &xhci_handle_mfindex_wrap_event, 478 489 }; 479 490 … … 650 661 * Issue a Disable Slot command for a slot occupied by device. 651 662 * 652 * Frees the device context 663 * Frees the device context 653 664 */ 654 665 int hc_disable_slot(xhci_hc_t *hc, xhci_device_t *dev) -
uspace/drv/bus/usb/xhci/hc.h
r69a93d02 r665368c 84 84 unsigned max_slots; 85 85 bool ac64; 86 uint32_t wrap_count; /** Amount of mfindex wraps HC has done */ 86 87 unsigned ist; /**< IST in microframes */ 87 88
Note:
See TracChangeset
for help on using the changeset viewer.