CbPlatformSupportLib.h 708 B

12345678910111213141516171819202122232425262728
  1. /** @file
  2. Coreboot Platform Support library. Platform can provide an implementation of this
  3. library class to provide hooks that may be required for some type of
  4. platform features.
  5. Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
  6. SPDX-License-Identifier: BSD-2-Clause-Patent
  7. **/
  8. #ifndef __CB_PLATFORM_SUPPORT_LIB__
  9. #define __CB_PLATFORM_SUPPORT_LIB__
  10. /**
  11. Parse platform specific information from coreboot.
  12. @retval RETURN_SUCCESS The platform specific coreboot support succeeded.
  13. @retval RETURN_DEVICE_ERROR The platform specific coreboot support could not be completed.
  14. **/
  15. EFI_STATUS
  16. EFIAPI
  17. CbParsePlatformInfo (
  18. VOID
  19. );
  20. #endif // __CB_PLATFORM_SUPPORT_LIB__