From: Luke Kenneth Casson Leighton Date: Sun, 12 Jul 2020 20:04:24 +0000 (+0100) Subject: modify PowerDecoder to read LDSTMode correctly X-Git-Tag: div_pipeline~77 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=19f8137aa3026d16ee1176fc0cea43d7c14e7302;p=soc.git modify PowerDecoder to read LDSTMode correctly --- diff --git a/libreriscv b/libreriscv index 3c85cad7..a0c40933 160000 --- a/libreriscv +++ b/libreriscv @@ -1 +1 @@ -Subproject commit 3c85cad79f3a95555e27717dd2d57823153206cf +Subproject commit a0c4093351f16173c697a0ad41450894eee8f03d diff --git a/src/soc/decoder/power_decoder.py b/src/soc/decoder/power_decoder.py index 09cdd412..c93ee518 100644 --- a/src/soc/decoder/power_decoder.py +++ b/src/soc/decoder/power_decoder.py @@ -84,7 +84,7 @@ from nmigen import Module, Elaboratable, Signal, Cat, Mux from nmigen.cli import rtlil from soc.decoder.power_enums import (Function, Form, InternalOp, In1Sel, In2Sel, In3Sel, OutSel, - RC, LdstLen, CryIn, get_csv, + RC, LdstLen, LDSTMode, CryIn, get_csv, single_bit_flags, CRInSel, CROutSel, get_signal_name, default_values, insns, asmidx) @@ -128,6 +128,7 @@ class PowerOp: self.cr_in = Signal(CRInSel, reset_less=True) self.cr_out = Signal(CROutSel, reset_less=True) self.ldst_len = Signal(LdstLen, reset_less=True) + self.upd = Signal(LDSTMode, reset_less=True) self.rc_sel = Signal(RC, reset_less=True) self.cry_in = Signal(CryIn, reset_less=True) for bit in single_bit_flags: @@ -148,6 +149,11 @@ class PowerOp: import pdb; pdb.set_trace() print(row) print(row) + ldst_mode = row['upd'] + if ldst_mode.isdigit(): + ldst_mode = LDSTMode(int(ldst_mode)) + else: + ldst_mode = LDSTMode[ldst_mode] res = [self.function_unit.eq(Function[row['unit']]), self.form.eq(Form[row['form']]), self.internal_op.eq(InternalOp[row['internal op']]), @@ -158,6 +164,7 @@ class PowerOp: self.cr_in.eq(CRInSel[row['CR in']]), self.cr_out.eq(CROutSel[row['CR out']]), self.ldst_len.eq(LdstLen[row['ldst len']]), + self.upd.eq(ldst_mode), self.rc_sel.eq(RC[row['rc']]), self.cry_in.eq(CryIn[row['cry in']]), ] @@ -183,6 +190,7 @@ class PowerOp: self.cr_out.eq(otherop.cr_out), self.rc_sel.eq(otherop.rc_sel), self.ldst_len.eq(otherop.ldst_len), + self.upd.eq(otherop.upd), self.cry_in.eq(otherop.cry_in)] for bit in single_bit_flags: sig = getattr(self, get_signal_name(bit)) diff --git a/src/soc/decoder/power_enums.py b/src/soc/decoder/power_enums.py index 4ce93591..92b7101c 100644 --- a/src/soc/decoder/power_enums.py +++ b/src/soc/decoder/power_enums.py @@ -24,7 +24,7 @@ def get_csv(name): # names of the fields in the tables that don't correspond to an enum single_bit_flags = ['inv A', 'inv out', - 'cry out', 'BR', 'sgn ext', 'upd', 'rsrv', '32b', + 'cry out', 'BR', 'sgn ext', 'rsrv', '32b', 'sgn', 'lk', 'sgl pipe'] # default values for fields in the table @@ -32,6 +32,7 @@ default_values = {'unit': "NONE", 'internal op': "OP_ILLEGAL", 'in1': "RA", 'in2': 'NONE', 'in3': 'NONE', 'out': 'NONE', 'CR in': 'NONE', 'ldst len': 'NONE', + 'upd': '0', 'rc': 'NONE', 'cry in': 'ZERO', 'form': 'NONE'}