This directory contains following submodules and directories:
lis
- contains a linear insertion sorter (LIS) generator written in Chisel hardware design language. It comprises description of three types of the linear insertion sorter, parameter definition, setup explanation and many other useful information related to blocks that are depicted at presented global block scheme.wb2axip
- contains wishbone to AXI4 bridge. Current submodule is forked version of the ZipCPU/wb2axip.doc
- contains global block scheme of the LINSORTER in svg and png format.top/dv/LISTest
- contains verilog testbenches for LINSORTER integrated with Caraveltop/rtl/LISTest
- contains user_proj_example.v
which is the top level verilog file for LINSORTERPrerequisites: The following software packages should be installed prior to generate Verilog code and Chisel tests:
In order to generate LISTest.v
which contains verilog code for LinearINsertion SORTER, run command:
$ make verilog_lis
To run Chisel tests, run command:
$ make test_lis
In order to run Verilog tests for LINSORTER connected to Caravel, PDK_ROOT and RISCV32 paths must be set. RISCV32 is path to RV32I Toolchain. For RV32I toolchain installation click here. To check if paths are set, run command:
$ make check-env
There are six different tests for LINSORTER connected to Caravel available inside top/dv/LISTest/lis
directory:
All tests contain C code for appropriate control registers configurations. Output of the LINSORTER is compared with golden model generated by Chisel. Golden model outputs are available inside test_run_dir
directory of the lis
submodule so there is no need to run Chisel tests prior to running Verilog tests.
So, for testing LINSORTER attached to the Caravel, run command:
$ make test_top
To clean data generated by Verilog testbenches, run:
$ make clean_top
In order to regenerate Verilog code, run Chisel and Verilog tests, type following command:
$ make run_all
User address space 0x3000_0000 ├── in_split: 0x3000_0000 ├── lisFifo: 0x3000_1000 ├── lisFifo_mux: 0x3000_1100 ├── lisFixed: 0x3000_2000 ├── lisFixed_mux: 0x3000_2100 ├── lisInput: 0x3000_3000 ├── lisInput_mux: 0x3000_3100 ├── bist: 0x3000_4000 ├── bist_split: 0x3000_4100 ├── out_mux: 0x3000_5000 ├── uart: 0x3000_6000 └── uart_split: 0x3000_6100