1 /*
2 * Copyright 2021-2022 NXP
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6 /**
7 * @file Clock_Ip_Gate.c
8 * @version 0.9.0
9 *
10 * @brief CLOCK driver implementations.
11 * @details CLOCK driver implementations.
12 *
13 * @addtogroup CLOCK_DRIVER Clock Ip Driver
14 * @{
15 */
16
17
18 #ifdef __cplusplus
19 extern "C"{
20 #endif
21
22
23 /*==================================================================================================
24 * INCLUDE FILES
25 * 1) system and project includes
26 * 2) needed interfaces from external units
27 * 3) internal and external interfaces from this unit
28 ==================================================================================================*/
29
30
31 #include "Clock_Ip_Private.h"
32
33 /*==================================================================================================
34 SOURCE FILE VERSION INFORMATION
35 ==================================================================================================*/
36 #define CLOCK_IP_GATE_VENDOR_ID_C 43
37 #define CLOCK_IP_GATE_AR_RELEASE_MAJOR_VERSION_C 4
38 #define CLOCK_IP_GATE_AR_RELEASE_MINOR_VERSION_C 7
39 #define CLOCK_IP_GATE_AR_RELEASE_REVISION_VERSION_C 0
40 #define CLOCK_IP_GATE_SW_MAJOR_VERSION_C 0
41 #define CLOCK_IP_GATE_SW_MINOR_VERSION_C 9
42 #define CLOCK_IP_GATE_SW_PATCH_VERSION_C 0
43
44 /*==================================================================================================
45 * FILE VERSION CHECKS
46 ==================================================================================================*/
47 /* Check if Clock_Ip_Gate.c file and Clock_Ip_Private.h file are of the same vendor */
48 #if (CLOCK_IP_GATE_VENDOR_ID_C != CLOCK_IP_PRIVATE_VENDOR_ID)
49 #error "Clock_Ip_Gate.c and Clock_Ip_Private.h have different vendor ids"
50 #endif
51
52 /* Check if Clock_Ip_Gate.c file and Clock_Ip_Private.h file are of the same Autosar version */
53 #if ((CLOCK_IP_GATE_AR_RELEASE_MAJOR_VERSION_C != CLOCK_IP_PRIVATE_AR_RELEASE_MAJOR_VERSION) || \
54 (CLOCK_IP_GATE_AR_RELEASE_MINOR_VERSION_C != CLOCK_IP_PRIVATE_AR_RELEASE_MINOR_VERSION) || \
55 (CLOCK_IP_GATE_AR_RELEASE_REVISION_VERSION_C != CLOCK_IP_PRIVATE_AR_RELEASE_REVISION_VERSION) \
56 )
57 #error "AutoSar Version Numbers of Clock_Ip_Gate.c and Clock_Ip_Private.h are different"
58 #endif
59
60 /* Check if Clock_Ip_Gate.c file and Clock_Ip_Private.h file are of the same Software version */
61 #if ((CLOCK_IP_GATE_SW_MAJOR_VERSION_C != CLOCK_IP_PRIVATE_SW_MAJOR_VERSION) || \
62 (CLOCK_IP_GATE_SW_MINOR_VERSION_C != CLOCK_IP_PRIVATE_SW_MINOR_VERSION) || \
63 (CLOCK_IP_GATE_SW_PATCH_VERSION_C != CLOCK_IP_PRIVATE_SW_PATCH_VERSION) \
64 )
65 #error "Software Version Numbers of Clock_Ip_Gate.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 * GLOBAL FUNCTION PROTOTYPES
94 ==================================================================================================*/
95 /* Clock start section code */
96 #define MCU_START_SEC_CODE
97
98 #include "Mcu_MemMap.h"
99 /*==================================================================================================
100 * LOCAL FUNCTION PROTOTYPES
101 ==================================================================================================*/
102
103 static void Clock_Ip_ClockSetGateEmpty(Clock_Ip_GateConfigType const* Config);
104 static void Clock_Ip_ClockUpdateGateEmpty(Clock_Ip_NameType ClockName, boolean Gate);
105 #ifdef CLOCK_IP_CONTROL_ENABLE_GPR_PCTL
106 static void Clock_Ip_ClockSetGateClockControlEnableGprPctl(Clock_Ip_GateConfigType const* Config);
107 static void Clock_Ip_ClockUpdateGateClockControlEnableGprPctl(Clock_Ip_NameType ClockName, boolean Gate);
108 #endif
109
110 /* Clock stop section code */
111 #define MCU_STOP_SEC_CODE
112
113 #include "Mcu_MemMap.h"
114 /*==================================================================================================
115 * LOCAL FUNCTIONS
116 ==================================================================================================*/
117
118 /* Clock start section code */
119 #define MCU_START_SEC_CODE
120
121 #include "Mcu_MemMap.h"
122
Clock_Ip_ClockSetGateEmpty(Clock_Ip_GateConfigType const * Config)123 static void Clock_Ip_ClockSetGateEmpty(Clock_Ip_GateConfigType const* Config)
124 {
125 (void)Config;
126 /* No implementation */
127 }
Clock_Ip_ClockUpdateGateEmpty(Clock_Ip_NameType ClockName,boolean Gate)128 static void Clock_Ip_ClockUpdateGateEmpty(Clock_Ip_NameType ClockName, boolean Gate)
129 {
130 (void)ClockName;
131 (void)Gate;
132 /* No implementation */
133 }
134
135 #ifdef CLOCK_IP_CONTROL_ENABLE_GPR_PCTL
136 /* Write configuration of clock gate to register */
Clock_Ip_ClockSetGateClockControlEnableGprPctl(Clock_Ip_GateConfigType const * Config)137 static void Clock_Ip_ClockSetGateClockControlEnableGprPctl(Clock_Ip_GateConfigType const* Config)
138 {
139 const Clock_Ip_GateInfoType * GateInformation = &Clock_Ip_axGateInfo[Clock_Ip_au8ClockFeatures[Config->Name][CLOCK_IP_GATE_INDEX]];
140 uint32 GroupIndex = GateInformation->GroupIndex;
141 uint32 GateIndex = GateInformation->GateIndex;
142 uint32 GateBitField = GateInformation->GateBitField;
143
144 if (Config->Enable != 0U)
145 {
146 Clock_Ip_apxGprClockControlEnable[GroupIndex]->PCTL[GateIndex] |= ((uint32)GPR_PCTL_MASK << GateBitField);
147 }
148 else
149 {
150 Clock_Ip_apxGprClockControlEnable[GroupIndex]->PCTL[GateIndex] &= ~((uint32)GPR_PCTL_MASK << GateBitField);
151 }
152 }
Clock_Ip_ClockUpdateGateClockControlEnableGprPctl(Clock_Ip_NameType ClockName,boolean Gate)153 static void Clock_Ip_ClockUpdateGateClockControlEnableGprPctl(Clock_Ip_NameType ClockName, boolean Gate)
154 {
155 Clock_Ip_GateConfigType Config;
156
157 Config.Name = ClockName;
158 if (TRUE == Gate)
159 {
160 Config.Enable = 0U;
161 }
162 else
163 {
164 Config.Enable = 1U;
165 }
166 /* Write configuration to register */
167 Clock_Ip_ClockSetGateClockControlEnableGprPctl(&Config);
168 }
169 #endif
170
171
172 /*==================================================================================================
173 * GLOBAL FUNCTIONS
174 ==================================================================================================*/
175 /* Clock stop section code */
176 #define MCU_STOP_SEC_CODE
177
178 #include "Mcu_MemMap.h"
179
180 /*==================================================================================================
181 * GLOBAL CONSTANTS
182 ==================================================================================================*/
183 /* Clock start constant section data */
184 #define MCU_START_SEC_CONST_UNSPECIFIED
185
186 #include "Mcu_MemMap.h"
187
188 const Clock_Ip_GateCallbackType Clock_Ip_axGateCallbacks[CLOCK_IP_GATE_CALLBACKS_COUNT] =
189 {
190 {
191 Clock_Ip_ClockSetGateEmpty, /* Set */
192 Clock_Ip_ClockUpdateGateEmpty, /* Update */
193 },
194 #ifdef CLOCK_IP_CONTROL_ENABLE_GPR_PCTL
195 {
196 Clock_Ip_ClockSetGateClockControlEnableGprPctl, /* Set */
197 Clock_Ip_ClockUpdateGateClockControlEnableGprPctl, /* Update */
198 },
199 #endif
200 };
201
202
203 /* Clock stop constant section data */
204 #define MCU_STOP_SEC_CONST_UNSPECIFIED
205
206 #include "Mcu_MemMap.h"
207
208
209 #ifdef __cplusplus
210 }
211 #endif
212
213 /** @} */
214
215