]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoardHelper.asm
edk2: Remove packages moved to edk2-platforms
[mirror_edk2.git] / BeagleBoardPkg / Library / BeagleBoardLib / BeagleBoardHelper.asm
diff --git a/BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoardHelper.asm b/BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoardHelper.asm
deleted file mode 100644 (file)
index 884f567..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-//\r
-//  Copyright (c) 2012-2013, ARM Limited. All rights reserved.\r
-//\r
-//  SPDX-License-Identifier: BSD-2-Clause-Patent\r
-//\r
-//\r
-\r
-#include <AsmMacroIoLib.h>\r
-#include <Base.h>\r
-\r
-#include <AutoGen.h>\r
-\r
-  INCLUDE AsmMacroIoLib.inc\r
-\r
-  EXPORT    ArmPlatformPeiBootAction\r
-  EXPORT    ArmPlatformIsPrimaryCore\r
-  EXPORT    ArmPlatformGetPrimaryCoreMpId\r
-\r
-  IMPORT    ArmReadMpidr\r
-\r
-  AREA BeagleBoardHelper, CODE, READONLY\r
-\r
-//UINTN\r
-//ArmPlatformIsPrimaryCore (\r
-//  IN UINTN MpId\r
-//  );\r
-ArmPlatformIsPrimaryCore FUNCTION\r
-  // BeagleBoard has a single core. We must always return 1.\r
-  mov   r0, #1\r
-  bx    lr\r
-  ENDFUNC\r
-\r
-ArmPlatformPeiBootAction FUNCTION\r
-  bx    lr\r
-  ENDFUNC\r
-\r
-//UINTN\r
-//ArmPlatformGetPrimaryCoreMpId (\r
-//  VOID\r
-//  );\r
-ArmPlatformGetPrimaryCoreMpId FUNCTION\r
-  // The BeagleBoard is a uniprocessor platform. The MPIDR of primary core is\r
-  // always the MPIDR of the calling CPU.\r
-  b     ArmReadMpidr\r
-  ENDFUNC\r
-\r
-  END\r