2012-02-26 02:09:26 +01:00
|
|
|
package rocket
|
2011-12-10 04:42:58 +01:00
|
|
|
|
|
|
|
import Chisel._
|
2012-10-02 01:08:41 +02:00
|
|
|
import uncore._
|
2012-11-06 17:13:44 +01:00
|
|
|
import Util._
|
2011-12-10 04:42:58 +01:00
|
|
|
|
2014-04-23 01:53:20 +02:00
|
|
|
case class DCacheConfig(val sets: Int, val ways: Int,
|
2012-11-25 13:24:25 +01:00
|
|
|
nmshr: Int, nrpq: Int, nsdq: Int, ntlb: Int,
|
2014-04-23 01:53:20 +02:00
|
|
|
val tl: TileLinkConfiguration,
|
|
|
|
val as: AddressSpaceConfiguration,
|
2014-04-02 02:15:46 +02:00
|
|
|
reqtagbits: Int, databits: Int,
|
2014-04-08 03:22:46 +02:00
|
|
|
rowwords: Int = 2,
|
2012-12-12 00:58:53 +01:00
|
|
|
code: Code = new IdentityCode,
|
2014-04-23 01:53:20 +02:00
|
|
|
narrowRead: Boolean = true) extends CacheConfig {
|
2014-03-29 18:59:07 +01:00
|
|
|
def states = tl.co.nClientStates
|
2012-11-06 08:52:32 +01:00
|
|
|
def lines = sets*ways
|
|
|
|
def dm = ways == 1
|
2014-04-02 02:15:46 +02:00
|
|
|
def offbits = log2Up(tl.dataBits/8)
|
|
|
|
def ppnbits = as.ppnBits
|
|
|
|
def vpnbits = as.vpnBits
|
|
|
|
def pgidxbits = as.pgIdxBits
|
2013-08-02 19:06:01 +02:00
|
|
|
def maxaddrbits = ppnbits.max(vpnbits+1) + pgidxbits
|
2014-04-02 02:15:46 +02:00
|
|
|
def paddrbits = as.paddrBits
|
2012-11-16 01:45:51 +01:00
|
|
|
def lineaddrbits = paddrbits - offbits
|
2012-11-06 08:52:32 +01:00
|
|
|
def idxbits = log2Up(sets)
|
|
|
|
def waybits = log2Up(ways)
|
2012-11-16 01:45:51 +01:00
|
|
|
def untagbits = offbits + idxbits
|
2012-11-06 08:52:32 +01:00
|
|
|
def tagbits = lineaddrbits - idxbits
|
2012-11-18 02:24:08 +01:00
|
|
|
def databytes = databits/8
|
2012-11-16 01:45:51 +01:00
|
|
|
def wordoffbits = log2Up(databytes)
|
2014-04-02 02:15:46 +02:00
|
|
|
def rowbits = rowwords*databits
|
|
|
|
def rowbytes = rowwords*databytes
|
|
|
|
def rowoffbits = log2Up(rowbytes)
|
2014-04-08 03:22:46 +02:00
|
|
|
def refillcycles = tl.dataBits/(rowbits)
|
2014-04-02 02:15:46 +02:00
|
|
|
def isNarrowRead = narrowRead && databits*ways % rowbits == 0
|
2013-08-02 23:54:16 +02:00
|
|
|
val statebits = log2Up(states)
|
2012-12-12 00:58:53 +01:00
|
|
|
val encdatabits = code.width(databits)
|
2014-04-02 02:15:46 +02:00
|
|
|
val encrowbits = rowwords*encdatabits
|
2013-04-08 04:27:21 +02:00
|
|
|
val lrsc_cycles = 32 // ISA requires 16-insn LRSC sequences to succeed
|
2014-04-08 03:22:46 +02:00
|
|
|
|
|
|
|
require(states > 0)
|
|
|
|
require(isPow2(sets))
|
|
|
|
require(isPow2(ways)) // TODO: relax this
|
|
|
|
require(rowbits <= tl.dataBits)
|
2014-04-23 01:53:20 +02:00
|
|
|
require(lineaddrbits == tl.addrBits)
|
2014-04-24 00:43:31 +02:00
|
|
|
require(untagbits <= pgidxbits)
|
2012-01-18 19:28:48 +01:00
|
|
|
}
|
|
|
|
|
2013-08-14 02:50:02 +02:00
|
|
|
abstract trait DCacheBundle extends Bundle {
|
|
|
|
implicit val conf: DCacheConfig
|
|
|
|
override def clone = this.getClass.getConstructors.head.newInstance(conf).asInstanceOf[this.type]
|
|
|
|
}
|
|
|
|
|
2012-11-20 10:32:33 +01:00
|
|
|
class StoreGen(typ: Bits, addr: Bits, dat: Bits)
|
2012-11-06 08:52:32 +01:00
|
|
|
{
|
|
|
|
val byte = typ === MT_B || typ === MT_BU
|
|
|
|
val half = typ === MT_H || typ === MT_HU
|
|
|
|
val word = typ === MT_W || typ === MT_WU
|
|
|
|
def mask =
|
|
|
|
Mux(byte, Bits( 1) << addr(2,0),
|
|
|
|
Mux(half, Bits( 3) << Cat(addr(2,1), Bits(0,1)),
|
|
|
|
Mux(word, Bits( 15) << Cat(addr(2), Bits(0,2)),
|
|
|
|
Bits(255))))
|
|
|
|
def data =
|
|
|
|
Mux(byte, Fill(8, dat( 7,0)),
|
|
|
|
Mux(half, Fill(4, dat(15,0)),
|
2013-09-15 01:15:07 +02:00
|
|
|
wordData))
|
|
|
|
lazy val wordData =
|
2012-11-06 08:52:32 +01:00
|
|
|
Mux(word, Fill(2, dat(31,0)),
|
2013-09-15 01:15:07 +02:00
|
|
|
dat)
|
2011-12-10 04:42:58 +01:00
|
|
|
}
|
|
|
|
|
2014-01-16 09:15:48 +01:00
|
|
|
class LoadGen(typ: Bits, addr: Bits, dat: Bits, zero: Bool)
|
2012-11-06 08:52:32 +01:00
|
|
|
{
|
2013-09-15 01:15:07 +02:00
|
|
|
val t = new StoreGen(typ, addr, dat)
|
2012-11-06 08:52:32 +01:00
|
|
|
val sign = typ === MT_B || typ === MT_H || typ === MT_W || typ === MT_D
|
|
|
|
|
|
|
|
val wordShift = Mux(addr(2), dat(63,32), dat(31,0))
|
|
|
|
val word = Cat(Mux(t.word, Fill(32, sign && wordShift(31)), dat(63,32)), wordShift)
|
|
|
|
val halfShift = Mux(addr(1), word(31,16), word(15,0))
|
|
|
|
val half = Cat(Mux(t.half, Fill(48, sign && halfShift(15)), word(63,16)), halfShift)
|
2014-01-16 09:15:48 +01:00
|
|
|
val byteShift = Mux(zero, UInt(0), Mux(addr(0), half(15,8), half(7,0)))
|
|
|
|
val byte = Cat(Mux(zero || t.byte, Fill(56, sign && byteShift(7)), half(63,8)), byteShift)
|
2011-12-10 04:42:58 +01:00
|
|
|
}
|
|
|
|
|
2014-05-01 10:45:45 +02:00
|
|
|
class MSHRReq(implicit val cacheconf: DCacheConfig) extends HellaCacheReq {
|
|
|
|
val tag_match = Bool()
|
|
|
|
val old_meta = new L1MetaData
|
|
|
|
val way_en = Bits(width = cacheconf.ways)
|
|
|
|
}
|
2012-03-02 05:20:15 +01:00
|
|
|
|
2012-11-16 11:39:33 +01:00
|
|
|
class Replay(implicit conf: DCacheConfig) extends HellaCacheReq {
|
2013-08-12 19:39:11 +02:00
|
|
|
val sdq_id = UInt(width = log2Up(conf.nsdq))
|
2011-12-10 04:42:58 +01:00
|
|
|
}
|
|
|
|
|
2013-08-14 02:50:02 +02:00
|
|
|
class DataReadReq(implicit val conf: DCacheConfig) extends DCacheBundle {
|
2012-11-16 11:39:33 +01:00
|
|
|
val way_en = Bits(width = conf.ways)
|
|
|
|
val addr = Bits(width = conf.untagbits)
|
2011-12-10 04:42:58 +01:00
|
|
|
}
|
|
|
|
|
2014-05-01 10:45:45 +02:00
|
|
|
class DataWriteReq(implicit conf: DCacheConfig) extends DataReadReq {
|
2014-04-02 02:15:46 +02:00
|
|
|
val wmask = Bits(width = conf.rowwords)
|
|
|
|
val data = Bits(width = conf.encrowbits)
|
2011-12-10 04:42:58 +01:00
|
|
|
}
|
|
|
|
|
2014-05-01 10:45:45 +02:00
|
|
|
object L1MetaData {
|
|
|
|
def apply(tag: Bits, state: UInt)(implicit conf: DCacheConfig) = {
|
|
|
|
val meta = new L1MetaData
|
|
|
|
meta.state := state
|
|
|
|
meta.tag := tag
|
|
|
|
meta
|
|
|
|
}
|
|
|
|
}
|
|
|
|
class L1MetaData(implicit val conf: DCacheConfig) extends MetaData {
|
|
|
|
val state = UInt(width = conf.statebits)
|
|
|
|
}
|
|
|
|
|
|
|
|
class L1MetaReadReq(implicit conf: DCacheConfig) extends MetaReadReq {
|
2014-04-24 01:23:51 +02:00
|
|
|
val tag = Bits(width = conf.tagbits)
|
2013-03-01 03:11:40 +01:00
|
|
|
}
|
|
|
|
|
2014-04-24 01:23:51 +02:00
|
|
|
class InternalProbe(implicit conf: TileLinkConfiguration) extends Probe()(conf)
|
|
|
|
with HasClientTransactionId
|
|
|
|
|
2014-05-01 10:45:45 +02:00
|
|
|
class WritebackReq(implicit val conf: DCacheConfig) extends DCacheBundle {
|
2012-11-06 08:52:32 +01:00
|
|
|
val tag = Bits(width = conf.tagbits)
|
|
|
|
val idx = Bits(width = conf.idxbits)
|
2012-11-16 11:39:33 +01:00
|
|
|
val way_en = Bits(width = conf.ways)
|
2014-03-29 18:59:07 +01:00
|
|
|
val client_xact_id = Bits(width = conf.tl.clientXactIdBits)
|
|
|
|
val master_xact_id = Bits(width = conf.tl.masterXactIdBits)
|
|
|
|
val r_type = UInt(width = conf.tl.co.releaseTypeWidth)
|
2011-12-10 04:42:58 +01:00
|
|
|
}
|
|
|
|
|
2014-03-29 18:59:07 +01:00
|
|
|
class MSHR(id: Int)(implicit conf: DCacheConfig) extends Module {
|
|
|
|
implicit val (tl, ln) = (conf.tl, conf.tl.ln)
|
2011-12-10 04:42:58 +01:00
|
|
|
val io = new Bundle {
|
2012-01-18 19:28:48 +01:00
|
|
|
val req_pri_val = Bool(INPUT)
|
|
|
|
val req_pri_rdy = Bool(OUTPUT)
|
|
|
|
val req_sec_val = Bool(INPUT)
|
|
|
|
val req_sec_rdy = Bool(OUTPUT)
|
2012-03-02 05:20:15 +01:00
|
|
|
val req_bits = new MSHRReq().asInput
|
2013-08-12 19:39:11 +02:00
|
|
|
val req_sdq_id = UInt(INPUT, log2Up(conf.nsdq))
|
2012-01-18 19:28:48 +01:00
|
|
|
|
2013-03-01 03:11:40 +01:00
|
|
|
val idx_match = Bool(OUTPUT)
|
|
|
|
val tag = Bits(OUTPUT, conf.tagbits)
|
2012-01-18 19:28:48 +01:00
|
|
|
|
2013-08-12 19:39:11 +02:00
|
|
|
val mem_req = Decoupled(new Acquire)
|
2012-11-16 11:39:33 +01:00
|
|
|
val mem_resp = new DataWriteReq().asOutput
|
2014-04-24 00:43:31 +02:00
|
|
|
val meta_read = Decoupled(new L1MetaReadReq)
|
2014-05-01 10:45:45 +02:00
|
|
|
val meta_write = Decoupled(new MetaWriteReq(new L1MetaData))
|
2013-09-11 01:15:19 +02:00
|
|
|
val replay = Decoupled(new Replay)
|
|
|
|
val mem_grant = Valid(new LogicalNetworkIO(new Grant)).flip
|
2014-04-27 00:18:21 +02:00
|
|
|
val mem_finish = Decoupled(new LogicalNetworkIO(new Finish))
|
2013-08-12 19:39:11 +02:00
|
|
|
val wb_req = Decoupled(new WritebackReq)
|
2013-04-08 04:27:21 +02:00
|
|
|
val probe_rdy = Bool(OUTPUT)
|
2011-12-10 04:42:58 +01:00
|
|
|
}
|
|
|
|
|
2013-09-10 19:51:35 +02:00
|
|
|
val s_invalid :: s_wb_req :: s_wb_resp :: s_meta_clear :: s_refill_req :: s_refill_resp :: s_meta_write_req :: s_meta_write_resp :: s_drain_rpq :: Nil = Enum(UInt(), 9)
|
2013-08-16 00:28:15 +02:00
|
|
|
val state = Reg(init=s_invalid)
|
2012-03-09 11:55:46 +01:00
|
|
|
|
2013-08-12 19:39:11 +02:00
|
|
|
val acquire_type = Reg(UInt())
|
|
|
|
val release_type = Reg(UInt())
|
|
|
|
val line_state = Reg(UInt())
|
2014-03-29 18:59:07 +01:00
|
|
|
val refill_count = Reg(UInt(width = log2Up(conf.refillcycles))) // TODO: zero-width wire
|
2013-08-12 19:39:11 +02:00
|
|
|
val req = Reg(new MSHRReq())
|
2011-12-10 04:42:58 +01:00
|
|
|
|
2012-03-02 05:20:15 +01:00
|
|
|
val req_cmd = io.req_bits.cmd
|
2012-11-16 11:39:33 +01:00
|
|
|
val req_idx = req.addr(conf.untagbits-1,conf.offbits)
|
|
|
|
val idx_match = req_idx === io.req_bits.addr(conf.untagbits-1,conf.offbits)
|
2013-08-02 23:54:16 +02:00
|
|
|
val sec_rdy = idx_match && (state === s_wb_req || state === s_wb_resp || state === s_meta_clear || (state === s_refill_req || state === s_refill_resp) && !tl.co.needsTransactionOnSecondaryMiss(req_cmd, io.mem_req.bits))
|
2011-12-10 04:42:58 +01:00
|
|
|
|
2014-04-08 03:22:46 +02:00
|
|
|
require(isPow2(conf.refillcycles))
|
2013-08-12 19:39:11 +02:00
|
|
|
val reply = io.mem_grant.valid && io.mem_grant.bits.payload.client_xact_id === UInt(id)
|
2014-03-29 18:59:07 +01:00
|
|
|
val refill_done = reply && (if(conf.refillcycles > 1) refill_count.andR else Bool(true))
|
2013-03-01 03:11:40 +01:00
|
|
|
val wb_done = reply && (state === s_wb_resp)
|
|
|
|
|
2013-08-12 19:39:11 +02:00
|
|
|
val rpq = Module(new Queue(new Replay, conf.nrpq))
|
2012-11-17 19:47:55 +01:00
|
|
|
rpq.io.enq.valid := (io.req_pri_val && io.req_pri_rdy || io.req_sec_val && sec_rdy) && !isPrefetch(req_cmd)
|
2012-03-02 05:20:15 +01:00
|
|
|
rpq.io.enq.bits := io.req_bits
|
|
|
|
rpq.io.enq.bits.sdq_id := io.req_sdq_id
|
2012-11-16 11:39:33 +01:00
|
|
|
rpq.io.deq.ready := io.replay.ready && state === s_drain_rpq || state === s_invalid
|
2011-12-10 04:42:58 +01:00
|
|
|
|
2013-01-25 02:17:12 +01:00
|
|
|
when (state === s_drain_rpq && !rpq.io.deq.valid) {
|
2012-03-09 11:55:46 +01:00
|
|
|
state := s_invalid
|
2012-03-07 10:26:35 +01:00
|
|
|
}
|
2012-12-08 00:14:20 +01:00
|
|
|
when (state === s_meta_write_resp) {
|
|
|
|
// this wait state allows us to catch RAW hazards on the tags via nack_victim
|
2012-11-16 11:39:33 +01:00
|
|
|
state := s_drain_rpq
|
|
|
|
}
|
2012-12-08 00:14:20 +01:00
|
|
|
when (state === s_meta_write_req && io.meta_write.ready) {
|
|
|
|
state := s_meta_write_resp
|
|
|
|
}
|
2012-03-09 11:55:46 +01:00
|
|
|
when (state === s_refill_resp) {
|
2012-12-08 00:14:20 +01:00
|
|
|
when (refill_done) { state := s_meta_write_req }
|
2012-03-09 11:55:46 +01:00
|
|
|
when (reply) {
|
2014-03-29 18:59:07 +01:00
|
|
|
if(conf.refillcycles > 1) refill_count := refill_count + UInt(1)
|
2013-08-02 23:54:16 +02:00
|
|
|
line_state := tl.co.newStateOnGrant(io.mem_grant.bits.payload, io.mem_req.bits)
|
2012-03-09 11:55:46 +01:00
|
|
|
}
|
2012-03-07 10:26:35 +01:00
|
|
|
}
|
2013-04-06 10:03:37 +02:00
|
|
|
when (io.mem_req.fire()) { // s_refill_req
|
|
|
|
state := s_refill_resp
|
2012-03-07 10:26:35 +01:00
|
|
|
}
|
2012-11-20 13:09:26 +01:00
|
|
|
when (state === s_meta_clear && io.meta_write.ready) {
|
2012-04-13 06:57:37 +02:00
|
|
|
state := s_refill_req
|
|
|
|
}
|
2013-04-06 10:03:37 +02:00
|
|
|
when (state === s_wb_resp && reply) {
|
|
|
|
state := s_meta_clear
|
2012-03-07 10:26:35 +01:00
|
|
|
}
|
2013-04-06 10:03:37 +02:00
|
|
|
when (io.wb_req.fire()) { // s_wb_req
|
2013-03-19 23:29:40 +01:00
|
|
|
state := s_wb_resp
|
2012-03-09 11:55:46 +01:00
|
|
|
}
|
|
|
|
|
2012-03-10 05:01:47 +01:00
|
|
|
when (io.req_sec_val && io.req_sec_rdy) { // s_wb_req, s_wb_resp, s_refill_req
|
2013-08-02 23:54:16 +02:00
|
|
|
acquire_type := tl.co.getAcquireTypeOnSecondaryMiss(req_cmd, tl.co.newStateOnFlush(), io.mem_req.bits)
|
2012-03-07 10:26:35 +01:00
|
|
|
}
|
2013-01-25 02:17:12 +01:00
|
|
|
when (io.req_pri_val && io.req_pri_rdy) {
|
2013-08-02 23:54:16 +02:00
|
|
|
line_state := tl.co.newStateOnFlush()
|
2013-08-12 19:39:11 +02:00
|
|
|
refill_count := UInt(0)
|
2013-08-02 23:54:16 +02:00
|
|
|
acquire_type := tl.co.getAcquireTypeOnPrimaryMiss(req_cmd, tl.co.newStateOnFlush())
|
|
|
|
release_type := tl.co.getReleaseTypeOnVoluntaryWriteback() //TODO downgrades etc
|
2012-03-09 11:55:46 +01:00
|
|
|
req := io.req_bits
|
2012-11-20 13:09:26 +01:00
|
|
|
|
|
|
|
when (io.req_bits.tag_match) {
|
2013-08-02 23:54:16 +02:00
|
|
|
when (tl.co.isHit(req_cmd, io.req_bits.old_meta.state)) { // set dirty bit
|
2012-12-08 00:14:20 +01:00
|
|
|
state := s_meta_write_req
|
2013-08-02 23:54:16 +02:00
|
|
|
line_state := tl.co.newStateOnHit(req_cmd, io.req_bits.old_meta.state)
|
2012-11-20 13:09:26 +01:00
|
|
|
}.otherwise { // upgrade permissions
|
|
|
|
state := s_refill_req
|
|
|
|
}
|
2013-04-05 00:50:29 +02:00
|
|
|
}.otherwise { // writback if necessary and refill
|
2013-08-02 23:54:16 +02:00
|
|
|
state := Mux(tl.co.needsWriteback(io.req_bits.old_meta.state), s_wb_req, s_meta_clear)
|
2012-11-20 13:09:26 +01:00
|
|
|
}
|
2011-12-10 04:42:58 +01:00
|
|
|
}
|
|
|
|
|
2014-04-27 00:18:21 +02:00
|
|
|
val ackq = Module(new Queue(new LogicalNetworkIO(new Finish), 1))
|
2014-01-21 21:08:42 +01:00
|
|
|
ackq.io.enq.valid := (wb_done || refill_done) && tl.co.requiresAckForGrant(io.mem_grant.bits.payload.g_type)
|
2013-04-06 10:03:37 +02:00
|
|
|
ackq.io.enq.bits.payload.master_xact_id := io.mem_grant.bits.payload.master_xact_id
|
|
|
|
ackq.io.enq.bits.header.dst := io.mem_grant.bits.header.src
|
2013-01-25 02:17:12 +01:00
|
|
|
val can_finish = state === s_invalid || state === s_refill_req || state === s_refill_resp
|
2013-04-06 10:03:37 +02:00
|
|
|
io.mem_finish.valid := ackq.io.deq.valid && can_finish
|
|
|
|
ackq.io.deq.ready := io.mem_finish.ready && can_finish
|
|
|
|
io.mem_finish.bits := ackq.io.deq.bits
|
2013-01-25 02:17:12 +01:00
|
|
|
|
2012-03-09 11:55:46 +01:00
|
|
|
io.idx_match := (state != s_invalid) && idx_match
|
2012-11-16 11:39:33 +01:00
|
|
|
io.mem_resp := req
|
2014-04-02 02:15:46 +02:00
|
|
|
io.mem_resp.addr := (if(conf.refillcycles > 1) Cat(req_idx, refill_count) else req_idx) << conf.rowoffbits
|
2012-11-16 11:39:33 +01:00
|
|
|
io.tag := req.addr >> conf.untagbits
|
2013-04-06 10:03:37 +02:00
|
|
|
io.req_pri_rdy := state === s_invalid
|
2011-12-10 04:42:58 +01:00
|
|
|
io.req_sec_rdy := sec_rdy && rpq.io.enq.ready
|
2013-04-30 09:37:51 +02:00
|
|
|
|
2013-08-16 00:28:15 +02:00
|
|
|
val meta_hazard = Reg(init=UInt(0,2))
|
2013-12-10 04:52:47 +01:00
|
|
|
when (meta_hazard != UInt(0)) { meta_hazard := meta_hazard + 1 }
|
2013-05-02 01:35:24 +02:00
|
|
|
when (io.meta_write.fire()) { meta_hazard := 1 }
|
2013-04-30 09:37:51 +02:00
|
|
|
io.probe_rdy := !idx_match || (state != s_wb_req && state != s_wb_resp && state != s_meta_clear && meta_hazard === 0)
|
2011-12-10 04:42:58 +01:00
|
|
|
|
2012-12-08 00:14:20 +01:00
|
|
|
io.meta_write.valid := state === s_meta_write_req || state === s_meta_clear
|
2012-11-20 13:09:26 +01:00
|
|
|
io.meta_write.bits.idx := req_idx
|
2013-08-02 23:54:16 +02:00
|
|
|
io.meta_write.bits.data.state := Mux(state === s_meta_clear, tl.co.newStateOnFlush(), line_state)
|
2012-11-20 13:09:26 +01:00
|
|
|
io.meta_write.bits.data.tag := io.tag
|
|
|
|
io.meta_write.bits.way_en := req.way_en
|
2012-03-09 11:55:46 +01:00
|
|
|
|
2013-04-06 10:03:37 +02:00
|
|
|
io.wb_req.valid := state === s_wb_req && ackq.io.enq.ready
|
2012-11-20 13:09:26 +01:00
|
|
|
io.wb_req.bits.tag := req.old_meta.tag
|
2012-11-16 11:39:33 +01:00
|
|
|
io.wb_req.bits.idx := req_idx
|
|
|
|
io.wb_req.bits.way_en := req.way_en
|
2013-01-22 02:18:23 +01:00
|
|
|
io.wb_req.bits.client_xact_id := Bits(id)
|
2014-03-29 18:59:07 +01:00
|
|
|
io.wb_req.bits.master_xact_id := Bits(0) // DNC
|
2013-08-02 23:54:16 +02:00
|
|
|
io.wb_req.bits.r_type := tl.co.getReleaseTypeOnVoluntaryWriteback()
|
2012-03-09 11:55:46 +01:00
|
|
|
|
2013-04-06 10:03:37 +02:00
|
|
|
io.mem_req.valid := state === s_refill_req && ackq.io.enq.ready
|
2013-03-01 03:11:40 +01:00
|
|
|
io.mem_req.bits.a_type := acquire_type
|
2013-08-12 19:39:11 +02:00
|
|
|
io.mem_req.bits.addr := Cat(io.tag, req_idx).toUInt
|
2013-01-22 02:18:23 +01:00
|
|
|
io.mem_req.bits.client_xact_id := Bits(id)
|
2013-04-06 10:03:37 +02:00
|
|
|
io.mem_finish <> ackq.io.deq
|
2011-12-10 04:42:58 +01:00
|
|
|
|
2012-11-20 13:09:26 +01:00
|
|
|
io.meta_read.valid := state === s_drain_rpq
|
2014-04-24 00:43:31 +02:00
|
|
|
io.meta_read.bits.idx := req_idx
|
|
|
|
io.meta_read.bits.tag := io.tag
|
2012-11-20 13:09:26 +01:00
|
|
|
|
2012-11-16 11:39:33 +01:00
|
|
|
io.replay.valid := state === s_drain_rpq && rpq.io.deq.valid
|
|
|
|
io.replay.bits := rpq.io.deq.bits
|
|
|
|
io.replay.bits.phys := Bool(true)
|
2013-08-12 19:39:11 +02:00
|
|
|
io.replay.bits.addr := Cat(io.tag, req_idx, rpq.io.deq.bits.addr(conf.offbits-1,0)).toUInt
|
2012-11-16 11:39:33 +01:00
|
|
|
|
2012-11-20 13:09:26 +01:00
|
|
|
when (!io.meta_read.ready) {
|
2012-11-16 11:39:33 +01:00
|
|
|
rpq.io.deq.ready := Bool(false)
|
2013-10-29 06:35:18 +01:00
|
|
|
io.replay.bits.cmd := M_NOP
|
2012-11-16 11:39:33 +01:00
|
|
|
}
|
2011-12-10 04:42:58 +01:00
|
|
|
}
|
|
|
|
|
2014-03-29 18:59:07 +01:00
|
|
|
class MSHRFile(implicit conf: DCacheConfig) extends Module {
|
|
|
|
implicit val (tl, ln) = (conf.tl, conf.tl.ln)
|
2011-12-10 04:42:58 +01:00
|
|
|
val io = new Bundle {
|
2013-08-12 19:39:11 +02:00
|
|
|
val req = Decoupled(new MSHRReq).flip
|
2012-03-11 00:50:10 +01:00
|
|
|
val secondary_miss = Bool(OUTPUT)
|
2012-01-18 19:28:48 +01:00
|
|
|
|
2013-08-12 19:39:11 +02:00
|
|
|
val mem_req = Decoupled(new Acquire)
|
2012-11-16 11:39:33 +01:00
|
|
|
val mem_resp = new DataWriteReq().asOutput
|
2014-04-24 00:43:31 +02:00
|
|
|
val meta_read = Decoupled(new L1MetaReadReq)
|
2014-05-01 10:45:45 +02:00
|
|
|
val meta_write = Decoupled(new MetaWriteReq(new L1MetaData))
|
2013-08-12 19:39:11 +02:00
|
|
|
val replay = Decoupled(new Replay)
|
2013-09-11 01:15:19 +02:00
|
|
|
val mem_grant = Valid(new LogicalNetworkIO(new Grant)).flip
|
2014-04-27 00:18:21 +02:00
|
|
|
val mem_finish = Decoupled(new LogicalNetworkIO(new Finish))
|
2013-08-12 19:39:11 +02:00
|
|
|
val wb_req = Decoupled(new WritebackReq)
|
2012-03-02 04:30:56 +01:00
|
|
|
|
2013-04-08 04:27:21 +02:00
|
|
|
val probe_rdy = Bool(OUTPUT)
|
2012-11-16 11:39:33 +01:00
|
|
|
val fence_rdy = Bool(OUTPUT)
|
2011-12-10 04:42:58 +01:00
|
|
|
}
|
|
|
|
|
2013-08-16 00:28:15 +02:00
|
|
|
val sdq_val = Reg(init=Bits(0, conf.nsdq))
|
2012-11-06 17:13:44 +01:00
|
|
|
val sdq_alloc_id = PriorityEncoder(~sdq_val(conf.nsdq-1,0))
|
2012-03-02 04:30:56 +01:00
|
|
|
val sdq_rdy = !sdq_val.andR
|
2012-11-16 11:39:33 +01:00
|
|
|
val sdq_enq = io.req.valid && io.req.ready && isWrite(io.req.bits.cmd)
|
2013-08-12 19:39:11 +02:00
|
|
|
val sdq = Mem(io.req.bits.data, conf.nsdq)
|
2012-06-06 11:47:22 +02:00
|
|
|
when (sdq_enq) { sdq(sdq_alloc_id) := io.req.bits.data }
|
2012-03-02 04:30:56 +01:00
|
|
|
|
2013-08-12 19:39:11 +02:00
|
|
|
val idxMatch = Vec.fill(conf.nmshr){Bool()}
|
|
|
|
val tagList = Vec.fill(conf.nmshr){Bits()}
|
2013-04-08 04:27:21 +02:00
|
|
|
val tag_match = Mux1H(idxMatch, tagList) === io.req.bits.addr >> conf.untagbits
|
|
|
|
|
2013-08-12 19:39:11 +02:00
|
|
|
val wbTagList = Vec.fill(conf.nmshr){Bits()}
|
|
|
|
val memRespMux = Vec.fill(conf.nmshr){new DataWriteReq}
|
2014-04-24 00:43:31 +02:00
|
|
|
val meta_read_arb = Module(new Arbiter(new L1MetaReadReq, conf.nmshr))
|
2014-05-01 10:45:45 +02:00
|
|
|
val meta_write_arb = Module(new Arbiter(new MetaWriteReq(new L1MetaData), conf.nmshr))
|
2013-08-12 19:39:11 +02:00
|
|
|
val mem_req_arb = Module(new Arbiter(new Acquire, conf.nmshr))
|
2014-04-27 00:18:21 +02:00
|
|
|
val mem_finish_arb = Module(new Arbiter(new LogicalNetworkIO(new Finish), conf.nmshr))
|
2013-08-12 19:39:11 +02:00
|
|
|
val wb_req_arb = Module(new Arbiter(new WritebackReq, conf.nmshr))
|
|
|
|
val replay_arb = Module(new Arbiter(new Replay, conf.nmshr))
|
|
|
|
val alloc_arb = Module(new Arbiter(Bool(), conf.nmshr))
|
2011-12-10 04:42:58 +01:00
|
|
|
|
2011-12-21 07:08:27 +01:00
|
|
|
var idx_match = Bool(false)
|
|
|
|
var pri_rdy = Bool(false)
|
|
|
|
var sec_rdy = Bool(false)
|
2013-04-08 04:27:21 +02:00
|
|
|
|
|
|
|
io.fence_rdy := true
|
|
|
|
io.probe_rdy := true
|
2011-12-21 07:08:27 +01:00
|
|
|
|
2012-11-06 17:13:44 +01:00
|
|
|
for (i <- 0 to conf.nmshr-1) {
|
2013-08-12 19:39:11 +02:00
|
|
|
val mshr = Module(new MSHR(i))
|
2011-12-10 04:42:58 +01:00
|
|
|
|
2012-10-12 01:48:51 +02:00
|
|
|
idxMatch(i) := mshr.io.idx_match
|
|
|
|
tagList(i) := mshr.io.tag
|
|
|
|
wbTagList(i) := mshr.io.wb_req.bits.tag
|
2011-12-10 04:42:58 +01:00
|
|
|
|
|
|
|
alloc_arb.io.in(i).valid := mshr.io.req_pri_rdy
|
2011-12-12 15:49:16 +01:00
|
|
|
mshr.io.req_pri_val := alloc_arb.io.in(i).ready
|
2011-12-10 04:42:58 +01:00
|
|
|
|
2012-03-02 05:20:15 +01:00
|
|
|
mshr.io.req_sec_val := io.req.valid && sdq_rdy && tag_match
|
|
|
|
mshr.io.req_bits := io.req.bits
|
2012-03-02 04:30:56 +01:00
|
|
|
mshr.io.req_sdq_id := sdq_alloc_id
|
2011-12-10 04:42:58 +01:00
|
|
|
|
2012-11-20 13:09:26 +01:00
|
|
|
mshr.io.meta_read <> meta_read_arb.io.in(i)
|
|
|
|
mshr.io.meta_write <> meta_write_arb.io.in(i)
|
2011-12-10 04:42:58 +01:00
|
|
|
mshr.io.mem_req <> mem_req_arb.io.in(i)
|
2012-03-07 00:47:19 +01:00
|
|
|
mshr.io.mem_finish <> mem_finish_arb.io.in(i)
|
2012-03-09 11:55:46 +01:00
|
|
|
mshr.io.wb_req <> wb_req_arb.io.in(i)
|
2011-12-10 04:42:58 +01:00
|
|
|
mshr.io.replay <> replay_arb.io.in(i)
|
|
|
|
|
2013-03-20 22:05:12 +01:00
|
|
|
mshr.io.mem_grant <> io.mem_grant
|
2012-11-16 11:39:33 +01:00
|
|
|
memRespMux(i) := mshr.io.mem_resp
|
2011-12-10 04:42:58 +01:00
|
|
|
|
2011-12-21 07:08:27 +01:00
|
|
|
pri_rdy = pri_rdy || mshr.io.req_pri_rdy
|
|
|
|
sec_rdy = sec_rdy || mshr.io.req_sec_rdy
|
|
|
|
idx_match = idx_match || mshr.io.idx_match
|
2013-04-08 04:27:21 +02:00
|
|
|
|
|
|
|
when (!mshr.io.req_pri_rdy) { io.fence_rdy := false }
|
|
|
|
when (!mshr.io.probe_rdy) { io.probe_rdy := false }
|
2011-12-10 04:42:58 +01:00
|
|
|
}
|
2011-12-21 07:08:27 +01:00
|
|
|
|
2012-03-02 05:20:15 +01:00
|
|
|
alloc_arb.io.out.ready := io.req.valid && sdq_rdy && !idx_match
|
2011-12-10 04:42:58 +01:00
|
|
|
|
2012-11-20 13:09:26 +01:00
|
|
|
meta_read_arb.io.out <> io.meta_read
|
|
|
|
meta_write_arb.io.out <> io.meta_write
|
2012-01-23 18:51:35 +01:00
|
|
|
mem_req_arb.io.out <> io.mem_req
|
2012-03-07 00:47:19 +01:00
|
|
|
mem_finish_arb.io.out <> io.mem_finish
|
2012-03-09 11:55:46 +01:00
|
|
|
wb_req_arb.io.out <> io.wb_req
|
2011-12-10 04:42:58 +01:00
|
|
|
|
2012-03-02 05:20:15 +01:00
|
|
|
io.req.ready := Mux(idx_match, tag_match && sec_rdy, pri_rdy) && sdq_rdy
|
2012-03-11 00:50:10 +01:00
|
|
|
io.secondary_miss := idx_match
|
2013-03-20 22:05:12 +01:00
|
|
|
io.mem_resp := memRespMux(io.mem_grant.bits.payload.client_xact_id)
|
2011-12-10 04:42:58 +01:00
|
|
|
|
2012-11-16 11:39:33 +01:00
|
|
|
val free_sdq = io.replay.fire() && isWrite(io.replay.bits.cmd)
|
2013-08-14 02:50:02 +02:00
|
|
|
io.replay.bits.data := sdq(RegEnable(replay_arb.io.out.bits.sdq_id, free_sdq))
|
2012-11-16 11:39:33 +01:00
|
|
|
io.replay <> replay_arb.io.out
|
2011-12-10 04:42:58 +01:00
|
|
|
|
2012-11-16 11:39:33 +01:00
|
|
|
when (io.replay.valid || sdq_enq) {
|
2013-08-12 19:39:11 +02:00
|
|
|
sdq_val := sdq_val & ~(UIntToOH(io.replay.bits.sdq_id) & Fill(conf.nsdq, free_sdq)) |
|
2012-11-16 11:39:33 +01:00
|
|
|
PriorityEncoderOH(~sdq_val(conf.nsdq-1,0)) & Fill(conf.nsdq, sdq_enq)
|
|
|
|
}
|
2011-12-10 04:42:58 +01:00
|
|
|
}
|
|
|
|
|
2012-04-10 09:09:58 +02:00
|
|
|
|
2014-03-29 18:59:07 +01:00
|
|
|
class WritebackUnit(implicit conf: DCacheConfig) extends Module {
|
|
|
|
implicit val tl = conf.tl
|
2011-12-10 04:42:58 +01:00
|
|
|
val io = new Bundle {
|
2013-08-12 19:39:11 +02:00
|
|
|
val req = Decoupled(new WritebackReq()).flip
|
2014-04-24 00:43:31 +02:00
|
|
|
val meta_read = Decoupled(new L1MetaReadReq)
|
2013-08-12 19:39:11 +02:00
|
|
|
val data_req = Decoupled(new DataReadReq())
|
2014-04-02 02:15:46 +02:00
|
|
|
val data_resp = Bits(INPUT, conf.encrowbits)
|
2013-08-12 19:39:11 +02:00
|
|
|
val release = Decoupled(new Release)
|
2011-12-10 04:42:58 +01:00
|
|
|
}
|
|
|
|
|
2014-04-08 03:22:46 +02:00
|
|
|
val active = Reg(init=Bool(false))
|
2013-08-16 00:28:15 +02:00
|
|
|
val r1_data_req_fired = Reg(init=Bool(false))
|
|
|
|
val r2_data_req_fired = Reg(init=Bool(false))
|
2014-04-08 03:22:46 +02:00
|
|
|
val cnt = Reg(init = UInt(0, width = log2Up(conf.refillcycles+1)))
|
2013-08-12 19:39:11 +02:00
|
|
|
val req = Reg(new WritebackReq)
|
2012-11-26 04:46:48 +01:00
|
|
|
|
2014-04-08 03:22:46 +02:00
|
|
|
io.release.valid := false
|
|
|
|
when (active) {
|
2012-11-26 04:46:48 +01:00
|
|
|
r1_data_req_fired := false
|
|
|
|
r2_data_req_fired := r1_data_req_fired
|
2012-12-12 00:58:53 +01:00
|
|
|
when (io.data_req.fire() && io.meta_read.fire()) {
|
2012-11-26 04:46:48 +01:00
|
|
|
r1_data_req_fired := true
|
|
|
|
cnt := cnt + 1
|
|
|
|
}
|
2014-04-08 03:22:46 +02:00
|
|
|
if(conf.refillcycles > 1) { // Coalescing buffer inserted
|
|
|
|
when (!r1_data_req_fired && !r2_data_req_fired && cnt === conf.refillcycles) {
|
|
|
|
io.release.valid := true
|
|
|
|
active := !io.release.ready
|
|
|
|
}
|
|
|
|
} else { // No buffer, data released a cycle earlier
|
|
|
|
when (r2_data_req_fired) {
|
|
|
|
io.release.valid := true
|
|
|
|
when(!io.release.ready) {
|
|
|
|
r1_data_req_fired := false
|
|
|
|
r2_data_req_fired := false
|
|
|
|
cnt := UInt(0)
|
|
|
|
} .otherwise {
|
|
|
|
active := false
|
|
|
|
}
|
|
|
|
}
|
2012-11-26 04:46:48 +01:00
|
|
|
}
|
2012-03-14 00:43:35 +01:00
|
|
|
}
|
2012-11-26 04:46:48 +01:00
|
|
|
when (io.req.fire()) {
|
2014-04-08 03:22:46 +02:00
|
|
|
active := true
|
2012-11-26 04:46:48 +01:00
|
|
|
cnt := 0
|
2012-03-09 11:55:46 +01:00
|
|
|
req := io.req.bits
|
2012-03-06 09:31:44 +01:00
|
|
|
}
|
2011-12-10 04:42:58 +01:00
|
|
|
|
2014-04-08 03:22:46 +02:00
|
|
|
val fire = active && cnt < UInt(conf.refillcycles)
|
|
|
|
io.req.ready := !active
|
|
|
|
|
|
|
|
// We reissue the meta read as it sets up the muxing for s2_data_muxed
|
|
|
|
io.meta_read.valid := fire
|
2014-04-24 00:43:31 +02:00
|
|
|
io.meta_read.bits.idx := req.idx
|
|
|
|
io.meta_read.bits.tag := req.tag
|
2014-04-08 03:22:46 +02:00
|
|
|
|
2012-12-12 00:58:53 +01:00
|
|
|
io.data_req.valid := fire
|
2012-11-16 11:39:33 +01:00
|
|
|
io.data_req.bits.way_en := req.way_en
|
2014-04-08 03:22:46 +02:00
|
|
|
if(conf.refillcycles > 1) {
|
|
|
|
io.data_req.bits.addr := Cat(req.idx, cnt(log2Up(conf.refillcycles)-1,0)) << conf.rowoffbits
|
|
|
|
} else {
|
|
|
|
io.data_req.bits.addr := req.idx << conf.rowoffbits
|
|
|
|
}
|
2012-11-16 11:39:33 +01:00
|
|
|
|
2013-03-01 03:11:40 +01:00
|
|
|
io.release.bits.r_type := req.r_type
|
2013-08-12 19:39:11 +02:00
|
|
|
io.release.bits.addr := Cat(req.tag, req.idx).toUInt
|
2013-03-01 03:11:40 +01:00
|
|
|
io.release.bits.client_xact_id := req.client_xact_id
|
2014-03-29 18:59:07 +01:00
|
|
|
io.release.bits.master_xact_id := req.master_xact_id
|
2014-04-08 03:22:46 +02:00
|
|
|
if(conf.refillcycles > 1) {
|
|
|
|
val data_buf = Reg(Bits())
|
|
|
|
when(active && r2_data_req_fired) {
|
|
|
|
data_buf := Cat(io.data_resp, data_buf(conf.refillcycles*conf.encrowbits-1, conf.encrowbits))
|
|
|
|
}
|
|
|
|
io.release.bits.data := data_buf
|
|
|
|
} else {
|
|
|
|
io.release.bits.data := io.data_resp
|
|
|
|
}
|
2012-11-20 13:09:26 +01:00
|
|
|
|
2012-03-14 00:43:35 +01:00
|
|
|
}
|
|
|
|
|
2014-03-29 18:59:07 +01:00
|
|
|
class ProbeUnit(implicit conf: DCacheConfig) extends Module {
|
|
|
|
implicit val tl = conf.tl
|
2012-03-14 00:43:35 +01:00
|
|
|
val io = new Bundle {
|
2013-08-12 19:39:11 +02:00
|
|
|
val req = Decoupled(new InternalProbe).flip
|
|
|
|
val rep = Decoupled(new Release)
|
2014-04-24 00:43:31 +02:00
|
|
|
val meta_read = Decoupled(new L1MetaReadReq)
|
2014-05-01 10:45:45 +02:00
|
|
|
val meta_write = Decoupled(new MetaWriteReq(new L1MetaData))
|
2013-08-12 19:39:11 +02:00
|
|
|
val wb_req = Decoupled(new WritebackReq)
|
2012-11-16 11:39:33 +01:00
|
|
|
val way_en = Bits(INPUT, conf.ways)
|
2013-04-08 04:27:21 +02:00
|
|
|
val mshr_rdy = Bool(INPUT)
|
2013-08-12 19:39:11 +02:00
|
|
|
val line_state = UInt(INPUT, 2)
|
2012-03-14 00:43:35 +01:00
|
|
|
}
|
|
|
|
|
2013-09-10 19:51:35 +02:00
|
|
|
val s_reset :: s_invalid :: s_meta_read :: s_meta_resp :: s_mshr_req :: s_release :: s_writeback_req :: s_writeback_resp :: s_meta_write :: Nil = Enum(UInt(), 9)
|
2013-08-16 00:28:15 +02:00
|
|
|
val state = Reg(init=s_invalid)
|
2013-08-12 19:39:11 +02:00
|
|
|
val line_state = Reg(UInt())
|
|
|
|
val way_en = Reg(Bits())
|
|
|
|
val req = Reg(new InternalProbe)
|
2012-11-16 11:39:33 +01:00
|
|
|
val hit = way_en.orR
|
2012-03-14 00:43:35 +01:00
|
|
|
|
2012-11-20 13:09:26 +01:00
|
|
|
when (state === s_meta_write && io.meta_write.ready) {
|
2012-03-14 00:43:35 +01:00
|
|
|
state := s_invalid
|
|
|
|
}
|
2012-11-16 11:39:33 +01:00
|
|
|
when (state === s_writeback_resp && io.wb_req.ready) {
|
|
|
|
state := s_meta_write
|
|
|
|
}
|
|
|
|
when (state === s_writeback_req && io.wb_req.ready) {
|
2012-03-14 00:43:35 +01:00
|
|
|
state := s_writeback_resp
|
|
|
|
}
|
2013-01-22 02:18:23 +01:00
|
|
|
when (state === s_release && io.rep.ready) {
|
2012-11-16 11:39:33 +01:00
|
|
|
state := s_invalid
|
|
|
|
when (hit) {
|
2013-08-02 23:54:16 +02:00
|
|
|
state := Mux(tl.co.needsWriteback(line_state), s_writeback_req, s_meta_write)
|
2012-11-16 11:39:33 +01:00
|
|
|
}
|
2012-03-14 00:43:35 +01:00
|
|
|
}
|
2012-11-16 11:39:33 +01:00
|
|
|
when (state === s_mshr_req) {
|
2013-01-22 02:18:23 +01:00
|
|
|
state := s_release
|
2012-11-16 11:39:33 +01:00
|
|
|
line_state := io.line_state
|
|
|
|
way_en := io.way_en
|
2013-04-08 04:27:21 +02:00
|
|
|
when (!io.mshr_rdy) { state := s_meta_read }
|
2012-04-13 06:57:37 +02:00
|
|
|
}
|
2012-03-14 00:43:35 +01:00
|
|
|
when (state === s_meta_resp) {
|
2012-11-16 11:39:33 +01:00
|
|
|
state := s_mshr_req
|
2012-03-14 00:43:35 +01:00
|
|
|
}
|
2012-11-20 13:09:26 +01:00
|
|
|
when (state === s_meta_read && io.meta_read.ready) {
|
2012-03-14 00:43:35 +01:00
|
|
|
state := s_meta_resp
|
|
|
|
}
|
2012-11-16 11:39:33 +01:00
|
|
|
when (state === s_invalid && io.req.valid) {
|
2012-11-20 13:09:26 +01:00
|
|
|
state := s_meta_read
|
2012-03-14 00:43:35 +01:00
|
|
|
req := io.req.bits
|
|
|
|
}
|
2013-01-25 02:46:11 +01:00
|
|
|
when (state === s_reset) {
|
|
|
|
state := s_invalid
|
|
|
|
}
|
2012-03-14 00:43:35 +01:00
|
|
|
|
2013-01-25 02:46:11 +01:00
|
|
|
io.req.ready := state === s_invalid
|
2014-04-08 03:22:46 +02:00
|
|
|
io.rep.valid := state === s_release && !(hit && tl.co.needsWriteback(line_state))
|
2013-08-02 23:54:16 +02:00
|
|
|
io.rep.bits := Release(tl.co.getReleaseTypeOnProbe(req, Mux(hit, line_state, tl.co.newStateOnFlush)), req.addr, req.client_xact_id, req.master_xact_id)
|
2012-03-14 00:43:35 +01:00
|
|
|
|
2012-11-20 13:09:26 +01:00
|
|
|
io.meta_read.valid := state === s_meta_read
|
2014-04-24 00:43:31 +02:00
|
|
|
io.meta_read.bits.idx := req.addr
|
|
|
|
io.meta_read.bits.tag := req.addr >> conf.idxbits
|
2012-03-14 00:43:35 +01:00
|
|
|
|
2012-11-20 13:09:26 +01:00
|
|
|
io.meta_write.valid := state === s_meta_write
|
|
|
|
io.meta_write.bits.way_en := way_en
|
|
|
|
io.meta_write.bits.idx := req.addr
|
2013-08-02 23:54:16 +02:00
|
|
|
io.meta_write.bits.data.state := tl.co.newStateOnProbe(req, line_state)
|
2013-08-12 19:39:11 +02:00
|
|
|
io.meta_write.bits.data.tag := req.addr >> UInt(conf.idxbits)
|
2012-11-20 13:09:26 +01:00
|
|
|
|
2012-03-14 00:43:35 +01:00
|
|
|
io.wb_req.valid := state === s_writeback_req
|
2012-11-16 11:39:33 +01:00
|
|
|
io.wb_req.bits.way_en := way_en
|
2012-09-28 01:46:36 +02:00
|
|
|
io.wb_req.bits.idx := req.addr
|
2013-08-12 19:39:11 +02:00
|
|
|
io.wb_req.bits.tag := req.addr >> UInt(conf.idxbits)
|
2014-03-29 18:59:07 +01:00
|
|
|
io.wb_req.bits.r_type := tl.co.getReleaseTypeOnProbe(req, Mux(hit, line_state, tl.co.newStateOnFlush))
|
|
|
|
io.wb_req.bits.client_xact_id := req.client_xact_id
|
|
|
|
io.wb_req.bits.master_xact_id := req.master_xact_id
|
2011-12-10 04:42:58 +01:00
|
|
|
}
|
|
|
|
|
2013-08-12 19:39:11 +02:00
|
|
|
class DataArray(implicit conf: DCacheConfig) extends Module {
|
2011-12-10 04:42:58 +01:00
|
|
|
val io = new Bundle {
|
2013-08-12 19:39:11 +02:00
|
|
|
val read = Decoupled(new DataReadReq).flip
|
|
|
|
val write = Decoupled(new DataWriteReq).flip
|
2014-04-02 02:15:46 +02:00
|
|
|
val resp = Vec.fill(conf.ways){Bits(OUTPUT, conf.encrowbits)}
|
2012-01-24 20:41:44 +01:00
|
|
|
}
|
|
|
|
|
2014-04-02 02:15:46 +02:00
|
|
|
val waddr = io.write.bits.addr >> conf.rowoffbits
|
|
|
|
val raddr = io.read.bits.addr >> conf.rowoffbits
|
2012-01-24 20:41:44 +01:00
|
|
|
|
2012-11-27 05:34:30 +01:00
|
|
|
if (conf.isNarrowRead) {
|
2014-04-02 02:15:46 +02:00
|
|
|
for (w <- 0 until conf.ways by conf.rowwords) {
|
|
|
|
val wway_en = io.write.bits.way_en(w+conf.rowwords-1,w)
|
|
|
|
val rway_en = io.read.bits.way_en(w+conf.rowwords-1,w)
|
|
|
|
val resp = Vec.fill(conf.rowwords){Bits(width = conf.encrowbits)}
|
2013-08-14 02:50:02 +02:00
|
|
|
val r_raddr = RegEnable(io.read.bits.addr, io.read.valid)
|
2012-11-27 05:34:30 +01:00
|
|
|
for (p <- 0 until resp.size) {
|
2014-04-02 02:15:46 +02:00
|
|
|
val array = Mem(Bits(width=conf.encrowbits), conf.sets*conf.refillcycles, seqRead = true)
|
2012-11-27 11:42:27 +01:00
|
|
|
when (wway_en.orR && io.write.valid && io.write.bits.wmask(p)) {
|
2014-04-02 02:15:46 +02:00
|
|
|
val data = Fill(conf.rowwords, io.write.bits.data(conf.encdatabits*(p+1)-1,conf.encdatabits*p))
|
2012-12-12 00:58:53 +01:00
|
|
|
val mask = FillInterleaved(conf.encdatabits, wway_en)
|
2012-11-27 05:34:30 +01:00
|
|
|
array.write(waddr, data, mask)
|
|
|
|
}
|
2013-08-14 02:50:02 +02:00
|
|
|
resp(p) := array(RegEnable(raddr, rway_en.orR && io.read.valid))
|
2012-11-27 05:34:30 +01:00
|
|
|
}
|
2014-04-02 02:15:46 +02:00
|
|
|
for (dw <- 0 until conf.rowwords) {
|
2014-04-17 02:19:08 +02:00
|
|
|
val r = Vec(resp.map(_(conf.encdatabits*(dw+1)-1,conf.encdatabits*dw)))
|
2012-11-27 05:34:30 +01:00
|
|
|
val resp_mux =
|
|
|
|
if (r.size == 1) r
|
2014-04-17 02:19:08 +02:00
|
|
|
else Vec(r(r_raddr(conf.rowoffbits-1,conf.wordoffbits)), r.tail:_*)
|
2012-11-27 05:34:30 +01:00
|
|
|
io.resp(w+dw) := resp_mux.toBits
|
|
|
|
}
|
2012-11-16 11:39:33 +01:00
|
|
|
}
|
2012-11-27 05:34:30 +01:00
|
|
|
} else {
|
2012-12-12 00:58:53 +01:00
|
|
|
val wmask = FillInterleaved(conf.encdatabits, io.write.bits.wmask)
|
2012-11-27 05:34:30 +01:00
|
|
|
for (w <- 0 until conf.ways) {
|
2014-04-02 02:15:46 +02:00
|
|
|
val array = Mem(Bits(width=conf.encrowbits), conf.sets*conf.refillcycles, seqRead = true)
|
2012-11-27 05:34:30 +01:00
|
|
|
when (io.write.bits.way_en(w) && io.write.valid) {
|
|
|
|
array.write(waddr, io.write.bits.data, wmask)
|
|
|
|
}
|
2013-08-14 02:50:02 +02:00
|
|
|
io.resp(w) := array(RegEnable(raddr, io.read.bits.way_en(w) && io.read.valid))
|
2012-11-16 11:39:33 +01:00
|
|
|
}
|
2012-01-24 20:41:44 +01:00
|
|
|
}
|
|
|
|
|
2012-11-16 11:39:33 +01:00
|
|
|
io.read.ready := Bool(true)
|
|
|
|
io.write.ready := Bool(true)
|
2012-01-24 20:41:44 +01:00
|
|
|
}
|
|
|
|
|
2013-08-12 19:39:11 +02:00
|
|
|
class AMOALU(implicit conf: DCacheConfig) extends Module {
|
2011-12-10 04:42:58 +01:00
|
|
|
val io = new Bundle {
|
2012-11-16 11:39:33 +01:00
|
|
|
val addr = Bits(INPUT, conf.offbits)
|
2012-07-13 03:12:49 +02:00
|
|
|
val cmd = Bits(INPUT, 4)
|
|
|
|
val typ = Bits(INPUT, 3)
|
2012-11-16 11:39:33 +01:00
|
|
|
val lhs = Bits(INPUT, conf.databits)
|
|
|
|
val rhs = Bits(INPUT, conf.databits)
|
|
|
|
val out = Bits(OUTPUT, conf.databits)
|
2011-12-10 04:42:58 +01:00
|
|
|
}
|
2012-11-16 11:39:33 +01:00
|
|
|
|
2012-11-18 02:24:08 +01:00
|
|
|
require(conf.databits == 64)
|
2013-09-15 01:15:07 +02:00
|
|
|
val storegen = new StoreGen(io.typ, io.addr, io.rhs)
|
|
|
|
val rhs = storegen.wordData
|
2011-12-10 04:42:58 +01:00
|
|
|
|
2012-11-20 10:32:33 +01:00
|
|
|
val sgned = io.cmd === M_XA_MIN || io.cmd === M_XA_MAX
|
|
|
|
val max = io.cmd === M_XA_MAX || io.cmd === M_XA_MAXU
|
|
|
|
val min = io.cmd === M_XA_MIN || io.cmd === M_XA_MINU
|
|
|
|
val word = io.typ === MT_W || io.typ === MT_WU || io.typ === MT_B || io.typ === MT_BU
|
|
|
|
|
2013-08-12 19:39:11 +02:00
|
|
|
val mask = SInt(-1,64) ^ (io.addr(2) << 31)
|
2013-09-15 01:15:07 +02:00
|
|
|
val adder_out = (io.lhs & mask).toUInt + (rhs & mask)
|
2012-11-20 10:32:33 +01:00
|
|
|
|
|
|
|
val cmp_lhs = Mux(word && !io.addr(2), io.lhs(31), io.lhs(63))
|
2013-09-15 01:15:07 +02:00
|
|
|
val cmp_rhs = Mux(word && !io.addr(2), rhs(31), rhs(63))
|
|
|
|
val lt_lo = io.lhs(31,0) < rhs(31,0)
|
|
|
|
val lt_hi = io.lhs(63,32) < rhs(63,32)
|
|
|
|
val eq_hi = io.lhs(63,32) === rhs(63,32)
|
2012-11-20 10:32:33 +01:00
|
|
|
val lt = Mux(word, Mux(io.addr(2), lt_hi, lt_lo), lt_hi || eq_hi && lt_lo)
|
|
|
|
val less = Mux(cmp_lhs === cmp_rhs, lt, Mux(sgned, cmp_lhs, cmp_rhs))
|
|
|
|
|
|
|
|
val out = Mux(io.cmd === M_XA_ADD, adder_out,
|
2013-09-15 01:15:07 +02:00
|
|
|
Mux(io.cmd === M_XA_AND, io.lhs & rhs,
|
|
|
|
Mux(io.cmd === M_XA_OR, io.lhs | rhs,
|
|
|
|
Mux(io.cmd === M_XA_XOR, io.lhs ^ rhs,
|
2012-11-20 10:32:33 +01:00
|
|
|
Mux(Mux(less, min, max), io.lhs,
|
2013-09-15 01:15:07 +02:00
|
|
|
storegen.data)))))
|
2012-02-09 12:30:55 +01:00
|
|
|
|
2013-09-15 01:15:07 +02:00
|
|
|
val wmask = FillInterleaved(8, storegen.mask)
|
2012-12-06 11:07:52 +01:00
|
|
|
io.out := wmask & out | ~wmask & io.lhs
|
2011-12-10 04:42:58 +01:00
|
|
|
}
|
|
|
|
|
2013-08-14 02:50:02 +02:00
|
|
|
class HellaCacheReq(implicit val conf: DCacheConfig) extends DCacheBundle {
|
2012-05-08 02:28:18 +02:00
|
|
|
val kill = Bool()
|
2014-01-21 21:08:42 +01:00
|
|
|
val typ = Bits(width = MT_SZ)
|
2012-11-06 17:13:44 +01:00
|
|
|
val phys = Bool()
|
2013-08-12 19:39:11 +02:00
|
|
|
val addr = UInt(width = conf.maxaddrbits)
|
2012-11-06 08:52:32 +01:00
|
|
|
val data = Bits(width = conf.databits)
|
|
|
|
val tag = Bits(width = conf.reqtagbits)
|
2014-01-21 21:08:42 +01:00
|
|
|
val cmd = Bits(width = M_SZ)
|
2012-05-02 03:23:04 +02:00
|
|
|
}
|
|
|
|
|
2013-08-14 02:50:02 +02:00
|
|
|
class HellaCacheResp(implicit val conf: DCacheConfig) extends DCacheBundle {
|
2012-11-16 11:39:33 +01:00
|
|
|
val nack = Bool() // comes 2 cycles after req.fire
|
2012-05-02 03:23:04 +02:00
|
|
|
val replay = Bool()
|
2012-11-16 11:39:33 +01:00
|
|
|
val typ = Bits(width = 3)
|
2013-09-15 07:34:53 +02:00
|
|
|
val has_data = Bool()
|
2012-11-16 11:39:33 +01:00
|
|
|
val data = Bits(width = conf.databits)
|
2012-11-06 08:52:32 +01:00
|
|
|
val data_subword = Bits(width = conf.databits)
|
2012-11-16 11:39:33 +01:00
|
|
|
val tag = Bits(width = conf.reqtagbits)
|
2012-11-17 06:26:12 +01:00
|
|
|
val cmd = Bits(width = 4)
|
2013-08-12 19:39:11 +02:00
|
|
|
val addr = UInt(width = conf.maxaddrbits)
|
2012-11-17 06:15:13 +01:00
|
|
|
val store_data = Bits(width = conf.databits)
|
2012-05-02 03:23:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
class AlignmentExceptions extends Bundle {
|
|
|
|
val ld = Bool()
|
|
|
|
val st = Bool()
|
|
|
|
}
|
|
|
|
|
|
|
|
class HellaCacheExceptions extends Bundle {
|
|
|
|
val ma = new AlignmentExceptions
|
2012-11-06 17:13:44 +01:00
|
|
|
val pf = new AlignmentExceptions
|
2012-05-02 03:23:04 +02:00
|
|
|
}
|
|
|
|
|
2012-05-08 02:28:18 +02:00
|
|
|
// interface between D$ and processor/DTLB
|
2013-01-07 22:38:59 +01:00
|
|
|
class HellaCacheIO(implicit conf: DCacheConfig) extends Bundle {
|
2013-08-12 19:39:11 +02:00
|
|
|
val req = Decoupled(new HellaCacheReq)
|
|
|
|
val resp = Valid(new HellaCacheResp).flip
|
2014-01-16 09:16:09 +01:00
|
|
|
val replay_next = Valid(Bits(width = conf.reqtagbits)).flip
|
2012-05-02 03:23:04 +02:00
|
|
|
val xcpt = (new HellaCacheExceptions).asInput
|
2014-04-02 02:15:46 +02:00
|
|
|
val ptw = new TLBPTWIO()(conf.as).flip
|
2013-09-13 01:07:30 +02:00
|
|
|
val ordered = Bool(INPUT)
|
2012-05-02 03:23:04 +02:00
|
|
|
}
|
|
|
|
|
2014-03-29 18:59:07 +01:00
|
|
|
class HellaCache(implicit conf: DCacheConfig) extends Module {
|
|
|
|
implicit val (tl, ln) = (conf.tl, conf.tl.ln)
|
2012-02-13 05:32:06 +01:00
|
|
|
val io = new Bundle {
|
2013-01-07 22:38:59 +01:00
|
|
|
val cpu = (new HellaCacheIO).flip
|
|
|
|
val mem = new TileLinkIO
|
2012-02-13 05:32:06 +01:00
|
|
|
}
|
2012-02-02 06:11:45 +01:00
|
|
|
|
2012-11-16 11:39:33 +01:00
|
|
|
val indexmsb = conf.untagbits-1
|
2012-11-06 08:52:32 +01:00
|
|
|
val indexlsb = conf.offbits
|
2012-01-19 00:07:36 +01:00
|
|
|
val offsetmsb = indexlsb-1
|
2012-11-06 08:52:32 +01:00
|
|
|
val offsetlsb = log2Up(conf.databytes)
|
2012-11-16 11:39:33 +01:00
|
|
|
|
2013-08-12 19:39:11 +02:00
|
|
|
val wb = Module(new WritebackUnit)
|
|
|
|
val prober = Module(new ProbeUnit)
|
|
|
|
val mshrs = Module(new MSHRFile)
|
2012-11-16 11:39:33 +01:00
|
|
|
|
|
|
|
io.cpu.req.ready := Bool(true)
|
2013-08-16 00:28:15 +02:00
|
|
|
val s1_valid = Reg(next=io.cpu.req.fire(), init=Bool(false))
|
2013-08-12 19:39:11 +02:00
|
|
|
val s1_req = Reg(io.cpu.req.bits.clone)
|
2012-11-16 11:39:33 +01:00
|
|
|
val s1_valid_masked = s1_valid && !io.cpu.req.bits.kill
|
2013-08-16 00:28:15 +02:00
|
|
|
val s1_replay = Reg(init=Bool(false))
|
2013-08-12 19:39:11 +02:00
|
|
|
val s1_clk_en = Reg(Bool())
|
2012-11-16 11:39:33 +01:00
|
|
|
|
2013-08-16 00:28:15 +02:00
|
|
|
val s2_valid = Reg(next=s1_valid_masked, init=Bool(false))
|
2013-08-12 19:39:11 +02:00
|
|
|
val s2_req = Reg(io.cpu.req.bits.clone)
|
2013-10-29 06:35:18 +01:00
|
|
|
val s2_replay = Reg(next=s1_replay, init=Bool(false)) && s2_req.cmd != M_NOP
|
2012-12-12 00:58:53 +01:00
|
|
|
val s2_recycle = Bool()
|
2012-11-16 11:39:33 +01:00
|
|
|
val s2_valid_masked = Bool()
|
|
|
|
|
2013-08-16 00:28:15 +02:00
|
|
|
val s3_valid = Reg(init=Bool(false))
|
2013-08-12 19:39:11 +02:00
|
|
|
val s3_req = Reg(io.cpu.req.bits.clone)
|
|
|
|
val s3_way = Reg(Bits())
|
2012-11-16 11:39:33 +01:00
|
|
|
|
2013-08-14 02:50:02 +02:00
|
|
|
val s1_recycled = RegEnable(s2_recycle, s1_clk_en)
|
2012-11-16 11:39:33 +01:00
|
|
|
val s1_read = isRead(s1_req.cmd)
|
|
|
|
val s1_write = isWrite(s1_req.cmd)
|
2014-01-14 13:02:43 +01:00
|
|
|
val s1_sc = s1_req.cmd === M_XSC
|
2012-11-25 07:01:08 +01:00
|
|
|
val s1_readwrite = s1_read || s1_write || isPrefetch(s1_req.cmd)
|
2012-01-19 00:07:36 +01:00
|
|
|
|
2014-04-23 01:53:20 +02:00
|
|
|
val dtlb = Module(new TLB(conf.ntlb)(conf.as))
|
2012-11-06 17:13:44 +01:00
|
|
|
dtlb.io.ptw <> io.cpu.ptw
|
2012-11-16 11:39:33 +01:00
|
|
|
dtlb.io.req.valid := s1_valid_masked && s1_readwrite && !s1_req.phys
|
|
|
|
dtlb.io.req.bits.passthrough := s1_req.phys
|
2013-08-12 19:39:11 +02:00
|
|
|
dtlb.io.req.bits.asid := UInt(0)
|
2012-11-16 11:39:33 +01:00
|
|
|
dtlb.io.req.bits.vpn := s1_req.addr >> conf.pgidxbits
|
2012-11-06 17:13:44 +01:00
|
|
|
dtlb.io.req.bits.instruction := Bool(false)
|
2012-11-16 11:39:33 +01:00
|
|
|
when (!dtlb.io.req.ready && !io.cpu.req.bits.phys) { io.cpu.req.ready := Bool(false) }
|
2012-01-19 00:07:36 +01:00
|
|
|
|
2012-05-02 03:23:04 +02:00
|
|
|
when (io.cpu.req.valid) {
|
2012-11-16 11:39:33 +01:00
|
|
|
s1_req := io.cpu.req.bits
|
|
|
|
}
|
2012-11-20 13:09:26 +01:00
|
|
|
when (wb.io.meta_read.valid) {
|
2014-04-24 00:43:31 +02:00
|
|
|
s1_req.addr := Cat(wb.io.meta_read.bits.tag, wb.io.meta_read.bits.idx) << conf.offbits
|
2012-11-16 11:39:33 +01:00
|
|
|
s1_req.phys := Bool(true)
|
2012-01-19 00:07:36 +01:00
|
|
|
}
|
2012-11-20 13:09:26 +01:00
|
|
|
when (prober.io.meta_read.valid) {
|
2014-04-24 00:43:31 +02:00
|
|
|
s1_req.addr := Cat(prober.io.meta_read.bits.tag, prober.io.meta_read.bits.idx) << conf.offbits
|
2012-11-16 11:39:33 +01:00
|
|
|
s1_req.phys := Bool(true)
|
2012-04-16 07:56:02 +02:00
|
|
|
}
|
2013-08-02 19:06:01 +02:00
|
|
|
when (mshrs.io.replay.valid) {
|
|
|
|
s1_req := mshrs.io.replay.bits
|
2012-02-12 02:20:33 +01:00
|
|
|
}
|
2012-12-12 00:58:53 +01:00
|
|
|
when (s2_recycle) {
|
|
|
|
s1_req := s2_req
|
|
|
|
}
|
2012-11-16 11:39:33 +01:00
|
|
|
val s1_addr = Cat(dtlb.io.resp.ppn, s1_req.addr(conf.pgidxbits-1,0))
|
|
|
|
|
2012-12-06 11:07:52 +01:00
|
|
|
when (s1_clk_en) {
|
2013-08-12 19:39:11 +02:00
|
|
|
s2_req.kill := s1_req.kill
|
2012-11-16 11:39:33 +01:00
|
|
|
s2_req.typ := s1_req.typ
|
2013-08-12 19:39:11 +02:00
|
|
|
s2_req.phys := s1_req.phys
|
|
|
|
s2_req.addr := s1_addr
|
2012-11-16 11:39:33 +01:00
|
|
|
when (s1_write) {
|
2013-08-02 19:06:01 +02:00
|
|
|
s2_req.data := Mux(s1_replay, mshrs.io.replay.bits.data, io.cpu.req.bits.data)
|
2012-11-16 11:39:33 +01:00
|
|
|
}
|
2012-12-12 00:58:53 +01:00
|
|
|
when (s1_recycled) { s2_req.data := s1_req.data }
|
2013-08-12 19:39:11 +02:00
|
|
|
s2_req.tag := s1_req.tag
|
|
|
|
s2_req.cmd := s1_req.cmd
|
2012-03-09 11:55:46 +01:00
|
|
|
}
|
2012-01-19 00:07:36 +01:00
|
|
|
|
|
|
|
val misaligned =
|
2012-11-16 11:39:33 +01:00
|
|
|
(((s1_req.typ === MT_H) || (s1_req.typ === MT_HU)) && (s1_req.addr(0) != Bits(0))) ||
|
|
|
|
(((s1_req.typ === MT_W) || (s1_req.typ === MT_WU)) && (s1_req.addr(1,0) != Bits(0))) ||
|
2014-01-14 06:43:56 +01:00
|
|
|
((s1_req.typ === MT_D) && (s1_req.addr(2,0) != Bits(0)))
|
2012-01-19 00:07:36 +01:00
|
|
|
|
2012-11-16 11:39:33 +01:00
|
|
|
io.cpu.xcpt.ma.ld := s1_read && misaligned
|
|
|
|
io.cpu.xcpt.ma.st := s1_write && misaligned
|
|
|
|
io.cpu.xcpt.pf.ld := s1_read && dtlb.io.resp.xcpt_ld
|
|
|
|
io.cpu.xcpt.pf.st := s1_write && dtlb.io.resp.xcpt_st
|
2012-02-15 22:54:36 +01:00
|
|
|
|
2012-01-19 00:07:36 +01:00
|
|
|
// tags
|
2014-05-06 22:00:00 +02:00
|
|
|
def onReset = L1MetaData(tl.co.newStateOnFlush, UInt(0))
|
|
|
|
val meta = Module(new MetaDataArray(onReset _))
|
2013-08-12 19:39:11 +02:00
|
|
|
val metaReadArb = Module(new Arbiter(new MetaReadReq, 5))
|
2014-05-01 10:45:45 +02:00
|
|
|
val metaWriteArb = Module(new Arbiter(new MetaWriteReq(new L1MetaData), 2))
|
2012-11-20 13:09:26 +01:00
|
|
|
metaReadArb.io.out <> meta.io.read
|
|
|
|
metaWriteArb.io.out <> meta.io.write
|
2012-01-19 00:07:36 +01:00
|
|
|
|
|
|
|
// data
|
2013-08-12 19:39:11 +02:00
|
|
|
val data = Module(new DataArray)
|
|
|
|
val readArb = Module(new Arbiter(new DataReadReq, 4))
|
|
|
|
val writeArb = Module(new Arbiter(new DataWriteReq, 2))
|
2012-12-12 00:58:53 +01:00
|
|
|
data.io.write.valid := writeArb.io.out.valid
|
|
|
|
writeArb.io.out.ready := data.io.write.ready
|
|
|
|
data.io.write.bits := writeArb.io.out.bits
|
2014-04-02 02:15:46 +02:00
|
|
|
val wdata_encoded = (0 until conf.rowwords).map(i => conf.code.encode(writeArb.io.out.bits.data(conf.databits*(i+1)-1,conf.databits*i)))
|
2014-04-17 02:19:08 +02:00
|
|
|
data.io.write.bits.data := Vec(wdata_encoded).toBits
|
2012-01-19 00:07:36 +01:00
|
|
|
|
2012-11-20 10:32:33 +01:00
|
|
|
// tag read for new requests
|
2012-12-12 00:58:53 +01:00
|
|
|
metaReadArb.io.in(4).valid := io.cpu.req.valid
|
2014-04-24 00:43:31 +02:00
|
|
|
metaReadArb.io.in(4).bits.idx := io.cpu.req.bits.addr >> conf.offbits
|
2012-12-12 00:58:53 +01:00
|
|
|
when (!metaReadArb.io.in(4).ready) { io.cpu.req.ready := Bool(false) }
|
2012-11-20 10:32:33 +01:00
|
|
|
|
|
|
|
// data read for new requests
|
2012-12-12 00:58:53 +01:00
|
|
|
readArb.io.in(3).valid := io.cpu.req.valid
|
2014-04-23 01:53:20 +02:00
|
|
|
readArb.io.in(3).bits.addr := io.cpu.req.bits.addr
|
2013-08-12 19:39:11 +02:00
|
|
|
readArb.io.in(3).bits.way_en := SInt(-1)
|
2012-12-12 00:58:53 +01:00
|
|
|
when (!readArb.io.in(3).ready) { io.cpu.req.ready := Bool(false) }
|
|
|
|
|
|
|
|
// recycled requests
|
|
|
|
metaReadArb.io.in(0).valid := s2_recycle
|
2014-04-24 00:43:31 +02:00
|
|
|
metaReadArb.io.in(0).bits.idx := s2_req.addr >> conf.offbits
|
2012-12-12 00:58:53 +01:00
|
|
|
readArb.io.in(0).valid := s2_recycle
|
|
|
|
readArb.io.in(0).bits.addr := s2_req.addr
|
2013-08-12 19:39:11 +02:00
|
|
|
readArb.io.in(0).bits.way_en := SInt(-1)
|
2012-11-20 10:32:33 +01:00
|
|
|
|
|
|
|
// tag check and way muxing
|
2013-08-12 19:39:11 +02:00
|
|
|
def wayMap[T <: Data](f: Int => T) = Vec((0 until conf.ways).map(f))
|
|
|
|
val s1_tag_eq_way = wayMap((w: Int) => meta.io.resp(w).tag === (s1_addr >> conf.untagbits)).toBits
|
|
|
|
val s1_tag_match_way = wayMap((w: Int) => s1_tag_eq_way(w) && tl.co.isValid(meta.io.resp(w).state)).toBits
|
2012-12-06 11:07:52 +01:00
|
|
|
s1_clk_en := metaReadArb.io.out.valid
|
2012-11-27 05:34:30 +01:00
|
|
|
val s1_writeback = s1_clk_en && !s1_valid && !s1_replay
|
2013-08-14 02:50:02 +02:00
|
|
|
val s2_tag_match_way = RegEnable(s1_tag_match_way, s1_clk_en)
|
2012-11-16 11:39:33 +01:00
|
|
|
val s2_tag_match = s2_tag_match_way.orR
|
2013-08-14 02:50:02 +02:00
|
|
|
val s2_hit_state = Mux1H(s2_tag_match_way, wayMap((w: Int) => RegEnable(meta.io.resp(w).state, s1_clk_en)))
|
2013-08-02 23:54:16 +02:00
|
|
|
val s2_hit = s2_tag_match && tl.co.isHit(s2_req.cmd, s2_hit_state) && s2_hit_state === tl.co.newStateOnHit(s2_req.cmd, s2_hit_state)
|
2012-11-27 05:34:30 +01:00
|
|
|
|
2013-04-04 07:15:39 +02:00
|
|
|
// load-reserved/store-conditional
|
2013-08-16 00:28:15 +02:00
|
|
|
val lrsc_count = Reg(init=UInt(0))
|
2013-04-08 04:27:21 +02:00
|
|
|
val lrsc_valid = lrsc_count.orR
|
2013-08-12 19:39:11 +02:00
|
|
|
val lrsc_addr = Reg(UInt())
|
2013-04-06 04:13:38 +02:00
|
|
|
val (s2_lr, s2_sc) = (s2_req.cmd === M_XLR, s2_req.cmd === M_XSC)
|
2013-04-08 04:27:21 +02:00
|
|
|
val s2_lrsc_addr_match = lrsc_valid && lrsc_addr === (s2_req.addr >> conf.offbits)
|
|
|
|
val s2_sc_fail = s2_sc && !s2_lrsc_addr_match
|
|
|
|
when (lrsc_valid) { lrsc_count := lrsc_count - 1 }
|
|
|
|
when (s2_valid_masked && s2_hit || s2_replay) {
|
|
|
|
when (s2_lr) {
|
|
|
|
when (!lrsc_valid) { lrsc_count := conf.lrsc_cycles-1 }
|
|
|
|
lrsc_addr := s2_req.addr >> conf.offbits
|
|
|
|
}
|
|
|
|
when (s2_sc) {
|
|
|
|
lrsc_count := 0
|
|
|
|
}
|
2013-04-04 07:15:39 +02:00
|
|
|
}
|
2013-11-25 13:35:15 +01:00
|
|
|
when (io.cpu.ptw.sret) { lrsc_count := 0 }
|
2013-04-04 07:15:39 +02:00
|
|
|
|
2014-04-02 02:15:46 +02:00
|
|
|
val s2_data = Vec.fill(conf.ways){Bits(width = conf.encrowbits)}
|
2012-11-27 05:34:30 +01:00
|
|
|
for (w <- 0 until conf.ways) {
|
2014-04-02 02:15:46 +02:00
|
|
|
val regs = Vec.fill(conf.rowwords){Reg(Bits(width = conf.encdatabits))}
|
2012-11-27 05:34:30 +01:00
|
|
|
val en1 = s1_clk_en && s1_tag_eq_way(w)
|
|
|
|
for (i <- 0 until regs.size) {
|
|
|
|
val en = en1 && (Bool(i == 0 || !conf.isNarrowRead) || s1_writeback)
|
2012-12-12 00:58:53 +01:00
|
|
|
when (en) { regs(i) := data.io.resp(w) >> conf.encdatabits*i }
|
2012-11-27 05:34:30 +01:00
|
|
|
}
|
2012-12-12 00:58:53 +01:00
|
|
|
s2_data(w) := regs.toBits
|
2012-11-27 05:34:30 +01:00
|
|
|
}
|
2012-12-12 00:58:53 +01:00
|
|
|
val s2_data_muxed = Mux1H(s2_tag_match_way, s2_data)
|
2014-04-02 02:15:46 +02:00
|
|
|
val s2_data_decoded = (0 until conf.rowwords).map(i => conf.code.decode(s2_data_muxed(conf.encdatabits*(i+1)-1,conf.encdatabits*i)))
|
2014-04-17 02:19:08 +02:00
|
|
|
val s2_data_corrected = Vec(s2_data_decoded.map(_.corrected)).toBits
|
|
|
|
val s2_data_uncorrected = Vec(s2_data_decoded.map(_.uncorrected)).toBits
|
2014-04-02 02:15:46 +02:00
|
|
|
val s2_word_idx = if (conf.isNarrowRead) UInt(0) else s2_req.addr(log2Up(conf.rowwords*conf.databytes)-1,3)
|
2014-04-17 02:19:08 +02:00
|
|
|
val s2_data_correctable = Vec(s2_data_decoded.map(_.correctable)).toBits()(s2_word_idx)
|
2012-01-19 00:07:36 +01:00
|
|
|
|
2012-11-20 10:32:33 +01:00
|
|
|
// store/amo hits
|
2013-04-08 04:27:21 +02:00
|
|
|
s3_valid := (s2_valid_masked && s2_hit || s2_replay) && !s2_sc_fail && isWrite(s2_req.cmd)
|
2013-08-12 19:39:11 +02:00
|
|
|
val amoalu = Module(new AMOALU)
|
2012-12-12 00:58:53 +01:00
|
|
|
when ((s2_valid || s2_replay) && (isWrite(s2_req.cmd) || s2_data_correctable)) {
|
2012-11-16 11:39:33 +01:00
|
|
|
s3_req := s2_req
|
2012-12-12 00:58:53 +01:00
|
|
|
s3_req.data := Mux(s2_data_correctable, s2_data_corrected, amoalu.io.out)
|
2012-11-16 11:39:33 +01:00
|
|
|
s3_way := s2_tag_match_way
|
2012-01-19 00:07:36 +01:00
|
|
|
}
|
|
|
|
|
2012-11-20 10:32:33 +01:00
|
|
|
writeArb.io.in(0).bits.addr := s3_req.addr
|
2014-04-08 03:22:46 +02:00
|
|
|
writeArb.io.in(0).bits.wmask := UInt(1) << (if(conf.rowoffbits > offsetlsb)
|
|
|
|
s3_req.addr(conf.rowoffbits-1,offsetlsb).toUInt
|
|
|
|
else UInt(0))
|
2014-04-02 02:15:46 +02:00
|
|
|
writeArb.io.in(0).bits.data := Fill(conf.rowwords, s3_req.data)
|
2012-11-20 10:32:33 +01:00
|
|
|
writeArb.io.in(0).valid := s3_valid
|
|
|
|
writeArb.io.in(0).bits.way_en := s3_way
|
|
|
|
|
|
|
|
// replacement policy
|
|
|
|
val replacer = new RandomReplacement
|
2013-08-12 19:39:11 +02:00
|
|
|
val s1_replaced_way_en = UIntToOH(replacer.way)
|
2013-08-14 02:50:02 +02:00
|
|
|
val s2_replaced_way_en = UIntToOH(RegEnable(replacer.way, s1_clk_en))
|
|
|
|
val s2_repl_meta = Mux1H(s2_replaced_way_en, wayMap((w: Int) => RegEnable(meta.io.resp(w), s1_clk_en && s1_replaced_way_en(w))).toSeq)
|
2012-11-20 10:32:33 +01:00
|
|
|
|
2012-01-19 00:07:36 +01:00
|
|
|
// miss handling
|
2013-08-02 19:06:01 +02:00
|
|
|
mshrs.io.req.valid := s2_valid_masked && !s2_hit && (isPrefetch(s2_req.cmd) || isRead(s2_req.cmd) || isWrite(s2_req.cmd))
|
|
|
|
mshrs.io.req.bits := s2_req
|
|
|
|
mshrs.io.req.bits.tag_match := s2_tag_match
|
2014-05-01 10:45:45 +02:00
|
|
|
mshrs.io.req.bits.old_meta := Mux(s2_tag_match, L1MetaData(s2_repl_meta.tag, s2_hit_state), s2_repl_meta)
|
2013-08-02 19:06:01 +02:00
|
|
|
mshrs.io.req.bits.way_en := Mux(s2_tag_match, s2_tag_match_way, s2_replaced_way_en)
|
|
|
|
mshrs.io.req.bits.data := s2_req.data
|
2014-03-29 18:59:07 +01:00
|
|
|
when (mshrs.io.req.fire()) { replacer.miss }
|
2013-08-02 19:06:01 +02:00
|
|
|
|
2014-03-29 18:59:07 +01:00
|
|
|
io.mem.acquire <> DecoupledLogicalNetworkIOWrapper(mshrs.io.mem_req)
|
2013-03-01 03:11:40 +01:00
|
|
|
|
2012-01-19 00:07:36 +01:00
|
|
|
// replays
|
2013-08-02 19:06:01 +02:00
|
|
|
readArb.io.in(1).valid := mshrs.io.replay.valid
|
|
|
|
readArb.io.in(1).bits := mshrs.io.replay.bits
|
2013-08-12 19:39:11 +02:00
|
|
|
readArb.io.in(1).bits.way_en := SInt(-1)
|
2013-08-02 19:06:01 +02:00
|
|
|
mshrs.io.replay.ready := readArb.io.in(1).ready
|
|
|
|
s1_replay := mshrs.io.replay.valid && readArb.io.in(1).ready
|
|
|
|
metaReadArb.io.in(1) <> mshrs.io.meta_read
|
|
|
|
metaWriteArb.io.in(0) <> mshrs.io.meta_write
|
2014-04-08 03:22:46 +02:00
|
|
|
|
2012-04-16 07:56:02 +02:00
|
|
|
// probes
|
2013-08-12 19:39:11 +02:00
|
|
|
val releaseArb = Module(new Arbiter(new Release, 2))
|
2014-03-29 18:59:07 +01:00
|
|
|
DecoupledLogicalNetworkIOWrapper(releaseArb.io.out) <> io.mem.release
|
2013-03-01 03:11:40 +01:00
|
|
|
|
2014-03-29 18:59:07 +01:00
|
|
|
val probe = DecoupledLogicalNetworkIOUnwrapper(io.mem.probe)
|
2013-04-08 04:27:21 +02:00
|
|
|
prober.io.req.valid := probe.valid && !lrsc_valid
|
|
|
|
probe.ready := prober.io.req.ready && !lrsc_valid
|
|
|
|
prober.io.req.bits := probe.bits
|
2013-03-01 03:11:40 +01:00
|
|
|
prober.io.rep <> releaseArb.io.in(1)
|
2012-11-16 11:39:33 +01:00
|
|
|
prober.io.way_en := s2_tag_match_way
|
|
|
|
prober.io.line_state := s2_hit_state
|
2012-12-12 00:58:53 +01:00
|
|
|
prober.io.meta_read <> metaReadArb.io.in(2)
|
2012-11-20 13:09:26 +01:00
|
|
|
prober.io.meta_write <> metaWriteArb.io.in(1)
|
2013-08-02 19:06:01 +02:00
|
|
|
prober.io.mshr_rdy := mshrs.io.probe_rdy
|
2012-01-19 00:07:36 +01:00
|
|
|
|
2012-11-20 10:32:33 +01:00
|
|
|
// refills
|
2014-04-08 03:22:46 +02:00
|
|
|
def doRefill(g: Grant): Bool = tl.co.messageUpdatesDataArray(g)
|
|
|
|
val refill = if(conf.refillcycles > 1) {
|
|
|
|
val ser = Module(new FlowThroughSerializer(io.mem.grant.bits, conf.refillcycles, doRefill))
|
|
|
|
ser.io.in <> io.mem.grant
|
|
|
|
ser.io.out
|
|
|
|
} else io.mem.grant
|
|
|
|
mshrs.io.mem_grant.valid := refill.fire()
|
|
|
|
mshrs.io.mem_grant.bits := refill.bits
|
|
|
|
refill.ready := writeArb.io.in(1).ready || !doRefill(refill.bits.payload)
|
|
|
|
writeArb.io.in(1).valid := refill.valid && doRefill(refill.bits.payload)
|
2013-08-02 19:06:01 +02:00
|
|
|
writeArb.io.in(1).bits := mshrs.io.mem_resp
|
2013-08-12 19:39:11 +02:00
|
|
|
writeArb.io.in(1).bits.wmask := SInt(-1)
|
2014-04-08 03:22:46 +02:00
|
|
|
writeArb.io.in(1).bits.data := refill.bits.payload.data(conf.encrowbits-1,0)
|
|
|
|
readArb.io.out.ready := !refill.valid || refill.ready // insert bubble if refill gets blocked
|
|
|
|
readArb.io.out <> data.io.read
|
2012-11-20 10:32:33 +01:00
|
|
|
|
|
|
|
// writebacks
|
2014-03-29 18:59:07 +01:00
|
|
|
val wbArb = Module(new Arbiter(new WritebackReq, 2))
|
|
|
|
prober.io.wb_req <> wbArb.io.in(0)
|
|
|
|
mshrs.io.wb_req <> wbArb.io.in(1)
|
|
|
|
wbArb.io.out <> wb.io.req
|
2012-12-12 00:58:53 +01:00
|
|
|
wb.io.meta_read <> metaReadArb.io.in(3)
|
|
|
|
wb.io.data_req <> readArb.io.in(2)
|
|
|
|
wb.io.data_resp := s2_data_corrected
|
2013-03-01 03:11:40 +01:00
|
|
|
releaseArb.io.in(0) <> wb.io.release
|
2012-11-20 10:32:33 +01:00
|
|
|
|
|
|
|
// store->load bypassing
|
2013-08-16 00:28:15 +02:00
|
|
|
val s4_valid = Reg(next=s3_valid, init=Bool(false))
|
2013-08-14 02:50:02 +02:00
|
|
|
val s4_req = RegEnable(s3_req, s3_valid && metaReadArb.io.out.valid)
|
2012-11-20 10:32:33 +01:00
|
|
|
val bypasses = List(
|
2013-04-08 04:27:21 +02:00
|
|
|
((s2_valid_masked || s2_replay) && !s2_sc_fail, s2_req, amoalu.io.out),
|
2012-11-20 10:32:33 +01:00
|
|
|
(s3_valid, s3_req, s3_req.data),
|
|
|
|
(s4_valid, s4_req, s4_req.data)
|
2012-12-06 11:07:52 +01:00
|
|
|
).map(r => (r._1 && (s1_addr >> conf.wordoffbits === r._2.addr >> conf.wordoffbits) && isWrite(r._2.cmd), r._3))
|
2013-08-12 19:39:11 +02:00
|
|
|
val s2_store_bypass_data = Reg(Bits(width = conf.databits))
|
|
|
|
val s2_store_bypass = Reg(Bool())
|
2012-11-27 05:34:30 +01:00
|
|
|
when (s1_clk_en) {
|
2012-12-06 11:07:52 +01:00
|
|
|
s2_store_bypass := false
|
2012-11-27 05:34:30 +01:00
|
|
|
when (bypasses.map(_._1).reduce(_||_)) {
|
2013-12-10 04:52:47 +01:00
|
|
|
s2_store_bypass_data := PriorityMux(bypasses)
|
2012-12-06 11:07:52 +01:00
|
|
|
s2_store_bypass := true
|
2012-11-27 05:34:30 +01:00
|
|
|
}
|
2012-11-20 10:32:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// load data subword mux/sign extension
|
2012-12-12 00:58:53 +01:00
|
|
|
val s2_data_word_prebypass = s2_data_uncorrected >> Cat(s2_word_idx, Bits(0,log2Up(conf.databits)))
|
2012-12-06 11:07:52 +01:00
|
|
|
val s2_data_word = Mux(s2_store_bypass, s2_store_bypass_data, s2_data_word_prebypass)
|
2014-01-16 09:15:48 +01:00
|
|
|
val loadgen = new LoadGen(s2_req.typ, s2_req.addr, s2_data_word, s2_sc)
|
2012-11-16 11:39:33 +01:00
|
|
|
|
|
|
|
amoalu.io := s2_req
|
2012-11-20 10:32:33 +01:00
|
|
|
amoalu.io.lhs := s2_data_word
|
2012-11-16 11:39:33 +01:00
|
|
|
amoalu.io.rhs := s2_req.data
|
|
|
|
|
2012-11-20 10:32:33 +01:00
|
|
|
// nack it like it's hot
|
|
|
|
val s1_nack = dtlb.io.req.valid && dtlb.io.resp.miss ||
|
2013-05-02 01:34:45 +02:00
|
|
|
s1_req.addr(indexmsb,indexlsb) === prober.io.meta_write.bits.idx && !prober.io.req.ready
|
2013-08-14 02:50:02 +02:00
|
|
|
val s2_nack_hit = RegEnable(s1_nack, s1_valid || s1_replay)
|
2013-08-02 19:06:01 +02:00
|
|
|
when (s2_nack_hit) { mshrs.io.req.valid := Bool(false) }
|
|
|
|
val s2_nack_victim = s2_hit && mshrs.io.secondary_miss
|
|
|
|
val s2_nack_miss = !s2_hit && !mshrs.io.req.ready
|
2013-09-13 01:07:30 +02:00
|
|
|
val s2_nack = s2_nack_hit || s2_nack_victim || s2_nack_miss
|
2012-11-16 11:39:33 +01:00
|
|
|
s2_valid_masked := s2_valid && !s2_nack
|
|
|
|
|
2012-12-12 00:58:53 +01:00
|
|
|
val s2_recycle_ecc = (s2_valid || s2_replay) && s2_hit && s2_data_correctable
|
2013-08-16 00:28:15 +02:00
|
|
|
val s2_recycle_next = Reg(init=Bool(false))
|
2012-12-12 00:58:53 +01:00
|
|
|
when (s1_valid || s1_replay) { s2_recycle_next := (s1_valid || s1_replay) && s2_recycle_ecc }
|
|
|
|
s2_recycle := s2_recycle_ecc || s2_recycle_next
|
|
|
|
|
2012-11-20 10:32:33 +01:00
|
|
|
// after a nack, block until nack condition resolves to save energy
|
2013-08-16 00:28:15 +02:00
|
|
|
val block_miss = Reg(init=Bool(false))
|
2012-11-16 11:39:33 +01:00
|
|
|
block_miss := (s2_valid || block_miss) && s2_nack_miss
|
2013-09-13 01:07:30 +02:00
|
|
|
when (block_miss) {
|
2012-11-16 11:39:33 +01:00
|
|
|
io.cpu.req.ready := Bool(false)
|
|
|
|
}
|
|
|
|
|
2013-09-15 07:34:53 +02:00
|
|
|
io.cpu.resp.valid := (s2_replay || s2_valid_masked && s2_hit) && !s2_data_correctable
|
2012-11-16 11:39:33 +01:00
|
|
|
io.cpu.resp.bits.nack := s2_valid && s2_nack
|
2012-11-17 06:26:12 +01:00
|
|
|
io.cpu.resp.bits := s2_req
|
2013-09-15 07:34:53 +02:00
|
|
|
io.cpu.resp.bits.has_data := isRead(s2_req.cmd) || s2_sc
|
|
|
|
io.cpu.resp.bits.replay := s2_replay
|
2012-11-06 08:52:32 +01:00
|
|
|
io.cpu.resp.bits.data := loadgen.word
|
2014-01-16 09:15:48 +01:00
|
|
|
io.cpu.resp.bits.data_subword := loadgen.byte | s2_sc_fail
|
2012-11-17 06:15:13 +01:00
|
|
|
io.cpu.resp.bits.store_data := s2_req.data
|
2013-09-13 01:07:30 +02:00
|
|
|
io.cpu.ordered := mshrs.io.fence_rdy && !s1_valid && !s2_valid
|
2013-04-08 04:27:21 +02:00
|
|
|
|
2014-01-16 09:16:09 +01:00
|
|
|
io.cpu.replay_next.valid := s1_replay && (s1_read || s1_sc)
|
|
|
|
io.cpu.replay_next.bits := s1_req.tag
|
|
|
|
|
2014-04-27 00:18:21 +02:00
|
|
|
io.mem.finish <> mshrs.io.mem_finish
|
2011-12-10 04:42:58 +01:00
|
|
|
}
|
2013-09-15 07:34:53 +02:00
|
|
|
|
|
|
|
// exposes a sane decoupled request interface
|
|
|
|
class SimpleHellaCacheIF(implicit conf: DCacheConfig) extends Module
|
|
|
|
{
|
|
|
|
val io = new Bundle {
|
|
|
|
val requestor = new HellaCacheIO().flip
|
|
|
|
val cache = new HellaCacheIO
|
|
|
|
}
|
|
|
|
|
|
|
|
val replaying_cmb = Bool()
|
|
|
|
val replaying = Reg(next = replaying_cmb, init = Bool(false))
|
|
|
|
replaying_cmb := replaying
|
|
|
|
|
|
|
|
val replayq1 = Module(new Queue(new HellaCacheReq, 1, flow = true))
|
|
|
|
val replayq2 = Module(new Queue(new HellaCacheReq, 1))
|
|
|
|
val req_arb = Module(new Arbiter(new HellaCacheReq, 2))
|
|
|
|
|
|
|
|
req_arb.io.in(0) <> replayq1.io.deq
|
|
|
|
req_arb.io.in(1).valid := !replaying_cmb && io.requestor.req.valid
|
|
|
|
req_arb.io.in(1).bits := io.requestor.req.bits
|
|
|
|
io.requestor.req.ready := !replaying_cmb && req_arb.io.in(1).ready
|
|
|
|
|
|
|
|
val s2_nack = io.cache.resp.bits.nack
|
|
|
|
val s3_nack = Reg(next=s2_nack)
|
|
|
|
|
|
|
|
val s0_req_fire = io.cache.req.fire()
|
|
|
|
val s1_req_fire = Reg(next=s0_req_fire)
|
|
|
|
val s2_req_fire = Reg(next=s1_req_fire)
|
|
|
|
|
|
|
|
io.cache.req.bits.kill := s2_nack
|
|
|
|
io.cache.req.bits.phys := Bool(true)
|
|
|
|
io.cache.req.bits.data := RegEnable(req_arb.io.out.bits.data, s0_req_fire)
|
|
|
|
io.cache.req <> req_arb.io.out
|
|
|
|
|
|
|
|
// replay queues
|
|
|
|
// replayq1 holds the older request
|
|
|
|
// replayq2 holds the newer request (for the first nack)
|
|
|
|
// we need to split the queues like this for the case where the older request
|
|
|
|
// goes through but gets nacked, while the newer request stalls
|
|
|
|
// if this happens, the newer request will go through before the older
|
|
|
|
// request
|
|
|
|
// we don't need to check replayq1.io.enq.ready and replayq2.io.enq.ready as
|
|
|
|
// there will only be two requests going through at most
|
|
|
|
|
|
|
|
// stash d$ request in stage 2 if nacked (older request)
|
|
|
|
replayq1.io.enq.valid := Bool(false)
|
|
|
|
replayq1.io.enq.bits.cmd := io.cache.resp.bits.cmd
|
|
|
|
replayq1.io.enq.bits.typ := io.cache.resp.bits.typ
|
|
|
|
replayq1.io.enq.bits.addr := io.cache.resp.bits.addr
|
|
|
|
replayq1.io.enq.bits.data := io.cache.resp.bits.store_data
|
|
|
|
replayq1.io.enq.bits.tag := io.cache.resp.bits.tag
|
|
|
|
|
|
|
|
// stash d$ request in stage 1 if nacked (newer request)
|
|
|
|
replayq2.io.enq.valid := s2_req_fire && s3_nack
|
|
|
|
replayq2.io.enq.bits.data := io.cache.resp.bits.store_data
|
|
|
|
replayq2.io.enq.bits <> io.cache.resp.bits
|
|
|
|
replayq2.io.deq.ready := Bool(false)
|
|
|
|
|
|
|
|
when (s2_nack) {
|
|
|
|
replayq1.io.enq.valid := Bool(true)
|
|
|
|
replaying_cmb := Bool(true)
|
|
|
|
}
|
|
|
|
|
|
|
|
// when replaying request got sunk into the d$
|
|
|
|
when (s2_req_fire && Reg(next=Reg(next=replaying_cmb)) && !s2_nack) {
|
|
|
|
// see if there's a stashed request in replayq2
|
|
|
|
when (replayq2.io.deq.valid) {
|
|
|
|
replayq1.io.enq.valid := Bool(true)
|
|
|
|
replayq1.io.enq.bits.cmd := replayq2.io.deq.bits.cmd
|
|
|
|
replayq1.io.enq.bits.typ := replayq2.io.deq.bits.typ
|
|
|
|
replayq1.io.enq.bits.addr := replayq2.io.deq.bits.addr
|
|
|
|
replayq1.io.enq.bits.data := replayq2.io.deq.bits.data
|
|
|
|
replayq1.io.enq.bits.tag := replayq2.io.deq.bits.tag
|
|
|
|
replayq2.io.deq.ready := Bool(true)
|
|
|
|
} .otherwise {
|
|
|
|
replaying_cmb := Bool(false)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
io.requestor.resp := io.cache.resp
|
|
|
|
}
|