irq.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. unsigned long irq_err_count;
  30. /* irq stack only needs to be 16 byte aligned - not IRQ_STACK_SIZE aligned. */
  31. DEFINE_PER_CPU(unsigned long [IRQ_STACK_SIZE/sizeof(long)], irq_stack) __aligned(16);
  32. int arch_show_interrupts(struct seq_file *p, int prec)
  33. {
  34. show_ipi_list(p, prec);
  35. seq_printf(p, "%*s: %10lu\n", prec, "Err", irq_err_count);
  36. return 0;
  37. }
  38. void (*handle_arch_irq)(struct pt_regs *) = NULL;
  39. void __init set_handle_irq(void (*handle_irq)(struct pt_regs *))
  40. {
  41. if (handle_arch_irq)
  42. return;
  43. handle_arch_irq = handle_irq;
  44. }
  45. void __init init_IRQ(void)
  46. {
  47. irqchip_init();
  48. if (!handle_arch_irq)
  49. panic("No interrupt controller found.");
  50. }