2018-08-21 07:39:46 -04:00
|
|
|
import unittest
|
|
|
|
import random
|
|
|
|
|
|
|
|
from migen import *
|
|
|
|
|
|
|
|
from litedram.common import LiteDRAMNativePort
|
|
|
|
from litedram.frontend.axi import *
|
|
|
|
|
2018-08-28 07:39:11 -04:00
|
|
|
from test.common import *
|
|
|
|
|
2018-08-21 07:39:46 -04:00
|
|
|
from litex.gen.sim import *
|
|
|
|
|
|
|
|
|
2018-08-27 10:21:12 -04:00
|
|
|
class TestAXI(unittest.TestCase):
|
|
|
|
def test_axi2native(self):
|
2018-08-28 07:39:11 -04:00
|
|
|
class Access:
|
|
|
|
def __init__(self, addr, data, id):
|
|
|
|
self.addr = addr
|
|
|
|
self.data = data
|
|
|
|
self.id = id
|
|
|
|
|
|
|
|
class Write(Access):
|
|
|
|
pass
|
|
|
|
|
|
|
|
class Read(Access):
|
|
|
|
pass
|
|
|
|
|
2018-08-28 07:43:58 -04:00
|
|
|
def writes_cmd_data_generator(axi_port, writes):
|
2018-08-28 07:39:11 -04:00
|
|
|
for write in writes:
|
|
|
|
# send command
|
2018-08-27 10:21:12 -04:00
|
|
|
yield axi_port.aw.valid.eq(1)
|
2018-08-28 07:39:11 -04:00
|
|
|
yield axi_port.aw.addr.eq(write.addr<<2)
|
|
|
|
yield axi_port.aw.id.eq(write.id)
|
2018-08-27 12:39:36 -04:00
|
|
|
while (yield axi_port.aw.ready) == 0:
|
2018-08-27 10:21:12 -04:00
|
|
|
yield
|
|
|
|
yield
|
2018-11-09 04:10:07 -05:00
|
|
|
yield axi_port.aw.valid.eq(0)
|
2018-08-28 07:39:11 -04:00
|
|
|
# send data
|
2018-08-27 10:21:12 -04:00
|
|
|
yield axi_port.w.valid.eq(1)
|
2018-09-18 09:24:41 -04:00
|
|
|
yield axi_port.w.last.eq(1)
|
2018-08-28 07:39:11 -04:00
|
|
|
yield axi_port.w.data.eq(write.data)
|
2018-08-27 12:39:36 -04:00
|
|
|
while (yield axi_port.w.ready) == 0:
|
2018-08-27 10:21:12 -04:00
|
|
|
yield
|
2018-11-09 04:10:07 -05:00
|
|
|
yield
|
2018-08-27 12:39:36 -04:00
|
|
|
yield axi_port.w.valid.eq(0)
|
2018-08-28 07:43:58 -04:00
|
|
|
|
|
|
|
def writes_response_generator(axi_port, writes):
|
|
|
|
self.writes_id_errors = 0
|
|
|
|
yield axi_port.b.ready.eq(1) # always accepting write response
|
|
|
|
for write in writes:
|
|
|
|
# wait response
|
2018-08-28 07:39:11 -04:00
|
|
|
while (yield axi_port.b.valid) == 0:
|
|
|
|
yield
|
|
|
|
if (yield axi_port.b.id) != write.id:
|
|
|
|
self.writes_id_errors += 1
|
2018-08-27 10:21:12 -04:00
|
|
|
yield
|
2018-08-27 12:39:36 -04:00
|
|
|
|
2018-08-28 07:43:58 -04:00
|
|
|
def reads_cmd_generator(axi_port, reads):
|
2018-08-28 07:39:11 -04:00
|
|
|
for read in reads:
|
|
|
|
# send command
|
2018-08-27 10:21:12 -04:00
|
|
|
yield axi_port.ar.valid.eq(1)
|
2018-08-28 07:39:11 -04:00
|
|
|
yield axi_port.ar.addr.eq(read.addr<<2)
|
|
|
|
yield axi_port.ar.id.eq(read.id)
|
2018-08-27 12:39:36 -04:00
|
|
|
yield
|
|
|
|
while (yield axi_port.ar.ready) == 0:
|
2018-08-27 10:21:12 -04:00
|
|
|
yield
|
|
|
|
yield axi_port.ar.valid.eq(0)
|
|
|
|
yield
|
2018-08-28 07:43:58 -04:00
|
|
|
|
|
|
|
def reads_response_data_generator(axi_port, reads):
|
|
|
|
self.reads_data_errors = 0
|
|
|
|
self.reads_id_errors = 0
|
2018-09-06 05:11:17 -04:00
|
|
|
self.reads_last_errors = 0
|
2018-08-28 07:43:58 -04:00
|
|
|
yield axi_port.r.ready.eq(1) # always accepting read response
|
|
|
|
for read in reads:
|
2018-08-28 07:39:11 -04:00
|
|
|
# wait data / response
|
2018-08-27 12:39:36 -04:00
|
|
|
while (yield axi_port.r.valid) == 0:
|
2018-08-27 10:21:12 -04:00
|
|
|
yield
|
2018-08-28 07:39:11 -04:00
|
|
|
if (yield axi_port.r.data) != read.data:
|
|
|
|
self.reads_data_errors += 1
|
|
|
|
if (yield axi_port.r.id) != read.id:
|
|
|
|
self.reads_id_errors += 1
|
2018-09-06 05:11:17 -04:00
|
|
|
if (yield axi_port.r.last) != 1:
|
|
|
|
self.reads_last_errors += 1
|
2018-08-27 10:21:12 -04:00
|
|
|
yield
|
2018-08-21 07:39:46 -04:00
|
|
|
|
2018-08-27 12:39:36 -04:00
|
|
|
# dut
|
2018-08-28 07:39:11 -04:00
|
|
|
axi_port = LiteDRAMAXIPort(32, 32, 8)
|
2018-08-27 10:21:12 -04:00
|
|
|
dram_port = LiteDRAMNativePort("both", 32, 32)
|
2018-08-21 07:39:46 -04:00
|
|
|
dut = LiteDRAMAXI2Native(axi_port, dram_port)
|
2018-08-28 07:39:11 -04:00
|
|
|
mem = DRAMMemory(32, 128)
|
|
|
|
|
|
|
|
# generate writes/reads
|
|
|
|
prng = random.Random(42)
|
|
|
|
writes = []
|
|
|
|
for i in range(64):
|
2018-08-28 07:43:58 -04:00
|
|
|
# incrementing addr, random data &id
|
2018-08-28 07:39:11 -04:00
|
|
|
writes.append(Write(i, prng.randrange(2**32), prng.randrange(2**8)))
|
2018-08-28 07:43:58 -04:00
|
|
|
# incrementing addr, data & id (debug)
|
|
|
|
#writes.append(Write(i, i, i))
|
2018-08-28 07:39:11 -04:00
|
|
|
reads = []
|
|
|
|
for i in range(64): # dummy reads while content not yet written
|
|
|
|
reads.append(Read(64, 0x00000000, 0x00))
|
|
|
|
for i in range(64):
|
2018-08-28 07:43:58 -04:00
|
|
|
# incrementing addr, written data, random id
|
|
|
|
reads.append(Read(i, writes[i].data, prng.randrange(2**8)))
|
|
|
|
# incrementing addr, written data, incrementing id (debug)
|
|
|
|
#reads.append(Read(i, writes[i].data, i))
|
2018-08-27 10:21:12 -04:00
|
|
|
|
2018-08-27 12:39:36 -04:00
|
|
|
# simulation
|
|
|
|
generators = [
|
2018-08-28 07:43:58 -04:00
|
|
|
writes_cmd_data_generator(axi_port, writes),
|
|
|
|
writes_response_generator(axi_port, writes),
|
|
|
|
reads_cmd_generator(axi_port, reads),
|
|
|
|
reads_response_data_generator(axi_port, reads),
|
2018-08-28 07:40:50 -04:00
|
|
|
mem.read_handler(dram_port),
|
|
|
|
mem.write_handler(dram_port)
|
2018-08-27 12:39:36 -04:00
|
|
|
]
|
|
|
|
run_simulation(dut, generators, vcd_name="axi2native.vcd")
|
2018-08-28 07:43:58 -04:00
|
|
|
#mem.show_content()
|
2018-08-28 07:39:11 -04:00
|
|
|
self.assertEqual(self.writes_id_errors, 0)
|
|
|
|
self.assertEqual(self.reads_data_errors, 0)
|
|
|
|
self.assertEqual(self.reads_id_errors, 0)
|
2018-09-06 05:11:17 -04:00
|
|
|
self.assertEqual(self.reads_last_errors, 0)
|
2018-08-28 07:39:11 -04:00
|
|
|
|
2018-08-27 10:21:12 -04:00
|
|
|
def test_burst2beat(self):
|
|
|
|
class Beat:
|
|
|
|
def __init__(self, addr):
|
|
|
|
self.addr = addr
|
|
|
|
|
|
|
|
class Burst:
|
|
|
|
def __init__(self, type, addr, len, size):
|
|
|
|
self.type = type
|
|
|
|
self.addr = addr
|
|
|
|
self.len = len
|
|
|
|
self.size = size
|
|
|
|
|
|
|
|
def to_beats(self):
|
|
|
|
r = []
|
|
|
|
for i in range(self.len + 1):
|
|
|
|
if self.type == burst_types["incr"]:
|
2018-08-29 12:47:40 -04:00
|
|
|
offset = i*2**(self.size)
|
|
|
|
r += [Beat(self.addr + offset)]
|
|
|
|
elif self.type == burst_types["wrap"]:
|
|
|
|
offset = (i*2**(self.size))%((2**self.size)*(self.len))
|
|
|
|
r += [Beat(self.addr + offset)]
|
2018-08-27 10:21:12 -04:00
|
|
|
else:
|
|
|
|
r += [Beat(self.addr)]
|
|
|
|
return r
|
|
|
|
|
|
|
|
def bursts_generator(ax, bursts, valid_rand=50):
|
|
|
|
prng = random.Random(42)
|
|
|
|
for burst in bursts:
|
|
|
|
yield ax.valid.eq(1)
|
|
|
|
yield ax.addr.eq(burst.addr)
|
|
|
|
yield ax.burst.eq(burst.type)
|
|
|
|
yield ax.len.eq(burst.len)
|
|
|
|
yield ax.size.eq(burst.size)
|
|
|
|
while (yield ax.ready) == 0:
|
|
|
|
yield
|
|
|
|
yield ax.valid.eq(0)
|
|
|
|
while prng.randrange(100) < valid_rand:
|
|
|
|
yield
|
|
|
|
yield
|
|
|
|
|
|
|
|
@passive
|
|
|
|
def beats_checker(ax, beats, ready_rand=50):
|
|
|
|
self.errors = 0
|
|
|
|
yield ax.ready.eq(0)
|
|
|
|
prng = random.Random(42)
|
|
|
|
for beat in beats:
|
|
|
|
while ((yield ax.valid) and (yield ax.ready)) == 0:
|
|
|
|
if prng.randrange(100) > ready_rand:
|
|
|
|
yield ax.ready.eq(1)
|
|
|
|
else:
|
|
|
|
yield ax.ready.eq(0)
|
|
|
|
yield
|
|
|
|
ax_addr = (yield ax.addr)
|
|
|
|
if ax_addr != beat.addr:
|
|
|
|
self.errors += 1
|
|
|
|
yield
|
2018-08-28 05:50:11 -04:00
|
|
|
|
2018-08-27 10:21:12 -04:00
|
|
|
# dut
|
|
|
|
ax_burst = stream.Endpoint(ax_description(32, 32))
|
|
|
|
ax_beat = stream.Endpoint(ax_description(32, 32))
|
|
|
|
dut = LiteDRAMAXIBurst2Beat(ax_burst, ax_beat)
|
|
|
|
|
|
|
|
# generate dut input (bursts)
|
|
|
|
prng = random.Random(42)
|
|
|
|
bursts = []
|
|
|
|
for i in range(32):
|
2018-08-29 12:47:40 -04:00
|
|
|
bursts.append(Burst(burst_types["fixed"], prng.randrange(2**32), prng.randrange(255), log2_int(32//8)))
|
|
|
|
bursts.append(Burst(burst_types["incr"], prng.randrange(2**32), prng.randrange(255), log2_int(32//8)))
|
|
|
|
bursts.append(Burst(burst_types["wrap"], 4, 4-1, log2_int(2)))
|
2018-08-28 05:50:11 -04:00
|
|
|
|
2018-08-27 10:21:12 -04:00
|
|
|
# generate expexted dut output (beats for reference)
|
|
|
|
beats = []
|
|
|
|
for burst in bursts:
|
|
|
|
beats += burst.to_beats()
|
|
|
|
|
|
|
|
# simulation
|
|
|
|
generators = [
|
|
|
|
bursts_generator(ax_burst, bursts),
|
|
|
|
beats_checker(ax_beat, beats)
|
|
|
|
]
|
|
|
|
run_simulation(dut, generators, vcd_name="burst2beat.vcd")
|
|
|
|
self.assertEqual(self.errors, 0)
|