Commit a94b1b9b authored by Benjamin Herrenschmidt's avatar Benjamin Herrenschmidt Committed by Linus Torvalds

[PATCH] ppc/ppc64: Fix g5 access to PCI IO cycles

Looks like we never needed them, since that bug has been there forever,
I didn't get the right base for the IO cycles on the G5 host bridge
in the first place (I probably misinterpreted some OF forth code or
something like that).
parent 8f3f5de3
...@@ -716,7 +716,7 @@ setup_u3_ht(struct pci_controller* hose, struct reg_property *addr) ...@@ -716,7 +716,7 @@ setup_u3_ht(struct pci_controller* hose, struct reg_property *addr)
* properties or figuring out the U3 address space decoding logic and * properties or figuring out the U3 address space decoding logic and
* then read its configuration register (if any). * then read its configuration register (if any).
*/ */
hose->io_base_phys = 0xf4000000 + 0x00400000; hose->io_base_phys = 0xf4000000;
hose->io_base_virt = ioremap(hose->io_base_phys, 0x00400000); hose->io_base_virt = ioremap(hose->io_base_phys, 0x00400000);
isa_io_base = (unsigned long) hose->io_base_virt; isa_io_base = (unsigned long) hose->io_base_virt;
hose->io_resource.name = np->full_name; hose->io_resource.name = np->full_name;
......
...@@ -419,7 +419,7 @@ static void __init setup_u3_ht(struct pci_controller* hose) ...@@ -419,7 +419,7 @@ static void __init setup_u3_ht(struct pci_controller* hose)
* properties or figuring out the U3 address space decoding logic and * properties or figuring out the U3 address space decoding logic and
* then read it's configuration register (if any). * then read it's configuration register (if any).
*/ */
hose->io_base_phys = 0xf4000000 + 0x00400000; hose->io_base_phys = 0xf4000000;
hose->io_base_virt = ioremap(hose->io_base_phys, 0x00400000); hose->io_base_virt = ioremap(hose->io_base_phys, 0x00400000);
isa_io_base = pci_io_base = (unsigned long) hose->io_base_virt; isa_io_base = pci_io_base = (unsigned long) hose->io_base_virt;
hose->io_resource.name = np->full_name; hose->io_resource.name = np->full_name;
......
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