VexRiscvSmpClusterGen no support atomic less configs

This commit is contained in:
Dolu1990 2021-07-05 12:38:54 +02:00
parent a380c3a36c
commit c79357d1b2
1 changed files with 4 additions and 3 deletions

View File

@ -167,6 +167,7 @@ object VexRiscvSmpClusterGen {
dBusWidth : Int = 64,
loadStoreWidth : Int = 32,
coherency : Boolean = true,
atomic : Boolean = true,
iCacheSize : Int = 8192,
dCacheSize : Int = 8192,
iCacheWays : Int = 2,
@ -270,9 +271,9 @@ object VexRiscvSmpClusterGen {
catchAccessError = true,
catchIllegal = true,
catchUnaligned = true,
withLrSc = true,
withAmo = true,
withExclusive = coherency,
withLrSc = atomic,
withAmo = atomic,
withExclusive = atomic,
withInvalidate = coherency,
withWriteAggregation = dBusWidth > 32
),