1
0
Fork 0
rocket-chip/groundtest/src/main/scala/tile.scala

165 lines
4.9 KiB
Scala
Raw Normal View History

2015-10-27 05:37:35 +01:00
package groundtest
import Chisel._
import rocket._
import uncore._
2016-05-03 03:25:02 +02:00
import junctions._
2015-10-27 05:37:35 +01:00
import scala.util.Random
2015-11-19 07:54:05 +01:00
import cde.{Parameters, Field}
case object BuildGroundTest extends Field[(Int, Parameters) => GroundTest]
case object GroundTestMaxXacts extends Field[Int]
case object GroundTestCSRs extends Field[Seq[Int]]
2016-05-04 05:20:52 +02:00
case object TohostAddr extends Field[BigInt]
2015-10-27 05:37:35 +01:00
2015-10-28 00:42:31 +01:00
/** A "cache" that responds to probe requests with a release indicating
* the block is not present */
2015-11-19 05:53:36 +01:00
class DummyCache(implicit val p: Parameters) extends Module {
2015-10-28 00:42:31 +01:00
val io = new ClientTileLinkIO
val req = Reg(new Probe)
val coh = ClientMetadata.onReset
val (s_probe :: s_release :: Nil) = Enum(Bits(), 2)
val state = Reg(init = s_probe)
io.acquire.valid := Bool(false)
io.probe.ready := (state === s_probe)
io.grant.ready := Bool(true)
io.release.valid := (state === s_release)
io.release.bits := coh.makeRelease(req)
when (io.probe.fire()) {
req := io.probe.bits
state := s_release
}
when (io.release.fire()) {
state := s_probe
}
}
2015-11-19 05:53:36 +01:00
class DummyPTW(n: Int)(implicit p: Parameters) extends CoreModule()(p) {
val io = new Bundle {
val requestors = Vec(n, new TLBPTWIO).flip
}
val req_arb = Module(new RRArbiter(new PTWReq, n))
req_arb.io.in <> io.requestors.map(_.req)
req_arb.io.out.ready := Bool(true)
def vpn_to_ppn(vpn: UInt): UInt = vpn(ppnBits - 1, 0)
class QueueChannel extends ParameterizedBundle()(p) {
val ppn = UInt(width = ppnBits)
val chosen = UInt(width = log2Up(n))
}
val s1_ppn = vpn_to_ppn(req_arb.io.out.bits.addr)
val s2_ppn = RegEnable(s1_ppn, req_arb.io.out.valid)
val s2_chosen = RegEnable(req_arb.io.chosen, req_arb.io.out.valid)
val s2_valid = Reg(next = req_arb.io.out.valid)
val s2_resp = Wire(new PTWResp)
s2_resp.pte.ppn := s2_ppn
s2_resp.pte.reserved_for_software := UInt(0)
2016-01-20 20:39:40 +01:00
s2_resp.pte.d := Bool(true)
2015-11-19 05:53:36 +01:00
s2_resp.pte.r := Bool(false)
2016-01-20 20:39:40 +01:00
s2_resp.pte.typ := UInt("b0101")
2015-11-19 05:53:36 +01:00
s2_resp.pte.v := Bool(true)
io.requestors.zipWithIndex.foreach { case (requestor, i) =>
requestor.resp.valid := s2_valid && s2_chosen === UInt(i)
requestor.resp.bits := s2_resp
requestor.status.vm := UInt("b01000")
requestor.status.prv := UInt(PRV.S)
requestor.invalidate := Bool(false)
2015-11-19 05:53:36 +01:00
}
}
2015-11-19 07:54:05 +01:00
class GroundTestIO(implicit p: Parameters) extends ParameterizedBundle()(p) {
val cache = new HellaCacheIO
val mem = new ClientUncachedTileLinkIO
2015-11-19 05:53:36 +01:00
val dma = new DmaIO
val ptw = new TLBPTWIO
2015-11-19 07:54:05 +01:00
val finished = Bool(OUTPUT)
}
2016-05-03 03:25:02 +02:00
abstract class GroundTest(implicit val p: Parameters) extends Module
with HasAddrMapParameters {
2015-11-19 07:54:05 +01:00
val io = new GroundTestIO
2016-05-03 03:25:02 +02:00
val memStart = addrMap("mem").start
val memStartBlock = memStart >> p(CacheBlockOffsetBits)
2015-11-19 05:53:36 +01:00
def disablePorts(mem: Boolean = true,
cache: Boolean = true,
ptw: Boolean = true) {
if (mem) {
io.mem.acquire.valid := Bool(false)
io.mem.grant.ready := Bool(false)
}
if (cache) {
io.cache.req.valid := Bool(false)
}
if (ptw) {
io.ptw.req.valid := Bool(false)
}
}
2015-11-19 07:54:05 +01:00
}
2016-05-03 03:25:02 +02:00
class GroundTestFinisher(implicit p: Parameters) extends TLModule()(p) {
val io = new Bundle {
val finished = Bool(INPUT)
val mem = new ClientUncachedTileLinkIO
}
val addrBits = p(PAddrBits)
val offsetBits = tlBeatAddrBits + tlByteAddrBits
2016-05-04 05:20:52 +02:00
val tohostAddr = UInt(p(TohostAddr), addrBits)
val s_idle :: s_write :: s_wait :: s_done :: Nil = Enum(Bits(), 4)
2016-05-03 03:25:02 +02:00
val state = Reg(init = s_idle)
when (state === s_idle && io.finished) { state := s_write }
2016-05-03 03:25:02 +02:00
when (io.mem.acquire.fire()) { state := s_wait }
2016-05-04 05:20:52 +02:00
when (io.mem.grant.fire()) { state := s_done }
2016-05-03 03:25:02 +02:00
io.mem.acquire.valid := (state === s_write)
2016-05-03 03:25:02 +02:00
io.mem.acquire.bits := Put(
client_xact_id = UInt(0),
addr_block = tohostAddr(addrBits - 1, offsetBits),
addr_beat = tohostAddr(offsetBits - 1, tlByteAddrBits),
data = UInt(1),
wmask = SInt(-1, 8).asUInt)
io.mem.grant.ready := (state === s_wait)
}
2015-11-19 07:54:05 +01:00
class GroundTestTile(id: Int, resetSignal: Bool)
(implicit val p: Parameters) extends Tile(resetSignal = resetSignal)(p) {
2015-10-27 05:37:35 +01:00
2015-11-19 07:54:05 +01:00
val test = p(BuildGroundTest)(id, dcacheParams)
2015-11-19 05:53:36 +01:00
val dcache = Module(new HellaCache()(dcacheParams))
val dcacheIF = Module(new SimpleHellaCacheIF()(dcacheParams))
2015-11-19 07:54:05 +01:00
dcacheIF.io.requestor <> test.io.cache
dcache.io.cpu <> dcacheIF.io.cache
io.cached.head <> dcache.io.mem
2015-10-27 05:37:35 +01:00
// SimpleHellaCacheIF leaves invalidate_lr dangling, so we wire it to false
dcache.io.cpu.invalidate_lr := Bool(false)
2015-11-19 05:53:36 +01:00
val ptw = Module(new DummyPTW(2))
ptw.io.requestors(0) <> test.io.ptw
ptw.io.requestors(1) <> dcache.io.ptw
2016-05-03 03:25:02 +02:00
// Only Tile 0 needs to write tohost
if (id == 0) {
val finisher = Module(new GroundTestFinisher)
finisher.io.finished := test.io.finished
2016-05-03 03:25:02 +02:00
val memArb = Module(new ClientUncachedTileLinkIOArbiter(2))
memArb.io.in(0) <> test.io.mem
memArb.io.in(1) <> finisher.io.mem
io.uncached.head <> memArb.io.out
} else { io.uncached.head <> test.io.mem }
2015-10-27 05:37:35 +01:00
}