diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2005-11-10 04:04:24 (GMT) |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-11-10 04:32:37 (GMT) |
commit | 0f34f490290e05ee6c02e20b3811fce6f09318f4 (patch) | |
tree | f74ccd9d9f0ce385ee8de5150b24f94800635e4b /arch/powerpc/platforms/pseries | |
parent | 47c2ac8cc3cf7c484e131d10cb812b6ab198885a (diff) | |
download | linux-fsl-qoriq-0f34f490290e05ee6c02e20b3811fce6f09318f4.tar.xz |
[PATCH] ppc64: fix PCI IO mapping
phbs_remap_io(), which maps the PCI IO space into the kernel virtual space,
is called too early on powermac, and thus doesn't work.
This fixes it by removing the call from all platforms and putting it back
into the ppc64 common code where it belongs, after the actual probing of
the bus.
That means that before that call, only the ISA IO space (if any) is mapped,
any PIO access (from quirks for example) will fail. This happens not to be
a problem for now, but we'll have to rework that code if it becomes one in
the future.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/platforms/pseries')
-rw-r--r-- | arch/powerpc/platforms/pseries/pci.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/pseries/pci.c b/arch/powerpc/platforms/pseries/pci.c index 6b0772f..999a962 100644 --- a/arch/powerpc/platforms/pseries/pci.c +++ b/arch/powerpc/platforms/pseries/pci.c @@ -107,7 +107,6 @@ static void __init pSeries_request_regions(void) void __init pSeries_final_fixup(void) { - phbs_remap_io(); pSeries_request_regions(); pci_addr_cache_build(); |