AXI4SlaveModule.scala (f320e0f01bd645f0a3045a8a740e60dd770734a9) | AXI4SlaveModule.scala (3c02ee8f82edea481fa8336c7f54ffc17fafba91) |
---|---|
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 chisel3._ 20import chisel3.util._ 21import utils._ | 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 chisel3._ 20import chisel3.util._ 21import utils._ |
22import utility._ |
|
22import freechips.rocketchip.diplomacy.{AddressSet, LazyModule, LazyModuleImp, RegionType, TransferSizes} 23import chipsalliance.rocketchip.config.Parameters 24import freechips.rocketchip.amba.axi4.{AXI4Parameters, AXI4SlaveNode, AXI4SlaveParameters, AXI4SlavePortParameters} 25 26abstract class AXI4SlaveModule[T <: Data] 27( 28 address: Seq[AddressSet], 29 executable: Boolean = true, --- 152 unchanged lines hidden --- | 23import freechips.rocketchip.diplomacy.{AddressSet, LazyModule, LazyModuleImp, RegionType, TransferSizes} 24import chipsalliance.rocketchip.config.Parameters 25import freechips.rocketchip.amba.axi4.{AXI4Parameters, AXI4SlaveNode, AXI4SlaveParameters, AXI4SlavePortParameters} 26 27abstract class AXI4SlaveModule[T <: Data] 28( 29 address: Seq[AddressSet], 30 executable: Boolean = true, --- 152 unchanged lines hidden --- |