irq.c 4.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
/*
 *	linux/arch/alpha/kernel/irq.c
 *
 *	Copyright (C) 1995 Linus Torvalds
 *
 * This file contains the code used by various IRQ handling routines:
 * asking for different IRQ's should be done through these routines
 * instead of just grabbing them. Thus setups with different IRQ numbers
 * shouldn't result in any weird surprises, and installing new handlers
 * should be easier.
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/errno.h>
#include <linux/kernel_stat.h>
#include <linux/signal.h>
#include <linux/sched.h>
#include <linux/ptrace.h>
#include <linux/interrupt.h>
#include <linux/random.h>
#include <linux/init.h>
#include <linux/irq.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/profile.h>
#include <linux/bitops.h>

#include <asm/system.h>
#include <asm/io.h>
#include <asm/uaccess.h>

volatile unsigned long irq_err_count;
34
DEFINE_PER_CPU(unsigned long, irq_pmi_count);
L
Linus Torvalds 已提交
35

36
void ack_bad_irq(unsigned int irq)
L
Linus Torvalds 已提交
37 38 39 40 41 42 43 44
{
	irq_err_count++;
	printk(KERN_CRIT "Unexpected IRQ trap at vector %u\n", irq);
}

#ifdef CONFIG_SMP 
static char irq_user_affinity[NR_IRQS];

45
int irq_select_affinity(unsigned int irq)
L
Linus Torvalds 已提交
46
{
47 48
	struct irq_data *data = irq_get_irq_data(irq);
	struct irq_chip *chip;
L
Linus Torvalds 已提交
49 50 51
	static int last_cpu;
	int cpu = last_cpu + 1;

52 53 54 55 56
	if (!data)
		return 1;
	chip = irq_data_get_irq_chip(data);

	if (!chip->irq_set_affinity || irq_user_affinity[irq])
57
		return 1;
L
Linus Torvalds 已提交
58

R
Rusty Russell 已提交
59 60
	while (!cpu_possible(cpu) ||
	       !cpumask_test_cpu(cpu, irq_default_affinity))
L
Linus Torvalds 已提交
61 62 63
		cpu = (cpu < (NR_CPUS-1) ? cpu + 1 : 0);
	last_cpu = cpu;

64 65
	cpumask_copy(data->affinity, cpumask_of(cpu));
	chip->irq_set_affinity(data, cpumask_of(cpu), false);
66
	return 0;
L
Linus Torvalds 已提交
67 68 69 70 71 72 73
}
#endif /* CONFIG_SMP */

int
show_interrupts(struct seq_file *p, void *v)
{
	int j;
74
	int irq = *(loff_t *) v;
L
Linus Torvalds 已提交
75
	struct irqaction * action;
K
Kyle McMartin 已提交
76
	struct irq_desc *desc;
L
Linus Torvalds 已提交
77 78 79
	unsigned long flags;

#ifdef CONFIG_SMP
80
	if (irq == 0) {
L
Linus Torvalds 已提交
81
		seq_puts(p, "           ");
82 83
		for_each_online_cpu(j)
			seq_printf(p, "CPU%d       ", j);
L
Linus Torvalds 已提交
84 85 86 87
		seq_putc(p, '\n');
	}
#endif

88
	if (irq < ACTUAL_NR_IRQS) {
K
Kyle McMartin 已提交
89 90 91 92 93 94 95
		desc = irq_to_desc(irq);

		if (!desc)
			return 0;

		raw_spin_lock_irqsave(&desc->lock, flags);
		action = desc->action;
L
Linus Torvalds 已提交
96 97
		if (!action) 
			goto unlock;
98
		seq_printf(p, "%3d: ", irq);
L
Linus Torvalds 已提交
99
#ifndef CONFIG_SMP
100
		seq_printf(p, "%10u ", kstat_irqs(irq));
L
Linus Torvalds 已提交
101
#else
102
		for_each_online_cpu(j)
103
			seq_printf(p, "%10u ", kstat_irqs_cpu(irq, j));
L
Linus Torvalds 已提交
104
#endif
105
		seq_printf(p, " %14s", irq_desc_get_chip(desc)->name);
L
Linus Torvalds 已提交
106
		seq_printf(p, "  %c%s",
107
			(action->flags & IRQF_DISABLED)?'+':' ',
L
Linus Torvalds 已提交
108 109 110 111
			action->name);

		for (action=action->next; action; action = action->next) {
			seq_printf(p, ", %c%s",
112
				  (action->flags & IRQF_DISABLED)?'+':' ',
L
Linus Torvalds 已提交
113 114 115 116 117
				   action->name);
		}

		seq_putc(p, '\n');
unlock:
K
Kyle McMartin 已提交
118
		raw_spin_unlock_irqrestore(&desc->lock, flags);
119
	} else if (irq == ACTUAL_NR_IRQS) {
L
Linus Torvalds 已提交
120 121
#ifdef CONFIG_SMP
		seq_puts(p, "IPI: ");
122 123
		for_each_online_cpu(j)
			seq_printf(p, "%10lu ", cpu_data[j].ipi_count);
L
Linus Torvalds 已提交
124 125
		seq_putc(p, '\n');
#endif
126 127 128 129
		seq_puts(p, "PMI: ");
		for_each_online_cpu(j)
			seq_printf(p, "%10lu ", per_cpu(irq_pmi_count, j));
		seq_puts(p, "          Performance Monitoring\n");
L
Linus Torvalds 已提交
130 131 132 133 134 135 136 137 138 139 140 141 142 143
		seq_printf(p, "ERR: %10lu\n", irq_err_count);
	}
	return 0;
}

/*
 * handle_irq handles all normal device IRQ's (the special
 * SMP cross-CPU interrupts have their own specific
 * handlers).
 */

#define MAX_ILLEGAL_IRQS 16

void
144
handle_irq(int irq)
L
Linus Torvalds 已提交
145 146 147 148 149 150 151 152 153 154 155 156
{	
	/* 
	 * We ack quickly, we don't want the irq controller
	 * thinking we're snobs just because some other CPU has
	 * disabled global interrupts (we have already done the
	 * INT_ACK cycles, it's too late to try to pretend to the
	 * controller that we aren't taking the interrupt).
	 *
	 * 0 return value means that this irq is already being
	 * handled by some other CPU. (or is disabled)
	 */
	static unsigned int illegal_count=0;
K
Kyle McMartin 已提交
157
	struct irq_desc *desc = irq_to_desc(irq);
L
Linus Torvalds 已提交
158
	
K
Kyle McMartin 已提交
159 160
	if (!desc || ((unsigned) irq > ACTUAL_NR_IRQS &&
	    illegal_count < MAX_ILLEGAL_IRQS)) {
L
Linus Torvalds 已提交
161 162 163 164 165 166 167
		irq_err_count++;
		illegal_count++;
		printk(KERN_CRIT "device_interrupt: invalid interrupt %d\n",
		       irq);
		return;
	}

168
	/*
169
	 * From here we must proceed with IPL_MAX. Note that we do not
170 171 172 173
	 * explicitly enable interrupts afterwards - some MILO PALcode
	 * (namely LX164 one) seems to have severe problems with RTI
	 * at IPL 0.
	 */
174
	local_irq_disable();
175
	irq_enter();
K
Kyle McMartin 已提交
176
	generic_handle_irq_desc(irq, desc);
L
Linus Torvalds 已提交
177 178
	irq_exit();
}