TbtBoardInfo.h 612 B

1234567891011121314151617181920212223
  1. /** @file
  2. Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
  3. SPDX-License-Identifier: BSD-2-Clause-Patent
  4. **/
  5. #ifndef _TBT_INFO_GUID_H_
  6. #define _TBT_INFO_GUID_H_
  7. #include <TbtPolicyCommonDefinition.h>
  8. #pragma pack(1)
  9. //
  10. // TBT Info HOB
  11. //
  12. typedef struct _TBT_INFO_HOB {
  13. EFI_HOB_GUID_TYPE EfiHobGuidType;
  14. DTBT_COMMON_CONFIG DTbtCommonConfig; ///< dTbt Common Configuration
  15. DTBT_CONTROLLER_CONFIG DTbtControllerConfig [MAX_DTBT_CONTROLLER_NUMBER]; ///< dTbt Controller Configuration
  16. } TBT_INFO_HOB;
  17. #pragma pack()
  18. #endif