]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPlatformPkg/Sec/SecEntryPoint.S
ArmPlatformPkg: Minor code changes (comments, misspellings, coding stylei, line endings)
[mirror_edk2.git] / ArmPlatformPkg / Sec / SecEntryPoint.S
CommitLineData
2dbcb8f0 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
11c20f4e 13\r
2dbcb8f0 14#include <AutoGen.h>\r
11c20f4e 15#include <AsmMacroIoLib.h>\r
90d6a1bb 16#include "SecInternal.h"\r
11c20f4e 17\r
11c20f4e 18.text\r
19.align 3\r
20\r
11c20f4e 21GCC_ASM_IMPORT(CEntryPoint)\r
44e272fd 22GCC_ASM_IMPORT(ArmPlatformSecBootAction)\r
11c20f4e 23GCC_ASM_IMPORT(ArmPlatformInitializeBootMemory)\r
24GCC_ASM_IMPORT(ArmDisableInterrupts)\r
25GCC_ASM_IMPORT(ArmDisableCachesAndMmu)\r
26GCC_ASM_IMPORT(ArmWriteVBar)\r
0787bc61 27GCC_ASM_IMPORT(ArmReadMpidr)\r
11c20f4e 28GCC_ASM_IMPORT(SecVectorTable)\r
90d6a1bb 29GCC_ASM_IMPORT(ArmCpuSynchronizeWait)\r
30GCC_ASM_EXPORT(_ModuleEntryPoint)\r
11c20f4e 31\r
2dbcb8f0 32StartupAddr: .word ASM_PFX(CEntryPoint)\r
11c20f4e 33\r
34ASM_PFX(_ModuleEntryPoint):\r
2dbcb8f0 35 // First ensure all interrupts are disabled\r
36 bl ASM_PFX(ArmDisableInterrupts)\r
11c20f4e 37\r
2dbcb8f0 38 // Ensure that the MMU and caches are off\r
39 bl ASM_PFX(ArmDisableCachesAndMmu)\r
11c20f4e 40\r
2dbcb8f0 41 // Jump to Platform Specific Boot Action function\r
44e272fd 42 blx ASM_PFX(ArmPlatformSecBootAction)\r
43\r
2dbcb8f0 44 // Set VBAR to the start of the exception vectors in Secure Mode\r
89bbce11 45 LoadConstantToReg (ASM_PFX(SecVectorTable), r0)\r
44e272fd 46 bl ASM_PFX(ArmWriteVBar)\r
47\r
2dbcb8f0 48_IdentifyCpu:\r
49 // Identify CPU ID\r
11c20f4e 50 bl ASM_PFX(ArmReadMpidr)\r
0787bc61 51 // Get ID of this CPU in Multicore system\r
52 LoadConstantToReg (FixedPcdGet32(PcdArmPrimaryCoreMask), r1)\r
53 and r5, r0, r1\r
11c20f4e 54 \r
2dbcb8f0 55 // Is it the Primary Core ?\r
0787bc61 56 LoadConstantToReg (FixedPcdGet32(PcdArmPrimaryCore), r1)\r
57 cmp r5, r1\r
2dbcb8f0 58 // Only the primary core initialize the memory (SMC)\r
11c20f4e 59 beq _InitMem\r
60 \r
90d6a1bb 61_WaitInitMem:\r
62 mov r0, #ARM_CPU_EVENT_BOOT_MEM_INIT\r
63 bl ASM_PFX(ArmCpuSynchronizeWait)\r
64 // Now the Init Mem is initialized, we setup the secondary core stacks\r
2dbcb8f0 65 b _SetupSecondaryCoreStack\r
11c20f4e 66 \r
67_InitMem:\r
f156d5b4 68 // Initialize Init Boot Memory\r
11c20f4e 69 bl ASM_PFX(ArmPlatformInitializeBootMemory)\r
2dbcb8f0 70 \r
71 // Only Primary CPU could run this line (the secondary cores have jumped from _IdentifyCpu to _SetupStack)\r
72 LoadConstantToReg (FixedPcdGet32(PcdArmPrimaryCore), r5)\r
73\r
74_SetupPrimaryCoreStack:\r
75 LoadConstantToReg (FixedPcdGet32(PcdCPUCoresSecStackBase), r2)\r
76 LoadConstantToReg (FixedPcdGet32(PcdCPUCoreSecPrimaryStackSize), r3)\r
77 // Calculate the Top of the Stack\r
78 add r2, r2, r3\r
79 LoadConstantToReg (FixedPcdGet32(PcdSecGlobalVariableSize), r3)\r
80\r
81 // The reserved space for global variable must be 8-bytes aligned for pushing\r
82 // 64-bit variable on the stack\r
83 SetPrimaryStack (r2, r3, r1)\r
84\r
85 // Set all the SEC global variables to 0\r
86 mov r3, sp\r
87 mov r1, #0x0\r
88_InitGlobals:\r
2dbcb8f0 89 cmp r3, r2\r
5f5b907c 90 beq _PrepareArguments\r
91 str r1, [r3], #4\r
92 b _InitGlobals\r
2dbcb8f0 93\r
94_SetupSecondaryCoreStack:\r
95 // Get the Core Position (ClusterId * 4) + CoreId\r
96 GetCorePositionInStack(r0, r5, r1)\r
97 // The stack starts at the top of the stack region. Add '1' to the Core Position to get the top of the stack\r
98 add r0, r0, #1\r
99\r
100 // Get the base of the stack for the secondary cores\r
11c20f4e 101 LoadConstantToReg (FixedPcdGet32(PcdCPUCoresSecStackBase), r1)\r
90d6a1bb 102 LoadConstantToReg (FixedPcdGet32(PcdCPUCoreSecSecondaryStackSize), r2)\r
2dbcb8f0 103 add r1, r1, r2\r
11c20f4e 104\r
2dbcb8f0 105 // StackOffset = CorePos * StackSize\r
106 mul r0, r0, r2\r
107 // SP = StackBase + StackOffset\r
108 add sp, r1, r0\r
11c20f4e 109\r
2dbcb8f0 110\r
111_PrepareArguments:\r
112 // Move sec startup address into a data register\r
113 // Ensure we're jumping to FV version of the code (not boot remapped alias)\r
11c20f4e 114 ldr r3, StartupAddr\r
115 \r
2dbcb8f0 116 // Jump to SEC C code\r
117 // r0 = mp_id\r
11c20f4e 118 mov r0, r5\r
2dbcb8f0 119 blx r3\r
120 \r
121_NeverReturn:\r
122 b _NeverReturn\r