Skip to content

Commit d8dd115

Browse files
committed
s/SymbiFlow/F4PGA/
Signed-off-by: Unai Martinez-Corral <umartinezcorral@antmicro.com>
1 parent 14ff738 commit d8dd115

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

common/common.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ ${BOARD_BUILDDIR}/${TOP}.bit: ${BOARD_BUILDDIR}/${TOP}.fasm
7272

7373
download: ${BOARD_BUILDDIR}/${TOP}.bit
7474
if [ $(TARGET)='arty_35' ]; then \
75-
openocd -f ~/opt/symbiflow/xc7/conda/envs/xc7/share/openocd/scripts/board/digilent_arty.cfg -c "init; pld load 0 ${BOARD_BUILDDIR}/${TOP}.bit; exit"; \
75+
openocd -f ~/opt/f4pga/xc7/conda/envs/xc7/share/openocd/scripts/board/digilent_arty.cfg -c "init; pld load 0 ${BOARD_BUILDDIR}/${TOP}.bit; exit"; \
7676
elif [ $(TARGET)='arty_100' ]; then \
77-
openocd -f ~/opt/symbiflow/xc7/conda/envs/xc7/share/openocd/scripts/board/digilent_arty.cfg -c "init; pld load 0 ${BOARD_BUILDDIR}/${TOP}.bit; exit"; \
77+
openocd -f ~/opt/f4pga/xc7/conda/envs/xc7/share/openocd/scripts/board/digilent_arty.cfg -c "init; pld load 0 ${BOARD_BUILDDIR}/${TOP}.bit; exit"; \
7878
elif [ $(TARGET)='basys3' ]; then \
79-
openocd -f ~/opt/symbiflow/xc7/conda/envs/xc7/share/openocd/scripts/board/digilent_arty.cfg -c "init; pld load 0 ${BOARD_BUILDDIR}/${TOP}.bit; exit"; \
79+
openocd -f ~/opt/f4pga/xc7/conda/envs/xc7/share/openocd/scripts/board/digilent_arty.cfg -c "init; pld load 0 ${BOARD_BUILDDIR}/${TOP}.bit; exit"; \
8080
else \
8181
echo "The commands needed to download the bitstreams to the board type specified are not currently supported by the F4PGA makefiles. \
8282
Please see documentation for more information."; \

xc7/litex_demo/README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,24 +23,24 @@ There are multiple CPU types supported, choose one from the below commands to ge
2323
.. code-block:: bash
2424
:name: example-litex_picorv32-a35t-group
2525
26-
./src/litex/litex/boards/targets/arty.py --toolchain=symbiflow --cpu-type=picorv32 --sys-clk-freq 80e6 --output-dir build/picorv32/arty_35 --variant a7-35 --build
26+
./src/litex/litex/boards/targets/arty.py --toolchain=f4pga --cpu-type=picorv32 --sys-clk-freq 80e6 --output-dir build/picorv32/arty_35 --variant a7-35 --build
2727
2828
.. code-block:: bash
2929
:name: example-litex_picorv32-a100t-group
3030
31-
./src/litex/litex/boards/targets/arty.py --toolchain=symbiflow --cpu-type=picorv32 --sys-clk-freq 80e6 --output-dir build/picorv32/arty_100 --variant a7-100 --build
31+
./src/litex/litex/boards/targets/arty.py --toolchain=f4pga --cpu-type=picorv32 --sys-clk-freq 80e6 --output-dir build/picorv32/arty_100 --variant a7-100 --build
3232
3333
**VexRiscv**
3434

3535
.. code-block:: bash
3636
:name: example-litex_vexriscv-a35t-group
3737
38-
./src/litex/litex/boards/targets/arty.py --toolchain=symbiflow --cpu-type=vexriscv --sys-clk-freq 80e6 --output-dir build/vexriscv/arty_35 --variant a7-35 --build
38+
./src/litex/litex/boards/targets/arty.py --toolchain=f4pga --cpu-type=vexriscv --sys-clk-freq 80e6 --output-dir build/vexriscv/arty_35 --variant a7-35 --build
3939
4040
.. code-block:: bash
4141
:name: example-litex_vexriscv-a100t-group
4242
43-
./src/litex/litex/boards/targets/arty.py --toolchain=symbiflow --cpu-type=vexriscv --sys-clk-freq 80e6 --output-dir build/vexriscv/arty_100 --variant a7-100 --build
43+
./src/litex/litex/boards/targets/arty.py --toolchain=f4pga --cpu-type=vexriscv --sys-clk-freq 80e6 --output-dir build/vexriscv/arty_100 --variant a7-100 --build
4444
4545
Depending on which board and CPU-type you selected, the bitstream is loacted in:
4646

xc7/litex_sata_demo/litesata.v

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16863,7 +16863,7 @@ GTPE2_COMMON #(
1686316863
// FIXME: The GTREFCLK1 needs to be used for this design.
1686416864
// Vivado automatically swaps the input accordingly to the IBUFDS placement location
1686516865
// and this is currently not doable in VPR. For the time being, we can just manually adjust it.
16866-
// https://github.com/SymbiFlow/symbiflow-arch-defs/issues/2328
16866+
// https://github.com/chipsalliance/f4pga-arch-defs/issues/2328
1686716867
.GTREFCLK1(a7litesataphy_gtrefclk0),
1686816868
.PLL0LOCKEN(1'd1),
1686916869
.PLL0PD(1'd0),
@@ -16880,7 +16880,7 @@ GTPE2_COMMON #(
1688016880

1688116881
// FIXME: FDPE connected to the IBUFDS clk output need to be in the same clock region, otherwise resulting
1688216882
// in an unroutable situation.
16883-
// https://github.com/SymbiFlow/symbiflow-arch-defs/issues/2327
16883+
// https://github.com/chipsalliance/f4pga-arch-defs/issues/2327
1688416884
(* LOC="SLICE_X51Y227" *)
1688516885
FDPE #(
1688616886
.INIT(1'd1)

0 commit comments

Comments
 (0)