Home
last modified time | relevance | path

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

/OK3568_Linux_fs/u-boot/common/
H A Dusb.c306 return dev->epmaxpacketin[((pipe>>15) & 0xf)]; in usb_maxpacket()
336 dev->epmaxpacketin[b] = ep_wMaxPacketSize; in usb_set_maxpacket_ep()
338 b, dev->epmaxpacketin[b]); in usb_set_maxpacket_ep()
349 if (ep_wMaxPacketSize > dev->epmaxpacketin[b]) { in usb_set_maxpacket_ep()
350 dev->epmaxpacketin[b] = ep_wMaxPacketSize; in usb_set_maxpacket_ep()
352 b, dev->epmaxpacketin[b]); in usb_set_maxpacket_ep()
989 dev->epmaxpacketin[0] = dev->descriptor.bMaxPacketSize0; in usb_setup_descriptor()
1016 dev->epmaxpacketin[0] = dev->descriptor.bMaxPacketSize0; in usb_setup_descriptor()
/OK3568_Linux_fs/u-boot/drivers/usb/musb/
H A Dmusb_hcd.c950 writew(dev->epmaxpacketin[ep], &musbr->rxmaxp); in submit_bulk_msg()
952 nextlen = ((len-txlen) < dev->epmaxpacketin[ep]) ? in submit_bulk_msg()
953 (len-txlen) : dev->epmaxpacketin[ep]; in submit_bulk_msg()
1122 writew(dev->epmaxpacketin[ep], &musbr->rxmaxp); in submit_int_msg()
1125 nextlen = ((len-txlen) < dev->epmaxpacketin[ep]) ? in submit_int_msg()
1126 (len-txlen) : dev->epmaxpacketin[ep]; in submit_int_msg()
/OK3568_Linux_fs/u-boot/drivers/usb/host/
H A Dr8a66597-hcd.c237 maxpacket = dev->epmaxpacketin[usb_pipeendpoint(pipe)]; in pipe_buffer_setting()
373 int maxpacket = dev->epmaxpacketin[usb_pipeendpoint(pipe)]; in receive_bulk_packet()
H A Dxhci.c779 max_packet_size = udev->epmaxpacketin[0]; in xhci_check_maxpacket()
/OK3568_Linux_fs/u-boot/drivers/usb/musb-new/
H A Dmusb_uboot.c58 __cpu_to_le16(is_in ? dev->epmaxpacketin[epnum] : in construct_urb()
/OK3568_Linux_fs/u-boot/include/
H A Dusb.h120 int epmaxpacketin[16]; /* INput endpoint specific maximums */ member