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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
#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/HiiLib.h>
#include <Library/UefiHiiServicesLib.h>
#include "UefiMonitorTest.h"
#include "MainMenu.h"
STATIC CONST UMT_STATE_ACTIONS mStateActions[UMT_STATE_END] = {
{ MainMenuInit, MainMenuDoit, MainMenuTip, MainMenuKeyRight, MainMenuKeyLeft }
};
EFI_HII_HANDLE gUmtHiiHandle = NULL;
STATIC
EFI_STATUS
RegisterHiiPackage (
IN EFI_HANDLE ImageHandle,
OUT EFI_HII_HANDLE *HiiHandle
)
{
EFI_STATUS Status;
EFI_HII_PACKAGE_LIST_HEADER *PackageList;
// Retrieve HII package list from ImageHandle
Status = gBS->OpenProtocol (
ImageHandle,
&gEfiHiiPackageListProtocolGuid,
(VOID **)&PackageList,
ImageHandle,
NULL,
EFI_OPEN_PROTOCOL_GET_PROTOCOL
);
if (EFI_ERROR (Status)) {
DEBUG ((DEBUG_ERROR, "Failed to open EFI_HII_PACKAGE_LIST_PROTOCOL\n"));
return Status;
}
Status = gHiiDatabase->NewPackageList(gHiiDatabase, PackageList, NULL, HiiHandle);
if (EFI_ERROR(Status)) {
DEBUG ((DEBUG_ERROR, "Failed to add HII Package list to HII database: %r\n", Status));
return Status;
}
return Status;
}
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;
}
STATIC
EFI_STATUS
Run (
IN GRAPHICS_CONTEXT *Graphics
)
{
UMT_CONTEXT Ctx;
Ctx.State = UMT_STATE_MAIN_MENU;
Ctx.Running = TRUE;
Ctx.ShowTip = FALSE;
Ctx.Actions = &mStateActions[Ctx.State];
Ctx.Graphics = Graphics;
Ctx.Actions->Init (&Ctx);
while (Ctx.Running == TRUE)
{
Ctx.Actions->Doit (&Ctx);
// Buffer swap:
CopyMem (Graphics->FrontBuffer, Graphics->BackBuffer, Graphics->BufferSize);
}
return EFI_SUCCESS;
}
EFI_STATUS
EFIAPI
UefiMain (
IN EFI_HANDLE ImageHandle,
IN EFI_SYSTEM_TABLE *SystemTable
)
{
EFI_GRAPHICS_OUTPUT_PROTOCOL *Gop;
GRAPHICS_CONTEXT Graphics;
EFI_STATUS Status;
Status = EFI_SUCCESS;
Status = RegisterHiiPackage (ImageHandle, &gUmtHiiHandle);
if (EFI_ERROR(Status)) {
Print (L"Error: Failed to register HII Package list\n");
return Status;
}
Gop = GetGraphicsOutputProtocol ();
if (Gop == NULL) {
Print (L"Error: Getting a Graphical Output Protocol is failed\n");
return EFI_NOT_FOUND;
}
Status = PrepareGraphicsInfo (&Graphics, Gop);
if (EFI_ERROR(Status)) {
Print (L"Error: Preparing graphics information is failed. %r\n", Status);
return EFI_NOT_FOUND;
}
Status = Run (&Graphics);
ForgetGraphicsInfo (&Graphics);
return Status;
}
|