cxgb4/l2t: Mark expected switch fall-through
[linux/fpc-iii.git] / arch / arm64 / kernel / irq.c
blob60e5fc661f745b899ff6137b4c3f002de867a390
1 /*
2 * Based on arch/arm/kernel/irq.c
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.
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.
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.
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/>.
24 #include <linux/kernel_stat.h>
25 #include <linux/irq.h>
26 #include <linux/memory.h>
27 #include <linux/smp.h>
28 #include <linux/init.h>
29 #include <linux/irqchip.h>
30 #include <linux/seq_file.h>
31 #include <linux/vmalloc.h>
32 #include <asm/vmap_stack.h>
34 unsigned long irq_err_count;
36 DEFINE_PER_CPU(unsigned long *, irq_stack_ptr);
38 int arch_show_interrupts(struct seq_file *p, int prec)
40 show_ipi_list(p, prec);
41 seq_printf(p, "%*s: %10lu\n", prec, "Err", irq_err_count);
42 return 0;
45 void (*handle_arch_irq)(struct pt_regs *) = NULL;
47 void __init set_handle_irq(void (*handle_irq)(struct pt_regs *))
49 if (handle_arch_irq)
50 return;
52 handle_arch_irq = handle_irq;
55 #ifdef CONFIG_VMAP_STACK
56 static void init_irq_stacks(void)
58 int cpu;
59 unsigned long *p;
61 for_each_possible_cpu(cpu) {
62 p = arch_alloc_vmap_stack(IRQ_STACK_SIZE, cpu_to_node(cpu));
63 per_cpu(irq_stack_ptr, cpu) = p;
66 #else
67 /* irq stack only needs to be 16 byte aligned - not IRQ_STACK_SIZE aligned. */
68 DEFINE_PER_CPU_ALIGNED(unsigned long [IRQ_STACK_SIZE/sizeof(long)], irq_stack);
70 static void init_irq_stacks(void)
72 int cpu;
74 for_each_possible_cpu(cpu)
75 per_cpu(irq_stack_ptr, cpu) = per_cpu(irq_stack, cpu);
77 #endif
79 void __init init_IRQ(void)
81 init_irq_stacks();
82 irqchip_init();
83 if (!handle_arch_irq)
84 panic("No interrupt controller found.");