/*==================================================================================================
*   Project              : RTD AUTOSAR 4.4
*   Platform             : CORTEXM
*   Peripheral           : FLEXCAN
*   Dependencies         : 
*
*   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 CAN_IRQ_H
#define CAN_IRQ_H

/**
*   @file    Can_Irq.h
*   @version 1.0.0
*
*   @brief   AUTOSAR Can - module interface.
*   @details API header for CAN driver.
*
*   @addtogroup CAN_DRIVER
*   @{
*/

#ifdef __cplusplus
extern "C"{
#endif

/*
* @page misra_violations MISRA-C:2012 violations
*
* @section [global]
* Violates MISRA 2012 Required Rule 5.1, External identifiers shall be distinct.
* The used compilers use more than 31 chars for identifiers.
*
* @section [global]
* Violates MISRA 2012 Required Rule 5.2, Identifiers declared in the same scope and name space shall be distinct.
* The used compilers use more than 31 chars for identifiers.
*
* @section [global]
* Violates MISRA 2012 Required Rule 5.4, Macro identifiers shall be distinct.
* The used compilers use more than 31 chars for identifiers.
*
* @section [global]
* Violates MISRA 2012 Required Rule 5.5, Identifiers shall be distinct from macro names.
* The used compilers use more than 31 chars for identifiers.
*
* @section Can_Irq_h_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 Can_Irq_h_REF_2
* Violates MISRA 2012 Advisory Rule 20.1, #include directives should only be preceded by preprocessor
* directives or comments.
*/

/*==================================================================================================
*                                        INCLUDE FILES
* 1) system and project includes
* 2) needed interfaces from external units
* 3) internal and external interfaces from this unit
==================================================================================================*/
#include "Can_Ipw_Cfg.h"
/*==================================================================================================
*                              SOURCE FILE VERSION INFORMATION
==================================================================================================*/
#define CAN_IRQ_VENDOR_ID                   43
#define CAN_IRQ_AR_RELEASE_MAJOR_VERSION    4
#define CAN_IRQ_AR_RELEASE_MINOR_VERSION    4
#define CAN_IRQ_AR_RELEASE_REVISION_VERSION 0
#define CAN_IRQ_SW_MAJOR_VERSION            1
#define CAN_IRQ_SW_MINOR_VERSION            0
#define CAN_IRQ_SW_PATCH_VERSION            0

/*==================================================================================================
*                                     FILE VERSION CHECKS
==================================================================================================*/
/* Check if current file and Can_Ipw_Cfg.h header file are of the same vendor */
#if (CAN_IRQ_VENDOR_ID != CAN_IPW_CFG_VENDOR_ID)
    #error "Can_Irq.h and Can_Ipw_Cfg.h have different vendor ids"
#endif
/* Check if current file and Can_Ipw_Cfg.h file are of the same Autosar version */
#if ((CAN_IRQ_AR_RELEASE_MAJOR_VERSION    != CAN_IPW_CFG_AR_RELEASE_MAJOR_VERSION) || \
     (CAN_IRQ_AR_RELEASE_MINOR_VERSION    != CAN_IPW_CFG_AR_RELEASE_MINOR_VERSION) || \
     (CAN_IRQ_AR_RELEASE_REVISION_VERSION != CAN_IPW_CFG_AR_RELEASE_REVISION_VERSION))
    #error "AutoSar Version Numbers of Can_Irq.h and Can_Ipw_Cfg.h are different"
#endif
/* Check if current file and Can_Ipw_Cfg header file are of the same Software version */
#if ((CAN_IRQ_SW_MAJOR_VERSION != CAN_IPW_CFG_SW_MAJOR_VERSION) || \
     (CAN_IRQ_SW_MINOR_VERSION != CAN_IPW_CFG_SW_MINOR_VERSION) || \
     (CAN_IRQ_SW_PATCH_VERSION != CAN_IPW_CFG_SW_PATCH_VERSION))
    #error "Software Version Numbers of Can_Irq.h and Can_Ipw_Cfg.h are different"
#endif
/*==================================================================================================
*                                    FUNCTION PROTOTYPES
==================================================================================================*/
#define CAN_START_SEC_CODE
/* @violates @ref Can_Irq_h_REF_1 MISRA 2012 Required Directive 4.10 */
#include "Can_MemMap.h"

#if (CAN_MB_INTERRUPT_SUPPORT == STD_ON)
/* Function process Message Buffer Interrupt */
void Can_ProcessMesgBufferCommonInterrupt
(
    uint8 u8CtrlOffset,
    uint8 u8MbIdx,
    Can_MbType mbType
);
#endif /* (CAN_MB_INTERRUPT_SUPPORT == STD_ON) */

/* Function process Bus Off Interrupt */
void Can_ProcessBusOffInterrupt
(
    uint8 u8CtrlOffset
);

#if (CAN_ERROR_INTERRUPT_SUPPORT == STD_ON)
/* Function process Error Interrupt */
void Can_ProcessErrorInterrupt
(
    uint8 u8CtrlOffset,
    boolean bIsErrFast
);
#endif /* (CAN_ERROR_INTERRUPT_SUPPORT == STD_ON) */

#if (CAN_PUBLIC_ICOM_SUPPORT == STD_ON)
void Can_ProcessPNInterrupt(uint8 u8CtrlOffset);
#endif /* (CAN_PUBLIC_ICOM_SUPPORT == STD_OFF) */

#define CAN_STOP_SEC_CODE
/* @violates @ref Can_Irq_h_REF_1 MISRA 2012 Required Directive 4.10 */
/* @violates @ref Can_Irq_h_REF_2 MISRA 2012 Advisory Rule 20.1 */
#include "Can_MemMap.h"

#ifdef __cplusplus
}
#endif

/** @} */

#endif /* CAN_IRQ_H */