]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkPkg/Include/Framework/DxeCis.h
DxeCis.h clean up.
[mirror_edk2.git] / IntelFrameworkPkg / Include / Framework / DxeCis.h
1 /** @file
2 Include file for definitions in the Intel Platform Innovation Framework for EFI
3 Driver Execution Environment Core Interface Specification (DXE CIS) Version 0.9.
4
5 Copyright (c) 2007 - 2009, Intel Corporation
6 All rights reserved. This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. 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 _DXE_CIS_H_
17 #define _DXE_CIS_H_
18
19 #include <PiDxe.h>
20 #include <Framework/StatusCode.h>
21 #include <Protocol/StatusCode.h>
22
23 //
24 // Function prototype for invoking a function on an Application Processor
25 // Used by both the SMM infrastructure and the MP Services Protocol
26 //
27 typedef
28 VOID
29 (EFIAPI *EFI_AP_PROCEDURE)(
30 IN VOID *Buffer
31 );
32
33 //
34 // Framework EFI Runtime Services Table as extension to EFI 1.10 Runtime Services Table
35 //
36 typedef struct {
37 //
38 // Table header for the Framework EFI Runtime Services Table
39 //
40 EFI_TABLE_HEADER Hdr;
41 //
42 // Time services
43 //
44 EFI_GET_TIME GetTime;
45 EFI_SET_TIME SetTime;
46 EFI_GET_WAKEUP_TIME GetWakeupTime;
47 EFI_SET_WAKEUP_TIME SetWakeupTime;
48 //
49 // Virtual memory services
50 //
51 EFI_SET_VIRTUAL_ADDRESS_MAP SetVirtualAddressMap;
52 EFI_CONVERT_POINTER ConvertPointer;
53 //
54 // Variable services
55 //
56 EFI_GET_VARIABLE GetVariable;
57 EFI_GET_NEXT_VARIABLE_NAME GetNextVariableName;
58 EFI_SET_VARIABLE SetVariable;
59 //
60 // Misc
61 //
62 EFI_GET_NEXT_HIGH_MONO_COUNT GetNextHighMonotonicCount;
63 EFI_RESET_SYSTEM ResetSystem;
64 //
65 // Framework extension to EFI 1.10 runtime table
66 // It was moved to a protocol to not conflict with UEFI 2.0
67 //
68 EFI_REPORT_STATUS_CODE ReportStatusCode;
69 } FRAMEWORK_EFI_RUNTIME_SERVICES;
70
71 #define EFI_EVENT_RUNTIME_CONTEXT 0x20000000
72 #define EFI_EVENT_NOTIFY_SIGNAL_ALL 0x00000400
73 #define EFI_EVENT_SIGNAL_READY_TO_BOOT 0x00000203
74 #define EFI_EVENT_SIGNAL_LEGACY_BOOT 0x00000204
75
76 #endif
77