From d6c875d6261634e0c6f350faa942ccebbd106ed1 Mon Sep 17 00:00:00 2001 From: "Suren A. Chilingaryan" Date: Tue, 3 Feb 2015 16:34:50 +0100 Subject: Try to detect IPEDMA packets, but this probably will not work anyway as often data is just streamed and pci is not make for infinite packets --- dma/ipe.c | 28 +++++++++++++++++++++++----- dma/ipe_private.h | 1 + 2 files changed, 24 insertions(+), 5 deletions(-) (limited to 'dma') diff --git a/dma/ipe.c b/dma/ipe.c index b697c6c..7ecc153 100644 --- a/dma/ipe.c +++ b/dma/ipe.c @@ -85,7 +85,7 @@ int dma_ipe_start(pcilib_dma_context_t *vctx, pcilib_dma_engine_t dma, pcilib_dm volatile void *desc_va; volatile uint32_t *last_written_addr_ptr; - pcilib_register_value_t value, value2; + pcilib_register_value_t value; uint32_t address64; @@ -352,16 +352,25 @@ int dma_ipe_get_status(pcilib_dma_context_t *vctx, pcilib_dma_engine_t dma, pcil int dma_ipe_stream_read(pcilib_dma_context_t *vctx, pcilib_dma_engine_t dma, uintptr_t addr, size_t size, pcilib_dma_flags_t flags, pcilib_timeout_t timeout, pcilib_dma_callback_t cb, void *cbattr) { int err, ret = PCILIB_STREAMING_REQ_PACKET; - pcilib_register_value_t value; pcilib_timeout_t wait = 0; struct timeval start, cur; volatile void *desc_va; volatile uint32_t *last_written_addr_ptr; - + + pcilib_dma_flags_t packet_flags = PCILIB_DMA_FLAG_EOP; + +#ifdef IPEDMA_DETECT_PACKETS + volatile uint32_t *empty_detected_ptr; +#endif /* IPEDMA_DETECT_PACKETS */ + +#ifdef IPEDMA_BUG_DMARD + pcilib_register_value_t value; +#endif /* IPEDMA_BUG_DMARD */ + size_t cur_read; - + ipe_dma_t *ctx = (ipe_dma_t*)vctx; err = dma_ipe_start(vctx, dma, PCILIB_DMA_FLAGS_DEFAULT); @@ -372,6 +381,10 @@ int dma_ipe_stream_read(pcilib_dma_context_t *vctx, pcilib_dma_engine_t dma, uin if (ctx->mode64) last_written_addr_ptr = desc_va + 3 * sizeof(uint32_t); else last_written_addr_ptr = desc_va + 4 * sizeof(uint32_t); +#ifdef IPEDMA_DETECT_PACKETS + empty_detected_ptr = last_written_addr_ptr - 1; +#endif /* IPEDMA_DETECT_PACKETS */ + do { switch (ret&PCILIB_STREAMING_TIMEOUT_MASK) { case PCILIB_STREAMING_CONTINUE: wait = IPEDMA_DMA_TIMEOUT; break; @@ -401,10 +414,15 @@ int dma_ipe_stream_read(pcilib_dma_context_t *vctx, pcilib_dma_engine_t dma, uin #ifdef IPEDMA_DEBUG printf("Reading: %u (last read) 0x%x (last read addr) 0x%x (last_written)\n", cur_read, ctx->last_read_addr, *last_written_addr_ptr); #endif /* IPEDMA_DEBUG */ + +#ifdef IPEDMA_DETECT_PACKETS + if ((*empty_detected_ptr)&&(pcilib_kmem_get_block_ba(ctx->pcilib, ctx->pages, cur_read) == (*last_written_addr_ptr))) packet_flags = PCILIB_DMA_FLAG_EOP; + else packet_flags = 0; +#endif /* IPEDMA_DETECT_PACKETS */ pcilib_kmem_sync_block(ctx->pcilib, ctx->pages, PCILIB_KMEM_SYNC_FROMDEVICE, cur_read); void *buf = pcilib_kmem_get_block_ua(ctx->pcilib, ctx->pages, cur_read); - ret = cb(cbattr, PCILIB_DMA_FLAG_EOP, ctx->page_size, buf); + ret = cb(cbattr, packet_flags, ctx->page_size, buf); if (ret < 0) return -ret; // DS: Fixme, it looks like we can avoid calling this for the sake of performance diff --git a/dma/ipe_private.h b/dma/ipe_private.h index 1ae14f6..3a00884 100644 --- a/dma/ipe_private.h +++ b/dma/ipe_private.h @@ -11,6 +11,7 @@ //#define IPEDMA_DEBUG //#define IPEDMA_BUG_DMARD /**< No register read during DMA transfer */ +//#define IPEDMA_DETECT_PACKETS /**< Using empty_deceted flag */ #define IPEDMA_DMA_TIMEOUT PCILIB_DMA_TIMEOUT /**< us, overrides PCILIB_DMA_TIMEOUT */ #define IPEDMA_REG_RESET 0x00 -- cgit v1.2.3