GopPolicyInitDxe.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /** @file
  2. Header file for the GopPolicyInitDxe Driver.
  3. Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
  4. SPDX-License-Identifier: BSD-2-Clause-Patent
  5. **/
  6. #ifndef _GOP_POLICY_INIT_DXE_H_
  7. #define _GOP_POLICY_INIT_DXE_H_
  8. #include <Protocol/FirmwareVolume2.h>
  9. #include <Library/UefiLib.h>
  10. #include <Library/BaseLib.h>
  11. #include <Library/MemoryAllocationLib.h>
  12. #include <Library/DxeServicesTableLib.h>
  13. #include <Library/UefiBootServicesTableLib.h>
  14. #include <Library/UefiRuntimeServicesTableLib.h>
  15. #include <Library/BaseMemoryLib.h>
  16. #include <Library/DebugLib.h>
  17. #include <PlatformBoardId.h>
  18. #include <Library/PcdLib.h>
  19. /**
  20. Initialize GOP DXE Policy
  21. @param[in] ImageHandle Image handle of this driver.
  22. @retval EFI_SUCCESS Initialization complete.
  23. @retval EFI_UNSUPPORTED The chipset is unsupported by this driver.
  24. @retval EFI_OUT_OF_RESOURCES Do not have enough resources to initialize the driver.
  25. @retval EFI_DEVICE_ERROR Device error, driver exits abnormally.
  26. **/
  27. EFI_STATUS
  28. EFIAPI
  29. GopPolicyInitDxe(
  30. IN EFI_HANDLE ImageHandle
  31. );
  32. #endif