2021-09-13 17:05:18 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021 Linaro Limited
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
includes: prefer <zephyr/kernel.h> over <zephyr/zephyr.h>
As of today <zephyr/zephyr.h> is 100% equivalent to <zephyr/kernel.h>.
This patch proposes to then include <zephyr/kernel.h> instead of
<zephyr/zephyr.h> since it is more clear that you are including the
Kernel APIs and (probably) nothing else. <zephyr/zephyr.h> sounds like a
catch-all header that may be confusing. Most applications need to
include a bunch of other things to compile, e.g. driver headers or
subsystem headers like BT, logging, etc.
The idea of a catch-all header in Zephyr is probably not feasible
anyway. Reason is that Zephyr is not a library, like it could be for
example `libpython`. Zephyr provides many utilities nowadays: a kernel,
drivers, subsystems, etc and things will likely grow. A catch-all header
would be massive, difficult to keep up-to-date. It is also likely that
an application will only build a small subset. Note that subsystem-level
headers may use a catch-all approach to make things easier, though.
NOTE: This patch is **NOT** removing the header, just removing its usage
in-tree. I'd advocate for its deprecation (add a #warning on it), but I
understand many people will have concerns.
Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
2022-08-25 09:58:46 +02:00
|
|
|
#include <zephyr/kernel.h>
|
2022-05-06 11:11:04 +02:00
|
|
|
#include <zephyr/pm/pm.h>
|
2021-09-13 17:05:18 +02:00
|
|
|
#include <soc.h>
|
2022-05-06 11:11:04 +02:00
|
|
|
#include <zephyr/init.h>
|
2021-09-13 17:05:18 +02:00
|
|
|
|
|
|
|
#include <stm32u5xx_ll_utils.h>
|
|
|
|
#include <stm32u5xx_ll_bus.h>
|
|
|
|
#include <stm32u5xx_ll_cortex.h>
|
|
|
|
#include <stm32u5xx_ll_pwr.h>
|
2024-05-07 14:09:36 +02:00
|
|
|
#include <stm32u5xx_ll_icache.h>
|
2021-09-13 17:05:18 +02:00
|
|
|
#include <stm32u5xx_ll_rcc.h>
|
|
|
|
#include <stm32u5xx_ll_system.h>
|
|
|
|
#include <clock_control/clock_stm32_ll_common.h>
|
|
|
|
|
2022-05-06 11:11:04 +02:00
|
|
|
#include <zephyr/logging/log.h>
|
2021-09-13 17:05:18 +02:00
|
|
|
LOG_MODULE_DECLARE(soc, CONFIG_SOC_LOG_LEVEL);
|
|
|
|
|
|
|
|
/* select MSI as wake-up system clock if configured, HSI otherwise */
|
|
|
|
#if STM32_SYSCLK_SRC_MSI
|
|
|
|
#define RCC_STOP_WAKEUPCLOCK_SELECTED LL_RCC_STOP_WAKEUPCLOCK_MSI
|
|
|
|
#else
|
|
|
|
#define RCC_STOP_WAKEUPCLOCK_SELECTED LL_RCC_STOP_WAKEUPCLOCK_HSI
|
|
|
|
#endif
|
|
|
|
|
2024-05-07 14:09:36 +02:00
|
|
|
#ifdef CONFIG_STM32_STOP3_LP_MODE
|
|
|
|
static void pwr_stop3_isr(const struct device *dev)
|
|
|
|
{
|
|
|
|
ARG_UNUSED(dev);
|
|
|
|
|
|
|
|
/* Clear all wake-up flags */
|
|
|
|
LL_PWR_ClearFlag_WU();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void disable_cache(void)
|
|
|
|
{
|
|
|
|
/* Disabling ICACHE */
|
|
|
|
LL_ICACHE_Disable();
|
|
|
|
while (LL_ICACHE_IsEnabled() == 1U) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait until ICACHE_SR.BUSYF is cleared */
|
|
|
|
while (LL_ICACHE_IsActiveFlag_BUSY() == 1U) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait until ICACHE_SR.BSYENDF is set */
|
|
|
|
while (LL_ICACHE_IsActiveFlag_BSYEND() == 0U) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2021-09-13 17:05:18 +02:00
|
|
|
void set_mode_stop(uint8_t substate_id)
|
|
|
|
{
|
|
|
|
/* ensure the proper wake-up system clock */
|
|
|
|
LL_RCC_SetClkAfterWakeFromStop(RCC_STOP_WAKEUPCLOCK_SELECTED);
|
|
|
|
|
|
|
|
switch (substate_id) {
|
|
|
|
case 1: /* enter STOP0 mode */
|
|
|
|
LL_PWR_SetPowerMode(LL_PWR_STOP0_MODE);
|
|
|
|
break;
|
|
|
|
case 2: /* enter STOP1 mode */
|
|
|
|
LL_PWR_SetPowerMode(LL_PWR_STOP1_MODE);
|
|
|
|
break;
|
|
|
|
case 3: /* enter STOP2 mode */
|
|
|
|
LL_PWR_SetPowerMode(LL_PWR_STOP2_MODE);
|
|
|
|
break;
|
2024-05-07 14:09:36 +02:00
|
|
|
#ifdef CONFIG_STM32_STOP3_LP_MODE
|
|
|
|
case 4: /* enter STOP3 mode */
|
|
|
|
|
|
|
|
LL_PWR_SetSRAM2SBRetention(LL_PWR_SRAM2_SB_FULL_RETENTION);
|
|
|
|
/* Enable RTC wakeup
|
|
|
|
* This configures an internal pin that generates an event to wakeup the system
|
|
|
|
*/
|
|
|
|
LL_PWR_EnableWakeUpPin(LL_PWR_WAKEUP_PIN7);
|
|
|
|
LL_PWR_SetWakeUpPinSignal3Selection(LL_PWR_WAKEUP_PIN7);
|
|
|
|
|
|
|
|
/* Clear flags */
|
|
|
|
LL_PWR_ClearFlag_SB();
|
|
|
|
LL_PWR_ClearFlag_WU();
|
|
|
|
|
|
|
|
disable_cache();
|
|
|
|
|
|
|
|
LL_PWR_SetPowerMode(LL_PWR_STOP3_MODE);
|
|
|
|
break;
|
|
|
|
#endif
|
2021-09-13 17:05:18 +02:00
|
|
|
default:
|
|
|
|
LOG_DBG("Unsupported power state substate-id %u", substate_id);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_mode_standby(uint8_t substate_id)
|
|
|
|
{
|
|
|
|
ARG_UNUSED(substate_id);
|
|
|
|
/* Select standby mode */
|
|
|
|
LL_PWR_SetPowerMode(LL_PWR_STANDBY_MODE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Invoke Low Power/System Off specific Tasks */
|
2023-07-17 17:03:00 +02:00
|
|
|
void pm_state_set(enum pm_state state, uint8_t substate_id)
|
2021-09-13 17:05:18 +02:00
|
|
|
{
|
2022-01-21 18:28:10 +01:00
|
|
|
switch (state) {
|
2021-09-13 17:05:18 +02:00
|
|
|
case PM_STATE_SUSPEND_TO_IDLE:
|
2022-01-21 18:28:10 +01:00
|
|
|
set_mode_stop(substate_id);
|
2021-09-13 17:05:18 +02:00
|
|
|
break;
|
|
|
|
case PM_STATE_STANDBY:
|
|
|
|
/* To be tested */
|
2022-01-21 18:28:10 +01:00
|
|
|
set_mode_standby(substate_id);
|
2021-09-13 17:05:18 +02:00
|
|
|
break;
|
2021-11-26 17:10:47 +01:00
|
|
|
default:
|
2022-01-21 18:28:10 +01:00
|
|
|
LOG_DBG("Unsupported power state %u", state);
|
2021-09-13 17:05:18 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set SLEEPDEEP bit of Cortex System Control Register */
|
|
|
|
LL_LPM_EnableDeepSleep();
|
|
|
|
|
|
|
|
/* Select mode entry : WFE or WFI and enter the CPU selected mode */
|
|
|
|
k_cpu_idle();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle SOC specific activity after Low Power Mode Exit */
|
2023-07-17 17:03:00 +02:00
|
|
|
void pm_state_exit_post_ops(enum pm_state state, uint8_t substate_id)
|
2021-09-13 17:05:18 +02:00
|
|
|
{
|
2022-01-21 18:28:10 +01:00
|
|
|
switch (state) {
|
2021-09-13 17:05:18 +02:00
|
|
|
case PM_STATE_SUSPEND_TO_IDLE:
|
2022-01-21 18:28:10 +01:00
|
|
|
if (substate_id <= 3) {
|
2021-09-13 17:05:18 +02:00
|
|
|
LL_LPM_DisableSleepOnExit();
|
|
|
|
LL_LPM_EnableSleep();
|
2024-05-07 14:09:36 +02:00
|
|
|
#ifdef CONFIG_STM32_STOP3_LP_MODE
|
|
|
|
} else if (substate_id == 4) {
|
|
|
|
stm32_clock_control_standby_exit();
|
|
|
|
|
|
|
|
LL_ICACHE_SetMode(LL_ICACHE_1WAY);
|
|
|
|
LL_ICACHE_Enable();
|
|
|
|
while (LL_ICACHE_IsEnabled() == 0U) {
|
|
|
|
}
|
|
|
|
|
|
|
|
LL_LPM_DisableSleepOnExit();
|
|
|
|
LL_LPM_EnableSleep();
|
|
|
|
#endif
|
2021-09-13 17:05:18 +02:00
|
|
|
} else {
|
|
|
|
LOG_DBG("Unsupported power substate-id %u",
|
2022-01-21 18:28:10 +01:00
|
|
|
substate_id);
|
2021-09-13 17:05:18 +02:00
|
|
|
}
|
|
|
|
case PM_STATE_STANDBY:
|
|
|
|
/* To be tested */
|
|
|
|
LL_LPM_EnableSleep();
|
|
|
|
case PM_STATE_SUSPEND_TO_RAM:
|
|
|
|
__fallthrough;
|
|
|
|
case PM_STATE_SUSPEND_TO_DISK:
|
|
|
|
__fallthrough;
|
|
|
|
default:
|
2022-01-21 18:28:10 +01:00
|
|
|
LOG_DBG("Unsupported power state %u", state);
|
2021-09-13 17:05:18 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* need to restore the clock */
|
|
|
|
stm32_clock_control_init(NULL);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* System is now in active mode.
|
|
|
|
* Reenable interrupts which were disabled
|
|
|
|
* when OS started idling code.
|
|
|
|
*/
|
|
|
|
irq_unlock(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize STM32 Power */
|
2024-09-10 09:42:45 -04:00
|
|
|
void stm32_power_init(void)
|
2021-09-13 17:05:18 +02:00
|
|
|
{
|
|
|
|
|
|
|
|
/* enable Power clock */
|
|
|
|
LL_AHB3_GRP1_EnableClock(LL_AHB3_GRP1_PERIPH_PWR);
|
|
|
|
|
2024-05-07 14:09:36 +02:00
|
|
|
#ifdef CONFIG_STM32_STOP3_LP_MODE
|
|
|
|
IRQ_CONNECT(PWR_S3WU_IRQn, 0,
|
|
|
|
pwr_stop3_isr, 0, 0);
|
|
|
|
irq_enable(PWR_S3WU_IRQn);
|
|
|
|
#endif
|
2021-09-13 17:05:18 +02:00
|
|
|
}
|