Skip to content

Commit 8a42a36

Browse files
Curtis Larsenmcb30
Curtis Larsen
authored andcommittedJul 16, 2014
[efi] Use EFI_CONSOLE_CONTROL_PROTOCOL to set text mode if available
On some older EFI 1.10 implementations (observed with an old iMac), we must use the (now obsolete) EFI_CONSOLE_CONTROL_PROTOCOL to switch the console into text mode. Modified-by: Michael Brown <mcb30@ipxe.org> Signed-off-by: Michael Brown <mcb30@ipxe.org>
1 parent eb55c68 commit 8a42a36

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
 

‎src/interface/efi/efi_console.c

+34
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,10 @@ FILE_LICENCE ( GPL2_OR_LATER );
2424
#include <errno.h>
2525
#include <assert.h>
2626
#include <ipxe/efi/efi.h>
27+
#include <ipxe/efi/Protocol/ConsoleControl/ConsoleControl.h>
2728
#include <ipxe/ansiesc.h>
2829
#include <ipxe/console.h>
30+
#include <ipxe/init.h>
2931
#include <config/console.h>
3032

3133
#define ATTR_BOLD 0x08
@@ -61,6 +63,10 @@ FILE_LICENCE ( GPL2_OR_LATER );
6163
/** Current character attribute */
6264
static unsigned int efi_attr = ATTR_DEFAULT;
6365

66+
/** Console control protocol */
67+
static EFI_CONSOLE_CONTROL_PROTOCOL *conctrl;
68+
EFI_REQUEST_PROTOCOL ( EFI_CONSOLE_CONTROL_PROTOCOL, &conctrl );
69+
6470
/**
6571
* Handle ANSI CUP (cursor position)
6672
*
@@ -286,9 +292,37 @@ static int efi_iskey ( void ) {
286292
return 0;
287293
}
288294

295+
/** EFI console driver */
289296
struct console_driver efi_console __console_driver = {
290297
.putchar = efi_putchar,
291298
.getchar = efi_getchar,
292299
.iskey = efi_iskey,
293300
.usage = CONSOLE_EFI,
294301
};
302+
303+
/**
304+
* Initialise EFI console
305+
*
306+
*/
307+
static void efi_console_init ( void ) {
308+
EFI_CONSOLE_CONTROL_SCREEN_MODE mode;
309+
310+
/* On some older EFI 1.10 implementations, we must use the
311+
* (now obsolete) EFI_CONSOLE_CONTROL_PROTOCOL to switch the
312+
* console into text mode.
313+
*/
314+
if ( conctrl ) {
315+
conctrl->GetMode ( conctrl, &mode, NULL, NULL );
316+
if ( mode != EfiConsoleControlScreenText ) {
317+
conctrl->SetMode ( conctrl,
318+
EfiConsoleControlScreenText );
319+
}
320+
}
321+
}
322+
323+
/**
324+
* EFI console initialisation function
325+
*/
326+
struct init_fn efi_console_init_fn __init_fn ( INIT_EARLY ) = {
327+
.initialise = efi_console_init,
328+
};

0 commit comments

Comments
 (0)