123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- /*==================================================================================================
- * 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.
- ==================================================================================================*/
- #ifndef PLATFORM_H_
- #define PLATFORM_H_
- /**
- * @file
- *
- * @addtogroup Platform
- * @{
- */
- /*==================================================================================================
- * INCLUDE FILES
- ==================================================================================================*/
- #include "Platform_Cfg.h"
- /*==================================================================================================
- * SOURCE FILE VERSION INFORMATION
- ==================================================================================================*/
- #define PLATFORM_VENDOR_ID 43
- #define PLATFORM_MODULE_ID 255
- #define PLATFORM_AR_RELEASE_MAJOR_VERSION 4
- #define PLATFORM_AR_RELEASE_MINOR_VERSION 4
- #define PLATFORM_AR_RELEASE_REVISION_VERSION 0
- #define PLATFORM_SW_MAJOR_VERSION 1
- #define PLATFORM_SW_MINOR_VERSION 0
- #define PLATFORM_SW_PATCH_VERSION 0
- /*==================================================================================================
- * FILE VERSION CHECKS
- ==================================================================================================*/
- /* Check if current file and Platform_Cfg header file are of the same vendor */
- #if (PLATFORM_VENDOR_ID != PLATFORM_CFG_VENDOR_ID)
- #error "Platform.h and Platform_TypesDef.h have different vendor ids"
- #endif
- /* Check if current file and Platform_Cfg header file are of the same Autosar version */
- #if ((PLATFORM_AR_RELEASE_MAJOR_VERSION != PLATFORM_CFG_AR_RELEASE_MAJOR_VERSION) || \
- (PLATFORM_AR_RELEASE_MINOR_VERSION != PLATFORM_CFG_AR_RELEASE_MINOR_VERSION) || \
- (PLATFORM_AR_RELEASE_REVISION_VERSION != PLATFORM_CFG_AR_RELEASE_REVISION_VERSION) \
- )
- #error "AutoSar Version Numbers of Platform.h and Platform_Cfg.h are different"
- #endif
- /* Check if current file and Platform_Cfg header file are of the same Software version */
- #if ((PLATFORM_SW_MAJOR_VERSION != PLATFORM_CFG_SW_MAJOR_VERSION) || \
- (PLATFORM_SW_MINOR_VERSION != PLATFORM_CFG_SW_MINOR_VERSION) || \
- (PLATFORM_SW_PATCH_VERSION != PLATFORM_CFG_SW_PATCH_VERSION) \
- )
- #error "Software Version Numbers of Platform.h and Platform_Cfg.h are different"
- #endif
- /*==================================================================================================
- * FUNCTION PROTOTYPES
- ==================================================================================================*/
- #if defined(__cplusplus)
- extern "C" {
- #endif /* __cplusplus*/
- #define PLATFORM_START_SEC_CODE
- #include "Platform_MemMap.h"
- /**
- * @brief Initializes the paltform settings based on user configuration.
- *
- * @details This function is non-reentrant; it initializes the interrupts,
- * interrupt monitors (if available), as well as other platform specific settings
- * as defined for each SoC.
- *
- * @param[in] pConfig: pointer to platform configuration structure.
- * @return void
- *
- * @api
- *
- * */
- void Platform_Init(const Platform_ConfigType *pConfig);
- /**
- * @brief Configures (enables/disables) an interrupt request.
- *
- * @details This function is non-reentrant; it enables/disables the selected interrupt.
- *
- * @param[in] eIrqNumber: interrupt to be configured.
- * @param[in] bEnable: TRUE - enable interrupt, FALSE - disable interrupt.
- * @return Std_ReturnType: E_OK/E_NOT_OK; specific errors are reported through DET.
- *
- * @api
- *
- * */
- Std_ReturnType Platform_SetIrq(IRQn_Type eIrqNumber, boolean bEnable);
- /**
- * @brief Configures the priority of an interrupt request.
- *
- * @details This function is non-reentrant; it sets the priority for the selected interrupt.
- *
- * @param[in] eIrqNumber: interrupt number for which priority is configured.
- * @param[in] u8Priority: desired priority of the interrupt.
- * @return Std_ReturnType: E_OK/E_NOT_OK; specific errors are reported through DET.
- *
- * @api
- *
- * */
- Std_ReturnType Platform_SetIrqPriority(IRQn_Type eIrqNumber, uint8 u8Priority);
- /**
- * @brief Returns the priority of an interrupt request.
- *
- * @details This function is non-reentrant; it retrieves the current priority of
- * the selected interrupt.
- *
- * @param[in] eIrqNumber: interrupt number for which priority is returned.
- * @param[out] u8Priority: output parameter storing the priority of the interrupt.
- * @return Std_ReturnType: E_OK/E_NOT_OK; specific errors are reported through DET.
- *
- * @api
- *
- * */
- Std_ReturnType Platform_GetIrqPriority(IRQn_Type eIrqNumber, uint8 * u8Priority);
- /**
- * @brief Installs a new handler for an interrupt request.
- *
- * @details This function is non-reentrant; it replaces the current interrupt handler
- * for the selected interrupt with the new function provided as the second
- * parameter. The address of the old handler can be optionally stored in the third
- * parameter.
- *
- * @param[in] eIrqNumber: interrupt number for which priority is returned.
- * @param[in] pfNewHandler: function pointer for the new handler.
- * @param[out] pfOldHandler: function pointer that will store the address of the old handler
- * @note - this parameter can be passed as NULL if not needed.
- * @return pfOldHandler: E_OK/E_NOT_OK; specific errors are reported through DET.
- *
- * @api
- *
- * */
- Std_ReturnType Platform_InstallIrqHandler(IRQn_Type eIrqNumber,
- const Platform_IrqHandlerType pfNewHandler,
- Platform_IrqHandlerType* const pfOldHandler);
- #if (PLATFORM_INT_MONITOR == STD_ON)
- /**
- * @brief Configures (enables/disables) the interrupt monitor.
- *
- * @details This function is reentrant; it enables/disables the interrupt monitoring feature.
- *
- * @param[in] bEnable: TRUE - enable interrupt monitoring, FALSE - disable interrupt monitoring.
- * @return void
- *
- * @api
- *
- * */
- void Platform_SetIrqMonitor(boolean bEnable);
- /**
- * @brief Acknowledges a monitored interrupt has been served.
- *
- * @details This function is reentrant; it confirms that a monitored interrupt has been served.
- *
- * @param[in] bEnable: enable or disable monitoring, TRUE-enable FALSE-disablw.
- * @return void.
- *
- * @api
- *
- * */
- void Platform_AckIrq(IRQn_Type eIrqNumber);
- /**
- * @brief Selects an interrupt to monitor.
- *
- * @details This function is reentrant; it selects which interrupt is monitored on which
- * interrupt monitor.
- *
- * @param[in] u8Channel: Logical channel of interrupt monitor used.
- * @param[in] eIrqNumber: the interrupt vector to be monitored.
- * @return void.
- *
- * @api
- *
- * */
- void Platform_SelectMonitoredIrq(uint8 u8Channel , IRQn_Type eIrqNumber);
- /**
- * @brief Sets the latency for a monitored interrupt.
- *
- * @details This function is reentrant; it sets the accepted latency for the
- * monitored interrupt.
- *
- * @param[in] u8Channel: Logical channel of interrupt monitor used.
- * @param[in] u32Latency: The accepted latency for the monitored interrupt.
- * @return void.
- *
- * @api
- *
- * */
- void Platform_SetMonitoredIrqLatency(uint8 u8Channel, uint32 u32Latency);
- /**
- * @brief Resets the timer for an interrupt monitor.
- *
- * @details This function is reentrant; it resets the timer for the interrupt monitor.
- *
- * @param[in] u8Channel: Logical channel of interrupt monitor used.
- * @return void.
- *
- * @api
- *
- * */
- void Platform_ResetIrqMonitorTimer(uint8 u8Channel);
- /**
- * @brief Retrieves the status of an interrupt monitor.
- *
- * @details This function is reentrant; return the status of an interrupt monitor:
- * E_OK - latency not exceeded; E_NOT_OK - timer exceeded latency.
- *
- * @param[in] u8Channel: Logical channel of interrupt monitor used.
- * @return indicate that timer exceed defined latency or not
- * E_OK latency not exceeded
- * E_NOT_OK. timer exceeded latency
- *
- * @api
- *
- * */
- Std_ReturnType Platform_GetIrqMonitorStatus(uint8 u8Channel);
- #endif
- #define PLATFORM_STOP_SEC_CODE
- #include "Platform_MemMap.h"
- #if defined(__cplusplus)
- }
- #endif /* __cplusplus*/
- #endif /* PLATFORM_H_ */
- /** @} */
|