Correct Debug + WFI Interactions
1) Debug interrupt should end WFI 2) WFI should end immedately during single-step 3) WFI should act like NOP during Debug Mode
This commit is contained in:
parent
c9cfe46604
commit
665c2a349c
@ -505,8 +505,8 @@ class CSRFile(perfEventSets: EventSets = new EventSets(Seq()))(implicit p: Param
|
||||
val exception = insn_call || insn_break || io.exception
|
||||
assert(PopCount(insn_ret :: insn_call :: insn_break :: io.exception :: Nil) <= 1, "these conditions must be mutually exclusive")
|
||||
|
||||
when (insn_wfi) { reg_wfi := true }
|
||||
when (pending_interrupts.orR || exception) { reg_wfi := false }
|
||||
when (insn_wfi && !io.singleStep && !reg_debug) { reg_wfi := true }
|
||||
when (pending_interrupts.orR || exception || reg_dcsr.debugint) { reg_wfi := false }
|
||||
assert(!reg_wfi || io.retire === UInt(0))
|
||||
|
||||
when (io.retire(0) || exception) { reg_singleStepped := true }
|
||||
|
Loading…
Reference in New Issue
Block a user