xref: /XiangShan/src/main/scala/xiangshan/Parameters.scala (revision dcbc69cb2a7ea07707ede3d8f7c74421ef450202)
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 huancun.{CacheParameters, HCCacheParameters}
27import xiangshan.frontend.{BIM, BasePredictor, BranchPredictionResp, FTB, FakePredictor, MicroBTB, RAS, Tage, ITTage, Tage_SC}
28import xiangshan.frontend.icache.ICacheParameters
29import xiangshan.cache.mmu.{TLBParameters, L2TLBParameters}
30import freechips.rocketchip.diplomacy.AddressSet
31import system.SoCParamsKey
32import scala.math.min
33
34case object XSTileKey extends Field[Seq[XSCoreParameters]]
35
36case object XSCoreParamsKey extends Field[XSCoreParameters]
37
38case class XSCoreParameters
39(
40  HasPrefetch: Boolean = false,
41  HartId: Int = 0,
42  XLEN: Int = 64,
43  HasMExtension: Boolean = true,
44  HasCExtension: Boolean = true,
45  HasDiv: Boolean = true,
46  HasICache: Boolean = true,
47  HasDCache: Boolean = true,
48  AddrBits: Int = 64,
49  VAddrBits: Int = 39,
50  HasFPU: Boolean = true,
51  HasCustomCSRCacheOp: Boolean = true,
52  FetchWidth: Int = 8,
53  AsidLength: Int = 16,
54  EnableBPU: Boolean = true,
55  EnableBPD: Boolean = true,
56  EnableRAS: Boolean = true,
57  EnableLB: Boolean = false,
58  EnableLoop: Boolean = true,
59  EnableSC: Boolean = true,
60  EnbaleTlbDebug: Boolean = false,
61  EnableJal: Boolean = false,
62  EnableUBTB: Boolean = true,
63  HistoryLength: Int = 256,
64  PathHistoryLength: Int = 16,
65  BtbSize: Int = 2048,
66  JbtacSize: Int = 1024,
67  JbtacBanks: Int = 8,
68  RasSize: Int = 32,
69  CacheLineSize: Int = 512,
70  UBtbWays: Int = 16,
71  BtbWays: Int = 2,
72  TageTableInfos: Seq[Tuple3[Int,Int,Int]] =
73  //       Sets  Hist   Tag
74    Seq(( 128*8,    2,    7),
75        ( 128*8,    4,    7),
76        ( 256*8,    8,    8),
77        ( 256*8,   16,    8),
78        ( 128*8,   32,    9),
79        ( 128*8,   65,    9)),
80  TageBanks: Int = 2,
81  ITTageTableInfos: Seq[Tuple3[Int,Int,Int]] =
82  //      Sets  Hist   Tag
83    Seq(( 512,    0,    0),
84        ( 256,    4,    8),
85        ( 256,    8,    8),
86        ( 512,   12,    8),
87        ( 512,   16,    8),
88        ( 512,   32,    8)),
89  SCNRows: Int = 1024,
90  SCNTables: Int = 6,
91  SCCtrBits: Int = 6,
92  numBr: Int = 2,
93  branchPredictor: Function2[BranchPredictionResp, Parameters, Tuple2[Seq[BasePredictor], BranchPredictionResp]] =
94    ((resp_in: BranchPredictionResp, p: Parameters) => {
95      // val loop = Module(new LoopPredictor)
96      // val tage = (if(EnableBPD) { if (EnableSC) Module(new Tage_SC)
97      //                             else          Module(new Tage) }
98      //             else          { Module(new FakeTage) })
99      val ftb = Module(new FTB()(p))
100      val ubtb = Module(new MicroBTB()(p))
101      val bim = Module(new BIM()(p))
102      val tage = Module(new Tage_SC()(p))
103      val ras = Module(new RAS()(p))
104      val ittage = Module(new ITTage()(p))
105      // val tage = Module(new Tage()(p))
106      // val fake = Module(new FakePredictor()(p))
107
108      // val preds = Seq(loop, tage, btb, ubtb, bim)
109      val preds = Seq(bim, ubtb, tage, ftb, ittage, ras)
110      preds.map(_.io := DontCare)
111
112      // ubtb.io.resp_in(0)  := resp_in
113      // bim.io.resp_in(0)   := ubtb.io.resp
114      // btb.io.resp_in(0)   := bim.io.resp
115      // tage.io.resp_in(0)  := btb.io.resp
116      // loop.io.resp_in(0)  := tage.io.resp
117      bim.io.in.bits.resp_in(0)  := resp_in
118      ubtb.io.in.bits.resp_in(0) := bim.io.out.resp
119      tage.io.in.bits.resp_in(0) := ubtb.io.out.resp
120      ftb.io.in.bits.resp_in(0)  := tage.io.out.resp
121      ittage.io.in.bits.resp_in(0)  := ftb.io.out.resp
122      ras.io.in.bits.resp_in(0) := ittage.io.out.resp
123
124      (preds, ras.io.out.resp)
125    }),
126  IBufSize: Int = 48,
127  DecodeWidth: Int = 6,
128  RenameWidth: Int = 6,
129  CommitWidth: Int = 6,
130  FtqSize: Int = 64,
131  EnableLoadFastWakeUp: Boolean = true, // NOTE: not supported now, make it false
132  IssQueSize: Int = 16,
133  NRPhyRegs: Int = 192,
134  NRIntReadPorts: Int = 14,
135  NRIntWritePorts: Int = 8,
136  NRFpReadPorts: Int = 14,
137  NRFpWritePorts: Int = 8,
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  RefillSize: Int = 512,
168  MMUAsidLen: Int = 16, // max is 16, 0 is not supported now
169  itlbParameters: TLBParameters = TLBParameters(
170    name = "itlb",
171    fetchi = true,
172    useDmode = false,
173    sameCycle = true,
174    normalNWays = 32,
175    normalReplacer = Some("plru"),
176    superNWays = 4,
177    superReplacer = Some("plru"),
178    shouldBlock = true
179  ),
180  ldtlbParameters: TLBParameters = TLBParameters(
181    name = "ldtlb",
182    normalNSets = 128,
183    normalNWays = 1,
184    normalAssociative = "sa",
185    normalReplacer = Some("setplru"),
186    superNWays = 8,
187    normalAsVictim = true,
188    outReplace = true,
189    saveLevel = true
190  ),
191  sttlbParameters: TLBParameters = TLBParameters(
192    name = "sttlb",
193    normalNSets = 128,
194    normalNWays = 1,
195    normalAssociative = "sa",
196    normalReplacer = Some("setplru"),
197    superNWays = 8,
198    normalAsVictim = true,
199    outReplace = true,
200    saveLevel = true
201  ),
202  refillBothTlb: Boolean = false,
203  btlbParameters: TLBParameters = TLBParameters(
204    name = "btlb",
205    normalNSets = 1,
206    normalNWays = 64,
207    superNWays = 4,
208  ),
209  l2tlbParameters: L2TLBParameters = L2TLBParameters(),
210  NumPMP: Int = 16, // 0 or 16 or 64
211  NumPMA: Int = 16,
212  NumPerfCounters: Int = 16,
213  icacheParameters: ICacheParameters = ICacheParameters(
214    tagECC = Some("secded"),
215    dataECC = Some("parity"),
216    replacer = Some("setplru"),
217    nMissEntries = 2,
218    nReleaseEntries = 2
219  ),
220  dcacheParametersOpt: Option[DCacheParameters] = Some(DCacheParameters(
221    tagECC = Some("secded"),
222    dataECC = Some("secded"),
223    replacer = Some("setplru"),
224    nMissEntries = 16,
225    nProbeEntries = 8,
226    nReleaseEntries = 18
227  )),
228  L2CacheParamsOpt: Option[HCCacheParameters] = Some(HCCacheParameters(
229    name = "l2",
230    level = 2,
231    ways = 8,
232    sets = 1024, // default 512KB L2
233    prefetch = Some(huancun.prefetch.BOPParameters())
234  )),
235  L2NBanks: Int = 1,
236  usePTWRepeater: Boolean = false,
237  softPTW: Boolean = false // dpi-c debug only
238){
239  val loadExuConfigs = Seq.fill(exuParameters.LduCnt)(LdExeUnitCfg)
240  val storeExuConfigs = Seq.fill(exuParameters.StuCnt)(StaExeUnitCfg) ++ Seq.fill(exuParameters.StuCnt)(StdExeUnitCfg)
241
242  val intExuConfigs = (Seq.fill(exuParameters.AluCnt)(AluExeUnitCfg) ++
243    Seq.fill(exuParameters.MduCnt)(MulDivExeUnitCfg) :+ JumpCSRExeUnitCfg)
244
245  val fpExuConfigs =
246    Seq.fill(exuParameters.FmacCnt)(FmacExeUnitCfg) ++
247      Seq.fill(exuParameters.FmiscCnt)(FmiscExeUnitCfg)
248
249  val exuConfigs: Seq[ExuConfig] = intExuConfigs ++ fpExuConfigs ++ loadExuConfigs ++ storeExuConfigs
250}
251
252case object DebugOptionsKey extends Field[DebugOptions]
253
254case class DebugOptions
255(
256  FPGAPlatform: Boolean = false,
257  EnableDifftest: Boolean = false,
258  AlwaysBasicDiff: Boolean = true,
259  EnableDebug: Boolean = false,
260  EnablePerfDebug: Boolean = true,
261  UseDRAMSim: Boolean = false
262)
263
264trait HasXSParameter {
265
266  implicit val p: Parameters
267
268  val PAddrBits = p(SoCParamsKey).PAddrBits // PAddrBits is Phyical Memory addr bits
269
270  val coreParams = p(XSCoreParamsKey)
271  val env = p(DebugOptionsKey)
272
273  val XLEN = coreParams.XLEN
274  val minFLen = 32
275  val fLen = 64
276  def xLen = XLEN
277
278  val HasMExtension = coreParams.HasMExtension
279  val HasCExtension = coreParams.HasCExtension
280  val HasDiv = coreParams.HasDiv
281  val HasIcache = coreParams.HasICache
282  val HasDcache = coreParams.HasDCache
283  val AddrBits = coreParams.AddrBits // AddrBits is used in some cases
284  val VAddrBits = coreParams.VAddrBits // VAddrBits is Virtual Memory addr bits
285  val AsidLength = coreParams.AsidLength
286  val AddrBytes = AddrBits / 8 // unused
287  val DataBits = XLEN
288  val DataBytes = DataBits / 8
289  val HasFPU = coreParams.HasFPU
290  val HasCustomCSRCacheOp = coreParams.HasCustomCSRCacheOp
291  val FetchWidth = coreParams.FetchWidth
292  val PredictWidth = FetchWidth * (if (HasCExtension) 2 else 1)
293  val EnableBPU = coreParams.EnableBPU
294  val EnableBPD = coreParams.EnableBPD // enable backing predictor(like Tage) in BPUStage3
295  val EnableRAS = coreParams.EnableRAS
296  val EnableLB = coreParams.EnableLB
297  val EnableLoop = coreParams.EnableLoop
298  val EnableSC = coreParams.EnableSC
299  val EnbaleTlbDebug = coreParams.EnbaleTlbDebug
300  val HistoryLength = coreParams.HistoryLength
301  val PathHistoryLength = coreParams.PathHistoryLength
302  val BtbSize = coreParams.BtbSize
303  // val BtbWays = 4
304  val BtbBanks = PredictWidth
305  // val BtbSets = BtbSize / BtbWays
306  val JbtacSize = coreParams.JbtacSize
307  val JbtacBanks = coreParams.JbtacBanks
308  val RasSize = coreParams.RasSize
309
310  def getBPDComponents(resp_in: BranchPredictionResp, p: Parameters) = {
311    coreParams.branchPredictor(resp_in, p)
312  }
313  val numBr = coreParams.numBr
314  val TageTableInfos = coreParams.TageTableInfos
315
316
317  val BankTageTableInfos = (0 until numBr).map(i =>
318    TageTableInfos.map{ case (s, h, t) => (s/(1 << i), h, t) }
319  )
320  val TageBanks = coreParams.TageBanks
321  val SCNRows = coreParams.SCNRows
322  val SCCtrBits = coreParams.SCCtrBits
323  val BankSCHistLens = BankTageTableInfos.map(info => 0 :: info.map{ case (_,h,_) => h}.toList)
324  val BankSCNTables = Seq.fill(numBr)(coreParams.SCNTables)
325
326  val BankSCTableInfos = (BankSCNTables zip BankSCHistLens).map {
327    case (ntable, histlens) =>
328      Seq.fill(ntable)((SCNRows, SCCtrBits)) zip histlens map {case ((n, cb), h) => (n, cb, h)}
329  }
330  val ITTageTableInfos = coreParams.ITTageTableInfos
331  type FoldedHistoryInfo = Tuple2[Int, Int]
332  val foldedGHistInfos =
333    (BankTageTableInfos.flatMap(_.map{ case (nRows, h, t) =>
334      if (h > 0)
335        Set((h, min(log2Ceil(nRows), h)), (h, min(h, t)), (h, min(h, t-1)))
336      else
337        Set[FoldedHistoryInfo]()
338    }.reduce(_++_)).toSet ++
339    BankSCTableInfos.flatMap(_.map{ case (nRows, _, h) =>
340      if (h > 0)
341        Set((h, min(log2Ceil(nRows/TageBanks), h)))
342      else
343        Set[FoldedHistoryInfo]()
344    }.reduce(_++_)).toSet ++
345    ITTageTableInfos.map{ case (nRows, h, t) =>
346      if (h > 0)
347        Set((h, min(log2Ceil(nRows), h)), (h, min(h, t)), (h, min(h, t-1)))
348      else
349        Set[FoldedHistoryInfo]()
350    }.reduce(_++_)).toList
351
352  val CacheLineSize = coreParams.CacheLineSize
353  val CacheLineHalfWord = CacheLineSize / 16
354  val ExtHistoryLength = HistoryLength + 64
355  val UBtbWays = coreParams.UBtbWays
356  val BtbWays = coreParams.BtbWays
357  val IBufSize = coreParams.IBufSize
358  val DecodeWidth = coreParams.DecodeWidth
359  val RenameWidth = coreParams.RenameWidth
360  val CommitWidth = coreParams.CommitWidth
361  val FtqSize = coreParams.FtqSize
362  val IssQueSize = coreParams.IssQueSize
363  val EnableLoadFastWakeUp = coreParams.EnableLoadFastWakeUp
364  val NRPhyRegs = coreParams.NRPhyRegs
365  val PhyRegIdxWidth = log2Up(NRPhyRegs)
366  val RobSize = coreParams.RobSize
367  val IntRefCounterWidth = log2Ceil(RobSize)
368  val LoadQueueSize = coreParams.LoadQueueSize
369  val StoreQueueSize = coreParams.StoreQueueSize
370  val dpParams = coreParams.dpParams
371  val exuParameters = coreParams.exuParameters
372  val NRMemReadPorts = exuParameters.LduCnt + 2 * exuParameters.StuCnt
373  val NRIntReadPorts = 2 * exuParameters.AluCnt + NRMemReadPorts
374  val NRIntWritePorts = exuParameters.AluCnt + exuParameters.MduCnt + exuParameters.LduCnt
375  val NRFpReadPorts = 3 * exuParameters.FmacCnt + exuParameters.StuCnt
376  val NRFpWritePorts = exuParameters.FpExuCnt + exuParameters.LduCnt
377  val LoadPipelineWidth = coreParams.LoadPipelineWidth
378  val StorePipelineWidth = coreParams.StorePipelineWidth
379  val StoreBufferSize = coreParams.StoreBufferSize
380  val StoreBufferThreshold = coreParams.StoreBufferThreshold
381  val EnableLoadToLoadForward = coreParams.EnableLoadToLoadForward
382  val EnableFastForward = coreParams.EnableFastForward
383  val EnableLdVioCheckAfterReset = coreParams.EnableLdVioCheckAfterReset
384  val RefillSize = coreParams.RefillSize
385  val asidLen = coreParams.MMUAsidLen
386  val BTLBWidth = coreParams.LoadPipelineWidth + coreParams.StorePipelineWidth
387  val refillBothTlb = coreParams.refillBothTlb
388  val itlbParams = coreParams.itlbParameters
389  val ldtlbParams = coreParams.ldtlbParameters
390  val sttlbParams = coreParams.sttlbParameters
391  val btlbParams = coreParams.btlbParameters
392  val l2tlbParams = coreParams.l2tlbParameters
393  val NumPMP = coreParams.NumPMP
394  val NumPMA = coreParams.NumPMA
395  val PlatformGrain: Int = log2Up(coreParams.RefillSize/8) // set PlatformGrain to avoid itlb, dtlb, ptw size conflict
396  val NumPerfCounters = coreParams.NumPerfCounters
397
398  val NumRs = (exuParameters.JmpCnt+1)/2 + (exuParameters.AluCnt+1)/2 + (exuParameters.MulCnt+1)/2 +
399              (exuParameters.MduCnt+1)/2 + (exuParameters.FmacCnt+1)/2 +  + (exuParameters.FmiscCnt+1)/2 +
400              (exuParameters.FmiscDivSqrtCnt+1)/2 + (exuParameters.LduCnt+1)/2 +
401              ((exuParameters.StuCnt+1)/2) + ((exuParameters.StuCnt+1)/2)
402
403  val instBytes = if (HasCExtension) 2 else 4
404  val instOffsetBits = log2Ceil(instBytes)
405
406  val icacheParameters = coreParams.icacheParameters
407  val dcacheParameters = coreParams.dcacheParametersOpt.getOrElse(DCacheParameters())
408
409  val LRSCCycles = 100
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  val print_perfcounter  = false
446}
447