summaryrefslogtreecommitdiff
path: root/ArmPkg
diff options
context:
space:
mode:
authorPierre Gondois <pierre.gondois@arm.com>2024-02-14 13:42:23 +0100
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2024-04-05 05:03:15 +0000
commitee249efe8c65479ce7a69e6202fd5c3aad9e6d97 (patch)
tree780cc325601b349316f828dc3d519498749daa43 /ArmPkg
parent6fb3cc05dc8742ddbe7ea1038dd0111aed55e799 (diff)
downloadedk2-ee249efe8c65479ce7a69e6202fd5c3aad9e6d97.zip
edk2-ee249efe8c65479ce7a69e6202fd5c3aad9e6d97.tar.gz
edk2-ee249efe8c65479ce7a69e6202fd5c3aad9e6d97.tar.bz2
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 <quic_llindhol@quicinc.com> Cc: Ard Biesheuvel <ardb+tianocore@kernel.org> Cc: Sami Mujawar <sami.mujawar@arm.com> Signed-off-by: Pierre Gondois <pierre.gondois@arm.com> Reviewed-by: Ard Biesheuvel <ardb@kernel.org> Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
Diffstat (limited to 'ArmPkg')
-rw-r--r--ArmPkg/Include/Chipset/ArmCortexA5x.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/ArmPkg/Include/Chipset/ArmCortexA5x.h b/ArmPkg/Include/Chipset/ArmCortexA5x.h
deleted file mode 100644
index cc8b23b..0000000
--- a/ArmPkg/Include/Chipset/ArmCortexA5x.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/** @file
-
- Copyright (c) 2012 - 2021, Arm Limited. All rights reserved.<BR>
-
- 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_