AXI4DummySD.scala (f320e0f01bd645f0a3045a8a740e60dd770734a9) | AXI4DummySD.scala (c21bff99db38ffd5df19a9459a048e16b7b7cb23) |
---|---|
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 --- 5 unchanged lines hidden (view full) --- 14* See the Mulan PSL v2 for more details. 15***************************************************************************************/ 16 17package device 18 19import chipsalliance.rocketchip.config.Parameters 20import chisel3._ 21import chisel3.util._ | 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 --- 5 unchanged lines hidden (view full) --- 14* See the Mulan PSL v2 for more details. 15***************************************************************************************/ 16 17package device 18 19import chipsalliance.rocketchip.config.Parameters 20import chisel3._ 21import chisel3.util._ |
22import Chisel.BlackBox |
|
22import freechips.rocketchip.diplomacy.AddressSet 23import utils._ 24 25trait HasSDConst { 26 def MemorySize = 4L * 1024 * 1024 * 1024 // 4GB 27 def READ_BL_LEN = 15 28 29 def BlockLen = (1 << READ_BL_LEN) --- 127 unchanged lines hidden --- | 23import freechips.rocketchip.diplomacy.AddressSet 24import utils._ 25 26trait HasSDConst { 27 def MemorySize = 4L * 1024 * 1024 * 1024 // 4GB 28 def READ_BL_LEN = 15 29 30 def BlockLen = (1 << READ_BL_LEN) --- 127 unchanged lines hidden --- |