1
0
mirror of https://github.com/corundum/corundum.git synced 2025-01-16 08:12:53 +08:00
corundum/tb/test_axis_fifo.py

409 lines
12 KiB
Python
Raw Normal View History

2015-03-21 03:32:19 -07:00
#!/usr/bin/env python
2014-09-13 21:21:39 -07:00
"""
2017-05-18 13:35:11 -07:00
Copyright (c) 2014-2017 Alex Forencich
2014-09-13 21:21:39 -07:00
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
"""
from myhdl import *
import os
2015-03-21 03:32:19 -07:00
2014-09-13 21:21:39 -07:00
import axis_ep
module = 'axis_fifo'
2016-09-12 13:38:34 -07:00
testbench = 'test_%s' % module
2014-09-13 21:21:39 -07:00
srcs = []
srcs.append("../rtl/%s.v" % module)
2016-09-12 13:38:34 -07:00
srcs.append("%s.v" % testbench)
2014-09-13 21:21:39 -07:00
src = ' '.join(srcs)
2016-09-12 13:38:34 -07:00
build_cmd = "iverilog -o %s.vvp %s" % (testbench, src)
2014-09-13 21:21:39 -07:00
def bench():
2016-09-12 13:38:34 -07:00
# Parameters
ADDR_WIDTH = 2
DATA_WIDTH = 8
2014-09-13 21:21:39 -07:00
# Inputs
clk = Signal(bool(0))
rst = Signal(bool(0))
current_test = Signal(intbv(0)[8:])
2016-09-12 13:38:34 -07:00
input_axis_tdata = Signal(intbv(0)[DATA_WIDTH:])
2014-09-13 21:21:39 -07:00
input_axis_tvalid = Signal(bool(0))
input_axis_tlast = Signal(bool(0))
input_axis_tuser = Signal(bool(0))
output_axis_tready = Signal(bool(0))
# Outputs
input_axis_tready = Signal(bool(0))
2016-09-12 13:38:34 -07:00
output_axis_tdata = Signal(intbv(0)[DATA_WIDTH:])
2014-09-13 21:21:39 -07:00
output_axis_tvalid = Signal(bool(0))
output_axis_tlast = Signal(bool(0))
output_axis_tuser = Signal(bool(0))
# sources and sinks
source_pause = Signal(bool(0))
sink_pause = Signal(bool(0))
2016-09-12 13:38:34 -07:00
source = axis_ep.AXIStreamSource()
source_logic = source.create_logic(
clk,
rst,
tdata=input_axis_tdata,
tvalid=input_axis_tvalid,
tready=input_axis_tready,
tlast=input_axis_tlast,
tuser=input_axis_tuser,
pause=source_pause,
name='source'
)
sink = axis_ep.AXIStreamSink()
sink_logic = sink.create_logic(
clk,
rst,
tdata=output_axis_tdata,
tvalid=output_axis_tvalid,
tready=output_axis_tready,
tlast=output_axis_tlast,
tuser=output_axis_tuser,
pause=sink_pause,
name='sink'
)
2014-09-13 21:21:39 -07:00
# DUT
2016-09-12 13:38:34 -07:00
if os.system(build_cmd):
raise Exception("Error running build command")
dut = Cosimulation(
"vvp -m myhdl %s.vvp -lxt2" % testbench,
clk=clk,
rst=rst,
current_test=current_test,
input_axis_tdata=input_axis_tdata,
input_axis_tvalid=input_axis_tvalid,
input_axis_tready=input_axis_tready,
input_axis_tlast=input_axis_tlast,
input_axis_tuser=input_axis_tuser,
output_axis_tdata=output_axis_tdata,
output_axis_tvalid=output_axis_tvalid,
output_axis_tready=output_axis_tready,
output_axis_tlast=output_axis_tlast,
output_axis_tuser=output_axis_tuser
)
2014-09-13 21:21:39 -07:00
@always(delay(4))
def clkgen():
clk.next = not clk
@instance
def check():
yield delay(100)
yield clk.posedge
rst.next = 1
yield clk.posedge
rst.next = 0
yield clk.posedge
yield delay(100)
yield clk.posedge
yield clk.posedge
yield clk.posedge
print("test 1: test packet")
current_test.next = 1
2015-03-21 03:32:19 -07:00
test_frame = axis_ep.AXIStreamFrame(b'\xDA\xD1\xD2\xD3\xD4\xD5' +
b'\x5A\x51\x52\x53\x54\x55' +
b'\x80\x00' +
b'\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10')
2016-09-12 13:38:34 -07:00
source.send(test_frame)
2014-09-13 21:21:39 -07:00
yield clk.posedge
yield output_axis_tlast.posedge
yield clk.posedge
yield clk.posedge
2016-09-12 13:38:34 -07:00
rx_frame = sink.recv()
2014-09-13 21:21:39 -07:00
assert rx_frame == test_frame
yield delay(100)
yield clk.posedge
print("test 2: longer packet")
current_test.next = 2
2015-03-21 03:32:19 -07:00
test_frame = axis_ep.AXIStreamFrame(b'\xDA\xD1\xD2\xD3\xD4\xD5' +
b'\x5A\x51\x52\x53\x54\x55' +
b'\x80\x00' +
2014-09-13 21:21:39 -07:00
bytearray(range(256)))
2016-09-12 13:38:34 -07:00
source.send(test_frame)
2014-09-13 21:21:39 -07:00
yield clk.posedge
yield output_axis_tlast.posedge
yield clk.posedge
yield clk.posedge
2016-09-12 13:38:34 -07:00
rx_frame = sink.recv()
2014-09-13 21:21:39 -07:00
assert rx_frame == test_frame
yield clk.posedge
print("test 3: test packet with pauses")
current_test.next = 3
2015-03-21 03:32:19 -07:00
test_frame = axis_ep.AXIStreamFrame(b'\xDA\xD1\xD2\xD3\xD4\xD5' +
b'\x5A\x51\x52\x53\x54\x55' +
b'\x80\x00' +
b'\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10')
2016-09-12 13:38:34 -07:00
source.send(test_frame)
2014-09-13 21:21:39 -07:00
yield clk.posedge
yield delay(64)
yield clk.posedge
source_pause.next = True
yield delay(32)
yield clk.posedge
source_pause.next = False
yield delay(64)
yield clk.posedge
sink_pause.next = True
yield delay(32)
yield clk.posedge
sink_pause.next = False
yield output_axis_tlast.posedge
yield clk.posedge
yield clk.posedge
2016-09-12 13:38:34 -07:00
rx_frame = sink.recv()
2014-09-13 21:21:39 -07:00
assert rx_frame == test_frame
yield delay(100)
yield clk.posedge
print("test 4: back-to-back packets")
current_test.next = 4
2015-03-21 03:32:19 -07:00
test_frame1 = axis_ep.AXIStreamFrame(b'\xDA\xD1\xD2\xD3\xD4\xD5' +
b'\x5A\x51\x52\x53\x54\x55' +
b'\x80\x00' +
b'\x01\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10')
test_frame2 = axis_ep.AXIStreamFrame(b'\xDA\xD1\xD2\xD3\xD4\xD5' +
b'\x5A\x51\x52\x53\x54\x55' +
b'\x80\x00' +
b'\x02\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10')
2016-09-12 13:38:34 -07:00
source.send(test_frame1)
source.send(test_frame2)
2014-09-13 21:21:39 -07:00
yield clk.posedge
yield output_axis_tlast.posedge
yield clk.posedge
yield output_axis_tlast.posedge
yield clk.posedge
yield clk.posedge
2016-09-12 13:38:34 -07:00
rx_frame = sink.recv()
2014-09-13 21:21:39 -07:00
assert rx_frame == test_frame1
2016-09-12 13:38:34 -07:00
rx_frame = sink.recv()
2014-09-13 21:21:39 -07:00
assert rx_frame == test_frame2
yield delay(100)
yield clk.posedge
print("test 5: alternate pause source")
current_test.next = 5
2015-03-21 03:32:19 -07:00
test_frame1 = axis_ep.AXIStreamFrame(b'\xDA\xD1\xD2\xD3\xD4\xD5' +
b'\x5A\x51\x52\x53\x54\x55' +
b'\x80\x00' +
b'\x01\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10')
test_frame2 = axis_ep.AXIStreamFrame(b'\xDA\xD1\xD2\xD3\xD4\xD5' +
b'\x5A\x51\x52\x53\x54\x55' +
b'\x80\x00' +
b'\x02\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10')
2016-09-12 13:38:34 -07:00
source.send(test_frame1)
source.send(test_frame2)
2014-09-13 21:21:39 -07:00
yield clk.posedge
while input_axis_tvalid or output_axis_tvalid:
source_pause.next = True
yield clk.posedge
yield clk.posedge
yield clk.posedge
source_pause.next = False
yield clk.posedge
yield clk.posedge
yield clk.posedge
2016-09-12 13:38:34 -07:00
rx_frame = sink.recv()
2014-09-13 21:21:39 -07:00
assert rx_frame == test_frame1
2016-09-12 13:38:34 -07:00
rx_frame = sink.recv()
2014-09-13 21:21:39 -07:00
assert rx_frame == test_frame2
yield delay(100)
yield clk.posedge
print("test 6: alternate pause sink")
current_test.next = 6
2015-03-21 03:32:19 -07:00
test_frame1 = axis_ep.AXIStreamFrame(b'\xDA\xD1\xD2\xD3\xD4\xD5' +
b'\x5A\x51\x52\x53\x54\x55' +
b'\x80\x00' +
b'\x01\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10')
test_frame2 = axis_ep.AXIStreamFrame(b'\xDA\xD1\xD2\xD3\xD4\xD5' +
b'\x5A\x51\x52\x53\x54\x55' +
b'\x80\x00' +
b'\x02\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10')
2016-09-12 13:38:34 -07:00
source.send(test_frame1)
source.send(test_frame2)
2014-09-13 21:21:39 -07:00
yield clk.posedge
while input_axis_tvalid or output_axis_tvalid:
sink_pause.next = True
yield clk.posedge
yield clk.posedge
yield clk.posedge
sink_pause.next = False
yield clk.posedge
yield clk.posedge
yield clk.posedge
2016-09-12 13:38:34 -07:00
rx_frame = sink.recv()
2014-09-13 21:21:39 -07:00
assert rx_frame == test_frame1
2016-09-12 13:38:34 -07:00
rx_frame = sink.recv()
2014-09-13 21:21:39 -07:00
assert rx_frame == test_frame2
yield delay(100)
yield clk.posedge
print("test 7: tuser assert")
current_test.next = 7
2015-03-21 03:32:19 -07:00
test_frame = axis_ep.AXIStreamFrame(b'\xDA\xD1\xD2\xD3\xD4\xD5' +
b'\x5A\x51\x52\x53\x54\x55' +
b'\x80\x00' +
b'\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\x10')
2014-09-13 21:21:39 -07:00
test_frame.user = 1
2016-09-12 13:38:34 -07:00
source.send(test_frame)
2014-09-13 21:21:39 -07:00
yield clk.posedge
yield output_axis_tlast.posedge
yield clk.posedge
yield clk.posedge
2016-09-12 13:38:34 -07:00
rx_frame = sink.recv()
2014-09-13 21:21:39 -07:00
assert rx_frame == test_frame
assert rx_frame.user[-1]
yield delay(100)
2015-07-09 11:13:25 -07:00
yield clk.posedge
print("test 8: initial sink pause")
current_test.next = 8
test_frame = axis_ep.AXIStreamFrame(b'\x01\x02\x03')
sink_pause.next = 1
2016-09-12 13:38:34 -07:00
source.send(test_frame)
2015-07-09 11:13:25 -07:00
yield clk.posedge
yield clk.posedge
yield clk.posedge
yield clk.posedge
sink_pause.next = 0
yield output_axis_tlast.posedge
yield clk.posedge
yield clk.posedge
2016-09-12 13:38:34 -07:00
rx_frame = sink.recv()
2015-07-09 11:13:25 -07:00
assert rx_frame == test_frame
yield delay(100)
yield clk.posedge
print("test 9: initial sink pause, reset")
current_test.next = 9
test_frame = axis_ep.AXIStreamFrame(b'\x01\x02\x03')
sink_pause.next = 1
2016-09-12 13:38:34 -07:00
source.send(test_frame)
2015-07-09 11:13:25 -07:00
yield clk.posedge
yield clk.posedge
yield clk.posedge
yield clk.posedge
rst.next = 1
yield clk.posedge
rst.next = 0
sink_pause.next = 0
yield delay(100)
yield clk.posedge
yield clk.posedge
yield clk.posedge
2016-09-12 13:38:34 -07:00
assert sink.empty()
2015-07-09 11:13:25 -07:00
yield delay(100)
2014-09-13 21:21:39 -07:00
raise StopSimulation
2016-09-12 13:38:34 -07:00
return dut, source_logic, sink_logic, clkgen, check
2014-09-13 21:21:39 -07:00
def test_bench():
os.chdir(os.path.dirname(os.path.abspath(__file__)))
sim = Simulation(bench())
sim.run()
if __name__ == '__main__':
print("Running test...")
test_bench()