2016-11-28 01:16:37 +01:00
|
|
|
// See LICENSE.SiFive for license details.
|
|
|
|
|
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 rocket._
|
2017-02-09 22:59:09 +01:00
|
|
|
import tile._
|
2017-01-17 03:24:08 +01:00
|
|
|
import uncore.tilelink2._
|
2016-11-16 03:27:52 +01:00
|
|
|
|
2017-01-28 02:09:43 +01:00
|
|
|
sealed trait ClockCrossing
|
|
|
|
case object Synchronous extends ClockCrossing
|
|
|
|
case object Rational extends ClockCrossing
|
|
|
|
case class Asynchronous(depth: Int, sync: Int = 2) extends ClockCrossing
|
2016-11-16 03:27:52 +01:00
|
|
|
|
2017-02-09 22:59:09 +01:00
|
|
|
case object RocketTilesKey extends Field[Seq[RocketTileParams]]
|
2017-01-28 02:09:43 +01:00
|
|
|
case object RocketCrossing extends Field[ClockCrossing]
|
2017-01-17 03:24:08 +01:00
|
|
|
|
2017-01-28 02:09:43 +01:00
|
|
|
trait HasRocketTiles extends CoreplexRISCVPlatform {
|
|
|
|
val module: HasRocketTilesModule
|
2016-11-16 03:27:52 +01:00
|
|
|
|
2017-01-28 02:09:43 +01:00
|
|
|
private val crossing = p(RocketCrossing)
|
2017-02-09 22:59:09 +01:00
|
|
|
private val configs = p(RocketTilesKey)
|
2017-01-17 03:24:08 +01:00
|
|
|
|
2017-01-28 02:09:43 +01:00
|
|
|
private val rocketTileIntNodes = configs.map { _ => IntInternalOutputNode() }
|
2017-01-17 03:24:08 +01:00
|
|
|
rocketTileIntNodes.foreach { _ := plic.intnode }
|
2016-11-16 03:27:52 +01:00
|
|
|
|
2017-01-28 02:09:43 +01:00
|
|
|
private def wireInterrupts(x: TileInterrupts, i: Int) {
|
|
|
|
x := clint.module.io.tiles(i)
|
|
|
|
x.debug := debug.module.io.debugInterrupts(i)
|
|
|
|
x.meip := rocketTileIntNodes(i).bundleOut(0)(0)
|
|
|
|
x.seip.foreach { _ := rocketTileIntNodes(i).bundleOut(0)(1) }
|
2016-11-16 03:27:52 +01:00
|
|
|
}
|
2016-11-19 02:15:57 +01:00
|
|
|
|
2017-01-28 02:09:43 +01:00
|
|
|
val rocketWires: Seq[HasRocketTilesBundle => Unit] = configs.zipWithIndex.map { case (c, i) =>
|
2017-02-09 22:59:09 +01:00
|
|
|
val pWithExtra = p.alterPartial {
|
|
|
|
case TileKey => c
|
|
|
|
case BuildRoCC => c.rocc
|
|
|
|
case SharedMemoryTLEdge => l1tol2.node.edgesIn(0)
|
|
|
|
case PAddrBits => l1tol2.node.edgesIn(0).bundle.addressBits
|
|
|
|
}
|
|
|
|
|
2017-01-28 02:09:43 +01:00
|
|
|
crossing match {
|
|
|
|
case Synchronous => {
|
|
|
|
val tile = LazyModule(new RocketTile(c)(pWithExtra))
|
2017-02-09 22:59:09 +01:00
|
|
|
val buffer = LazyModule(new TLBuffer)
|
|
|
|
buffer.node :=* tile.masterNode
|
|
|
|
l1tol2.node :=* buffer.node
|
|
|
|
tile.slaveNode :*= cbus.node
|
2017-01-28 02:09:43 +01:00
|
|
|
(io: HasRocketTilesBundle) => {
|
|
|
|
// leave clock as default (simpler for hierarchical PnR)
|
|
|
|
tile.module.io.hartid := UInt(i)
|
|
|
|
tile.module.io.resetVector := io.resetVector
|
|
|
|
wireInterrupts(tile.module.io.interrupts, i)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case Asynchronous(depth, sync) => {
|
|
|
|
val wrapper = LazyModule(new AsyncRocketTile(c)(pWithExtra))
|
2017-02-09 22:59:09 +01:00
|
|
|
val sink = LazyModule(new TLAsyncCrossingSink(depth, sync))
|
|
|
|
val source = LazyModule(new TLAsyncCrossingSource(sync))
|
|
|
|
sink.node :=* wrapper.masterNode
|
|
|
|
l1tol2.node :=* sink.node
|
|
|
|
wrapper.slaveNode :*= source.node
|
|
|
|
source.node :*= cbus.node
|
2017-01-28 02:09:43 +01:00
|
|
|
(io: HasRocketTilesBundle) => {
|
|
|
|
wrapper.module.clock := io.tcrs(i).clock
|
|
|
|
wrapper.module.reset := io.tcrs(i).reset
|
|
|
|
wrapper.module.io.hartid := UInt(i)
|
|
|
|
wrapper.module.io.resetVector := io.resetVector
|
|
|
|
wireInterrupts(wrapper.module.io.interrupts, i)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case Rational => {
|
|
|
|
val wrapper = LazyModule(new RationalRocketTile(c)(pWithExtra))
|
2017-02-09 22:59:09 +01:00
|
|
|
val sink = LazyModule(new TLRationalCrossingSink)
|
|
|
|
val source = LazyModule(new TLRationalCrossingSource)
|
|
|
|
sink.node :=* wrapper.masterNode
|
|
|
|
l1tol2.node :=* sink.node
|
|
|
|
wrapper.slaveNode :*= source.node
|
|
|
|
source.node :*= cbus.node
|
2017-01-28 02:09:43 +01:00
|
|
|
(io: HasRocketTilesBundle) => {
|
|
|
|
wrapper.module.clock := io.tcrs(i).clock
|
|
|
|
wrapper.module.reset := io.tcrs(i).reset
|
|
|
|
wrapper.module.io.hartid := UInt(i)
|
|
|
|
wrapper.module.io.resetVector := io.resetVector
|
|
|
|
wireInterrupts(wrapper.module.io.interrupts, i)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-11-19 02:15:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-28 02:09:43 +01:00
|
|
|
trait HasRocketTilesBundle extends CoreplexRISCVPlatformBundle {
|
|
|
|
val outer: HasRocketTiles
|
2017-02-09 22:59:09 +01:00
|
|
|
val tcrs = Vec(p(RocketTilesKey).size, new Bundle {
|
2016-11-19 02:15:57 +01:00
|
|
|
val clock = Clock(INPUT)
|
|
|
|
val reset = Bool(INPUT)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-01-28 02:09:43 +01:00
|
|
|
trait HasRocketTilesModule extends CoreplexRISCVPlatformModule {
|
|
|
|
val outer: HasRocketTiles
|
|
|
|
val io: HasRocketTilesBundle
|
|
|
|
outer.rocketWires.foreach { _(io) }
|
2016-11-19 02:15:57 +01:00
|
|
|
}
|