Home
last modified time | relevance | path

Searched refs:usb_pipetype (Results 1 – 25 of 40) sorted by relevance

12

/OK3568_Linux_fs/u-boot/include/
H A Dusb.h393 #define usb_pipetype(pipe) (((pipe) >> 30) & 3) macro
394 #define usb_pipeisoc(pipe) (usb_pipetype((pipe)) == PIPE_ISOCHRONOUS)
395 #define usb_pipeint(pipe) (usb_pipetype((pipe)) == PIPE_INTERRUPT)
396 #define usb_pipecontrol(pipe) (usb_pipetype((pipe)) == PIPE_CONTROL)
397 #define usb_pipebulk(pipe) (usb_pipetype((pipe)) == PIPE_BULK)
/OK3568_Linux_fs/kernel/drivers/usb/usbip/
H A Dstub_tx.c183 if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS) in stub_send_ret_submit()
238 usb_pipetype(urb->pipe) != PIPE_ISOCHRONOUS && in stub_send_ret_submit()
266 usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS) { in stub_send_ret_submit()
299 if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS) { in stub_send_ret_submit()
H A Dvhci_tx.c123 if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS) { in vhci_send_cmd_submit()
H A Dusbip_common.c60 unsigned char type = usb_pipetype(p); in usbip_dump_pipe()
248 if (urb->setup_packet && usb_pipetype(urb->pipe) == PIPE_CONTROL) in usbip_dump_urb()
H A Dstub_rx.c175 if (usb_pipetype(urb->pipe) != PIPE_CONTROL) in tweak_special_requests()
/OK3568_Linux_fs/u-boot/drivers/usb/host/
H A Dxhci.c1116 if (usb_pipetype(pipe) != PIPE_INTERRUPT) { in _xhci_submit_int_msg()
1117 printf("non-interrupt pipe (type=%lu)", usb_pipetype(pipe)); in _xhci_submit_int_msg()
1142 if (usb_pipetype(pipe) != PIPE_BULK) { in _xhci_submit_bulk_msg()
1143 printf("non-bulk pipe (type=%lu)", usb_pipetype(pipe)); in _xhci_submit_bulk_msg()
1168 if (usb_pipetype(pipe) != PIPE_CONTROL) { in _xhci_submit_control_msg()
1169 printf("non-control pipe (type=%lu)", usb_pipetype(pipe)); in _xhci_submit_control_msg()
H A Dehci-hcd.c1138 if (usb_pipetype(pipe) != PIPE_BULK) { in _ehci_submit_bulk_msg()
1139 debug("non-bulk pipe (type=%lu)", usb_pipetype(pipe)); in _ehci_submit_bulk_msg()
1151 if (usb_pipetype(pipe) != PIPE_CONTROL) { in _ehci_submit_control_msg()
1152 debug("non-control pipe (type=%lu)", usb_pipetype(pipe)); in _ehci_submit_control_msg()
1242 if (usb_pipetype(pipe) != PIPE_INTERRUPT) { in _ehci_create_int_queue()
1243 debug("non-interrupt pipe (type=%lu)", usb_pipetype(pipe)); in _ehci_create_int_queue()
H A Dohci-hcd.c290 usb_pipetype(pipe) < 2 ? \ in pkt_print()
543 switch (usb_pipetype(pipe)) { in sohci_submit_job()
869 ed->type = usb_pipetype(pipe); in ep_add_ed()
981 switch (usb_pipetype(pipe)) { in td_submit_job()
/OK3568_Linux_fs/kernel/drivers/usb/c67x00/
H A Dc67x00-sched.c207 if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS) { in c67x00_release_urb()
267 type = usb_pipetype(urb->pipe); in c67x00_ep_data_alloc()
388 switch (usb_pipetype(urb->pipe)) { in c67x00_urb_enqueue()
588 switch (usb_pipetype(td->pipe)) { in c67x00_create_td()
917 switch (usb_pipetype(td->pipe)) { in c67x00_handle_successful_td()
/OK3568_Linux_fs/kernel/include/linux/
H A Dusb.h1973 #define usb_pipetype(pipe) (((pipe) >> 30) & 3) macro
1974 #define usb_pipeisoc(pipe) (usb_pipetype((pipe)) == PIPE_ISOCHRONOUS)
1975 #define usb_pipeint(pipe) (usb_pipetype((pipe)) == PIPE_INTERRUPT)
1976 #define usb_pipecontrol(pipe) (usb_pipetype((pipe)) == PIPE_CONTROL)
1977 #define usb_pipebulk(pipe) (usb_pipetype((pipe)) == PIPE_BULK)
/OK3568_Linux_fs/kernel/drivers/usb/dwc2/
H A Dhcd.h623 return usb_pipetype(urb->pipe) == PIPE_BULK || in dbg_urb()
624 usb_pipetype(urb->pipe) == PIPE_CONTROL; in dbg_urb()
H A Dhcd.c4092 if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS) in dwc2_allocate_bus_bandwidth()
4105 if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS) in dwc2_free_bus_bandwidth()
4149 if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS) { in dwc2_host_complete()
4160 if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS && dbg_perio()) { in dwc2_host_complete()
4173 if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS || in dwc2_host_complete()
4174 usb_pipetype(urb->pipe) == PIPE_INTERRUPT) { in dwc2_host_complete()
4509 switch (usb_pipetype(urb->pipe)) { in dwc2_dump_urb_info()
4556 if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS) { in dwc2_dump_urb_info()
4599 if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS || in _dwc2_hcd_urb_enqueue()
4600 usb_pipetype(urb->pipe) == PIPE_INTERRUPT) { in _dwc2_hcd_urb_enqueue()
[all …]
/OK3568_Linux_fs/kernel/drivers/usb/core/
H A Durb.c210 if (usb_pipetype(pipe) != pipetypes[usb_endpoint_type(&ep->desc)]) in usb_pipe_type_check()
494 usb_pipetype(urb->pipe), pipetypes[xfertype]); in usb_submit_urb()
/OK3568_Linux_fs/u-boot/arch/mips/mach-au1x00/
H A Dau1x00_usb_ohci.c162 usb_pipetype (pipe) < 2? (usb_pipeint (pipe)? "INTR": "ISOC"): in pkt_print()
399 switch (usb_pipetype (pipe)) { in sohci_submit_job()
591 ed->type = usb_pipetype (pipe); in ep_add_ed()
688 switch (usb_pipetype (pipe)) { in td_submit_job()
/OK3568_Linux_fs/kernel/drivers/usb/host/
H A Dehci-hcd.c896 switch (usb_pipetype (urb->pipe)) { in ehci_urb_enqueue()
939 if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS) { in ehci_urb_dequeue()
950 if (usb_pipetype(urb->pipe) == PIPE_INTERRUPT) in ehci_urb_dequeue()
H A Dohci-q.c57 switch (usb_pipetype (urb->pipe)) { in finish_urb()
443 ed->type = usb_pipetype(pipe); in ed_get()
799 int type = usb_pipetype (urb->pipe); in td_done()
H A Du132-hcd.c1889 endp->pipetype = usb_pipetype(urb->pipe); in create_endpoint_and_queue_int()
1980 endp->pipetype = usb_pipetype(urb->pipe); in create_endpoint_and_queue_bulk()
2094 endp->pipetype = usb_pipetype(urb->pipe); in create_endpoint_and_queue_control()
2115 endp->pipetype = usb_pipetype(urb->pipe); in create_endpoint_and_queue_control()
2253 if (usb_pipetype(urb->pipe) == PIPE_INTERRUPT) { in u132_urb_enqueue()
2291 } else if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS) { in u132_urb_enqueue()
2295 } else if (usb_pipetype(urb->pipe) == PIPE_BULK) { in u132_urb_enqueue()
H A Dmax3421-hcd.c1054 if (urb_done > 0 && usb_pipetype(urb->pipe) == PIPE_CONTROL) { in max3421_host_transfer_done()
1172 usb_pipetype(urb->pipe), in dump_eps()
1511 switch (usb_pipetype(urb->pipe)) { in max3421_urb_enqueue()
H A Dehci-q.c253 if (usb_pipetype(urb->pipe) == PIPE_INTERRUPT) { in ehci_urb_done()
784 type = usb_pipetype (urb->pipe); in qh_make()
H A Dimx21-hcd.c223 ((u32) fmt_urb_to_etd[usb_pipetype(urb->pipe)] << DW0_FORMAT) | in setup_etd_dword0()
1082 switch (usb_pipetype(urb->pipe)) { in nonisoc_etd_done()
1200 switch (usb_pipetype(urb->pipe)) { in imx21_hc_urb_enqueue()
H A Duhci-debug.c118 switch (usb_pipetype(urbp->urb->pipe)) { in uhci_show_urbp()
/OK3568_Linux_fs/kernel/drivers/media/usb/dvb-usb/
H A Dusb-urb.c18 int ptype = usb_pipetype(urb->pipe); in usb_urb_complete()
/OK3568_Linux_fs/kernel/drivers/media/usb/dvb-usb-v2/
H A Dusb_urb.c22 int ptype = usb_pipetype(urb->pipe); in usb_urb_complete()
/OK3568_Linux_fs/kernel/drivers/media/usb/au0828/
H A Dau0828-dvb.c111 int ptype = usb_pipetype(purb->pipe); in urb_completion()
/OK3568_Linux_fs/kernel/drivers/staging/octeon-usb/
H A Docteon-hcd.c1975 if (usb_pipetype(urb->pipe) == PIPE_ISOCHRONOUS) { in octeon_usb_urb_complete_callback()
3091 switch (usb_pipetype(urb->pipe)) { in octeon_usb_urb_enqueue()
3170 switch (usb_pipetype(urb->pipe)) { in octeon_usb_urb_enqueue()

12