From 5a214b4c79e7455c60126f63c04522e9685fc0dd Mon Sep 17 00:00:00 2001 From: Gwenhael Goavec-Merou Date: Thu, 20 Aug 2020 17:16:19 +0200 Subject: [PATCH] README: update instructions about lichee tang and anlogic use --- README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/README.md b/README.md index cba003b..cb7f2bd 100644 --- a/README.md +++ b/README.md @@ -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 +```