Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 1 | /* |
Arnd Bergmann | f3f66f5 | 2005-10-31 20:08:37 -0500 | [diff] [blame] | 2 | * Cell Internal Interrupt Controller |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 3 | * |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 4 | * Copyright (C) 2006 Benjamin Herrenschmidt (benh@kernel.crashing.org) |
| 5 | * IBM, Corp. |
| 6 | * |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 7 | * (C) Copyright IBM Deutschland Entwicklung GmbH 2005 |
| 8 | * |
| 9 | * Author: Arnd Bergmann <arndb@de.ibm.com> |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License as published by |
| 13 | * the Free Software Foundation; either version 2, or (at your option) |
| 14 | * any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | * GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License |
| 22 | * along with this program; if not, write to the Free Software |
| 23 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 24 | * |
| 25 | * TODO: |
| 26 | * - Fix various assumptions related to HW CPU numbers vs. linux CPU numbers |
| 27 | * vs node numbers in the setup code |
| 28 | * - Implement proper handling of maxcpus=1/2 (that is, routing of irqs from |
| 29 | * a non-active node to the active node) |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 30 | */ |
| 31 | |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 32 | #include <linux/interrupt.h> |
| 33 | #include <linux/irq.h> |
Arnd Bergmann | 2fb9d20 | 2006-01-05 14:05:29 +0000 | [diff] [blame] | 34 | #include <linux/module.h> |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 35 | #include <linux/percpu.h> |
| 36 | #include <linux/types.h> |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 37 | #include <linux/ioport.h> |
Jeremy Kerr | 5711fe9 | 2008-04-04 17:55:28 +1100 | [diff] [blame] | 38 | #include <linux/kernel_stat.h> |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 39 | |
| 40 | #include <asm/io.h> |
| 41 | #include <asm/pgtable.h> |
| 42 | #include <asm/prom.h> |
| 43 | #include <asm/ptrace.h> |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 44 | #include <asm/machdep.h> |
Benjamin Herrenschmidt | eef686a0 | 2007-10-04 15:40:42 +1000 | [diff] [blame] | 45 | #include <asm/cell-regs.h> |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 46 | |
Arnd Bergmann | f3f66f5 | 2005-10-31 20:08:37 -0500 | [diff] [blame] | 47 | #include "interrupt.h" |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 48 | |
| 49 | struct iic { |
Benjamin Herrenschmidt | acf7d76 | 2006-06-19 20:33:16 +0200 | [diff] [blame] | 50 | struct cbe_iic_thread_regs __iomem *regs; |
Arnd Bergmann | 2fb9d20 | 2006-01-05 14:05:29 +0000 | [diff] [blame] | 51 | u8 target_id; |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 52 | u8 eoi_stack[16]; |
| 53 | int eoi_ptr; |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 54 | struct device_node *node; |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 55 | }; |
| 56 | |
| 57 | static DEFINE_PER_CPU(struct iic, iic); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 58 | #define IIC_NODE_COUNT 2 |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 59 | static struct irq_host *iic_host; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 60 | |
| 61 | /* Convert between "pending" bits and hw irq number */ |
| 62 | static irq_hw_number_t iic_pending_to_hwnum(struct cbe_iic_pending_bits bits) |
| 63 | { |
| 64 | unsigned char unit = bits.source & 0xf; |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 65 | unsigned char node = bits.source >> 4; |
| 66 | unsigned char class = bits.class & 3; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 67 | |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 68 | /* Decode IPIs */ |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 69 | if (bits.flags & CBE_IIC_IRQ_IPI) |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 70 | return IIC_IRQ_TYPE_IPI | (bits.prio >> 4); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 71 | else |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 72 | return (node << IIC_IRQ_NODE_SHIFT) | (class << 4) | unit; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 73 | } |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 74 | |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 75 | static void iic_mask(unsigned int irq) |
| 76 | { |
| 77 | } |
| 78 | |
| 79 | static void iic_unmask(unsigned int irq) |
| 80 | { |
| 81 | } |
| 82 | |
| 83 | static void iic_eoi(unsigned int irq) |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 84 | { |
Arnd Bergmann | 5536408 | 2006-03-23 00:00:07 +0100 | [diff] [blame] | 85 | struct iic *iic = &__get_cpu_var(iic); |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 86 | out_be64(&iic->regs->prio, iic->eoi_stack[--iic->eoi_ptr]); |
| 87 | BUG_ON(iic->eoi_ptr < 0); |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 88 | } |
| 89 | |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 90 | static struct irq_chip iic_chip = { |
Arnd Bergmann | f3f66f5 | 2005-10-31 20:08:37 -0500 | [diff] [blame] | 91 | .typename = " CELL-IIC ", |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 92 | .mask = iic_mask, |
| 93 | .unmask = iic_unmask, |
| 94 | .eoi = iic_eoi, |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 95 | }; |
| 96 | |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 97 | |
| 98 | static void iic_ioexc_eoi(unsigned int irq) |
| 99 | { |
| 100 | } |
| 101 | |
Olaf Hering | 35a84c2 | 2006-10-07 22:08:26 +1000 | [diff] [blame] | 102 | static void iic_ioexc_cascade(unsigned int irq, struct irq_desc *desc) |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 103 | { |
Arnd Bergmann | 43b4f40 | 2006-10-04 17:26:24 +0200 | [diff] [blame] | 104 | struct cbe_iic_regs __iomem *node_iic = (void __iomem *)desc->handler_data; |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 105 | unsigned int base = (irq & 0xffffff00) | IIC_IRQ_TYPE_IOEXC; |
| 106 | unsigned long bits, ack; |
| 107 | int cascade; |
| 108 | |
| 109 | for (;;) { |
| 110 | bits = in_be64(&node_iic->iic_is); |
| 111 | if (bits == 0) |
| 112 | break; |
| 113 | /* pre-ack edge interrupts */ |
| 114 | ack = bits & IIC_ISR_EDGE_MASK; |
| 115 | if (ack) |
| 116 | out_be64(&node_iic->iic_is, ack); |
| 117 | /* handle them */ |
| 118 | for (cascade = 63; cascade >= 0; cascade--) |
| 119 | if (bits & (0x8000000000000000UL >> cascade)) { |
| 120 | unsigned int cirq = |
| 121 | irq_linear_revmap(iic_host, |
| 122 | base | cascade); |
| 123 | if (cirq != NO_IRQ) |
Olof Johansson | 49f19ce | 2006-10-05 20:31:10 -0500 | [diff] [blame] | 124 | generic_handle_irq(cirq); |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 125 | } |
| 126 | /* post-ack level interrupts */ |
| 127 | ack = bits & ~IIC_ISR_EDGE_MASK; |
| 128 | if (ack) |
| 129 | out_be64(&node_iic->iic_is, ack); |
| 130 | } |
| 131 | desc->chip->eoi(irq); |
| 132 | } |
| 133 | |
| 134 | |
| 135 | static struct irq_chip iic_ioexc_chip = { |
| 136 | .typename = " CELL-IOEX", |
| 137 | .mask = iic_mask, |
| 138 | .unmask = iic_unmask, |
| 139 | .eoi = iic_ioexc_eoi, |
| 140 | }; |
| 141 | |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 142 | /* Get an IRQ number from the pending state register of the IIC */ |
Olaf Hering | 35a84c2 | 2006-10-07 22:08:26 +1000 | [diff] [blame] | 143 | static unsigned int iic_get_irq(void) |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 144 | { |
Geoff Levand | 9e6ee34 | 2006-08-09 15:28:13 -0700 | [diff] [blame] | 145 | struct cbe_iic_pending_bits pending; |
| 146 | struct iic *iic; |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 147 | unsigned int virq; |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 148 | |
Geoff Levand | 9e6ee34 | 2006-08-09 15:28:13 -0700 | [diff] [blame] | 149 | iic = &__get_cpu_var(iic); |
| 150 | *(unsigned long *) &pending = |
Ingo Molnar | b36ac9e | 2009-01-06 14:03:44 +0000 | [diff] [blame] | 151 | in_be64((u64 __iomem *) &iic->regs->pending_destr); |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 152 | if (!(pending.flags & CBE_IIC_IRQ_VALID)) |
| 153 | return NO_IRQ; |
| 154 | virq = irq_linear_revmap(iic_host, iic_pending_to_hwnum(pending)); |
| 155 | if (virq == NO_IRQ) |
| 156 | return NO_IRQ; |
Geoff Levand | 9e6ee34 | 2006-08-09 15:28:13 -0700 | [diff] [blame] | 157 | iic->eoi_stack[++iic->eoi_ptr] = pending.prio; |
| 158 | BUG_ON(iic->eoi_ptr > 15); |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 159 | return virq; |
Jens Osterkamp | d0e57c6 | 2006-03-23 00:00:06 +0100 | [diff] [blame] | 160 | } |
| 161 | |
Olof Johansson | 4bfac36 | 2007-10-28 04:28:51 +1100 | [diff] [blame] | 162 | void iic_setup_cpu(void) |
| 163 | { |
| 164 | out_be64(&__get_cpu_var(iic).regs->prio, 0xff); |
| 165 | } |
| 166 | |
| 167 | u8 iic_get_target_id(int cpu) |
| 168 | { |
| 169 | return per_cpu(iic, cpu).target_id; |
| 170 | } |
| 171 | |
| 172 | EXPORT_SYMBOL_GPL(iic_get_target_id); |
| 173 | |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 174 | #ifdef CONFIG_SMP |
Arnd Bergmann | a84195f | 2005-08-18 19:35:21 +0200 | [diff] [blame] | 175 | |
| 176 | /* Use the highest interrupt priorities for IPI */ |
| 177 | static inline int iic_ipi_to_irq(int ipi) |
| 178 | { |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 179 | return IIC_IRQ_TYPE_IPI + 0xf - ipi; |
Arnd Bergmann | a84195f | 2005-08-18 19:35:21 +0200 | [diff] [blame] | 180 | } |
| 181 | |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 182 | void iic_cause_IPI(int cpu, int mesg) |
| 183 | { |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 184 | out_be64(&per_cpu(iic, cpu).regs->generate, (0xf - mesg) << 4); |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 185 | } |
| 186 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 187 | struct irq_host *iic_get_irq_host(int node) |
| 188 | { |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 189 | return iic_host; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 190 | } |
| 191 | EXPORT_SYMBOL_GPL(iic_get_irq_host); |
| 192 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 193 | static irqreturn_t iic_ipi_action(int irq, void *dev_id) |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 194 | { |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 195 | int ipi = (int)(long)dev_id; |
| 196 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 197 | smp_message_recv(ipi); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 198 | |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 199 | return IRQ_HANDLED; |
| 200 | } |
Arnd Bergmann | a84195f | 2005-08-18 19:35:21 +0200 | [diff] [blame] | 201 | static void iic_request_ipi(int ipi, const char *name) |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 202 | { |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 203 | int virq; |
Arnd Bergmann | a84195f | 2005-08-18 19:35:21 +0200 | [diff] [blame] | 204 | |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 205 | virq = irq_create_mapping(iic_host, iic_ipi_to_irq(ipi)); |
| 206 | if (virq == NO_IRQ) { |
| 207 | printk(KERN_ERR |
| 208 | "iic: failed to map IPI %s\n", name); |
| 209 | return; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 210 | } |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 211 | if (request_irq(virq, iic_ipi_action, IRQF_DISABLED, name, |
| 212 | (void *)(long)ipi)) |
| 213 | printk(KERN_ERR |
| 214 | "iic: failed to request IPI %s\n", name); |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 215 | } |
| 216 | |
| 217 | void iic_request_IPIs(void) |
| 218 | { |
Arnd Bergmann | a84195f | 2005-08-18 19:35:21 +0200 | [diff] [blame] | 219 | iic_request_ipi(PPC_MSG_CALL_FUNCTION, "IPI-call"); |
| 220 | iic_request_ipi(PPC_MSG_RESCHEDULE, "IPI-resched"); |
Jens Axboe | b7d7a24 | 2008-06-26 11:22:13 +0200 | [diff] [blame] | 221 | iic_request_ipi(PPC_MSG_CALL_FUNC_SINGLE, "IPI-call-single"); |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 222 | #ifdef CONFIG_DEBUGGER |
Arnd Bergmann | a84195f | 2005-08-18 19:35:21 +0200 | [diff] [blame] | 223 | iic_request_ipi(PPC_MSG_DEBUGGER_BREAK, "IPI-debug"); |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 224 | #endif /* CONFIG_DEBUGGER */ |
| 225 | } |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 226 | |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 227 | #endif /* CONFIG_SMP */ |
| 228 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 229 | |
| 230 | static int iic_host_match(struct irq_host *h, struct device_node *node) |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 231 | { |
Stephen Rothwell | 55b61fe | 2007-05-03 17:26:52 +1000 | [diff] [blame] | 232 | return of_device_is_compatible(node, |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 233 | "IBM,CBEA-Internal-Interrupt-Controller"); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 234 | } |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 235 | |
Jeremy Kerr | 5711fe9 | 2008-04-04 17:55:28 +1100 | [diff] [blame] | 236 | extern int noirqdebug; |
| 237 | |
| 238 | static void handle_iic_irq(unsigned int irq, struct irq_desc *desc) |
| 239 | { |
Jeremy Kerr | 5711fe9 | 2008-04-04 17:55:28 +1100 | [diff] [blame] | 240 | spin_lock(&desc->lock); |
| 241 | |
| 242 | desc->status &= ~(IRQ_REPLAY | IRQ_WAITING); |
| 243 | |
| 244 | /* |
| 245 | * If we're currently running this IRQ, or its disabled, |
| 246 | * we shouldn't process the IRQ. Mark it pending, handle |
| 247 | * the necessary masking and go out |
| 248 | */ |
| 249 | if (unlikely((desc->status & (IRQ_INPROGRESS | IRQ_DISABLED)) || |
| 250 | !desc->action)) { |
| 251 | desc->status |= IRQ_PENDING; |
| 252 | goto out_eoi; |
| 253 | } |
| 254 | |
Yinghai Lu | dee4102 | 2009-01-11 00:29:15 -0800 | [diff] [blame] | 255 | kstat_incr_irqs_this_cpu(irq, desc); |
Jeremy Kerr | 5711fe9 | 2008-04-04 17:55:28 +1100 | [diff] [blame] | 256 | |
| 257 | /* Mark the IRQ currently in progress.*/ |
| 258 | desc->status |= IRQ_INPROGRESS; |
| 259 | |
| 260 | do { |
| 261 | struct irqaction *action = desc->action; |
| 262 | irqreturn_t action_ret; |
| 263 | |
| 264 | if (unlikely(!action)) |
| 265 | goto out_eoi; |
| 266 | |
| 267 | desc->status &= ~IRQ_PENDING; |
| 268 | spin_unlock(&desc->lock); |
| 269 | action_ret = handle_IRQ_event(irq, action); |
| 270 | if (!noirqdebug) |
| 271 | note_interrupt(irq, desc, action_ret); |
| 272 | spin_lock(&desc->lock); |
| 273 | |
| 274 | } while ((desc->status & (IRQ_PENDING | IRQ_DISABLED)) == IRQ_PENDING); |
| 275 | |
| 276 | desc->status &= ~IRQ_INPROGRESS; |
| 277 | out_eoi: |
| 278 | desc->chip->eoi(irq); |
| 279 | spin_unlock(&desc->lock); |
| 280 | } |
| 281 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 282 | static int iic_host_map(struct irq_host *h, unsigned int virq, |
Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 283 | irq_hw_number_t hw) |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 284 | { |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 285 | switch (hw & IIC_IRQ_TYPE_MASK) { |
| 286 | case IIC_IRQ_TYPE_IPI: |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 287 | set_irq_chip_and_handler(virq, &iic_chip, handle_percpu_irq); |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 288 | break; |
| 289 | case IIC_IRQ_TYPE_IOEXC: |
| 290 | set_irq_chip_and_handler(virq, &iic_ioexc_chip, |
Jeremy Kerr | 5711fe9 | 2008-04-04 17:55:28 +1100 | [diff] [blame] | 291 | handle_iic_irq); |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 292 | break; |
| 293 | default: |
Jeremy Kerr | 5711fe9 | 2008-04-04 17:55:28 +1100 | [diff] [blame] | 294 | set_irq_chip_and_handler(virq, &iic_chip, handle_iic_irq); |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 295 | } |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 296 | return 0; |
| 297 | } |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 298 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 299 | static int iic_host_xlate(struct irq_host *h, struct device_node *ct, |
| 300 | u32 *intspec, unsigned int intsize, |
| 301 | irq_hw_number_t *out_hwirq, unsigned int *out_flags) |
| 302 | |
| 303 | { |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 304 | unsigned int node, ext, unit, class; |
| 305 | const u32 *val; |
| 306 | |
Stephen Rothwell | 55b61fe | 2007-05-03 17:26:52 +1000 | [diff] [blame] | 307 | if (!of_device_is_compatible(ct, |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 308 | "IBM,CBEA-Internal-Interrupt-Controller")) |
| 309 | return -ENODEV; |
| 310 | if (intsize != 1) |
| 311 | return -ENODEV; |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 312 | val = of_get_property(ct, "#interrupt-cells", NULL); |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 313 | if (val == NULL || *val != 1) |
| 314 | return -ENODEV; |
| 315 | |
| 316 | node = intspec[0] >> 24; |
| 317 | ext = (intspec[0] >> 16) & 0xff; |
| 318 | class = (intspec[0] >> 8) & 0xff; |
| 319 | unit = intspec[0] & 0xff; |
| 320 | |
| 321 | /* Check if node is in supported range */ |
| 322 | if (node > 1) |
| 323 | return -EINVAL; |
| 324 | |
| 325 | /* Build up interrupt number, special case for IO exceptions */ |
| 326 | *out_hwirq = (node << IIC_IRQ_NODE_SHIFT); |
| 327 | if (unit == IIC_UNIT_IIC && class == 1) |
| 328 | *out_hwirq |= IIC_IRQ_TYPE_IOEXC | ext; |
| 329 | else |
| 330 | *out_hwirq |= IIC_IRQ_TYPE_NORMAL | |
| 331 | (class << IIC_IRQ_CLASS_SHIFT) | unit; |
| 332 | |
| 333 | /* Dummy flags, ignored by iic code */ |
| 334 | *out_flags = IRQ_TYPE_EDGE_RISING; |
| 335 | |
| 336 | return 0; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | static struct irq_host_ops iic_host_ops = { |
| 340 | .match = iic_host_match, |
| 341 | .map = iic_host_map, |
| 342 | .xlate = iic_host_xlate, |
| 343 | }; |
| 344 | |
| 345 | static void __init init_one_iic(unsigned int hw_cpu, unsigned long addr, |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 346 | struct device_node *node) |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 347 | { |
| 348 | /* XXX FIXME: should locate the linux CPU number from the HW cpu |
| 349 | * number properly. We are lucky for now |
| 350 | */ |
| 351 | struct iic *iic = &per_cpu(iic, hw_cpu); |
| 352 | |
| 353 | iic->regs = ioremap(addr, sizeof(struct cbe_iic_thread_regs)); |
| 354 | BUG_ON(iic->regs == NULL); |
| 355 | |
| 356 | iic->target_id = ((hw_cpu & 2) << 3) | ((hw_cpu & 1) ? 0xf : 0xe); |
| 357 | iic->eoi_stack[0] = 0xff; |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 358 | iic->node = of_node_get(node); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 359 | out_be64(&iic->regs->prio, 0); |
| 360 | |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 361 | printk(KERN_INFO "IIC for CPU %d target id 0x%x : %s\n", |
| 362 | hw_cpu, iic->target_id, node->full_name); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 363 | } |
| 364 | |
| 365 | static int __init setup_iic(void) |
| 366 | { |
| 367 | struct device_node *dn; |
| 368 | struct resource r0, r1; |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 369 | unsigned int node, cascade, found = 0; |
Arnd Bergmann | 43b4f40 | 2006-10-04 17:26:24 +0200 | [diff] [blame] | 370 | struct cbe_iic_regs __iomem *node_iic; |
Geoff Levand | 9e6ee34 | 2006-08-09 15:28:13 -0700 | [diff] [blame] | 371 | const u32 *np; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 372 | |
| 373 | for (dn = NULL; |
| 374 | (dn = of_find_node_by_name(dn,"interrupt-controller")) != NULL;) { |
Stephen Rothwell | 55b61fe | 2007-05-03 17:26:52 +1000 | [diff] [blame] | 375 | if (!of_device_is_compatible(dn, |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 376 | "IBM,CBEA-Internal-Interrupt-Controller")) |
| 377 | continue; |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 378 | np = of_get_property(dn, "ibm,interrupt-server-ranges", NULL); |
Geoff Levand | 9e6ee34 | 2006-08-09 15:28:13 -0700 | [diff] [blame] | 379 | if (np == NULL) { |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 380 | printk(KERN_WARNING "IIC: CPU association not found\n"); |
| 381 | of_node_put(dn); |
| 382 | return -ENODEV; |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 383 | } |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 384 | if (of_address_to_resource(dn, 0, &r0) || |
| 385 | of_address_to_resource(dn, 1, &r1)) { |
| 386 | printk(KERN_WARNING "IIC: Can't resolve addresses\n"); |
| 387 | of_node_put(dn); |
| 388 | return -ENODEV; |
| 389 | } |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 390 | found++; |
| 391 | init_one_iic(np[0], r0.start, dn); |
| 392 | init_one_iic(np[1], r1.start, dn); |
| 393 | |
| 394 | /* Setup cascade for IO exceptions. XXX cleanup tricks to get |
| 395 | * node vs CPU etc... |
| 396 | * Note that we configure the IIC_IRR here with a hard coded |
| 397 | * priority of 1. We might want to improve that later. |
| 398 | */ |
| 399 | node = np[0] >> 1; |
| 400 | node_iic = cbe_get_cpu_iic_regs(np[0]); |
| 401 | cascade = node << IIC_IRQ_NODE_SHIFT; |
| 402 | cascade |= 1 << IIC_IRQ_CLASS_SHIFT; |
| 403 | cascade |= IIC_UNIT_IIC; |
| 404 | cascade = irq_create_mapping(iic_host, cascade); |
| 405 | if (cascade == NO_IRQ) |
| 406 | continue; |
Arnd Bergmann | 43b4f40 | 2006-10-04 17:26:24 +0200 | [diff] [blame] | 407 | /* |
| 408 | * irq_data is a generic pointer that gets passed back |
| 409 | * to us later, so the forced cast is fine. |
| 410 | */ |
| 411 | set_irq_data(cascade, (void __force *)node_iic); |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 412 | set_irq_chained_handler(cascade , iic_ioexc_cascade); |
| 413 | out_be64(&node_iic->iic_ir, |
| 414 | (1 << 12) /* priority */ | |
| 415 | (node << 4) /* dest node */ | |
| 416 | IIC_UNIT_THREAD_0 /* route them to thread 0 */); |
| 417 | /* Flush pending (make sure it triggers if there is |
| 418 | * anything pending |
| 419 | */ |
| 420 | out_be64(&node_iic->iic_is, 0xfffffffffffffffful); |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 421 | } |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 422 | |
| 423 | if (found) |
| 424 | return 0; |
| 425 | else |
| 426 | return -ENODEV; |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 427 | } |
| 428 | |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 429 | void __init iic_init_IRQ(void) |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 430 | { |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 431 | /* Setup an irq host data structure */ |
Michael Ellerman | 52964f8 | 2007-08-28 18:47:54 +1000 | [diff] [blame] | 432 | iic_host = irq_alloc_host(NULL, IRQ_HOST_MAP_LINEAR, IIC_SOURCE_COUNT, |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 433 | &iic_host_ops, IIC_IRQ_INVALID); |
| 434 | BUG_ON(iic_host == NULL); |
| 435 | irq_set_default_host(iic_host); |
| 436 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 437 | /* Discover and initialize iics */ |
Jens Osterkamp | d0e57c6 | 2006-03-23 00:00:06 +0100 | [diff] [blame] | 438 | if (setup_iic() < 0) |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 439 | panic("IIC: Failed to initialize !\n"); |
Jens Osterkamp | d0e57c6 | 2006-03-23 00:00:06 +0100 | [diff] [blame] | 440 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 441 | /* Set master interrupt handling function */ |
| 442 | ppc_md.get_irq = iic_get_irq; |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 443 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 444 | /* Enable on current CPU */ |
| 445 | iic_setup_cpu(); |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 446 | } |
Kevin Corry | 0443bbd | 2006-11-20 18:45:15 +0100 | [diff] [blame] | 447 | |
| 448 | void iic_set_interrupt_routing(int cpu, int thread, int priority) |
| 449 | { |
| 450 | struct cbe_iic_regs __iomem *iic_regs = cbe_get_cpu_iic_regs(cpu); |
| 451 | u64 iic_ir = 0; |
| 452 | int node = cpu >> 1; |
| 453 | |
| 454 | /* Set which node and thread will handle the next interrupt */ |
| 455 | iic_ir |= CBE_IIC_IR_PRIO(priority) | |
| 456 | CBE_IIC_IR_DEST_NODE(node); |
| 457 | if (thread == 0) |
| 458 | iic_ir |= CBE_IIC_IR_DEST_UNIT(CBE_IIC_IR_PT_0); |
| 459 | else |
| 460 | iic_ir |= CBE_IIC_IR_DEST_UNIT(CBE_IIC_IR_PT_1); |
| 461 | out_be64(&iic_regs->iic_ir, iic_ir); |
| 462 | } |