irq.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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/slab.h>
  21. #include <linux/random.h>
  22. #include <linux/init.h>
  23. #include <linux/irq.h>
  24. #include <linux/proc_fs.h>
  25. #include <linux/seq_file.h>
  26. #include <linux/profile.h>
  27. #include <linux/bitops.h>
  28. #include <asm/system.h>
  29. #include <asm/io.h>
  30. #include <asm/uaccess.h>
  31. volatile unsigned long irq_err_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. static int last_cpu;
  42. int cpu = last_cpu + 1;
  43. if (!irq_desc[irq].chip->set_affinity || irq_user_affinity[irq])
  44. return 1;
  45. while (!cpu_possible(cpu) || !cpu_isset(cpu, irq_default_affinity))
  46. cpu = (cpu < (NR_CPUS-1) ? cpu + 1 : 0);
  47. last_cpu = cpu;
  48. irq_desc[irq].affinity = cpumask_of_cpu(cpu);
  49. irq_desc[irq].chip->set_affinity(irq, cpumask_of_cpu(cpu));
  50. return 0;
  51. }
  52. #endif /* CONFIG_SMP */
  53. int
  54. show_interrupts(struct seq_file *p, void *v)
  55. {
  56. #ifdef CONFIG_SMP
  57. int j;
  58. #endif
  59. int irq = *(loff_t *) v;
  60. struct irqaction * action;
  61. unsigned long flags;
  62. #ifdef CONFIG_SMP
  63. if (irq == 0) {
  64. seq_puts(p, " ");
  65. for_each_online_cpu(j)
  66. seq_printf(p, "CPU%d ", j);
  67. seq_putc(p, '\n');
  68. }
  69. #endif
  70. if (irq < ACTUAL_NR_IRQS) {
  71. spin_lock_irqsave(&irq_desc[irq].lock, flags);
  72. action = irq_desc[irq].action;
  73. if (!action)
  74. goto unlock;
  75. seq_printf(p, "%3d: ", irq);
  76. #ifndef CONFIG_SMP
  77. seq_printf(p, "%10u ", kstat_irqs(irq));
  78. #else
  79. for_each_online_cpu(j)
  80. seq_printf(p, "%10u ", kstat_cpu(j).irqs[irq]);
  81. #endif
  82. seq_printf(p, " %14s", irq_desc[irq].chip->typename);
  83. seq_printf(p, " %c%s",
  84. (action->flags & IRQF_DISABLED)?'+':' ',
  85. action->name);
  86. for (action=action->next; action; action = action->next) {
  87. seq_printf(p, ", %c%s",
  88. (action->flags & IRQF_DISABLED)?'+':' ',
  89. action->name);
  90. }
  91. seq_putc(p, '\n');
  92. unlock:
  93. spin_unlock_irqrestore(&irq_desc[irq].lock, flags);
  94. } else if (irq == ACTUAL_NR_IRQS) {
  95. #ifdef CONFIG_SMP
  96. seq_puts(p, "IPI: ");
  97. for_each_online_cpu(j)
  98. seq_printf(p, "%10lu ", cpu_data[j].ipi_count);
  99. seq_putc(p, '\n');
  100. #endif
  101. seq_printf(p, "ERR: %10lu\n", irq_err_count);
  102. }
  103. return 0;
  104. }
  105. /*
  106. * handle_irq handles all normal device IRQ's (the special
  107. * SMP cross-CPU interrupts have their own specific
  108. * handlers).
  109. */
  110. #define MAX_ILLEGAL_IRQS 16
  111. void
  112. handle_irq(int irq)
  113. {
  114. /*
  115. * We ack quickly, we don't want the irq controller
  116. * thinking we're snobs just because some other CPU has
  117. * disabled global interrupts (we have already done the
  118. * INT_ACK cycles, it's too late to try to pretend to the
  119. * controller that we aren't taking the interrupt).
  120. *
  121. * 0 return value means that this irq is already being
  122. * handled by some other CPU. (or is disabled)
  123. */
  124. static unsigned int illegal_count=0;
  125. if ((unsigned) irq > ACTUAL_NR_IRQS && illegal_count < MAX_ILLEGAL_IRQS ) {
  126. irq_err_count++;
  127. illegal_count++;
  128. printk(KERN_CRIT "device_interrupt: invalid interrupt %d\n",
  129. irq);
  130. return;
  131. }
  132. irq_enter();
  133. /*
  134. * __do_IRQ() must be called with IPL_MAX. Note that we do not
  135. * explicitly enable interrupts afterwards - some MILO PALcode
  136. * (namely LX164 one) seems to have severe problems with RTI
  137. * at IPL 0.
  138. */
  139. local_irq_disable();
  140. __do_IRQ(irq);
  141. irq_exit();
  142. }