Home
last modified time | relevance | path

Searched refs:Get_QTD (Results 1 – 5 of 5) sorted by relevance

/titanic_50/usr/src/uts/common/io/usb/hcd/ehci/
H A Dehci_intr.c309 Get_QTD(curr_qtd->qtd_active_qtd_next)); in ehci_traverse_active_qtd_list()
312 state = Get_QTD(curr_qtd->qtd_state); in ehci_traverse_active_qtd_list()
320 (uint32_t)Get_QTD(curr_qtd->qtd_trans_wrapper)); in ehci_traverse_active_qtd_list()
390 Get_QTD(curr_qtd->qtd_active_qtd_next)); in ehci_create_done_qtd_list()
393 if (!(Get_QTD(curr_qtd->qtd_ctrl) & in ehci_create_done_qtd_list()
444 EHCI_LOOKUP_ID((uint32_t)Get_QTD(qtd->qtd_trans_wrapper)); in ehci_parse_error()
454 ctrl = (uint_t)Get_QTD(qtd->qtd_ctrl); in ehci_parse_error()
664 if (Get_QTD(qtd->qtd_ctrl_phase) != in ehci_check_for_short_xfer()
679 residue = (Get_QTD(qtd->qtd_ctrl) & in ehci_check_for_short_xfer()
694 length = Get_QTD(qtd->qtd_xfer_offs) + in ehci_check_for_short_xfer()
[all …]
H A Dehci_polled.c1386 Get_QTD(qtd->qtd_active_qtd_next)); in ehci_polled_process_active_intr_qtd_list()
1390 (uint32_t)Get_QTD(qtd->qtd_trans_wrapper)); in ehci_polled_process_active_intr_qtd_list()
1396 ctrl = (uint_t)Get_QTD(qtd->qtd_ctrl) & in ehci_polled_process_active_intr_qtd_list()
1461 Get_QTD(qtd->qtd_trans_wrapper)); in ehci_polled_handle_normal_qtd()
1474 residue = ((Get_QTD(qtd->qtd_ctrl) & in ehci_polled_handle_normal_qtd()
1479 length = Get_QTD(qtd->qtd_xfer_offs) + in ehci_polled_handle_normal_qtd()
1480 Get_QTD(qtd->qtd_xfer_len) - residue; in ehci_polled_handle_normal_qtd()
1515 (uint32_t)Get_QTD(qtd->qtd_trans_wrapper)); in ehci_polled_insert_intr_qtd()
1530 ehci_qtd_iommu_to_cpu(ehcip, Get_QTD(qtd->qtd_tw_next_qtd)); in ehci_polled_insert_intr_qtd()
1552 Get_QTD(curr_dummy_qtd->qtd_next_qtd)); in ehci_polled_insert_intr_qtd()
[all …]
H A Dehci_xfer.c1334 ASSERT(Get_QTD(first_dummy_qtd->qtd_state) == EHCI_QTD_DUMMY); in ehci_deallocate_qh()
1337 Get_QTD(first_dummy_qtd->qtd_next_qtd)); in ehci_deallocate_qh()
1340 ASSERT(Get_QTD(second_dummy_qtd->qtd_state) == in ehci_deallocate_qh()
2271 Get_QTD(new_dummy_qtd->qtd_tw_next_qtd)); in ehci_insert_qtd()
2278 Get_QTD(curr_dummy_qtd->qtd_next_qtd)); in ehci_insert_qtd()
2332 ctrl = Get_QTD(ehcip->ehci_qtd_pool_addr[i].qtd_state); in ehci_allocate_qtd_from_pool()
2405 ASSERT(Get_QTD(qtd->qtd_state) == EHCI_QTD_DUMMY); in ehci_fill_in_qtd()
2546 ASSERT(Get_QTD(qtd->qtd_state) != EHCI_QTD_DUMMY); in ehci_insert_qtd_on_tw()
2554 ASSERT(Get_QTD(qtd->qtd_tw_next_qtd) == NULL); in ehci_insert_qtd_on_tw()
2578 Get_QTD(curr_qtd->qtd_active_qtd_next)); in ehci_insert_qtd_into_active_qtd_list()
[all …]
H A Dehci_util.c1838 ctrl = Get_QTD(ehcip-> in ehci_cleanup()
1849 Get_QTD(qtd->qtd_trans_wrapper)); in ehci_cleanup()
4416 "\tqtd_next_qtd: 0x%x ", Get_QTD(qtd->qtd_next_qtd)); in ehci_print_qtd()
4418 "\tqtd_alt_next_qtd: 0x%x ", Get_QTD(qtd->qtd_alt_next_qtd)); in ehci_print_qtd()
4420 "\tqtd_ctrl: 0x%x ", Get_QTD(qtd->qtd_ctrl)); in ehci_print_qtd()
4424 "\tqtd_buf[%d]: 0x%x ", i, Get_QTD(qtd->qtd_buf[i])); in ehci_print_qtd()
4430 i, Get_QTD(qtd->qtd_buf_high[i])); in ehci_print_qtd()
4434 "\tqtd_trans_wrapper: 0x%x ", Get_QTD(qtd->qtd_trans_wrapper)); in ehci_print_qtd()
4436 "\tqtd_tw_next_qtd: 0x%x ", Get_QTD(qtd->qtd_tw_next_qtd)); in ehci_print_qtd()
4438 "\tqtd_active_qtd_next: 0x%x ", Get_QTD(qtd->qtd_active_qtd_next)); in ehci_print_qtd()
[all …]
/titanic_50/usr/src/uts/common/sys/usb/hcd/ehci/
H A Dehcid.h877 #define Get_QTD(addr) ddi_get32(ehcip->ehci_qtd_pool_mem_handle, \ macro