2014-07-29 04:21:52 +02:00
|
|
|
/** @file
|
|
|
|
|
2015-02-11 03:57:40 +01:00
|
|
|
Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:04:08 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2014-07-29 04:21:52 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef _FSP_PATCH_TABLE_H_
|
|
|
|
#define _FSP_PATCH_TABLE_H_
|
|
|
|
|
|
|
|
#pragma pack(1)
|
|
|
|
|
2015-04-30 03:57:25 +02:00
|
|
|
#define FSP_PATCH_TABLE_SIGNATURE FSP_FSPP_SIGNATURE
|
2014-07-29 04:21:52 +02:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
UINT32 Signature;
|
|
|
|
UINT16 HeaderLength;
|
|
|
|
UINT8 HeaderRevision;
|
|
|
|
UINT8 Reserved;
|
|
|
|
UINT32 PatchEntryNum;
|
|
|
|
UINT32 PatchData[FixedPcdGet32(PcdFspMaxPatchEntry)];
|
|
|
|
} FSP_PATCH_TABLE;
|
|
|
|
|
|
|
|
#pragma pack()
|
|
|
|
|
|
|
|
#endif
|