blob: fd269ea8d8a85cbe71ca3b1e0c31e40ecf80f2d3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2000, 2001, 2002, 2003 Broadcom Corporation
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/kernel.h>
19#include <linux/init.h>
20#include <linux/linkage.h>
21#include <linux/interrupt.h>
22#include <linux/spinlock.h>
23#include <linux/smp.h>
24#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/kernel_stat.h>
26
27#include <asm/errno.h>
28#include <asm/signal.h>
29#include <asm/system.h>
Ralf Baechle7bcf7712007-10-11 23:46:09 +010030#include <asm/time.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/io.h>
32
33#include <asm/sibyte/sb1250_regs.h>
34#include <asm/sibyte/sb1250_int.h>
35#include <asm/sibyte/sb1250_uart.h>
36#include <asm/sibyte/sb1250_scd.h>
37#include <asm/sibyte/sb1250.h>
38
39/*
40 * These are the routines that handle all the low level interrupt stuff.
41 * Actions handled here are: initialization of the interrupt map, requesting of
42 * interrupt lines by handlers, dispatching if interrupts to handlers, probing
43 * for interrupt lines
44 */
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#ifdef CONFIG_SIBYTE_HAS_LDT
47extern unsigned long ldt_eoi_space;
48#endif
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/* Store the CPU id (not the logical number) */
51int sb1250_irq_owner[SB1250_NR_IRQS];
52
Ralf Baechle5772f6de2010-02-27 12:53:32 +010053static DEFINE_RAW_SPINLOCK(sb1250_imr_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55void sb1250_mask_irq(int cpu, int irq)
56{
57 unsigned long flags;
58 u64 cur_ints;
59
Ralf Baechle5772f6de2010-02-27 12:53:32 +010060 raw_spin_lock_irqsave(&sb1250_imr_lock, flags);
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +000061 cur_ints = ____raw_readq(IOADDR(A_IMR_MAPPER(cpu) +
62 R_IMR_INTERRUPT_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 cur_ints |= (((u64) 1) << irq);
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +000064 ____raw_writeq(cur_ints, IOADDR(A_IMR_MAPPER(cpu) +
65 R_IMR_INTERRUPT_MASK));
Ralf Baechle5772f6de2010-02-27 12:53:32 +010066 raw_spin_unlock_irqrestore(&sb1250_imr_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067}
68
69void sb1250_unmask_irq(int cpu, int irq)
70{
71 unsigned long flags;
72 u64 cur_ints;
73
Ralf Baechle5772f6de2010-02-27 12:53:32 +010074 raw_spin_lock_irqsave(&sb1250_imr_lock, flags);
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +000075 cur_ints = ____raw_readq(IOADDR(A_IMR_MAPPER(cpu) +
76 R_IMR_INTERRUPT_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 cur_ints &= ~(((u64) 1) << irq);
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +000078 ____raw_writeq(cur_ints, IOADDR(A_IMR_MAPPER(cpu) +
79 R_IMR_INTERRUPT_MASK));
Ralf Baechle5772f6de2010-02-27 12:53:32 +010080 raw_spin_unlock_irqrestore(&sb1250_imr_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081}
82
83#ifdef CONFIG_SMP
Thomas Gleixnerd6d5d5c42011-03-23 21:09:14 +000084static int sb1250_set_affinity(struct irq_data *d, const struct cpumask *mask,
85 bool force)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
87 int i = 0, old_cpu, cpu, int_on;
Thomas Gleixnerd6d5d5c42011-03-23 21:09:14 +000088 unsigned int irq = d->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 u64 cur_ints;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 unsigned long flags;
91
Rusty Russell0de26522008-12-13 21:20:26 +103092 i = cpumask_first(mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 /* Convert logical CPU to physical CPU */
95 cpu = cpu_logical_map(i);
96
97 /* Protect against other affinity changers and IMR manipulation */
Ralf Baechle5772f6de2010-02-27 12:53:32 +010098 raw_spin_lock_irqsave(&sb1250_imr_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 /* Swizzle each CPU's IMR (but leave the IP selection alone) */
101 old_cpu = sb1250_irq_owner[irq];
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +0000102 cur_ints = ____raw_readq(IOADDR(A_IMR_MAPPER(old_cpu) +
103 R_IMR_INTERRUPT_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 int_on = !(cur_ints & (((u64) 1) << irq));
105 if (int_on) {
106 /* If it was on, mask it */
107 cur_ints |= (((u64) 1) << irq);
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +0000108 ____raw_writeq(cur_ints, IOADDR(A_IMR_MAPPER(old_cpu) +
109 R_IMR_INTERRUPT_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
111 sb1250_irq_owner[irq] = cpu;
112 if (int_on) {
113 /* unmask for the new CPU */
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +0000114 cur_ints = ____raw_readq(IOADDR(A_IMR_MAPPER(cpu) +
115 R_IMR_INTERRUPT_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 cur_ints &= ~(((u64) 1) << irq);
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +0000117 ____raw_writeq(cur_ints, IOADDR(A_IMR_MAPPER(cpu) +
118 R_IMR_INTERRUPT_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
Ralf Baechle5772f6de2010-02-27 12:53:32 +0100120 raw_spin_unlock_irqrestore(&sb1250_imr_lock, flags);
Yinghai Lud5dedd42009-04-27 17:59:21 -0700121
122 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123}
124#endif
125
Thomas Gleixnerd6d5d5c42011-03-23 21:09:14 +0000126static void enable_sb1250_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
Thomas Gleixnerd6d5d5c42011-03-23 21:09:14 +0000128 unsigned int irq = d->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 sb1250_unmask_irq(sb1250_irq_owner[irq], irq);
131}
132
133
Thomas Gleixnerd6d5d5c42011-03-23 21:09:14 +0000134static void ack_sb1250_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Thomas Gleixnerd6d5d5c42011-03-23 21:09:14 +0000136 unsigned int irq = d->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#ifdef CONFIG_SIBYTE_HAS_LDT
138 u64 pending;
139
140 /*
141 * If the interrupt was an HT interrupt, now is the time to
142 * clear it. NOTE: we assume the HT bridge was set up to
143 * deliver the interrupts to all CPUs (which makes affinity
144 * changing easier for us)
145 */
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +0000146 pending = __raw_readq(IOADDR(A_IMR_REGISTER(sb1250_irq_owner[irq],
147 R_IMR_LDT_INTERRUPT)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 pending &= ((u64)1 << (irq));
149 if (pending) {
150 int i;
151 for (i=0; i<NR_CPUS; i++) {
152 int cpu;
153#ifdef CONFIG_SMP
154 cpu = cpu_logical_map(i);
155#else
156 cpu = i;
157#endif
158 /*
159 * Clear for all CPUs so an affinity switch
160 * doesn't find an old status
161 */
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +0000162 __raw_writeq(pending,
163 IOADDR(A_IMR_REGISTER(cpu,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 R_IMR_LDT_INTERRUPT_CLR)));
165 }
166
167 /*
168 * Generate EOI. For Pass 1 parts, EOI is a nop. For
169 * Pass 2, the LDT world may be edge-triggered, but
170 * this EOI shouldn't hurt. If they are
171 * level-sensitive, the EOI is required.
172 */
173 *(uint32_t *)(ldt_eoi_space+(irq<<16)+(7<<2)) = 0;
174 }
175#endif
176 sb1250_mask_irq(sb1250_irq_owner[irq], irq);
177}
178
Thomas Gleixnerd6d5d5c42011-03-23 21:09:14 +0000179static struct irq_chip sb1250_irq_type = {
180 .name = "SB1250-IMR",
181 .irq_mask_ack = ack_sb1250_irq,
182 .irq_unmask = enable_sb1250_irq,
183#ifdef CONFIG_SMP
184 .irq_set_affinity = sb1250_set_affinity
185#endif
186};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188void __init init_sb1250_irqs(void)
189{
190 int i;
191
Atsushi Nemoto1603b5a2006-11-02 02:08:36 +0900192 for (i = 0; i < SB1250_NR_IRQS; i++) {
Ralf Baechlec87e0902009-03-30 14:49:44 +0200193 set_irq_chip_and_handler(i, &sb1250_irq_type, handle_level_irq);
Atsushi Nemoto1603b5a2006-11-02 02:08:36 +0900194 sb1250_irq_owner[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
196}
197
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199/*
200 * arch_init_irq is called early in the boot sequence from init/main.c via
201 * init_IRQ. It is responsible for setting up the interrupt mapper and
202 * installing the handler that will be responsible for dispatching interrupts
203 * to the "right" place.
204 */
205/*
206 * For now, map all interrupts to IP[2]. We could save
207 * some cycles by parceling out system interrupts to different
208 * IP lines, but keep it simple for bringup. We'll also direct
209 * all interrupts to a single CPU; we should probably route
210 * PCI and LDT to one cpu and everything else to the other
211 * to balance the load a bit.
212 *
213 * On the second cpu, everything is set to IP5, which is
214 * ignored, EXCEPT the mailbox interrupt. That one is
215 * set to IP[2] so it is handled. This is needed so we
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200216 * can do cross-cpu function calls, as required by SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 */
218
219#define IMR_IP2_VAL K_INT_MAP_I0
220#define IMR_IP3_VAL K_INT_MAP_I1
221#define IMR_IP4_VAL K_INT_MAP_I2
222#define IMR_IP5_VAL K_INT_MAP_I3
223#define IMR_IP6_VAL K_INT_MAP_I4
224
225void __init arch_init_irq(void)
226{
227
228 unsigned int i;
229 u64 tmp;
230 unsigned int imask = STATUSF_IP4 | STATUSF_IP3 | STATUSF_IP2 |
231 STATUSF_IP1 | STATUSF_IP0;
232
233 /* Default everything to IP2 */
234 for (i = 0; i < SB1250_NR_IRQS; i++) { /* was I0 */
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +0000235 __raw_writeq(IMR_IP2_VAL,
236 IOADDR(A_IMR_REGISTER(0,
237 R_IMR_INTERRUPT_MAP_BASE) +
238 (i << 3)));
239 __raw_writeq(IMR_IP2_VAL,
240 IOADDR(A_IMR_REGISTER(1,
241 R_IMR_INTERRUPT_MAP_BASE) +
242 (i << 3)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
244
245 init_sb1250_irqs();
246
247 /*
248 * Map the high 16 bits of the mailbox registers to IP[3], for
249 * inter-cpu messages
250 */
251 /* Was I1 */
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +0000252 __raw_writeq(IMR_IP3_VAL,
253 IOADDR(A_IMR_REGISTER(0, R_IMR_INTERRUPT_MAP_BASE) +
254 (K_INT_MBOX_0 << 3)));
255 __raw_writeq(IMR_IP3_VAL,
256 IOADDR(A_IMR_REGISTER(1, R_IMR_INTERRUPT_MAP_BASE) +
257 (K_INT_MBOX_0 << 3)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 /* Clear the mailboxes. The firmware may leave them dirty */
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +0000260 __raw_writeq(0xffffffffffffffffULL,
261 IOADDR(A_IMR_REGISTER(0, R_IMR_MAILBOX_CLR_CPU)));
262 __raw_writeq(0xffffffffffffffffULL,
263 IOADDR(A_IMR_REGISTER(1, R_IMR_MAILBOX_CLR_CPU)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265 /* Mask everything except the mailbox registers for both cpus */
266 tmp = ~((u64) 0) ^ (((u64) 1) << K_INT_MBOX_0);
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +0000267 __raw_writeq(tmp, IOADDR(A_IMR_REGISTER(0, R_IMR_INTERRUPT_MASK)));
268 __raw_writeq(tmp, IOADDR(A_IMR_REGISTER(1, R_IMR_INTERRUPT_MASK)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 /*
271 * Note that the timer interrupts are also mapped, but this is
Ralf Baechle42a3b4f2005-09-03 15:56:17 -0700272 * done in sb1250_time_init(). Also, the profiling driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 * does its own management of IP7.
274 */
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 /* Enable necessary IPs, disable the rest */
277 change_c0_status(ST0_IM, imask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
Ralf Baechle937a8012006-10-07 19:44:33 +0100280extern void sb1250_mailbox_interrupt(void);
Thiemo Seufer4fb60a42006-06-18 05:23:47 +0100281
Ralf Baechled0453362007-10-22 10:38:44 +0100282static inline void dispatch_ip2(void)
283{
284 unsigned int cpu = smp_processor_id();
285 unsigned long long mask;
286
287 /*
288 * Default...we've hit an IP[2] interrupt, which means we've got to
289 * check the 1250 interrupt registers to figure out what to do. Need
290 * to detect which CPU we're on, now that smp_affinity is supported.
291 */
292 mask = __raw_readq(IOADDR(A_IMR_REGISTER(cpu,
293 R_IMR_INTERRUPT_STATUS_BASE)));
294 if (mask)
295 do_IRQ(fls64(mask) - 1);
296}
297
Ralf Baechle937a8012006-10-07 19:44:33 +0100298asmlinkage void plat_irq_dispatch(void)
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100299{
Ralf Baechled527eef2007-10-19 08:22:38 +0100300 unsigned int cpu = smp_processor_id();
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100301 unsigned int pending;
302
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100303 /*
304 * What a pain. We have to be really careful saving the upper 32 bits
305 * of any * register across function calls if we don't want them
306 * trashed--since were running in -o32, the calling routing never saves
307 * the full 64 bits of a register across a function call. Being the
308 * interrupt handler, we're guaranteed that interrupts are disabled
309 * during this code so we don't have to worry about random interrupts
310 * blasting the high 32 bits.
311 */
312
Thiemo Seufer119537c2007-03-19 00:13:37 +0000313 pending = read_c0_cause() & read_c0_status() & ST0_IM;
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100314
Ralf Baechle7bcf7712007-10-11 23:46:09 +0100315 if (pending & CAUSEF_IP7) /* CPU performance counter interrupt */
316 do_IRQ(MIPS_CPU_IRQ_BASE + 7);
317 else if (pending & CAUSEF_IP4)
Ralf Baechled527eef2007-10-19 08:22:38 +0100318 do_IRQ(K_INT_TIMER_0 + cpu); /* sb1250_timer_interrupt() */
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100319
320#ifdef CONFIG_SMP
Thiemo Seufer6e61e852006-07-05 14:26:38 +0100321 else if (pending & CAUSEF_IP3)
Ralf Baechle937a8012006-10-07 19:44:33 +0100322 sb1250_mailbox_interrupt();
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100323#endif
324
Ralf Baechled0453362007-10-22 10:38:44 +0100325 else if (pending & CAUSEF_IP2)
326 dispatch_ip2();
327 else
Ralf Baechle937a8012006-10-07 19:44:33 +0100328 spurious_interrupt();
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100329}