2015-03-21 03:32:19 -07:00
|
|
|
#!/usr/bin/env python
|
2014-10-20 15:09:07 -07:00
|
|
|
"""
|
|
|
|
|
2018-02-26 12:25:20 -08:00
|
|
|
Copyright (c) 2014-2018 Alex Forencich
|
2014-10-20 15:09:07 -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-10-20 15:09:07 -07:00
|
|
|
import axis_ep
|
|
|
|
|
2017-11-20 21:31:41 -08:00
|
|
|
module = 'axis_rate_limit'
|
|
|
|
testbench = 'test_%s_64' % module
|
2014-10-20 15:09:07 -07:00
|
|
|
|
|
|
|
srcs = []
|
|
|
|
|
|
|
|
srcs.append("../rtl/%s.v" % module)
|
2016-09-12 13:38:34 -07:00
|
|
|
srcs.append("%s.v" % testbench)
|
2014-10-20 15:09:07 -07:00
|
|
|
|
|
|
|
src = ' '.join(srcs)
|
|
|
|
|
2016-09-12 13:38:34 -07:00
|
|
|
build_cmd = "iverilog -o %s.vvp %s" % (testbench, src)
|
2014-10-20 15:09:07 -07:00
|
|
|
|
|
|
|
def bench():
|
|
|
|
|
2016-09-12 13:38:34 -07:00
|
|
|
# Parameters
|
|
|
|
DATA_WIDTH = 64
|
2017-11-20 21:31:41 -08:00
|
|
|
KEEP_ENABLE = (DATA_WIDTH>8)
|
2016-09-12 13:38:34 -07:00
|
|
|
KEEP_WIDTH = (DATA_WIDTH/8)
|
2017-11-20 21:31:41 -08:00
|
|
|
LAST_ENABLE = 1
|
|
|
|
ID_ENABLE = 1
|
|
|
|
ID_WIDTH = 8
|
|
|
|
DEST_ENABLE = 1
|
|
|
|
DEST_WIDTH = 8
|
|
|
|
USER_ENABLE = 1
|
|
|
|
USER_WIDTH = 1
|
2016-09-12 13:38:34 -07:00
|
|
|
|
2014-10-20 15:09:07 -07:00
|
|
|
# Inputs
|
|
|
|
clk = Signal(bool(0))
|
|
|
|
rst = Signal(bool(0))
|
|
|
|
current_test = Signal(intbv(0)[8:])
|
|
|
|
|
2018-10-25 11:30:35 -07:00
|
|
|
s_axis_tdata = Signal(intbv(0)[DATA_WIDTH:])
|
|
|
|
s_axis_tkeep = Signal(intbv(1)[KEEP_WIDTH:])
|
|
|
|
s_axis_tvalid = Signal(bool(0))
|
|
|
|
s_axis_tlast = Signal(bool(0))
|
|
|
|
s_axis_tid = Signal(intbv(0)[ID_WIDTH:])
|
|
|
|
s_axis_tdest = Signal(intbv(0)[DEST_WIDTH:])
|
|
|
|
s_axis_tuser = Signal(intbv(0)[USER_WIDTH:])
|
|
|
|
m_axis_tready = Signal(bool(0))
|
2014-10-20 15:09:07 -07:00
|
|
|
|
|
|
|
rate_num = Signal(intbv(0)[8:])
|
|
|
|
rate_denom = Signal(intbv(0)[8:])
|
|
|
|
rate_by_frame = Signal(bool(0))
|
|
|
|
|
|
|
|
# Outputs
|
2018-10-25 11:30:35 -07:00
|
|
|
s_axis_tready = Signal(bool(0))
|
|
|
|
m_axis_tdata = Signal(intbv(0)[DATA_WIDTH:])
|
|
|
|
m_axis_tkeep = Signal(intbv(1)[KEEP_WIDTH:])
|
|
|
|
m_axis_tvalid = Signal(bool(0))
|
|
|
|
m_axis_tlast = Signal(bool(0))
|
|
|
|
m_axis_tid = Signal(intbv(0)[ID_WIDTH:])
|
|
|
|
m_axis_tdest = Signal(intbv(0)[DEST_WIDTH:])
|
|
|
|
m_axis_tuser = Signal(intbv(0)[USER_WIDTH:])
|
2014-10-20 15:09:07 -07:00
|
|
|
|
|
|
|
# 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,
|
2018-10-25 11:30:35 -07:00
|
|
|
tdata=s_axis_tdata,
|
|
|
|
tkeep=s_axis_tkeep,
|
|
|
|
tvalid=s_axis_tvalid,
|
|
|
|
tready=s_axis_tready,
|
|
|
|
tlast=s_axis_tlast,
|
|
|
|
tid=s_axis_tid,
|
|
|
|
tdest=s_axis_tdest,
|
|
|
|
tuser=s_axis_tuser,
|
2016-09-12 13:38:34 -07:00
|
|
|
pause=source_pause,
|
|
|
|
name='source'
|
|
|
|
)
|
|
|
|
|
|
|
|
sink = axis_ep.AXIStreamSink()
|
|
|
|
|
|
|
|
sink_logic = sink.create_logic(
|
|
|
|
clk,
|
|
|
|
rst,
|
2018-10-25 11:30:35 -07:00
|
|
|
tdata=m_axis_tdata,
|
|
|
|
tkeep=m_axis_tkeep,
|
|
|
|
tvalid=m_axis_tvalid,
|
|
|
|
tready=m_axis_tready,
|
|
|
|
tlast=m_axis_tlast,
|
|
|
|
tid=m_axis_tid,
|
|
|
|
tdest=m_axis_tdest,
|
|
|
|
tuser=m_axis_tuser,
|
2016-09-12 13:38:34 -07:00
|
|
|
pause=sink_pause,
|
|
|
|
name='sink'
|
|
|
|
)
|
2014-10-20 15:09:07 -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,
|
|
|
|
|
2018-10-25 11:30:35 -07:00
|
|
|
s_axis_tdata=s_axis_tdata,
|
|
|
|
s_axis_tkeep=s_axis_tkeep,
|
|
|
|
s_axis_tvalid=s_axis_tvalid,
|
|
|
|
s_axis_tready=s_axis_tready,
|
|
|
|
s_axis_tlast=s_axis_tlast,
|
|
|
|
s_axis_tid=s_axis_tid,
|
|
|
|
s_axis_tdest=s_axis_tdest,
|
|
|
|
s_axis_tuser=s_axis_tuser,
|
|
|
|
|
|
|
|
m_axis_tdata=m_axis_tdata,
|
|
|
|
m_axis_tkeep=m_axis_tkeep,
|
|
|
|
m_axis_tvalid=m_axis_tvalid,
|
|
|
|
m_axis_tready=m_axis_tready,
|
|
|
|
m_axis_tlast=m_axis_tlast,
|
|
|
|
m_axis_tid=m_axis_tid,
|
|
|
|
m_axis_tdest=m_axis_tdest,
|
|
|
|
m_axis_tuser=m_axis_tuser,
|
2016-09-12 13:38:34 -07:00
|
|
|
|
|
|
|
rate_num=rate_num,
|
|
|
|
rate_denom=rate_denom,
|
|
|
|
rate_by_frame=rate_by_frame
|
|
|
|
)
|
2014-10-20 15:09:07 -07:00
|
|
|
|
|
|
|
@always(delay(4))
|
|
|
|
def clkgen():
|
|
|
|
clk.next = not clk
|
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
reset_stats = Signal(bool(False))
|
|
|
|
cur_frame = Signal(bool(False))
|
|
|
|
tick_count = Signal(intbv(0))
|
|
|
|
byte_count = Signal(intbv(0))
|
|
|
|
frame_count = Signal(intbv(0))
|
|
|
|
|
|
|
|
@always(clk.posedge)
|
|
|
|
def monitor():
|
|
|
|
ctc = int(tick_count)
|
|
|
|
cbc = int(byte_count)
|
|
|
|
cfc = int(frame_count)
|
|
|
|
if reset_stats:
|
|
|
|
ctc = 0
|
|
|
|
cbc = 0
|
|
|
|
cfc = 0
|
|
|
|
reset_stats.next = 0
|
2018-10-25 11:30:35 -07:00
|
|
|
ctc += len(m_axis_tkeep)
|
|
|
|
if m_axis_tready and m_axis_tvalid:
|
|
|
|
cbc += bin(m_axis_tkeep).count('1')
|
|
|
|
if m_axis_tlast:
|
2014-10-21 23:25:28 -07:00
|
|
|
cur_frame.next = False
|
|
|
|
elif not cur_frame:
|
|
|
|
cfc += 1
|
|
|
|
cur_frame.next = True
|
|
|
|
tick_count.next = ctc
|
|
|
|
byte_count.next = cbc
|
|
|
|
frame_count.next = cfc
|
|
|
|
|
2014-10-20 15:09:07 -07:00
|
|
|
@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
|
|
|
|
rate_num.next = 1
|
2014-10-21 23:25:28 -07:00
|
|
|
rate_denom.next = 4
|
2014-10-20 15:09:07 -07:00
|
|
|
rate_by_frame.next = 1
|
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
for frame_mode in (True, False):
|
|
|
|
print("test frame mode %s" % frame_mode)
|
|
|
|
rate_by_frame.next = frame_mode
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
rate_num.next = 1
|
|
|
|
rate_denom.next = 4
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
yield clk.posedge
|
|
|
|
print("test 1: test packet")
|
|
|
|
current_test.next = 1
|
|
|
|
|
2017-11-20 21:31:41 -08: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',
|
|
|
|
id=1,
|
|
|
|
dest=1
|
|
|
|
)
|
|
|
|
|
2016-09-12 13:38:34 -07:00
|
|
|
source.send(test_frame)
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2018-07-02 16:19:35 -07:00
|
|
|
yield sink.wait()
|
2016-09-12 13:38:34 -07:00
|
|
|
rx_frame = sink.recv()
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
assert rx_frame == test_frame
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
yield delay(100)
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
yield clk.posedge
|
|
|
|
print("test 2: longer packet")
|
|
|
|
current_test.next = 2
|
|
|
|
|
2017-11-20 21:31:41 -08:00
|
|
|
test_frame = axis_ep.AXIStreamFrame(
|
|
|
|
b'\xDA\xD1\xD2\xD3\xD4\xD5' +
|
|
|
|
b'\x5A\x51\x52\x53\x54\x55' +
|
|
|
|
b'\x80\x00' +
|
|
|
|
bytearray(range(256)),
|
|
|
|
id=2,
|
|
|
|
dest=1
|
|
|
|
)
|
|
|
|
|
2016-09-12 13:38:34 -07:00
|
|
|
source.send(test_frame)
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2018-07-02 16:19:35 -07:00
|
|
|
yield sink.wait()
|
2016-09-12 13:38:34 -07:00
|
|
|
rx_frame = sink.recv()
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
assert rx_frame == test_frame
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
yield clk.posedge
|
|
|
|
print("test 3: test packet with pauses")
|
|
|
|
current_test.next = 3
|
|
|
|
|
2017-11-20 21:31:41 -08:00
|
|
|
test_frame = axis_ep.AXIStreamFrame(
|
|
|
|
b'\xDA\xD1\xD2\xD3\xD4\xD5' +
|
|
|
|
b'\x5A\x51\x52\x53\x54\x55' +
|
|
|
|
b'\x80\x00' +
|
|
|
|
bytearray(range(256)),
|
|
|
|
id=3,
|
|
|
|
dest=1
|
|
|
|
)
|
|
|
|
|
2016-09-12 13:38:34 -07:00
|
|
|
source.send(test_frame)
|
2014-10-21 23:25:28 -07:00
|
|
|
yield clk.posedge
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
yield delay(64)
|
|
|
|
yield clk.posedge
|
|
|
|
source_pause.next = True
|
|
|
|
yield delay(32)
|
|
|
|
yield clk.posedge
|
|
|
|
source_pause.next = False
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
yield delay(64)
|
|
|
|
yield clk.posedge
|
|
|
|
sink_pause.next = True
|
|
|
|
yield delay(32)
|
|
|
|
yield clk.posedge
|
|
|
|
sink_pause.next = False
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2018-07-02 16:19:35 -07:00
|
|
|
yield sink.wait()
|
2016-09-12 13:38:34 -07:00
|
|
|
rx_frame = sink.recv()
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
assert rx_frame == test_frame
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
yield delay(100)
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
yield clk.posedge
|
|
|
|
print("test 4: back-to-back packets")
|
|
|
|
current_test.next = 4
|
|
|
|
|
2017-11-20 21:31:41 -08: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',
|
|
|
|
id=4,
|
|
|
|
dest=1
|
|
|
|
)
|
|
|
|
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',
|
|
|
|
id=4,
|
|
|
|
dest=2
|
|
|
|
)
|
|
|
|
|
2016-09-12 13:38:34 -07:00
|
|
|
source.send(test_frame1)
|
|
|
|
source.send(test_frame2)
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2018-07-02 16:19:35 -07:00
|
|
|
yield sink.wait()
|
2016-09-12 13:38:34 -07:00
|
|
|
rx_frame = sink.recv()
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
assert rx_frame == test_frame1
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2018-07-02 16:19:35 -07:00
|
|
|
yield sink.wait()
|
2016-09-12 13:38:34 -07:00
|
|
|
rx_frame = sink.recv()
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
assert rx_frame == test_frame2
|
|
|
|
|
|
|
|
yield delay(100)
|
2014-10-20 15:09:07 -07:00
|
|
|
|
|
|
|
yield clk.posedge
|
2014-10-21 23:25:28 -07:00
|
|
|
print("test 5: alternate pause source")
|
|
|
|
current_test.next = 5
|
|
|
|
|
2017-11-20 21:31:41 -08: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',
|
|
|
|
id=5,
|
|
|
|
dest=1
|
|
|
|
)
|
|
|
|
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',
|
|
|
|
id=5,
|
|
|
|
dest=2
|
|
|
|
)
|
|
|
|
|
2016-09-12 13:38:34 -07:00
|
|
|
source.send(test_frame1)
|
|
|
|
source.send(test_frame2)
|
2014-10-20 15:09:07 -07:00
|
|
|
yield clk.posedge
|
2014-10-21 23:25:28 -07:00
|
|
|
|
2018-10-25 11:30:35 -07:00
|
|
|
while s_axis_tvalid or m_axis_tvalid:
|
2014-10-21 23:25:28 -07:00
|
|
|
source_pause.next = True
|
|
|
|
yield clk.posedge
|
|
|
|
yield clk.posedge
|
|
|
|
yield clk.posedge
|
|
|
|
source_pause.next = False
|
|
|
|
yield clk.posedge
|
|
|
|
|
2018-07-02 16:19:35 -07:00
|
|
|
yield sink.wait()
|
2016-09-12 13:38:34 -07:00
|
|
|
rx_frame = sink.recv()
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
assert rx_frame == test_frame1
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2018-07-02 16:19:35 -07:00
|
|
|
yield sink.wait()
|
2016-09-12 13:38:34 -07:00
|
|
|
rx_frame = sink.recv()
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
assert rx_frame == test_frame2
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
yield delay(100)
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
yield clk.posedge
|
|
|
|
print("test 6: alternate pause sink")
|
|
|
|
current_test.next = 6
|
|
|
|
|
2017-11-20 21:31:41 -08: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',
|
|
|
|
id=6,
|
|
|
|
dest=1
|
|
|
|
)
|
|
|
|
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',
|
|
|
|
id=6,
|
|
|
|
dest=2
|
|
|
|
)
|
|
|
|
|
2016-09-12 13:38:34 -07:00
|
|
|
source.send(test_frame1)
|
|
|
|
source.send(test_frame2)
|
2014-10-21 23:25:28 -07:00
|
|
|
yield clk.posedge
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2018-10-25 11:30:35 -07:00
|
|
|
while s_axis_tvalid or m_axis_tvalid:
|
2014-10-21 23:25:28 -07:00
|
|
|
sink_pause.next = True
|
|
|
|
yield clk.posedge
|
|
|
|
yield clk.posedge
|
|
|
|
yield clk.posedge
|
|
|
|
sink_pause.next = False
|
|
|
|
yield clk.posedge
|
|
|
|
|
2018-07-02 16:19:35 -07:00
|
|
|
yield sink.wait()
|
2016-09-12 13:38:34 -07:00
|
|
|
rx_frame = sink.recv()
|
2014-10-21 23:25:28 -07:00
|
|
|
|
|
|
|
assert rx_frame == test_frame1
|
|
|
|
|
2018-07-02 16:19:35 -07:00
|
|
|
yield sink.wait()
|
2016-09-12 13:38:34 -07:00
|
|
|
rx_frame = sink.recv()
|
2014-10-21 23:25:28 -07:00
|
|
|
|
|
|
|
assert rx_frame == test_frame2
|
|
|
|
|
|
|
|
yield delay(100)
|
2014-10-20 15:09:07 -07:00
|
|
|
|
|
|
|
yield clk.posedge
|
2014-10-21 23:25:28 -07:00
|
|
|
print("test 7: tuser assert")
|
|
|
|
current_test.next = 7
|
|
|
|
|
2017-11-20 21:31:41 -08: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',
|
|
|
|
id=7,
|
|
|
|
dest=1,
|
|
|
|
last_cycle_user=1
|
|
|
|
)
|
|
|
|
|
2016-09-12 13:38:34 -07:00
|
|
|
source.send(test_frame)
|
2014-10-21 23:25:28 -07:00
|
|
|
|
2018-07-02 16:19:35 -07:00
|
|
|
yield sink.wait()
|
2016-09-12 13:38:34 -07:00
|
|
|
rx_frame = sink.recv()
|
2014-10-21 23:25:28 -07:00
|
|
|
|
|
|
|
assert rx_frame == test_frame
|
2017-11-20 21:31:41 -08:00
|
|
|
assert rx_frame.last_cycle_user
|
2014-10-21 23:25:28 -07:00
|
|
|
|
|
|
|
yield delay(100)
|
|
|
|
|
2014-10-20 15:09:07 -07:00
|
|
|
yield clk.posedge
|
2014-10-21 23:25:28 -07:00
|
|
|
print("test 8: various lengths and delays")
|
|
|
|
current_test.next = 8
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
for rate in ((1,1), (1,2), (1,10), (2,3)):
|
|
|
|
print("test 8 rate %d / %d" % rate)
|
|
|
|
rate_num.next = rate[0]
|
|
|
|
rate_denom.next = rate[1]
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2018-07-02 16:19:35 -07:00
|
|
|
yield delay(100)
|
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
reset_stats.next = 1
|
|
|
|
yield clk.posedge
|
|
|
|
start_time = now()
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
lens = [32, 48, 64, 96, 128, 256]
|
|
|
|
test_frame = []
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
for i in range(len(lens)):
|
2017-11-20 21:31:41 -08:00
|
|
|
test_frame.append(axis_ep.AXIStreamFrame(
|
|
|
|
b'\xDA\xD1\xD2\xD3\xD4\xD5' +
|
|
|
|
b'\x5A\x51\x52\x53\x54\x55' +
|
|
|
|
b'\x80\x00' +
|
|
|
|
bytearray(range(lens[i])),
|
|
|
|
id=i,
|
|
|
|
dest=1
|
|
|
|
))
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
for f in test_frame:
|
2016-09-12 13:38:34 -07:00
|
|
|
source.send(f)
|
2018-07-02 16:19:35 -07:00
|
|
|
|
|
|
|
rx_frame = []
|
|
|
|
|
|
|
|
for i in range(len(lens)):
|
|
|
|
yield sink.wait()
|
|
|
|
rx_frame.append(sink.recv())
|
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
yield clk.posedge
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2018-10-25 11:30:35 -07:00
|
|
|
while not s_axis_tready:
|
2014-10-21 23:25:28 -07:00
|
|
|
yield clk.posedge
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
stop_time = now()
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
assert len(rx_frame) == len(test_frame)
|
2014-10-20 15:09:07 -07:00
|
|
|
|
2014-10-21 23:25:28 -07:00
|
|
|
for i in range(len(lens)):
|
|
|
|
assert rx_frame[i] == test_frame[i]
|
|
|
|
|
|
|
|
cycle = (stop_time - start_time) / 8
|
|
|
|
|
|
|
|
print("cycles %d" % cycle)
|
|
|
|
print("tick count %d" % tick_count)
|
|
|
|
print("byte count %d" % byte_count)
|
|
|
|
print("frame count %d" % frame_count)
|
|
|
|
|
2018-10-25 11:30:35 -07:00
|
|
|
assert tick_count == cycle*len(m_axis_tkeep)
|
2014-10-21 23:25:28 -07:00
|
|
|
assert byte_count == sum(len(f.data) for f in test_frame)
|
|
|
|
assert frame_count == len(test_frame)
|
|
|
|
|
2015-03-21 02:55:30 -07:00
|
|
|
test_rate = float(rate_num) / float(rate_denom)
|
|
|
|
meas_rate = float(byte_count) / float(tick_count)
|
2014-10-21 23:25:28 -07:00
|
|
|
error = (test_rate - meas_rate) / test_rate
|
|
|
|
|
|
|
|
print("test rate %f" % test_rate)
|
|
|
|
print("meas rate %f" % meas_rate)
|
|
|
|
print("error %f%%" % (error*100))
|
|
|
|
|
|
|
|
assert abs(error) < 0.1
|
|
|
|
|
|
|
|
yield delay(100)
|
2014-10-20 15:09:07 -07:00
|
|
|
|
|
|
|
raise StopSimulation
|
|
|
|
|
2018-06-13 22:26:10 -07:00
|
|
|
return instances()
|
2014-10-20 15:09:07 -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()
|
|
|
|
|