https://bugzilla.tianocore.org/show_bug.cgi?id=1373 Replace BSD 2-Clause License with BSD+Patent License. This change is based on the following emails: https://lists.01.org/pipermail/edk2-devel/2019-February/036260.html https://lists.01.org/pipermail/edk2-devel/2018-October/030385.html RFCs with detailed process for the license change: V3: https://lists.01.org/pipermail/edk2-devel/2019-March/038116.html V2: https://lists.01.org/pipermail/edk2-devel/2019-March/037669.html V1: https://lists.01.org/pipermail/edk2-devel/2019-March/037500.html Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Qian Yi <yi.qian@intel.com> Reviewed-by: Zailing Sun <zailiang.sun@intel.com>
49 lines
959 B
C
49 lines
959 B
C
/*++
|
|
|
|
Copyright (c) 2011 - 2014, Intel Corporation. All rights reserved
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
|
|
|
|
Module Name:
|
|
|
|
PchInitVar.h
|
|
|
|
Abstract:
|
|
|
|
This file defines variable shared between PCH Init DXE driver and PCH
|
|
Init S3 Resume PEIM.
|
|
|
|
--*/
|
|
#ifndef _PCH_INIT_VAR_H_
|
|
#define _PCH_INIT_VAR_H_
|
|
|
|
#include <Protocol/PchPlatformPolicy.h>
|
|
//
|
|
// Define the PCH Init Var GUID
|
|
//
|
|
#define PCH_INIT_VARIABLE_GUID {0xe6c2f70a, 0xb604, 0x4877,{0x85, 0xba, 0xde, 0xec, 0x89, 0xe1, 0x17, 0xeb}}
|
|
//
|
|
// Extern the GUID for PPI users.
|
|
//
|
|
extern EFI_GUID gPchInitVariableGuid;
|
|
|
|
#define PCH_INIT_VARIABLE_NAME L"PchInit"
|
|
|
|
//
|
|
// Define the Pch Init Variable structure
|
|
//
|
|
typedef struct {
|
|
UINT32 StorePosition;
|
|
UINT32 ExecutePosition;
|
|
} PCH_S3_PARAMETER_HEADER;
|
|
|
|
#pragma pack(1)
|
|
typedef struct _PCH_INIT_VARIABLE {
|
|
PCH_S3_PARAMETER_HEADER *PchS3Parameter;
|
|
} PCH_INIT_VARIABLE;
|
|
#pragma pack()
|
|
|
|
#endif
|