patch-2.4.20 linux-2.4.20/arch/mips/sgi-ip32/ip32-reset.c
Next file: linux-2.4.20/arch/mips/sgi-ip32/ip32-rtc.c
Previous file: linux-2.4.20/arch/mips/sgi-ip32/ip32-pci.c
Back to the patch index
Back to the overall index
- Lines: 35
- Date:
Thu Nov 28 15:53:10 2002
- Orig file:
linux-2.4.19/arch/mips/sgi-ip32/ip32-reset.c
- Orig date:
Wed Dec 31 16:00:00 1969
diff -urN linux-2.4.19/arch/mips/sgi-ip32/ip32-reset.c linux-2.4.20/arch/mips/sgi-ip32/ip32-reset.c
@@ -0,0 +1,34 @@
+/*
+ * This file is subject to the terms and conditions of the GNU General Public
+ * License. See the file "COPYING" in the main directory of this archive
+ * for more details.
+ *
+ * Copyright (C) 2001 Keith M Wesolowski
+ * Copyright (C) 2001 Paul Mundt
+ */
+#include <linux/init.h>
+
+#include <asm/reboot.h>
+#include <asm/sgialib.h>
+
+static void ip32_machine_restart(char *cmd)
+{
+ ArcReboot();
+}
+
+static inline void ip32_machine_halt(void)
+{
+ ArcEnterInteractiveMode();
+}
+
+static void ip32_machine_power_off(void)
+{
+ ip32_machine_halt();
+}
+
+void __init ip32_reboot_setup(void)
+{
+ _machine_restart = ip32_machine_restart;
+ _machine_halt = ip32_machine_halt;
+ _machine_power_off = ip32_machine_power_off;
+}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)