Symbol: hc32toh
sys/bus/u4b/controller/ehci.c
1141
status = hc32toh(sc, td->qtd_status);
sys/bus/u4b/controller/ehci.c
1246
status = hc32toh(sc, qh->qh_qtd.qtd_status);
sys/bus/u4b/controller/ehci.c
1307
status = hc32toh(sc, td->sitd_status);
sys/bus/u4b/controller/ehci.c
1313
status |= hc32toh(sc, td->sitd_status);
sys/bus/u4b/controller/ehci.c
1369
status = hc32toh(sc, qh->qh_qtd.qtd_status);
sys/bus/u4b/controller/ehci.c
1377
status = hc32toh(sc, td->qtd_status);
sys/bus/u4b/controller/ehci.c
2105
status = hc32toh(sc, td->sitd_status);
sys/bus/u4b/controller/ehci.c
2160
status = hc32toh(sc, td->itd_status[td_no]);
sys/bus/u4b/controller/ehci.c
708
link = hc32toh(sc, link);
sys/bus/u4b/controller/ehci.c
744
s = hc32toh(sc, qtd->qtd_status);
sys/bus/u4b/controller/ehci.c
761
hc32toh(sc, qtd->qtd_buffer[s]));
sys/bus/u4b/controller/ehci.c
765
hc32toh(sc, qtd->qtd_buffer_hi[s]));
sys/bus/u4b/controller/ehci.c
775
kprintf("QTD(%p) at 0x%08x:\n", sqtd, hc32toh(sc, sqtd->qtd_self));
sys/bus/u4b/controller/ehci.c
803
kprintf("QH(%p) at 0x%08x:\n", qh, hc32toh(sc, qh->qh_self) & ~0x1F);
sys/bus/u4b/controller/ehci.c
807
endp = hc32toh(sc, qh->qh_endp);
sys/bus/u4b/controller/ehci.c
816
endphub = hc32toh(sc, qh->qh_endphub);
sys/bus/u4b/controller/ehci.c
833
kprintf("SITD(%p) at 0x%08x\n", sitd, hc32toh(sc, sitd->sitd_self) & ~0x1F);
sys/bus/u4b/controller/ehci.c
834
kprintf(" next=0x%08x\n", hc32toh(sc, sitd->sitd_next));
sys/bus/u4b/controller/ehci.c
836
hc32toh(sc, sitd->sitd_portaddr),
sys/bus/u4b/controller/ehci.c
839
EHCI_SITD_GET_ADDR(hc32toh(sc, sitd->sitd_portaddr)),
sys/bus/u4b/controller/ehci.c
840
EHCI_SITD_GET_ENDPT(hc32toh(sc, sitd->sitd_portaddr)),
sys/bus/u4b/controller/ehci.c
841
EHCI_SITD_GET_PORT(hc32toh(sc, sitd->sitd_portaddr)),
sys/bus/u4b/controller/ehci.c
842
EHCI_SITD_GET_HUBA(hc32toh(sc, sitd->sitd_portaddr)));
sys/bus/u4b/controller/ehci.c
843
kprintf(" mask=0x%08x\n", hc32toh(sc, sitd->sitd_mask));
sys/bus/u4b/controller/ehci.c
844
kprintf(" status=0x%08x <%s> len=0x%x\n", hc32toh(sc, sitd->sitd_status),
sys/bus/u4b/controller/ehci.c
846
EHCI_SITD_GET_LEN(hc32toh(sc, sitd->sitd_status)));
sys/bus/u4b/controller/ehci.c
848
hc32toh(sc, sitd->sitd_back),
sys/bus/u4b/controller/ehci.c
849
hc32toh(sc, sitd->sitd_bp[0]),
sys/bus/u4b/controller/ehci.c
850
hc32toh(sc, sitd->sitd_bp[1]),
sys/bus/u4b/controller/ehci.c
851
hc32toh(sc, sitd->sitd_bp_hi[0]),
sys/bus/u4b/controller/ehci.c
852
hc32toh(sc, sitd->sitd_bp_hi[1]));
sys/bus/u4b/controller/ehci.c
859
kprintf("ITD(%p) at 0x%08x\n", itd, hc32toh(sc, itd->itd_self) & ~0x1F);
sys/bus/u4b/controller/ehci.c
860
kprintf(" next=0x%08x\n", hc32toh(sc, itd->itd_next));
sys/bus/u4b/controller/ehci.c
861
kprintf(" status[0]=0x%08x; <%s>\n", hc32toh(sc, itd->itd_status[0]),
sys/bus/u4b/controller/ehci.c
863
kprintf(" status[1]=0x%08x; <%s>\n", hc32toh(sc, itd->itd_status[1]),
sys/bus/u4b/controller/ehci.c
865
kprintf(" status[2]=0x%08x; <%s>\n", hc32toh(sc, itd->itd_status[2]),
sys/bus/u4b/controller/ehci.c
867
kprintf(" status[3]=0x%08x; <%s>\n", hc32toh(sc, itd->itd_status[3]),
sys/bus/u4b/controller/ehci.c
869
kprintf(" status[4]=0x%08x; <%s>\n", hc32toh(sc, itd->itd_status[4]),
sys/bus/u4b/controller/ehci.c
871
kprintf(" status[5]=0x%08x; <%s>\n", hc32toh(sc, itd->itd_status[5]),
sys/bus/u4b/controller/ehci.c
873
kprintf(" status[6]=0x%08x; <%s>\n", hc32toh(sc, itd->itd_status[6]),
sys/bus/u4b/controller/ehci.c
875
kprintf(" status[7]=0x%08x; <%s>\n", hc32toh(sc, itd->itd_status[7]),
sys/bus/u4b/controller/ehci.c
877
kprintf(" bp[0]=0x%08x\n", hc32toh(sc, itd->itd_bp[0]));
sys/bus/u4b/controller/ehci.c
879
EHCI_ITD_GET_ADDR(hc32toh(sc, itd->itd_bp[0])),
sys/bus/u4b/controller/ehci.c
880
EHCI_ITD_GET_ENDPT(hc32toh(sc, itd->itd_bp[0])));
sys/bus/u4b/controller/ehci.c
881
kprintf(" bp[1]=0x%08x\n", hc32toh(sc, itd->itd_bp[1]));
sys/bus/u4b/controller/ehci.c
883
(hc32toh(sc, itd->itd_bp[1]) & EHCI_ITD_SET_DIR_IN) ? "in" : "out",
sys/bus/u4b/controller/ehci.c
884
EHCI_ITD_GET_MPL(hc32toh(sc, itd->itd_bp[1])));
sys/bus/u4b/controller/ehci.c
886
hc32toh(sc, itd->itd_bp[2]),
sys/bus/u4b/controller/ehci.c
887
hc32toh(sc, itd->itd_bp[3]),
sys/bus/u4b/controller/ehci.c
888
hc32toh(sc, itd->itd_bp[4]),
sys/bus/u4b/controller/ehci.c
889
hc32toh(sc, itd->itd_bp[5]),
sys/bus/u4b/controller/ehci.c
890
hc32toh(sc, itd->itd_bp[6]));
sys/bus/u4b/controller/ehci.c
893
hc32toh(sc, itd->itd_bp_hi[0]),
sys/bus/u4b/controller/ehci.c
894
hc32toh(sc, itd->itd_bp_hi[1]),
sys/bus/u4b/controller/ehci.c
895
hc32toh(sc, itd->itd_bp_hi[2]),
sys/bus/u4b/controller/ehci.c
896
hc32toh(sc, itd->itd_bp_hi[3]),
sys/bus/u4b/controller/ehci.c
897
hc32toh(sc, itd->itd_bp_hi[4]),
sys/bus/u4b/controller/ehci.c
898
hc32toh(sc, itd->itd_bp_hi[5]),
sys/bus/u4b/controller/ehci.c
899
hc32toh(sc, itd->itd_bp_hi[6]));