-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sparc64: Move reboot handling into seperate file and kill power reg p…
…rogramming. We should always use prom_power_off(). Signed-off-by: David S. Miller <davem@davemloft.net>
- Loading branch information
David S. Miller
committed
Sep 2, 2008
1 parent
e822358
commit cdb3592
Showing
5 changed files
with
57 additions
and
77 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* reboot.c: reboot/shutdown/halt/poweroff handling | ||
* | ||
* Copyright (C) 2008 David S. Miller <davem@davemloft.net> | ||
*/ | ||
#include <linux/kernel.h> | ||
#include <linux/reboot.h> | ||
#include <linux/module.h> | ||
#include <linux/pm.h> | ||
|
||
#include <asm/sstate.h> | ||
#include <asm/oplib.h> | ||
#include <asm/prom.h> | ||
|
||
/* sysctl - toggle power-off restriction for serial console | ||
* systems in machine_power_off() | ||
*/ | ||
int scons_pwroff = 1; | ||
|
||
/* This isn't actually used, it exists merely to satisfy the | ||
* reference in kernel/sys.c | ||
*/ | ||
void (*pm_power_off)(void) = machine_power_off; | ||
EXPORT_SYMBOL(pm_power_off); | ||
|
||
void machine_power_off(void) | ||
{ | ||
sstate_poweroff(); | ||
if (strcmp(of_console_device->type, "serial") || scons_pwroff) | ||
prom_halt_power_off(); | ||
|
||
prom_halt(); | ||
} | ||
|
||
void machine_halt(void) | ||
{ | ||
sstate_halt(); | ||
prom_halt(); | ||
panic("Halt failed!"); | ||
} | ||
|
||
void machine_restart(char *cmd) | ||
{ | ||
char *p; | ||
|
||
sstate_reboot(); | ||
p = strchr(reboot_command, '\n'); | ||
if (p) | ||
*p = 0; | ||
if (cmd) | ||
prom_reboot(cmd); | ||
if (*reboot_command) | ||
prom_reboot(reboot_command); | ||
prom_reboot(""); | ||
panic("Reboot failed!"); | ||
} | ||
|