Home
last modified time | relevance | path

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

/titanic_44/usr/src/uts/common/io/usb/hcd/ehci/
H A Dehci_polled.c842 (Get_QH(pp->pp_qh->qh_next_qtd) & EHCI_QH_NEXT_QTD_PTR))); in ehci_polled_init()
1069 polled_toggle = (Get_QH(polled_pp->pp_qh->qh_status) & in ehci_polled_save_state()
1084 real_toggle = (Get_QH(pp->pp_qh->qh_status) & in ehci_polled_save_state()
1094 Get_QH(polled_pp->pp_qh->qh_status) & in ehci_polled_save_state()
1098 Get_QH(polled_pp->pp_qh->qh_status) | in ehci_polled_save_state()
1111 (Get_QH(polled_pp->pp_qh->qh_status) & in ehci_polled_save_state()
1215 polled_toggle = (Get_QH(polled_pp->pp_qh->qh_status) & in ehci_polled_restore_state()
1228 real_toggle = (Get_QH(pp->pp_qh->qh_status) & in ehci_polled_restore_state()
1234 Get_QH(pp->pp_qh->qh_status) & in ehci_polled_restore_state()
1238 Get_QH(pp->pp_qh->qh_status) | in ehci_polled_restore_state()
[all …]
H A Dehci_xfer.c334 state = Get_QH(ehcip->ehci_qh_pool_addr[i].qh_state); in ehci_alloc_qh()
584 ASSERT((Get_QH(qh->qh_prev) & EHCI_QH_LINK_PTR) == NULL); in ehci_insert_async_qh()
594 (Get_QH(qh->qh_ctrl) | EHCI_QH_CTRL_RECLAIM_HEAD)); in ehci_insert_async_qh()
636 ASSERT(Get_QH(async_head_qh->qh_ctrl) & in ehci_insert_async_qh()
641 (Get_QH(qh->qh_ctrl) & ~EHCI_QH_CTRL_RECLAIM_HEAD)); in ehci_insert_async_qh()
644 Get_QH(async_head_qh->qh_link_ptr) & EHCI_QH_LINK_PTR); in ehci_insert_async_qh()
648 Get_QH(async_head_qh->qh_link_ptr) | EHCI_QH_LINK_REF_QH); in ehci_insert_async_qh()
682 ASSERT((Get_QH(qh->qh_prev) & EHCI_QH_LINK_PTR) == NULL); in ehci_insert_intr_qh()
695 ehcip, (Get_QH(lattice_qh->qh_link_ptr) & EHCI_QH_LINK_PTR)); in ehci_insert_intr_qh()
703 Set_QH(qh->qh_link_ptr, Get_QH(lattice_qh->qh_link_ptr)); in ehci_insert_intr_qh()
[all …]
H A Dehci_intr.c246 (EHCI_LOOKUP_ID(Get_QH(reclaim_qh->qh_reclaim_frame))); in ehci_handle_endpoint_reclaimation()
269 ehcip, Get_QH(reclaim_qh->qh_reclaim_next)); in ehci_handle_endpoint_reclaimation()
272 EHCI_FREE_ID((uint32_t)Get_QH(reclaim_qh->qh_reclaim_frame)); in ehci_handle_endpoint_reclaimation()
501 speed = Get_QH(pp->pp_qh->qh_ctrl) & EHCI_QH_CTRL_ED_SPEED; in ehci_check_for_error()
610 uint_t qh_ctrl = Get_QH(pp->pp_qh->qh_ctrl); in ehci_check_for_error()
705 ((Get_QH(pp->pp_qh->qh_status) & in ehci_check_for_short_xfer()
H A Dehci_util.c1087 Get_QH(dummy_async_qh->qh_ctrl) | in ehci_init_hardware()
4364 "\tqh_link_ptr: 0x%x ", Get_QH(qh->qh_link_ptr)); in ehci_print_qh()
4366 "\tqh_ctrl: 0x%x ", Get_QH(qh->qh_ctrl)); in ehci_print_qh()
4368 "\tqh_split_ctrl: 0x%x ", Get_QH(qh->qh_split_ctrl)); in ehci_print_qh()
4370 "\tqh_curr_qtd: 0x%x ", Get_QH(qh->qh_curr_qtd)); in ehci_print_qh()
4372 "\tqh_next_qtd: 0x%x ", Get_QH(qh->qh_next_qtd)); in ehci_print_qh()
4374 "\tqh_alt_next_qtd: 0x%x ", Get_QH(qh->qh_alt_next_qtd)); in ehci_print_qh()
4376 "\tqh_status: 0x%x ", Get_QH(qh->qh_status)); in ehci_print_qh()
4380 "\tqh_buf[%d]: 0x%x ", i, Get_QH(qh->qh_buf[i])); in ehci_print_qh()
4386 i, Get_QH(qh->qh_buf_high[i])); in ehci_print_qh()
[all …]
H A Dehci.c1170 Get_QH(pp->pp_qh->qh_status) & (~EHCI_QH_STS_DATA_TOGGLE)); in ehci_hcdi_pipe_reset_data_toggle()
/titanic_44/usr/src/uts/common/sys/usb/hcd/ehci/
H A Dehcid.h870 #define Get_QH(addr) ddi_get32(ehcip->ehci_qh_pool_mem_handle, \ macro