2012-10-23 21:51:37 +02:00
|
|
|
package referencechip
|
2012-10-09 22:05:56 +02:00
|
|
|
|
|
|
|
import Chisel._
|
|
|
|
import uncore._
|
|
|
|
import rocket._
|
2013-01-25 08:56:45 +01:00
|
|
|
import rocket.Util._
|
2012-10-09 22:05:56 +02:00
|
|
|
|
2014-08-02 03:09:37 +02:00
|
|
|
class DefaultVLSIConfig extends DefaultConfig
|
|
|
|
class DefaultFPGAConfig extends DefaultConfig
|
|
|
|
class DefaultCPPConfig extends DefaultConfig
|
|
|
|
class DefaultConfig extends ChiselConfig {
|
|
|
|
val top:World.TopDefs = {
|
|
|
|
(pname,site,here) => pname match {
|
|
|
|
//DesignSpaceConstants
|
|
|
|
case "NTILES" => 1
|
|
|
|
case "NBANKS" => 1
|
|
|
|
case "HTIF_WIDTH" => 16
|
|
|
|
case "ENABLE_SHARING" => true
|
|
|
|
case "ENABLE_CLEAN_EXCLUSIVE" => true
|
|
|
|
case "USE_DRAMSIDE_LLC" => true
|
|
|
|
case "NL2_REL_XACTS" => 1
|
|
|
|
case "NL2_ACQ_XACTS" => 7
|
|
|
|
case "NMSHRS" => 2
|
|
|
|
//FPUConstants
|
|
|
|
case HasFPU => true
|
|
|
|
case FPUParams => Alter({
|
|
|
|
case SFMALatency => 2
|
|
|
|
case DFMALatency => 3
|
|
|
|
})
|
|
|
|
//MemoryConstants
|
|
|
|
case "CACHE_DATA_SIZE_IN_BYTES" => 1 << 6 //TODO: How configurable is this really?
|
|
|
|
case "OFFSET_BITS" => log2Up(here[Int]("CACHE_DATA_SIZE_IN_BYTES"))
|
|
|
|
case "PADDR_BITS" => 32
|
|
|
|
case "VADDR_BITS" => 43
|
|
|
|
case "PGIDX_BITS" => 13
|
|
|
|
case "ASID_BITS" => 7
|
|
|
|
case "PERM_BITS" => 6
|
|
|
|
case "MEM_TAG_BITS" => 5
|
|
|
|
case "MEM_DATA_BITS" => 128
|
|
|
|
case "MEM_ADDR_BITS" => here[Int]("PADDR_BITS") - here[Int]("OFFSET_BITS")
|
|
|
|
case "MEM_DATA_BEATS" => 4
|
|
|
|
//TileLinkSizeConstants
|
|
|
|
case "WRITE_MASK_BITS" => 6
|
|
|
|
case "SUBWORD_ADDR_BITS" => 3
|
|
|
|
case "ATOMIC_OP_BITS" => 4
|
|
|
|
}
|
|
|
|
}
|
2014-04-10 22:13:46 +02:00
|
|
|
}
|
|
|
|
|
2013-08-24 22:20:38 +02:00
|
|
|
|
2014-01-21 21:37:47 +01:00
|
|
|
class OuterMemorySystem(htif_width: Int)(implicit conf: UncoreConfiguration) extends Module
|
2012-10-09 22:05:56 +02:00
|
|
|
{
|
2014-03-30 17:13:05 +02:00
|
|
|
implicit val (tl, ln, l2, mif) = (conf.tl, conf.tl.ln, conf.l2, conf.mif)
|
2012-10-09 22:05:56 +02:00
|
|
|
val io = new Bundle {
|
2013-08-12 19:46:22 +02:00
|
|
|
val tiles = Vec.fill(conf.nTiles){new TileLinkIO}.flip
|
2013-01-07 23:19:55 +01:00
|
|
|
val htif = (new TileLinkIO).flip
|
2013-08-12 19:46:22 +02:00
|
|
|
val incoherent = Vec.fill(ln.nClients){Bool()}.asInput
|
2014-03-30 17:13:05 +02:00
|
|
|
val mem = new MemIO
|
|
|
|
val mem_backup = new MemSerializedIO(htif_width)
|
2012-10-09 22:05:56 +02:00
|
|
|
val mem_backup_en = Bool(INPUT)
|
|
|
|
}
|
|
|
|
|
2014-03-30 17:13:05 +02:00
|
|
|
val refill_cycles = tl.dataBits/mif.dataBits
|
2014-04-27 04:16:37 +02:00
|
|
|
val (llc, masterEndpoints) = if(conf.useDRAMSideLLC) {
|
|
|
|
val llc_tag_leaf = Mem(Bits(width = 152), 512, seqRead = true)
|
|
|
|
val llc_data_leaf = Mem(Bits(width = 64), 4096, seqRead = true)
|
|
|
|
val llc = Module(new DRAMSideLLC(sets=512, ways=8, outstanding=16,
|
|
|
|
refill_cycles=refill_cycles, tagLeaf=llc_tag_leaf, dataLeaf=llc_data_leaf))
|
|
|
|
val mes = (0 until ln.nMasters).map(i => Module(new L2CoherenceAgent(i)))
|
|
|
|
(llc, mes)
|
|
|
|
} else {
|
|
|
|
val llc = Module(new DRAMSideLLCNull(16, refill_cycles))
|
|
|
|
val mes = (0 until ln.nMasters).map(i => Module(new L2HellaCache(i)))
|
|
|
|
(llc, mes)
|
|
|
|
}
|
2012-10-09 22:05:56 +02:00
|
|
|
|
2014-01-21 21:37:47 +01:00
|
|
|
val net = Module(new ReferenceChipCrossbarNetwork)
|
|
|
|
net.io.clients zip (io.tiles :+ io.htif) map { case (net, end) => net <> end }
|
2014-04-30 01:50:07 +02:00
|
|
|
net.io.masters zip (masterEndpoints.map(_.io.inner)) map { case (net, end) => net <> end }
|
2013-08-03 00:02:09 +02:00
|
|
|
masterEndpoints.map{ _.io.incoherent zip io.incoherent map { case (m, c) => m := c } }
|
2013-03-20 22:11:54 +01:00
|
|
|
|
2013-08-12 19:46:22 +02:00
|
|
|
val conv = Module(new MemIOUncachedTileLinkIOConverter(2))
|
2013-08-03 00:02:09 +02:00
|
|
|
if(ln.nMasters > 1) {
|
2013-08-12 19:46:22 +02:00
|
|
|
val arb = Module(new UncachedTileLinkIOArbiterThatAppendsArbiterId(ln.nMasters))
|
2014-04-30 01:50:07 +02:00
|
|
|
arb.io.in zip masterEndpoints.map(_.io.outer) map { case (arb, cache) => arb <> cache }
|
2013-03-20 22:11:54 +01:00
|
|
|
conv.io.uncached <> arb.io.out
|
|
|
|
} else {
|
2014-04-30 01:50:07 +02:00
|
|
|
conv.io.uncached <> masterEndpoints.head.io.outer
|
2012-10-09 22:05:56 +02:00
|
|
|
}
|
2013-03-20 22:11:54 +01:00
|
|
|
llc.io.cpu.req_cmd <> Queue(conv.io.mem.req_cmd)
|
2014-03-30 17:13:05 +02:00
|
|
|
llc.io.cpu.req_data <> Queue(conv.io.mem.req_data, refill_cycles)
|
2013-03-20 22:11:54 +01:00
|
|
|
conv.io.mem.resp <> llc.io.cpu.resp
|
2012-10-09 22:05:56 +02:00
|
|
|
|
|
|
|
// mux between main and backup memory ports
|
2014-04-27 04:16:37 +02:00
|
|
|
val mem_serdes = Module(new MemSerdes(htif_width))
|
2013-08-12 19:46:22 +02:00
|
|
|
val mem_cmdq = Module(new Queue(new MemReqCmd, 2))
|
2012-10-09 22:05:56 +02:00
|
|
|
mem_cmdq.io.enq <> llc.io.mem.req_cmd
|
|
|
|
mem_cmdq.io.deq.ready := Mux(io.mem_backup_en, mem_serdes.io.wide.req_cmd.ready, io.mem.req_cmd.ready)
|
|
|
|
io.mem.req_cmd.valid := mem_cmdq.io.deq.valid && !io.mem_backup_en
|
|
|
|
io.mem.req_cmd.bits := mem_cmdq.io.deq.bits
|
|
|
|
mem_serdes.io.wide.req_cmd.valid := mem_cmdq.io.deq.valid && io.mem_backup_en
|
|
|
|
mem_serdes.io.wide.req_cmd.bits := mem_cmdq.io.deq.bits
|
|
|
|
|
2014-03-30 17:13:05 +02:00
|
|
|
val mem_dataq = Module(new Queue(new MemData, refill_cycles))
|
2012-10-09 22:05:56 +02:00
|
|
|
mem_dataq.io.enq <> llc.io.mem.req_data
|
|
|
|
mem_dataq.io.deq.ready := Mux(io.mem_backup_en, mem_serdes.io.wide.req_data.ready, io.mem.req_data.ready)
|
|
|
|
io.mem.req_data.valid := mem_dataq.io.deq.valid && !io.mem_backup_en
|
|
|
|
io.mem.req_data.bits := mem_dataq.io.deq.bits
|
|
|
|
mem_serdes.io.wide.req_data.valid := mem_dataq.io.deq.valid && io.mem_backup_en
|
|
|
|
mem_serdes.io.wide.req_data.bits := mem_dataq.io.deq.bits
|
|
|
|
|
|
|
|
llc.io.mem.resp.valid := Mux(io.mem_backup_en, mem_serdes.io.wide.resp.valid, io.mem.resp.valid)
|
2013-05-02 13:58:43 +02:00
|
|
|
io.mem.resp.ready := Bool(true)
|
2012-10-09 22:05:56 +02:00
|
|
|
llc.io.mem.resp.bits := Mux(io.mem_backup_en, mem_serdes.io.wide.resp.bits, io.mem.resp.bits)
|
|
|
|
|
|
|
|
io.mem_backup <> mem_serdes.io.narrow
|
|
|
|
}
|
|
|
|
|
2014-04-27 04:16:37 +02:00
|
|
|
case class UncoreConfiguration(l2: L2CacheConfig, tl: TileLinkConfiguration, mif: MemoryIFConfiguration, nTiles: Int, nBanks: Int, bankIdLsb: Int, nSCR: Int, offsetBits: Int, useDRAMSideLLC: Boolean)
|
2013-08-03 00:02:09 +02:00
|
|
|
|
2014-01-21 21:37:47 +01:00
|
|
|
class Uncore(htif_width: Int)(implicit conf: UncoreConfiguration) extends Module
|
2012-10-09 22:05:56 +02:00
|
|
|
{
|
2014-03-30 17:13:05 +02:00
|
|
|
implicit val (tl, mif) = (conf.tl, conf.mif)
|
2012-10-09 22:05:56 +02:00
|
|
|
val io = new Bundle {
|
2013-01-07 23:19:55 +01:00
|
|
|
val host = new HostIO(htif_width)
|
2014-03-30 17:13:05 +02:00
|
|
|
val mem = new MemIO
|
2013-08-12 19:46:22 +02:00
|
|
|
val tiles = Vec.fill(conf.nTiles){new TileLinkIO}.flip
|
|
|
|
val htif = Vec.fill(conf.nTiles){new HTIFIO(conf.nTiles)}.flip
|
|
|
|
val incoherent = Vec.fill(conf.nTiles){Bool()}.asInput
|
2014-03-30 17:13:05 +02:00
|
|
|
val mem_backup = new MemSerializedIO(htif_width)
|
2012-10-09 22:05:56 +02:00
|
|
|
val mem_backup_en = Bool(INPUT)
|
|
|
|
}
|
2014-04-10 22:13:46 +02:00
|
|
|
val htif = Module(new HTIF(htif_width, CSRs.reset, conf.nSCR, conf.offsetBits))
|
2014-01-21 21:37:47 +01:00
|
|
|
val outmemsys = Module(new OuterMemorySystem(htif_width))
|
2013-08-03 00:02:09 +02:00
|
|
|
val incoherentWithHtif = (io.incoherent :+ Bool(true).asInput)
|
|
|
|
outmemsys.io.incoherent := incoherentWithHtif
|
2012-10-19 02:51:41 +02:00
|
|
|
htif.io.cpu <> io.htif
|
2013-08-03 00:02:09 +02:00
|
|
|
outmemsys.io.mem <> io.mem
|
2012-10-09 22:05:56 +02:00
|
|
|
outmemsys.io.mem_backup_en <> io.mem_backup_en
|
|
|
|
|
2013-03-20 22:11:54 +01:00
|
|
|
// Add networking headers and endpoint queues
|
2013-08-12 19:46:22 +02:00
|
|
|
def convertAddrToBank(addr: Bits): UInt = {
|
2014-03-30 17:13:05 +02:00
|
|
|
require(conf.bankIdLsb + log2Up(conf.nBanks) < conf.mif.addrBits, {println("Invalid bits for bank multiplexing.")})
|
2013-08-03 00:02:09 +02:00
|
|
|
addr(conf.bankIdLsb + log2Up(conf.nBanks) - 1, conf.bankIdLsb)
|
2013-04-23 02:38:13 +02:00
|
|
|
}
|
|
|
|
|
2013-03-20 22:11:54 +01:00
|
|
|
(outmemsys.io.tiles :+ outmemsys.io.htif).zip(io.tiles :+ htif.io.mem).zipWithIndex.map {
|
|
|
|
case ((outer, client), i) =>
|
2014-03-30 17:13:05 +02:00
|
|
|
outer.acquire <> Queue(TileLinkHeaderOverwriter(client.acquire, i, conf.nBanks, convertAddrToBank _))
|
|
|
|
outer.release <> Queue(TileLinkHeaderOverwriter(client.release, i, conf.nBanks, convertAddrToBank _))
|
2014-04-27 04:16:37 +02:00
|
|
|
outer.finish <> Queue(TileLinkHeaderOverwriter(client.finish, i, true))
|
2013-03-20 22:11:54 +01:00
|
|
|
client.grant <> Queue(outer.grant, 1, pipe = true)
|
|
|
|
client.probe <> Queue(outer.probe)
|
|
|
|
}
|
|
|
|
|
2012-10-09 22:05:56 +02:00
|
|
|
// pad out the HTIF using a divided clock
|
2013-08-12 19:46:22 +02:00
|
|
|
val hio = Module((new SlowIO(512)) { Bits(width = htif_width+1) })
|
2013-01-25 08:56:45 +01:00
|
|
|
hio.io.set_divisor.valid := htif.io.scr.wen && htif.io.scr.waddr === 63
|
|
|
|
hio.io.set_divisor.bits := htif.io.scr.wdata
|
|
|
|
htif.io.scr.rdata(63) := hio.io.divisor
|
|
|
|
|
2012-10-09 22:05:56 +02:00
|
|
|
hio.io.out_fast.valid := htif.io.host.out.valid || outmemsys.io.mem_backup.req.valid
|
|
|
|
hio.io.out_fast.bits := Cat(htif.io.host.out.valid, Mux(htif.io.host.out.valid, htif.io.host.out.bits, outmemsys.io.mem_backup.req.bits))
|
|
|
|
htif.io.host.out.ready := hio.io.out_fast.ready
|
|
|
|
outmemsys.io.mem_backup.req.ready := hio.io.out_fast.ready && !htif.io.host.out.valid
|
|
|
|
io.host.out.valid := hio.io.out_slow.valid && hio.io.out_slow.bits(htif_width)
|
|
|
|
io.host.out.bits := hio.io.out_slow.bits
|
|
|
|
io.mem_backup.req.valid := hio.io.out_slow.valid && !hio.io.out_slow.bits(htif_width)
|
|
|
|
hio.io.out_slow.ready := Mux(hio.io.out_slow.bits(htif_width), io.host.out.ready, io.mem_backup.req.ready)
|
|
|
|
|
|
|
|
val mem_backup_resp_valid = io.mem_backup_en && io.mem_backup.resp.valid
|
|
|
|
hio.io.in_slow.valid := mem_backup_resp_valid || io.host.in.valid
|
|
|
|
hio.io.in_slow.bits := Cat(mem_backup_resp_valid, io.host.in.bits)
|
|
|
|
io.host.in.ready := hio.io.in_slow.ready
|
|
|
|
outmemsys.io.mem_backup.resp.valid := hio.io.in_fast.valid && hio.io.in_fast.bits(htif_width)
|
|
|
|
outmemsys.io.mem_backup.resp.bits := hio.io.in_fast.bits
|
|
|
|
htif.io.host.in.valid := hio.io.in_fast.valid && !hio.io.in_fast.bits(htif_width)
|
|
|
|
htif.io.host.in.bits := hio.io.in_fast.bits
|
|
|
|
hio.io.in_fast.ready := Mux(hio.io.in_fast.bits(htif_width), Bool(true), htif.io.host.in.ready)
|
2012-10-19 02:51:41 +02:00
|
|
|
io.host.clk := hio.io.clk_slow
|
2013-08-16 01:37:58 +02:00
|
|
|
io.host.clk_edge := Reg(next=io.host.clk && !Reg(next=io.host.clk))
|
2013-09-25 10:21:41 +02:00
|
|
|
|
|
|
|
io.host.debug_stats_pcr := htif.io.host.debug_stats_pcr
|
2012-10-09 22:05:56 +02:00
|
|
|
}
|
|
|
|
|
2014-03-30 17:13:05 +02:00
|
|
|
class TopIO(htifWidth: Int)(implicit conf: MemoryIFConfiguration) extends Bundle {
|
2013-08-03 00:02:09 +02:00
|
|
|
val host = new HostIO(htifWidth)
|
2014-03-30 17:13:05 +02:00
|
|
|
val mem = new MemIO
|
2013-08-03 00:02:09 +02:00
|
|
|
}
|
|
|
|
|
2014-03-30 17:13:05 +02:00
|
|
|
class VLSITopIO(htifWidth: Int)(implicit conf: MemoryIFConfiguration) extends TopIO(htifWidth)(conf) {
|
2012-10-09 22:05:56 +02:00
|
|
|
val mem_backup_en = Bool(INPUT)
|
2012-10-23 12:31:34 +02:00
|
|
|
val in_mem_ready = Bool(OUTPUT)
|
|
|
|
val in_mem_valid = Bool(INPUT)
|
|
|
|
val out_mem_ready = Bool(INPUT)
|
|
|
|
val out_mem_valid = Bool(OUTPUT)
|
2012-10-09 22:05:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-12 19:46:22 +02:00
|
|
|
class MemDessert extends Module {
|
2014-08-02 03:09:37 +02:00
|
|
|
implicit val mif = MemoryIFConfiguration(params[Int]("MEM_ADDR_BITS"), params[Int]("MEM_DATA_BITS"), params[Int]("MEM_TAG_BITS"), params[Int]("MEM_DATA_BEATS"))
|
|
|
|
val io = new MemDesserIO(params[Int]("HTIF_WIDTH"))
|
|
|
|
val x = Module(new MemDesser(params[Int]("HTIF_WIDTH")))
|
2012-10-19 02:51:41 +02:00
|
|
|
io.narrow <> x.io.narrow
|
|
|
|
io.wide <> x.io.wide
|
|
|
|
}
|
|
|
|
|
2014-04-08 01:08:06 +02:00
|
|
|
|
2013-08-12 19:46:22 +02:00
|
|
|
class Top extends Module {
|
2014-08-02 03:09:37 +02:00
|
|
|
val dir = new FullRepresentation(params[Int]("NTILES")+1)
|
|
|
|
val co = if(params[Boolean]("ENABLE_SHARING")) {
|
|
|
|
if(params[Boolean]("ENABLE_CLEAN_EXCLUSIVE")) new MESICoherence(dir)
|
2014-05-28 23:45:41 +02:00
|
|
|
else new MSICoherence(dir)
|
2012-10-09 22:05:56 +02:00
|
|
|
} else {
|
2014-08-02 03:09:37 +02:00
|
|
|
if(params[Boolean]("ENABLE_CLEAN_EXCLUSIVE")) new MEICoherence(dir)
|
2014-05-28 23:45:41 +02:00
|
|
|
else new MICoherence(dir)
|
2012-10-09 22:05:56 +02:00
|
|
|
}
|
|
|
|
|
2014-08-02 03:09:37 +02:00
|
|
|
implicit val ln = LogicalNetworkConfiguration(log2Up(params[Int]("NTILES"))+1, params[Int]("NBANKS"), params[Int]("NTILES")+1)
|
|
|
|
implicit val as = AddressSpaceConfiguration(params[Int]("PADDR_BITS"), params[Int]("VADDR_BITS"), params[Int]("PGIDX_BITS"), params[Int]("ASID_BITS"), params[Int]("PERM_BITS"))
|
2014-04-10 22:13:46 +02:00
|
|
|
implicit val tl = TileLinkConfiguration(co = co, ln = ln,
|
2014-08-02 03:09:37 +02:00
|
|
|
addrBits = as.paddrBits-params[Int]("OFFSET_BITS"),
|
|
|
|
clientXactIdBits = log2Up(params[Int]("NL2_REL_XACTS")+params[Int]("NL2_ACQ_XACTS")),
|
|
|
|
masterXactIdBits = 2*log2Up(params[Int]("NMSHRS")*params[Int]("NTILES")+1),
|
|
|
|
dataBits = params[Int]("CACHE_DATA_SIZE_IN_BYTES")*8,
|
|
|
|
writeMaskBits = params[Int]("WRITE_MASK_BITS"),
|
|
|
|
wordAddrBits = params[Int]("SUBWORD_ADDR_BITS"),
|
|
|
|
atomicOpBits = params[Int]("ATOMIC_OP_BITS"))
|
|
|
|
implicit val l2 = L2CacheConfig(512, 8, 1, 1, params[Int]("NL2_REL_XACTS"), params[Int]("NL2_ACQ_XACTS"), tl, as)
|
|
|
|
implicit val mif = MemoryIFConfiguration(params[Int]("MEM_ADDR_BITS"), params[Int]("MEM_DATA_BITS"), params[Int]("MEM_TAG_BITS"), params[Int]("MEM_DATA_BEATS"))
|
|
|
|
implicit val uc = UncoreConfiguration(l2, tl, mif, params[Int]("NTILES"), params[Int]("NBANKS"), bankIdLsb = 5, nSCR = 64, offsetBits = params[Int]("OFFSET_BITS"), useDRAMSideLLC = params[Boolean]("USE_DRAMSIDE_LLC"))
|
2014-04-10 22:13:46 +02:00
|
|
|
|
2014-04-10 22:19:50 +02:00
|
|
|
val ic = ICacheConfig(sets = 128, assoc = 2, ntlb = 8, tl = tl, as = as, btb = BTBConfig(as, 64, 2))
|
2014-04-10 22:13:46 +02:00
|
|
|
val dc = DCacheConfig(sets = 128, ways = 4,
|
|
|
|
tl = tl, as = as,
|
2014-08-02 03:09:37 +02:00
|
|
|
ntlb = 8, nmshr = params[Int]("NMSHRS"), nrpq = 16, nsdq = 17,
|
2014-04-10 22:13:46 +02:00
|
|
|
reqtagbits = -1, databits = -1)
|
|
|
|
val vic = ICacheConfig(sets = 128, assoc = 1, tl = tl, as = as, btb = BTBConfig(as, 8))
|
|
|
|
val hc = hwacha.HwachaConfiguration(as, vic, dc, 8, 256, ndtlb = 8, nptlb = 2)
|
2014-08-02 03:09:37 +02:00
|
|
|
val rc = RocketConfiguration(tl, as, ic, dc
|
2014-04-10 22:19:50 +02:00
|
|
|
// rocc = (c: RocketConfiguration) => (new hwacha.Hwacha(hc, c))
|
2014-02-14 19:12:09 +01:00
|
|
|
)
|
2013-08-03 00:02:09 +02:00
|
|
|
|
2014-08-02 03:09:37 +02:00
|
|
|
val io = new VLSITopIO(params[Int]("HTIF_WIDTH"))
|
2013-08-03 00:02:09 +02:00
|
|
|
|
2013-08-12 19:46:22 +02:00
|
|
|
val resetSigs = Vec.fill(uc.nTiles){Bool()}
|
2013-08-16 02:07:13 +02:00
|
|
|
val tileList = (0 until uc.nTiles).map(r => Module(new Tile(resetSignal = resetSigs(r))(rc)))
|
2014-08-02 03:09:37 +02:00
|
|
|
val uncore = Module(new Uncore(params[Int]("HTIF_WIDTH")))
|
2012-10-09 22:05:56 +02:00
|
|
|
|
2013-08-03 00:02:09 +02:00
|
|
|
for (i <- 0 until uc.nTiles) {
|
2012-10-09 22:05:56 +02:00
|
|
|
val hl = uncore.io.htif(i)
|
|
|
|
val tl = uncore.io.tiles(i)
|
2013-01-07 23:19:55 +01:00
|
|
|
val il = uncore.io.incoherent(i)
|
2012-10-19 02:51:41 +02:00
|
|
|
|
2012-12-13 01:41:21 +01:00
|
|
|
resetSigs(i) := hl.reset
|
|
|
|
val tile = tileList(i)
|
2014-04-27 04:16:37 +02:00
|
|
|
|
2013-03-20 22:11:54 +01:00
|
|
|
tile.io.tilelink <> tl
|
|
|
|
il := hl.reset
|
2014-04-27 04:16:37 +02:00
|
|
|
tile.io.host.id := UInt(i)
|
2013-08-16 01:37:58 +02:00
|
|
|
tile.io.host.reset := Reg(next=Reg(next=hl.reset))
|
2013-09-13 02:03:38 +02:00
|
|
|
tile.io.host.pcr_req <> Queue(hl.pcr_req, 1)
|
|
|
|
hl.pcr_rep <> Queue(tile.io.host.pcr_rep, 1)
|
|
|
|
hl.ipi_req <> Queue(tile.io.host.ipi_req, 1)
|
|
|
|
tile.io.host.ipi_rep <> Queue(hl.ipi_rep, 1)
|
2013-09-25 10:21:41 +02:00
|
|
|
hl.debug_stats_pcr := tile.io.host.debug_stats_pcr
|
2012-10-09 22:05:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
io.host <> uncore.io.host
|
|
|
|
|
2012-10-23 12:31:34 +02:00
|
|
|
uncore.io.mem_backup.resp.valid := io.in_mem_valid
|
2012-10-09 22:05:56 +02:00
|
|
|
|
2012-10-23 12:31:34 +02:00
|
|
|
io.out_mem_valid := uncore.io.mem_backup.req.valid
|
|
|
|
uncore.io.mem_backup.req.ready := io.out_mem_ready
|
2012-10-09 22:05:56 +02:00
|
|
|
|
|
|
|
io.mem_backup_en <> uncore.io.mem_backup_en
|
|
|
|
io.mem <> uncore.io.mem
|
|
|
|
}
|