mirror of https://github.com/acidanthera/audk.git
ArmVirtPkg: PlatformIntelBdsLib: signal gRootBridgesConnectedEventGroupGuid
The explanation is in the patch titled OvmfPkg: introduce gRootBridgesConnectedEventGroupGuid At this point, this signal doesn't do anything yet. Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org> Cc: Jordan Justen <jordan.l.justen@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
This commit is contained in:
parent
0f6ff51d88
commit
158990b941
|
@ -25,6 +25,7 @@
|
||||||
#include <Protocol/PciIo.h>
|
#include <Protocol/PciIo.h>
|
||||||
#include <Protocol/PciRootBridgeIo.h>
|
#include <Protocol/PciRootBridgeIo.h>
|
||||||
#include <Guid/EventGroup.h>
|
#include <Guid/EventGroup.h>
|
||||||
|
#include <Guid/RootBridgesConnectedEventGroup.h>
|
||||||
|
|
||||||
#include "IntelBdsPlatform.h"
|
#include "IntelBdsPlatform.h"
|
||||||
|
|
||||||
|
@ -369,6 +370,11 @@ PlatformBdsPolicyBehavior (
|
||||||
//
|
//
|
||||||
FilterAndProcess (&gEfiPciRootBridgeIoProtocolGuid, NULL, Connect);
|
FilterAndProcess (&gEfiPciRootBridgeIoProtocolGuid, NULL, Connect);
|
||||||
|
|
||||||
|
//
|
||||||
|
// Signal the ACPI platform driver that it can download QEMU ACPI tables.
|
||||||
|
//
|
||||||
|
EfiEventGroupSignal (&gRootBridgesConnectedEventGroupGuid);
|
||||||
|
|
||||||
//
|
//
|
||||||
// Find all display class PCI devices (using the handles from the previous
|
// Find all display class PCI devices (using the handles from the previous
|
||||||
// step), and connect them non-recursively. This should produce a number of
|
// step), and connect them non-recursively. This should produce a number of
|
||||||
|
|
|
@ -71,6 +71,7 @@
|
||||||
gEfiFileSystemInfoGuid
|
gEfiFileSystemInfoGuid
|
||||||
gEfiFileSystemVolumeLabelInfoIdGuid
|
gEfiFileSystemVolumeLabelInfoIdGuid
|
||||||
gEfiEndOfDxeEventGroupGuid
|
gEfiEndOfDxeEventGroupGuid
|
||||||
|
gRootBridgesConnectedEventGroupGuid
|
||||||
|
|
||||||
[Protocols]
|
[Protocols]
|
||||||
gEfiDevicePathProtocolGuid
|
gEfiDevicePathProtocolGuid
|
||||||
|
|
Loading…
Reference in New Issue