diff options
author | Nicholas Piggin <npiggin@gmail.com> | 2016-12-20 04:30:08 +1000 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2017-04-28 21:02:25 +1000 |
commit | ddd703ca06ede1b2d01ed1b0cb8d4315ab808099 (patch) | |
tree | 16f3dbea636620e812642a85e4c8e1b549023051 /arch/powerpc/Kconfig | |
parent | 2b4f3ac5642672595ef6f71d1572b32475e94863 (diff) | |
download | op-kernel-dev-ddd703ca06ede1b2d01ed1b0cb8d4315ab808099.zip op-kernel-dev-ddd703ca06ede1b2d01ed1b0cb8d4315ab808099.tar.gz |
powerpc: Add NMI IPI infrastructure
Add a simple NMI IPI system that handles concurrency and reentrancy.
The platform does not have to implement a true non-maskable interrupt,
the default is to simply use the debugger break IPI message. This has
now been co-opted for a general IPI message, and users (debugger and
crash) have been reimplemented on top of the NMI system.
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
[mpe: Incorporate incremental fixes from Nick]
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/Kconfig')
-rw-r--r-- | arch/powerpc/Kconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig index 7401e92..48cc3d8 100644 --- a/arch/powerpc/Kconfig +++ b/arch/powerpc/Kconfig @@ -80,6 +80,11 @@ config NR_IRQS /proc/interrupts. If you configure your system to have too few, drivers will fail to load or worse - handle with care. +config NMI_IPI + bool + depends on SMP && (DEBUGGER || KEXEC_CORE) + default y + config STACKTRACE_SUPPORT bool default y |