projects
/
soc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
84fe7fe
)
hack: resolve DriverConflict in src/soc/fu/mmu/fsm.py
author
Tobias Platen
<tplaten@posteo.de>
Mon, 1 Nov 2021 19:14:20 +0000
(20:14 +0100)
committer
Tobias Platen
<tplaten@posteo.de>
Mon, 1 Nov 2021 19:14:20 +0000
(20:14 +0100)
src/soc/fu/mmu/fsm.py
patch
|
blob
|
history
diff --git
a/src/soc/fu/mmu/fsm.py
b/src/soc/fu/mmu/fsm.py
index 800c7f2a271e8b1387563d8a440076d2f803bd5d..a7a152fb0a73c0f74a2b49f7c385ad545bf36d38 100644
(file)
--- a/
src/soc/fu/mmu/fsm.py
+++ b/
src/soc/fu/mmu/fsm.py
@@
-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():