| /u-boot/drivers/usb/common/ |
| A D | usb_urb.c | 61 void usb_urb_fill(struct urb *urb, struct usb_host_endpoint *hep, in usb_urb_fill() argument 72 memset(hep, 0, sizeof(struct usb_host_endpoint)); in usb_urb_fill() 73 INIT_LIST_HEAD(&hep->urb_list); in usb_urb_fill() 75 urb->ep = hep; in usb_urb_fill() 121 struct usb_host_endpoint *hep, in usb_urb_submit_control() argument 128 usb_urb_fill(urb, hep, dev, USB_ENDPOINT_XFER_CONTROL, pipe, buffer, in usb_urb_submit_control() 143 struct usb_host_endpoint *hep, struct usb_device *dev, in usb_urb_submit_bulk() argument 146 usb_urb_fill(urb, hep, dev, USB_ENDPOINT_XFER_BULK, pipe, buffer, len, in usb_urb_submit_bulk() 153 struct usb_host_endpoint *hep, struct usb_device *dev, in usb_urb_submit_irq() argument 156 usb_urb_fill(urb, hep, dev, USB_ENDPOINT_XFER_INT, pipe, buffer, len, in usb_urb_submit_irq()
|
| /u-boot/include/linux/usb/ |
| A D | usb_urb_compat.h | 94 struct usb_host_endpoint *hep, 100 struct usb_host_endpoint *hep, struct usb_device *dev, 104 struct usb_host_endpoint *hep, struct usb_device *dev, 107 void usb_urb_fill(struct urb *urb, struct usb_host_endpoint *hep,
|
| /u-boot/drivers/usb/isp1760/ |
| A D | isp1760-uboot.c | 35 return usb_urb_submit_control(&host->hcd, &host->urb, &host->hep, udev, in isp1760_msg_submit_control() 45 return usb_urb_submit_bulk(&host->hcd, &host->urb, &host->hep, udev, in isp1760_msg_submit_bulk() 55 return usb_urb_submit_irq(&host->hcd, &host->urb, &host->hep, udev, in isp1760_msg_submit_irq()
|
| A D | isp1760-uboot.h | 21 struct usb_host_endpoint hep; member
|
| A D | isp1760-hcd.c | 961 struct usb_host_endpoint *hep = qtd->urb->ep; in transform_add_int() local 962 struct usb_endpoint_descriptor *epd = &hep->desc; in transform_add_int()
|
| /u-boot/drivers/usb/musb-new/ |
| A D | musb_uboot.c | 22 struct usb_host_endpoint hep; member 36 static void construct_urb(struct urb *urb, struct usb_host_endpoint *hep, in construct_urb() argument 45 memset(hep, 0, sizeof(struct usb_host_endpoint)); in construct_urb() 46 INIT_LIST_HEAD(&hep->urb_list); in construct_urb() 48 urb->ep = hep; in construct_urb() 97 construct_urb(&host->urb, &host->hep, dev, USB_ENDPOINT_XFER_CONTROL, in _musb_submit_control_msg() 110 construct_urb(&host->urb, &host->hep, dev, USB_ENDPOINT_XFER_BULK, in _musb_submit_bulk_msg() 119 construct_urb(&host->urb, &host->hep, dev, USB_ENDPOINT_XFER_INT, pipe, in _musb_submit_int_msg() 145 construct_urb(&queue->urb, &queue->hep, dev, USB_ENDPOINT_XFER_INT, in _musb_create_int_queue()
|
| A D | musb_host.h | 28 struct usb_host_endpoint *hep; /* usbcore info */ member 80 queue = &qh->hep->urb_list; in next_urb()
|
| A D | musb_uboot.h | 19 struct usb_host_endpoint hep; member
|
| A D | musb_host.c | 375 if (list_empty(&qh->hep->urb_list)) { in musb_advance_schedule() 395 qh->hep->hcpriv = NULL; in musb_advance_schedule() 1897 qh->hep->hcpriv = qh; in musb_schedule() 1938 qh = ret ? NULL : hep->hcpriv; 1968 qh->hep = hep; 2092 if (hep->hcpriv) { 2238 qh->hep->hcpriv = NULL; 2262 qh = hep->hcpriv; 2283 while (!list_empty(&hep->urb_list)) { 2293 while (!list_empty(&hep->urb_list)) [all …]
|