diff options
author | Matt Fleming <matt.fleming@intel.com> | 2013-10-04 09:36:56 +0100 |
---|---|---|
committer | Matt Fleming <matt.fleming@intel.com> | 2013-10-28 18:09:58 +0000 |
commit | 72548e836b0c4abbb652e791dee9c91203a9a4c6 (patch) | |
tree | 2eead15738f173ed08ecbedc88adbb0bf2937022 /arch/x86/include/asm/efi.h | |
parent | c158c3bf59951bbb44bd7ccca9e6665dfd1617c5 (diff) | |
download | blackbird-op-linux-72548e836b0c4abbb652e791dee9c91203a9a4c6.tar.gz blackbird-op-linux-72548e836b0c4abbb652e791dee9c91203a9a4c6.zip |
x86/efi: Add EFI framebuffer earlyprintk support
It's incredibly difficult to diagnose early EFI boot issues without
special hardware because earlyprintk=vga doesn't work on EFI systems.
Add support for writing to the EFI framebuffer, via earlyprintk=efi,
which will actually give users a chance of providing debug output.
Cc: H. Peter Anvin <hpa@zytor.com>
Acked-by: Ingo Molnar <mingo@kernel.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Peter Jones <pjones@redhat.com>
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Diffstat (limited to 'arch/x86/include/asm/efi.h')
-rw-r--r-- | arch/x86/include/asm/efi.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/include/asm/efi.h b/arch/x86/include/asm/efi.h index 0062a0125041..65c6e6e3a552 100644 --- a/arch/x86/include/asm/efi.h +++ b/arch/x86/include/asm/efi.h @@ -109,6 +109,8 @@ static inline bool efi_is_native(void) return IS_ENABLED(CONFIG_X86_64) == efi_enabled(EFI_64BIT); } +extern struct console early_efi_console; + #else /* * IF EFI is not configured, have the EFI calls return -ENOSYS. |