Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2003-2011 NetLogic Microsystems, Inc. (NetLogic). All rights |
| 3 | * reserved. |
| 4 | * |
| 5 | * This software is available to you under a choice of one of two |
| 6 | * licenses. You may choose to be licensed under the terms of the GNU |
| 7 | * General Public License (GPL) Version 2, available from the file |
| 8 | * COPYING in the main directory of this source tree, or the NetLogic |
| 9 | * license below: |
| 10 | * |
| 11 | * Redistribution and use in source and binary forms, with or without |
| 12 | * modification, are permitted provided that the following conditions |
| 13 | * are met: |
| 14 | * |
| 15 | * 1. Redistributions of source code must retain the above copyright |
| 16 | * notice, this list of conditions and the following disclaimer. |
| 17 | * 2. Redistributions in binary form must reproduce the above copyright |
| 18 | * notice, this list of conditions and the following disclaimer in |
| 19 | * the documentation and/or other materials provided with the |
| 20 | * distribution. |
| 21 | * |
| 22 | * THIS SOFTWARE IS PROVIDED BY NETLOGIC ``AS IS'' AND ANY EXPRESS OR |
| 23 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 24 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 25 | * ARE DISCLAIMED. IN NO EVENT SHALL NETLOGIC OR CONTRIBUTORS BE LIABLE |
| 26 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 27 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 28 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
| 29 | * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 30 | * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE |
| 31 | * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN |
| 32 | * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 33 | */ |
| 34 | |
| 35 | #include <linux/kernel.h> |
| 36 | #include <linux/init.h> |
| 37 | #include <linux/linkage.h> |
| 38 | #include <linux/interrupt.h> |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 39 | #include <linux/mm.h> |
| 40 | #include <linux/slab.h> |
| 41 | #include <linux/irq.h> |
| 42 | |
| 43 | #include <asm/errno.h> |
| 44 | #include <asm/signal.h> |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 45 | #include <asm/ptrace.h> |
| 46 | #include <asm/mipsregs.h> |
| 47 | #include <asm/thread_info.h> |
| 48 | |
| 49 | #include <asm/netlogic/mips-extns.h> |
| 50 | #include <asm/netlogic/interrupt.h> |
| 51 | #include <asm/netlogic/haldefs.h> |
| 52 | #include <asm/netlogic/common.h> |
| 53 | |
Jayachandran C | 65040e2 | 2011-11-16 00:21:28 +0000 | [diff] [blame] | 54 | #if defined(CONFIG_CPU_XLP) |
| 55 | #include <asm/netlogic/xlp-hal/iomap.h> |
| 56 | #include <asm/netlogic/xlp-hal/xlp.h> |
| 57 | #include <asm/netlogic/xlp-hal/pic.h> |
| 58 | #elif defined(CONFIG_CPU_XLR) |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 59 | #include <asm/netlogic/xlr/iomap.h> |
| 60 | #include <asm/netlogic/xlr/pic.h> |
Ganesan Ramalingam | ed21cfe | 2012-10-31 12:01:42 +0000 | [diff] [blame] | 61 | #include <asm/netlogic/xlr/fmn.h> |
Jayachandran C | 65040e2 | 2011-11-16 00:21:28 +0000 | [diff] [blame] | 62 | #else |
| 63 | #error "Unknown CPU" |
| 64 | #endif |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 65 | |
Jayachandran C | 3854174 | 2012-10-31 12:01:41 +0000 | [diff] [blame] | 66 | #ifdef CONFIG_SMP |
| 67 | #define SMP_IRQ_MASK ((1ULL << IRQ_IPI_SMP_FUNCTION) | \ |
| 68 | (1ULL << IRQ_IPI_SMP_RESCHEDULE)) |
| 69 | #else |
| 70 | #define SMP_IRQ_MASK 0 |
| 71 | #endif |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 72 | #define PERCPU_IRQ_MASK (SMP_IRQ_MASK | (1ull << IRQ_TIMER) | \ |
Ganesan Ramalingam | ed21cfe | 2012-10-31 12:01:42 +0000 | [diff] [blame] | 73 | (1ull << IRQ_FMN)) |
Jayachandran C | 3854174 | 2012-10-31 12:01:41 +0000 | [diff] [blame] | 74 | |
| 75 | struct nlm_pic_irq { |
| 76 | void (*extra_ack)(struct irq_data *); |
| 77 | struct nlm_soc_info *node; |
| 78 | int picirq; |
| 79 | int irt; |
| 80 | int flags; |
| 81 | }; |
| 82 | |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 83 | static void xlp_pic_enable(struct irq_data *d) |
| 84 | { |
| 85 | unsigned long flags; |
Jayachandran C | 3854174 | 2012-10-31 12:01:41 +0000 | [diff] [blame] | 86 | struct nlm_pic_irq *pd = irq_data_get_irq_handler_data(d); |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 87 | |
Jayachandran C | 3854174 | 2012-10-31 12:01:41 +0000 | [diff] [blame] | 88 | BUG_ON(!pd); |
| 89 | spin_lock_irqsave(&pd->node->piclock, flags); |
| 90 | nlm_pic_enable_irt(pd->node->picbase, pd->irt); |
| 91 | spin_unlock_irqrestore(&pd->node->piclock, flags); |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | static void xlp_pic_disable(struct irq_data *d) |
| 95 | { |
Jayachandran C | 3854174 | 2012-10-31 12:01:41 +0000 | [diff] [blame] | 96 | struct nlm_pic_irq *pd = irq_data_get_irq_handler_data(d); |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 97 | unsigned long flags; |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 98 | |
Jayachandran C | 3854174 | 2012-10-31 12:01:41 +0000 | [diff] [blame] | 99 | BUG_ON(!pd); |
| 100 | spin_lock_irqsave(&pd->node->piclock, flags); |
| 101 | nlm_pic_disable_irt(pd->node->picbase, pd->irt); |
| 102 | spin_unlock_irqrestore(&pd->node->piclock, flags); |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | static void xlp_pic_mask_ack(struct irq_data *d) |
| 106 | { |
Jayachandran C | 3854174 | 2012-10-31 12:01:41 +0000 | [diff] [blame] | 107 | struct nlm_pic_irq *pd = irq_data_get_irq_handler_data(d); |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 108 | |
Jayachandran C | 220d912 | 2013-01-14 15:11:54 +0000 | [diff] [blame] | 109 | clear_c0_eimr(pd->picirq); |
| 110 | ack_c0_eirr(pd->picirq); |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 111 | } |
| 112 | |
| 113 | static void xlp_pic_unmask(struct irq_data *d) |
| 114 | { |
Jayachandran C | 3854174 | 2012-10-31 12:01:41 +0000 | [diff] [blame] | 115 | struct nlm_pic_irq *pd = irq_data_get_irq_handler_data(d); |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 116 | |
Jayachandran C | 220d912 | 2013-01-14 15:11:54 +0000 | [diff] [blame] | 117 | BUG_ON(!pd); |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 118 | |
Jayachandran C | 3854174 | 2012-10-31 12:01:41 +0000 | [diff] [blame] | 119 | if (pd->extra_ack) |
| 120 | pd->extra_ack(d); |
| 121 | |
Jayachandran C | 220d912 | 2013-01-14 15:11:54 +0000 | [diff] [blame] | 122 | /* re-enable the intr on this cpu */ |
| 123 | set_c0_eimr(pd->picirq); |
| 124 | |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 125 | /* Ack is a single write, no need to lock */ |
Jayachandran C | 3854174 | 2012-10-31 12:01:41 +0000 | [diff] [blame] | 126 | nlm_pic_ack(pd->node->picbase, pd->irt); |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 127 | } |
| 128 | |
| 129 | static struct irq_chip xlp_pic = { |
| 130 | .name = "XLP-PIC", |
| 131 | .irq_enable = xlp_pic_enable, |
| 132 | .irq_disable = xlp_pic_disable, |
| 133 | .irq_mask_ack = xlp_pic_mask_ack, |
| 134 | .irq_unmask = xlp_pic_unmask, |
| 135 | }; |
| 136 | |
| 137 | static void cpuintr_disable(struct irq_data *d) |
| 138 | { |
Jayachandran C | 220d912 | 2013-01-14 15:11:54 +0000 | [diff] [blame] | 139 | clear_c0_eimr(d->irq); |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 140 | } |
| 141 | |
| 142 | static void cpuintr_enable(struct irq_data *d) |
| 143 | { |
Jayachandran C | 220d912 | 2013-01-14 15:11:54 +0000 | [diff] [blame] | 144 | set_c0_eimr(d->irq); |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | static void cpuintr_ack(struct irq_data *d) |
| 148 | { |
Jayachandran C | 220d912 | 2013-01-14 15:11:54 +0000 | [diff] [blame] | 149 | ack_c0_eirr(d->irq); |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | /* |
| 153 | * Chip definition for CPU originated interrupts(timer, msg) and |
| 154 | * IPIs |
| 155 | */ |
| 156 | struct irq_chip nlm_cpu_intr = { |
| 157 | .name = "XLP-CPU-INTR", |
| 158 | .irq_enable = cpuintr_enable, |
| 159 | .irq_disable = cpuintr_disable, |
Jayachandran C | 220d912 | 2013-01-14 15:11:54 +0000 | [diff] [blame] | 160 | .irq_mask = cpuintr_disable, |
| 161 | .irq_ack = cpuintr_ack, |
| 162 | .irq_eoi = cpuintr_enable, |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 163 | }; |
| 164 | |
Jayachandran C | 3854174 | 2012-10-31 12:01:41 +0000 | [diff] [blame] | 165 | static void __init nlm_init_percpu_irqs(void) |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 166 | { |
Jayachandran C | 3854174 | 2012-10-31 12:01:41 +0000 | [diff] [blame] | 167 | int i; |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 168 | |
| 169 | for (i = 0; i < PIC_IRT_FIRST_IRQ; i++) |
| 170 | irq_set_chip_and_handler(i, &nlm_cpu_intr, handle_percpu_irq); |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 171 | #ifdef CONFIG_SMP |
| 172 | irq_set_chip_and_handler(IRQ_IPI_SMP_FUNCTION, &nlm_cpu_intr, |
| 173 | nlm_smp_function_ipi_handler); |
| 174 | irq_set_chip_and_handler(IRQ_IPI_SMP_RESCHEDULE, &nlm_cpu_intr, |
| 175 | nlm_smp_resched_ipi_handler); |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 176 | #endif |
Jayachandran C | 3854174 | 2012-10-31 12:01:41 +0000 | [diff] [blame] | 177 | } |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 178 | |
Jayachandran C | 3854174 | 2012-10-31 12:01:41 +0000 | [diff] [blame] | 179 | void nlm_setup_pic_irq(int node, int picirq, int irq, int irt) |
| 180 | { |
| 181 | struct nlm_pic_irq *pic_data; |
| 182 | int xirq; |
| 183 | |
| 184 | xirq = nlm_irq_to_xirq(node, irq); |
| 185 | pic_data = kzalloc(sizeof(*pic_data), GFP_KERNEL); |
| 186 | BUG_ON(pic_data == NULL); |
| 187 | pic_data->irt = irt; |
| 188 | pic_data->picirq = picirq; |
| 189 | pic_data->node = nlm_get_node(node); |
| 190 | irq_set_chip_and_handler(xirq, &xlp_pic, handle_level_irq); |
| 191 | irq_set_handler_data(xirq, pic_data); |
| 192 | } |
| 193 | |
| 194 | void nlm_set_pic_extra_ack(int node, int irq, void (*xack)(struct irq_data *)) |
| 195 | { |
| 196 | struct nlm_pic_irq *pic_data; |
| 197 | int xirq; |
| 198 | |
| 199 | xirq = nlm_irq_to_xirq(node, irq); |
| 200 | pic_data = irq_get_handler_data(xirq); |
| 201 | pic_data->extra_ack = xack; |
| 202 | } |
| 203 | |
| 204 | static void nlm_init_node_irqs(int node) |
| 205 | { |
| 206 | int i, irt; |
| 207 | uint64_t irqmask; |
| 208 | struct nlm_soc_info *nodep; |
| 209 | |
| 210 | pr_info("Init IRQ for node %d\n", node); |
| 211 | nodep = nlm_get_node(node); |
| 212 | irqmask = PERCPU_IRQ_MASK; |
| 213 | for (i = PIC_IRT_FIRST_IRQ; i <= PIC_IRT_LAST_IRQ; i++) { |
| 214 | irt = nlm_irq_to_irt(i); |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 215 | if (irt == -1) |
| 216 | continue; |
Jayachandran C | 3854174 | 2012-10-31 12:01:41 +0000 | [diff] [blame] | 217 | nlm_setup_pic_irq(node, i, i, irt); |
| 218 | /* set interrupts to first cpu in node */ |
| 219 | nlm_pic_init_irt(nodep->picbase, irt, i, |
Jayachandran C | 4e45e54 | 2013-01-14 15:11:57 +0000 | [diff] [blame] | 220 | node * NLM_CPUS_PER_NODE, 0); |
Jayachandran C | 3854174 | 2012-10-31 12:01:41 +0000 | [diff] [blame] | 221 | irqmask |= (1ull << i); |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 222 | } |
Jayachandran C | 77ae798 | 2012-10-31 12:01:39 +0000 | [diff] [blame] | 223 | nodep->irqmask = irqmask; |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | void __init arch_init_irq(void) |
| 227 | { |
| 228 | /* Initialize the irq descriptors */ |
Jayachandran C | 3854174 | 2012-10-31 12:01:41 +0000 | [diff] [blame] | 229 | nlm_init_percpu_irqs(); |
| 230 | nlm_init_node_irqs(0); |
Jayachandran C | 77ae798 | 2012-10-31 12:01:39 +0000 | [diff] [blame] | 231 | write_c0_eimr(nlm_current_node()->irqmask); |
Ganesan Ramalingam | ed21cfe | 2012-10-31 12:01:42 +0000 | [diff] [blame] | 232 | #if defined(CONFIG_CPU_XLR) |
| 233 | nlm_setup_fmn_irq(); |
| 234 | #endif |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 235 | } |
| 236 | |
Jayachandran C | 3854174 | 2012-10-31 12:01:41 +0000 | [diff] [blame] | 237 | void nlm_smp_irq_init(int hwcpuid) |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 238 | { |
Jayachandran C | 3854174 | 2012-10-31 12:01:41 +0000 | [diff] [blame] | 239 | int node, cpu; |
| 240 | |
| 241 | node = hwcpuid / NLM_CPUS_PER_NODE; |
| 242 | cpu = hwcpuid % NLM_CPUS_PER_NODE; |
| 243 | |
| 244 | if (cpu == 0 && node != 0) |
| 245 | nlm_init_node_irqs(node); |
Jayachandran C | 77ae798 | 2012-10-31 12:01:39 +0000 | [diff] [blame] | 246 | write_c0_eimr(nlm_current_node()->irqmask); |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 247 | } |
| 248 | |
| 249 | asmlinkage void plat_irq_dispatch(void) |
| 250 | { |
| 251 | uint64_t eirr; |
Jayachandran C | 77ae798 | 2012-10-31 12:01:39 +0000 | [diff] [blame] | 252 | int i, node; |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 253 | |
Jayachandran C | 77ae798 | 2012-10-31 12:01:39 +0000 | [diff] [blame] | 254 | node = nlm_nodeid(); |
Jayachandran C | 220d912 | 2013-01-14 15:11:54 +0000 | [diff] [blame] | 255 | eirr = read_c0_eirr_and_eimr(); |
Jayachandran C | 8ecd083 | 2013-06-10 06:41:10 +0000 | [diff] [blame^] | 256 | if (eirr == 0) |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 257 | return; |
| 258 | |
Jayachandran C | 8ecd083 | 2013-06-10 06:41:10 +0000 | [diff] [blame^] | 259 | i = __ffs64(eirr); |
Jayachandran C | 3854174 | 2012-10-31 12:01:41 +0000 | [diff] [blame] | 260 | /* per-CPU IRQs don't need translation */ |
Jayachandran C | 8ecd083 | 2013-06-10 06:41:10 +0000 | [diff] [blame^] | 261 | if (i < PIC_IRQ_BASE) { |
Jayachandran C | 3854174 | 2012-10-31 12:01:41 +0000 | [diff] [blame] | 262 | do_IRQ(i); |
| 263 | return; |
| 264 | } |
| 265 | |
| 266 | /* top level irq handling */ |
Jayachandran C | 77ae798 | 2012-10-31 12:01:39 +0000 | [diff] [blame] | 267 | do_IRQ(nlm_irq_to_xirq(node, i)); |
Jayachandran C | 0c96540 | 2011-11-11 17:08:29 +0530 | [diff] [blame] | 268 | } |