xref: /XiangShan/src/main/scala/xiangshan/Parameters.scala (revision 00240ba60853d0c9a5dc31089dee22d7fe1d7afd)
1/***************************************************************************************
2* Copyright (c) 2020-2021 Institute of Computing Technology, Chinese Academy of Sciences
3* Copyright (c) 2020-2021 Peng Cheng Laboratory
4*
5* XiangShan is licensed under Mulan PSL v2.
6* You can use this software according to the terms and conditions of the Mulan PSL v2.
7* You may obtain a copy of Mulan PSL v2 at:
8*          http://license.coscl.org.cn/MulanPSL2
9*
10* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
11* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
12* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
13*
14* See the Mulan PSL v2 for more details.
15***************************************************************************************/
16
17package xiangshan
18
19import chipsalliance.rocketchip.config.{Field, Parameters}
20import chisel3._
21import chisel3.util._
22import xiangshan.backend.exu._
23import xiangshan.backend.dispatch.DispatchParameters
24import xiangshan.cache.DCacheParameters
25import xiangshan.cache.prefetch._
26import xiangshan.frontend.{BIM, BasePredictor, BranchPredictionResp, FTB, FakePredictor, MicroBTB, RAS, Tage, ITTage, Tage_SC}
27import xiangshan.frontend.icache.ICacheParameters
28import xiangshan.cache.mmu.{L2TLBParameters, TLBParameters}
29import freechips.rocketchip.diplomacy.AddressSet
30import system.SoCParamsKey
31import huancun._
32import huancun.debug._
33import scala.math.min
34
35case object XSTileKey extends Field[Seq[XSCoreParameters]]
36
37case object XSCoreParamsKey extends Field[XSCoreParameters]
38
39case class XSCoreParameters
40(
41  HasPrefetch: Boolean = false,
42  HartId: Int = 0,
43  XLEN: Int = 64,
44  HasMExtension: Boolean = true,
45  HasCExtension: Boolean = true,
46  HasDiv: Boolean = true,
47  HasICache: Boolean = true,
48  HasDCache: Boolean = true,
49  AddrBits: Int = 64,
50  VAddrBits: Int = 39,
51  HasFPU: Boolean = true,
52  HasCustomCSRCacheOp: Boolean = true,
53  FetchWidth: Int = 8,
54  AsidLength: Int = 16,
55  EnableBPU: Boolean = true,
56  EnableBPD: Boolean = true,
57  EnableRAS: Boolean = true,
58  EnableLB: Boolean = false,
59  EnableLoop: Boolean = true,
60  EnableSC: Boolean = true,
61  EnbaleTlbDebug: Boolean = false,
62  EnableJal: Boolean = false,
63  EnableUBTB: Boolean = true,
64  UbtbGHRLength: Int = 4,
65  HistoryLength: Int = 512,
66  EnableGHistDiff: Boolean = true,
67  UbtbSize: Int = 256,
68  FtbSize: Int = 2048,
69  RasSize: Int = 32,
70  CacheLineSize: Int = 512,
71  FtbWays: Int = 4,
72  TageTableInfos: Seq[Tuple3[Int,Int,Int]] =
73  //       Sets  Hist   Tag
74    // Seq(( 2048,    2,    8),
75    //     ( 2048,    9,    8),
76    //     ( 2048,   13,    8),
77    //     ( 2048,   20,    8),
78    //     ( 2048,   26,    8),
79    //     ( 2048,   44,    8),
80    //     ( 2048,   73,    8),
81    //     ( 2048,  256,    8)),
82    Seq(( 4096,    8,    8),
83        ( 4096,   13,    8),
84        ( 4096,   32,    8),
85        ( 4096,  119,    8)),
86  ITTageTableInfos: Seq[Tuple3[Int,Int,Int]] =
87  //      Sets  Hist   Tag
88    Seq(( 256,    4,    9),
89        ( 256,    8,    9),
90        ( 512,   13,    9),
91        ( 512,   16,    9),
92        ( 512,   32,    9)),
93  SCNRows: Int = 512,
94  SCNTables: Int = 4,
95  SCCtrBits: Int = 6,
96  SCHistLens: Seq[Int] = Seq(0, 4, 10, 16),
97  numBr: Int = 2,
98  branchPredictor: Function2[BranchPredictionResp, Parameters, Tuple2[Seq[BasePredictor], BranchPredictionResp]] =
99    ((resp_in: BranchPredictionResp, p: Parameters) => {
100      // val loop = Module(new LoopPredictor)
101      // val tage = (if(EnableBPD) { if (EnableSC) Module(new Tage_SC)
102      //                             else          Module(new Tage) }
103      //             else          { Module(new FakeTage) })
104      val ftb = Module(new FTB()(p))
105      val ubtb = Module(new MicroBTB()(p))
106      // val bim = Module(new BIM()(p))
107      val tage = Module(new Tage_SC()(p))
108      val ras = Module(new RAS()(p))
109      val ittage = Module(new ITTage()(p))
110      // val tage = Module(new Tage()(p))
111      // val fake = Module(new FakePredictor()(p))
112
113      // val preds = Seq(loop, tage, btb, ubtb, bim)
114      val preds = Seq(ubtb, tage, ftb, ittage, ras)
115      preds.map(_.io := DontCare)
116
117      // ubtb.io.resp_in(0)  := resp_in
118      // bim.io.resp_in(0)   := ubtb.io.resp
119      // btb.io.resp_in(0)   := bim.io.resp
120      // tage.io.resp_in(0)  := btb.io.resp
121      // loop.io.resp_in(0)  := tage.io.resp
122      ubtb.io.in.bits.resp_in(0) := resp_in
123      tage.io.in.bits.resp_in(0) := ubtb.io.out.resp
124      ftb.io.in.bits.resp_in(0)  := tage.io.out.resp
125      ittage.io.in.bits.resp_in(0)  := ftb.io.out.resp
126      ras.io.in.bits.resp_in(0) := ittage.io.out.resp
127
128      (preds, ras.io.out.resp)
129    }),
130  IBufSize: Int = 48,
131  DecodeWidth: Int = 6,
132  RenameWidth: Int = 6,
133  CommitWidth: Int = 6,
134  FtqSize: Int = 64,
135  EnableLoadFastWakeUp: Boolean = true, // NOTE: not supported now, make it false
136  IssQueSize: Int = 16,
137  NRPhyRegs: Int = 192,
138  LoadQueueSize: Int = 80,
139  StoreQueueSize: Int = 64,
140  RobSize: Int = 256,
141  dpParams: DispatchParameters = DispatchParameters(
142    IntDqSize = 16,
143    FpDqSize = 16,
144    LsDqSize = 16,
145    IntDqDeqWidth = 4,
146    FpDqDeqWidth = 4,
147    LsDqDeqWidth = 4
148  ),
149  exuParameters: ExuParameters = ExuParameters(
150    JmpCnt = 1,
151    AluCnt = 4,
152    MulCnt = 0,
153    MduCnt = 2,
154    FmacCnt = 4,
155    FmiscCnt = 2,
156    FmiscDivSqrtCnt = 0,
157    LduCnt = 2,
158    StuCnt = 2
159  ),
160  LoadPipelineWidth: Int = 2,
161  StorePipelineWidth: Int = 2,
162  StoreBufferSize: Int = 16,
163  StoreBufferThreshold: Int = 7,
164  EnableLoadToLoadForward: Boolean = false,
165  EnableFastForward: Boolean = false,
166  EnableLdVioCheckAfterReset: Boolean = true,
167  EnableSoftPrefetchAfterReset: Boolean = true,
168  EnableCacheErrorAfterReset: Boolean = true,
169  RefillSize: Int = 512,
170  MMUAsidLen: Int = 16, // max is 16, 0 is not supported now
171  itlbParameters: TLBParameters = TLBParameters(
172    name = "itlb",
173    fetchi = true,
174    useDmode = false,
175    sameCycle = false,
176    missSameCycle = true,
177    normalNWays = 32,
178    normalReplacer = Some("plru"),
179    superNWays = 4,
180    superReplacer = Some("plru"),
181    shouldBlock = true
182  ),
183  ldtlbParameters: TLBParameters = TLBParameters(
184    name = "ldtlb",
185    normalNSets = 128,
186    normalNWays = 1,
187    normalAssociative = "sa",
188    normalReplacer = Some("setplru"),
189    superNWays = 8,
190    normalAsVictim = true,
191    outReplace = true,
192    partialStaticPMP = true,
193    saveLevel = true
194  ),
195  sttlbParameters: TLBParameters = TLBParameters(
196    name = "sttlb",
197    normalNSets = 128,
198    normalNWays = 1,
199    normalAssociative = "sa",
200    normalReplacer = Some("setplru"),
201    superNWays = 8,
202    normalAsVictim = true,
203    outReplace = true,
204    partialStaticPMP = true,
205    saveLevel = true
206  ),
207  refillBothTlb: Boolean = false,
208  btlbParameters: TLBParameters = TLBParameters(
209    name = "btlb",
210    normalNSets = 1,
211    normalNWays = 64,
212    superNWays = 4,
213  ),
214  l2tlbParameters: L2TLBParameters = L2TLBParameters(),
215  NumPerfCounters: Int = 16,
216  icacheParameters: ICacheParameters = ICacheParameters(
217    tagECC = Some("parity"),
218    dataECC = Some("parity"),
219    replacer = Some("setplru"),
220    nMissEntries = 2,
221    nProbeEntries = 2,
222    nPrefetchEntries = 2,
223    hasPrefetch = true,
224  ),
225  dcacheParametersOpt: Option[DCacheParameters] = Some(DCacheParameters(
226    tagECC = Some("secded"),
227    dataECC = Some("secded"),
228    replacer = Some("setplru"),
229    nMissEntries = 16,
230    nProbeEntries = 8,
231    nReleaseEntries = 18
232  )),
233  L2CacheParamsOpt: Option[HCCacheParameters] = Some(HCCacheParameters(
234    name = "l2",
235    level = 2,
236    ways = 8,
237    sets = 1024, // default 512KB L2
238    prefetch = Some(huancun.prefetch.BOPParameters())
239  )),
240  L2NBanks: Int = 1,
241  usePTWRepeater: Boolean = false,
242  softPTW: Boolean = false // dpi-c debug only
243){
244  val loadExuConfigs = Seq.fill(exuParameters.LduCnt)(LdExeUnitCfg)
245  val storeExuConfigs = Seq.fill(exuParameters.StuCnt)(StaExeUnitCfg) ++ Seq.fill(exuParameters.StuCnt)(StdExeUnitCfg)
246
247  val intExuConfigs = (Seq.fill(exuParameters.AluCnt)(AluExeUnitCfg) ++
248    Seq.fill(exuParameters.MduCnt)(MulDivExeUnitCfg) :+ JumpCSRExeUnitCfg)
249
250  val fpExuConfigs =
251    Seq.fill(exuParameters.FmacCnt)(FmacExeUnitCfg) ++
252      Seq.fill(exuParameters.FmiscCnt)(FmiscExeUnitCfg)
253
254  val exuConfigs: Seq[ExuConfig] = intExuConfigs ++ fpExuConfigs ++ loadExuConfigs ++ storeExuConfigs
255}
256
257case object DebugOptionsKey extends Field[DebugOptions]
258
259case class DebugOptions
260(
261  FPGAPlatform: Boolean = false,
262  EnableDifftest: Boolean = false,
263  AlwaysBasicDiff: Boolean = true,
264  EnableDebug: Boolean = false,
265  EnablePerfDebug: Boolean = true,
266  UseDRAMSim: Boolean = false
267)
268
269trait HasXSParameter {
270
271  implicit val p: Parameters
272
273  val PAddrBits = p(SoCParamsKey).PAddrBits // PAddrBits is Phyical Memory addr bits
274
275  val coreParams = p(XSCoreParamsKey)
276  val env = p(DebugOptionsKey)
277
278  val XLEN = coreParams.XLEN
279  val minFLen = 32
280  val fLen = 64
281  def xLen = XLEN
282
283  val HasMExtension = coreParams.HasMExtension
284  val HasCExtension = coreParams.HasCExtension
285  val HasDiv = coreParams.HasDiv
286  val HasIcache = coreParams.HasICache
287  val HasDcache = coreParams.HasDCache
288  val AddrBits = coreParams.AddrBits // AddrBits is used in some cases
289  val VAddrBits = coreParams.VAddrBits // VAddrBits is Virtual Memory addr bits
290  val AsidLength = coreParams.AsidLength
291  val AddrBytes = AddrBits / 8 // unused
292  val DataBits = XLEN
293  val DataBytes = DataBits / 8
294  val HasFPU = coreParams.HasFPU
295  val HasCustomCSRCacheOp = coreParams.HasCustomCSRCacheOp
296  val FetchWidth = coreParams.FetchWidth
297  val PredictWidth = FetchWidth * (if (HasCExtension) 2 else 1)
298  val EnableBPU = coreParams.EnableBPU
299  val EnableBPD = coreParams.EnableBPD // enable backing predictor(like Tage) in BPUStage3
300  val EnableRAS = coreParams.EnableRAS
301  val EnableLB = coreParams.EnableLB
302  val EnableLoop = coreParams.EnableLoop
303  val EnableSC = coreParams.EnableSC
304  val EnbaleTlbDebug = coreParams.EnbaleTlbDebug
305  val HistoryLength = coreParams.HistoryLength
306  val EnableGHistDiff = coreParams.EnableGHistDiff
307  val UbtbGHRLength = coreParams.UbtbGHRLength
308  val UbtbSize = coreParams.UbtbSize
309  val FtbSize = coreParams.FtbSize
310  val FtbWays = coreParams.FtbWays
311  val RasSize = coreParams.RasSize
312
313  def getBPDComponents(resp_in: BranchPredictionResp, p: Parameters) = {
314    coreParams.branchPredictor(resp_in, p)
315  }
316  val numBr = coreParams.numBr
317  val TageTableInfos = coreParams.TageTableInfos
318  val TageBanks = coreParams.numBr
319  val SCNRows = coreParams.SCNRows
320  val SCCtrBits = coreParams.SCCtrBits
321  val SCHistLens = coreParams.SCHistLens
322  val SCNTables = coreParams.SCNTables
323
324  val SCTableInfos = Seq.fill(SCNTables)((SCNRows, SCCtrBits)) zip SCHistLens map {
325    case ((n, cb), h) => (n, cb, h)
326  }
327  val ITTageTableInfos = coreParams.ITTageTableInfos
328  type FoldedHistoryInfo = Tuple2[Int, Int]
329  val foldedGHistInfos =
330    (TageTableInfos.map{ case (nRows, h, t) =>
331      if (h > 0)
332        Set((h, min(log2Ceil(nRows/numBr), h)), (h, min(h, t)), (h, min(h, t-1)))
333      else
334        Set[FoldedHistoryInfo]()
335    }.reduce(_++_).toSet ++
336    SCTableInfos.map{ case (nRows, _, h) =>
337      if (h > 0)
338        Set((h, min(log2Ceil(nRows/TageBanks), h)))
339      else
340        Set[FoldedHistoryInfo]()
341    }.reduce(_++_).toSet ++
342    ITTageTableInfos.map{ case (nRows, h, t) =>
343      if (h > 0)
344        Set((h, min(log2Ceil(nRows), h)), (h, min(h, t)), (h, min(h, t-1)))
345      else
346        Set[FoldedHistoryInfo]()
347    }.reduce(_++_) ++
348      Set[FoldedHistoryInfo]((UbtbGHRLength, log2Ceil(UbtbSize)))
349    ).toList
350
351  val CacheLineSize = coreParams.CacheLineSize
352  val CacheLineHalfWord = CacheLineSize / 16
353  val ExtHistoryLength = HistoryLength + 64
354  val IBufSize = coreParams.IBufSize
355  val DecodeWidth = coreParams.DecodeWidth
356  val RenameWidth = coreParams.RenameWidth
357  val CommitWidth = coreParams.CommitWidth
358  val FtqSize = coreParams.FtqSize
359  val IssQueSize = coreParams.IssQueSize
360  val EnableLoadFastWakeUp = coreParams.EnableLoadFastWakeUp
361  val NRPhyRegs = coreParams.NRPhyRegs
362  val PhyRegIdxWidth = log2Up(NRPhyRegs)
363  val RobSize = coreParams.RobSize
364  val IntRefCounterWidth = log2Ceil(RobSize)
365  val LoadQueueSize = coreParams.LoadQueueSize
366  val StoreQueueSize = coreParams.StoreQueueSize
367  val dpParams = coreParams.dpParams
368  val exuParameters = coreParams.exuParameters
369  val NRMemReadPorts = exuParameters.LduCnt + 2 * exuParameters.StuCnt
370  val NRIntReadPorts = 2 * exuParameters.AluCnt + NRMemReadPorts
371  val NRIntWritePorts = exuParameters.AluCnt + exuParameters.MduCnt + exuParameters.LduCnt
372  val NRFpReadPorts = 3 * exuParameters.FmacCnt + exuParameters.StuCnt
373  val NRFpWritePorts = exuParameters.FpExuCnt + exuParameters.LduCnt
374  val LoadPipelineWidth = coreParams.LoadPipelineWidth
375  val StorePipelineWidth = coreParams.StorePipelineWidth
376  val StoreBufferSize = coreParams.StoreBufferSize
377  val StoreBufferThreshold = coreParams.StoreBufferThreshold
378  val EnableLoadToLoadForward = coreParams.EnableLoadToLoadForward
379  val EnableFastForward = coreParams.EnableFastForward
380  val EnableLdVioCheckAfterReset = coreParams.EnableLdVioCheckAfterReset
381  val EnableSoftPrefetchAfterReset = coreParams.EnableSoftPrefetchAfterReset
382  val EnableCacheErrorAfterReset = coreParams.EnableCacheErrorAfterReset
383  val RefillSize = coreParams.RefillSize
384  val asidLen = coreParams.MMUAsidLen
385  val BTLBWidth = coreParams.LoadPipelineWidth + coreParams.StorePipelineWidth
386  val refillBothTlb = coreParams.refillBothTlb
387  val itlbParams = coreParams.itlbParameters
388  val ldtlbParams = coreParams.ldtlbParameters
389  val sttlbParams = coreParams.sttlbParameters
390  val btlbParams = coreParams.btlbParameters
391  val l2tlbParams = coreParams.l2tlbParameters
392  val NumPerfCounters = coreParams.NumPerfCounters
393
394  val NumRs = (exuParameters.JmpCnt+1)/2 + (exuParameters.AluCnt+1)/2 + (exuParameters.MulCnt+1)/2 +
395              (exuParameters.MduCnt+1)/2 + (exuParameters.FmacCnt+1)/2 +  + (exuParameters.FmiscCnt+1)/2 +
396              (exuParameters.FmiscDivSqrtCnt+1)/2 + (exuParameters.LduCnt+1)/2 +
397              ((exuParameters.StuCnt+1)/2) + ((exuParameters.StuCnt+1)/2)
398
399  val instBytes = if (HasCExtension) 2 else 4
400  val instOffsetBits = log2Ceil(instBytes)
401
402  val icacheParameters = coreParams.icacheParameters
403  val dcacheParameters = coreParams.dcacheParametersOpt.getOrElse(DCacheParameters())
404
405  // dcache block cacheline when lr for LRSCCycles - LRSCBackOff cycles
406  // for constrained LR/SC loop
407  val LRSCCycles = 64
408  // for lr storm
409  val LRSCBackOff = 8
410
411  // cache hierarchy configurations
412  val l1BusDataWidth = 256
413
414  // load violation predict
415  val ResetTimeMax2Pow = 20 //1078576
416  val ResetTimeMin2Pow = 10 //1024
417  // wait table parameters
418  val WaitTableSize = 1024
419  val MemPredPCWidth = log2Up(WaitTableSize)
420  val LWTUse2BitCounter = true
421  // store set parameters
422  val SSITSize = WaitTableSize
423  val LFSTSize = 32
424  val SSIDWidth = log2Up(LFSTSize)
425  val LFSTWidth = 4
426  val StoreSetEnable = true // LWT will be disabled if SS is enabled
427
428  val loadExuConfigs = coreParams.loadExuConfigs
429  val storeExuConfigs = coreParams.storeExuConfigs
430
431  val intExuConfigs = coreParams.intExuConfigs
432
433  val fpExuConfigs = coreParams.fpExuConfigs
434
435  val exuConfigs = coreParams.exuConfigs
436
437  val PCntIncrStep: Int = 6
438  val numPCntHc: Int = 25
439  val numPCntPtw: Int = 19
440
441  val numCSRPCntFrontend = 8
442  val numCSRPCntCtrl     = 8
443  val numCSRPCntLsu      = 8
444  val numCSRPCntHc       = 5
445}
446