Home | History | Annotate | Download | only in Library
      1 /** @file
      2 *
      3 *  Copyright (c) 2015, Linaro Ltd. All rights reserved.
      4 *
      5 *  This program and the accompanying materials are licensed and made available
      6 *  under the terms and conditions of the BSD License which accompanies this
      7 *  distribution.  The full text of the license may be found at
      8 *  http://opensource.org/licenses/bsd-license.php
      9 *
     10 *  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
     11 *  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
     12 *
     13 **/
     14 
     15 #ifndef __ARM_GIC_ARCH_LIB_H__
     16 #define __ARM_GIC_ARCH_LIB_H__
     17 
     18 //
     19 // GIC definitions
     20 //
     21 typedef enum {
     22   ARM_GIC_ARCH_REVISION_2,
     23   ARM_GIC_ARCH_REVISION_3
     24 } ARM_GIC_ARCH_REVISION;
     25 
     26 
     27 ARM_GIC_ARCH_REVISION
     28 EFIAPI
     29 ArmGicGetSupportedArchRevision (
     30   VOID
     31   );
     32 
     33 #endif
     34