2 * Cell Internal Interrupt Controller
4 * (C) Copyright IBM Deutschland Entwicklung GmbH 2005
6 * Author: Arnd Bergmann <arndb@de.ibm.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2, or (at your option)
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include <linux/config.h>
24 #include <linux/interrupt.h>
25 #include <linux/irq.h>
26 #include <linux/module.h>
27 #include <linux/percpu.h>
28 #include <linux/types.h>
31 #include <asm/pgtable.h>
33 #include <asm/ptrace.h>
35 #include "interrupt.h"
39 struct cbe_iic_thread_regs __iomem *regs;
43 static DEFINE_PER_CPU(struct iic, iic);
45 void iic_local_enable(void)
47 struct iic *iic = &__get_cpu_var(iic);
51 * There seems to be a bug that is present in DD2.x CPUs
52 * and still only partially fixed in DD3.1.
53 * This bug causes a value written to the priority register
54 * not to make it there, resulting in a system hang unless we
56 * Masking with 0xf0 is done because the Cell BE does not
57 * implement the lower four bits of the interrupt priority,
58 * they always read back as zeroes, although future CPUs
59 * might implement different bits.
62 out_be64(&iic->regs->prio, 0xff);
63 tmp = in_be64(&iic->regs->prio);
64 } while ((tmp & 0xf0) != 0xf0);
67 void iic_local_disable(void)
69 out_be64(&__get_cpu_var(iic).regs->prio, 0x0);
72 static unsigned int iic_startup(unsigned int irq)
77 static void iic_enable(unsigned int irq)
82 static void iic_disable(unsigned int irq)
86 static void iic_end(unsigned int irq)
91 static struct hw_interrupt_type iic_pic = {
92 .typename = " CELL-IIC ",
93 .startup = iic_startup,
95 .disable = iic_disable,
99 static int iic_external_get_irq(struct cbe_iic_pending_bits pending)
102 unsigned char node, unit;
104 node = pending.source >> 4;
105 unit = pending.source & 0xf;
109 * This mapping is specific to the Cell Broadband
110 * Engine. We might need to get the numbers
111 * from the device tree to support future CPUs.
117 * One of these units can be connected
118 * to an external interrupt controller.
120 if (pending.class != 2)
123 + spider_get_irq(node)
124 + node * IIC_NODE_STRIDE;
129 * These units are connected to the SPEs
131 if (pending.class > 2)
134 + pending.class * IIC_CLASS_STRIDE
135 + node * IIC_NODE_STRIDE
140 printk(KERN_WARNING "Unexpected interrupt class %02x, "
141 "source %02x, prio %02x, cpu %02x\n", pending.class,
142 pending.source, pending.prio, smp_processor_id());
146 /* Get an IRQ number from the pending state register of the IIC */
147 int iic_get_irq(struct pt_regs *regs)
151 struct cbe_iic_pending_bits pending;
153 iic = &__get_cpu_var(iic);
154 *(unsigned long *) &pending =
155 in_be64((unsigned long __iomem *) &iic->regs->pending_destr);
158 if (pending.flags & CBE_IIC_IRQ_VALID) {
159 if (pending.flags & CBE_IIC_IRQ_IPI) {
160 irq = IIC_IPI_OFFSET + (pending.prio >> 4);
163 printk(KERN_WARNING "Unexpected IPI prio %02x"
164 "on CPU %02x\n", pending.prio,
168 irq = iic_external_get_irq(pending);
174 /* hardcoded part to be compatible with older firmware */
176 static int setup_iic_hardcoded(void)
178 struct device_node *np;
183 for_each_possible_cpu(cpu) {
184 iic = &per_cpu(iic, cpu);
187 for (np = of_find_node_by_type(NULL, "cpu");
189 np = of_find_node_by_type(np, "cpu")) {
190 if (nodeid == *(int *)get_property(np, "node-id", NULL))
195 printk(KERN_WARNING "IIC: CPU %d not found\n", cpu);
197 iic->target_id = 0xff;
201 regs = *(long *)get_property(np, "iic", NULL);
203 /* hack until we have decided on the devtree info */
208 printk(KERN_INFO "IIC for CPU %d at %lx\n", cpu, regs);
209 iic->regs = ioremap(regs, sizeof(struct cbe_iic_thread_regs));
210 iic->target_id = (nodeid << 4) + ((cpu & 1) ? 0xf : 0xe);
216 static int setup_iic(void)
218 struct device_node *dn;
221 unsigned *np, found = 0;
222 struct iic *iic = NULL;
224 for (dn = NULL; (dn = of_find_node_by_name(dn, "interrupt-controller"));) {
225 compatible = (char *)get_property(dn, "compatible", NULL);
228 printk(KERN_WARNING "no compatible property found !\n");
232 if (strstr(compatible, "IBM,CBEA-Internal-Interrupt-Controller"))
233 regs = (unsigned long *)get_property(dn,"reg", NULL);
238 printk(KERN_WARNING "IIC: no reg property\n");
240 np = (unsigned int *)get_property(dn, "ibm,interrupt-server-ranges", NULL);
243 printk(KERN_WARNING "IIC: CPU association not found\n");
245 iic->target_id = 0xff;
249 iic = &per_cpu(iic, np[0]);
250 iic->regs = ioremap(regs[0], sizeof(struct cbe_iic_thread_regs));
251 iic->target_id = ((np[0] & 2) << 3) + ((np[0] & 1) ? 0xf : 0xe);
252 printk("IIC for CPU %d at %lx mapped to %p\n", np[0], regs[0], iic->regs);
254 iic = &per_cpu(iic, np[1]);
255 iic->regs = ioremap(regs[2], sizeof(struct cbe_iic_thread_regs));
256 iic->target_id = ((np[1] & 2) << 3) + ((np[1] & 1) ? 0xf : 0xe);
257 printk("IIC for CPU %d at %lx mapped to %p\n", np[1], regs[2], iic->regs);
270 /* Use the highest interrupt priorities for IPI */
271 static inline int iic_ipi_to_irq(int ipi)
273 return IIC_IPI_OFFSET + IIC_NUM_IPIS - 1 - ipi;
276 static inline int iic_irq_to_ipi(int irq)
278 return IIC_NUM_IPIS - 1 - (irq - IIC_IPI_OFFSET);
281 void iic_setup_cpu(void)
283 out_be64(&__get_cpu_var(iic).regs->prio, 0xff);
286 void iic_cause_IPI(int cpu, int mesg)
288 out_be64(&per_cpu(iic, cpu).regs->generate, (IIC_NUM_IPIS - 1 - mesg) << 4);
291 u8 iic_get_target_id(int cpu)
293 return per_cpu(iic, cpu).target_id;
295 EXPORT_SYMBOL_GPL(iic_get_target_id);
297 static irqreturn_t iic_ipi_action(int irq, void *dev_id, struct pt_regs *regs)
299 smp_message_recv(iic_irq_to_ipi(irq), regs);
303 static void iic_request_ipi(int ipi, const char *name)
307 irq = iic_ipi_to_irq(ipi);
308 /* IPIs are marked SA_INTERRUPT as they must run with irqs
310 get_irq_desc(irq)->handler = &iic_pic;
311 get_irq_desc(irq)->status |= IRQ_PER_CPU;
312 request_irq(irq, iic_ipi_action, SA_INTERRUPT, name, NULL);
315 void iic_request_IPIs(void)
317 iic_request_ipi(PPC_MSG_CALL_FUNCTION, "IPI-call");
318 iic_request_ipi(PPC_MSG_RESCHEDULE, "IPI-resched");
319 #ifdef CONFIG_DEBUGGER
320 iic_request_ipi(PPC_MSG_DEBUGGER_BREAK, "IPI-debug");
321 #endif /* CONFIG_DEBUGGER */
323 #endif /* CONFIG_SMP */
325 static void iic_setup_spe_handlers(void)
329 /* Assume two threads per BE are present */
330 for (be=0; be < num_present_cpus() / 2; be++) {
331 for (isrc = 0; isrc < IIC_CLASS_STRIDE * 3; isrc++) {
332 int irq = IIC_NODE_STRIDE * be + IIC_SPE_OFFSET + isrc;
333 get_irq_desc(irq)->handler = &iic_pic;
338 void iic_init_IRQ(void)
344 setup_iic_hardcoded();
347 for_each_possible_cpu(cpu) {
348 iic = &per_cpu(iic, cpu);
350 out_be64(&iic->regs->prio, 0xff);
352 iic_setup_spe_handlers();