Searched refs:deq (Results 1 - 15 of 15) sorted by relevance

/linux-master/drivers/usb/host/
H A Dxhci-trace.h316 __field(u64, deq)
322 __entry->deq = le64_to_cpu(ctx->deq);
326 __entry->info, __entry->info2, __entry->deq, __entry->tx_info)
453 __field(dma_addr_t, deq)
471 __entry->deq = xhci_trb_virt_to_dma(ring->deq_seg, ring->dequeue);
473 TP_printk("%s %p: enq %pad(%pad) deq %pad(%pad) segs %d stream %d bounce %d cycle %d",
476 &__entry->deq, &__entry->deq_seg,
H A Dxhci-dbgcap.c109 dma_addr_t deq, dma; local
127 deq = dbc_bulkout_enq(dbc);
130 ep_ctx->deq = cpu_to_le64(deq | dbc->ring_out->cycle_state);
134 deq = dbc_bulkin_enq(dbc);
137 ep_ctx->deq = cpu_to_le64(deq | dbc->ring_in->cycle_state);
484 dma_addr_t deq; local
522 deq = xhci_trb_virt_to_dma(dbc->ring_evt->deq_seg,
524 lo_hi_writeq(deq,
764 dma_addr_t deq; local
[all...]
H A Dxhci-mem.c657 /* Set deq ptr, cycle bit, and stream context type */
723 ep_ctx->deq = cpu_to_le64(stream_info->ctx_array_dma);
737 ep_ctx->deq = cpu_to_le64(addr | ep->ring->cycle_state);
1038 ep0_ctx->deq = cpu_to_le64(xhci_trb_virt_to_dma(ep_ring->enq_seg,
1177 ep0_ctx->deq = cpu_to_le64(dev->eps[0].ring->first_seg->dma |
1484 ep_ctx->deq = cpu_to_le64(ep_ring->first_seg->dma |
1505 ep_ctx->deq = 0;
1593 in_ep_ctx->deq = out_ep_ctx->deq;
1976 dma_addr_t deq; local
[all...]
H A Dxhci-ring.c294 /* Ring might be empty even if enq != deq if enq is left on a link trb */
356 xhci_dbg(xhci, "Adding %d trbs moves enq %d trbs into deq seg\n",
631 return le64_to_cpu(ep_ctx->deq);
720 xhci_warn(xhci, "deq seg = %p, deq ptr = %p\n", new_seg, new_deq);
1033 case TD_CLEARING_CACHE: /* set TR deq command already queued */
1190 /* will queue a set TR deq if stopped on a cancelled, uncleared TD */
1338 * we need to clear the set deq pending flag in the endpoint ring state, so that
1362 xhci_warn(xhci, "WARN Set TR deq ptr command for freed stream ID %u\n",
1406 u64 deq; local
3034 dma_addr_t deq; local
[all...]
H A Dxhci.h414 * @deq: 64-bit ring dequeue pointer address. If the endpoint only
429 __le64 deq; member in struct:xhci_ep_ctx
500 /* deq bitmasks */
554 /* Stream Context Types (section 6.4.1) - bits 3:1 of stream ctx deq ptr */
2163 "%s: deq %08x%08x stream %d slot %d ep %d flags %c",
2484 u32 info2, u64 deq, u32 tx_info)
2527 ret += sprintf(str + ret, "Type %s %sburst %d maxp %d deq %016llx ",
2529 burst, maxp, deq);
2483 xhci_decode_ep_context(char *str, u32 info, u32 info2, u64 deq, u32 tx_info) argument
H A Dxhci-debugfs.c298 le64_to_cpu(ep_ctx->deq),
556 seq_printf(s, "%pad stream id %d deq %016llx\n", &dma,
559 seq_printf(s, "%pad stream context entry not used deq %016llx\n",
H A Dxhci.c568 "ERST deq = 64'h%0lx", (long unsigned int) temp_64);
2014 ep_ctx->deq = 0;
3495 /* Set maxPstreams in endpoint context and update deq ptr to
3555 * update deq ptr to point to normal string ring.
3646 * update deq ptr to point to normal string ring.
/linux-master/drivers/usb/cdns3/
H A Dcdnsp-trace.h543 __field(u64, deq)
549 __entry->deq = le64_to_cpu(ctx->deq);
554 __entry->deq, __entry->tx_info)
704 __field(dma_addr_t, deq)
725 __entry->deq = cdnsp_trb_virt_to_dma(ring->deq_seg,
728 TP_printk("%s %p: enq %pad(%pad) deq %pad(%pad) segs %d stream %d"
732 &__entry->deq, &__entry->deq_seg,
H A Dcdnsp-mem.c610 /* Set deq ptr, cycle bit, and stream context type. */
722 ep0_ctx->deq = cpu_to_le64(dma | ep_ring->cycle_state);
769 ep0_ctx->deq = cpu_to_le64(pdev->eps[0].ring->first_seg->dma |
1001 ep_ctx->deq = cpu_to_le64(pep->ring->first_seg->dma |
1021 pep->in_ctx->deq = 0;
1102 dma_addr_t deq; local
1105 deq = cdnsp_trb_virt_to_dma(pdev->event_ring->deq_seg,
1118 cdnsp_write_64(((u64)deq & (u64)~ERST_PTR_MASK) | temp,
H A Dcdnsp-debug.h349 "%s: ep%d%s(%d) deq %08x%08x stream %ld slot %ld flags %c",
540 u64 deq, u32 tx_info)
574 "Type %s %sburst %d maxp %d deq %016llx ",
576 burst, maxp, deq);
538 cdnsp_decode_ep_context(char *str, size_t size, u32 info, u32 info2, u64 deq, u32 tx_info) argument
H A Dcdnsp-gadget.c465 ep_ctx->deq = 0;
756 ep_ctx->deq = cpu_to_le64(stream_info->ctx_array_dma);
1340 dma_addr_t deq; local
1344 /* If necessary, update the HW's version of the event ring deq ptr. */
1346 deq = cdnsp_trb_virt_to_dma(pdev->event_ring->deq_seg,
1349 temp_64 |= ((u64)deq & (u64)~ERST_PTR_MASK);
H A Dcdnsp-gadget.h627 * @deq: 64-bit ring dequeue pointer address. If the endpoint only
642 __le64 deq; member in struct:cdnsp_ep_ctx
707 /* deq bitmasks. */
749 /* Stream Context Types - bits 3:1 of stream ctx deq ptr. */
H A Dcdnsp-ring.c412 return le64_to_cpu(pep->out_ctx->deq);
/linux-master/drivers/usb/early/
H A Dxhci-dbc.h77 __le64 deq; member in struct:xdbc_ep_context
H A Dxhci-dbc.c326 ep_out->deq = cpu_to_le64(xdbc.out_seg.dma | xdbc.out_ring.cycle_state);
333 ep_in->deq = cpu_to_le64(xdbc.in_seg.dma | xdbc.in_ring.cycle_state);

Completed in 325 milliseconds