]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPkg/Drivers/ArmCpuLib/ArmCortexA9Lib/ArmCortexA9Helper.S
Arm Packages: Fix builds for XCODE32 toolchain
[mirror_edk2.git] / ArmPkg / Drivers / ArmCpuLib / ArmCortexA9Lib / ArmCortexA9Helper.S
1 //
2 // Copyright (c) 2011, ARM Limited. All rights reserved.
3 //
4 // This program and the accompanying materials
5 // are licensed and made available under the terms and conditions of the BSD License
6 // which accompanies this distribution. The full text of the license may be found at
7 // http://opensource.org/licenses/bsd-license.php
8 //
9 // THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 // WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11 //
12 //
13
14 #include <Library/ArmCpuLib.h>
15 #include <Chipset/ArmCortexA9.h>
16
17 .text
18 .align 3
19
20 GCC_ASM_EXPORT(ArmCpuSynchronizeWait)
21 GCC_ASM_EXPORT(ArmGetScuBaseAddress)
22 GCC_ASM_IMPORT(CArmCpuSynchronizeWait)
23
24 // VOID
25 // ArmCpuSynchronizeWait (
26 // IN ARM_CPU_SYNCHRONIZE_EVENT Event
27 // );
28 ASM_PFX(ArmCpuSynchronizeWait):
29 cmp r0, #ARM_CPU_EVENT_BOOT_MEM_INIT
30 // The SCU enabled is the event to tell us the Init Boot Memory is initialized
31 beq ASM_PFX(ArmWaitScuEnabled)
32 b ASM_PFX(CArmCpuSynchronizeWait)
33
34 // IN None
35 // OUT r0 = SCU Base Address
36 ASM_PFX(ArmGetScuBaseAddress):
37 // Read Configuration Base Address Register. ArmCBar cannot be called to get
38 // the Configuration BAR as a stack is not necessary setup. The SCU is at the
39 // offset 0x0000 from the Private Memory Region.
40 mrc p15, 4, r0, c15, c0, 0
41 bx lr
42
43 ASM_PFX(ArmWaitScuEnabled):
44 // Read Configuration Base Address Register. ArmCBar cannot be called to get
45 // the Configuration BAR as a stack is not necessary setup. The SCU is at the
46 // offset 0x0000 from the Private Memory Region.
47 mrc p15, 4, r0, c15, c0, 0
48 add r0, r0, #A9_SCU_CONTROL_OFFSET
49 ldr r0, [r0]
50 cmp r0, #1
51 bne ASM_PFX(ArmWaitScuEnabled)
52 bx lr