DM: don't report as running/halted in dmstatus if unavailable.
This commit is contained in:
parent
ab0b4a04f0
commit
5deff12f95
|
@ -519,8 +519,8 @@ always @ (*) begin
|
|||
{2{dmstatus_resumeack[hartsel]}}, // allresumeack, anyresumeack
|
||||
{2{hartsel >= N_HARTS}}, // allnonexistent, anynonexistent
|
||||
{2{!hart_available[hartsel]}}, // allunavail, anyunavail
|
||||
{2{hart_running[hartsel]}}, // allrunning, anyrunning
|
||||
{2{hart_halted[hartsel]}}, // allhalted, anyhalted
|
||||
{2{hart_running[hartsel] && hart_available[hartsel]}}, // allrunning, anyrunning
|
||||
{2{hart_halted[hartsel] && hart_available[hartsel]}}, // allhalted, anyhalted
|
||||
1'b1, // authenticated
|
||||
1'b0, // authbusy
|
||||
1'b1, // hasresethaltreq = 1 (we do support it)
|
||||
|
|
Loading…
Reference in New Issue