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._
|
2012-10-02 01:08:41 +02:00
|
|
|
import uncore._
|
2012-11-18 02:24:08 +01:00
|
|
|
import Util._
|
2015-10-22 03:18:32 +02:00
|
|
|
import cde.{Parameters, Field}
|
2012-03-25 00:56:59 +01:00
|
|
|
|
2014-09-08 02:54:41 +02:00
|
|
|
case object CoreName extends Field[String]
|
2015-12-02 02:54:56 +01:00
|
|
|
case object BuildRoCC extends Field[Seq[RoccParameters]]
|
|
|
|
|
|
|
|
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
|
|
|
csrs: Seq[Int] = Nil,
|
|
|
|
useFPU: Boolean = false)
|
2014-08-08 21:23:02 +02:00
|
|
|
|
2015-10-06 06:48:05 +02:00
|
|
|
abstract class Tile(resetSignal: Bool = null)
|
|
|
|
(implicit p: Parameters) extends Module(_reset = resetSignal) {
|
2015-11-26 01:02:27 +01:00
|
|
|
val buildRocc = p(BuildRoCC)
|
|
|
|
val usingRocc = !buildRocc.isEmpty
|
|
|
|
val nRocc = buildRocc.size
|
2015-12-02 03:14:58 +01:00
|
|
|
val nFPUPorts = buildRocc.filter(_.useFPU).size
|
2015-10-21 00:02:24 +02:00
|
|
|
val nCachedTileLinkPorts = 1
|
2015-11-26 01:02:27 +01:00
|
|
|
val nUncachedTileLinkPorts = 1 + p(RoccNMemChannels)
|
2015-10-21 00:02:24 +02:00
|
|
|
val dcacheParams = p.alterPartial({ case CacheName => "L1D" })
|
2012-03-25 00:56:59 +01:00
|
|
|
val io = new Bundle {
|
2015-10-21 00:02:24 +02:00
|
|
|
val cached = Vec(nCachedTileLinkPorts, new ClientTileLinkIO)
|
|
|
|
val uncached = Vec(nUncachedTileLinkPorts, new ClientUncachedTileLinkIO)
|
2015-10-06 06:48:05 +02:00
|
|
|
val host = new HtifIO
|
2015-11-18 03:14:30 +01:00
|
|
|
val dma = new DmaIO
|
2012-03-25 00:56:59 +01:00
|
|
|
}
|
2014-09-24 22:04:20 +02:00
|
|
|
}
|
|
|
|
|
2015-10-06 06:48:05 +02:00
|
|
|
class RocketTile(resetSignal: Bool = null)(implicit p: Parameters) extends Tile(resetSignal)(p) {
|
2015-10-21 00:02:24 +02:00
|
|
|
val core = Module(new Rocket()(p.alterPartial({ case CoreName => "Rocket" })))
|
2015-10-06 06:48:05 +02:00
|
|
|
val icache = Module(new Frontend()(p.alterPartial({
|
2015-10-21 00:02:24 +02:00
|
|
|
case CacheName => "L1I"
|
|
|
|
case CoreName => "Rocket" })))
|
2015-10-06 06:48:05 +02:00
|
|
|
val dcache = Module(new HellaCache()(dcacheParams))
|
2014-08-08 21:23:02 +02:00
|
|
|
|
2016-03-25 22:16:56 +01:00
|
|
|
val ptwPorts = collection.mutable.ArrayBuffer(icache.io.ptw, dcache.io.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.io.mem)
|
2015-04-11 11:26:33 +02:00
|
|
|
dcache.io.cpu.invalidate_lr := core.io.dmem.invalidate_lr // Bypass signal to dcache
|
2015-08-02 06:11:25 +02:00
|
|
|
io.host <> core.io.host
|
|
|
|
icache.io.cpu <> core.io.imem
|
2013-09-15 07:34:53 +02:00
|
|
|
|
2015-12-01 19:22:31 +01:00
|
|
|
val fpuOpt = if (p(UseFPU)) Some(Module(new FPU)) else None
|
|
|
|
fpuOpt.foreach(fpu => core.io.fpu <> fpu.io)
|
2015-07-22 02:10:56 +02:00
|
|
|
|
2016-03-25 22:16:56 +01:00
|
|
|
if (usingRocc) {
|
2015-11-26 01:02:27 +01:00
|
|
|
val respArb = Module(new RRArbiter(new RoCCResponse, nRocc))
|
|
|
|
core.io.rocc.resp <> respArb.io.out
|
|
|
|
|
2015-12-02 02:54:56 +01:00
|
|
|
val roccOpcodes = buildRocc.map(_.opcodes)
|
2015-11-26 01:02:27 +01:00
|
|
|
val cmdRouter = Module(new RoccCommandRouter(roccOpcodes))
|
|
|
|
cmdRouter.io.in <> core.io.rocc.cmd
|
|
|
|
|
2015-12-02 03:14:58 +01:00
|
|
|
val roccs = buildRocc.zipWithIndex.map { case (accelParams, i) =>
|
2016-01-14 20:37:58 +01:00
|
|
|
val rocc = accelParams.generator(p.alterPartial({
|
|
|
|
case RoccNMemChannels => accelParams.nMemChannels
|
2016-02-25 07:39:00 +01:00
|
|
|
case RoccNPTWPorts => accelParams.nPTWPorts
|
2016-01-14 20:37:58 +01:00
|
|
|
case RoccNCSRs => accelParams.csrs.size
|
|
|
|
}))
|
2015-12-02 03:14:58 +01:00
|
|
|
val dcIF = Module(new SimpleHellaCacheIF()(dcacheParams))
|
|
|
|
rocc.io.cmd <> cmdRouter.io.out(i)
|
2016-03-03 08:29:58 +01:00
|
|
|
rocc.io.status := core.io.rocc.status
|
2015-12-02 03:14:58 +01:00
|
|
|
rocc.io.exception := core.io.rocc.exception
|
2016-01-14 20:37:58 +01:00
|
|
|
rocc.io.host_id := io.host.id
|
2015-12-02 03:14:58 +01:00
|
|
|
dcIF.io.requestor <> rocc.io.mem
|
2016-03-25 22:16:56 +01:00
|
|
|
dcPorts += dcIF.io.cache
|
|
|
|
uncachedArbPorts += rocc.io.autl
|
2015-12-02 03:14:58 +01:00
|
|
|
rocc
|
2015-11-26 01:02:27 +01:00
|
|
|
}
|
|
|
|
|
2015-12-02 01:48:05 +01:00
|
|
|
if (nFPUPorts > 0) {
|
|
|
|
fpuOpt.foreach { fpu =>
|
|
|
|
val fpArb = Module(new InOrderArbiter(new FPInput, new FPResult, nFPUPorts))
|
2015-12-02 03:14:58 +01:00
|
|
|
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)
|
2015-12-02 01:48:05 +01:00
|
|
|
fp_roccs.zip(fpArb.io.in_resp).foreach {
|
2015-12-02 03:14:58 +01:00
|
|
|
case (rocc, fpu_resp) => rocc.fpu_resp <> fpu_resp
|
2015-12-02 01:48:05 +01:00
|
|
|
}
|
|
|
|
fpu.io.cp_req <> fpArb.io.out_req
|
|
|
|
fpArb.io.out_resp <> fpu.io.cp_resp
|
2015-12-01 19:22:31 +01:00
|
|
|
}
|
2015-12-02 01:48:05 +01:00
|
|
|
}
|
2015-12-01 19:22:31 +01:00
|
|
|
|
2015-11-26 01:02:27 +01: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))
|
|
|
|
|
2016-01-14 20:37:58 +01:00
|
|
|
if (p(RoccNCSRs) > 0) {
|
|
|
|
core.io.rocc.csr.rdata <> roccs.map(_.io.csr.rdata).reduce(_ ++ _)
|
|
|
|
for ((rocc, accelParams) <- roccs.zip(buildRocc)) {
|
|
|
|
rocc.io.csr.waddr := core.io.rocc.csr.waddr
|
|
|
|
rocc.io.csr.wdata := core.io.rocc.csr.wdata
|
|
|
|
rocc.io.csr.wen := core.io.rocc.csr.wen &&
|
|
|
|
accelParams.csrs
|
|
|
|
.map(core.io.rocc.csr.waddr === UInt(_))
|
|
|
|
.reduce((a, b) => a || b)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-25 22:16:56 +01:00
|
|
|
ptwPorts ++= roccs.flatMap(_.io.ptw)
|
|
|
|
uncachedPorts ++= roccs.flatMap(_.io.utl)
|
|
|
|
}
|
|
|
|
|
|
|
|
val uncachedArb = Module(new ClientTileLinkIOArbiter(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)
|
|
|
|
|
2016-03-25 22:17:25 +01:00
|
|
|
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
|
|
|
|
|
|
|
val dcArb = Module(new HellaCacheArbiter(dcPorts.size)(dcacheParams))
|
|
|
|
dcArb.io.requestor <> dcPorts
|
|
|
|
dcache.io.cpu <> dcArb.io.mem
|
2015-12-02 05:41:58 +01:00
|
|
|
|
|
|
|
if (!usingRocc || nFPUPorts == 0) {
|
|
|
|
fpuOpt.foreach { fpu =>
|
|
|
|
fpu.io.cp_req.valid := Bool(false)
|
|
|
|
fpu.io.cp_resp.ready := Bool(false)
|
|
|
|
}
|
|
|
|
}
|
2012-03-25 00:56:59 +01:00
|
|
|
}
|