Home
last modified time | relevance | path

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

/freebsd/sys/dev/usb/controller/
H A Duhci.c779 uhci_dump_qh(uhci_qh_t *sqh) in uhci_dump_qh() argument
785 usb_pc_cpu_invalidate(sqh->page_cache); in uhci_dump_qh()
787 qh_h_next = le32toh(sqh->qh_h_next); in uhci_dump_qh()
788 qh_e_next = le32toh(sqh->qh_e_next); in uhci_dump_qh()
790 DPRINTFN(0, "QH(%p) at 0x%08x: h_next=0x%08x e_next=0x%08x\n", sqh, in uhci_dump_qh()
791 le32toh(sqh->qh_self), qh_h_next, qh_e_next); in uhci_dump_qh()
793 temp = ((((sqh->h_next != NULL) && !(qh_h_next & UHCI_PTR_T)) ? 1 : 0) | in uhci_dump_qh()
794 (((sqh->e_next != NULL) && !(qh_e_next & UHCI_PTR_T)) ? 2 : 0)); in uhci_dump_qh()
914 #define UHCI_APPEND_QH(sqh,last) (last) = _uhci_append_qh(sqh,last) argument
916 _uhci_append_qh(uhci_qh_t *sqh, uhci_qh_t *last) in _uhci_append_qh() argument
[all …]
H A Dehci.c112 static void ehci_dump_sqh(ehci_softc_t *sc, ehci_qh_t *sqh);
970 #define EHCI_APPEND_QH(sqh,last) (last) = _ehci_append_qh(sqh,last) argument
972 _ehci_append_qh(ehci_qh_t *sqh, ehci_qh_t *last) in _ehci_append_qh() argument
974 DPRINTFN(11, "%p to %p\n", sqh, last); in _ehci_append_qh()
976 if (sqh->prev != NULL) { in _ehci_append_qh()
983 sqh->next = last->next; in _ehci_append_qh()
984 sqh->qh_link = last->qh_link; in _ehci_append_qh()
986 sqh->prev = last; in _ehci_append_qh()
988 usb_pc_cpu_flush(sqh->page_cache); in _ehci_append_qh()
994 last->next = sqh; in _ehci_append_qh()
[all …]