X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fexperiment%2Fscore6600.py;h=456bb3ebfa07378682b2a1f4422deeb6b26d4117;hb=5d9f1eab12603ad0f9ce654b114cde087c199ac0;hp=47101d1e90f68b6ab4fa15308a53349bcf1c0ad8;hpb=b7bf7a2a8d87f206cbbad676f889562c4ed4ec0f;p=soc.git diff --git a/src/experiment/score6600.py b/src/experiment/score6600.py index 47101d1e..456bb3eb 100644 --- a/src/experiment/score6600.py +++ b/src/experiment/score6600.py @@ -181,6 +181,7 @@ class CompUnitALUs(CompUnitsBase): # inputs self.oper_i = Signal(opwid, reset_less=True) + self.imm_i = Signal(rwid, reset_less=True) # Int ALUs add = ALU(rwid) @@ -190,7 +191,8 @@ class CompUnitALUs(CompUnitsBase): units = [] for alu in [add, sub, mul, shf]: - units.append(ComputationUnitNoDelay(rwid, 2, alu)) + aluopwid = 3 # extra bit for immediate mode + units.append(ComputationUnitNoDelay(rwid, aluopwid, alu)) CompUnitsBase.__init__(self, rwid, units) @@ -198,9 +200,10 @@ class CompUnitALUs(CompUnitsBase): m = CompUnitsBase.elaborate(self, platform) comb = m.d.comb - # hand the same operation to all units + # hand the same operation to all units, only lower 2 bits though for alu in self.units: - comb += alu.oper_i.eq(self.oper_i) + comb += alu.oper_i[0:3].eq(self.oper_i) + comb += alu.imm_i.eq(self.imm_i) return m @@ -220,10 +223,12 @@ class CompUnitBR(CompUnitsBase): # inputs self.oper_i = Signal(opwid, reset_less=True) + self.imm_i = Signal(rwid, reset_less=True) # Branch ALU and CU self.bgt = BranchALU(rwid) - self.br1 = ComputationUnitNoDelay(rwid, 3, self.bgt) + aluopwid = 3 # extra bit for immediate mode + self.br1 = ComputationUnitNoDelay(rwid, aluopwid, self.bgt) CompUnitsBase.__init__(self, rwid, [self.br1]) def elaborate(self, platform): @@ -233,6 +238,7 @@ class CompUnitBR(CompUnitsBase): # hand the same operation to all units for alu in self.units: comb += alu.oper_i.eq(self.oper_i) + comb += alu.imm_i.eq(self.imm_i) return m @@ -280,11 +286,11 @@ class FunctionUnits(Elaboratable): intregdeps = FURegDepMatrix(n_intfus, self.n_regs) m.submodules.intregdeps = intregdeps - comb += self.g_int_rd_pend_o.eq(intregdeps.rd_rsel_o) - comb += self.g_int_wr_pend_o.eq(intregdeps.wr_rsel_o) + comb += self.g_int_rd_pend_o.eq(intregdeps.v_rd_rsel_o) + comb += self.g_int_wr_pend_o.eq(intregdeps.v_wr_rsel_o) - comb += intregdeps.rd_pend_i.eq(intregdeps.rd_rsel_o) - comb += intregdeps.wr_pend_i.eq(intregdeps.wr_rsel_o) + comb += intregdeps.rd_pend_i.eq(intregdeps.v_rd_rsel_o) + comb += intregdeps.wr_pend_i.eq(intregdeps.v_wr_rsel_o) comb += intfudeps.rd_pend_i.eq(intregdeps.rd_pend_o) comb += intfudeps.wr_pend_i.eq(intregdeps.wr_pend_o) @@ -333,7 +339,9 @@ class Scoreboard(Elaboratable): self.brissue = IssueUnitGroup(1) # and these self.alu_oper_i = Signal(4, reset_less=True) + self.alu_imm_i = Signal(rwid, reset_less=True) self.br_oper_i = Signal(4, reset_less=True) + self.br_imm_i = Signal(rwid, reset_less=True) # inputs self.int_dest_i = Signal(max=n_regs, reset_less=True) # Dest R# in @@ -372,8 +380,8 @@ class Scoreboard(Elaboratable): # Int ALUs and Comp Units n_int_alus = 5 - cua = CompUnitALUs(self.rwid, 2) - cub = CompUnitBR(self.rwid, 2) + cua = CompUnitALUs(self.rwid, 3) + cub = CompUnitBR(self.rwid, 3) m.submodules.cu = cu = CompUnitsBase(self.rwid, [cua, cub]) bgt = cub.bgt # get at the branch computation unit br1 = cub.br1 @@ -427,7 +435,9 @@ class Scoreboard(Elaboratable): # take these to outside (issue needs them) comb += cua.oper_i.eq(self.alu_oper_i) + comb += cua.imm_i.eq(self.alu_imm_i) comb += cub.oper_i.eq(self.br_oper_i) + comb += cub.imm_i.eq(self.br_imm_i) # TODO: issueunit.f (FP) @@ -649,10 +659,12 @@ class IssueToScoreboard(Elaboratable): # "resetting" done above (insn_i=0) could be re-ASSERTed. with m.If(iq.qlen_o != 0): # get the operands and operation + imm = iq.data_o[0].imm_i dest = iq.data_o[0].dest_i src1 = iq.data_o[0].src1_i src2 = iq.data_o[0].src2_i op = iq.data_o[0].oper_i + opi = iq.data_o[0].opim_i # immediate set # set the src/dest regs comb += sc.int_dest_i.eq(dest) @@ -663,11 +675,13 @@ class IssueToScoreboard(Elaboratable): # choose a Function-Unit-Group with m.If((op & (0x3<<2)) != 0): # branch comb += sc.brissue.insn_i.eq(1) - comb += sc.br_oper_i.eq(op & 0x3) + comb += sc.br_oper_i.eq(Cat(op[0:2], opi)) + comb += sc.br_imm_i.eq(imm) comb += wait_issue_br.eq(1) with m.Else(): # alu comb += sc.aluissue.insn_i.eq(1) - comb += sc.alu_oper_i.eq(op & 0x3) + comb += sc.alu_oper_i.eq(Cat(op[0:2], opi)) + comb += sc.alu_imm_i.eq(imm) comb += wait_issue_alu.eq(1) # XXX TODO @@ -703,10 +717,12 @@ class RegSim: self.rwidth = rwidth self.regs = [0] * nregs - def op(self, op, op_imm, src1, src2, dest): + def op(self, op, op_imm, imm, src1, src2, dest): maxbits = (1 << self.rwidth) - 1 src1 = self.regs[src1] & maxbits - if not op_imm: # put op in src2 + if op_imm: + src2 = imm + else: src2 = self.regs[src2] & maxbits if op == IADD: val = src1 + src2 @@ -746,8 +762,9 @@ class RegSim: yield from self.dump(dut) assert False -def instr_q(dut, op, op_imm, src1, src2, dest, branch_success, branch_fail): - instrs = [{'oper_i': op, 'dest_i': dest, 'opim_i': op_imm, +def instr_q(dut, op, op_imm, imm, src1, src2, dest, + branch_success, branch_fail): + instrs = [{'oper_i': op, 'dest_i': dest, 'imm_i': imm, 'opim_i': op_imm, 'src1_i': src1, 'src2_i': src2}] sendlen = 1 @@ -765,7 +782,7 @@ def instr_q(dut, op, op_imm, src1, src2, dest, branch_success, branch_fail): yield dut.p_add_i.eq(0) -def int_instr(dut, op, src1, src2, dest, branch_success, branch_fail): +def int_instr(dut, op, imm, src1, src2, dest, branch_success, branch_fail): yield from disable_issue(dut) yield dut.int_dest_i.eq(dest) yield dut.int_src1_i.eq(src1) @@ -773,10 +790,12 @@ def int_instr(dut, op, src1, src2, dest, branch_success, branch_fail): if (op & (0x3<<2)) != 0: # branch yield dut.brissue.insn_i.eq(1) yield dut.br_oper_i.eq(Const(op & 0x3, 2)) + yield dut.br_imm_i.eq(imm) dut_issue = dut.brissue else: yield dut.aluissue.insn_i.eq(1) yield dut.alu_oper_i.eq(Const(op & 0x3, 2)) + yield dut.alu_imm_i.eq(imm) dut_issue = dut.aluissue yield dut.reg_enable_i.eq(1) @@ -803,14 +822,15 @@ def create_random_ops(dut, n_ops, shadowing=False, max_opnums=3): for i in range(n_ops): src1 = randint(1, dut.n_regs-1) src2 = randint(1, dut.n_regs-1) + imm = randint(1, (1<