blob: b89d5a6b62cc2a2bfd1219ee95c1c68edb88467b [file] [log] [blame]
Jayachandran C0c965402011-11-11 17:08:29 +05301/*
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 C0c965402011-11-11 17:08:29 +053039#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 C0c965402011-11-11 17:08:29 +053045#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 C65040e22011-11-16 00:21:28 +000054#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 C0c965402011-11-11 17:08:29 +053059#include <asm/netlogic/xlr/iomap.h>
60#include <asm/netlogic/xlr/pic.h>
Jayachandran C65040e22011-11-16 00:21:28 +000061#else
62#error "Unknown CPU"
63#endif
Jayachandran C0c965402011-11-11 17:08:29 +053064
Jayachandran C38541742012-10-31 12:01:41 +000065#ifdef CONFIG_SMP
66#define SMP_IRQ_MASK ((1ULL << IRQ_IPI_SMP_FUNCTION) | \
67 (1ULL << IRQ_IPI_SMP_RESCHEDULE))
68#else
69#define SMP_IRQ_MASK 0
70#endif
71#define PERCPU_IRQ_MASK (SMP_IRQ_MASK | (1ull << IRQ_TIMER))
72
73
74struct nlm_pic_irq {
75 void (*extra_ack)(struct irq_data *);
76 struct nlm_soc_info *node;
77 int picirq;
78 int irt;
79 int flags;
80};
81
Jayachandran C0c965402011-11-11 17:08:29 +053082static void xlp_pic_enable(struct irq_data *d)
83{
84 unsigned long flags;
Jayachandran C38541742012-10-31 12:01:41 +000085 struct nlm_pic_irq *pd = irq_data_get_irq_handler_data(d);
Jayachandran C0c965402011-11-11 17:08:29 +053086
Jayachandran C38541742012-10-31 12:01:41 +000087 BUG_ON(!pd);
88 spin_lock_irqsave(&pd->node->piclock, flags);
89 nlm_pic_enable_irt(pd->node->picbase, pd->irt);
90 spin_unlock_irqrestore(&pd->node->piclock, flags);
Jayachandran C0c965402011-11-11 17:08:29 +053091}
92
93static void xlp_pic_disable(struct irq_data *d)
94{
Jayachandran C38541742012-10-31 12:01:41 +000095 struct nlm_pic_irq *pd = irq_data_get_irq_handler_data(d);
Jayachandran C0c965402011-11-11 17:08:29 +053096 unsigned long flags;
Jayachandran C0c965402011-11-11 17:08:29 +053097
Jayachandran C38541742012-10-31 12:01:41 +000098 BUG_ON(!pd);
99 spin_lock_irqsave(&pd->node->piclock, flags);
100 nlm_pic_disable_irt(pd->node->picbase, pd->irt);
101 spin_unlock_irqrestore(&pd->node->piclock, flags);
Jayachandran C0c965402011-11-11 17:08:29 +0530102}
103
104static void xlp_pic_mask_ack(struct irq_data *d)
105{
Jayachandran C38541742012-10-31 12:01:41 +0000106 struct nlm_pic_irq *pd = irq_data_get_irq_handler_data(d);
107 uint64_t mask = 1ull << pd->picirq;
Jayachandran C0c965402011-11-11 17:08:29 +0530108
109 write_c0_eirr(mask); /* ack by writing EIRR */
110}
111
112static void xlp_pic_unmask(struct irq_data *d)
113{
Jayachandran C38541742012-10-31 12:01:41 +0000114 struct nlm_pic_irq *pd = irq_data_get_irq_handler_data(d);
Jayachandran C0c965402011-11-11 17:08:29 +0530115
Jayachandran C38541742012-10-31 12:01:41 +0000116 if (!pd)
Jayachandran C0c965402011-11-11 17:08:29 +0530117 return;
118
Jayachandran C38541742012-10-31 12:01:41 +0000119 if (pd->extra_ack)
120 pd->extra_ack(d);
121
Jayachandran C0c965402011-11-11 17:08:29 +0530122 /* Ack is a single write, no need to lock */
Jayachandran C38541742012-10-31 12:01:41 +0000123 nlm_pic_ack(pd->node->picbase, pd->irt);
Jayachandran C0c965402011-11-11 17:08:29 +0530124}
125
126static struct irq_chip xlp_pic = {
127 .name = "XLP-PIC",
128 .irq_enable = xlp_pic_enable,
129 .irq_disable = xlp_pic_disable,
130 .irq_mask_ack = xlp_pic_mask_ack,
131 .irq_unmask = xlp_pic_unmask,
132};
133
134static void cpuintr_disable(struct irq_data *d)
135{
136 uint64_t eimr;
137 uint64_t mask = 1ull << d->irq;
138
139 eimr = read_c0_eimr();
140 write_c0_eimr(eimr & ~mask);
141}
142
143static void cpuintr_enable(struct irq_data *d)
144{
145 uint64_t eimr;
146 uint64_t mask = 1ull << d->irq;
147
148 eimr = read_c0_eimr();
149 write_c0_eimr(eimr | mask);
150}
151
152static void cpuintr_ack(struct irq_data *d)
153{
154 uint64_t mask = 1ull << d->irq;
155
156 write_c0_eirr(mask);
157}
158
159static void cpuintr_nop(struct irq_data *d)
160{
161 WARN(d->irq >= PIC_IRQ_BASE, "Bad irq %d", d->irq);
162}
163
164/*
165 * Chip definition for CPU originated interrupts(timer, msg) and
166 * IPIs
167 */
168struct irq_chip nlm_cpu_intr = {
169 .name = "XLP-CPU-INTR",
170 .irq_enable = cpuintr_enable,
171 .irq_disable = cpuintr_disable,
172 .irq_mask = cpuintr_nop,
173 .irq_ack = cpuintr_nop,
174 .irq_eoi = cpuintr_ack,
175};
176
Jayachandran C38541742012-10-31 12:01:41 +0000177static void __init nlm_init_percpu_irqs(void)
Jayachandran C0c965402011-11-11 17:08:29 +0530178{
Jayachandran C38541742012-10-31 12:01:41 +0000179 int i;
Jayachandran C0c965402011-11-11 17:08:29 +0530180
181 for (i = 0; i < PIC_IRT_FIRST_IRQ; i++)
182 irq_set_chip_and_handler(i, &nlm_cpu_intr, handle_percpu_irq);
Jayachandran C0c965402011-11-11 17:08:29 +0530183#ifdef CONFIG_SMP
184 irq_set_chip_and_handler(IRQ_IPI_SMP_FUNCTION, &nlm_cpu_intr,
185 nlm_smp_function_ipi_handler);
186 irq_set_chip_and_handler(IRQ_IPI_SMP_RESCHEDULE, &nlm_cpu_intr,
187 nlm_smp_resched_ipi_handler);
Jayachandran C0c965402011-11-11 17:08:29 +0530188#endif
Jayachandran C38541742012-10-31 12:01:41 +0000189}
Jayachandran C0c965402011-11-11 17:08:29 +0530190
Jayachandran C38541742012-10-31 12:01:41 +0000191void nlm_setup_pic_irq(int node, int picirq, int irq, int irt)
192{
193 struct nlm_pic_irq *pic_data;
194 int xirq;
195
196 xirq = nlm_irq_to_xirq(node, irq);
197 pic_data = kzalloc(sizeof(*pic_data), GFP_KERNEL);
198 BUG_ON(pic_data == NULL);
199 pic_data->irt = irt;
200 pic_data->picirq = picirq;
201 pic_data->node = nlm_get_node(node);
202 irq_set_chip_and_handler(xirq, &xlp_pic, handle_level_irq);
203 irq_set_handler_data(xirq, pic_data);
204}
205
206void nlm_set_pic_extra_ack(int node, int irq, void (*xack)(struct irq_data *))
207{
208 struct nlm_pic_irq *pic_data;
209 int xirq;
210
211 xirq = nlm_irq_to_xirq(node, irq);
212 pic_data = irq_get_handler_data(xirq);
213 pic_data->extra_ack = xack;
214}
215
216static void nlm_init_node_irqs(int node)
217{
218 int i, irt;
219 uint64_t irqmask;
220 struct nlm_soc_info *nodep;
221
222 pr_info("Init IRQ for node %d\n", node);
223 nodep = nlm_get_node(node);
224 irqmask = PERCPU_IRQ_MASK;
225 for (i = PIC_IRT_FIRST_IRQ; i <= PIC_IRT_LAST_IRQ; i++) {
226 irt = nlm_irq_to_irt(i);
Jayachandran C0c965402011-11-11 17:08:29 +0530227 if (irt == -1)
228 continue;
Jayachandran C38541742012-10-31 12:01:41 +0000229 nlm_setup_pic_irq(node, i, i, irt);
230 /* set interrupts to first cpu in node */
231 nlm_pic_init_irt(nodep->picbase, irt, i,
232 node * NLM_CPUS_PER_NODE);
233 irqmask |= (1ull << i);
Jayachandran C0c965402011-11-11 17:08:29 +0530234 }
Jayachandran C77ae7982012-10-31 12:01:39 +0000235 nodep->irqmask = irqmask;
Jayachandran C0c965402011-11-11 17:08:29 +0530236}
237
238void __init arch_init_irq(void)
239{
240 /* Initialize the irq descriptors */
Jayachandran C38541742012-10-31 12:01:41 +0000241 nlm_init_percpu_irqs();
242 nlm_init_node_irqs(0);
Jayachandran C77ae7982012-10-31 12:01:39 +0000243 write_c0_eimr(nlm_current_node()->irqmask);
Jayachandran C0c965402011-11-11 17:08:29 +0530244}
245
Jayachandran C38541742012-10-31 12:01:41 +0000246void nlm_smp_irq_init(int hwcpuid)
Jayachandran C0c965402011-11-11 17:08:29 +0530247{
Jayachandran C38541742012-10-31 12:01:41 +0000248 int node, cpu;
249
250 node = hwcpuid / NLM_CPUS_PER_NODE;
251 cpu = hwcpuid % NLM_CPUS_PER_NODE;
252
253 if (cpu == 0 && node != 0)
254 nlm_init_node_irqs(node);
Jayachandran C77ae7982012-10-31 12:01:39 +0000255 write_c0_eimr(nlm_current_node()->irqmask);
Jayachandran C0c965402011-11-11 17:08:29 +0530256}
257
258asmlinkage void plat_irq_dispatch(void)
259{
260 uint64_t eirr;
Jayachandran C77ae7982012-10-31 12:01:39 +0000261 int i, node;
Jayachandran C0c965402011-11-11 17:08:29 +0530262
Jayachandran C77ae7982012-10-31 12:01:39 +0000263 node = nlm_nodeid();
Jayachandran C0c965402011-11-11 17:08:29 +0530264 eirr = read_c0_eirr() & read_c0_eimr();
Jayachandran C38541742012-10-31 12:01:41 +0000265
Jayachandran C0c965402011-11-11 17:08:29 +0530266 i = __ilog2_u64(eirr);
267 if (i == -1)
268 return;
269
Jayachandran C38541742012-10-31 12:01:41 +0000270 /* per-CPU IRQs don't need translation */
271 if (eirr & PERCPU_IRQ_MASK) {
272 do_IRQ(i);
273 return;
274 }
275
276 /* top level irq handling */
Jayachandran C77ae7982012-10-31 12:01:39 +0000277 do_IRQ(nlm_irq_to_xirq(node, i));
Jayachandran C0c965402011-11-11 17:08:29 +0530278}