-
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.
Signed-off-by: Thiemo Seufer <ths@networkno.de> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
- Loading branch information
Thiemo Seufer
authored and
Ralf Baechle
committed
Jun 19, 2006
1 parent
eae8907
commit c583122
Showing
4 changed files
with
45 additions
and
1 deletion.
There are no files selected for viewing
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,34 @@ | ||
#include <linux/config.h> | ||
|
||
#include <asm/io.h> | ||
#include <asm/reboot.h> | ||
#include <asm/cacheflush.h> | ||
#include <asm/qemu.h> | ||
|
||
static void qemu_machine_restart(char *command) | ||
{ | ||
volatile unsigned int *reg = (unsigned int *)QEMU_RESTART_REG; | ||
|
||
set_c0_status(ST0_BEV | ST0_ERL); | ||
change_c0_config(CONF_CM_CMASK, CONF_CM_UNCACHED); | ||
flush_cache_all(); | ||
write_c0_wired(0); | ||
*reg = 42; | ||
while (1) | ||
cpu_wait(); | ||
} | ||
|
||
static void qemu_machine_halt(void) | ||
{ | ||
volatile unsigned int *reg = (unsigned int *)QEMU_HALT_REG; | ||
|
||
*reg = 42; | ||
while (1) | ||
cpu_wait(); | ||
} | ||
|
||
void qemu_reboot_setup(void) | ||
{ | ||
_machine_restart = qemu_machine_restart; | ||
_machine_halt = qemu_machine_halt; | ||
} |
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