-
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.
- Loading branch information
Thiemo Seufer
authored and
Ralf Baechle
committed
Jun 19, 2006
1 parent
19350d8
commit 1b54869
Showing
5 changed files
with
46 additions
and
2 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: eae89076e696f51762d81d6e2538c3beb59fa7bd | ||
refs/heads/master: c583122c26ad04bb2379933dc5acc8b9479d6c67 |
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