/** @file * * Copyright (c) 2018, ARM Limited. All rights reserved. * * SPDX-License-Identifier: BSD-2-Clause-Patent * **/ #include #include .text .align 3 GCC_ASM_EXPORT(ArmPlatformPeiBootAction) GCC_ASM_EXPORT(ArmPlatformGetCorePosition) GCC_ASM_EXPORT(ArmPlatformGetPrimaryCoreMpId) GCC_ASM_EXPORT(ArmPlatformIsPrimaryCore) GCC_ASM_IMPORT(NtFwConfigDtBlob) // // First platform specific function to be called in the PEI phase // // The trusted firmware passed the hw config DT blob in x1 register. // Keep a copy of it in a global variable. //VOID //ArmPlatformPeiBootAction ( // VOID // ); ASM_PFX(ArmPlatformPeiBootAction): adr x10, NtFwConfigDtBlob str x0, [x10] ret //UINTN //ArmPlatformGetCorePosition ( // IN UINTN MpId // ); // With this function: CorePos = (ClusterId * 2) + CoreId ASM_PFX(ArmPlatformGetCorePosition): and x1, x0, #ARM_CORE_MASK and x0, x0, #ARM_CLUSTER_MASK add x0, x1, x0, LSR #7 ret //UINTN //ArmPlatformGetPrimaryCoreMpId ( // VOID // ); ASM_PFX(ArmPlatformGetPrimaryCoreMpId): MOV32 (w0, FixedPcdGet32(PcdArmPrimaryCore)) ret //UINTN //ArmPlatformIsPrimaryCore ( // IN UINTN MpId // ); ASM_PFX(ArmPlatformIsPrimaryCore): MOV32 (w1, FixedPcdGet32(PcdArmPrimaryCoreMask)) and x0, x0, x1 MOV32 (w1, FixedPcdGet32(PcdArmPrimaryCore)) cmp w0, w1 cset x0, eq ret