mirror of https://github.com/acidanthera/audk.git
Arm Packages: Fix builds for XCODE32 toolchain
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12509 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
41b152c5f6
commit
89bbce116a
|
@ -27,7 +27,7 @@ ASM_PFX(ArmCpuSynchronizeWait):
|
||||||
cmp r0, #ARM_CPU_EVENT_BOOT_MEM_INIT
|
cmp r0, #ARM_CPU_EVENT_BOOT_MEM_INIT
|
||||||
// The SCU enabled is the event to tell us the Init Boot Memory is initialized
|
// The SCU enabled is the event to tell us the Init Boot Memory is initialized
|
||||||
bx lr
|
bx lr
|
||||||
b CArmCpuSynchronizeWait
|
b ASM_PFX(CArmCpuSynchronizeWait)
|
||||||
|
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
|
@ -43,7 +43,7 @@ ASM_PFX(ArmCpuSynchronizeWait):
|
||||||
cmp r0, #ARM_CPU_EVENT_BOOT_MEM_INIT
|
cmp r0, #ARM_CPU_EVENT_BOOT_MEM_INIT
|
||||||
// The SCU enabled is the event to tell us the Init Boot Memory is initialized
|
// The SCU enabled is the event to tell us the Init Boot Memory is initialized
|
||||||
beq ArmWaitScuEnabled
|
beq ArmWaitScuEnabled
|
||||||
b CArmCpuSynchronizeWait
|
b ASM_PFX(CArmCpuSynchronizeWait)
|
||||||
|
|
||||||
// IN None
|
// IN None
|
||||||
// OUT r0 = SCU Base Address
|
// OUT r0 = SCU Base Address
|
||||||
|
|
|
@ -34,11 +34,11 @@ ASM_PFX(ArmCpuSynchronizeWait):
|
||||||
cmp r0, #ARM_CPU_EVENT_BOOT_MEM_INIT
|
cmp r0, #ARM_CPU_EVENT_BOOT_MEM_INIT
|
||||||
// The SCU enabled is the event to tell us the Init Boot Memory is initialized
|
// The SCU enabled is the event to tell us the Init Boot Memory is initialized
|
||||||
beq ArmWaitGicDistributorEnabled
|
beq ArmWaitGicDistributorEnabled
|
||||||
b CArmCpuSynchronizeWait
|
bx ASM_PFX(CArmCpuSynchronizeWait)
|
||||||
|
|
||||||
// IN None
|
// IN None
|
||||||
ArmWaitGicDistributorEnabled:
|
ArmWaitGicDistributorEnabled:
|
||||||
LoadConstantToReg (_gPcd_FixedAtBuild_PcdGicDistributorBase, r0)
|
LoadConstantToReg (ASM_PFX(_gPcd_FixedAtBuild_PcdGicDistributorBase), r0)
|
||||||
ldr r0, [r0]
|
ldr r0, [r0]
|
||||||
_WaitGicDistributor:
|
_WaitGicDistributor:
|
||||||
ldr r1, [r0, #ARM_GIC_ICDDCR]
|
ldr r1, [r0, #ARM_GIC_ICDDCR]
|
||||||
|
|
|
@ -28,8 +28,8 @@ GCC_ASM_IMPORT(CArmCpuSynchronizeWait)
|
||||||
ASM_PFX(ArmCpuSynchronizeWait):
|
ASM_PFX(ArmCpuSynchronizeWait):
|
||||||
cmp r0, #ARM_CPU_EVENT_BOOT_MEM_INIT
|
cmp r0, #ARM_CPU_EVENT_BOOT_MEM_INIT
|
||||||
// The SCU enabled is the event to tell us the Init Boot Memory is initialized
|
// The SCU enabled is the event to tell us the Init Boot Memory is initialized
|
||||||
beq ArmWaitScuEnabled
|
beq ASM_PFX(ArmWaitScuEnabled)
|
||||||
b CArmCpuSynchronizeWait
|
b ASM_PFX(CArmCpuSynchronizeWait)
|
||||||
|
|
||||||
// IN None
|
// IN None
|
||||||
// OUT r0 = SCU Base Address
|
// OUT r0 = SCU Base Address
|
||||||
|
@ -48,5 +48,5 @@ ASM_PFX(ArmWaitScuEnabled):
|
||||||
add r0, r0, #A9_SCU_CONTROL_OFFSET
|
add r0, r0, #A9_SCU_CONTROL_OFFSET
|
||||||
ldr r0, [r0]
|
ldr r0, [r0]
|
||||||
cmp r0, #1
|
cmp r0, #1
|
||||||
bne ArmWaitScuEnabled
|
bne ASM_PFX(ArmWaitScuEnabled)
|
||||||
bx lr
|
bx lr
|
||||||
|
|
|
@ -119,6 +119,21 @@
|
||||||
.long (_Data) ; \
|
.long (_Data) ; \
|
||||||
1:
|
1:
|
||||||
|
|
||||||
|
// Convert the (ClusterId,CoreId) into a Core Position
|
||||||
|
// We assume there are 4 cores per cluster
|
||||||
|
#define GetCorePositionInStack(Pos, MpId, Tmp) \
|
||||||
|
lsr Pos, MpId, #6 ; \
|
||||||
|
and Tmp, MpId, #3 ; \
|
||||||
|
add Pos, Pos, Tmp
|
||||||
|
|
||||||
|
// Reserve a region at the top of the Primary Core stack
|
||||||
|
// for Global variables for the XIP phase
|
||||||
|
#define SetPrimaryStack(StackTop, GlobalSize, Tmp) \
|
||||||
|
and Tmp, GlobalSize, #7 ; \
|
||||||
|
rsbne Tmp, Tmp, #8 ; \
|
||||||
|
add GlobalSize, GlobalSize, Tmp ; \
|
||||||
|
sub sp, StackTop, GlobalSize
|
||||||
|
|
||||||
|
|
||||||
#elif defined (__GNUC__)
|
#elif defined (__GNUC__)
|
||||||
|
|
||||||
|
|
|
@ -184,7 +184,7 @@ GetPerformanceCounterProperties (
|
||||||
|
|
||||||
if (EndValue != NULL) {
|
if (EndValue != NULL) {
|
||||||
// Timer counts down to 0x0
|
// Timer counts down to 0x0
|
||||||
*EndValue = 0xFFFFFFFFFFFFFFFF;;
|
*EndValue = 0xFFFFFFFFFFFFFFFFUL;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (UINT64)ArmArchTimerGetTimerFreq ();
|
return (UINT64)ArmArchTimerGetTimerFreq ();
|
||||||
|
|
|
@ -68,7 +68,7 @@
|
||||||
|
|
||||||
GCC:*_*_ARM_PLATFORM_FLAGS == -mcpu=cortex-a9 -mfpu=neon -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include/Platform/CTA9x4
|
GCC:*_*_ARM_PLATFORM_FLAGS == -mcpu=cortex-a9 -mfpu=neon -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include/Platform/CTA9x4
|
||||||
|
|
||||||
XCODE:*_*_ARM_PLATFORM_FLAGS == -mcpu=cortex-a9 -mfpu=neon -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include/Platform/CTA9x4
|
XCODE:*_*_ARM_PLATFORM_FLAGS == -march=armv7-a -mfpu=neon -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include/Platform/CTA9x4
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
#
|
#
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
|
|
||||||
GCC:*_*_ARM_PLATFORM_FLAGS == -mcpu=cortex-a9 -mfpu=neon -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include/Platform/RTSM
|
GCC:*_*_ARM_PLATFORM_FLAGS == -mcpu=cortex-a9 -mfpu=neon -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include/Platform/RTSM
|
||||||
|
|
||||||
XCODE:*_*_ARM_PLATFORM_FLAGS == -mcpu=cortex-a9 -mfpu=neon -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include/Platform/RTSM
|
XCODE:*_*_ARM_PLATFORM_FLAGS == -march=armv7-a -mfpu=neon -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include -I$(WORKSPACE)/ArmPlatformPkg/ArmVExpressPkg/Include/Platform/RTSM
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
#
|
#
|
||||||
|
|
|
@ -77,7 +77,7 @@ _SetupStack:
|
||||||
_GetStackBase:
|
_GetStackBase:
|
||||||
// Compute Base of Normal stacks for CPU Cores
|
// Compute Base of Normal stacks for CPU Cores
|
||||||
// Is it MpCore system
|
// Is it MpCore system
|
||||||
bl ArmIsMpCore
|
bl ASM_PFX(ArmIsMpCore)
|
||||||
cmp r0, #0
|
cmp r0, #0
|
||||||
// Case it is not an MP Core system. Just setup the primary core
|
// Case it is not an MP Core system. Just setup the primary core
|
||||||
beq _SetupUnicoreStack
|
beq _SetupUnicoreStack
|
||||||
|
|
|
@ -42,7 +42,7 @@ ASM_PFX(_ModuleEntryPoint):
|
||||||
blx ASM_PFX(ArmPlatformSecBootAction)
|
blx ASM_PFX(ArmPlatformSecBootAction)
|
||||||
|
|
||||||
// Set VBAR to the start of the exception vectors in Secure Mode
|
// Set VBAR to the start of the exception vectors in Secure Mode
|
||||||
ldr r0, =SecVectorTable
|
LoadConstantToReg (ASM_PFX(SecVectorTable), r0)
|
||||||
bl ASM_PFX(ArmWriteVBar)
|
bl ASM_PFX(ArmWriteVBar)
|
||||||
|
|
||||||
_IdentifyCpu:
|
_IdentifyCpu:
|
||||||
|
|
Loading…
Reference in New Issue