xref: /freebsd/stand/efi/include/Guid/MtcVendor.h (revision 0957b409)
1 /* $FreeBSD$ */
2 /** @file
3   GUID is for MTC variable.
4 
5 Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
6 This program and the accompanying materials are licensed and made available under
7 the terms and conditions of the BSD License that accompanies this distribution.
8 The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php.
10 
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13 
14 **/
15 
16 #ifndef __MTC_VENDOR_GUID_H__
17 #define __MTC_VENDOR_GUID_H__
18 
19 //
20 // Vendor GUID of the variable for the high part of monotonic counter (UINT32).
21 //
22 #define MTC_VENDOR_GUID \
23   { 0xeb704011, 0x1402, 0x11d3, { 0x8e, 0x77, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b } }
24 
25 //
26 // Name of the variable for the high part of monotonic counter
27 //
28 #define MTC_VARIABLE_NAME "MTC"
29 
30 extern EFI_GUID gMtcVendorGuid;
31 
32 #endif
33