hc
2024-03-22 a0752693d998599af469473b8dc239ef973a012f
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
26
27
28
29
/** @file
  MISC DXE policy definitions
  
Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
 
**/
#ifndef _MISC_DXE_CONFIG_H_
#define _MISC_DXE_CONFIG_H_
 
#pragma pack(push, 1)
 
#define MISC_DXE_CONFIG_REVISION 1
 
/**
  This data structure includes miscellaneous configuration variables such SA thermal device
  control. The data elements should be initialized by a Platform Module.\n
  <b>Revision 1</b>:
  - Initial version.
**/
typedef struct {
  CONFIG_BLOCK_HEADER   Header;                    ///< Offset 0-27 Config Block Header
  UINT32                EnableAbove4GBMmio : 1;    ///< Enable/disable above 4GB MMIO resource support: <b>0=Disable</b>, 1=Enable
  UINT32                RsvdBits0          : 31;   ///< Reserved bits.
  EFI_PHYSICAL_ADDRESS  *RmrrUsbBaseAddress;       ///< The field is used to describe the platform USB Reserved memory for Intel VT-d support. Platform code should provide this information for Intel VT-d DXE driver use
} MISC_DXE_CONFIG;
#pragma pack(pop)
 
#endif // _MISC_DXE_CONFIG_H_