system_stm32f1xx.c 14 KB

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