aboutsummaryrefslogtreecommitdiffstats
path: root/fpga_interchange/site_router_tests/common
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2021-06-11 08:38:24 +0100
committerGitHub <noreply@github.com>2021-06-11 08:38:24 +0100
commit0a27601c817abbbaf230708ffc0daee5ef6fec61 (patch)
tree0ffca21f055ae8b271561344425d1ee75cabd2b5 /fpga_interchange/site_router_tests/common
parent1cc7ee785957c14f83b89d6bf18f14d072e6312e (diff)
parent1cd2901d854b969a8cb1afc66e3f3388766776a0 (diff)
downloadnextpnr-tests-0a27601c817abbbaf230708ffc0daee5ef6fec61.tar.gz
nextpnr-tests-0a27601c817abbbaf230708ffc0daee5ef6fec61.tar.bz2
nextpnr-tests-0a27601c817abbbaf230708ffc0daee5ef6fec61.zip
Merge pull request #10 from antmicro/site_router_test_framework
fpga_interchange: Add initial site router test framework
Diffstat (limited to 'fpga_interchange/site_router_tests/common')
-rw-r--r--fpga_interchange/site_router_tests/common/run_script.py29
-rw-r--r--fpga_interchange/site_router_tests/common/synth.tcl14
2 files changed, 43 insertions, 0 deletions
diff --git a/fpga_interchange/site_router_tests/common/run_script.py b/fpga_interchange/site_router_tests/common/run_script.py
new file mode 100644
index 0000000..07faf89
--- /dev/null
+++ b/fpga_interchange/site_router_tests/common/run_script.py
@@ -0,0 +1,29 @@
+import sys
+import yaml
+import os
+
+def test_case(ctx):
+ with open(os.environ['TEST_YAML'], 'r') as f:
+ test_data = yaml.safe_load(f.read())
+ if 'test_case' in test_data:
+ ctx.pack()
+ for test_step in test_data['test_case']:
+ print(test_step)
+ if "place" in test_step:
+ for cell, bel in test_step["place"].items():
+ print("Binding Bel {} to Cell {}".format(bel, cell))
+ assert cell in ctx.cells, "Cell {} does not exist".format(cell)
+ ctx.bindBel(bel, ctx.cells[cell], STRENGTH_WEAK)
+ if "test" in test_step:
+ print(test_step["test"])
+ for bel, check in test_step["test"].items():
+ print("Checking if location of bel {} is {}".format(bel, check))
+ print("Test result: {}, isBelLocationValid: {}, expected: {}".format(ctx.isBelLocationValid(bel) == check, ctx.isBelLocationValid(bel), check))
+ if "unplace" in test_step:
+ print(test_step["unplace"])
+ cell = test_step["unplace"]
+ print("Unbinding Bel {}".format(cell))
+ ctx.explain_bel_status(cell)
+ ctx.unbindBel(cell)
+
+test_case(ctx)
diff --git a/fpga_interchange/site_router_tests/common/synth.tcl b/fpga_interchange/site_router_tests/common/synth.tcl
new file mode 100644
index 0000000..cba4503
--- /dev/null
+++ b/fpga_interchange/site_router_tests/common/synth.tcl
@@ -0,0 +1,14 @@
+yosys -import
+
+read_verilog $::env(SOURCES)
+
+synth_xilinx -flatten -abc9 -nosrl -nocarry -nodsp
+
+# opt_expr -undriven makes sure all nets are driven, if only by the $undef
+# net.
+opt_expr -undriven
+opt_clean
+
+setundef -zero -params
+
+write_json $::env(OUT_JSON)