From eceda7183fd98af36003ca241446c9f734b91dd3 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Mon, 6 Dec 2021 22:43:29 +0000 Subject: [PATCH] convert TLBArray to TLBValidArray (because PTE and TAG are now each in a Memory) --- src/soc/experiment/dcache.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/soc/experiment/dcache.py b/src/soc/experiment/dcache.py index 447994f9..ef6ac6ef 100644 --- a/src/soc/experiment/dcache.py +++ b/src/soc/experiment/dcache.py @@ -209,8 +209,9 @@ def TLBRecord(name): ] return Record(tlb_layout, name=name) -def TLBArray(): - return Array(TLBRecord(name="tlb%d" % x) for x in range(TLB_SET_SIZE)) +def TLBValidArray(): + return Array(Signal(TLB_NUM_WAYS, name="tlb_valid%d" % x) + for x in range(TLB_SET_SIZE)) def HitWaySet(): return Array(Signal(WAY_BITS, name="hitway_%d" % x) \ @@ -434,7 +435,7 @@ class Reservation(RecordObject): class DTLBUpdate(Elaboratable): def __init__(self): - self.dtlb = TLBArray() + self.dtlb = TLBValidArray() self.tlbie = Signal() self.tlbwe = Signal() self.doall = Signal() @@ -491,13 +492,13 @@ class DTLBUpdate(Elaboratable): pb_out = Signal(TLB_PTE_WAY_BITS) # tlb_way_ptes_t dv = Signal(TLB_NUM_WAYS) # tlb_way_valids_t - comb += dv.eq(dtlb[tlb_req_index].valid) + comb += dv.eq(dtlb[tlb_req_index]) comb += db_out.eq(dv) with m.If(self.tlbie & self.doall): # clear all valid bits at once for i in range(TLB_SET_SIZE): - sync += dtlb[i].valid.eq(0) + sync += dtlb[i].eq(0) with m.Elif(self.tlbie): # invalidate just the hit_way with m.If(self.tlb_hit.valid): @@ -519,14 +520,14 @@ class DTLBUpdate(Elaboratable): comb += wr_tagway.data.eq(tb_out) comb += wr_tagway.en.eq(1<