2023-08-04 11:51:07 -04:00
|
|
|
#
|
|
|
|
# This file is part of LiteX.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2022-2023 MoTeC
|
|
|
|
# Copyright (c) 2022-2023 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
|
|
|
import unittest
|
2024-02-24 18:32:29 -05:00
|
|
|
import inspect
|
2023-08-04 11:51:07 -04:00
|
|
|
|
2024-02-24 17:16:17 -05:00
|
|
|
from migen import Record
|
2023-08-04 11:51:07 -04:00
|
|
|
|
2024-02-24 17:16:17 -05:00
|
|
|
from litex.gen.sim import run_simulation
|
2023-08-04 11:51:07 -04:00
|
|
|
|
2024-02-24 18:32:29 -05:00
|
|
|
from litex.soc.cores.spi.spi_mmap import (
|
|
|
|
SPIMaster,
|
|
|
|
SPIMMAP,
|
|
|
|
SPI_SLOT_BITORDER_LSB_FIRST,
|
|
|
|
SPI_SLOT_BITORDER_MSB_FIRST,
|
|
|
|
SPI_SLOT_LENGTH_16B,
|
2024-02-24 19:25:49 -05:00
|
|
|
SPI_SLOT_LENGTH_24B,
|
2024-02-24 18:32:29 -05:00
|
|
|
SPI_SLOT_LENGTH_32B,
|
|
|
|
SPI_SLOT_LENGTH_8B,
|
|
|
|
SPI_SLOT_MODE_0,
|
|
|
|
SPI_SLOT_MODE_3,
|
|
|
|
)
|
|
|
|
|
|
|
|
verbose = None
|
|
|
|
|
|
|
|
|
|
|
|
def unittest_verbosity():
|
|
|
|
"""Return the verbosity setting of the currently running unittest
|
|
|
|
program, or 0 if none is running.
|
|
|
|
|
|
|
|
"""
|
|
|
|
frame = inspect.currentframe()
|
|
|
|
while frame:
|
|
|
|
self = frame.f_locals.get("self")
|
|
|
|
if isinstance(self, unittest.TestProgram):
|
|
|
|
return self.verbosity
|
|
|
|
frame = frame.f_back
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
|
|
def vprint(*args):
|
|
|
|
global verbose
|
|
|
|
if verbose is None:
|
|
|
|
verbose = unittest_verbosity()
|
|
|
|
if verbose > 1:
|
|
|
|
print(*args)
|
2023-08-04 11:51:07 -04:00
|
|
|
|
2024-02-24 17:16:17 -05:00
|
|
|
|
2024-04-04 21:29:51 -04:00
|
|
|
def vvprint(*args):
|
|
|
|
global verbose
|
|
|
|
if verbose is None:
|
|
|
|
verbose = unittest_verbosity()
|
|
|
|
if verbose > 2:
|
|
|
|
print(*args)
|
|
|
|
|
|
|
|
|
2023-08-04 11:51:07 -04:00
|
|
|
class TestSPIMMAP(unittest.TestCase):
|
|
|
|
def test_spi_master(self):
|
|
|
|
pads = Record([("clk", 1), ("cs_n", 4), ("mosi", 1), ("miso", 1)])
|
2024-02-24 17:16:17 -05:00
|
|
|
dut = SPIMaster(pads=pads, data_width=32, sys_clk_freq=int(100e6))
|
|
|
|
|
2023-08-04 11:51:07 -04:00
|
|
|
def generator(dut):
|
|
|
|
data = [
|
|
|
|
0x12345678,
|
2024-02-24 17:16:17 -05:00
|
|
|
0xDEADBEEF,
|
2023-08-04 11:51:07 -04:00
|
|
|
]
|
2024-02-24 17:16:17 -05:00
|
|
|
# data = [
|
2023-08-04 11:51:07 -04:00
|
|
|
# 0x80000001,
|
|
|
|
# 0x80000001,
|
2024-02-24 17:16:17 -05:00
|
|
|
# ]
|
2023-08-04 11:51:07 -04:00
|
|
|
|
|
|
|
# Config: Mode0, Loopback, Sys-Clk/4
|
|
|
|
yield dut.loopback.eq(1)
|
|
|
|
yield dut.clk_divider.eq(4)
|
2024-02-24 18:32:29 -05:00
|
|
|
yield dut.mode.eq(SPI_SLOT_MODE_0)
|
2023-08-04 11:51:07 -04:00
|
|
|
yield
|
|
|
|
yield dut.mosi.eq(data[0])
|
|
|
|
yield dut.cs.eq(0b0001)
|
|
|
|
yield dut.length.eq(32)
|
|
|
|
yield dut.start.eq(1)
|
|
|
|
yield
|
|
|
|
yield dut.start.eq(0)
|
|
|
|
while (yield dut.done) == 0b0:
|
|
|
|
yield
|
|
|
|
yield dut.cs.eq(0b0000)
|
|
|
|
for i in range(16):
|
|
|
|
yield
|
|
|
|
print(f"mosi_data : {(yield dut.miso):08x}")
|
|
|
|
|
|
|
|
# Config: Mode3, Loopback, Sys-Clk/4.
|
|
|
|
yield dut.loopback.eq(1)
|
|
|
|
yield dut.clk_divider.eq(4)
|
2024-02-24 18:32:29 -05:00
|
|
|
yield dut.mode.eq(SPI_SLOT_MODE_3)
|
2023-08-04 11:51:07 -04:00
|
|
|
yield
|
|
|
|
yield dut.mosi.eq(data[0])
|
|
|
|
yield dut.cs.eq(0b0001)
|
|
|
|
yield dut.length.eq(32)
|
|
|
|
yield dut.start.eq(1)
|
|
|
|
yield
|
|
|
|
yield dut.start.eq(0)
|
|
|
|
while (yield dut.done) == 0b0:
|
|
|
|
yield
|
|
|
|
yield dut.cs.eq(0b0000)
|
|
|
|
for i in range(16):
|
|
|
|
yield
|
|
|
|
print(f"mosi_data : {(yield dut.miso):08x}")
|
|
|
|
|
|
|
|
# Config: Mode0, Loopback, Sys-Clk/8.
|
|
|
|
yield dut.loopback.eq(1)
|
|
|
|
yield dut.clk_divider.eq(8)
|
2024-02-24 18:32:29 -05:00
|
|
|
yield dut.mode.eq(SPI_SLOT_MODE_0)
|
2023-08-04 11:51:07 -04:00
|
|
|
yield
|
|
|
|
yield dut.mosi.eq(data[1])
|
|
|
|
yield dut.cs.eq(0b0001)
|
|
|
|
yield dut.length.eq(32)
|
|
|
|
yield dut.start.eq(1)
|
|
|
|
yield
|
|
|
|
yield dut.start.eq(0)
|
|
|
|
while (yield dut.done) == 0b0:
|
|
|
|
yield
|
|
|
|
yield dut.cs.eq(0b0000)
|
|
|
|
for i in range(16):
|
|
|
|
yield
|
|
|
|
print(f"mosi_data : {(yield dut.miso):08x}")
|
|
|
|
|
|
|
|
# Config: Mode3, Loopback, Sys-Clk/8.
|
|
|
|
yield dut.loopback.eq(1)
|
|
|
|
yield dut.clk_divider.eq(8)
|
2024-02-24 18:32:29 -05:00
|
|
|
yield dut.mode.eq(SPI_SLOT_MODE_3)
|
2023-08-04 11:51:07 -04:00
|
|
|
yield
|
|
|
|
yield dut.mosi.eq(data[1])
|
|
|
|
yield dut.cs.eq(0b0001)
|
|
|
|
yield dut.length.eq(32)
|
|
|
|
yield dut.start.eq(1)
|
|
|
|
yield
|
|
|
|
yield dut.start.eq(0)
|
|
|
|
while (yield dut.done) == 0b0:
|
|
|
|
yield
|
|
|
|
yield dut.cs.eq(0b0000)
|
|
|
|
for i in range(16):
|
|
|
|
yield
|
|
|
|
print(f"mosi_data : {(yield dut.miso):08x}")
|
|
|
|
|
|
|
|
run_simulation(dut, generator(dut), vcd_name="sim.vcd")
|
2024-02-24 18:32:29 -05:00
|
|
|
|
2024-02-24 21:24:24 -05:00
|
|
|
def mmap_test(self, length, bitorder, data, vcd_name=None, sel_override=None, wait=0):
|
2024-02-24 18:32:29 -05:00
|
|
|
pads = Record([("clk", 1), ("cs_n", 4), ("mosi", 1), ("miso", 1)])
|
|
|
|
dut = SPIMMAP(
|
|
|
|
pads=pads,
|
|
|
|
data_width=32,
|
|
|
|
sys_clk_freq=int(100e6), # only used for clock settle time!
|
|
|
|
tx_fifo_depth=32,
|
|
|
|
rx_fifo_depth=32,
|
|
|
|
)
|
|
|
|
|
|
|
|
def generator(dut):
|
|
|
|
# Minimal setup - spi_mmap ctrl defaults are everything enabled and:
|
2024-02-24 21:24:24 -05:00
|
|
|
# SPI_SLOT_MODE_3, SPI_SLOT_LENGTH_32B, SPI_SLOT_BITORDER_MSB_FIRST, loopback, divider=2, wait=0
|
2024-02-24 18:32:29 -05:00
|
|
|
version = yield dut.ctrl._version.status
|
|
|
|
vprint(f"version: {version}")
|
|
|
|
vprint(f"slot_count: {(yield dut.ctrl.slot_count.status)}")
|
|
|
|
# yield dut.ctrl.slot_control0.fields.enable.eq(1)
|
|
|
|
# yield dut.ctrl.slot_control0.fields.mode.eq(SPI_SLOT_MODE_3)
|
|
|
|
yield dut.ctrl.slot_control0.fields.length.eq(length)
|
|
|
|
yield dut.ctrl.slot_control0.fields.bitorder.eq(bitorder)
|
2024-04-04 19:06:54 -04:00
|
|
|
yield dut.ctrl.slot_control1.fields.length.eq(length)
|
|
|
|
yield dut.ctrl.slot_control1.fields.bitorder.eq(bitorder)
|
2024-02-24 18:32:29 -05:00
|
|
|
# yield dut.ctrl.slot_control0.fields.loopback.eq(1)
|
|
|
|
# yield dut.ctrl.slot_control0.fields.divider.eq(2)
|
|
|
|
# yield dut.ctrl.slot_control0.fields.enable.eq(1)
|
2024-02-24 21:24:24 -05:00
|
|
|
yield dut.ctrl.slot_control0.fields.wait.eq(wait)
|
2024-02-24 18:32:29 -05:00
|
|
|
if length == SPI_SLOT_LENGTH_32B:
|
|
|
|
spi_length = 32
|
|
|
|
sel = 0b1111
|
|
|
|
width = 8
|
2024-02-24 19:25:49 -05:00
|
|
|
if length == SPI_SLOT_LENGTH_24B:
|
|
|
|
spi_length = 24
|
|
|
|
sel = 0b1111
|
|
|
|
width = 6
|
2024-02-24 18:32:29 -05:00
|
|
|
if length == SPI_SLOT_LENGTH_16B:
|
|
|
|
spi_length = 16
|
|
|
|
sel = 0b0011
|
|
|
|
width = 4
|
|
|
|
if length == SPI_SLOT_LENGTH_8B:
|
|
|
|
spi_length = 8
|
|
|
|
sel = 0b0001
|
|
|
|
width = 2
|
|
|
|
if sel_override:
|
|
|
|
sel = sel_override
|
|
|
|
|
|
|
|
vprint(f"spi_length {spi_length} width {width} sel {sel:b} len(data) {len(data)}")
|
|
|
|
|
|
|
|
dut_tx_status = dut.ctrl.tx_status.fields
|
|
|
|
dut_rx_status = dut.ctrl.rx_status.fields
|
|
|
|
self.assertEqual((yield dut_tx_status.empty), 1)
|
|
|
|
self.assertEqual((yield dut_tx_status.full), 0)
|
|
|
|
self.assertEqual((yield dut_tx_status.ongoing), 0)
|
|
|
|
self.assertEqual((yield dut_tx_status.level), 0)
|
|
|
|
self.assertEqual((yield dut_rx_status.empty), 1)
|
|
|
|
self.assertEqual((yield dut_rx_status.full), 0)
|
|
|
|
self.assertEqual((yield dut_rx_status.ongoing), 0)
|
|
|
|
self.assertEqual((yield dut_rx_status.level), 0)
|
2024-04-04 19:06:54 -04:00
|
|
|
for slot, d in data:
|
|
|
|
vprint(f"write({slot}):{d:0{width}x}")
|
|
|
|
yield from dut.tx_mmap.bus.write(slot, d, sel)
|
2024-02-24 18:32:29 -05:00
|
|
|
yield
|
|
|
|
self.assertEqual((yield dut_tx_status.empty), 0)
|
|
|
|
self.assertEqual((yield dut_tx_status.full), 0)
|
|
|
|
self.assertEqual((yield dut_tx_status.ongoing), 1)
|
|
|
|
self.assertGreater((yield dut_tx_status.level), 0)
|
|
|
|
self.assertEqual((yield dut_rx_status.empty), 1)
|
|
|
|
self.assertEqual((yield dut_rx_status.full), 0)
|
|
|
|
self.assertEqual((yield dut_rx_status.ongoing), 1)
|
|
|
|
self.assertEqual((yield dut_rx_status.level), 0)
|
|
|
|
|
|
|
|
tx_empty = -1
|
|
|
|
rx_empty = -1
|
|
|
|
miso = -1
|
|
|
|
mosi = -1
|
|
|
|
while (yield dut_rx_status.ongoing) == 0b1 or (yield dut_rx_status.level) != len(data):
|
|
|
|
if rx_empty != (rx_empty := (yield dut_rx_status.empty)):
|
|
|
|
vprint(f"rx_empty:{rx_empty}")
|
|
|
|
if tx_empty != (tx_empty := (yield dut_tx_status.empty)):
|
|
|
|
vprint(f"tx_empty:{tx_empty}")
|
|
|
|
if mosi != (mosi := (yield dut.tx_rx_engine.spi.mosi)):
|
2024-04-04 21:29:51 -04:00
|
|
|
vvprint(f"mosi => {mosi:0{width}x}")
|
2024-02-24 18:32:29 -05:00
|
|
|
if miso != (miso := (yield dut.tx_rx_engine.spi.miso)):
|
2024-04-04 21:29:51 -04:00
|
|
|
vvprint(f"miso <= {miso:0{width}x}")
|
2024-02-24 18:32:29 -05:00
|
|
|
yield
|
|
|
|
|
|
|
|
yield
|
2024-04-04 19:06:54 -04:00
|
|
|
for slot, d in data:
|
|
|
|
read = yield from dut.rx_mmap.bus.read(slot)
|
|
|
|
self.assertEqual(read, d, f"read({slot}) {read:0{width}x} expect: {d:0{width}x}")
|
2024-02-24 18:32:29 -05:00
|
|
|
|
|
|
|
run_simulation(dut, generator(dut), vcd_name=vcd_name)
|
|
|
|
|
|
|
|
# 32 bit write to 32bit slot
|
|
|
|
def test_spi_mmap_32_lsb(self):
|
2024-04-04 19:06:54 -04:00
|
|
|
data = [(0, 0x12345678), (0, 0x9ABCDEF0)]
|
2024-02-24 18:32:29 -05:00
|
|
|
self.mmap_test(SPI_SLOT_LENGTH_32B, SPI_SLOT_BITORDER_LSB_FIRST, data, "mmap_32_lsb.vcd")
|
|
|
|
|
|
|
|
def test_spi_mmap_32_msb(self):
|
2024-04-04 19:06:54 -04:00
|
|
|
data = [(0, 0x12345678), (0, 0x9ABCDEF0)]
|
2024-02-24 18:32:29 -05:00
|
|
|
self.mmap_test(SPI_SLOT_LENGTH_32B, SPI_SLOT_BITORDER_MSB_FIRST, data, "mmap_32_msb.vcd")
|
|
|
|
|
2024-04-04 19:06:54 -04:00
|
|
|
def test_spi_mmap_32_slot0_1_lsb(self):
|
|
|
|
data = [
|
|
|
|
(0, 0x12345678), (0, 0x9ABCDEF0), (0, 0x87654321), (0, 0x0FEDCBA9),
|
|
|
|
(1, 0x0FEDCBA9), (1, 0x87654321), (1, 0x9ABCDEF0), (1, 0x12345678)
|
|
|
|
]
|
|
|
|
self.mmap_test(SPI_SLOT_LENGTH_32B, SPI_SLOT_BITORDER_LSB_FIRST, data, "mmap_32_slot_0_1_lsb.vcd")
|
|
|
|
|
|
|
|
def test_spi_mmap_32_slot0_1_msb(self):
|
|
|
|
data = [
|
|
|
|
(0, 0x12345678), (0, 0x9ABCDEF0), (0, 0x87654321), (0, 0x0FEDCBA9),
|
|
|
|
(1, 0x0FEDCBA9), (1, 0x87654321), (1, 0x9ABCDEF0), (1, 0x12345678)
|
|
|
|
]
|
|
|
|
self.mmap_test(SPI_SLOT_LENGTH_32B, SPI_SLOT_BITORDER_MSB_FIRST, data, "mmap_32_slot_0_1_msb.vcd")
|
|
|
|
|
2024-02-24 19:25:49 -05:00
|
|
|
def test_spi_mmap_24_lsb(self):
|
2024-04-04 19:06:54 -04:00
|
|
|
data = [(0, 0x123456), (0, 0x789ABC), (0, 0xDEF012)]
|
2024-02-24 19:25:49 -05:00
|
|
|
self.mmap_test(SPI_SLOT_LENGTH_24B, SPI_SLOT_BITORDER_LSB_FIRST, data, "mmap_24_lsb.vcd")
|
|
|
|
|
|
|
|
def test_spi_mmap_24_msb(self):
|
2024-04-04 19:06:54 -04:00
|
|
|
data = [(0, 0x123456), (0, 0x789ABC), (0, 0xDEF012)]
|
2024-02-24 19:25:49 -05:00
|
|
|
self.mmap_test(SPI_SLOT_LENGTH_24B, SPI_SLOT_BITORDER_MSB_FIRST, data, "mmap_24_msb.vcd")
|
|
|
|
|
2024-04-04 19:06:54 -04:00
|
|
|
def test_spi_mmap_24_slot0_1_lsb(self):
|
|
|
|
data = [
|
|
|
|
(0, 0x123456), (0, 0x9ABCDE), (0, 0x876543), (0, 0x0FEDCB),
|
|
|
|
(1, 0x0FEDCB), (1, 0x876543), (1, 0x9ABCDE), (1, 0x123456)
|
|
|
|
]
|
|
|
|
self.mmap_test(SPI_SLOT_LENGTH_24B, SPI_SLOT_BITORDER_LSB_FIRST, data, "mmap_24_slot_0_1_lsb.vcd")
|
|
|
|
|
|
|
|
def test_spi_mmap_24_slot0_1_msb(self):
|
|
|
|
data = [
|
|
|
|
(0, 0x123456), (0, 0x9ABCDE), (0, 0x876543), (0, 0x0FEDCB),
|
|
|
|
(1, 0x0FEDCB), (1, 0x876543), (1, 0x9ABCDE), (1, 0x123456)
|
|
|
|
]
|
|
|
|
self.mmap_test(SPI_SLOT_LENGTH_24B, SPI_SLOT_BITORDER_MSB_FIRST, data, "mmap_24_slot_0_1_msb.vcd")
|
|
|
|
|
2024-02-24 18:32:29 -05:00
|
|
|
# 16 bit write to 16bit slot
|
|
|
|
def test_spi_mmap_16_lsb(self):
|
2024-04-04 19:06:54 -04:00
|
|
|
data = [(0, 0x1234), (0, 0x5678), (0, 0x9ABC), (0, 0xDEF0)]
|
2024-02-24 18:32:29 -05:00
|
|
|
self.mmap_test(SPI_SLOT_LENGTH_16B, SPI_SLOT_BITORDER_LSB_FIRST, data, "mmap_16_lsb.vcd")
|
|
|
|
|
|
|
|
def test_spi_mmap_16_msb(self):
|
2024-04-04 19:06:54 -04:00
|
|
|
data = [(0, 0x1234), (0, 0x5678), (0, 0x9ABC), (0, 0xDEF0)]
|
2024-02-24 18:32:29 -05:00
|
|
|
self.mmap_test(SPI_SLOT_LENGTH_16B, SPI_SLOT_BITORDER_MSB_FIRST, data, "mmap_16_msb.vcd")
|
|
|
|
|
|
|
|
# 32 bit write to 16bit slot
|
|
|
|
def test_spi_mmap_16_lsb_wb32(self):
|
2024-04-04 19:06:54 -04:00
|
|
|
data = [(0, 0x1234), (0, 0x5678), (0, 0x9ABC), (0, 0xDEF0)]
|
2024-02-24 18:32:29 -05:00
|
|
|
self.mmap_test(
|
|
|
|
SPI_SLOT_LENGTH_16B,
|
|
|
|
SPI_SLOT_BITORDER_LSB_FIRST,
|
|
|
|
data,
|
|
|
|
"mmap_16_lsb_wb32.vcd",
|
|
|
|
sel_override=0b1111,
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_spi_mmap_16_msb_wb32(self):
|
2024-04-04 19:06:54 -04:00
|
|
|
data = [(0, 0x1234), (0, 0x5678), (0, 0x9ABC), (0, 0xDEF0)]
|
2024-02-24 18:32:29 -05:00
|
|
|
self.mmap_test(
|
|
|
|
SPI_SLOT_LENGTH_16B,
|
|
|
|
SPI_SLOT_BITORDER_MSB_FIRST,
|
|
|
|
data,
|
|
|
|
"mmap_16_msb_wb32.vcd",
|
|
|
|
sel_override=0b1111,
|
|
|
|
)
|
|
|
|
|
|
|
|
# 8 bit write to 8bit slot
|
|
|
|
def test_spi_mmap_8_lsb(self):
|
2024-04-04 19:06:54 -04:00
|
|
|
data = [(0, 0x12), (0, 0x34), (0, 0x56), (0, 0x78), (0, 0x9A), (0, 0xBC), (0, 0xDE), (0, 0xF0)]
|
2024-02-24 18:32:29 -05:00
|
|
|
self.mmap_test(SPI_SLOT_LENGTH_8B, SPI_SLOT_BITORDER_LSB_FIRST, data, "mmap_8_lsb.vcd")
|
|
|
|
|
|
|
|
def test_spi_mmap_8_msb(self):
|
2024-04-04 19:06:54 -04:00
|
|
|
data = [(0, 0x12), (0, 0x34), (0, 0x56), (0, 0x78), (0, 0x9A), (0, 0xBC), (0, 0xDE), (0, 0xF0)]
|
2024-02-24 18:32:29 -05:00
|
|
|
self.mmap_test(SPI_SLOT_LENGTH_8B, SPI_SLOT_BITORDER_MSB_FIRST, data, "mmap_8_msb.vcd")
|
|
|
|
|
2024-02-24 21:24:24 -05:00
|
|
|
def test_spi_mmap_8_msb_wait1(self):
|
2024-04-04 19:06:54 -04:00
|
|
|
data = [(0, 0x12), (0, 0x34), (0, 0x56), (0, 0x78), (0, 0x9A), (0, 0xBC), (0, 0xDE), (0, 0xF0)]
|
2024-02-24 21:24:24 -05:00
|
|
|
self.mmap_test(SPI_SLOT_LENGTH_8B, SPI_SLOT_BITORDER_MSB_FIRST, data, "mmap_8_msb_wait1.vcd", wait=1)
|
|
|
|
|
|
|
|
def test_spi_mmap_8_msb_wait8(self):
|
2024-04-04 19:06:54 -04:00
|
|
|
data = [(0, 0x12), (0, 0x34), (0, 0x56), (0, 0x78), (0, 0x9A), (0, 0xBC), (0, 0xDE), (0, 0xF0)]
|
2024-02-24 21:24:24 -05:00
|
|
|
self.mmap_test(SPI_SLOT_LENGTH_8B, SPI_SLOT_BITORDER_MSB_FIRST, data, "mmap_8_msb_wait8.vcd", wait=8)
|
2024-02-24 18:32:29 -05:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
unittest.main()
|