Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b607e212 authored by David Woodhouse's avatar David Woodhouse Committed by H. Peter Anvin
Browse files

x86, efi: Fix PCI ROM handing in EFI boot stub, in 32-bit mode



The 'Attributes' argument to pci->Attributes() function is 64-bit. So
when invoking in 32-bit mode it takes two registers, not just one.

This fixes memory corruption when booting via the 32-bit EFI boot stub.

Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
Cc: <stable@kernel.org>
Link: http://lkml.kernel.org/r/1358513837.2397.247.camel@shinybook.infradead.org


Signed-off-by: default avatarH. Peter Anvin <hpa@linux.intel.com>
Cc: Matt Fleming <matt.fleming@intel.com>
parent f791620f
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -295,10 +295,15 @@ static efi_status_t setup_efi_pci(struct boot_params *params)
		if (!pci)
			continue;

#ifdef CONFIG_X86_64
		status = efi_call_phys4(pci->attributes, pci,
					EfiPciIoAttributeOperationGet, 0,
					&attributes);

#else
		status = efi_call_phys5(pci->attributes, pci,
					EfiPciIoAttributeOperationGet, 0, 0,
					&attributes);
#endif
		if (status != EFI_SUCCESS)
			continue;