2 * linux/arch/alpha/kernel/irq.c
4 * Copyright (C) 1995 Linus Torvalds
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
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>
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>
30 #include <asm/uaccess.h>
32 volatile unsigned long irq_err_count
;
33 DEFINE_PER_CPU(unsigned long, irq_pmi_count
);
35 void ack_bad_irq(unsigned int irq
)
38 printk(KERN_CRIT
"Unexpected IRQ trap at vector %u\n", irq
);
42 static char irq_user_affinity
[NR_IRQS
];
44 int irq_select_affinity(unsigned int irq
)
46 struct irq_data
*data
= irq_get_irq_data(irq
);
47 struct irq_chip
*chip
;
49 int cpu
= last_cpu
+ 1;
53 chip
= irq_data_get_irq_chip(data
);
55 if (!chip
->irq_set_affinity
|| irq_user_affinity
[irq
])
58 while (!cpu_possible(cpu
) ||
59 !cpumask_test_cpu(cpu
, irq_default_affinity
))
60 cpu
= (cpu
< (NR_CPUS
-1) ? cpu
+ 1 : 0);
63 cpumask_copy(data
->affinity
, cpumask_of(cpu
));
64 chip
->irq_set_affinity(data
, cpumask_of(cpu
), false);
67 #endif /* CONFIG_SMP */
69 int arch_show_interrupts(struct seq_file
*p
, int prec
)
75 for_each_online_cpu(j
)
76 seq_printf(p
, "%10lu ", cpu_data
[j
].ipi_count
);
80 for_each_online_cpu(j
)
81 seq_printf(p
, "%10lu ", per_cpu(irq_pmi_count
, j
));
82 seq_puts(p
, " Performance Monitoring\n");
83 seq_printf(p
, "ERR: %10lu\n", irq_err_count
);
88 * handle_irq handles all normal device IRQ's (the special
89 * SMP cross-CPU interrupts have their own specific
93 #define MAX_ILLEGAL_IRQS 16
99 * We ack quickly, we don't want the irq controller
100 * thinking we're snobs just because some other CPU has
101 * disabled global interrupts (we have already done the
102 * INT_ACK cycles, it's too late to try to pretend to the
103 * controller that we aren't taking the interrupt).
105 * 0 return value means that this irq is already being
106 * handled by some other CPU. (or is disabled)
108 static unsigned int illegal_count
=0;
109 struct irq_desc
*desc
= irq_to_desc(irq
);
111 if (!desc
|| ((unsigned) irq
> ACTUAL_NR_IRQS
&&
112 illegal_count
< MAX_ILLEGAL_IRQS
)) {
115 printk(KERN_CRIT
"device_interrupt: invalid interrupt %d\n",
121 generic_handle_irq_desc(irq
, desc
);