]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressLibCTA9x4/CTA9x4Helper.asm
4404cd25fcfa2ad70067e26e31eb879f085e3a01
[mirror_edk2.git] / ArmPlatformPkg / ArmVExpressPkg / Library / ArmVExpressLibCTA9x4 / CTA9x4Helper.asm
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 <AsmMacroIoLib.h>
15 #include <Base.h>
16 #include <Library/PcdLib.h>
17 #include <Library/ArmPlatformLib.h>
18 #include <ArmPlatform.h>
19 #include <AutoGen.h>
20
21 INCLUDE AsmMacroIoLib.inc
22
23 EXPORT ArmPlatformIsMemoryInitialized
24
25 PRESERVE8
26 AREA CTA9x4Helper, CODE, READONLY
27
28 /**
29 Called at the early stage of the Boot phase to know if the memory has already been initialized
30
31 Running the code from the reset vector does not mean we start from cold boot. In some case, we
32 can go through this code with the memory already initialized.
33 Because this function is called at the early stage, the implementation must not use the stack.
34 Its implementation must probably done in assembly to ensure this requirement.
35
36 @return Return the condition value into the 'Z' flag
37
38 **/
39 ArmPlatformIsMemoryInitialized
40 // Check if the memory has been already mapped, if so skipped the memory initialization
41 LoadConstantToReg (ARM_VE_SYS_CFGRW1_REG ,r0)
42 ldr r0, [r0, #0]
43
44 // 0x40000000 = Value of Physical Configuration Switch SW[0]
45 and r0, r0, #0x40000000
46 tst r0, #0x40000000
47 bx lr
48