/src/sys/arch/sh3/sh3/ |
mmu.c | 92 unsigned int urb; local in function:sh_mmu_information 96 urb = (r & SH4_MMUCR_URB_MASK) >> SH4_MMUCR_URB_SHIFT; 102 urb ? 64 - urb : 0);
|
/src/sys/external/bsd/dwc2/ |
dwc2var.h | 43 struct dwc2_hcd_urb *urb; member in struct:dwc2_xfer
|
dwc2.c | 242 dxfer->urb = dwc2_hcd_urb_alloc(sc->sc_hsotg, 267 dwc2_hcd_urb_free(sc->sc_hsotg, dxfer->urb, dxfer->urb->packet_count); 520 err = dwc2_hcd_urb_dequeue(hsotg, dxfer->urb); 973 dwc2_urb = dxfer->urb; 1383 * Sets the final status of an URB and returns it to the upper layer. Any 1384 * required cleanup of the URB is performed. 1404 if (!qtd->urb) { 1405 dev_dbg(hsotg->dev, "## %s: qtd->urb is NULL ##\n", __func__); 1409 xfer = qtd->urb->priv 1420 struct dwc2_hcd_urb *urb = qtd->urb; local in function:dwc2_host_complete [all...] |
/src/sys/external/bsd/dwc2/dist/ |
dwc2_hcdddma.c | 396 * Seen on Isoc URB dequeue. Channel halted but no subsequent 547 frame_desc = &qtd->urb->iso_descs[qtd->isoc_frame_index_last]; 554 dma_desc->buf = (u32)(DMAADDR(qtd->urb->usbdma, frame_desc->offset)); 565 /* Set IOC for each descriptor corresponding to last frame of URB */ 566 if (qtd->isoc_frame_index_last == qtd->urb->packet_count) 621 qtd->urb->packet_count) 626 qtd->urb->packet_count) { 757 chan->xfer_dma = DMAADDR(qtd->urb->usbdma, 758 qtd->urb->actual_length); 759 chan->xfer_len = qtd->urb->length 1063 struct dwc2_hcd_urb *urb = qtd->urb; local in function:dwc2_update_non_isoc_urb_state_ddma 1146 struct dwc2_hcd_urb *urb = qtd->urb; local in function:dwc2_process_non_isoc_desc [all...] |
dwc2_hcd.c | 192 * and periodic schedules. The QTD associated with each URB is removed from 419 struct dwc2_hcd_urb *urb, struct dwc2_qh *qh, 432 dev_speed = dwc2_host_get_speed(hsotg, urb->priv); 443 "DWC OTG HCD URB Enqueue unsupported\n"); 453 dwc2_hcd_qtd_init(qtd, urb); 457 "DWC OTG HCD URB Enqueue failed adding QTD. Error status %d\n", 467 !(qtd->urb->flags & URB_GIVEBACK_ASAP)) 485 struct dwc2_hcd_urb *urb) 490 urb_qtd = urb->qtd; 492 dev_dbg(hsotg->dev, "## Urb QTD is NULL ##\n") 781 struct dwc2_hcd_urb *urb; local in function:dwc2_assign_and_init_hc 1907 struct dwc2_hcd_urb *urb; local in function:dwc2_hcd_urb_alloc 1958 struct dwc2_hcd_urb *urb; local in function:dwc2_hcd_dump_state [all...] |
dwc2_hcdintr.c | 108 // struct urb *usb_urb; 116 if (!qtd->urb) 120 if (qtd->urb->status != -EPIPE && qtd->urb->status != -EREMOTEIO) { 471 * dwc2_update_urb_state() - Updates the state of the URB after a Transfer 473 * of the URB based on the number of bytes transferred via the host channel. 474 * Sets the URB status if the data transfer is finished. 476 * Return: 1 if the data transfer specified by the URB is completely finished, 481 struct dwc2_hcd_urb *urb, 490 if (urb->actual_length + xfer_length > urb->length) 577 struct dwc2_hcd_urb *urb = qtd->urb; local in function:dwc2_update_isoc_urb_state 1024 struct dwc2_hcd_urb *urb = qtd->urb; local in function:dwc2_hc_xfercomp_intr 1155 struct dwc2_hcd_urb *urb = qtd->urb; local in function:dwc2_hc_stall_intr 1570 struct dwc2_hcd_urb *urb = qtd->urb; local in function:dwc2_hc_ahberr_intr [all...] |
dwc2_hcd.h | 344 * @urb: URB for this transfer 349 * interrupt, or isochronous transfer. A single QTD is created for each URB 375 struct dwc2_hcd_urb *urb; member in struct:dwc2_qtd 483 struct dwc2_hcd_urb *urb, 491 extern void dwc2_hcd_qtd_init(struct dwc2_qtd *qtd, struct dwc2_hcd_urb *urb); 720 /* URB interface */ 753 if (usb_pipeint(_qtd_->urb->pipe) && \ 787 struct dwc2_hcd_urb *urb, struct dwc2_qh *qh,
|