Commit 45e91a63 authored by Helge Deller's avatar Helge Deller Committed by Kamal Mostafa

PCI,parisc: Enable 64-bit bus addresses on PA-RISC

commit e02a653e upstream.

Commit 3a9ad0b4 ("PCI: Add pci_bus_addr_t") unconditionally introduced usage of
64-bit PCI bus addresses on all 64-bit platforms which broke PA-RISC.

It turned out that due to enabling the 64-bit addresses, the PCI logic decided
to use the GMMIO instead of the LMMIO region. This commit simply disables
registering the GMMIO and thus we fall back to use the LMMIO region as before.

Reverts commit 45ea2a5f
("PCI: Don't use 64-bit bus addresses on PA-RISC")

To: linux-parisc@vger.kernel.org
Cc: linux-pci@vger.kernel.org
Cc: Bjorn Helgaas <bhelgaas@google.com>
Cc: Meelis Roos <mroos@linux.ee>
Signed-off-by: default avatarHelge Deller <deller@gmx.de>
Signed-off-by: default avatarKamal Mostafa <kamal@canonical.com>
parent 27a09678
...@@ -1556,8 +1556,11 @@ lba_driver_probe(struct parisc_device *dev) ...@@ -1556,8 +1556,11 @@ lba_driver_probe(struct parisc_device *dev)
if (lba_dev->hba.lmmio_space.flags) if (lba_dev->hba.lmmio_space.flags)
pci_add_resource_offset(&resources, &lba_dev->hba.lmmio_space, pci_add_resource_offset(&resources, &lba_dev->hba.lmmio_space,
lba_dev->hba.lmmio_space_offset); lba_dev->hba.lmmio_space_offset);
if (lba_dev->hba.gmmio_space.flags) if (lba_dev->hba.gmmio_space.flags) {
pci_add_resource(&resources, &lba_dev->hba.gmmio_space); /* pci_add_resource(&resources, &lba_dev->hba.gmmio_space); */
pr_warn("LBA: Not registering GMMIO space %pR\n",
&lba_dev->hba.gmmio_space);
}
pci_add_resource(&resources, &lba_dev->hba.bus_num); pci_add_resource(&resources, &lba_dev->hba.bus_num);
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# PCI configuration # PCI configuration
# #
config PCI_BUS_ADDR_T_64BIT config PCI_BUS_ADDR_T_64BIT
def_bool y if (ARCH_DMA_ADDR_T_64BIT || (64BIT && !PARISC)) def_bool y if (ARCH_DMA_ADDR_T_64BIT || 64BIT)
depends on PCI depends on PCI
config PCI_MSI config PCI_MSI
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment