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 */
22InitializeGicV3 FUNCTION
23  // GICv3 Initialization not Supported yet
24  bx  lr
25  ENDFUNC
26
27  END
28