Add test core and targets

To test, run:
fusesoc --cores-root . run --setup --target test ucam:cheri:cheri-cap-lib-test
This commit is contained in:
Ivan Ribeiro
2023-09-30 17:09:56 +01:00
parent fcadf1aead
commit 61e7b3e668

View File

@@ -0,0 +1,50 @@
CAPI=2:
name: "ucam:cheri:cheri-cap-lib-test"
description: "Targets to test cheri-cap-lib generator"
# different parameterizations of the generator, one is 64bit and the other is 128bit
generate:
cheri-cap-lib-64:
generator: cheri-cap-lib-gen
parameters:
capwidth : "CAP64"
cheri-cap-lib-128:
generator: cheri-cap-lib-gen
parameters:
capwidth : "CAP128"
# cores need to explicitly depend on the generator, so an empty fileset with
# a dependency on the generator's core is needed, like so:
filesets:
cheri-cap-lib-dep:
depend:
- ucam:cheri:cheri-cap-lib-verilog-generator
# the filelist can then be placed in the filesets section of the dependant core
# to add the dependency, so that fusesoc can find the generator
targets:
test64:
description: "Default target that generates 64bit versions"
default_tool: verilator
filesets:
- cheri-cap-lib-dep
generate:
- cheri-cap-lib-64
test128:
description: "Default target that generates 128bit versions"
default_tool: verilator
filesets:
- cheri-cap-lib-dep
generate:
- cheri-cap-lib-128
test:
description: "Default target that generates both 64bit and 128bit versions"
default_tool: verilator
filesets:
- cheri-cap-lib-dep
generate:
- cheri-cap-lib-64
- cheri-cap-lib-128