Skip to content

Commit 396e5ec

Browse files
committed
Updated FPGA build docs
1 parent 5b855f4 commit 396e5ec

File tree

4 files changed

+58
-83
lines changed

4 files changed

+58
-83
lines changed

README.md

+2-20
Original file line numberDiff line numberDiff line change
@@ -63,24 +63,6 @@ The nRF52 is designed to handle the overall system operation. It runs Lua, as we
6363

6464
## Getting started with FPGA development
6565

66-
For quickly getting up and running, the accelerators which run on the FPGA are already pre-built and bundled within this repo. If you wish to modify the FPGA RTL, you will need to rebuild the `fpga_application.h` file which contains the entire FPGA application.
66+
The complete FPGA architecture is described in the documentation [here](docs/fpga-architecture.md).
6767

68-
1. Ensure you have the [Yosys](https://github.com/YosysHQ/yosys) installed.
69-
70-
1. Ensure you have the [Project Oxide](https://github.com/gatecat/prjoxide) installed.
71-
72-
1. Ensure you have the [nextpnr](https://github.com/YosysHQ/nextpnr) installed.
73-
74-
1. **MacOS users** can do the above three steps in one using [Homebrew](https://brew.sh).
75-
76-
```sh
77-
brew install --HEAD siliconwitchery/oss-fpga/nextpnr-nexus
78-
```
79-
80-
1. You should now be able to rebuild the project by calling `make`:
81-
82-
```sh
83-
make fpga/fpga_application.h
84-
```
85-
86-
To understand more around how the FPGA RTL works. Check the documentation [here](docs/fpga-architecture.md).
68+
The FPGA RTL is prebuilt and included in `fpga_application.h` for convenience. If you wish to modify the FPGA RTL, follow the instructions [here](docs/fpga-toolchain-setup.md).

docs/fpga-toolchain-setup.md

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# FPGA Toolchain Setup
2+
3+
## Vendor recommended workflow
4+
5+
**Radiant** is Lattice's proprietary FPGA toolchain available on x86 Linux and Windows. It is currently the only supported way to synthesize and build the FPGA project due to the requirement of Lattice IP cores which are utilized within the camera pipeline of the project.
6+
7+
1. Download Radiant [here](https://www.latticesemi.com/en/Products/DesignSoftwareAndIP/FPGAandLDS/Radiant)
8+
9+
1. Obtain a free node locked [license](https://www.latticesemi.com/Support/Licensing/DiamondAndiCEcube2SoftwareLicensing/Radiant)
10+
11+
1. You will need to purchase the following two licenses in order to build the camera pipeline portion of the project. Trial IP is available for free, however the camera pipeline will only function for a short period of time, after which the FPGA will need to be rebooted. Both licenses can be obtained from DigiKey, Mouser, or other distributors
12+
13+
- [CSI Receiver Core (DPHY-RX-CNX-US)](https://www.latticesemi.com/products/designsoftwareandip/intellectualproperty/ipcore/ipcores04/csi2dsidphyreceiver)
14+
- [Byte to Pixel Converter Core (BYTE-PIXEL-CNX-US)](https://www.latticesemi.com/products/designsoftwareandip/intellectualproperty/ipcore/ipcores04/bytetopixelconverter)
15+
16+
1. Open and build the FPGA project within the Radiant GUI
17+
18+
1. The FPGA bitstream is now ready to be used in the application firmware. Convert the `.bit` file to a C header file using the command
19+
20+
```sh
21+
make -C source/fpga RADIANT_PATH=/path/to/radiant
22+
```
23+
24+
## Open source workflow
25+
26+
An open source workflow is possible, but not yet supported in the project due to the proprietary nature of the two Lattice IP cores mentioned above. These cores would need to be replaced with open source alternatives.
27+
28+
1. Ensure you have [Yosys](https://github.com/YosysHQ/yosys) installed
29+
30+
1. Ensure you have [Project Oxide](https://github.com/gatecat/prjoxide) installed
31+
32+
1. Ensure you have [nextpnr](https://github.com/YosysHQ/nextpnr) installed
33+
34+
1. **MacOS users** can do the above three steps in one using [Homebrew](https://brew.sh).
35+
36+
```sh
37+
brew install --HEAD siliconwitchery/oss-fpga/nextpnr-nexus
38+
```
39+
40+
1. The FPGA bitstream can be build and converted to a C header file using the command
41+
42+
```sh
43+
make -C source/fpga TOOLCHAIN=YOSYS
44+
```
45+
46+
## Post RTL steps
47+
48+
After building the bitstream using either Radiant or Yosys, the [FPGA Makefile](/source/fpga/Makefile) converts the `.bit` file into a compressed LZ4 file. This file is then converted using `xxd` into a C header file. This header file is then included in the application firmware, and the FPGA bitstream is decompressed and loaded onto the FPGA at boot time by the main processor.
49+
50+
Be sure to perform a clean build of the application firmware after rebuilding the `fpga_application.h` file:
51+
52+
```sh
53+
make clean
54+
make
55+
```

docs/radiant-toolchain-setup.md

-62
This file was deleted.

source/fpga/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#
2424

2525
BUILD := ../../build
26-
TOOLCHAIN ?= YOSYS
26+
TOOLCHAIN ?= RADIANT
2727
RADIANT_PATH ?= /opt/lscc/radiant/2023.2/bin/lin64
2828

2929
fpga_application.h: $(shell find . | egrep '.sv|.pdc')

0 commit comments

Comments
 (0)