tb: Fix reset occasionally failing
We might not release rst synchronously if clk was already high. Fix this
by forcing clk to z.
Fixes: 19f2f65
("axis_mii_tx: Add reset")
Signed-off-by: Sean Anderson <seanga2@gmail.com>
This commit is contained in:
parent
43612337e4
commit
e59e34db93
|
@ -6,10 +6,10 @@ import random
|
|||
import zlib
|
||||
|
||||
import cocotb
|
||||
from cocotb.binary import BinaryValue
|
||||
from cocotb.clock import Clock
|
||||
from cocotb.regression import TestFactory
|
||||
from cocotb.triggers import ClockCycles, Edge, FallingEdge, First, RisingEdge, Timer
|
||||
from cocotb.types import LogicArray
|
||||
from cocotb.utils import get_sim_time
|
||||
|
||||
from . import axis_replay_buffer
|
||||
|
@ -21,6 +21,7 @@ import os
|
|||
skip_slow = not os.environ.get('RUN_SLOW', False)
|
||||
|
||||
async def init(mac):
|
||||
mac.clk.value = BinaryValue('Z')
|
||||
mac.rst.value = 1
|
||||
mac.mii_col.value = 0
|
||||
mac.mii_crs.value = 0
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
# Copyright (C) 2022 Sean Anderson <seanga2@gmail.com>
|
||||
|
||||
import cocotb
|
||||
from cocotb.binary import BinaryValue
|
||||
from cocotb.clock import Clock
|
||||
from cocotb.regression import TestFactory
|
||||
from cocotb.triggers import ClockCycles, FallingEdge, RisingEdge, Timer
|
||||
|
@ -36,6 +37,7 @@ async def send_packet(signals, packet, ratio=1, last_extra=0):
|
|||
|
||||
@timeout(30, 'us')
|
||||
async def test_replay(buf, in_ratio, out_ratio):
|
||||
buf.clk.value = BinaryValue('Z')
|
||||
buf.rst.value = 1
|
||||
buf.s_axis_valid.value = 0
|
||||
buf.s_axis_last.value = 0
|
||||
|
|
Loading…
Reference in New Issue