From 1bc0fb758283c01cb5d015488a9db7b3bacc5f99 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sun, 3 Oct 2021 00:46:59 +0100 Subject: [PATCH] have to remove dcbz from pimem.py entirely --- src/soc/experiment/pimem.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/soc/experiment/pimem.py b/src/soc/experiment/pimem.py index 3db68c17..f9aa37df 100644 --- a/src/soc/experiment/pimem.py +++ b/src/soc/experiment/pimem.py @@ -258,14 +258,14 @@ class PortInterfaceBase(Elaboratable): # if now in "DCBZ" mode: wait for addr_ok, then send the address out # to memory, acknowledge address, and send out LD data - with m.If(dcbz_active.q): + #with m.If(dcbz_active.q): ##comb += Display("dcbz active") # XXX Please don't do it this way, not without discussion # the exact same address is required to be set by both # dcbz and stores, so use the exact same function. # it would be better to add an extra argument to # set_wr_addr to indicate "dcbz mode". - self.___use_wr_addr_instead_set_dcbz_addr(m, pi.addr.data) + #self.___use_wr_addr_instead_set_dcbz_addr(m, pi.addr.data) # if now in "ST" mode: likewise do the same but with "ST" # to memory, acknowledge address, and send out LD data -- 2.30.2