]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFspPkg/Include/Private/FspPatchTable.h
DynamicTablesPkg: GTDT updates for ACPI 6.3
[mirror_edk2.git] / IntelFspPkg / Include / Private / FspPatchTable.h
1 /** @file
2
3 Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR>
4 SPDX-License-Identifier: BSD-2-Clause-Patent
5
6 **/
7
8 #ifndef _FSP_PATCH_TABLE_H_
9 #define _FSP_PATCH_TABLE_H_
10
11 #pragma pack(1)
12
13 #define FSP_PATCH_TABLE_SIGNATURE FSP_FSPP_SIGNATURE
14
15 typedef struct {
16 UINT32 Signature;
17 UINT16 HeaderLength;
18 UINT8 HeaderRevision;
19 UINT8 Reserved;
20 UINT32 PatchEntryNum;
21 UINT32 PatchData[FixedPcdGet32(PcdFspMaxPatchEntry)];
22 } FSP_PATCH_TABLE;
23
24 #pragma pack()
25
26 #endif