Home
last modified time | relevance | path

Searched refs:sqh (Results 1 – 2 of 2) sorted by relevance

/dragonfly/sys/bus/u4b/controller/
HDuhci.c781 uhci_dump_qh(uhci_qh_t *sqh) in uhci_dump_qh() argument
787 usb_pc_cpu_invalidate(sqh->page_cache); in uhci_dump_qh()
789 qh_h_next = le32toh(sqh->qh_h_next); in uhci_dump_qh()
790 qh_e_next = le32toh(sqh->qh_e_next); in uhci_dump_qh()
792 DPRINTFN(0, "QH(%p) at 0x%08x: h_next=0x%08x e_next=0x%08x\n", sqh, in uhci_dump_qh()
793 le32toh(sqh->qh_self), qh_h_next, qh_e_next); in uhci_dump_qh()
795 temp = ((((sqh->h_next != NULL) && !(qh_h_next & UHCI_PTR_T)) ? 1 : 0) | in uhci_dump_qh()
796 (((sqh->e_next != NULL) && !(qh_e_next & UHCI_PTR_T)) ? 2 : 0)); in uhci_dump_qh()
916 #define UHCI_APPEND_QH(sqh,last) (last) = _uhci_append_qh(sqh,last) argument
918 _uhci_append_qh(uhci_qh_t *sqh, uhci_qh_t *last) in _uhci_append_qh() argument
[all …]
HDehci.c108 static void ehci_dump_sqh(ehci_softc_t *sc, ehci_qh_t *sqh);
1000 #define EHCI_APPEND_QH(sqh,last) (last) = _ehci_append_qh(sqh,last) argument
1002 _ehci_append_qh(ehci_qh_t *sqh, ehci_qh_t *last) in _ehci_append_qh() argument
1004 DPRINTFN(11, "%p to %p\n", sqh, last); in _ehci_append_qh()
1006 if (sqh->prev != NULL) { in _ehci_append_qh()
1013 sqh->next = last->next; in _ehci_append_qh()
1014 sqh->qh_link = last->qh_link; in _ehci_append_qh()
1016 sqh->prev = last; in _ehci_append_qh()
1018 usb_pc_cpu_flush(sqh->page_cache); in _ehci_append_qh()
1024 last->next = sqh; in _ehci_append_qh()
[all …]