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._
|
2012-03-25 00:56:59 +01:00
|
|
|
|
2014-09-08 02:54:41 +02:00
|
|
|
case object CoreName extends Field[String]
|
2014-08-08 21:23:02 +02:00
|
|
|
case object NDCachePorts extends Field[Int]
|
2014-09-01 22:28:58 +02:00
|
|
|
case object NPTWPorts extends Field[Int]
|
2014-08-08 21:23:02 +02:00
|
|
|
case object BuildRoCC extends Field[Option[() => RoCC]]
|
|
|
|
|
2014-09-24 22:04:20 +02:00
|
|
|
abstract class Tile(resetSignal: Bool = null) extends Module(_reset = resetSignal) {
|
2012-03-25 00:56:59 +01:00
|
|
|
val io = new Bundle {
|
2015-04-18 01:56:53 +02:00
|
|
|
val cached = new ClientTileLinkIO
|
|
|
|
val uncached = new ClientUncachedTileLinkIO
|
2014-08-08 21:23:02 +02:00
|
|
|
val host = new HTIFIO
|
2012-03-25 00:56:59 +01:00
|
|
|
}
|
2014-09-24 22:04:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
class RocketTile(resetSignal: Bool = null) extends Tile(resetSignal) {
|
2014-09-08 02:54:41 +02:00
|
|
|
val icache = Module(new Frontend, { case CacheName => "L1I"; case CoreName => "Rocket" })
|
2014-09-01 22:28:58 +02:00
|
|
|
val dcache = Module(new HellaCache, { case CacheName => "L1D" })
|
|
|
|
val ptw = Module(new PTW(params(NPTWPorts)))
|
2014-09-08 02:54:41 +02:00
|
|
|
val core = Module(new Core, { case CoreName => "Rocket" })
|
2014-08-08 21:23:02 +02:00
|
|
|
|
2015-04-11 11:26:33 +02:00
|
|
|
dcache.io.cpu.invalidate_lr := core.io.dmem.invalidate_lr // Bypass signal to dcache
|
2014-09-01 22:28:58 +02:00
|
|
|
val dcArb = Module(new HellaCacheArbiter(params(NDCachePorts)))
|
2014-08-08 21:23:02 +02:00
|
|
|
dcArb.io.requestor(0) <> ptw.io.mem
|
|
|
|
dcArb.io.requestor(1) <> core.io.dmem
|
|
|
|
dcArb.io.mem <> dcache.io.cpu
|
2012-03-25 00:56:59 +01:00
|
|
|
|
2015-03-04 01:40:39 +01:00
|
|
|
ptw.io.requestor(0) <> icache.io.ptw
|
|
|
|
ptw.io.requestor(1) <> dcache.io.ptw
|
2013-09-13 07:34:38 +02:00
|
|
|
|
2013-09-15 07:34:53 +02:00
|
|
|
core.io.host <> io.host
|
|
|
|
core.io.imem <> icache.io.cpu
|
|
|
|
core.io.ptw <> ptw.io.dpath
|
|
|
|
|
2015-03-13 00:27:40 +01:00
|
|
|
// Connect the caches and ROCC to the outer memory system
|
|
|
|
io.cached <> dcache.io.mem
|
|
|
|
// If so specified, build an RoCC module and wire it in
|
|
|
|
// otherwise, just hookup the icache
|
|
|
|
io.uncached <> params(BuildRoCC).map { buildItHere =>
|
|
|
|
val rocc = buildItHere()
|
2015-04-18 01:56:53 +02:00
|
|
|
val memArb = Module(new ClientTileLinkIOArbiter(3))
|
2015-03-13 00:27:40 +01:00
|
|
|
val dcIF = Module(new SimpleHellaCacheIF)
|
|
|
|
core.io.rocc <> rocc.io
|
|
|
|
dcIF.io.requestor <> rocc.io.mem
|
|
|
|
dcArb.io.requestor(2) <> dcIF.io.cache
|
|
|
|
memArb.io.in(0) <> icache.io.mem
|
|
|
|
memArb.io.in(1) <> rocc.io.imem
|
|
|
|
memArb.io.in(2) <> rocc.io.dmem
|
|
|
|
ptw.io.requestor(2) <> rocc.io.iptw
|
|
|
|
ptw.io.requestor(3) <> rocc.io.dptw
|
|
|
|
ptw.io.requestor(4) <> rocc.io.pptw
|
|
|
|
memArb.io.out
|
|
|
|
}.getOrElse(icache.io.mem)
|
2012-03-25 00:56:59 +01:00
|
|
|
}
|