]> git.proxmox.com Git - mirror_edk2.git/blob - ArmVirtPkg/PrePi/AArch64/ArchPrePi.c
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / ArmVirtPkg / PrePi / AArch64 / ArchPrePi.c
1 /** @file
2 *
3 * Copyright (c) 2011-2013, ARM Limited. All rights reserved.
4 *
5 * SPDX-License-Identifier: BSD-2-Clause-Patent
6 *
7 **/
8
9 #include "PrePi.h"
10
11 #include <Chipset/AArch64.h>
12
13 VOID
14 ArchInitialize (
15 VOID
16 )
17 {
18 // Enable Floating Point
19 if (FixedPcdGet32 (PcdVFPEnabled)) {
20 ArmEnableVFP ();
21 }
22
23 if (ArmReadCurrentEL () == AARCH64_EL2) {
24 // Trap General Exceptions. All exceptions that would be routed to EL1 are routed to EL2
25 ArmWriteHcr (ARM_HCR_TGE);
26 }
27 }