summaryrefslogtreecommitdiff
path: root/UefiCpuPkg/Library/BaseArchSupportLib/AArch64/AArch64LibSupport.c
blob: a66a661c49ac4400792ad94866cd8ee05534211e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/** @file
  UefiCpu AArch64 architecture support library.

  Copyright 2024 Google LLC

  SPDX-License-Identifier: BSD-2-Clause-Patent
**/

#include <Base.h>
#include <Library/ArmLib.h>

VOID
EFIAPI
InitializeFloatingPointUnits (
  VOID
  )
{
  return;
}

UINTN
ArchGetPhysicalAddressBits (
  VOID
  )
{
  return ArmGetPhysicalAddressBits ();
}