Home
last modified time | relevance | path

Searched refs:xt_trbs_pa (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/uts/common/io/usb/hcd/xhci/
H A Dxhci_dma.c282 if (xt->xt_trbs_pa != NULL) { in xhci_transfer_free()
284 kmem_free(xt->xt_trbs_pa, sizeof (uint64_t) * xt->xt_ntrbs); in xhci_transfer_free()
285 xt->xt_trbs_pa = NULL; in xhci_transfer_free()
363 xt->xt_trbs_pa = kmem_zalloc(sizeof (uint64_t) * trbs, kmflags); in xhci_transfer_alloc()
364 if (xt->xt_trbs_pa == NULL) { in xhci_transfer_alloc()
378 kmem_free(xt->xt_trbs_pa, sizeof (uint64_t) * trbs); in xhci_transfer_alloc()
H A Dxhci_endpoint.c1019 xhci_ring_trb_fill(rp, i, &xt->xt_trbs[i], &xt->xt_trbs_pa[i], in xhci_endpoint_schedule()
1022 xhci_ring_trb_fill(rp, 0U, &xt->xt_trbs[0], &xt->xt_trbs_pa[0], in xhci_endpoint_schedule()
1092 if (xt->xt_trbs_pa[i] == addr) in xhci_endpoint_determine_transfer()
1425 VERIFY(xhci_ring_trb_consumed(&xep->xep_ring, xt->xt_trbs_pa[off])); in xhci_endpoint_norm_callback()
/illumos-gate/usr/src/uts/common/sys/usb/hcd/xhci/
H A Dxhci.h340 uint64_t *xt_trbs_pa; member