/*************************************************************************************** * Copyright (c) 2024-2025 Beijing Institute of Open Source Chip (BOSC) * Copyright (c) 2024-2025 Institute of Computing Technology, Chinese Academy of Sciences * * XiangShan is licensed under Mulan PSL v2. * You can use this software according to the terms and conditions of the Mulan PSL v2. * You may obtain a copy of Mulan PSL v2 at: * http://license.coscl.org.cn/MulanPSL2 * * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, * MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. * * See the Mulan PSL v2 for more details. ***************************************************************************************/ package xiangshan import chisel3._ import chisel3.util._ import org.chipsalliance.cde.config._ import freechips.rocketchip.diplomacy._ import freechips.rocketchip.interrupts._ import freechips.rocketchip.tilelink._ import freechips.rocketchip.util._ import system.HasSoCParameter import coupledL2.tl2chi.{AsyncPortIO, CHIAsyncBridgeSource, PortIO} import utility.sram.{SramBroadcastBundle, SramMbistBundle} import utility.{DFTResetSignals, IntBuffer, ResetGen} import xiangshan.backend.trace.TraceCoreInterface // This module is used for XSNoCTop for async time domain and divide different // voltage domain. Everything in this module should be in the core clock domain // and higher voltage domain. class XSTileWrap()(implicit p: Parameters) extends LazyModule with HasXSParameter with HasSoCParameter { override def shouldBeInlined: Boolean = false val tile = LazyModule(new XSTile()) // interrupts sync val clintIntNode = IntIdentityNode() val debugIntNode = IntIdentityNode() val plicIntNode = IntIdentityNode() val beuIntNode = IntIdentityNode() val nmiIntNode = IntIdentityNode() tile.clint_int_node := IntBuffer(3, cdc = true) := clintIntNode tile.debug_int_node := IntBuffer(3, cdc = true) := debugIntNode tile.plic_int_node :*= IntBuffer(3, cdc = true) :*= plicIntNode tile.nmi_int_node := IntBuffer(3, cdc = true) := nmiIntNode beuIntNode := IntBuffer() := tile.beu_int_source // seperate TL bus println(s"SeperateTLBus = $SeperateTLBus") println(s"EnableSeperateTLAsync = $EnableSeperateTLAsync") // asynchronous bridge source node val tlAsyncSourceOpt = Option.when(SeperateTLBus && EnableSeperateTLAsync)(LazyModule(new TLAsyncCrossingSource())) tlAsyncSourceOpt.foreach(_.node := tile.sep_tl_opt.get) // synchronous source node val tlSyncSourceOpt = Option.when(SeperateTLBus && !EnableSeperateTLAsync)(TLTempNode()) tlSyncSourceOpt.foreach(_ := tile.sep_tl_opt.get) class XSTileWrapImp(wrapper: LazyModule) extends LazyRawModuleImp(wrapper) { val clock = IO(Input(Clock())) val reset = IO(Input(AsyncReset())) val noc_reset = EnableCHIAsyncBridge.map(_ => IO(Input(AsyncReset()))) val soc_reset = IO(Input(AsyncReset())) val io = IO(new Bundle { val hartId = Input(UInt(hartIdLen.W)) val msiInfo = Input(ValidIO(UInt(soc.IMSICParams.MSI_INFO_WIDTH.W))) val msiAck = Output(Bool()) val reset_vector = Input(UInt(PAddrBits.W)) val cpu_halt = Output(Bool()) val cpu_crtical_error = Output(Bool()) val hartResetReq = Input(Bool()) val hartIsInReset = Output(Bool()) val traceCoreInterface = new TraceCoreInterface val debugTopDown = new Bundle { val robHeadPaddr = Valid(UInt(PAddrBits.W)) val l3MissMatch = Input(Bool()) } val l3Miss = Input(Bool()) val chi = EnableCHIAsyncBridge match { case Some(param) => new AsyncPortIO(param) case None => new PortIO } val nodeID = if (enableCHI) Some(Input(UInt(NodeIDWidth.W))) else None val clintTime = EnableClintAsyncBridge match { case Some(param) => Flipped(new AsyncBundle(UInt(64.W), param)) case None => Input(ValidIO(UInt(64.W))) } val sramTest = new Bundle() { val mbist = Option.when(hasMbist)(Input(new SramMbistBundle)) val mbistReset = Option.when(hasMbist)(Input(new DFTResetSignals())) val sramCtl = Option.when(hasSramCtl)(Input(UInt(64.W))) } val l2_flush_en = Option.when(EnablePowerDown) (Output(Bool())) val l2_flush_done = Option.when(EnablePowerDown) (Output(Bool())) val pwrdown_req_n = Option.when(EnablePowerDown) (Input (Bool())) val pwrdown_ack_n = Option.when(EnablePowerDown) (Output (Bool())) val iso_en = Option.when(EnablePowerDown) (Input (Bool())) }) val reset_sync = withClockAndReset(clock, (reset.asBool || io.hartResetReq).asAsyncReset)(ResetGen(2, io.sramTest.mbistReset)) val noc_reset_sync = EnableCHIAsyncBridge.map(_ => withClockAndReset(clock, noc_reset.get)(ResetGen(2, io.sramTest.mbistReset))) val soc_reset_sync = withClockAndReset(clock, soc_reset)(ResetGen(2, io.sramTest.mbistReset)) // override LazyRawModuleImp's clock and reset childClock := clock childReset := reset_sync tile.module.io.hartId := io.hartId tile.module.io.msiInfo := io.msiInfo tile.module.io.reset_vector := io.reset_vector tile.module.io.sramTest := io.sramTest io.cpu_halt := tile.module.io.cpu_halt io.cpu_crtical_error := tile.module.io.cpu_crtical_error io.msiAck := tile.module.io.msiAck io.hartIsInReset := tile.module.io.hartIsInReset io.traceCoreInterface <> tile.module.io.traceCoreInterface io.debugTopDown <> tile.module.io.debugTopDown tile.module.io.l3Miss := io.l3Miss tile.module.io.nodeID.foreach(_ := io.nodeID.get) io.l2_flush_en.foreach { _ := tile.module.io.l2_flush_en.getOrElse(false.B) } io.l2_flush_done.foreach { _ := tile.module.io.l2_flush_done.getOrElse(false.B) } io.pwrdown_ack_n.foreach { _ := true.B } // CLINT Async Queue Sink EnableClintAsyncBridge match { case Some(param) => val sink = withClockAndReset(clock, soc_reset_sync)(Module(new AsyncQueueSink(UInt(64.W), param))) sink.io.async <> io.clintTime sink.io.deq.ready := true.B tile.module.io.clintTime.valid := sink.io.deq.valid tile.module.io.clintTime.bits := sink.io.deq.bits case None => tile.module.io.clintTime := io.clintTime } // CHI Async Queue Source EnableCHIAsyncBridge match { case Some(param) => val source = withClockAndReset(clock, noc_reset_sync.get)(Module(new CHIAsyncBridgeSource(param))) source.io.enq <> tile.module.io.chi.get io.chi <> source.io.async case None => require(enableCHI) io.chi <> tile.module.io.chi.get } // Seperate DebugModule TL Async Queue Source if (SeperateTLBus && EnableSeperateTLAsync) { tlAsyncSourceOpt.get.module.clock := clock tlAsyncSourceOpt.get.module.reset := soc_reset_sync } withClockAndReset(clock, reset_sync) { // Modules are reset one by one // reset ----> SYNC --> XSTile val resetChain = Seq(Seq(tile.module)) ResetGen(resetChain, reset_sync, !debugOpts.FPGAPlatform, io.sramTest.mbistReset) } dontTouch(io.hartId) dontTouch(io.msiInfo) } lazy val module = new XSTileWrapImp(this) }