linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [RFC/PATCH] Maple: Use RTAS power off methods if available
@ 2006-10-25 10:28 Michael Ellerman
  2006-10-25 13:58 ` Nathan Lynch
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Ellerman @ 2006-10-25 10:28 UTC (permalink / raw)
  To: Paul Mackerras; +Cc: linuxppc-dev

Some versions of SLOF have the RTAS power-off/restart methods
implemented, if they're available they should be used in preference
to the nvram based methods.

Not sure what the best way to do this is, this is the easy approach
although it leaves the system unrebootable until the callbacks get
rewired. The other option would be to do the check in maple_restart
etc. when they're called.

Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
---

 arch/powerpc/Kconfig                 |    1 +
 arch/powerpc/platforms/maple/setup.c |   23 +++++++++++++++++++++++
 2 files changed, 24 insertions(+)

Index: powerpc/arch/powerpc/Kconfig
===================================================================
--- powerpc.orig/arch/powerpc/Kconfig
+++ powerpc/arch/powerpc/Kconfig
@@ -422,6 +422,7 @@ config PPC_MAPLE
 	select GENERIC_TBSYNC
 	select PPC_UDBG_16550
 	select PPC_970_NAP
+	select PPC_RTAS
 	default n
 	help
           This option enables support for the Maple 970FX Evaluation Board.
Index: powerpc/arch/powerpc/platforms/maple/setup.c
===================================================================
--- powerpc.orig/arch/powerpc/platforms/maple/setup.c
+++ powerpc/arch/powerpc/platforms/maple/setup.c
@@ -61,6 +61,7 @@
 #include <asm/lmb.h>
 #include <asm/mpic.h>
 #include <asm/udbg.h>
+#include <asm/rtas.h>
 
 #include "maple.h"
 
@@ -185,6 +186,26 @@ void __init maple_setup_arch(void)
 	printk(KERN_DEBUG "Using native/NAP idle loop\n");
 }
 
+static void __init maple_check_for_rtas_poweroff(void)
+{
+#ifdef CONFIG_PPC_RTAS
+	struct device_node *rtas;
+
+	rtas = of_find_node_by_path("/rtas");
+	if (rtas) {
+		if (get_property(rtas, "system-reboot", NULL))
+			ppc_md.restart = rtas_restart;
+
+		if (get_property(rtas, "power-off", NULL)) {
+			ppc_md.power_off = rtas_power_off;
+			ppc_md.halt = rtas_halt;
+		}
+
+		of_node_put(rtas);
+	}
+#endif
+}
+
 /* 
  * Early initialization.
  */
@@ -192,6 +213,8 @@ static void __init maple_init_early(void
 {
 	DBG(" -> maple_init_early\n");
 
+	maple_check_for_rtas_poweroff();
+
 	iommu_init_early_dart();
 
 	DBG(" <- maple_init_early\n");

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

end of thread, other threads:[~2006-10-25 13:59 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-25 10:28 [RFC/PATCH] Maple: Use RTAS power off methods if available Michael Ellerman
2006-10-25 13:58 ` Nathan Lynch

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).