Searched refs:ehci_qh (Results 1 – 10 of 10) sorted by relevance
| /utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/newhost/ |
| H A D | drvEhciHcd.c | 169 static void ms_unlink_async(struct ehci_hcd *, struct ehci_qh *); 170 static void ms_intr_deschedule(struct ehci_hcd *, struct ehci_qh *); 171 static int ms_qh_schedule(struct ehci_hcd *, struct ehci_qh *); 875 ms_qh_refresh (struct ehci_hcd *pEhci, struct ehci_qh *pQh) in ms_qh_refresh() 922 ms_qh_update_link (struct ehci_qh *pQh, struct ehci_qtd *pQtd) in ms_qh_update_link() 1056 struct ehci_qh *qh = (struct ehci_qh *) pUrb->hcpriv; in ms_urb_done() 1100 ms_qh_completions (struct ehci_hcd *pEhci, struct ehci_qh *pQh, struct stPtRegs *pRegs) in ms_qh_completions() 1505 static struct ehci_qh * 1512 struct ehci_qh *pQh = ms_ehci_qh_alloc (pEhci, iFlags); in ms_qh_make() 1704 static void ms_qh_link_async (struct ehci_hcd *pEhci, struct ehci_qh *pQh) in ms_qh_link_async() [all …]
|
| H A D | drvEHCI_MEM.cxx | 115 static struct ehci_qh *ms_ehci_qh_alloc (struct ehci_hcd *pEhci, int iFlags) in ms_ehci_qh_alloc() 117 struct ehci_qh *pQh; in ms_ehci_qh_alloc() 120 pQh = (struct ehci_qh *)ms_mem_pool_alloc (pEhci->pQhPool, iFlags, &tDmaAddr); in ms_ehci_qh_alloc() 143 static __inline__ struct ehci_qh *ms_qh_get (struct ehci_qh *pQh) in ms_qh_get() 149 static void ms_qh_put (struct ehci_hcd *pEhci, struct ehci_qh *pQh) in ms_qh_put() 216 pEhci->pQhPool = ms_mem_pool_create ("ehci_qh", sizeof (struct ehci_qh), in ms_ehci_mem_init()
|
| H A D | drvEHCI_SCHD.cxx | 193 static int ms_qh_schedule (struct ehci_hcd *pEhci, struct ehci_qh *pQh); 196 struct ehci_qh *pQh1 in ms_intr_deschedule() 397 const struct ehci_qh *pQh, in ms_check_intr_schedule() 448 static int ms_qh_link_periodic (struct ehci_hcd *ehci, struct ehci_qh *qh) in ms_qh_link_periodic() 509 static int ms_qh_schedule (struct ehci_hcd *pEhci, struct ehci_qh *pQh) in ms_qh_schedule() 612 struct ehci_qh *pQh1; in ms_intr_submit() 664 struct ehci_qh *pQh, in ms_intr_complete()
|
| H A D | drvEHCI.h | 133 struct ehci_qh *stAsync; 134 struct ehci_qh *stReclaim; 436 struct ehci_qh *qh; 443 struct ehci_qh { struct 458 struct ehci_qh *pReclaimQh; argument
|
| /utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/usbhost/ |
| H A D | drvEhciHcd.c | 2161 qh_update (struct ehci_hcd *ehci, struct ehci_qh *qh, struct ehci_qtd *qtd) in qh_update() 2661 struct ehci_qh *qh = (struct ehci_qh *) urb->hcpriv; in ehci_urb_done() 2898 qh_completions (struct ehci_hcd *ehci, struct ehci_qh *qh, struct pt_regs *regs) in qh_completions() 4278 clear_toggle (struct usb_device *udev, int ep, int is_out, struct ehci_qh *qh) in clear_toggle() 4434 static struct ehci_qh * 4440 struct ehci_qh *qh = ehci_qh_alloc (ehci, flags); in qh_make() 4987 static void qh_link_async (struct ehci_hcd *ehci, struct ehci_qh *qh) in qh_link_async() 4990 struct ehci_qh *head; in qh_link_async() 5122 static void qh_link_async (struct ehci_hcd *ehci, struct ehci_qh *qh) 5125 struct ehci_qh *q; [all …]
|
| H A D | drvEHCI_MEM.cxx | 150 static struct ehci_qh *ehci_qh_alloc (struct ehci_hcd *ehci, int flags) in ehci_qh_alloc() 153 struct ehci_qh *qh; in ehci_qh_alloc() 156 qh = (struct ehci_qh *) in ehci_qh_alloc() 183 static __inline__ struct ehci_qh *qh_get (/* ehci, */ struct ehci_qh *qh) in qh_get() 192 static void qh_put (struct ehci_hcd *ehci, struct ehci_qh *qh) in qh_put() 301 sizeof (struct ehci_qh), in ehci_mem_init()
|
| H A D | drvEHCI.h | 182 struct ehci_qh *async; 183 struct ehci_qh *reclaim; 1611 struct ehci_qh *qh; /* == Q_TYPE_QH */ 1689 struct ehci_qh { struct 1857 struct ehci_qh *reclaim; argument
|
| H A D | drvEHCI_SCHD.cxx | 320 struct ehci_qh *qh1, in intr_deschedule() 411 const struct ehci_qh *qh, in check_intr_schedule() 444 static int qh_schedule (struct ehci_hcd *ehci, struct ehci_qh *qh) in qh_schedule() 537 struct ehci_qh *qh1; in intr_submit() 602 struct ehci_qh *qh, in intr_complete()
|
| H A D | drvEHCIDBG.cpp | 193 static void dbg_qh (char *label, struct ehci_hcd *ehci, struct ehci_qh *qh) in dbg_qh() 412 static inline void dbg_qh (char *label, struct ehci_hcd *ehci, struct ehci_qh *qh) in dbg_qh() 503 struct ehci_qh *qh, in qh_lines() 655 struct ehci_qh *qh; in show_async()
|
| H A D | drvEhciHcd_2.c | 346 sizeof (struct ehci_qh), sizeof (struct ehci_qtd), in ehci_hcd_cpe_ehci_init_Port2()
|