NOTE: The original non-flattened version of this repo is found here: https://github.com/algofoogle/algofoogle-multi-caravel
A team of participants from the Zero to ASIC Course decided to independently assemble this group submission to GFMPW-1 as a way to test/debug/characterise some of their more complex, larger, and experimental designs.
There are 7 designs in this one die, selectable via a mux. Each of the individual designs is referenced below with a link to its original repo.
For my comprehensive notes about the journey to get this submitted, start here with my final journal entry 0189 and work backwards by using the 'Previous journal' link atop each page.
This repo is licensed with Apache 2.0.
The die layout (as shown in the cover image above) can be downloaded as a PDF: docs/ztoa-team-layout--gfmpw-1.pdf
.
By: algofoogle (Anton Maurovic) - original repo: raybox-zero @ gf180-for-mux
This project is an attempt to do a minimalist ray caster (Wolf3D-like) VGA renderer in hardware, as a sort of primitive GPU. Earlier, simpler version was previously submitted to be made as part of a community ASIC via the Tiny Tapeout program (see tt04-raybox-zero).
This version features support for an external SPI memory containing wall texture data, and extra registers for changing the appearance of the rendering. It also has a reworked wall tracer.
For additional documentation and details about the project, please see algofoogle/raybox-zero
Same as Design 0 above, but with different placement, different routing via mux.
By: embelon (Pawel Sitarz) - Original repo: wb_hyperram @ 186838b
This is an implementation of a HyperRAM memory driver connected to Wishbone bus.
For additional documentation and details about the project, please see embelon/wb_hyperram
By: dsatizabal (Diego Satizabal) - original repo: cpuy
CPUy is an 8-bits CPU "mind-crafted by experience" and inspired in the AT89S5X series of processors from Atmel which were used by the author at the university to develop microcontrollers projects. The design does not follow any particular well-known architecture for its implementation.
CPUy is meant to be used with an external ROM chip like one of the 27CXXX series that must be flashed with the desired program to be executed supporting a maximum of 4KB of program memory.
The characteristics of CPUy are:
For additional documentation and details about the project, please see dsatizabal/cpuy
By: urish (Uri Shaked) - original repo: gfmpw1-simon-says @ gds_north
Simon says is a simple electronic memory game: the user has to repeat a growing sequence of colors. The sequence is displayed by lighting up the LEDs. Each color also has a corresponding tone.
In each turn, the game will play the sequence, and then wait for the user to repeat the sequence by pressing the buttons according to the color sequence. If the user repeated the sequence correctly, the game will play a "leveling-up" sound, add a new color at the end of the sequence, and move to the next turn.
The game continues until the user has made a mistake. Then a game over sound is played, and the game restarts.
You can play the game using the online Wokwi simulation at https://wokwi.com/projects/371755521090136065. The simulation also shows the wiring diagram.
For additional documentation and details about the project, please see urish/gfmpw1-simon-says
By: algofoogle (Anton Maurovic) - original repo: solo_squash @ main
This is a Verilog HDL project that implements a primitive digital-logic-based video game that resembles Pong, but with one player just bouncing a ball within a 3-walled space, resembling a game of squash but with just 1 paddle. It also uses a subset of the vertical timing to produce speaker tones for different game states.
For additional documentation and details about the project, please see algofoogle/solo_squash
By: algofoogle (Anton Maurovic) - original repo: tt05-vga-spi-rom @ main
This is an experiment to see if we can generate a VGA display that uses a constant stream of data from an external SPI ROM, demonstrating a few specific goals:
For additional documentation and details about the project, please see algofoogle/tt05-vga-spi-rom
For documentation on controlling the mux, see: Using LA pins to control the mux
For example firmware, see C source files in test subdirectories of verilog/dv/cocotb/, e.g. hyperram_test.c.
NOTE: The original repo with all development progress branches can be found on GitHub: https://github.com/algofoogle/algofoogle-multi-caravel
All work branches from
gf180-base
, which in turn is a simpler[^1] 'template-like' base that branches from efabless/caravel_user_project'sgfmpw-1d
tag.
[^1]: For more info, see: 0181 § 'What I did'.
Here's a very high-level overview of hardening any given design, assuming you already have at least something of a working OpenLane environment (or at least the prerequisites installed; see the original efabless guide for more info, but note that the PDK version in that doco might be outdated):
NOTE: Zero to ASIC VM also redirects certain other things (
MGMT_AREA_ROOT
,DESIGNS
,CARAVEL_ROOT
, etc. to subdirectories of~/asic_tools/caravel_user_project
). Check your~/.bashrc
for details. I've been trying to make this a bit more flexible (see Tip 2312A point 5) but note that I've not completed this work yet.
Switch to the branch you want (default for the submission is gf180
) set it up for the first time:
git checkout gf180 mkdir -p dependencies # Changing OPENLANE_ROOT & PDK_ROOT optional if using Zero to ASIC VM: export OPENLANE_ROOT=$(pwd)/dependencies/openlane_src export PDK_ROOT=$(pwd)/dependencies/pdks # Required: export PDK=gf180mcuD # This will download and install caravel, the PDK, required OpenLane version, etc. make setup
Each time you want to harden:
# Optional, as above: export OPENLANE_ROOT=$(pwd)/dependencies/openlane_src export PDK_ROOT=$(pwd)/dependencies/pdks # Required: export PDK=gf180mcuD # MAIN HARDENING STEP: make top_design_mux
To harden all:
make top_design_mux \ top_raybox_zero_fsm \ top_solo_squash \ top_vga_spi_rom \ urish_simon_says \ user_proj_cpu \ wrapped_wb_hyperram \ user_project_wrapper
NOTE: The final user_project_wrapper
harden is expected to end with reporting hold violations. These are intentional: They relate specifically to secondary reset lines connected to the designs, each controlled by a separate la_data_in[]
pin. While other more-stable system-wide reset options are provided, these are intended for specific experimentation/characterisation.
Running tests assumes you have set your environment (as above), have run make setup
, and have done pip install caravel-cocotb
. Additionally, you might also need to use verilog/dv/setup-cocotb.py
(or otherwise modify verilog/dv/cocotb/design_info.yaml
). For more info, see efabless/caravel_user_project @ gfmpw-1d (or a more recent gfmpw*
tag), but note that at the time of writing some of the documentation needs an update or clarification.
Anyway, given a working test environment, you can run (for example):
cd verilog/dv/cocotb SIM=RTL # or GL for a much slower and more-thorough gate-level simulation. RUNTAG=my_RTL_test_run_123 # Set to whatever you want to store results in a specific directory. caravel_cocotb -sim $SIM -tag $RUNTAG -test mux_test hyperram_test simon_test
Artefacts include .vcd
files also for all internal traces of the caravel framework, IOs, and the specific user designs.
Thank you to everyone who both contributed to this submission and also helped me along the way:
Special thanks goes to: