blob: d0f1620007f7de83d72f76257fb778791518d587 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/alpha/kernel/irq.c
3 *
4 * Copyright (C) 1995 Linus Torvalds
5 *
6 * This file contains the code used by various IRQ handling routines:
7 * asking for different IRQ's should be done through these routines
8 * instead of just grabbing them. Thus setups with different IRQ numbers
9 * shouldn't result in any weird surprises, and installing new handlers
10 * should be easier.
11 */
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/kernel.h>
14#include <linux/module.h>
15#include <linux/errno.h>
16#include <linux/kernel_stat.h>
17#include <linux/signal.h>
18#include <linux/sched.h>
19#include <linux/ptrace.h>
20#include <linux/interrupt.h>
21#include <linux/slab.h>
22#include <linux/random.h>
23#include <linux/init.h>
24#include <linux/irq.h>
25#include <linux/proc_fs.h>
26#include <linux/seq_file.h>
27#include <linux/profile.h>
28#include <linux/bitops.h>
29
30#include <asm/system.h>
31#include <asm/io.h>
32#include <asm/uaccess.h>
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034volatile unsigned long irq_err_count;
35
Ivan Kokshaysky0595bf32006-01-06 00:12:22 -080036void ack_bad_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
38 irq_err_count++;
39 printk(KERN_CRIT "Unexpected IRQ trap at vector %u\n", irq);
40}
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#ifdef CONFIG_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -070043static char irq_user_affinity[NR_IRQS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Max Krasnyansky18404752008-05-29 11:02:52 -070045int irq_select_affinity(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
47 static int last_cpu;
48 int cpu = last_cpu + 1;
49
Ingo Molnard1bef4e2006-06-29 02:24:36 -070050 if (!irq_desc[irq].chip->set_affinity || irq_user_affinity[irq])
Ivan Kokshaysky0595bf32006-01-06 00:12:22 -080051 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Max Krasnyansky18404752008-05-29 11:02:52 -070053 while (!cpu_possible(cpu) || !cpu_isset(cpu, irq_default_affinity))
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 cpu = (cpu < (NR_CPUS-1) ? cpu + 1 : 0);
55 last_cpu = cpu;
56
Ingo Molnara53da522006-06-29 02:24:38 -070057 irq_desc[irq].affinity = cpumask_of_cpu(cpu);
Rusty Russell0de26522008-12-13 21:20:26 +103058 irq_desc[irq].chip->set_affinity(irq, cpumask_of(cpu));
Ivan Kokshaysky0595bf32006-01-06 00:12:22 -080059 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060}
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#endif /* CONFIG_SMP */
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063int
64show_interrupts(struct seq_file *p, void *v)
65{
66#ifdef CONFIG_SMP
67 int j;
68#endif
Eric Sesterhennc5e3d982006-02-01 03:06:13 -080069 int irq = *(loff_t *) v;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 struct irqaction * action;
71 unsigned long flags;
72
73#ifdef CONFIG_SMP
Eric Sesterhennc5e3d982006-02-01 03:06:13 -080074 if (irq == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 seq_puts(p, " ");
Eric Sesterhennc5e3d982006-02-01 03:06:13 -080076 for_each_online_cpu(j)
77 seq_printf(p, "CPU%d ", j);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 seq_putc(p, '\n');
79 }
80#endif
81
Eric Sesterhennc5e3d982006-02-01 03:06:13 -080082 if (irq < ACTUAL_NR_IRQS) {
83 spin_lock_irqsave(&irq_desc[irq].lock, flags);
84 action = irq_desc[irq].action;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 if (!action)
86 goto unlock;
Eric Sesterhennc5e3d982006-02-01 03:06:13 -080087 seq_printf(p, "%3d: ", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#ifndef CONFIG_SMP
Eric Sesterhennc5e3d982006-02-01 03:06:13 -080089 seq_printf(p, "%10u ", kstat_irqs(irq));
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#else
Eric Sesterhennc5e3d982006-02-01 03:06:13 -080091 for_each_online_cpu(j)
92 seq_printf(p, "%10u ", kstat_cpu(j).irqs[irq]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#endif
Ingo Molnard1bef4e2006-06-29 02:24:36 -070094 seq_printf(p, " %14s", irq_desc[irq].chip->typename);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 seq_printf(p, " %c%s",
Thomas Gleixnerd18eced2006-07-01 19:29:11 -070096 (action->flags & IRQF_DISABLED)?'+':' ',
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 action->name);
98
99 for (action=action->next; action; action = action->next) {
100 seq_printf(p, ", %c%s",
Thomas Gleixnerd18eced2006-07-01 19:29:11 -0700101 (action->flags & IRQF_DISABLED)?'+':' ',
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 action->name);
103 }
104
105 seq_putc(p, '\n');
106unlock:
Eric Sesterhennc5e3d982006-02-01 03:06:13 -0800107 spin_unlock_irqrestore(&irq_desc[irq].lock, flags);
108 } else if (irq == ACTUAL_NR_IRQS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109#ifdef CONFIG_SMP
110 seq_puts(p, "IPI: ");
Eric Sesterhennc5e3d982006-02-01 03:06:13 -0800111 for_each_online_cpu(j)
112 seq_printf(p, "%10lu ", cpu_data[j].ipi_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 seq_putc(p, '\n');
114#endif
115 seq_printf(p, "ERR: %10lu\n", irq_err_count);
116 }
117 return 0;
118}
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120/*
121 * handle_irq handles all normal device IRQ's (the special
122 * SMP cross-CPU interrupts have their own specific
123 * handlers).
124 */
125
126#define MAX_ILLEGAL_IRQS 16
127
128void
Al Viro3dbb8c62006-10-08 14:37:32 +0100129handle_irq(int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
131 /*
132 * We ack quickly, we don't want the irq controller
133 * thinking we're snobs just because some other CPU has
134 * disabled global interrupts (we have already done the
135 * INT_ACK cycles, it's too late to try to pretend to the
136 * controller that we aren't taking the interrupt).
137 *
138 * 0 return value means that this irq is already being
139 * handled by some other CPU. (or is disabled)
140 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 static unsigned int illegal_count=0;
142
143 if ((unsigned) irq > ACTUAL_NR_IRQS && illegal_count < MAX_ILLEGAL_IRQS ) {
144 irq_err_count++;
145 illegal_count++;
146 printk(KERN_CRIT "device_interrupt: invalid interrupt %d\n",
147 irq);
148 return;
149 }
150
151 irq_enter();
Ivan Kokshayskyeff2c2f2006-03-09 17:33:37 -0800152 /*
153 * __do_IRQ() must be called with IPL_MAX. Note that we do not
154 * explicitly enable interrupts afterwards - some MILO PALcode
155 * (namely LX164 one) seems to have severe problems with RTI
156 * at IPL 0.
157 */
Ivan Kokshaysky0595bf32006-01-06 00:12:22 -0800158 local_irq_disable();
Al Viro8774cb82006-10-07 14:17:31 +0100159 __do_IRQ(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 irq_exit();
161}