diff options
author | David S. Miller <davem@davemloft.net> | 2017-02-23 17:27:30 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-02-23 17:27:30 +0100 |
commit | 0d88b86694e0b176c1b9ca10cee95863065e2471 (patch) | |
tree | 9637fa692398887c369983b5fba391b3c83c199a /arch/sparc/include | |
parent | sunvdc: Add support for setting physical sector size (diff) | |
parent | Documentation/sparc: Steps for sending break on sunhv console (diff) | |
download | linux-0d88b86694e0b176c1b9ca10cee95863065e2471.tar.xz linux-0d88b86694e0b176c1b9ca10cee95863065e2471.zip |
Merge branch 'sparc64-jump-to-boot-prom'
Vijay Kumar says:
====================
sparc64: Jump to boot prom from console on panic
V3 changes:
- patch 02/04: Added SERIAL_SUNHV conditional group for
sunhv_migrate_hvcons_irq in smp_send_stop().
V2 changes:
- Added cover letter patch
Currently Stop-A (L1A) does not make the kernel switch to OBP on panic. This
patchset addresses this issue. Also, now we can cause a jump to OBP by sending
'break' twice from sunhv console. On bare metal, one can send a break by
typing Esc + 'B' + Sysrq (or whatever). On LDOM, press Ctrl + ] in telnet,
and then "send break" at the telnet prompt.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/include')
-rw-r--r-- | arch/sparc/include/asm/setup.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/sparc/include/asm/setup.h b/arch/sparc/include/asm/setup.h index 29d64b1758ed..478bf6bb4598 100644 --- a/arch/sparc/include/asm/setup.h +++ b/arch/sparc/include/asm/setup.h @@ -59,8 +59,11 @@ extern atomic_t dcpage_flushes; extern atomic_t dcpage_flushes_xcall; extern int sysctl_tsb_ratio; -#endif +#ifdef CONFIG_SERIAL_SUNHV +void sunhv_migrate_hvcons_irq(int cpu); +#endif +#endif void sun_do_break(void); extern int stop_a_enabled; extern int scons_pwroff; |