Home | History | Annotate | Download | only in Arm
      1 //
      2 //  Copyright (c) 2011-2012, 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/ArmPlatformLib.h>
     17 #include <AutoGen.h>
     18 #include <ArmPlatform.h>
     19 
     20 .text
     21 .align 3
     22 
     23 GCC_ASM_EXPORT(ArmPlatformSecBootAction)
     24 GCC_ASM_EXPORT(ArmPlatformSecBootMemoryInit)
     25 
     26 /**
     27   Call at the beginning of the platform boot up
     28 
     29   This function allows the firmware platform to do extra actions at the early
     30   stage of the platform power up.
     31 
     32   Note: This function must be implemented in assembler as there is no stack set up yet
     33 
     34 **/
     35 ASM_PFX(ArmPlatformSecBootAction):
     36   bx  lr
     37 
     38 /**
     39   Initialize the memory where the initial stacks will reside
     40 
     41   This memory can contain the initial stacks (Secure and Secure Monitor stacks).
     42   In some platform, this region is already initialized and the implementation of this function can
     43   do nothing. This memory can also represent the Secure RAM.
     44   This function is called before the satck has been set up. Its implementation must ensure the stack
     45   pointer is not used (probably required to use assembly language)
     46 
     47 **/
     48 ASM_PFX(ArmPlatformSecBootMemoryInit):
     49   // The SMC does not need to be initialized for RTSM
     50   bx    lr
     51