1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
//**********************************************************************
//**********************************************************************
//** **
//** (C)Copyright 1985-2009, American Megatrends, Inc. **
//** **
//** All Rights Reserved. **
//** **
//** 5555 Oakbrook Pkwy, Norcross, GA 30093 **
//** **
//** Phone: (770)-246-8600 **
//** **
//**********************************************************************
//**********************************************************************
//**********************************************************************
// $Header: /Alaska/BIN/Modules/ACPI/Template/S3Support/S3Restore/S3Resume.dxs 2 7/19/11 11:33a Oleksiyy $
//
// $Revision: 2 $
//
// $Date: 7/19/11 11:33a $
//**********************************************************************
// Revision History
// ----------------
// $Log: /Alaska/BIN/Modules/ACPI/Template/S3Support/S3Restore/S3Resume.dxs $
//
// 2 7/19/11 11:33a Oleksiyy
// [TAG] EIP64108
// [Category] Improvement
// [Description] ACPI, convert or update all eModules to be compliant
// with PI 1.2, and UEFI 2.3.1 specifications.
// [Files] AcpiCore.c, mptable.c, AcpiS3Save.c, S3Resume.dxs,
// S3Resume.c, AcpiPeiS3Func.c, BootScriptExecuter.c and DxeIpl.c
//
// 1 2/03/11 4:09p Oleksiyy
// [TAG] EIP53402
// [Category] Improvement
// [Description] Create new label of ACPI with separate S3 Functionality
// [Files] S3Restore.cif
// S3Restore.sdl
// S3Restore.mak
// S3Resume.dxs
// AcpiS3Wake.asm
// S3Resume.c
// AcpiPeiS3Func.c
// AcpiPeiS3Func.h
// BootScriptExecuter.c
//
// 3 3/26/09 4:51p Oleksiyy
// New ACPI Core implementation - improves logic, execution time and
// memory usage of ACPI module.
//
// 2 4/23/07 1:31p Felixp
// Boot Script related code moved from Core to ACPI module.
// PEI code added to S3 Resume PPI. DXE code added to AcpiS3Save driver.
//
//**********************************************************************
//<AMI_FHDR_START>
//
// Name: S3Resume.dxs
//
// Description:
//
//<AMI_FHDR_END>
//**********************************************************************
#include <Ppi/ReadOnlyVariable2.h>
DEPENDENCY_START
EFI_PEI_READ_ONLY_VARIABLE2_PPI_GUID AND
EFI_PEI_PERMANENT_MEMORY_INSTALLED_PPI
DEPENDENCY_END
//**********************************************************************
//**********************************************************************
//** **
//** (C)Copyright 1985-2009, American Megatrends, Inc. **
//** **
//** All Rights Reserved. **
//** **
//** 5555 Oakbrook Pkwy, Norcross, GA 30093 **
//** **
//** Phone: (770)-246-8600 **
//** **
//**********************************************************************
//**********************************************************************
|