1 /** @file 2 Hob guid for Information about the graphics mode. 3 4 Copyright (c) 2015, Intel Corporation. All rights reserved.<BR> 5 This program and the accompanying materials 6 are licensed and made available under the terms and conditions of the BSD License 7 which accompanies this distribution. The full text of the license may be found at 8 http://opensource.org/licenses/bsd-license.php 9 10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 12 13 @par Revision Reference: 14 This HOB is introduced in in PI Version 1.4. 15 16 **/ 17 18 #ifndef _GRAPHICS_INFO_HOB_GUID_H_ 19 #define _GRAPHICS_INFO_HOB_GUID_H_ 20 21 #include <Protocol/GraphicsOutput.h> 22 23 #define EFI_PEI_GRAPHICS_INFO_HOB_GUID \ 24 { \ 25 0x39f62cce, 0x6825, 0x4669, { 0xbb, 0x56, 0x54, 0x1a, 0xba, 0x75, 0x3a, 0x07 } \ 26 } 27 28 typedef struct { 29 EFI_PHYSICAL_ADDRESS FrameBufferBase; 30 UINT32 FrameBufferSize; 31 EFI_GRAPHICS_OUTPUT_MODE_INFORMATION GraphicsMode; 32 } EFI_PEI_GRAPHICS_INFO_HOB; 33 34 extern EFI_GUID gEfiGraphicsInfoHobGuid; 35 36 #endif 37