lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Sat, 23 Jun 2018 20:09:19 +0200
From:   Ard Biesheuvel <ard.biesheuvel@...aro.org>
To:     Wilfried Klaebe <linux-kernel@...enslange-mailadresse.de>
Cc:     Thomas Gleixner <tglx@...utronix.de>,
        Ingo Molnar <mingo@...hat.com>,
        "H. Peter Anvin" <hpa@...or.com>,
        "the arch/x86 maintainers" <x86@...nel.org>,
        linux-efi <linux-efi@...r.kernel.org>,
        Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
        Hans de Goede <hdegoede@...hat.com>
Subject: Re: [PATCH] make radeon driver find ATOM BIOS again on 64-bit EFI systems

(+ Hans, who may be able to test this on 32-bit h/w)

On 23 June 2018 at 19:43, Wilfried Klaebe
<linux-kernel@...enslange-mailadresse.de> wrote:
> make radeon driver find ATOM BIOS again on 64-bit EFI systems
>
> Commit 2c3625cb9fa2c477d5877a1819e29d6a902e5fef ("efi/x86: Fold
> __setup_efi_pci32() and __setup_efi_pci64() into one function")
> broke finding radeon's BIOS ROM on Apple MacBook Pro 8,2. Fix.
>
>
> On my Apple MacBook Pro 8,2, Linux 4.18-rc1 was unable to locate a BIOS
> ROM for the radeon GPU. Comparing Linux 4.17 and 4.18-rc1 dmesg:
>
>  radeon 0000:01:00.0: Invalid PCI ROM header signature: expecting 0xaa55, got 0x0000
>  radeon 0000:01:00.0: Invalid PCI ROM header signature: expecting 0xaa55, got 0x0000
> -ATOM BIOS: Apple
> +[drm:radeon_get_bios [radeon]] *ERROR* Unable to locate a BIOS ROM
>
> Bisecting found 2c3625cb9fa2c477d5877a1819e29d6a902e5fef.
>
> Comparing the old __setup_efi_pci32 and __setup_efi_pci64, and looking
> at what the new __setup_efi_pci does, I noticed that the first does
>
>         status = efi_early->call(pci->attributes, pci,
>                                  EfiPciIoAttributeOperationGet, 0, 0,
>                                  &attributes);
>
> while the second does
>
>         status = efi_early->call(pci->attributes, pci,
>                                  EfiPciIoAttributeOperationGet, 0,
>                                  &attributes);
>
> (note the difference of one "0, "), while the third has two occurences
> of "0, " too in it's EfiPciIoAttributeOperationGet call construct.
>
> Testing confirmed my machine works as expected with the variant with
> just one "0, "; I cannot test if this is true for other 64-bit EFI
> machines or maybe even 32-bit EFI machines.
>
>
> Signed-off-by: Wilfried Klaebe <linux-kernel@...enslange-mailadresse.de>
> Fixes: 2c3625cb9fa2 ("efi/x86: Fold __setup_efi_pci32() and __setup_efi_pci64() into one function")
>

Hello Wilfried,

Thanks for tracking down this issue.

It seems the two 0s in the 32-bit version are there because the type
of the argument is UINT64. So instead, I'd like to apply this change:

>         void *romimage;
>
>         status = efi_call_proto(efi_pci_io_protocol, attributes, pci,
> -                               EfiPciIoAttributeOperationGet, 0, 0,
> +                               EfiPciIoAttributeOperationGet, 0ULL,
>                                 &attributes);
>         if (status != EFI_SUCCESS)
>

unless anyone objects?

Thanks,
Ard.

> diff --git a/arch/x86/boot/compressed/eboot.c b/arch/x86/boot/compressed/eboot.c
> index a8a8642d2b0b..1b348610bd86 100644
> --- a/arch/x86/boot/compressed/eboot.c
> +++ b/arch/x86/boot/compressed/eboot.c
> @@ -117,9 +117,14 @@ __setup_efi_pci(efi_pci_io_protocol_t *pci, struct pci_setup_rom **__rom)
>         uint64_t attributes, romsize;
>         void *romimage;
>
> -       status = efi_call_proto(efi_pci_io_protocol, attributes, pci,
> -                               EfiPciIoAttributeOperationGet, 0, 0,
> -                               &attributes);
> +       if (efi_early->is64)
> +               status = efi_call_proto(efi_pci_io_protocol, attributes, pci,
> +                                       EfiPciIoAttributeOperationGet, 0,
> +                                       &attributes);
> +       else
> +               status = efi_call_proto(efi_pci_io_protocol, attributes, pci,
> +                                       EfiPciIoAttributeOperationGet, 0, 0,
> +                                       &attributes);
>         if (status != EFI_SUCCESS)
>                 return status;
>

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ