Lines Matching refs:qh
294 queue_head_t qh; in uhci_qh() local
339 if (mdb_vread(&qh, sizeof (qh), addr) != sizeof (qh)) { in uhci_qh()
346 if (!(qh.link_ptr & HC_END_OF_LIST) && qh.link_ptr != 0) { in uhci_qh()
349 qh.link_ptr, in uhci_qh()
351 QH_VADDR(qh.link_ptr & QH_LINK_PTR_MASK)); in uhci_qh()
355 qh.link_ptr); in uhci_qh()
358 if (!(qh.element_ptr & HC_END_OF_LIST) && qh.element_ptr != 0) { in uhci_qh()
361 qh.element_ptr, in uhci_qh()
363 TD_VADDR(qh.element_ptr & QH_LINK_PTR_MASK)); in uhci_qh()
366 " element_ptr (paddr) : %08x\n", qh.element_ptr); in uhci_qh()
371 qh.node, qh.qh_flag); in uhci_qh()
374 qh.prev_qh, qh.td_tailp); in uhci_qh()
375 mdb_printf(" bulk_xfer_isoc_info : %?p\n", qh.bulk_xfer_info); in uhci_qh()
378 if (qh.link_ptr == 0) { in uhci_qh()
384 if (qh.link_ptr & HC_END_OF_LIST) { in uhci_qh()
388 if ((qh.link_ptr & HC_QUEUE_HEAD) == HC_QUEUE_HEAD) { in uhci_qh()
401 if (qh.element_ptr == 0) { in uhci_qh()
407 if (qh.element_ptr & HC_END_OF_LIST) { in uhci_qh()
413 if ((qh.element_ptr & HC_QUEUE_HEAD) == HC_QUEUE_HEAD) { in uhci_qh()
433 (uintptr_t)(TD_VADDR(qh.element_ptr & in uhci_qh()