Searched refs:qh (Results 1 - 9 of 9) sorted by relevance

/illumos-gate/usr/src/cmd/mdb/common/modules/uhci/
H A Duhci.c72 void *fic_td_qh; /* td/qh we want uhci instance for */
120 /* td/qh address is within pool for this instance of uhci. */
129 * Figure out which instance of uhci owns a td/qh.
131 * - td_qh: a pointer to a uhci td or qh
132 * - td_or_qh: a flag indicating which it is (td/qh),
294 queue_head_t qh; local
339 if (mdb_vread(&qh, sizeof (qh), addr) != sizeof (qh)) {
340 mdb_warn("failed to read qh a
[all...]
/illumos-gate/usr/src/uts/common/io/usb/hcd/ehci/
H A Dehci_xfer.c55 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; local
350 qh = &ehcip->ehci_qh_pool_addr[i];
351 bzero((void *)qh, sizeof (ehci_qh_t));
354 "ehci_alloc_qh: Allocated address 0x%p", (void *)qh);
401 ehci_unpack_endpoint( ehci_state_t *ehcip, usba_pipe_handle_data_t *ph, ehci_qh_t *qh) argument
573 ehci_qh_t *qh = pp->pp_qh; local
672 ehci_qh_t *qh = pp->pp_qh; local
740 ehci_qh_t *qh = pp->pp_qh; local
845 ehci_halt_hs_qh( ehci_state_t *ehcip, ehci_pipe_private_t *pp, ehci_qh_t *qh) argument
885 ehci_halt_fls_ctrl_and_bulk_qh( ehci_state_t *ehcip, ehci_pipe_private_t *pp, ehci_qh_t *qh) argument
938 ehci_clear_tt_buffer( ehci_state_t *ehcip, usba_pipe_handle_data_t *ph, ehci_qh_t *qh) argument
1041 ehci_halt_fls_intr_qh( ehci_state_t *ehcip, ehci_qh_t *qh) argument
1162 ehci_qh_t *qh = pp->pp_qh; /* qh to be removed */ local
1226 ehci_qh_t *qh = pp->pp_qh; /* qh to be removed */ local
1274 ehci_qh_t *qh = pp->pp_qh; /* qh to be removed */ local
1369 uint32_t qh; local
1393 ehci_qh_t *qh; local
1424 ehci_initialize_dummy( ehci_state_t *ehcip, ehci_qh_t *qh) argument
2261 ehci_qh_t *qh = pp->pp_qh; local
3879 ehci_qh_t *qh = pp->pp_qh; local
[all...]
H A Dehci_polled.c961 ehci_qh_t *qh; local
1116 * Initialize the qh overlay area
1118 qh = ehci_polledp->ehci_polled_qh;
1120 Set_QH(qh->qh_buf[i], NULL);
1121 Set_QH(qh->qh_buf_high[i], NULL);
1123 Set_QH(qh->qh_next_qtd, ehci_qtd_cpu_to_iommu(ehcip,
1275 ehci_qh_t *qh = ehci_polledp->ehci_polled_qh; local
1280 Set_QH(qh->qh_ctrl,
1281 Get_QH(qh->qh_ctrl) | EHCI_QH_CTRL_ED_INACTIVATE);
1295 Set_QH(qh
1510 ehci_qh_t *qh; local
1586 ehci_qh_t *qh; local
2132 ehci_qh_t *qh = pp->pp_qh; local
2226 ehci_qh_t *qh = pp->pp_qh; /* qh to be removed */ local
[all...]
H A Dehci_util.c62 * Initialize the values which the order of 32ms intr qh are executed
274 ehci_qh_t *qh);
313 * Some Nvidia chips can not handle qh dma address above 2G.
4356 ehci_qh_t *qh)
4361 "ehci_print_qh: qh = 0x%p", (void *)qh);
4364 "\tqh_link_ptr: 0x%x ", Get_QH(qh->qh_link_ptr));
4366 "\tqh_ctrl: 0x%x ", Get_QH(qh->qh_ctrl));
4368 "\tqh_split_ctrl: 0x%x ", Get_QH(qh->qh_split_ctrl));
4370 "\tqh_curr_qtd: 0x%x ", Get_QH(qh
4354 ehci_print_qh( ehci_state_t *ehcip, ehci_qh_t *qh) argument
[all...]
/illumos-gate/usr/src/uts/common/io/xge/hal/include/
H A Dxge-queue.h166 xge_queue_status_e __io_queue_grow(xge_queue_h qh);
168 int __queue_get_reset_critical (xge_queue_h qh);
/illumos-gate/usr/src/uts/common/io/usb/hcd/uhci/
H A Duhciutil.c109 static void uhci_print_qh(uhci_state_t *uhcip, queue_head_t *qh);
954 /* Free the dummy td allocated for this qh. */
1442 queue_head_t *qh = pp->pp_qh; local
1453 SetQH32(uhcip, qh->link_ptr,
1455 qh->prev_qh = uhcip->uhci_ctrl_xfers_q_tail;
1457 QH_PADDR(qh) | HC_QUEUE_HEAD);
1458 uhcip->uhci_ctrl_xfers_q_tail = qh;
1470 queue_head_t *qh = pp->pp_qh; local
1483 qh->link_ptr = uhcip->uhci_bulk_xfers_q_tail->link_ptr;
1486 qh
1504 queue_head_t *qh = pp->pp_qh; local
1876 queue_head_t *qh = pp->pp_qh; local
2672 queue_head_t *qh = pp->pp_qh; local
2690 queue_head_t *qh = pp->pp_qh; local
2719 queue_head_t *qh = pp->pp_qh; local
3271 queue_head_t *qh, *next_qh; local
5029 uhci_print_qh(uhci_state_t *uhcip, queue_head_t *qh) argument
[all...]
/illumos-gate/usr/src/uts/common/sys/usb/hcd/ehci/
H A Dehci_util.h109 ehci_qh_t *qh);
/illumos-gate/usr/src/uts/common/io/xge/hal/xgehal/
H A Dxge-queue.c434 * @qh: Queue handle.
441 int __queue_get_reset_critical (xge_queue_h qh) { argument
442 xge_queue_t* queue = (xge_queue_t*)qh;
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dmmd.c499 mmdq_walk_init(mdb_walk_state_t *wsp, char *name, uintptr_t qh, argument
511 qwp->qw_head = qh;
528 if (qh == (uintptr_t)ql.ql_next) {

Completed in 68 milliseconds