have configs reside by the proper areas

This commit is contained in:
abejgonzalez
2019-07-02 18:03:23 -07:00
parent 0088a6a8e8
commit 1232b37416

View File

@@ -62,6 +62,9 @@ class GB1MemoryConfig extends Config(
new WithExtMemSize((1<<30) * 1L) ++ new WithExtMemSize((1<<30) * 1L) ++
new DefaultRocketConfig) new DefaultRocketConfig)
class RocketL2Config extends Config(
new WithInclusiveCache ++ new DefaultRocketConfig)
// ------------ // ------------
// BOOM Configs // BOOM Configs
// ------------ // ------------
@@ -142,6 +145,9 @@ class RV32UnifiedBoomConfig extends Config(
new WithBootROM ++ new WithBootROM ++
new boom.system.SmallRV32UnifiedBoomConfig) new boom.system.SmallRV32UnifiedBoomConfig)
class BoomL2Config extends Config(
new WithInclusiveCache ++ new SmallDefaultBoomConfig)
// --------------------- // ---------------------
// BOOM and Rocket Configs // BOOM and Rocket Configs
// --------------------- // ---------------------
@@ -248,11 +254,5 @@ class RV32BoomAndRocketConfig extends Config(
new freechips.rocketchip.subsystem.WithNBigCores(1) ++ new freechips.rocketchip.subsystem.WithNBigCores(1) ++
new freechips.rocketchip.system.BaseConfig) new freechips.rocketchip.system.BaseConfig)
class RocketL2Config extends Config(
new WithInclusiveCache ++ new DefaultRocketConfig)
class BoomL2Config extends Config(
new WithInclusiveCache ++ new SmallDefaultBoomConfig)
class DualCoreRocketL2Config extends Config( class DualCoreRocketL2Config extends Config(
new WithInclusiveCache ++ new DualCoreRocketConfig) new WithInclusiveCache ++ new DualCoreRocketConfig)