Add initial documentation
19
doc/Makefile
Normal file
@@ -0,0 +1,19 @@
|
||||
# Minimal makefile for Sphinx documentation
|
||||
#
|
||||
|
||||
# You can set these variables from the command line.
|
||||
SPHINXOPTS =
|
||||
SPHINXBUILD = sphinx-build
|
||||
SOURCEDIR = .
|
||||
BUILDDIR = _build
|
||||
|
||||
# Put it first so that "make" without argument is like "make help".
|
||||
help:
|
||||
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
||||
|
||||
.PHONY: help Makefile
|
||||
|
||||
# Catch-all target: route all unknown targets to Sphinx using the new
|
||||
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
|
||||
%: Makefile
|
||||
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
||||
53
doc/conf.py
Normal file
@@ -0,0 +1,53 @@
|
||||
# Configuration file for the Sphinx documentation builder.
|
||||
#
|
||||
# This file only contains a selection of the most common options. For a full
|
||||
# list see the documentation:
|
||||
# http://www.sphinx-doc.org/en/master/config
|
||||
|
||||
# -- Path setup --------------------------------------------------------------
|
||||
|
||||
# If extensions (or modules to document with autodoc) are in another directory,
|
||||
# add these directories to sys.path here. If the directory is relative to the
|
||||
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
||||
#
|
||||
# import os
|
||||
# import sys
|
||||
# sys.path.insert(0, os.path.abspath('.'))
|
||||
|
||||
|
||||
# -- Project information -----------------------------------------------------
|
||||
|
||||
project = 'SERV'
|
||||
copyright = '2020, Olof Kindgren'
|
||||
author = 'Olof Kindgren'
|
||||
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
||||
# Add any Sphinx extension module names here, as strings. They can be
|
||||
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
||||
# ones.
|
||||
extensions = [
|
||||
'sphinxcontrib.wavedrom'
|
||||
]
|
||||
|
||||
# Add any paths that contain templates here, relative to this directory.
|
||||
templates_path = ['_templates']
|
||||
|
||||
# List of patterns, relative to source directory, that match files and
|
||||
# directories to ignore when looking for source files.
|
||||
# This pattern also affects html_static_path and html_extra_path.
|
||||
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
||||
|
||||
|
||||
# -- Options for HTML output -------------------------------------------------
|
||||
|
||||
# The theme to use for HTML and HTML Help pages. See the documentation for
|
||||
# a list of builtin themes.
|
||||
#
|
||||
html_theme = 'alabaster'
|
||||
|
||||
# Add any paths that contain custom static files (such as style sheets) here,
|
||||
# relative to this directory. They are copied after the builtin static files,
|
||||
# so a file named "default.css" will overwrite the builtin "default.css".
|
||||
html_static_path = ['_static']
|
||||
116
doc/index.rst
Normal file
@@ -0,0 +1,116 @@
|
||||
.. SERV documentation master file, created by
|
||||
sphinx-quickstart on Mon Feb 24 00:01:33 2020.
|
||||
You can adapt this file completely to your liking, but it should at least
|
||||
contain the root `toctree` directive.
|
||||
|
||||
SERV user manual
|
||||
================================
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 2
|
||||
:caption: Contents:
|
||||
|
||||
|
||||
Indices and tables
|
||||
==================
|
||||
|
||||
* :ref:`genindex`
|
||||
* :ref:`modindex`
|
||||
* :ref:`search`
|
||||
|
||||
Modules
|
||||
-------
|
||||
|
||||
SERV is a bit-serial CPU which means that the internal datapath is one bit wide. :ref:`dataflow` show the internal dataflow. For each instructions, data is read from the register file or the immediate fields of the instruction word and the result of the operation is stored back into the register file. Reading and writing memory is handled through the memory interface module.
|
||||
|
||||
.. _dataflow:
|
||||
|
||||
.. figure:: serv_dataflow.png
|
||||
|
||||
SERV internal dataflow
|
||||
|
||||
serv_rf_top
|
||||
^^^^^^^^^^^
|
||||
|
||||
.. image:: serv_rf_top.png
|
||||
|
||||
serv_rf_top is a top-level convenience wrapper that includes SERV and the default RF implementation and just exposes the timer IRQ and instruction/data wishbone buses.
|
||||
|
||||
serv_top
|
||||
^^^^^^^^
|
||||
|
||||
serv_top is the top-level of the SERV core without an RF
|
||||
|
||||
serv_alu
|
||||
^^^^^^^^
|
||||
|
||||
.. image:: serv_alu.png
|
||||
|
||||
serv_alu handles alu and shift operations. For shift ops, the data to be shifted resides in bufreg. It also contains the logic for comparisons used by the slt* and conditional branch instructions
|
||||
|
||||
.. image:: serv_alu_int.png
|
||||
|
||||
serv_bufreg
|
||||
^^^^^^^^^^^
|
||||
|
||||
.. image:: serv_bufreg.png
|
||||
|
||||
For two-stage operations, serv_bufreg holds data between stages. This data can be the effective address for branches or load/stores or data to be shifted for shift ops. It has a serial output for streaming out results during stage two and a parallel output that forms the dbus address. serv_bufreg also keeps track of the two lsb when calculating adresses. This is used to check for alignment errors
|
||||
|
||||
serv_csr
|
||||
^^^^^^^^
|
||||
|
||||
.. image:: serv_csr.png
|
||||
|
||||
serv_csr handles CSR accesses and all status related to (timer) interrupts. Out of the eight CSRs supported by SERV, only four resides in serv_csr (mstatus, mie, mcause and mip) and for those registers, SERV only implement the bits required for ecall, ebreak, misalignment and timer interrupts. The four remaining CSRs are commonly stored in the RF
|
||||
|
||||
serv_ctrl
|
||||
^^^^^^^^^
|
||||
|
||||
.. image:: serv_ctrl.png
|
||||
|
||||
serv_ctrl keeps track of the current PC and contains the logic needed to calculate the next PC.
|
||||
|
||||
serv_decode
|
||||
^^^^^^^^^^^
|
||||
|
||||
.. image:: serv_decode.png
|
||||
|
||||
serv_decode is responsible for decoding the operation word coming from ibus into a set of control signals that are used internally in SERV. It also assembles the 32-bit immediate used by some instructions. During the life cycle of an operation all control signals (except one) are static and the immediate is streamed out during the first run stage
|
||||
|
||||
serv_mem_if
|
||||
^^^^^^^^^^^
|
||||
|
||||
.. image:: serv_mem_if.png
|
||||
|
||||
serv_mem_if prepares the data to be sent out on the dbus during store operations and serializes the incoming data during loads
|
||||
|
||||
serv_rf_if
|
||||
^^^^^^^^^^
|
||||
|
||||
serv_rf_if is the gateway between the core and an RF implementation. It transforms all control signals that affect register reads or writes and exposes two read and write ports to the RF. This allows implementors to plug in an RF implementation that is best suited for the technology to be used.
|
||||
|
||||
serv_rf_ram
|
||||
^^^^^^^^^^^
|
||||
|
||||
serv_rf_ram is the default RF implementation using an SRAM-like interface. Suitable for FPGA implementations
|
||||
|
||||
serv_rf_ram_if
|
||||
^^^^^^^^^^^^^^
|
||||
|
||||
serv_rf_ram_if converts between the SERV RF IF and the serv_rf_ram interface
|
||||
|
||||
serv_state
|
||||
^^^^^^^^^^
|
||||
|
||||
serv_state keeps track of the state for the core and contains all dynamic control signals during an operations life time. Also controls the accesses towards the RF and dbus
|
||||
|
||||
shift_reg
|
||||
^^^^^^^^^
|
||||
|
||||
shift_reg is a shift register implementation used in various places in SERV
|
||||
|
||||
serv_shift
|
||||
^^^^^^^^^^
|
||||
|
||||
serv_shift lives inside the ALU and contains the control logic for shift operations
|
||||
35
doc/make.bat
Normal file
@@ -0,0 +1,35 @@
|
||||
@ECHO OFF
|
||||
|
||||
pushd %~dp0
|
||||
|
||||
REM Command file for Sphinx documentation
|
||||
|
||||
if "%SPHINXBUILD%" == "" (
|
||||
set SPHINXBUILD=sphinx-build
|
||||
)
|
||||
set SOURCEDIR=.
|
||||
set BUILDDIR=_build
|
||||
|
||||
if "%1" == "" goto help
|
||||
|
||||
%SPHINXBUILD% >NUL 2>NUL
|
||||
if errorlevel 9009 (
|
||||
echo.
|
||||
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
|
||||
echo.installed, then set the SPHINXBUILD environment variable to point
|
||||
echo.to the full path of the 'sphinx-build' executable. Alternatively you
|
||||
echo.may add the Sphinx directory to PATH.
|
||||
echo.
|
||||
echo.If you don't have Sphinx installed, grab it from
|
||||
echo.http://sphinx-doc.org/
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
|
||||
goto end
|
||||
|
||||
:help
|
||||
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
|
||||
|
||||
:end
|
||||
popd
|
||||
BIN
doc/serv_alu.png
Normal file
|
After Width: | Height: | Size: 8.8 KiB |
BIN
doc/serv_alu_int.png
Normal file
|
After Width: | Height: | Size: 37 KiB |
BIN
doc/serv_bufreg.png
Normal file
|
After Width: | Height: | Size: 9.4 KiB |
BIN
doc/serv_csr.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
doc/serv_ctrl.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
doc/serv_dataflow.png
Normal file
|
After Width: | Height: | Size: 33 KiB |
BIN
doc/serv_decode.png
Normal file
|
After Width: | Height: | Size: 7.3 KiB |
BIN
doc/serv_mem_if.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
doc/serv_rf_top.png
Normal file
|
After Width: | Height: | Size: 9.8 KiB |