irq.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * linux/arch/alpha/kernel/irq.c
  4. *
  5. * Copyright (C) 1995 Linus Torvalds
  6. *
  7. * This file contains the code used by various IRQ handling routines:
  8. * asking for different IRQ's should be done through these routines
  9. * instead of just grabbing them. Thus setups with different IRQ numbers
  10. * shouldn't result in any weird surprises, and installing new handlers
  11. * should be easier.
  12. */
  13. #include <linux/kernel.h>
  14. #include <linux/module.h>
  15. #include <linux/errno.h>
  16. #include <linux/kernel_stat.h>
  17. #include <linux/signal.h>
  18. #include <linux/sched.h>
  19. #include <linux/ptrace.h>
  20. #include <linux/interrupt.h>
  21. #include <linux/random.h>
  22. #include <linux/irq.h>
  23. #include <linux/proc_fs.h>
  24. #include <linux/seq_file.h>
  25. #include <linux/profile.h>
  26. #include <linux/bitops.h>
  27. #include <asm/io.h>
  28. #include <linux/uaccess.h>
  29. volatile unsigned long irq_err_count;
  30. DEFINE_PER_CPU(unsigned long, irq_pmi_count);
  31. void ack_bad_irq(unsigned int irq)
  32. {
  33. irq_err_count++;
  34. printk(KERN_CRIT "Unexpected IRQ trap at vector %u\n", irq);
  35. }
  36. #ifdef CONFIG_SMP
  37. static char irq_user_affinity[NR_IRQS];
  38. int irq_select_affinity(unsigned int irq)
  39. {
  40. struct irq_data *data = irq_get_irq_data(irq);
  41. struct irq_chip *chip;
  42. static int last_cpu;
  43. int cpu = last_cpu + 1;
  44. if (!data)
  45. return 1;
  46. chip = irq_data_get_irq_chip(data);
  47. if (!chip->irq_set_affinity || irq_user_affinity[irq])
  48. return 1;
  49. while (!cpu_possible(cpu) ||
  50. !cpumask_test_cpu(cpu, irq_default_affinity))
  51. cpu = (cpu < (NR_CPUS-1) ? cpu + 1 : 0);
  52. last_cpu = cpu;
  53. irq_data_update_affinity(data, cpumask_of(cpu));
  54. chip->irq_set_affinity(data, cpumask_of(cpu), false);
  55. return 0;
  56. }
  57. #endif /* CONFIG_SMP */
  58. int arch_show_interrupts(struct seq_file *p, int prec)
  59. {
  60. int j;
  61. #ifdef CONFIG_SMP
  62. seq_puts(p, "IPI: ");
  63. for_each_online_cpu(j)
  64. seq_printf(p, "%10lu ", cpu_data[j].ipi_count);
  65. seq_putc(p, '\n');
  66. #endif
  67. seq_puts(p, "PMI: ");
  68. for_each_online_cpu(j)
  69. seq_printf(p, "%10lu ", per_cpu(irq_pmi_count, j));
  70. seq_puts(p, " Performance Monitoring\n");
  71. seq_printf(p, "ERR: %10lu\n", irq_err_count);
  72. return 0;
  73. }
  74. /*
  75. * handle_irq handles all normal device IRQ's (the special
  76. * SMP cross-CPU interrupts have their own specific
  77. * handlers).
  78. */
  79. #define MAX_ILLEGAL_IRQS 16
  80. void
  81. handle_irq(int irq)
  82. {
  83. /*
  84. * We ack quickly, we don't want the irq controller
  85. * thinking we're snobs just because some other CPU has
  86. * disabled global interrupts (we have already done the
  87. * INT_ACK cycles, it's too late to try to pretend to the
  88. * controller that we aren't taking the interrupt).
  89. *
  90. * 0 return value means that this irq is already being
  91. * handled by some other CPU. (or is disabled)
  92. */
  93. static unsigned int illegal_count=0;
  94. struct irq_desc *desc = irq_to_desc(irq);
  95. if (!desc || ((unsigned) irq > ACTUAL_NR_IRQS &&
  96. illegal_count < MAX_ILLEGAL_IRQS)) {
  97. irq_err_count++;
  98. illegal_count++;
  99. printk(KERN_CRIT "device_interrupt: invalid interrupt %d\n",
  100. irq);
  101. return;
  102. }
  103. irq_enter();
  104. generic_handle_irq_desc(desc);
  105. irq_exit();
  106. }