system_stm32f1xx.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  1. /**
  2. ******************************************************************************
  3. * @file system_stm32f1xx.c
  4. * @author MCD Application Team
  5. * @brief CMSIS Cortex-M3 Device Peripheral Access Layer System Source File.
  6. *
  7. * 1. This file provides two functions and one global variable to be called from
  8. * user application:
  9. * - SystemInit(): Setups the system clock (System clock source, PLL Multiplier
  10. * factors, AHB/APBx prescalers and Flash settings).
  11. * This function is called at startup just after reset and
  12. * before branch to main program. This call is made inside
  13. * the "startup_stm32f1xx_xx.s" file.
  14. *
  15. * - SystemCoreClock variable: Contains the core clock (HCLK), it can be used
  16. * by the user application to setup the SysTick
  17. * timer or configure other parameters.
  18. *
  19. * - SystemCoreClockUpdate(): Updates the variable SystemCoreClock and must
  20. * be called whenever the core clock is changed
  21. * during program execution.
  22. *
  23. * 2. After each device reset the HSI (8 MHz) is used as system clock source.
  24. * Then SystemInit() function is called, in "startup_stm32f1xx_xx.s" file, to
  25. * configure the system clock before to branch to main program.
  26. *
  27. * 4. The default value of HSE crystal is set to 8 MHz (or 25 MHz, depending on
  28. * the product used), refer to "HSE_VALUE".
  29. * When HSE is used as system clock source, directly or through PLL, and you
  30. * are using different crystal you have to adapt the HSE value to your own
  31. * configuration.
  32. *
  33. ******************************************************************************
  34. * @attention
  35. *
  36. * Copyright (c) 2017-2021 STMicroelectronics.
  37. * All rights reserved.
  38. *
  39. * This software is licensed under terms that can be found in the LICENSE file
  40. * in the root directory of this software component.
  41. * If no LICENSE file comes with this software, it is provided AS-IS.
  42. *
  43. ******************************************************************************
  44. */
  45. /** @addtogroup CMSIS
  46. * @{
  47. */
  48. /** @addtogroup stm32f1xx_system
  49. * @{
  50. */
  51. /** @addtogroup STM32F1xx_System_Private_Includes
  52. * @{
  53. */
  54. #include "stm32f1xx.h"
  55. /**
  56. * @}
  57. */
  58. /** @addtogroup STM32F1xx_System_Private_TypesDefinitions
  59. * @{
  60. */
  61. /**
  62. * @}
  63. */
  64. /** @addtogroup STM32F1xx_System_Private_Defines
  65. * @{
  66. */
  67. #if !defined (HSE_VALUE)
  68. #define HSE_VALUE 8000000U /*!< Default value of the External oscillator in Hz.
  69. This value can be provided and adapted by the user application. */
  70. #endif /* HSE_VALUE */
  71. #if !defined (HSI_VALUE)
  72. #define HSI_VALUE 8000000U /*!< Default value of the Internal oscillator in Hz.
  73. This value can be provided and adapted by the user application. */
  74. #endif /* HSI_VALUE */
  75. /*!< Uncomment the following line if you need to use external SRAM */
  76. #if defined(STM32F100xE) || defined(STM32F101xE) || defined(STM32F101xG) || defined(STM32F103xE) || defined(STM32F103xG)
  77. /* #define DATA_IN_ExtSRAM */
  78. #endif /* STM32F100xE || STM32F101xE || STM32F101xG || STM32F103xE || STM32F103xG */
  79. /* Note: Following vector table addresses must be defined in line with linker
  80. configuration. */
  81. /*!< Uncomment the following line if you need to relocate the vector table
  82. anywhere in Flash or Sram, else the vector table is kept at the automatic
  83. remap of boot address selected */
  84. /* #define USER_VECT_TAB_ADDRESS */
  85. #if defined(USER_VECT_TAB_ADDRESS)
  86. /*!< Uncomment the following line if you need to relocate your vector Table
  87. in Sram else user remap will be done in Flash. */
  88. /* #define VECT_TAB_SRAM */
  89. #if defined(VECT_TAB_SRAM)
  90. #define VECT_TAB_BASE_ADDRESS SRAM_BASE /*!< Vector Table base address field.
  91. This value must be a multiple of 0x200. */
  92. #define VECT_TAB_OFFSET 0x00000000U /*!< Vector Table base offset field.
  93. This value must be a multiple of 0x200. */
  94. #else
  95. #define VECT_TAB_BASE_ADDRESS FLASH_BASE /*!< Vector Table base address field.
  96. This value must be a multiple of 0x200. */
  97. #define VECT_TAB_OFFSET 0x00000000U /*!< Vector Table base offset field.
  98. This value must be a multiple of 0x200. */
  99. #endif /* VECT_TAB_SRAM */
  100. #endif /* USER_VECT_TAB_ADDRESS */
  101. /******************************************************************************/
  102. /**
  103. * @}
  104. */
  105. /** @addtogroup STM32F1xx_System_Private_Macros
  106. * @{
  107. */
  108. /**
  109. * @}
  110. */
  111. /** @addtogroup STM32F1xx_System_Private_Variables
  112. * @{
  113. */
  114. /* This variable is updated in three ways:
  115. 1) by calling CMSIS function SystemCoreClockUpdate()
  116. 2) by calling HAL API function HAL_RCC_GetHCLKFreq()
  117. 3) each time HAL_RCC_ClockConfig() is called to configure the system clock frequency
  118. Note: If you use this function to configure the system clock; then there
  119. is no need to call the 2 first functions listed above, since SystemCoreClock
  120. variable is updated automatically.
  121. */
  122. uint32_t SystemCoreClock = 16000000;
  123. const uint8_t AHBPrescTable[16U] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 7, 8, 9};
  124. const uint8_t APBPrescTable[8U] = {0, 0, 0, 0, 1, 2, 3, 4};
  125. /**
  126. * @}
  127. */
  128. /** @addtogroup STM32F1xx_System_Private_FunctionPrototypes
  129. * @{
  130. */
  131. #if defined(STM32F100xE) || defined(STM32F101xE) || defined(STM32F101xG) || defined(STM32F103xE) || defined(STM32F103xG)
  132. #ifdef DATA_IN_ExtSRAM
  133. static void SystemInit_ExtMemCtl(void);
  134. #endif /* DATA_IN_ExtSRAM */
  135. #endif /* STM32F100xE || STM32F101xE || STM32F101xG || STM32F103xE || STM32F103xG */
  136. /**
  137. * @}
  138. */
  139. /** @addtogroup STM32F1xx_System_Private_Functions
  140. * @{
  141. */
  142. /**
  143. * @brief Setup the microcontroller system
  144. * Initialize the Embedded Flash Interface, the PLL and update the
  145. * SystemCoreClock variable.
  146. * @note This function should be used only after reset.
  147. * @param None
  148. * @retval None
  149. */
  150. void SystemInit (void)
  151. {
  152. #if defined(STM32F100xE) || defined(STM32F101xE) || defined(STM32F101xG) || defined(STM32F103xE) || defined(STM32F103xG)
  153. #ifdef DATA_IN_ExtSRAM
  154. SystemInit_ExtMemCtl();
  155. #endif /* DATA_IN_ExtSRAM */
  156. #endif
  157. /* Configure the Vector Table location -------------------------------------*/
  158. #if defined(USER_VECT_TAB_ADDRESS)
  159. SCB->VTOR = VECT_TAB_BASE_ADDRESS | VECT_TAB_OFFSET; /* Vector Table Relocation in Internal SRAM. */
  160. #endif /* USER_VECT_TAB_ADDRESS */
  161. }
  162. /**
  163. * @brief Update SystemCoreClock variable according to Clock Register Values.
  164. * The SystemCoreClock variable contains the core clock (HCLK), it can
  165. * be used by the user application to setup the SysTick timer or configure
  166. * other parameters.
  167. *
  168. * @note Each time the core clock (HCLK) changes, this function must be called
  169. * to update SystemCoreClock variable value. Otherwise, any configuration
  170. * based on this variable will be incorrect.
  171. *
  172. * @note - The system frequency computed by this function is not the real
  173. * frequency in the chip. It is calculated based on the predefined
  174. * constant and the selected clock source:
  175. *
  176. * - If SYSCLK source is HSI, SystemCoreClock will contain the HSI_VALUE(*)
  177. *
  178. * - If SYSCLK source is HSE, SystemCoreClock will contain the HSE_VALUE(**)
  179. *
  180. * - If SYSCLK source is PLL, SystemCoreClock will contain the HSE_VALUE(**)
  181. * or HSI_VALUE(*) multiplied by the PLL factors.
  182. *
  183. * (*) HSI_VALUE is a constant defined in stm32f1xx.h file (default value
  184. * 8 MHz) but the real value may vary depending on the variations
  185. * in voltage and temperature.
  186. *
  187. * (**) HSE_VALUE is a constant defined in stm32f1xx.h file (default value
  188. * 8 MHz or 25 MHz, depending on the product used), user has to ensure
  189. * that HSE_VALUE is same as the real frequency of the crystal used.
  190. * Otherwise, this function may have wrong result.
  191. *
  192. * - The result of this function could be not correct when using fractional
  193. * value for HSE crystal.
  194. * @param None
  195. * @retval None
  196. */
  197. void SystemCoreClockUpdate (void)
  198. {
  199. uint32_t tmp = 0U, pllmull = 0U, pllsource = 0U;
  200. #if defined(STM32F105xC) || defined(STM32F107xC)
  201. uint32_t prediv1source = 0U, prediv1factor = 0U, prediv2factor = 0U, pll2mull = 0U;
  202. #endif /* STM32F105xC */
  203. #if defined(STM32F100xB) || defined(STM32F100xE)
  204. uint32_t prediv1factor = 0U;
  205. #endif /* STM32F100xB or STM32F100xE */
  206. /* Get SYSCLK source -------------------------------------------------------*/
  207. tmp = RCC->CFGR & RCC_CFGR_SWS;
  208. switch (tmp)
  209. {
  210. case 0x00U: /* HSI used as system clock */
  211. SystemCoreClock = HSI_VALUE;
  212. break;
  213. case 0x04U: /* HSE used as system clock */
  214. SystemCoreClock = HSE_VALUE;
  215. break;
  216. case 0x08U: /* PLL used as system clock */
  217. /* Get PLL clock source and multiplication factor ----------------------*/
  218. pllmull = RCC->CFGR & RCC_CFGR_PLLMULL;
  219. pllsource = RCC->CFGR & RCC_CFGR_PLLSRC;
  220. #if !defined(STM32F105xC) && !defined(STM32F107xC)
  221. pllmull = ( pllmull >> 18U) + 2U;
  222. if (pllsource == 0x00U)
  223. {
  224. /* HSI oscillator clock divided by 2 selected as PLL clock entry */
  225. SystemCoreClock = (HSI_VALUE >> 1U) * pllmull;
  226. }
  227. else
  228. {
  229. #if defined(STM32F100xB) || defined(STM32F100xE)
  230. prediv1factor = (RCC->CFGR2 & RCC_CFGR2_PREDIV1) + 1U;
  231. /* HSE oscillator clock selected as PREDIV1 clock entry */
  232. SystemCoreClock = (HSE_VALUE / prediv1factor) * pllmull;
  233. #else
  234. /* HSE selected as PLL clock entry */
  235. if ((RCC->CFGR & RCC_CFGR_PLLXTPRE) != (uint32_t)RESET)
  236. {/* HSE oscillator clock divided by 2 */
  237. SystemCoreClock = (HSE_VALUE >> 1U) * pllmull;
  238. }
  239. else
  240. {
  241. SystemCoreClock = HSE_VALUE * pllmull;
  242. }
  243. #endif
  244. }
  245. #else
  246. pllmull = pllmull >> 18U;
  247. if (pllmull != 0x0DU)
  248. {
  249. pllmull += 2U;
  250. }
  251. else
  252. { /* PLL multiplication factor = PLL input clock * 6.5 */
  253. pllmull = 13U / 2U;
  254. }
  255. if (pllsource == 0x00U)
  256. {
  257. /* HSI oscillator clock divided by 2 selected as PLL clock entry */
  258. SystemCoreClock = (HSI_VALUE >> 1U) * pllmull;
  259. }
  260. else
  261. {/* PREDIV1 selected as PLL clock entry */
  262. /* Get PREDIV1 clock source and division factor */
  263. prediv1source = RCC->CFGR2 & RCC_CFGR2_PREDIV1SRC;
  264. prediv1factor = (RCC->CFGR2 & RCC_CFGR2_PREDIV1) + 1U;
  265. if (prediv1source == 0U)
  266. {
  267. /* HSE oscillator clock selected as PREDIV1 clock entry */
  268. SystemCoreClock = (HSE_VALUE / prediv1factor) * pllmull;
  269. }
  270. else
  271. {/* PLL2 clock selected as PREDIV1 clock entry */
  272. /* Get PREDIV2 division factor and PLL2 multiplication factor */
  273. prediv2factor = ((RCC->CFGR2 & RCC_CFGR2_PREDIV2) >> 4U) + 1U;
  274. pll2mull = ((RCC->CFGR2 & RCC_CFGR2_PLL2MUL) >> 8U) + 2U;
  275. SystemCoreClock = (((HSE_VALUE / prediv2factor) * pll2mull) / prediv1factor) * pllmull;
  276. }
  277. }
  278. #endif /* STM32F105xC */
  279. break;
  280. default:
  281. SystemCoreClock = HSI_VALUE;
  282. break;
  283. }
  284. /* Compute HCLK clock frequency ----------------*/
  285. /* Get HCLK prescaler */
  286. tmp = AHBPrescTable[((RCC->CFGR & RCC_CFGR_HPRE) >> 4U)];
  287. /* HCLK clock frequency */
  288. SystemCoreClock >>= tmp;
  289. }
  290. #if defined(STM32F100xE) || defined(STM32F101xE) || defined(STM32F101xG) || defined(STM32F103xE) || defined(STM32F103xG)
  291. /**
  292. * @brief Setup the external memory controller. Called in startup_stm32f1xx.s
  293. * before jump to __main
  294. * @param None
  295. * @retval None
  296. */
  297. #ifdef DATA_IN_ExtSRAM
  298. /**
  299. * @brief Setup the external memory controller.
  300. * Called in startup_stm32f1xx_xx.s/.c before jump to main.
  301. * This function configures the external SRAM mounted on STM3210E-EVAL
  302. * board (STM32 High density devices). This SRAM will be used as program
  303. * data memory (including heap and stack).
  304. * @param None
  305. * @retval None
  306. */
  307. void SystemInit_ExtMemCtl(void)
  308. {
  309. __IO uint32_t tmpreg;
  310. /*!< FSMC Bank1 NOR/SRAM3 is used for the STM3210E-EVAL, if another Bank is
  311. required, then adjust the Register Addresses */
  312. /* Enable FSMC clock */
  313. RCC->AHBENR = 0x00000114U;
  314. /* Delay after an RCC peripheral clock enabling */
  315. tmpreg = READ_BIT(RCC->AHBENR, RCC_AHBENR_FSMCEN);
  316. /* Enable GPIOD, GPIOE, GPIOF and GPIOG clocks */
  317. RCC->APB2ENR = 0x000001E0U;
  318. /* Delay after an RCC peripheral clock enabling */
  319. tmpreg = READ_BIT(RCC->APB2ENR, RCC_APB2ENR_IOPDEN);
  320. (void)(tmpreg);
  321. /* --------------- SRAM Data lines, NOE and NWE configuration ---------------*/
  322. /*---------------- SRAM Address lines configuration -------------------------*/
  323. /*---------------- NOE and NWE configuration --------------------------------*/
  324. /*---------------- NE3 configuration ----------------------------------------*/
  325. /*---------------- NBL0, NBL1 configuration ---------------------------------*/
  326. GPIOD->CRL = 0x44BB44BBU;
  327. GPIOD->CRH = 0xBBBBBBBBU;
  328. GPIOE->CRL = 0xB44444BBU;
  329. GPIOE->CRH = 0xBBBBBBBBU;
  330. GPIOF->CRL = 0x44BBBBBBU;
  331. GPIOF->CRH = 0xBBBB4444U;
  332. GPIOG->CRL = 0x44BBBBBBU;
  333. GPIOG->CRH = 0x444B4B44U;
  334. /*---------------- FSMC Configuration ---------------------------------------*/
  335. /*---------------- Enable FSMC Bank1_SRAM Bank ------------------------------*/
  336. FSMC_Bank1->BTCR[4U] = 0x00001091U;
  337. FSMC_Bank1->BTCR[5U] = 0x00110212U;
  338. }
  339. #endif /* DATA_IN_ExtSRAM */
  340. #endif /* STM32F100xE || STM32F101xE || STM32F101xG || STM32F103xE || STM32F103xG */
  341. /**
  342. * @}
  343. */
  344. /**
  345. * @}
  346. */
  347. /**
  348. * @}
  349. */