X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fsoc%2Ffu%2Fcommon_output_stage.py;h=45106984a0e1469a255d5ad5e198974c2d37cc70;hb=8c53929c3aaa9d059e4e5e434d0e6d7cf2a4e0a5;hp=96de016b495486cfe0607cc970c082e4cc063af1;hpb=d652efe4157cfc39bc08685a4c7b968a1d9c236e;p=soc.git diff --git a/src/soc/fu/common_output_stage.py b/src/soc/fu/common_output_stage.py index 96de016b..45106984 100644 --- a/src/soc/fu/common_output_stage.py +++ b/src/soc/fu/common_output_stage.py @@ -1,9 +1,9 @@ # This stage is intended to handle the gating of carry out, # and updating the condition register -from nmigen import (Module, Signal, Cat) +from nmigen import (Module, Signal, Cat, Const) from nmutil.pipemodbase import PipeModBase -from ieee754.part.partsig import PartitionedSignal -from soc.decoder.power_enums import InternalOp +from ieee754.part.partsig import SimdSignal +from openpower.decoder.power_enums import MicrOp class CommonOutputStage(PipeModBase): @@ -14,27 +14,54 @@ class CommonOutputStage(PipeModBase): m = Module() comb = m.d.comb op = self.i.ctx.op - - # op requests inversion of the output... - o = Signal.like(self.i.o) - if hasattr(op, "invert_out"): # ... optionally - with m.If(op.invert_out): - comb += o.eq(~self.i.o.data) + # ok so there are two different ways this goes: + # (1) something involving XER ov in which case so gets modified + # and that means we need the modified version of so in CR0 + # (2) something that does *not* have XER ov, in which case so + # has been pass-through just to get it into CR0 + # in case (1) we don't *have* an xer_so output so put xer_so *input* + # into CR0. + xer_so_i = self.i.xer_so.data[0] + if hasattr(self.o, "xer_so"): + xer_so_o = self.o.xer_so.data[0] + so = Signal(reset_less=True) + oe = Signal(reset_less=True) + comb += oe.eq(op.oe.oe & op.oe.ok) + with m.If(oe): + comb += so.eq(xer_so_o) with m.Else(): - comb += o.eq(self.i.o.data) + comb += so.eq(xer_so_i) else: - comb += o.eq(self.i.o.data) # ... no inversion + so = xer_so_i + + with m.If(~op.sv_pred_dz): # when SVP64 zeroing is set, output is zero + # op requests inversion of the output... + o = Signal.like(self.i.o) + if hasattr(op, "invert_out"): # ... optionally + with m.If(op.invert_out): + comb += o.eq(~self.i.o.data) + with m.Else(): + comb += o.eq(self.i.o.data) + else: + comb += o.eq(self.i.o.data) # ... no inversion # target register if 32-bit is only the 32 LSBs + # XXX ah. right. this needs to be done only if the *mode* is 32-bit + # (an MSR bit) + # see https://bugs.libre-soc.org/show_bug.cgi?id=424 target = Signal(64, reset_less=True) - with m.If(op.is_32bit): - comb += target.eq(o[:32]) - with m.Else(): - comb += target.eq(o) + #with m.If(op.is_32bit): + # comb += target.eq(o[:32]) + #with m.Else(): + # comb += target.eq(o) + comb += target.eq(o) - # Handle carry_out - comb += self.o.xer_ca.data.eq(self.i.xer_ca.data) - comb += self.o.xer_ca.ok.eq(op.output_carry) + # carry-out only if actually present in this input spec + # (note: MUL and DIV do not have it, but ALU and Logical do) + if hasattr(self.i, "xer_ca"): + # Handle carry_out + comb += self.o.xer_ca.data.eq(self.i.xer_ca.data) + comb += self.o.xer_ca.ok.eq(op.output_carry) # create condition register cr0 and sticky-overflow is_nzero = Signal(reset_less=True) @@ -43,32 +70,30 @@ class CommonOutputStage(PipeModBase): msb_test = Signal(reset_less=True) # set equal to MSB, invert if OP=CMP is_cmp = Signal(reset_less=True) # true if OP=CMP is_cmpeqb = Signal(reset_less=True) # true if OP=CMPEQB - self.so = Signal(1, reset_less=True) cr0 = Signal(4, reset_less=True) # TODO: if o[63] is XORed with "operand == OP_CMP" # that can be used as a test of whether to invert the +ve/-ve test # see https://bugs.libre-soc.org/show_bug.cgi?id=305#c60 - comb += is_cmp.eq(op.insn_type == InternalOp.OP_CMP) - comb += is_cmpeqb.eq(op.insn_type == InternalOp.OP_CMPEQB) - comb += msb_test.eq(target[-1] ^ is_cmp) + comb += is_cmp.eq(op.insn_type == MicrOp.OP_CMP) + comb += is_cmpeqb.eq(op.insn_type == MicrOp.OP_CMPEQB) + + comb += msb_test.eq(target[-1]) # 64-bit MSB, TODO 32-bit MSB comb += is_nzero.eq(target.bool()) + comb += is_negative.eq(msb_test) comb += is_positive.eq(is_nzero & ~msb_test) - comb += is_negative.eq(is_nzero & msb_test) - with m.If(is_cmpeqb): + with m.If(is_cmpeqb | is_cmp): comb += cr0.eq(self.i.cr0.data) with m.Else(): - comb += cr0.eq(Cat(self.so, ~is_nzero, is_positive, is_negative)) + comb += cr0.eq(Cat(so, ~is_nzero, is_positive, is_negative)) # copy out [inverted?] output, cr0, and context out comb += self.o.o.data.eq(o) comb += self.o.o.ok.eq(self.i.o.ok) - # CR0 to be set - comb += self.o.cr0.data.eq(cr0) + comb += self.o.cr0.data.eq(cr0) # CR0 to be set comb += self.o.cr0.ok.eq(op.write_cr0) - # context - comb += self.o.ctx.eq(self.i.ctx) + comb += self.o.ctx.eq(self.i.ctx) # context return m