You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

354 lines
13 KiB

  1. /**
  2. ******************************************************************************
  3. * @file system_stm32wbxx.c
  4. * @author MCD Application Team
  5. * @brief CMSIS Cortex Device Peripheral Access Layer System Source File
  6. *
  7. * This file provides two functions and one global variable to be called from
  8. * user application:
  9. * - SystemInit(): This function is called at startup just after reset and
  10. * before branch to main program. This call is made inside
  11. * the "startup_stm32wbxx.s" file.
  12. *
  13. * - SystemCoreClock variable: Contains the core clock (HCLK), it can be used
  14. * by the user application to setup the SysTick
  15. * timer or configure other parameters.
  16. *
  17. * - SystemCoreClockUpdate(): Updates the variable SystemCoreClock and must
  18. * be called whenever the core clock is changed
  19. * during program execution.
  20. *
  21. * After each device reset the MSI (4 MHz) is used as system clock source.
  22. * Then SystemInit() function is called, in "startup_stm32wbxx.s" file, to
  23. * configure the system clock before to branch to main program.
  24. *
  25. * This file configures the system clock as follows:
  26. *=============================================================================
  27. *-----------------------------------------------------------------------------
  28. * System Clock source | MSI
  29. *-----------------------------------------------------------------------------
  30. * SYSCLK(Hz) | 4000000
  31. *-----------------------------------------------------------------------------
  32. * HCLK(Hz) | 4000000
  33. *-----------------------------------------------------------------------------
  34. * AHB Prescaler | 1
  35. *-----------------------------------------------------------------------------
  36. * APB1 Prescaler | 1
  37. *-----------------------------------------------------------------------------
  38. * APB2 Prescaler | 1
  39. *-----------------------------------------------------------------------------
  40. * PLL_M | 1
  41. *-----------------------------------------------------------------------------
  42. * PLL_N | 8
  43. *-----------------------------------------------------------------------------
  44. * PLL_P | 7
  45. *-----------------------------------------------------------------------------
  46. * PLL_Q | 2
  47. *-----------------------------------------------------------------------------
  48. * PLL_R | 2
  49. *-----------------------------------------------------------------------------
  50. * PLLSAI1_P | NA
  51. *-----------------------------------------------------------------------------
  52. * PLLSAI1_Q | NA
  53. *-----------------------------------------------------------------------------
  54. * PLLSAI1_R | NA
  55. *-----------------------------------------------------------------------------
  56. * Require 48MHz for USB OTG FS, | Disabled
  57. * SDIO and RNG clock |
  58. *-----------------------------------------------------------------------------
  59. *=============================================================================
  60. ******************************************************************************
  61. * @attention
  62. *
  63. * <h2><center>&copy; Copyright (c) 2019 STMicroelectronics.
  64. * All rights reserved.</center></h2>
  65. *
  66. * This software component is licensed by ST under BSD 3-Clause license,
  67. * the "License"; You may not use this file except in compliance with the
  68. * License. You may obtain a copy of the License at:
  69. * opensource.org/licenses/BSD-3-Clause
  70. *
  71. ******************************************************************************
  72. */
  73. /** @addtogroup CMSIS
  74. * @{
  75. */
  76. /** @addtogroup stm32WBxx_system
  77. * @{
  78. */
  79. /** @addtogroup stm32WBxx_System_Private_Includes
  80. * @{
  81. */
  82. #include "stm32wbxx.h"
  83. #if !defined (HSE_VALUE)
  84. #define HSE_VALUE (32000000UL) /*!< Value of the External oscillator in Hz */
  85. #endif /* HSE_VALUE */
  86. #if !defined (MSI_VALUE)
  87. #define MSI_VALUE (4000000UL) /*!< Value of the Internal oscillator in Hz*/
  88. #endif /* MSI_VALUE */
  89. #if !defined (HSI_VALUE)
  90. #define HSI_VALUE (16000000UL) /*!< Value of the Internal oscillator in Hz*/
  91. #endif /* HSI_VALUE */
  92. #if !defined (LSI_VALUE)
  93. #define LSI_VALUE (32000UL) /*!< Value of LSI in Hz*/
  94. #endif /* LSI_VALUE */
  95. #if !defined (LSE_VALUE)
  96. #define LSE_VALUE (32768UL) /*!< Value of LSE in Hz*/
  97. #endif /* LSE_VALUE */
  98. /**
  99. * @}
  100. */
  101. /** @addtogroup STM32WBxx_System_Private_TypesDefinitions
  102. * @{
  103. */
  104. /**
  105. * @}
  106. */
  107. /** @addtogroup STM32WBxx_System_Private_Defines
  108. * @{
  109. */
  110. /*!< Uncomment the following line if you need to relocate your vector Table in
  111. Internal SRAM. */
  112. /* #define VECT_TAB_SRAM */
  113. #define VECT_TAB_OFFSET 0x0U /*!< Vector Table base offset field.
  114. This value must be a multiple of 0x200. */
  115. #define VECT_TAB_BASE_ADDRESS SRAM1_BASE /*!< Vector Table base offset field.
  116. This value must be a multiple of 0x200. */
  117. /**
  118. * @}
  119. */
  120. /** @addtogroup STM32WBxx_System_Private_Macros
  121. * @{
  122. */
  123. /**
  124. * @}
  125. */
  126. /** @addtogroup STM32WBxx_System_Private_Variables
  127. * @{
  128. */
  129. /* The SystemCoreClock variable is updated in three ways:
  130. 1) by calling CMSIS function SystemCoreClockUpdate()
  131. 2) by calling HAL API function HAL_RCC_GetHCLKFreq()
  132. 3) each time HAL_RCC_ClockConfig() is called to configure the system clock frequency
  133. Note: If you use this function to configure the system clock; then there
  134. is no need to call the 2 first functions listed above, since SystemCoreClock
  135. variable is updated automatically.
  136. */
  137. uint32_t SystemCoreClock = 4000000UL ; /*CPU1: M4 on MSI clock after startup (4MHz)*/
  138. const uint32_t AHBPrescTable[16UL] = {1UL, 3UL, 5UL, 1UL, 1UL, 6UL, 10UL, 32UL, 2UL, 4UL, 8UL, 16UL, 64UL, 128UL, 256UL, 512UL};
  139. const uint32_t APBPrescTable[8UL] = {0UL, 0UL, 0UL, 0UL, 1UL, 2UL, 3UL, 4UL};
  140. const uint32_t MSIRangeTable[16UL] = {100000UL, 200000UL, 400000UL, 800000UL, 1000000UL, 2000000UL, \
  141. 4000000UL, 8000000UL, 16000000UL, 24000000UL, 32000000UL, 48000000UL, 0UL, 0UL, 0UL, 0UL}; /* 0UL values are incorrect cases */
  142. const uint32_t SmpsPrescalerTable[4UL][6UL]={{1UL,3UL,2UL,2UL,1UL,2UL}, \
  143. {2UL,6UL,4UL,3UL,2UL,4UL}, \
  144. {4UL,12UL,8UL,6UL,4UL,8UL}, \
  145. {4UL,12UL,8UL,6UL,4UL,8UL}};
  146. /**
  147. * @}
  148. */
  149. /** @addtogroup STM32WBxx_System_Private_FunctionPrototypes
  150. * @{
  151. */
  152. /**
  153. * @}
  154. */
  155. /** @addtogroup STM32WBxx_System_Private_Functions
  156. * @{
  157. */
  158. /**
  159. * @brief Setup the microcontroller system.
  160. * @param None
  161. * @retval None
  162. */
  163. void SystemInit(void)
  164. {
  165. /* Configure the Vector Table location add offset address ------------------*/
  166. #if defined(VECT_TAB_SRAM) && defined(VECT_TAB_BASE_ADDRESS)
  167. /* program in SRAMx */
  168. SCB->VTOR = VECT_TAB_BASE_ADDRESS | VECT_TAB_OFFSET; /* Vector Table Relocation in Internal SRAMx for CPU1 */
  169. #else /* program in FLASH */
  170. SCB->VTOR = VECT_TAB_OFFSET; /* Vector Table Relocation in Internal FLASH */
  171. #endif
  172. /* FPU settings ------------------------------------------------------------*/
  173. #if (__FPU_PRESENT == 1) && (__FPU_USED == 1)
  174. SCB->CPACR |= ((3UL << (10UL*2UL))|(3UL << (11UL*2UL))); /* set CP10 and CP11 Full Access */
  175. #endif
  176. /* Reset the RCC clock configuration to the default reset state ------------*/
  177. /* Set MSION bit */
  178. RCC->CR |= RCC_CR_MSION;
  179. /* Reset CFGR register */
  180. RCC->CFGR = 0x00070000U;
  181. /* Reset PLLSAI1ON, PLLON, HSECSSON, HSEON, HSION, and MSIPLLON bits */
  182. RCC->CR &= (uint32_t)0xFAF6FEFBU;
  183. /*!< Reset LSI1 and LSI2 bits */
  184. RCC->CSR &= (uint32_t)0xFFFFFFFAU;
  185. /*!< Reset HSI48ON bit */
  186. RCC->CRRCR &= (uint32_t)0xFFFFFFFEU;
  187. /* Reset PLLCFGR register */
  188. RCC->PLLCFGR = 0x22041000U;
  189. /* Reset PLLSAI1CFGR register */
  190. RCC->PLLSAI1CFGR = 0x22041000U;
  191. /* Reset HSEBYP bit */
  192. RCC->CR &= 0xFFFBFFFFU;
  193. /* Disable all interrupts */
  194. RCC->CIER = 0x00000000;
  195. }
  196. /**
  197. * @brief Update SystemCoreClock variable according to Clock Register Values.
  198. * The SystemCoreClock variable contains the core clock (HCLK), it can
  199. * be used by the user application to setup the SysTick timer or configure
  200. * other parameters.
  201. *
  202. * @note Each time the core clock (HCLK) changes, this function must be called
  203. * to update SystemCoreClock variable value. Otherwise, any configuration
  204. * based on this variable will be incorrect.
  205. *
  206. * @note - The system frequency computed by this function is not the real
  207. * frequency in the chip. It is calculated based on the predefined
  208. * constant and the selected clock source:
  209. *
  210. * - If SYSCLK source is MSI, SystemCoreClock will contain the MSI_VALUE(*)
  211. *
  212. * - If SYSCLK source is HSI, SystemCoreClock will contain the HSI_VALUE(**)
  213. *
  214. * - If SYSCLK source is HSE, SystemCoreClock will contain the HSE_VALUE(***)
  215. *
  216. * - If SYSCLK source is PLL, SystemCoreClock will contain the HSE_VALUE(***)
  217. * or HSI_VALUE(*) or MSI_VALUE(*) multiplied/divided by the PLL factors.
  218. *
  219. * (*) MSI_VALUE is a constant defined in stm32wbxx_hal.h file (default value
  220. * 4 MHz) but the real value may vary depending on the variations
  221. * in voltage and temperature.
  222. *
  223. * (**) HSI_VALUE is a constant defined in stm32wbxx_hal_conf.h file (default value
  224. * 16 MHz) but the real value may vary depending on the variations
  225. * in voltage and temperature.
  226. *
  227. * (***) HSE_VALUE is a constant defined in stm32wbxx_hal_conf.h file (default value
  228. * 32 MHz), user has to ensure that HSE_VALUE is same as the real
  229. * frequency of the crystal used. Otherwise, this function may
  230. * have wrong result.
  231. *
  232. * - The result of this function could be not correct when using fractional
  233. * value for HSE crystal.
  234. *
  235. * @param None
  236. * @retval None
  237. */
  238. void SystemCoreClockUpdate(void)
  239. {
  240. uint32_t tmp, msirange, pllvco, pllr, pllsource , pllm;
  241. /* Get MSI Range frequency--------------------------------------------------*/
  242. /*MSI frequency range in Hz*/
  243. msirange = MSIRangeTable[(RCC->CR & RCC_CR_MSIRANGE) >> RCC_CR_MSIRANGE_Pos];
  244. /* Get SYSCLK source -------------------------------------------------------*/
  245. switch (RCC->CFGR & RCC_CFGR_SWS)
  246. {
  247. case 0x00: /* MSI used as system clock source */
  248. SystemCoreClock = msirange;
  249. break;
  250. case 0x04: /* HSI used as system clock source */
  251. /* HSI used as system clock source */
  252. SystemCoreClock = HSI_VALUE;
  253. break;
  254. case 0x08: /* HSE used as system clock source */
  255. SystemCoreClock = HSE_VALUE;
  256. break;
  257. case 0x0C: /* PLL used as system clock source */
  258. /* PLL_VCO = (HSE_VALUE or HSI_VALUE or MSI_VALUE/ PLLM) * PLLN
  259. SYSCLK = PLL_VCO / PLLR
  260. */
  261. pllsource = (RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC);
  262. pllm = ((RCC->PLLCFGR & RCC_PLLCFGR_PLLM) >> RCC_PLLCFGR_PLLM_Pos) + 1UL ;
  263. if(pllsource == 0x02UL) /* HSI used as PLL clock source */
  264. {
  265. pllvco = (HSI_VALUE / pllm);
  266. }
  267. else if(pllsource == 0x03UL) /* HSE used as PLL clock source */
  268. {
  269. pllvco = (HSE_VALUE / pllm);
  270. }
  271. else /* MSI used as PLL clock source */
  272. {
  273. pllvco = (msirange / pllm);
  274. }
  275. pllvco = pllvco * ((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> RCC_PLLCFGR_PLLN_Pos);
  276. pllr = (((RCC->PLLCFGR & RCC_PLLCFGR_PLLR) >> RCC_PLLCFGR_PLLR_Pos) + 1UL);
  277. SystemCoreClock = pllvco/pllr;
  278. break;
  279. default:
  280. SystemCoreClock = msirange;
  281. break;
  282. }
  283. /* Compute HCLK clock frequency --------------------------------------------*/
  284. /* Get HCLK1 prescaler */
  285. tmp = AHBPrescTable[((RCC->CFGR & RCC_CFGR_HPRE) >> RCC_CFGR_HPRE_Pos)];
  286. /* HCLK clock frequency */
  287. SystemCoreClock = SystemCoreClock / tmp;
  288. }
  289. /**
  290. * @}
  291. */
  292. /**
  293. * @}
  294. */
  295. /**
  296. * @}
  297. */
  298. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/