]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFspPkg/Include/Private/FspPatchTable.h
Update IntelFspPkg according to FSP1.1.
[mirror_edk2.git] / IntelFspPkg / Include / Private / FspPatchTable.h
CommitLineData
c8ec22a2
JY
1/** @file\r
2\r
d5fb1edf 3 Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR>\r
c8ec22a2
JY
4 This program and the accompanying materials\r
5 are licensed and made available under the terms and conditions of the BSD License\r
6 which accompanies this distribution. The full text of the license may be found at\r
7 http://opensource.org/licenses/bsd-license.php.\r
8\r
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
11\r
12**/\r
13\r
14#ifndef _FSP_PATCH_TABLE_H_\r
15#define _FSP_PATCH_TABLE_H_\r
16\r
17#pragma pack(1)\r
18\r
19#define FSP_PATCH_TABLE_SIGNATURE SIGNATURE_32 ('F', 'S', 'P', 'P')\r
20\r
21typedef struct {\r
22 UINT32 Signature;\r
23 UINT16 HeaderLength;\r
24 UINT8 HeaderRevision;\r
25 UINT8 Reserved;\r
26 UINT32 PatchEntryNum;\r
27 UINT32 PatchData[FixedPcdGet32(PcdFspMaxPatchEntry)];\r
d5fb1edf 28 UINT32 VpdBase;\r
c8ec22a2
JY
29} FSP_PATCH_TABLE;\r
30\r
31#pragma pack()\r
32\r
33#endif\r