]> git.proxmox.com Git - mirror_edk2.git/blobdiff - ArmPlatformPkg/PrePeiCore/Arm/PrePeiCoreEntryPoint.asm
ArmPlatformPkg: Remove RVCT support
[mirror_edk2.git] / ArmPlatformPkg / PrePeiCore / Arm / PrePeiCoreEntryPoint.asm
diff --git a/ArmPlatformPkg/PrePeiCore/Arm/PrePeiCoreEntryPoint.asm b/ArmPlatformPkg/PrePeiCore/Arm/PrePeiCoreEntryPoint.asm
deleted file mode 100644 (file)
index 2734b09..0000000
+++ /dev/null
@@ -1,89 +0,0 @@
-//\r
-//  Copyright (c) 2011-2013, ARM Limited. All rights reserved.\r
-//\r
-//  SPDX-License-Identifier: BSD-2-Clause-Patent\r
-//\r
-//\r
-\r
-#include <AutoGen.h>\r
-\r
-  INCLUDE AsmMacroIoLib.inc\r
-\r
-  IMPORT  CEntryPoint\r
-  IMPORT  ArmPlatformGetCorePosition\r
-  IMPORT  ArmPlatformIsPrimaryCore\r
-  IMPORT  ArmReadMpidr\r
-  IMPORT  ArmPlatformPeiBootAction\r
-  EXPORT  _ModuleEntryPoint\r
-\r
-  PRESERVE8\r
-  AREA    PrePeiCoreEntryPoint, CODE, READONLY\r
-\r
-StartupAddr        DCD      CEntryPoint\r
-\r
-_ModuleEntryPoint\r
-  // Do early platform specific actions\r
-  bl    ArmPlatformPeiBootAction\r
-\r
-  // Identify CPU ID\r
-  bl    ArmReadMpidr\r
-  // Keep a copy of the MpId register value\r
-  mov   r5, r0\r
-\r
-  // Is it the Primary Core ?\r
-  bl    ArmPlatformIsPrimaryCore\r
-\r
-  // Get the top of the primary stacks (and the base of the secondary stacks)\r
-  mov32 r1, FixedPcdGet64(PcdCPUCoresStackBase) + FixedPcdGet32(PcdCPUCorePrimaryStackSize)\r
-\r
-  // r0 is equal to 1 if I am the primary core\r
-  cmp   r0, #1\r
-  beq   _SetupPrimaryCoreStack\r
-\r
-_SetupSecondaryCoreStack\r
-  // r1 contains the base of the secondary stacks\r
-\r
-  // Get the Core Position\r
-  mov   r6, r1      // Save base of the secondary stacks\r
-  mov   r0, r5\r
-  bl    ArmPlatformGetCorePosition\r
-  // The stack starts at the top of the stack region. Add '1' to the Core Position to get the top of the stack\r
-  add   r0, r0, #1\r
-\r
-  // StackOffset = CorePos * StackSize\r
-  mov32 r2, FixedPcdGet32(PcdCPUCoreSecondaryStackSize)\r
-  mul   r0, r0, r2\r
-  // SP = StackBase + StackOffset\r
-  add   sp, r6, r0\r
-\r
-_PrepareArguments\r
-  // The PEI Core Entry Point has been computed by GenFV and stored in the second entry of the Reset Vector\r
-  mov32 r2, FixedPcdGet32(PcdFvBaseAddress)\r
-  ldr   r1, [r2, #4]\r
-\r
-  // Move sec startup address into a data register\r
-  // Ensure we're jumping to FV version of the code (not boot remapped alias)\r
-  ldr   r3, StartupAddr\r
-\r
-  // Jump to PrePeiCore C code\r
-  //    r0 = mp_id\r
-  //    r1 = pei_core_address\r
-  mov   r0, r5\r
-  blx   r3\r
-\r
-_SetupPrimaryCoreStack\r
-  mov   sp, r1\r
-  mov32 r8, FixedPcdGet64 (PcdCPUCoresStackBase)\r
-  mov32 r9, FixedPcdGet32 (PcdInitValueInTempStack)\r
-  mov   r10, r9\r
-  mov   r11, r9\r
-  mov   r12, r9\r
-0:stm   r8!, {r9-r12}\r
-  cmp   r8, r1\r
-  blt   0b\r
-  b     _PrepareArguments\r
-\r
-_NeverReturn\r
-  b _NeverReturn\r
-\r
-  END\r