2005-06-22 19:43:37 -04:00
|
|
|
/*
|
2005-10-31 20:08:37 -05:00
|
|
|
* linux/arch/powerpc/platforms/cell/cell_setup.c
|
2005-06-22 19:43:37 -04:00
|
|
|
*
|
|
|
|
* Copyright (C) 1995 Linus Torvalds
|
|
|
|
* Adapted from 'alpha' version by Gary Thomas
|
|
|
|
* Modified by Cort Dougan (cort@cs.nmt.edu)
|
|
|
|
* Modified by PPC64 Team, IBM Corp
|
2005-10-31 20:08:37 -05:00
|
|
|
* Modified by Cell Team, IBM Deutschland Entwicklung GmbH
|
2005-06-22 19:43:37 -04:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version
|
|
|
|
* 2 of the License, or (at your option) any later version.
|
|
|
|
*/
|
|
|
|
#undef DEBUG
|
|
|
|
|
|
|
|
#include <linux/config.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/stddef.h>
|
|
|
|
#include <linux/unistd.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/user.h>
|
|
|
|
#include <linux/reboot.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/delay.h>
|
|
|
|
#include <linux/irq.h>
|
|
|
|
#include <linux/seq_file.h>
|
|
|
|
#include <linux/root_dev.h>
|
|
|
|
#include <linux/console.h>
|
|
|
|
|
|
|
|
#include <asm/mmu.h>
|
|
|
|
#include <asm/processor.h>
|
|
|
|
#include <asm/io.h>
|
[PATCH] powerpc: Merge kexec
This patch merges, to some extent, the PPC32 and PPC64 kexec implementations.
We adopt the PPC32 approach of having ppc_md callbacks for the kexec functions.
The current PPC64 implementation becomes the "default" implementation for PPC64
which platforms can select if they need no special treatment.
I've added these default callbacks to pseries/maple/cell/powermac, this means
iSeries no longer supports kexec - but it never worked anyway.
I've renamed PPC32's machine_kexec_simple to default_machine_kexec, inline with
PPC64. Judging by the comments it might be better named machine_kexec_non_of,
or something, but at the moment it's the only implementation for PPC32 so it's
the "default".
Kexec requires machine_shutdown(), which is in machine_kexec.c on PPC32, but we
already have in setup-common.c on powerpc. All this does is call
ppc_md.nvram_sync, which only powermac implements, so instead make
machine_shutdown a ppc_md member and have it call core99_nvram_sync directly
on powermac.
I've also stuck relocate_kernel.S into misc_32.S for powerpc.
Built for ARCH=ppc, and 32 & 64 bit ARCH=powerpc, with KEXEC=y/n. Booted on
P5 LPAR and successfully kexec'ed.
Should apply on top of 493f25ef4087395891c99fcfe2c72e62e293e89f.
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
2005-11-14 07:35:00 -05:00
|
|
|
#include <asm/kexec.h>
|
2005-06-22 19:43:37 -04:00
|
|
|
#include <asm/pgtable.h>
|
|
|
|
#include <asm/prom.h>
|
|
|
|
#include <asm/rtas.h>
|
|
|
|
#include <asm/pci-bridge.h>
|
|
|
|
#include <asm/iommu.h>
|
|
|
|
#include <asm/dma.h>
|
|
|
|
#include <asm/machdep.h>
|
|
|
|
#include <asm/time.h>
|
|
|
|
#include <asm/nvram.h>
|
|
|
|
#include <asm/cputable.h>
|
2005-09-27 12:50:25 -04:00
|
|
|
#include <asm/ppc-pci.h>
|
2005-10-10 08:50:37 -04:00
|
|
|
#include <asm/irq.h>
|
2005-06-22 19:43:37 -04:00
|
|
|
|
2005-10-31 20:08:37 -05:00
|
|
|
#include "interrupt.h"
|
|
|
|
#include "iommu.h"
|
2006-01-04 14:55:53 -05:00
|
|
|
#include "pervasive.h"
|
2005-06-22 19:43:37 -04:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
#define DBG(fmt...) udbg_printf(fmt)
|
|
|
|
#else
|
|
|
|
#define DBG(fmt...)
|
|
|
|
#endif
|
|
|
|
|
2005-10-31 20:08:37 -05:00
|
|
|
void cell_show_cpuinfo(struct seq_file *m)
|
2005-06-22 19:43:37 -04:00
|
|
|
{
|
|
|
|
struct device_node *root;
|
|
|
|
const char *model = "";
|
|
|
|
|
|
|
|
root = of_find_node_by_path("/");
|
|
|
|
if (root)
|
|
|
|
model = get_property(root, "model", NULL);
|
2005-10-31 20:08:37 -05:00
|
|
|
seq_printf(m, "machine\t\t: CHRP %s\n", model);
|
2005-06-22 19:43:37 -04:00
|
|
|
of_node_put(root);
|
|
|
|
}
|
|
|
|
|
2005-11-15 15:53:52 -05:00
|
|
|
#ifdef CONFIG_SPARSEMEM
|
|
|
|
static int __init find_spu_node_id(struct device_node *spe)
|
|
|
|
{
|
|
|
|
unsigned int *id;
|
|
|
|
#ifdef CONFIG_NUMA
|
|
|
|
struct device_node *cpu;
|
|
|
|
cpu = spe->parent->parent;
|
|
|
|
id = (unsigned int *)get_property(cpu, "node-id", NULL);
|
|
|
|
#else
|
|
|
|
id = NULL;
|
|
|
|
#endif
|
|
|
|
return id ? *id : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __init cell_spuprop_present(struct device_node *spe,
|
|
|
|
const char *prop, int early)
|
|
|
|
{
|
|
|
|
struct address_prop {
|
|
|
|
unsigned long address;
|
|
|
|
unsigned int len;
|
|
|
|
} __attribute__((packed)) *p;
|
|
|
|
int proplen;
|
|
|
|
|
|
|
|
unsigned long start_pfn, end_pfn, pfn;
|
|
|
|
int node_id;
|
|
|
|
|
|
|
|
p = (void*)get_property(spe, prop, &proplen);
|
|
|
|
WARN_ON(proplen != sizeof (*p));
|
|
|
|
|
|
|
|
node_id = find_spu_node_id(spe);
|
|
|
|
|
|
|
|
start_pfn = p->address >> PAGE_SHIFT;
|
|
|
|
end_pfn = (p->address + p->len + PAGE_SIZE - 1) >> PAGE_SHIFT;
|
|
|
|
|
|
|
|
/* We need to call memory_present *before* the call to sparse_init,
|
|
|
|
but we can initialize the page structs only *after* that call.
|
|
|
|
Thus, we're being called twice. */
|
|
|
|
if (early)
|
|
|
|
memory_present(node_id, start_pfn, end_pfn);
|
|
|
|
else {
|
|
|
|
/* As the pages backing SPU LS and I/O are outside the range
|
|
|
|
of regular memory, their page structs were not initialized
|
|
|
|
by free_area_init. Do it here instead. */
|
|
|
|
for (pfn = start_pfn; pfn < end_pfn; pfn++) {
|
|
|
|
struct page *page = pfn_to_page(pfn);
|
|
|
|
set_page_links(page, ZONE_DMA, node_id, pfn);
|
2005-12-05 22:52:22 -05:00
|
|
|
set_page_count(page, 1);
|
2005-11-15 15:53:52 -05:00
|
|
|
reset_page_mapcount(page);
|
|
|
|
SetPageReserved(page);
|
|
|
|
INIT_LIST_HEAD(&page->lru);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __init cell_spumem_init(int early)
|
|
|
|
{
|
|
|
|
struct device_node *node;
|
|
|
|
for (node = of_find_node_by_type(NULL, "spe");
|
|
|
|
node; node = of_find_node_by_type(node, "spe")) {
|
|
|
|
cell_spuprop_present(node, "local-store", early);
|
|
|
|
cell_spuprop_present(node, "problem", early);
|
|
|
|
cell_spuprop_present(node, "priv1", early);
|
|
|
|
cell_spuprop_present(node, "priv2", early);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static void __init cell_spumem_init(int early)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-10-31 20:08:37 -05:00
|
|
|
static void cell_progress(char *s, unsigned short hex)
|
2005-06-22 19:43:37 -04:00
|
|
|
{
|
|
|
|
printk("*** %04x : %s\n", hex, s ? s : "");
|
|
|
|
}
|
|
|
|
|
2005-10-31 20:08:37 -05:00
|
|
|
static void __init cell_setup_arch(void)
|
2005-06-22 19:43:37 -04:00
|
|
|
{
|
2005-06-22 19:43:43 -04:00
|
|
|
ppc_md.init_IRQ = iic_init_IRQ;
|
|
|
|
ppc_md.get_irq = iic_get_irq;
|
|
|
|
|
2005-06-22 19:43:37 -04:00
|
|
|
#ifdef CONFIG_SMP
|
2005-10-31 20:08:37 -05:00
|
|
|
smp_init_cell();
|
2005-06-22 19:43:37 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* init to some ~sane value until calibrate_delay() runs */
|
|
|
|
loops_per_jiffy = 50000000;
|
|
|
|
|
|
|
|
if (ROOT_DEV == 0) {
|
|
|
|
printk("No ramdisk, default root is /dev/hda2\n");
|
|
|
|
ROOT_DEV = Root_HDA2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Find and initialize PCI host bridges */
|
|
|
|
init_pci_config_tokens();
|
|
|
|
find_and_init_phbs();
|
2005-06-22 19:43:43 -04:00
|
|
|
spider_init_IRQ();
|
2006-01-04 14:55:53 -05:00
|
|
|
cell_pervasive_init();
|
2005-06-22 19:43:37 -04:00
|
|
|
#ifdef CONFIG_DUMMY_CONSOLE
|
|
|
|
conswitchp = &dummy_con;
|
|
|
|
#endif
|
|
|
|
|
2005-10-31 20:08:37 -05:00
|
|
|
mmio_nvram_init();
|
2005-11-15 15:53:52 -05:00
|
|
|
|
|
|
|
cell_spumem_init(0);
|
2005-06-22 19:43:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Early initialization. Relocation is on but do not reference unbolted pages
|
|
|
|
*/
|
2005-10-31 20:08:37 -05:00
|
|
|
static void __init cell_init_early(void)
|
2005-06-22 19:43:37 -04:00
|
|
|
{
|
2005-10-31 20:08:37 -05:00
|
|
|
DBG(" -> cell_init_early()\n");
|
2005-06-22 19:43:37 -04:00
|
|
|
|
|
|
|
hpte_init_native();
|
|
|
|
|
2005-10-31 20:08:37 -05:00
|
|
|
cell_init_iommu();
|
2005-06-22 19:43:37 -04:00
|
|
|
|
2005-10-31 20:08:37 -05:00
|
|
|
ppc64_interrupt_controller = IC_CELL_PIC;
|
2005-06-22 19:43:37 -04:00
|
|
|
|
2005-11-15 15:53:52 -05:00
|
|
|
cell_spumem_init(1);
|
|
|
|
|
2005-10-31 20:08:37 -05:00
|
|
|
DBG(" <- cell_init_early()\n");
|
2005-06-22 19:43:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-10-31 20:08:37 -05:00
|
|
|
static int __init cell_probe(int platform)
|
2005-06-22 19:43:37 -04:00
|
|
|
{
|
2005-10-31 20:08:37 -05:00
|
|
|
if (platform != PLATFORM_CELL)
|
2005-06-22 19:43:37 -04:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2005-12-09 13:04:21 -05:00
|
|
|
/*
|
|
|
|
* Cell has no legacy IO; anything calling this function has to
|
|
|
|
* fail or bad things will happen
|
|
|
|
*/
|
|
|
|
static int cell_check_legacy_ioport(unsigned int baseport)
|
|
|
|
{
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2005-10-31 20:08:37 -05:00
|
|
|
struct machdep_calls __initdata cell_md = {
|
|
|
|
.probe = cell_probe,
|
|
|
|
.setup_arch = cell_setup_arch,
|
|
|
|
.init_early = cell_init_early,
|
|
|
|
.show_cpuinfo = cell_show_cpuinfo,
|
2005-06-22 19:43:37 -04:00
|
|
|
.restart = rtas_restart,
|
|
|
|
.power_off = rtas_power_off,
|
|
|
|
.halt = rtas_halt,
|
|
|
|
.get_boot_time = rtas_get_boot_time,
|
|
|
|
.get_rtc_time = rtas_get_rtc_time,
|
|
|
|
.set_rtc_time = rtas_set_rtc_time,
|
|
|
|
.calibrate_decr = generic_calibrate_decr,
|
2005-12-09 13:04:21 -05:00
|
|
|
.check_legacy_ioport = cell_check_legacy_ioport,
|
2005-10-31 20:08:37 -05:00
|
|
|
.progress = cell_progress,
|
[PATCH] powerpc: Merge kexec
This patch merges, to some extent, the PPC32 and PPC64 kexec implementations.
We adopt the PPC32 approach of having ppc_md callbacks for the kexec functions.
The current PPC64 implementation becomes the "default" implementation for PPC64
which platforms can select if they need no special treatment.
I've added these default callbacks to pseries/maple/cell/powermac, this means
iSeries no longer supports kexec - but it never worked anyway.
I've renamed PPC32's machine_kexec_simple to default_machine_kexec, inline with
PPC64. Judging by the comments it might be better named machine_kexec_non_of,
or something, but at the moment it's the only implementation for PPC32 so it's
the "default".
Kexec requires machine_shutdown(), which is in machine_kexec.c on PPC32, but we
already have in setup-common.c on powerpc. All this does is call
ppc_md.nvram_sync, which only powermac implements, so instead make
machine_shutdown a ppc_md member and have it call core99_nvram_sync directly
on powermac.
I've also stuck relocate_kernel.S into misc_32.S for powerpc.
Built for ARCH=ppc, and 32 & 64 bit ARCH=powerpc, with KEXEC=y/n. Booted on
P5 LPAR and successfully kexec'ed.
Should apply on top of 493f25ef4087395891c99fcfe2c72e62e293e89f.
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
2005-11-14 07:35:00 -05:00
|
|
|
#ifdef CONFIG_KEXEC
|
|
|
|
.machine_kexec = default_machine_kexec,
|
|
|
|
.machine_kexec_prepare = default_machine_kexec_prepare,
|
2005-12-04 02:39:43 -05:00
|
|
|
.machine_crash_shutdown = default_machine_crash_shutdown,
|
[PATCH] powerpc: Merge kexec
This patch merges, to some extent, the PPC32 and PPC64 kexec implementations.
We adopt the PPC32 approach of having ppc_md callbacks for the kexec functions.
The current PPC64 implementation becomes the "default" implementation for PPC64
which platforms can select if they need no special treatment.
I've added these default callbacks to pseries/maple/cell/powermac, this means
iSeries no longer supports kexec - but it never worked anyway.
I've renamed PPC32's machine_kexec_simple to default_machine_kexec, inline with
PPC64. Judging by the comments it might be better named machine_kexec_non_of,
or something, but at the moment it's the only implementation for PPC32 so it's
the "default".
Kexec requires machine_shutdown(), which is in machine_kexec.c on PPC32, but we
already have in setup-common.c on powerpc. All this does is call
ppc_md.nvram_sync, which only powermac implements, so instead make
machine_shutdown a ppc_md member and have it call core99_nvram_sync directly
on powermac.
I've also stuck relocate_kernel.S into misc_32.S for powerpc.
Built for ARCH=ppc, and 32 & 64 bit ARCH=powerpc, with KEXEC=y/n. Booted on
P5 LPAR and successfully kexec'ed.
Should apply on top of 493f25ef4087395891c99fcfe2c72e62e293e89f.
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
2005-11-14 07:35:00 -05:00
|
|
|
#endif
|
2005-06-22 19:43:37 -04:00
|
|
|
};
|