powerpc: Initialise pci_io_base as early as possible

Commit d6a9996e84ac ("powerpc/mm: vmalloc abstraction in preparation for
radix") turned kernel memory and IO addresses from #defined constants to
variables initialised at runtime.

On PA6T (pasemi) systems the setup_arch() machine call initialises the
onboard PCI-e root-ports, and uses pci_io_base to do this, which is now
before its value has been set, resulting in a panic early in boot before
console IO is initialised.

Move the pci_io_base initialisation to the same place as vmalloc ranges
are set (hash__early_init_mmu()/radix__early_init_mmu()) - this is the
earliest possible place we can initialise it.

Fixes: d6a9996e84ac ("powerpc/mm: vmalloc abstraction in preparation for radix")
Reported-by: Christian Zigotzky <chzigotzky@xenosoft.de>
Signed-off-by: Darren Stevens <darren@stevens-zone.net>
Reviewed-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
[mpe: Add #ifdef CONFIG_PCI, massage change log slightly]
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>

authored by Darren Stevens and committed by Michael Ellerman bfa37087 190ce869

Changed files
+10 -1
arch
powerpc
include
asm
book3s
kernel
mm
+1
arch/powerpc/include/asm/book3s/64/pgtable.h
··· 230 230 #define KERN_VIRT_SIZE __kernel_virt_size 231 231 extern struct page *vmemmap; 232 232 extern unsigned long ioremap_bot; 233 + extern unsigned long pci_io_base; 233 234 #endif /* __ASSEMBLY__ */ 234 235 235 236 #include <asm/book3s/64/hash.h>
-1
arch/powerpc/kernel/pci_64.c
··· 47 47 48 48 printk(KERN_INFO "PCI: Probing PCI hardware\n"); 49 49 50 - pci_io_base = ISA_IO_BASE; 51 50 /* For now, override phys_mem_access_prot. If we need it,g 52 51 * later, we may move that initialization to each ppc_md 53 52 */
+4
arch/powerpc/mm/hash_utils_64.c
··· 922 922 vmemmap = (struct page *)H_VMEMMAP_BASE; 923 923 ioremap_bot = IOREMAP_BASE; 924 924 925 + #ifdef CONFIG_PCI 926 + pci_io_base = ISA_IO_BASE; 927 + #endif 928 + 925 929 /* Initialize the MMU Hash table and create the linear mapping 926 930 * of memory. Has to be done before SLB initialization as this is 927 931 * currently where the page size encoding is obtained.
+5
arch/powerpc/mm/pgtable-radix.c
··· 328 328 __vmalloc_end = RADIX_VMALLOC_END; 329 329 vmemmap = (struct page *)RADIX_VMEMMAP_BASE; 330 330 ioremap_bot = IOREMAP_BASE; 331 + 332 + #ifdef CONFIG_PCI 333 + pci_io_base = ISA_IO_BASE; 334 + #endif 335 + 331 336 /* 332 337 * For now radix also use the same frag size 333 338 */