mirror of
https://github.com/espressif/esp-idf.git
synced 2026-09-22 13:01:16 +03:00
fix(esp_hw_support): add dependency of the TOP domain to the RTC_PERIPH domain for esp32c6
This commit is contained in:
@@ -2623,6 +2623,13 @@ static uint32_t get_power_down_flags(void)
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
#if CONFIG_IDF_TARGET_ESP32C6
|
||||
if (!(pd_flags & PMU_SLEEP_PD_TOP)) {
|
||||
// TOP power domain depends on the RTC_PERIPH power domain on ESP32C6, RTC_PERIPH should only be disabled when the TOP domain is down.
|
||||
pd_flags &= ~RTC_SLEEP_PD_RTC_PERIPH;
|
||||
}
|
||||
#endif
|
||||
return pd_flags;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user