source: asp3_wo_tecs/trunk/arch/arm_m_gcc/stm32f4xx_stm32cube/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c@ 303

Last change on this file since 303 was 303, checked in by ertl-honda, 7 years ago

nucleo_f401re依存部の追加

File size: 18.7 KB
Line 
1/**
2 ******************************************************************************
3 * @file stm32f4xx_hal_cortex.c
4 * @author MCD Application Team
5 * @version V1.4.1
6 * @date 09-October-2015
7 * @brief CORTEX HAL module driver.
8 * This file provides firmware functions to manage the following
9 * functionalities of the CORTEX:
10 * + Initialization and de-initialization functions
11 * + Peripheral Control functions
12 *
13 @verbatim
14 ==============================================================================
15 ##### How to use this driver #####
16 ==============================================================================
17
18 [..]
19 *** How to configure Interrupts using CORTEX HAL driver ***
20 ===========================================================
21 [..]
22 This section provides functions allowing to configure the NVIC interrupts (IRQ).
23 The Cortex-M4 exceptions are managed by CMSIS functions.
24
25 (#) Configure the NVIC Priority Grouping using HAL_NVIC_SetPriorityGrouping()
26 function according to the following table.
27 (#) Configure the priority of the selected IRQ Channels using HAL_NVIC_SetPriority().
28 (#) Enable the selected IRQ Channels using HAL_NVIC_EnableIRQ().
29 (#) please refer to programing manual for details in how to configure priority.
30
31 -@- When the NVIC_PRIORITYGROUP_0 is selected, IRQ preemption is no more possible.
32 The pending IRQ priority will be managed only by the sub priority.
33
34 -@- IRQ priority order (sorted by highest to lowest priority):
35 (+@) Lowest preemption priority
36 (+@) Lowest sub priority
37 (+@) Lowest hardware priority (IRQ number)
38
39 [..]
40 *** How to configure Systick using CORTEX HAL driver ***
41 ========================================================
42 [..]
43 Setup SysTick Timer for time base.
44
45 (+) The HAL_SYSTICK_Config() function calls the SysTick_Config() function which
46 is a CMSIS function that:
47 (++) Configures the SysTick Reload register with value passed as function parameter.
48 (++) Configures the SysTick IRQ priority to the lowest value (0x0F).
49 (++) Resets the SysTick Counter register.
50 (++) Configures the SysTick Counter clock source to be Core Clock Source (HCLK).
51 (++) Enables the SysTick Interrupt.
52 (++) Starts the SysTick Counter.
53
54 (+) You can change the SysTick Clock source to be HCLK_Div8 by calling the macro
55 __HAL_CORTEX_SYSTICKCLK_CONFIG(SYSTICK_CLKSOURCE_HCLK_DIV8) just after the
56 HAL_SYSTICK_Config() function call. The __HAL_CORTEX_SYSTICKCLK_CONFIG() macro is defined
57 inside the stm32f4xx_hal_cortex.h file.
58
59 (+) You can change the SysTick IRQ priority by calling the
60 HAL_NVIC_SetPriority(SysTick_IRQn,...) function just after the HAL_SYSTICK_Config() function
61 call. The HAL_NVIC_SetPriority() call the NVIC_SetPriority() function which is a CMSIS function.
62
63 (+) To adjust the SysTick time base, use the following formula:
64
65 Reload Value = SysTick Counter Clock (Hz) x Desired Time base (s)
66 (++) Reload Value is the parameter to be passed for HAL_SYSTICK_Config() function
67 (++) Reload Value should not exceed 0xFFFFFF
68
69 @endverbatim
70 ******************************************************************************
71 * @attention
72 *
73 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
74 *
75 * Redistribution and use in source and binary forms, with or without modification,
76 * are permitted provided that the following conditions are met:
77 * 1. Redistributions of source code must retain the above copyright notice,
78 * this list of conditions and the following disclaimer.
79 * 2. Redistributions in binary form must reproduce the above copyright notice,
80 * this list of conditions and the following disclaimer in the documentation
81 * and/or other materials provided with the distribution.
82 * 3. Neither the name of STMicroelectronics nor the names of its contributors
83 * may be used to endorse or promote products derived from this software
84 * without specific prior written permission.
85 *
86 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
87 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
88 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
89 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
90 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
91 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
92 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
93 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
94 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
95 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
96 *
97 ******************************************************************************
98 */
99
100/* Includes ------------------------------------------------------------------*/
101#include "stm32f4xx_hal.h"
102
103/** @addtogroup STM32F4xx_HAL_Driver
104 * @{
105 */
106
107/** @defgroup CORTEX CORTEX
108 * @brief CORTEX HAL module driver
109 * @{
110 */
111
112#ifdef HAL_CORTEX_MODULE_ENABLED
113
114/* Private types -------------------------------------------------------------*/
115/* Private variables ---------------------------------------------------------*/
116/* Private constants ---------------------------------------------------------*/
117/* Private macros ------------------------------------------------------------*/
118/* Private functions ---------------------------------------------------------*/
119/* Exported functions --------------------------------------------------------*/
120
121/** @defgroup CORTEX_Exported_Functions CORTEX Exported Functions
122 * @{
123 */
124
125
126/** @defgroup CORTEX_Exported_Functions_Group1 Initialization and de-initialization functions
127 * @brief Initialization and Configuration functions
128 *
129@verbatim
130 ==============================================================================
131 ##### Initialization and de-initialization functions #####
132 ==============================================================================
133 [..]
134 This section provides the CORTEX HAL driver functions allowing to configure Interrupts
135 Systick functionalities
136
137@endverbatim
138 * @{
139 */
140
141
142/**
143 * @brief Sets the priority grouping field (preemption priority and subpriority)
144 * using the required unlock sequence.
145 * @param PriorityGroup: The priority grouping bits length.
146 * This parameter can be one of the following values:
147 * @arg NVIC_PRIORITYGROUP_0: 0 bits for preemption priority
148 * 4 bits for subpriority
149 * @arg NVIC_PRIORITYGROUP_1: 1 bits for preemption priority
150 * 3 bits for subpriority
151 * @arg NVIC_PRIORITYGROUP_2: 2 bits for preemption priority
152 * 2 bits for subpriority
153 * @arg NVIC_PRIORITYGROUP_3: 3 bits for preemption priority
154 * 1 bits for subpriority
155 * @arg NVIC_PRIORITYGROUP_4: 4 bits for preemption priority
156 * 0 bits for subpriority
157 * @note When the NVIC_PriorityGroup_0 is selected, IRQ preemption is no more possible.
158 * The pending IRQ priority will be managed only by the subpriority.
159 * @retval None
160 */
161void HAL_NVIC_SetPriorityGrouping(uint32_t PriorityGroup)
162{
163 /* Check the parameters */
164 assert_param(IS_NVIC_PRIORITY_GROUP(PriorityGroup));
165
166 /* Set the PRIGROUP[10:8] bits according to the PriorityGroup parameter value */
167 NVIC_SetPriorityGrouping(PriorityGroup);
168}
169
170/**
171 * @brief Sets the priority of an interrupt.
172 * @param IRQn: External interrupt number.
173 * This parameter can be an enumerator of IRQn_Type enumeration
174 * (For the complete STM32 Devices IRQ Channels list, please refer to the appropriate CMSIS device file (stm32f4xxxx.h))
175 * @param PreemptPriority: The preemption priority for the IRQn channel.
176 * This parameter can be a value between 0 and 15
177 * A lower priority value indicates a higher priority
178 * @param SubPriority: the subpriority level for the IRQ channel.
179 * This parameter can be a value between 0 and 15
180 * A lower priority value indicates a higher priority.
181 * @retval None
182 */
183void HAL_NVIC_SetPriority(IRQn_Type IRQn, uint32_t PreemptPriority, uint32_t SubPriority)
184{
185 uint32_t prioritygroup = 0x00;
186
187 /* Check the parameters */
188 assert_param(IS_NVIC_SUB_PRIORITY(SubPriority));
189 assert_param(IS_NVIC_PREEMPTION_PRIORITY(PreemptPriority));
190
191 prioritygroup = NVIC_GetPriorityGrouping();
192
193 NVIC_SetPriority(IRQn, NVIC_EncodePriority(prioritygroup, PreemptPriority, SubPriority));
194}
195
196/**
197 * @brief Enables a device specific interrupt in the NVIC interrupt controller.
198 * @note To configure interrupts priority correctly, the NVIC_PriorityGroupConfig()
199 * function should be called before.
200 * @param IRQn External interrupt number.
201 * This parameter can be an enumerator of IRQn_Type enumeration
202 * (For the complete STM32 Devices IRQ Channels list, please refer to the appropriate CMSIS device file (stm32f4xxxx.h))
203 * @retval None
204 */
205void HAL_NVIC_EnableIRQ(IRQn_Type IRQn)
206{
207 /* Check the parameters */
208 assert_param(IS_NVIC_DEVICE_IRQ(IRQn));
209
210 /* Enable interrupt */
211 NVIC_EnableIRQ(IRQn);
212}
213
214/**
215 * @brief Disables a device specific interrupt in the NVIC interrupt controller.
216 * @param IRQn External interrupt number.
217 * This parameter can be an enumerator of IRQn_Type enumeration
218 * (For the complete STM32 Devices IRQ Channels list, please refer to the appropriate CMSIS device file (stm32f4xxxx.h))
219 * @retval None
220 */
221void HAL_NVIC_DisableIRQ(IRQn_Type IRQn)
222{
223 /* Check the parameters */
224 assert_param(IS_NVIC_DEVICE_IRQ(IRQn));
225
226 /* Disable interrupt */
227 NVIC_DisableIRQ(IRQn);
228}
229
230/**
231 * @brief Initiates a system reset request to reset the MCU.
232 * @retval None
233 */
234void HAL_NVIC_SystemReset(void)
235{
236 /* System Reset */
237 NVIC_SystemReset();
238}
239
240/**
241 * @brief Initializes the System Timer and its interrupt, and starts the System Tick Timer.
242 * Counter is in free running mode to generate periodic interrupts.
243 * @param TicksNumb: Specifies the ticks Number of ticks between two interrupts.
244 * @retval status: - 0 Function succeeded.
245 * - 1 Function failed.
246 */
247uint32_t HAL_SYSTICK_Config(uint32_t TicksNumb)
248{
249 return SysTick_Config(TicksNumb);
250}
251/**
252 * @}
253 */
254
255/** @defgroup CORTEX_Exported_Functions_Group2 Peripheral Control functions
256 * @brief Cortex control functions
257 *
258@verbatim
259 ==============================================================================
260 ##### Peripheral Control functions #####
261 ==============================================================================
262 [..]
263 This subsection provides a set of functions allowing to control the CORTEX
264 (NVIC, SYSTICK, MPU) functionalities.
265
266
267@endverbatim
268 * @{
269 */
270
271#if (__MPU_PRESENT == 1)
272/**
273 * @brief Initializes and configures the Region and the memory to be protected.
274 * @param MPU_Init: Pointer to a MPU_Region_InitTypeDef structure that contains
275 * the initialization and configuration information.
276 * @retval None
277 */
278void HAL_MPU_ConfigRegion(MPU_Region_InitTypeDef *MPU_Init)
279{
280 /* Check the parameters */
281 assert_param(IS_MPU_REGION_NUMBER(MPU_Init->Number));
282 assert_param(IS_MPU_REGION_ENABLE(MPU_Init->Enable));
283
284 /* Set the Region number */
285 MPU->RNR = MPU_Init->Number;
286
287 if ((MPU_Init->Enable) != RESET)
288 {
289 /* Check the parameters */
290 assert_param(IS_MPU_INSTRUCTION_ACCESS(MPU_Init->DisableExec));
291 assert_param(IS_MPU_REGION_PERMISSION_ATTRIBUTE(MPU_Init->AccessPermission));
292 assert_param(IS_MPU_TEX_LEVEL(MPU_Init->TypeExtField));
293 assert_param(IS_MPU_ACCESS_SHAREABLE(MPU_Init->IsShareable));
294 assert_param(IS_MPU_ACCESS_CACHEABLE(MPU_Init->IsCacheable));
295 assert_param(IS_MPU_ACCESS_BUFFERABLE(MPU_Init->IsBufferable));
296 assert_param(IS_MPU_SUB_REGION_DISABLE(MPU_Init->SubRegionDisable));
297 assert_param(IS_MPU_REGION_SIZE(MPU_Init->Size));
298
299 MPU->RBAR = MPU_Init->BaseAddress;
300 MPU->RASR = ((uint32_t)MPU_Init->DisableExec << MPU_RASR_XN_Pos) |
301 ((uint32_t)MPU_Init->AccessPermission << MPU_RASR_AP_Pos) |
302 ((uint32_t)MPU_Init->TypeExtField << MPU_RASR_TEX_Pos) |
303 ((uint32_t)MPU_Init->IsShareable << MPU_RASR_S_Pos) |
304 ((uint32_t)MPU_Init->IsCacheable << MPU_RASR_C_Pos) |
305 ((uint32_t)MPU_Init->IsBufferable << MPU_RASR_B_Pos) |
306 ((uint32_t)MPU_Init->SubRegionDisable << MPU_RASR_SRD_Pos) |
307 ((uint32_t)MPU_Init->Size << MPU_RASR_SIZE_Pos) |
308 ((uint32_t)MPU_Init->Enable << MPU_RASR_ENABLE_Pos);
309 }
310 else
311 {
312 MPU->RBAR = 0x00;
313 MPU->RASR = 0x00;
314 }
315}
316#endif /* __MPU_PRESENT */
317
318/**
319 * @brief Gets the priority grouping field from the NVIC Interrupt Controller.
320 * @retval Priority grouping field (SCB->AIRCR [10:8] PRIGROUP field)
321 */
322uint32_t HAL_NVIC_GetPriorityGrouping(void)
323{
324 /* Get the PRIGROUP[10:8] field value */
325 return NVIC_GetPriorityGrouping();
326}
327
328/**
329 * @brief Gets the priority of an interrupt.
330 * @param IRQn: External interrupt number.
331 * This parameter can be an enumerator of IRQn_Type enumeration
332 * (For the complete STM32 Devices IRQ Channels list, please refer to the appropriate CMSIS device file (stm32f4xxxx.h))
333 * @param PriorityGroup: the priority grouping bits length.
334 * This parameter can be one of the following values:
335 * @arg NVIC_PRIORITYGROUP_0: 0 bits for preemption priority
336 * 4 bits for subpriority
337 * @arg NVIC_PRIORITYGROUP_1: 1 bits for preemption priority
338 * 3 bits for subpriority
339 * @arg NVIC_PRIORITYGROUP_2: 2 bits for preemption priority
340 * 2 bits for subpriority
341 * @arg NVIC_PRIORITYGROUP_3: 3 bits for preemption priority
342 * 1 bits for subpriority
343 * @arg NVIC_PRIORITYGROUP_4: 4 bits for preemption priority
344 * 0 bits for subpriority
345 * @param pPreemptPriority: Pointer on the Preemptive priority value (starting from 0).
346 * @param pSubPriority: Pointer on the Subpriority value (starting from 0).
347 * @retval None
348 */
349void HAL_NVIC_GetPriority(IRQn_Type IRQn, uint32_t PriorityGroup, uint32_t *pPreemptPriority, uint32_t *pSubPriority)
350{
351 /* Check the parameters */
352 assert_param(IS_NVIC_PRIORITY_GROUP(PriorityGroup));
353 /* Get priority for Cortex-M system or device specific interrupts */
354 NVIC_DecodePriority(NVIC_GetPriority(IRQn), PriorityGroup, pPreemptPriority, pSubPriority);
355}
356
357/**
358 * @brief Sets Pending bit of an external interrupt.
359 * @param IRQn External interrupt number
360 * This parameter can be an enumerator of IRQn_Type enumeration
361 * (For the complete STM32 Devices IRQ Channels list, please refer to the appropriate CMSIS device file (stm32f4xxxx.h))
362 * @retval None
363 */
364void HAL_NVIC_SetPendingIRQ(IRQn_Type IRQn)
365{
366 /* Check the parameters */
367 assert_param(IS_NVIC_DEVICE_IRQ(IRQn));
368
369 /* Set interrupt pending */
370 NVIC_SetPendingIRQ(IRQn);
371}
372
373/**
374 * @brief Gets Pending Interrupt (reads the pending register in the NVIC
375 * and returns the pending bit for the specified interrupt).
376 * @param IRQn External interrupt number.
377 * This parameter can be an enumerator of IRQn_Type enumeration
378 * (For the complete STM32 Devices IRQ Channels list, please refer to the appropriate CMSIS device file (stm32f4xxxx.h))
379 * @retval status: - 0 Interrupt status is not pending.
380 * - 1 Interrupt status is pending.
381 */
382uint32_t HAL_NVIC_GetPendingIRQ(IRQn_Type IRQn)
383{
384 /* Check the parameters */
385 assert_param(IS_NVIC_DEVICE_IRQ(IRQn));
386
387 /* Return 1 if pending else 0 */
388 return NVIC_GetPendingIRQ(IRQn);
389}
390
391/**
392 * @brief Clears the pending bit of an external interrupt.
393 * @param IRQn External interrupt number.
394 * This parameter can be an enumerator of IRQn_Type enumeration
395 * (For the complete STM32 Devices IRQ Channels list, please refer to the appropriate CMSIS device file (stm32f4xxxx.h))
396 * @retval None
397 */
398void HAL_NVIC_ClearPendingIRQ(IRQn_Type IRQn)
399{
400 /* Check the parameters */
401 assert_param(IS_NVIC_DEVICE_IRQ(IRQn));
402
403 /* Clear pending interrupt */
404 NVIC_ClearPendingIRQ(IRQn);
405}
406
407/**
408 * @brief Gets active interrupt ( reads the active register in NVIC and returns the active bit).
409 * @param IRQn External interrupt number
410 * This parameter can be an enumerator of IRQn_Type enumeration
411 * (For the complete STM32 Devices IRQ Channels list, please refer to the appropriate CMSIS device file (stm32f4xxxx.h))
412 * @retval status: - 0 Interrupt status is not pending.
413 * - 1 Interrupt status is pending.
414 */
415uint32_t HAL_NVIC_GetActive(IRQn_Type IRQn)
416{
417 /* Check the parameters */
418 assert_param(IS_NVIC_DEVICE_IRQ(IRQn));
419
420 /* Return 1 if active else 0 */
421 return NVIC_GetActive(IRQn);
422}
423
424/**
425 * @brief Configures the SysTick clock source.
426 * @param CLKSource: specifies the SysTick clock source.
427 * This parameter can be one of the following values:
428 * @arg SYSTICK_CLKSOURCE_HCLK_DIV8: AHB clock divided by 8 selected as SysTick clock source.
429 * @arg SYSTICK_CLKSOURCE_HCLK: AHB clock selected as SysTick clock source.
430 * @retval None
431 */
432void HAL_SYSTICK_CLKSourceConfig(uint32_t CLKSource)
433{
434 /* Check the parameters */
435 assert_param(IS_SYSTICK_CLK_SOURCE(CLKSource));
436 if (CLKSource == SYSTICK_CLKSOURCE_HCLK)
437 {
438 SysTick->CTRL |= SYSTICK_CLKSOURCE_HCLK;
439 }
440 else
441 {
442 SysTick->CTRL &= ~SYSTICK_CLKSOURCE_HCLK;
443 }
444}
445
446/**
447 * @brief This function handles SYSTICK interrupt request.
448 * @retval None
449 */
450void HAL_SYSTICK_IRQHandler(void)
451{
452 HAL_SYSTICK_Callback();
453}
454
455/**
456 * @brief SYSTICK callback.
457 * @retval None
458 */
459__weak void HAL_SYSTICK_Callback(void)
460{
461 /* NOTE : This function Should not be modified, when the callback is needed,
462 the HAL_SYSTICK_Callback could be implemented in the user file
463 */
464}
465
466/**
467 * @}
468 */
469
470/**
471 * @}
472 */
473
474#endif /* HAL_CORTEX_MODULE_ENABLED */
475/**
476 * @}
477 */
478
479/**
480 * @}
481 */
482
483/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
Note: See TracBrowser for help on using the repository browser.