summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSuren A. Chilingaryan <csa@suren.me>2015-01-25 04:53:58 +0100
committerSuren A. Chilingaryan <csa@suren.me>2015-01-25 04:53:58 +0100
commit3b3f049e8dfd7314239a4f489884648b2808d735 (patch)
tree53dfbd57e7a616865f46671dab52eb9117275537
parenta640c40c6bcf4bad0b78e0ea6ea04f2a5f3f877f (diff)
downloadipecamera-3b3f049e8dfd7314239a4f489884648b2808d735.tar.gz
ipecamera-3b3f049e8dfd7314239a4f489884648b2808d735.tar.bz2
ipecamera-3b3f049e8dfd7314239a4f489884648b2808d735.tar.xz
ipecamera-3b3f049e8dfd7314239a4f489884648b2808d735.zip
Add delays to workaround problems in IPEDMA. Also provide other modifications to reflect minor changes in hardware
-rw-r--r--dma/ipe.c29
-rw-r--r--dma/ipe_private.h2
-rwxr-xr-xtests/dma/ipe/bench.sh9
3 files changed, 31 insertions, 9 deletions
diff --git a/dma/ipe.c b/dma/ipe.c
index eb1ad6d..23c94d0 100644
--- a/dma/ipe.c
+++ b/dma/ipe.c
@@ -84,7 +84,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;
+ pcilib_register_value_t value, value2;
if (dma == PCILIB_DMA_ENGINE_INVALID) return 0;
else if (dma > 1) return PCILIB_ERROR_INVALID_BANK;
@@ -116,7 +116,7 @@ int dma_ipe_start(pcilib_dma_context_t *vctx, pcilib_dma_engine_t dma, pcilib_dm
#ifndef IPEDMA_BUG_DMARD
RD(IPEDMA_REG_PAGE_COUNT, value);
- if ((value + 1) != IPEDMA_DMA_PAGES) pcilib_warning("Inconsistent DMA buffers are found (Number of allocated buffers does not match current request), reinitializing...");
+ if (value != IPEDMA_DMA_PAGES) pcilib_warning("Inconsistent DMA buffers are found (Number of allocated buffers (%lu) does not match current request (%lu)), reinitializing...", value + 1, IPEDMA_DMA_PAGES);
else
#endif /* IPEDMA_BUG_DMARD */
preserve = 1;
@@ -152,18 +152,20 @@ int dma_ipe_start(pcilib_dma_context_t *vctx, pcilib_dma_engine_t dma, pcilib_dm
// Disable DMA
WR(IPEDMA_REG_CONTROL, 0x0);
+ usleep(100000);
// Reset DMA engine
WR(IPEDMA_REG_RESET, 0x1);
usleep(100000);
WR(IPEDMA_REG_RESET, 0x0);
+ usleep(100000);
#ifndef IPEDMA_BUG_DMARD
// Verify PCIe link status
RD(IPEDMA_REG_RESET, value);
- if (value != 0x14031700) pcilib_warning("PCIe is not ready");
+ if (value != 0x14031700) pcilib_warning("PCIe is not ready, code is %lx", value);
#endif /* IPEDMA_BUG_DMARD */
-
+
// Configuring TLP and PACKET sizes (40 bit mode can be used with big pre-allocated buffers later)
WR(IPEDMA_REG_TLP_SIZE, IPEDMA_TLP_SIZE);
WR(IPEDMA_REG_TLP_COUNT, IPEDMA_PAGE_SIZE / (4 * IPEDMA_TLP_SIZE * IPEDMA_CORES));
@@ -183,14 +185,20 @@ int dma_ipe_start(pcilib_dma_context_t *vctx, pcilib_dma_engine_t dma, pcilib_dm
for (i = 0; i < IPEDMA_DMA_PAGES; i++) {
- uintptr_t bus_addr = pcilib_kmem_get_block_ba(ctx->pcilib, pages, i);
+ uintptr_t bus_addr_check, bus_addr = pcilib_kmem_get_block_ba(ctx->pcilib, pages, i);
WR(IPEDMA_REG_PAGE_ADDR, bus_addr);
if (bus_addr%4096) printf("Bad address %lu: %lx\n", i, bus_addr);
+
+ RD(IPEDMA_REG_PAGE_ADDR, bus_addr_check);
+ if (bus_addr_check != bus_addr) {
+ pcilib_error("Written (%x) and read (%x) bus addresses does not match\n", bus_addr, bus_addr_check);
+ }
+
usleep(1000);
}
// Enable DMA
- WR(IPEDMA_REG_CONTROL, 0x1);
+// WR(IPEDMA_REG_CONTROL, 0x1);
ctx->last_read = IPEDMA_DMA_PAGES - 1;
@@ -203,7 +211,8 @@ int dma_ipe_start(pcilib_dma_context_t *vctx, pcilib_dma_engine_t dma, pcilib_dm
#endif /* IPEDMA_BUG_DMARD */
}
- ctx->last_read_addr = htonl(pcilib_kmem_get_block_ba(ctx->pcilib, pages, ctx->last_read));
+// ctx->last_read_addr = htonl(pcilib_kmem_get_block_ba(ctx->pcilib, pages, ctx->last_read));
+ ctx->last_read_addr = pcilib_kmem_get_block_ba(ctx->pcilib, pages, ctx->last_read);
ctx->desc = desc;
@@ -237,14 +246,17 @@ int dma_ipe_stop(pcilib_dma_context_t *vctx, pcilib_dma_engine_t dma, pcilib_dma
// Disable DMA
WR(IPEDMA_REG_CONTROL, 0);
+ usleep(100000);
// Reset DMA engine
WR(IPEDMA_REG_RESET, 0x1);
usleep(100000);
WR(IPEDMA_REG_RESET, 0x0);
+ usleep(100000);
// Reseting configured DMA pages
WR(IPEDMA_REG_PAGE_COUNT, 0);
+ usleep(100000);
}
// Clean buffers
@@ -392,7 +404,8 @@ int dma_ipe_stream_read(pcilib_dma_context_t *vctx, pcilib_dma_engine_t dma, uin
WR(IPEDMA_REG_LAST_READ, ctx->last_read + 1);
ctx->last_read = cur_read;
- ctx->last_read_addr = htonl(pcilib_kmem_get_block_ba(ctx->pcilib, ctx->pages, cur_read));
+// ctx->last_read_addr = htonl(pcilib_kmem_get_block_ba(ctx->pcilib, ctx->pages, cur_read));
+ ctx->last_read_addr = pcilib_kmem_get_block_ba(ctx->pcilib, ctx->pages, cur_read);
#ifdef IPEDMA_BUG_DMARD
FILE *f = fopen("/tmp/pcitool_lastread", "w");
diff --git a/dma/ipe_private.h b/dma/ipe_private.h
index e6e70c2..42000d1 100644
--- a/dma/ipe_private.h
+++ b/dma/ipe_private.h
@@ -10,7 +10,7 @@
#define IPEDMA_DESCRIPTOR_ALIGNMENT 64
//#define IPEDMA_DEBUG
-#define IPEDMA_BUG_DMARD /**< No register read during DMA transfer */
+//#define IPEDMA_BUG_DMARD /**< No register read during DMA transfer */
#define IPEDMA_REG_RESET 0x00
#define IPEDMA_REG_CONTROL 0x04
diff --git a/tests/dma/ipe/bench.sh b/tests/dma/ipe/bench.sh
index cc32971..aa7ec25 100755
--- a/tests/dma/ipe/bench.sh
+++ b/tests/dma/ipe/bench.sh
@@ -10,22 +10,31 @@ function pci {
rm -f bench.out
+echo "Stopping DMA and skipping exiting data..."
pci --stop-dma dma0r
+echo "Starting DMA..."
pci --start-dma dma0r
+echo "Enabling data generation..."
+pci -w 0x4 0x1
# Clean DMA buffers
#while [ $? -eq 0 ]; do
# pci -r dma0 -s 65536 &> /dev/null
#done
+echo "Reading the data from DMA..."
for i in `seq 1 100`; do
pci -r dma0 --multipacket -s $size -o bench.out
if [ $? -ne 0 ]; then
+ echo "Stopping DMA due to the error..."
pci --stop-dma dma0r
exit
fi
done
+echo "Stopping DMA..."
pci --stop-dma dma0r
../../../apps/check_counter bench.out
+
+#pci -r 0 -s 32