]> git.proxmox.com Git - mirror_edk2.git/blob - Vlv2DeviceRefCodePkg/ValleyView2Soc/SouthCluster/Include/Guid/PchInitVar.h
aa5de5f4fd6f6175f553148aaceb54b8da452f50
[mirror_edk2.git] / Vlv2DeviceRefCodePkg / ValleyView2Soc / SouthCluster / Include / Guid / PchInitVar.h
1 /*++
2
3 Copyright (c) 2011 - 2014, Intel Corporation. All rights reserved
4
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7
8
9 Module Name:
10
11 PchInitVar.h
12
13 Abstract:
14
15 This file defines variable shared between PCH Init DXE driver and PCH
16 Init S3 Resume PEIM.
17
18 --*/
19 #ifndef _PCH_INIT_VAR_H_
20 #define _PCH_INIT_VAR_H_
21
22 #include <Protocol/PchPlatformPolicy.h>
23 //
24 // Define the PCH Init Var GUID
25 //
26 #define PCH_INIT_VARIABLE_GUID {0xe6c2f70a, 0xb604, 0x4877,{0x85, 0xba, 0xde, 0xec, 0x89, 0xe1, 0x17, 0xeb}}
27 //
28 // Extern the GUID for PPI users.
29 //
30 extern EFI_GUID gPchInitVariableGuid;
31
32 #define PCH_INIT_VARIABLE_NAME L"PchInit"
33
34 //
35 // Define the Pch Init Variable structure
36 //
37 typedef struct {
38 UINT32 StorePosition;
39 UINT32 ExecutePosition;
40 } PCH_S3_PARAMETER_HEADER;
41
42 #pragma pack(1)
43 typedef struct _PCH_INIT_VARIABLE {
44 PCH_S3_PARAMETER_HEADER *PchS3Parameter;
45 } PCH_INIT_VARIABLE;
46 #pragma pack()
47
48 #endif