projects
/
soc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fea2296
)
Use singal passed into plru rather than relying on internal signal
author
Daniel Benusovich
<flyingmonkeys1996@gmail.com>
Mon, 22 Apr 2019 01:23:54 +0000
(18:23 -0700)
committer
Daniel Benusovich
<flyingmonkeys1996@gmail.com>
Mon, 22 Apr 2019 01:23:54 +0000
(18:23 -0700)
TLB/src/ariane/tlb.py
patch
|
blob
|
history
diff --git
a/TLB/src/ariane/tlb.py
b/TLB/src/ariane/tlb.py
index 9bff30c57ce6e1e296fe1176599c79739e2ea8dd..61f99ce2267874069a810d3a656a4daefeea1721 100644
(file)
--- a/
TLB/src/ariane/tlb.py
+++ b/
TLB/src/ariane/tlb.py
@@
-112,6
+112,7
@@
class TLB:
#--------------
p = PLRU(self.tlb_entries)
+ plru_tree = Signal(p.TLBSZ)
m.submodules.plru = p
# connect PLRU inputs/outputs
@@
-121,7
+122,9
@@
class TLB:
en.append(tc[i].replace_en_i)
m.d.comb += [Cat(*en).eq(p.replace_en_o), # output from PLRU into tags
p.lu_hit.eq(hitsel.i),
- p.lu_access_i.eq(self.lu_access_i)]
+ p.lu_access_i.eq(self.lu_access_i),
+ p.plru_tree.eq(plru_tree)]
+ m.d.sync += plru_tree.eq(p.plru_tree_o)
#--------------
# Sanity checks