]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkPkg/Include/Common/FrameworkDxeCis.h
add EFI_EXP_BASE10_DATA definitions
[mirror_edk2.git] / IntelFrameworkPkg / Include / Common / FrameworkDxeCis.h
1 /** @file
2 Include file that supportes Framework extension to the EFI 1.10 spec.
3
4 This include file must only contain things defined in the Framework
5 specifications. If a code construct is defined in the Framework specification
6 it must be included by this include file.
7
8 Copyright (c) 2007, Intel Corporation
9 All rights reserved. This program and the accompanying materials
10 are licensed and made available under the terms and conditions of the BSD License
11 which accompanies this distribution. The full text of the license may be found at
12 http://opensource.org/licenses/bsd-license.php
13
14 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
15 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
16
17 Module Name: FrameworkDxeCis.h
18
19 **/
20
21 #ifndef _FRAMEWORK_DXE_CIS_H_
22 #define _FRAMEWORK_DXE_CIS_H_
23
24 #include <PiDxe.h>
25
26 typedef struct {
27 EFI_TABLE_HEADER Hdr;
28
29 //
30 // Time services
31 //
32 EFI_GET_TIME GetTime;
33 EFI_SET_TIME SetTime;
34 EFI_GET_WAKEUP_TIME GetWakeupTime;
35 EFI_SET_WAKEUP_TIME SetWakeupTime;
36
37 //
38 // Virtual memory services
39 //
40 EFI_SET_VIRTUAL_ADDRESS_MAP SetVirtualAddressMap;
41 EFI_CONVERT_POINTER ConvertPointer;
42
43 //
44 // Variable services
45 //
46 EFI_GET_VARIABLE GetVariable;
47 EFI_GET_NEXT_VARIABLE_NAME GetNextVariableName;
48 EFI_SET_VARIABLE SetVariable;
49
50 //
51 // Misc
52 //
53 EFI_GET_NEXT_HIGH_MONO_COUNT GetNextHighMonotonicCount;
54 EFI_RESET_SYSTEM ResetSystem;
55
56 //
57 // Framework extension to EFI 1.10 runtime table
58 // It was moved to a protocol to not conflict with UEFI 2.0
59 //
60 EFI_REPORT_STATUS_CODE ReportStatusCode;
61 } FRAMEWORK_EFI_RUNTIME_SERVICES;
62
63 #define EFI_EVENT_RUNTIME_CONTEXT 0x20000000
64 #define EFI_EVENT_NOTIFY_SIGNAL_ALL 0x00000400
65 #define EFI_EVENT_SIGNAL_READY_TO_BOOT 0x00000203
66 #define EFI_EVENT_SIGNAL_LEGACY_BOOT 0x00000204
67
68 #endif