Skip to content
Snippets Groups Projects
Unverified Commit fa6a83d5 authored by Vincent Dupont's avatar Vincent Dupont Committed by GitHub
Browse files

Merge pull request #8739 from kaspar030/fix_stm32_pm

cpu: stm32_common: always enable PWR module
parents c14b8081 58e172e4
No related branches found
No related tags found
No related merge requests found
...@@ -30,12 +30,21 @@ ...@@ -30,12 +30,21 @@
#include "cpu.h" #include "cpu.h"
#include "stmclk.h" #include "stmclk.h"
#include "periph_cpu.h"
#include "periph/init.h" #include "periph/init.h"
#if defined (CPU_FAM_STM32L4)
#define BIT_APB_PWREN RCC_APB1ENR1_PWREN
#else
#define BIT_APB_PWREN RCC_APB1ENR_PWREN
#endif
void cpu_init(void) void cpu_init(void)
{ {
/* initialize the Cortex-M core */ /* initialize the Cortex-M core */
cortexm_init(); cortexm_init();
/* enable PWR module */
periph_clk_en(APB1, BIT_APB_PWREN);
/* initialize the system clock as configured in the periph_conf.h */ /* initialize the system clock as configured in the periph_conf.h */
stmclk_init_sysclk(); stmclk_init_sysclk();
/* trigger static peripheral initialization */ /* trigger static peripheral initialization */
......
...@@ -31,12 +31,6 @@ ...@@ -31,12 +31,6 @@
#define BIT_CR_DBP PWR_CR_DBP #define BIT_CR_DBP PWR_CR_DBP
#endif #endif
#if defined (CPU_FAM_STM32L4)
#define BIT_APB_PWREN RCC_APB1ENR1_PWREN
#else
#define BIT_APB_PWREN RCC_APB1ENR_PWREN
#endif
#if defined (CPU_FAM_STM32L0) || defined(CPU_FAM_STM32L1) #if defined (CPU_FAM_STM32L0) || defined(CPU_FAM_STM32L1)
#define REG_LSE CSR #define REG_LSE CSR
#define BIT_LSEON RCC_CSR_LSEON #define BIT_LSEON RCC_CSR_LSEON
...@@ -100,12 +94,10 @@ void stmclk_disable_lfclk(void) ...@@ -100,12 +94,10 @@ void stmclk_disable_lfclk(void)
void stmclk_dbp_unlock(void) void stmclk_dbp_unlock(void)
{ {
periph_clk_en(APB1, BIT_APB_PWREN);
PWR->REG_PWR_CR |= BIT_CR_DBP; PWR->REG_PWR_CR |= BIT_CR_DBP;
} }
void stmclk_dbp_lock(void) void stmclk_dbp_lock(void)
{ {
PWR->REG_PWR_CR &= ~(BIT_CR_DBP); PWR->REG_PWR_CR &= ~(BIT_CR_DBP);
periph_clk_dis(APB1, BIT_APB_PWREN);
} }
...@@ -92,8 +92,6 @@ void stmclk_init_sysclk(void) ...@@ -92,8 +92,6 @@ void stmclk_init_sysclk(void)
FLASH->ACR |= FLASH_ACR_PRFTEN; FLASH->ACR |= FLASH_ACR_PRFTEN;
/* Flash 1 wait state */ /* Flash 1 wait state */
FLASH->ACR |= CLOCK_FLASH_LATENCY; FLASH->ACR |= CLOCK_FLASH_LATENCY;
/* Power enable */
periph_clk_en(APB1, RCC_APB1ENR_PWREN);
/* Select the Voltage Range 1 (1.8 V) */ /* Select the Voltage Range 1 (1.8 V) */
PWR->CR = PWR_CR_VOS_0; PWR->CR = PWR_CR_VOS_0;
/* Wait Until the Voltage Regulator is ready */ /* Wait Until the Voltage Regulator is ready */
......
...@@ -151,7 +151,7 @@ void rtt_clear_alarm(void) ...@@ -151,7 +151,7 @@ void rtt_clear_alarm(void)
void rtt_poweron(void) void rtt_poweron(void)
{ {
periph_clk_en(APB1, (RCC_APB1ENR_BKPEN|RCC_APB1ENR_PWREN)); /* enable BKP and PWR, Clock */ periph_clk_en(APB1, RCC_APB1ENR_BKPEN); /* enable BKP, Clock */
/* RTC clock source configuration */ /* RTC clock source configuration */
PWR->CR |= PWR_CR_DBP; /* Allow access to BKP Domain */ PWR->CR |= PWR_CR_DBP; /* Allow access to BKP Domain */
RCC->BDCR |= RCC_BDCR_LSEON; /* Enable LSE OSC */ RCC->BDCR |= RCC_BDCR_LSEON; /* Enable LSE OSC */
...@@ -164,7 +164,7 @@ void rtt_poweroff(void) ...@@ -164,7 +164,7 @@ void rtt_poweroff(void)
{ {
PWR->CR |= PWR_CR_DBP; /* Allow access to BKP Domain */ PWR->CR |= PWR_CR_DBP; /* Allow access to BKP Domain */
RCC->BDCR &= ~RCC_BDCR_RTCEN; /* disable RTC */ RCC->BDCR &= ~RCC_BDCR_RTCEN; /* disable RTC */
periph_clk_dis(APB1, (RCC_APB1ENR_BKPEN|RCC_APB1ENR_PWREN)); /* disable BKP and PWR, Clock */ periph_clk_dis(APB1, RCC_APB1ENR_BKPEN); /* disable BKP, Clock */
} }
static inline void _rtt_enter_config_mode(void) static inline void _rtt_enter_config_mode(void)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment