PeiTbtPolicy.h 663 B

123456789101112131415161718192021222324252627282930
  1. /** @file
  2. TBT PEI Policy
  3. Copyright (c) 2018, Intel Corporation. All rights reserved.<BR>
  4. SPDX-License-Identifier: BSD-2-Clause-Patent
  5. **/
  6. #ifndef _PEI_TBT_POLICY_H_
  7. #define _PEI_TBT_POLICY_H_
  8. #include <TbtPolicyCommonDefinition.h>
  9. #pragma pack(push, 1)
  10. #define PEI_TBT_POLICY_REVISION 1
  11. /**
  12. TBT PEI configuration\n
  13. <b>Revision 1</b>:
  14. - Initial version.
  15. **/
  16. typedef struct _PEI_TBT_POLICY {
  17. DTBT_COMMON_CONFIG DTbtCommonConfig; ///< dTbt Common Configuration
  18. DTBT_CONTROLLER_CONFIG DTbtControllerConfig; ///< dTbt Controller Configuration
  19. } PEI_TBT_POLICY;
  20. #pragma pack(pop)
  21. #endif