Searched refs:qtd (Results 1 - 4 of 4) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/usb/host/
H A Dehci-mem.c38 static inline void ehci_qtd_init (struct ehci_qtd *qtd, dma_addr_t dma) argument
40 memset (qtd, 0, sizeof *qtd);
41 qtd->qtd_dma = dma;
42 qtd->hw_token = cpu_to_le32 (QTD_STS_HALT);
43 qtd->hw_next = EHCI_LIST_END;
44 qtd->hw_alt_next = EHCI_LIST_END;
45 INIT_LIST_HEAD (&qtd->qtd_list);
50 struct ehci_qtd *qtd; local
53 qtd
60 ehci_qtd_free(struct ehci_hcd *ehci, struct ehci_qtd *qtd) argument
[all...]
H A Dehci-q.c26 * Control, bulk, and interrupt traffic all use "qh" lists. They list "qtd"
43 /* fill a qtd, returning how much of the buffer we were able to queue up */
46 qtd_fill (struct ehci_qtd *qtd, dma_addr_t buf, size_t len, argument
53 qtd->hw_buf [0] = cpu_to_le32 ((u32)addr);
54 qtd->hw_buf_hi [0] = cpu_to_le32 ((u32)(addr >> 32));
62 /* per-qtd limit: from 16K to 20K (best alignment) */
65 qtd->hw_buf [i] = cpu_to_le32 ((u32)addr);
66 qtd->hw_buf_hi [i] = cpu_to_le32 ((u32)(addr >> 32));
78 qtd->hw_token = cpu_to_le32 ((count << 16) | token);
79 qtd
87 qh_update(struct ehci_hcd *ehci, struct ehci_qh *qh, struct ehci_qtd *qtd) argument
123 struct ehci_qtd *qtd; local
287 struct ehci_qtd *qtd; local
361 struct ehci_qtd *qtd; local
515 struct ehci_qtd *qtd; local
533 struct ehci_qtd *qtd, *qtd_prev; local
906 struct ehci_qtd *qtd; local
989 struct ehci_qtd *qtd; local
[all...]
H A Dehci-dbg.c118 dbg_qtd (const char *label, struct ehci_hcd *ehci, struct ehci_qtd *qtd) argument
120 ehci_dbg (ehci, "%s td %p n%08x %08x t%08x p0=%08x\n", label, qtd,
121 le32_to_cpup (&qtd->hw_next),
122 le32_to_cpup (&qtd->hw_alt_next),
123 le32_to_cpup (&qtd->hw_token),
124 le32_to_cpup (&qtd->hw_buf [0]));
125 if (qtd->hw_buf [1])
127 le32_to_cpup (&qtd->hw_buf [1]),
128 le32_to_cpup (&qtd->hw_buf [2]),
129 le32_to_cpup (&qtd
547 struct ehci_qtd *qtd; local
[all...]
H A Dehci-hcd.c109 #define EHCI_TUNE_CERR 3 /* 0-3 qtd retries; 0 == don't stop */
287 MODULE_PARM_DESC (qtdc_pid, "qtd cache device pid");
291 MODULE_PARM_DESC (qtdc_vid, "qtd cache device vid");
293 static int qtdc0_ep = -1; /* turn off qtd cache by default */
295 MODULE_PARM_DESC (qtdc0_ep, "qtd cache 0 endpoint");
297 static int qtdc0_sz = 0; /* turn off qtd cache by default */
299 MODULE_PARM_DESC (qtdc0_sz, "qtd cache 0 size (# of qtd's)");
303 MODULE_PARM_DESC (qtdc0_to, "qtd cache 0 timeout (ms)");
305 static int qtdc1_ep = -1; /* turn off qtd cach
331 struct ehci_qtd *qtd; local
[all...]

Completed in 92 milliseconds