We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 381ed5d commit 353f20eCopy full SHA for 353f20e
sw-sysemu/devices/sysregs_er.h
@@ -120,11 +120,9 @@ struct SysregsEr : public MemoryRegion {
120
121
void reset(ResetCause cause = ResetCause::NONE);
122
123
- // Static watchdog timeout handler, triggers warm reset
+ // Static watchdog timeout handler, triggers cold reset
124
static void watchdog_timeout_handler(const Agent& agent) {
125
- for (unsigned s = 0; s < EMU_NUM_COMPUTE_SHIRES; ++s) {
126
- agent.chip->begin_warm_reset(s);
127
- }
+ agent.chip->cold_reset();
128
}
129
130
uint32_t read_register(const Agent& agent, uint64_t offset);
0 commit comments