summaryrefslogtreecommitdiff
path: root/Core/EM/ACPI/AcpiS3.h
blob: 8fcbe7cfdf724b8ae2b4dcd0c2e28ed46012a85c (plain)
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
//**********************************************************************
//**********************************************************************
//**                                                                  **
//**        (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/Core/AcpiS3.h 6     3/26/09 4:51p Oleksiyy $
//
// $Revision: 6 $
//
// $Date: 3/26/09 4:51p $
//**********************************************************************
// Revision History
// ----------------
// $Log: /Alaska/BIN/Modules/ACPI/Template/Core/AcpiS3.h $
// 
// 6     3/26/09 4:51p Oleksiyy
// New ACPI Core implementation - improves logic, execution time and
// memory usage of ACPI module.
// 
// 5     4/15/08 9:15p Yakovlevs
// Functions Headers added
// 
// 4     4/09/08 5:14p Yakovlevs
// Make S3 Save code remember all possible locations of FACS.
// 
// 3     11/20/06 4:14a Yakovlevs
// updated structure of ACPI_CPU_DATA to match with declared in MRC code
// 
// 2     9/22/06 6:10p Markw
// 64-bit fix.
// 
// 1     5/04/05 12:24p Markw
// 
//**********************************************************************

//<AMI_FHDR_START>
//---------------------------------------------------------------------------
//
// Name:	AcpiS3.h
//
// Description:	ACPI S3 data structures definitions
//
//---------------------------------------------------------------------------
//<AMI_FHDR_END>

#ifndef __ACPI_S3_H__
#define __ACPI_S3_H__

#include <Efi.h>

#ifdef __cplusplus
extern "C" {
#endif

#define ACPI_GLOBAL_VARIABLE	L"AcpiGlobalVariable"
#define EFI_ACPI_VARIABLE_GUID \
	{0xaf9ffd67,0xec10,0x488a,0x9d,0xfc,0x6c,0xbf,0x5e,0xe2,0x2c,0x2e}

#pragma pack (1)
typedef struct {
	UINT16	Limit;
	UINT32	Base;
} PSEUDO_DESCRIPTOR;
#pragma pack()

//<AMI_THDR_START>
//----------------------------------------------------------------------------
// Name: ACPI_CPU_DATA
//
// Description: ACPI Cpu related data
//
// Fields: Name             Type                    Description
//----------------------------------------------------------------------------
// APState                 BOOLEAN
// S3BootPath              BOOLEAN
// WakeUpBuffer            EFI_PHYSICAL_ADDRESS
// GdtrProfile             EFI_PHYSICAL_ADDRESS
// IdtrProfile             EFI_PHYSICAL_ADDRESS
// CpuPrivateData          EFI_PHYSICAL_ADDRESS
// StackAddress            EFI_PHYSICAL_ADDRESS
// MicrocodePointerBuffer  EFI_PHYSICAL_ADDRESS
// SmramBase               EFI_PHYSICAL_ADDRESS
// SmmStartImageBase       EFI_PHYSICAL_ADDRESS
// SmmStartImageSize       UINT32
// NumberOfCpus            UINT32
// 
//----------------------------------------------------------------------------
//<AMI_THDR_END>

typedef struct ACPI_CPU_DATA {
  BOOLEAN               APState;
  BOOLEAN               S3BootPath;
  EFI_PHYSICAL_ADDRESS  WakeUpBuffer;
  EFI_PHYSICAL_ADDRESS  GdtrProfile;
  EFI_PHYSICAL_ADDRESS  IdtrProfile;
  EFI_PHYSICAL_ADDRESS  CpuPrivateData;
  EFI_PHYSICAL_ADDRESS  StackAddress;
  EFI_PHYSICAL_ADDRESS  MicrocodePointerBuffer;
  EFI_PHYSICAL_ADDRESS  SmramBase;
  EFI_PHYSICAL_ADDRESS  SmmStartImageBase;
  UINT32                SmmStartImageSize;
  UINT32                NumberOfCpus;
} ACPI_CPU_DATA;

//<AMI_THDR_START>
//----------------------------------------------------------------------------
// Name: ACPI_VARIABLE_SET
//
// Description: The structure combine all ACPI related variables into one 
// in order to boost performance
//
// Fields: Name             Type                    Description
//----------------------------------------------------------------------------
// AcpiReservedMemoryBase   EFI_PHYSICAL_ADDRESS
// AcpiReservedMemorySize   UINT32
// S3ReservedLowMemoryBase  EFI_PHYSICAL_ADDRESS
// AcpiBootScriptTable      EFI_PHYSICAL_ADDRESS
// RuntimeScriptTableBase   EFI_PHYSICAL_ADDRESS
// AcpiFacsTable[3]         EFI_PHYSICAL_ADDRESS
// SystemMemoryLength       UINT64
// AcpiCpuData              ACPI_CPU_DATA
// 
//----------------------------------------------------------------------------
//<AMI_THDR_END>

typedef struct _ACPI_VARIABLE_SET {
	//
	// Acpi Related variables
	//
	EFI_PHYSICAL_ADDRESS	AcpiReservedMemoryBase;
	UINT32			AcpiReservedMemorySize;
	EFI_PHYSICAL_ADDRESS	S3ReservedLowMemoryBase;
	EFI_PHYSICAL_ADDRESS	AcpiBootScriptTable;
	EFI_PHYSICAL_ADDRESS	RuntimeScriptTableBase;
	EFI_PHYSICAL_ADDRESS	AcpiFacsTable[3];
	UINT64			SystemMemoryLength;
	ACPI_CPU_DATA		AcpiCpuData;
} ACPI_VARIABLE_SET;




/****** DO NOT WRITE BELOW THIS LINE *******/
#ifdef __cplusplus
}
#endif
#endif

//**********************************************************************
//**********************************************************************
//**                                                                  **
//**        (C)Copyright 1985-2009, American Megatrends, Inc.         **
//**                                                                  **
//**                       All Rights Reserved.                       **
//**                                                                  **
//**             5555 Oakbrook Pkwy, Norcross, GA 30093               **
//**                                                                  **
//**                       Phone: (770)-246-8600                      **
//**                                                                  **
//**********************************************************************
//**********************************************************************