]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPlatformPkg/ArmRealViewEbPkg/Library/ArmRealViewEbLibRTSM/ArmRealViewEbHelper.S
ArmPlatformPkg/ArmPlatformLib: Introduce ArmPlatformSecBootAction function
[mirror_edk2.git] / ArmPlatformPkg / ArmRealViewEbPkg / Library / ArmRealViewEbLibRTSM / ArmRealViewEbHelper.S
CommitLineData
1d5d0ae9 1//\r
2// Copyright (c) 2011, ARM Limited. All rights reserved.\r
3// \r
4// This program and the accompanying materials \r
5// are licensed and made available under the terms and conditions of the BSD License \r
6// which accompanies this distribution. The full text of the license may be found at \r
7// http://opensource.org/licenses/bsd-license.php \r
8//\r
9// THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r
10// WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r
11//\r
12//\r
13\r
14#include <AsmMacroIoLib.h>\r
15#include <Base.h>\r
16#include <Library/PcdLib.h>\r
c52e2dca 17#include <Library/ArmPlatformLib.h>\r
1d5d0ae9 18#include <ArmPlatform.h>\r
19#include <AutoGen.h>\r
20\r
1d5d0ae9 21.text\r
22.align 3\r
23\r
3723a71a 24GCC_ASM_EXPORT(ArmPlatformIsMemoryInitialized)\r
1d5d0ae9 25\r
6377d2f1 26/**\r
27 Called at the early stage of the Boot phase to know if the memory has already been initialized\r
28\r
29 Running the code from the reset vector does not mean we start from cold boot. In some case, we\r
30 can go through this code with the memory already initialized.\r
31 Because this function is called at the early stage, the implementation must not use the stack.\r
32 Its implementation must probably done in assembly to ensure this requirement.\r
33\r
34 @return Return the condition value into the 'Z' flag\r
35\r
36**/\r
1d5d0ae9 37ASM_PFX(ArmPlatformIsMemoryInitialized):\r
6377d2f1 38 // Check if the memory has been already mapped, if so skipped the memory initialization\r
39 LoadConstantToReg (ARM_EB_SYSCTRL, r0)\r
40 ldr r0, [r0, #0]\r
41 \r
42 // 0x200 (BIT9): This read-only bit returns the remap status.\r
43 and r0, r0, #0x200\r
44 tst r0, #0x200\r
1d5d0ae9 45 bx lr\r
46 \r
6377d2f1 47ASM_FUNCTION_REMOVE_IF_UNREFERENCED