diff mbox

[edk2,4/4] ArmVirtPkg/VirtFdtDxe: drop PCI host bridge handling

Message ID 1460468829-13982-5-git-send-email-ard.biesheuvel@linaro.org
State Accepted
Commit ffea0a2ce21e8e9878587de2419959a7bfea4021
Headers show

Commit Message

Ard Biesheuvel April 12, 2016, 1:47 p.m. UTC
Now that the PCI host bridge driver parses the DT node that describes
the PCI host bridge directly via the FDT client protocol, we can drop the
handling from VirtFdtDxe completely.

This means some PCI related PCDs are no longer set, such as PcdPciBusMin,
PcdPciBusMax, PcdPciIoBase, PcdPciIoSize, PcdPciIoTranslation,
PcdPciMmio32Base and PcdPciMmio32Size. Since these PCDs are specific to
ARM (and declared in ArmPlatformPkg), and not used anywhere else by the
ArmVirtPkg platforms, we can simply stop populating them, and drop all
references to them.

It also means that we can no longer rely on PcdPciExpressBaseAddress and
PcdPciDisableBusEnumeration to be set before they may be needed by
either PciBusDxe or QemuFwCfgAcpiPlatformDxe, so make those depend on
FdtPciPcdProducerLib explicitly via NULL library class resolution.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>

---
 ArmVirtPkg/ArmVirtQemu.dsc           |  18 +-
 ArmVirtPkg/ArmVirtQemuKernel.dsc     |  18 +-
 ArmVirtPkg/ArmVirtXen.dsc            |  12 --
 ArmVirtPkg/VirtFdtDxe/VirtFdtDxe.c   | 203 --------------------
 ArmVirtPkg/VirtFdtDxe/VirtFdtDxe.inf |   9 -
 5 files changed, 16 insertions(+), 244 deletions(-)

-- 
2.5.0

_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel

Comments

Laszlo Ersek April 12, 2016, 4:10 p.m. UTC | #1
On 04/12/16 15:47, Ard Biesheuvel wrote:
> Now that the PCI host bridge driver parses the DT node that describes

> the PCI host bridge directly via the FDT client protocol, we can drop the

> handling from VirtFdtDxe completely.

> 

> This means some PCI related PCDs are no longer set, such as PcdPciBusMin,

> PcdPciBusMax, PcdPciIoBase, PcdPciIoSize, PcdPciIoTranslation,

> PcdPciMmio32Base and PcdPciMmio32Size. Since these PCDs are specific to

> ARM (and declared in ArmPlatformPkg), and not used anywhere else by the

> ArmVirtPkg platforms, we can simply stop populating them, and drop all

> references to them.

> 

> It also means that we can no longer rely on PcdPciExpressBaseAddress and

> PcdPciDisableBusEnumeration to be set before they may be needed by

> either PciBusDxe or QemuFwCfgAcpiPlatformDxe, so make those depend on

> FdtPciPcdProducerLib explicitly via NULL library class resolution.


Please reword the above paragraph like this (basically, drop
PcdPciExpressBaseAddress, and remove "may"):

  It also means that we can no longer rely on
  PcdPciDisableBusEnumeration to be set before it is consumed by
  PciBusDxe and QemuFwCfgAcpiPlatformDxe, so make those depend on
  FdtPciPcdProducerLib explicitly via NULL library class resolution.

> diff --git a/ArmVirtPkg/VirtFdtDxe/VirtFdtDxe.inf b/ArmVirtPkg/VirtFdtDxe/VirtFdtDxe.inf

> index 6c8ba68599ae..8ebce337747f 100644

> --- a/ArmVirtPkg/VirtFdtDxe/VirtFdtDxe.inf

> +++ b/ArmVirtPkg/VirtFdtDxe/VirtFdtDxe.inf

> @@ -51,15 +51,6 @@ [Guids]

>  

>  [Pcd]

>    gArmPlatformTokenSpaceGuid.PcdPL031RtcBase

> -  gArmPlatformTokenSpaceGuid.PcdPciBusMin

> -  gArmPlatformTokenSpaceGuid.PcdPciBusMax

> -  gArmPlatformTokenSpaceGuid.PcdPciIoBase

> -  gArmPlatformTokenSpaceGuid.PcdPciIoSize

> -  gArmPlatformTokenSpaceGuid.PcdPciIoTranslation

> -  gArmPlatformTokenSpaceGuid.PcdPciMmio32Base

> -  gArmPlatformTokenSpaceGuid.PcdPciMmio32Size

> -  gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress

> -  gEfiMdeModulePkgTokenSpaceGuid.PcdPciDisableBusEnumeration


Can you perhaps drop "ArmPlatformPkg/ArmPlatformPkg.dec" too? If not,
that's not a problem, but if it works, we should.

With those:

Reviewed-by: Laszlo Ersek <lersek@redhat.com>


Since this sub-series is now fully reviewed (dependent on a few tweaks),
feel free to push it too.

Thanks!
Laszlo
_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel
Ard Biesheuvel April 12, 2016, 4:30 p.m. UTC | #2
On 12 April 2016 at 18:10, Laszlo Ersek <lersek@redhat.com> wrote:
> On 04/12/16 15:47, Ard Biesheuvel wrote:

>> Now that the PCI host bridge driver parses the DT node that describes

>> the PCI host bridge directly via the FDT client protocol, we can drop the

>> handling from VirtFdtDxe completely.

>>

>> This means some PCI related PCDs are no longer set, such as PcdPciBusMin,

>> PcdPciBusMax, PcdPciIoBase, PcdPciIoSize, PcdPciIoTranslation,

>> PcdPciMmio32Base and PcdPciMmio32Size. Since these PCDs are specific to

>> ARM (and declared in ArmPlatformPkg), and not used anywhere else by the

>> ArmVirtPkg platforms, we can simply stop populating them, and drop all

>> references to them.

>>

>> It also means that we can no longer rely on PcdPciExpressBaseAddress and

>> PcdPciDisableBusEnumeration to be set before they may be needed by

>> either PciBusDxe or QemuFwCfgAcpiPlatformDxe, so make those depend on

>> FdtPciPcdProducerLib explicitly via NULL library class resolution.

>

> Please reword the above paragraph like this (basically, drop

> PcdPciExpressBaseAddress, and remove "may"):

>

>   It also means that we can no longer rely on

>   PcdPciDisableBusEnumeration to be set before it is consumed by

>   PciBusDxe and QemuFwCfgAcpiPlatformDxe, so make those depend on

>   FdtPciPcdProducerLib explicitly via NULL library class resolution.

>


OK

>> diff --git a/ArmVirtPkg/VirtFdtDxe/VirtFdtDxe.inf b/ArmVirtPkg/VirtFdtDxe/VirtFdtDxe.inf

>> index 6c8ba68599ae..8ebce337747f 100644

>> --- a/ArmVirtPkg/VirtFdtDxe/VirtFdtDxe.inf

>> +++ b/ArmVirtPkg/VirtFdtDxe/VirtFdtDxe.inf

>> @@ -51,15 +51,6 @@ [Guids]

>>

>>  [Pcd]

>>    gArmPlatformTokenSpaceGuid.PcdPL031RtcBase

>> -  gArmPlatformTokenSpaceGuid.PcdPciBusMin

>> -  gArmPlatformTokenSpaceGuid.PcdPciBusMax

>> -  gArmPlatformTokenSpaceGuid.PcdPciIoBase

>> -  gArmPlatformTokenSpaceGuid.PcdPciIoSize

>> -  gArmPlatformTokenSpaceGuid.PcdPciIoTranslation

>> -  gArmPlatformTokenSpaceGuid.PcdPciMmio32Base

>> -  gArmPlatformTokenSpaceGuid.PcdPciMmio32Size

>> -  gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress

>> -  gEfiMdeModulePkgTokenSpaceGuid.PcdPciDisableBusEnumeration

>

> Can you perhaps drop "ArmPlatformPkg/ArmPlatformPkg.dec" too? If not,

> that's not a problem, but if it works, we should.

>


No, see the top Pcd. But I will keep it in mind for the remaining patches.

> With those:

>

> Reviewed-by: Laszlo Ersek <lersek@redhat.com>

>

> Since this sub-series is now fully reviewed (dependent on a few tweaks),

> feel free to push it too.

>


Thanks, and pushed ...

-- 
Ard.
_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel
diff mbox

Patch

diff --git a/ArmVirtPkg/ArmVirtQemu.dsc b/ArmVirtPkg/ArmVirtQemu.dsc
index f2eccf8cca63..c42092f54163 100644
--- a/ArmVirtPkg/ArmVirtQemu.dsc
+++ b/ArmVirtPkg/ArmVirtQemu.dsc
@@ -213,14 +213,6 @@  [PcdsDynamicDefault.common]
   ## PL031 RealTimeClock
   gArmPlatformTokenSpaceGuid.PcdPL031RtcBase|0x0
 
-  gArmPlatformTokenSpaceGuid.PcdPciBusMin|0x0
-  gArmPlatformTokenSpaceGuid.PcdPciBusMax|0x0
-  gArmPlatformTokenSpaceGuid.PcdPciIoBase|0x0
-  gArmPlatformTokenSpaceGuid.PcdPciIoSize|0x0
-  gArmPlatformTokenSpaceGuid.PcdPciIoTranslation|0x0
-  gArmPlatformTokenSpaceGuid.PcdPciMmio32Base|0x0
-  gArmPlatformTokenSpaceGuid.PcdPciMmio32Size|0x0
-
   # set PcdPciExpressBaseAddress to MAX_UINT64, which signifies that this
   # PCD and PcdPciDisableBusEnumeration above have not been assigned yet
   gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress|0xFFFFFFFFFFFFFFFF
@@ -370,7 +362,10 @@  [Components.common]
   # PCI support
   #
   ArmVirtPkg/PciHostBridgeDxe/PciHostBridgeDxe.inf
-  MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
+  MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf {
+    <LibraryClasses>
+      NULL|ArmVirtPkg/Library/FdtPciPcdProducerLib/FdtPciPcdProducerLib.inf
+  }
   OvmfPkg/VirtioPciDeviceDxe/VirtioPciDeviceDxe.inf
   OvmfPkg/Virtio10Dxe/Virtio10.inf
 
@@ -397,4 +392,7 @@  [Components.AARCH64]
   # ACPI Support
   #
   MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf
-  OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpiPlatformDxe.inf
+  OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpiPlatformDxe.inf {
+    <LibraryClasses>
+      NULL|ArmVirtPkg/Library/FdtPciPcdProducerLib/FdtPciPcdProducerLib.inf
+  }
diff --git a/ArmVirtPkg/ArmVirtQemuKernel.dsc b/ArmVirtPkg/ArmVirtQemuKernel.dsc
index 107627e6a6f4..2cbeced695f9 100644
--- a/ArmVirtPkg/ArmVirtQemuKernel.dsc
+++ b/ArmVirtPkg/ArmVirtQemuKernel.dsc
@@ -198,14 +198,6 @@  [PcdsDynamicDefault.common]
   ## PL031 RealTimeClock
   gArmPlatformTokenSpaceGuid.PcdPL031RtcBase|0x0
 
-  gArmPlatformTokenSpaceGuid.PcdPciBusMin|0x0
-  gArmPlatformTokenSpaceGuid.PcdPciBusMax|0x0
-  gArmPlatformTokenSpaceGuid.PcdPciIoBase|0x0
-  gArmPlatformTokenSpaceGuid.PcdPciIoSize|0x0
-  gArmPlatformTokenSpaceGuid.PcdPciIoTranslation|0x0
-  gArmPlatformTokenSpaceGuid.PcdPciMmio32Base|0x0
-  gArmPlatformTokenSpaceGuid.PcdPciMmio32Size|0x0
-
   # set PcdPciExpressBaseAddress to MAX_UINT64, which signifies that this
   # PCD and PcdPciDisableBusEnumeration above have not been assigned yet
   gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress|0xFFFFFFFFFFFFFFFF
@@ -346,13 +338,19 @@  [Components.common]
   # ACPI Support
   #
   MdeModulePkg/Universal/Acpi/AcpiTableDxe/AcpiTableDxe.inf
-  OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpiPlatformDxe.inf
+  OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpiPlatformDxe.inf {
+    <LibraryClasses>
+      NULL|ArmVirtPkg/Library/FdtPciPcdProducerLib/FdtPciPcdProducerLib.inf
+  }
 
   #
   # PCI support
   #
   ArmVirtPkg/PciHostBridgeDxe/PciHostBridgeDxe.inf
-  MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf
+  MdeModulePkg/Bus/Pci/PciBusDxe/PciBusDxe.inf {
+    <LibraryClasses>
+      NULL|ArmVirtPkg/Library/FdtPciPcdProducerLib/FdtPciPcdProducerLib.inf
+  }
   OvmfPkg/VirtioPciDeviceDxe/VirtioPciDeviceDxe.inf
   OvmfPkg/Virtio10Dxe/Virtio10.inf
 
diff --git a/ArmVirtPkg/ArmVirtXen.dsc b/ArmVirtPkg/ArmVirtXen.dsc
index d5057bb46326..112dc8ed33df 100644
--- a/ArmVirtPkg/ArmVirtXen.dsc
+++ b/ArmVirtPkg/ArmVirtXen.dsc
@@ -114,9 +114,6 @@  [PcdsPatchableInModule.common]
   gArmTokenSpaceGuid.PcdFvBaseAddress|0x0
 
 [PcdsDynamicDefault.common]
-  ## If TRUE, OvmfPkg/AcpiPlatformDxe will not wait for PCI
-  #  enumeration to complete before installing ACPI tables.
-  gEfiMdeModulePkgTokenSpaceGuid.PcdPciDisableBusEnumeration|TRUE
 
   gArmTokenSpaceGuid.PcdArmArchTimerSecIntrNum|0x0
   gArmTokenSpaceGuid.PcdArmArchTimerIntrNum|0x0
@@ -133,15 +130,6 @@  [PcdsDynamicDefault.common]
   ## PL031 RealTimeClock
   gArmPlatformTokenSpaceGuid.PcdPL031RtcBase|0x0
 
-  gArmPlatformTokenSpaceGuid.PcdPciBusMin|0x0
-  gArmPlatformTokenSpaceGuid.PcdPciBusMax|0x0
-  gArmPlatformTokenSpaceGuid.PcdPciIoBase|0x0
-  gArmPlatformTokenSpaceGuid.PcdPciIoSize|0x0
-  gArmPlatformTokenSpaceGuid.PcdPciIoTranslation|0x0
-  gArmPlatformTokenSpaceGuid.PcdPciMmio32Base|0x0
-  gArmPlatformTokenSpaceGuid.PcdPciMmio32Size|0x0
-  gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress|0x0
-
   gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut|3
 
 ################################################################################
diff --git a/ArmVirtPkg/VirtFdtDxe/VirtFdtDxe.c b/ArmVirtPkg/VirtFdtDxe/VirtFdtDxe.c
index 0a47092e35ce..31e0ca7db8b4 100644
--- a/ArmVirtPkg/VirtFdtDxe/VirtFdtDxe.c
+++ b/ArmVirtPkg/VirtFdtDxe/VirtFdtDxe.c
@@ -45,7 +45,6 @@  typedef enum {
   PropertyTypeRtc,
   PropertyTypeVirtio,
   PropertyTypeUart,
-  PropertyTypePciHost,
   PropertyTypeXen,
 } PROPERTY_TYPE;
 
@@ -58,7 +57,6 @@  STATIC CONST PROPERTY CompatibleProperties[] = {
   { PropertyTypeRtc,     "arm,pl031"             },
   { PropertyTypeVirtio,  "virtio,mmio"           },
   { PropertyTypeUart,    "arm,pl011"             },
-  { PropertyTypePciHost, "pci-host-ecam-generic" },
   { PropertyTypeXen,     "xen,xen"               },
   { PropertyTypeUnknown, ""                      }
 };
@@ -88,176 +86,6 @@  GetTypeFromNode (
   return PropertyTypeUnknown;
 }
 
-//
-// We expect the "ranges" property of "pci-host-ecam-generic" to consist of
-// records like this.
-//
-#pragma pack (1)
-typedef struct {
-  UINT32 Type;
-  UINT64 ChildBase;
-  UINT64 CpuBase;
-  UINT64 Size;
-} DTB_PCI_HOST_RANGE_RECORD;
-#pragma pack ()
-
-#define DTB_PCI_HOST_RANGE_RELOCATABLE  BIT31
-#define DTB_PCI_HOST_RANGE_PREFETCHABLE BIT30
-#define DTB_PCI_HOST_RANGE_ALIASED      BIT29
-#define DTB_PCI_HOST_RANGE_MMIO32       BIT25
-#define DTB_PCI_HOST_RANGE_MMIO64       (BIT25 | BIT24)
-#define DTB_PCI_HOST_RANGE_IO           BIT24
-#define DTB_PCI_HOST_RANGE_TYPEMASK     (BIT31 | BIT30 | BIT29 | BIT25 | BIT24)
-
-/**
-  Process the device tree node describing the generic PCI host controller.
-
-  param[in] DeviceTreeBase  Pointer to the device tree.
-
-  param[in] Node            Offset of the device tree node whose "compatible"
-                            property is "pci-host-ecam-generic".
-
-  param[in] RegProp         Pointer to the "reg" property of Node. The caller
-                            is responsible for ensuring that the size of the
-                            property is 4 UINT32 cells.
-
-  @retval EFI_SUCCESS         Parsing successful, properties parsed from Node
-                              have been stored in dynamic PCDs.
-
-  @retval EFI_PROTOCOL_ERROR  Parsing failed. PCDs are left unchanged.
-**/
-STATIC
-EFI_STATUS
-EFIAPI
-ProcessPciHost (
-  IN CONST VOID *DeviceTreeBase,
-  IN INT32      Node,
-  IN CONST VOID *RegProp
-  )
-{
-  UINT64     ConfigBase, ConfigSize;
-  CONST VOID *Prop;
-  INT32      Len;
-  UINT32     BusMin, BusMax;
-  UINT32     RecordIdx;
-  UINT64     IoBase, IoSize, IoTranslation;
-  UINT64     MmioBase, MmioSize, MmioTranslation;
-
-  //
-  // Fetch the ECAM window.
-  //
-  ConfigBase = fdt64_to_cpu (((CONST UINT64 *)RegProp)[0]);
-  ConfigSize = fdt64_to_cpu (((CONST UINT64 *)RegProp)[1]);
-
-  //
-  // Fetch the bus range (note: inclusive).
-  //
-  Prop = fdt_getprop (DeviceTreeBase, Node, "bus-range", &Len);
-  if (Prop == NULL || Len != 2 * sizeof(UINT32)) {
-    DEBUG ((EFI_D_ERROR, "%a: 'bus-range' not found or invalid\n",
-      __FUNCTION__));
-    return EFI_PROTOCOL_ERROR;
-  }
-  BusMin = fdt32_to_cpu (((CONST UINT32 *)Prop)[0]);
-  BusMax = fdt32_to_cpu (((CONST UINT32 *)Prop)[1]);
-
-  //
-  // Sanity check: the config space must accommodate all 4K register bytes of
-  // all 8 functions of all 32 devices of all buses.
-  //
-  if (BusMax < BusMin || BusMax - BusMin == MAX_UINT32 ||
-      DivU64x32 (ConfigSize, SIZE_4KB * 8 * 32) < BusMax - BusMin + 1) {
-    DEBUG ((EFI_D_ERROR, "%a: invalid 'bus-range' and/or 'reg'\n",
-      __FUNCTION__));
-    return EFI_PROTOCOL_ERROR;
-  }
-
-  //
-  // Iterate over "ranges".
-  //
-  Prop = fdt_getprop (DeviceTreeBase, Node, "ranges", &Len);
-  if (Prop == NULL || Len == 0 ||
-      Len % sizeof (DTB_PCI_HOST_RANGE_RECORD) != 0) {
-    DEBUG ((EFI_D_ERROR, "%a: 'ranges' not found or invalid\n", __FUNCTION__));
-    return EFI_PROTOCOL_ERROR;
-  }
-
-  //
-  // IoBase, IoTranslation, MmioBase and MmioTranslation are initialized only
-  // in order to suppress '-Werror=maybe-uninitialized' warnings *incorrectly*
-  // emitted by some gcc versions.
-  //
-  IoBase = 0;
-  IoTranslation = 0;
-  MmioBase = 0;
-  MmioTranslation = 0;
-
-  //
-  // IoSize and MmioSize are initialized to zero because the logic below
-  // requires it.
-  //
-  IoSize = 0;
-  MmioSize = 0;
-  for (RecordIdx = 0; RecordIdx < Len / sizeof (DTB_PCI_HOST_RANGE_RECORD);
-       ++RecordIdx) {
-    CONST DTB_PCI_HOST_RANGE_RECORD *Record;
-
-    Record = (CONST DTB_PCI_HOST_RANGE_RECORD *)Prop + RecordIdx;
-    switch (fdt32_to_cpu (Record->Type) & DTB_PCI_HOST_RANGE_TYPEMASK) {
-    case DTB_PCI_HOST_RANGE_IO:
-      IoBase = fdt64_to_cpu (Record->ChildBase);
-      IoSize = fdt64_to_cpu (Record->Size);
-      IoTranslation = fdt64_to_cpu (Record->CpuBase) - IoBase;
-      break;
-
-    case DTB_PCI_HOST_RANGE_MMIO32:
-      MmioBase = fdt64_to_cpu (Record->ChildBase);
-      MmioSize = fdt64_to_cpu (Record->Size);
-      MmioTranslation = fdt64_to_cpu (Record->CpuBase) - MmioBase;
-
-      if (MmioBase > MAX_UINT32 || MmioSize > MAX_UINT32 ||
-          MmioBase + MmioSize > SIZE_4GB) {
-        DEBUG ((EFI_D_ERROR, "%a: MMIO32 space invalid\n", __FUNCTION__));
-        return EFI_PROTOCOL_ERROR;
-      }
-
-      if (MmioTranslation != 0) {
-        DEBUG ((EFI_D_ERROR, "%a: unsupported nonzero MMIO32 translation "
-          "0x%Lx\n", __FUNCTION__, MmioTranslation));
-        return EFI_UNSUPPORTED;
-      }
-
-      break;
-    }
-  }
-  if (IoSize == 0 || MmioSize == 0) {
-    DEBUG ((EFI_D_ERROR, "%a: %a space empty\n", __FUNCTION__,
-      (IoSize == 0) ? "IO" : "MMIO32"));
-    return EFI_PROTOCOL_ERROR;
-  }
-
-  PcdSet64 (PcdPciExpressBaseAddress, ConfigBase);
-
-  PcdSet32 (PcdPciBusMin, BusMin);
-  PcdSet32 (PcdPciBusMax, BusMax);
-
-  PcdSet64 (PcdPciIoBase,        IoBase);
-  PcdSet64 (PcdPciIoSize,        IoSize);
-  PcdSet64 (PcdPciIoTranslation, IoTranslation);
-
-  PcdSet32 (PcdPciMmio32Base, (UINT32)MmioBase);
-  PcdSet32 (PcdPciMmio32Size, (UINT32)MmioSize);
-
-  PcdSetBool (PcdPciDisableBusEnumeration, FALSE);
-
-  DEBUG ((EFI_D_INFO, "%a: Config[0x%Lx+0x%Lx) Bus[0x%x..0x%x] "
-    "Io[0x%Lx+0x%Lx)@0x%Lx Mem[0x%Lx+0x%Lx)@0x%Lx\n", __FUNCTION__, ConfigBase,
-    ConfigSize, BusMin, BusMax, IoBase, IoSize, IoTranslation, MmioBase,
-    MmioSize, MmioTranslation));
-  return EFI_SUCCESS;
-}
-
-
 EFI_STATUS
 EFIAPI
 InitializeVirtFdtDxe (
@@ -277,7 +105,6 @@  InitializeVirtFdtDxe (
   VIRTIO_TRANSPORT_DEVICE_PATH   *DevicePath;
   EFI_HANDLE                     Handle;
   UINT64                         RegBase;
-  BOOLEAN                        HavePci;
 
   Hob = GetFirstGuidHob(&gFdtHobGuid);
   if (Hob == NULL || GET_GUID_HOB_DATA_SIZE (Hob) != sizeof (UINT64)) {
@@ -293,7 +120,6 @@  InitializeVirtFdtDxe (
   DEBUG ((EFI_D_INFO, "%a: DTB @ 0x%p\n", __FUNCTION__, DeviceTreeBase));
 
   RtcNode = -1;
-  HavePci = FALSE;
   //
   // Now enumerate the nodes and install peripherals that we are interested in,
   // i.e., GIC, RTC and virtio MMIO nodes
@@ -323,13 +149,6 @@  InitializeVirtFdtDxe (
     ASSERT (RegProp != NULL);
 
     switch (PropType) {
-    case PropertyTypePciHost:
-      ASSERT (Len == 2 * sizeof (UINT64));
-      Status = ProcessPciHost (DeviceTreeBase, Node, RegProp);
-      ASSERT_EFI_ERROR (Status);
-      HavePci = TRUE;
-      break;
-
     case PropertyTypeVirtio:
       ASSERT (Len == 16);
       //
@@ -433,28 +252,6 @@  InitializeVirtFdtDxe (
           "disabled") != 0) {
       DEBUG ((EFI_D_WARN, "Failed to set PL031 status to 'disabled'\n"));
     }
-
-    if (HavePci) {
-      //
-      // Set the /chosen/linux,pci-probe-only property to 1, so that the PCI
-      // setup we will perform in the firmware is honored by the Linux OS,
-      // rather than torn down and done from scratch. This is generally a more
-      // sensible approach, and aligns with what ACPI based OSes do in general.
-      //
-      // In case we are exposing an emulated VGA PCI device to the guest, which
-      // may subsequently get exposed via the Graphics Output protocol and
-      // driven as an efifb by Linux, we need this setting to prevent the
-      // framebuffer from becoming unresponsive.
-      //
-      Node = fdt_path_offset (DeviceTreeBase, "/chosen");
-      if (Node < 0) {
-        Node = fdt_add_subnode (DeviceTreeBase, 0, "/chosen");
-      }
-      if (Node < 0 ||
-          fdt_setprop_u32 (DeviceTreeBase, Node, "linux,pci-probe-only", 1) < 0) {
-        DEBUG ((EFI_D_WARN, "Failed to set /chosen/linux,pci-probe-only property\n"));
-      }
-    }
   }
   return EFI_SUCCESS;
 }
diff --git a/ArmVirtPkg/VirtFdtDxe/VirtFdtDxe.inf b/ArmVirtPkg/VirtFdtDxe/VirtFdtDxe.inf
index 6c8ba68599ae..8ebce337747f 100644
--- a/ArmVirtPkg/VirtFdtDxe/VirtFdtDxe.inf
+++ b/ArmVirtPkg/VirtFdtDxe/VirtFdtDxe.inf
@@ -51,15 +51,6 @@  [Guids]
 
 [Pcd]
   gArmPlatformTokenSpaceGuid.PcdPL031RtcBase
-  gArmPlatformTokenSpaceGuid.PcdPciBusMin
-  gArmPlatformTokenSpaceGuid.PcdPciBusMax
-  gArmPlatformTokenSpaceGuid.PcdPciIoBase
-  gArmPlatformTokenSpaceGuid.PcdPciIoSize
-  gArmPlatformTokenSpaceGuid.PcdPciIoTranslation
-  gArmPlatformTokenSpaceGuid.PcdPciMmio32Base
-  gArmPlatformTokenSpaceGuid.PcdPciMmio32Size
-  gEfiMdePkgTokenSpaceGuid.PcdPciExpressBaseAddress
-  gEfiMdeModulePkgTokenSpaceGuid.PcdPciDisableBusEnumeration
 
 [FeaturePcd]
   gArmVirtTokenSpaceGuid.PcdPureAcpiBoot