2012-02-26 02:09:26 +01:00
|
|
|
package rocket
|
2011-10-26 08:02:47 +02:00
|
|
|
|
|
|
|
import Chisel._
|
|
|
|
import Instructions._
|
2012-11-16 11:39:33 +01:00
|
|
|
import Util._
|
2013-11-08 00:42:03 +01:00
|
|
|
import uncore.HTIFIO
|
2013-07-24 05:26:17 +02:00
|
|
|
import uncore.constants.AddressConstants._
|
2011-10-26 08:02:47 +02:00
|
|
|
|
2013-08-12 19:39:11 +02:00
|
|
|
class Datapath(implicit conf: RocketConfiguration) extends Module
|
2011-10-26 08:02:47 +02:00
|
|
|
{
|
2012-11-06 08:52:32 +01:00
|
|
|
val io = new Bundle {
|
2013-08-02 23:54:16 +02:00
|
|
|
val host = new HTIFIO(conf.tl.ln.nClients)
|
2013-01-07 22:38:59 +01:00
|
|
|
val ctrl = (new CtrlDpathIO).flip
|
|
|
|
val dmem = new HellaCacheIO()(conf.dcache)
|
|
|
|
val ptw = (new DatapathPTWIO).flip
|
|
|
|
val imem = new CPUFrontendIO()(conf.icache)
|
|
|
|
val fpu = new DpathFPUIO
|
2013-09-15 00:31:50 +02:00
|
|
|
val rocc = new RoCCInterface().flip
|
2012-11-06 08:52:32 +01:00
|
|
|
}
|
2011-10-26 08:02:47 +02:00
|
|
|
|
|
|
|
// execute definitions
|
2013-08-12 19:39:11 +02:00
|
|
|
val ex_reg_pc = Reg(UInt())
|
|
|
|
val ex_reg_inst = Reg(Bits())
|
|
|
|
val ex_reg_ctrl_fn_dw = Reg(UInt())
|
|
|
|
val ex_reg_ctrl_fn_alu = Reg(UInt())
|
|
|
|
val ex_reg_sel_alu2 = Reg(UInt())
|
2013-09-12 12:44:38 +02:00
|
|
|
val ex_reg_sel_alu1 = Reg(UInt())
|
|
|
|
val ex_reg_sel_imm = Reg(UInt())
|
2013-08-12 19:39:11 +02:00
|
|
|
val ex_reg_kill = Reg(Bool())
|
2013-12-10 00:06:13 +01:00
|
|
|
val ex_reg_rs_bypass = Vec.fill(2)(Reg(Bool()))
|
|
|
|
val ex_reg_rs_lsb = Vec.fill(2)(Reg(Bits()))
|
|
|
|
val ex_reg_rs_msb = Vec.fill(2)(Reg(Bits()))
|
2011-11-02 01:59:27 +01:00
|
|
|
|
2011-11-02 03:05:27 +01:00
|
|
|
// memory definitions
|
2013-08-12 19:39:11 +02:00
|
|
|
val mem_reg_pc = Reg(UInt())
|
|
|
|
val mem_reg_inst = Reg(Bits())
|
|
|
|
val mem_reg_wdata = Reg(Bits())
|
|
|
|
val mem_reg_kill = Reg(Bool())
|
2013-09-15 01:15:07 +02:00
|
|
|
val mem_reg_rs2 = Reg(Bits())
|
2011-11-02 01:59:27 +01:00
|
|
|
|
2011-11-02 03:05:27 +01:00
|
|
|
// writeback definitions
|
2013-08-12 19:39:11 +02:00
|
|
|
val wb_reg_pc = Reg(UInt())
|
|
|
|
val wb_reg_inst = Reg(Bits())
|
|
|
|
val wb_reg_wdata = Reg(Bits())
|
|
|
|
val wb_wdata = Bits()
|
|
|
|
val wb_reg_rs2 = Reg(Bits())
|
2011-11-02 01:59:27 +01:00
|
|
|
|
2011-10-26 08:02:47 +02:00
|
|
|
// instruction decode stage
|
2012-10-10 06:35:03 +02:00
|
|
|
val id_inst = io.imem.resp.bits.data
|
|
|
|
val id_pc = io.imem.resp.bits.pc
|
2013-12-10 00:06:13 +01:00
|
|
|
|
|
|
|
class RegFile {
|
|
|
|
private val rf = Mem(UInt(width = 64), 31)
|
|
|
|
private val reads = collection.mutable.ArrayBuffer[(UInt,UInt)]()
|
|
|
|
private var canRead = true
|
|
|
|
def read(addr: UInt) = {
|
|
|
|
require(canRead)
|
|
|
|
reads += addr -> UInt()
|
|
|
|
reads.last._2 := rf(~addr)
|
|
|
|
reads.last._2
|
|
|
|
}
|
|
|
|
def write(addr: UInt, data: UInt) = {
|
|
|
|
canRead = false
|
|
|
|
when (addr != UInt(0)) {
|
|
|
|
rf(~addr) := data
|
|
|
|
for ((raddr, rdata) <- reads)
|
|
|
|
when (addr === raddr) { rdata := data }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
val rf = new RegFile
|
2012-11-17 15:48:44 +01:00
|
|
|
|
2013-12-10 00:06:13 +01:00
|
|
|
// RF read ports + bypass from WB stage
|
|
|
|
val id_raddr = Vec(id_inst(19,15), id_inst(24,20))
|
|
|
|
val id_rs = id_raddr.map(rf.read _)
|
2011-10-26 08:02:47 +02:00
|
|
|
|
2012-02-08 15:47:26 +01:00
|
|
|
// immediate generation
|
2012-11-17 15:48:44 +01:00
|
|
|
def imm(sel: Bits, inst: Bits) = {
|
2013-09-21 15:32:40 +02:00
|
|
|
val sign = inst(31).toSInt
|
|
|
|
val b30_20 = Mux(sel === IMM_U, inst(30,20).toSInt, sign)
|
|
|
|
val b19_12 = Mux(sel != IMM_U && sel != IMM_UJ, sign, inst(19,12).toSInt)
|
2013-11-25 13:35:15 +01:00
|
|
|
val b11 = Mux(sel === IMM_U || sel === IMM_Z, SInt(0),
|
2013-09-21 15:32:40 +02:00
|
|
|
Mux(sel === IMM_UJ, inst(20).toSInt,
|
|
|
|
Mux(sel === IMM_SB, inst(7).toSInt, sign)))
|
2013-11-25 13:35:15 +01:00
|
|
|
val b10_5 = Mux(sel === IMM_U || sel === IMM_Z, Bits(0), inst(30,25))
|
2013-09-21 15:32:40 +02:00
|
|
|
val b4_1 = Mux(sel === IMM_U, Bits(0),
|
2013-11-25 13:35:15 +01:00
|
|
|
Mux(sel === IMM_S || sel === IMM_SB, inst(11,8),
|
|
|
|
Mux(sel === IMM_Z, inst(19,16), inst(24,21))))
|
|
|
|
val b0 = Mux(sel === IMM_S, inst(7),
|
|
|
|
Mux(sel === IMM_I, inst(20),
|
|
|
|
Mux(sel === IMM_Z, inst(15), Bits(0))))
|
2013-09-12 12:44:38 +02:00
|
|
|
|
2013-09-21 15:32:40 +02:00
|
|
|
Cat(sign, b30_20, b19_12, b11, b10_5, b4_1, b0).toSInt
|
2012-11-17 15:48:44 +01:00
|
|
|
}
|
2012-02-08 15:47:26 +01:00
|
|
|
|
2012-10-10 06:35:03 +02:00
|
|
|
io.ctrl.inst := id_inst
|
|
|
|
io.fpu.inst := id_inst
|
2011-10-26 08:02:47 +02:00
|
|
|
|
|
|
|
// execute stage
|
2012-11-05 01:40:14 +01:00
|
|
|
ex_reg_kill := io.ctrl.killd
|
|
|
|
when (!io.ctrl.killd) {
|
|
|
|
ex_reg_pc := id_pc
|
|
|
|
ex_reg_inst := id_inst
|
2013-08-12 19:39:11 +02:00
|
|
|
ex_reg_ctrl_fn_dw := io.ctrl.fn_dw.toUInt
|
2012-11-05 01:40:14 +01:00
|
|
|
ex_reg_ctrl_fn_alu := io.ctrl.fn_alu
|
2012-11-17 15:48:44 +01:00
|
|
|
ex_reg_sel_alu2 := io.ctrl.sel_alu2
|
2013-09-12 12:44:38 +02:00
|
|
|
ex_reg_sel_alu1 := io.ctrl.sel_alu1
|
|
|
|
ex_reg_sel_imm := io.ctrl.sel_imm
|
2013-12-10 00:06:13 +01:00
|
|
|
ex_reg_rs_bypass := io.ctrl.bypass
|
|
|
|
for (i <- 0 until id_rs.size) {
|
|
|
|
when (io.ctrl.ren(i)) {
|
|
|
|
ex_reg_rs_lsb(i) := id_rs(i)(SZ_BYP-1,0)
|
|
|
|
when (!io.ctrl.bypass(i)) {
|
|
|
|
ex_reg_rs_msb(i) := id_rs(i) >> SZ_BYP
|
|
|
|
}
|
2012-11-17 15:48:44 +01:00
|
|
|
}
|
2013-12-10 00:06:13 +01:00
|
|
|
when (io.ctrl.bypass(i)) { ex_reg_rs_lsb(i) := io.ctrl.bypass_src(i) }
|
2012-11-17 15:48:44 +01:00
|
|
|
}
|
2012-11-05 01:40:14 +01:00
|
|
|
}
|
2011-10-26 08:02:47 +02:00
|
|
|
|
2013-09-21 15:32:40 +02:00
|
|
|
val ex_raddr1 = ex_reg_inst(19,15)
|
|
|
|
val ex_raddr2 = ex_reg_inst(24,20)
|
2012-11-17 15:48:44 +01:00
|
|
|
|
2013-12-10 00:06:13 +01:00
|
|
|
val bypass = Vec.fill(NBYP)(Bits())
|
|
|
|
bypass(BYP_0) := Bits(0)
|
|
|
|
bypass(BYP_EX) := mem_reg_wdata
|
|
|
|
bypass(BYP_MEM) := wb_reg_wdata
|
|
|
|
bypass(BYP_DC) := (if (conf.fastLoadByte) io.dmem.resp.bits.data_subword
|
|
|
|
else if (conf.fastLoadWord) io.dmem.resp.bits.data
|
|
|
|
else wb_reg_wdata)
|
2013-09-12 12:44:38 +02:00
|
|
|
|
2013-12-10 00:06:13 +01:00
|
|
|
val ex_rs = for (i <- 0 until id_rs.size)
|
|
|
|
yield Mux(ex_reg_rs_bypass(i), bypass(ex_reg_rs_lsb(i)), Cat(ex_reg_rs_msb(i), ex_reg_rs_lsb(i)))
|
2013-09-12 12:44:38 +02:00
|
|
|
val ex_imm = imm(ex_reg_sel_imm, ex_reg_inst)
|
2014-02-11 04:04:42 +01:00
|
|
|
val ex_op1 = MuxLookup(ex_reg_sel_alu1, SInt(0), Seq(
|
|
|
|
A1_RS1 -> ex_rs(0).toSInt,
|
|
|
|
A1_PC -> ex_reg_pc.toSInt))
|
2013-12-10 00:06:13 +01:00
|
|
|
val ex_op2 = MuxLookup(ex_reg_sel_alu2, SInt(0), Seq(
|
|
|
|
A2_RS2 -> ex_rs(1).toSInt,
|
|
|
|
A2_IMM -> ex_imm,
|
|
|
|
A2_FOUR -> SInt(4)))
|
2012-03-17 02:34:40 +01:00
|
|
|
|
2013-08-12 19:39:11 +02:00
|
|
|
val alu = Module(new ALU)
|
2014-01-14 06:43:56 +01:00
|
|
|
alu.io.dw := ex_reg_ctrl_fn_dw
|
|
|
|
alu.io.fn := ex_reg_ctrl_fn_alu
|
2013-08-12 19:39:11 +02:00
|
|
|
alu.io.in2 := ex_op2.toUInt
|
2013-12-10 00:06:13 +01:00
|
|
|
alu.io.in1 := ex_op1
|
2011-10-26 08:02:47 +02:00
|
|
|
|
2012-12-12 11:22:47 +01:00
|
|
|
// multiplier and divider
|
2013-08-12 19:39:11 +02:00
|
|
|
val div = Module(new MulDiv(mulUnroll = if (conf.fastMulDiv) 8 else 1,
|
|
|
|
earlyOut = conf.fastMulDiv))
|
2012-12-12 11:22:47 +01:00
|
|
|
div.io.req.valid := io.ctrl.div_mul_val
|
2012-11-18 02:24:08 +01:00
|
|
|
div.io.req.bits.dw := ex_reg_ctrl_fn_dw
|
|
|
|
div.io.req.bits.fn := ex_reg_ctrl_fn_alu
|
2013-12-10 00:06:13 +01:00
|
|
|
div.io.req.bits.in1 := ex_rs(0)
|
|
|
|
div.io.req.bits.in2 := ex_rs(1)
|
2013-09-12 12:44:38 +02:00
|
|
|
div.io.req.bits.tag := io.ctrl.ex_waddr
|
2012-12-12 11:22:47 +01:00
|
|
|
div.io.kill := io.ctrl.div_mul_kill
|
|
|
|
io.ctrl.div_mul_rdy := div.io.req.ready
|
2011-11-02 01:59:27 +01:00
|
|
|
|
2013-12-10 00:06:13 +01:00
|
|
|
io.fpu.fromint_data := ex_rs(0)
|
2012-11-16 11:39:33 +01:00
|
|
|
|
2013-08-12 19:39:11 +02:00
|
|
|
def vaSign(a0: UInt, ea: Bits) = {
|
2012-11-16 11:39:33 +01:00
|
|
|
// efficient means to compress 64-bit VA into VADDR_BITS+1 bits
|
|
|
|
// (VA is bad if VA(VADDR_BITS) != VA(VADDR_BITS-1))
|
|
|
|
val a = a0 >> VADDR_BITS-1
|
|
|
|
val e = ea(VADDR_BITS,VADDR_BITS-1)
|
2013-08-12 19:39:11 +02:00
|
|
|
Mux(a === UInt(0) || a === UInt(1), e != UInt(0),
|
|
|
|
Mux(a === SInt(-1) || a === SInt(-2), e === SInt(-1),
|
2012-11-20 13:06:57 +01:00
|
|
|
e(0)))
|
2012-11-16 11:39:33 +01:00
|
|
|
}
|
2013-12-10 00:06:13 +01:00
|
|
|
val ex_br_base = Mux(io.ctrl.ex_jalr, ex_rs(0), ex_reg_pc)
|
2014-01-13 09:55:48 +01:00
|
|
|
val ex_br_offset = Mux(io.ctrl.ex_predicted_taken, SInt(4), ex_imm(20,0).toSInt)
|
2013-09-12 12:44:38 +02:00
|
|
|
val ex_br64 = ex_br_base + ex_br_offset
|
2013-12-10 00:06:13 +01:00
|
|
|
val ex_br_msb = Mux(io.ctrl.ex_jalr, vaSign(ex_rs(0), ex_br64), vaSign(ex_reg_pc, ex_br64))
|
2013-09-12 12:44:38 +02:00
|
|
|
val ex_br_addr = Cat(ex_br_msb, ex_br64(VADDR_BITS-1,0))
|
2011-10-26 08:02:47 +02:00
|
|
|
|
2011-11-02 01:59:27 +01:00
|
|
|
// D$ request interface (registered inside D$ module)
|
|
|
|
// other signals (req_val, req_rdy) connect to control module
|
2013-12-10 00:06:13 +01:00
|
|
|
io.dmem.req.bits.addr := Cat(vaSign(ex_rs(0), alu.io.adder_out), alu.io.adder_out(VADDR_BITS-1,0)).toUInt
|
2013-09-12 12:44:38 +02:00
|
|
|
io.dmem.req.bits.tag := Cat(io.ctrl.ex_waddr, io.ctrl.ex_fp_val)
|
2012-11-06 08:52:32 +01:00
|
|
|
require(io.dmem.req.bits.tag.getWidth >= 6)
|
2014-02-23 07:53:04 +01:00
|
|
|
require(conf.dcacheReqTagBits >= 6)
|
2011-10-26 08:02:47 +02:00
|
|
|
|
2014-01-14 06:43:56 +01:00
|
|
|
// processor control regfile read
|
2013-11-25 13:35:15 +01:00
|
|
|
val pcr = Module(new CSRFile)
|
2012-02-20 08:15:45 +01:00
|
|
|
pcr.io.host <> io.host
|
2012-11-16 11:39:33 +01:00
|
|
|
pcr.io <> io.ctrl
|
2013-11-25 13:35:15 +01:00
|
|
|
pcr.io <> io.fpu
|
2014-02-06 09:09:42 +01:00
|
|
|
pcr.io.rocc <> io.rocc
|
2013-06-13 19:31:04 +02:00
|
|
|
pcr.io.pc := wb_reg_pc
|
2013-11-25 13:35:15 +01:00
|
|
|
io.ctrl.csr_replay := pcr.io.replay
|
2014-02-06 09:13:02 +01:00
|
|
|
pcr.io.uarch_counters.foreach(_ := Bool(false))
|
2012-11-06 17:13:44 +01:00
|
|
|
|
|
|
|
io.ptw.ptbr := pcr.io.ptbr
|
2013-08-24 06:16:28 +02:00
|
|
|
io.ptw.invalidate := pcr.io.fatc
|
2013-11-25 13:35:15 +01:00
|
|
|
io.ptw.sret := io.ctrl.sret
|
2012-11-06 17:13:44 +01:00
|
|
|
io.ptw.status := pcr.io.status
|
2011-11-02 01:59:27 +01:00
|
|
|
|
2014-01-14 06:43:56 +01:00
|
|
|
// branch resolution logic
|
2013-12-10 00:06:13 +01:00
|
|
|
io.ctrl.jalr_eq := ex_rs(0) === id_pc.toSInt && ex_reg_inst(31,20) === UInt(0)
|
2012-11-16 11:39:33 +01:00
|
|
|
io.ctrl.ex_br_taken :=
|
2013-12-10 00:06:13 +01:00
|
|
|
Mux(io.ctrl.ex_br_type === BR_EQ, ex_rs(0) === ex_rs(1),
|
|
|
|
Mux(io.ctrl.ex_br_type === BR_NE, ex_rs(0) != ex_rs(1),
|
|
|
|
Mux(io.ctrl.ex_br_type === BR_LT, ex_rs(0).toSInt < ex_rs(1).toSInt,
|
|
|
|
Mux(io.ctrl.ex_br_type === BR_GE, ex_rs(0).toSInt >= ex_rs(1).toSInt,
|
|
|
|
Mux(io.ctrl.ex_br_type === BR_LTU, ex_rs(0) < ex_rs(1),
|
|
|
|
Mux(io.ctrl.ex_br_type === BR_GEU, ex_rs(0) >= ex_rs(1),
|
2012-11-16 11:39:33 +01:00
|
|
|
io.ctrl.ex_br_type === BR_J))))))
|
|
|
|
|
2011-11-02 01:59:27 +01:00
|
|
|
// memory stage
|
2012-11-05 01:40:14 +01:00
|
|
|
mem_reg_kill := ex_reg_kill
|
|
|
|
when (!ex_reg_kill) {
|
|
|
|
mem_reg_pc := ex_reg_pc
|
|
|
|
mem_reg_inst := ex_reg_inst
|
2013-11-25 13:35:15 +01:00
|
|
|
mem_reg_wdata := alu.io.out
|
2012-11-05 01:40:14 +01:00
|
|
|
}
|
2013-12-10 00:06:13 +01:00
|
|
|
when (io.ctrl.ex_rs2_val) {
|
|
|
|
mem_reg_rs2 := ex_rs(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
io.dmem.req.bits.data := Mux(io.ctrl.mem_fp_val, io.fpu.store_data, mem_reg_rs2)
|
2011-11-02 05:25:52 +01:00
|
|
|
|
2012-02-12 13:36:01 +01:00
|
|
|
// writeback arbitration
|
2012-05-02 03:23:04 +02:00
|
|
|
val dmem_resp_xpu = !io.dmem.resp.bits.tag(0).toBool
|
|
|
|
val dmem_resp_fpu = io.dmem.resp.bits.tag(0).toBool
|
2013-08-12 19:39:11 +02:00
|
|
|
val dmem_resp_waddr = io.dmem.resp.bits.tag.toUInt >> UInt(1)
|
2013-09-15 07:34:53 +02:00
|
|
|
val dmem_resp_valid = io.dmem.resp.valid && io.dmem.resp.bits.has_data
|
|
|
|
val dmem_resp_replay = io.dmem.resp.bits.replay && io.dmem.resp.bits.has_data
|
2012-11-16 11:39:33 +01:00
|
|
|
|
2013-12-10 00:06:13 +01:00
|
|
|
val ll_wdata = Bits()
|
|
|
|
div.io.resp.ready := io.ctrl.ll_ready
|
|
|
|
ll_wdata := div.io.resp.bits.data
|
|
|
|
io.ctrl.ll_waddr := div.io.resp.bits.tag
|
|
|
|
io.ctrl.ll_wen := div.io.resp.fire()
|
2013-09-15 00:31:50 +02:00
|
|
|
if (!conf.rocc.isEmpty) {
|
2013-12-10 00:06:13 +01:00
|
|
|
io.rocc.resp.ready := io.ctrl.ll_ready
|
2013-09-15 00:31:50 +02:00
|
|
|
when (io.rocc.resp.fire()) {
|
|
|
|
div.io.resp.ready := Bool(false)
|
2013-12-10 00:06:13 +01:00
|
|
|
ll_wdata := io.rocc.resp.bits.data
|
|
|
|
io.ctrl.ll_waddr := io.rocc.resp.bits.rd
|
|
|
|
io.ctrl.ll_wen := Bool(true)
|
2013-09-15 00:31:50 +02:00
|
|
|
}
|
|
|
|
}
|
2013-09-15 07:34:53 +02:00
|
|
|
when (dmem_resp_replay && dmem_resp_xpu) {
|
2012-11-18 02:24:08 +01:00
|
|
|
div.io.resp.ready := Bool(false)
|
2013-09-15 00:31:50 +02:00
|
|
|
if (!conf.rocc.isEmpty)
|
|
|
|
io.rocc.resp.ready := Bool(false)
|
2013-12-10 00:06:13 +01:00
|
|
|
io.ctrl.ll_waddr := dmem_resp_waddr
|
|
|
|
io.ctrl.ll_wen := Bool(true)
|
2012-11-16 11:39:33 +01:00
|
|
|
}
|
2011-11-02 01:59:27 +01:00
|
|
|
|
2013-09-15 07:34:53 +02:00
|
|
|
io.fpu.dmem_resp_val := dmem_resp_valid && dmem_resp_fpu
|
2012-05-02 03:23:04 +02:00
|
|
|
io.fpu.dmem_resp_data := io.dmem.resp.bits.data
|
|
|
|
io.fpu.dmem_resp_type := io.dmem.resp.bits.typ
|
2012-02-12 13:36:01 +01:00
|
|
|
io.fpu.dmem_resp_tag := dmem_resp_waddr
|
|
|
|
|
|
|
|
// writeback stage
|
2012-11-05 01:40:14 +01:00
|
|
|
when (!mem_reg_kill) {
|
|
|
|
wb_reg_pc := mem_reg_pc
|
|
|
|
wb_reg_inst := mem_reg_inst
|
|
|
|
wb_reg_wdata := Mux(io.ctrl.mem_fp_val && io.ctrl.mem_wen, io.fpu.toint_data, mem_reg_wdata)
|
2013-09-15 00:31:50 +02:00
|
|
|
}
|
|
|
|
when (io.ctrl.mem_rocc_val) {
|
2013-09-15 01:15:07 +02:00
|
|
|
wb_reg_rs2 := mem_reg_rs2
|
2012-11-05 01:40:14 +01:00
|
|
|
}
|
2013-12-10 00:06:13 +01:00
|
|
|
wb_wdata := Mux(dmem_resp_valid && dmem_resp_xpu, io.dmem.resp.bits.data_subword,
|
|
|
|
Mux(io.ctrl.ll_wen, ll_wdata,
|
2013-11-25 13:35:15 +01:00
|
|
|
Mux(io.ctrl.csr != CSR.N, pcr.io.rw.rdata,
|
2013-12-10 00:06:13 +01:00
|
|
|
wb_reg_wdata)))
|
2011-11-02 01:59:27 +01:00
|
|
|
|
2013-12-10 00:06:13 +01:00
|
|
|
val wb_wen = io.ctrl.ll_wen || io.ctrl.wb_wen
|
|
|
|
val wb_waddr = Mux(io.ctrl.ll_wen, io.ctrl.ll_waddr, io.ctrl.wb_waddr)
|
|
|
|
when (wb_wen) { rf.write(wb_waddr, wb_wdata) }
|
2012-02-09 10:28:16 +01:00
|
|
|
|
2011-11-02 01:59:27 +01:00
|
|
|
// scoreboard clear (for div/mul and D$ load miss writebacks)
|
2013-09-15 07:34:53 +02:00
|
|
|
io.ctrl.fp_sboard_clr := dmem_resp_replay && dmem_resp_fpu
|
2012-11-16 11:39:33 +01:00
|
|
|
io.ctrl.fp_sboard_clra := dmem_resp_waddr
|
2012-04-01 07:23:51 +02:00
|
|
|
|
2014-01-14 06:43:56 +01:00
|
|
|
// processor control regfile write
|
2013-11-25 13:35:15 +01:00
|
|
|
pcr.io.rw.addr := wb_reg_inst(31,20)
|
|
|
|
pcr.io.rw.cmd := io.ctrl.csr
|
2014-01-22 01:17:39 +01:00
|
|
|
pcr.io.rw.wdata := Mux(io.ctrl.csr === CSR.S, pcr.io.rw.rdata | wb_reg_wdata,
|
|
|
|
Mux(io.ctrl.csr === CSR.C, pcr.io.rw.rdata & ~wb_reg_wdata,
|
|
|
|
wb_reg_wdata))
|
2011-10-26 08:02:47 +02:00
|
|
|
|
2013-09-15 00:31:50 +02:00
|
|
|
io.rocc.cmd.bits.inst := new RoCCInstruction().fromBits(wb_reg_inst)
|
|
|
|
io.rocc.cmd.bits.rs1 := wb_reg_wdata
|
|
|
|
io.rocc.cmd.bits.rs2 := wb_reg_rs2
|
|
|
|
|
2012-11-16 11:39:33 +01:00
|
|
|
// hook up I$
|
|
|
|
io.imem.req.bits.currentpc := ex_reg_pc
|
|
|
|
io.imem.req.bits.pc :=
|
2013-09-12 12:44:38 +02:00
|
|
|
Mux(io.ctrl.sel_pc === PC_EX, ex_br_addr,
|
2013-08-24 06:16:28 +02:00
|
|
|
Mux(io.ctrl.sel_pc === PC_PCR, pcr.io.evec,
|
2013-09-12 12:44:38 +02:00
|
|
|
wb_reg_pc)).toUInt // PC_WB
|
2013-12-10 00:06:13 +01:00
|
|
|
|
|
|
|
// for hazard/bypass opportunity detection
|
|
|
|
io.ctrl.ex_waddr := ex_reg_inst(11,7)
|
|
|
|
io.ctrl.mem_waddr := mem_reg_inst(11,7)
|
|
|
|
io.ctrl.wb_waddr := wb_reg_inst(11,7)
|
2012-11-17 15:48:44 +01:00
|
|
|
|
2013-09-15 13:14:45 +02:00
|
|
|
printf("C: %d [%d] pc=[%x] W[r%d=%x] R[r%d=%x] R[r%d=%x] inst=[%x] DASM(%x)\n",
|
2013-11-25 13:35:15 +01:00
|
|
|
pcr.io.time(32,0), io.ctrl.retire, wb_reg_pc,
|
2013-12-10 00:06:13 +01:00
|
|
|
Mux(wb_wen, wb_waddr, UInt(0)), wb_wdata,
|
|
|
|
wb_reg_inst(19,15), Reg(next=Reg(next=ex_rs(0))),
|
|
|
|
wb_reg_inst(24,20), Reg(next=Reg(next=ex_rs(1))),
|
2013-09-15 13:14:45 +02:00
|
|
|
wb_reg_inst, wb_reg_inst)
|
2011-10-26 08:02:47 +02:00
|
|
|
}
|