diff options
| -rw-r--r-- | arch/powerpc/kernel/cputable.c | 2 | ||||
| -rw-r--r-- | arch/powerpc/kernel/traps.c | 6 | ||||
| -rw-r--r-- | arch/powerpc/platforms/cell/Makefile | 2 | ||||
| -rw-r--r-- | arch/powerpc/platforms/cell/pervasive.c | 229 | ||||
| -rw-r--r-- | arch/powerpc/platforms/cell/pervasive.h | 62 | ||||
| -rw-r--r-- | arch/powerpc/platforms/cell/setup.c | 2 | ||||
| -rw-r--r-- | arch/powerpc/platforms/pseries/ras.c | 5 | ||||
| -rw-r--r-- | arch/powerpc/platforms/pseries/ras.h | 9 | ||||
| -rw-r--r-- | arch/powerpc/platforms/pseries/setup.c | 4 | ||||
| -rw-r--r-- | include/asm-powerpc/cputable.h | 4 | ||||
| -rw-r--r-- | include/asm-powerpc/machdep.h | 2 | ||||
| -rw-r--r-- | include/asm-powerpc/reg.h | 22 |
12 files changed, 335 insertions, 14 deletions
diff --git a/arch/powerpc/kernel/cputable.c b/arch/powerpc/kernel/cputable.c index f7f2a830fca1..2f82a2091440 100644 --- a/arch/powerpc/kernel/cputable.c +++ b/arch/powerpc/kernel/cputable.c | |||
| @@ -273,7 +273,7 @@ struct cpu_spec cpu_specs[] = { | |||
| 273 | .oprofile_model = &op_model_power4, | 273 | .oprofile_model = &op_model_power4, |
| 274 | #endif | 274 | #endif |
| 275 | }, | 275 | }, |
| 276 | { /* BE DD1.x */ | 276 | { /* Cell Broadband Engine */ |
| 277 | .pvr_mask = 0xffff0000, | 277 | .pvr_mask = 0xffff0000, |
| 278 | .pvr_value = 0x00700000, | 278 | .pvr_value = 0x00700000, |
| 279 | .cpu_name = "Cell Broadband Engine", | 279 | .cpu_name = "Cell Broadband Engine", |
diff --git a/arch/powerpc/kernel/traps.c b/arch/powerpc/kernel/traps.c index 6c793463d511..7509aa6474f2 100644 --- a/arch/powerpc/kernel/traps.c +++ b/arch/powerpc/kernel/traps.c | |||
| @@ -230,8 +230,10 @@ void _exception(int signr, struct pt_regs *regs, int code, unsigned long addr) | |||
| 230 | void system_reset_exception(struct pt_regs *regs) | 230 | void system_reset_exception(struct pt_regs *regs) |
| 231 | { | 231 | { |
| 232 | /* See if any machine dependent calls */ | 232 | /* See if any machine dependent calls */ |
| 233 | if (ppc_md.system_reset_exception) | 233 | if (ppc_md.system_reset_exception) { |
| 234 | ppc_md.system_reset_exception(regs); | 234 | if (ppc_md.system_reset_exception(regs)) |
| 235 | return; | ||
| 236 | } | ||
| 235 | 237 | ||
| 236 | die("System Reset", regs, SIGABRT); | 238 | die("System Reset", regs, SIGABRT); |
| 237 | 239 | ||
diff --git a/arch/powerpc/platforms/cell/Makefile b/arch/powerpc/platforms/cell/Makefile index 74616cf13af9..ebbd1141498a 100644 --- a/arch/powerpc/platforms/cell/Makefile +++ b/arch/powerpc/platforms/cell/Makefile | |||
| @@ -1,4 +1,6 @@ | |||
| 1 | obj-y += interrupt.o iommu.o setup.o spider-pic.o | 1 | obj-y += interrupt.o iommu.o setup.o spider-pic.o |
| 2 | obj-y += pervasive.o | ||
| 3 | |||
| 2 | obj-$(CONFIG_SMP) += smp.o | 4 | obj-$(CONFIG_SMP) += smp.o |
| 3 | obj-$(CONFIG_SPU_FS) += spufs/ spu_base.o | 5 | obj-$(CONFIG_SPU_FS) += spufs/ spu_base.o |
| 4 | builtin-spufs-$(CONFIG_SPU_FS) += spu_syscalls.o | 6 | builtin-spufs-$(CONFIG_SPU_FS) += spu_syscalls.o |
diff --git a/arch/powerpc/platforms/cell/pervasive.c b/arch/powerpc/platforms/cell/pervasive.c new file mode 100644 index 000000000000..85152544c153 --- /dev/null +++ b/arch/powerpc/platforms/cell/pervasive.c | |||
| @@ -0,0 +1,229 @@ | |||
| 1 | /* | ||
| 2 | * CBE Pervasive Monitor and Debug | ||
| 3 | * | ||
| 4 | * (C) Copyright IBM Corporation 2005 | ||
| 5 | * | ||
| 6 | * Authors: Maximino Aguilar (maguilar@us.ibm.com) | ||
| 7 | * Michael N. Day (mnday@us.ibm.com) | ||
| 8 | * | ||
| 9 | * This program is free software; you can redistribute it and/or modify | ||
| 10 | * it under the terms of the GNU General Public License as published by | ||
| 11 | * the Free Software Foundation; either version 2, or (at your option) | ||
| 12 | * any later version. | ||
| 13 | * | ||
| 14 | * This program is distributed in the hope that it will be useful, | ||
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 17 | * GNU General Public License for more details. | ||
| 18 | * | ||
| 19 | * You should have received a copy of the GNU General Public License | ||
| 20 | * along with this program; if not, write to the Free Software | ||
| 21 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
| 22 | */ | ||
| 23 | |||
| 24 | #undef DEBUG | ||
| 25 | |||
| 26 | #include <linux/config.h> | ||
| 27 | #include <linux/interrupt.h> | ||
| 28 | #include <linux/irq.h> | ||
| 29 | #include <linux/percpu.h> | ||
| 30 | #include <linux/types.h> | ||
| 31 | #include <linux/kallsyms.h> | ||
| 32 | |||
| 33 | #include <asm/io.h> | ||
| 34 | #include <asm/machdep.h> | ||
| 35 | #include <asm/prom.h> | ||
| 36 | #include <asm/pgtable.h> | ||
| 37 | #include <asm/reg.h> | ||
| 38 | |||
| 39 | #include "pervasive.h" | ||
| 40 | |||
| 41 | static DEFINE_SPINLOCK(cbe_pervasive_lock); | ||
| 42 | struct cbe_pervasive { | ||
| 43 | struct pmd_regs __iomem *regs; | ||
| 44 | unsigned int thread; | ||
| 45 | }; | ||
| 46 | |||
| 47 | /* can't use per_cpu from setup_arch */ | ||
| 48 | static struct cbe_pervasive cbe_pervasive[NR_CPUS]; | ||
| 49 | |||
| 50 | static void __init cbe_enable_pause_zero(void) | ||
| 51 | { | ||
| 52 | unsigned long thread_switch_control; | ||
| 53 | unsigned long temp_register; | ||
| 54 | struct cbe_pervasive *p; | ||
| 55 | int thread; | ||
| 56 | |||
| 57 | spin_lock_irq(&cbe_pervasive_lock); | ||
| 58 | p = &cbe_pervasive[smp_processor_id()]; | ||
| 59 | |||
| 60 | if (!cbe_pervasive->regs) | ||
| 61 | goto out; | ||
| 62 | |||
| 63 | pr_debug("Power Management: CPU %d\n", smp_processor_id()); | ||
| 64 | |||
| 65 | /* Enable Pause(0) control bit */ | ||
| 66 | temp_register = in_be64(&p->regs->pm_control); | ||
| 67 | |||
| 68 | out_be64(&p->regs->pm_control, | ||
| 69 | temp_register|PMD_PAUSE_ZERO_CONTROL); | ||
| 70 | |||
| 71 | /* Enable DEC and EE interrupt request */ | ||
| 72 | thread_switch_control = mfspr(SPRN_TSC_CELL); | ||
| 73 | thread_switch_control |= TSC_CELL_EE_ENABLE | TSC_CELL_EE_BOOST; | ||
| 74 | |||
| 75 | switch ((mfspr(SPRN_CTRLF) & CTRL_CT)) { | ||
| 76 | case CTRL_CT0: | ||
| 77 | thread_switch_control |= TSC_CELL_DEC_ENABLE_0; | ||
| 78 | thread = 0; | ||
| 79 | break; | ||
| 80 | case CTRL_CT1: | ||
| 81 | thread_switch_control |= TSC_CELL_DEC_ENABLE_1; | ||
| 82 | thread = 1; | ||
| 83 | break; | ||
| 84 | default: | ||
| 85 | printk(KERN_WARNING "%s: unknown configuration\n", | ||
| 86 | __FUNCTION__); | ||
| 87 | thread = -1; | ||
| 88 | break; | ||
| 89 | } | ||
| 90 | |||
| 91 | if (p->thread != thread) | ||
| 92 | printk(KERN_WARNING "%s: device tree inconsistant, " | ||
| 93 | "cpu %i: %d/%d\n", __FUNCTION__, | ||
| 94 | smp_processor_id(), | ||
| 95 | p->thread, thread); | ||
| 96 | |||
| 97 | mtspr(SPRN_TSC_CELL, thread_switch_control); | ||
| 98 | |||
| 99 | out: | ||
| 100 | spin_unlock_irq(&cbe_pervasive_lock); | ||
| 101 | } | ||
| 102 | |||
| 103 | static void cbe_idle(void) | ||
| 104 | { | ||
| 105 | unsigned long ctrl; | ||
| 106 | |||
| 107 | cbe_enable_pause_zero(); | ||
| 108 | |||
| 109 | while (1) { | ||
| 110 | if (!need_resched()) { | ||
| 111 | local_irq_disable(); | ||
| 112 | while (!need_resched()) { | ||
| 113 | /* go into low thread priority */ | ||
| 114 | HMT_low(); | ||
| 115 | |||
| 116 | /* | ||
| 117 | * atomically disable thread execution | ||
| 118 | * and runlatch. | ||
| 119 | * External and Decrementer exceptions | ||
| 120 | * are still handled when the thread | ||
| 121 | * is disabled but now enter in | ||
| 122 | * cbe_system_reset_exception() | ||
| 123 | */ | ||
| 124 | ctrl = mfspr(SPRN_CTRLF); | ||
| 125 | ctrl &= ~(CTRL_RUNLATCH | CTRL_TE); | ||
| 126 | mtspr(SPRN_CTRLT, ctrl); | ||
| 127 | } | ||
| 128 | /* restore thread prio */ | ||
| 129 | HMT_medium(); | ||
| 130 | local_irq_enable(); | ||
| 131 | } | ||
| 132 | |||
| 133 | /* | ||
| 134 | * turn runlatch on again before scheduling the | ||
| 135 | * process we just woke up | ||
