format code
[soc.git] / src / soc / simple / test / test_runner.py
1 """TestRunner class, runs TestIssuer instructions
2
3 related bugs:
4
5 * https://bugs.libre-soc.org/show_bug.cgi?id=363
6 * https://bugs.libre-soc.org/show_bug.cgi?id=686#c51
7 """
8 from nmigen import Module, Signal
9 from nmigen.hdl.xfrm import ResetInserter
10 from copy import copy
11
12 # NOTE: to use cxxsim, export NMIGEN_SIM_MODE=cxxsim from the shell
13 # Also, check out the cxxsim nmigen branch, and latest yosys from git
14 from nmutil.sim_tmp_alternative import Simulator, Settle
15
16 from openpower.decoder.isa.caller import SVP64State
17 from openpower.decoder.isa.all import ISA
18 from openpower.endian import bigendian
19
20 from soc.simple.issuer import TestIssuerInternal
21
22 from soc.simple.test.test_core import (setup_regs, check_regs, check_mem,
23 wait_for_busy_clear,
24 wait_for_busy_hi)
25 from soc.fu.compunits.test.test_compunit import (setup_tst_memory,
26 check_sim_memory)
27 from soc.debug.dmi import DBGCore, DBGCtrl, DBGStat
28 from nmutil.util import wrap
29 from openpower.test.state import TestState, StateRunner
30 from openpower.test.runner import TestRunnerBase
31
32
33 def setup_i_memory(imem, startaddr, instructions):
34 mem = imem
35 print("insn before, init mem", mem.depth, mem.width, mem,
36 len(instructions))
37 for i in range(mem.depth):
38 yield mem._array[i].eq(0)
39 yield Settle()
40 startaddr //= 4 # instructions are 32-bit
41 if mem.width == 32:
42 mask = ((1 << 32)-1)
43 for ins in instructions:
44 if isinstance(ins, tuple):
45 insn, code = ins
46 else:
47 insn, code = ins, ''
48 insn = insn & 0xffffffff
49 yield mem._array[startaddr].eq(insn)
50 yield Settle()
51 if insn != 0:
52 print("instr: %06x 0x%x %s" % (4*startaddr, insn, code))
53 startaddr += 1
54 startaddr = startaddr & mask
55 return
56
57 # 64 bit
58 mask = ((1 << 64)-1)
59 for ins in instructions:
60 if isinstance(ins, tuple):
61 insn, code = ins
62 else:
63 insn, code = ins, ''
64 insn = insn & 0xffffffff
65 msbs = (startaddr >> 1) & mask
66 val = yield mem._array[msbs]
67 if insn != 0:
68 print("before set", hex(4*startaddr),
69 hex(msbs), hex(val), hex(insn))
70 lsb = 1 if (startaddr & 1) else 0
71 val = (val | (insn << (lsb*32)))
72 val = val & mask
73 yield mem._array[msbs].eq(val)
74 yield Settle()
75 if insn != 0:
76 print("after set", hex(4*startaddr), hex(msbs), hex(val))
77 print("instr: %06x 0x%x %s %08x" % (4*startaddr, insn, code, val))
78 startaddr += 1
79 startaddr = startaddr & mask
80
81
82 def set_dmi(dmi, addr, data):
83 yield dmi.req_i.eq(1)
84 yield dmi.addr_i.eq(addr)
85 yield dmi.din.eq(data)
86 yield dmi.we_i.eq(1)
87 while True:
88 ack = yield dmi.ack_o
89 if ack:
90 break
91 yield
92 yield
93 yield dmi.req_i.eq(0)
94 yield dmi.addr_i.eq(0)
95 yield dmi.din.eq(0)
96 yield dmi.we_i.eq(0)
97 yield
98
99
100 def get_dmi(dmi, addr):
101 yield dmi.req_i.eq(1)
102 yield dmi.addr_i.eq(addr)
103 yield dmi.din.eq(0)
104 yield dmi.we_i.eq(0)
105 while True:
106 ack = yield dmi.ack_o
107 if ack:
108 break
109 yield
110 yield # wait one
111 data = yield dmi.dout # get data after ack valid for 1 cycle
112 yield dmi.req_i.eq(0)
113 yield dmi.addr_i.eq(0)
114 yield dmi.we_i.eq(0)
115 yield
116 return data
117
118
119 class HDLRunner(StateRunner):
120 """HDLRunner: Implements methods for the setup, preparation, and
121 running of tests using nmigen HDL simulation.
122 """
123
124 def __init__(self, dut, m, pspec):
125 super().__init__("hdl", HDLRunner)
126
127 self.dut = dut
128 self.pc_i = Signal(32)
129 self.svstate_i = Signal(64)
130
131 #hard_reset = Signal(reset_less=True)
132 self.issuer = TestIssuerInternal(pspec)
133 # use DMI RESET command instead, this does actually work though
134 # issuer = ResetInserter({'coresync': hard_reset,
135 # 'sync': hard_reset})(issuer)
136 m.submodules.issuer = self.issuer
137 self.dmi = self.issuer.dbg.dmi
138
139 comb = m.d.comb
140 comb += self.issuer.pc_i.data.eq(self.pc_i)
141 comb += self.issuer.svstate_i.data.eq(self.svstate_i)
142
143 def prepare_for_test(self, test):
144 self.test = test
145
146 # set up bigendian (TODO: don't do this, use MSR)
147 yield self.issuer.core_bigendian_i.eq(bigendian)
148 yield Settle()
149
150 yield
151 yield
152 yield
153 yield
154
155 def setup_during_test(self):
156 yield from set_dmi(self.dmi, DBGCore.CTRL, 1 << DBGCtrl.STOP)
157 yield
158
159 def run_test(self, instructions):
160 """run_hdl_state - runs a TestIssuer nmigen HDL simulation
161 """
162
163 imem = self.issuer.imem._get_memory()
164 core = self.issuer.core
165 dmi = self.issuer.dbg.dmi
166 pdecode2 = self.issuer.pdecode2
167 l0 = core.l0
168 hdl_states = []
169
170 # establish the TestIssuer context (mem, regs etc)
171
172 pc = 0 # start address
173 counter = 0 # test to pause/start
174
175 yield from setup_i_memory(imem, pc, instructions)
176 yield from setup_tst_memory(l0, self.test.mem)
177 yield from setup_regs(pdecode2, core, self.test)
178
179 # set PC and SVSTATE
180 yield self.pc_i.eq(pc)
181 yield self.issuer.pc_i.ok.eq(1)
182
183 # copy initial SVSTATE
184 initial_svstate = copy(self.test.svstate)
185 if isinstance(initial_svstate, int):
186 initial_svstate = SVP64State(initial_svstate)
187 yield self.svstate_i.eq(initial_svstate.value)
188 yield self.issuer.svstate_i.ok.eq(1)
189 yield
190
191 print("instructions", instructions)
192
193 # run the loop of the instructions on the current test
194 index = (yield self.issuer.cur_state.pc) // 4
195 while index < len(instructions):
196 ins, code = instructions[index]
197
198 print("hdl instr: 0x{:X}".format(ins & 0xffffffff))
199 print(index, code)
200
201 if counter == 0:
202 # start the core
203 yield
204 yield from set_dmi(dmi, DBGCore.CTRL,
205 1 << DBGCtrl.START)
206 yield self.issuer.pc_i.ok.eq(0) # no change PC after this
207 yield self.issuer.svstate_i.ok.eq(0) # ditto
208 yield
209 yield
210
211 counter = counter + 1
212
213 # wait until executed
214 while not (yield self.issuer.insn_done):
215 yield
216
217 # okaaay long story: in overlap mode, PC is updated one cycle
218 # late.
219 if self.dut.allow_overlap:
220 yield
221 yield Settle()
222
223 index = (yield self.issuer.cur_state.pc) // 4
224
225 terminated = yield self.issuer.dbg.terminated_o
226 print("terminated", terminated, index, len(instructions))
227
228 if index < len(instructions):
229 # Get HDL mem and state
230 state = yield from TestState("hdl", core, self.dut,
231 code)
232 hdl_states.append(state)
233
234 if index >= len(instructions):
235 print("index over, send dmi stop")
236 # stop at end
237 yield from set_dmi(dmi, DBGCore.CTRL, 1 << DBGCtrl.STOP)
238 yield
239 yield
240
241 terminated = yield self.issuer.dbg.terminated_o
242 print("terminated(2)", terminated)
243 if terminated:
244 break
245
246 if self.dut.allow_overlap:
247 # wait until all settled
248 # XXX really this should be in DMI, which should in turn
249 # use issuer.any_busy to not send back "stopped" signal
250 while (yield self.issuer.any_busy):
251 yield
252
253 if self.dut.allow_overlap:
254 # get last state, at end of run
255 state = yield from TestState("hdl", core, self.dut,
256 code)
257 hdl_states.append(state)
258
259 return hdl_states
260
261 def end_test(self):
262 yield from set_dmi(self.dmi, DBGCore.CTRL, 1 << DBGCtrl.STOP)
263 yield
264 yield
265
266 # TODO, here is where the static (expected) results
267 # can be checked: register check (TODO, memory check)
268 # see https://bugs.libre-soc.org/show_bug.cgi?id=686#c51
269 # yield from check_regs(self, sim, core, test, code,
270 # >>>expected_data<<<)
271
272 # get CR
273 cr = yield from get_dmi(self.dmi, DBGCore.CR)
274 print("after test %s cr value %x" % (self.test.name, cr))
275
276 # get XER
277 xer = yield from get_dmi(self.dmi, DBGCore.XER)
278 print("after test %s XER value %x" % (self.test.name, xer))
279
280 # test of dmi reg get
281 for int_reg in range(32):
282 yield from set_dmi(self.dmi, DBGCore.GSPR_IDX, int_reg)
283 value = yield from get_dmi(self.dmi, DBGCore.GSPR_DATA)
284
285 print("after test %s reg %2d value %x" %
286 (self.test.name, int_reg, value))
287
288 # pull a reset
289 yield from set_dmi(self.dmi, DBGCore.CTRL, 1 << DBGCtrl.RESET)
290 yield
291
292
293 class TestRunner(TestRunnerBase):
294 def __init__(self, tst_data, microwatt_mmu=False, rom=None,
295 svp64=True, run_hdl=True, run_sim=True,
296 allow_overlap=False):
297 if run_hdl:
298 run_hdl = HDLRunner
299 super().__init__(tst_data, microwatt_mmu=microwatt_mmu,
300 rom=rom,
301 svp64=svp64, run_hdl=run_hdl, run_sim=run_sim,
302 allow_overlap=allow_overlap)