Synapse-32 is a 32-bit RISC-V CPU core written in Verilog, supporting RV32I instructions, along with Zicsr and Zifencei extensions.
This processor implements a classic 5-stage RISC pipeline:
-
IF (Instruction Fetch):
- Fetches the next instruction from instruction memory
- Updates the Program Counter (PC)
-
ID (Instruction Decode):
- Decodes the instruction
- Reads values from register file
- Generates immediate values and control signals
-
EX (Execute):
- Performs ALU operations
- Calculates branch/jump addresses
- Makes branch decisions
-
MEM (Memory Access):
- Performs memory reads and writes
- Handles load and store instructions
-
WB (Write Back):
- Writes results back to the register file
- Selects appropriate data source (ALU or memory)
The CPU implements several techniques to handle pipeline hazards:
-
Data Forwarding:
- Resolves Read-After-Write (RAW) hazards
- Forwards data from EX/MEM and MEM/WB stages to the EX stage
- Avoids pipeline stalls in most cases
-
Load-Use Hazard Detection:
- Detects when an instruction immediately needs data from a preceding load
- Inserts pipeline stalls when necessary
-
Control Hazard Management:
- Handles branch and jump instructions
- Flushes the pipeline when branches are taken
- Supports efficient control flow
To compile the CPU and view the simulation, you need to have the following tools installed:
You can write any C program to test the CPU, we provide a linker and startup file to help you with that. You can find the linker script and startup file in the sim
folder of this repository. An example hello world program is provided in the sim
folder as well.
To compile the CPU and run the simulation of the example hello world program, follow these steps:
-
Navigate to the
sim
folder in your cloned repository:cd sim
-
Create a virtual environment and install the required dependencies:
python -m venv .venv source .venv/bin/activate # On Windows use .venv\Scripts\activate pip install -r ../tests/requirements.txt # install cocotb and other dependencies
-
Compile the CPU using python script:
python run_c_code.py test_uart_hello.c
The helper script run_c_code.py
will compile the C code, generate the necessary files, and run the simulation using verilator. It will also generate a waveform file for viewing in GTKWave.
The CPU comes with a set of regression tests to ensure its functionality. These tests cover various aspects of the CPU, including instruction execution, pipeline behavior, and hazard handling.
These tests are written in Python using the Cocotb framework, which allows for writing testbenches in Python and simulating them with Verilog.
To run the regression tests, follow these steps:
- Navigate to the
tests
folder in your cloned repository:cd tests
- Create a virtual environment and install the required dependencies:
python -m venv .venv source .venv/bin/activate # On Windows use .venv\Scripts\ pip install -r requirements.txt
- Run the regression tests using pytest:
pytest
The regression tests include:
- Basic Arithmetic Operations: Tests for addition, subtraction, and other arithmetic instructions.
- Decoder Tests: Verifies the instruction decoding logic.
- Hazard Handling Tests: Ensures that data forwarding and hazard detection work correctly.
- Control Flow Tests: Validates branch and jump instructions.
- Memory Access Tests: Checks load and store operations.
- CSR Tests: Validates the control and status register operations.
- UART Tests: Validates the UART communication functionality.