All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] powerpc/prom_init: Include the termination message in ibm,os-term RTAS call
@ 2020-03-24 20:12 ` Fabiano Rosas
  0 siblings, 0 replies; 10+ messages in thread
From: Fabiano Rosas @ 2020-03-24 20:12 UTC (permalink / raw)
  To: linuxppc-dev; +Cc: linuxram, paulus, kvm-ppc

QEMU can now print the ibm,os-term message[1], so let's include it in
the RTAS call. E.g.:

  qemu-system-ppc64: OS terminated: Switch to secure mode failed.

1- https://git.qemu.org/?p=qemu.git;a=commitdiff;h¤c3791ae0

Signed-off-by: Fabiano Rosas <farosas@linux.ibm.com>
---
 arch/powerpc/kernel/prom_init.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/arch/powerpc/kernel/prom_init.c b/arch/powerpc/kernel/prom_init.c
index 577345382b23..d543fb6d29c5 100644
--- a/arch/powerpc/kernel/prom_init.c
+++ b/arch/powerpc/kernel/prom_init.c
@@ -1773,6 +1773,9 @@ static void __init prom_rtas_os_term(char *str)
 	if (token = 0)
 		prom_panic("Could not get token for ibm,os-term\n");
 	os_term_args.token = cpu_to_be32(token);
+	os_term_args.nargs = cpu_to_be32(1);
+	os_term_args.args[0] = cpu_to_be32(__pa(str));
+
 	prom_rtas_hcall((uint64_t)&os_term_args);
 }
 #endif /* CONFIG_PPC_SVM */
-- 
2.23.0

^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2020-03-25 13:32 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-24 20:12 [PATCH] powerpc/prom_init: Include the termination message in ibm,os-term RTAS call Fabiano Rosas
2020-03-24 20:12 ` [PATCH] powerpc/prom_init: Include the termination message in ibm, os-term " Fabiano Rosas
2020-03-25 10:06 ` [PATCH] powerpc/prom_init: Include the termination message in ibm,os-term " Michael Ellerman
2020-03-25 10:06   ` [PATCH] powerpc/prom_init: Include the termination message in ibm, os-term " Michael Ellerman
2020-03-25 10:34   ` [PATCH] powerpc/prom_init: Include the termination message in ibm,os-term " Greg Kurz
2020-03-25 10:34     ` Greg Kurz
2020-03-25 13:24   ` Fabiano Rosas
2020-03-25 13:24     ` [PATCH] powerpc/prom_init: Include the termination message in ibm, os-term " Fabiano Rosas
2020-03-25 13:24 ` [PATCH] powerpc/prom_init: Include the termination message in ibm,os-term " Ram Pai
2020-03-25 13:24   ` Ram Pai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.