Searched refs:qh (Results 1 – 9 of 9) sorted by relevance
/titanic_41/usr/src/cmd/mdb/common/modules/uhci/ |
H A D | uhci.c | 296 queue_head_t qh; in uhci_qh() local 341 if (mdb_vread(&qh, sizeof (qh), addr) != sizeof (qh)) { in uhci_qh() 348 if (!(qh.link_ptr & HC_END_OF_LIST) && qh.link_ptr != NULL) { in uhci_qh() 351 qh.link_ptr, in uhci_qh() 353 QH_VADDR(qh.link_ptr & QH_LINK_PTR_MASK)); in uhci_qh() 357 qh.link_ptr); in uhci_qh() 360 if (!(qh.element_ptr & HC_END_OF_LIST) && qh.element_ptr != NULL) { in uhci_qh() 363 qh.element_ptr, in uhci_qh() 365 TD_VADDR(qh.element_ptr & QH_LINK_PTR_MASK)); in uhci_qh() 368 " element_ptr (paddr) : %08x\n", qh.element_ptr); in uhci_qh() [all …]
|
/titanic_41/usr/src/uts/common/io/usb/hcd/ehci/ |
H A D | ehci_xfer.c | 55 ehci_qh_t *qh); 72 ehci_qh_t *qh); 76 ehci_qh_t *qh); 80 ehci_qh_t *qh); 83 ehci_qh_t *qh); 112 ehci_qh_t *qh); 309 ehci_qh_t *qh; in ehci_alloc_qh() local 350 qh = &ehcip->ehci_qh_pool_addr[i]; in ehci_alloc_qh() 351 bzero((void *)qh, sizeof (ehci_qh_t)); in ehci_alloc_qh() 354 "ehci_alloc_qh: Allocated address 0x%p", (void *)qh); in ehci_alloc_qh() [all …]
|
H A D | ehci_polled.c | 961 ehci_qh_t *qh; in ehci_polled_save_state() local 1118 qh = ehci_polledp->ehci_polled_qh; in ehci_polled_save_state() 1120 Set_QH(qh->qh_buf[i], NULL); in ehci_polled_save_state() 1121 Set_QH(qh->qh_buf_high[i], NULL); in ehci_polled_save_state() 1123 Set_QH(qh->qh_next_qtd, ehci_qtd_cpu_to_iommu(ehcip, in ehci_polled_save_state() 1275 ehci_qh_t *qh = ehci_polledp->ehci_polled_qh; in ehci_polled_stop_processing() local 1280 Set_QH(qh->qh_ctrl, in ehci_polled_stop_processing() 1281 Get_QH(qh->qh_ctrl) | EHCI_QH_CTRL_ED_INACTIVATE); in ehci_polled_stop_processing() 1295 Set_QH(qh->qh_ctrl, in ehci_polled_stop_processing() 1296 Get_QH(qh->qh_ctrl) & ~(EHCI_QH_CTRL_ED_INACTIVATE)); in ehci_polled_stop_processing() [all …]
|
H A D | ehci_util.c | 274 ehci_qh_t *qh); 4356 ehci_qh_t *qh) in ehci_print_qh() argument 4361 "ehci_print_qh: qh = 0x%p", (void *)qh); in ehci_print_qh() 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() [all …]
|
/titanic_41/usr/src/uts/common/io/usb/hcd/uhci/ |
H A D | uhciutil.c | 109 static void uhci_print_qh(uhci_state_t *uhcip, queue_head_t *qh); 1442 queue_head_t *qh = pp->pp_qh; in uhci_insert_ctrl_qh() local 1453 SetQH32(uhcip, qh->link_ptr, in uhci_insert_ctrl_qh() 1455 qh->prev_qh = uhcip->uhci_ctrl_xfers_q_tail; in uhci_insert_ctrl_qh() 1457 QH_PADDR(qh) | HC_QUEUE_HEAD); in uhci_insert_ctrl_qh() 1458 uhcip->uhci_ctrl_xfers_q_tail = qh; in uhci_insert_ctrl_qh() 1470 queue_head_t *qh = pp->pp_qh; in uhci_insert_bulk_qh() local 1483 qh->link_ptr = uhcip->uhci_bulk_xfers_q_tail->link_ptr; in uhci_insert_bulk_qh() 1486 qh->prev_qh = uhcip->uhci_bulk_xfers_q_tail; in uhci_insert_bulk_qh() 1488 QH_PADDR(qh) | HC_QUEUE_HEAD); in uhci_insert_bulk_qh() [all …]
|
/titanic_41/usr/src/uts/common/io/xge/hal/include/ |
H A D | xge-queue.h | 166 xge_queue_status_e __io_queue_grow(xge_queue_h qh); 168 int __queue_get_reset_critical (xge_queue_h qh);
|
/titanic_41/usr/src/uts/common/sys/usb/hcd/ehci/ |
H A D | ehci_util.h | 109 ehci_qh_t *qh);
|
/titanic_41/usr/src/uts/common/io/xge/hal/xgehal/ |
H A D | xge-queue.c | 441 int __queue_get_reset_critical (xge_queue_h qh) { in __queue_get_reset_critical() argument 442 xge_queue_t* queue = (xge_queue_t*)qh; in __queue_get_reset_critical()
|
/titanic_41/usr/src/cmd/mdb/common/modules/genunix/ |
H A D | mmd.c | 499 mmdq_walk_init(mdb_walk_state_t *wsp, char *name, uintptr_t qh, in mmdq_walk_init() argument 511 qwp->qw_head = qh; in mmdq_walk_init() 528 if (qh == (uintptr_t)ql.ql_next) { in mmdq_walk_init()
|