Update Bmb invalidate/sync parameters

This commit is contained in:
Dolu1990 2021-07-28 13:44:04 +02:00
parent ba8f5f966a
commit 671bd30953
1 changed files with 3 additions and 3 deletions

View File

@ -100,11 +100,11 @@ case class DataCacheConfig(cacheSize : Int,
contextWidth = (if(!withWriteResponse) 1 else 0) + aggregationWidth,
alignment = BmbParameter.BurstAlignement.LENGTH,
canExclusive = withExclusive,
withCachedRead = true
withCachedRead = true,
canInvalidate = withInvalidate,
canSync = withInvalidate
)),
BmbInvalidationParameter(
canInvalidate = withInvalidate,
canSync = withInvalidate,
invalidateLength = log2Up(this.bytePerLine),
invalidateAlignment = BmbParameter.BurstAlignement.LENGTH
)