mirror of
https://github.com/Dev-KATECH/ADM.git
synced 2026-05-17 09:53:59 +09:00
289 lines
12 KiB
C
289 lines
12 KiB
C
/*==================================================================================================
|
|
* 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 : 0.9.0
|
|
* Build Version : S32K3_RTD_0_9_0__ASR_REL_4_4_REV_0000_20210326
|
|
*
|
|
* (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 Det.c
|
|
*
|
|
* @addtogroup DET_MODULE
|
|
* @{
|
|
*/
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"{
|
|
#endif
|
|
|
|
/*
|
|
* @page misra_violations MISRA-C:2012 violations
|
|
*
|
|
* @section Det_c_REF_1
|
|
* Violates MISRA 2012 Required Directive 4.10, Precautions shall be taken in order to prevent the contents of a header file being included more than once.
|
|
* This violation is not fixed since the inclusion of <MA>_MemMap.h is as per AUTOSAR requirement [SWS_MemMap_00003].
|
|
*
|
|
* @section Det_c_REF_2
|
|
* Violates MISRA 2012 Advisory Rule 20.1, #Include directives should only be preceded by preprocessor directives or comments.
|
|
* <MA>_MemMap.h is included after each section define in order to set the current memory section as defined by AUTOSAR.
|
|
*/
|
|
|
|
/*==================================================================================================
|
|
* INCLUDE FILES
|
|
* 1) system and project includes
|
|
* 2) needed interfaces from external units
|
|
* 3) internal and external interfaces from this unit
|
|
==================================================================================================*/
|
|
/**
|
|
* @file Det.c
|
|
* @requirements DET004
|
|
*/
|
|
#include "Std_Types.h"
|
|
#include "Mcal.h"
|
|
#include "OsIf.h"
|
|
#include "Det.h"
|
|
|
|
/*==================================================================================================
|
|
* LOCAL MACROS
|
|
==================================================================================================*/
|
|
#define DET_VENDOR_ID_C 43
|
|
#define DET_AR_RELEASE_MAJOR_VERSION_C 4
|
|
#define DET_AR_RELEASE_MINOR_VERSION_C 4
|
|
#define DET_AR_RELEASE_REVISION_VERSION_C 0
|
|
#define DET_SW_MAJOR_VERSION_C 0
|
|
#define DET_SW_MINOR_VERSION_C 9
|
|
#define DET_SW_PATCH_VERSION_C 0
|
|
/*==================================================================================================
|
|
* FILE VERSION CHECKS
|
|
==================================================================================================*/
|
|
/* Check if source file and DET header file are of the same vendor */
|
|
#if (DET_VENDOR_ID_C != DET_VENDOR_ID)
|
|
#error "Det.c and Det.h have different vendor ids"
|
|
#endif
|
|
|
|
/* Check if source file and DET header file are of the same Autosar version */
|
|
#if ((DET_AR_RELEASE_MAJOR_VERSION_C != DET_AR_RELEASE_MAJOR_VERSION) || \
|
|
(DET_AR_RELEASE_MINOR_VERSION_C != DET_AR_RELEASE_MINOR_VERSION) || \
|
|
(DET_AR_RELEASE_REVISION_VERSION_C != DET_AR_RELEASE_REVISION_VERSION))
|
|
#error "AutoSar Version Numbers of Det.c and Det.h are different"
|
|
#endif
|
|
|
|
/* Check if source file and DET header file are of the same Software version */
|
|
#if ((DET_SW_MAJOR_VERSION_C != DET_SW_MAJOR_VERSION) || \
|
|
(DET_SW_MINOR_VERSION_C != DET_SW_MINOR_VERSION) || \
|
|
(DET_SW_PATCH_VERSION_C != DET_SW_PATCH_VERSION))
|
|
#error "Software Version Numbers of Det.c and Det.h are different"
|
|
#endif
|
|
|
|
#ifndef DISABLE_MCAL_INTERMODULE_ASR_CHECK
|
|
/* Check if DET source file and STD header file are of the same Autosar version */
|
|
#if ((DET_AR_RELEASE_MAJOR_VERSION_C != STD_AR_RELEASE_MAJOR_VERSION) || \
|
|
(DET_AR_RELEASE_MINOR_VERSION_C != STD_AR_RELEASE_MINOR_VERSION))
|
|
#error "AutoSar Version Numbers of Det.c and Std_Types.h are different"
|
|
#endif
|
|
#endif
|
|
/*==================================================================================================
|
|
* LOCAL TYPEDEFS (STRUCTURES, UNIONS, ENUMS)
|
|
==================================================================================================*/
|
|
|
|
/*==================================================================================================
|
|
* LOCAL CONSTANTS
|
|
==================================================================================================*/
|
|
|
|
|
|
/*==================================================================================================
|
|
* LOCAL VARIABLES
|
|
==================================================================================================*/
|
|
|
|
|
|
/*==================================================================================================
|
|
* GLOBAL CONSTANTS
|
|
==================================================================================================*/
|
|
|
|
|
|
/*==================================================================================================
|
|
* GLOBAL VARIABLES
|
|
==================================================================================================*/
|
|
#define DET_START_SEC_VAR_NO_INIT_8_NO_CACHEABLE
|
|
/*
|
|
* @violates @ref Det_c_REF_1 Precautions shall be taken in order to prevent the contents of a header file being included more than once
|
|
* @violates @ref Det_c_REF_2 #Include directives should only be preceded by preprocessor directives or comments
|
|
*/
|
|
#include "Det_MemMap.h"
|
|
/* Variables to store last DET error */
|
|
uint8 Det_InstanceId[DET_NO_ECU_CORES]; /**< @brief DET instance ID*/
|
|
uint8 Det_ApiId[DET_NO_ECU_CORES]; /**< @brief DET API ID*/
|
|
uint8 Det_ErrorId[DET_NO_ECU_CORES]; /**< @brief DET Error ID*/
|
|
/* Variables to store last DET runtime error */
|
|
uint8 Det_RuntimeInstanceId[DET_NO_ECU_CORES]; /**< @brief DET instance ID*/
|
|
uint8 Det_RuntimeApiId[DET_NO_ECU_CORES]; /**< @brief DET API ID*/
|
|
uint8 Det_RuntimeErrorId[DET_NO_ECU_CORES]; /**< @brief DET Error ID*/
|
|
/* Variables to store last DET transient error */
|
|
uint8 Det_TransientInstanceId[DET_NO_ECU_CORES]; /**< @brief DET instance ID*/
|
|
uint8 Det_TransientApiId[DET_NO_ECU_CORES]; /**< @brief DET API ID*/
|
|
uint8 Det_TransientFaultId[DET_NO_ECU_CORES]; /**< @brief DET Error ID*/
|
|
#define DET_STOP_SEC_VAR_NO_INIT_8_NO_CACHEABLE
|
|
/*
|
|
* @violates @ref Det_c_REF_1 Precautions shall be taken in order to prevent the contents of a header file being included more than once
|
|
* @violates @ref Det_c_REF_2 #Include directives should only be preceded by preprocessor directives or comments
|
|
*/
|
|
#include "Det_MemMap.h"
|
|
|
|
#define DET_START_SEC_VAR_NO_INIT_16_NO_CACHEABLE
|
|
/*
|
|
* @violates @ref Det_c_REF_1 Precautions shall be taken in order to prevent the contents of a header file being included more than once
|
|
* @violates @ref Det_c_REF_2 #Include directives should only be preceded by preprocessor directives or comments
|
|
*/
|
|
#include "Det_MemMap.h"
|
|
uint16 Det_TransientModuleId[DET_NO_ECU_CORES]; /**< @brief DET module ID*/
|
|
uint16 Det_ModuleId[DET_NO_ECU_CORES]; /**< @brief DET module ID*/
|
|
uint16 Det_RuntimeModuleId[DET_NO_ECU_CORES]; /**< @brief DET module ID*/
|
|
#define DET_STOP_SEC_VAR_NO_INIT_16_NO_CACHEABLE
|
|
/*
|
|
* @violates @ref Det_c_REF_1 Precautions shall be taken in order to prevent the contents of a header file being included more than once
|
|
* @violates @ref Det_c_REF_2 #Include directives should only be preceded by preprocessor directives or comments
|
|
*/
|
|
#include "Det_MemMap.h"
|
|
|
|
|
|
/*==================================================================================================
|
|
* LOCAL FUNCTION PROTOTYPES
|
|
==================================================================================================*/
|
|
|
|
|
|
/*==================================================================================================
|
|
* LOCAL FUNCTIONS
|
|
==================================================================================================*/
|
|
/* put all DET code into defined section */
|
|
|
|
/*==================================================================================================
|
|
* GLOBAL FUNCTIONS
|
|
==================================================================================================*/
|
|
#define DET_START_SEC_CODE
|
|
#include "Det_MemMap.h"
|
|
|
|
/*================================================================================================*/
|
|
/**
|
|
* @brief This function initializes the DET module.
|
|
* @details This is a function stub only. Functionality is void in this implementation
|
|
*
|
|
* @requirements DET008
|
|
*
|
|
*/
|
|
void Det_Init(void)
|
|
{
|
|
|
|
}
|
|
|
|
/*================================================================================================*/
|
|
/**
|
|
* @brief This function provides the service for reporting of development errors.
|
|
* @details This is a function stub only. It only loads the global IDs with the IDs of the latest error that occured
|
|
*
|
|
* @param[in] ModuleId Module ID of Calling Module
|
|
* @param[in] InstanceId Index of Module starting at 0
|
|
* @param[in] ApiId ID of API with Error
|
|
* @param[in] ErrorId ID of Error
|
|
*
|
|
* @requirement DET009
|
|
*/
|
|
Std_ReturnType Det_ReportError(uint16 ModuleId, uint8 InstanceId, uint8 ApiId, uint8 ErrorId)
|
|
{
|
|
uint32 u32CoreId = (uint32)OsIf_GetCoreID();
|
|
|
|
Det_ModuleId[u32CoreId] = ModuleId;
|
|
Det_InstanceId[u32CoreId] = InstanceId;
|
|
Det_ApiId[u32CoreId] = ApiId;
|
|
Det_ErrorId[u32CoreId] = ErrorId;
|
|
|
|
return E_OK;
|
|
}
|
|
|
|
/*================================================================================================*/
|
|
/**
|
|
* @brief This function provides the service for reporting of runtime errors.
|
|
* @details This is a function stub only. It only loads the global IDs with the IDs of the latest error that occured
|
|
*
|
|
* @param[in] ModuleId Module ID of Calling Module
|
|
* @param[in] InstanceId Index of Module starting at 0
|
|
* @param[in] ApiId ID of API with Error
|
|
* @param[in] ErrorId ID of Error
|
|
*
|
|
* @requirement SWS_Det_01001
|
|
*/
|
|
Std_ReturnType Det_ReportRuntimeError(uint16 ModuleId, uint8 InstanceId, uint8 ApiId, uint8 ErrorId)
|
|
{
|
|
uint32 u32CoreId = (uint32)OsIf_GetCoreID();
|
|
|
|
Det_RuntimeModuleId[u32CoreId] = ModuleId;
|
|
Det_RuntimeInstanceId[u32CoreId] = InstanceId;
|
|
Det_RuntimeApiId[u32CoreId] = ApiId;
|
|
Det_RuntimeErrorId[u32CoreId] = ErrorId;
|
|
|
|
return E_OK;
|
|
}
|
|
|
|
/*================================================================================================*/
|
|
/**
|
|
* @brief This function provides the service for reporting of transient errors.
|
|
* @details This is a function stub only. It only loads the global IDs with the IDs of the latest error that occured
|
|
*
|
|
* @param[in] ModuleId Module ID of Calling Module
|
|
* @param[in] InstanceId Index of Module starting at 0
|
|
* @param[in] ApiId ID of API with Error
|
|
* @param[in] FaultId ID of Fault
|
|
*
|
|
* @requirement SWS_Det_01001
|
|
*/
|
|
Std_ReturnType Det_ReportTransientFault(uint16 ModuleId, uint8 InstanceId, uint8 ApiId, uint8 FaultId)
|
|
{
|
|
uint32 u32CoreId = (uint32)OsIf_GetCoreID();
|
|
|
|
Det_TransientModuleId[u32CoreId] = ModuleId;
|
|
Det_TransientInstanceId[u32CoreId] = InstanceId;
|
|
Det_TransientApiId[u32CoreId] = ApiId;
|
|
Det_TransientFaultId[u32CoreId] = FaultId;
|
|
|
|
return E_OK;
|
|
}
|
|
|
|
/*================================================================================================*/
|
|
/**
|
|
* @brief This function provides the starting after the Det_Init has been called.
|
|
* @details This is a function stub only. Det_Init and Det_Start shall always be available.
|
|
* Functionality is void in this implementation
|
|
*
|
|
* @requirement DET010
|
|
*/
|
|
void Det_Start(void)
|
|
{
|
|
|
|
}
|
|
|
|
#define DET_STOP_SEC_CODE
|
|
#include "Det_MemMap.h"
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|