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