Home
last modified time | relevance | path

Searched refs:maxpacketsize (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/uts/common/io/usb/hcd/ehci/
H A Dehci_util.c2647 ushort_t maxpacketsize = endpoint->wMaxPacketSize; in ehci_compute_high_speed_bandwidth() local
2650 if (maxpacketsize == 0) { in ehci_compute_high_speed_bandwidth()
2659 maxpacketsize = (ushort_t)((maxpacketsize * 7) / 6); in ehci_compute_high_speed_bandwidth()
2689 *cbandwidth += maxpacketsize; in ehci_compute_high_speed_bandwidth()
2696 *sbandwidth += maxpacketsize; in ehci_compute_high_speed_bandwidth()
2706 *sbandwidth += maxpacketsize; in ehci_compute_high_speed_bandwidth()
2755 ushort_t maxpacketsize = endpoint->wMaxPacketSize; in ehci_compute_classic_bandwidth() local
2760 if (maxpacketsize == 0) { in ehci_compute_classic_bandwidth()
2769 maxpacketsize = (ushort_t)((maxpacketsize * 7) / 6); in ehci_compute_classic_bandwidth()
2776 (LOW_SPEED_CLOCK * maxpacketsize)); in ehci_compute_classic_bandwidth()
[all …]
H A Dehci_xfer.c407 uint_t maxpacketsize, addr, xactions; in ehci_unpack_endpoint() local
516 maxpacketsize = endpoint->wMaxPacketSize & USB_EP_MAX_PKTSZ_MASK; in ehci_unpack_endpoint()
517 maxpacketsize = maxpacketsize << EHCI_QH_CTRL_MAXPKTSZ_SHIFT; in ehci_unpack_endpoint()
518 ctrl |= (maxpacketsize & EHCI_QH_CTRL_MAXPKTSZ); in ehci_unpack_endpoint()
/illumos-gate/usr/src/uts/common/io/usb/hcd/openhci/
H A Dohci.c3485 ushort_t maxpacketsize = endpoint->wMaxPacketSize; in ohci_compute_total_bandwidth() local
3490 if (maxpacketsize == 0) { in ohci_compute_total_bandwidth()
3499 maxpacketsize = (ushort_t)((maxpacketsize * 7) / 6); in ohci_compute_total_bandwidth()
3506 (LOW_SPEED_CLOCK * maxpacketsize)); in ohci_compute_total_bandwidth()
3509 *bandwidth += maxpacketsize; in ohci_compute_total_bandwidth()
3835 uint_t maxpacketsize, addr, ctrl = 0; in ohci_unpack_endpoint() local
3875 maxpacketsize = endpoint->wMaxPacketSize; in ohci_unpack_endpoint()
3876 maxpacketsize = maxpacketsize << HC_EPT_MAXPKTSZ; in ohci_unpack_endpoint()
3877 ctrl = ctrl | (maxpacketsize & HC_EPT_MPS); in ohci_unpack_endpoint()