summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjjsuperpower <jjs29356@gmail.com>2022-09-24 15:04:21 -0500
committerjjsuperpower <jjs29356@gmail.com>2022-09-24 15:04:21 -0500
commitf2fa10954b481315e749ccb2da8ceb9bcce91723 (patch)
treea66220594c58582f36abf6980fc8da49b506c972
parent5653b767f0dd94cb0441dd326c4c2fb795b996c8 (diff)
fixed some ugly code
-rw-r--r--hdl/core/alu.py7
-rw-r--r--hdl/core/jump_ctl.py4
-rw-r--r--hdl/core/reg.py6
-rw-r--r--hdl/template.py.txt4
-rw-r--r--hdl/utils.py10
5 files changed, 20 insertions, 11 deletions
diff --git a/hdl/core/alu.py b/hdl/core/alu.py
index b4261bd..f8a1a25 100644
--- a/hdl/core/alu.py
+++ b/hdl/core/alu.py
@@ -2,7 +2,7 @@ from amaranth import *
from amaranth.sim import Simulator, Settle, Delay
from enum import Enum, unique
-from hdl.utils import cmd, step, sim
+from hdl.utils import *
from hdl.lib.in_out_buff import InOutBuff
@unique
@@ -31,11 +31,12 @@ class ALUFlags(Enum):
negative = 3
class ALU(Elaboratable):
+
def __init__(self, **kargs):
self.in1 = Signal(32, reset_less=True)
self.in2 = Signal(32, reset_less=True)
self.c_in = Signal(1)
- self.op = Signal(4, reset_less=True)
+ self.op = Signal(e2s(AluOpCodes), reset_less=True)
self.tmp = Signal(33, reset_less=True)
@@ -44,7 +45,7 @@ class ALU(Elaboratable):
self.zero = Signal(1, reset_less=True)
self.neg = Signal(1, reset_less=True)
- self.alu_flags = Signal(4, reset_less=True)
+ self.alu_flags = Signal(len(ALUFlags), reset_less=True) # alu flags is one hot
self.out = Signal(32, reset_less=True)
self.sim = kargs["sim"] if "sim" in kargs else None
diff --git a/hdl/core/jump_ctl.py b/hdl/core/jump_ctl.py
index 6a7cf1b..468c2e3 100644
--- a/hdl/core/jump_ctl.py
+++ b/hdl/core/jump_ctl.py
@@ -2,7 +2,7 @@ from amaranth import *
from amaranth.sim import Simulator, Settle, Delay
from enum import Enum, unique
-from hdl.utils import cmd, step, eval, sim, rand_bits_mix
+from hdl.utils import *
from hdl.lib.in_out_buff import InOutBuff # used for timing analysis
from hdl.core.alu import ALUFlags, ALU, AluOpCodes #ALUOpCodes is for simulation only, not used in hardware
@@ -20,7 +20,7 @@ class JumpOpCodes(Enum):
class JumpCtl(Elaboratable):
def __init__(self, **kargs):
- self.alu_flags = Signal(ALU().alu_flags.width, reset_less=True)
+ self.alu_flags = Signal(len(ALUFlags), reset_less=True)
self.op = Signal(3, reset_less=True)
self.signed_bits = Signal(2, reset_less=True)
diff --git a/hdl/core/reg.py b/hdl/core/reg.py
index 0fee155..3526408 100644
--- a/hdl/core/reg.py
+++ b/hdl/core/reg.py
@@ -3,9 +3,9 @@ from amaranth import *
from amaranth.sim import Settle
from hdl.lib.in_out_buff import InOutBuff
-from hdl.utils import cmd, step, sim
+from hdl.utils import *
-from hdl.core.alu import ALUFlags, ALU
+from hdl.core.alu import ALUFlags
@unique
@@ -32,7 +32,7 @@ class Reg(Elaboratable):
self.rs1_addr = Signal(4)
self.rs2_addr = Signal(4)
- self.alu_flgs = Signal(ALU().alu_flags.width) # flags from alu
+ self.alu_flgs = Signal(len(ALUFlags)) # flags from alu
# these signals should be used one hot only
self.int_sig = Signal(1) # unconditional interrupt
diff --git a/hdl/template.py.txt b/hdl/template.py.txt
index cc6bdac..6ccb056 100644
--- a/hdl/template.py.txt
+++ b/hdl/template.py.txt
@@ -2,9 +2,9 @@ from amaranth import *
from amaranth.sim import Simulator, Settle, Delay
from enum import Enum, unique
-from hdl.utils import cmd, step, sim
+from hdl.utils import *
from hdl.lib.in_out_buff import InOutBuff # used for timing analysis
-
+from hdl.config import NUM_RAND_TESTS
class HDL(Elaboratable):
def __init__(self, **kargs):
diff --git a/hdl/utils.py b/hdl/utils.py
index a6e8de4..a2f788e 100644
--- a/hdl/utils.py
+++ b/hdl/utils.py
@@ -2,6 +2,8 @@
import sys
from inspect import stack # get name of caller function
from typing import Callable
+from math import log2, ceil
+from enum import Enum
import random
#hdl specific imports
@@ -16,6 +18,8 @@ from hdl.config import *
# configuration
random.seed(5498)
+__all__ = ['cmd', 'e2s', 'sim', 'step', 'eval', 'rand_bits', 'rand_bits_extremes', 'rand_bits_mix']
+
def cmd(hdl):
'''
@@ -42,7 +46,11 @@ def cmd(hdl):
with open(os.path.join(CXXRTL_DIR, os.path.basename(sys.argv[0]).replace('.py', '.cc')), 'w') as f:
f.write(out)
-
+def e2s(e: Enum):
+ '''
+ Get signal length from enum, returns ceil(log2(len(e))))
+ '''
+ return ceil(log2(len(e)))
def sim(dut:Elaboratable, proc: Callable):
sim = Simulator(dut)