From mboxrd@z Thu Jan 1 00:00:00 1970 From: pjones@redhat.com (Peter Jones) Date: Mon, 21 Mar 2016 09:42:23 -0400 Subject: [PATCH 4/8] efi/x86: efifb: move DMI based quirks handling out of generic code In-Reply-To: <20160318105007.GM2619@codeblueprint.co.uk> References: <1457588408-19309-1-git-send-email-ard.biesheuvel@linaro.org> <1457588408-19309-5-git-send-email-ard.biesheuvel@linaro.org> <20160318105007.GM2619@codeblueprint.co.uk> Message-ID: <20160321134222.GA21791@redhat.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Fri, Mar 18, 2016 at 10:50:07AM +0000, Matt Fleming wrote: > (Cc'ing efifb maintainer and sysfb_efi.c author) > > On Thu, 10 Mar, at 12:40:04PM, Ard Biesheuvel wrote: > > The efifb quirks handling based on DMI identification of the platform is > > specific to x86, so move it to x86 arch code. > > > > Signed-off-by: Ard Biesheuvel > > --- > > arch/x86/include/asm/efi.h | 2 ++ > > arch/x86/kernel/sysfb_efi.c | 15 +++++++++++++++ > > drivers/video/fbdev/efifb.c | 15 ++++----------- > > 3 files changed, 21 insertions(+), 11 deletions(-) > > I've left the patch content intact below. This looks like a worthwhile > change to me. David, Peter, any comments? It looks right to me as well: Acked-By: Peter Jones > > > diff --git a/arch/x86/include/asm/efi.h b/arch/x86/include/asm/efi.h > > index 7d5187b66108..790adbc3a64a 100644 > > --- a/arch/x86/include/asm/efi.h > > +++ b/arch/x86/include/asm/efi.h > > @@ -154,6 +154,8 @@ static inline bool efi_runtime_supported(void) > > extern struct console early_efi_console; > > extern void parse_efi_setup(u64 phys_addr, u32 data_len); > > > > +extern void efifb_setup_from_dmi(struct screen_info *si, const char *opt); > > + > > #ifdef CONFIG_EFI_MIXED > > extern void efi_thunk_runtime_setup(void); > > extern efi_status_t efi_thunk_set_virtual_address_map( > > diff --git a/arch/x86/kernel/sysfb_efi.c b/arch/x86/kernel/sysfb_efi.c > > index b285d4e8c68e..e21a8a7ddcff 100644 > > --- a/arch/x86/kernel/sysfb_efi.c > > +++ b/arch/x86/kernel/sysfb_efi.c > > @@ -68,6 +68,21 @@ struct efifb_dmi_info efifb_dmi_list[] = { > > [M_UNKNOWN] = { NULL, 0, 0, 0, 0, OVERRIDE_NONE } > > }; > > > > +void efifb_setup_from_dmi(struct screen_info *si, const char *opt) > > +{ > > + int i; > > + > > + for (i = 0; i < M_UNKNOWN; i++) { > > + if (efifb_dmi_list[i].base != 0 && > > + !strcmp(opt, efifb_dmi_list[i].optname)) { > > + si->lfb_base = efifb_dmi_list[i].base; > > + si->lfb_linelength = efifb_dmi_list[i].stride; > > + si->lfb_width = efifb_dmi_list[i].width; > > + si->lfb_height = efifb_dmi_list[i].height; > > + } > > + } > > +} > > + > > #define choose_value(dmivalue, fwvalue, field, flags) ({ \ > > typeof(fwvalue) _ret_ = fwvalue; \ > > if ((flags) & (field)) \ > > diff --git a/drivers/video/fbdev/efifb.c b/drivers/video/fbdev/efifb.c > > index 95d293b7445a..dd594369b8a6 100644 > > --- a/drivers/video/fbdev/efifb.c > > +++ b/drivers/video/fbdev/efifb.c > > @@ -8,6 +8,7 @@ > > > > #include > > #include > > +#include > > #include > > #include > > #include > > @@ -15,7 +16,7 @@ > > #include > > #include > > #include