69edfc59d67291742e5bb5452237c9665ce71c5a
[mTask.git] / int / com / lib / CMSIS-hal / Device / ST / STM32F7xx / Source / Templates / system_stm32f7xx.c
1 /**
2 ******************************************************************************
3 * @file system_stm32f7xx.c
4 * @author MCD Application Team
5 * @version V1.1.0
6 * @date 22-April-2016
7 * @brief CMSIS Cortex-M7 Device Peripheral Access Layer System Source File.
8 *
9 * This file provides two functions and one global variable to be called from
10 * user application:
11 * - SystemInit(): This function is called at startup just after reset and
12 * before branch to main program. This call is made inside
13 * the "startup_stm32f7xx.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 *
24 ******************************************************************************
25 * @attention
26 *
27 * <h2><center>&copy; COPYRIGHT 2016 STMicroelectronics</center></h2>
28 *
29 * Redistribution and use in source and binary forms, with or without modification,
30 * are permitted provided that the following conditions are met:
31 * 1. Redistributions of source code must retain the above copyright notice,
32 * this list of conditions and the following disclaimer.
33 * 2. Redistributions in binary form must reproduce the above copyright notice,
34 * this list of conditions and the following disclaimer in the documentation
35 * and/or other materials provided with the distribution.
36 * 3. Neither the name of STMicroelectronics nor the names of its contributors
37 * may be used to endorse or promote products derived from this software
38 * without specific prior written permission.
39 *
40 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
41 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
43 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
46 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
47 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
48 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
49 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
50 *
51 ******************************************************************************
52 */
53
54 /** @addtogroup CMSIS
55 * @{
56 */
57
58 /** @addtogroup stm32f7xx_system
59 * @{
60 */
61
62 /** @addtogroup STM32F7xx_System_Private_Includes
63 * @{
64 */
65
66 #include "stm32f7xx.h"
67
68 #if !defined (HSE_VALUE)
69 #define HSE_VALUE ((uint32_t)25000000) /*!< Default value of the External oscillator in Hz */
70 #endif /* HSE_VALUE */
71
72 #if !defined (HSI_VALUE)
73 #define HSI_VALUE ((uint32_t)16000000) /*!< Value of the Internal oscillator in Hz*/
74 #endif /* HSI_VALUE */
75
76 /**
77 * @}
78 */
79
80 /** @addtogroup STM32F7xx_System_Private_TypesDefinitions
81 * @{
82 */
83
84 /**
85 * @}
86 */
87
88 /** @addtogroup STM32F7xx_System_Private_Defines
89 * @{
90 */
91
92 /************************* Miscellaneous Configuration ************************/
93
94 /*!< Uncomment the following line if you need to relocate your vector Table in
95 Internal SRAM. */
96 /* #define VECT_TAB_SRAM */
97 #define VECT_TAB_OFFSET 0x00 /*!< Vector Table base offset field.
98 This value must be a multiple of 0x200. */
99 /******************************************************************************/
100
101 /**
102 * @}
103 */
104
105 /** @addtogroup STM32F7xx_System_Private_Macros
106 * @{
107 */
108
109 /**
110 * @}
111 */
112
113 /** @addtogroup STM32F7xx_System_Private_Variables
114 * @{
115 */
116
117 /* This variable is updated in three ways:
118 1) by calling CMSIS function SystemCoreClockUpdate()
119 2) by calling HAL API function HAL_RCC_GetHCLKFreq()
120 3) each time HAL_RCC_ClockConfig() is called to configure the system clock frequency
121 Note: If you use this function to configure the system clock; then there
122 is no need to call the 2 first functions listed above, since SystemCoreClock
123 variable is updated automatically.
124 */
125 uint32_t SystemCoreClock = 16000000;
126 const uint8_t AHBPrescTable[16] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 7, 8, 9};
127 const uint8_t APBPrescTable[8] = {0, 0, 0, 0, 1, 2, 3, 4};
128
129 /**
130 * @}
131 */
132
133 /** @addtogroup STM32F7xx_System_Private_FunctionPrototypes
134 * @{
135 */
136
137 /**
138 * @}
139 */
140
141 /** @addtogroup STM32F7xx_System_Private_Functions
142 * @{
143 */
144
145 /**
146 * @brief Setup the microcontroller system
147 * Initialize the Embedded Flash Interface, the PLL and update the
148 * SystemFrequency variable.
149 * @param None
150 * @retval None
151 */
152 void SystemInit(void)
153 {
154 /* FPU settings ------------------------------------------------------------*/
155 #if (__FPU_PRESENT == 1) && (__FPU_USED == 1)
156 SCB->CPACR |= ((3UL << 10*2)|(3UL << 11*2)); /* set CP10 and CP11 Full Access */
157 #endif
158 /* Reset the RCC clock configuration to the default reset state ------------*/
159 /* Set HSION bit */
160 RCC->CR |= (uint32_t)0x00000001;
161
162 /* Reset CFGR register */
163 RCC->CFGR = 0x00000000;
164
165 /* Reset HSEON, CSSON and PLLON bits */
166 RCC->CR &= (uint32_t)0xFEF6FFFF;
167
168 /* Reset PLLCFGR register */
169 RCC->PLLCFGR = 0x24003010;
170
171 /* Reset HSEBYP bit */
172 RCC->CR &= (uint32_t)0xFFFBFFFF;
173
174 /* Disable all interrupts */
175 RCC->CIR = 0x00000000;
176
177 /* Configure the Vector Table location add offset address ------------------*/
178 #ifdef VECT_TAB_SRAM
179 SCB->VTOR = RAMDTCM_BASE | VECT_TAB_OFFSET; /* Vector Table Relocation in Internal SRAM */
180 #else
181 SCB->VTOR = FLASH_BASE | VECT_TAB_OFFSET; /* Vector Table Relocation in Internal FLASH */
182 #endif
183 }
184
185 /**
186 * @brief Update SystemCoreClock variable according to Clock Register Values.
187 * The SystemCoreClock variable contains the core clock (HCLK), it can
188 * be used by the user application to setup the SysTick timer or configure
189 * other parameters.
190 *
191 * @note Each time the core clock (HCLK) changes, this function must be called
192 * to update SystemCoreClock variable value. Otherwise, any configuration
193 * based on this variable will be incorrect.
194 *
195 * @note - The system frequency computed by this function is not the real
196 * frequency in the chip. It is calculated based on the predefined
197 * constant and the selected clock source:
198 *
199 * - If SYSCLK source is HSI, SystemCoreClock will contain the HSI_VALUE(*)
200 *
201 * - If SYSCLK source is HSE, SystemCoreClock will contain the HSE_VALUE(**)
202 *
203 * - If SYSCLK source is PLL, SystemCoreClock will contain the HSE_VALUE(**)
204 * or HSI_VALUE(*) multiplied/divided by the PLL factors.
205 *
206 * (*) HSI_VALUE is a constant defined in stm32f7xx_hal_conf.h file (default value
207 * 16 MHz) but the real value may vary depending on the variations
208 * in voltage and temperature.
209 *
210 * (**) HSE_VALUE is a constant defined in stm32f7xx_hal_conf.h file (default value
211 * 25 MHz), user has to ensure that HSE_VALUE is same as the real
212 * frequency of the crystal used. Otherwise, this function may
213 * have wrong result.
214 *
215 * - The result of this function could be not correct when using fractional
216 * value for HSE crystal.
217 *
218 * @param None
219 * @retval None
220 */
221 void SystemCoreClockUpdate(void)
222 {
223 uint32_t tmp = 0, pllvco = 0, pllp = 2, pllsource = 0, pllm = 2;
224
225 /* Get SYSCLK source -------------------------------------------------------*/
226 tmp = RCC->CFGR & RCC_CFGR_SWS;
227
228 switch (tmp)
229 {
230 case 0x00: /* HSI used as system clock source */
231 SystemCoreClock = HSI_VALUE;
232 break;
233 case 0x04: /* HSE used as system clock source */
234 SystemCoreClock = HSE_VALUE;
235 break;
236 case 0x08: /* PLL used as system clock source */
237
238 /* PLL_VCO = (HSE_VALUE or HSI_VALUE / PLL_M) * PLL_N
239 SYSCLK = PLL_VCO / PLL_P
240 */
241 pllsource = (RCC->PLLCFGR & RCC_PLLCFGR_PLLSRC) >> 22;
242 pllm = RCC->PLLCFGR & RCC_PLLCFGR_PLLM;
243
244 if (pllsource != 0)
245 {
246 /* HSE used as PLL clock source */
247 pllvco = (HSE_VALUE / pllm) * ((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> 6);
248 }
249 else
250 {
251 /* HSI used as PLL clock source */
252 pllvco = (HSI_VALUE / pllm) * ((RCC->PLLCFGR & RCC_PLLCFGR_PLLN) >> 6);
253 }
254
255 pllp = (((RCC->PLLCFGR & RCC_PLLCFGR_PLLP) >>16) + 1 ) *2;
256 SystemCoreClock = pllvco/pllp;
257 break;
258 default:
259 SystemCoreClock = HSI_VALUE;
260 break;
261 }
262 /* Compute HCLK frequency --------------------------------------------------*/
263 /* Get HCLK prescaler */
264 tmp = AHBPrescTable[((RCC->CFGR & RCC_CFGR_HPRE) >> 4)];
265 /* HCLK frequency */
266 SystemCoreClock >>= tmp;
267 }
268
269 /**
270 * @}
271 */
272
273 /**
274 * @}
275 */
276
277 /**
278 * @}
279 */
280 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/