diff options
author | Matt Redfearn <matt.redfearn@imgtec.com> | 2016-12-19 09:20:56 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-04-18 01:11:48 -0400 |
commit | 742817bb77f97a52d86333c59cffd5e85de7df3d (patch) | |
tree | b8cd4c5c0722a9af047dd8f1968ddd260ef0ede8 /arch/mips/kernel | |
parent | 760327cb080bc4e0b47503fc0794ef94214a778d (diff) |
MIPS: Introduce irq_stack
commit fe8bd18ffea5327344d4ec2bf11f47951212abd0 upstream.
Allocate a per-cpu irq stack for use within interrupt handlers.
Also add a utility function on_irq_stack to determine if a given stack
pointer is within the irq stack for that cpu.
Signed-off-by: Matt Redfearn <matt.redfearn@imgtec.com>
Acked-by: Jason A. Donenfeld <jason@zx2c4.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Chris Metcalf <cmetcalf@mellanox.com>
Cc: Petr Mladek <pmladek@suse.com>
Cc: James Hogan <james.hogan@imgtec.com>
Cc: Paul Burton <paul.burton@imgtec.com>
Cc: Aaron Tomlin <atomlin@redhat.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/14740/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/mips/kernel')
-rw-r--r-- | arch/mips/kernel/asm-offsets.c | 1 | ||||
-rw-r--r-- | arch/mips/kernel/irq.c | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/arch/mips/kernel/asm-offsets.c b/arch/mips/kernel/asm-offsets.c index fae2f9447792..4be2763f835d 100644 --- a/arch/mips/kernel/asm-offsets.c +++ b/arch/mips/kernel/asm-offsets.c | |||
@@ -102,6 +102,7 @@ void output_thread_info_defines(void) | |||
102 | OFFSET(TI_REGS, thread_info, regs); | 102 | OFFSET(TI_REGS, thread_info, regs); |
103 | DEFINE(_THREAD_SIZE, THREAD_SIZE); | 103 | DEFINE(_THREAD_SIZE, THREAD_SIZE); |
104 | DEFINE(_THREAD_MASK, THREAD_MASK); | 104 | DEFINE(_THREAD_MASK, THREAD_MASK); |
105 | DEFINE(_IRQ_STACK_SIZE, IRQ_STACK_SIZE); | ||
105 | BLANK(); | 106 | BLANK(); |
106 | } | 107 | } |
107 | 108 | ||
diff --git a/arch/mips/kernel/irq.c b/arch/mips/kernel/irq.c index f25f7eab7307..2b0a371b42af 100644 --- a/arch/mips/kernel/irq.c +++ b/arch/mips/kernel/irq.c | |||
@@ -25,6 +25,8 @@ | |||
25 | #include <linux/atomic.h> | 25 | #include <linux/atomic.h> |
26 | #include <asm/uaccess.h> | 26 | #include <asm/uaccess.h> |
27 | 27 | ||
28 | void *irq_stack[NR_CPUS]; | ||
29 | |||
28 | /* | 30 | /* |
29 | * 'what should we do if we get a hw irq event on an illegal vector'. | 31 | * 'what should we do if we get a hw irq event on an illegal vector'. |
30 | * each architecture has to answer this themselves. | 32 | * each architecture has to answer this themselves. |
@@ -58,6 +60,15 @@ void __init init_IRQ(void) | |||
58 | clear_c0_status(ST0_IM); | 60 | clear_c0_status(ST0_IM); |
59 | 61 | ||
60 | arch_init_irq(); | 62 | arch_init_irq(); |
63 | |||
64 | for_each_possible_cpu(i) { | ||
65 | int irq_pages = IRQ_STACK_SIZE / PAGE_SIZE; | ||
66 | void *s = (void *)__get_free_pages(GFP_KERNEL, irq_pages); | ||
67 | |||
68 | irq_stack[i] = s; | ||
69 | pr_debug("CPU%d IRQ stack at 0x%p - 0x%p\n", i, | ||
70 | irq_stack[i], irq_stack[i] + IRQ_STACK_SIZE); | ||
71 | } | ||
61 | } | 72 | } |
62 | 73 | ||
63 | #ifdef CONFIG_DEBUG_STACKOVERFLOW | 74 | #ifdef CONFIG_DEBUG_STACKOVERFLOW |