rocketchip: use self-type
This commit is contained in:
parent
841a31479a
commit
d51b0b5c02
@ -136,6 +136,19 @@ trait CoreplexRISCVModule {
|
|||||||
val tiles = outer.lazyTiles.map(_.module)
|
val tiles = outer.lazyTiles.map(_.module)
|
||||||
val uncoreTileIOs = (tiles zipWithIndex) map { case (tile, i) => Wire(tile.io) }
|
val uncoreTileIOs = (tiles zipWithIndex) map { case (tile, i) => Wire(tile.io) }
|
||||||
|
|
||||||
|
println("\nGenerated Address Map")
|
||||||
|
for (entry <- p(rocketchip.GlobalAddrMap).flatten) {
|
||||||
|
val name = entry.name
|
||||||
|
val start = entry.region.start
|
||||||
|
val end = entry.region.start + entry.region.size - 1
|
||||||
|
val prot = entry.region.attr.prot
|
||||||
|
val protStr = (if ((prot & AddrMapProt.R) > 0) "R" else "") +
|
||||||
|
(if ((prot & AddrMapProt.W) > 0) "W" else "") +
|
||||||
|
(if ((prot & AddrMapProt.X) > 0) "X" else "")
|
||||||
|
val cacheable = if (entry.region.attr.cacheable) " [C]" else ""
|
||||||
|
println(f"\t$name%s $start%x - $end%x, $protStr$cacheable")
|
||||||
|
}
|
||||||
|
|
||||||
// Create and export the ConfigString
|
// Create and export the ConfigString
|
||||||
val managers = outer.l1tol2.node.edgesIn(0).manager.managers
|
val managers = outer.l1tol2.node.edgesIn(0).manager.managers
|
||||||
val configString = rocketchip.GenerateConfigString(p, outer.clint, outer.plic, managers)
|
val configString = rocketchip.GenerateConfigString(p, outer.clint, outer.plic, managers)
|
||||||
|
@ -19,81 +19,83 @@ case object NCoreplexExtClients extends Field[Int]
|
|||||||
/** Enable or disable monitoring of Diplomatic buses */
|
/** Enable or disable monitoring of Diplomatic buses */
|
||||||
case object TLEmitMonitors extends Field[Bool]
|
case object TLEmitMonitors extends Field[Bool]
|
||||||
|
|
||||||
/** Base Top with no Periphery */
|
abstract class BareTop[+C <: BaseCoreplex](buildCoreplex: Parameters => C)(implicit val q: Parameters) extends LazyModule {
|
||||||
abstract class BaseTop[+C <: BaseCoreplex](buildCoreplex: Parameters => C)(implicit q: Parameters) extends LazyModule {
|
// Fill in the TL1 legacy parameters; remove these once rocket/groundtest/unittest are TL2
|
||||||
// the following variables will be refactored properly with TL2
|
|
||||||
val pBusMasters = new RangeManager
|
val pBusMasters = new RangeManager
|
||||||
|
lazy val legacyAddrMap = GenerateGlobalAddrMap(q, coreplex.l1tol2.node.edgesIn(0).manager.managers)
|
||||||
|
val coreplex : C = LazyModule(buildCoreplex(q.alterPartial {
|
||||||
|
case NCoreplexExtClients => pBusMasters.sum
|
||||||
|
case GlobalAddrMap => legacyAddrMap
|
||||||
|
}))
|
||||||
|
|
||||||
TLImp.emitMonitors = q(TLEmitMonitors)
|
TopModule.contents = Some(this)
|
||||||
|
}
|
||||||
|
|
||||||
|
abstract class BareTopBundle[+L <: BareTop[BaseCoreplex]](val outer: L) extends Bundle
|
||||||
|
abstract class BareTopModule[+B <: BareTopBundle[BareTop[BaseCoreplex]]](val io: B) extends LazyModuleImp(io.outer) {
|
||||||
|
val outer = io.outer.asInstanceOf[io.outer.type]
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Base Top with no Periphery */
|
||||||
|
trait TopNetwork {
|
||||||
|
this: BareTop[BaseCoreplex] =>
|
||||||
|
implicit val p = q
|
||||||
|
TLImp.emitMonitors = p(TLEmitMonitors)
|
||||||
|
|
||||||
// Add a SoC and peripheral bus
|
// Add a SoC and peripheral bus
|
||||||
val socBus = LazyModule(new TLXbar)
|
val socBus = LazyModule(new TLXbar)
|
||||||
val peripheryBus = LazyModule(new TLXbar)
|
val peripheryBus = LazyModule(new TLXbar)
|
||||||
val intBus = LazyModule(new IntXbar)
|
val intBus = LazyModule(new IntXbar)
|
||||||
|
|
||||||
// Fill in the TL1 legacy parameters
|
|
||||||
implicit val p = q.alterPartial {
|
|
||||||
case NCoreplexExtClients => pBusMasters.sum
|
|
||||||
case GlobalAddrMap => legacyAddrMap
|
|
||||||
}
|
|
||||||
|
|
||||||
val coreplex : C = LazyModule(buildCoreplex(p))
|
|
||||||
|
|
||||||
// Create the address map for legacy masters
|
|
||||||
lazy val legacyAddrMap = GenerateGlobalAddrMap(q, coreplex.l1tol2.node.edgesIn(0).manager.managers)
|
|
||||||
|
|
||||||
peripheryBus.node :=
|
peripheryBus.node :=
|
||||||
TLWidthWidget(p(SOCBusKey).beatBytes)(
|
TLWidthWidget(p(SOCBusKey).beatBytes)(
|
||||||
TLAtomicAutomata(arithmetic = p(PeripheryBusKey).arithAMO)(
|
TLAtomicAutomata(arithmetic = p(PeripheryBusKey).arithAMO)(
|
||||||
socBus.node))
|
socBus.node))
|
||||||
|
|
||||||
TopModule.contents = Some(this)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
abstract class BaseTopBundle[+L <: BaseTop[BaseCoreplex]](val outer: L) extends Bundle {
|
trait TopNetworkBundle {
|
||||||
implicit val p = outer.p
|
this: BareTopBundle[BareTop[BaseCoreplex]] =>
|
||||||
|
implicit val p = outer.q
|
||||||
val success = Bool(OUTPUT)
|
val success = Bool(OUTPUT)
|
||||||
}
|
}
|
||||||
|
|
||||||
abstract class BaseTopModule[+B <: BaseTopBundle[BaseTop[BaseCoreplex]]](val io: B) extends LazyModuleImp(io.outer) {
|
trait TopNetworkModule {
|
||||||
val outer = io.outer.asInstanceOf[io.outer.type]
|
this: {
|
||||||
|
val outer: BareTop[BaseCoreplex] with TopNetwork
|
||||||
|
val io: TopNetworkBundle
|
||||||
|
} =>
|
||||||
implicit val p = outer.p
|
implicit val p = outer.p
|
||||||
|
|
||||||
val coreplexMem : Vec[ClientUncachedTileLinkIO] = Wire(outer.coreplex.module.io.mem)
|
val coreplexMem : Vec[ClientUncachedTileLinkIO] = Wire(outer.coreplex.module.io.mem)
|
||||||
val coreplexSlave: Vec[ClientUncachedTileLinkIO] = Wire(outer.coreplex.module.io.slave)
|
val coreplexSlave: Vec[ClientUncachedTileLinkIO] = Wire(outer.coreplex.module.io.slave)
|
||||||
val coreplexDebug: DebugBusIO = Wire(outer.coreplex.module.io.debug)
|
val coreplexDebug: DebugBusIO = Wire(outer.coreplex.module.io.debug)
|
||||||
|
|
||||||
println("Generated Address Map")
|
|
||||||
for (entry <- p(GlobalAddrMap).flatten) {
|
|
||||||
val name = entry.name
|
|
||||||
val start = entry.region.start
|
|
||||||
val end = entry.region.start + entry.region.size - 1
|
|
||||||
val prot = entry.region.attr.prot
|
|
||||||
val protStr = (if ((prot & AddrMapProt.R) > 0) "R" else "") +
|
|
||||||
(if ((prot & AddrMapProt.W) > 0) "W" else "") +
|
|
||||||
(if ((prot & AddrMapProt.X) > 0) "X" else "")
|
|
||||||
val cacheable = if (entry.region.attr.cacheable) " [C]" else ""
|
|
||||||
println(f"\t$name%s $start%x - $end%x, $protStr$cacheable")
|
|
||||||
}
|
|
||||||
|
|
||||||
io.success := outer.coreplex.module.io.success
|
io.success := outer.coreplex.module.io.success
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Base Top with no Periphery */
|
||||||
|
class BaseTop[+C <: BaseCoreplex](buildCoreplex: Parameters => C)(implicit p: Parameters) extends BareTop(buildCoreplex)
|
||||||
|
with TopNetwork {
|
||||||
|
override lazy val module = new BaseTopModule(new BaseTopBundle(this))
|
||||||
|
}
|
||||||
|
|
||||||
|
class BaseTopBundle[+L <: BaseTop[BaseCoreplex]](outer: L) extends BareTopBundle(outer)
|
||||||
|
with TopNetworkBundle
|
||||||
|
|
||||||
|
class BaseTopModule[+B <: BaseTopBundle[BaseTop[BaseCoreplex]]](io: B) extends BareTopModule(io)
|
||||||
|
with TopNetworkModule
|
||||||
|
|
||||||
trait DirectConnection {
|
trait DirectConnection {
|
||||||
val coreplex: BaseCoreplex
|
this: BareTop[BaseCoreplex] with TopNetwork =>
|
||||||
val socBus: TLXbar
|
|
||||||
val intBus: IntXbar
|
|
||||||
|
|
||||||
socBus.node := coreplex.mmio
|
socBus.node := coreplex.mmio
|
||||||
coreplex.mmioInt := intBus.intnode
|
coreplex.mmioInt := intBus.intnode
|
||||||
}
|
}
|
||||||
|
|
||||||
trait DirectConnectionModule {
|
trait DirectConnectionModule {
|
||||||
|
this: TopNetworkModule {
|
||||||
val outer: BaseTop[BaseCoreplex]
|
val outer: BaseTop[BaseCoreplex]
|
||||||
|
} =>
|
||||||
val coreplexMem : Vec[ClientUncachedTileLinkIO]
|
|
||||||
val coreplexSlave : Vec[ClientUncachedTileLinkIO]
|
|
||||||
val coreplexDebug : DebugBusIO
|
|
||||||
|
|
||||||
coreplexMem <> outer.coreplex.module.io.mem
|
coreplexMem <> outer.coreplex.module.io.mem
|
||||||
outer.coreplex.module.io.slave <> coreplexSlave
|
outer.coreplex.module.io.slave <> coreplexSlave
|
||||||
|
Loading…
Reference in New Issue
Block a user