SmbiosPlatformDxe.h 1013 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /** @file
  2. This driver installs SMBIOS information for QSP
  3. Copyright (c) 2011, Bei Guan <gbtju85@gmail.com>
  4. Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>
  5. SPDX-License-Identifier: BSD-2-Clause-Patent
  6. **/
  7. #ifndef _SMBIOS_PLATFORM_DXE_H_
  8. #define _SMBIOS_PLATFORM_DXE_H_
  9. #include <PiDxe.h>
  10. #include <Protocol/Smbios.h>
  11. #include <IndustryStandard/SmBios.h>
  12. #include <Library/DebugLib.h>
  13. #include <Library/BaseLib.h>
  14. #include <Library/BaseMemoryLib.h>
  15. #include <Library/UefiBootServicesTableLib.h>
  16. #include <Library/MemoryAllocationLib.h>
  17. #include <Library/IoLib.h>
  18. #include <Library/CmosAccessLib.h>
  19. #include <CmosMap.h>
  20. /**
  21. Validates the SMBIOS entry point structure
  22. @param EntryPointStructure SMBIOS entry point structure
  23. @retval TRUE The entry point structure is valid
  24. @retval FALSE The entry point structure is not valid
  25. **/
  26. BOOLEAN
  27. IsEntryPointStructureValid (
  28. IN SMBIOS_TABLE_ENTRY_POINT *EntryPointStructure
  29. );
  30. #endif