Embedded RISC-V implementation written in Amaranth
Reason this release was yanked:
Accidentally uploaded during CI testing of Codeberg Releases
Project description
Logo by Tokino Kei.
sentinel
Sentinel is a small RISC-V CPU (RV32I_Zicsr) written in Amaranth.
It implements the Machine Mode privileged spec, and is designed to fit into
~1000 4-input LUTs or less on an FPGA. It is a good candidate for control tasks
where a programmable state machine or custom size-tailored core would otherwise
be used.
Unlike most RISC-V implementations, Sentinel is microcoded, not pipelined. Instructions require multiple clock cycles to execute. Sentinel is therefore not necessarily a good fit for applications where high throughput/ IPC is required. Short version: minimum of 4 CPI for basic arithmetic, maximum of 69 for a 31-bit shift (yes, shift instructions need work).
Sentinel has been tested against RISC-V Formal and the RISCOF frameworks, and passes both. Once I have added a few extra tests, the core can be considered correct with respect to the RISC-V Formal model. The core is also probably correct with respect to the SAIL golden model.
Why The Name sentinel?
I've like the way the word "sentinel" sounds ever since I first learned of the word, either from the title of a book on NJ lighthouses, or on an enemy from an old Sega Genesis RPG. The term has always stuck with me since then, albeit in a much more positive light than "the soldier golems of the forces of Darkness" :). Since "sentinel" means "one who stands watch", I think it's an apt name for a CPU intended to watch over the rest of your silicon, but otherwise stay out of the way. Also, since lighthouses are indeed "Sentinels Of The Shore", I wanted to shoehorn a lighthouse into the logo :).
Quick Quick Start
Verilog Programmers
If you're primarily a Verilog/VHDL programmer, each Sentinel release includes ready-to-use, standalone Verilog as an asset. If you wish to use Verilog generated from an arbitrary commit without getting involved with the source, see Pre-Generated Verilog section of the Quick Start docs.
Amaranth Programmers
For Amaranth programmers wishing to use Sentinel without playing with the source,
you can install sentinel-cpu using pip or pdm. When a PyPI package is
available, you will probably want one of the following:
pip install sentinel-cpupdm add sentinel-cpu
However, since there's no PyPI package right now, I recommend substituting
the sentinel-cpu Name-Based Lookup
with the git+https://codeberg.org/cr1901/sentinel@main URL-based lookup. See
the As A Dependency
section of the Installation docs for other useful command-lines.
Source Code Demos
For those who want to play with the source, the absolute fastest way to get
started is to check out the source code, install pdm, use pdm to create
a virtual environment with appropriate tools, and generate an .env.toolchain
file that pdm uses to set some environment variables for Amaranth:
pipx install pdm
git clone https://codeberg.org/cr1901/sentinel.git
cd sentinel
pdm venv create -n quick-quickstart
pdm install --venv quick-quickstart -G examples -G yowasp
pdm run use-yowasp
Use pip or pipx to install pdm depending on your Python install's
recommendation.
Then, to generate Verilog core with a Wishbone Classic bus, and clk,
rst, and irq input pins, run:
pdm run --venv quick-quickstart gen
To create a demo bitstream that counts primes and sets LEDs accordingly (for the iCE40-HX8K Breakout Board), run:
pdm run --venv quick-quickstart demo -i csr -p ice40_hx8k_b_evn
The output will be available in build/ at the source code root.
If you have Rust installed
with the riscv32i-unknown-none-elf target,
you can create a Rule 110 demo that
prints neat patterns to the serial port:
pdm run --venv quick-quickstart demo-rust -i csr -p ice40_hx8k_b_evn
The output will be available in build-rust/ at the source code root.
Run pdm run --venv quick-quickstart gen -h and
pdm run --venv quick-quickstart demo -h for help, and experiment!
When you're done, unset the environment variables and optionally destroy the virtual environment, as we will not be using it again:
pdm run use-local
pdm venv remove quick-quickstart
Note that extra dependencies are required for development. See the next section.
Quick Doc Links
- To get started with an environment suitable for development, consult the Installation doc page.
- For information on the source code development environment, click
here.
- Source code guidelines are found on the Development Guidelines page.
- For other use cases, consult the Quick Start page. Note that they are a little less quick than the Quick Quick Start :).
- Sentinel has multiple test suites. External submodules have
their own
README.mds for context and quick instructions. The Testing page and subpages give further instructions and information. - The Public API has its own page.
- Internal Amaranth Components are documented on the Internals page.
- A copy of the below block diagram, detailed instruction cycle counts, and implemented CSRs are also on the Internals page.
- Microcode information has its own page.
Block Diagram
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sentinel_cpu-0.1.0b2.dev52.tar.gz.
File metadata
- Download URL: sentinel_cpu-0.1.0b2.dev52.tar.gz
- Upload date:
- Size: 5.5 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.26.8 CPython/3.14.4 Linux/6.12.85+deb13-amd64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
acbc499459791105ca8652b2d96317d6b946748384edf615098c297b22dcee45
|
|
| MD5 |
d7e906303704bf0cbfb3a2f3da011b93
|
|
| BLAKE2b-256 |
264967aa7ca40509865988513922549eed5ee069fc379bd2c59d8d90b00fc28a
|
File details
Details for the file sentinel_cpu-0.1.0b2.dev52-py3-none-any.whl.
File metadata
- Download URL: sentinel_cpu-0.1.0b2.dev52-py3-none-any.whl
- Upload date:
- Size: 72.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.26.8 CPython/3.14.4 Linux/6.12.85+deb13-amd64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8e3ff700c430c2881093caf6be498f02418c6a61393e1264717767a01298478
|
|
| MD5 |
127b7ade42ca60cc798dce418238c0ca
|
|
| BLAKE2b-256 |
36038dcf80eee3d0e569821c2d3a898394f0226b691a9bc139107aab98749082
|