1 /** @file 2 Monotonic Counter Architectural Protocol as defined in PI SPEC VOLUME 2 DXE 3 4 This code provides the services required to access the system's monotonic counter 5 6 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR> 7 SPDX-License-Identifier: BSD-2-Clause-Patent 8 9 **/ 10 11 #ifndef __ARCH_PROTOCOL_MONTONIC_COUNTER_H__ 12 #define __ARCH_PROTOCOL_MONTONIC_COUNTER_H__ 13 14 /// 15 /// Global ID for the Monotonic Counter Architectural Protocol. 16 /// 17 #define EFI_MONOTONIC_COUNTER_ARCH_PROTOCOL_GUID \ 18 {0x1da97072, 0xbddc, 0x4b30, {0x99, 0xf1, 0x72, 0xa0, 0xb5, 0x6f, 0xff, 0x2a} } 19 20 extern EFI_GUID gEfiMonotonicCounterArchProtocolGuid; 21 22 #endif 23