mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-12-04 13:23:26 +01:00
27 lines
432 B
C
27 lines
432 B
C
|
/** @file
|
||
|
*
|
||
|
* Copyright (c) 2015, Linaro Ltd. All rights reserved.
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
*
|
||
|
**/
|
||
|
|
||
|
#ifndef ARM_GIC_ARCH_LIB_H_
|
||
|
#define ARM_GIC_ARCH_LIB_H_
|
||
|
|
||
|
//
|
||
|
// GIC definitions
|
||
|
//
|
||
|
typedef enum {
|
||
|
ARM_GIC_ARCH_REVISION_2,
|
||
|
ARM_GIC_ARCH_REVISION_3
|
||
|
} ARM_GIC_ARCH_REVISION;
|
||
|
|
||
|
ARM_GIC_ARCH_REVISION
|
||
|
EFIAPI
|
||
|
ArmGicGetSupportedArchRevision (
|
||
|
VOID
|
||
|
);
|
||
|
|
||
|
#endif // ARM_GIC_ARCH_LIB_H_
|