Thomas Gleixner | caab277 | 2019-06-03 07:44:50 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Marc Zyngier | fb9bd7d6 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Based on arch/arm/kernel/irq.c |
| 4 | * |
| 5 | * Copyright (C) 1992 Linus Torvalds |
| 6 | * Modifications for ARM processor Copyright (C) 1995-2000 Russell King. |
| 7 | * Support for Dynamic Tick Timer Copyright (C) 2004-2005 Nokia Corporation. |
| 8 | * Dynamic Tick Timer written by Tony Lindgren <tony@atomide.com> and |
| 9 | * Tuukka Tikkanen <tuukka.tikkanen@elektrobit.com>. |
| 10 | * Copyright (C) 2012 ARM Ltd. |
Marc Zyngier | fb9bd7d6 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 11 | */ |
| 12 | |
Marc Zyngier | fb9bd7d6 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 13 | #include <linux/irq.h> |
Mark Rutland | e306786 | 2017-07-21 14:25:33 +0100 | [diff] [blame] | 14 | #include <linux/memory.h> |
Marc Zyngier | fb9bd7d6 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 15 | #include <linux/smp.h> |
Marc Zyngier | a263881 | 2020-06-20 17:19:00 +0100 | [diff] [blame] | 16 | #include <linux/hardirq.h> |
Marc Zyngier | fb9bd7d6 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 17 | #include <linux/init.h> |
Catalin Marinas | e851b58 | 2013-01-14 12:39:31 +0000 | [diff] [blame] | 18 | #include <linux/irqchip.h> |
Julien Thierry | 17ce302 | 2019-06-11 10:38:09 +0100 | [diff] [blame] | 19 | #include <linux/kprobes.h> |
Sami Tolvanen | ac20ffb | 2020-11-30 15:34:42 -0800 | [diff] [blame] | 20 | #include <linux/scs.h> |
Marc Zyngier | fb9bd7d6 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 21 | #include <linux/seq_file.h> |
Mark Rutland | e306786 | 2017-07-21 14:25:33 +0100 | [diff] [blame] | 22 | #include <linux/vmalloc.h> |
Julien Thierry | 17ce302 | 2019-06-11 10:38:09 +0100 | [diff] [blame] | 23 | #include <asm/daifflags.h> |
James Morse | ed8b20d | 2018-01-08 15:38:10 +0000 | [diff] [blame] | 24 | #include <asm/vmap_stack.h> |
Marc Zyngier | fb9bd7d6 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 25 | |
Julien Thierry | 5870970 | 2019-01-31 14:58:39 +0000 | [diff] [blame] | 26 | /* Only access this in an NMI enter/exit */ |
| 27 | DEFINE_PER_CPU(struct nmi_ctx, nmi_contexts); |
| 28 | |
Mark Rutland | f60fe78 | 2017-07-31 21:17:03 +0100 | [diff] [blame] | 29 | DEFINE_PER_CPU(unsigned long *, irq_stack_ptr); |
AKASHI Takahiro | 132cd88 | 2015-12-04 11:02:26 +0000 | [diff] [blame] | 30 | |
Sami Tolvanen | ac20ffb | 2020-11-30 15:34:42 -0800 | [diff] [blame] | 31 | |
| 32 | DECLARE_PER_CPU(unsigned long *, irq_shadow_call_stack_ptr); |
| 33 | |
| 34 | #ifdef CONFIG_SHADOW_CALL_STACK |
| 35 | DEFINE_PER_CPU(unsigned long *, irq_shadow_call_stack_ptr); |
| 36 | #endif |
| 37 | |
| 38 | static void init_irq_scs(void) |
| 39 | { |
| 40 | int cpu; |
| 41 | |
| 42 | if (!IS_ENABLED(CONFIG_SHADOW_CALL_STACK)) |
| 43 | return; |
| 44 | |
| 45 | for_each_possible_cpu(cpu) |
| 46 | per_cpu(irq_shadow_call_stack_ptr, cpu) = |
| 47 | scs_alloc(cpu_to_node(cpu)); |
| 48 | } |
| 49 | |
Mark Rutland | e306786 | 2017-07-21 14:25:33 +0100 | [diff] [blame] | 50 | #ifdef CONFIG_VMAP_STACK |
| 51 | static void init_irq_stacks(void) |
| 52 | { |
| 53 | int cpu; |
| 54 | unsigned long *p; |
| 55 | |
| 56 | for_each_possible_cpu(cpu) { |
James Morse | ed8b20d | 2018-01-08 15:38:10 +0000 | [diff] [blame] | 57 | p = arch_alloc_vmap_stack(IRQ_STACK_SIZE, cpu_to_node(cpu)); |
Mark Rutland | e306786 | 2017-07-21 14:25:33 +0100 | [diff] [blame] | 58 | per_cpu(irq_stack_ptr, cpu) = p; |
| 59 | } |
| 60 | } |
| 61 | #else |
| 62 | /* irq stack only needs to be 16 byte aligned - not IRQ_STACK_SIZE aligned. */ |
| 63 | DEFINE_PER_CPU_ALIGNED(unsigned long [IRQ_STACK_SIZE/sizeof(long)], irq_stack); |
| 64 | |
Mark Rutland | f60fe78 | 2017-07-31 21:17:03 +0100 | [diff] [blame] | 65 | static void init_irq_stacks(void) |
| 66 | { |
| 67 | int cpu; |
| 68 | |
| 69 | for_each_possible_cpu(cpu) |
| 70 | per_cpu(irq_stack_ptr, cpu) = per_cpu(irq_stack, cpu); |
| 71 | } |
Mark Rutland | e306786 | 2017-07-21 14:25:33 +0100 | [diff] [blame] | 72 | #endif |
Mark Rutland | f60fe78 | 2017-07-31 21:17:03 +0100 | [diff] [blame] | 73 | |
Mark Rutland | 8ff443c | 2021-03-15 11:56:26 +0000 | [diff] [blame] | 74 | static void default_handle_irq(struct pt_regs *regs) |
| 75 | { |
| 76 | panic("IRQ taken without a root IRQ handler\n"); |
| 77 | } |
| 78 | |
Mark Rutland | 3889ba7 | 2021-03-15 11:56:29 +0000 | [diff] [blame] | 79 | static void default_handle_fiq(struct pt_regs *regs) |
| 80 | { |
| 81 | panic("FIQ taken without a root FIQ handler\n"); |
| 82 | } |
| 83 | |
Mark Rutland | 8ff443c | 2021-03-15 11:56:26 +0000 | [diff] [blame] | 84 | void (*handle_arch_irq)(struct pt_regs *) __ro_after_init = default_handle_irq; |
Mark Rutland | 3889ba7 | 2021-03-15 11:56:29 +0000 | [diff] [blame] | 85 | void (*handle_arch_fiq)(struct pt_regs *) __ro_after_init = default_handle_fiq; |
Marc Zyngier | 338a743 | 2021-03-15 11:56:25 +0000 | [diff] [blame] | 86 | |
| 87 | int __init set_handle_irq(void (*handle_irq)(struct pt_regs *)) |
| 88 | { |
Mark Rutland | 8ff443c | 2021-03-15 11:56:26 +0000 | [diff] [blame] | 89 | if (handle_arch_irq != default_handle_irq) |
Marc Zyngier | 338a743 | 2021-03-15 11:56:25 +0000 | [diff] [blame] | 90 | return -EBUSY; |
| 91 | |
| 92 | handle_arch_irq = handle_irq; |
Mark Rutland | 8ff443c | 2021-03-15 11:56:26 +0000 | [diff] [blame] | 93 | pr_info("Root IRQ handler: %ps\n", handle_irq); |
Marc Zyngier | 338a743 | 2021-03-15 11:56:25 +0000 | [diff] [blame] | 94 | return 0; |
| 95 | } |
| 96 | |
Mark Rutland | 3889ba7 | 2021-03-15 11:56:29 +0000 | [diff] [blame] | 97 | int __init set_handle_fiq(void (*handle_fiq)(struct pt_regs *)) |
| 98 | { |
| 99 | if (handle_arch_fiq != default_handle_fiq) |
| 100 | return -EBUSY; |
| 101 | |
| 102 | handle_arch_fiq = handle_fiq; |
| 103 | pr_info("Root FIQ handler: %ps\n", handle_fiq); |
| 104 | return 0; |
| 105 | } |
| 106 | |
Marc Zyngier | fb9bd7d6 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 107 | void __init init_IRQ(void) |
| 108 | { |
Mark Rutland | f60fe78 | 2017-07-31 21:17:03 +0100 | [diff] [blame] | 109 | init_irq_stacks(); |
Sami Tolvanen | ac20ffb | 2020-11-30 15:34:42 -0800 | [diff] [blame] | 110 | init_irq_scs(); |
Catalin Marinas | e851b58 | 2013-01-14 12:39:31 +0000 | [diff] [blame] | 111 | irqchip_init(); |
Wei Li | e1d2238 | 2019-06-11 10:38:12 +0100 | [diff] [blame] | 112 | |
| 113 | if (system_uses_irq_prio_masking()) { |
| 114 | /* |
| 115 | * Now that we have a stack for our IRQ handler, set |
| 116 | * the PMR/PSR pair to a consistent state. |
| 117 | */ |
| 118 | WARN_ON(read_sysreg(daif) & PSR_A_BIT); |
| 119 | local_daif_restore(DAIF_PROCCTX_NOIRQ); |
| 120 | } |
Marc Zyngier | fb9bd7d6 | 2012-03-05 11:49:29 +0000 | [diff] [blame] | 121 | } |