Merge pull request #348 from antmicro/pcza/eos-s3-use-f4pga-build

eos-s3: btn_counter: use F4PGA build flow by default
This commit is contained in:
Karol Gugala 2022-08-01 22:14:24 +02:00 committed by GitHub
commit 524dfb6e74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View File

@ -6,5 +6,10 @@ DEVICE := ql-eos-s3
PARTNAME := PD64 PARTNAME := PD64
PCF:=chandalar.pcf PCF:=chandalar.pcf
ifdef F4PGA_USE_DEPRECATED
all: all:
ql_symbiflow -compile -d ${DEVICE} -P ${PARTNAME} -v ${VERILOG} -t ${TOP} -p ${PCF} ql_symbiflow -compile -d ${DEVICE} -P ${PARTNAME} -v ${VERILOG} -t ${TOP} -p ${PCF}
else
all:
f4pga -vvv build --flow ./flow.json
endif

View File

@ -0,0 +1,26 @@
{
"default_part": "EOS3FF512-PDN64",
"values": {
"top": "top"
},
"dependencies": {
"sources": [
"./btn_counter.v"
],
"synth_log": "synth.log",
"pack_log": "pack.log",
"analysis_log": "analysis.log"
},
"EOS3FF512-PDN64": {
"default_target": "bitstream",
"dependencies": {
"build_dir": "build",
"pcf": "./chandalar.pcf",
"sdc-in": "./dummy.sdc"
},
"values": {
"part": "ql-eos-s3",
"package": "PD64"
}
}
}