final gds & signoff results
32 files changed
tree: 0c686e1d1c87afd8e6a5f9aa2abb75cd8cd4472c
  1. .github/
  2. def/
  3. docs/
  4. gds/
  5. lef/
  6. mag/
  7. maglef/
  8. oas/
  9. openlane/
  10. signoff/
  11. spi/
  12. spinal-cocotb/
  13. verilog/
  14. .gitignore
  15. .gitmodules
  16. info.yaml
  17. LICENSE
  18. Makefile
  19. README.md
  20. run.sh
README.md

AXI-DMA by Spinal HDL

License UPRJ_CI Caravel Build

This is a DMA controller with AMBA AXI4 interface. This DMA controller is part of an ongoing effort to build an SoC with the state-of-art open source hardware development kits, such as Spinal HDL and cocotb.

Spinal HDL

Spinal HDL is a very powerful hardware description language, which is especially suitable for SoC or FPGA. Spinal HDL leverages many advanced language features from Scala, such as functional, object-oriented programming, to facilitate hardware development, which overcomes many shortages of traditional HDL, e.g. Verilog and VHDL. With Spinal HDL, the RTL code becomes much concise, error-prone, parameterized, and most important code-reuse friendly.

Spinal HDL will generate Verilog or VHDL code to be used in synthesis, since currently no synthesizer supports Spinal HDL.

cocotb

cocotb is a Python-based simulation library, which supports many mainstream simulators, from iverilog, veriator to ModelSim, VCS, etc. Since cocotb is implemented in Python, it's much easier than SystemVerilog or C to build a reference model by leveraging abundant libraries in Python ecosystem, such as SciPy and NumPy for easy algorithm implementation, Scrapy for network communication, etc. Also, implementing test bench in cocotb is quite concise, reduces much verbosity.

AXI-DMA

This DMA controller is very flexible:

  • multiple bus data width, e.g. 8, 16, 32, 64, as long as a valid AMBA AXI4 bus data width;
  • unaligned read and write, w.r.t. data width, that if data width is 32 bits, the read or write address does not need to align to 4 bytes;
  • burst read and write with varying burst length, as long as a valid AMBA AXI4 burst length;
  • compatible to AMBA AXI4 4K boundary constraint, that burst read or write cannot cross 4K boundary;
  • batch DMA task, that this DMA controller can conduct multiple DMA operations in a batch.

SDRAM Controller

To ease debug this DMA controller, we also implemented an SDRAM controller with AMBA AXI4 interface. The SDRAM controller assumes to store data in a Micron SDRAM MT48LC16M16A2, this Micron SDRAM has 16-bit data width. This SDRAM controller is quite flexible too:

  • multiple bus data width, e.g. 16, 32, 64, that the SDRAM controller converts AMBA AXI4 bus data with varying width into 16-bit width when read from or write to the Micron SDRAM, note 8-bit width not supported;
  • burst read and write with varying burst length, not just fixed burst length;
  • buffered bus read and write using two FIFO's before burst operation, because Micron SDRAM requires non-stop burst operation:
    • the burst write data from AMBA AXI4 interface will be buffered in a write FIFO first, and then write to SDRAM in a non-stop burst way;
    • the burst read data will be buffered in a read FIFO first, before send to AMBA AXI interface.

To test the SDRAM controller, Micron provided an SDRAM reference model in Verilog, we use cocotb to test SDRAM controller w.r.t. the SDRAM reference model.

Code Structure

To compatible with Caravel user project, the Spinal HDL, cocotb code is separated from Caravel user project code.

Spinal HDL and cocotb Code

The Spinal HDL and cocotb code is located in spinal-cocotb. Some important code files are:

To build and test the Spinal HDL code, there are two shell scripts:

  • setup.sh is the script to install the dependent libraries;
  • run.sh is the script to build and run the Spinal HDL and cocotb code.

The run.sh script will generate the Verilog code, DmaMem.v, under spinal-cocotb, which is used in Caravel user project for post-processing. DmaMem.v will be moved to the Verilog code directory of the Caravel user project.

Caravel Code

The Caravel user project follows the code structure of the example project exactly. Some important code files are:

  • DmaMem.v is the Verilog code generated from DmaMem.scala by Spinal HDL;
  • axi_dma.v is the wrapper to DmaMem.v, and is instantiated in user_project_wrapper.v;