irq.c 8.2 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
#include <linux/delay.h>
12

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

atomic_t irq_err_count;

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

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

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

46
#define irq_stats(x)		(&per_cpu(irq_stat, x))
47
/*
48
 * /proc/interrupts printing for arch specific interrupts
49
 */
50
int arch_show_interrupts(struct seq_file *p, int prec)
51 52 53
{
	int j;

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

	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");
68
	seq_printf(p, "%*s: ", prec, "PMI");
I
Ingo Molnar 已提交
69 70
	for_each_online_cpu(j)
		seq_printf(p, "%10u ", irq_stats(j)->apic_perf_irqs);
71
	seq_printf(p, "  Performance monitoring interrupts\n");
72
	seq_printf(p, "%*s: ", prec, "IWI");
73
	for_each_online_cpu(j)
74 75
		seq_printf(p, "%10u ", irq_stats(j)->apic_irq_work_irqs);
	seq_printf(p, "  IRQ work interrupts\n");
76
#endif
77
	if (x86_platform_ipi_callback) {
78
		seq_printf(p, "%*s: ", prec, "PLT");
79
		for_each_online_cpu(j)
80
			seq_printf(p, "%10u ", irq_stats(j)->x86_platform_ipis);
81 82
		seq_printf(p, "  Platform interrupts\n");
	}
83
#ifdef CONFIG_SMP
84
	seq_printf(p, "%*s: ", prec, "RES");
85 86 87
	for_each_online_cpu(j)
		seq_printf(p, "%10u ", irq_stats(j)->irq_resched_count);
	seq_printf(p, "  Rescheduling interrupts\n");
88
	seq_printf(p, "%*s: ", prec, "CAL");
89 90 91
	for_each_online_cpu(j)
		seq_printf(p, "%10u ", irq_stats(j)->irq_call_count);
	seq_printf(p, "  Function call interrupts\n");
92
	seq_printf(p, "%*s: ", prec, "TLB");
93 94 95 96
	for_each_online_cpu(j)
		seq_printf(p, "%10u ", irq_stats(j)->irq_tlb_count);
	seq_printf(p, "  TLB shootdowns\n");
#endif
97
#ifdef CONFIG_X86_THERMAL_VECTOR
98
	seq_printf(p, "%*s: ", prec, "TRM");
99 100 101
	for_each_online_cpu(j)
		seq_printf(p, "%10u ", irq_stats(j)->irq_thermal_count);
	seq_printf(p, "  Thermal event interrupts\n");
102 103
#endif
#ifdef CONFIG_X86_MCE_THRESHOLD
104
	seq_printf(p, "%*s: ", prec, "THR");
105 106 107
	for_each_online_cpu(j)
		seq_printf(p, "%10u ", irq_stats(j)->irq_threshold_count);
	seq_printf(p, "  Threshold APIC interrupts\n");
108
#endif
109
#ifdef CONFIG_X86_MCE
110 111 112 113
	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");
114 115 116 117
	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");
118
#endif
119
	seq_printf(p, "%*s: %10u\n", prec, "ERR", atomic_read(&irq_err_count));
120
#if defined(CONFIG_X86_IO_APIC)
121
	seq_printf(p, "%*s: %10u\n", prec, "MIS", atomic_read(&irq_mis_count));
122 123 124 125 126 127 128 129 130 131 132 133 134
#endif
	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;
135
	sum += irq_stats(cpu)->irq_spurious_count;
I
Ingo Molnar 已提交
136
	sum += irq_stats(cpu)->apic_perf_irqs;
137
	sum += irq_stats(cpu)->apic_irq_work_irqs;
138
#endif
139 140
	if (x86_platform_ipi_callback)
		sum += irq_stats(cpu)->x86_platform_ipis;
141 142 143 144 145
#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
146
#ifdef CONFIG_X86_THERMAL_VECTOR
147
	sum += irq_stats(cpu)->irq_thermal_count;
148 149
#endif
#ifdef CONFIG_X86_MCE_THRESHOLD
150
	sum += irq_stats(cpu)->irq_threshold_count;
H
Hidetoshi Seto 已提交
151
#endif
152
#ifdef CONFIG_X86_MCE
H
Hidetoshi Seto 已提交
153 154
	sum += per_cpu(mce_exception_count, cpu);
	sum += per_cpu(mce_poll_count, cpu);
155 156 157 158 159 160 161 162 163 164 165 166 167
#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;
}
168

J
Jeremy Fitzhardinge 已提交
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185

/*
 * 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 已提交
186
	irq = __this_cpu_read(vector_irq[vector]);
J
Jeremy Fitzhardinge 已提交
187 188

	if (!handle_irq(irq, regs)) {
189
		ack_APIC_irq();
J
Jeremy Fitzhardinge 已提交
190 191

		if (printk_ratelimit())
C
Cyrill Gorcunov 已提交
192 193
			pr_emerg("%s: %d.%d No irq handler for vector (irq %d)\n",
				__func__, smp_processor_id(), vector, irq);
J
Jeremy Fitzhardinge 已提交
194 195 196 197 198 199 200 201
	}

	irq_exit();

	set_irq_regs(old_regs);
	return 1;
}

202
/*
203
 * Handler for X86_PLATFORM_IPI_VECTOR.
204
 */
205
void smp_x86_platform_ipi(struct pt_regs *regs)
206 207 208 209 210 211 212 213 214
{
	struct pt_regs *old_regs = set_irq_regs(regs);

	ack_APIC_irq();

	exit_idle();

	irq_enter();

215
	inc_irq_stat(x86_platform_ipis);
216

217 218
	if (x86_platform_ipi_callback)
		x86_platform_ipi_callback();
219 220 221 222 223 224

	irq_exit();

	set_irq_regs(old_regs);
}

225
EXPORT_SYMBOL_GPL(vector_used_by_percpu_irq);
226 227 228 229 230

#ifdef CONFIG_HOTPLUG_CPU
/* A cpu has been removed from cpu_online_mask.  Reset irq affinities. */
void fixup_irqs(void)
{
231
	unsigned int irq, vector;
232 233
	static int warned;
	struct irq_desc *desc;
234
	struct irq_data *data;
235
	struct irq_chip *chip;
236 237 238 239 240 241 242 243 244 245 246 247

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

250
		data = irq_desc_get_irq_data(desc);
251
		affinity = data->affinity;
252
		if (!irq_has_action(irq) ||
253
		    cpumask_subset(affinity, cpu_online_mask)) {
254
			raw_spin_unlock(&desc->lock);
255 256 257
			continue;
		}

258 259 260 261 262 263 264
		/*
		 * 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);

265 266 267 268 269
		if (cpumask_any_and(affinity, cpu_online_mask) >= nr_cpu_ids) {
			break_affinity = 1;
			affinity = cpu_all_mask;
		}

270 271 272
		chip = irq_data_get_irq_chip(data);
		if (!irqd_can_move_in_process_context(data) && chip->irq_mask)
			chip->irq_mask(data);
273

274 275
		if (chip->irq_set_affinity)
			chip->irq_set_affinity(data, affinity, true);
276 277 278
		else if (!(warned++))
			set_affinity = 0;

279 280
		if (!irqd_can_move_in_process_context(data) && chip->irq_unmask)
			chip->irq_unmask(data);
281

282
		raw_spin_unlock(&desc->lock);
283 284 285 286 287 288 289

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

290 291 292 293 294 295 296 297 298
	/*
	 * 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...
	 */
299
	mdelay(1);
300 301 302 303

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

T
Tejun Heo 已提交
304
		if (__this_cpu_read(vector_irq[vector]) < 0)
305 306 307 308
			continue;

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

311
			desc = irq_to_desc(irq);
312 313
			data = irq_desc_get_irq_data(desc);
			chip = irq_data_get_irq_chip(data);
314
			raw_spin_lock(&desc->lock);
315 316
			if (chip->irq_retrigger)
				chip->irq_retrigger(data);
317
			raw_spin_unlock(&desc->lock);
318 319
		}
	}
320 321
}
#endif