1
0
rocket-chip/rocket/src/main/scala/ptw.scala

127 lines
3.4 KiB
Scala
Raw Normal View History

package rocket
2011-11-09 23:52:17 +01:00
2012-10-08 05:15:54 +02:00
import Chisel._
import uncore.constants.AddressConstants._
import uncore.constants.MemoryOpConstants._
import Util._
2011-11-09 23:52:17 +01:00
2013-08-12 19:39:11 +02:00
class PTWResp extends Bundle {
val error = Bool()
2013-08-12 19:39:11 +02:00
val ppn = UInt(width = PPN_BITS)
val perm = Bits(width = PERM_BITS)
2013-08-12 19:39:11 +02:00
}
class TLBPTWIO extends Bundle {
val req = Decoupled(UInt(width = VPN_BITS))
val resp = Valid(new PTWResp).flip
2012-11-27 10:28:06 +01:00
val status = new Status().asInput
val invalidate = Bool(INPUT)
2013-11-25 13:35:15 +01:00
val sret = Bool(INPUT)
}
2013-01-07 22:38:59 +01:00
class DatapathPTWIO extends Bundle {
2013-08-12 19:39:11 +02:00
val ptbr = UInt(INPUT, PADDR_BITS)
val invalidate = Bool(INPUT)
2013-11-25 13:35:15 +01:00
val sret = Bool(INPUT)
2012-11-27 10:28:06 +01:00
val status = new Status().asInput
2011-11-09 23:52:17 +01:00
}
2013-08-12 19:39:11 +02:00
class PTW(n: Int)(implicit conf: RocketConfiguration) extends Module
2011-11-09 23:52:17 +01:00
{
val io = new Bundle {
2013-08-12 19:39:11 +02:00
val requestor = Vec.fill(n){new TLBPTWIO}.flip
2013-01-07 22:38:59 +01:00
val mem = new HellaCacheIO()(conf.dcache)
val dpath = new DatapathPTWIO
}
2011-11-09 23:52:17 +01:00
val levels = 3
val bitsPerLevel = VPN_BITS/levels
require(VPN_BITS == levels * bitsPerLevel)
2013-09-10 19:51:35 +02:00
val s_ready :: s_req :: s_wait :: s_done :: s_error :: Nil = Enum(UInt(), 5)
2013-08-16 00:28:15 +02:00
val state = Reg(init=s_ready)
2013-08-12 19:39:11 +02:00
val count = Reg(UInt(width = log2Up(levels)))
2013-08-12 19:39:11 +02:00
val r_req_vpn = Reg(Bits())
val r_req_dest = Reg(Bits())
val r_pte = Reg(Bits())
2011-11-09 23:52:17 +01:00
2012-11-27 11:42:27 +01:00
val vpn_idx = AVec((0 until levels).map(i => (r_req_vpn >> (levels-i-1)*bitsPerLevel)(bitsPerLevel-1,0)))(count)
2012-03-18 07:00:51 +01:00
2013-08-12 19:39:11 +02:00
val arb = Module(new RRArbiter(UInt(width = VPN_BITS), n))
2012-10-10 06:35:03 +02:00
arb.io.in <> io.requestor.map(_.req)
arb.io.out.ready := state === s_ready
when (arb.io.out.fire()) {
r_req_vpn := arb.io.out.bits
r_req_dest := arb.io.chosen
2012-11-27 11:42:27 +01:00
r_pte := Cat(io.dpath.ptbr(PADDR_BITS-1,PGIDX_BITS), io.mem.resp.bits.data(PGIDX_BITS-1,0))
2011-11-10 09:23:29 +01:00
}
when (io.mem.resp.valid) {
2012-11-27 11:42:27 +01:00
r_pte := io.mem.resp.bits.data
2011-11-09 23:52:17 +01:00
}
io.mem.req.valid := state === s_req
io.mem.req.bits.phys := Bool(true)
io.mem.req.bits.cmd := M_XRD
io.mem.req.bits.typ := MT_D
2013-08-12 19:39:11 +02:00
io.mem.req.bits.addr := Cat(r_pte(PADDR_BITS-1,PGIDX_BITS), vpn_idx).toUInt << log2Up(conf.xprlen/8)
io.mem.req.bits.kill := Bool(false)
2012-10-10 06:35:03 +02:00
val resp_val = state === s_done || state === s_error
val resp_err = state === s_error || state === s_wait
2012-11-27 11:42:27 +01:00
val r_resp_ppn = io.mem.req.bits.addr >> PGIDX_BITS
val resp_ppn = AVec((0 until levels-1).map(i => Cat(r_resp_ppn >> bitsPerLevel*(levels-i-1), r_req_vpn(bitsPerLevel*(levels-i-1)-1,0))) :+ r_resp_ppn)(count)
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
2013-08-24 06:16:28 +02:00
io.requestor(i).resp.bits.perm := r_pte(8,3)
2013-08-12 19:39:11 +02:00
io.requestor(i).resp.bits.ppn := resp_ppn.toUInt
io.requestor(i).invalidate := io.dpath.invalidate
2013-11-25 13:35:15 +01:00
io.requestor(i).sret := io.dpath.sret
io.requestor(i).status := io.dpath.status
}
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) {
state := s_req;
}
2013-08-12 19:39:11 +02:00
count := UInt(0)
2011-11-09 23:52:17 +01:00
}
is (s_req) {
when (io.mem.req.ready) {
state := s_wait;
2011-11-09 23:52:17 +01:00
}
}
is (s_wait) {
when (io.mem.resp.bits.nack) {
state := s_req
}
when (io.mem.resp.valid) {
2013-08-24 06:16:28 +02:00
state := s_error
when (io.mem.resp.bits.data(0)) {
when (!io.mem.resp.bits.data(1)) {
state := s_done
}.elsewhen (count < levels-1) {
state := s_req
2013-08-24 06:16:28 +02:00
count := count + 1
}
2011-11-09 23:52:17 +01:00
}
}
}
2011-11-09 23:52:17 +01:00
is (s_done) {
2012-02-12 02:20:33 +01:00
state := s_ready;
2011-11-09 23:52:17 +01:00
}
is (s_error) {
2012-02-12 02:20:33 +01:00
state := s_ready;
2011-11-09 23:52:17 +01:00
}
}
}