remove massive code-duplication, move simple "self.rom" to test_runner.py
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sat, 20 Feb 2021 12:03:35 +0000 (12:03 +0000)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sat, 20 Feb 2021 12:03:42 +0000 (12:03 +0000)
the fu rom mmu unit test does seem to still work

src/soc/experiment/test/test_mmu_dcache.py
src/soc/simple/test/test_runner.py
src/soc/simple/test/test_runner_mmu_rom.py

index dac90d1628e4ad0ed14fe4119c28eb53d520ec88..d7b65cec5cedd25697cb75ec22919cf7c185cde9 100644 (file)
@@ -26,6 +26,11 @@ import random
 
 stop = False
 
+def set_stop(newval):
+    global stop
+    stop = newval
+
+
 def b(x):
     return int.from_bytes(x.to_bytes(8, byteorder='little'),
                           byteorder='big', signed=False)
index dfc444a9c942f0d85ae1b48a774391729bda1373..23d49e2898f73231c6040d953d0cf3a2461ae880 100644 (file)
@@ -119,10 +119,11 @@ def get_dmi(dmi, addr):
 
 
 class TestRunner(FHDLTestCase):
-    def __init__(self, tst_data, microwatt_mmu=False):
+    def __init__(self, tst_data, microwatt_mmu=False, rom=None):
         super().__init__("run_all")
         self.test_data = tst_data
         self.microwatt_mmu = microwatt_mmu
+        self.rom = None
 
     def run_all(self):
         m = Module()
@@ -392,6 +393,15 @@ class TestRunner(FHDLTestCase):
                    "issuer_simulator.vcd",
                    traces, styles, module='top.issuer')
 
+        # add run of instructions
         sim.add_sync_process(process)
+
+        # optionally, if a wishbone-based ROM is passed in, run that as an
+        # extra emulated process
+        if self.rom is not None:
+            dcache = core.fus.fus["mmu0"].alu.dcache
+            default_mem = self.rom
+            sim.add_sync_process(wrap(wb_get(dcache, default_mem, "DCACHE")))
+
         with sim.write_vcd("issuer_simulator.vcd"):
             sim.run()
index fe055ef91fc6cfa5fd428b51fbeeac9821ca2c01..1a2540075b4c88edd20e55a80ec6a646c43ccf38 100644 (file)
@@ -31,405 +31,10 @@ from soc.fu.compunits.test.test_compunit import (setup_test_memory,
                                                  check_sim_memory)
 from soc.debug.dmi import DBGCore, DBGCtrl, DBGStat
 from nmutil.util import wrap
+from soc.experiment.test.test_mmu_dcache import (set_stop, wb_get)
+from soc.simple.test.test_runner import set_dmi, get_dmi
+from soc.simple.test.test_runner import setup_i_memory
+from soc.simple.test.test_runner import TestRunner
 
-stop = False
-
-def wb_get(c, mem, name):
-    """simulator process for getting memory load requests
-    """
-    global stop
-    # mem = mem
-
-    while not stop:
-        while True: # wait for dc_valid
-            if stop:
-                return
-            cyc = yield (c.wb_out.cyc)
-            stb = yield (c.wb_out.stb)
-            if cyc and stb:
-                break
-            yield
-        addr = (yield c.wb_out.adr) << 3
-        if addr not in mem.rom:
-            mem.debug.write("%s LOOKUP FAIL %x\n" % (name, addr))
-            stop = True
-            return
-
-        yield
-        data = mem.rom[addr]
-        yield c.wb_in.dat.eq(data)
-        mem.debug.write("%s get %x data %x\n" % (name, addr, data))
-        yield c.wb_in.ack.eq(1)
-        yield
-        yield c.wb_in.ack.eq(0)
-
-
-def setup_i_memory(imem, startaddr, instructions):
-    mem = imem
-    print("insn before, init mem", mem.depth, mem.width, mem,
-          len(instructions))
-    for i in range(mem.depth):
-        yield mem._array[i].eq(0)
-    yield Settle()
-    startaddr //= 4  # instructions are 32-bit
-    if mem.width == 32:
-        mask = ((1 << 32)-1)
-        for ins in instructions:
-            if isinstance(ins, tuple):
-                insn, code = ins
-            else:
-                insn, code = ins, ''
-            insn = insn & 0xffffffff
-            yield mem._array[startaddr].eq(insn)
-            yield Settle()
-            if insn != 0:
-                print("instr: %06x 0x%x %s" % (4*startaddr, insn, code))
-            startaddr += 1
-            startaddr = startaddr & mask
-        return
-
-    # 64 bit
-    mask = ((1 << 64)-1)
-    for ins in instructions:
-        if isinstance(ins, tuple):
-            insn, code = ins
-        else:
-            insn, code = ins, ''
-        insn = insn & 0xffffffff
-        msbs = (startaddr >> 1) & mask
-        val = yield mem._array[msbs]
-        if insn != 0:
-            print("before set", hex(4*startaddr),
-                  hex(msbs), hex(val), hex(insn))
-        lsb = 1 if (startaddr & 1) else 0
-        val = (val | (insn << (lsb*32)))
-        val = val & mask
-        yield mem._array[msbs].eq(val)
-        yield Settle()
-        if insn != 0:
-            print("after  set", hex(4*startaddr), hex(msbs), hex(val))
-            print("instr: %06x 0x%x %s %08x" % (4*startaddr, insn, code, val))
-        startaddr += 1
-        startaddr = startaddr & mask
-
-
-def set_dmi(dmi, addr, data):
-    yield dmi.req_i.eq(1)
-    yield dmi.addr_i.eq(addr)
-    yield dmi.din.eq(data)
-    yield dmi.we_i.eq(1)
-    while True:
-        ack = yield dmi.ack_o
-        if ack:
-            break
-        yield
-    yield
-    yield dmi.req_i.eq(0)
-    yield dmi.addr_i.eq(0)
-    yield dmi.din.eq(0)
-    yield dmi.we_i.eq(0)
-    yield
-
-
-def get_dmi(dmi, addr):
-    yield dmi.req_i.eq(1)
-    yield dmi.addr_i.eq(addr)
-    yield dmi.din.eq(0)
-    yield dmi.we_i.eq(0)
-    while True:
-        ack = yield dmi.ack_o
-        if ack:
-            break
-        yield
-    yield  # wait one
-    data = yield dmi.dout  # get data after ack valid for 1 cycle
-    yield dmi.req_i.eq(0)
-    yield dmi.addr_i.eq(0)
-    yield dmi.we_i.eq(0)
-    yield
-    return data
-
-
-class TestRunner(FHDLTestCase):
-    def __init__(self, tst_data, rom):
-        super().__init__("run_all")
-        self.test_data = tst_data
-        self.rom = rom
-
-    def run_all(self):
-        m = Module()
-        comb = m.d.comb
-        pc_i = Signal(32)
-
-        pspec = TestMemPspec(ldst_ifacetype='test_bare_wb',
-                             imem_ifacetype='test_bare_wb',
-                             addr_wid=48,
-                             mask_wid=8,
-                             imem_reg_wid=64,
-                             # wb_data_width=32,
-                             use_pll=False,
-                             nocore=False,
-                             xics=False,
-                             gpio=False,
-                             mmu=True,
-                             reg_wid=64)
-        m.submodules.issuer = issuer = TestIssuerInternal(pspec)
-        imem = issuer.imem._get_memory()
-        core = issuer.core
-        dmi = issuer.dbg.dmi
-        pdecode2 = issuer.pdecode2
-        l0 = core.l0
-
-        # copy of the decoder for simulator
-        simdec = create_pdecode()
-        simdec2 = PowerDecode2(simdec)
-        m.submodules.simdec2 = simdec2  # pain in the neck
-
-        # run core clock at same rate as test clock
-        intclk = ClockSignal("coresync")
-        comb += intclk.eq(ClockSignal())
-
-        comb += issuer.pc_i.data.eq(pc_i)
-
-        # nmigen Simulation
-        sim = Simulator(m)
-        sim.add_clock(1e-6)
-
-        def process():
-            global stop
-
-            # start in stopped
-            yield from set_dmi(dmi, DBGCore.CTRL, 1<<DBGCtrl.STOP)
-            yield
-            yield
-
-            # get each test, completely reset the core, and run it
-
-            for test in self.test_data:
-
-                # pull a reset
-                # yield from set_dmi(dmi, DBGCore.CTRL, 1<<DBGCtrl.RESET)
-
-                # set up bigendian (TODO: don't do this, use MSR)
-                yield issuer.core_bigendian_i.eq(bigendian)
-                yield Settle()
-
-                yield
-                yield
-                yield
-                yield
-
-                print(test.name)
-                program = test.program
-                self.subTest(test.name)
-                print("regs", test.regs)
-                print("sprs", test.sprs)
-                print("cr", test.cr)
-                print("mem", test.mem)
-                print("msr", test.msr)
-                print("assem", program.assembly)
-                gen = list(program.generate_instructions())
-                insncode = program.assembly.splitlines()
-                instructions = list(zip(gen, insncode))
-
-                # set up the Simulator (which must track TestIssuer exactly)
-                sim = ISA(simdec2, test.regs, test.sprs, test.cr, test.mem,
-                          test.msr,
-                          initial_insns=gen, respect_pc=True,
-                          disassembly=insncode,
-                          bigendian=bigendian,
-                          initial_svstate=test.svstate)
-
-                # establish the TestIssuer context (mem, regs etc)
-
-                pc = 0  # start address
-                counter = 0  # test to pause/start
-
-                yield from setup_i_memory(imem, pc, instructions)
-                yield from setup_test_memory(l0, sim)
-                yield from setup_regs(pdecode2, core, test)
-                # TODO, setup svstate here in core.regs.state regfile
-                # https://bugs.libre-soc.org/show_bug.cgi?id=583#c35
-                # setup of SVSTATE
-                initial_svstate = test.svstate
-                if isinstance(initial_svstate, int):
-                    initial_svstate = SVP64State(initial_svstate)
-                svstate_reg = core.regs.state.regs[StateRegs.SVSTATE].reg
-                yield svstate_reg.eq(initial_svstate.spr.value)
-
-                yield pc_i.eq(pc)
-                yield issuer.pc_i.ok.eq(1)
-                yield
-
-                print("instructions", instructions)
-
-                # run the loop of the instructions on the current test
-                index = sim.pc.CIA.value//4
-                while index < len(instructions):
-                    ins, code = instructions[index]
-
-                    print("instruction: 0x{:X}".format(ins & 0xffffffff))
-                    print(index, code)
-
-                    if counter == 0:
-                        # start the core
-                        yield
-                        yield from set_dmi(dmi, DBGCore.CTRL, 1<<DBGCtrl.START)
-                        yield issuer.pc_i.ok.eq(0)  # no change PC after this
-                        yield
-                        yield
-
-                    counter = counter + 1
-
-                    # wait until executed
-                    yield from wait_for_busy_hi(core)
-                    yield from wait_for_busy_clear(core)
-
-                    # set up simulated instruction (in simdec2)
-                    try:
-                        yield from sim.setup_one()
-                    except KeyError:  # indicates instruction not in imem: stop
-                        break
-                    yield Settle()
-
-                    # call simulated operation
-                    print("sim", code)
-                    yield from sim.execute_one()
-                    yield Settle()
-                    index = sim.pc.CIA.value//4
-
-                    terminated = yield issuer.dbg.terminated_o
-                    print("terminated", terminated)
-
-                    if index >= len(instructions):
-                        print ("index over, send dmi stop")
-                        # stop at end
-                        yield from set_dmi(dmi, DBGCore.CTRL, 1<<DBGCtrl.STOP)
-                        yield
-                        yield
-
-                    # wait one cycle for registers to settle
-                    yield
-
-                    # register check
-                    yield from check_regs(self, sim, core, test, code)
-
-                    # Memory check
-                    yield from check_sim_memory(self, l0, sim, code)
-
-                    terminated = yield issuer.dbg.terminated_o
-                    print("terminated(2)", terminated)
-                    if terminated:
-                        break
-
-                # stop at end
-                yield from set_dmi(dmi, DBGCore.CTRL, 1<<DBGCtrl.STOP)
-                yield
-                yield
-
-                # get CR
-                cr = yield from get_dmi(dmi, DBGCore.CR)
-                print("after test %s cr value %x" % (test.name, cr))
-
-                # get XER
-                xer = yield from get_dmi(dmi, DBGCore.XER)
-                print("after test %s XER value %x" % (test.name, xer))
-
-                # test of dmi reg get
-                for int_reg in range(32):
-                    yield from set_dmi(dmi, DBGCore.GSPR_IDX, int_reg)
-                    value = yield from get_dmi(dmi, DBGCore.GSPR_DATA)
-
-                    print("after test %s reg %2d value %x" %
-                          (test.name, int_reg, value))
-        stop = True
-
-        styles = {
-            'dec': {'base': 'dec'},
-            'bin': {'base': 'bin'}
-        }
-
-        traces = [
-            'clk',
-            {'comment': 'state machines'},
-            'fetch_pc_valid_i', 'fetch_pc_ready_o', 'fetch_fsm_state',
-            'fetch_insn_valid_o', 'fetch_insn_ready_i', 'fsm_state',
-            {'comment': 'fetch and decode'},
-            'cia[63:0]', 'nia[63:0]', 'pc[63:0]', 'raw_insn_i[31:0]',
-            'raw_opcode_in[31:0]', 'insn_type',
-            {'comment': 'svp64 decoding'},
-            'svp64_rm[23:0]',
-            ('dec2.extra[8:0]', 'bin'),
-            ('register augmentation', 'dec', [
-                {'comment': 'v3.0b registers'},
-                'dec2.dec_o.RT[4:0]',
-                'dec2.dec_a.RA[4:0]',
-                'dec2.dec_b.RB[4:0]',
-                ('Rdest', [
-                    'dec2.o_svdec.reg_in[4:0]',
-                    ('dec2.o_svdec.spec[2:0]', 'bin'),
-                    'dec2.o_svdec.reg_out[6:0]']),
-                ('Rsrc1', [
-                    'dec2.in1_svdec.reg_in[4:0]',
-                    ('dec2.in1_svdec.spec[2:0]', 'bin'),
-                    'dec2.in1_svdec.reg_out[6:0]']),
-                ('Rsrc1', [
-                    'dec2.in2_svdec.reg_in[4:0]',
-                    ('dec2.in2_svdec.spec[2:0]', 'bin'),
-                    'dec2.in2_svdec.reg_out[6:0]']),
-                {'comment': 'SVP64 registers'},
-                'dec2.rego[6:0]', 'dec2.reg1[6:0]', 'dec2.reg2[6:0]'
-            ]),
-            {'comment': 'svp64 context'},
-            'core_core_vl[6:0]', 'core_core_maxvl[6:0]',
-            'core_core_srcstep[6:0]', 'core_core_dststep[6:0]',
-            {'comment': 'issue and execute'},
-            'core.core_core_insn_type',
-            (None, 'dec', [
-                'core_rego[6:0]', 'core_reg1[6:0]', 'core_reg2[6:0]']),
-            'issue_i', 'busy_o',
-            {'comment': 'dmi'},
-            'dbg.dmi_req_i', 'dbg.dmi_ack_o',
-            {'comment': 'instruction memory'},
-            'imem.sram.rdport.memory(0)[63:0]',
-            {'comment': 'registers'},
-            'core.int.rp_src1.memory(0)[63:0]',
-            'core.int.rp_src1.memory(1)[63:0]',
-            'core.int.rp_src1.memory(2)[63:0]',
-            'core.int.rp_src1.memory(3)[63:0]',
-            'core.int.rp_src1.memory(4)[63:0]',
-            'core.int.rp_src1.memory(5)[63:0]',
-            'core.int.rp_src1.memory(6)[63:0]',
-            'core.int.rp_src1.memory(7)[63:0]',
-            'core.int.rp_src1.memory(9)[63:0]',
-            'core.int.rp_src1.memory(10)[63:0]',
-            'core.int.rp_src1.memory(13)[63:0]',
-        ]
-
-        if 1: #mmu
-            traces += [
-                {'comment': 'microwatt_mmu'},
-                'core.fus.mmu0.alu_mmu0.illegal',
-                'core.fus.mmu0.alu_mmu0.debug0[3:0]',
-                'core.fus.mmu0.alu_mmu0.mmu.state',
-                'core.fus.mmu0.alu_mmu0.mmu.pid[31:0]',
-                'core.fus.mmu0.alu_mmu0.mmu.prtbl[63:0]',
-                {'comment': 'wishbone_memory'},
-                'core.fus.mmu0.alu_mmu0.dcache.stb',
-                'core.fus.mmu0.alu_mmu0.dcache.cyc',
-                'core.fus.mmu0.alu_mmu0.dcache.we',
-                'core.fus.mmu0.alu_mmu0.dcache.ack',
-                'core.fus.mmu0.alu_mmu0.dcache.stall,'
-            ]
-
-        write_gtkw("issuer_simulator.gtkw",
-                   "issuer_simulator.vcd",
-                   traces, styles, module='top.issuer')
-
-        sim.add_sync_process(process)
-        if 1: #mmu
-            dcache = core.fus.fus["mmu0"].alu.dcache
-            default_mem = self.rom
-            sim.add_sync_process(wrap(wb_get(dcache, default_mem, "DCACHE")))
-        with sim.write_vcd("issuer_simulator.vcd"):
-            sim.run()
+# tobias please don't do massive duplication of code.  modify the existing code
+# to add extra options, make sure those options have "no effect".