diff options
Diffstat (limited to 'ArmPlatformPkg/Sec/Sec.c')
-rw-r--r-- | ArmPlatformPkg/Sec/Sec.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ArmPlatformPkg/Sec/Sec.c b/ArmPlatformPkg/Sec/Sec.c index faa012ab40..8ddc654c24 100644 --- a/ArmPlatformPkg/Sec/Sec.c +++ b/ArmPlatformPkg/Sec/Sec.c @@ -227,6 +227,18 @@ CEntryPoint ( // Enter Secondary Cores into non Secure State. To enter into Non Secure state, we need to make a return from exception return_from_exception((UINTN)NonSecureWaitForFirmware); } + } else if (FeaturePcdGet(PcdSkipPeiCore)) { + if (CoreId == ARM_PRIMARY_CORE) { + // Signal the secondary cores they can jump to PEI phase + PL390GicSendSgiTo (PcdGet32(PcdGicDistributorBase), GIC_ICDSGIR_FILTER_EVERYONEELSE, 0x0E); + + // To enter into Non Secure state, we need to make a return from exception + return_from_exception(PcdGet32(PcdNormalFvBaseAddress)); + } else { + // We wait for the primary core to finish to initialize the System Memory. When we skip PEI Core, we could set the stack in DRAM + // Without this synchronization the secondary cores will complete the SEC before the primary core has finished to intitialize the DRAM. + return_from_exception((UINTN)NonSecureWaitForFirmware); + } } else { // To enter into Non Secure state, we need to make a return from exception return_from_exception(PcdGet32(PcdNormalFvBaseAddress)); |