X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=BeagleBoardPkg%2FLibrary%2FBeagleBoardLib%2FBeagleBoardHelper.S;fp=BeagleBoardPkg%2FLibrary%2FBeagleBoardLib%2FBeagleBoardHelper.S;h=0000000000000000000000000000000000000000;hp=313763a5ebdbc2ff63cdeac39d175af3e41a6cfa;hb=5347c48016f27061475fdb053e867a06ce73492f;hpb=96ef5a8e30a8da33eaab09f13cc8d752342717a5 diff --git a/BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoardHelper.S b/BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoardHelper.S deleted file mode 100644 index 313763a5eb..0000000000 --- a/BeagleBoardPkg/Library/BeagleBoardLib/BeagleBoardHelper.S +++ /dev/null @@ -1,41 +0,0 @@ -# -# Copyright (c) 2012-2013, ARM Limited. All rights reserved. -# -# SPDX-License-Identifier: BSD-2-Clause-Patent -# -# - -#include -#include - -.text -.align 2 - -GCC_ASM_EXPORT(ArmPlatformIsPrimaryCore) -GCC_ASM_EXPORT(ArmPlatformGetPrimaryCoreMpId) -GCC_ASM_EXPORT(ArmPlatformPeiBootAction) - -GCC_ASM_IMPORT(ArmReadMpidr) - -//UINTN -//ArmPlatformIsPrimaryCore ( -// IN UINTN MpId -// ); -ASM_PFX(ArmPlatformIsPrimaryCore): - // BeagleBoard has a single core. We must always return 1. - mov r0, #1 - bx lr - -ASM_PFX(ArmPlatformPeiBootAction): - bx lr - -//UINTN -//ArmPlatformGetPrimaryCoreMpId ( -// VOID -// ); -ASM_PFX(ArmPlatformGetPrimaryCoreMpId): - // The BeagleBoard is a uniprocessor platform. The MPIDR of primary core is - // always the MPIDR of the calling CPU. - b ASM_PFX(ArmReadMpidr) - -ASM_FUNCTION_REMOVE_IF_UNREFERENCED