]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPlatformPkg/ArmRealViewEbPkg/Library/ArmRealViewEbLibRTSM/ArmRealViewEbBoot.asm
ArmPlatformPkg/ArmPlatformLib: Introduce ArmPlatformSecBootAction function
[mirror_edk2.git] / ArmPlatformPkg / ArmRealViewEbPkg / Library / ArmRealViewEbLibRTSM / ArmRealViewEbBoot.asm
CommitLineData
c52e2dca 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/ArmPlatformLib.h>\r
17#include <ArmPlatform.h>\r
18#include <AutoGen.h>\r
19\r
20 INCLUDE AsmMacroIoLib.inc\r
21\r
44e272fd 22 EXPORT ArmPlatformSecBootAction\r
c52e2dca 23 EXPORT ArmPlatformInitializeBootMemory\r
24\r
25 PRESERVE8\r
26 AREA CTA9x4BootMode, CODE, READONLY\r
27\r
44e272fd 28/**\r
29 Call at the beginning of the platform boot up\r
30\r
31 This function allows the firmware platform to do extra actions at the early\r
32 stage of the platform power up.\r
33\r
34 Note: This function must be implemented in assembler as there is no stack set up yet\r
35\r
36**/\r
37ArmPlatformSecBootAction\r
38 bx lr\r
39\r
c52e2dca 40/**\r
41 Initialize the memory where the initial stacks will reside\r
42\r
43 This memory can contain the initial stacks (Secure and Secure Monitor stacks).\r
44 In some platform, this region is already initialized and the implementation of this function can\r
45 do nothing. This memory can also represent the Secure RAM.\r
46 This function is called before the satck has been set up. Its implementation must ensure the stack\r
47 pointer is not used (probably required to use assembly language)\r
48\r
49**/\r
50ArmPlatformInitializeBootMemory\r
51 // The SMC does not need to be initialized for RTSM\r
52 bx lr\r