litex add hardwarebreapoint parameter
This commit is contained in:
parent
acf6ad3bfd
commit
e21dc6cda5
|
@ -32,7 +32,8 @@ case class VexRiscvSmpClusterParameter(cpuConfigs : Seq[VexRiscvConfig],
|
|||
forcePeripheralWidth : Boolean = true,
|
||||
outOfOrderDecoder : Boolean = true,
|
||||
fpu : Boolean = false,
|
||||
privilegedDebug : Boolean = false)
|
||||
privilegedDebug : Boolean = false,
|
||||
hardwareBreakpoints : Int = 0)
|
||||
|
||||
class VexRiscvSmpClusterBase(p : VexRiscvSmpClusterParameter) extends Area with PostInitCallback{
|
||||
val cpuCount = p.cpuConfigs.size
|
||||
|
@ -85,6 +86,7 @@ class VexRiscvSmpClusterBase(p : VexRiscvSmpClusterParameter) extends Area with
|
|||
cpu.dBus -> List(dBusCoherent.bmb)
|
||||
)
|
||||
|
||||
cpu.hardwareBreakpointCount.load(p.hardwareBreakpoints)
|
||||
if(!p.privilegedDebug) {
|
||||
cpu.enableDebugBmb(
|
||||
debugCd = debugCd.outputClockDomain,
|
||||
|
|
|
@ -114,6 +114,7 @@ object VexRiscvLitexSmpClusterCmdGen extends App {
|
|||
var iCacheWays = 2
|
||||
var dCacheWays = 2
|
||||
var privilegedDebug = false
|
||||
var hardwareBreakpoints = 0
|
||||
var liteDramWidth = 128
|
||||
var coherentDma = false
|
||||
var wishboneMemory = false
|
||||
|
@ -139,6 +140,7 @@ object VexRiscvLitexSmpClusterCmdGen extends App {
|
|||
opt[String]("icache-ways") action { (v, c) => iCacheWays = v.toInt }
|
||||
opt[String]("dcache-ways") action { (v, c) => dCacheWays = v.toInt }
|
||||
opt[Boolean]("privileged-debug") action { (v, c) => privilegedDebug = v }
|
||||
opt[Int] ("hardware-breakpoints") action { (v, c) => hardwareBreakpoints = v }
|
||||
opt[String]("litedram-width") action { (v, c) => liteDramWidth = v.toInt }
|
||||
opt[String]("netlist-directory") action { (v, c) => netlistDirectory = v }
|
||||
opt[String]("netlist-name") action { (v, c) => netlistName = v }
|
||||
|
@ -189,7 +191,8 @@ object VexRiscvLitexSmpClusterCmdGen extends App {
|
|||
outOfOrderDecoder = outOfOrderDecoder,
|
||||
fpu = fpu,
|
||||
jtagHeaderIgnoreWidth = 0,
|
||||
privilegedDebug = privilegedDebug
|
||||
privilegedDebug = privilegedDebug,
|
||||
hardwareBreakpoints = hardwareBreakpoints
|
||||
),
|
||||
liteDram = LiteDramNativeParameter(addressWidth = 32, dataWidth = liteDramWidth),
|
||||
liteDramMapping = SizeMapping(0x40000000l, 0x40000000l),
|
||||
|
|
Loading…
Reference in New Issue