Searched refs:sqh (Results 1 – 2 of 2) sorted by relevance
| /freebsd-11-stable/sys/dev/usb/controller/ |
| HD | uhci.c | 784 uhci_dump_qh(uhci_qh_t *sqh) in uhci_dump_qh() argument 790 usb_pc_cpu_invalidate(sqh->page_cache); in uhci_dump_qh() 792 qh_h_next = le32toh(sqh->qh_h_next); in uhci_dump_qh() 793 qh_e_next = le32toh(sqh->qh_e_next); in uhci_dump_qh() 795 DPRINTFN(0, "QH(%p) at 0x%08x: h_next=0x%08x e_next=0x%08x\n", sqh, in uhci_dump_qh() 796 le32toh(sqh->qh_self), qh_h_next, qh_e_next); in uhci_dump_qh() 798 temp = ((((sqh->h_next != NULL) && !(qh_h_next & UHCI_PTR_T)) ? 1 : 0) | in uhci_dump_qh() 799 (((sqh->e_next != NULL) && !(qh_e_next & UHCI_PTR_T)) ? 2 : 0)); in uhci_dump_qh() 919 #define UHCI_APPEND_QH(sqh,last) (last) = _uhci_append_qh(sqh,last) argument 921 _uhci_append_qh(uhci_qh_t *sqh, uhci_qh_t *last) in _uhci_append_qh() argument [all …]
|
| HD | ehci.c | 111 static void ehci_dump_sqh(ehci_softc_t *sc, ehci_qh_t *sqh); 971 #define EHCI_APPEND_QH(sqh,last) (last) = _ehci_append_qh(sqh,last) argument 973 _ehci_append_qh(ehci_qh_t *sqh, ehci_qh_t *last) in _ehci_append_qh() argument 975 DPRINTFN(11, "%p to %p\n", sqh, last); in _ehci_append_qh() 977 if (sqh->prev != NULL) { in _ehci_append_qh() 984 sqh->next = last->next; in _ehci_append_qh() 985 sqh->qh_link = last->qh_link; in _ehci_append_qh() 987 sqh->prev = last; in _ehci_append_qh() 989 usb_pc_cpu_flush(sqh->page_cache); in _ehci_append_qh() 995 last->next = sqh; in _ehci_append_qh() [all …]
|