change(esp_hw_support): rename interface name of get modules bitmap to get created modules

This commit is contained in:
Li Shuai
2024-01-25 11:08:45 +08:00
parent b521fb4efe
commit fd421ba9bb
5 changed files with 29 additions and 30 deletions

View File

@ -71,6 +71,18 @@ void * sleep_retention_find_link_by_id(int id);
*/ */
void sleep_retention_entries_get(sleep_retention_entries_t *entries); void sleep_retention_entries_get(sleep_retention_entries_t *entries);
/**
* @brief Get all created modules that require sleep retention
*
* This is an unprotected interface for getting a bitmap of all modules that
* require sleep retention.
*
* It can only be called by the sleep procedure.
*
* @return the bitmap of all modules requiring sleep retention
*/
uint32_t sleep_retention_get_created_modules(void);
#if SOC_PM_RETENTION_HAS_CLOCK_BUG #if SOC_PM_RETENTION_HAS_CLOCK_BUG
/** /**
* @brief Software trigger REGDMA to do extra linked list retention * @brief Software trigger REGDMA to do extra linked list retention
@ -81,18 +93,6 @@ void sleep_retention_entries_get(sleep_retention_entries_t *entries);
void sleep_retention_do_extra_retention(bool backup_or_restore); void sleep_retention_do_extra_retention(bool backup_or_restore);
#endif #endif
/**
* @brief Get all registered modules that require sleep retention
*
* This is an unprotected interface for getting a bitmap of all modules that
* require sleep retention.
*
* It can only be called by the sleep procedure.
*
* @return the bitmap of all modules requiring sleep retention
*/
uint32_t sleep_retention_get_modules(void);
#if SOC_PM_RETENTION_SW_TRIGGER_REGDMA #if SOC_PM_RETENTION_SW_TRIGGER_REGDMA
/** /**
* @brief Software trigger REGDMA to do system linked list retention * @brief Software trigger REGDMA to do system linked list retention

View File

@ -8,14 +8,14 @@
bool clock_domain_pd_allowed(void) bool clock_domain_pd_allowed(void)
{ {
const uint32_t modules = sleep_retention_get_modules(); const uint32_t created_modules = sleep_retention_get_created_modules();
const uint32_t mask = (const uint32_t) ( const uint32_t mask = (const uint32_t) (
SLEEP_RETENTION_MODULE_CLOCK_SYSTEM SLEEP_RETENTION_MODULE_CLOCK_SYSTEM
#if CONFIG_MAC_BB_PD || CONFIG_BT_LE_SLEEP_ENABLE || CONFIG_IEEE802154_SLEEP_ENABLE #if CONFIG_MAC_BB_PD || CONFIG_BT_LE_SLEEP_ENABLE || CONFIG_IEEE802154_SLEEP_ENABLE
| SLEEP_RETENTION_MODULE_CLOCK_MODEM | SLEEP_RETENTION_MODULE_CLOCK_MODEM
#endif #endif
); );
return ((modules & mask) == mask); return ((created_modules & mask) == mask);
} }
#if CONFIG_PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP || CONFIG_MAC_BB_PD || CONFIG_BT_LE_SLEEP_ENABLE || CONFIG_IEEE802154_SLEEP_ENABLE #if CONFIG_PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP || CONFIG_MAC_BB_PD || CONFIG_BT_LE_SLEEP_ENABLE || CONFIG_IEEE802154_SLEEP_ENABLE

View File

@ -286,21 +286,21 @@ bool modem_domain_pd_allowed(void)
{ {
#if SOC_PM_MODEM_RETENTION_BY_REGDMA #if SOC_PM_MODEM_RETENTION_BY_REGDMA
bool modem_domain_pd_allowed = false; bool modem_domain_pd_allowed = false;
const uint32_t modules = sleep_retention_get_modules(); const uint32_t created_modules = sleep_retention_get_created_modules();
#if SOC_WIFI_SUPPORTED #if SOC_WIFI_SUPPORTED
const uint32_t mask_wifi = (const uint32_t) (SLEEP_RETENTION_MODULE_WIFI_MAC | const uint32_t mask_wifi = (const uint32_t) (SLEEP_RETENTION_MODULE_WIFI_MAC |
SLEEP_RETENTION_MODULE_WIFI_BB); SLEEP_RETENTION_MODULE_WIFI_BB);
modem_domain_pd_allowed |= ((modules & mask_wifi) == mask_wifi); modem_domain_pd_allowed |= ((created_modules & mask_wifi) == mask_wifi);
#endif #endif
#if SOC_BT_SUPPORTED #if SOC_BT_SUPPORTED
const uint32_t mask_ble = (const uint32_t) (SLEEP_RETENTION_MODULE_BLE_MAC | const uint32_t mask_ble = (const uint32_t) (SLEEP_RETENTION_MODULE_BLE_MAC |
SLEEP_RETENTION_MODULE_BT_BB); SLEEP_RETENTION_MODULE_BT_BB);
modem_domain_pd_allowed |= ((modules & mask_ble) == mask_ble); modem_domain_pd_allowed |= ((created_modules & mask_ble) == mask_ble);
#endif #endif
#if SOC_IEEE802154_SUPPORTED #if SOC_IEEE802154_SUPPORTED
const uint32_t mask_154 = (const uint32_t) (SLEEP_RETENTION_MODULE_802154_MAC | const uint32_t mask_154 = (const uint32_t) (SLEEP_RETENTION_MODULE_802154_MAC |
SLEEP_RETENTION_MODULE_BT_BB); SLEEP_RETENTION_MODULE_BT_BB);
modem_domain_pd_allowed |= ((modules & mask_154) == mask_154); modem_domain_pd_allowed |= ((created_modules & mask_154) == mask_154);
#endif #endif
return modem_domain_pd_allowed; return modem_domain_pd_allowed;
#else #else

View File

@ -493,7 +493,7 @@ void sleep_retention_entries_get(sleep_retention_entries_t *entries)
_lock_release_recursive(&s_retention.lock); _lock_release_recursive(&s_retention.lock);
} }
uint32_t IRAM_ATTR sleep_retention_get_modules(void) uint32_t IRAM_ATTR sleep_retention_get_created_modules(void)
{ {
return s_retention.created_modules; return s_retention.created_modules;
} }

View File

@ -145,27 +145,26 @@ error:
bool peripheral_domain_pd_allowed(void) bool peripheral_domain_pd_allowed(void)
{ {
const uint32_t modules = sleep_retention_get_modules(); const uint32_t created_modules = sleep_retention_get_created_modules();
uint32_t mask = 0; uint32_t mask = (uint32_t) (
SLEEP_RETENTION_MODULE_INTR_MATRIX | \
SLEEP_RETENTION_MODULE_HP_SYSTEM | \
SLEEP_RETENTION_MODULE_UART0 | \
SLEEP_RETENTION_MODULE_TG0 | \
SLEEP_RETENTION_MODULE_IOMUX | \
SLEEP_RETENTION_MODULE_SPIMEM | \
SLEEP_RETENTION_MODULE_SYSTIMER);
mask |= SLEEP_RETENTION_MODULE_INTR_MATRIX;
mask |= SLEEP_RETENTION_MODULE_HP_SYSTEM;
#if SOC_CACHE_INTERNAL_MEM_VIA_L1CACHE #if SOC_CACHE_INTERNAL_MEM_VIA_L1CACHE
mask |= SLEEP_RETENTION_MODULE_L2_CACHE; mask |= SLEEP_RETENTION_MODULE_L2_CACHE;
#endif #endif
#if SOC_APM_SUPPORTED #if SOC_APM_SUPPORTED
mask |= SLEEP_RETENTION_MODULE_TEE_APM; mask |= SLEEP_RETENTION_MODULE_TEE_APM;
#endif #endif
mask |= SLEEP_RETENTION_MODULE_UART0;
mask |= SLEEP_RETENTION_MODULE_TG0;
mask |= SLEEP_RETENTION_MODULE_IOMUX;
mask |= SLEEP_RETENTION_MODULE_SPIMEM;
mask |= SLEEP_RETENTION_MODULE_SYSTIMER;
#if SOC_PAU_IN_TOP_DOMAIN #if SOC_PAU_IN_TOP_DOMAIN
mask |= SLEEP_RETENTION_MODULE_REGDMA_SYSTEM; mask |= SLEEP_RETENTION_MODULE_REGDMA_SYSTEM;
#endif #endif
return ((created_modules & mask) == mask);
return ((modules & mask) == mask);
} }
#if CONFIG_PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP #if CONFIG_PM_POWER_DOWN_PERIPHERAL_IN_LIGHT_SLEEP