[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20180927085039.8391-10-ard.biesheuvel@linaro.org>
Date: Thu, 27 Sep 2018 10:50:36 +0200
From: Ard Biesheuvel <ard.biesheuvel@...aro.org>
To: linux-kernel@...r.kernel.org, Ingo Molnar <mingo@...nel.org>,
Thomas Gleixner <tglx@...utronix.de>
Cc: Ard Biesheuvel <ard.biesheuvel@...aro.org>,
linux-efi@...r.kernel.org, Aaron Ma <aaron.ma@...onical.com>,
Alistair Strachan <astrachan@...gle.com>,
Ben Hutchings <ben@...adent.org.uk>,
Bhupesh Sharma <bhsharma@...hat.com>,
Hans de Goede <hdegoede@...hat.com>,
Ivan Hu <ivan.hu@...onical.com>,
Jeremy Linton <jeremy.linton@....com>,
Marc Zyngier <marc.zyngier@....com>,
Matt Fleming <matt@...eblueprint.co.uk>,
Peter Robinson <pbrobinson@...hat.com>,
Sai Praneeth Prakhya <sai.praneeth.prakhya@...el.com>,
Sebastian Andrzej Siewior <bigeasy@...utronix.de>,
Stefan Agner <stefan@...er.ch>
Subject: [PATCH 09/11] efi/x86: earlyprintk - Add 64bit efi fb address support
From: Aaron Ma <aaron.ma@...onical.com>
EFI GOP uses 64-bit frame buffer address in some BIOS.
Add 64bit address support in efi earlyprintk.
Signed-off-by: Aaron Ma <aaron.ma@...onical.com>
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@...aro.org>
---
arch/x86/platform/efi/early_printk.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/arch/x86/platform/efi/early_printk.c b/arch/x86/platform/efi/early_printk.c
index 5fdacb322ceb..7476b3b097e1 100644
--- a/arch/x86/platform/efi/early_printk.c
+++ b/arch/x86/platform/efi/early_printk.c
@@ -26,12 +26,14 @@ static bool early_efi_keep;
*/
static __init int early_efi_map_fb(void)
{
- unsigned long base, size;
+ u64 base, size;
if (!early_efi_keep)
return 0;
base = boot_params.screen_info.lfb_base;
+ if (boot_params.screen_info.capabilities & VIDEO_CAPABILITY_64BIT_BASE)
+ base |= (u64)boot_params.screen_info.ext_lfb_base << 32;
size = boot_params.screen_info.lfb_size;
efi_fb = ioremap(base, size);
@@ -46,9 +48,11 @@ early_initcall(early_efi_map_fb);
*/
static __ref void *early_efi_map(unsigned long start, unsigned long len)
{
- unsigned long base;
+ u64 base;
base = boot_params.screen_info.lfb_base;
+ if (boot_params.screen_info.capabilities & VIDEO_CAPABILITY_64BIT_BASE)
+ base |= (u64)boot_params.screen_info.ext_lfb_base << 32;
if (efi_fb)
return (efi_fb + start);
--
2.18.0
Powered by blists - more mailing lists