xref: /XiangShan/src/main/scala/xiangshan/frontend/Frontend.scala (revision fa9f96900103bd6a73978d25636da628b54245a9)
109c6f1ddSLingrui98/***************************************************************************************
209c6f1ddSLingrui98* Copyright (c) 2020-2021 Institute of Computing Technology, Chinese Academy of Sciences
309c6f1ddSLingrui98* Copyright (c) 2020-2021 Peng Cheng Laboratory
409c6f1ddSLingrui98*
509c6f1ddSLingrui98* XiangShan is licensed under Mulan PSL v2.
609c6f1ddSLingrui98* You can use this software according to the terms and conditions of the Mulan PSL v2.
709c6f1ddSLingrui98* You may obtain a copy of Mulan PSL v2 at:
809c6f1ddSLingrui98*          http://license.coscl.org.cn/MulanPSL2
909c6f1ddSLingrui98*
1009c6f1ddSLingrui98* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
1109c6f1ddSLingrui98* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
1209c6f1ddSLingrui98* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
1309c6f1ddSLingrui98*
1409c6f1ddSLingrui98* See the Mulan PSL v2 for more details.
1509c6f1ddSLingrui98***************************************************************************************/
1609c6f1ddSLingrui98
1709c6f1ddSLingrui98package xiangshan.frontend
186ab6918fSYinan Xuimport chipsalliance.rocketchip.config.Parameters
1909c6f1ddSLingrui98import chisel3._
2009c6f1ddSLingrui98import chisel3.util._
2109c6f1ddSLingrui98import freechips.rocketchip.diplomacy.{LazyModule, LazyModuleImp}
226ab6918fSYinan Xuimport utils._
2309c6f1ddSLingrui98import xiangshan._
24ee175d78SJayimport xiangshan.backend.fu.{PFEvent, PMP, PMPChecker,PMPReqBundle}
25ee175d78SJayimport xiangshan.cache.mmu._
261d8f4dcbSJayimport xiangshan.frontend.icache._
2709c6f1ddSLingrui98
2809c6f1ddSLingrui98
2909c6f1ddSLingrui98class Frontend()(implicit p: Parameters) extends LazyModule with HasXSParameter{
3009c6f1ddSLingrui98
3109c6f1ddSLingrui98  val instrUncache  = LazyModule(new InstrUncache())
3209c6f1ddSLingrui98  val icache        = LazyModule(new ICache())
3309c6f1ddSLingrui98
3409c6f1ddSLingrui98  lazy val module = new FrontendImp(this)
3509c6f1ddSLingrui98}
3609c6f1ddSLingrui98
3709c6f1ddSLingrui98
3809c6f1ddSLingrui98class FrontendImp (outer: Frontend) extends LazyModuleImp(outer)
3909c6f1ddSLingrui98  with HasXSParameter
401ca0e4f3SYinan Xu  with HasPerfEvents
4109c6f1ddSLingrui98{
4209c6f1ddSLingrui98  val io = IO(new Bundle() {
4341cb8b61SJenius    val hartId = Input(UInt(8.W))
44c4b44470SGuokai Chen    val reset_vector = Input(UInt(PAddrBits.W))
4509c6f1ddSLingrui98    val fencei = Input(Bool())
4691df15e5SJay    val ptw = new TlbPtwIO(6)
4709c6f1ddSLingrui98    val backend = new FrontendToCtrlIO
4809c6f1ddSLingrui98    val sfence = Input(new SfenceBundle)
4909c6f1ddSLingrui98    val tlbCsr = Input(new TlbCsrBundle)
5009c6f1ddSLingrui98    val csrCtrl = Input(new CustomCSRCtrlIO)
51e19f7967SWilliam Wang    val csrUpdate = new DistributedCSRUpdateReq
5209c6f1ddSLingrui98    val error  = new L1CacheErrorInfo
5309c6f1ddSLingrui98    val frontendInfo = new Bundle {
5409c6f1ddSLingrui98      val ibufFull  = Output(Bool())
5509c6f1ddSLingrui98      val bpuInfo = new Bundle {
5609c6f1ddSLingrui98        val bpRight = Output(UInt(XLEN.W))
5709c6f1ddSLingrui98        val bpWrong = Output(UInt(XLEN.W))
5809c6f1ddSLingrui98      }
5909c6f1ddSLingrui98    }
6009c6f1ddSLingrui98  })
6109c6f1ddSLingrui98
6209c6f1ddSLingrui98  //decouped-frontend modules
631d8f4dcbSJay  val instrUncache = outer.instrUncache.module
641d8f4dcbSJay  val icache       = outer.icache.module
6509c6f1ddSLingrui98  val bpu     = Module(new Predictor)
6609c6f1ddSLingrui98  val ifu     = Module(new NewIFU)
6709c6f1ddSLingrui98  val ibuffer =  Module(new Ibuffer)
6809c6f1ddSLingrui98  val ftq = Module(new Ftq)
6909c6f1ddSLingrui98
706f688dacSYinan Xu  val tlbCsr = DelayN(io.tlbCsr, 2)
716f688dacSYinan Xu  val csrCtrl = DelayN(io.csrCtrl, 2)
72*fa9f9690SLemover  val sfence = RegNext(RegNext(io.sfence))
7372951335SLi Qianruo
7472951335SLi Qianruo  // trigger
756f688dacSYinan Xu  ifu.io.frontendTrigger := csrCtrl.frontend_trigger
766f688dacSYinan Xu  val triggerEn = csrCtrl.trigger_enable
7772951335SLi Qianruo  ifu.io.csrTriggerEnable := VecInit(triggerEn(0), triggerEn(1), triggerEn(6), triggerEn(8))
7872951335SLi Qianruo
796ee06c7aSSteve Gou  // bpu ctrl
806ee06c7aSSteve Gou  bpu.io.ctrl := csrCtrl.bp_ctrl
81c4b44470SGuokai Chen  bpu.io.reset_vector := io.reset_vector
826ee06c7aSSteve Gou
83b6982e83SLemover// pmp
84b6982e83SLemover  val pmp = Module(new PMP())
8561e1db30SJay  val pmp_check = VecInit(Seq.fill(4)(Module(new PMPChecker(3, sameCycle = true)).io))
866f688dacSYinan Xu  pmp.io.distribute_csr := csrCtrl.distribute_csr
8761e1db30SJay  val pmp_req_vec     = Wire(Vec(4, Valid(new PMPReqBundle())))
88ee175d78SJay  pmp_req_vec(0) <> icache.io.pmp(0).req
8961e1db30SJay  pmp_req_vec(1) <> icache.io.pmp(1).req
9061e1db30SJay  pmp_req_vec(2) <> icache.io.pmp(2).req
9161e1db30SJay  pmp_req_vec(3) <> ifu.io.pmp.req
92ee175d78SJay
93b6982e83SLemover  for (i <- pmp_check.indices) {
94ee175d78SJay    pmp_check(i).apply(tlbCsr.priv.imode, pmp.io.pmp, pmp.io.pma, pmp_req_vec(i))
95b6982e83SLemover  }
9661e1db30SJay  icache.io.pmp(0).resp <> pmp_check(0).resp
9761e1db30SJay  icache.io.pmp(1).resp <> pmp_check(1).resp
9861e1db30SJay  icache.io.pmp(2).resp <> pmp_check(2).resp
9961e1db30SJay  ifu.io.pmp.resp <> pmp_check(3).resp
100ee175d78SJay
10191df15e5SJay  // val tlb_req_arb     = Module(new Arbiter(new TlbReq, 2))
10291df15e5SJay  // tlb_req_arb.io.in(0) <> ifu.io.iTLBInter.req
10391df15e5SJay  // tlb_req_arb.io.in(1) <> icache.io.itlb(1).req
104ee175d78SJay
10591df15e5SJay  val itlb_requestors = Wire(Vec(6, new BlockTlbRequestIO))
106ee175d78SJay  itlb_requestors(0) <> icache.io.itlb(0)
10791df15e5SJay  itlb_requestors(1) <> icache.io.itlb(1)
10891df15e5SJay  itlb_requestors(2) <> icache.io.itlb(2)
10991df15e5SJay  itlb_requestors(3) <> icache.io.itlb(3)
11091df15e5SJay  itlb_requestors(4) <> icache.io.itlb(4)
11191df15e5SJay  itlb_requestors(5) <> ifu.io.iTLBInter
11291df15e5SJay
11391df15e5SJay  // itlb_requestors(1).req <>  tlb_req_arb.io.out
11491df15e5SJay
11591df15e5SJay  // ifu.io.iTLBInter.resp  <> itlb_requestors(1).resp
11691df15e5SJay  // icache.io.itlb(1).resp <> itlb_requestors(1).resp
117b6982e83SLemover
11809c6f1ddSLingrui98  io.ptw <> TLB(
119ee175d78SJay    //in = Seq(icache.io.itlb(0), icache.io.itlb(1)),
12091df15e5SJay    in = Seq(itlb_requestors(0),itlb_requestors(1),itlb_requestors(2),itlb_requestors(3),itlb_requestors(4),itlb_requestors(5)),
121*fa9f9690SLemover    sfence = sfence,
12245f497a4Shappy-lx    csr = tlbCsr,
12391df15e5SJay    width = 6,
124a0301c0dSLemover    shouldBlock = true,
125a0301c0dSLemover    itlbParams
12609c6f1ddSLingrui98  )
12709c6f1ddSLingrui98
1287052722fSJay  icache.io.prefetch <> ftq.io.toPrefetch
129efcb3cd3SJinYue
130df5b4b8eSYinan Xu  val needFlush = RegNext(io.backend.toFtq.redirect.valid)
13109c6f1ddSLingrui98
13209c6f1ddSLingrui98  //IFU-Ftq
13309c6f1ddSLingrui98  ifu.io.ftqInter.fromFtq <> ftq.io.toIfu
13409c6f1ddSLingrui98  ftq.io.fromIfu          <> ifu.io.ftqInter.toFtq
13509c6f1ddSLingrui98  bpu.io.ftq_to_bpu       <> ftq.io.toBpu
13609c6f1ddSLingrui98  ftq.io.fromBpu          <> bpu.io.bpu_to_ftq
13709c6f1ddSLingrui98  //IFU-ICache
13809c6f1ddSLingrui98  for(i <- 0 until 2){
1391d8f4dcbSJay    ifu.io.icacheInter(i).req       <>      icache.io.fetch(i).req
1401d8f4dcbSJay    icache.io.fetch(i).req <> ifu.io.icacheInter(i).req
1411d8f4dcbSJay    ifu.io.icacheInter(i).resp <> icache.io.fetch(i).resp
14209c6f1ddSLingrui98  }
1431d8f4dcbSJay  icache.io.stop := ifu.io.icacheStop
14409c6f1ddSLingrui98
1451d8f4dcbSJay  ifu.io.icachePerfInfo := icache.io.perfInfo
1461d8f4dcbSJay
1476f688dacSYinan Xu  icache.io.csr.distribute_csr <> csrCtrl.distribute_csr
14870899835SWilliam Wang  io.csrUpdate := RegNext(icache.io.csr.update)
149e19f7967SWilliam Wang
150ecccf78fSJay  icache.io.csr_pf_enable     := RegNext(csrCtrl.l1I_pf_enable)
151ecccf78fSJay  icache.io.csr_parity_enable := RegNext(csrCtrl.icache_parity_enable)
152ecccf78fSJay
15309c6f1ddSLingrui98  //IFU-Ibuffer
15409c6f1ddSLingrui98  ifu.io.toIbuffer    <> ibuffer.io.in
15509c6f1ddSLingrui98
15609c6f1ddSLingrui98  ftq.io.fromBackend <> io.backend.toFtq
15709c6f1ddSLingrui98  io.backend.fromFtq <> ftq.io.toBackend
15809c6f1ddSLingrui98  io.frontendInfo.bpuInfo <> ftq.io.bpuInfo
15909c6f1ddSLingrui98
160a37fbf10SJay  ifu.io.rob_commits <> io.backend.toFtq.rob_commits
161a37fbf10SJay
16209c6f1ddSLingrui98  ibuffer.io.flush := needFlush
16309c6f1ddSLingrui98  io.backend.cfVec <> ibuffer.io.out
16409c6f1ddSLingrui98
1650be662e4SJay  instrUncache.io.req   <> ifu.io.uncacheInter.toUncache
1660be662e4SJay  ifu.io.uncacheInter.fromUncache <> instrUncache.io.resp
16758dbdfc2SJay  instrUncache.io.flush := false.B
16858dbdfc2SJay  io.error <> RegNext(RegNext(icache.io.error))
16909c6f1ddSLingrui98
17041cb8b61SJenius  icache.io.hartId := io.hartId
17141cb8b61SJenius
17209c6f1ddSLingrui98  val frontendBubble = PopCount((0 until DecodeWidth).map(i => io.backend.cfVec(i).ready && !ibuffer.io.out(i).valid))
17309c6f1ddSLingrui98  XSPerfAccumulate("FrontendBubble", frontendBubble)
17409c6f1ddSLingrui98  io.frontendInfo.ibufFull := RegNext(ibuffer.io.full)
175cd365d4cSrvcoresjw
1761ca0e4f3SYinan Xu  // PFEvent
1771ca0e4f3SYinan Xu  val pfevent = Module(new PFEvent)
1781ca0e4f3SYinan Xu  pfevent.io.distribute_csr := io.csrCtrl.distribute_csr
1791ca0e4f3SYinan Xu  val csrevents = pfevent.io.hpmevent.take(8)
180cd365d4cSrvcoresjw
1811ca0e4f3SYinan Xu  val allPerfEvents = Seq(ifu, ibuffer, icache, ftq, bpu).flatMap(_.getPerf)
1821ca0e4f3SYinan Xu  override val perfEvents = HPerfMonitor(csrevents, allPerfEvents).getPerfEvents
1831ca0e4f3SYinan Xu  generatePerfEvent()
18409c6f1ddSLingrui98}
185