SetupTable.h 582 B

12345678910111213141516171819202122232425
  1. /** @file
  2. @copyright
  3. Copyright 2012 - 2021 Intel Corporation. <BR>
  4. SPDX-License-Identifier: BSD-2-Clause-Patent
  5. **/
  6. #ifndef _SETUP_TABLE_H_
  7. #define _SETUP_TABLE_H_
  8. #include <Guid/SocketVariable.h>
  9. #include <Guid/SetupVariable.h>
  10. #include <PchSetupVariable.h>
  11. #include <Guid/FpgaSocketVariable.h>
  12. #include <Guid/MemBootHealthGuid.h>
  13. typedef struct {
  14. SOCKET_CONFIGURATION SocketConfig;
  15. SYSTEM_CONFIGURATION SystemConfig;
  16. PCH_SETUP PchSetup;
  17. MEM_BOOT_HEALTH_CONFIG MemBootHealthConfig;
  18. } SETUP_DATA;
  19. #endif