README: update instructions about lichee tang and anlogic use

This commit is contained in:
Gwenhael Goavec-Merou 2020-08-20 17:16:19 +02:00
parent e0d763c4b5
commit 5a214b4c79
1 changed files with 25 additions and 0 deletions

View File

@ -361,3 +361,28 @@ __file load__:
```bash
openFPGALoader -f -b littleBee impl/pnr/*.fs
```
### Sipeed Lichee Tang
Due to a lack of information about FPGA configuration using JTAG, it's not
possible to use directly the *.bit* file.
The current way is to convert *.bit* to *.svf* by using a tool provided by
[prjtang project](https://github.com/mmicko/prjtang)
```bash
mkdir build
cd build
cmake ../
make
```
Now a file called *tangbit* is present in current directory and has to be used as
follow:
```bash
tangbit --input /somewhere.bit --svf bitstream.svf
```
__file load__:
```bash
openFPGALoader -b licheeTang /somewhere/*.svf
```