1 /*
2  * Copyright 2021-2023 NXP
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 /**
7 *   @file       Clock_Ip_Gate.c
8 *   @version    1.0.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               1
41 #define CLOCK_IP_GATE_SW_MINOR_VERSION_C               0
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;
140     uint32 GroupIndex;
141     uint32 GateIndex;
142     uint32 GateBitField;
143 
144     if (NULL_PTR != Config)
145     {
146         GateInformation = &Clock_Ip_axGateInfo[Clock_Ip_au8ClockFeatures[Config->Name][CLOCK_IP_GATE_INDEX]];
147         GroupIndex      = GateInformation->GroupIndex;
148         GateIndex       = GateInformation->GateIndex;
149         GateBitField    = GateInformation->GateBitField;
150 
151         if (Config->Enable != 0U)
152         {
153             Clock_Ip_apxGprClockControlEnable[GroupIndex]->PCTL[GateIndex] |= ((uint32)GPR_PCTL_MASK << GateBitField);
154         }
155         else
156         {
157             Clock_Ip_apxGprClockControlEnable[GroupIndex]->PCTL[GateIndex] &= ~((uint32)GPR_PCTL_MASK << GateBitField);
158         }
159     }
160     else
161     {
162         (void)GateInformation;
163         (void)GroupIndex;
164         (void)GateIndex;
165         (void)GateBitField;
166     }
167 }
Clock_Ip_ClockUpdateGateClockControlEnableGprPctl(Clock_Ip_NameType ClockName,boolean Gate)168 static void Clock_Ip_ClockUpdateGateClockControlEnableGprPctl(Clock_Ip_NameType ClockName, boolean Gate)
169 {
170     Clock_Ip_GateConfigType Config;
171 
172     Config.Name = ClockName;
173     if (TRUE == Gate)
174     {
175         Config.Enable = 0U;
176     }
177     else
178     {
179         Config.Enable = 1U;
180     }
181     /* Write configuration to register */
182     Clock_Ip_ClockSetGateClockControlEnableGprPctl(&Config);
183 }
184 #endif
185 
186 
187 /*==================================================================================================
188 *                                        GLOBAL FUNCTIONS
189 ==================================================================================================*/
190 /* Clock stop section code */
191 #define MCU_STOP_SEC_CODE
192 
193 #include "Mcu_MemMap.h"
194 
195 /*==================================================================================================
196 *                                        GLOBAL CONSTANTS
197 ==================================================================================================*/
198 /* Clock start constant section data */
199 #define MCU_START_SEC_CONST_UNSPECIFIED
200 
201 #include "Mcu_MemMap.h"
202 
203 const Clock_Ip_GateCallbackType Clock_Ip_axGateCallbacks[CLOCK_IP_GATE_CALLBACKS_COUNT] =
204 {
205     {
206         Clock_Ip_ClockSetGateEmpty,     /* Set */
207         Clock_Ip_ClockUpdateGateEmpty,  /* Update */
208     },
209 #ifdef CLOCK_IP_CONTROL_ENABLE_GPR_PCTL
210     {
211         Clock_Ip_ClockSetGateClockControlEnableGprPctl,       /* Set */
212         Clock_Ip_ClockUpdateGateClockControlEnableGprPctl,    /* Update */
213     },
214 #endif
215 };
216 
217 
218 /* Clock stop constant section data */
219 #define MCU_STOP_SEC_CONST_UNSPECIFIED
220 
221 #include "Mcu_MemMap.h"
222 
223 
224 #ifdef __cplusplus
225 }
226 #endif
227 
228 /** @} */
229 
230