2014-09-13 03:06:41 +02:00
|
|
|
// See LICENSE for license details.
|
|
|
|
|
2012-03-25 00:56:59 +01:00
|
|
|
package rocket
|
|
|
|
|
|
|
|
import Chisel._
|
2016-10-27 04:02:04 +02:00
|
|
|
import diplomacy._
|
2016-06-28 22:15:39 +02:00
|
|
|
import uncore.tilelink._
|
2016-10-27 04:02:04 +02:00
|
|
|
import uncore.tilelink2._
|
2016-06-28 22:15:39 +02:00
|
|
|
import uncore.agents._
|
2016-09-03 00:59:16 +02:00
|
|
|
import uncore.converters._
|
2016-06-28 22:15:39 +02:00
|
|
|
import uncore.devices._
|
2016-09-28 06:27:07 +02:00
|
|
|
import util._
|
2015-10-22 03:18:32 +02:00
|
|
|
import cde.{Parameters, Field}
|
2012-03-25 00:56:59 +01:00
|
|
|
|
2015-12-02 02:54:56 +01:00
|
|
|
case object BuildRoCC extends Field[Seq[RoccParameters]]
|
2016-06-14 01:18:38 +02:00
|
|
|
case object NCachedTileLinkPorts extends Field[Int]
|
|
|
|
case object NUncachedTileLinkPorts extends Field[Int]
|
2016-09-02 09:05:40 +02:00
|
|
|
case object TileId extends Field[Int]
|
2015-12-02 02:54:56 +01:00
|
|
|
|
|
|
|
case class RoccParameters(
|
|
|
|
opcodes: OpcodeSet,
|
|
|
|
generator: Parameters => RoCC,
|
2015-12-03 01:28:23 +01:00
|
|
|
nMemChannels: Int = 0,
|
2016-02-25 07:39:00 +01:00
|
|
|
nPTWPorts : Int = 0,
|
2016-01-14 20:37:58 +01:00
|
|
|
useFPU: Boolean = false)
|
2014-08-08 21:23:02 +02:00
|
|
|
|
2016-09-22 01:54:35 +02:00
|
|
|
case class TileBundleConfig(
|
|
|
|
nCachedTileLinkPorts: Int,
|
|
|
|
nUncachedTileLinkPorts: Int,
|
2016-10-27 04:54:47 +02:00
|
|
|
xLen: Int)
|
2016-09-22 01:54:35 +02:00
|
|
|
|
2016-10-27 04:54:47 +02:00
|
|
|
class TileIO(c: TileBundleConfig, node: Option[TLInwardNode] = None)(implicit p: Parameters) extends Bundle {
|
2016-09-22 01:54:35 +02:00
|
|
|
val cached = Vec(c.nCachedTileLinkPorts, new ClientTileLinkIO)
|
|
|
|
val uncached = Vec(c.nUncachedTileLinkPorts, new ClientUncachedTileLinkIO)
|
|
|
|
val hartid = UInt(INPUT, c.xLen)
|
|
|
|
val interrupts = new TileInterrupts().asInput
|
2016-10-27 04:54:47 +02:00
|
|
|
val slave = node.map(_.inward.bundleIn)
|
2016-09-22 01:54:35 +02:00
|
|
|
val resetVector = UInt(INPUT, c.xLen)
|
|
|
|
|
|
|
|
override def cloneType = new TileIO(c).asInstanceOf[this.type]
|
|
|
|
}
|
|
|
|
|
2016-10-28 04:55:40 +02:00
|
|
|
abstract class TileImp(l: LazyTile)(implicit val p: Parameters) extends LazyModuleImp(l) {
|
2016-10-27 04:54:47 +02:00
|
|
|
val io: TileIO
|
|
|
|
}
|
|
|
|
|
|
|
|
abstract class LazyTile(implicit p: Parameters) extends LazyModule {
|
2016-06-14 01:18:38 +02:00
|
|
|
val nCachedTileLinkPorts = p(NCachedTileLinkPorts)
|
|
|
|
val nUncachedTileLinkPorts = p(NUncachedTileLinkPorts)
|
2015-10-21 00:02:24 +02:00
|
|
|
val dcacheParams = p.alterPartial({ case CacheName => "L1D" })
|
2016-09-22 01:54:35 +02:00
|
|
|
val bc = TileBundleConfig(
|
|
|
|
nCachedTileLinkPorts = nCachedTileLinkPorts,
|
|
|
|
nUncachedTileLinkPorts = nUncachedTileLinkPorts,
|
2016-10-27 04:54:47 +02:00
|
|
|
xLen = p(XLen))
|
2016-06-14 01:18:38 +02:00
|
|
|
|
2016-10-27 04:02:04 +02:00
|
|
|
val module: TileImp
|
2016-10-28 07:27:43 +02:00
|
|
|
val slave: Option[TLInputNode]
|
2016-10-27 04:02:04 +02:00
|
|
|
}
|
2015-11-26 01:02:27 +01:00
|
|
|
|
2016-10-27 04:02:04 +02:00
|
|
|
class RocketTile(implicit p: Parameters) extends LazyTile {
|
2016-10-28 07:27:43 +02:00
|
|
|
val slave = if (p(DataScratchpadSize) == 0) None else Some(TLInputNode())
|
2016-10-27 04:54:47 +02:00
|
|
|
val scratch = if (p(DataScratchpadSize) == 0) None else Some(LazyModule(new ScratchpadSlavePort()(dcacheParams)))
|
|
|
|
|
2016-10-28 21:13:01 +02:00
|
|
|
(slave zip scratch) foreach { case (node, lm) => lm.node := TLFragmenter(p(XLen)/8, p(CacheBlockBytes))(node) }
|
2016-10-27 04:54:47 +02:00
|
|
|
|
2016-10-27 04:02:04 +02:00
|
|
|
lazy val module = new TileImp(this) {
|
2016-10-27 04:54:47 +02:00
|
|
|
val io = new TileIO(bc, slave)
|
2016-10-27 04:02:04 +02:00
|
|
|
val buildRocc = p(BuildRoCC)
|
|
|
|
val usingRocc = !buildRocc.isEmpty
|
|
|
|
val nRocc = buildRocc.size
|
|
|
|
val nFPUPorts = buildRocc.filter(_.useFPU).size
|
|
|
|
|
|
|
|
val core = Module(new Rocket)
|
|
|
|
val icache = Module(new Frontend()(p.alterPartial({ case CacheName => "L1I" })))
|
|
|
|
val dcache = HellaCache(p(DCacheKey))(dcacheParams)
|
|
|
|
|
|
|
|
val ptwPorts = collection.mutable.ArrayBuffer(icache.io.ptw, dcache.ptw)
|
|
|
|
val dcPorts = collection.mutable.ArrayBuffer(core.io.dmem)
|
|
|
|
val uncachedArbPorts = collection.mutable.ArrayBuffer(icache.io.mem)
|
|
|
|
val uncachedPorts = collection.mutable.ArrayBuffer[ClientUncachedTileLinkIO]()
|
|
|
|
val cachedPorts = collection.mutable.ArrayBuffer(dcache.mem)
|
|
|
|
core.io.interrupts := io.interrupts
|
|
|
|
core.io.hartid := io.hartid
|
|
|
|
icache.io.cpu <> core.io.imem
|
|
|
|
icache.io.resetVector := io.resetVector
|
|
|
|
|
|
|
|
val fpuOpt = p(FPUKey).map(cfg => Module(new FPU(cfg)))
|
|
|
|
fpuOpt.foreach(fpu => core.io.fpu <> fpu.io)
|
|
|
|
|
|
|
|
if (usingRocc) {
|
|
|
|
val respArb = Module(new RRArbiter(new RoCCResponse, nRocc))
|
|
|
|
core.io.rocc.resp <> respArb.io.out
|
|
|
|
|
|
|
|
val roccOpcodes = buildRocc.map(_.opcodes)
|
|
|
|
val cmdRouter = Module(new RoccCommandRouter(roccOpcodes))
|
|
|
|
cmdRouter.io.in <> core.io.rocc.cmd
|
|
|
|
|
|
|
|
val roccs = buildRocc.zipWithIndex.map { case (accelParams, i) =>
|
|
|
|
val rocc = accelParams.generator(p.alterPartial({
|
|
|
|
case RoccNMemChannels => accelParams.nMemChannels
|
|
|
|
case RoccNPTWPorts => accelParams.nPTWPorts
|
|
|
|
}))
|
|
|
|
val dcIF = Module(new SimpleHellaCacheIF()(dcacheParams))
|
|
|
|
rocc.io.cmd <> cmdRouter.io.out(i)
|
|
|
|
rocc.io.exception := core.io.rocc.exception
|
|
|
|
dcIF.io.requestor <> rocc.io.mem
|
|
|
|
dcPorts += dcIF.io.cache
|
|
|
|
uncachedArbPorts += rocc.io.autl
|
|
|
|
rocc
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nFPUPorts > 0) {
|
|
|
|
fpuOpt.foreach { fpu =>
|
|
|
|
val fpArb = Module(new InOrderArbiter(new FPInput, new FPResult, nFPUPorts))
|
|
|
|
val fp_roccs = roccs.zip(buildRocc)
|
|
|
|
.filter { case (_, params) => params.useFPU }
|
|
|
|
.map { case (rocc, _) => rocc.io }
|
|
|
|
fpArb.io.in_req <> fp_roccs.map(_.fpu_req)
|
|
|
|
fp_roccs.zip(fpArb.io.in_resp).foreach {
|
|
|
|
case (rocc, fpu_resp) => rocc.fpu_resp <> fpu_resp
|
|
|
|
}
|
|
|
|
fpu.io.cp_req <> fpArb.io.out_req
|
|
|
|
fpArb.io.out_resp <> fpu.io.cp_resp
|
2015-12-02 01:48:05 +01:00
|
|
|
}
|
2015-12-01 19:22:31 +01:00
|
|
|
}
|
|
|
|
|
2016-10-27 04:02:04 +02:00
|
|
|
core.io.rocc.busy := cmdRouter.io.busy || roccs.map(_.io.busy).reduce(_ || _)
|
|
|
|
core.io.rocc.interrupt := roccs.map(_.io.interrupt).reduce(_ || _)
|
|
|
|
respArb.io.in <> roccs.map(rocc => Queue(rocc.io.resp))
|
2015-11-26 01:02:27 +01:00
|
|
|
|
2016-10-27 04:02:04 +02:00
|
|
|
ptwPorts ++= roccs.flatMap(_.io.ptw)
|
|
|
|
uncachedPorts ++= roccs.flatMap(_.io.utl)
|
|
|
|
}
|
2016-03-25 22:16:56 +01:00
|
|
|
|
2016-10-27 04:02:04 +02:00
|
|
|
val uncachedArb = Module(new ClientUncachedTileLinkIOArbiter(uncachedArbPorts.size))
|
|
|
|
uncachedArb.io.in <> uncachedArbPorts
|
|
|
|
uncachedArb.io.out +=: uncachedPorts
|
|
|
|
|
|
|
|
// Connect the caches and RoCC to the outer memory system
|
|
|
|
io.uncached <> uncachedPorts
|
|
|
|
io.cached <> cachedPorts
|
|
|
|
// TODO remove nCached/nUncachedTileLinkPorts parameters and these assertions
|
|
|
|
require(uncachedPorts.size == nUncachedTileLinkPorts)
|
|
|
|
require(cachedPorts.size == nCachedTileLinkPorts)
|
|
|
|
|
|
|
|
if (p(UseVM)) {
|
|
|
|
val ptw = Module(new PTW(ptwPorts.size)(dcacheParams))
|
|
|
|
ptw.io.requestor <> ptwPorts
|
|
|
|
ptw.io.mem +=: dcPorts
|
|
|
|
core.io.ptw <> ptw.io.dpath
|
|
|
|
}
|
2016-03-25 22:16:56 +01:00
|
|
|
|
2016-10-27 04:54:47 +02:00
|
|
|
scratch.foreach { lm => lm.module.io.dmem +=: dcPorts }
|
2016-09-03 00:59:16 +02:00
|
|
|
|
2016-10-27 04:02:04 +02:00
|
|
|
require(dcPorts.size == core.dcacheArbPorts)
|
|
|
|
val dcArb = Module(new HellaCacheArbiter(dcPorts.size)(dcacheParams))
|
|
|
|
dcArb.io.requestor <> dcPorts
|
|
|
|
dcache.cpu <> dcArb.io.mem
|
2015-12-02 05:41:58 +01:00
|
|
|
|
2016-10-27 04:02:04 +02:00
|
|
|
if (nFPUPorts == 0) {
|
|
|
|
fpuOpt.foreach { fpu =>
|
|
|
|
fpu.io.cp_req.valid := Bool(false)
|
|
|
|
fpu.io.cp_resp.ready := Bool(false)
|
|
|
|
}
|
2015-12-02 05:41:58 +01:00
|
|
|
}
|
|
|
|
}
|
2012-03-25 00:56:59 +01:00
|
|
|
}
|