1 /**
2   ******************************************************************************
3   * @file    stm32u5xx_hal_iwdg.c
4   * @author  MCD Application Team
5   * @brief   IWDG HAL module driver.
6   *          This file provides firmware functions to manage the following
7   *          functionalities of the Independent Watchdog (IWDG) peripheral:
8   *           + Initialization and Start functions
9   *           + IO operation functions
10   *
11   ******************************************************************************
12   * @attention
13   *
14   * Copyright (c) 2021 STMicroelectronics.
15   * All rights reserved.
16   *
17   * This software is licensed under terms that can be found in the LICENSE file
18   * in the root directory of this software component.
19   * If no LICENSE file comes with this software, it is provided AS-IS.
20   *
21   ******************************************************************************
22   @verbatim
23   ==============================================================================
24                     ##### IWDG Generic features #####
25   ==============================================================================
26   [..]
27     (+) The IWDG can be started by either software or hardware (configurable
28         through option byte).
29 
30     (+) The IWDG is clocked by the Low-Speed Internal clock (LSI) and thus stays
31         active even if the main clock fails.
32 
33     (+) Once the IWDG is started, the LSI is forced ON and both cannot be
34         disabled. The counter starts counting down from the reset value (0xFFF).
35         When it reaches the end of count value (0x000) a reset signal is
36         generated (IWDG reset).
37 
38     (+) Whenever the key value 0x0000 AAAA is written in the IWDG_KR register,
39         the IWDG_RLR value is reloaded into the counter and the watchdog reset
40         is prevented.
41 
42     (+) The IWDG is implemented in the VDD voltage domain that is still functional
43         in STOP and STANDBY mode (IWDG reset can wake up the CPU from STANDBY).
44         IWDGRST flag in RCC_CSR register can be used to inform when an IWDG
45         reset occurs.
46 
47     (+) Debug mode: When the microcontroller enters debug mode (core halted),
48         the IWDG counter either continues to work normally or stops, depending
49         on DBG_IWDG_STOP configuration bit in DBG module, accessible through
50         __HAL_DBGMCU_FREEZE_IWDG() and __HAL_DBGMCU_UNFREEZE_IWDG() macros.
51 
52     [..] Min-max timeout value @32KHz (LSI): ~125us / ~131.04s
53          The IWDG timeout may vary due to LSI clock frequency dispersion.
54          STM32U5xx devices provide the capability to measure the LSI clock
55          frequency (LSI clock is internally connected to TIM16 CH1 input capture).
56          The measured value can be used to have an IWDG timeout with an
57          acceptable accuracy.
58 
59     [..] Default timeout value (necessary for IWDG_SR status register update):
60          Constant LSI_VALUE is defined based on the nominal LSI clock frequency.
61          This frequency being subject to variations as mentioned above, the
62          default timeout value (defined through constant HAL_IWDG_DEFAULT_TIMEOUT
63          below) may become too short or too long.
64          In such cases, this default timeout value can be tuned by redefining
65          the constant LSI_VALUE at user-application level (based, for instance,
66          on the measured LSI clock frequency as explained above).
67 
68                      ##### How to use this driver #####
69   ==============================================================================
70   [..]
71     (#) Register callback to treat Iwdg interrupt and MspInit using HAL_IWDG_RegisterCallback().
72       (++) Provide exiting handle as first parameter.
73       (++) Provide which callback will be registered using one value from
74            HAL_IWDG_CallbackIDTypeDef.
75       (++) Provide callback function pointer.
76 
77     (#) Use IWDG using HAL_IWDG_Init() function to :
78       (++) Enable instance by writing Start keyword in IWDG_KEY register. LSI
79            clock is forced ON and IWDG counter starts counting down.
80       (++) Enable write access to configuration registers:
81           IWDG_PR, IWDG_RLR, IWDG_WINR and EWCR.
82       (++) Configure the IWDG prescaler and counter reload value. This reload
83            value will be loaded in the IWDG counter each time the watchdog is
84            reloaded, then the IWDG will start counting down from this value.
85       (++) Depending on window parameter:
86         (+++) If Window Init parameter is same as Window register value,
87              nothing more is done but reload counter value in order to exit
88              function with exact time base.
89         (+++) Else modify Window register. This will automatically reload
90              watchdog counter.
91       (++) Depending on Early Wakeup Interrupt parameter:
92         (+++) If EWI is set to disable, comparator is set to 0, interrupt is
93              disable & flag is clear.
94         (+++) Else modify EWCR register, setting comparator value, enable
95              interrupt & clear flag.
96       (++) Wait for status flags to be reset.
97 
98     (#) Then the application program must refresh the IWDG counter at regular
99         intervals during normal operation to prevent an MCU reset, using
100         HAL_IWDG_Refresh() function.
101 
102      *** IWDG HAL driver macros list ***
103      ====================================
104      [..]
105        Below the list of most used macros in IWDG HAL driver:
106       (+) __HAL_IWDG_START: Enable the IWDG peripheral
107       (+) __HAL_IWDG_RELOAD_COUNTER: Reloads IWDG counter with value defined in
108           the reload register
109 
110   @endverbatim
111   */
112 
113 /* Includes ------------------------------------------------------------------*/
114 #include "stm32u5xx_hal.h"
115 
116 /** @addtogroup STM32U5xx_HAL_Driver
117   * @{
118   */
119 
120 #ifdef HAL_IWDG_MODULE_ENABLED
121 /** @addtogroup IWDG
122   * @brief IWDG HAL module driver.
123   * @{
124   */
125 
126 /* Private typedef -----------------------------------------------------------*/
127 /* Private define ------------------------------------------------------------*/
128 /** @defgroup IWDG_Private_Defines IWDG Private Defines
129   * @{
130   */
131 /* Status register needs up to 5 LSI clock periods to be updated. However a
132    synchronisation is added on prescaled LSI clock rising edge, so we only
133    consider a highest prescaler cycle.
134    The timeout value is calculated using the highest prescaler (1024) and
135    the LSI_VALUE constant. The value of this constant can be changed by the user
136    to take into account possible LSI clock period variations.
137    The timeout value is multiplied by 1000 to be converted in milliseconds.
138    LSI startup time is also considered here by adding LSI_STARTUP_TIME
139    converted in milliseconds. */
140 #define HAL_IWDG_DEFAULT_TIMEOUT        (((1UL * 1024UL * 1000UL) / LSI_VALUE) + ((LSI_STARTUP_TIME / 1000UL) + 1UL))
141 #define IWDG_KERNEL_UPDATE_FLAGS        (IWDG_SR_EWU | IWDG_SR_WVU | IWDG_SR_RVU | IWDG_SR_PVU)
142 /**
143   * @}
144   */
145 
146 /* Private macro -------------------------------------------------------------*/
147 /* Private variables ---------------------------------------------------------*/
148 /* Private function prototypes -----------------------------------------------*/
149 /* Exported functions --------------------------------------------------------*/
150 
151 /** @addtogroup IWDG_Exported_Functions
152   * @{
153   */
154 
155 /** @addtogroup IWDG_Exported_Functions_Group1
156   *  @brief    Initialization and Start functions.
157   *
158 @verbatim
159  ===============================================================================
160           ##### Initialization and Start functions #####
161  ===============================================================================
162  [..]  This section provides functions allowing to:
163       (+) Initialize the IWDG according to the specified parameters in the
164           IWDG_InitTypeDef of associated handle.
165       (+) Manage Window option.
166       (+) Once initialization is performed in HAL_IWDG_Init function, Watchdog
167           is reloaded in order to exit function with correct time base.
168 
169 @endverbatim
170   * @{
171   */
172 
173 /**
174   * @brief  Initialize the IWDG according to the specified parameters in the
175   *         IWDG_InitTypeDef and start watchdog. Before exiting function,
176   *         watchdog is refreshed in order to have correct time base.
177   * @param  hiwdg  pointer to a IWDG_HandleTypeDef structure that contains
178   *                the configuration information for the specified IWDG module.
179   * @retval HAL status
180   */
HAL_IWDG_Init(IWDG_HandleTypeDef * hiwdg)181 HAL_StatusTypeDef HAL_IWDG_Init(IWDG_HandleTypeDef *hiwdg)
182 {
183   uint32_t tickstart;
184 
185   /* Check the IWDG handle allocation */
186   if (hiwdg == NULL)
187   {
188     return HAL_ERROR;
189   }
190 
191   /* Check the parameters */
192   assert_param(IS_IWDG_ALL_INSTANCE(hiwdg->Instance));
193   assert_param(IS_IWDG_PRESCALER(hiwdg->Init.Prescaler));
194   assert_param(IS_IWDG_RELOAD(hiwdg->Init.Reload));
195   assert_param(IS_IWDG_WINDOW(hiwdg->Init.Window));
196   assert_param(IS_IWDG_EWI(hiwdg->Init.EWI));
197 
198 #if (USE_HAL_IWDG_REGISTER_CALLBACKS == 1)
199   /* Reset Callback pointers */
200   if (hiwdg->EwiCallback == NULL)
201   {
202     hiwdg->EwiCallback = HAL_IWDG_EarlyWakeupCallback;
203   }
204   if (hiwdg->MspInitCallback == NULL)
205   {
206     hiwdg->MspInitCallback = HAL_IWDG_MspInit;
207   }
208 
209   /* Init the low level hardware */
210   hiwdg->MspInitCallback(hiwdg);
211 #else
212   /* Init the low level hardware */
213   HAL_IWDG_MspInit(hiwdg);
214 #endif /* USE_HAL_IWDG_REGISTER_CALLBACKS */
215 
216   /* Enable IWDG. LSI is turned on automatically */
217   __HAL_IWDG_START(hiwdg);
218 
219   /* Enable write access to IWDG_PR, IWDG_RLR, IWDG_WINR and EWCR registers by writing
220   0x5555 in KR */
221   IWDG_ENABLE_WRITE_ACCESS(hiwdg);
222 
223   /* Write to IWDG registers the Prescaler & Reload values to work with */
224   hiwdg->Instance->PR = hiwdg->Init.Prescaler;
225   hiwdg->Instance->RLR = hiwdg->Init.Reload;
226 
227   if (hiwdg->Init.EWI == IWDG_EWI_DISABLE)
228   {
229     /* EWI comparator value equal 0, disable the early wakeup interrupt
230      * acknowledge the early wakeup interrupt in any cases. it clears the EWIF flag in SR register
231      * Set Watchdog Early Wakeup Comparator to 0x00 */
232     hiwdg->Instance->EWCR = IWDG_EWCR_EWIC;
233   }
234   else
235   {
236     /* EWI comparator value different from 0, enable the early wakeup interrupt,
237      * acknowledge the early wakeup interrupt in any cases. it clears the EWIF flag in SR register
238      * Set Watchdog Early Wakeup Comparator value */
239     hiwdg->Instance->EWCR = IWDG_EWCR_EWIE | IWDG_EWCR_EWIC | hiwdg->Init.EWI;
240   }
241 
242   /* Check pending flag, if previous update not done, return timeout */
243   tickstart = HAL_GetTick();
244 
245   /* Wait for register to be updated */
246   while ((hiwdg->Instance->SR & IWDG_KERNEL_UPDATE_FLAGS) != 0x00u)
247   {
248     if ((HAL_GetTick() - tickstart) > HAL_IWDG_DEFAULT_TIMEOUT)
249     {
250       if ((hiwdg->Instance->SR & IWDG_KERNEL_UPDATE_FLAGS) != 0x00u)
251       {
252         return HAL_TIMEOUT;
253       }
254     }
255   }
256 
257   /* If window parameter is different than current value, modify window
258   register */
259   if (hiwdg->Instance->WINR != hiwdg->Init.Window)
260   {
261     /* Write to IWDG WINR the IWDG_Window value to compare with. In any case,
262     even if window feature is disabled, Watchdog will be reloaded by writing
263     windows register */
264     hiwdg->Instance->WINR = hiwdg->Init.Window;
265   }
266   else
267   {
268     /* Reload IWDG counter with value defined in the reload register */
269     __HAL_IWDG_RELOAD_COUNTER(hiwdg);
270   }
271 
272   /* Return function status */
273   return HAL_OK;
274 }
275 
276 
277 /**
278   * @brief  Initialize the IWDG MSP.
279   * @param  hiwdg  pointer to a IWDG_HandleTypeDef structure that contains
280   *                the configuration information for the specified IWDG module.
281   * @note   When rewriting this function in user file, mechanism may be added
282   *         to avoid multiple initialize when HAL_IWDG_Init function is called
283   *         again to change parameters.
284   * @retval None
285   */
HAL_IWDG_MspInit(IWDG_HandleTypeDef * hiwdg)286 __weak void HAL_IWDG_MspInit(IWDG_HandleTypeDef *hiwdg)
287 {
288   /* Prevent unused argument(s) compilation warning */
289   UNUSED(hiwdg);
290 
291   /* NOTE: This function should not be modified, when the callback is needed,
292            the HAL_IWDG_MspInit could be implemented in the user file
293    */
294 }
295 
296 
297 #if (USE_HAL_IWDG_REGISTER_CALLBACKS == 1)
298 /**
299   * @brief  Register a User IWDG Callback
300   *         To be used instead of the weak (surcharged) predefined callback
301   * @param  hiwdg IWDG handle
302   * @param  CallbackID ID of the callback to be registered
303   *         This parameter can be one of the following values:
304   *           @arg @ref HAL_IWDG_EWI_CB_ID Early WakeUp Interrupt Callback ID
305   *           @arg @ref HAL_IWDG_MSPINIT_CB_ID MspInit callback ID
306   * @param  pCallback pointer to the Callback function
307   * @retval status
308   */
HAL_IWDG_RegisterCallback(IWDG_HandleTypeDef * hiwdg,HAL_IWDG_CallbackIDTypeDef CallbackID,pIWDG_CallbackTypeDef pCallback)309 HAL_StatusTypeDef HAL_IWDG_RegisterCallback(IWDG_HandleTypeDef *hiwdg, HAL_IWDG_CallbackIDTypeDef CallbackID,
310                                             pIWDG_CallbackTypeDef pCallback)
311 {
312   HAL_StatusTypeDef status = HAL_OK;
313 
314   if (pCallback == NULL)
315   {
316     status = HAL_ERROR;
317   }
318   else
319   {
320     switch (CallbackID)
321     {
322       case HAL_IWDG_EWI_CB_ID:
323         hiwdg->EwiCallback = pCallback;
324         break;
325       case HAL_IWDG_MSPINIT_CB_ID:
326         hiwdg->MspInitCallback = pCallback;
327         break;
328 
329       default:
330         status = HAL_ERROR;
331         break;
332     }
333   }
334 
335   return status;
336 }
337 
338 
339 /**
340   * @brief  Unregister a IWDG Callback
341   *         IWDG Callback is redirected to the weak (surcharged) predefined callback
342   * @param  hiwdg IWDG handle
343   * @param  CallbackID ID of the callback to be registered
344   *         This parameter can be one of the following values:
345   *           @arg @ref HAL_IWDG_EWI_CB_ID Early WakeUp Interrupt Callback ID
346   *           @arg @ref HAL_IWDG_MSPINIT_CB_ID MspInit callback ID
347   * @retval status
348   */
HAL_IWDG_UnRegisterCallback(IWDG_HandleTypeDef * hiwdg,HAL_IWDG_CallbackIDTypeDef CallbackID)349 HAL_StatusTypeDef HAL_IWDG_UnRegisterCallback(IWDG_HandleTypeDef *hiwdg, HAL_IWDG_CallbackIDTypeDef CallbackID)
350 {
351   HAL_StatusTypeDef status = HAL_OK;
352 
353   switch (CallbackID)
354   {
355     case HAL_IWDG_EWI_CB_ID:
356       hiwdg->EwiCallback = HAL_IWDG_EarlyWakeupCallback;
357       break;
358     case HAL_IWDG_MSPINIT_CB_ID:
359       hiwdg->MspInitCallback = HAL_IWDG_MspInit;
360       break;
361 
362     default:
363       status = HAL_ERROR;
364       break;
365   }
366 
367   return status;
368 }
369 #endif /* USE_HAL_IWDG_REGISTER_CALLBACKS */
370 
371 
372 /**
373   * @}
374   */
375 
376 
377 /** @addtogroup IWDG_Exported_Functions_Group2
378   *  @brief   IO operation functions
379   *
380 @verbatim
381  ===============================================================================
382                       ##### IO operation functions #####
383  ===============================================================================
384  [..]  This section provides functions allowing to:
385       (+) Refresh the IWDG.
386 
387 @endverbatim
388   * @{
389   */
390 
391 /**
392   * @brief  Refresh the IWDG.
393   * @param  hiwdg  pointer to a IWDG_HandleTypeDef structure that contains
394   *                the configuration information for the specified IWDG module.
395   * @retval HAL status
396   */
HAL_IWDG_Refresh(IWDG_HandleTypeDef * hiwdg)397 HAL_StatusTypeDef HAL_IWDG_Refresh(IWDG_HandleTypeDef *hiwdg)
398 {
399   /* Reload IWDG counter with value defined in the reload register */
400   __HAL_IWDG_RELOAD_COUNTER(hiwdg);
401 
402   /* Return function status */
403   return HAL_OK;
404 }
405 
406 
407 /**
408   * @brief  Handle IWDG interrupt request.
409   * @note   The Early Wakeup Interrupt (EWI) can be used if specific safety operations
410   *         or data logging must be performed before the actual reset is generated.
411   *         The EWI interrupt is enabled by calling HAL_IWDG_Init function with
412   *         EWIMode set to IWDG_EWI_ENABLE.
413   *         When the downcounter reaches the value 0x40, and EWI interrupt is
414   *         generated and the corresponding Interrupt Service Routine (ISR) can
415   *         be used to trigger specific actions (such as communications or data
416   *         logging), before resetting the device.
417   * @param  hiwdg  pointer to a IWDG_HandleTypeDef structure that contains
418   *                the configuration information for the specified IWDG module.
419   * @retval None
420   */
HAL_IWDG_IRQHandler(IWDG_HandleTypeDef * hiwdg)421 void HAL_IWDG_IRQHandler(IWDG_HandleTypeDef *hiwdg)
422 {
423   /* Check if IWDG Early Wakeup Interrupt occurred */
424   if ((hiwdg->Instance->SR & IWDG_SR_EWIF) != 0x00u)
425   {
426     /* Clear the IWDG Early Wakeup flag */
427     hiwdg->Instance->EWCR |= IWDG_EWCR_EWIC;
428 
429 #if (USE_HAL_IWDG_REGISTER_CALLBACKS == 1)
430     /* Early Wakeup registered callback */
431     hiwdg->EwiCallback(hiwdg);
432 #else
433     /* Early Wakeup callback */
434     HAL_IWDG_EarlyWakeupCallback(hiwdg);
435 #endif /* USE_HAL_IWDG_REGISTER_CALLBACKS */
436   }
437 }
438 
439 
440 /**
441   * @brief  IWDG Early Wakeup callback.
442   * @param  hiwdg  pointer to a IWDG_HandleTypeDef structure that contains
443   *                the configuration information for the specified IWDG module.
444   * @retval None
445   */
HAL_IWDG_EarlyWakeupCallback(IWDG_HandleTypeDef * hiwdg)446 __weak void HAL_IWDG_EarlyWakeupCallback(IWDG_HandleTypeDef *hiwdg)
447 {
448   /* Prevent unused argument(s) compilation warning */
449   UNUSED(hiwdg);
450 
451   /* NOTE: This function should not be modified, when the callback is needed,
452            the HAL_IWDG_EarlyWakeupCallback could be implemented in the user file
453    */
454 }
455 
456 
457 /**
458   * @}
459   */
460 
461 /**
462   * @}
463   */
464 
465 #endif /* HAL_IWDG_MODULE_ENABLED */
466 /**
467   * @}
468   */
469 
470 /**
471   * @}
472   */
473