Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/mdb/common/modules/uhci/
H A Duhci.c294 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()
[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; 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 Dehci_polled.c961 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], 0); in ehci_polled_save_state()
1121 Set_QH(qh->qh_buf_high[i], 0); 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 Dehci_util.c275 ehci_qh_t *qh);
4378 ehci_qh_t *qh) in ehci_print_qh() argument
4383 "ehci_print_qh: qh = 0x%p", (void *)qh); in ehci_print_qh()
4386 "\tqh_link_ptr: 0x%x ", Get_QH(qh->qh_link_ptr)); in ehci_print_qh()
4388 "\tqh_ctrl: 0x%x ", Get_QH(qh->qh_ctrl)); in ehci_print_qh()
4390 "\tqh_split_ctrl: 0x%x ", Get_QH(qh->qh_split_ctrl)); in ehci_print_qh()
4392 "\tqh_curr_qtd: 0x%x ", Get_QH(qh->qh_curr_qtd)); in ehci_print_qh()
4394 "\tqh_next_qtd: 0x%x ", Get_QH(qh->qh_next_qtd)); in ehci_print_qh()
4396 "\tqh_alt_next_qtd: 0x%x ", Get_QH(qh->qh_alt_next_qtd)); in ehci_print_qh()
4398 "\tqh_status: 0x%x ", Get_QH(qh->qh_status)); in ehci_print_qh()
[all …]
/illumos-gate/usr/src/lib/varpd/files/common/
H A Dlibvarpd_files.c226 varpd_files_lookup(void *arg, varpd_query_handle_t *qh, in varpd_files_lookup() argument
237 libvarpd_plugin_query_reply(qh, VARPD_LOOKUP_DROP); in varpd_files_lookup()
242 libvarpd_plugin_proxy_arp(vaf->vaf_hdl, qh, otl); in varpd_files_lookup()
249 libvarpd_plugin_proxy_ndp(vaf->vaf_hdl, qh, otl); in varpd_files_lookup()
261 libvarpd_plugin_query_reply(qh, VARPD_LOOKUP_DROP); in varpd_files_lookup()
266 libvarpd_plugin_query_reply(qh, VARPD_LOOKUP_DROP); in varpd_files_lookup()
271 libvarpd_plugin_query_reply(qh, VARPD_LOOKUP_DROP); in varpd_files_lookup()
276 libvarpd_plugin_query_reply(qh, VARPD_LOOKUP_DROP); in varpd_files_lookup()
280 libvarpd_plugin_proxy_dhcp(vaf->vaf_hdl, qh, otl); in varpd_files_lookup()
286 libvarpd_plugin_query_reply(qh, VARPD_LOOKUP_DROP); in varpd_files_lookup()
[all …]
/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);
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 …]
/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/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.c441 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()