-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Wishbone implementation files For mult_wfifos and multp_wfifos Through nextpnr Update implementation.yml to perform the bitstream generation in CI
- Loading branch information
Showing
3 changed files
with
196 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -ex | ||
|
||
cd $(dirname "$0") | ||
|
||
if [[ -z "${Board}" ]]; then | ||
Arty='35t' | ||
elif [[ $Board == '35t' ]]; then | ||
Arty='35t' | ||
elif [[ $Board == '100t' ]]; then | ||
Arty='100t' | ||
else | ||
echo "Error Board must be 35t or 100t" | ||
exit | ||
fi | ||
echo "Selected board is" $Arty | ||
|
||
apt update -qq | ||
|
||
apt install -y git | ||
|
||
cd ../.. | ||
|
||
git clone --recursive https://github.com/stnolting/neorv32-setups | ||
|
||
mv rtl/mult/EMEM/neorv32_application_image.vhd neorv32-setups/neorv32/rtl/core | ||
|
||
mkdir -p build | ||
|
||
echo "Analyze NEORV32 CPU + MULT(P) via slink" | ||
|
||
ghdl -i --std=08 --workdir=build --work=neorv32 ./neorv32-setups/neorv32/rtl/core/*.vhd | ||
ghdl -i --std=08 --workdir=build --work=neorv32 ./neorv32-setups/neorv32/rtl/core/mem/neorv32_dmem.default.vhd | ||
ghdl -i --std=08 --workdir=build --work=neorv32 ./neorv32-setups/neorv32/rtl/core/mem/neorv32_imem.default.vhd | ||
ghdl -i --std=08 --workdir=build --work=neorv32 ./rtl/mult/*.vhd | ||
ghdl -i --std=08 --workdir=build --work=neorv32 ./rtl/mult/EMEM/neorv32_mult_wfifos_wishbone.vhd | ||
ghdl -m --std=08 --workdir=build --work=neorv32 neorv32_mult_wfifos_wishbone | ||
|
||
echo "Synthesis with yosys and ghdl as module" | ||
|
||
yosys -m ghdl -p 'ghdl --std=08 --workdir=build --work=neorv32 neorv32_mult_wfifos_wishbone; synth_xilinx -nodsp -nolutram -flatten -abc9 -arch xc7 -top neorv32_mult_wfifos_wishbone; write_json neorv32_mult_wfifos_wishbone.json' | ||
|
||
if [[ $Arty == '35t' ]]; then | ||
echo "Place and route" | ||
nextpnr-xilinx --chipdb /usr/local/share/nextpnr/xilinx-chipdb/xc7a35t.bin --xdc impl/nextpnr/arty.xdc --json neorv32_mult_wfifos_wishbone.json --write neorv32_mult_wfifos_wishbone_routed.json --fasm neorv32_mult_wfifos_wishbone.fasm | ||
echo "Generate bitstream" | ||
../../prjxray/utils/fasm2frames.py --part xc7a35tcsg324-1 --db-root /usr/local/share/nextpnr/prjxray-db/artix7 neorv32_mult_wfifos_wishbone.fasm > neorv32_mult_wfifos_wishbone.frames | ||
../../prjxray/build/tools/xc7frames2bit --part_file /usr/local/share/nextpnr/prjxray-db/artix7/xc7a35tcsg324-1/part.yaml --part_name xc7a35tcsg324-1 --frm_file neorv32_mult_wfifos_wishbone.frames --output_file neorv32_mult_wfifos_wishbone_35t.bit | ||
elif [[ $Arty == '100t' ]]; then | ||
echo "Place and route" | ||
nextpnr-xilinx --chipdb /usr/local/share/nextpnr/xilinx-chipdb/xc7a100t.bin --xdc impl/nextpnr/arty.xdc --json neorv32_mult_wfifos_wishbone.json --write neorv32_mult_wfifos_wishbone_routed.json --fasm neorv32_mult_wfifos_wishbone.fasm | ||
echo "Generate bitstream" | ||
../../prjxray/utils/fasm2frames.py --part xc7a100tcsg324-1 --db-root /usr/local/share/nextpnr/prjxray-db/artix7 neorv32_mult_wfifos_wishbone.fasm > neorv32_mult_wfifos_wishbone.frames | ||
../../prjxray/build/tools/xc7frames2bit --part_file /usr/local/share/nextpnr/prjxray-db/artix7/xc7a100tcsg324-1/part.yaml --part_name xc7a100tcsg324-1 --frm_file neorv32_mult_wfifos_wishbone.frames --output_file neorv32_mult_wfifos_wishbone_100t.bit | ||
fi | ||
|
||
echo "Implementation completed" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -ex | ||
|
||
cd $(dirname "$0") | ||
|
||
if [[ -z "${Board}" ]]; then | ||
Arty='35t' | ||
elif [[ $Board == '35t' ]]; then | ||
Arty='35t' | ||
elif [[ $Board == '100t' ]]; then | ||
Arty='100t' | ||
else | ||
echo "Error Board must be 35t or 100t" | ||
exit | ||
fi | ||
echo "Selected board is" $Arty | ||
|
||
apt update -qq | ||
|
||
apt install -y git | ||
|
||
cd ../.. | ||
|
||
git clone --recursive https://github.com/stnolting/neorv32-setups | ||
|
||
mv rtl/mult/EMEM/neorv32_application_image.vhd neorv32-setups/neorv32/rtl/core | ||
|
||
mkdir -p build | ||
|
||
echo "Analyze NEORV32 CPU + MULT(P) via slink" | ||
|
||
ghdl -i --std=08 --workdir=build --work=neorv32 ./neorv32-setups/neorv32/rtl/core/*.vhd | ||
ghdl -i --std=08 --workdir=build --work=neorv32 ./neorv32-setups/neorv32/rtl/core/mem/neorv32_dmem.default.vhd | ||
ghdl -i --std=08 --workdir=build --work=neorv32 ./neorv32-setups/neorv32/rtl/core/mem/neorv32_imem.default.vhd | ||
ghdl -i --std=08 --workdir=build --work=neorv32 ./rtl/mult/fifo.vhd | ||
ghdl -i --std=08 --workdir=build --work=neorv32 ./rtl/multp/*.vhd | ||
ghdl -i --std=08 --workdir=build --work=neorv32 ./rtl/multp/EMEM/neorv32_multp_wfifos_wishbone.vhd | ||
ghdl -m --std=08 --workdir=build --work=neorv32 neorv32_multp_wfifos_wishbone | ||
|
||
echo "Synthesis with yosys and ghdl as module" | ||
|
||
yosys -m ghdl -p 'ghdl --std=08 --workdir=build --work=neorv32 neorv32_multp_wfifos_wishbone; synth_xilinx -nodsp -nolutram -flatten -abc9 -arch xc7 -top neorv32_multp_wfifos_wishbone; write_json neorv32_multp_wfifos_wishbone.json' | ||
|
||
if [[ $Arty == '35t' ]]; then | ||
echo "Place and route" | ||
nextpnr-xilinx --chipdb /usr/local/share/nextpnr/xilinx-chipdb/xc7a35t.bin --xdc impl/nextpnr/arty.xdc --json neorv32_multp_wfifos_wishbone.json --write neorv32_multp_wfifos_wishbone_routed.json --fasm neorv32_multp_wfifos_wishbone.fasm | ||
echo "Generate bitstream" | ||
../../prjxray/utils/fasm2frames.py --part xc7a35tcsg324-1 --db-root /usr/local/share/nextpnr/prjxray-db/artix7 neorv32_multp_wfifos_wishbone.fasm > neorv32_multp_wfifos_wishbone.frames | ||
../../prjxray/build/tools/xc7frames2bit --part_file /usr/local/share/nextpnr/prjxray-db/artix7/xc7a35tcsg324-1/part.yaml --part_name xc7a35tcsg324-1 --frm_file neorv32_multp_wfifos_wishbone.frames --output_file neorv32_multp_wfifos_wishbone_35t.bit | ||
elif [[ $Arty == '100t' ]]; then | ||
echo "Place and route" | ||
nextpnr-xilinx --chipdb /usr/local/share/nextpnr/xilinx-chipdb/xc7a100t.bin --xdc impl/nextpnr/arty.xdc --json neorv32_multp_wfifos_wishbone.json --write neorv32_multp_wfifos_wishbone_routed.json --fasm neorv32_multp_wfifos_wishbone.fasm | ||
echo "Generate bitstream" | ||
../../prjxray/utils/fasm2frames.py --part xc7a100tcsg324-1 --db-root /usr/local/share/nextpnr/prjxray-db/artix7 neorv32_multp_wfifos_wishbone.fasm > neorv32_multp_wfifos_wishbone.frames | ||
../../prjxray/build/tools/xc7frames2bit --part_file /usr/local/share/nextpnr/prjxray-db/artix7/xc7a100tcsg324-1/part.yaml --part_name xc7a100tcsg324-1 --frm_file neorv32_multp_wfifos_wishbone.frames --output_file neorv32_multp_wfifos_wishbone_100t.bit | ||
fi | ||
|
||
echo "Implementation completed" |