#!/usr/bin/env python """ Copyright (c) 2014-2016 Alex Forencich 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 module = 'arbiter' srcs = [] srcs.append("../rtl/%s.v" % module) srcs.append("../rtl/priority_encoder.v") srcs.append("test_%s_rr.v" % module) src = ' '.join(srcs) build_cmd = "iverilog -o test_%s.vvp %s" % (module, src) def dut_arbiter_rr(clk, rst, current_test, request, acknowledge, grant, grant_valid, grant_encoded): if os.system(build_cmd): raise Exception("Error running build command") return Cosimulation("vvp -m myhdl test_%s.vvp -lxt2" % module, clk=clk, rst=rst, current_test=current_test, request=request, acknowledge=acknowledge, grant=grant, grant_valid=grant_valid, grant_encoded=grant_encoded) def bench(): # Inputs clk = Signal(bool(0)) rst = Signal(bool(0)) current_test = Signal(intbv(0)[8:]) request = Signal(intbv(0)[32:]) acknowledge = Signal(intbv(0)[32:]) # Outputs grant = Signal(intbv(0)[32:]) grant_valid = Signal(bool(0)) grant_encoded = Signal(intbv(0)[5:]) # DUT dut = dut_arbiter_rr(clk, rst, current_test, request, acknowledge, grant, grant_valid, grant_encoded) @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 prev = 0 print("test 1: one bit") current_test.next = 1 yield clk.posedge for i in range(32): l = [i] k = 0 for y in l: k = k | 1 << y request.next = k yield clk.posedge request.next = 0 yield clk.posedge # emulate round robin l2 = [x for x in l if x < prev] if len(l2) == 0: l2 = l g = max(l2) assert grant == 1 << g assert grant_encoded == g prev = int(grant_encoded) yield clk.posedge yield delay(100) yield clk.posedge print("test 2: cycle") current_test.next = 2 for i in range(32): l = [0, 5, 10, 15, 20, 25, 30] k = 0 for y in l: k = k | 1 << y request.next = k yield clk.posedge request.next = 0 yield clk.posedge # emulate round robin l2 = [x for x in l if x < prev] if len(l2) == 0: l2 = l g = max(l2) assert grant == 1 << g assert grant_encoded == g prev = int(grant_encoded) yield clk.posedge yield delay(100) yield clk.posedge print("test 3: two bits") current_test.next = 3 for i in range(32): for j in range(32): l = [i, j] k = 0 for y in l: k = k | 1 << y request.next = k yield clk.posedge request.next = 0 yield clk.posedge # emulate round robin l2 = [x for x in l if x < prev] if len(l2) == 0: l2 = l g = max(l2) assert grant == 1 << g assert grant_encoded == g prev = int(grant_encoded) yield clk.posedge yield delay(100) yield clk.posedge print("test 4: five bits") current_test.next = 4 for i in range(32): l = [(i*x) % 32 for x in [1,2,3,4,5]] k = 0 for y in l: k = k | 1 << y request.next = k yield clk.posedge request.next = 0 yield clk.posedge # emulate round robin l2 = [x for x in l if x < prev] if len(l2) == 0: l2 = l g = max(l2) assert grant == 1 << g assert grant_encoded == g prev = int(grant_encoded) yield clk.posedge yield delay(100) yield clk.posedge yield delay(100) raise StopSimulation return dut, clkgen, check 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()