PeiTbtPolicy.h 701 B

12345678910111213141516171819202122232425262728293031
  1. /** @file
  2. TBT PEI Policy
  3. Copyright (c) 2020, 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 [MAX_DTBT_CONTROLLER_NUMBER]; ///< dTbt Controller Configuration
  19. } PEI_TBT_POLICY;
  20. #pragma pack(pop)
  21. #endif