]> git.donarmstrong.com Git - qmk_firmware.git/blob - tool/mbed/mbed-sdk/libraries/mbed/targets/hal/TARGET_Freescale/TARGET_KPSDK_MCUS/TARGET_KPSDK_CODE/hal/wdog/fsl_wdog_hal.c
Squashed 'tmk_core/' changes from 7967731..b9e0ea0
[qmk_firmware.git] / tool / mbed / mbed-sdk / libraries / mbed / targets / hal / TARGET_Freescale / TARGET_KPSDK_MCUS / TARGET_KPSDK_CODE / hal / wdog / fsl_wdog_hal.c
1 /*
2  * Copyright (c) 2013 - 2014, Freescale Semiconductor, Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without modification,
6  * are permitted provided that the following conditions are met:
7  *
8  * o Redistributions of source code must retain the above copyright notice, this list
9  *   of conditions and the following disclaimer.
10  *
11  * o Redistributions in binary form must reproduce the above copyright notice, this
12  *   list of conditions and the following disclaimer in the documentation and/or
13  *   other materials provided with the distribution.
14  *
15  * o Neither the name of Freescale Semiconductor, Inc. nor the names of its
16  *   contributors may be used to endorse or promote products derived from this
17  *   software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
23  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
26  * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #include "fsl_wdog_hal.h"
32
33 /*******************************************************************************
34  * Definitions
35  *******************************************************************************/
36
37 /*******************************************************************************
38  * Variables
39  *******************************************************************************/
40
41 /*******************************************************************************
42  * Code
43  ******************************************************************************/
44  
45 /*FUNCTION**********************************************************************
46  *
47  * Function Name : WDOG_HAL_Init
48  * Description   : Initialize WDOG peripheral to reset state.
49  *
50  *END**************************************************************************/
51 void WDOG_HAL_Init(uint32_t baseAddr)
52 {
53     wdog_common_config wdogCommonConfig;
54     wdogCommonConfig.commonConfig.workInWaitModeEnable = (uint8_t)true;
55     wdogCommonConfig.commonConfig.workInDebugModeEnable = (uint8_t)false;
56     wdogCommonConfig.commonConfig.workInStopModeEnable = (uint8_t)true;
57     wdogCommonConfig.commonConfig.clockSource = (uint8_t)kWdogClockSourceBusClock;
58     wdogCommonConfig.commonConfig.interruptEnable = (uint8_t)false;
59     wdogCommonConfig.commonConfig.windowModeEnable = (uint8_t)false;
60     wdogCommonConfig.commonConfig.updateRegisterEnable = (uint8_t)true; 
61     wdogCommonConfig.commonConfig.wdogEnable = (uint8_t)(true);
62
63     WDOG_HAL_Unlock(baseAddr);
64     WDOG_HAL_SetTimeoutValue(baseAddr, 0x004C4B4CU);
65     WDOG_HAL_SetWindowValue(baseAddr, 0);
66     WDOG_HAL_SetClockPrescalerValueMode(baseAddr, kWdogClockPrescalerValueDevide5);
67     WDOG_HAL_ClearIntFlag(baseAddr);
68     WDOG_HAL_SetCommonConfig(baseAddr, wdogCommonConfig);
69
70 }
71
72 /*******************************************************************************
73  * EOF
74  *******************************************************************************/
75