123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- #ifndef SYSTEM_IP_H_
- #define SYSTEM_IP_H_
- #include "System_Ip_Cfg.h"
- #include "Devassert.h"
- #define PLATFORM_SYSTEM_IP_VENDOR_ID 43
- #define PLATFORM_SYSTEM_IP_AR_RELEASE_MAJOR_VERSION 4
- #define PLATFORM_SYSTEM_IP_AR_RELEASE_MINOR_VERSION 4
- #define PLATFORM_SYSTEM_IP_AR_RELEASE_REVISION_VERSION 0
- #define PLATFORM_SYSTEM_IP_SW_MAJOR_VERSION 1
- #define PLATFORM_SYSTEM_IP_SW_MINOR_VERSION 0
- #define PLATFORM_SYSTEM_IP_SW_PATCH_VERSION 0
- #if (PLATFORM_SYSTEM_IP_VENDOR_ID != PLATFORM_SYSTEM_IP_CFG_TYPES_VENDOR_ID)
- #error "System_Ip.h and System_Ip_Cfg.h have different vendor ids"
- #endif
- #if ((PLATFORM_SYSTEM_IP_SW_MAJOR_VERSION != PLATFORM_SYSTEM_IP_CFG_SW_MAJOR_VERSION) || \
- (PLATFORM_SYSTEM_IP_SW_MINOR_VERSION != PLATFORM_SYSTEM_IP_CFG_SW_MINOR_VERSION) || \
- (PLATFORM_SYSTEM_IP_SW_PATCH_VERSION != PLATFORM_SYSTEM_IP_CFG_SW_PATCH_VERSION) \
- )
- #error "Software Version Numbers of System_Ip.h and System_Ip_Cfg.h are different"
- #endif
- #define PLATFORM_START_SEC_CODE
- #include "Platform_MemMap.h"
- #if (SYSTEM_IP_ARM_CORTEXM4 == STD_ON)
- void System_Ip_ConfigIrq(System_Ip_IrqType eIrq, boolean bEnable);
- #endif
- #ifdef MCM_HAS_WABS_SUPPORTED
- void System_Ip_ClearWriteAbortFlag(void);
- #endif
- #ifdef MCM_HAS_PLATFORM_REVISION
- uint32 System_Ip_GetPlatformRevision(void);
- #endif
- #define PLATFORM_STOP_SEC_CODE
- #include "Platform_MemMap.h"
- #endif
|