This repository contains a source code of the SDRAM Tester implemented in FPGA. The SDRAM tester generates writes and reads to random or sequential addresses, checks the read data, and measures throughput. The project was created during the European FPGA Developer Contests 2020.
- Development board CYC1000 with W9864G6JT SDRAM chip, documentation, driver
- Languages - VHDL, Python
The project is using the following open-source codes:
- https://github.com/nullobject/sdram-fpga - The simple SDRAM controller by Josh Bassett
- https://github.com/zhelnio/ahb_lite_sdram - The SDRAM controller for MIPSfpga+ system by Stanislav Zhelnio
To clone the repository, run:
git clone --recursive [email protected]:jakubcabal/sdram-tester-fpga.git
A short demonstration video can be found on YouTube here.
Name | Type | Default | Generic description |
---|---|---|---|
SDRAM_CTRL_SEL | natural | 0 | SDRAM controller selection: 0 = sdram-fpga by Josh Bassett (nullobject), 1 = ahb_lite_sdram by Stanislav Zhelnio (zhelnio). |
+----+----+
UART <---| UART2WB |
PORT --->| MASTER |
+---------+
↕
+=======+======+ WISHBONE BUS
↕ ↕
+----+----+ +----+----+
| SDRAM | | SYSTEM |
| TESTER | | MODULE |
+---------+ +---------+
↕
+ ---> LEDs
↕
+----+----+
| SDRAM |
| CTRL |
+----+----+
↕
SDRAM
- UART2WB MASTER - Transmits the Wishbone requests and responses via UART interface (Wishbone master).
- SYSTEM MODULE - Basic system control and status registers (version, debug space etc.).
- SDRAM TESTER - Read and write request generator for SDRAM controller, checking read data.
- SDRAM CTRL - Selected SDRAM controller.
SDRAM_CTRL_SEL | LE | FF | BRAM (M9k) | Fmax |
---|---|---|---|---|
0 (sdram-fpga) | 902 | 650 | 0 | 111.7 MHz |
1 (ahb_lite_sdram) | 1071 | 703 | 0 | 124.6 MHz |
Implementation was performed using Quartus Prime Lite Edition 20.1.0 for FPGA Intel Cyclone 10 LP 10CL025YU256C8G.
- Connect the CYC1000 board to the PC with a USB cable.
- Upload to FPGA design with SDRAM Tester.
- Run Python script (PySerial is required):
python .\sw\run_tests.py
SDRAM_CTRL_SEL | SEQ WR | SEQ RD | RAND WR | RAND RD |
---|---|---|---|---|
0 (sdram-fpga) | 398.46 Mbps | 531.27 Mbps | 398.46 Mbps | 531.27 Mbps |
1 (ahb_lite_sdram) | 318.32 Mbps | 265.27 Mbps | 318.32 Mbps | 265.27 Mbps |
Tests was performed using selected SDRAM controller running at 100 MHz with configuration: CAS latency = 2, Burst length = 2.
The project is available under the MIT license (MIT). Please read LICENSE file.