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@xxxxxxxxxxxxxxxxxxxxxxxxxx> Fixes: 2c3625cb9fa2 ("efi/x86: Fold __setup_efi_pci32() and __setup_efi_pci64() into one function") 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; -- To unsubscribe from this list: send the line "unsubscribe linux-efi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html