1 /*
2 * Copyright 2021-2022 NXP
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7 /**
8 * @file Clock_Ip_DividerTrigger.c
9 * @version 0.9.0
10 *
11 * @brief CLOCK driver implementations.
12 * @details CLOCK driver implementations.
13 *
14 * @addtogroup CLOCK_DRIVER Clock Ip Driver
15 * @{
16 */
17
18
19 #ifdef __cplusplus
20 extern "C"{
21 #endif
22
23
24 /*==================================================================================================
25 * INCLUDE FILES
26 * 1) system and project includes
27 * 2) needed interfaces from external units
28 * 3) internal and external interfaces from this unit
29 ==================================================================================================*/
30
31 #include "Clock_Ip_Private.h"
32
33 /*==================================================================================================
34 SOURCE FILE VERSION INFORMATION
35 ==================================================================================================*/
36 #define CLOCK_IP_DIVIDERTRIGGER_VENDOR_ID_C 43
37 #define CLOCK_IP_DIVIDERTRIGGER_AR_RELEASE_MAJOR_VERSION_C 4
38 #define CLOCK_IP_DIVIDERTRIGGER_AR_RELEASE_MINOR_VERSION_C 7
39 #define CLOCK_IP_DIVIDERTRIGGER_AR_RELEASE_REVISION_VERSION_C 0
40 #define CLOCK_IP_DIVIDERTRIGGER_SW_MAJOR_VERSION_C 0
41 #define CLOCK_IP_DIVIDERTRIGGER_SW_MINOR_VERSION_C 9
42 #define CLOCK_IP_DIVIDERTRIGGER_SW_PATCH_VERSION_C 0
43
44 /*==================================================================================================
45 * FILE VERSION CHECKS
46 ==================================================================================================*/
47 /* Check if Clock_Ip_DividerTrigger.c file and Clock_Ip_Private.h file are of the same vendor */
48 #if (CLOCK_IP_DIVIDERTRIGGER_VENDOR_ID_C != CLOCK_IP_PRIVATE_VENDOR_ID)
49 #error "Clock_Ip_DividerTrigger.c and Clock_Ip_Private.h have different vendor ids"
50 #endif
51
52 /* Check if Clock_Ip_DividerTrigger.c file and Clock_Ip_Private.h file are of the same Autosar version */
53 #if ((CLOCK_IP_DIVIDERTRIGGER_AR_RELEASE_MAJOR_VERSION_C != CLOCK_IP_PRIVATE_AR_RELEASE_MAJOR_VERSION) || \
54 (CLOCK_IP_DIVIDERTRIGGER_AR_RELEASE_MINOR_VERSION_C != CLOCK_IP_PRIVATE_AR_RELEASE_MINOR_VERSION) || \
55 (CLOCK_IP_DIVIDERTRIGGER_AR_RELEASE_REVISION_VERSION_C != CLOCK_IP_PRIVATE_AR_RELEASE_REVISION_VERSION) \
56 )
57 #error "AutoSar Version Numbers of Clock_Ip_DividerTrigger.c and Clock_Ip_Private.h are different"
58 #endif
59
60 /* Check if Clock_Ip_DividerTrigger.c file and Clock_Ip_Private.h file are of the same Software version */
61 #if ((CLOCK_IP_DIVIDERTRIGGER_SW_MAJOR_VERSION_C != CLOCK_IP_PRIVATE_SW_MAJOR_VERSION) || \
62 (CLOCK_IP_DIVIDERTRIGGER_SW_MINOR_VERSION_C != CLOCK_IP_PRIVATE_SW_MINOR_VERSION) || \
63 (CLOCK_IP_DIVIDERTRIGGER_SW_PATCH_VERSION_C != CLOCK_IP_PRIVATE_SW_PATCH_VERSION) \
64 )
65 #error "Software Version Numbers of Clock_Ip_DividerTrigger.c and Clock_Ip_Private.h are different"
66 #endif
67
68 /*==================================================================================================
69 * LOCAL TYPEDEFS (STRUCTURES, UNIONS, ENUMS)
70 ==================================================================================================*/
71
72 /*==================================================================================================
73 * LOCAL MACROS
74 ==================================================================================================*/
75
76 /*==================================================================================================
77 * LOCAL CONSTANTS
78 ==================================================================================================*/
79
80 /*==================================================================================================
81 * LOCAL VARIABLES
82 ==================================================================================================*/
83
84 /*==================================================================================================
85 * GLOBAL CONSTANTS
86 ==================================================================================================*/
87
88 /*==================================================================================================
89 * GLOBAL VARIABLES
90 ==================================================================================================*/
91
92 /*==================================================================================================
93 * LOCAL FUNCTION PROTOTYPES
94 ==================================================================================================*/
95 /* Clock start section code */
96 #define MCU_START_SEC_CODE
97
98 #include "Mcu_MemMap.h"
99
100 static void Clock_Ip_Callback_DividerTriggerEmpty(Clock_Ip_DividerTriggerConfigType const* Config);
101 #ifdef CLOCK_IP_CGM_X_DIV_TRIG_CTRL_TCTL_HHEN_UPD_STAT
102 static void Clock_Ip_ConfigureCgmXDivTrigCtrlTctlHhenUpdStat(Clock_Ip_DividerTriggerConfigType const* Config);
103 static void Clock_Ip_TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat(Clock_Ip_DividerTriggerConfigType const* Config);
104 #endif
105
106 /* Clock stop section code */
107 #define MCU_STOP_SEC_CODE
108
109 #include "Mcu_MemMap.h"
110 /*==================================================================================================
111 * LOCAL FUNCTIONS
112 ==================================================================================================*/
113 /* Clock start section code */
114 #define MCU_START_SEC_CODE
115
116 #include "Mcu_MemMap.h"
117
Clock_Ip_Callback_DividerTriggerEmpty(Clock_Ip_DividerTriggerConfigType const * Config)118 static void Clock_Ip_Callback_DividerTriggerEmpty(Clock_Ip_DividerTriggerConfigType const* Config)
119 {
120 (void)Config;
121 /* No implementation */
122 }
123
124 #ifdef CLOCK_IP_CGM_X_DIV_TRIG_CTRL_TCTL_HHEN_UPD_STAT
Clock_Ip_ConfigureCgmXDivTrigCtrlTctlHhenUpdStat(Clock_Ip_DividerTriggerConfigType const * Config)125 static void Clock_Ip_ConfigureCgmXDivTrigCtrlTctlHhenUpdStat(Clock_Ip_DividerTriggerConfigType const* Config)
126 {
127 uint32 Instance = Clock_Ip_au8ClockFeatures[Config->Name][CLOCK_IP_MODULE_INSTANCE];
128 uint32 SelectorIndex = Clock_Ip_au8ClockFeatures[Config->Name][CLOCK_IP_SELECTOR_INDEX];
129
130 /* Check whether trigger is enabled */
131 if (Config->TriggerType != IMMEDIATE_DIVIDER_UPDATE)
132 {
133 Clock_Ip_apxCgm[Instance][SelectorIndex]->MUX_DIV_TRIG_CTRL = (MC_CGM_MUX_DIV_TRIG_CTRL_TCTL_MASK);
134 }
135 else
136 {
137 Clock_Ip_apxCgm[Instance][SelectorIndex]->MUX_DIV_TRIG_CTRL &= ~(MC_CGM_MUX_DIV_TRIG_CTRL_TCTL_MASK);
138 }
139 }
140
Clock_Ip_TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat(Clock_Ip_DividerTriggerConfigType const * Config)141 static void Clock_Ip_TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat(Clock_Ip_DividerTriggerConfigType const* Config)
142 {
143 uint32 Instance = Clock_Ip_au8ClockFeatures[Config->Name][CLOCK_IP_MODULE_INSTANCE];
144 uint32 SelectorIndex = Clock_Ip_au8ClockFeatures[Config->Name][CLOCK_IP_SELECTOR_INDEX];
145
146 boolean TimeoutOccurred = FALSE;
147 uint32 StartTime;
148 uint32 ElapsedTime;
149 uint32 TimeoutTicks;
150 uint32 DividerStatus;
151
152 /* Check whether trigger is enabled */
153 if (Config->TriggerType != IMMEDIATE_DIVIDER_UPDATE)
154 {
155 Clock_Ip_apxCgm[Instance][SelectorIndex]->MUX_DIV_TRIG = MC_CGM_MUX_DIV_TRIG_TRIGGER(CLOCK_IP_TRIGGER_VALUE);
156
157 Clock_Ip_StartTimeout(&StartTime, &ElapsedTime, &TimeoutTicks, CLOCK_IP_TIMEOUT_VALUE_US);
158 /* Wait for acknowledge to be cleared. */
159 do
160 {
161 DividerStatus = (Clock_Ip_apxCgm[Instance][SelectorIndex]->MUX_DIV_UPD_STAT & MC_CGM_MUX_DIV_UPD_STAT_DIV_STAT_MASK);
162 TimeoutOccurred = Clock_Ip_TimeoutExpired(&StartTime, &ElapsedTime, TimeoutTicks);
163 }
164 while ((MC_CGM_MUX_DIV_UPD_STAT_DIV_STAT_PENDING == DividerStatus) && (FALSE == TimeoutOccurred));
165
166 /* timeout notification */
167 if (TRUE == TimeoutOccurred)
168 {
169 /* Report timeout error */
170 Clock_Ip_ReportClockErrors(CLOCK_IP_REPORT_TIMEOUT_ERROR, Config->Name);
171 }
172 }
173 }
174 #endif
175
176 /* Clock stop section code */
177 #define MCU_STOP_SEC_CODE
178
179 #include "Mcu_MemMap.h"
180 /*==================================================================================================
181 * GLOBAL FUNCTIONS
182 ==================================================================================================*/
183
184 /*==================================================================================================
185 * GLOBAL CONSTANTS
186 ==================================================================================================*/
187 /* Clock start constant section data */
188 #define MCU_START_SEC_CONST_UNSPECIFIED
189
190 #include "Mcu_MemMap.h"
191
192 const Clock_Ip_DividerTriggerCallbackType Clock_Ip_axDividerTriggerCallbacks[CLOCK_IP_DIVIDERTRIGGER_CALLBACKS_COUNT] =
193 {
194 {
195 Clock_Ip_Callback_DividerTriggerEmpty, /* Configure */
196 Clock_Ip_Callback_DividerTriggerEmpty, /* Trigger Update */
197 },
198 #ifdef CLOCK_IP_CGM_X_DIV_TRIG_CTRL_TCTL_HHEN_UPD_STAT
199 {
200 Clock_Ip_ConfigureCgmXDivTrigCtrlTctlHhenUpdStat, /* Configure */
201 Clock_Ip_TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat, /* Trigger Update */
202 },
203 #endif
204 };
205
206 /* Clock stop constant section data */
207 #define MCU_STOP_SEC_CONST_UNSPECIFIED
208
209 #include "Mcu_MemMap.h"
210
211
212
213 #ifdef __cplusplus
214 }
215 #endif
216
217 /** @} */
218