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

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/host/
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_hcd *ehci, struct ehci_qtd *qtd, dma_addr_t buf, argument
53 qtd->hw_buf[0] = cpu_to_hc32(ehci, (u32)addr);
54 qtd->hw_buf_hi[0] = cpu_to_hc32(ehci, (u32)(addr >> 32));
62 /* per-qtd limit: from 16K to 20K (best alignment) */
65 qtd->hw_buf[i] = cpu_to_hc32(ehci, (u32)addr);
66 qtd->hw_buf_hi[i] = cpu_to_hc32(ehci,
79 qtd->hw_token = cpu_to_hc32(ehci, (count << 16) | token);
80 qtd
88 qh_update(struct ehci_hcd *ehci, struct ehci_qh *qh, struct ehci_qtd *qtd) argument
126 struct ehci_qtd *qtd; local
348 struct ehci_qtd *qtd; local
598 struct ehci_qtd *qtd; local
616 struct ehci_qtd *qtd, *qtd_prev; local
1038 struct ehci_qtd *qtd; local
1108 struct ehci_qtd *qtd; local
[all...]
H A Dehci-mem.c38 static inline void ehci_qtd_init(struct ehci_hcd *ehci, struct ehci_qtd *qtd, argument
41 memset (qtd, 0, sizeof *qtd);
42 qtd->qtd_dma = dma;
43 qtd->hw_token = cpu_to_le32 (QTD_STS_HALT);
44 qtd->hw_next = EHCI_LIST_END(ehci);
45 qtd->hw_alt_next = EHCI_LIST_END(ehci);
46 INIT_LIST_HEAD (&qtd->qtd_list);
51 struct ehci_qtd *qtd; local
54 qtd
61 ehci_qtd_free(struct ehci_hcd *ehci, struct ehci_qtd *qtd) argument
[all...]
H A Disp1760-hcd.c341 #define EHCI_TUNE_CERR 3 /* 0-3 qtd retries; 0 == don't stop */
530 struct isp1760_qtd *qtd, struct urb *urb,
550 dw0 |= PTD_LENGTH(qtd->length);
558 pid_code = qtd->packet_type;
599 dw3 |= PTD_DATA_TOGGLE(qtd->toggle);
617 struct isp1760_qtd *qtd, struct urb *urb,
678 struct isp1760_qtd *qtd, struct urb *urb,
681 transform_into_atl(priv, qh, qtd, urb, payload, ptd);
682 transform_add_int(priv, qh, qtd, urb, payload, ptd);
685 static int qtd_fill(struct isp1760_qtd *qtd, voi argument
529 transform_into_atl(struct isp1760_hcd *priv, struct isp1760_qh *qh, struct isp1760_qtd *qtd, struct urb *urb, u32 payload, struct ptd *ptd) argument
616 transform_add_int(struct isp1760_hcd *priv, struct isp1760_qh *qh, struct isp1760_qtd *qtd, struct urb *urb, u32 payload, struct ptd *ptd) argument
677 transform_into_int(struct isp1760_hcd *priv, struct isp1760_qh *qh, struct isp1760_qtd *qtd, struct urb *urb, u32 payload, struct ptd *ptd) argument
749 enqueue_one_qtd(struct isp1760_qtd *qtd, struct isp1760_hcd *priv, u32 payload) argument
770 enqueue_one_atl_qtd(u32 atl_regs, u32 payload, struct isp1760_hcd *priv, struct isp1760_qh *qh, struct urb *urb, u32 slot, struct isp1760_qtd *qtd) argument
790 enqueue_one_int_qtd(u32 int_regs, u32 payload, struct isp1760_hcd *priv, struct isp1760_qh *qh, struct urb *urb, u32 slot, struct isp1760_qtd *qtd) argument
810 enqueue_an_ATL_packet(struct usb_hcd *hcd, struct isp1760_qh *qh, struct isp1760_qtd *qtd) argument
852 enqueue_an_INT_packet(struct usb_hcd *hcd, struct isp1760_qh *qh, struct isp1760_qtd *qtd) argument
918 isp1760_qtd_free(struct isp1760_qtd *qtd) argument
923 clean_this_qtd(struct isp1760_qtd *qtd) argument
938 clean_up_qtdlist(struct isp1760_qtd *qtd) argument
968 struct isp1760_qtd *qtd; local
1189 struct isp1760_qtd *qtd; local
1368 struct isp1760_qtd *qtd; local
1404 struct isp1760_qtd *qtd; local
1415 struct isp1760_qtd *qtd; local
1448 p(priv_to_hcd(priv), qh, qtd); local
1460 struct isp1760_qtd *qtd; local
1475 struct isp1760_qtd *qtd, *qtd_prev; local
1677 struct isp1760_qtd *qtd; local
1707 struct isp1760_qtd *qtd, *prev_qtd = ints->qtd; local
2123 struct isp1760_qtd *qtd; local
[all...]
H A Doxu210hp-hcd.c467 static int oxu_buf_alloc(struct oxu_hcd *oxu, struct ehci_qtd *qtd, int len) argument
501 qtd->buffer = (void *) &oxu->mem->db_pool[i];
502 qtd->buffer_dma = virt_to_phys(qtd->buffer);
504 qtd->qtd_buffer_len = BUFFER_SIZE * a_blocks;
519 static void oxu_buf_free(struct oxu_hcd *oxu, struct ehci_qtd *qtd) argument
525 index = (qtd->buffer - (void *) &oxu->mem->db_pool[0])
528 qtd->qtd_buffer_len = 0;
529 qtd->buffer_dma = 0;
530 qtd
537 ehci_qtd_init(struct ehci_qtd *qtd, dma_addr_t dma) argument
547 oxu_qtd_free(struct oxu_hcd *oxu, struct ehci_qtd *qtd) argument
567 struct ehci_qtd *qtd = NULL; local
774 qtd_fill(struct ehci_qtd *qtd, dma_addr_t buf, size_t len, int token, int maxpacket) argument
812 qh_update(struct oxu_hcd *oxu, struct ehci_qh *qh, struct ehci_qtd *qtd) argument
848 struct ehci_qtd *qtd; local
1002 struct ehci_qtd *qtd; local
1174 struct ehci_qtd *qtd; local
1189 struct ehci_qtd *qtd, *qtd_prev; local
1545 struct ehci_qtd *qtd; local
1610 struct ehci_qtd *qtd; local
[all...]
H A Dehci-dbg.c123 dbg_qtd (const char *label, struct ehci_hcd *ehci, struct ehci_qtd *qtd) argument
125 ehci_dbg(ehci, "%s td %p n%08x %08x t%08x p0=%08x\n", label, qtd,
126 hc32_to_cpup(ehci, &qtd->hw_next),
127 hc32_to_cpup(ehci, &qtd->hw_alt_next),
128 hc32_to_cpup(ehci, &qtd->hw_token),
129 hc32_to_cpup(ehci, &qtd->hw_buf [0]));
130 if (qtd->hw_buf [1])
132 hc32_to_cpup(ehci, &qtd->hw_buf[1]),
133 hc32_to_cpup(ehci, &qtd->hw_buf[2]),
134 hc32_to_cpup(ehci, &qtd
622 struct ehci_qtd *qtd; local
[all...]
H A Disp1760-hcd.h118 struct isp1760_qtd *qtd; member in struct:inter_packet_info
123 struct isp1760_qtd *qtd);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/examples/libmsrpc/test/lsa/
H A Dlsatrust.c95 struct LsaQueryTrustedDomainInfo qtd; local
96 ZERO_STRUCT(qtd);
98 qtd.in.pol = lsa_pol;
99 qtd.in.domain_name = etd.out.domain_names[i];
104 qtd.in.info_class = j;
107 if(!cac_LsaQueryTrustedDomainInfo(hnd, mem_ctx, &qtd)) {
114 printf(" size %d\n", sizeof(*qtd.out.info));
119 qtd.in.domain_sid = &etd.out.domain_sids[i];
120 if(!cac_LsaQueryTrustedDomainInfo(hnd, mem_ctx, &qtd)) {
126 /* print_info(qtd
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/host/whci/
H A Ddebug.c57 qset->qh.overlay.qtd.status, qset->qh.overlay.qtd.options);
63 i, qset->qtd[i].status, qset->qtd[i].options,
64 (u32)qset->qtd[i].page_list_ptr);
73 if (std->qtd)
75 std->qtd - &qset->qtd[0],
H A Dqset.c191 struct whc_qtd *qtd; local
198 if (std->qtd)
201 qtd = std->qtd = &qset->qtd[qset->td_end];
205 memcpy(qtd->setup, std->urb->setup_packet, 8);
227 qtd->options = cpu_to_le32(QTD_OPT_IOC);
229 qtd->options = cpu_to_le32(QTD_OPT_IOC | QTD_OPT_SMALL);
230 qtd->page_list_ptr = cpu_to_le64(std->dma_addr);
232 qtd
742 process_inactive_qtd(struct whc *whc, struct whc_qset *qset, struct whc_qtd *qtd) argument
782 process_halted_qtd(struct whc *whc, struct whc_qset *qset, struct whc_qtd *qtd) argument
[all...]
H A Dwhcd.h99 struct whc_qtd *qtd; member in struct:whc_std
203 struct whc_qtd *qtd);
205 struct whc_qtd *qtd);
H A Dasl.c107 td = &qset->qtd[qset->td_start];
325 if (std->qtd)
329 std->qtd = NULL; /* so this std is re-added when the qset is */
H A Dpzl.c113 td = &qset->qtd[qset->td_start];
353 if (std->qtd)
357 std->qtd = NULL; /* so this std is re-added when the qset is */
H A Dwhci-hc.h35 * qtd.
114 * seg_ptr = qtd->page_list_ptr[qtd->seg_list_ptr[seg].idx].buf_ptr
115 * + qtd->seg_list_ptr[seg].offset;
143 struct whc_qtd qtd; member in union:whc_qhead::__anon16183
207 * @qtd: up to 8 qTDs (for qsets for control, bulk and interrupt
244 struct whc_qtd qtd[WHCI_QSET_TD_MAX]; member in union:whc_qset::__anon16184

Completed in 67 milliseconds