| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 1 | /* | 
 | 2 |  * Common interrupt code for 32 and 64 bit | 
 | 3 |  */ | 
 | 4 | #include <linux/cpu.h> | 
 | 5 | #include <linux/interrupt.h> | 
 | 6 | #include <linux/kernel_stat.h> | 
 | 7 | #include <linux/seq_file.h> | 
| Jaswinder Singh Rajput | 6a02e71 | 2009-01-04 16:22:17 +0530 | [diff] [blame] | 8 | #include <linux/smp.h> | 
| Jeremy Fitzhardinge | 7c1d7cd | 2009-02-06 14:09:41 -0800 | [diff] [blame] | 9 | #include <linux/ftrace.h> | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 10 |  | 
| Ingo Molnar | 7b6aa33 | 2009-02-17 13:58:15 +0100 | [diff] [blame] | 11 | #include <asm/apic.h> | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 12 | #include <asm/io_apic.h> | 
| Ingo Molnar | c3d8000 | 2008-12-23 15:15:17 +0100 | [diff] [blame] | 13 | #include <asm/irq.h> | 
| Jeremy Fitzhardinge | 7c1d7cd | 2009-02-06 14:09:41 -0800 | [diff] [blame] | 14 | #include <asm/idle.h> | 
| Andi Kleen | 01ca79f | 2009-05-27 21:56:52 +0200 | [diff] [blame] | 15 | #include <asm/mce.h> | 
| Jaswinder Singh Rajput | 2c1b284 | 2009-04-11 00:03:10 +0530 | [diff] [blame] | 16 | #include <asm/hw_irq.h> | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 17 |  | 
 | 18 | atomic_t irq_err_count; | 
 | 19 |  | 
| Dimitri Sivanich | acaabe7 | 2009-03-04 12:56:05 -0600 | [diff] [blame] | 20 | /* Function pointer for generic interrupt vector handling */ | 
| Dimitri Sivanich | 4a4de9c | 2009-10-14 09:22:57 -0500 | [diff] [blame] | 21 | void (*x86_platform_ipi_callback)(void) = NULL; | 
| Dimitri Sivanich | acaabe7 | 2009-03-04 12:56:05 -0600 | [diff] [blame] | 22 |  | 
| Thomas Gleixner | 249f6d9 | 2008-10-16 12:18:50 +0200 | [diff] [blame] | 23 | /* | 
 | 24 |  * 'what should we do if we get a hw irq event on an illegal vector'. | 
 | 25 |  * each architecture has to answer this themselves. | 
 | 26 |  */ | 
 | 27 | void ack_bad_irq(unsigned int irq) | 
 | 28 | { | 
| Cyrill Gorcunov | edea714 | 2009-04-12 20:47:39 +0400 | [diff] [blame] | 29 | 	if (printk_ratelimit()) | 
 | 30 | 		pr_err("unexpected IRQ trap at vector %02x\n", irq); | 
| Thomas Gleixner | 249f6d9 | 2008-10-16 12:18:50 +0200 | [diff] [blame] | 31 |  | 
| Thomas Gleixner | 249f6d9 | 2008-10-16 12:18:50 +0200 | [diff] [blame] | 32 | 	/* | 
 | 33 | 	 * Currently unexpected vectors happen only on SMP and APIC. | 
 | 34 | 	 * We _must_ ack these because every local APIC has only N | 
 | 35 | 	 * irq slots per priority level, and a 'hanging, unacked' IRQ | 
 | 36 | 	 * holds up an irq slot - in excessive cases (when multiple | 
 | 37 | 	 * unexpected vectors occur) that might lock up the APIC | 
 | 38 | 	 * completely. | 
 | 39 | 	 * But only ack when the APIC is enabled -AK | 
 | 40 | 	 */ | 
| Cyrill Gorcunov | 08306ce | 2009-04-12 20:47:41 +0400 | [diff] [blame] | 41 | 	ack_APIC_irq(); | 
| Thomas Gleixner | 249f6d9 | 2008-10-16 12:18:50 +0200 | [diff] [blame] | 42 | } | 
 | 43 |  | 
| Brian Gerst | 1b437c8 | 2009-01-19 00:38:57 +0900 | [diff] [blame] | 44 | #define irq_stats(x)		(&per_cpu(irq_stat, x)) | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 45 | /* | 
 | 46 |  * /proc/interrupts printing: | 
 | 47 |  */ | 
| Jan Beulich | 7a81d9a | 2009-03-12 12:45:15 +0000 | [diff] [blame] | 48 | static int show_other_interrupts(struct seq_file *p, int prec) | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 49 | { | 
 | 50 | 	int j; | 
 | 51 |  | 
| Jan Beulich | 7a81d9a | 2009-03-12 12:45:15 +0000 | [diff] [blame] | 52 | 	seq_printf(p, "%*s: ", prec, "NMI"); | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 53 | 	for_each_online_cpu(j) | 
 | 54 | 		seq_printf(p, "%10u ", irq_stats(j)->__nmi_count); | 
 | 55 | 	seq_printf(p, "  Non-maskable interrupts\n"); | 
 | 56 | #ifdef CONFIG_X86_LOCAL_APIC | 
| Jan Beulich | 7a81d9a | 2009-03-12 12:45:15 +0000 | [diff] [blame] | 57 | 	seq_printf(p, "%*s: ", prec, "LOC"); | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 58 | 	for_each_online_cpu(j) | 
 | 59 | 		seq_printf(p, "%10u ", irq_stats(j)->apic_timer_irqs); | 
 | 60 | 	seq_printf(p, "  Local timer interrupts\n"); | 
| Jaswinder Singh Rajput | 474e56b | 2009-03-23 02:08:34 +0530 | [diff] [blame] | 61 |  | 
 | 62 | 	seq_printf(p, "%*s: ", prec, "SPU"); | 
 | 63 | 	for_each_online_cpu(j) | 
 | 64 | 		seq_printf(p, "%10u ", irq_stats(j)->irq_spurious_count); | 
 | 65 | 	seq_printf(p, "  Spurious interrupts\n"); | 
| Li Hong | 89ccf46 | 2009-10-14 18:50:39 +0800 | [diff] [blame] | 66 | 	seq_printf(p, "%*s: ", prec, "PMI"); | 
| Ingo Molnar | 241771e | 2008-12-03 10:39:53 +0100 | [diff] [blame] | 67 | 	for_each_online_cpu(j) | 
 | 68 | 		seq_printf(p, "%10u ", irq_stats(j)->apic_perf_irqs); | 
| Li Hong | 89ccf46 | 2009-10-14 18:50:39 +0800 | [diff] [blame] | 69 | 	seq_printf(p, "  Performance monitoring interrupts\n"); | 
| Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 70 | 	seq_printf(p, "%*s: ", prec, "IWI"); | 
| Peter Zijlstra | b6276f3 | 2009-04-06 11:45:03 +0200 | [diff] [blame] | 71 | 	for_each_online_cpu(j) | 
| Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 72 | 		seq_printf(p, "%10u ", irq_stats(j)->apic_irq_work_irqs); | 
 | 73 | 	seq_printf(p, "  IRQ work interrupts\n"); | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 74 | #endif | 
| Dimitri Sivanich | 4a4de9c | 2009-10-14 09:22:57 -0500 | [diff] [blame] | 75 | 	if (x86_platform_ipi_callback) { | 
| Hidetoshi Seto | 59d1381 | 2009-03-25 10:50:34 +0900 | [diff] [blame] | 76 | 		seq_printf(p, "%*s: ", prec, "PLT"); | 
| Dimitri Sivanich | acaabe7 | 2009-03-04 12:56:05 -0600 | [diff] [blame] | 77 | 		for_each_online_cpu(j) | 
| Dimitri Sivanich | 4a4de9c | 2009-10-14 09:22:57 -0500 | [diff] [blame] | 78 | 			seq_printf(p, "%10u ", irq_stats(j)->x86_platform_ipis); | 
| Dimitri Sivanich | acaabe7 | 2009-03-04 12:56:05 -0600 | [diff] [blame] | 79 | 		seq_printf(p, "  Platform interrupts\n"); | 
 | 80 | 	} | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 81 | #ifdef CONFIG_SMP | 
| Jan Beulich | 7a81d9a | 2009-03-12 12:45:15 +0000 | [diff] [blame] | 82 | 	seq_printf(p, "%*s: ", prec, "RES"); | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 83 | 	for_each_online_cpu(j) | 
 | 84 | 		seq_printf(p, "%10u ", irq_stats(j)->irq_resched_count); | 
 | 85 | 	seq_printf(p, "  Rescheduling interrupts\n"); | 
| Jan Beulich | 7a81d9a | 2009-03-12 12:45:15 +0000 | [diff] [blame] | 86 | 	seq_printf(p, "%*s: ", prec, "CAL"); | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 87 | 	for_each_online_cpu(j) | 
 | 88 | 		seq_printf(p, "%10u ", irq_stats(j)->irq_call_count); | 
 | 89 | 	seq_printf(p, "  Function call interrupts\n"); | 
| Jan Beulich | 7a81d9a | 2009-03-12 12:45:15 +0000 | [diff] [blame] | 90 | 	seq_printf(p, "%*s: ", prec, "TLB"); | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 91 | 	for_each_online_cpu(j) | 
 | 92 | 		seq_printf(p, "%10u ", irq_stats(j)->irq_tlb_count); | 
 | 93 | 	seq_printf(p, "  TLB shootdowns\n"); | 
 | 94 | #endif | 
| Jan Beulich | 0444c9b | 2009-11-20 14:03:05 +0000 | [diff] [blame] | 95 | #ifdef CONFIG_X86_THERMAL_VECTOR | 
| Jan Beulich | 7a81d9a | 2009-03-12 12:45:15 +0000 | [diff] [blame] | 96 | 	seq_printf(p, "%*s: ", prec, "TRM"); | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 97 | 	for_each_online_cpu(j) | 
 | 98 | 		seq_printf(p, "%10u ", irq_stats(j)->irq_thermal_count); | 
 | 99 | 	seq_printf(p, "  Thermal event interrupts\n"); | 
| Jan Beulich | 0444c9b | 2009-11-20 14:03:05 +0000 | [diff] [blame] | 100 | #endif | 
 | 101 | #ifdef CONFIG_X86_MCE_THRESHOLD | 
| Jan Beulich | 7a81d9a | 2009-03-12 12:45:15 +0000 | [diff] [blame] | 102 | 	seq_printf(p, "%*s: ", prec, "THR"); | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 103 | 	for_each_online_cpu(j) | 
 | 104 | 		seq_printf(p, "%10u ", irq_stats(j)->irq_threshold_count); | 
 | 105 | 	seq_printf(p, "  Threshold APIC interrupts\n"); | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 106 | #endif | 
| Andi Kleen | c1ebf83 | 2009-07-09 00:31:41 +0200 | [diff] [blame] | 107 | #ifdef CONFIG_X86_MCE | 
| Andi Kleen | 01ca79f | 2009-05-27 21:56:52 +0200 | [diff] [blame] | 108 | 	seq_printf(p, "%*s: ", prec, "MCE"); | 
 | 109 | 	for_each_online_cpu(j) | 
 | 110 | 		seq_printf(p, "%10u ", per_cpu(mce_exception_count, j)); | 
 | 111 | 	seq_printf(p, "  Machine check exceptions\n"); | 
| Andi Kleen | ca84f69 | 2009-05-27 21:56:57 +0200 | [diff] [blame] | 112 | 	seq_printf(p, "%*s: ", prec, "MCP"); | 
 | 113 | 	for_each_online_cpu(j) | 
 | 114 | 		seq_printf(p, "%10u ", per_cpu(mce_poll_count, j)); | 
 | 115 | 	seq_printf(p, "  Machine check polls\n"); | 
| Andi Kleen | 01ca79f | 2009-05-27 21:56:52 +0200 | [diff] [blame] | 116 | #endif | 
| Jan Beulich | 7a81d9a | 2009-03-12 12:45:15 +0000 | [diff] [blame] | 117 | 	seq_printf(p, "%*s: %10u\n", prec, "ERR", atomic_read(&irq_err_count)); | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 118 | #if defined(CONFIG_X86_IO_APIC) | 
| Jan Beulich | 7a81d9a | 2009-03-12 12:45:15 +0000 | [diff] [blame] | 119 | 	seq_printf(p, "%*s: %10u\n", prec, "MIS", atomic_read(&irq_mis_count)); | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 120 | #endif | 
 | 121 | 	return 0; | 
 | 122 | } | 
 | 123 |  | 
 | 124 | int show_interrupts(struct seq_file *p, void *v) | 
 | 125 | { | 
 | 126 | 	unsigned long flags, any_count = 0; | 
| Jan Beulich | 7a81d9a | 2009-03-12 12:45:15 +0000 | [diff] [blame] | 127 | 	int i = *(loff_t *) v, j, prec; | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 128 | 	struct irqaction *action; | 
 | 129 | 	struct irq_desc *desc; | 
 | 130 |  | 
 | 131 | 	if (i > nr_irqs) | 
 | 132 | 		return 0; | 
 | 133 |  | 
| Jan Beulich | 7a81d9a | 2009-03-12 12:45:15 +0000 | [diff] [blame] | 134 | 	for (prec = 3, j = 1000; prec < 10 && j <= nr_irqs; ++prec) | 
 | 135 | 		j *= 10; | 
 | 136 |  | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 137 | 	if (i == nr_irqs) | 
| Jan Beulich | 7a81d9a | 2009-03-12 12:45:15 +0000 | [diff] [blame] | 138 | 		return show_other_interrupts(p, prec); | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 139 |  | 
 | 140 | 	/* print header */ | 
 | 141 | 	if (i == 0) { | 
| Jan Beulich | 7a81d9a | 2009-03-12 12:45:15 +0000 | [diff] [blame] | 142 | 		seq_printf(p, "%*s", prec + 8, ""); | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 143 | 		for_each_online_cpu(j) | 
| Ingo Molnar | e9f95e6 | 2008-10-21 15:49:59 +0200 | [diff] [blame] | 144 | 			seq_printf(p, "CPU%-8d", j); | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 145 | 		seq_putc(p, '\n'); | 
 | 146 | 	} | 
 | 147 |  | 
 | 148 | 	desc = irq_to_desc(i); | 
| Yinghai Lu | 0b8f1ef | 2008-12-05 18:58:31 -0800 | [diff] [blame] | 149 | 	if (!desc) | 
 | 150 | 		return 0; | 
 | 151 |  | 
| Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 152 | 	raw_spin_lock_irqsave(&desc->lock, flags); | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 153 | 	for_each_online_cpu(j) | 
 | 154 | 		any_count |= kstat_irqs_cpu(i, j); | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 155 | 	action = desc->action; | 
 | 156 | 	if (!action && !any_count) | 
 | 157 | 		goto out; | 
 | 158 |  | 
| Jan Beulich | 7a81d9a | 2009-03-12 12:45:15 +0000 | [diff] [blame] | 159 | 	seq_printf(p, "%*d: ", prec, i); | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 160 | 	for_each_online_cpu(j) | 
 | 161 | 		seq_printf(p, "%10u ", kstat_irqs_cpu(i, j)); | 
| Thomas Gleixner | a3c08e5 | 2010-10-08 20:24:58 +0200 | [diff] [blame] | 162 | 	seq_printf(p, " %8s", desc->irq_data.chip->name); | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 163 | 	seq_printf(p, "-%-8s", desc->name); | 
 | 164 |  | 
 | 165 | 	if (action) { | 
 | 166 | 		seq_printf(p, "  %s", action->name); | 
 | 167 | 		while ((action = action->next) != NULL) | 
 | 168 | 			seq_printf(p, ", %s", action->name); | 
 | 169 | 	} | 
 | 170 |  | 
 | 171 | 	seq_putc(p, '\n'); | 
 | 172 | out: | 
| Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 173 | 	raw_spin_unlock_irqrestore(&desc->lock, flags); | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 174 | 	return 0; | 
 | 175 | } | 
 | 176 |  | 
 | 177 | /* | 
 | 178 |  * /proc/stat helpers | 
 | 179 |  */ | 
 | 180 | u64 arch_irq_stat_cpu(unsigned int cpu) | 
 | 181 | { | 
 | 182 | 	u64 sum = irq_stats(cpu)->__nmi_count; | 
 | 183 |  | 
 | 184 | #ifdef CONFIG_X86_LOCAL_APIC | 
 | 185 | 	sum += irq_stats(cpu)->apic_timer_irqs; | 
| Jaswinder Singh Rajput | 474e56b | 2009-03-23 02:08:34 +0530 | [diff] [blame] | 186 | 	sum += irq_stats(cpu)->irq_spurious_count; | 
| Ingo Molnar | 241771e | 2008-12-03 10:39:53 +0100 | [diff] [blame] | 187 | 	sum += irq_stats(cpu)->apic_perf_irqs; | 
| Peter Zijlstra | e360adb | 2010-10-14 14:01:34 +0800 | [diff] [blame] | 188 | 	sum += irq_stats(cpu)->apic_irq_work_irqs; | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 189 | #endif | 
| Dimitri Sivanich | 4a4de9c | 2009-10-14 09:22:57 -0500 | [diff] [blame] | 190 | 	if (x86_platform_ipi_callback) | 
 | 191 | 		sum += irq_stats(cpu)->x86_platform_ipis; | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 192 | #ifdef CONFIG_SMP | 
 | 193 | 	sum += irq_stats(cpu)->irq_resched_count; | 
 | 194 | 	sum += irq_stats(cpu)->irq_call_count; | 
 | 195 | 	sum += irq_stats(cpu)->irq_tlb_count; | 
 | 196 | #endif | 
| Jan Beulich | 0444c9b | 2009-11-20 14:03:05 +0000 | [diff] [blame] | 197 | #ifdef CONFIG_X86_THERMAL_VECTOR | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 198 | 	sum += irq_stats(cpu)->irq_thermal_count; | 
| Jan Beulich | 0444c9b | 2009-11-20 14:03:05 +0000 | [diff] [blame] | 199 | #endif | 
 | 200 | #ifdef CONFIG_X86_MCE_THRESHOLD | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 201 | 	sum += irq_stats(cpu)->irq_threshold_count; | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 202 | #endif | 
| Andi Kleen | c1ebf83 | 2009-07-09 00:31:41 +0200 | [diff] [blame] | 203 | #ifdef CONFIG_X86_MCE | 
| Hidetoshi Seto | 8051dbd | 2009-06-02 16:53:23 +0900 | [diff] [blame] | 204 | 	sum += per_cpu(mce_exception_count, cpu); | 
 | 205 | 	sum += per_cpu(mce_poll_count, cpu); | 
 | 206 | #endif | 
| Thomas Gleixner | 6b39ba7 | 2008-10-16 11:32:24 +0200 | [diff] [blame] | 207 | 	return sum; | 
 | 208 | } | 
 | 209 |  | 
 | 210 | u64 arch_irq_stat(void) | 
 | 211 | { | 
 | 212 | 	u64 sum = atomic_read(&irq_err_count); | 
 | 213 |  | 
 | 214 | #ifdef CONFIG_X86_IO_APIC | 
 | 215 | 	sum += atomic_read(&irq_mis_count); | 
 | 216 | #endif | 
 | 217 | 	return sum; | 
 | 218 | } | 
| Ingo Molnar | c3d8000 | 2008-12-23 15:15:17 +0100 | [diff] [blame] | 219 |  | 
| Jeremy Fitzhardinge | 7c1d7cd | 2009-02-06 14:09:41 -0800 | [diff] [blame] | 220 |  | 
 | 221 | /* | 
 | 222 |  * do_IRQ handles all normal device IRQ's (the special | 
 | 223 |  * SMP cross-CPU interrupts have their own specific | 
 | 224 |  * handlers). | 
 | 225 |  */ | 
 | 226 | unsigned int __irq_entry do_IRQ(struct pt_regs *regs) | 
 | 227 | { | 
 | 228 | 	struct pt_regs *old_regs = set_irq_regs(regs); | 
 | 229 |  | 
 | 230 | 	/* high bit used in ret_from_ code  */ | 
 | 231 | 	unsigned vector = ~regs->orig_ax; | 
 | 232 | 	unsigned irq; | 
 | 233 |  | 
 | 234 | 	exit_idle(); | 
 | 235 | 	irq_enter(); | 
 | 236 |  | 
| Tejun Heo | 0a3aee0 | 2010-12-18 16:28:55 +0100 | [diff] [blame] | 237 | 	irq = __this_cpu_read(vector_irq[vector]); | 
| Jeremy Fitzhardinge | 7c1d7cd | 2009-02-06 14:09:41 -0800 | [diff] [blame] | 238 |  | 
 | 239 | 	if (!handle_irq(irq, regs)) { | 
| Cyrill Gorcunov | 08306ce | 2009-04-12 20:47:41 +0400 | [diff] [blame] | 240 | 		ack_APIC_irq(); | 
| Jeremy Fitzhardinge | 7c1d7cd | 2009-02-06 14:09:41 -0800 | [diff] [blame] | 241 |  | 
 | 242 | 		if (printk_ratelimit()) | 
| Cyrill Gorcunov | edea714 | 2009-04-12 20:47:39 +0400 | [diff] [blame] | 243 | 			pr_emerg("%s: %d.%d No irq handler for vector (irq %d)\n", | 
 | 244 | 				__func__, smp_processor_id(), vector, irq); | 
| Jeremy Fitzhardinge | 7c1d7cd | 2009-02-06 14:09:41 -0800 | [diff] [blame] | 245 | 	} | 
 | 246 |  | 
 | 247 | 	irq_exit(); | 
 | 248 |  | 
 | 249 | 	set_irq_regs(old_regs); | 
 | 250 | 	return 1; | 
 | 251 | } | 
 | 252 |  | 
| Dimitri Sivanich | acaabe7 | 2009-03-04 12:56:05 -0600 | [diff] [blame] | 253 | /* | 
| Dimitri Sivanich | 4a4de9c | 2009-10-14 09:22:57 -0500 | [diff] [blame] | 254 |  * Handler for X86_PLATFORM_IPI_VECTOR. | 
| Dimitri Sivanich | acaabe7 | 2009-03-04 12:56:05 -0600 | [diff] [blame] | 255 |  */ | 
| Dimitri Sivanich | 4a4de9c | 2009-10-14 09:22:57 -0500 | [diff] [blame] | 256 | void smp_x86_platform_ipi(struct pt_regs *regs) | 
| Dimitri Sivanich | acaabe7 | 2009-03-04 12:56:05 -0600 | [diff] [blame] | 257 | { | 
 | 258 | 	struct pt_regs *old_regs = set_irq_regs(regs); | 
 | 259 |  | 
 | 260 | 	ack_APIC_irq(); | 
 | 261 |  | 
 | 262 | 	exit_idle(); | 
 | 263 |  | 
 | 264 | 	irq_enter(); | 
 | 265 |  | 
| Dimitri Sivanich | 4a4de9c | 2009-10-14 09:22:57 -0500 | [diff] [blame] | 266 | 	inc_irq_stat(x86_platform_ipis); | 
| Dimitri Sivanich | acaabe7 | 2009-03-04 12:56:05 -0600 | [diff] [blame] | 267 |  | 
| Dimitri Sivanich | 4a4de9c | 2009-10-14 09:22:57 -0500 | [diff] [blame] | 268 | 	if (x86_platform_ipi_callback) | 
 | 269 | 		x86_platform_ipi_callback(); | 
| Dimitri Sivanich | acaabe7 | 2009-03-04 12:56:05 -0600 | [diff] [blame] | 270 |  | 
 | 271 | 	irq_exit(); | 
 | 272 |  | 
 | 273 | 	set_irq_regs(old_regs); | 
 | 274 | } | 
 | 275 |  | 
| Ingo Molnar | c3d8000 | 2008-12-23 15:15:17 +0100 | [diff] [blame] | 276 | EXPORT_SYMBOL_GPL(vector_used_by_percpu_irq); | 
| Suresh Siddha | 7a7732b | 2009-10-26 14:24:31 -0800 | [diff] [blame] | 277 |  | 
 | 278 | #ifdef CONFIG_HOTPLUG_CPU | 
 | 279 | /* A cpu has been removed from cpu_online_mask.  Reset irq affinities. */ | 
 | 280 | void fixup_irqs(void) | 
 | 281 | { | 
| Suresh Siddha | 5231a68 | 2009-10-26 14:24:36 -0800 | [diff] [blame] | 282 | 	unsigned int irq, vector; | 
| Suresh Siddha | 7a7732b | 2009-10-26 14:24:31 -0800 | [diff] [blame] | 283 | 	static int warned; | 
 | 284 | 	struct irq_desc *desc; | 
| Thomas Gleixner | a3c08e5 | 2010-10-08 20:24:58 +0200 | [diff] [blame] | 285 | 	struct irq_data *data; | 
| Suresh Siddha | 7a7732b | 2009-10-26 14:24:31 -0800 | [diff] [blame] | 286 |  | 
 | 287 | 	for_each_irq_desc(irq, desc) { | 
 | 288 | 		int break_affinity = 0; | 
 | 289 | 		int set_affinity = 1; | 
 | 290 | 		const struct cpumask *affinity; | 
 | 291 |  | 
 | 292 | 		if (!desc) | 
 | 293 | 			continue; | 
 | 294 | 		if (irq == 2) | 
 | 295 | 			continue; | 
 | 296 |  | 
 | 297 | 		/* interrupt's are disabled at this point */ | 
| Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 298 | 		raw_spin_lock(&desc->lock); | 
| Suresh Siddha | 7a7732b | 2009-10-26 14:24:31 -0800 | [diff] [blame] | 299 |  | 
| Thomas Gleixner | a3c08e5 | 2010-10-08 20:24:58 +0200 | [diff] [blame] | 300 | 		data = &desc->irq_data; | 
 | 301 | 		affinity = data->affinity; | 
| Suresh Siddha | 7a7732b | 2009-10-26 14:24:31 -0800 | [diff] [blame] | 302 | 		if (!irq_has_action(irq) || | 
 | 303 | 		    cpumask_equal(affinity, cpu_online_mask)) { | 
| Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 304 | 			raw_spin_unlock(&desc->lock); | 
| Suresh Siddha | 7a7732b | 2009-10-26 14:24:31 -0800 | [diff] [blame] | 305 | 			continue; | 
 | 306 | 		} | 
 | 307 |  | 
| Suresh Siddha | a5e74b8 | 2009-10-26 14:24:34 -0800 | [diff] [blame] | 308 | 		/* | 
 | 309 | 		 * Complete the irq move. This cpu is going down and for | 
 | 310 | 		 * non intr-remapping case, we can't wait till this interrupt | 
 | 311 | 		 * arrives at this cpu before completing the irq move. | 
 | 312 | 		 */ | 
 | 313 | 		irq_force_complete_move(irq); | 
 | 314 |  | 
| Suresh Siddha | 7a7732b | 2009-10-26 14:24:31 -0800 | [diff] [blame] | 315 | 		if (cpumask_any_and(affinity, cpu_online_mask) >= nr_cpu_ids) { | 
 | 316 | 			break_affinity = 1; | 
 | 317 | 			affinity = cpu_all_mask; | 
 | 318 | 		} | 
 | 319 |  | 
| Thomas Gleixner | a3c08e5 | 2010-10-08 20:24:58 +0200 | [diff] [blame] | 320 | 		if (!(desc->status & IRQ_MOVE_PCNTXT) && data->chip->irq_mask) | 
 | 321 | 			data->chip->irq_mask(data); | 
| Suresh Siddha | 7a7732b | 2009-10-26 14:24:31 -0800 | [diff] [blame] | 322 |  | 
| Thomas Gleixner | a3c08e5 | 2010-10-08 20:24:58 +0200 | [diff] [blame] | 323 | 		if (data->chip->irq_set_affinity) | 
 | 324 | 			data->chip->irq_set_affinity(data, affinity, true); | 
| Suresh Siddha | 7a7732b | 2009-10-26 14:24:31 -0800 | [diff] [blame] | 325 | 		else if (!(warned++)) | 
 | 326 | 			set_affinity = 0; | 
 | 327 |  | 
| Thomas Gleixner | a3c08e5 | 2010-10-08 20:24:58 +0200 | [diff] [blame] | 328 | 		if (!(desc->status & IRQ_MOVE_PCNTXT) && data->chip->irq_unmask) | 
 | 329 | 			data->chip->irq_unmask(data); | 
| Suresh Siddha | 7a7732b | 2009-10-26 14:24:31 -0800 | [diff] [blame] | 330 |  | 
| Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 331 | 		raw_spin_unlock(&desc->lock); | 
| Suresh Siddha | 7a7732b | 2009-10-26 14:24:31 -0800 | [diff] [blame] | 332 |  | 
 | 333 | 		if (break_affinity && set_affinity) | 
 | 334 | 			printk("Broke affinity for irq %i\n", irq); | 
 | 335 | 		else if (!set_affinity) | 
 | 336 | 			printk("Cannot set affinity for irq %i\n", irq); | 
 | 337 | 	} | 
 | 338 |  | 
| Suresh Siddha | 5231a68 | 2009-10-26 14:24:36 -0800 | [diff] [blame] | 339 | 	/* | 
 | 340 | 	 * We can remove mdelay() and then send spuriuous interrupts to | 
 | 341 | 	 * new cpu targets for all the irqs that were handled previously by | 
 | 342 | 	 * this cpu. While it works, I have seen spurious interrupt messages | 
 | 343 | 	 * (nothing wrong but still...). | 
 | 344 | 	 * | 
 | 345 | 	 * So for now, retain mdelay(1) and check the IRR and then send those | 
 | 346 | 	 * interrupts to new targets as this cpu is already offlined... | 
 | 347 | 	 */ | 
| Suresh Siddha | 7a7732b | 2009-10-26 14:24:31 -0800 | [diff] [blame] | 348 | 	mdelay(1); | 
| Suresh Siddha | 5231a68 | 2009-10-26 14:24:36 -0800 | [diff] [blame] | 349 |  | 
 | 350 | 	for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) { | 
 | 351 | 		unsigned int irr; | 
 | 352 |  | 
| Tejun Heo | 0a3aee0 | 2010-12-18 16:28:55 +0100 | [diff] [blame] | 353 | 		if (__this_cpu_read(vector_irq[vector]) < 0) | 
| Suresh Siddha | 5231a68 | 2009-10-26 14:24:36 -0800 | [diff] [blame] | 354 | 			continue; | 
 | 355 |  | 
 | 356 | 		irr = apic_read(APIC_IRR + (vector / 32 * 0x10)); | 
 | 357 | 		if (irr  & (1 << (vector % 32))) { | 
| Tejun Heo | 0a3aee0 | 2010-12-18 16:28:55 +0100 | [diff] [blame] | 358 | 			irq = __this_cpu_read(vector_irq[vector]); | 
| Suresh Siddha | 5231a68 | 2009-10-26 14:24:36 -0800 | [diff] [blame] | 359 |  | 
| Thomas Gleixner | a3c08e5 | 2010-10-08 20:24:58 +0200 | [diff] [blame] | 360 | 			data = irq_get_irq_data(irq); | 
| Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 361 | 			raw_spin_lock(&desc->lock); | 
| Thomas Gleixner | a3c08e5 | 2010-10-08 20:24:58 +0200 | [diff] [blame] | 362 | 			if (data->chip->irq_retrigger) | 
 | 363 | 				data->chip->irq_retrigger(data); | 
| Thomas Gleixner | 239007b | 2009-11-17 16:46:45 +0100 | [diff] [blame] | 364 | 			raw_spin_unlock(&desc->lock); | 
| Suresh Siddha | 5231a68 | 2009-10-26 14:24:36 -0800 | [diff] [blame] | 365 | 		} | 
 | 366 | 	} | 
| Suresh Siddha | 7a7732b | 2009-10-26 14:24:31 -0800 | [diff] [blame] | 367 | } | 
 | 368 | #endif |