comments on dcache-to-mmu link
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Fri, 30 Apr 2021 15:25:05 +0000 (16:25 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Fri, 30 Apr 2021 15:25:05 +0000 (16:25 +0100)
src/soc/fu/mmu/fsm.py

index a21b73da0921200ddc243c909da9412f0dec504e..00b537d6a2da0a32c14d0a7e4a52ae93f184c9e5 100644 (file)
@@ -262,8 +262,8 @@ class FSMMMUStage(ControlBase):
         # link mmu and dcache together
         m.submodules.mmu = mmu = self.mmu
         ldst = self.ldst # managed externally: do not add here
-        m.d.comb += dcache.m_in.eq(mmu.d_out)
-        m.d.comb += mmu.d_in.eq(dcache.m_out)
+        m.d.comb += dcache.m_in.eq(mmu.d_out) # MMUToDCacheType
+        m.d.comb += mmu.d_in.eq(dcache.m_out) # DCacheToMMUType
 
         l_in, l_out = mmu.l_in, mmu.l_out
         d_in, d_out = dcache.d_in, dcache.d_out