|
|
@ -4,8 +4,8 @@
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @file Startup_XMC4500.s
|
|
|
|
* @file Startup_XMC4500.s
|
|
|
|
* XMC4000 Device Series
|
|
|
|
* XMC4000 Device Series
|
|
|
|
* @version V1.0
|
|
|
|
* @version V1.1
|
|
|
|
* @date Jan 2013
|
|
|
|
* @date Augus 2013
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 IAR Systems. All rights reserved.
|
|
|
|
* Copyright (C) 2012 IAR Systems. All rights reserved.
|
|
|
|
* Copyright (C) 2012 Infineon Technologies AG. All rights reserved.
|
|
|
|
* Copyright (C) 2012 Infineon Technologies AG. All rights reserved.
|
|
|
@ -28,6 +28,8 @@
|
|
|
|
/* ***************************************************************************
|
|
|
|
/* ***************************************************************************
|
|
|
|
V1.0 January, 30 2013: In ths version a workoraound for the erratum PMU_CM.001
|
|
|
|
V1.0 January, 30 2013: In ths version a workoraound for the erratum PMU_CM.001
|
|
|
|
is implmented (patch for the Exception and interrupt handlers)
|
|
|
|
is implmented (patch for the Exception and interrupt handlers)
|
|
|
|
|
|
|
|
V1.1 Augsut, 17 2013: Fix the bug of preprocessor due to workoraound for
|
|
|
|
|
|
|
|
the erratum PMU_CM.001, and the bug of stack pointer alignment to a 8 byte boundary
|
|
|
|
|
|
|
|
|
|
|
|
**************************************************************************** */
|
|
|
|
**************************************************************************** */
|
|
|
|
|
|
|
|
|
|
|
@ -62,8 +64,8 @@ __iar_init$$done: ; The vector table is not needed
|
|
|
|
; */
|
|
|
|
; */
|
|
|
|
|
|
|
|
|
|
|
|
;set WORKAROUND_PMU_CM001 under Options for target
|
|
|
|
;set WORKAROUND_PMU_CM001 under Options for target
|
|
|
|
;Initialize varaible WORKAROUND_PMU_CM001 as TRUE
|
|
|
|
;define WORKAROUND_PMU_CM001 as TRUE
|
|
|
|
WORKAROUND_PMU_CM001 SET 1
|
|
|
|
#define WORKAROUND_PMU_CM001 1
|
|
|
|
|
|
|
|
|
|
|
|
;/* A macro to setup a vector table entry based on STEP ID */
|
|
|
|
;/* A macro to setup a vector table entry based on STEP ID */
|
|
|
|
#ifdef WORKAROUND_PMU_CM001
|
|
|
|
#ifdef WORKAROUND_PMU_CM001
|
|
|
@ -84,15 +86,15 @@ ProxyHandler macro
|
|
|
|
SECTION .text:CODE:REORDER:NOROOT(1)
|
|
|
|
SECTION .text:CODE:REORDER:NOROOT(1)
|
|
|
|
\1
|
|
|
|
\1
|
|
|
|
B \1
|
|
|
|
B \1
|
|
|
|
endm
|
|
|
|
|
|
|
|
;/* And then define a veneer that will branch to the final excp handler */
|
|
|
|
;/* And then define a veneer that will branch to the final excp handler */
|
|
|
|
ProxyHandler_Veneer macro
|
|
|
|
PUBWEAK \1_Veneer
|
|
|
|
PUBWEAK \1
|
|
|
|
|
|
|
|
SECTION .text:CODE:REORDER:NOROOT(2)
|
|
|
|
SECTION .text:CODE:REORDER:NOROOT(2)
|
|
|
|
\1
|
|
|
|
\1_Veneer:
|
|
|
|
LDR R0, =ProxyHandler
|
|
|
|
LDR R0, =\1
|
|
|
|
PUSH {LR}
|
|
|
|
PUSH {LR} /* Breaks AAPCS */
|
|
|
|
|
|
|
|
SUB SP,#4 /* Restores AAPCS */
|
|
|
|
BLX R0
|
|
|
|
BLX R0
|
|
|
|
|
|
|
|
ADD SP,#4
|
|
|
|
POP {PC}
|
|
|
|
POP {PC}
|
|
|
|
endm
|
|
|
|
endm
|
|
|
|
;/* No prefetch bug, hence define only the final exception handler */
|
|
|
|
;/* No prefetch bug, hence define only the final exception handler */
|
|
|
@ -120,11 +122,11 @@ __vector_table
|
|
|
|
DCD 0
|
|
|
|
DCD 0
|
|
|
|
DCD 0
|
|
|
|
DCD 0
|
|
|
|
DCD 0
|
|
|
|
DCD 0
|
|
|
|
ExcpVector SVC_Handler ; SVCall Handler
|
|
|
|
ExcpVector SVC_Handler
|
|
|
|
ExcpVector DebugMon_Handler
|
|
|
|
ExcpVector DebugMon_Handler
|
|
|
|
DCD 0
|
|
|
|
DCD 0
|
|
|
|
ExcpVector PendSV_Handler ; PendSV Handler
|
|
|
|
ExcpVector PendSV_Handler
|
|
|
|
ExcpVector SysTick_Handler ; SysTick Handler
|
|
|
|
ExcpVector SysTick_Handler
|
|
|
|
|
|
|
|
|
|
|
|
; Interrupt Handlers for Service Requests (SR) from XMC4500 Peripherals
|
|
|
|
; Interrupt Handlers for Service Requests (SR) from XMC4500 Peripherals
|
|
|
|
ExcpVector SCU_0_IRQHandler ; Handler name for SR SCU_0
|
|
|
|
ExcpVector SCU_0_IRQHandler ; Handler name for SR SCU_0
|
|
|
|