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

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

atomic_t irq_err_count;

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

T
Thomas Gleixner 已提交
24 25 26 27 28 29
/*
 * '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 已提交
30 31
	if (printk_ratelimit())
		pr_err("unexpected IRQ trap at vector %02x\n", irq);
T
Thomas Gleixner 已提交
32 33 34 35 36 37 38 39 40 41

	/*
	 * 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
	 */
42
	ack_APIC_irq();
T
Thomas Gleixner 已提交
43 44
}

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

53
	seq_printf(p, "%*s: ", prec, "NMI");
54 55 56 57
	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
58
	seq_printf(p, "%*s: ", prec, "LOC");
59 60 61
	for_each_online_cpu(j)
		seq_printf(p, "%10u ", irq_stats(j)->apic_timer_irqs);
	seq_printf(p, "  Local timer interrupts\n");
62 63 64 65 66

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

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

	if (i > nr_irqs)
		return 0;

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

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

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

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

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

160
	seq_printf(p, "%*d: ", prec, i);
161 162
	for_each_online_cpu(j)
		seq_printf(p, "%10u ", kstat_irqs_cpu(i, j));
163
	seq_printf(p, " %8s", desc->irq_data.chip->name);
164 165 166 167 168 169 170 171 172 173
	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:
174
	raw_spin_unlock_irqrestore(&desc->lock, flags);
175 176 177 178 179 180 181 182 183 184 185 186
	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;
187
	sum += irq_stats(cpu)->irq_spurious_count;
I
Ingo Molnar 已提交
188
	sum += irq_stats(cpu)->apic_perf_irqs;
189
	sum += irq_stats(cpu)->apic_irq_work_irqs;
190
#endif
191 192
	if (x86_platform_ipi_callback)
		sum += irq_stats(cpu)->x86_platform_ipis;
193 194 195 196 197
#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
198
#ifdef CONFIG_X86_THERMAL_VECTOR
199
	sum += irq_stats(cpu)->irq_thermal_count;
200 201
#endif
#ifdef CONFIG_X86_MCE_THRESHOLD
202
	sum += irq_stats(cpu)->irq_threshold_count;
H
Hidetoshi Seto 已提交
203
#endif
204
#ifdef CONFIG_X86_MCE
H
Hidetoshi Seto 已提交
205 206
	sum += per_cpu(mce_exception_count, cpu);
	sum += per_cpu(mce_poll_count, cpu);
207 208 209 210 211 212 213 214 215 216 217 218 219
#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;
}
220

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

/*
 * 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();

T
Tejun Heo 已提交
238
	irq = __this_cpu_read(vector_irq[vector]);
J
Jeremy Fitzhardinge 已提交
239 240

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

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

	irq_exit();

	set_irq_regs(old_regs);
	return 1;
}

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

	ack_APIC_irq();

	exit_idle();

	irq_enter();

267
	inc_irq_stat(x86_platform_ipis);
268

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

	irq_exit();

	set_irq_regs(old_regs);
}

277
EXPORT_SYMBOL_GPL(vector_used_by_percpu_irq);
278

279 280 281 282 283 284 285 286 287
#ifdef CONFIG_OF
unsigned int irq_create_of_mapping(struct device_node *controller,
		const u32 *intspec, unsigned int intsize)
{
	return intspec[0];
}
EXPORT_SYMBOL_GPL(irq_create_of_mapping);
#endif

288 289 290 291
#ifdef CONFIG_HOTPLUG_CPU
/* A cpu has been removed from cpu_online_mask.  Reset irq affinities. */
void fixup_irqs(void)
{
292
	unsigned int irq, vector;
293 294
	static int warned;
	struct irq_desc *desc;
295
	struct irq_data *data;
296 297 298 299 300 301 302 303 304 305 306 307

	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 */
308
		raw_spin_lock(&desc->lock);
309

310 311
		data = &desc->irq_data;
		affinity = data->affinity;
312 313
		if (!irq_has_action(irq) ||
		    cpumask_equal(affinity, cpu_online_mask)) {
314
			raw_spin_unlock(&desc->lock);
315 316 317
			continue;
		}

318 319 320 321 322 323 324
		/*
		 * 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);

325 326 327 328 329
		if (cpumask_any_and(affinity, cpu_online_mask) >= nr_cpu_ids) {
			break_affinity = 1;
			affinity = cpu_all_mask;
		}

330 331
		if (!(desc->status & IRQ_MOVE_PCNTXT) && data->chip->irq_mask)
			data->chip->irq_mask(data);
332

333 334
		if (data->chip->irq_set_affinity)
			data->chip->irq_set_affinity(data, affinity, true);
335 336 337
		else if (!(warned++))
			set_affinity = 0;

338 339
		if (!(desc->status & IRQ_MOVE_PCNTXT) && data->chip->irq_unmask)
			data->chip->irq_unmask(data);
340

341
		raw_spin_unlock(&desc->lock);
342 343 344 345 346 347 348

		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);
	}

349 350 351 352 353 354 355 356 357
	/*
	 * 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...
	 */
358
	mdelay(1);
359 360 361 362

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

T
Tejun Heo 已提交
363
		if (__this_cpu_read(vector_irq[vector]) < 0)
364 365 366 367
			continue;

		irr = apic_read(APIC_IRR + (vector / 32 * 0x10));
		if (irr  & (1 << (vector % 32))) {
T
Tejun Heo 已提交
368
			irq = __this_cpu_read(vector_irq[vector]);
369

370 371
			desc = irq_to_desc(irq);
			data = &desc->irq_data;
372
			raw_spin_lock(&desc->lock);
373 374
			if (data->chip->irq_retrigger)
				data->chip->irq_retrigger(data);
375
			raw_spin_unlock(&desc->lock);
376 377
		}
	}
378 379
}
#endif