We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 94c970f + 5a369fd commit 3763051Copy full SHA for 3763051
sw-sysemu/devices/sysregs_er.cpp
@@ -24,7 +24,7 @@ void SysregsEr<Base>::reset(ResetCause cause)
24
system_config = SYSTEM_CONFIG_WDOG_DISABLE;
25
sys_interrupt = 0;
26
reset_cause = static_cast<uint32_t>(cause); // Set reset cause
27
- power_domain_req = POWER_DOMAIN_REQ_MRAM_DSLEEP_EN;
+ power_domain_req = 0;
28
power_domain_ack = 0;
29
spin_lock = 0;
30
chip_mode = 0;
sw-sysemu/devices/sysregs_er.h
@@ -92,8 +92,6 @@ struct SysregsEr : public MemoryRegion {
92
93
static constexpr uint32_t SPIN_LOCK_LOCK = 1 << 0;
94
95
- static constexpr uint32_t POWER_DOMAIN_REQ_MRAM_DSLEEP_EN = 1 << 16;
96
-
97
static constexpr uint32_t SOFT_RESET_MRAM_RST_B = 1 << 2;
98
99
// Register Values
0 commit comments