blob: 7cdff8858146ee20ca73ed60dbb0abaf352b31ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
#include <Uefi.h>
#include <Library/BaseLib.h>
#include <Library/DebugLib.h>
#include <Library/MemoryAllocationLib.h>
#include <Library/BaseMemoryLib.h>
#include <Library/UefiApplicationEntryPoint.h>
#include <Library/UefiLib.h>
#include <Library/UefiBootServicesTableLib.h>
#include <Library/UefiRuntimeServicesTableLib.h>
#include <Protocol/GraphicsOutput.h>
STATIC
EFI_GRAPHICS_OUTPUT_PROTOCOL *
GetGraphicsOutputProtocol (
VOID
)
{
EFI_STATUS Status;
EFI_GRAPHICS_OUTPUT_PROTOCOL *Gop;
EFI_GRAPHICS_OUTPUT_MODE_INFORMATION *ModeInfo;
UINTN SizeOfInfo;
Status = gBS->LocateProtocol (
&gEfiGraphicsOutputProtocolGuid,
NULL,
(VOID **)&Gop
);
if (EFI_ERROR (Status)) {
DEBUG ((DEBUG_ERROR, "Unable to locate GOP\n"));
return NULL;
}
Status = Gop->QueryMode (
Gop,
(Gop->Mode == NULL) ? 0 : Gop->Mode->Mode,
&SizeOfInfo,
&ModeInfo
);
if (Status == EFI_NOT_STARTED) {
Status = Gop->SetMode (Gop, 0);
}
if (EFI_ERROR (Status)) {
DEBUG ((DEBUG_ERROR, "Unable to get native mode\n"));
return NULL;
}
// TODO: free ModeInfo
return Gop;
}
EFI_STATUS
EFIAPI
UefiMain (
IN EFI_HANDLE ImageHandle,
IN EFI_SYSTEM_TABLE *SystemTable
)
{
EFI_GRAPHICS_OUTPUT_PROTOCOL *Gop;
Gop = GetGraphicsOutputProtocol ();
if (Gop == NULL) {
Print (L"Error: Getting a Graphical Output Protocol is failed\n");
return EFI_NOT_FOUND;
}
return EFI_SUCCESS;
}
|