hc
2024-08-12 233ab1bd4c5697f5cdec94e60206e8c6ac609b4c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/** @file
  The GUID definition for Host Bridge Data Hob
 
  Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>
  SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#ifndef _HOST_BRIDGE_DATA_HOB_H_
#define _HOST_BRIDGE_DATA_HOB_H_
 
#include <Base.h>
 
extern EFI_GUID gHostBridgeDataHobGuid;
#pragma pack (push,1)
 
///
/// Host Bridge Data Hob
///
typedef struct {
  EFI_HOB_GUID_TYPE        EfiHobGuidType;                       ///< GUID Hob type structure for gSaDataHobGuid
  UINT8                    EnableAbove4GBMmio;                   ///< 0=Disable above 4GB MMIO resource support, 1=Enable above 4GB MMIO resource support
  BOOLEAN                  SkipPamLock;                          ///< 0=All PAM registers will be locked in System Agent code, 1=Do not lock PAM registers in System Agent code.
  UINT8                    Rsvd1[2];                             ///< Reserved for future use
} HOST_BRIDGE_DATA_HOB;
#pragma pack (pop)
#endif