mirror of
https://github.com/fpganinja/taxi.git
synced 2025-12-09 17:08:38 -08:00
eth: Add MAC pause control modules
Signed-off-by: Alex Forencich <alex@alexforencich.com>
This commit is contained in:
46
tb/eth/taxi_mac_pause_ctrl_rx/Makefile
Normal file
46
tb/eth/taxi_mac_pause_ctrl_rx/Makefile
Normal file
@@ -0,0 +1,46 @@
|
||||
# SPDX-License-Identifier: CERN-OHL-S-2.0
|
||||
#
|
||||
# Copyright (c) 2023-2025 FPGA Ninja, LLC
|
||||
#
|
||||
# Authors:
|
||||
# - Alex Forencich
|
||||
|
||||
TOPLEVEL_LANG = verilog
|
||||
|
||||
SIM ?= verilator
|
||||
WAVES ?= 0
|
||||
|
||||
COCOTB_HDL_TIMEUNIT = 1ns
|
||||
COCOTB_HDL_TIMEPRECISION = 1ps
|
||||
|
||||
DUT = taxi_mac_pause_ctrl_rx
|
||||
COCOTB_TEST_MODULES = test_$(DUT)
|
||||
COCOTB_TOPLEVEL = $(DUT)
|
||||
MODULE = $(COCOTB_TEST_MODULES)
|
||||
TOPLEVEL = $(COCOTB_TOPLEVEL)
|
||||
VERILOG_SOURCES += ../../../rtl/eth/$(DUT).sv
|
||||
|
||||
# handle file list files
|
||||
process_f_file = $(call process_f_files,$(addprefix $(dir $1),$(shell cat $1)))
|
||||
process_f_files = $(foreach f,$1,$(if $(filter %.f,$f),$(call process_f_file,$f),$f))
|
||||
uniq_base = $(if $1,$(call uniq_base,$(foreach f,$1,$(if $(filter-out $(notdir $(lastword $1)),$(notdir $f)),$f,))) $(lastword $1))
|
||||
VERILOG_SOURCES := $(call uniq_base,$(call process_f_files,$(VERILOG_SOURCES)))
|
||||
|
||||
# module parameters
|
||||
export PARAM_MCF_PARAMS_SIZE := 18
|
||||
export PARAM_PFC_EN := "1'b1"
|
||||
|
||||
ifeq ($(SIM), icarus)
|
||||
PLUSARGS += -fst
|
||||
|
||||
COMPILE_ARGS += $(foreach v,$(filter PARAM_%,$(.VARIABLES)),-P $(COCOTB_TOPLEVEL).$(subst PARAM_,,$(v))=$($(v)))
|
||||
else ifeq ($(SIM), verilator)
|
||||
COMPILE_ARGS += $(foreach v,$(filter PARAM_%,$(.VARIABLES)),-G$(subst PARAM_,,$(v))=$($(v)))
|
||||
|
||||
ifeq ($(WAVES), 1)
|
||||
COMPILE_ARGS += --trace-fst
|
||||
VERILATOR_TRACE = 1
|
||||
endif
|
||||
endif
|
||||
|
||||
include $(shell cocotb-config --makefiles)/Makefile.sim
|
||||
424
tb/eth/taxi_mac_pause_ctrl_rx/test_taxi_mac_pause_ctrl_rx.py
Normal file
424
tb/eth/taxi_mac_pause_ctrl_rx/test_taxi_mac_pause_ctrl_rx.py
Normal file
@@ -0,0 +1,424 @@
|
||||
#!/usr/bin/env python
|
||||
# SPDX-License-Identifier: CERN-OHL-S-2.0
|
||||
"""
|
||||
|
||||
Copyright (c) 2023-2025 FPGA Ninja, LLC
|
||||
|
||||
Authors:
|
||||
- Alex Forencich
|
||||
|
||||
"""
|
||||
|
||||
import logging
|
||||
import os
|
||||
import struct
|
||||
|
||||
from scapy.layers.l2 import Ether
|
||||
from scapy.utils import mac2str
|
||||
|
||||
import cocotb_test.simulator
|
||||
|
||||
import cocotb
|
||||
from cocotb.clock import Clock
|
||||
from cocotb.triggers import RisingEdge
|
||||
from cocotb.regression import TestFactory
|
||||
from cocotb.utils import get_sim_time
|
||||
|
||||
from cocotbext.axi.stream import define_stream
|
||||
|
||||
|
||||
McfBus, McfTransaction, McfSource, McfSink, McfMonitor = define_stream("Mcf",
|
||||
signals=["valid", "eth_dst", "eth_src", "eth_type", "opcode", "params"],
|
||||
optional_signals=["ready", "id", "dest", "user"]
|
||||
)
|
||||
|
||||
|
||||
class TB:
|
||||
def __init__(self, dut):
|
||||
self.dut = dut
|
||||
|
||||
self.log = logging.getLogger("cocotb.tb")
|
||||
self.log.setLevel(logging.DEBUG)
|
||||
|
||||
cocotb.start_soon(Clock(dut.clk, 6.4, units="ns").start())
|
||||
|
||||
self.mcf_source = McfSource(McfBus.from_prefix(dut, "mcf"), dut.clk, dut.rst)
|
||||
|
||||
dut.rx_lfc_en.setimmediatevalue(0)
|
||||
dut.rx_lfc_ack.setimmediatevalue(0)
|
||||
|
||||
dut.rx_pfc_en.setimmediatevalue(0)
|
||||
dut.rx_pfc_ack.setimmediatevalue(0)
|
||||
|
||||
dut.cfg_rx_lfc_opcode.setimmediatevalue(0)
|
||||
dut.cfg_rx_lfc_en.setimmediatevalue(0)
|
||||
dut.cfg_rx_pfc_opcode.setimmediatevalue(0)
|
||||
dut.cfg_rx_pfc_en.setimmediatevalue(0)
|
||||
dut.cfg_quanta_step.setimmediatevalue(256)
|
||||
dut.cfg_quanta_clk_en.setimmediatevalue(1)
|
||||
|
||||
async def reset(self):
|
||||
self.dut.rst.setimmediatevalue(0)
|
||||
await RisingEdge(self.dut.clk)
|
||||
await RisingEdge(self.dut.clk)
|
||||
self.dut.rst.value = 1
|
||||
await RisingEdge(self.dut.clk)
|
||||
await RisingEdge(self.dut.clk)
|
||||
self.dut.rst.value = 0
|
||||
await RisingEdge(self.dut.clk)
|
||||
await RisingEdge(self.dut.clk)
|
||||
|
||||
async def send_mcf(self, pkt):
|
||||
mcf = McfTransaction()
|
||||
mcf.eth_dst = int.from_bytes(mac2str(pkt[Ether].dst), 'big')
|
||||
mcf.eth_src = int.from_bytes(mac2str(pkt[Ether].src), 'big')
|
||||
mcf.eth_type = pkt[Ether].type
|
||||
mcf.opcode = int.from_bytes(bytes(pkt[Ether].payload)[0:2], 'big')
|
||||
mcf.params = int.from_bytes(bytes(pkt[Ether].payload)[2:], 'little')
|
||||
|
||||
await self.mcf_source.send(mcf)
|
||||
|
||||
|
||||
async def run_test_lfc(dut):
|
||||
|
||||
tb = TB(dut)
|
||||
|
||||
await tb.reset()
|
||||
|
||||
dut.rx_lfc_en.value = 1
|
||||
dut.rx_lfc_ack.value = 0
|
||||
|
||||
dut.rx_pfc_en.value = 0
|
||||
dut.rx_pfc_ack.value = 0
|
||||
|
||||
dut.cfg_rx_lfc_opcode.value = 0x0001
|
||||
dut.cfg_rx_lfc_en.value = 1
|
||||
dut.cfg_rx_pfc_opcode.value = 0x0101
|
||||
dut.cfg_rx_pfc_en.value = 0
|
||||
dut.cfg_quanta_step.value = int(10000*256 / (512*156.25))
|
||||
dut.cfg_quanta_clk_en.value = 1
|
||||
|
||||
tb.log.info("Test release time accuracy")
|
||||
eth = Ether(src='5A:51:52:53:54:55', dst='01:80:C2:00:00:01', type=0x8808)
|
||||
test_pkt = eth / struct.pack('!HH', 0x0001, 100)
|
||||
|
||||
await tb.send_mcf(test_pkt)
|
||||
|
||||
while dut.rx_lfc_req.value == 0:
|
||||
await RisingEdge(dut.clk)
|
||||
dut.rx_lfc_ack.value = 1
|
||||
|
||||
start_time = get_sim_time('sec')
|
||||
while dut.rx_lfc_req.value:
|
||||
await RisingEdge(dut.clk)
|
||||
stop_time = get_sim_time('sec')
|
||||
|
||||
dut.rx_lfc_ack.value = 0
|
||||
|
||||
pause_time = stop_time-start_time
|
||||
pause_quanta = pause_time / (512 * 1/10e9)
|
||||
|
||||
tb.log.info("pause time : %g s", pause_time)
|
||||
tb.log.info("pause quanta : %f", pause_quanta)
|
||||
|
||||
assert round(pause_quanta) == 100
|
||||
|
||||
tb.log.info("Test release time accuracy (with refresh)")
|
||||
eth = Ether(src='5A:51:52:53:54:55', dst='01:80:C2:00:00:01', type=0x8808)
|
||||
test_pkt = eth / struct.pack('!HH', 0x0001, 100)
|
||||
|
||||
await tb.send_mcf(test_pkt)
|
||||
|
||||
while dut.rx_lfc_req.value == 0:
|
||||
await RisingEdge(dut.clk)
|
||||
dut.rx_lfc_ack.value = 1
|
||||
|
||||
for k in range(400):
|
||||
await RisingEdge(dut.clk)
|
||||
|
||||
await tb.send_mcf(test_pkt)
|
||||
|
||||
start_time = get_sim_time('sec')
|
||||
while dut.rx_lfc_req.value:
|
||||
await RisingEdge(dut.clk)
|
||||
stop_time = get_sim_time('sec')
|
||||
|
||||
dut.rx_lfc_ack.value = 0
|
||||
|
||||
pause_time = stop_time-start_time
|
||||
pause_quanta = pause_time / (512 * 1/10e9)
|
||||
|
||||
tb.log.info("pause time : %g s", pause_time)
|
||||
tb.log.info("pause quanta : %f", pause_quanta)
|
||||
|
||||
assert round(pause_quanta) == 100
|
||||
|
||||
tb.log.info("Test explicit release")
|
||||
eth = Ether(src='5A:51:52:53:54:55', dst='01:80:C2:00:00:01', type=0x8808)
|
||||
test_pkt = eth / struct.pack('!HH', 0x0001, 100)
|
||||
|
||||
await tb.send_mcf(test_pkt)
|
||||
|
||||
while dut.rx_lfc_req.value == 0:
|
||||
await RisingEdge(dut.clk)
|
||||
dut.rx_lfc_ack.value = 1
|
||||
|
||||
start_time = get_sim_time('sec')
|
||||
|
||||
eth = Ether(src='5A:51:52:53:54:55', dst='01:80:C2:00:00:01', type=0x8808)
|
||||
test_pkt = eth / struct.pack('!HH', 0x0001, 0)
|
||||
|
||||
await tb.send_mcf(test_pkt)
|
||||
|
||||
while dut.rx_lfc_req.value:
|
||||
await RisingEdge(dut.clk)
|
||||
stop_time = get_sim_time('sec')
|
||||
|
||||
dut.rx_lfc_ack.value = 0
|
||||
|
||||
pause_time = stop_time-start_time
|
||||
pause_quanta = pause_time / (512 * 1/10e9)
|
||||
|
||||
tb.log.info("pause time : %g s", pause_time)
|
||||
tb.log.info("pause quanta : %f", pause_quanta)
|
||||
|
||||
assert round(pause_quanta) < 50
|
||||
|
||||
await RisingEdge(dut.clk)
|
||||
await RisingEdge(dut.clk)
|
||||
|
||||
|
||||
async def run_test_pfc(dut):
|
||||
|
||||
tb = TB(dut)
|
||||
|
||||
await tb.reset()
|
||||
|
||||
dut.rx_lfc_en.value = 0
|
||||
dut.rx_lfc_ack.value = 0
|
||||
|
||||
dut.rx_pfc_en.value = 0xFF
|
||||
dut.rx_pfc_ack.value = 0
|
||||
|
||||
dut.cfg_rx_lfc_opcode.value = 0x0001
|
||||
dut.cfg_rx_lfc_en.value = 0
|
||||
dut.cfg_rx_pfc_opcode.value = 0x0101
|
||||
dut.cfg_rx_pfc_en.value = 1
|
||||
dut.cfg_quanta_step.value = int(10000*256 / (512*156.25))
|
||||
dut.cfg_quanta_clk_en.value = 1
|
||||
|
||||
tb.log.info("Test release time accuracy")
|
||||
eth = Ether(src='5A:51:52:53:54:55', dst='01:80:C2:00:00:01', type=0x8808)
|
||||
test_pkt = eth / struct.pack('!HH8H', 0x0101, 0x0001, 100, 0, 0, 0, 0, 0, 0, 0)
|
||||
|
||||
await tb.send_mcf(test_pkt)
|
||||
|
||||
while dut.rx_pfc_req.value == 0x00:
|
||||
await RisingEdge(dut.clk)
|
||||
dut.rx_pfc_ack.value = 0x01
|
||||
|
||||
start_time = get_sim_time('sec')
|
||||
while dut.rx_pfc_req.value:
|
||||
await RisingEdge(dut.clk)
|
||||
stop_time = get_sim_time('sec')
|
||||
|
||||
dut.rx_pfc_ack.value = 0x00
|
||||
|
||||
pause_time = stop_time-start_time
|
||||
pause_quanta = pause_time / (512 * 1/10e9)
|
||||
|
||||
tb.log.info("pause time : %g s", pause_time)
|
||||
tb.log.info("pause quanta : %f", pause_quanta)
|
||||
|
||||
assert round(pause_quanta) == 100
|
||||
|
||||
tb.log.info("Test release time accuracy (with refresh)")
|
||||
eth = Ether(src='5A:51:52:53:54:55', dst='01:80:C2:00:00:01', type=0x8808)
|
||||
test_pkt = eth / struct.pack('!HH8H', 0x0101, 0x0001, 100, 0, 0, 0, 0, 0, 0, 0)
|
||||
|
||||
await tb.send_mcf(test_pkt)
|
||||
|
||||
while dut.rx_pfc_req.value == 0x00:
|
||||
await RisingEdge(dut.clk)
|
||||
dut.rx_pfc_ack.value = 0x01
|
||||
|
||||
for k in range(400):
|
||||
await RisingEdge(dut.clk)
|
||||
|
||||
await tb.send_mcf(test_pkt)
|
||||
|
||||
start_time = get_sim_time('sec')
|
||||
while dut.rx_pfc_req.value:
|
||||
await RisingEdge(dut.clk)
|
||||
stop_time = get_sim_time('sec')
|
||||
|
||||
dut.rx_pfc_ack.value = 0x00
|
||||
|
||||
pause_time = stop_time-start_time
|
||||
pause_quanta = pause_time / (512 * 1/10e9)
|
||||
|
||||
tb.log.info("pause time : %g s", pause_time)
|
||||
tb.log.info("pause quanta : %f", pause_quanta)
|
||||
|
||||
assert round(pause_quanta) == 100
|
||||
|
||||
tb.log.info("Test explicit release")
|
||||
eth = Ether(src='5A:51:52:53:54:55', dst='01:80:C2:00:00:01', type=0x8808)
|
||||
test_pkt = eth / struct.pack('!HH8H', 0x0101, 0x0001, 100, 0, 0, 0, 0, 0, 0, 0)
|
||||
|
||||
await tb.send_mcf(test_pkt)
|
||||
|
||||
while dut.rx_pfc_req.value == 0x00:
|
||||
await RisingEdge(dut.clk)
|
||||
dut.rx_pfc_ack.value = 0x01
|
||||
|
||||
start_time = get_sim_time('sec')
|
||||
|
||||
eth = Ether(src='5A:51:52:53:54:55', dst='01:80:C2:00:00:01', type=0x8808)
|
||||
test_pkt = eth / struct.pack('!HH8H', 0x0101, 0x0001, 0, 0, 0, 0, 0, 0, 0, 0)
|
||||
|
||||
await tb.send_mcf(test_pkt)
|
||||
|
||||
while dut.rx_pfc_req.value:
|
||||
await RisingEdge(dut.clk)
|
||||
stop_time = get_sim_time('sec')
|
||||
|
||||
dut.rx_pfc_ack.value = 0x00
|
||||
|
||||
pause_time = stop_time-start_time
|
||||
pause_quanta = pause_time / (512 * 1/10e9)
|
||||
|
||||
tb.log.info("pause time : %g s", pause_time)
|
||||
tb.log.info("pause quanta : %f", pause_quanta)
|
||||
|
||||
assert round(pause_quanta) < 50
|
||||
|
||||
tb.log.info("Test all channels")
|
||||
eth = Ether(src='5A:51:52:53:54:55', dst='01:80:C2:00:00:01', type=0x8808)
|
||||
test_pkt = eth / struct.pack('!HH8H', 0x0101, 0x00FF, 10, 20, 30, 40, 50, 60, 70, 80)
|
||||
|
||||
await tb.send_mcf(test_pkt)
|
||||
|
||||
while dut.rx_pfc_req.value != 0xff:
|
||||
await RisingEdge(dut.clk)
|
||||
dut.rx_pfc_ack.value = 0xff
|
||||
|
||||
start_time = get_sim_time('sec')
|
||||
|
||||
for k in range(8):
|
||||
while dut.rx_pfc_req.value & (1 << k) != 0x00:
|
||||
await RisingEdge(dut.clk)
|
||||
stop_time = get_sim_time('sec')
|
||||
|
||||
pause_time = stop_time-start_time
|
||||
pause_quanta = pause_time / (512 * 1/10e9)
|
||||
|
||||
tb.log.info("pause time : %g s", pause_time)
|
||||
tb.log.info("pause quanta : %f", pause_quanta)
|
||||
|
||||
assert round(pause_quanta) == (k+1)*10
|
||||
|
||||
dut.rx_pfc_ack.value = 0
|
||||
|
||||
tb.log.info("Test isolation")
|
||||
eth = Ether(src='5A:51:52:53:54:55', dst='01:80:C2:00:00:01', type=0x8808)
|
||||
test_pkt = eth / struct.pack('!HH8H', 0x0101, 0x0001, 100, 0, 0, 0, 0, 0, 0, 0)
|
||||
|
||||
await tb.send_mcf(test_pkt)
|
||||
|
||||
while dut.rx_pfc_req.value & 0x01 == 0x00:
|
||||
await RisingEdge(dut.clk)
|
||||
dut.rx_pfc_ack.value = 0x01
|
||||
|
||||
start_time = get_sim_time('sec')
|
||||
|
||||
eth = Ether(src='5A:51:52:53:54:55', dst='01:80:C2:00:00:01', type=0x8808)
|
||||
test_pkt = eth / struct.pack('!HH8H', 0x0101, 0x0002, 0, 200, 0, 0, 0, 0, 0, 0)
|
||||
|
||||
await tb.send_mcf(test_pkt)
|
||||
|
||||
while dut.rx_pfc_req.value & 0x02 == 0x00:
|
||||
await RisingEdge(dut.clk)
|
||||
dut.rx_pfc_ack.value = 0x03
|
||||
|
||||
eth = Ether(src='5A:51:52:53:54:55', dst='01:80:C2:00:00:01', type=0x8808)
|
||||
test_pkt = eth / struct.pack('!HH8H', 0x0101, 0x0002, 0, 0, 0, 0, 0, 0, 0, 0)
|
||||
|
||||
await tb.send_mcf(test_pkt)
|
||||
|
||||
while dut.rx_pfc_req.value:
|
||||
await RisingEdge(dut.clk)
|
||||
stop_time = get_sim_time('sec')
|
||||
|
||||
dut.rx_pfc_ack.value = 0x00
|
||||
|
||||
pause_time = stop_time-start_time
|
||||
pause_quanta = pause_time / (512 * 1/10e9)
|
||||
|
||||
tb.log.info("pause time : %g s", pause_time)
|
||||
tb.log.info("pause quanta : %f", pause_quanta)
|
||||
|
||||
assert round(pause_quanta) == 100
|
||||
|
||||
await RisingEdge(dut.clk)
|
||||
await RisingEdge(dut.clk)
|
||||
|
||||
|
||||
if cocotb.SIM_NAME:
|
||||
|
||||
for test in [run_test_lfc, run_test_pfc]:
|
||||
|
||||
factory = TestFactory(test)
|
||||
factory.generate_tests()
|
||||
|
||||
|
||||
# cocotb-test
|
||||
|
||||
tests_dir = os.path.abspath(os.path.dirname(__file__))
|
||||
rtl_dir = os.path.abspath(os.path.join(tests_dir, '..', '..', '..', 'rtl'))
|
||||
|
||||
|
||||
def process_f_files(files):
|
||||
lst = {}
|
||||
for f in files:
|
||||
if f[-2:].lower() == '.f':
|
||||
with open(f, 'r') as fp:
|
||||
l = fp.read().split()
|
||||
for f in process_f_files([os.path.join(os.path.dirname(f), x) for x in l]):
|
||||
lst[os.path.basename(f)] = f
|
||||
else:
|
||||
lst[os.path.basename(f)] = f
|
||||
return list(lst.values())
|
||||
|
||||
|
||||
def test_taxi_mac_pause_ctrl_rx(request):
|
||||
dut = "taxi_mac_pause_ctrl_rx"
|
||||
module = os.path.splitext(os.path.basename(__file__))[0]
|
||||
toplevel = dut
|
||||
|
||||
verilog_sources = [
|
||||
os.path.join(rtl_dir, "eth", f"{dut}.sv"),
|
||||
]
|
||||
|
||||
verilog_sources = process_f_files(verilog_sources)
|
||||
|
||||
parameters = {}
|
||||
|
||||
parameters['MCF_PARAMS_SIZE'] = 18
|
||||
parameters['PFC_EN'] = "1'b1"
|
||||
|
||||
extra_env = {f'PARAM_{k}': str(v) for k, v in parameters.items()}
|
||||
|
||||
sim_build = os.path.join(tests_dir, "sim_build",
|
||||
request.node.name.replace('[', '-').replace(']', ''))
|
||||
|
||||
cocotb_test.simulator.run(
|
||||
simulator="verilator",
|
||||
python_search=[tests_dir],
|
||||
verilog_sources=verilog_sources,
|
||||
toplevel=toplevel,
|
||||
module=module,
|
||||
parameters=parameters,
|
||||
sim_build=sim_build,
|
||||
extra_env=extra_env,
|
||||
)
|
||||
Reference in New Issue
Block a user