This repo is currently a work in progress nothing is currently yet working!
This repo contains documentation of various FPGA architectures, it is currently concentrating on;
- Lattice iCE40
- Artix 7
The aim is to include useful documentation (both human and machine readable) on the primitives and routing infrastructure for these architectures. We hope this enables growth in the open source FPGA tools space.
The repo includes;
- Black box part definitions
- Verilog simulations
- Verilog To Routing architecture definitions
- Documentation for humans
The documentation can be generated using Sphinx.
We have to do some kind of weird things to make VPR work for real architectures, here are some tips;
-
VPR doesn't have channels right or above tiles on the right most / left most edge. To get these channels, pad the left most / right most edges with EMPTY tiles.
-
Generally we use the
vpr/pad
object for the actual.input
and.output
BLIF definitions. These are then connected to the tile which has internal IO logic.
-
XXX/arch/
- Full architecture definitions for Verilog To RoutingXXX/arch/YYYY-virt
- Verilog to Routing architecture definitions generally are not able to able to generate the exact model of many FPGA routing interconnects, but this is a pretty close.
-
XXX/arch/primitives/
- The primitives that make up the iCE40. These are generally used inside the tiles. -
XXX/tiles/
- The tiles found in the architecture. -
XXX/tests/
- Tests for making sure the architecture specific features works with VPR. -
vpr
- Common defines used by multiple architectures.
-
pb_type.xml
- The Verilog to Routing Complex Block defintinition.-
Inside
primitives
directory they should be intermediate or primitive<pb_type>
and thus allow setting thenum_pb
attribute. -
Inside
tiles
directory they should be top level<pb_type>
and thus have,capacity
(if a pin type),
width
&height
(and maybearea
)
-
-
model.xml
- The Verilog to Routing Recognized BLIF Models defintinition. -
sim.v
- A Verilog definition of the object. It should;-
Match the definition in
model.xml
(should be onemodule
insim.v
for everymodel
inmodel.xml
) -
Include a
ifndef BLACKBOX
section which actually defines how the Verilog works.
-
-
macro.v
- A Verilog definition of the object which a user might instantiate in their own code when specifying a primitive. This should match the definition provided by a manufacturer. Examples would be the definitions in;
BLK_MB-block_1_name-block_2_name
-BLOCK
which is a "mega block". A "mega block" is a top level block which is made up of other blocks.BLK_XX-name
-BLOCK
which is the hierarchy. Maps toBLK_SI
->SITE
andBLK_TI
->TILE
in Xilinx terminology.BLK_IG-name
-BLOCK
which is ignored. They don't appear in the output hierarchy and are normally used when something is needed in the description which doesn't match actual architecture.BEL_RX-mux_name
-BEL
which is a routing mux. Routing muxes are statically configured at PnR time.BEL_MX-mux_name
-BEL
which is a mux .BEL_LT-lut_name
-BEL
which is a look up table.BEL_MM-mem_name
-BEL
which is a memory.BEL_FF-ff_name
-BEL
which is a flip flop (FF
).BEL_LL-latch_name
-BEL
which is a latch (LL
).BEL_BB-name
-BEL
which is a black box (BB
).PAD_IN-name
- A signal input location.PAD_OT-name
- A signal output location.
-
Unless there is a good reason otherwise, all muxes should be generated via
mux_gen.py
-
DRY (Don't repeat yourself) - Uses XML XIncludes to reuse stuff!
Run the full suite:
# doesn't work yet
# export ARCH=artix7
export ARCH=testarch
make env
make .git/info/exclude
make redir
make
Test the rr_graph library:
PATH=$PWD/env/conda/bin/:$PATH
PYTHONPATH=$PWD/utils:$PYTHONPATH
python3 -m lib.rr_graph.graph
Parse an rr_graph.xml using rr_graph library:
cd tests
make wire.rr_graph.xml
stat build/testarch/2x4/wire.rr_graph.xml
# Run test suite
# Dump an rr_graph file
python3 -m lib.rr_graph.graph build/testarch/2x4/wire.rr_graph.xml
See some example vpr commands (while still in tests):
make V=1
-
third_party/yosys/
Verilog parsing and synthesis. -
third_party/vtr/
Place and route tool. -
third_party/xmllint
Tool for parsing, formatting XML. Used to process the XML files before giving them to VPR. -
third_party/sim/iverilog/
Very correct FOSS Verilog Simulator -
third_party/sim/verilator/
Fast FOSS Verilog Simulator -
third_party/docgen/sphinx/
Tool for generating nice looking documentation. -
third_party/docgen/breathe/
Tool for allowing Doxygen and Sphinx integration. -
third_party/docgen/doxygen-verilog
Allows using Doxygen style comments inside Verilog files. -
third_party/docgen/netlistsvg/
Tool for generating nice logic diagrams from Verilog code. -
third_party/docgen/symbolator/
Tool for generating symbol diagrams from Verilog (and VHDL) code. -
third_party/docgen/wavedrom/
Tool for generating waveform / timing diagrams.