blob: a19d600822991c847eb65e0d943e4b8ff9dd82e1 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#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
Linus Torvalds1da177e2005-04-16 15:20:36 -070033volatile unsigned long irq_err_count;
Michael Cree65d92062010-08-09 17:20:05 -070034DEFINE_PER_CPU(unsigned long, irq_pmi_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
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{
Thomas Gleixner0b534cf2011-02-06 14:33:00 +000047 struct irq_data *data = irq_get_irq_data(irq);
48 struct irq_chip *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 static int last_cpu;
50 int cpu = last_cpu + 1;
51
Thomas Gleixner0b534cf2011-02-06 14:33:00 +000052 if (!data)
53 return 1;
54 chip = irq_data_get_irq_chip(data);
55
56 if (!chip->irq_set_affinity || irq_user_affinity[irq])
Ivan Kokshaysky0595bf32006-01-06 00:12:22 -080057 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Rusty Russelld036e672009-01-01 10:12:26 +103059 while (!cpu_possible(cpu) ||
60 !cpumask_test_cpu(cpu, irq_default_affinity))
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 cpu = (cpu < (NR_CPUS-1) ? cpu + 1 : 0);
62 last_cpu = cpu;
63
Thomas Gleixner0b534cf2011-02-06 14:33:00 +000064 cpumask_copy(data->affinity, cpumask_of(cpu));
65 chip->irq_set_affinity(data, cpumask_of(cpu), false);
Ivan Kokshaysky0595bf32006-01-06 00:12:22 -080066 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067}
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#endif /* CONFIG_SMP */
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070int
71show_interrupts(struct seq_file *p, void *v)
72{
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 int j;
Eric Sesterhennc5e3d982006-02-01 03:06:13 -080074 int irq = *(loff_t *) v;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 struct irqaction * action;
Kyle McMartina891b392010-10-14 22:31:25 -040076 struct irq_desc *desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 unsigned long flags;
78
79#ifdef CONFIG_SMP
Eric Sesterhennc5e3d982006-02-01 03:06:13 -080080 if (irq == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 seq_puts(p, " ");
Eric Sesterhennc5e3d982006-02-01 03:06:13 -080082 for_each_online_cpu(j)
83 seq_printf(p, "CPU%d ", j);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 seq_putc(p, '\n');
85 }
86#endif
87
Eric Sesterhennc5e3d982006-02-01 03:06:13 -080088 if (irq < ACTUAL_NR_IRQS) {
Kyle McMartina891b392010-10-14 22:31:25 -040089 desc = irq_to_desc(irq);
90
91 if (!desc)
92 return 0;
93
94 raw_spin_lock_irqsave(&desc->lock, flags);
95 action = desc->action;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 if (!action)
97 goto unlock;
Eric Sesterhennc5e3d982006-02-01 03:06:13 -080098 seq_printf(p, "%3d: ", irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#ifndef CONFIG_SMP
Eric Sesterhennc5e3d982006-02-01 03:06:13 -0800100 seq_printf(p, "%10u ", kstat_irqs(irq));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#else
Eric Sesterhennc5e3d982006-02-01 03:06:13 -0800102 for_each_online_cpu(j)
Andrew Morton4d87c5b2009-01-29 14:29:10 -0800103 seq_printf(p, "%10u ", kstat_irqs_cpu(irq, j));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#endif
Kyle McMartina891b392010-10-14 22:31:25 -0400105 seq_printf(p, " %14s", get_irq_desc_chip(desc)->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 seq_printf(p, " %c%s",
Thomas Gleixnerd18eced2006-07-01 19:29:11 -0700107 (action->flags & IRQF_DISABLED)?'+':' ',
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 action->name);
109
110 for (action=action->next; action; action = action->next) {
111 seq_printf(p, ", %c%s",
Thomas Gleixnerd18eced2006-07-01 19:29:11 -0700112 (action->flags & IRQF_DISABLED)?'+':' ',
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 action->name);
114 }
115
116 seq_putc(p, '\n');
117unlock:
Kyle McMartina891b392010-10-14 22:31:25 -0400118 raw_spin_unlock_irqrestore(&desc->lock, flags);
Eric Sesterhennc5e3d982006-02-01 03:06:13 -0800119 } else if (irq == ACTUAL_NR_IRQS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#ifdef CONFIG_SMP
121 seq_puts(p, "IPI: ");
Eric Sesterhennc5e3d982006-02-01 03:06:13 -0800122 for_each_online_cpu(j)
123 seq_printf(p, "%10lu ", cpu_data[j].ipi_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 seq_putc(p, '\n');
125#endif
Michael Cree65d92062010-08-09 17:20:05 -0700126 seq_puts(p, "PMI: ");
127 for_each_online_cpu(j)
128 seq_printf(p, "%10lu ", per_cpu(irq_pmi_count, j));
129 seq_puts(p, " Performance Monitoring\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 seq_printf(p, "ERR: %10lu\n", irq_err_count);
131 }
132 return 0;
133}
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135/*
136 * handle_irq handles all normal device IRQ's (the special
137 * SMP cross-CPU interrupts have their own specific
138 * handlers).
139 */
140
141#define MAX_ILLEGAL_IRQS 16
142
143void
Al Viro3dbb8c62006-10-08 14:37:32 +0100144handle_irq(int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 /*
147 * We ack quickly, we don't want the irq controller
148 * thinking we're snobs just because some other CPU has
149 * disabled global interrupts (we have already done the
150 * INT_ACK cycles, it's too late to try to pretend to the
151 * controller that we aren't taking the interrupt).
152 *
153 * 0 return value means that this irq is already being
154 * handled by some other CPU. (or is disabled)
155 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 static unsigned int illegal_count=0;
Kyle McMartina891b392010-10-14 22:31:25 -0400157 struct irq_desc *desc = irq_to_desc(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Kyle McMartina891b392010-10-14 22:31:25 -0400159 if (!desc || ((unsigned) irq > ACTUAL_NR_IRQS &&
160 illegal_count < MAX_ILLEGAL_IRQS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 irq_err_count++;
162 illegal_count++;
163 printk(KERN_CRIT "device_interrupt: invalid interrupt %d\n",
164 irq);
165 return;
166 }
167
Ivan Kokshayskyeff2c2f2006-03-09 17:33:37 -0800168 /*
Ivan Kokshayskyf5de6ec2011-01-12 22:02:24 +0000169 * From here we must proceed with IPL_MAX. Note that we do not
Ivan Kokshayskyeff2c2f2006-03-09 17:33:37 -0800170 * explicitly enable interrupts afterwards - some MILO PALcode
171 * (namely LX164 one) seems to have severe problems with RTI
172 * at IPL 0.
173 */
Ivan Kokshaysky0595bf32006-01-06 00:12:22 -0800174 local_irq_disable();
Ivan Kokshayskyf5de6ec2011-01-12 22:02:24 +0000175 irq_enter();
Kyle McMartina891b392010-10-14 22:31:25 -0400176 generic_handle_irq_desc(irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 irq_exit();
178}