From ee249efe8c65479ce7a69e6202fd5c3aad9e6d97 Mon Sep 17 00:00:00 2001 From: Pierre Gondois Date: Wed, 14 Feb 2024 13:42:23 +0100 Subject: [PATCH] ArmPkg: Remove ArmCortexA5x.h The last reference to ArmCortexA5x.h was removed in: commit: cffa7925a293 ("ArmPkg: remove ArmCpuLib header and implementations") There are no reference to the file in the edk2-platforms repository. Remove the file. Cc: Leif Lindholm Cc: Ard Biesheuvel Cc: Sami Mujawar Signed-off-by: Pierre Gondois Reviewed-by: Ard Biesheuvel Reviewed-by: Sami Mujawar --- ArmPkg/Include/Chipset/ArmCortexA5x.h | 44 --------------------------- 1 file changed, 44 deletions(-) delete mode 100644 ArmPkg/Include/Chipset/ArmCortexA5x.h diff --git a/ArmPkg/Include/Chipset/ArmCortexA5x.h b/ArmPkg/Include/Chipset/ArmCortexA5x.h deleted file mode 100644 index cc8b23b964..0000000000 --- a/ArmPkg/Include/Chipset/ArmCortexA5x.h +++ /dev/null @@ -1,44 +0,0 @@ -/** @file - - Copyright (c) 2012 - 2021, Arm Limited. All rights reserved.
- - SPDX-License-Identifier: BSD-2-Clause-Patent - -**/ - -#ifndef ARM_CORTEX_A5X_H_ -#define ARM_CORTEX_A5X_H_ - -// -// Cortex A5x feature bit definitions -// -#define A5X_FEATURE_SMP (1 << 6) - -// -// Helper functions to access CPU Extended Control Register -// -UINT64 -EFIAPI -ArmReadCpuExCr ( - VOID - ); - -VOID -EFIAPI -ArmWriteCpuExCr ( - IN UINT64 Val - ); - -VOID -EFIAPI -ArmSetCpuExCrBit ( - IN UINT64 Bits - ); - -VOID -EFIAPI -ArmUnsetCpuExCrBit ( - IN UINT64 Bits - ); - -#endif // ARM_CORTEX_A5X_H_