Pass along the operand, in the cycle in which go is active
[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.rdmaskn = (0, 0)
141 # input data:
142 self.operands = (0, 0)
143
144 def driver(self):
145 print("Begin parallel test.")
146 yield from self.operation(5, 2, InternalOp.OP_ADD, inv_a=0,
147 imm=8, imm_ok=0, rdmaskn=(1, 0))
148
149 def operation(self, a, b, op, inv_a=0, imm=0, imm_ok=0, zero_a=0,
150 rdmaskn=(0, 0)):
151 # store data for the operation
152 self.operands = (a, b)
153 self.op = op
154 self.inv_a = inv_a
155 self.imm = imm
156 self.imm_ok = imm_ok
157 self.zero_a = zero_a
158 self.rdmaskn = rdmaskn
159
160 # trigger operation cycle
161 yield from self.issue()
162
163 def issue(self):
164 # issue_i starts inactive
165 yield self.dut.issue_i.eq(0)
166
167 for n in range(self.MIN_BUSY_LOW):
168 yield
169 # busy_o must remain inactive. It cannot rise on its own.
170 busy_o = yield self.dut.busy_o
171 assert not busy_o
172
173 # activate issue_i to begin the operation cycle
174 yield self.dut.issue_i.eq(1)
175
176 # at the same time, present the operation
177 yield self.dut.oper_i.insn_type.eq(self.op)
178 yield self.dut.oper_i.invert_a.eq(self.inv_a)
179 yield self.dut.oper_i.imm_data.imm.eq(self.imm)
180 yield self.dut.oper_i.imm_data.imm_ok.eq(self.imm_ok)
181 yield self.dut.oper_i.zero_a.eq(self.zero_a)
182 rdmaskn = self.rdmaskn[0] | (self.rdmaskn[1] << 1)
183 yield self.dut.rdmaskn.eq(rdmaskn)
184
185 # give one cycle for the CompUnit to latch the data
186 yield
187
188 # busy_o must keep being low in this cycle, because issue_i was
189 # low on the previous cycle.
190 # It cannot rise on its own.
191 # Also, busy_o and issue_i must never be active at the same time, ever.
192 busy_o = yield self.dut.busy_o
193 assert not busy_o
194
195 # Lower issue_i
196 yield self.dut.issue_i.eq(0)
197
198 # deactivate inputs along with issue_i, so we can be sure the data
199 # was latched at the correct cycle
200 # note: rdmaskn must be held, while busy_o is active
201 # TODO: deactivate rdmaskn when the busy_o cycle ends
202 yield self.dut.oper_i.insn_type.eq(0)
203 yield self.dut.oper_i.invert_a.eq(0)
204 yield self.dut.oper_i.imm_data.imm.eq(0)
205 yield self.dut.oper_i.imm_data.imm_ok.eq(0)
206 yield self.dut.oper_i.zero_a.eq(0)
207 yield
208
209 # wait for busy_o to lower
210 # timeout after self.MAX_BUSY_WAIT cycles
211 for n in range(self.MAX_BUSY_WAIT):
212 # sample busy_o in the current cycle
213 busy_o = yield self.dut.busy_o
214 if not busy_o:
215 # operation cycle ends when busy_o becomes inactive
216 break
217 yield
218
219 # if busy_o is still active, a timeout has occurred
220 # TODO: Uncomment this, once the test is complete:
221 # assert not busy_o
222
223 if busy_o:
224 print("If you are reading this, "
225 "it's because the above test failed, as expected,\n"
226 "with a timeout. It must pass, once the test is complete.")
227 return
228
229 print("If you are reading this, "
230 "it's because the above test unexpectedly passed.")
231
232 def rd(self, rd_idx):
233 # wait for issue_i to rise
234 while True:
235 issue_i = yield self.dut.issue_i
236 if issue_i:
237 break
238 # issue_i has not risen yet, so rd must keep low
239 rel = yield self.dut.rd.rel[rd_idx]
240 assert not rel
241 yield
242
243 # we do not want rd to rise on an immediate operand
244 # if it is immediate, exit the process
245 # likewise, if the read mask is active
246 # TODO: don't exit the process, monitor rd instead to ensure it
247 # doesn't rise on its own
248 if self.rdmaskn[rd_idx] \
249 or (rd_idx == 0 and self.zero_a) \
250 or (rd_idx == 1 and self.imm_ok):
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 yield
274
275 # rel must keep high, since go was inactive in the last cycle
276 rel = yield self.dut.rd.rel[rd_idx]
277 assert rel
278
279 # finish the go one-clock pulse
280 yield self.dut.rd.go[rd_idx].eq(0)
281 yield self.dut.src_i[rd_idx].eq(0)
282 yield
283
284 # rel must have gone low in response to go being high
285 # on the previous cycle
286 rel = yield self.dut.rd.rel[rd_idx]
287 assert not rel
288
289 def wr(self, wr_idx):
290 # monitor self.dut.wr.req[rd_idx] and sets dut.wr.go[idx] for one cycle
291 yield
292 # TODO: also when dut.wr.go is set, check the output against the
293 # self.expected_o and assert. use dut.get_out(wr_idx) to do so.
294
295 def run_simulation(self, vcd_name):
296 run_simulation(self.dut, [self.driver(),
297 self.rd(0), # one read port (a)
298 self.rd(1), # one read port (b)
299 self.wr(0), # one write port (o)
300 ],
301 vcd_name=vcd_name)
302
303
304 def test_compunit_regspec3():
305
306 inspec = [('INT', 'a', '0:15'),
307 ('INT', 'b', '0:15'),
308 ('INT', 'c', '0:15')]
309 outspec = [('INT', 'o', '0:15'),
310 ]
311
312 regspec = (inspec, outspec)
313
314 m = Module()
315 alu = DummyALU(16)
316 dut = MultiCompUnit(regspec, alu, CompALUOpSubset)
317 m.submodules.cu = dut
318
319 run_simulation(m, scoreboard_sim_dummy(dut),
320 vcd_name='test_compunit_regspec3.vcd')
321
322
323 def test_compunit_regspec1():
324
325 inspec = [('INT', 'a', '0:15'),
326 ('INT', 'b', '0:15')]
327 outspec = [('INT', 'o', '0:15'),
328 ]
329
330 regspec = (inspec, outspec)
331
332 m = Module()
333 alu = ALU(16)
334 dut = MultiCompUnit(regspec, alu, CompALUOpSubset)
335 m.submodules.cu = dut
336
337 vl = rtlil.convert(dut, ports=dut.ports())
338 with open("test_compunit_regspec1.il", "w") as f:
339 f.write(vl)
340
341 run_simulation(m, scoreboard_sim(dut),
342 vcd_name='test_compunit_regspec1.vcd')
343
344 test = CompUnitParallelTest(dut)
345 test.run_simulation("test_compunit_parallel.vcd")
346
347
348 if __name__ == '__main__':
349 test_compunit()
350 test_compunit_regspec1()
351 test_compunit_regspec3()