Home
last modified time | relevance | path

Searched refs:XHCI_TRB_GET_CODE (Results 1 – 6 of 6) sorted by relevance

/illumos-gate/usr/src/uts/common/io/usb/hcd/xhci/
H A Dxhci_command.c325 cstat = XHCI_TRB_GET_CODE(LE_32(trb->trb_status)); in xhci_command_event_callback()
495 code = XHCI_TRB_GET_CODE(co.xco_res.trb_status); in xhci_command_enable_slot()
531 code = XHCI_TRB_GET_CODE(co.xco_res.trb_status); in xhci_command_disable_slot()
568 code = XHCI_TRB_GET_CODE(co.xco_res.trb_status); in xhci_command_set_address()
601 code = XHCI_TRB_GET_CODE(co.xco_res.trb_status); in xhci_command_configure_endpoint()
649 code = XHCI_TRB_GET_CODE(co.xco_res.trb_status); in xhci_command_evaluate_context()
697 code = XHCI_TRB_GET_CODE(co.xco_res.trb_status); in xhci_command_reset_endpoint()
759 code = XHCI_TRB_GET_CODE(co.xco_res.trb_status); in xhci_command_set_tr_dequeue()
818 code = XHCI_TRB_GET_CODE(co.xco_res.trb_status); in xhci_command_stop_endpoint()
H A Dxhci_event.c121 if (XHCI_TRB_GET_CODE(LE_32(trb->trb_status)) != XHCI_CODE_SUCCESS) { in xhci_event_process_psc()
H A Dxhci_endpoint.c1263 code = XHCI_TRB_GET_CODE(LE_32(trb->trb_status)); in xhci_endpoint_control_callback()
1423 code = XHCI_TRB_GET_CODE(LE_32(trb->trb_status)); in xhci_endpoint_norm_callback()
1535 code = XHCI_TRB_GET_CODE(LE_32(trb->trb_status)); in xhci_endpoint_isoch_callback()
1623 code = XHCI_TRB_GET_CODE(LE_32(trb->trb_status)); in xhci_endpoint_transfer_callback()
H A Dxhci_polled.c144 code = XHCI_TRB_GET_CODE(LE_32(trb->trb_status)); in xhci_polled_endpoint_transfer()
/illumos-gate/usr/src/cmd/mdb/intel/modules/xhci/
H A Dxhci.c365 xhci_mdb_trb_code_to_str(XHCI_TRB_GET_CODE(status)), in xhci_mdb_print_transfer_event()
366 XHCI_TRB_GET_CODE(status)); in xhci_mdb_print_transfer_event()
383 xhci_mdb_trb_code_to_str(XHCI_TRB_GET_CODE(status)), in xhci_mdb_print_command_event()
384 XHCI_TRB_GET_CODE(status)); in xhci_mdb_print_command_event()
400 xhci_mdb_trb_code_to_str(XHCI_TRB_GET_CODE(status)), in xhci_mdb_print_psc()
401 XHCI_TRB_GET_CODE(status)); in xhci_mdb_print_psc()
/illumos-gate/usr/src/uts/common/sys/usb/hcd/xhci/
H A Dxhcireg.h390 #define XHCI_TRB_GET_CODE(x) (((x) >> 24) & 0xff) /* Get TRB code */ macro