mirror of https://github.com/acidanthera/audk.git
OvmfPkg/PlatformBootManagerLib: hoist PciAcpiInitialization()
PlatformBootManagerAfterConsole()
<--------------------------------+
PlatformBdsConnectSequence() |
ConnectDevicesFromQemu() / EfiBootManagerConnectAll() |
PciAcpiInitialization() ---------------------------------+
TryRunningQemuKernel()
Functionally this is a no-op:
- PciAcpiInitialization() iterates over PciIo protocol instances, which
are available just the same at the new call site.
- The PCI interrupt line register exists only to inform system software
(it doesn't affect hardware) and UEFI drivers don't use PCI interrupts
anyway.
(More background in commits 2e70cf8ade
and 5218c27950c4.)
This change will let us move TryRunningQemuKernel() between
PciAcpiInitialization() and PlatformBdsConnectSequence() in the next
patch.
Cc: "Gabriel L. Somlo" <gsomlo@gmail.com>
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: Jordan Justen <jordan.l.justen@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Acked-by: Gabriel Somlo <gsomlo@gmail.com>
Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Tested-by: Gabriel Somlo <gsomlo@gmail.com>
This commit is contained in:
parent
fe1b9e8e08
commit
5942ea61de
|
@ -1359,8 +1359,6 @@ PlatformBdsConnectSequence (
|
|||
DEBUG ((DEBUG_INFO, "EfiBootManagerConnectAll\n"));
|
||||
EfiBootManagerConnectAll ();
|
||||
}
|
||||
|
||||
PciAcpiInitialization ();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1446,6 +1444,11 @@ PlatformBootManagerAfterConsole (
|
|||
//
|
||||
BootLogoEnableLogo ();
|
||||
|
||||
//
|
||||
// Set PCI Interrupt Line registers and ACPI SCI_EN
|
||||
//
|
||||
PciAcpiInitialization ();
|
||||
|
||||
//
|
||||
// Perform some platform specific connect sequence
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue