Home
last modified time | relevance | path

Searched refs:epmaxpacketin (Results 1 – 6 of 6) sorted by relevance

/openbmc/u-boot/common/
H A Dusb.c299 return dev->epmaxpacketin[((pipe>>15) & 0xf)]; in usb_maxpacket()
329 dev->epmaxpacketin[b] = ep_wMaxPacketSize; in usb_set_maxpacket_ep()
331 b, dev->epmaxpacketin[b]); in usb_set_maxpacket_ep()
342 if (ep_wMaxPacketSize > dev->epmaxpacketin[b]) { in usb_set_maxpacket_ep()
343 dev->epmaxpacketin[b] = ep_wMaxPacketSize; in usb_set_maxpacket_ep()
345 b, dev->epmaxpacketin[b]); in usb_set_maxpacket_ep()
969 dev->epmaxpacketin[0] = dev->descriptor.bMaxPacketSize0; in usb_setup_descriptor()
996 dev->epmaxpacketin[0] = dev->descriptor.bMaxPacketSize0; in usb_setup_descriptor()
/openbmc/u-boot/drivers/usb/musb/
H A Dmusb_hcd.c949 writew(dev->epmaxpacketin[ep], &musbr->rxmaxp); in submit_bulk_msg()
951 nextlen = ((len-txlen) < dev->epmaxpacketin[ep]) ? in submit_bulk_msg()
952 (len-txlen) : dev->epmaxpacketin[ep]; in submit_bulk_msg()
1121 writew(dev->epmaxpacketin[ep], &musbr->rxmaxp); in submit_int_msg()
1124 nextlen = ((len-txlen) < dev->epmaxpacketin[ep]) ? in submit_int_msg()
1125 (len-txlen) : dev->epmaxpacketin[ep]; in submit_int_msg()
/openbmc/u-boot/drivers/usb/host/
H A Dr8a66597-hcd.c259 maxpacket = dev->epmaxpacketin[usb_pipeendpoint(pipe)]; in pipe_buffer_setting()
399 int maxpacket = dev->epmaxpacketin[usb_pipeendpoint(pipe)]; in receive_bulk_packet()
H A Dxhci.c778 max_packet_size = udev->epmaxpacketin[0]; in xhci_check_maxpacket()
/openbmc/u-boot/drivers/usb/musb-new/
H A Dmusb_uboot.c55 __cpu_to_le16(is_in ? dev->epmaxpacketin[epnum] : in construct_urb()
/openbmc/u-boot/include/
H A Dusb.h119 int epmaxpacketin[16]; /* INput endpoint specific maximums */ member