2011-11-10 06:54:11 +01:00
|
|
|
package Top
|
|
|
|
{
|
|
|
|
|
|
|
|
import Chisel._;
|
|
|
|
import Node._;
|
|
|
|
import Constants._;
|
|
|
|
import scala.math._;
|
|
|
|
|
2011-11-10 09:50:09 +01:00
|
|
|
// interface between DTLB and pipeline
|
2011-11-10 06:54:11 +01:00
|
|
|
class ioDTLB_CPU(view: List[String] = null) extends Bundle(view)
|
|
|
|
{
|
|
|
|
// status bits (from PCR), to check current permission and whether VM is enabled
|
|
|
|
val status = Bits(17, 'input);
|
|
|
|
// invalidate all TLB entries
|
|
|
|
val invalidate = Bool('input);
|
|
|
|
// lookup requests
|
|
|
|
val req_val = Bool('input);
|
|
|
|
val req_cmd = Bits(4, 'input); // load/store/amo
|
|
|
|
val req_rdy = Bool('output);
|
|
|
|
val req_asid = Bits(ASID_BITS, 'input);
|
2011-11-12 03:18:47 +01:00
|
|
|
val req_vpn = UFix(VPN_BITS, 'input);
|
2011-11-10 06:54:11 +01:00
|
|
|
// lookup responses
|
2011-11-10 09:50:09 +01:00
|
|
|
val resp_miss = Bool('output);
|
2011-11-12 03:18:47 +01:00
|
|
|
// val resp_val = Bool('output);
|
|
|
|
val resp_ppn = UFix(PPN_BITS, 'output);
|
2011-11-10 09:50:09 +01:00
|
|
|
val xcpt_ld = Bool('output);
|
|
|
|
val xcpt_st = Bool('output);
|
2011-11-10 06:54:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
class ioDTLB extends Bundle
|
|
|
|
{
|
|
|
|
val cpu = new ioDTLB_CPU();
|
|
|
|
val ptw = new ioTLB_PTW();
|
|
|
|
}
|
|
|
|
|
|
|
|
class rocketDTLB(entries: Int) extends Component
|
|
|
|
{
|
|
|
|
val io = new ioDTLB();
|
|
|
|
|
2011-11-12 03:18:47 +01:00
|
|
|
val addr_bits = ceil(log10(entries)/log10(2)).toInt;
|
|
|
|
|
2011-11-10 06:54:11 +01:00
|
|
|
val s_ready :: s_request :: s_wait :: Nil = Enum(3) { UFix() };
|
|
|
|
val state = Reg(resetVal = s_ready);
|
|
|
|
|
2011-11-12 03:18:47 +01:00
|
|
|
val r_cpu_req_vpn = Reg(resetVal = Bits(0, VPN_BITS));
|
|
|
|
val r_cpu_req_val = Reg(resetVal = Bool(false));
|
|
|
|
val r_cpu_req_cmd = Reg(resetVal = Bits(0,4));
|
|
|
|
val r_cpu_req_asid = Reg(resetVal = Bits(0,ASID_BITS));
|
|
|
|
val r_refill_tag = Reg(resetVal = Bits(0,ASID_BITS+VPN_BITS));
|
|
|
|
val r_refill_waddr = Reg(resetVal = UFix(0,addr_bits));
|
|
|
|
val repl_count = Reg(resetVal = UFix(0,addr_bits));
|
|
|
|
|
|
|
|
when (io.cpu.req_val && io.cpu.req_rdy) {
|
|
|
|
r_cpu_req_vpn <== io.cpu.req_vpn;
|
|
|
|
r_cpu_req_cmd <== io.cpu.req_cmd;
|
|
|
|
r_cpu_req_asid <== io.cpu.req_asid;
|
|
|
|
}
|
|
|
|
|
|
|
|
when (io.cpu.req_rdy) {
|
|
|
|
r_cpu_req_val <== io.cpu.req_val;
|
|
|
|
}
|
2011-11-10 06:54:11 +01:00
|
|
|
|
2011-11-12 03:18:47 +01:00
|
|
|
val req_load = (r_cpu_req_cmd === M_XRD);
|
|
|
|
val req_store = (r_cpu_req_cmd === M_XWR);
|
2011-11-13 00:00:45 +01:00
|
|
|
val req_flush = (r_cpu_req_cmd === M_FLA);
|
2011-11-15 11:43:51 +01:00
|
|
|
val req_amo = io.cpu.req_cmd(3).toBool;
|
2011-11-10 06:54:11 +01:00
|
|
|
|
2011-11-12 03:18:47 +01:00
|
|
|
val lookup_tag = Cat(r_cpu_req_asid, r_cpu_req_vpn);
|
|
|
|
|
2011-12-06 00:45:44 +01:00
|
|
|
val tag_cam = new rocketCAM(entries, ASID_BITS+VPN_BITS);
|
2011-11-10 06:54:11 +01:00
|
|
|
val tag_ram = Mem(entries, io.ptw.resp_val, r_refill_waddr.toUFix, io.ptw.resp_ppn);
|
|
|
|
|
2011-11-10 20:26:13 +01:00
|
|
|
tag_cam.io.clear := io.cpu.invalidate;
|
2011-11-10 06:54:11 +01:00
|
|
|
tag_cam.io.tag := lookup_tag;
|
2011-11-13 00:47:47 +01:00
|
|
|
tag_cam.io.write := io.ptw.resp_val || io.ptw.resp_err;
|
2011-11-10 06:54:11 +01:00
|
|
|
tag_cam.io.write_tag := r_refill_tag;
|
|
|
|
tag_cam.io.write_addr := r_refill_waddr;
|
2011-11-12 03:18:47 +01:00
|
|
|
val tag_hit = tag_cam.io.hit;
|
2011-11-11 02:41:22 +01:00
|
|
|
val tag_hit_addr = tag_cam.io.hit_addr;
|
2011-11-10 06:54:11 +01:00
|
|
|
|
|
|
|
// extract fields from status register
|
2011-11-11 02:41:22 +01:00
|
|
|
val status_s = io.cpu.status(SR_S).toBool; // user/supervisor mode
|
|
|
|
val status_u = !status_s;
|
|
|
|
val status_vm = io.cpu.status(SR_VM).toBool // virtual memory enable
|
2011-11-10 06:54:11 +01:00
|
|
|
|
|
|
|
// extract fields from PT permission bits
|
2011-11-17 20:17:37 +01:00
|
|
|
val ptw_perm_ur = io.ptw.resp_perm(2);
|
|
|
|
val ptw_perm_uw = io.ptw.resp_perm(1);
|
|
|
|
val ptw_perm_sr = io.ptw.resp_perm(5);
|
|
|
|
val ptw_perm_sw = io.ptw.resp_perm(4);
|
2011-11-10 06:54:11 +01:00
|
|
|
|
|
|
|
// permission bit arrays
|
2011-11-12 03:18:47 +01:00
|
|
|
val ur_array = Reg(resetVal = Bits(0, entries)); // user read permission
|
|
|
|
val uw_array = Reg(resetVal = Bits(0, entries)); // user write permission
|
|
|
|
val sr_array = Reg(resetVal = Bits(0, entries)); // supervisor read permission
|
|
|
|
val sw_array = Reg(resetVal = Bits(0, entries)); // supervisor write permission
|
2011-11-10 06:54:11 +01:00
|
|
|
when (io.ptw.resp_val) {
|
|
|
|
ur_array <== ur_array.bitSet(r_refill_waddr, ptw_perm_ur);
|
2011-11-11 02:41:22 +01:00
|
|
|
uw_array <== uw_array.bitSet(r_refill_waddr, ptw_perm_uw);
|
2011-11-10 06:54:11 +01:00
|
|
|
sr_array <== sr_array.bitSet(r_refill_waddr, ptw_perm_sr);
|
|
|
|
sw_array <== sw_array.bitSet(r_refill_waddr, ptw_perm_sw);
|
|
|
|
}
|
|
|
|
|
|
|
|
// when the page table lookup reports an error, set all permission
|
|
|
|
// bits to 0 so the next access will cause an exception
|
|
|
|
when (io.ptw.resp_err) {
|
|
|
|
ur_array <== ur_array.bitSet(r_refill_waddr, Bool(false));
|
2011-11-11 02:41:22 +01:00
|
|
|
uw_array <== uw_array.bitSet(r_refill_waddr, Bool(false));
|
2011-11-10 06:54:11 +01:00
|
|
|
sr_array <== sr_array.bitSet(r_refill_waddr, Bool(false));
|
|
|
|
sw_array <== sw_array.bitSet(r_refill_waddr, Bool(false));
|
|
|
|
}
|
|
|
|
|
|
|
|
// high if there are any unused (invalid) entries in the TLB
|
2011-11-10 20:26:13 +01:00
|
|
|
val invalid_entry = (tag_cam.io.valid_bits != ~Bits(0,entries));
|
2011-11-10 06:54:11 +01:00
|
|
|
val ie_enc = new priorityEncoder(entries);
|
2011-11-10 20:26:13 +01:00
|
|
|
ie_enc.io.in := ~tag_cam.io.valid_bits.toUFix;
|
2011-11-10 06:54:11 +01:00
|
|
|
val ie_addr = ie_enc.io.out;
|
|
|
|
|
|
|
|
val repl_waddr = Mux(invalid_entry, ie_addr, repl_count).toUFix;
|
|
|
|
|
2011-11-13 08:39:43 +01:00
|
|
|
val lookup = (state === s_ready) && r_cpu_req_val && !req_flush;
|
|
|
|
val lookup_hit = lookup && tag_hit;
|
|
|
|
val lookup_miss = lookup && !tag_hit;
|
2011-11-11 02:41:22 +01:00
|
|
|
val tlb_hit = status_vm && lookup_hit;
|
|
|
|
val tlb_miss = status_vm && lookup_miss;
|
|
|
|
|
2011-11-12 03:18:47 +01:00
|
|
|
// currently replace TLB entries in LIFO order
|
|
|
|
// TODO: implement LRU replacement policy
|
2011-11-11 02:41:22 +01:00
|
|
|
when (tlb_miss) {
|
2011-11-10 06:54:11 +01:00
|
|
|
r_refill_tag <== lookup_tag;
|
|
|
|
r_refill_waddr <== repl_waddr;
|
|
|
|
when (!invalid_entry) {
|
|
|
|
repl_count <== repl_count + UFix(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-13 08:39:43 +01:00
|
|
|
// exception check
|
2011-11-14 08:32:18 +01:00
|
|
|
val outofrange = !tlb_miss && (io.cpu.resp_ppn > UFix(MEMSIZE_PAGES, PPN_BITS));
|
2011-11-13 08:39:43 +01:00
|
|
|
|
|
|
|
val access_fault_ld =
|
2011-11-15 11:43:51 +01:00
|
|
|
tlb_hit && (req_load || req_amo) &&
|
2011-11-11 02:41:22 +01:00
|
|
|
((status_s && !sr_array(tag_hit_addr).toBool) ||
|
|
|
|
(status_u && !ur_array(tag_hit_addr).toBool));
|
2011-11-10 06:54:11 +01:00
|
|
|
|
2011-11-17 20:17:37 +01:00
|
|
|
io.cpu.xcpt_ld := access_fault_ld;
|
|
|
|
// (lookup && (req_load || req_amo) && outofrange) || access_fault_ld;
|
2011-11-13 08:39:43 +01:00
|
|
|
|
|
|
|
val access_fault_st =
|
2011-11-15 11:43:51 +01:00
|
|
|
tlb_hit && (req_store || req_amo) &&
|
2011-11-11 02:41:22 +01:00
|
|
|
((status_s && !sw_array(tag_hit_addr).toBool) ||
|
|
|
|
(status_u && !uw_array(tag_hit_addr).toBool));
|
2011-11-10 06:54:11 +01:00
|
|
|
|
2011-11-17 20:17:37 +01:00
|
|
|
io.cpu.xcpt_st := access_fault_st;
|
|
|
|
// (lookup && (req_store || req_amo) && outofrange) || access_fault_st;
|
2011-11-13 08:39:43 +01:00
|
|
|
|
2011-12-10 04:42:58 +01:00
|
|
|
io.cpu.req_rdy := (state === s_ready) && !tlb_miss;
|
2011-11-11 02:41:22 +01:00
|
|
|
io.cpu.resp_miss := tlb_miss;
|
2011-11-13 00:00:45 +01:00
|
|
|
io.cpu.resp_ppn :=
|
2011-12-10 04:42:58 +01:00
|
|
|
Mux(status_vm, tag_ram(tag_hit_addr), r_cpu_req_vpn(PPN_BITS-1,0)).toUFix;
|
2011-11-10 06:54:11 +01:00
|
|
|
|
|
|
|
io.ptw.req_val := (state === s_request);
|
|
|
|
io.ptw.req_vpn := r_refill_tag(VPN_BITS-1,0);
|
|
|
|
|
|
|
|
// control state machine
|
|
|
|
switch (state) {
|
|
|
|
is (s_ready) {
|
2011-11-11 02:41:22 +01:00
|
|
|
when (tlb_miss) {
|
2011-11-10 06:54:11 +01:00
|
|
|
state <== s_request;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
is (s_request) {
|
|
|
|
when (io.ptw.req_rdy) {
|
|
|
|
state <== s_wait;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
is (s_wait) {
|
|
|
|
when (io.ptw.resp_val || io.ptw.resp_err) {
|
|
|
|
state <== s_ready;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-12-06 00:45:44 +01:00
|
|
|
}
|