]> git.proxmox.com Git - mirror_edk2.git/blame - ArmPlatformPkg/PrePeiCore/MainMPCore.c
ArmPlatformPkg: Remove PcdStandalone from Sec module and Introduce ArmPlatformSecExtr...
[mirror_edk2.git] / ArmPlatformPkg / PrePeiCore / MainMPCore.c
CommitLineData
1d5d0ae9 1/** @file\r
2*\r
3* Copyright (c) 2011, ARM Limited. All rights reserved.\r
4*\r
5* This program and the accompanying materials\r
6* are licensed and made available under the terms and conditions of the BSD License\r
7* which accompanies this distribution. The full text of the license may be found at\r
8* http://opensource.org/licenses/bsd-license.php\r
9*\r
10* THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11* WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12*\r
13**/\r
14\r
1d5d0ae9 15#include <Library/ArmMPCoreMailBoxLib.h>\r
16#include <Chipset/ArmV7.h>\r
17#include <Drivers/PL390Gic.h>\r
18\r
f598bf12 19#include "PrePeiCore.h"\r
20\r
1d5d0ae9 21extern EFI_PEI_PPI_DESCRIPTOR *gSecPpiTable;\r
22\r
23/*\r
24 * This is the main function for secondary cores. They loop around until a non Null value is written to\r
25 * SYS_FLAGS register.The SYS_FLAGS register is platform specific.\r
26 * Note:The secondary cores, while executing secondary_main, assumes that:\r
27 * : SGI 0 is configured as Non-secure interrupt\r
28 * : Priority Mask is configured to allow SGI 0\r
29 * : Interrupt Distributor and CPU interfaces are enabled\r
30 *\r
31 */\r
32VOID\r
33EFIAPI\r
f598bf12 34SecondaryMain (\r
35 IN UINTN CoreId\r
36 )\r
1d5d0ae9 37{\r
f598bf12 38 // Function pointer to Secondary Core entry point\r
39 VOID (*secondary_start)(VOID);\r
40 UINTN secondary_entry_addr=0;\r
1d5d0ae9 41\r
f598bf12 42 // Clear Secondary cores MailBox\r
43 ArmClearMPCoreMailbox();\r
1d5d0ae9 44\r
f598bf12 45 while (secondary_entry_addr = ArmGetMPCoreMailbox(), secondary_entry_addr == 0) {\r
46 ArmCallWFI();\r
47 // Acknowledge the interrupt and send End of Interrupt signal.\r
48 PL390GicAcknowledgeSgiFrom(PcdGet32(PcdGicInterruptInterfaceBase),0/*CoreId*/);\r
49 }\r
1d5d0ae9 50\r
f598bf12 51 secondary_start = (VOID (*)())secondary_entry_addr;\r
1d5d0ae9 52\r
f598bf12 53 // Jump to secondary core entry point.\r
54 secondary_start();\r
1d5d0ae9 55\r
f598bf12 56 // The secondaries shouldn't reach here\r
57 ASSERT(FALSE);\r
1d5d0ae9 58}\r
59\r
f598bf12 60VOID\r
61EFIAPI\r
62PrimaryMain (\r
1d5d0ae9 63 IN EFI_PEI_CORE_ENTRY_POINT PeiCoreEntryPoint\r
64 )\r
65{\r
f598bf12 66 EFI_SEC_PEI_HAND_OFF SecCoreData;\r
1d5d0ae9 67\r
f598bf12 68 //Enable the GIC Distributor\r
69 PL390GicEnableDistributor(PcdGet32(PcdGicDistributorBase));\r
1d5d0ae9 70\r
f598bf12 71 // If ArmVe has not been built as Standalone then we need to wake up the secondary cores\r
a6caee65 72 if (FeaturePcdGet(PcdSendSgiToBringUpSecondaryCores)) {\r
f598bf12 73 // Sending SGI to all the Secondary CPU interfaces\r
74 PL390GicSendSgiTo (PcdGet32(PcdGicDistributorBase), GIC_ICDSGIR_FILTER_EVERYONEELSE, 0x0E);\r
75 }\r
1d5d0ae9 76\r
f598bf12 77 //\r
78 // Bind this information into the SEC hand-off state\r
79 // Note: this must be in sync with the stuff in the asm file\r
80 // Note also: HOBs (pei temp ram) MUST be above stack\r
81 //\r
82 SecCoreData.DataSize = sizeof(EFI_SEC_PEI_HAND_OFF);\r
83 SecCoreData.BootFirmwareVolumeBase = (VOID *)(UINTN)PcdGet32 (PcdNormalFvBaseAddress);\r
84 SecCoreData.BootFirmwareVolumeSize = PcdGet32 (PcdNormalFvSize);\r
85 SecCoreData.TemporaryRamBase = (VOID *)(UINTN)PcdGet32 (PcdCPUCoresNonSecStackBase); // We consider we run on the primary core (and so we use the first stack)\r
86 SecCoreData.TemporaryRamSize = (UINTN)(UINTN)PcdGet32 (PcdCPUCoresNonSecStackSize);\r
87 SecCoreData.PeiTemporaryRamBase = (VOID *)((UINTN)(SecCoreData.TemporaryRamBase) + (SecCoreData.TemporaryRamSize / 2));\r
88 SecCoreData.PeiTemporaryRamSize = SecCoreData.TemporaryRamSize / 2;\r
89 SecCoreData.StackBase = SecCoreData.TemporaryRamBase;\r
90 SecCoreData.StackSize = SecCoreData.TemporaryRamSize - SecCoreData.PeiTemporaryRamSize;\r
1d5d0ae9 91\r
f598bf12 92 // Jump to PEI core entry point\r
93 (PeiCoreEntryPoint)(&SecCoreData, (VOID *)&gSecPpiTable);\r
1d5d0ae9 94}\r