/*************************************************************************************** * Copyright (c) 2024 Beijing Institute of Open Source Chip (BOSC) * Copyright (c) 2024 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 device.IMSICAsync import coupledL2.tl2chi.{AsyncPortIO, CHIAsyncBridgeSource, PortIO} import utility.sram.SramBroadcastBundle 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 DebugModule bus val EnableDMAsync = EnableDMAsyncBridge.isDefined println(s"SeperateDMBus = $SeperateDMBus") println(s"EnableDMAsync = $EnableDMAsync") // asynchronous bridge source node val dmAsyncSourceOpt = Option.when(SeperateDMBus && EnableDMAsync)(LazyModule(new TLAsyncCrossingSource())) dmAsyncSourceOpt.foreach(_.node := tile.sep_dm_opt.get) // synchronous source node val dmSyncSourceOpt = Option.when(SeperateDMBus && !EnableDMAsync)(TLTempNode()) dmSyncSourceOpt.foreach(_ := tile.sep_dm_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 dft = if(hasMbist) Some(Input(new SramBroadcastBundle)) else None val dft_reset = if(hasMbist) Some(Input(new DFTResetSignals())) else None 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.dft_reset)) val noc_reset_sync = EnableCHIAsyncBridge.map(_ => withClockAndReset(clock, noc_reset.get)(ResetGen(2, io.dft_reset))) val soc_reset_sync = withClockAndReset(clock, soc_reset)(ResetGen(2, io.dft_reset)) // override LazyRawModuleImp's clock and reset childClock := clock childReset := reset_sync val imsicAsync = withClockAndReset(clock, reset_sync)(Module(new IMSICAsync())) imsicAsync.i.msiInfo := io.msiInfo tile.module.io.hartId := io.hartId tile.module.io.msiInfo := imsicAsync.o.msiInfo tile.module.io.reset_vector := io.reset_vector tile.module.io.dft.zip(io.dft).foreach({case(a, b) => a := b}) tile.module.io.dft_reset.zip(io.dft_reset).foreach({case(a, b) => a := b}) 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 (SeperateDMBus && EnableDMAsync) { dmAsyncSourceOpt.get.module.clock := clock dmAsyncSourceOpt.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.dft_reset) } dontTouch(io.hartId) dontTouch(io.msiInfo) } lazy val module = new XSTileWrapImp(this) }