2016-11-16 03:27:52 +01:00
|
|
|
package coreplex
|
|
|
|
|
|
|
|
import Chisel._
|
2016-11-18 23:05:14 +01:00
|
|
|
import config._
|
2016-11-16 03:27:52 +01:00
|
|
|
import diplomacy._
|
|
|
|
import uncore.tilelink2._
|
|
|
|
import uncore.coherence._
|
|
|
|
import rocket._
|
|
|
|
import uncore.devices.NTiles
|
|
|
|
|
|
|
|
trait RocketPlex extends CoreplexRISCVPlatform {
|
|
|
|
val module: RocketPlexModule
|
|
|
|
|
|
|
|
val rocketTiles = List.tabulate(p(NTiles)) { i => LazyModule(new RocketTile(i)) }
|
|
|
|
val tileIntNodes = rocketTiles.map { _ => IntInternalOutputNode() }
|
|
|
|
|
|
|
|
tileIntNodes.foreach { _ := plic.intnode }
|
|
|
|
rocketTiles.foreach { r =>
|
|
|
|
r.slaveNode.foreach { _ := cbus.node }
|
|
|
|
l1tol2.node := r.cachedOut
|
|
|
|
l1tol2.node := r.uncachedOut
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
trait RocketPlexBundle extends CoreplexRISCVPlatformBundle {
|
|
|
|
val outer: CoreplexRISCVPlatform
|
|
|
|
}
|
|
|
|
|
|
|
|
trait RocketPlexModule extends CoreplexRISCVPlatformModule {
|
|
|
|
val outer: RocketPlex
|
|
|
|
val io: RocketPlexBundle
|
|
|
|
|
|
|
|
outer.rocketTiles.map(_.module).zipWithIndex.foreach { case (tile, i) =>
|
|
|
|
tile.io.hartid := UInt(i)
|
|
|
|
tile.io.resetVector := io.resetVector
|
|
|
|
tile.io.interrupts := outer.clint.module.io.tiles(i)
|
|
|
|
tile.io.interrupts.debug := outer.debug.module.io.debugInterrupts(i)
|
|
|
|
tile.io.interrupts.meip := outer.tileIntNodes(i).bundleOut(0)(0)
|
|
|
|
tile.io.interrupts.seip.foreach(_ := outer.tileIntNodes(i).bundleOut(0)(1))
|
|
|
|
}
|
|
|
|
}
|
2016-11-19 02:15:57 +01:00
|
|
|
|
|
|
|
class AsyncRocketTile(tileId: Int)(implicit p: Parameters) extends LazyModule {
|
|
|
|
val rocket = LazyModule(new RocketTile(tileId))
|
|
|
|
|
|
|
|
val cachedOut = TLAsyncOutputNode()
|
|
|
|
val uncachedOut = TLAsyncOutputNode()
|
|
|
|
val slaveNode = rocket.slaveNode.map(_ => TLAsyncInputNode())
|
|
|
|
|
|
|
|
cachedOut := TLAsyncCrossingSource()(rocket.cachedOut)
|
|
|
|
uncachedOut := TLAsyncCrossingSource()(rocket.uncachedOut)
|
|
|
|
(rocket.slaveNode zip slaveNode) foreach { case (r,n) => r := TLAsyncCrossingSink()(n) }
|
|
|
|
|
|
|
|
lazy val module = new LazyModuleImp(this) {
|
|
|
|
val io = new Bundle {
|
|
|
|
val cached = cachedOut.bundleOut
|
|
|
|
val uncached = uncachedOut.bundleOut
|
|
|
|
val slave = slaveNode.map(_.bundleIn)
|
|
|
|
val hartid = UInt(INPUT, p(XLen))
|
|
|
|
val interrupts = new TileInterrupts().asInput
|
|
|
|
val resetVector = UInt(INPUT, p(XLen))
|
|
|
|
}
|
|
|
|
rocket.module.io.interrupts := ShiftRegister(io.interrupts, 3)
|
|
|
|
// signals that do not change:
|
|
|
|
rocket.module.io.hartid := io.hartid
|
|
|
|
rocket.module.io.resetVector := io.resetVector
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
trait AsyncRocketPlex extends CoreplexRISCVPlatform {
|
|
|
|
val module: AsyncRocketPlexModule
|
|
|
|
|
|
|
|
val rocketTiles = List.tabulate(p(NTiles)) { i => LazyModule(new AsyncRocketTile(i)) }
|
|
|
|
val tileIntNodes = rocketTiles.map { _ => IntInternalOutputNode() }
|
|
|
|
|
|
|
|
tileIntNodes.foreach { _ := plic.intnode }
|
|
|
|
rocketTiles.foreach { r =>
|
|
|
|
r.slaveNode.foreach { _ := TLAsyncCrossingSource()(cbus.node) }
|
|
|
|
l1tol2.node := TLAsyncCrossingSink()(r.cachedOut)
|
|
|
|
l1tol2.node := TLAsyncCrossingSink()(r.uncachedOut)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
trait AsyncRocketPlexBundle extends CoreplexRISCVPlatformBundle {
|
|
|
|
val outer: CoreplexRISCVPlatform
|
|
|
|
|
|
|
|
val tcrs = Vec(nTiles, new Bundle {
|
|
|
|
val clock = Clock(INPUT)
|
|
|
|
val reset = Bool(INPUT)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
trait AsyncRocketPlexModule extends CoreplexRISCVPlatformModule {
|
|
|
|
val outer: AsyncRocketPlex
|
|
|
|
val io: AsyncRocketPlexBundle
|
|
|
|
|
|
|
|
outer.rocketTiles.map(_.module).zipWithIndex.foreach { case (tile, i) =>
|
|
|
|
tile.clock := io.tcrs(i).clock
|
|
|
|
tile.reset := io.tcrs(i).reset
|
|
|
|
tile.io.hartid := UInt(i)
|
|
|
|
tile.io.resetVector := io.resetVector
|
|
|
|
tile.io.interrupts := outer.clint.module.io.tiles(i)
|
|
|
|
tile.io.interrupts.debug := outer.debug.module.io.debugInterrupts(i)
|
|
|
|
tile.io.interrupts.meip := outer.tileIntNodes(i).bundleOut(0)(0)
|
|
|
|
tile.io.interrupts.seip.foreach(_ := outer.tileIntNodes(i).bundleOut(0)(1))
|
|
|
|
}
|
|
|
|
}
|