Install the gPciPlatformProtocol to scan for Option ROMs. For every device we probe the Option ROM and provide a pointer to the activated BAR if found. It's safe to assume that all ROM bars have been enumerated, reserved in the bridge resources and are disabled by default. Enabling them and leaving them enabled will do no harm. Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com>
20 lines
439 B
C
20 lines
439 B
C
/** @file
|
|
Header file for a PCI platform driver.
|
|
|
|
Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
|
|
**/
|
|
#ifndef _PCI_PLATFORM_DXE_H_
|
|
#define _PCI_PLATFORM_DXE_H_
|
|
#include <PiDxe.h>
|
|
|
|
#include <IndustryStandard/Pci.h>
|
|
#include <IndustryStandard/Acpi.h>
|
|
#include <IndustryStandard/Pci22.h>
|
|
#include <Protocol/PciIo.h>
|
|
#include <Protocol/PciPlatform.h>
|
|
|
|
#endif
|