platforms: eos-s3: add preapre_sdc target

Signed-off-by: Paweł Czarnecki <pczarnecki@antmicro.com>
This commit is contained in:
Paweł Czarnecki 2022-06-14 17:16:07 +02:00 committed by Unai Martinez-Corral
parent 393de41208
commit a6c2584250
1 changed files with 26 additions and 1 deletions

View File

@ -2,6 +2,7 @@
"stages": {
"mk_build_dir": "common:mkdirs",
"synth": "common:synth",
"prepare_sdc": "common:generic_script_wrapper",
"pack": "common:pack",
"ioplace": "common:generic_script_wrapper",
"place": "common:place",
@ -52,7 +53,9 @@
"synth": {
"params": {
"takes": [ "pcf?" ],
"produces": [ "synth_v" ]
"produces": [
"synth_v"
]
},
"values": {
"tcl_scripts": "${shareDir}/scripts/pp3",
@ -72,6 +75,28 @@
}
}
},
"prepare_sdc": {
"params": {
"stage_name": "prepare_sdc",
"interpreter": "${python3}",
"script": "${binDir}/python/process_sdc_constraints.py",
"outputs": {
"sdc": {
"mode": "file",
"file": "${:eblif[noext]}.sdc",
"target": "${:eblif[noext]}.sdc"
}
},
"inputs": {
"eblif": "${:eblif}",
"sdc-in": "${:sdc-in}",
"sdc-out": "${:eblif[noext]}.sdc",
"pcf": "${:pcf}",
"pin-map": "",
"$PYTHONPATH": "${binDir}/python/"
}
}
},
"ioplace": {
"params": {
"stage_name": "ioplace",