/*================================================================================================== * Project : RTD AUTOSAR 4.4 * Platform : CORTEXM * Peripheral : Wdog,Ewm * 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. ==================================================================================================*/ #ifndef WDG_CFG_DEFINES_H #define WDG_CFG_DEFINES_H /** * @file * * @addtogroup Wdg * @{ */ #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 "WdgIf_Types.h" #include "Wdg_Ipw_Cfg_Defines.h" #include "Mcal.h" /*================================================================================================== * SOURCE FILE VERSION INFORMATION ==================================================================================================*/ #define WDG_VENDOR_ID_CFG 43 #define WDG_AR_RELEASE_MAJOR_VERSION_CFG 4 #define WDG_AR_RELEASE_MINOR_VERSION_CFG 4 #define WDG_AR_RELEASE_REVISION_VERSION_CFG 0 #define WDG_SW_MAJOR_VERSION_CFG 1 #define WDG_SW_MINOR_VERSION_CFG 0 #define WDG_SW_PATCH_VERSION_CFG 0 /*================================================================================================== * FILE VERSION CHECKS ==================================================================================================*/ #if (WDG_VENDOR_ID_CFG != WDG_IPW_CFG_DEFINES_VENDOR_ID) #error "Wdg_Cfg_Defines.h and Wdg_Ipw_Cfg_Defines.h have different vendor ids" #endif /* Check if current file and Wdg_Ipw_Types header file are of the same Autosar version */ #if ((WDG_AR_RELEASE_MAJOR_VERSION_CFG != WDG_IPW_CFG_DEFINES_AR_RELEASE_MAJOR_VERSION) || \ (WDG_AR_RELEASE_MINOR_VERSION_CFG != WDG_IPW_CFG_DEFINES_AR_RELEASE_MINOR_VERSION) || \ (WDG_AR_RELEASE_REVISION_VERSION_CFG != WDG_IPW_CFG_DEFINES_AR_RELEASE_REVISION_VERSION)) #error "AutoSar Version Numbers of Wdg_Cfg_Defines.h and Wdg_Ipw_Cfg_Defines.h are different" #endif /* Check if current file and Wdg_Ipw_Types header file are of the same software version */ #if ((WDG_SW_MAJOR_VERSION_CFG != WDG_IPW_CFG_DEFINES_SW_MAJOR_VERSION) || \ (WDG_SW_MINOR_VERSION_CFG != WDG_IPW_CFG_DEFINES_SW_MINOR_VERSION) || \ (WDG_SW_PATCH_VERSION_CFG != WDG_IPW_CFG_DEFINES_SW_PATCH_VERSION)) #error "Software Version Numbers of Wdg_Cfg_Defines.h and Wdg_Ipw_Cfg_Defines.h are different" #endif /* Check if current file and WDG configuration header file are of the same vendor */ #ifndef DISABLE_MCAL_INTERMODULE_ASR_CHECK /* Check if current file and Wdg_Ipw_Types header file are of the same Autosar version */ #if ((WDG_AR_RELEASE_MAJOR_VERSION_CFG != WDGIF_TYPES_AR_RELEASE_MAJOR_VERSION) || \ (WDG_AR_RELEASE_MINOR_VERSION_CFG != WDGIF_TYPES_AR_RELEASE_MINOR_VERSION)) #error "AutoSar Version Numbers of Wdg_Cfg_Defines.h and WdgIf_Types.h are different" #endif /* Check if source file and Mcal header file are of the same Autosar version */ #if (( WDG_AR_RELEASE_MAJOR_VERSION_CFG != MCAL_AR_RELEASE_MAJOR_VERSION) || \ ( WDG_AR_RELEASE_MINOR_VERSION_CFG != MCAL_AR_RELEASE_MINOR_VERSION)) #error "AutoSar Version Numbers of Wdg_Cfg_Defines.h and Mcal.h are different" #endif #endif /* DISABLE_MCAL_INTERMODULE_ASR_CHECK */ /*================================================================================================== * CONSTANTS ==================================================================================================*/ /*================================================================================================== * DEFINES AND MACROS ==================================================================================================*/ /** * @brief This define indicate the number of HW IPs available on the Platform */ #define WDG_NO_OF_INSTANCES (2U) /** * @brief This define initializes all wdg instances to WDGIF_OFF_MODE */ #define WDG_INIT_PREVIOUS_MODE_ARRAY {WDGIF_OFF_MODE, WDGIF_OFF_MODE } /** * @brief This define initializes to WDG_UNINIT for variable that indicated the state of the driver */ #define WDG_INIT_STATUS_ARRAY {WDG_UNINIT, WDG_UNINIT } /** * @brief These defines indicate which Wdg Instances are enabled */ #define WDG_INSTANCE0 (WDG_IPW_ENABLE_INSTANCE0) #define WDG_INSTANCE1 (WDG_IPW_ENABLE_INSTANCE1) /** * @brief This constant specifies if the multi-core is used or not */ #define WDG_MULTICORE_ENABLED (STD_OFF) /** * @brief This define indicates if disabling the Wdg hardware is allowed */ #define WDG_DISABLE_ALLOWED (WDG_IPW_DEINIT) /** * @brief These variables will indicate the Wdg Initial Timeout and Wdg Max Timeout parameters in miliseconds for Wdg module 0 */ #define WDG_43_INSTANCE0_INITIAL_TIMEOUT_U16 (WDG_IPW_INSTANCE0_INITIAL_TIMEOUT_U16) #define WDG_43_INSTANCE0_MAX_TIMEOUT_U16 (WDG_IPW_INSTANCE0_MAX_TIMEOUT_U16) /** * @brief These variables will indicate the Wdg Initial Timeout and Wdg Max Timeout parameters in miliseconds for Wdg module 1 */ #define WDG_43_INSTANCE1_INITIAL_TIMEOUT_U16 (WDG_IPW_INSTANCE1_INITIAL_TIMEOUT_U16) #define WDG_43_INSTANCE1_MAX_TIMEOUT_U16 (WDG_IPW_INSTANCE1_MAX_TIMEOUT_U16) /** * @brief Compile switch to enable/disable the version information for Wdg module 1 */ #define WDG_43_INSTANCE0_VERSION_INFO_API (STD_ON) #define WDG_43_INSTANCE1_VERSION_INFO_API (STD_ON) /** * @brief Compile switch to enable/disable the Wdg_ChannelGetVersionInfo function. */ #define WDG_VERSION_INFO_API (STD_ON) /** * @brief This define indicates which instances of the Wdg hardware can be serviced directly */ #define WDG_DIRECT_SERVICE_INSTANCE0 (WDG_IPW_ENABLE_DIRECT_SERVICE_INSTANCE0) #define WDG_DIRECT_SERVICE_INSTANCE1 (WDG_IPW_ENABLE_DIRECT_SERVICE_INSTANCE1) /** * @brief This define indicates if servicing the Wdg hardware directly, without an external trigger, is allowed */ #define WDG_DIRECT_SERVICE (WDG_IPW_DIRECT_SERVICE) /** * @brief Define to disable unavailable functionality. */ #define WDG_CLEAR_RESET_REQUEST (STD_OFF) /** * @brief This define indicate that the watchdog is Enable or Disable User mode support */ #define WDG_ENABLE_USER_MODE_SUPPORT (STD_OFF) /** * @brief This variable will indicate if the ISR for WDG instances is used */ #define WDG_ISR0_USED (WDG_IPW_ISR0_USED) #define WDG_ISR1_USED (WDG_IPW_ISR1_USED) /** * @brief Compile switch to enable/disable development error detection for this module */ #define WDG_DEV_ERROR_DETECT (STD_OFF) /** * @brief Switch to globaly enable/disable the production error reporting. */ #define WDG_DISABLE_DEM_REPORT_ERROR_STATUS (STD_ON) /** * @brief perform checking marco MCAL_ENABLE_USER_MODE_SUPPORT available or not. */ #ifndef MCAL_ENABLE_USER_MODE_SUPPORT #if (STD_ON == WDG_ENABLE_USER_MODE_SUPPORT) #error MCAL_ENABLE_USER_MODE_SUPPORT is not enabled. For running Wdg in user mode, the MCAL_ENABLE_USER_MODE_SUPPORT needs to be defined #endif /* (STD_ON == WDG_ENABLE_USER_MODE_SUPPORT) */ #endif /* ifndef MCAL_ENABLE_USER_MODE_SUPPORT */ /** * @brief Define to enabled PreCompile Support. */ #define WDG_PRECOMPILE_SUPPORT (STD_OFF) /** * @brief This macros indicate the Wdg timeout value for Wdg module. */ #define WDG_TIMEOUT_VALUE_ARRAY {{(uint32)0,(uint32)500, (uint32)100}, \ {(uint32) 0, (uint32)2, (uint32) 0} \ } /*================================================================================================== * ENUMS ==================================================================================================*/ /*================================================================================================== * STRUCTURES AND OTHER TYPEDEFS ==================================================================================================*/ /*================================================================================================== * GLOBAL VARIABLE DECLARATIONS ==================================================================================================*/ /*================================================================================================== * FUNCTION PROTOTYPES ==================================================================================================*/ #ifdef __cplusplus } #endif /** @} */ #endif /* WDG_CFG_DEFINES_H */