Click below for the YouTube video introducing this project:
mini-rv32ima is a single-file-header, mini-rv32ima.h, in the STB Style library that:
- Implements a RISC-V rv32ima/Zifencei+Zicsr (and partial su), with CLINT and MMIO.
- Is about 400 lines of actual code.
- Has no dependencies, not even libc.
- Is easily extensible. So you can easily add CSRs, instructions, MMIO, etc!
- Is pretty performant. (~450 coremark on my laptop, about 1/2 the speed of QEMU)
- Is human-readable and in basic C code.
- Is "incomplete" in that it didn't implement the tons of the spec that Linux doesn't (and you shouldn't) use.
- Is trivially embeddable in applications.
It has a demo wrapper that:
- Implements a CLI, SYSCON, UART, DTB and Kernel image loading.
- And it only around 250 lines of code, itself.
- Compiles down to a ~18kB executable and only relies on libc.
Just see the mini-rv32ima
folder.
It's "fully functional" now in that I can run Linux, apps, etc. Compile flat binaries and drop them in an image.
I'm working on a really really simple C Risc-V emulator. So simple it doesn't even have an MMU (Memory Management Unit). I have a few goals, they include:
- Furthering RV32-NOMMU work to improve Linux support for RV32-NOMMU. (Imagine if we could run Linux on the $1 ESP32-C3)
- Learning more about RV32 and writing emulators.
- Being further inspired by @pimaker's amazing work on Running Linux in a Pixel Shader and having the sneaking suspicion performance could be even better!
- Hoping to port it to some weird places.
- Understand the most simplistic system you can run Linux on and trying to push that boundary.
- Continue to include my [education of people about assembly language].(https://www.youtube.com/watch?v=Gelf0AyVGy4)
Windows instructions (Just playing with the image)
- Clone this repo.
- Install or have TinyCC. Powershell Installer or Regular Windows Installer
- Run
winrun.ps
in thewindows
folder.
WSL (For full toolchain and image build:
- You will need to remove all spaces from your path i.e.
export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/mnt/c/Windows/system32:/snap/bin
and continue the instructions. P.S. What in the world was Windows thinking, putting a space between "Program" and "Files"??!?
Linux instructions (both):
- Clone this repo.
- Install
git build-essential
and/or whatever other requirements are in place for buildroot. make testdlimage
- It automatically downloads the image (~1MB) and runs the emulator.
- Should be up and running in about 2.5s depending on internet speed.
You can do in-depth work on Linux by:
make everything
If you want to play with the bare metal system, see below, or if you have the toolchain installed, just:
make testbare
If you just want to play emdoom, and use the prebuilt image:
- On Windows, run
windows\winrundoom.ps1
- On Linux,
cd mini-rv32ima
, and typemake testdoom
- Why not rv64?
- Because then I can't run it as easily in a pixel shader if I ever hope to.
- Can I add an MMU?
- Yes. It actually probably wouldn't be too difficult.
- Should I add an MMU?
- No. It is important to further support for nommu systems to empower minimal Risc-V designs!
Everything else: Contact us on my Discord: https://discord.com/invite/CCeyWyZ
- Further drive down needed features to run Linux.
- Remove need for RV32A extension on systems with only one CPU.
- Support for relocatable ELF executables.
- Add support for an unreal UART. One that's much simpler than the current 8250 driver.
- Maybe run this in a pixelshader too!
- Get opensbi working with this.
- Be able to "embed" rv32 emulators in random projects.
- Can I use early console to be a full system console?
- Can I increase the maximum contiguous memory allocatable?
- For @regymm and their patches to buildroot and help!
- callout: Regymm's quazisoc project.
- Buildroot (For being so helpful).
- @vowstar and their team working on k210-linux-nommu.
- This guide
- rvcodecjs I probably went through over 1,000 codes here.
If you want to build the kernel yourself:
make everything
- About 20 minutes. (Or 4+ hours if you're on Windows Subsytem for Linux 2)
- And you should be dropped into a Linux busybox shell with some little tools that were compiled here.
- Emdoom building is in the
experiments/emdoom
folder - You MUST build your kernel with
MAX_ORDER
set to >12 inbuildroot/output/build/linux-5.19/include/linux/mmzone.h
if you are building your own image. - You CAN use the pre-existing image that is described above.
- On Windows, it will be very slow. Not sure why.
If you want to use bare metal to build your binaries so you don't need buildroot, you can use the rv64 gcc in 32-bit mode built into Ubuntu 20.04 and up.
sudo apt-get install gcc-multilib gcc-riscv64-unknown-elf make
- "Hackaday Supercon 2022: Charles Lohr - Assembly in 2022: Yes! We Still Use it and Here's Why" : https://www.youtube.com/watch?v=Gelf0AyVGy4
(These things don't currently work)
(This does not work, now)
cd riscv-tests
export CROSS_COMPILE=riscv64-linux-gnu-
export PLATFORM_RISCV_XLEN=32
CC=riscv64-linux-gnu-gcc ./configure
make XLEN=32 RISCV_PREFIX=riscv64-unknown-elf- RISCV_GCC_OPTS="-g -O1 -march=rv32imaf -mabi=ilp32f -I/usr/include"
(This does not currently work!)
cd opensbi
export CROSS_COMPILE=riscv64-unknown-elf-
export PLATFORM_RISCV_XLEN=32
make
- Clear outline of CSRs: https://five-embeddev.com/riscv-isa-manual/latest/priv-csrs.html
Where yminpatch is the patch from the mailing list.
rm -rf buildroot
git clone git://git.buildroot.net/buildroot
cd buildroot
git am < ../yminpatch.txt
make qemu_riscv32_nommu_virt_defconfig
make
# Or use our configs.
Note: For emdoom you will need to modify include/linux/mmzone.h and change MAX_ORDER to 13.