Improved build instructions by using Fusesoc as package manager and
multi-target toolchain.
Updated hello_world sample app to fetch clock from SYSCON registers.
Rebuilt all sample applications based on latest version and using SYSCON
Improve Makefile build process for samples.
Signed-off-by: Carlos de Paula <me@carlosedp.com>
Added hello_world sources and new Makefile targets for building
hello_world and Micropython inside containers.
Updated documentation reflecting these changes and moved binaries
to ./samples/binaries/.
Signed-off-by: Carlos de Paula <me@carlosedp.com>
Added a couple of improvements to the Makefile and Readme:
* Restructured the Makefile to support multiple boards based on variable
* Verilator build is also done in Docker container with local option
* Restructured Readme to reflect changes in the Makefile
* Support for running the verilator chiselwatt binary in a Docker
container in case the OS is not Linux.
Signed-off-by: Carlos de Paula <me@carlosedp.com>
This adds support for the cheap Colorlight 5A-75B ECP5 based board.
UART RX is on J19, labelled key+ on the silk screen on the back
UART TX is on J1, pin 1.
All the I/Os on this board go through bidirectional level shifters that
appear to be hardwired as outputs. To get an input pin for UART RX, we
use the button I/O which is also routed to connector J19. The downside is
we can't use the button for reset.
One potential issue is that UART TX is 5V but UART RX is 3.3V. To keep
the FPGA happy any attached UART chip needs to output 3.3V, but it also
needs to be 5V tolerant to handle the level shifted input.
Signed-off-by: Anton Blanchard <anton@linux.ibm.com>