123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285 |
- /*==================================================================================================
- * Project : RTD AUTOSAR 4.4
- * Platform : CORTEXM
- * Peripheral :
- * Dependencies : none
- *
- * Autosar Version : 4.4.0
- * Autosar Revision : ASR_REL_4_4_REV_0000
- * Autosar Conf.Variant :
- * SW Version : 1.0.0
- * Build Version : S32K1_RTD_1_0_0_HF01_D2109_ASR_REL_4_4_REV_0000_20210907
- *
- * (c) Copyright 2020-2021 NXP Semiconductors
- * All Rights Reserved.
- *
- * NXP Confidential. This software is owned or controlled by NXP and may only be
- * used strictly in accordance with the applicable license terms. By expressly
- * accepting such terms or by downloading, installing, activating and/or otherwise
- * using the software, you are agreeing that you have read, and that you agree to
- * comply with and are bound by, such license terms. If you do not agree to be
- * bound by the applicable license terms, then you may not retain, install,
- * activate or otherwise use the software.
- ==================================================================================================*/
- /**
- * @file Mcu_IPW.h
- * @implements Mcu_IPW.h_Artifact
- * @version 1.0.0
- *
- * @brief AUTOSAR Mcu - Mcu driver header file.
- * @details AUTOSAR specific Mcu driver header file.
- * @addtogroup MCU_DRIVER Mcu Driver
- * @{
- */
- #ifndef MCU_IPW_H
- #define MCU_IPW_H
- #ifdef __cplusplus
- extern "C"{
- #endif
- /*==================================================================================================
- INCLUDE FILES
- 1) system and project includes
- 2) needed interfaces from external units
- 3) internal and external interfaces from this unit
- ==================================================================================================*/
- #include "Mcu_IPW_Types.h"
- #include "Mcu_EnvCfg.h"
- #include "Mcal.h"
- /*==================================================================================================
- SOURCE FILE VERSION INFORMATION
- ==================================================================================================*/
- #define MCU_IPW_VENDOR_ID 43
- #define MCU_IPW_AR_RELEASE_MAJOR_VERSION 4
- #define MCU_IPW_AR_RELEASE_MINOR_VERSION 4
- #define MCU_IPW_AR_RELEASE_REVISION_VERSION 0
- #define MCU_IPW_SW_MAJOR_VERSION 1
- #define MCU_IPW_SW_MINOR_VERSION 0
- #define MCU_IPW_SW_PATCH_VERSION 0
- /*==================================================================================================
- * FILE VERSION CHECKS
- ==================================================================================================*/
- /* Check if Mcu_IPW.h file and Mcu_IPW_Types.h file are of the same vendor */
- #if (MCU_IPW_VENDOR_ID != MCU_IPW_TYPES_VENDOR_ID)
- #error "Mcu_IPW.h and Mcu_IPW_Types.h have different vendor ids"
- #endif
- /* Check if Mcu_IPW.h file and Mcu_IPW_Types.h file are of the same Autosar version */
- #if ((MCU_IPW_AR_RELEASE_MAJOR_VERSION != MCU_IPW_TYPES_AR_RELEASE_MAJOR_VERSION) || \
- (MCU_IPW_AR_RELEASE_MINOR_VERSION != MCU_IPW_TYPES_AR_RELEASE_MINOR_VERSION) || \
- (MCU_IPW_AR_RELEASE_REVISION_VERSION != MCU_IPW_TYPES_AR_RELEASE_REVISION_VERSION) \
- )
- #error "AutoSar Version Numbers of Mcu_IPW.h and Mcu_IPW_Types.h are different"
- #endif
- /* Check if Mcu_IPW.h file and Mcu_IPW_Types.h file are of the same Software version */
- #if ((MCU_IPW_SW_MAJOR_VERSION != MCU_IPW_TYPES_SW_MAJOR_VERSION) || \
- (MCU_IPW_SW_MINOR_VERSION != MCU_IPW_TYPES_SW_MINOR_VERSION) || \
- (MCU_IPW_SW_PATCH_VERSION != MCU_IPW_TYPES_SW_PATCH_VERSION) \
- )
- #error "Software Version Numbers of Mcu_IPW.h and Mcu_IPW_Types.h are different"
- #endif
- /* Check if Mcu_IPW.h file and Mcu_EnvCfg.h file are of the same vendor */
- #if (MCU_IPW_VENDOR_ID != MCU_ENVCFG_VENDOR_ID)
- #error "Mcu_IPW.h and Mcu_EnvCfg.h have different vendor ids"
- #endif
- /* Check if Mcu_IPW.h file and Mcu_EnvCfg.h file are of the same Autosar version */
- #if ((MCU_IPW_AR_RELEASE_MAJOR_VERSION != MCU_ENVCFG_AR_RELEASE_MAJOR_VERSION) || \
- (MCU_IPW_AR_RELEASE_MINOR_VERSION != MCU_ENVCFG_AR_RELEASE_MINOR_VERSION) || \
- (MCU_IPW_AR_RELEASE_REVISION_VERSION != MCU_ENVCFG_AR_RELEASE_REVISION_VERSION) \
- )
- #error "AutoSar Version Numbers of Mcu_IPW.h and Mcu_EnvCfg.h are different"
- #endif
- /* Check if Mcu_IPW.h file and Mcu_EnvCfg.h file are of the same Software version */
- #if ((MCU_IPW_SW_MAJOR_VERSION != MCU_ENVCFG_SW_MAJOR_VERSION) || \
- (MCU_IPW_SW_MINOR_VERSION != MCU_ENVCFG_SW_MINOR_VERSION) || \
- (MCU_IPW_SW_PATCH_VERSION != MCU_ENVCFG_SW_PATCH_VERSION) \
- )
- #error "Software Version Numbers of Mcu_IPW.h and Mcu_EnvCfg.h are different"
- #endif
- #ifndef DISABLE_MCAL_INTERMODULE_ASR_CHECK
- /* Check if Mcu_IPW.h file and Mcal.h file are of the same Autosar version */
- #if ((MCU_IPW_AR_RELEASE_MAJOR_VERSION != MCAL_AR_RELEASE_MAJOR_VERSION) || \
- (MCU_IPW_AR_RELEASE_MINOR_VERSION != MCAL_AR_RELEASE_MINOR_VERSION))
- #error "AutoSar Version Numbers of Mcu_IPW.h and Mcal.h are different"
- #endif
- #endif
- /*==================================================================================================
- CONSTANTS
- ==================================================================================================*/
- /*==================================================================================================
- DEFINES AND MACROS
- ==================================================================================================*/
- #ifdef MCU_EMIOS_CONFIGURE_GPREN_API
- #if (MCU_EMIOS_CONFIGURE_GPREN_API == STD_ON)
- #define MCU_EMIOS_GPREN_BIT_ENABLE (0x01U)
- #define MCU_EMIOS_GPREN_BIT_DISABLE (0x00U)
- #define MCU_EMIOS_MCR_GPREN_MASK32 eMIOS_MCR_GPREN_MASK
- #endif
- #endif
- #if (MCU_INIT_CLOCK == STD_ON)
- /* When clock_ip notifications are enabled, then callback is install to receive notifications.
- */
- #if (\
- (defined(MCU_DISABLE_DEM_REPORT_ERROR_STATUS) && (MCU_DISABLE_DEM_REPORT_ERROR_STATUS == STD_OFF)) || \
- (defined(MCU_DISABLE_RAM_CONFIG) && (MCU_DISABLE_RAM_CONFIG == STD_OFF)) || \
- (defined(MCU_DISABLE_FLASH_CONFIG) && (MCU_DISABLE_FLASH_CONFIG == STD_OFF)) || \
- (defined(MCU_CMU_ERROR_ISR_USED) && (MCU_CMU_ERROR_ISR_USED == STD_ON)) || \
- defined(MCU_ERROR_ISR_NOTIFICATION) \
- )
- #define CLOCK_IP_ENABLE_NOTIFICATIONS STD_ON
- #else
- #define CLOCK_IP_ENABLE_NOTIFICATIONS STD_OFF
- #endif
- #else
- #define CLOCK_IP_ENABLE_NOTIFICATIONS STD_OFF
- #endif /* (MCU_INIT_CLOCK == STD_ON) */
- #if (\
- (defined(MCU_DISABLE_DEM_REPORT_ERROR_STATUS) && (MCU_DISABLE_DEM_REPORT_ERROR_STATUS == STD_OFF)) || \
- (defined(MCU_ERROR_ISR_NOTIFICATION)) || \
- (defined(MCU_PMC_NOTIFICATION)) || \
- (defined(POWER_IP_REPORT_VLPSA_NOTIFICATION)) \
- )
- #define POWER_IP_ENABLE_NOTIFICATIONS STD_ON
- #else
- #define POWER_IP_ENABLE_NOTIFICATIONS STD_OFF
- #endif
- /*==================================================================================================
- ENUMS
- ==================================================================================================*/
- /*==================================================================================================
- STRUCTURES AND OTHER TYPEDEFS
- ==================================================================================================*/
- /*==================================================================================================
- GLOBAL VARIABLE DECLARATIONS
- ==================================================================================================*/
- /*==================================================================================================
- FUNCTION PROTOTYPES
- ==================================================================================================*/
- #define MCU_START_SEC_CODE
- #include "Mcu_MemMap.h"
- void Mcu_Ipw_Init(const Mcu_HwIPsConfigType * Mcu_pHwIPsConfigPtr);
- void Mcu_Ipw_SetMode(const Mcu_ModeConfigType * Mcu_pModeConfigPtr);
- #ifndef MCU_MAX_NORAMCONFIGS
- Std_ReturnType Mcu_Ipw_InitRamSection(const Mcu_RamConfigType * Mcu_pRamConfigPtr);
- #endif /* ifndef MCU_MAX_NORAMCONFIGS */
- #if (MCU_INIT_CLOCK == STD_ON)
- void Mcu_Ipw_InitClock(const Mcu_ClockConfigType * Mcu_pClockConfigPtr);
- #endif /* (MCU_INIT_CLOCK == STD_ON) */
- #if (MCU_INIT_CLOCK == STD_ON)
- #if (MCU_NO_PLL == STD_OFF)
- void Mcu_Ipw_DistributePllClock(void);
- #endif /* (MCU_NO_PLL == STD_OFF) */
- #endif /* (MCU_INIT_CLOCK == STD_ON) */
- #if (MCU_NO_PLL == STD_OFF)
- Mcu_PllStatusType Mcu_Ipw_GetPllStatus(void);
- #endif /* (MCU_NO_PLL == STD_OFF) */
- #if MCU_PERFORM_RESET_API == STD_ON
- void Mcu_Ipw_PerformReset(const Mcu_HwIPsConfigType * Mcu_pHwIPsConfigPtr);
- #endif /* (MCU_PERFORM_RESET_API == STD_ON) */
- Mcu_ResetType Mcu_Ipw_GetResetReason(void);
- Mcu_RawResetType Mcu_Ipw_GetResetRawValue(void);
- #if (MCU_GET_RAM_STATE_API == STD_ON)
- Mcu_RamStateType Mcu_Ipw_GetRamState(void);
- #endif /* (MCU_GET_RAM_STATE_API == STD_ON) */
- #if (MCU_POWERMODE_STATE_API == STD_ON)
- Mcu_PowerModeStateType Mcu_Ipw_GetPowerModeState(void);
- #endif /* (MCU_POWERMODE_STATE_API == STD_ON) */
- #if (MCU_GET_POWER_DOMAIN_API == STD_ON)
- Std_ReturnType Mcu_Ipw_GetPowerDomainState(void);
- #endif /* (MCU_GET_POWER_DOMAIN_API == STD_ON) */
- #if (MCU_GET_MIDR_API == STD_ON)
- void Mcu_Ipw_GetMidrStructure(Mcu_MidrReturnType * pMidr);
- #endif /*(MCU_GET_MIDR_API == STD_ON)*/
- #ifdef MCU_DISABLE_CMU_API
- #if (MCU_DISABLE_CMU_API == STD_ON)
- void Mcu_Ipw_DisableCmu(Clock_Ip_NameType clockName);
- #endif
- #endif
- #ifdef MCU_EMIOS_CONFIGURE_GPREN_API
- #if (MCU_EMIOS_CONFIGURE_GPREN_API == STD_ON)
- void Mcu_Ipw_EmiosConfigureGpren(uint8 u8Module, uint8 u8Value);
- #endif
- #endif
- #ifdef MCU_GET_CLOCK_FREQUENCY_API
- #if (MCU_GET_CLOCK_FREQUENCY_API == STD_ON)
- uint32 MCU_Ipw_GetClockFrequency(Clock_Ip_NameType clockName);
- #endif /* (MCU_GET_CLOCK_FREQUENCY_API == STD_ON) */
- #endif /* MCU_GET_CLOCK_FREQUENCY_API */
- #ifdef MCU_SLEEPONEXIT_SUPPORT
- #if (MCU_SLEEPONEXIT_SUPPORT == STD_ON)
- void Mcu_Ipw_SleepOnExit(Mcu_SleepOnExitType SleepOnExit);
- #endif
- #endif
- #ifdef MCU_SRAM_RETEN_CONFIG_API
- #if (MCU_SRAM_RETEN_CONFIG_API == STD_ON)
- /**
- * @brief Configuration for SRAM retention.
- *
- * @details This function configure for both SRAML_RETEN and SRAMU_RETEN bits.
- *
- * @return void
- */
- void Mcu_Ipw_SRAMRetentionConfig(Mcu_SRAMRetenConfigType eSRAMRetenConfig);
- #endif
- #endif
- #define MCU_STOP_SEC_CODE
- #include "Mcu_MemMap.h"
- #ifdef __cplusplus
- }
- #endif
- #endif /* MCU_IPW_H */
- /** @} */
|