]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressSecLibRTSM/Arm/GicV3.asm
ArmPkg: remove unused ArmGicSecLib library implementation
[mirror_edk2.git] / ArmPlatformPkg / ArmVExpressPkg / Library / ArmVExpressSecLibRTSM / Arm / GicV3.asm
1 //
2 // Copyright (c) 2013, ARM Limited. All rights reserved.
3 //
4 // This program and the accompanying materials
5 // are licensed and made available under the terms and conditions of the BSD License
6 // which accompanies this distribution. The full text of the license may be found at
7 // http://opensource.org/licenses/bsd-license.php
8 //
9 // THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 // WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11 //
12 //
13
14 INCLUDE AsmMacroIoLib.inc
15
16 EXPORT InitializeGicV3
17
18 PRESERVE8
19 AREA GicV3, CODE, READONLY
20
21 /* Initialize GICv3 to expose it as a GICv2 as UEFI does not support GICv3 yet */
22 InitializeGicV3 FUNCTION
23 // GICv3 Initialization not Supported yet
24 bx lr
25 ENDFUNC
26
27 END