From 26231dc78cc7e59786faecc554a12fb61b812902 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Thu, 27 Oct 2022 06:02:20 -0400 Subject: [PATCH] add example config for VILLASnode integration --- fpga/etc/example-villas-node.conf | 44 +++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 fpga/etc/example-villas-node.conf diff --git a/fpga/etc/example-villas-node.conf b/fpga/etc/example-villas-node.conf new file mode 100644 index 000000000..42cd22f8c --- /dev/null +++ b/fpga/etc/example-villas-node.conf @@ -0,0 +1,44 @@ +fpgas = { + vc707 = { + type = "pcie" // "platform" für ZCU107 + + port = "0:88.0.0" + ips = "path/to/device_tree.json" + + crossbar = { + // Additional FPGA IP-core related configuration here + // Such as crossbar settings + } + } +} + +nodes = { + aurora_ch0 = { + type = "villas-fpga" + + fpga = "vc707" + dma = "axi_dma_0" // should not be required if there is only a single DMA + target = "aurora_axis_ch0" + } + + aurora_ch1 = { + type = "villas-fpga" + + fpga = "vc707" + dma = "axi_dma_1" + target = "aurora_axis_ch1" + } + + record = { + type = "file" + + uri = "dump.csv" + } +} + +paths = ( + { + in = "aurora_ch0" + out = "record" + }, +)