irq.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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/of_irq.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. #ifdef CONFIG_SMP
  34. show_ipi_list(p, prec);
  35. #endif
  36. seq_printf(p, "%*s: %10lu\n", prec, "Err", irq_err_count);
  37. return 0;
  38. }
  39. /*
  40. * handle_IRQ handles all hardware IRQ's. Decoded IRQs should
  41. * not come via this function. Instead, they should provide their
  42. * own 'handler'. Used by platform code implementing C-based 1st
  43. * level decoding.
  44. */
  45. void handle_IRQ(unsigned int irq, struct pt_regs *regs)
  46. {
  47. struct pt_regs *old_regs = set_irq_regs(regs);
  48. irq_enter();
  49. /*
  50. * Some hardware gives randomly wrong interrupts. Rather
  51. * than crashing, do something sensible.
  52. */
  53. if (unlikely(irq >= nr_irqs)) {
  54. pr_warn_ratelimited("Bad IRQ%u\n", irq);
  55. ack_bad_irq(irq);
  56. } else {
  57. generic_handle_irq(irq);
  58. }
  59. irq_exit();
  60. set_irq_regs(old_regs);
  61. }
  62. /*
  63. * Interrupt controllers supported by the kernel.
  64. */
  65. static const struct of_device_id intctrl_of_match[] __initconst = {
  66. /* IRQ controllers { .compatible, .data } info to go here */
  67. {}
  68. };
  69. void __init init_IRQ(void)
  70. {
  71. of_irq_init(intctrl_of_match);
  72. if (!handle_arch_irq)
  73. panic("No interrupt controller found.");
  74. }