blob: 6d8dba5cf3480af010e2f1807238a19a468884de [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>
Ralf Baechle7bcf7712007-10-11 23:46:09 +010029#include <asm/time.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/io.h>
31
32#include <asm/sibyte/sb1250_regs.h>
33#include <asm/sibyte/sb1250_int.h>
34#include <asm/sibyte/sb1250_uart.h>
35#include <asm/sibyte/sb1250_scd.h>
36#include <asm/sibyte/sb1250.h>
37
38/*
39 * These are the routines that handle all the low level interrupt stuff.
40 * Actions handled here are: initialization of the interrupt map, requesting of
41 * interrupt lines by handlers, dispatching if interrupts to handlers, probing
42 * for interrupt lines
43 */
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#ifdef CONFIG_SIBYTE_HAS_LDT
46extern unsigned long ldt_eoi_space;
47#endif
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/* Store the CPU id (not the logical number) */
50int sb1250_irq_owner[SB1250_NR_IRQS];
51
Ralf Baechle5772f6de2010-02-27 12:53:32 +010052static DEFINE_RAW_SPINLOCK(sb1250_imr_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54void sb1250_mask_irq(int cpu, int irq)
55{
56 unsigned long flags;
57 u64 cur_ints;
58
Ralf Baechle5772f6de2010-02-27 12:53:32 +010059 raw_spin_lock_irqsave(&sb1250_imr_lock, flags);
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +000060 cur_ints = ____raw_readq(IOADDR(A_IMR_MAPPER(cpu) +
61 R_IMR_INTERRUPT_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 cur_ints |= (((u64) 1) << irq);
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +000063 ____raw_writeq(cur_ints, IOADDR(A_IMR_MAPPER(cpu) +
64 R_IMR_INTERRUPT_MASK));
Ralf Baechle5772f6de2010-02-27 12:53:32 +010065 raw_spin_unlock_irqrestore(&sb1250_imr_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
67
68void sb1250_unmask_irq(int cpu, int irq)
69{
70 unsigned long flags;
71 u64 cur_ints;
72
Ralf Baechle5772f6de2010-02-27 12:53:32 +010073 raw_spin_lock_irqsave(&sb1250_imr_lock, flags);
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +000074 cur_ints = ____raw_readq(IOADDR(A_IMR_MAPPER(cpu) +
75 R_IMR_INTERRUPT_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 cur_ints &= ~(((u64) 1) << irq);
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +000077 ____raw_writeq(cur_ints, IOADDR(A_IMR_MAPPER(cpu) +
78 R_IMR_INTERRUPT_MASK));
Ralf Baechle5772f6de2010-02-27 12:53:32 +010079 raw_spin_unlock_irqrestore(&sb1250_imr_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080}
81
82#ifdef CONFIG_SMP
Thomas Gleixnerd6d5d5c42011-03-23 21:09:14 +000083static int sb1250_set_affinity(struct irq_data *d, const struct cpumask *mask,
84 bool force)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
86 int i = 0, old_cpu, cpu, int_on;
Thomas Gleixnerd6d5d5c42011-03-23 21:09:14 +000087 unsigned int irq = d->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 u64 cur_ints;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 unsigned long flags;
90
Thomas Gleixner421d1562014-03-04 20:43:39 +000091 i = cpumask_first_and(mask, cpu_online_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 /* Convert logical CPU to physical CPU */
94 cpu = cpu_logical_map(i);
95
96 /* Protect against other affinity changers and IMR manipulation */
Ralf Baechle5772f6de2010-02-27 12:53:32 +010097 raw_spin_lock_irqsave(&sb1250_imr_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99 /* Swizzle each CPU's IMR (but leave the IP selection alone) */
100 old_cpu = sb1250_irq_owner[irq];
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +0000101 cur_ints = ____raw_readq(IOADDR(A_IMR_MAPPER(old_cpu) +
102 R_IMR_INTERRUPT_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 int_on = !(cur_ints & (((u64) 1) << irq));
104 if (int_on) {
105 /* If it was on, mask it */
106 cur_ints |= (((u64) 1) << irq);
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +0000107 ____raw_writeq(cur_ints, IOADDR(A_IMR_MAPPER(old_cpu) +
108 R_IMR_INTERRUPT_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 }
110 sb1250_irq_owner[irq] = cpu;
111 if (int_on) {
112 /* unmask for the new CPU */
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +0000113 cur_ints = ____raw_readq(IOADDR(A_IMR_MAPPER(cpu) +
114 R_IMR_INTERRUPT_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 cur_ints &= ~(((u64) 1) << irq);
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +0000116 ____raw_writeq(cur_ints, IOADDR(A_IMR_MAPPER(cpu) +
117 R_IMR_INTERRUPT_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 }
Ralf Baechle5772f6de2010-02-27 12:53:32 +0100119 raw_spin_unlock_irqrestore(&sb1250_imr_lock, flags);
Yinghai Lud5dedd42009-04-27 17:59:21 -0700120
121 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123#endif
124
Thomas Gleixner15441292011-06-06 11:53:01 +0200125static void disable_sb1250_irq(struct irq_data *d)
126{
127 unsigned int irq = d->irq;
128
129 sb1250_mask_irq(sb1250_irq_owner[irq], irq);
130}
131
Thomas Gleixnerd6d5d5c42011-03-23 21:09:14 +0000132static void enable_sb1250_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Thomas Gleixnerd6d5d5c42011-03-23 21:09:14 +0000134 unsigned int irq = d->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 sb1250_unmask_irq(sb1250_irq_owner[irq], irq);
137}
138
139
Thomas Gleixnerd6d5d5c42011-03-23 21:09:14 +0000140static void ack_sb1250_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Thomas Gleixnerd6d5d5c42011-03-23 21:09:14 +0000142 unsigned int irq = d->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143#ifdef CONFIG_SIBYTE_HAS_LDT
144 u64 pending;
145
146 /*
147 * If the interrupt was an HT interrupt, now is the time to
148 * clear it. NOTE: we assume the HT bridge was set up to
149 * deliver the interrupts to all CPUs (which makes affinity
150 * changing easier for us)
151 */
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +0000152 pending = __raw_readq(IOADDR(A_IMR_REGISTER(sb1250_irq_owner[irq],
153 R_IMR_LDT_INTERRUPT)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 pending &= ((u64)1 << (irq));
155 if (pending) {
156 int i;
157 for (i=0; i<NR_CPUS; i++) {
158 int cpu;
159#ifdef CONFIG_SMP
160 cpu = cpu_logical_map(i);
161#else
162 cpu = i;
163#endif
164 /*
165 * Clear for all CPUs so an affinity switch
166 * doesn't find an old status
167 */
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +0000168 __raw_writeq(pending,
169 IOADDR(A_IMR_REGISTER(cpu,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 R_IMR_LDT_INTERRUPT_CLR)));
171 }
172
173 /*
174 * Generate EOI. For Pass 1 parts, EOI is a nop. For
175 * Pass 2, the LDT world may be edge-triggered, but
176 * this EOI shouldn't hurt. If they are
177 * level-sensitive, the EOI is required.
178 */
179 *(uint32_t *)(ldt_eoi_space+(irq<<16)+(7<<2)) = 0;
180 }
181#endif
182 sb1250_mask_irq(sb1250_irq_owner[irq], irq);
183}
184
Thomas Gleixnerd6d5d5c42011-03-23 21:09:14 +0000185static struct irq_chip sb1250_irq_type = {
186 .name = "SB1250-IMR",
187 .irq_mask_ack = ack_sb1250_irq,
188 .irq_unmask = enable_sb1250_irq,
Thomas Gleixner15441292011-06-06 11:53:01 +0200189 .irq_mask = disable_sb1250_irq,
Thomas Gleixnerd6d5d5c42011-03-23 21:09:14 +0000190#ifdef CONFIG_SMP
191 .irq_set_affinity = sb1250_set_affinity
192#endif
193};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
195void __init init_sb1250_irqs(void)
196{
197 int i;
198
Atsushi Nemoto1603b5a2006-11-02 02:08:36 +0900199 for (i = 0; i < SB1250_NR_IRQS; i++) {
Thomas Gleixnere4ec7982011-03-27 15:19:28 +0200200 irq_set_chip_and_handler(i, &sb1250_irq_type,
201 handle_level_irq);
Atsushi Nemoto1603b5a2006-11-02 02:08:36 +0900202 sb1250_irq_owner[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 }
204}
205
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/*
208 * arch_init_irq is called early in the boot sequence from init/main.c via
209 * init_IRQ. It is responsible for setting up the interrupt mapper and
210 * installing the handler that will be responsible for dispatching interrupts
211 * to the "right" place.
212 */
213/*
214 * For now, map all interrupts to IP[2]. We could save
215 * some cycles by parceling out system interrupts to different
216 * IP lines, but keep it simple for bringup. We'll also direct
217 * all interrupts to a single CPU; we should probably route
218 * PCI and LDT to one cpu and everything else to the other
219 * to balance the load a bit.
220 *
221 * On the second cpu, everything is set to IP5, which is
222 * ignored, EXCEPT the mailbox interrupt. That one is
223 * set to IP[2] so it is handled. This is needed so we
Gilles Espinassef77f13e2010-03-29 15:41:47 +0200224 * can do cross-cpu function calls, as required by SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 */
226
227#define IMR_IP2_VAL K_INT_MAP_I0
228#define IMR_IP3_VAL K_INT_MAP_I1
229#define IMR_IP4_VAL K_INT_MAP_I2
230#define IMR_IP5_VAL K_INT_MAP_I3
231#define IMR_IP6_VAL K_INT_MAP_I4
232
233void __init arch_init_irq(void)
234{
235
236 unsigned int i;
237 u64 tmp;
238 unsigned int imask = STATUSF_IP4 | STATUSF_IP3 | STATUSF_IP2 |
239 STATUSF_IP1 | STATUSF_IP0;
240
241 /* Default everything to IP2 */
242 for (i = 0; i < SB1250_NR_IRQS; i++) { /* was I0 */
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +0000243 __raw_writeq(IMR_IP2_VAL,
244 IOADDR(A_IMR_REGISTER(0,
245 R_IMR_INTERRUPT_MAP_BASE) +
246 (i << 3)));
247 __raw_writeq(IMR_IP2_VAL,
248 IOADDR(A_IMR_REGISTER(1,
249 R_IMR_INTERRUPT_MAP_BASE) +
250 (i << 3)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
252
253 init_sb1250_irqs();
254
255 /*
256 * Map the high 16 bits of the mailbox registers to IP[3], for
257 * inter-cpu messages
258 */
259 /* Was I1 */
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +0000260 __raw_writeq(IMR_IP3_VAL,
261 IOADDR(A_IMR_REGISTER(0, R_IMR_INTERRUPT_MAP_BASE) +
262 (K_INT_MBOX_0 << 3)));
263 __raw_writeq(IMR_IP3_VAL,
264 IOADDR(A_IMR_REGISTER(1, R_IMR_INTERRUPT_MAP_BASE) +
265 (K_INT_MBOX_0 << 3)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
Ralf Baechle70342282013-01-22 12:59:30 +0100267 /* Clear the mailboxes. The firmware may leave them dirty */
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +0000268 __raw_writeq(0xffffffffffffffffULL,
269 IOADDR(A_IMR_REGISTER(0, R_IMR_MAILBOX_CLR_CPU)));
270 __raw_writeq(0xffffffffffffffffULL,
271 IOADDR(A_IMR_REGISTER(1, R_IMR_MAILBOX_CLR_CPU)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 /* Mask everything except the mailbox registers for both cpus */
274 tmp = ~((u64) 0) ^ (((u64) 1) << K_INT_MBOX_0);
Maciej W. Rozycki65bda1a2005-02-22 21:51:30 +0000275 __raw_writeq(tmp, IOADDR(A_IMR_REGISTER(0, R_IMR_INTERRUPT_MASK)));
276 __raw_writeq(tmp, IOADDR(A_IMR_REGISTER(1, R_IMR_INTERRUPT_MASK)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 /*
279 * Note that the timer interrupts are also mapped, but this is
Ralf Baechle70342282013-01-22 12:59:30 +0100280 * done in sb1250_time_init(). Also, the profiling driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 * does its own management of IP7.
282 */
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 /* Enable necessary IPs, disable the rest */
285 change_c0_status(ST0_IM, imask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286}
287
Ralf Baechle937a8012006-10-07 19:44:33 +0100288extern void sb1250_mailbox_interrupt(void);
Thiemo Seufer4fb60a42006-06-18 05:23:47 +0100289
Ralf Baechled0453362007-10-22 10:38:44 +0100290static inline void dispatch_ip2(void)
291{
292 unsigned int cpu = smp_processor_id();
293 unsigned long long mask;
294
295 /*
296 * Default...we've hit an IP[2] interrupt, which means we've got to
Ralf Baechle70342282013-01-22 12:59:30 +0100297 * check the 1250 interrupt registers to figure out what to do. Need
Ralf Baechled0453362007-10-22 10:38:44 +0100298 * to detect which CPU we're on, now that smp_affinity is supported.
299 */
300 mask = __raw_readq(IOADDR(A_IMR_REGISTER(cpu,
301 R_IMR_INTERRUPT_STATUS_BASE)));
302 if (mask)
303 do_IRQ(fls64(mask) - 1);
304}
305
Ralf Baechle937a8012006-10-07 19:44:33 +0100306asmlinkage void plat_irq_dispatch(void)
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100307{
Ralf Baechled527eef2007-10-19 08:22:38 +0100308 unsigned int cpu = smp_processor_id();
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100309 unsigned int pending;
310
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100311 /*
312 * What a pain. We have to be really careful saving the upper 32 bits
313 * of any * register across function calls if we don't want them
314 * trashed--since were running in -o32, the calling routing never saves
315 * the full 64 bits of a register across a function call. Being the
316 * interrupt handler, we're guaranteed that interrupts are disabled
317 * during this code so we don't have to worry about random interrupts
318 * blasting the high 32 bits.
319 */
320
Thiemo Seufer119537c2007-03-19 00:13:37 +0000321 pending = read_c0_cause() & read_c0_status() & ST0_IM;
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100322
Ralf Baechle7bcf7712007-10-11 23:46:09 +0100323 if (pending & CAUSEF_IP7) /* CPU performance counter interrupt */
324 do_IRQ(MIPS_CPU_IRQ_BASE + 7);
325 else if (pending & CAUSEF_IP4)
Ralf Baechle70342282013-01-22 12:59:30 +0100326 do_IRQ(K_INT_TIMER_0 + cpu); /* sb1250_timer_interrupt() */
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100327
328#ifdef CONFIG_SMP
Thiemo Seufer6e61e852006-07-05 14:26:38 +0100329 else if (pending & CAUSEF_IP3)
Ralf Baechle937a8012006-10-07 19:44:33 +0100330 sb1250_mailbox_interrupt();
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100331#endif
332
Ralf Baechled0453362007-10-22 10:38:44 +0100333 else if (pending & CAUSEF_IP2)
334 dispatch_ip2();
335 else
Ralf Baechle937a8012006-10-07 19:44:33 +0100336 spurious_interrupt();
Ralf Baechlee4ac58a2006-04-03 17:56:36 +0100337}