Simplify immediate check
[soc.git] / src / soc / experiment / test / test_compalu_multi.py
1 """Computation Unit (aka "ALU Manager").
2
3 Manages a Pipeline or FSM, ensuring that the start and end time are 100%
4 monitored. At no time may the ALU proceed without this module notifying
5 the Dependency Matrices. At no time is a result production "abandoned".
6 This module blocks (indicates busy) starting from when it first receives
7 an opcode until it receives notification that
8 its result(s) have been successfully stored in the regfile(s)
9
10 Documented at http://libre-soc.org/3d_gpu/architecture/compunit
11 """
12
13 from nmigen.compat.sim import run_simulation, Settle
14 from nmigen.cli import rtlil
15 from nmigen import Module
16
17 from soc.decoder.power_enums import InternalOp
18
19 from soc.experiment.compalu_multi import MultiCompUnit
20 from soc.experiment.alu_hier import ALU, DummyALU
21 from soc.fu.alu.alu_input_record import CompALUOpSubset
22
23
24 def op_sim(dut, a, b, op, inv_a=0, imm=0, imm_ok=0, zero_a=0):
25 yield dut.issue_i.eq(0)
26 yield
27 yield dut.src_i[0].eq(a)
28 yield dut.src_i[1].eq(b)
29 yield dut.oper_i.insn_type.eq(op)
30 yield dut.oper_i.invert_a.eq(inv_a)
31 yield dut.oper_i.imm_data.imm.eq(imm)
32 yield dut.oper_i.imm_data.imm_ok.eq(imm_ok)
33 yield dut.oper_i.zero_a.eq(zero_a)
34 yield dut.issue_i.eq(1)
35 yield
36 yield dut.issue_i.eq(0)
37 yield
38 if not imm_ok or not zero_a:
39 yield dut.rd.go.eq(0b11)
40 while True:
41 yield
42 rd_rel_o = yield dut.rd.rel
43 print ("rd_rel", rd_rel_o)
44 if rd_rel_o:
45 break
46 yield dut.rd.go.eq(0)
47 if len(dut.src_i) == 3:
48 yield dut.rd.go.eq(0b100)
49 while True:
50 yield
51 rd_rel_o = yield dut.rd.rel
52 print ("rd_rel", rd_rel_o)
53 if rd_rel_o:
54 break
55 yield dut.rd.go.eq(0)
56
57 req_rel_o = yield dut.wr.rel
58 result = yield dut.data_o
59 print ("req_rel", req_rel_o, result)
60 while True:
61 req_rel_o = yield dut.wr.rel
62 result = yield dut.data_o
63 print ("req_rel", req_rel_o, result)
64 if req_rel_o:
65 break
66 yield
67 yield dut.wr.go[0].eq(1)
68 yield Settle()
69 result = yield dut.data_o
70 yield
71 print ("result", result)
72 yield dut.wr.go[0].eq(0)
73 yield
74 return result
75
76
77 def scoreboard_sim_dummy(dut):
78 result = yield from op_sim(dut, 5, 2, InternalOp.OP_NOP, inv_a=0,
79 imm=8, imm_ok=1)
80 assert result == 5, result
81
82 result = yield from op_sim(dut, 9, 2, InternalOp.OP_NOP, inv_a=0,
83 imm=8, imm_ok=1)
84 assert result == 9, result
85
86
87 def scoreboard_sim(dut):
88 result = yield from op_sim(dut, 5, 2, InternalOp.OP_ADD, inv_a=0,
89 imm=8, imm_ok=1)
90 assert result == 13
91
92 result = yield from op_sim(dut, 5, 2, InternalOp.OP_ADD)
93 assert result == 7
94
95 result = yield from op_sim(dut, 5, 2, InternalOp.OP_ADD, inv_a=1)
96 assert result == 65532
97
98 result = yield from op_sim(dut, 5, 2, InternalOp.OP_ADD, zero_a=1,
99 imm=8, imm_ok=1)
100 assert result == 8
101
102 result = yield from op_sim(dut, 5, 2, InternalOp.OP_ADD, zero_a=1)
103 assert result == 2
104
105
106 def test_compunit():
107
108 m = Module()
109 alu = ALU(16)
110 dut = MultiCompUnit(16, alu, CompALUOpSubset)
111 m.submodules.cu = dut
112
113 vl = rtlil.convert(dut, ports=dut.ports())
114 with open("test_compunit1.il", "w") as f:
115 f.write(vl)
116
117 run_simulation(m, scoreboard_sim(dut), vcd_name='test_compunit1.vcd')
118
119
120 class CompUnitParallelTest:
121 def __init__(self, dut):
122 self.dut = dut
123
124 # Operation cycle should not take longer than this:
125 self.MAX_BUSY_WAIT = 50
126
127 # Minimum duration in which issue_i will be kept inactive,
128 # during which busy_o must remain low.
129 self.MIN_BUSY_LOW = 5
130
131 # Number of cycles to stall until the assertion of go.
132 # One value, for each port. Can be zero, for no delay.
133 self.RD_GO_DELAY = [0, 3]
134
135 # store common data for the input operation of the processes
136 # input operation:
137 self.op = 0
138 self.inv_a = self.zero_a = 0
139 self.imm = self.imm_ok = 0
140 self.imm_control = (0, 0)
141 self.rdmaskn = (0, 0)
142 # input data:
143 self.operands = (0, 0)
144
145 def driver(self):
146 print("Begin parallel test.")
147 yield from self.operation(5, 2, InternalOp.OP_ADD, inv_a=0,
148 imm=8, imm_ok=0, rdmaskn=(1, 0))
149
150 def operation(self, a, b, op, inv_a=0, imm=0, imm_ok=0, zero_a=0,
151 rdmaskn=(0, 0)):
152 # store data for the operation
153 self.operands = (a, b)
154 self.op = op
155 self.inv_a = inv_a
156 self.imm = imm
157 self.imm_ok = imm_ok
158 self.zero_a = zero_a
159 self.imm_control = (zero_a, imm_ok)
160 self.rdmaskn = rdmaskn
161
162 # trigger operation cycle
163 yield from self.issue()
164
165 def issue(self):
166 # issue_i starts inactive
167 yield self.dut.issue_i.eq(0)
168
169 for n in range(self.MIN_BUSY_LOW):
170 yield
171 # busy_o must remain inactive. It cannot rise on its own.
172 busy_o = yield self.dut.busy_o
173 assert not busy_o
174
175 # activate issue_i to begin the operation cycle
176 yield self.dut.issue_i.eq(1)
177
178 # at the same time, present the operation
179 yield self.dut.oper_i.insn_type.eq(self.op)
180 yield self.dut.oper_i.invert_a.eq(self.inv_a)
181 yield self.dut.oper_i.imm_data.imm.eq(self.imm)
182 yield self.dut.oper_i.imm_data.imm_ok.eq(self.imm_ok)
183 yield self.dut.oper_i.zero_a.eq(self.zero_a)
184 rdmaskn = self.rdmaskn[0] | (self.rdmaskn[1] << 1)
185 yield self.dut.rdmaskn.eq(rdmaskn)
186
187 # give one cycle for the CompUnit to latch the data
188 yield
189
190 # busy_o must keep being low in this cycle, because issue_i was
191 # low on the previous cycle.
192 # It cannot rise on its own.
193 # Also, busy_o and issue_i must never be active at the same time, ever.
194 busy_o = yield self.dut.busy_o
195 assert not busy_o
196
197 # Lower issue_i
198 yield self.dut.issue_i.eq(0)
199
200 # deactivate inputs along with issue_i, so we can be sure the data
201 # was latched at the correct cycle
202 # note: rdmaskn must be held, while busy_o is active
203 # TODO: deactivate rdmaskn when the busy_o cycle ends
204 yield self.dut.oper_i.insn_type.eq(0)
205 yield self.dut.oper_i.invert_a.eq(0)
206 yield self.dut.oper_i.imm_data.imm.eq(0)
207 yield self.dut.oper_i.imm_data.imm_ok.eq(0)
208 yield self.dut.oper_i.zero_a.eq(0)
209 yield
210
211 # wait for busy_o to lower
212 # timeout after self.MAX_BUSY_WAIT cycles
213 for n in range(self.MAX_BUSY_WAIT):
214 # sample busy_o in the current cycle
215 busy_o = yield self.dut.busy_o
216 if not busy_o:
217 # operation cycle ends when busy_o becomes inactive
218 break
219 yield
220
221 # if busy_o is still active, a timeout has occurred
222 # TODO: Uncomment this, once the test is complete:
223 # assert not busy_o
224
225 if busy_o:
226 print("If you are reading this, "
227 "it's because the above test failed, as expected,\n"
228 "with a timeout. It must pass, once the test is complete.")
229 return
230
231 print("If you are reading this, "
232 "it's because the above test unexpectedly passed.")
233
234 def rd(self, rd_idx):
235 # wait for issue_i to rise
236 while True:
237 issue_i = yield self.dut.issue_i
238 if issue_i:
239 break
240 # issue_i has not risen yet, so rd must keep low
241 rel = yield self.dut.rd.rel[rd_idx]
242 assert not rel
243 yield
244
245 # we do not want rd to rise on an immediate operand
246 # if it is immediate, exit the process
247 # likewise, if the read mask is active
248 # TODO: don't exit the process, monitor rd instead to ensure it
249 # doesn't rise on its own
250 if self.rdmaskn[rd_idx] or self.imm_control[rd_idx]:
251 return
252
253 # issue_i has risen. rel must rise on the next cycle
254 rel = yield self.dut.rd.rel[rd_idx]
255 assert not rel
256
257 # stall for additional cycles. Check that rel doesn't fall on its own
258 for n in range(self.RD_GO_DELAY[rd_idx]):
259 yield
260 rel = yield self.dut.rd.rel[rd_idx]
261 assert rel
262
263 # Before asserting "go", make sure "rel" has risen.
264 # The use of Settle allows "go" to be set combinatorially,
265 # rising on the same cycle as "rel".
266 yield Settle()
267 rel = yield self.dut.rd.rel[rd_idx]
268 assert rel
269
270 # assert go for one cycle, passing along the operand value
271 yield self.dut.rd.go[rd_idx].eq(1)
272 yield self.dut.src_i[rd_idx].eq(self.operands[rd_idx])
273 # check that the operand was sent to the alu
274 # TODO: Properly check the alu protocol
275 yield Settle()
276 alu_input = yield self.dut.get_in(rd_idx)
277 assert alu_input == self.operands[rd_idx]
278 yield
279
280 # rel must keep high, since go was inactive in the last cycle
281 rel = yield self.dut.rd.rel[rd_idx]
282 assert rel
283
284 # finish the go one-clock pulse
285 yield self.dut.rd.go[rd_idx].eq(0)
286 yield self.dut.src_i[rd_idx].eq(0)
287 yield
288
289 # rel must have gone low in response to go being high
290 # on the previous cycle
291 rel = yield self.dut.rd.rel[rd_idx]
292 assert not rel
293
294 def wr(self, wr_idx):
295 # monitor self.dut.wr.req[rd_idx] and sets dut.wr.go[idx] for one cycle
296 yield
297 # TODO: also when dut.wr.go is set, check the output against the
298 # self.expected_o and assert. use dut.get_out(wr_idx) to do so.
299
300 def run_simulation(self, vcd_name):
301 run_simulation(self.dut, [self.driver(),
302 self.rd(0), # one read port (a)
303 self.rd(1), # one read port (b)
304 self.wr(0), # one write port (o)
305 ],
306 vcd_name=vcd_name)
307
308
309 def test_compunit_regspec3():
310
311 inspec = [('INT', 'a', '0:15'),
312 ('INT', 'b', '0:15'),
313 ('INT', 'c', '0:15')]
314 outspec = [('INT', 'o', '0:15'),
315 ]
316
317 regspec = (inspec, outspec)
318
319 m = Module()
320 alu = DummyALU(16)
321 dut = MultiCompUnit(regspec, alu, CompALUOpSubset)
322 m.submodules.cu = dut
323
324 run_simulation(m, scoreboard_sim_dummy(dut),
325 vcd_name='test_compunit_regspec3.vcd')
326
327
328 def test_compunit_regspec1():
329
330 inspec = [('INT', 'a', '0:15'),
331 ('INT', 'b', '0:15')]
332 outspec = [('INT', 'o', '0:15'),
333 ]
334
335 regspec = (inspec, outspec)
336
337 m = Module()
338 alu = ALU(16)
339 dut = MultiCompUnit(regspec, alu, CompALUOpSubset)
340 m.submodules.cu = dut
341
342 vl = rtlil.convert(dut, ports=dut.ports())
343 with open("test_compunit_regspec1.il", "w") as f:
344 f.write(vl)
345
346 run_simulation(m, scoreboard_sim(dut),
347 vcd_name='test_compunit_regspec1.vcd')
348
349 test = CompUnitParallelTest(dut)
350 test.run_simulation("test_compunit_parallel.vcd")
351
352
353 if __name__ == '__main__':
354 test_compunit()
355 test_compunit_regspec1()
356 test_compunit_regspec3()