1
0

For D$, use source 0 through N-1 for MMIO, not 1 through N

This makes the code a bit cleaner.
This commit is contained in:
Andrew Waterman
2017-03-23 13:07:14 -07:00
parent 3951e57789
commit 0538dc77ce
2 changed files with 7 additions and 9 deletions

View File

@ -60,7 +60,6 @@ trait HasL1HellaCacheParameters extends HasL1CacheParameters with HasCoreParamet
def encRowBits = encDataBits*rowWords
def lrscCycles = 32 // ISA requires 16-insn LRSC sequences to succeed
def nIOMSHRs = cacheParams.nMMIOs
def maxUncachedInFlight = cacheParams.nMMIOs
def dataScratchpadSize = cacheParams.dataScratchpadBytes
require(rowBits >= coreDataBits, s"rowBits($rowBits) < coreDataBits($coreDataBits)")