irq.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /*
  2. * linux/arch/alpha/kernel/irq.c
  3. *
  4. * Copyright (C) 1995 Linus Torvalds
  5. *
  6. * This file contains the code used by various IRQ handling routines:
  7. * asking for different IRQ's should be done through these routines
  8. * instead of just grabbing them. Thus setups with different IRQ numbers
  9. * shouldn't result in any weird surprises, and installing new handlers
  10. * should be easier.
  11. */
  12. #include <linux/kernel.h>
  13. #include <linux/module.h>
  14. #include <linux/errno.h>
  15. #include <linux/kernel_stat.h>
  16. #include <linux/signal.h>
  17. #include <linux/sched.h>
  18. #include <linux/ptrace.h>
  19. #include <linux/interrupt.h>
  20. #include <linux/random.h>
  21. #include <linux/init.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/system.h>
  28. #include <asm/io.h>
  29. #include <asm/uaccess.h>
  30. volatile unsigned long irq_err_count;
  31. DEFINE_PER_CPU(unsigned long, irq_pmi_count);
  32. void ack_bad_irq(unsigned int irq)
  33. {
  34. irq_err_count++;
  35. printk(KERN_CRIT "Unexpected IRQ trap at vector %u\n", irq);
  36. }
  37. #ifdef CONFIG_SMP
  38. static char irq_user_affinity[NR_IRQS];
  39. int irq_select_affinity(unsigned int irq)
  40. {
  41. struct irq_data *data = irq_get_irq_data(irq);
  42. struct irq_chip *chip;
  43. static int last_cpu;
  44. int cpu = last_cpu + 1;
  45. if (!data)
  46. return 1;
  47. chip = irq_data_get_irq_chip(data);
  48. if (!chip->irq_set_affinity || irq_user_affinity[irq])
  49. return 1;
  50. while (!cpu_possible(cpu) ||
  51. !cpumask_test_cpu(cpu, irq_default_affinity))
  52. cpu = (cpu < (NR_CPUS-1) ? cpu + 1 : 0);
  53. last_cpu = cpu;
  54. cpumask_copy(data->affinity, cpumask_of(cpu));
  55. chip->irq_set_affinity(data, cpumask_of(cpu), false);
  56. return 0;
  57. }
  58. #endif /* CONFIG_SMP */
  59. int
  60. show_interrupts(struct seq_file *p, void *v)
  61. {
  62. int j;
  63. int irq = *(loff_t *) v;
  64. struct irqaction * action;
  65. struct irq_desc *desc;
  66. unsigned long flags;
  67. #ifdef CONFIG_SMP
  68. if (irq == 0) {
  69. seq_puts(p, " ");
  70. for_each_online_cpu(j)
  71. seq_printf(p, "CPU%d ", j);
  72. seq_putc(p, '\n');
  73. }
  74. #endif
  75. if (irq < ACTUAL_NR_IRQS) {
  76. desc = irq_to_desc(irq);
  77. if (!desc)
  78. return 0;
  79. raw_spin_lock_irqsave(&desc->lock, flags);
  80. action = desc->action;
  81. if (!action)
  82. goto unlock;
  83. seq_printf(p, "%3d: ", irq);
  84. #ifndef CONFIG_SMP
  85. seq_printf(p, "%10u ", kstat_irqs(irq));
  86. #else
  87. for_each_online_cpu(j)
  88. seq_printf(p, "%10u ", kstat_irqs_cpu(irq, j));
  89. #endif
  90. seq_printf(p, " %14s", get_irq_desc_chip(desc)->name);
  91. seq_printf(p, " %c%s",
  92. (action->flags & IRQF_DISABLED)?'+':' ',
  93. action->name);
  94. for (action=action->next; action; action = action->next) {
  95. seq_printf(p, ", %c%s",
  96. (action->flags & IRQF_DISABLED)?'+':' ',
  97. action->name);
  98. }
  99. seq_putc(p, '\n');
  100. unlock:
  101. raw_spin_unlock_irqrestore(&desc->lock, flags);
  102. } else if (irq == ACTUAL_NR_IRQS) {
  103. #ifdef CONFIG_SMP
  104. seq_puts(p, "IPI: ");
  105. for_each_online_cpu(j)
  106. seq_printf(p, "%10lu ", cpu_data[j].ipi_count);
  107. seq_putc(p, '\n');
  108. #endif
  109. seq_puts(p, "PMI: ");
  110. for_each_online_cpu(j)
  111. seq_printf(p, "%10lu ", per_cpu(irq_pmi_count, j));
  112. seq_puts(p, " Performance Monitoring\n");
  113. seq_printf(p, "ERR: %10lu\n", irq_err_count);
  114. }
  115. return 0;
  116. }
  117. /*
  118. * handle_irq handles all normal device IRQ's (the special
  119. * SMP cross-CPU interrupts have their own specific
  120. * handlers).
  121. */
  122. #define MAX_ILLEGAL_IRQS 16
  123. void
  124. handle_irq(int irq)
  125. {
  126. /*
  127. * We ack quickly, we don't want the irq controller
  128. * thinking we're snobs just because some other CPU has
  129. * disabled global interrupts (we have already done the
  130. * INT_ACK cycles, it's too late to try to pretend to the
  131. * controller that we aren't taking the interrupt).
  132. *
  133. * 0 return value means that this irq is already being
  134. * handled by some other CPU. (or is disabled)
  135. */
  136. static unsigned int illegal_count=0;
  137. struct irq_desc *desc = irq_to_desc(irq);
  138. if (!desc || ((unsigned) irq > ACTUAL_NR_IRQS &&
  139. illegal_count < MAX_ILLEGAL_IRQS)) {
  140. irq_err_count++;
  141. illegal_count++;
  142. printk(KERN_CRIT "device_interrupt: invalid interrupt %d\n",
  143. irq);
  144. return;
  145. }
  146. /*
  147. * From here we must proceed with IPL_MAX. Note that we do not
  148. * explicitly enable interrupts afterwards - some MILO PALcode
  149. * (namely LX164 one) seems to have severe problems with RTI
  150. * at IPL 0.
  151. */
  152. local_irq_disable();
  153. irq_enter();
  154. generic_handle_irq_desc(irq, desc);
  155. irq_exit();
  156. }