]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressLibCTA9x4/CTA9x4Helper.asm
Add ArmPlatformPkg from ARM Ltd. patch.
[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 <ArmPlatform.h>
18 #include <AutoGen.h>
19
20 INCLUDE AsmMacroIoLib.inc
21
22 EXPORT ArmPlatformIsMemoryInitialized
23 EXPORT ArmPlatformInitializeBootMemory
24 IMPORT InitializeSMC
25
26 PRESERVE8
27 AREA CTA9x4Helper, CODE, READONLY
28
29 /**
30 Called at the early stage of the Boot phase to know if the memory has already been initialized
31
32 Running the code from the reset vector does not mean we start from cold boot. In some case, we
33 can go through this code with the memory already initialized.
34 Because this function is called at the early stage, the implementation must not use the stack.
35 Its implementation must probably done in assembly to ensure this requirement.
36
37 @return Return the condition value into the 'Z' flag
38
39 **/
40 ArmPlatformIsMemoryInitialized
41 // Check if the memory has been already mapped, if so skipped the memory initialization
42 LoadConstantToReg (ARM_VE_SYS_CFGRW1_REG ,r0)
43 ldr r0, [r0, #0]
44
45 // 0x40000000 = Value of Physical Configuration Switch SW[0]
46 and r0, r0, #0x40000000
47 tst r0, #0x40000000
48 bx lr
49
50 /**
51 Initialize the memory where the initial stacks will reside
52
53 This memory can contain the initial stacks (Secure and Secure Monitor stacks).
54 In some platform, this region is already initialized and the implementation of this function can
55 do nothing. This memory can also represent the Secure RAM.
56 This function is called before the satck has been set up. Its implementation must ensure the stack
57 pointer is not used (probably required to use assembly language)
58
59 **/
60 ArmPlatformInitializeBootMemory
61 mov r5, lr
62 // Initialize PL354 SMC
63 LoadConstantToReg (ARM_VE_SMC_CTRL_BASE, r1)
64 LoadConstantToReg (ARM_VE_SMB_PERIPH_VRAM, r2)
65 blx InitializeSMC
66 bx r5
67
68 END