irq.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /*
  2. * Based on arch/arm/kernel/irq.c
  3. *
  4. * Copyright (C) 1992 Linus Torvalds
  5. * Modifications for ARM processor Copyright (C) 1995-2000 Russell King.
  6. * Support for Dynamic Tick Timer Copyright (C) 2004-2005 Nokia Corporation.
  7. * Dynamic Tick Timer written by Tony Lindgren <tony@atomide.com> and
  8. * Tuukka Tikkanen <tuukka.tikkanen@elektrobit.com>.
  9. * Copyright (C) 2012 ARM Ltd.
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License version 2 as
  13. * published by the Free Software Foundation.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. */
  23. #include <linux/kernel_stat.h>
  24. #include <linux/irq.h>
  25. #include <linux/smp.h>
  26. #include <linux/init.h>
  27. #include <linux/irqchip.h>
  28. #include <linux/seq_file.h>
  29. #include <linux/ratelimit.h>
  30. unsigned long irq_err_count;
  31. int arch_show_interrupts(struct seq_file *p, int prec)
  32. {
  33. show_ipi_list(p, prec);
  34. seq_printf(p, "%*s: %10lu\n", prec, "Err", irq_err_count);
  35. return 0;
  36. }
  37. void (*handle_arch_irq)(struct pt_regs *) = NULL;
  38. void __init set_handle_irq(void (*handle_irq)(struct pt_regs *))
  39. {
  40. if (handle_arch_irq)
  41. return;
  42. handle_arch_irq = handle_irq;
  43. }
  44. void __init init_IRQ(void)
  45. {
  46. irqchip_init();
  47. if (!handle_arch_irq)
  48. panic("No interrupt controller found.");
  49. }
  50. #ifdef CONFIG_HOTPLUG_CPU
  51. static bool migrate_one_irq(struct irq_desc *desc)
  52. {
  53. struct irq_data *d = irq_desc_get_irq_data(desc);
  54. const struct cpumask *affinity = irq_data_get_affinity_mask(d);
  55. struct irq_chip *c;
  56. bool ret = false;
  57. /*
  58. * If this is a per-CPU interrupt, or the affinity does not
  59. * include this CPU, then we have nothing to do.
  60. */
  61. if (irqd_is_per_cpu(d) || !cpumask_test_cpu(smp_processor_id(), affinity))
  62. return false;
  63. if (cpumask_any_and(affinity, cpu_online_mask) >= nr_cpu_ids) {
  64. affinity = cpu_online_mask;
  65. ret = true;
  66. }
  67. c = irq_data_get_irq_chip(d);
  68. if (!c->irq_set_affinity)
  69. pr_debug("IRQ%u: unable to set affinity\n", d->irq);
  70. else if (c->irq_set_affinity(d, affinity, false) == IRQ_SET_MASK_OK && ret)
  71. cpumask_copy(irq_data_get_affinity_mask(d), affinity);
  72. return ret;
  73. }
  74. /*
  75. * The current CPU has been marked offline. Migrate IRQs off this CPU.
  76. * If the affinity settings do not allow other CPUs, force them onto any
  77. * available CPU.
  78. *
  79. * Note: we must iterate over all IRQs, whether they have an attached
  80. * action structure or not, as we need to get chained interrupts too.
  81. */
  82. void migrate_irqs(void)
  83. {
  84. unsigned int i;
  85. struct irq_desc *desc;
  86. unsigned long flags;
  87. local_irq_save(flags);
  88. for_each_irq_desc(i, desc) {
  89. bool affinity_broken;
  90. raw_spin_lock(&desc->lock);
  91. affinity_broken = migrate_one_irq(desc);
  92. raw_spin_unlock(&desc->lock);
  93. if (affinity_broken)
  94. pr_warn_ratelimited("IRQ%u no longer affine to CPU%u\n",
  95. i, smp_processor_id());
  96. }
  97. local_irq_restore(flags);
  98. }
  99. #endif /* CONFIG_HOTPLUG_CPU */