2014-09-13 03:06:41 +02:00
|
|
|
// See LICENSE for license details.
|
|
|
|
|
2012-02-26 02:09:26 +01:00
|
|
|
package rocket
|
2011-11-09 23:52:17 +01:00
|
|
|
|
2012-10-08 05:15:54 +02:00
|
|
|
import Chisel._
|
2014-04-02 02:15:46 +02:00
|
|
|
import uncore._
|
2012-11-27 05:38:45 +01:00
|
|
|
import Util._
|
2011-11-09 23:52:17 +01:00
|
|
|
|
2015-03-14 10:49:07 +01:00
|
|
|
class PTWReq extends CoreBundle {
|
|
|
|
val addr = UInt(width = vpnBits)
|
2015-03-28 00:20:59 +01:00
|
|
|
val prv = Bits(width = 2)
|
|
|
|
val store = Bool()
|
|
|
|
val fetch = Bool()
|
2015-03-14 10:49:07 +01:00
|
|
|
}
|
|
|
|
|
2015-02-02 05:04:13 +01:00
|
|
|
class PTWResp extends CoreBundle {
|
2014-04-02 02:15:46 +02:00
|
|
|
val error = Bool()
|
2015-03-22 04:12:25 +01:00
|
|
|
val pte = new PTE
|
2013-08-12 19:39:11 +02:00
|
|
|
}
|
|
|
|
|
2015-02-02 05:04:13 +01:00
|
|
|
class TLBPTWIO extends CoreBundle {
|
2015-03-14 10:49:07 +01:00
|
|
|
val req = Decoupled(new PTWReq)
|
2013-08-12 19:39:11 +02:00
|
|
|
val resp = Valid(new PTWResp).flip
|
2015-03-14 10:49:07 +01:00
|
|
|
val status = new MStatus().asInput
|
2012-11-06 17:13:44 +01:00
|
|
|
val invalidate = Bool(INPUT)
|
|
|
|
}
|
|
|
|
|
2015-02-02 05:04:13 +01:00
|
|
|
class DatapathPTWIO extends CoreBundle {
|
|
|
|
val ptbr = UInt(INPUT, paddrBits)
|
2012-11-06 17:13:44 +01:00
|
|
|
val invalidate = Bool(INPUT)
|
2015-03-14 10:49:07 +01:00
|
|
|
val status = new MStatus().asInput
|
2011-11-09 23:52:17 +01:00
|
|
|
}
|
|
|
|
|
2015-03-22 04:12:25 +01:00
|
|
|
class PTE extends CoreBundle {
|
|
|
|
val ppn = Bits(width = ppnBits)
|
2015-05-19 03:23:58 +02:00
|
|
|
val reserved_for_software = Bits(width = 3)
|
2015-03-22 04:12:25 +01:00
|
|
|
val d = Bool()
|
|
|
|
val r = Bool()
|
2015-05-19 03:23:58 +02:00
|
|
|
val typ = Bits(width = 4)
|
|
|
|
val v = Bool()
|
|
|
|
|
|
|
|
def table(dummy: Int = 0) = v && typ < 2
|
|
|
|
def leaf(dummy: Int = 0) = v && typ >= 2
|
|
|
|
def ur(dummy: Int = 0) = leaf() && typ < 8
|
|
|
|
def uw(dummy: Int = 0) = ur() && typ(0)
|
|
|
|
def ux(dummy: Int = 0) = ur() && typ(1)
|
|
|
|
def sr(dummy: Int = 0) = leaf()
|
|
|
|
def sw(dummy: Int = 0) = leaf() && typ(0)
|
|
|
|
def sx(dummy: Int = 0) = v && typ >= 4 && typ(1)
|
2015-03-28 00:20:59 +01:00
|
|
|
def access_ok(prv: Bits, store: Bool, fetch: Bool) =
|
|
|
|
Mux(prv(0), Mux(fetch, sx(), Mux(store, sw(), sr())), Mux(fetch, ux(), Mux(store, uw(), ur())))
|
2015-03-22 04:12:25 +01:00
|
|
|
}
|
|
|
|
|
2015-02-02 05:04:13 +01:00
|
|
|
class PTW(n: Int) extends CoreModule
|
2011-11-09 23:52:17 +01:00
|
|
|
{
|
2012-11-06 17:13:44 +01:00
|
|
|
val io = new Bundle {
|
2015-09-12 00:43:07 +02:00
|
|
|
val requestor = Vec(new TLBPTWIO, n).flip
|
2014-08-08 21:23:02 +02:00
|
|
|
val mem = new HellaCacheIO
|
2013-01-07 22:38:59 +01:00
|
|
|
val dpath = new DatapathPTWIO
|
2012-11-06 17:13:44 +01:00
|
|
|
}
|
2011-11-09 23:52:17 +01:00
|
|
|
|
2015-03-14 10:49:07 +01:00
|
|
|
val s_ready :: s_req :: s_wait :: s_set_dirty :: s_wait_dirty :: s_done :: s_error :: Nil = Enum(UInt(), 7)
|
2013-08-16 00:28:15 +02:00
|
|
|
val state = Reg(init=s_ready)
|
2015-03-28 00:20:59 +01:00
|
|
|
val count = Reg(UInt(width = log2Up(pgLevels)))
|
2012-11-27 05:38:45 +01:00
|
|
|
|
2015-03-14 10:49:07 +01:00
|
|
|
val r_req = Reg(new PTWReq)
|
2013-08-12 19:39:11 +02:00
|
|
|
val r_req_dest = Reg(Bits())
|
2015-03-22 04:12:25 +01:00
|
|
|
val r_pte = Reg(new PTE)
|
2011-11-09 23:52:17 +01:00
|
|
|
|
2015-03-28 00:20:59 +01:00
|
|
|
val vpn_idx = Vec((0 until pgLevels).map(i => (r_req.addr >> (pgLevels-i-1)*pgLevelBits)(pgLevelBits-1,0)))(count)
|
2012-03-18 07:00:51 +01:00
|
|
|
|
2015-03-14 10:49:07 +01:00
|
|
|
val arb = Module(new RRArbiter(new PTWReq, n))
|
2012-10-10 06:35:03 +02:00
|
|
|
arb.io.in <> io.requestor.map(_.req)
|
|
|
|
arb.io.out.ready := state === s_ready
|
|
|
|
|
2015-03-22 04:12:25 +01:00
|
|
|
val pte = new PTE().fromBits(io.mem.resp.bits.data)
|
|
|
|
val pte_addr = Cat(r_pte.ppn, vpn_idx).toUInt << log2Up(xLen/8)
|
|
|
|
|
2012-10-10 06:35:03 +02:00
|
|
|
when (arb.io.out.fire()) {
|
2015-03-14 10:49:07 +01:00
|
|
|
r_req := arb.io.out.bits
|
2012-10-10 06:35:03 +02:00
|
|
|
r_req_dest := arb.io.chosen
|
2015-03-22 04:12:25 +01:00
|
|
|
r_pte.ppn := io.dpath.ptbr(paddrBits-1,pgIdxBits)
|
2011-11-10 09:23:29 +01:00
|
|
|
}
|
2012-03-17 01:14:43 +01:00
|
|
|
|
2015-03-22 04:12:25 +01:00
|
|
|
val (pte_cache_hit, pte_cache_data) = {
|
2015-03-28 00:20:59 +01:00
|
|
|
val size = log2Up(pgLevels * 2)
|
2015-03-22 04:12:25 +01:00
|
|
|
val plru = new PseudoLRU(size)
|
2015-07-31 08:52:42 +02:00
|
|
|
val valid = Reg(Vec(Bool(), size))
|
2015-07-30 00:03:13 +02:00
|
|
|
val validBits = valid.toBits
|
2015-09-30 23:36:26 +02:00
|
|
|
val tags = Mem(size, UInt(width = paddrBits))
|
|
|
|
val data = Mem(size, UInt(width = ppnBits))
|
2015-03-22 04:12:25 +01:00
|
|
|
|
2015-07-30 00:03:13 +02:00
|
|
|
val hits = Vec(tags.map(_ === pte_addr)).toBits & validBits
|
2015-03-22 04:12:25 +01:00
|
|
|
val hit = hits.orR
|
2015-03-28 00:20:59 +01:00
|
|
|
when (io.mem.resp.valid && pte.table() && !hit) {
|
2015-07-30 00:03:13 +02:00
|
|
|
val r = Mux(validBits.andR, plru.replace, PriorityEncoder(~validBits))
|
2015-03-22 04:12:25 +01:00
|
|
|
valid(r) := true
|
|
|
|
tags(r) := pte_addr
|
2015-03-28 00:20:59 +01:00
|
|
|
data(r) := pte.ppn
|
2015-03-22 04:12:25 +01:00
|
|
|
}
|
|
|
|
when (hit && state === s_req) { plru.access(OHToUInt(hits)) }
|
2015-07-30 00:03:13 +02:00
|
|
|
when (reset || io.dpath.invalidate) { valid.foreach(_ := false) }
|
2015-03-22 04:12:25 +01:00
|
|
|
|
|
|
|
(hit, Mux1H(hits, data))
|
|
|
|
}
|
|
|
|
|
2015-03-28 00:20:59 +01:00
|
|
|
val perm_ok = pte.access_ok(r_req.prv, r_req.store, r_req.fetch)
|
|
|
|
val set_dirty_bit = perm_ok && (!pte.r || (r_req.store && !pte.d))
|
2015-03-14 10:49:07 +01:00
|
|
|
when (io.mem.resp.valid && state === s_wait && !set_dirty_bit) {
|
|
|
|
r_pte := pte
|
2011-11-09 23:52:17 +01:00
|
|
|
}
|
2015-03-28 00:20:59 +01:00
|
|
|
|
2015-07-16 05:24:18 +02:00
|
|
|
val pte_wdata = Wire(init=new PTE().fromBits(0))
|
2015-03-28 00:20:59 +01:00
|
|
|
pte_wdata.r := true
|
|
|
|
pte_wdata.d := r_req.store
|
2011-11-09 23:52:17 +01:00
|
|
|
|
2015-03-14 10:49:07 +01:00
|
|
|
io.mem.req.valid := state === s_req || state === s_set_dirty
|
2012-11-06 17:13:44 +01:00
|
|
|
io.mem.req.bits.phys := Bool(true)
|
2015-03-14 10:49:07 +01:00
|
|
|
io.mem.req.bits.cmd := Mux(state === s_set_dirty, M_XA_OR, M_XRD)
|
2012-05-02 03:23:04 +02:00
|
|
|
io.mem.req.bits.typ := MT_D
|
2015-03-22 04:12:25 +01:00
|
|
|
io.mem.req.bits.addr := pte_addr
|
2012-05-02 03:23:04 +02:00
|
|
|
io.mem.req.bits.kill := Bool(false)
|
2015-03-28 00:20:59 +01:00
|
|
|
io.mem.req.bits.data := pte_wdata.toBits
|
2011-11-10 06:54:11 +01:00
|
|
|
|
2015-03-14 10:49:07 +01:00
|
|
|
val resp_err = state === s_error
|
|
|
|
val resp_val = state === s_done || resp_err
|
2012-11-27 05:38:45 +01:00
|
|
|
|
2015-08-06 00:28:31 +02:00
|
|
|
val r_resp_ppn = io.mem.req.bits.addr >> pgIdxBits
|
2015-03-28 00:20:59 +01:00
|
|
|
val resp_ppn = Vec((0 until pgLevels-1).map(i => Cat(r_resp_ppn >> pgLevelBits*(pgLevels-i-1), r_req.addr(pgLevelBits*(pgLevels-i-1)-1,0))) :+ r_resp_ppn)(count)
|
2012-05-03 11:29:09 +02:00
|
|
|
|
|
|
|
for (i <- 0 until io.requestor.size) {
|
2013-08-12 19:39:11 +02:00
|
|
|
val me = r_req_dest === UInt(i)
|
2012-10-10 06:35:03 +02:00
|
|
|
io.requestor(i).resp.valid := resp_val && me
|
|
|
|
io.requestor(i).resp.bits.error := resp_err
|
2015-03-22 04:12:25 +01:00
|
|
|
io.requestor(i).resp.bits.pte := r_pte
|
|
|
|
io.requestor(i).resp.bits.pte.ppn := resp_ppn
|
2012-11-06 17:13:44 +01:00
|
|
|
io.requestor(i).invalidate := io.dpath.invalidate
|
|
|
|
io.requestor(i).status := io.dpath.status
|
2012-05-03 11:29:09 +02:00
|
|
|
}
|
2011-11-09 23:52:17 +01:00
|
|
|
|
|
|
|
// control state machine
|
|
|
|
switch (state) {
|
|
|
|
is (s_ready) {
|
2012-10-10 06:35:03 +02:00
|
|
|
when (arb.io.out.valid) {
|
2014-01-14 06:43:56 +01:00
|
|
|
state := s_req
|
2011-12-10 09:42:09 +01:00
|
|
|
}
|
2013-08-12 19:39:11 +02:00
|
|
|
count := UInt(0)
|
2011-11-09 23:52:17 +01:00
|
|
|
}
|
2012-05-01 10:24:36 +02:00
|
|
|
is (s_req) {
|
2015-03-28 00:20:59 +01:00
|
|
|
when (pte_cache_hit && count < pgLevels-1) {
|
2015-03-22 04:12:25 +01:00
|
|
|
io.mem.req.valid := false
|
|
|
|
state := s_req
|
|
|
|
count := count + 1
|
|
|
|
r_pte.ppn := pte_cache_data
|
|
|
|
}.elsewhen (io.mem.req.ready) {
|
2014-01-14 06:43:56 +01:00
|
|
|
state := s_wait
|
2011-11-09 23:52:17 +01:00
|
|
|
}
|
|
|
|
}
|
2012-05-01 10:24:36 +02:00
|
|
|
is (s_wait) {
|
2012-05-02 03:23:04 +02:00
|
|
|
when (io.mem.resp.bits.nack) {
|
2012-05-01 10:24:36 +02:00
|
|
|
state := s_req
|
2011-12-10 09:42:09 +01:00
|
|
|
}
|
2012-11-16 11:39:33 +01:00
|
|
|
when (io.mem.resp.valid) {
|
2013-08-24 06:16:28 +02:00
|
|
|
state := s_error
|
2015-03-28 00:20:59 +01:00
|
|
|
when (pte.table() && count < pgLevels-1) {
|
|
|
|
state := s_req
|
|
|
|
count := count + 1
|
|
|
|
}
|
|
|
|
when (pte.leaf()) {
|
|
|
|
state := Mux(set_dirty_bit, s_set_dirty, s_done)
|
2011-11-09 23:52:17 +01:00
|
|
|
}
|
|
|
|
}
|
2012-05-01 10:24:36 +02:00
|
|
|
}
|
2015-03-14 10:49:07 +01:00
|
|
|
is (s_set_dirty) {
|
|
|
|
when (io.mem.req.ready) {
|
|
|
|
state := s_wait_dirty
|
|
|
|
}
|
|
|
|
}
|
|
|
|
is (s_wait_dirty) {
|
|
|
|
when (io.mem.resp.bits.nack) {
|
|
|
|
state := s_set_dirty
|
|
|
|
}
|
|
|
|
when (io.mem.resp.valid) {
|
|
|
|
state := s_req
|
|
|
|
}
|
|
|
|
}
|
2011-11-09 23:52:17 +01:00
|
|
|
is (s_done) {
|
2014-01-14 06:43:56 +01:00
|
|
|
state := s_ready
|
2011-11-09 23:52:17 +01:00
|
|
|
}
|
|
|
|
is (s_error) {
|
2014-01-14 06:43:56 +01:00
|
|
|
state := s_ready
|
2011-11-09 23:52:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|