]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/powerpc/kernel/irq.c
[PATCH] lock PTE before updating it in 440/BookE page fault handler
[net-next-2.6.git] / arch / powerpc / kernel / irq.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 * Derived from arch/i386/kernel/irq.c
3 * Copyright (C) 1992 Linus Torvalds
4 * Adapted from arch/i386 by Gary Thomas
5 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
756e7104
SR
6 * Updated and modified by Cort Dougan <cort@fsmlabs.com>
7 * Copyright (C) 1996-2001 Cort Dougan
1da177e4
LT
8 * Adapted for Power Macintosh by Paul Mackerras
9 * Copyright (C) 1996 Paul Mackerras (paulus@cs.anu.edu.au)
10 * Amiga/APUS changes by Jesper Skov (jskov@cygnus.co.uk).
756e7104 11 *
1da177e4
LT
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
16 *
17 * This file contains the code used by various IRQ handling routines:
18 * asking for different IRQ's should be done through these routines
19 * instead of just grabbing them. Thus setups with different IRQ numbers
20 * shouldn't result in any weird surprises, and installing new handlers
21 * should be easier.
756e7104
SR
22 *
23 * The MPC8xx has an interrupt mask in the SIU. If a bit is set, the
24 * interrupt is _enabled_. As expected, IRQ0 is bit 0 in the 32-bit
25 * mask register (of which only 16 are defined), hence the weird shifting
26 * and complement of the cached_irq_mask. I want to be able to stuff
27 * this right into the SIU SMASK register.
28 * Many of the prep/chrp functions are conditional compiled on CONFIG_8xx
29 * to reduce code space and undefined function references.
1da177e4
LT
30 */
31
1da177e4
LT
32#include <linux/module.h>
33#include <linux/threads.h>
34#include <linux/kernel_stat.h>
35#include <linux/signal.h>
36#include <linux/sched.h>
756e7104 37#include <linux/ptrace.h>
1da177e4
LT
38#include <linux/ioport.h>
39#include <linux/interrupt.h>
40#include <linux/timex.h>
41#include <linux/config.h>
42#include <linux/init.h>
43#include <linux/slab.h>
1da177e4
LT
44#include <linux/delay.h>
45#include <linux/irq.h>
756e7104
SR
46#include <linux/seq_file.h>
47#include <linux/cpumask.h>
1da177e4
LT
48#include <linux/profile.h>
49#include <linux/bitops.h>
50
51#include <asm/uaccess.h>
52#include <asm/system.h>
53#include <asm/io.h>
54#include <asm/pgtable.h>
55#include <asm/irq.h>
56#include <asm/cache.h>
57#include <asm/prom.h>
58#include <asm/ptrace.h>
1da177e4 59#include <asm/machdep.h>
a50b56d2 60#ifdef CONFIG_PPC_ISERIES
1da177e4 61#include <asm/paca.h>
756e7104 62#endif
1da177e4 63
868accb7
SR
64int __irq_offset_value;
65#ifdef CONFIG_PPC32
66EXPORT_SYMBOL(__irq_offset_value);
67#endif
68
756e7104
SR
69static int ppc_spurious_interrupts;
70
756e7104
SR
71#ifdef CONFIG_PPC32
72#define NR_MASK_WORDS ((NR_IRQS + 31) / 32)
73
74unsigned long ppc_cached_irq_mask[NR_MASK_WORDS];
75atomic_t ppc_n_lost_interrupts;
76
77#ifdef CONFIG_TAU_INT
78extern int tau_initialized;
79extern int tau_interrupts(int);
80#endif
81
82#if defined(CONFIG_SMP) && !defined(CONFIG_PPC_MERGE)
83extern atomic_t ipi_recv;
84extern atomic_t ipi_sent;
85#endif
86#endif /* CONFIG_PPC32 */
87
88#ifdef CONFIG_PPC64
1da177e4
LT
89EXPORT_SYMBOL(irq_desc);
90
91int distribute_irqs = 1;
1da177e4 92u64 ppc64_interrupt_controller;
756e7104 93#endif /* CONFIG_PPC64 */
1da177e4
LT
94
95int show_interrupts(struct seq_file *p, void *v)
96{
756e7104
SR
97 int i = *(loff_t *)v, j;
98 struct irqaction *action;
1da177e4
LT
99 irq_desc_t *desc;
100 unsigned long flags;
101
102 if (i == 0) {
756e7104
SR
103 seq_puts(p, " ");
104 for_each_online_cpu(j)
105 seq_printf(p, "CPU%d ", j);
1da177e4
LT
106 seq_putc(p, '\n');
107 }
108
109 if (i < NR_IRQS) {
110 desc = get_irq_desc(i);
111 spin_lock_irqsave(&desc->lock, flags);
112 action = desc->action;
113 if (!action || !action->handler)
114 goto skip;
115 seq_printf(p, "%3d: ", i);
116#ifdef CONFIG_SMP
756e7104
SR
117 for_each_online_cpu(j)
118 seq_printf(p, "%10u ", kstat_cpu(j).irqs[i]);
1da177e4
LT
119#else
120 seq_printf(p, "%10u ", kstat_irqs(i));
121#endif /* CONFIG_SMP */
122 if (desc->handler)
756e7104 123 seq_printf(p, " %s ", desc->handler->typename);
1da177e4 124 else
756e7104 125 seq_puts(p, " None ");
1da177e4 126 seq_printf(p, "%s", (desc->status & IRQ_LEVEL) ? "Level " : "Edge ");
756e7104
SR
127 seq_printf(p, " %s", action->name);
128 for (action = action->next; action; action = action->next)
1da177e4
LT
129 seq_printf(p, ", %s", action->name);
130 seq_putc(p, '\n');
131skip:
132 spin_unlock_irqrestore(&desc->lock, flags);
756e7104
SR
133 } else if (i == NR_IRQS) {
134#ifdef CONFIG_PPC32
135#ifdef CONFIG_TAU_INT
136 if (tau_initialized){
137 seq_puts(p, "TAU: ");
394e3902
AM
138 for_each_online_cpu(j)
139 seq_printf(p, "%10u ", tau_interrupts(j));
756e7104
SR
140 seq_puts(p, " PowerPC Thermal Assist (cpu temp)\n");
141 }
142#endif
143#if defined(CONFIG_SMP) && !defined(CONFIG_PPC_MERGE)
144 /* should this be per processor send/receive? */
145 seq_printf(p, "IPI (recv/sent): %10u/%u\n",
146 atomic_read(&ipi_recv), atomic_read(&ipi_sent));
147#endif
148#endif /* CONFIG_PPC32 */
1da177e4 149 seq_printf(p, "BAD: %10u\n", ppc_spurious_interrupts);
756e7104 150 }
1da177e4
LT
151 return 0;
152}
153
154#ifdef CONFIG_HOTPLUG_CPU
155void fixup_irqs(cpumask_t map)
156{
157 unsigned int irq;
158 static int warned;
159
160 for_each_irq(irq) {
161 cpumask_t mask;
162
163 if (irq_desc[irq].status & IRQ_PER_CPU)
164 continue;
165
166 cpus_and(mask, irq_affinity[irq], map);
167 if (any_online_cpu(mask) == NR_CPUS) {
168 printk("Breaking affinity for irq %i\n", irq);
169 mask = map;
170 }
171 if (irq_desc[irq].handler->set_affinity)
172 irq_desc[irq].handler->set_affinity(irq, mask);
173 else if (irq_desc[irq].action && !(warned++))
174 printk("Cannot set affinity for irq %i\n", irq);
175 }
176
177 local_irq_enable();
178 mdelay(1);
179 local_irq_disable();
180}
181#endif
182
1da177e4
LT
183void do_IRQ(struct pt_regs *regs)
184{
185 int irq;
b709c083
SR
186#ifdef CONFIG_IRQSTACKS
187 struct thread_info *curtp, *irqtp;
188#endif
1da177e4 189
756e7104 190 irq_enter();
1da177e4
LT
191
192#ifdef CONFIG_DEBUG_STACKOVERFLOW
193 /* Debugging check for stack overflow: is there less than 2KB free? */
194 {
195 long sp;
196
197 sp = __get_SP() & (THREAD_SIZE-1);
198
199 if (unlikely(sp < (sizeof(struct thread_info) + 2048))) {
200 printk("do_IRQ: stack overflow: %ld\n",
201 sp - sizeof(struct thread_info));
202 dump_stack();
203 }
204 }
205#endif
206
756e7104
SR
207 /*
208 * Every platform is required to implement ppc_md.get_irq.
209 * This function will either return an irq number or -1 to
210 * indicate there are no more pending.
211 * The value -2 is for buggy hardware and means that this IRQ
212 * has already been handled. -- Tom
213 */
1da177e4
LT
214 irq = ppc_md.get_irq(regs);
215
b709c083
SR
216 if (irq >= 0) {
217#ifdef CONFIG_IRQSTACKS
218 /* Switch to the irq stack to handle this */
219 curtp = current_thread_info();
220 irqtp = hardirq_ctx[smp_processor_id()];
221 if (curtp != irqtp) {
222 irqtp->task = curtp->task;
223 irqtp->flags = 0;
d4be4f37 224 call___do_IRQ(irq, regs, irqtp);
b709c083
SR
225 irqtp->task = NULL;
226 if (irqtp->flags)
227 set_bits(irqtp->flags, &curtp->flags);
228 } else
229#endif
d4be4f37 230 __do_IRQ(irq, regs);
e199500c
SR
231 } else if (irq != -2)
232 /* That's not SMP safe ... but who cares ? */
233 ppc_spurious_interrupts++;
234
756e7104 235 irq_exit();
756e7104 236
e199500c 237#ifdef CONFIG_PPC_ISERIES
3356bb9f
DG
238 if (get_lppaca()->int_dword.fields.decr_int) {
239 get_lppaca()->int_dword.fields.decr_int = 0;
240 /* Signal a fake decrementer interrupt */
241 timer_interrupt(regs);
e199500c
SR
242 }
243#endif
244}
1da177e4
LT
245
246void __init init_IRQ(void)
247{
756e7104 248#ifdef CONFIG_PPC64
1da177e4
LT
249 static int once = 0;
250
251 if (once)
252 return;
253
254 once++;
255
756e7104 256#endif
1da177e4 257 ppc_md.init_IRQ();
756e7104 258#ifdef CONFIG_PPC64
1da177e4 259 irq_ctx_init();
756e7104 260#endif
1da177e4
LT
261}
262
756e7104 263#ifdef CONFIG_PPC64
1da177e4
LT
264/*
265 * Virtual IRQ mapping code, used on systems with XICS interrupt controllers.
266 */
267
268#define UNDEFINED_IRQ 0xffffffff
269unsigned int virt_irq_to_real_map[NR_IRQS];
270
271/*
272 * Don't use virtual irqs 0, 1, 2 for devices.
273 * The pcnet32 driver considers interrupt numbers < 2 to be invalid,
274 * and 2 is the XICS IPI interrupt.
275 * We limit virtual irqs to 17 less than NR_IRQS so that when we
276 * offset them by 16 (to reserve the first 16 for ISA interrupts)
277 * we don't end up with an interrupt number >= NR_IRQS.
278 */
279#define MIN_VIRT_IRQ 3
280#define MAX_VIRT_IRQ (NR_IRQS - NUM_ISA_INTERRUPTS - 1)
281#define NR_VIRT_IRQS (MAX_VIRT_IRQ - MIN_VIRT_IRQ + 1)
282
283void
284virt_irq_init(void)
285{
286 int i;
287 for (i = 0; i < NR_IRQS; i++)
288 virt_irq_to_real_map[i] = UNDEFINED_IRQ;
289}
290
291/* Create a mapping for a real_irq if it doesn't already exist.
292 * Return the virtual irq as a convenience.
293 */
294int virt_irq_create_mapping(unsigned int real_irq)
295{
296 unsigned int virq, first_virq;
297 static int warned;
298
299 if (ppc64_interrupt_controller == IC_OPEN_PIC)
300 return real_irq; /* no mapping for openpic (for now) */
301
f3f66f59 302 if (ppc64_interrupt_controller == IC_CELL_PIC)
fef1c772
AB
303 return real_irq; /* no mapping for iic either */
304
1da177e4
LT
305 /* don't map interrupts < MIN_VIRT_IRQ */
306 if (real_irq < MIN_VIRT_IRQ) {
307 virt_irq_to_real_map[real_irq] = real_irq;
308 return real_irq;
309 }
310
311 /* map to a number between MIN_VIRT_IRQ and MAX_VIRT_IRQ */
312 virq = real_irq;
313 if (virq > MAX_VIRT_IRQ)
314 virq = (virq % NR_VIRT_IRQS) + MIN_VIRT_IRQ;
315
316 /* search for this number or a free slot */
317 first_virq = virq;
318 while (virt_irq_to_real_map[virq] != UNDEFINED_IRQ) {
319 if (virt_irq_to_real_map[virq] == real_irq)
320 return virq;
321 if (++virq > MAX_VIRT_IRQ)
322 virq = MIN_VIRT_IRQ;
323 if (virq == first_virq)
324 goto nospace; /* oops, no free slots */
325 }
326
327 virt_irq_to_real_map[virq] = real_irq;
328 return virq;
329
330 nospace:
331 if (!warned) {
332 printk(KERN_CRIT "Interrupt table is full\n");
333 printk(KERN_CRIT "Increase NR_IRQS (currently %d) "
334 "in your kernel sources and rebuild.\n", NR_IRQS);
335 warned = 1;
336 }
337 return NO_IRQ;
338}
339
340/*
341 * In most cases will get a hit on the very first slot checked in the
342 * virt_irq_to_real_map. Only when there are a large number of
343 * IRQs will this be expensive.
344 */
345unsigned int real_irq_to_virt_slowpath(unsigned int real_irq)
346{
347 unsigned int virq;
348 unsigned int first_virq;
349
350 virq = real_irq;
351
352 if (virq > MAX_VIRT_IRQ)
353 virq = (virq % NR_VIRT_IRQS) + MIN_VIRT_IRQ;
354
355 first_virq = virq;
356
357 do {
358 if (virt_irq_to_real_map[virq] == real_irq)
359 return virq;
360
361 virq++;
362
363 if (virq >= MAX_VIRT_IRQ)
364 virq = 0;
365
366 } while (first_virq != virq);
367
368 return NO_IRQ;
369
370}
c6622f63 371#endif /* CONFIG_PPC64 */
1da177e4 372
1da177e4
LT
373#ifdef CONFIG_IRQSTACKS
374struct thread_info *softirq_ctx[NR_CPUS];
375struct thread_info *hardirq_ctx[NR_CPUS];
376
377void irq_ctx_init(void)
378{
379 struct thread_info *tp;
380 int i;
381
382 for_each_cpu(i) {
383 memset((void *)softirq_ctx[i], 0, THREAD_SIZE);
384 tp = softirq_ctx[i];
385 tp->cpu = i;
386 tp->preempt_count = SOFTIRQ_OFFSET;
387
388 memset((void *)hardirq_ctx[i], 0, THREAD_SIZE);
389 tp = hardirq_ctx[i];
390 tp->cpu = i;
391 tp->preempt_count = HARDIRQ_OFFSET;
392 }
393}
394
c6622f63
PM
395static inline void do_softirq_onstack(void)
396{
397 struct thread_info *curtp, *irqtp;
398
399 curtp = current_thread_info();
400 irqtp = softirq_ctx[smp_processor_id()];
401 irqtp->task = curtp->task;
402 call_do_softirq(irqtp);
403 irqtp->task = NULL;
404}
405
406#else
407#define do_softirq_onstack() __do_softirq()
408#endif /* CONFIG_IRQSTACKS */
409
1da177e4
LT
410void do_softirq(void)
411{
412 unsigned long flags;
1da177e4
LT
413
414 if (in_interrupt())
415 return;
416
417 local_irq_save(flags);
418
419 if (local_softirq_pending()) {
c6622f63
PM
420 account_system_vtime(current);
421 local_bh_disable();
422 do_softirq_onstack();
423 account_system_vtime(current);
424 __local_bh_enable();
1da177e4
LT
425 }
426
427 local_irq_restore(flags);
428}
429EXPORT_SYMBOL(do_softirq);
430
c6622f63 431#ifdef CONFIG_PPC64
1da177e4
LT
432static int __init setup_noirqdistrib(char *str)
433{
434 distribute_irqs = 0;
435 return 1;
436}
437
438__setup("noirqdistrib", setup_noirqdistrib);
756e7104 439#endif /* CONFIG_PPC64 */