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: Chasel Chiu <chasel.chiu@intel.com>
42 lines
1.0 KiB
C
42 lines
1.0 KiB
C
/** @file
|
|
|
|
Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR>
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#ifndef _FSP_GLOBAL_DATA_H_
|
|
#define _FSP_GLOBAL_DATA_H_
|
|
|
|
#include <FspInfoHeader.h>
|
|
|
|
#pragma pack(1)
|
|
|
|
typedef struct {
|
|
VOID *DataPtr;
|
|
UINT32 MicrocodeRegionBase;
|
|
UINT32 MicrocodeRegionSize;
|
|
UINT32 CodeRegionBase;
|
|
UINT32 CodeRegionSize;
|
|
} FSP_PLAT_DATA;
|
|
|
|
#define FSP_GLOBAL_DATA_SIGNATURE SIGNATURE_32 ('F', 'S', 'P', 'D')
|
|
|
|
typedef struct {
|
|
UINT32 Signature;
|
|
UINT32 CoreStack;
|
|
FSP_PLAT_DATA PlatformData;
|
|
FSP_INFO_HEADER *FspInfoHeader;
|
|
VOID *UpdDataRgnPtr;
|
|
VOID *MemoryInitUpdPtr;
|
|
VOID *SiliconInitUpdPtr;
|
|
UINT8 ApiMode;
|
|
UINT8 Reserved[3];
|
|
UINT32 PerfIdx;
|
|
UINT64 PerfData[32];
|
|
} FSP_GLOBAL_DATA;
|
|
|
|
#pragma pack()
|
|
|
|
#endif
|