irq.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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/memory.h>
  26. #include <linux/smp.h>
  27. #include <linux/init.h>
  28. #include <linux/irqchip.h>
  29. #include <linux/seq_file.h>
  30. #include <linux/vmalloc.h>
  31. #include <asm/vmap_stack.h>
  32. unsigned long irq_err_count;
  33. DEFINE_PER_CPU(unsigned long *, irq_stack_ptr);
  34. int arch_show_interrupts(struct seq_file *p, int prec)
  35. {
  36. show_ipi_list(p, prec);
  37. seq_printf(p, "%*s: %10lu\n", prec, "Err", irq_err_count);
  38. return 0;
  39. }
  40. #ifdef CONFIG_VMAP_STACK
  41. static void init_irq_stacks(void)
  42. {
  43. int cpu;
  44. unsigned long *p;
  45. for_each_possible_cpu(cpu) {
  46. p = arch_alloc_vmap_stack(IRQ_STACK_SIZE, cpu_to_node(cpu));
  47. per_cpu(irq_stack_ptr, cpu) = p;
  48. }
  49. }
  50. #else
  51. /* irq stack only needs to be 16 byte aligned - not IRQ_STACK_SIZE aligned. */
  52. DEFINE_PER_CPU_ALIGNED(unsigned long [IRQ_STACK_SIZE/sizeof(long)], irq_stack);
  53. static void init_irq_stacks(void)
  54. {
  55. int cpu;
  56. for_each_possible_cpu(cpu)
  57. per_cpu(irq_stack_ptr, cpu) = per_cpu(irq_stack, cpu);
  58. }
  59. #endif
  60. void __init init_IRQ(void)
  61. {
  62. init_irq_stacks();
  63. irqchip_init();
  64. if (!handle_arch_irq)
  65. panic("No interrupt controller found.");
  66. }