1 /*
2 * Copyright 2020-2023 NXP
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7 /**
8 * @file Clock_Ip_DividerTrigger.c
9 * @version 3.0.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 3
41 #define CLOCK_IP_DIVIDERTRIGGER_SW_MINOR_VERSION_C 0
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;
128 uint32 SelectorIndex;
129
130 if (NULL_PTR != Config)
131 {
132 Instance = Clock_Ip_au8ClockFeatures[Config->Name][CLOCK_IP_MODULE_INSTANCE];
133 SelectorIndex = Clock_Ip_au8ClockFeatures[Config->Name][CLOCK_IP_SELECTOR_INDEX];
134
135 /* Check whether trigger is enabled */
136 if (Config->TriggerType != IMMEDIATE_DIVIDER_UPDATE)
137 {
138 Clock_Ip_apxCgm[Instance][SelectorIndex]->MUX_DIV_TRIG_CTRL = (MC_CGM_MUX_DIV_TRIG_CTRL_TCTL_MASK);
139 }
140 else
141 {
142 Clock_Ip_apxCgm[Instance][SelectorIndex]->MUX_DIV_TRIG_CTRL &= ~(MC_CGM_MUX_DIV_TRIG_CTRL_TCTL_MASK);
143 }
144 }
145 else
146 {
147 (void)Config;
148 (void)Instance;
149 (void)SelectorIndex;
150 }
151 }
152
Clock_Ip_TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat(Clock_Ip_DividerTriggerConfigType const * Config)153 static void Clock_Ip_TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat(Clock_Ip_DividerTriggerConfigType const* Config)
154 {
155 uint32 Instance;
156 uint32 SelectorIndex;
157
158 boolean TimeoutOccurred = FALSE;
159 uint32 StartTime;
160 uint32 ElapsedTime;
161 uint32 TimeoutTicks;
162 uint32 DividerStatus;
163
164 if (NULL_PTR != Config)
165 {
166 Instance = Clock_Ip_au8ClockFeatures[Config->Name][CLOCK_IP_MODULE_INSTANCE];
167 SelectorIndex = Clock_Ip_au8ClockFeatures[Config->Name][CLOCK_IP_SELECTOR_INDEX];
168
169 /* Check whether trigger is enabled */
170 if (Config->TriggerType != IMMEDIATE_DIVIDER_UPDATE)
171 {
172 Clock_Ip_apxCgm[Instance][SelectorIndex]->MUX_DIV_TRIG = MC_CGM_MUX_DIV_TRIG_TRIGGER(CLOCK_IP_TRIGGER_VALUE);
173
174 Clock_Ip_StartTimeout(&StartTime, &ElapsedTime, &TimeoutTicks, CLOCK_IP_TIMEOUT_VALUE_US);
175 /* Wait for acknowledge to be cleared. */
176 do
177 {
178 DividerStatus = (Clock_Ip_apxCgm[Instance][SelectorIndex]->MUX_DIV_UPD_STAT & MC_CGM_MUX_DIV_UPD_STAT_DIV_STAT_MASK);
179 TimeoutOccurred = Clock_Ip_TimeoutExpired(&StartTime, &ElapsedTime, TimeoutTicks);
180 }
181 while ((MC_CGM_MUX_DIV_UPD_STAT_DIV_STAT_PENDING == DividerStatus) && (FALSE == TimeoutOccurred));
182
183 /* timeout notification */
184 if (TRUE == TimeoutOccurred)
185 {
186 /* Report timeout error */
187 Clock_Ip_ReportClockErrors(CLOCK_IP_REPORT_TIMEOUT_ERROR, Config->Name);
188 }
189 }
190 }
191 else
192 {
193 (void)Instance;
194 (void)SelectorIndex;
195 (void)TimeoutOccurred;
196 (void)StartTime;
197 (void)ElapsedTime;
198 (void)TimeoutTicks;
199 (void)DividerStatus;
200 }
201 }
202 #endif
203
204 /* Clock stop section code */
205 #define MCU_STOP_SEC_CODE
206
207 #include "Mcu_MemMap.h"
208 /*==================================================================================================
209 * GLOBAL FUNCTIONS
210 ==================================================================================================*/
211
212 /*==================================================================================================
213 * GLOBAL CONSTANTS
214 ==================================================================================================*/
215 /* Clock start constant section data */
216 #define MCU_START_SEC_CONST_UNSPECIFIED
217
218 #include "Mcu_MemMap.h"
219
220 const Clock_Ip_DividerTriggerCallbackType Clock_Ip_axDividerTriggerCallbacks[CLOCK_IP_DIVIDERTRIGGER_CALLBACKS_COUNT] =
221 {
222 {
223 Clock_Ip_Callback_DividerTriggerEmpty, /* Configure */
224 Clock_Ip_Callback_DividerTriggerEmpty, /* Trigger Update */
225 },
226 #ifdef CLOCK_IP_CGM_X_DIV_TRIG_CTRL_TCTL_HHEN_UPD_STAT
227 {
228 Clock_Ip_ConfigureCgmXDivTrigCtrlTctlHhenUpdStat, /* Configure */
229 Clock_Ip_TriggerUpdateCgmXDivTrigCtrlTctlHhenUpdStat, /* Trigger Update */
230 },
231 #endif
232 };
233
234 /* Clock stop constant section data */
235 #define MCU_STOP_SEC_CONST_UNSPECIFIED
236
237 #include "Mcu_MemMap.h"
238
239
240
241 #ifdef __cplusplus
242 }
243 #endif
244
245 /** @} */
246