|
| 1 | +/* |
| 2 | + * Copyright (c) 2024 STMicroelectronics |
| 3 | + * |
| 4 | + * SPDX-License-Identifier: Apache-2.0 |
| 5 | + */ |
| 6 | + |
| 7 | +/** |
| 8 | + * @file |
| 9 | + * @brief System/hardware module for STM32WB0 processor |
| 10 | + */ |
| 11 | + |
| 12 | +#include <zephyr/device.h> |
| 13 | +#include <zephyr/init.h> |
| 14 | +#include <stm32_ll_bus.h> |
| 15 | +#include <stm32_ll_pwr.h> |
| 16 | +#include <stm32_ll_system.h> |
| 17 | +#include <stm32_ll_radio.h> |
| 18 | +#include <zephyr/logging/log.h> |
| 19 | +#include <zephyr/toolchain.h> |
| 20 | +#include <cmsis_core.h> |
| 21 | +#include <stdint.h> |
| 22 | + |
| 23 | +#include <system_stm32wb0x.h> |
| 24 | + |
| 25 | +#define LOG_LEVEL CONFIG_SOC_LOG_LEVEL |
| 26 | +LOG_MODULE_REGISTER(soc); |
| 27 | + |
| 28 | +/** |
| 29 | + * CMSIS System Core Clock: global variable holding the system core clock, |
| 30 | + * which is the frequency supplied to the SysTick timer and processor core. |
| 31 | + * |
| 32 | + * On STM32WB0 series, after RESET, the system clock frequency is 16MHz. |
| 33 | + */ |
| 34 | +uint32_t SystemCoreClock = 16000000U; |
| 35 | + |
| 36 | +/** |
| 37 | + * RAM Virtual Register: special structure located at the start |
| 38 | + * of SRAM0; used by the UART bootloader and the Low Power Manager. |
| 39 | + * Data type definition comes from @ref system_stm32wb0xx.h |
| 40 | + */ |
| 41 | +Z_GENERIC_SECTION("stm32wb0_RAM_VR") |
| 42 | +__used RAM_VR_TypeDef RAM_VR; |
| 43 | + |
| 44 | +/** Power Controller node */ |
| 45 | +#define PWRC DT_INST(0, st_stm32wb0_pwr) |
| 46 | + |
| 47 | +/** SMPS modes */ |
| 48 | +#define STM32WB0_SMPS_MODE_OFF 0 |
| 49 | +#define STM32WB0_SMPS_MODE_PRECHARGE 1 |
| 50 | +#define STM32WB0_SMPS_MODE_RUN 2 |
| 51 | + |
| 52 | +#define SMPS_MODE _CONCAT(STM32WB0_SMPS_MODE_, DT_STRING_UNQUOTED(PWRC, smps_mode)) |
| 53 | + |
| 54 | +/* Convert DTS properties to LL macros */ |
| 55 | +#define SMPS_PRESCALER _CONCAT(LL_RCC_SMPS_DIV_, DT_PROP(PWRC, smps_clock_prescaler)) |
| 56 | + |
| 57 | +#if SMPS_MODE != STM32WB0_SMPS_MODE_OFF |
| 58 | + BUILD_ASSERT(DT_NODE_HAS_PROP(PWRC, smps_bom), |
| 59 | + "smps-bom must be specified"); |
| 60 | + |
| 61 | + #define SMPS_BOM \ |
| 62 | + _CONCAT(LL_PWR_SMPS_BOM, DT_PROP(PWRC, smps_bom)) |
| 63 | + |
| 64 | + #define SMPS_LP_MODE \ |
| 65 | + COND_CODE_1( \ |
| 66 | + DT_PROP(PWRC, smps_lp_floating), \ |
| 67 | + (LL_PWR_SMPS_LPOPEN), \ |
| 68 | + (LL_PWR_NO_SMPS_LPOPEN)) |
| 69 | + |
| 70 | + #define SMPS_CURRENT_LIMIT \ |
| 71 | + _CONCAT(LL_PWR_SMPS_PRECH_LIMIT_CUR_, \ |
| 72 | + DT_STRING_UNQUOTED(PWRC, smps_current_limit)) |
| 73 | + |
| 74 | + #define SMPS_OUTPUT_VOLTAGE \ |
| 75 | + _CONCAT(LL_PWR_SMPS_OUTPUT_VOLTAGE_, \ |
| 76 | + DT_STRING_UNQUOTED(PWRC, smps_output_voltage)) |
| 77 | +#endif /* SMPS_MODE != STM32WB0_SMPS_MODE_OFF */ |
| 78 | + |
| 79 | +static void configure_smps(void) |
| 80 | +{ |
| 81 | + /* Configure SMPS clock prescaler */ |
| 82 | + LL_RCC_SetSMPSPrescaler(SMPS_PRESCALER); |
| 83 | + |
| 84 | +#if SMPS_MODE == STM32WB0_SMPS_MODE_OFF |
| 85 | + /* Disable SMPS */ |
| 86 | + LL_PWR_SetSMPSMode(LL_PWR_NO_SMPS); |
| 87 | + |
| 88 | + while (LL_PWR_IsSMPSReady()) { |
| 89 | + /* Wait for SMPS to turn off */ |
| 90 | + } |
| 91 | +#else |
| 92 | + /* Select correct BOM */ |
| 93 | + LL_PWR_SetSMPSBOM(SMPS_BOM); |
| 94 | + |
| 95 | + /* Configure low-power mode */ |
| 96 | + LL_PWR_SetSMPSOpenMode(SMPS_LP_MODE); |
| 97 | + |
| 98 | + /* Enable SMPS */ |
| 99 | + LL_PWR_SetSMPSMode(LL_PWR_SMPS); |
| 100 | + |
| 101 | + while (!LL_PWR_IsSMPSReady()) { |
| 102 | + /* Wait for SMPS to turn on */ |
| 103 | + } |
| 104 | + |
| 105 | + /* Place SMPS in PRECHARGE (BYPASS) mode. |
| 106 | + * This is required to change SMPS output voltage, |
| 107 | + * so we can do it unconditionally. |
| 108 | + */ |
| 109 | + LL_PWR_SetSMPSPrechargeMode(LL_PWR_SMPS_PRECHARGE); |
| 110 | + while (LL_PWR_IsSMPSinRUNMode()) { |
| 111 | + /* Wait for SMPS to enter PRECHARGE mode */ |
| 112 | + } |
| 113 | + |
| 114 | + if (SMPS_MODE == STM32WB0_SMPS_MODE_PRECHARGE) { |
| 115 | + /** |
| 116 | + * SMPS should remain in PRECHARGE mode, but |
| 117 | + * we still have to configure the current limit. |
| 118 | + */ |
| 119 | + LL_PWR_SetSMPSPrechargeLimitCurrent(SMPS_CURRENT_LIMIT); |
| 120 | + } else { |
| 121 | + /** |
| 122 | + * SMPS mode requested is RUN mode. Configure the output |
| 123 | + * voltage to the desired value then exit PRECHARGE mode. |
| 124 | + */ |
| 125 | + LL_PWR_SMPS_SetOutputVoltageLevel(SMPS_OUTPUT_VOLTAGE); |
| 126 | + |
| 127 | + /* Exit PRECHARGE mode (returns in RUN mode) */ |
| 128 | + LL_PWR_SetSMPSPrechargeMode(LL_PWR_NO_SMPS_PRECHARGE); |
| 129 | + while (!LL_PWR_IsSMPSinRUNMode()) { |
| 130 | + /* Wait for SMPS to enter RUN mode */ |
| 131 | + } |
| 132 | + } |
| 133 | +#endif /* SMPS_MODE == STM32WB0_SMPS_MODE_OFF */ |
| 134 | +} |
| 135 | + |
| 136 | +/** |
| 137 | + * @brief Perform basic hardware initialization at boot. |
| 138 | + * |
| 139 | + * This needs to be run from the very beginning, |
| 140 | + * so the init priority has to be 0 (zero). |
| 141 | + * |
| 142 | + * @return 0 |
| 143 | + */ |
| 144 | +static int stm32wb0_init(void) |
| 145 | +{ |
| 146 | + /* Update CMSIS SystemCoreClock variable (CLK_SYS) */ |
| 147 | + /* On reset, the 64MHz HSI is selected as input to |
| 148 | + * the SYSCLKPRE prescaler, set to 4, resulting in |
| 149 | + * CLK_SYS being equal to 16MHz. |
| 150 | + */ |
| 151 | + SystemCoreClock = 16000000U; |
| 152 | + |
| 153 | + /* Remap address 0 to user flash memory */ |
| 154 | + LL_SYSCFG_SetRemapMemory(LL_SYSCFG_REMAP_FLASH); |
| 155 | + |
| 156 | + /** |
| 157 | + * Save application exception vector address in RAM_VR. |
| 158 | + * By now, SCB->VTOR should point to _vector_table, |
| 159 | + * so use that value instead of _vector_table directly. |
| 160 | + */ |
| 161 | + RAM_VR.AppBase = SCB->VTOR; |
| 162 | + |
| 163 | + /* Enable retention of all RAM banks in Deepstop */ |
| 164 | + LL_PWR_EnableRAMBankRet(LL_PWR_RAMRET_1); |
| 165 | +#if defined(LL_PWR_RAMRET_2) |
| 166 | + LL_PWR_EnableRAMBankRet(LL_PWR_RAMRET_2); |
| 167 | +#endif |
| 168 | +#if defined(LL_PWR_RAMRET_3) |
| 169 | + LL_PWR_EnableRAMBankRet(LL_PWR_RAMRET_3); |
| 170 | +#endif |
| 171 | + |
| 172 | + /* Configure SMPS step-down converter */ |
| 173 | + configure_smps(); |
| 174 | + |
| 175 | + return 0; |
| 176 | +} |
| 177 | + |
| 178 | +SYS_INIT(stm32wb0_init, PRE_KERNEL_1, 0); |
0 commit comments