kianv a simple implementation of a rv32im riscv cpu and soc in verilog with firmware that runs raytracer, mandelbrot, etc.....

Overview

riscv A very simple riscv cpu/soc one single file implementation created in my spare time! But it is full rv32im CPU :) I have wrote all from scratch to learn and has many potential to speedup. I wanted only to bootstrap my cpu and is a sparetime hobby project. I was able to run on ulx3s a raytracer in spram with 115MHz. You can run raytracing, mandelbrot in float and integer. You can run oled demos and many more! But all is a hack!

riscv

The project starts after I have done a certificate in https://www.edx.org/course/building-a-risc-v-cpu-core

asciicast

I have some example socs implemented: icoboard, ulx3s, icebreak, icefun, breakout and not checkedin yet: arty7, gowin, deca, colorlight, blackicemx
cd simple/socs
./build_fpga.sh
ico|ulx3s|ice|fun|breakout

./build_fpga.sh ico # will build for icoboard fpga image and will flash\

Toolchain
Check https://github.com/riscv-collab/riscv-gnu-toolchain and build a RV32GC toolchain under /opt
riscv32ic riscv32im riscv32imc \

Or use another toolchain and adjust:
simple/firmware/kianv_firmware_bram_gcc.sh simple/firmware/kianv_firmware_gcc.sh

The firmware is flashed on nor memory! On simple fpga boards like iceFun or breakout the code will executed from nor flash. On icoboard you can run it from sram and you have 1MBytes SRAM memory! On icebreaker you can run it over spram or bram, .... I have implemented the simplest spi flash memory controller you can have. On icebreaker a quad spi with ddr is possible. It is funny to see instruction executed from nor taking > 64 cycles :( and is nice to see your cpu will raytrace a picture on your oled and executes code from nor flash.......What a nice experience
Firmware:
cd simple/firmware
flash with\ ./flash_firmware.sh
ico|ulx3s|ice|fun|breakout <.ld> <.c>

spi_nor2bram_fun.ld # boot from spi-nor icefun and copy code to bram
spi_nor2bram.ld # boot from spi-nor icebreaker, breakout, icoboard and copy to bram
spi_nor2bram_ulx3s.ld # boot from spi-nor ulx3s and copy to bram
spi_nor2spram.ld # boot from spi-nor icebreaker and copy to spram
spi_nor2sram.ld # boot from spi-nor and copy to sram icoboard
spi_nor_fun.ld # boot and execute instructions only from spi-nor on icefun
spi_nor.ld # boot and execute instructions only from spi-nor all boards, excluded icefun

example rayracing on icefun:
./flash_firmware.sh spi_nor_fun.ld main_raytracer.c #with oled ssd1331
example rayracing on iceboard:
./flash_firmware.sh spi_nor2sram.ld main_raytracer.c #with oled ssd1331
example rayracing on ulx3s:
./flash_firmware.sh spi_nor2bram_ulx3s.ld main_raytracer.c #with oled ssd1331
example rayracing on breakout:
./flash_firmware.sh spi_nor.ld main_raytracer.c #with oled ssd1331
example rayracing on breakout:
./flash_firmware.sh spi_nor.ld main_raytracer_st7735.c #with oled st7735s instruction over flash
example rayracing on ulx3s:
./flash_firmware.sh spi_nor2bram_ulx3s.ld main_raytracer_st7735.c #with oled st7735s instruction over spram

try main_mandel.c or main_mandel_float.c

also we have st7735 versions\

some programs are using external uart hw, check pcfs but icebreaker, breakout and ulx3s don't need external uart hw. Check for ttyUSB devices and try stty -F /dev/ttyUSBx 11520 raw
cat /dev/ttyUSBx

to get output like pi.c, main_prime.c, main_rv32m.c, main_rv32m_printf.c, ....

On icoboard I have implemented also a vga controller that uses the sram as framebuffer. The cpu and the videocontroller shares the sram memmory together. But I have disabled in the kianv_soc_icoboard.v the videocontroller but you can enable it. I wanted to write a hyperram controller for icoboard but found out that hyperram and sram shares the same databus and then I switch to the oled displays. I was complete unmotivated. My dream was to use hyperram with a simple cache to run code for my cpu and using the sram as framebuffer. But with same databus it makes no sense for me!

Have fun!

Hirosh

riscv

You might also like...
Risc-V RV32IMAFC + 80s ERA SoC (bitmap + GPU, sprites, tilemaps)
Risc-V RV32IMAFC + 80s ERA SoC (bitmap + GPU, sprites, tilemaps)

A simple (no interrupts or exceptions/traps), Risc-V RV32IMAFC CPU, with a pseudo SMT (dual thread) capability. The display is similar to the 8-bit era machines, along with audio, SDCARD read support, UART and PS/2 keyboard input.

A C++ 17 implementation of qntm's base65536 that runs at compile time

A C++ 17 implementation of qntm's base65536 that runs at compile time. With alternatives for C++ 11 and C++ 14 that runs at runtime. Useage: At compil

CPU implementation of Seidel aberrations for screen-space DOF by Niels Asberg.

PrimeFocusCPU CPU implementation of Seidel aberrations for screen-space DOF by Niels Asberg. MIT License Copyright (c) 2021 Niels Asberg Permission is

CPU Sparse Voxel Octree Implementation
CPU Sparse Voxel Octree Implementation

Sparse Voxel Octrees This project provides a multithreaded, CPU Sparse Voxel Octree implementation in C++, capable of raytracing large datasets in rea

Speed Running and Competition Doom. For strictly vanilla speed runs and competitions - forked from CNDoom

Speed Running and Competition Doom Speed Running and Competition Doom is based on Chocolate Doom and aims to accurately reproduce the original DOS ver

Builds and runs an exported image classification impulse on ESP32 Cam
Builds and runs an exported image classification impulse on ESP32 Cam

ESP32 Cam and Edge Impulse How to run custom inference on a ESP32 cam using Edge Impulse. Material This code has been tested the AI Thinker ESP32 Cam

This is a imgui login that runs with keyauth with only uses the key and has tabs for you to paste your stuff in c++

KeyAuth-Imgui-key-Login This is a imgui login that runs with keyauth with only uses the key and has tabs for you to paste your stuff in c++ KeyAuth CP

A light-weight Flutter Engine Embedder based on HADK ,which for Android devices that runs without any java code

flutter-hadk A light-weight Flutter Engine Embedder based on HADK ,which for Android devices that runs without any java code 1.Build by android-ndk-to

Freeze OS is a cross-platform operating system emulator that runs on top of an interpreter called the Freeze interpreter.
Freeze OS is a cross-platform operating system emulator that runs on top of an interpreter called the Freeze interpreter.

Freeze OS is a cross-platform operating system emulator that runs on top of an interpreter called the Freeze interpreter. The operating system code is basically written in the Freeze programming language that is passed to the Freeze interpreter. The idea is to skip instances where the operating system needs to handle low level operators and focus on higher level stuff, like malware analysis, AI, and others.

Comments
  • Icoboard:

    Icoboard: "Checking 33.33 ns (30.00 MHz) clock constraint: FAILED."

    On a recent yosys+nextpnr-ice40 checkout, while trying to build for Icoboard:

    ... Info: Program finished normally. #nextpnr-ice40 -r --pre-pack clocks.py --hx8k --package ct256 --json kianv_soc_icoboard.json --asc kianv_soc_icoboard.asc --opt-timing --pcf icosoc.pcf #nextpnr-ice40 -r --freq 30 --hx8k --package ct256 --json kianv_soc_icoboard.json --asc kianv_soc_icoboard.asc --pcf icosoc.pcf icetime -c 30 -d hx8k -mtr kianv_soc_icoboard.rpt kianv_soc_icoboard.asc // Reading input .asc file.. // Reading 8k chipdb file.. // Creating timing netlist.. // Timing estimate: 37.31 ns (26.80 MHz) // Checking 33.33 ns (30.00 MHz) clock constraint: FAILED. make: *** [Makefile.icoboard:30: kianv_soc_icoboard.rpt] Error 1

    opened by piso77 2
Owner
splinedrive
splinedrive
LiteX is a Migen/MiSoC based Core/SoC builder that provides the infrastructure to easily create Cores/SoCs (with or without CPU).

LiteX is a Migen/MiSoC based Core/SoC builder that provides the infrastructure to easily create Cores/SoCs (with or without CPU). The common components of a SoC are provided directly: Buses and Streams (Wishbone, AXI, Avalon-ST), Interconnect, Common cores (RAM, ROM, Timer, UART, etc...), CPU wrappers/integration, etc... and SoC creation capabilities can be greatly extended with the ecosystem of LiteX cores (DRAM, PCIe, Ethernet, SATA, etc...) that can be integrated/simulated/build easily with LiteX.

null 1.9k Jan 3, 2023
SFML-based Mandelbrot viewer program

mandelbrot SFML-based Mandelbrot viewer program. Dependencies CMake 3.16 C++17 SFML 2.5 Building cmake -B build -DCMAKE_BUILD_TYPE=Release cmake --bui

Chris Thrasher 13 Sep 28, 2022
Project PLS is developed based on icarus iverilog and will compile verilog into a much faster optimized model.

Getting Started with PLS The project is developed based on icarus iverilog. Special thanks to Stephen Williams ([email protected]). PLS is a Verilog si

null 11 Dec 19, 2022
General repository for all code (games, BIOS, etc) that runs within the Vircon32 console itself

Vircon32: Console software This is a general repository containing all Vircon32 sources for any software running on the console itself. This includes:

Vircon32 17 Nov 13, 2022
A Pipelined RISC-V RV32I Core in Verilog

Toast-RV32i Toast is a RISC-V soft core written in Verilog that implements a subset of the RV32I ISA version 2.2. Documentation: https://toast-core.re

George Yu 28 Dec 20, 2022
repo to house various LLVM based SIHFT passes for RISCV 32/64 soft error resilience

compas-ft-riscv COMPAS: Compiler-assisted Software-implemented Hardware Fault Tolerance implemented in LLVM passes for the RISC-V backend Repo to hous

EDA@TUM 2 Jan 10, 2022
Tiny FEL tools for allwinner SOC, support RISC-V D1 chip

XFEL Tiny FEL tools for allwinner SOC, support RISC-V D1 chip. How to build The xfel tools depends on the libusb-1.0 library, you need to install libu

xboot.org 132 Dec 30, 2022
Port of MIT's xv6 OS to the Nezha RISC-V board with Allwinner D1 SoC

xv6 is a re-implementation of Dennis Ritchie's and Ken Thompson's Unix Version 6 (v6). xv6 loosely follows the structure and style of v6, but is impl

Michael Engel 62 Dec 12, 2022
Porting RT-Thread for Gowin GW1NSR-4C Soc GCC version

Porting RT-Thread for Gowin GW1NSR-4C Soc GCC version Hello everyone, this project based on RT-THREAD NANO 3.1.5 and GOWIN GW1NSR-4C Soc chip. The com

Ray 3 Apr 23, 2022
Kernel with ARM/KVM for SM-A600G (Samsung Galaxy A6) with Exynos7870 SoC

Kernel source for SM-A600G (Samsung Galaxy A6 with exynos7870) with KVM support. Warning: Super long text ahead, be careful not to mess up your brain

@raspiduino 6 Sep 20, 2022