blob: 2872accd22156b7ee134f70c84376a7dff48a4c8 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/io.h>
30#include <asm/uaccess.h>
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032volatile unsigned long irq_err_count;
Michael Cree65d92062010-08-09 17:20:05 -070033DEFINE_PER_CPU(unsigned long, irq_pmi_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Ivan Kokshaysky0595bf32006-01-06 00:12:22 -080035void ack_bad_irq(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036{
37 irq_err_count++;
38 printk(KERN_CRIT "Unexpected IRQ trap at vector %u\n", irq);
39}
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#ifdef CONFIG_SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -070042static char irq_user_affinity[NR_IRQS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Max Krasnyansky18404752008-05-29 11:02:52 -070044int irq_select_affinity(unsigned int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
Thomas Gleixner0b534cf2011-02-06 14:33:00 +000046 struct irq_data *data = irq_get_irq_data(irq);
47 struct irq_chip *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 static int last_cpu;
49 int cpu = last_cpu + 1;
50
Thomas Gleixner0b534cf2011-02-06 14:33:00 +000051 if (!data)
52 return 1;
53 chip = irq_data_get_irq_chip(data);
54
55 if (!chip->irq_set_affinity || irq_user_affinity[irq])
Ivan Kokshaysky0595bf32006-01-06 00:12:22 -080056 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Rusty Russelld036e672009-01-01 10:12:26 +103058 while (!cpu_possible(cpu) ||
59 !cpumask_test_cpu(cpu, irq_default_affinity))
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 cpu = (cpu < (NR_CPUS-1) ? cpu + 1 : 0);
61 last_cpu = cpu;
62
Thomas Gleixner0b534cf2011-02-06 14:33:00 +000063 cpumask_copy(data->affinity, cpumask_of(cpu));
64 chip->irq_set_affinity(data, cpumask_of(cpu), false);
Ivan Kokshaysky0595bf32006-01-06 00:12:22 -080065 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#endif /* CONFIG_SMP */
68
Thomas Gleixnera6e120e2011-03-25 22:20:51 +010069int arch_show_interrupts(struct seq_file *p, int prec)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 int j;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73#ifdef CONFIG_SMP
Thomas Gleixnera6e120e2011-03-25 22:20:51 +010074 seq_puts(p, "IPI: ");
75 for_each_online_cpu(j)
76 seq_printf(p, "%10lu ", cpu_data[j].ipi_count);
77 seq_putc(p, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#endif
Thomas Gleixnera6e120e2011-03-25 22:20:51 +010079 seq_puts(p, "PMI: ");
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 return 0;
85}
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087/*
88 * handle_irq handles all normal device IRQ's (the special
89 * SMP cross-CPU interrupts have their own specific
90 * handlers).
91 */
92
93#define MAX_ILLEGAL_IRQS 16
94
95void
Al Viro3dbb8c62006-10-08 14:37:32 +010096handle_irq(int irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
98 /*
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).
104 *
105 * 0 return value means that this irq is already being
106 * handled by some other CPU. (or is disabled)
107 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 static unsigned int illegal_count=0;
Kyle McMartina891b392010-10-14 22:31:25 -0400109 struct irq_desc *desc = irq_to_desc(irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Kyle McMartina891b392010-10-14 22:31:25 -0400111 if (!desc || ((unsigned) irq > ACTUAL_NR_IRQS &&
112 illegal_count < MAX_ILLEGAL_IRQS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 irq_err_count++;
114 illegal_count++;
115 printk(KERN_CRIT "device_interrupt: invalid interrupt %d\n",
116 irq);
117 return;
118 }
119
Ivan Kokshayskyeff2c2f2006-03-09 17:33:37 -0800120 /*
Ivan Kokshayskyf5de6ec2011-01-12 22:02:24 +0000121 * From here we must proceed with IPL_MAX. Note that we do not
Ivan Kokshayskyeff2c2f2006-03-09 17:33:37 -0800122 * explicitly enable interrupts afterwards - some MILO PALcode
123 * (namely LX164 one) seems to have severe problems with RTI
124 * at IPL 0.
125 */
Ivan Kokshaysky0595bf32006-01-06 00:12:22 -0800126 local_irq_disable();
Ivan Kokshayskyf5de6ec2011-01-12 22:02:24 +0000127 irq_enter();
Kyle McMartina891b392010-10-14 22:31:25 -0400128 generic_handle_irq_desc(irq, desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 irq_exit();
130}