irq.c 9.1 KB
Newer Older
1 2 3 4 5 6 7
/*
 * Common interrupt code for 32 and 64 bit
 */
#include <linux/cpu.h>
#include <linux/interrupt.h>
#include <linux/kernel_stat.h>
#include <linux/seq_file.h>
8
#include <linux/smp.h>
J
Jeremy Fitzhardinge 已提交
9
#include <linux/ftrace.h>
10

I
Ingo Molnar 已提交
11
#include <asm/apic.h>
12
#include <asm/io_apic.h>
13
#include <asm/irq.h>
J
Jeremy Fitzhardinge 已提交
14
#include <asm/idle.h>
15
#include <asm/mce.h>
16
#include <asm/hw_irq.h>
17 18 19

atomic_t irq_err_count;

20
/* Function pointer for generic interrupt vector handling */
21
void (*x86_platform_ipi_callback)(void) = NULL;
22

T
Thomas Gleixner 已提交
23 24 25 26 27 28
/*
 * 'what should we do if we get a hw irq event on an illegal vector'.
 * each architecture has to answer this themselves.
 */
void ack_bad_irq(unsigned int irq)
{
C
Cyrill Gorcunov 已提交
29 30
	if (printk_ratelimit())
		pr_err("unexpected IRQ trap at vector %02x\n", irq);
T
Thomas Gleixner 已提交
31 32 33 34 35 36 37 38 39 40

	/*
	 * Currently unexpected vectors happen only on SMP and APIC.
	 * We _must_ ack these because every local APIC has only N
	 * irq slots per priority level, and a 'hanging, unacked' IRQ
	 * holds up an irq slot - in excessive cases (when multiple
	 * unexpected vectors occur) that might lock up the APIC
	 * completely.
	 * But only ack when the APIC is enabled -AK
	 */
41
	ack_APIC_irq();
T
Thomas Gleixner 已提交
42 43
}

44
#define irq_stats(x)		(&per_cpu(irq_stat, x))
45 46 47
/*
 * /proc/interrupts printing:
 */
48
static int show_other_interrupts(struct seq_file *p, int prec)
49 50 51
{
	int j;

52
	seq_printf(p, "%*s: ", prec, "NMI");
53 54 55 56
	for_each_online_cpu(j)
		seq_printf(p, "%10u ", irq_stats(j)->__nmi_count);
	seq_printf(p, "  Non-maskable interrupts\n");
#ifdef CONFIG_X86_LOCAL_APIC
57
	seq_printf(p, "%*s: ", prec, "LOC");
58 59 60
	for_each_online_cpu(j)
		seq_printf(p, "%10u ", irq_stats(j)->apic_timer_irqs);
	seq_printf(p, "  Local timer interrupts\n");
61 62 63 64 65

	seq_printf(p, "%*s: ", prec, "SPU");
	for_each_online_cpu(j)
		seq_printf(p, "%10u ", irq_stats(j)->irq_spurious_count);
	seq_printf(p, "  Spurious interrupts\n");
66
	seq_printf(p, "%*s: ", prec, "PMI");
I
Ingo Molnar 已提交
67 68
	for_each_online_cpu(j)
		seq_printf(p, "%10u ", irq_stats(j)->apic_perf_irqs);
69
	seq_printf(p, "  Performance monitoring interrupts\n");
70
	seq_printf(p, "%*s: ", prec, "PND");
71 72 73
	for_each_online_cpu(j)
		seq_printf(p, "%10u ", irq_stats(j)->apic_pending_irqs);
	seq_printf(p, "  Performance pending work\n");
74
#endif
75
	if (x86_platform_ipi_callback) {
76
		seq_printf(p, "%*s: ", prec, "PLT");
77
		for_each_online_cpu(j)
78
			seq_printf(p, "%10u ", irq_stats(j)->x86_platform_ipis);
79 80
		seq_printf(p, "  Platform interrupts\n");
	}
81
#ifdef CONFIG_SMP
82
	seq_printf(p, "%*s: ", prec, "RES");
83 84 85
	for_each_online_cpu(j)
		seq_printf(p, "%10u ", irq_stats(j)->irq_resched_count);
	seq_printf(p, "  Rescheduling interrupts\n");
86
	seq_printf(p, "%*s: ", prec, "CAL");
87 88 89
	for_each_online_cpu(j)
		seq_printf(p, "%10u ", irq_stats(j)->irq_call_count);
	seq_printf(p, "  Function call interrupts\n");
90
	seq_printf(p, "%*s: ", prec, "TLB");
91 92 93 94
	for_each_online_cpu(j)
		seq_printf(p, "%10u ", irq_stats(j)->irq_tlb_count);
	seq_printf(p, "  TLB shootdowns\n");
#endif
95
#ifdef CONFIG_X86_THERMAL_VECTOR
96
	seq_printf(p, "%*s: ", prec, "TRM");
97 98 99
	for_each_online_cpu(j)
		seq_printf(p, "%10u ", irq_stats(j)->irq_thermal_count);
	seq_printf(p, "  Thermal event interrupts\n");
100 101
#endif
#ifdef CONFIG_X86_MCE_THRESHOLD
102
	seq_printf(p, "%*s: ", prec, "THR");
103 104 105
	for_each_online_cpu(j)
		seq_printf(p, "%10u ", irq_stats(j)->irq_threshold_count);
	seq_printf(p, "  Threshold APIC interrupts\n");
106
#endif
107
#ifdef CONFIG_X86_MCE
108 109 110 111
	seq_printf(p, "%*s: ", prec, "MCE");
	for_each_online_cpu(j)
		seq_printf(p, "%10u ", per_cpu(mce_exception_count, j));
	seq_printf(p, "  Machine check exceptions\n");
112 113 114 115
	seq_printf(p, "%*s: ", prec, "MCP");
	for_each_online_cpu(j)
		seq_printf(p, "%10u ", per_cpu(mce_poll_count, j));
	seq_printf(p, "  Machine check polls\n");
116
#endif
117
	seq_printf(p, "%*s: %10u\n", prec, "ERR", atomic_read(&irq_err_count));
118
#if defined(CONFIG_X86_IO_APIC)
119
	seq_printf(p, "%*s: %10u\n", prec, "MIS", atomic_read(&irq_mis_count));
120 121 122 123 124 125 126
#endif
	return 0;
}

int show_interrupts(struct seq_file *p, void *v)
{
	unsigned long flags, any_count = 0;
127
	int i = *(loff_t *) v, j, prec;
128 129 130 131 132 133
	struct irqaction *action;
	struct irq_desc *desc;

	if (i > nr_irqs)
		return 0;

134 135 136
	for (prec = 3, j = 1000; prec < 10 && j <= nr_irqs; ++prec)
		j *= 10;

137
	if (i == nr_irqs)
138
		return show_other_interrupts(p, prec);
139 140 141

	/* print header */
	if (i == 0) {
142
		seq_printf(p, "%*s", prec + 8, "");
143
		for_each_online_cpu(j)
144
			seq_printf(p, "CPU%-8d", j);
145 146 147 148
		seq_putc(p, '\n');
	}

	desc = irq_to_desc(i);
149 150 151
	if (!desc)
		return 0;

152
	raw_spin_lock_irqsave(&desc->lock, flags);
153 154 155 156 157 158
	for_each_online_cpu(j)
		any_count |= kstat_irqs_cpu(i, j);
	action = desc->action;
	if (!action && !any_count)
		goto out;

159
	seq_printf(p, "%*d: ", prec, i);
160 161 162 163 164 165 166 167 168 169 170 171 172
	for_each_online_cpu(j)
		seq_printf(p, "%10u ", kstat_irqs_cpu(i, j));
	seq_printf(p, " %8s", desc->chip->name);
	seq_printf(p, "-%-8s", desc->name);

	if (action) {
		seq_printf(p, "  %s", action->name);
		while ((action = action->next) != NULL)
			seq_printf(p, ", %s", action->name);
	}

	seq_putc(p, '\n');
out:
173
	raw_spin_unlock_irqrestore(&desc->lock, flags);
174 175 176 177 178 179 180 181 182 183 184 185
	return 0;
}

/*
 * /proc/stat helpers
 */
u64 arch_irq_stat_cpu(unsigned int cpu)
{
	u64 sum = irq_stats(cpu)->__nmi_count;

#ifdef CONFIG_X86_LOCAL_APIC
	sum += irq_stats(cpu)->apic_timer_irqs;
186
	sum += irq_stats(cpu)->irq_spurious_count;
I
Ingo Molnar 已提交
187
	sum += irq_stats(cpu)->apic_perf_irqs;
188
	sum += irq_stats(cpu)->apic_pending_irqs;
189
#endif
190 191
	if (x86_platform_ipi_callback)
		sum += irq_stats(cpu)->x86_platform_ipis;
192 193 194 195 196
#ifdef CONFIG_SMP
	sum += irq_stats(cpu)->irq_resched_count;
	sum += irq_stats(cpu)->irq_call_count;
	sum += irq_stats(cpu)->irq_tlb_count;
#endif
197
#ifdef CONFIG_X86_THERMAL_VECTOR
198
	sum += irq_stats(cpu)->irq_thermal_count;
199 200
#endif
#ifdef CONFIG_X86_MCE_THRESHOLD
201
	sum += irq_stats(cpu)->irq_threshold_count;
H
Hidetoshi Seto 已提交
202
#endif
203
#ifdef CONFIG_X86_MCE
H
Hidetoshi Seto 已提交
204 205
	sum += per_cpu(mce_exception_count, cpu);
	sum += per_cpu(mce_poll_count, cpu);
206 207 208 209 210 211 212 213 214 215 216 217 218
#endif
	return sum;
}

u64 arch_irq_stat(void)
{
	u64 sum = atomic_read(&irq_err_count);

#ifdef CONFIG_X86_IO_APIC
	sum += atomic_read(&irq_mis_count);
#endif
	return sum;
}
219

J
Jeremy Fitzhardinge 已提交
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239

/*
 * do_IRQ handles all normal device IRQ's (the special
 * SMP cross-CPU interrupts have their own specific
 * handlers).
 */
unsigned int __irq_entry do_IRQ(struct pt_regs *regs)
{
	struct pt_regs *old_regs = set_irq_regs(regs);

	/* high bit used in ret_from_ code  */
	unsigned vector = ~regs->orig_ax;
	unsigned irq;

	exit_idle();
	irq_enter();

	irq = __get_cpu_var(vector_irq)[vector];

	if (!handle_irq(irq, regs)) {
240
		ack_APIC_irq();
J
Jeremy Fitzhardinge 已提交
241 242

		if (printk_ratelimit())
C
Cyrill Gorcunov 已提交
243 244
			pr_emerg("%s: %d.%d No irq handler for vector (irq %d)\n",
				__func__, smp_processor_id(), vector, irq);
J
Jeremy Fitzhardinge 已提交
245 246 247 248 249 250 251 252
	}

	irq_exit();

	set_irq_regs(old_regs);
	return 1;
}

253
/*
254
 * Handler for X86_PLATFORM_IPI_VECTOR.
255
 */
256
void smp_x86_platform_ipi(struct pt_regs *regs)
257 258 259 260 261 262 263 264 265
{
	struct pt_regs *old_regs = set_irq_regs(regs);

	ack_APIC_irq();

	exit_idle();

	irq_enter();

266
	inc_irq_stat(x86_platform_ipis);
267

268 269
	if (x86_platform_ipi_callback)
		x86_platform_ipi_callback();
270 271 272 273 274 275

	irq_exit();

	set_irq_regs(old_regs);
}

276
EXPORT_SYMBOL_GPL(vector_used_by_percpu_irq);
277 278 279 280 281

#ifdef CONFIG_HOTPLUG_CPU
/* A cpu has been removed from cpu_online_mask.  Reset irq affinities. */
void fixup_irqs(void)
{
282
	unsigned int irq, vector;
283 284 285 286 287 288 289 290 291 292 293 294 295 296
	static int warned;
	struct irq_desc *desc;

	for_each_irq_desc(irq, desc) {
		int break_affinity = 0;
		int set_affinity = 1;
		const struct cpumask *affinity;

		if (!desc)
			continue;
		if (irq == 2)
			continue;

		/* interrupt's are disabled at this point */
297
		raw_spin_lock(&desc->lock);
298 299 300 301

		affinity = desc->affinity;
		if (!irq_has_action(irq) ||
		    cpumask_equal(affinity, cpu_online_mask)) {
302
			raw_spin_unlock(&desc->lock);
303 304 305
			continue;
		}

306 307 308 309 310 311 312
		/*
		 * Complete the irq move. This cpu is going down and for
		 * non intr-remapping case, we can't wait till this interrupt
		 * arrives at this cpu before completing the irq move.
		 */
		irq_force_complete_move(irq);

313 314 315 316 317
		if (cpumask_any_and(affinity, cpu_online_mask) >= nr_cpu_ids) {
			break_affinity = 1;
			affinity = cpu_all_mask;
		}

318
		if (!(desc->status & IRQ_MOVE_PCNTXT) && desc->chip->mask)
319 320 321 322 323 324 325
			desc->chip->mask(irq);

		if (desc->chip->set_affinity)
			desc->chip->set_affinity(irq, affinity);
		else if (!(warned++))
			set_affinity = 0;

326
		if (!(desc->status & IRQ_MOVE_PCNTXT) && desc->chip->unmask)
327 328
			desc->chip->unmask(irq);

329
		raw_spin_unlock(&desc->lock);
330 331 332 333 334 335 336

		if (break_affinity && set_affinity)
			printk("Broke affinity for irq %i\n", irq);
		else if (!set_affinity)
			printk("Cannot set affinity for irq %i\n", irq);
	}

337 338 339 340 341 342 343 344 345
	/*
	 * We can remove mdelay() and then send spuriuous interrupts to
	 * new cpu targets for all the irqs that were handled previously by
	 * this cpu. While it works, I have seen spurious interrupt messages
	 * (nothing wrong but still...).
	 *
	 * So for now, retain mdelay(1) and check the IRR and then send those
	 * interrupts to new targets as this cpu is already offlined...
	 */
346
	mdelay(1);
347 348 349 350 351 352 353 354 355 356 357 358

	for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
		unsigned int irr;

		if (__get_cpu_var(vector_irq)[vector] < 0)
			continue;

		irr = apic_read(APIC_IRR + (vector / 32 * 0x10));
		if (irr  & (1 << (vector % 32))) {
			irq = __get_cpu_var(vector_irq)[vector];

			desc = irq_to_desc(irq);
359
			raw_spin_lock(&desc->lock);
360 361
			if (desc->chip->retrigger)
				desc->chip->retrigger(irq);
362
			raw_spin_unlock(&desc->lock);
363 364
		}
	}
365 366
}
#endif