move instruction decoder out of core
[soc.git] / src / soc / simple / test / test_core.py
1 """simple core test
2
3 related bugs:
4
5 * https://bugs.libre-soc.org/show_bug.cgi?id=363
6 """
7 from nmigen import Module, Signal, Cat
8 from nmigen.back.pysim import Simulator, Delay, Settle
9 from nmutil.formaltest import FHDLTestCase
10 from nmigen.cli import rtlil
11 import unittest
12 from soc.decoder.isa.caller import special_sprs
13 from soc.decoder.power_decoder import create_pdecode
14 from soc.decoder.power_decoder2 import PowerDecode2
15 from soc.decoder.selectable_int import SelectableInt
16 from soc.decoder.isa.all import ISA
17 from soc.decoder.power_enums import SPR, spr_dict, Function, XER_bits
18 from soc.config.test.test_loadstore import TestMemPspec
19 from soc.config.endian import bigendian
20
21 from soc.simple.core import NonProductionCore
22 from soc.experiment.compalu_multi import find_ok # hack
23
24 from soc.fu.compunits.test.test_compunit import (setup_test_memory,
25 check_sim_memory)
26
27 # test with ALU data and Logical data
28 from soc.fu.alu.test.test_pipe_caller import ALUTestCase
29 from soc.fu.logical.test.test_pipe_caller import LogicalTestCase
30 from soc.fu.shift_rot.test.test_pipe_caller import ShiftRotTestCase
31 from soc.fu.cr.test.test_pipe_caller import CRTestCase
32 from soc.fu.branch.test.test_pipe_caller import BranchTestCase
33 from soc.fu.ldst.test.test_pipe_caller import LDSTTestCase
34 from soc.regfile.util import spr_to_fast_reg
35
36
37 def setup_regs(pdecode2, core, test):
38
39 # set up INT regfile, "direct" write (bypass rd/write ports)
40 intregs = core.regs.int
41 for i in range(32):
42 if intregs.unary:
43 yield intregs.regs[i].reg.eq(test.regs[i])
44 else:
45 yield intregs.memory._array[i].eq(test.regs[i])
46 yield Settle()
47
48 # set up CR regfile, "direct" write across all CRs
49 cr = test.cr
50 crregs = core.regs.cr
51 #cr = int('{:32b}'.format(cr)[::-1], 2)
52 print("cr reg", hex(cr))
53 for i in range(8):
54 #j = 7-i
55 cri = (cr >> (i*4)) & 0xf
56 #cri = int('{:04b}'.format(cri)[::-1], 2)
57 print("cr reg", hex(cri), i,
58 crregs.regs[i].reg.shape())
59 yield crregs.regs[i].reg.eq(cri)
60
61 # set up XER. "direct" write (bypass rd/write ports)
62 xregs = core.regs.xer
63 print("sprs", test.sprs)
64 xer = None
65 if 'XER' in test.sprs:
66 xer = test.sprs['XER']
67 if 1 in test.sprs:
68 xer = test.sprs[1]
69 if xer is not None:
70 if isinstance(xer, int):
71 xer = SelectableInt(xer, 64)
72 sobit = xer[XER_bits['SO']].value
73 yield xregs.regs[xregs.SO].reg.eq(sobit)
74 cabit = xer[XER_bits['CA']].value
75 ca32bit = xer[XER_bits['CA32']].value
76 yield xregs.regs[xregs.CA].reg.eq(Cat(cabit, ca32bit))
77 ovbit = xer[XER_bits['OV']].value
78 ov32bit = xer[XER_bits['OV32']].value
79 yield xregs.regs[xregs.OV].reg.eq(Cat(ovbit, ov32bit))
80 print("setting XER so %d ca %d ca32 %d ov %d ov32 %d" %
81 (sobit, cabit, ca32bit, ovbit, ov32bit))
82 else:
83 yield xregs.regs[xregs.SO].reg.eq(0)
84 yield xregs.regs[xregs.OV].reg.eq(0)
85 yield xregs.regs[xregs.CA].reg.eq(0)
86
87 # setting both fast and slow SPRs from test data
88
89 fregs = core.regs.fast
90 sregs = core.regs.spr
91 for sprname, val in test.sprs.items():
92 if isinstance(val, SelectableInt):
93 val = val.value
94 if isinstance(sprname, int):
95 sprname = spr_dict[sprname].SPR
96 if sprname == 'XER':
97 continue
98 fast = spr_to_fast_reg(sprname)
99 if fast is None:
100 # match behaviour of SPRMap in power_decoder2.py
101 for i, x in enumerate(SPR):
102 if sprname == x.name:
103 yield sregs[i].reg.eq(val)
104 print("setting slow SPR %d (%s) to %x" %
105 (i, sprname, val))
106 else:
107 yield fregs.regs[fast].reg.eq(val)
108 print("setting fast reg %d (%s) to %x" %
109 (fast, sprname, val))
110
111 # allow changes to settle before reporting on XER
112 yield Settle()
113
114 # XER
115 so = yield xregs.regs[xregs.SO].reg
116 ov = yield xregs.regs[xregs.OV].reg
117 ca = yield xregs.regs[xregs.CA].reg
118 oe = yield pdecode2.e.do.oe.oe
119 oe_ok = yield pdecode2.e.do.oe.oe_ok
120
121 print("before: so/ov-32/ca-32", so, bin(ov), bin(ca))
122 print("oe:", oe, oe_ok)
123
124
125 def check_regs(dut, sim, core, test, code):
126 # int regs
127 intregs = []
128 for i in range(32):
129 if core.regs.int.unary:
130 rval = yield core.regs.int.regs[i].reg
131 else:
132 rval = yield core.regs.int.memory._array[i]
133 intregs.append(rval)
134 print("int regs", list(map(hex, intregs)))
135 for i in range(32):
136 simregval = sim.gpr[i].asint()
137 dut.assertEqual(simregval, intregs[i],
138 "int reg %d not equal %s" % (i, repr(code)))
139
140 # CRs
141 crregs = []
142 for i in range(8):
143 rval = yield core.regs.cr.regs[i].reg
144 crregs.append(rval)
145 print("cr regs", list(map(hex, crregs)))
146 for i in range(8):
147 rval = crregs[i]
148 cri = sim.crl[7-i].get_range().value
149 print("cr reg", i, hex(cri), i, hex(rval))
150 # XXX https://bugs.libre-soc.org/show_bug.cgi?id=363
151 dut.assertEqual(cri, rval,
152 "cr reg %d not equal %s" % (i, repr(code)))
153
154 # XER
155 xregs = core.regs.xer
156 so = yield xregs.regs[xregs.SO].reg
157 ov = yield xregs.regs[xregs.OV].reg
158 ca = yield xregs.regs[xregs.CA].reg
159
160 print("sim SO", sim.spr['XER'][XER_bits['SO']])
161 e_so = sim.spr['XER'][XER_bits['SO']].value
162 e_ov = sim.spr['XER'][XER_bits['OV']].value
163 e_ov32 = sim.spr['XER'][XER_bits['OV32']].value
164 e_ca = sim.spr['XER'][XER_bits['CA']].value
165 e_ca32 = sim.spr['XER'][XER_bits['CA32']].value
166
167 e_ov = e_ov | (e_ov32 << 1)
168 e_ca = e_ca | (e_ca32 << 1)
169
170 print("after: so/ov-32/ca-32", so, bin(ov), bin(ca))
171 dut.assertEqual(e_so, so, "so mismatch %s" % (repr(code)))
172 dut.assertEqual(e_ov, ov, "ov mismatch %s" % (repr(code)))
173 dut.assertEqual(e_ca, ca, "ca mismatch %s" % (repr(code)))
174
175
176 def wait_for_busy_hi(cu):
177 while True:
178 busy_o = yield cu.busy_o
179 terminate_o = yield cu.core_terminate_o
180 if busy_o:
181 print("busy/terminate:", busy_o, terminate_o)
182 break
183 print("!busy", busy_o, terminate_o)
184 yield
185
186
187 def set_issue(core, dec2, sim):
188 yield core.issue_i.eq(1)
189 yield
190 yield core.issue_i.eq(0)
191 yield from wait_for_busy_hi(core)
192
193
194 def wait_for_busy_clear(cu):
195 while True:
196 busy_o = yield cu.busy_o
197 terminate_o = yield cu.core_terminate_o
198 if not busy_o:
199 print("busy/terminate:", busy_o, terminate_o)
200 break
201 print("busy",)
202 yield
203
204
205 class TestRunner(FHDLTestCase):
206 def __init__(self, tst_data):
207 super().__init__("run_all")
208 self.test_data = tst_data
209
210 def run_all(self):
211 m = Module()
212 comb = m.d.comb
213 instruction = Signal(32)
214 ivalid_i = Signal()
215
216 pspec = TestMemPspec(ldst_ifacetype='testpi',
217 imem_ifacetype='',
218 addr_wid=48,
219 mask_wid=8,
220 reg_wid=64)
221
222 m.submodules.core = core = NonProductionCore(pspec)
223 pdecode2 = core.pdecode2
224 l0 = core.l0
225
226 comb += core.raw_opcode_i.eq(instruction)
227 comb += core.ivalid_i.eq(ivalid_i)
228
229 # temporary hack: says "go" immediately for both address gen and ST
230 ldst = core.fus.fus['ldst0']
231 m.d.comb += ldst.ad.go.eq(ldst.ad.rel) # link addr-go direct to rel
232 m.d.comb += ldst.st.go.eq(ldst.st.rel) # link store-go direct to rel
233
234 # nmigen Simulation
235 sim = Simulator(m)
236 sim.add_clock(1e-6)
237
238 def process():
239 yield core.issue_i.eq(0)
240 yield
241
242 for test in self.test_data:
243 print(test.name)
244 program = test.program
245 self.subTest(test.name)
246 sim = ISA(pdecode2, test.regs, test.sprs, test.cr, test.mem,
247 test.msr,
248 bigendian=bigendian)
249 gen = program.generate_instructions()
250 instructions = list(zip(gen, program.assembly.splitlines()))
251
252 yield from setup_test_memory(l0, sim)
253 yield from setup_regs(core, test)
254
255 index = sim.pc.CIA.value//4
256 while index < len(instructions):
257 ins, code = instructions[index]
258
259 print("instruction: 0x{:X}".format(ins & 0xffffffff))
260 print(code)
261
262 # ask the decoder to decode this binary data (endian'd)
263 yield core.bigendian_i.eq(bigendian) # little / big?
264 yield instruction.eq(ins) # raw binary instr.
265 yield ivalid_i.eq(1)
266 yield Settle()
267 # fn_unit = yield pdecode2.e.fn_unit
268 #fuval = self.funit.value
269 #self.assertEqual(fn_unit & fuval, fuval)
270
271 # set operand and get inputs
272 yield from set_issue(core, pdecode2, sim)
273 yield Settle()
274
275 yield from wait_for_busy_clear(core)
276 yield ivalid_i.eq(0)
277 yield
278
279 print("sim", code)
280 # call simulated operation
281 opname = code.split(' ')[0]
282 yield from sim.call(opname)
283 index = sim.pc.CIA.value//4
284
285 # register check
286 yield from check_regs(self, sim, core, test, code)
287
288 # Memory check
289 yield from check_sim_memory(self, l0, sim, code)
290
291 sim.add_sync_process(process)
292 with sim.write_vcd("core_simulator.vcd", "core_simulator.gtkw",
293 traces=[]):
294 sim.run()
295
296
297 if __name__ == "__main__":
298 unittest.main(exit=False)
299 suite = unittest.TestSuite()
300 suite.addTest(TestRunner(LDSTTestCase.test_data))
301 suite.addTest(TestRunner(CRTestCase.test_data))
302 suite.addTest(TestRunner(ShiftRotTestCase.test_data))
303 suite.addTest(TestRunner(LogicalTestCase.test_data))
304 suite.addTest(TestRunner(ALUTestCase.test_data))
305 suite.addTest(TestRunner(BranchTestCase.test_data))
306
307 runner = unittest.TextTestRunner()
308 runner.run(suite)