]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/alpha/kernel/irq.c
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit...
[net-next-2.6.git] / arch / alpha / kernel / irq.c
CommitLineData
1da177e4
LT
1/*
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
1da177e4
LT
13#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>
1da177e4
LT
21#include <linux/random.h>
22#include <linux/init.h>
23#include <linux/irq.h>
24#include <linux/proc_fs.h>
25#include <linux/seq_file.h>
26#include <linux/profile.h>
27#include <linux/bitops.h>
28
29#include <asm/system.h>
30#include <asm/io.h>
31#include <asm/uaccess.h>
32
1da177e4
LT
33volatile unsigned long irq_err_count;
34
0595bf3b 35void ack_bad_irq(unsigned int irq)
1da177e4
LT
36{
37 irq_err_count++;
38 printk(KERN_CRIT "Unexpected IRQ trap at vector %u\n", irq);
39}
40
1da177e4 41#ifdef CONFIG_SMP
1da177e4 42static char irq_user_affinity[NR_IRQS];
1da177e4 43
18404756 44int irq_select_affinity(unsigned int irq)
1da177e4
LT
45{
46 static int last_cpu;
47 int cpu = last_cpu + 1;
48
d1bef4ed 49 if (!irq_desc[irq].chip->set_affinity || irq_user_affinity[irq])
0595bf3b 50 return 1;
1da177e4 51
d036e67b
RR
52 while (!cpu_possible(cpu) ||
53 !cpumask_test_cpu(cpu, irq_default_affinity))
1da177e4
LT
54 cpu = (cpu < (NR_CPUS-1) ? cpu + 1 : 0);
55 last_cpu = cpu;
56
e65e49d0 57 cpumask_copy(irq_desc[irq].affinity, cpumask_of(cpu));
0de26520 58 irq_desc[irq].chip->set_affinity(irq, cpumask_of(cpu));
0595bf3b 59 return 0;
1da177e4 60}
1da177e4
LT
61#endif /* CONFIG_SMP */
62
1da177e4
LT
63int
64show_interrupts(struct seq_file *p, void *v)
65{
66#ifdef CONFIG_SMP
67 int j;
68#endif
c5e3d98c 69 int irq = *(loff_t *) v;
1da177e4
LT
70 struct irqaction * action;
71 unsigned long flags;
72
73#ifdef CONFIG_SMP
c5e3d98c 74 if (irq == 0) {
1da177e4 75 seq_puts(p, " ");
c5e3d98c
ES
76 for_each_online_cpu(j)
77 seq_printf(p, "CPU%d ", j);
1da177e4
LT
78 seq_putc(p, '\n');
79 }
80#endif
81
c5e3d98c 82 if (irq < ACTUAL_NR_IRQS) {
239007b8 83 raw_spin_lock_irqsave(&irq_desc[irq].lock, flags);
c5e3d98c 84 action = irq_desc[irq].action;
1da177e4
LT
85 if (!action)
86 goto unlock;
c5e3d98c 87 seq_printf(p, "%3d: ", irq);
1da177e4 88#ifndef CONFIG_SMP
c5e3d98c 89 seq_printf(p, "%10u ", kstat_irqs(irq));
1da177e4 90#else
c5e3d98c 91 for_each_online_cpu(j)
4d87c5be 92 seq_printf(p, "%10u ", kstat_irqs_cpu(irq, j));
1da177e4 93#endif
8ab1221c 94 seq_printf(p, " %14s", irq_desc[irq].chip->name);
1da177e4 95 seq_printf(p, " %c%s",
d18ecedc 96 (action->flags & IRQF_DISABLED)?'+':' ',
1da177e4
LT
97 action->name);
98
99 for (action=action->next; action; action = action->next) {
100 seq_printf(p, ", %c%s",
d18ecedc 101 (action->flags & IRQF_DISABLED)?'+':' ',
1da177e4
LT
102 action->name);
103 }
104
105 seq_putc(p, '\n');
106unlock:
239007b8 107 raw_spin_unlock_irqrestore(&irq_desc[irq].lock, flags);
c5e3d98c 108 } else if (irq == ACTUAL_NR_IRQS) {
1da177e4
LT
109#ifdef CONFIG_SMP
110 seq_puts(p, "IPI: ");
c5e3d98c
ES
111 for_each_online_cpu(j)
112 seq_printf(p, "%10lu ", cpu_data[j].ipi_count);
1da177e4
LT
113 seq_putc(p, '\n');
114#endif
115 seq_printf(p, "ERR: %10lu\n", irq_err_count);
116 }
117 return 0;
118}
119
1da177e4
LT
120/*
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
3dbb8c62 129handle_irq(int irq)
1da177e4
LT
130{
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 */
1da177e4
LT
141 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();
eff2c2f6
IK
152 /*
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 */
0595bf3b 158 local_irq_disable();
8774cb81 159 __do_IRQ(irq);
1da177e4
LT
160 irq_exit();
161}