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 | |
Tejun Heo | 6b7487f | 2009-10-29 22:34:14 +0900 | [diff] [blame] | 57 | static DEFINE_PER_CPU(struct iic, cpu_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 | |
Lennert Buytenhek | d1ae63d | 2011-03-07 13:59:28 +0000 | [diff] [blame] | 75 | static void iic_mask(struct irq_data *d) |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 76 | { |
| 77 | } |
| 78 | |
Lennert Buytenhek | d1ae63d | 2011-03-07 13:59:28 +0000 | [diff] [blame] | 79 | static void iic_unmask(struct irq_data *d) |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 80 | { |
| 81 | } |
| 82 | |
Lennert Buytenhek | d1ae63d | 2011-03-07 13:59:28 +0000 | [diff] [blame] | 83 | static void iic_eoi(struct irq_data *d) |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 84 | { |
Tejun Heo | 6b7487f | 2009-10-29 22:34:14 +0900 | [diff] [blame] | 85 | struct iic *iic = &__get_cpu_var(cpu_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 = { |
Anton Blanchard | fc380c0 | 2010-01-31 20:33:41 +0000 | [diff] [blame] | 91 | .name = "CELL-IIC", |
Lennert Buytenhek | d1ae63d | 2011-03-07 13:59:28 +0000 | [diff] [blame] | 92 | .irq_mask = iic_mask, |
| 93 | .irq_unmask = iic_unmask, |
| 94 | .irq_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 | |
Lennert Buytenhek | d1ae63d | 2011-03-07 13:59:28 +0000 | [diff] [blame] | 98 | static void iic_ioexc_eoi(struct irq_data *d) |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 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 | { |
Thomas Gleixner | ec775d0 | 2011-03-25 16:45:20 +0100 | [diff] [blame] | 104 | struct irq_chip *chip = irq_desc_get_chip(desc); |
Lennert Buytenhek | d1ae63d | 2011-03-07 13:59:28 +0000 | [diff] [blame] | 105 | struct cbe_iic_regs __iomem *node_iic = |
Thomas Gleixner | ec775d0 | 2011-03-25 16:45:20 +0100 | [diff] [blame] | 106 | (void __iomem *)irq_desc_get_handler_data(desc); |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 107 | unsigned int base = (irq & 0xffffff00) | IIC_IRQ_TYPE_IOEXC; |
| 108 | unsigned long bits, ack; |
| 109 | int cascade; |
| 110 | |
| 111 | for (;;) { |
| 112 | bits = in_be64(&node_iic->iic_is); |
| 113 | if (bits == 0) |
| 114 | break; |
| 115 | /* pre-ack edge interrupts */ |
| 116 | ack = bits & IIC_ISR_EDGE_MASK; |
| 117 | if (ack) |
| 118 | out_be64(&node_iic->iic_is, ack); |
| 119 | /* handle them */ |
| 120 | for (cascade = 63; cascade >= 0; cascade--) |
| 121 | if (bits & (0x8000000000000000UL >> cascade)) { |
| 122 | unsigned int cirq = |
| 123 | irq_linear_revmap(iic_host, |
| 124 | base | cascade); |
| 125 | if (cirq != NO_IRQ) |
Olof Johansson | 49f19ce | 2006-10-05 20:31:10 -0500 | [diff] [blame] | 126 | generic_handle_irq(cirq); |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 127 | } |
| 128 | /* post-ack level interrupts */ |
| 129 | ack = bits & ~IIC_ISR_EDGE_MASK; |
| 130 | if (ack) |
| 131 | out_be64(&node_iic->iic_is, ack); |
| 132 | } |
Lennert Buytenhek | d1ae63d | 2011-03-07 13:59:28 +0000 | [diff] [blame] | 133 | chip->irq_eoi(&desc->irq_data); |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | |
| 137 | static struct irq_chip iic_ioexc_chip = { |
Anton Blanchard | fc380c0 | 2010-01-31 20:33:41 +0000 | [diff] [blame] | 138 | .name = "CELL-IOEX", |
Lennert Buytenhek | d1ae63d | 2011-03-07 13:59:28 +0000 | [diff] [blame] | 139 | .irq_mask = iic_mask, |
| 140 | .irq_unmask = iic_unmask, |
| 141 | .irq_eoi = iic_ioexc_eoi, |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 142 | }; |
| 143 | |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 144 | /* Get an IRQ number from the pending state register of the IIC */ |
Olaf Hering | 35a84c2 | 2006-10-07 22:08:26 +1000 | [diff] [blame] | 145 | static unsigned int iic_get_irq(void) |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 146 | { |
Geoff Levand | 9e6ee34 | 2006-08-09 15:28:13 -0700 | [diff] [blame] | 147 | struct cbe_iic_pending_bits pending; |
| 148 | struct iic *iic; |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 149 | unsigned int virq; |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 150 | |
Tejun Heo | 6b7487f | 2009-10-29 22:34:14 +0900 | [diff] [blame] | 151 | iic = &__get_cpu_var(cpu_iic); |
Geoff Levand | 9e6ee34 | 2006-08-09 15:28:13 -0700 | [diff] [blame] | 152 | *(unsigned long *) &pending = |
Ingo Molnar | b36ac9e | 2009-01-06 14:03:44 +0000 | [diff] [blame] | 153 | in_be64((u64 __iomem *) &iic->regs->pending_destr); |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 154 | if (!(pending.flags & CBE_IIC_IRQ_VALID)) |
| 155 | return NO_IRQ; |
| 156 | virq = irq_linear_revmap(iic_host, iic_pending_to_hwnum(pending)); |
| 157 | if (virq == NO_IRQ) |
| 158 | return NO_IRQ; |
Geoff Levand | 9e6ee34 | 2006-08-09 15:28:13 -0700 | [diff] [blame] | 159 | iic->eoi_stack[++iic->eoi_ptr] = pending.prio; |
| 160 | BUG_ON(iic->eoi_ptr > 15); |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 161 | return virq; |
Jens Osterkamp | d0e57c6 | 2006-03-23 00:00:06 +0100 | [diff] [blame] | 162 | } |
| 163 | |
Olof Johansson | 4bfac36 | 2007-10-28 04:28:51 +1100 | [diff] [blame] | 164 | void iic_setup_cpu(void) |
| 165 | { |
Tejun Heo | 6b7487f | 2009-10-29 22:34:14 +0900 | [diff] [blame] | 166 | out_be64(&__get_cpu_var(cpu_iic).regs->prio, 0xff); |
Olof Johansson | 4bfac36 | 2007-10-28 04:28:51 +1100 | [diff] [blame] | 167 | } |
| 168 | |
| 169 | u8 iic_get_target_id(int cpu) |
| 170 | { |
Tejun Heo | 6b7487f | 2009-10-29 22:34:14 +0900 | [diff] [blame] | 171 | return per_cpu(cpu_iic, cpu).target_id; |
Olof Johansson | 4bfac36 | 2007-10-28 04:28:51 +1100 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | EXPORT_SYMBOL_GPL(iic_get_target_id); |
| 175 | |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 176 | #ifdef CONFIG_SMP |
Arnd Bergmann | a84195f | 2005-08-18 19:35:21 +0200 | [diff] [blame] | 177 | |
| 178 | /* Use the highest interrupt priorities for IPI */ |
Milton Miller | d5a1c19 | 2011-05-24 20:34:18 +0000 | [diff] [blame] | 179 | static inline int iic_msg_to_irq(int msg) |
Arnd Bergmann | a84195f | 2005-08-18 19:35:21 +0200 | [diff] [blame] | 180 | { |
Milton Miller | d5a1c19 | 2011-05-24 20:34:18 +0000 | [diff] [blame] | 181 | return IIC_IRQ_TYPE_IPI + 0xf - msg; |
Arnd Bergmann | a84195f | 2005-08-18 19:35:21 +0200 | [diff] [blame] | 182 | } |
| 183 | |
Milton Miller | d5a1c19 | 2011-05-24 20:34:18 +0000 | [diff] [blame] | 184 | void iic_message_pass(int cpu, int msg) |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 185 | { |
Milton Miller | d5a1c19 | 2011-05-24 20:34:18 +0000 | [diff] [blame] | 186 | out_be64(&per_cpu(cpu_iic, cpu).regs->generate, (0xf - msg) << 4); |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 187 | } |
| 188 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 189 | struct irq_host *iic_get_irq_host(int node) |
| 190 | { |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 191 | return iic_host; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 192 | } |
| 193 | EXPORT_SYMBOL_GPL(iic_get_irq_host); |
| 194 | |
Milton Miller | d5a1c19 | 2011-05-24 20:34:18 +0000 | [diff] [blame] | 195 | static void iic_request_ipi(int msg) |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 196 | { |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 197 | int virq; |
Arnd Bergmann | a84195f | 2005-08-18 19:35:21 +0200 | [diff] [blame] | 198 | |
Milton Miller | d5a1c19 | 2011-05-24 20:34:18 +0000 | [diff] [blame] | 199 | virq = irq_create_mapping(iic_host, iic_msg_to_irq(msg)); |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 200 | if (virq == NO_IRQ) { |
| 201 | printk(KERN_ERR |
Milton Miller | d5a1c19 | 2011-05-24 20:34:18 +0000 | [diff] [blame] | 202 | "iic: failed to map IPI %s\n", smp_ipi_name[msg]); |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 203 | return; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 204 | } |
Milton Miller | 7ef71d7 | 2011-05-24 20:34:18 +0000 | [diff] [blame] | 205 | |
| 206 | /* |
| 207 | * If smp_request_message_ipi encounters an error it will notify |
| 208 | * the error. If a message is not needed it will return non-zero. |
| 209 | */ |
Milton Miller | d5a1c19 | 2011-05-24 20:34:18 +0000 | [diff] [blame] | 210 | if (smp_request_message_ipi(virq, msg)) |
Milton Miller | 7ef71d7 | 2011-05-24 20:34:18 +0000 | [diff] [blame] | 211 | irq_dispose_mapping(virq); |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | void iic_request_IPIs(void) |
| 215 | { |
Milton Miller | 7ef71d7 | 2011-05-24 20:34:18 +0000 | [diff] [blame] | 216 | iic_request_ipi(PPC_MSG_CALL_FUNCTION); |
| 217 | iic_request_ipi(PPC_MSG_RESCHEDULE); |
| 218 | iic_request_ipi(PPC_MSG_CALL_FUNC_SINGLE); |
| 219 | iic_request_ipi(PPC_MSG_DEBUGGER_BREAK); |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 220 | } |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 221 | |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 222 | #endif /* CONFIG_SMP */ |
| 223 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 224 | |
| 225 | 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] | 226 | { |
Stephen Rothwell | 55b61fe | 2007-05-03 17:26:52 +1000 | [diff] [blame] | 227 | return of_device_is_compatible(node, |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 228 | "IBM,CBEA-Internal-Interrupt-Controller"); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 229 | } |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 230 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 231 | static int iic_host_map(struct irq_host *h, unsigned int virq, |
Benjamin Herrenschmidt | 6e99e45 | 2006-07-10 04:44:42 -0700 | [diff] [blame] | 232 | irq_hw_number_t hw) |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 233 | { |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 234 | switch (hw & IIC_IRQ_TYPE_MASK) { |
| 235 | case IIC_IRQ_TYPE_IPI: |
Thomas Gleixner | ec775d0 | 2011-03-25 16:45:20 +0100 | [diff] [blame] | 236 | irq_set_chip_and_handler(virq, &iic_chip, handle_percpu_irq); |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 237 | break; |
| 238 | case IIC_IRQ_TYPE_IOEXC: |
Thomas Gleixner | ec775d0 | 2011-03-25 16:45:20 +0100 | [diff] [blame] | 239 | irq_set_chip_and_handler(virq, &iic_ioexc_chip, |
Stephen Rothwell | e122996 | 2011-03-30 10:48:28 +1100 | [diff] [blame] | 240 | handle_edge_eoi_irq); |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 241 | break; |
| 242 | default: |
Thomas Gleixner | ec775d0 | 2011-03-25 16:45:20 +0100 | [diff] [blame] | 243 | irq_set_chip_and_handler(virq, &iic_chip, handle_edge_eoi_irq); |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 244 | } |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 245 | return 0; |
| 246 | } |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 247 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 248 | static int iic_host_xlate(struct irq_host *h, struct device_node *ct, |
Roman Fietze | 40d50cf | 2009-12-08 02:39:50 +0000 | [diff] [blame] | 249 | const u32 *intspec, unsigned int intsize, |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 250 | irq_hw_number_t *out_hwirq, unsigned int *out_flags) |
| 251 | |
| 252 | { |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 253 | unsigned int node, ext, unit, class; |
| 254 | const u32 *val; |
| 255 | |
Stephen Rothwell | 55b61fe | 2007-05-03 17:26:52 +1000 | [diff] [blame] | 256 | if (!of_device_is_compatible(ct, |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 257 | "IBM,CBEA-Internal-Interrupt-Controller")) |
| 258 | return -ENODEV; |
| 259 | if (intsize != 1) |
| 260 | return -ENODEV; |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 261 | val = of_get_property(ct, "#interrupt-cells", NULL); |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 262 | if (val == NULL || *val != 1) |
| 263 | return -ENODEV; |
| 264 | |
| 265 | node = intspec[0] >> 24; |
| 266 | ext = (intspec[0] >> 16) & 0xff; |
| 267 | class = (intspec[0] >> 8) & 0xff; |
| 268 | unit = intspec[0] & 0xff; |
| 269 | |
| 270 | /* Check if node is in supported range */ |
| 271 | if (node > 1) |
| 272 | return -EINVAL; |
| 273 | |
| 274 | /* Build up interrupt number, special case for IO exceptions */ |
| 275 | *out_hwirq = (node << IIC_IRQ_NODE_SHIFT); |
| 276 | if (unit == IIC_UNIT_IIC && class == 1) |
| 277 | *out_hwirq |= IIC_IRQ_TYPE_IOEXC | ext; |
| 278 | else |
| 279 | *out_hwirq |= IIC_IRQ_TYPE_NORMAL | |
| 280 | (class << IIC_IRQ_CLASS_SHIFT) | unit; |
| 281 | |
| 282 | /* Dummy flags, ignored by iic code */ |
| 283 | *out_flags = IRQ_TYPE_EDGE_RISING; |
| 284 | |
| 285 | return 0; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 286 | } |
| 287 | |
| 288 | static struct irq_host_ops iic_host_ops = { |
| 289 | .match = iic_host_match, |
| 290 | .map = iic_host_map, |
| 291 | .xlate = iic_host_xlate, |
| 292 | }; |
| 293 | |
| 294 | 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] | 295 | struct device_node *node) |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 296 | { |
| 297 | /* XXX FIXME: should locate the linux CPU number from the HW cpu |
| 298 | * number properly. We are lucky for now |
| 299 | */ |
Tejun Heo | 6b7487f | 2009-10-29 22:34:14 +0900 | [diff] [blame] | 300 | struct iic *iic = &per_cpu(cpu_iic, hw_cpu); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 301 | |
| 302 | iic->regs = ioremap(addr, sizeof(struct cbe_iic_thread_regs)); |
| 303 | BUG_ON(iic->regs == NULL); |
| 304 | |
| 305 | iic->target_id = ((hw_cpu & 2) << 3) | ((hw_cpu & 1) ? 0xf : 0xe); |
| 306 | iic->eoi_stack[0] = 0xff; |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 307 | iic->node = of_node_get(node); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 308 | out_be64(&iic->regs->prio, 0); |
| 309 | |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 310 | printk(KERN_INFO "IIC for CPU %d target id 0x%x : %s\n", |
| 311 | hw_cpu, iic->target_id, node->full_name); |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 312 | } |
| 313 | |
| 314 | static int __init setup_iic(void) |
| 315 | { |
| 316 | struct device_node *dn; |
| 317 | struct resource r0, r1; |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 318 | unsigned int node, cascade, found = 0; |
Arnd Bergmann | 43b4f40 | 2006-10-04 17:26:24 +0200 | [diff] [blame] | 319 | struct cbe_iic_regs __iomem *node_iic; |
Geoff Levand | 9e6ee34 | 2006-08-09 15:28:13 -0700 | [diff] [blame] | 320 | const u32 *np; |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 321 | |
| 322 | for (dn = NULL; |
| 323 | (dn = of_find_node_by_name(dn,"interrupt-controller")) != NULL;) { |
Stephen Rothwell | 55b61fe | 2007-05-03 17:26:52 +1000 | [diff] [blame] | 324 | if (!of_device_is_compatible(dn, |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 325 | "IBM,CBEA-Internal-Interrupt-Controller")) |
| 326 | continue; |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 327 | np = of_get_property(dn, "ibm,interrupt-server-ranges", NULL); |
Geoff Levand | 9e6ee34 | 2006-08-09 15:28:13 -0700 | [diff] [blame] | 328 | if (np == NULL) { |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 329 | printk(KERN_WARNING "IIC: CPU association not found\n"); |
| 330 | of_node_put(dn); |
| 331 | return -ENODEV; |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 332 | } |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 333 | if (of_address_to_resource(dn, 0, &r0) || |
| 334 | of_address_to_resource(dn, 1, &r1)) { |
| 335 | printk(KERN_WARNING "IIC: Can't resolve addresses\n"); |
| 336 | of_node_put(dn); |
| 337 | return -ENODEV; |
| 338 | } |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 339 | found++; |
| 340 | init_one_iic(np[0], r0.start, dn); |
| 341 | init_one_iic(np[1], r1.start, dn); |
| 342 | |
| 343 | /* Setup cascade for IO exceptions. XXX cleanup tricks to get |
| 344 | * node vs CPU etc... |
| 345 | * Note that we configure the IIC_IRR here with a hard coded |
| 346 | * priority of 1. We might want to improve that later. |
| 347 | */ |
| 348 | node = np[0] >> 1; |
| 349 | node_iic = cbe_get_cpu_iic_regs(np[0]); |
| 350 | cascade = node << IIC_IRQ_NODE_SHIFT; |
| 351 | cascade |= 1 << IIC_IRQ_CLASS_SHIFT; |
| 352 | cascade |= IIC_UNIT_IIC; |
| 353 | cascade = irq_create_mapping(iic_host, cascade); |
| 354 | if (cascade == NO_IRQ) |
| 355 | continue; |
Arnd Bergmann | 43b4f40 | 2006-10-04 17:26:24 +0200 | [diff] [blame] | 356 | /* |
| 357 | * irq_data is a generic pointer that gets passed back |
| 358 | * to us later, so the forced cast is fine. |
| 359 | */ |
Thomas Gleixner | ec775d0 | 2011-03-25 16:45:20 +0100 | [diff] [blame] | 360 | irq_set_handler_data(cascade, (void __force *)node_iic); |
| 361 | irq_set_chained_handler(cascade, iic_ioexc_cascade); |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 362 | out_be64(&node_iic->iic_ir, |
| 363 | (1 << 12) /* priority */ | |
| 364 | (node << 4) /* dest node */ | |
| 365 | IIC_UNIT_THREAD_0 /* route them to thread 0 */); |
| 366 | /* Flush pending (make sure it triggers if there is |
| 367 | * anything pending |
| 368 | */ |
| 369 | out_be64(&node_iic->iic_is, 0xfffffffffffffffful); |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 370 | } |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 371 | |
| 372 | if (found) |
| 373 | return 0; |
| 374 | else |
| 375 | return -ENODEV; |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 376 | } |
| 377 | |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 378 | void __init iic_init_IRQ(void) |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 379 | { |
Benjamin Herrenschmidt | 2e19458 | 2006-09-29 15:00:29 +1000 | [diff] [blame] | 380 | /* Setup an irq host data structure */ |
Michael Ellerman | 52964f8 | 2007-08-28 18:47:54 +1000 | [diff] [blame] | 381 | 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] | 382 | &iic_host_ops, IIC_IRQ_INVALID); |
| 383 | BUG_ON(iic_host == NULL); |
| 384 | irq_set_default_host(iic_host); |
| 385 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 386 | /* Discover and initialize iics */ |
Jens Osterkamp | d0e57c6 | 2006-03-23 00:00:06 +0100 | [diff] [blame] | 387 | if (setup_iic() < 0) |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 388 | panic("IIC: Failed to initialize !\n"); |
Jens Osterkamp | d0e57c6 | 2006-03-23 00:00:06 +0100 | [diff] [blame] | 389 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 390 | /* Set master interrupt handling function */ |
| 391 | ppc_md.get_irq = iic_get_irq; |
Benjamin Herrenschmidt | b9e5b4e | 2006-07-03 19:32:51 +1000 | [diff] [blame] | 392 | |
Benjamin Herrenschmidt | 0ebfff1 | 2006-07-03 21:36:01 +1000 | [diff] [blame] | 393 | /* Enable on current CPU */ |
| 394 | iic_setup_cpu(); |
Arnd Bergmann | cebf589 | 2005-06-23 09:43:43 +1000 | [diff] [blame] | 395 | } |
Kevin Corry | 0443bbd | 2006-11-20 18:45:15 +0100 | [diff] [blame] | 396 | |
| 397 | void iic_set_interrupt_routing(int cpu, int thread, int priority) |
| 398 | { |
| 399 | struct cbe_iic_regs __iomem *iic_regs = cbe_get_cpu_iic_regs(cpu); |
| 400 | u64 iic_ir = 0; |
| 401 | int node = cpu >> 1; |
| 402 | |
| 403 | /* Set which node and thread will handle the next interrupt */ |
| 404 | iic_ir |= CBE_IIC_IR_PRIO(priority) | |
| 405 | CBE_IIC_IR_DEST_NODE(node); |
| 406 | if (thread == 0) |
| 407 | iic_ir |= CBE_IIC_IR_DEST_UNIT(CBE_IIC_IR_PT_0); |
| 408 | else |
| 409 | iic_ir |= CBE_IIC_IR_DEST_UNIT(CBE_IIC_IR_PT_1); |
| 410 | out_be64(&iic_regs->iic_ir, iic_ir); |
| 411 | } |