Clean ISA_IO/ISA_IO_16 and VGA_IO/VGA_IO_16 attribute usage in PCI bus driver/PCI host bridge drivers/LPC/VGA device drivers.
1. Fix the incorrect definition of EFI_PCI_IO_ATTRIBUTE_VGA_IO_16 (does not conform to the UEFI spec) in PciIo.h. 2. Add missing definitions of ISA and VGA IO attributes in PCI Root Bridge IO protocol. 3. Improve the algorithm in the PCI bus driver to get PCI platform policy from PCI Platform Protocol and PCI Override Protocol. 4. Update the PCI bus driver to use the PCI platform policy to determine the supported attributes that are returned by the EFI_PCI_IO_PROTOCOL.Attributes() function. This is required by the PI spec. 5. Add a backward compatibility workaround for PCI VGA drivers in Option ROM, which typically sets VGA_IO without checking supported attributes. 6. Update the PCI host bridge driver in PcAtChipsetPkg to report VGA_IO_16 and ISA_IO_16 instead of VGA_IO/ISA_IO attributes. Modern chipsets don’t have hardware capability to control 10-bit or 16-bit decoding for ISA/VGA aliases. 7. Update LPC/VGA device drivers to check supported attributes of VGA_IO/VGA_IO_16 or ISA_IO/ISA_IO_16. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11204 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@ -14,6 +14,13 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||
|
||||
#include "PciBus.h"
|
||||
|
||||
//
|
||||
// The default policy for the PCI bus driver is NOT to reserve I/O ranges for both ISA aliases and VGA aliases.
|
||||
//
|
||||
BOOLEAN mReserveIsaAliases = FALSE;
|
||||
BOOLEAN mReserveVgaAliases = FALSE;
|
||||
BOOLEAN mPolicyDetermined = FALSE;
|
||||
|
||||
/**
|
||||
The function is used to skip VGA range.
|
||||
|
||||
@ -188,46 +195,37 @@ CalculateApertureIo16 (
|
||||
LIST_ENTRY *CurrentLink;
|
||||
PCI_RESOURCE_NODE *Node;
|
||||
UINT64 Offset;
|
||||
BOOLEAN IsaEnable;
|
||||
BOOLEAN VGAEnable;
|
||||
EFI_PCI_PLATFORM_POLICY PciPolicy;
|
||||
|
||||
//
|
||||
// Always assume there is ISA device and VGA device on the platform
|
||||
// will be customized later
|
||||
//
|
||||
IsaEnable = FALSE;
|
||||
VGAEnable = FALSE;
|
||||
if (!mPolicyDetermined) {
|
||||
//
|
||||
// Check PciPlatform policy
|
||||
//
|
||||
Status = EFI_NOT_FOUND;
|
||||
PciPolicy = 0;
|
||||
if (gPciPlatformProtocol != NULL) {
|
||||
Status = gPciPlatformProtocol->GetPlatformPolicy (
|
||||
gPciPlatformProtocol,
|
||||
&PciPolicy
|
||||
);
|
||||
}
|
||||
|
||||
if (EFI_ERROR (Status) && gPciOverrideProtocol != NULL) {
|
||||
Status = gPciOverrideProtocol->GetPlatformPolicy (
|
||||
gPciOverrideProtocol,
|
||||
&PciPolicy
|
||||
);
|
||||
}
|
||||
|
||||
//
|
||||
// Check PciPlatform policy
|
||||
//
|
||||
if (gPciPlatformProtocol != NULL) {
|
||||
Status = gPciPlatformProtocol->GetPlatformPolicy (
|
||||
gPciPlatformProtocol,
|
||||
&PciPolicy
|
||||
);
|
||||
if (!EFI_ERROR (Status)) {
|
||||
if ((PciPolicy & EFI_RESERVE_ISA_IO_ALIAS) != 0) {
|
||||
IsaEnable = TRUE;
|
||||
mReserveIsaAliases = TRUE;
|
||||
}
|
||||
if ((PciPolicy & EFI_RESERVE_VGA_IO_ALIAS) != 0) {
|
||||
VGAEnable = TRUE;
|
||||
}
|
||||
}
|
||||
} else if (gPciOverrideProtocol != NULL) {
|
||||
Status = gPciOverrideProtocol->GetPlatformPolicy (
|
||||
gPciOverrideProtocol,
|
||||
&PciPolicy
|
||||
);
|
||||
if (!EFI_ERROR (Status)) {
|
||||
if ((PciPolicy & EFI_RESERVE_ISA_IO_ALIAS) != 0) {
|
||||
IsaEnable = TRUE;
|
||||
}
|
||||
if ((PciPolicy & EFI_RESERVE_VGA_IO_ALIAS) != 0) {
|
||||
VGAEnable = TRUE;
|
||||
mReserveVgaAliases = TRUE;
|
||||
}
|
||||
}
|
||||
mPolicyDetermined = TRUE;
|
||||
}
|
||||
|
||||
Aperture = 0;
|
||||
@ -261,13 +259,13 @@ CalculateApertureIo16 (
|
||||
// If both of them are enabled, then the IO resource would
|
||||
// become too limited to meet the requirement of most of devices.
|
||||
//
|
||||
if (IsaEnable || VGAEnable) {
|
||||
if (mReserveIsaAliases || mReserveVgaAliases) {
|
||||
if (!IS_PCI_BRIDGE (&(Node->PciDev->Pci)) && !IS_CARDBUS_BRIDGE (&(Node->PciDev->Pci))) {
|
||||
//
|
||||
// Check if there is need to support ISA/VGA decoding
|
||||
// If so, we need to avoid isa/vga aliasing range
|
||||
//
|
||||
if (IsaEnable) {
|
||||
if (mReserveIsaAliases) {
|
||||
SkipIsaAliasAperture (
|
||||
&Aperture,
|
||||
Node->Length
|
||||
@ -276,7 +274,7 @@ CalculateApertureIo16 (
|
||||
if (Offset != 0) {
|
||||
Aperture = Aperture + (Node->Alignment + 1) - Offset;
|
||||
}
|
||||
} else if (VGAEnable) {
|
||||
} else if (mReserveVgaAliases) {
|
||||
SkipVGAAperture (
|
||||
&Aperture,
|
||||
Node->Length
|
||||
|
Reference in New Issue
Block a user