hack: resolve DriverConflict in src/soc/fu/mmu/fsm.py
authorTobias Platen <tplaten@posteo.de>
Mon, 1 Nov 2021 19:14:20 +0000 (20:14 +0100)
committerTobias Platen <tplaten@posteo.de>
Mon, 1 Nov 2021 19:14:20 +0000 (20:14 +0100)
src/soc/fu/mmu/fsm.py

index 800c7f2a271e8b1387563d8a440076d2f803bd5d..a7a152fb0a73c0f74a2b49f7c385ad545bf36d38 100644 (file)
@@ -145,10 +145,11 @@ class FSMMMUStage(ControlBase):
                     with m.If(~spr[9] & ~spr[5]):
                         comb += self.debug0.eq(3)
                         #if matched update local cached value
-                        with m.If(spr[0]):
-                            sync += dsisr.eq(a_i[:32])
-                        with m.Else():
-                            sync += dar.eq(a_i)
+                        #commented out because there is a driver conflict
+                        #with m.If(spr[0]):
+                        #    sync += dsisr.eq(a_i[:32])
+                        #with m.Else():
+                        #    sync += dar.eq(a_i)
                         comb += done.eq(1)
                     # pass it over to the MMU instead
                     with m.Else():