Skip to content

Small SERV-based SoC primarily for OpenMPW tapeout

License

Notifications You must be signed in to change notification settings

gaogaogao0/subservient

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

subservient

Small SERV-based SoC primarily for OpenMPW tapeout

Introduction

Subservient is a small SoClet around the award-winning SERV, the world's smallest RISC-V CPU intended to be used for ASIC implementations. The SoClet exposes a port intended to be connected to be connected to an SRAM used for both the register file and data/instruction memory, a debug interface for external access to the SoC memory map and GPIO.

This project has been primarily funded through the NGI0 PET Fund, a fund established by NLnet with financial support from the European Commission's Next Generation Internet programme, under the aegis of DG Communications Networks, Content and Technology under grant agreement No 825310.

Interfaces

Architecture

Top-level

Top level

The top-level of Subservient consists of the subservient_core component which contains all the vital SoC infrastructure, and the standard peripheral controllers, currently only consisting of GPIO. This is a convenience wrapper for users who are happy with the standard set of peripherals.

Subservient core

Core

Subservient core contains SERV and the necessary components to use a single SRAM for SERV's register file, data and instruction memories. It also routes all memory accesses >=0x40000000 to the wishbone peripheral interface. In the debug mode, the debug interface takes over the accesses from SERV. This allows an external wishbone master to access all subservient peripherals as well as programming the SRAM through this interface.

Testbench

Core

Subservient comes with a simple testbench that allows running programs on the simulated SoC and monitor its outputs either as a GPIO or as a UART. The testbench flow is as follows:

  1. Subservient is started up in debug mode by asserting debug_mode. This prevents the CPU from accessing the SRAM until we are ready for that.
  2. Reset is released
  3. The SRAM is written through the debug interface from a user-specified file in the verilog hex format.
  4. Debug mode is turned off
  5. CPU starts executing from the program written to SRAM

Getting started

Subservient uses FuseSoC to handle its dependencies and run the SoC through different tool flows.

  1. Install FuseSoC pip3 install fusesoc
  2. Create an empty workspace directory and enter it mkdir workspace && cd workspace
  3. From within your workspace directory add the required FuseSoC libraries
    • Base library fusesoc library add fusesoc-cores https://github.com/fusesoc/fusesoc-cores
    • SERV fusesoc library add serv https://github.com/olofk/serv
    • Subservient fusesoc library add subservient https://github.com/olofk/subservient
  4. FuseSoC should be able to see the subservient SoC. Verify this by running fusesoc core show subservient
  5. We can now run a simulation with the simulator we have at hand. fusesoc run --target=sim_hello --tool=icarus subservient --timeout=4000000 will launch a simulation using Icarus Verilog and printing out a text string twice before exiting. More information about simulations can be found in the simulation section

Simulation

TODO

About

Small SERV-based SoC primarily for OpenMPW tapeout

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Verilog 75.7%
  • C++ 10.2%
  • Python 6.3%
  • Assembly 6.1%
  • Makefile 1.3%
  • Tcl 0.4%