mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
add example config for VILLASnode integration
This commit is contained in:
parent
2ad5fc1ccf
commit
26231dc78c
1 changed files with 44 additions and 0 deletions
44
fpga/etc/example-villas-node.conf
Normal file
44
fpga/etc/example-villas-node.conf
Normal file
|
@ -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"
|
||||
},
|
||||
)
|
Loading…
Add table
Reference in a new issue