wrappers: sh: ql: additional args for fasm2bels and qlfasm

Co-authored-by: Alessandro Comodi <acomodi@antmicro.com>
    Co-authored-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
    Co-authored-by: Krishna Kumar <coolbreeze413@yahoo.co.in>
    Co-authored-by: Lalit Narain Sharma <61820431+lnsharma@users.noreply.github.com>
    Co-authored-by: Maciej Kurc <mkurc@antmicro.com>

Signed-off-by: Paweł Czarnecki <pczarnecki@antmicro.com>
This commit is contained in:
Paweł Czarnecki 2022-05-18 09:08:14 +02:00
parent ac5efd34fd
commit 33cde8a5e8
2 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ if [[ "$DEVICE" =~ ^(ql-eos-s3|ql-pp3e)$ ]]; then
fi
echo "Running fasm2bels"
python3 ${FASM2BELS} ${BIT} --phy-db ${VPR_DB} --package-name ${PART} --input-type bitstream --output-verilog ${VERILOG_FILE} ${PCF_ARGS} --output-pcf ${PCF_FILE} --output-qcf ${QCF_FILE}
python3 ${FASM2BELS} ${BIT} --phy-db ${VPR_DB} --device-name ${FASM2BELS_DEVICE} --package-name ${PART} --input-type bitstream --output-verilog ${VERILOG_FILE} ${PCF_ARGS} --output-pcf ${PCF_FILE} --output-qcf ${QCF_FILE}
else

View File

@ -64,7 +64,7 @@ if [[ "$DEVICE" =~ ^(qlf_k4n8.*)$ ]]; then
DB_ROOT=`realpath ${MYPATH}/../share/symbiflow/fasm_database/${DEVICE}`
${QLF_FASM} --db-root ${DB_ROOT} --format ${BIT_FORMAT} --assemble $FASM $BIT
elif [[ "$DEVICE" =~ ^(ql-eos-s3|ql-pp3e)$ ]]; then
qlfasm ${FASM} ${BIT}
qlfasm --dev-type ${DEVICE} ${FASM} ${BIT}
else
echo "ERROR: Unsupported device '${DEVICE}' for bitstream generation"
exit -1