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/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>
|
2006-05-01 15:16:11 -04:00
|
|
|
#include <linux/mutex.h>
|
|
|
|
#include <linux/memory_hotplug.h>
|
2005-06-22 19:43:37 -04:00
|
|
|
|
|
|
|
#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>
|
2006-05-01 15:16:11 -04:00
|
|
|
#include <asm/spu.h>
|
2006-06-19 14:33:29 -04:00
|
|
|
#include <asm/spu_priv1.h>
|
2006-06-29 16:52:53 -04:00
|
|
|
#include <asm/udbg.h>
|
2006-11-11 01:24:58 -05:00
|
|
|
#include <asm/mpic.h>
|
2006-11-11 01:25:00 -05:00
|
|
|
#include <asm/of_platform.h>
|
2005-06-22 19:43:37 -04:00
|
|
|
|
2005-10-31 20:08:37 -05:00
|
|
|
#include "interrupt.h"
|
2006-06-19 14:33:16 -04:00
|
|
|
#include "cbe_regs.h"
|
2006-01-04 14:55:53 -05:00
|
|
|
#include "pervasive.h"
|
2006-06-19 14:33:16 -04:00
|
|
|
#include "ras.h"
|
2005-06-22 19:43:37 -04:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
#define DBG(fmt...) udbg_printf(fmt)
|
|
|
|
#else
|
|
|
|
#define DBG(fmt...)
|
|
|
|
#endif
|
|
|
|
|
2006-01-11 18:07:11 -05:00
|
|
|
static 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)
|
2007-04-03 08:26:41 -04:00
|
|
|
model = of_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-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 : "");
|
|
|
|
}
|
|
|
|
|
2006-11-11 01:25:00 -05:00
|
|
|
static int __init cell_publish_devices(void)
|
|
|
|
{
|
2006-11-11 01:25:04 -05:00
|
|
|
if (!machine_is(cell))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Publish OF platform devices for southbridge IOs */
|
|
|
|
of_platform_bus_probe(NULL, NULL, NULL);
|
|
|
|
|
2006-11-11 01:25:00 -05:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
device_initcall(cell_publish_devices);
|
|
|
|
|
2006-11-11 01:24:58 -05:00
|
|
|
static void cell_mpic_cascade(unsigned int irq, struct irq_desc *desc)
|
|
|
|
{
|
|
|
|
struct mpic *mpic = desc->handler_data;
|
|
|
|
unsigned int virq;
|
|
|
|
|
|
|
|
virq = mpic_get_one_irq(mpic);
|
|
|
|
if (virq != NO_IRQ)
|
|
|
|
generic_handle_irq(virq);
|
|
|
|
desc->chip->eoi(irq);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __init mpic_init_IRQ(void)
|
|
|
|
{
|
|
|
|
struct device_node *dn;
|
|
|
|
struct mpic *mpic;
|
|
|
|
unsigned int virq;
|
|
|
|
|
|
|
|
for (dn = NULL;
|
|
|
|
(dn = of_find_node_by_name(dn, "interrupt-controller"));) {
|
2007-05-03 03:26:52 -04:00
|
|
|
if (!of_device_is_compatible(dn, "CBEA,platform-open-pic"))
|
2006-11-11 01:24:58 -05:00
|
|
|
continue;
|
|
|
|
|
|
|
|
/* The MPIC driver will get everything it needs from the
|
|
|
|
* device-tree, just pass 0 to all arguments
|
|
|
|
*/
|
|
|
|
mpic = mpic_alloc(dn, 0, 0, 0, 0, " MPIC ");
|
|
|
|
if (mpic == NULL)
|
|
|
|
continue;
|
|
|
|
mpic_init(mpic);
|
|
|
|
|
|
|
|
virq = irq_of_parse_and_map(dn, 0);
|
|
|
|
if (virq == NO_IRQ)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
printk(KERN_INFO "%s : hooking up to IRQ %d\n",
|
|
|
|
dn->full_name, virq);
|
|
|
|
set_irq_data(virq, mpic);
|
|
|
|
set_irq_chained_handler(virq, cell_mpic_cascade);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-07-03 05:32:51 -04:00
|
|
|
static void __init cell_init_irq(void)
|
|
|
|
{
|
|
|
|
iic_init_IRQ();
|
|
|
|
spider_init_IRQ();
|
2006-11-11 01:24:58 -05:00
|
|
|
mpic_init_IRQ();
|
2006-07-03 05:32:51 -04:00
|
|
|
}
|
|
|
|
|
2005-10-31 20:08:37 -05:00
|
|
|
static void __init cell_setup_arch(void)
|
2005-06-22 19:43:37 -04:00
|
|
|
{
|
2006-06-19 14:33:29 -04:00
|
|
|
#ifdef CONFIG_SPU_BASE
|
2006-11-22 18:46:49 -05:00
|
|
|
spu_priv1_ops = &spu_priv1_mmio_ops;
|
|
|
|
spu_management_ops = &spu_management_of_ops;
|
2006-06-19 14:33:29 -04:00
|
|
|
#endif
|
2005-06-22 19:43:43 -04:00
|
|
|
|
2006-06-19 14:33:16 -04:00
|
|
|
cbe_regs_init();
|
|
|
|
|
|
|
|
#ifdef CONFIG_CBE_RAS
|
|
|
|
cbe_ras_init();
|
|
|
|
#endif
|
|
|
|
|
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();
|
2006-06-19 14:33:16 -04:00
|
|
|
cbe_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-06-22 19:43:37 -04:00
|
|
|
}
|
|
|
|
|
2006-03-28 07:15:54 -05:00
|
|
|
static int __init cell_probe(void)
|
2005-06-22 19:43:37 -04:00
|
|
|
{
|
2006-03-28 07:15:54 -05:00
|
|
|
unsigned long root = of_get_flat_dt_root();
|
2005-06-22 19:43:37 -04:00
|
|
|
|
2006-06-23 04:16:38 -04:00
|
|
|
if (!of_flat_dt_is_compatible(root, "IBM,CBEA") &&
|
|
|
|
!of_flat_dt_is_compatible(root, "IBM,CPBW-1.0"))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
hpte_init_native();
|
2006-06-06 22:04:18 -04:00
|
|
|
|
2006-06-23 04:16:38 -04:00
|
|
|
return 1;
|
2005-06-22 19:43:37 -04:00
|
|
|
}
|
|
|
|
|
2006-03-28 07:15:54 -05:00
|
|
|
define_machine(cell) {
|
|
|
|
.name = "Cell",
|
2005-10-31 20:08:37 -05:00
|
|
|
.probe = cell_probe,
|
|
|
|
.setup_arch = cell_setup_arch,
|
|
|
|
.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-10-31 20:08:37 -05:00
|
|
|
.progress = cell_progress,
|
2006-07-03 05:32:51 -04:00
|
|
|
.init_IRQ = cell_init_irq,
|
2006-11-11 01:25:08 -05:00
|
|
|
.pci_setup_phb = rtas_setup_phb,
|
[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
|
|
|
};
|