aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/sni/reset.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/mips/sni/reset.c
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'arch/mips/sni/reset.c')
-rw-r--r--arch/mips/sni/reset.c51
1 files changed, 51 insertions, 0 deletions
diff --git a/arch/mips/sni/reset.c b/arch/mips/sni/reset.c
new file mode 100644
index 000000000000..be85bec002e1
--- /dev/null
+++ b/arch/mips/sni/reset.c
@@ -0,0 +1,51 @@
1/*
2 * linux/arch/mips/sni/process.c
3 *
4 * Reset a SNI machine.
5 */
6#include <asm/io.h>
7#include <asm/reboot.h>
8#include <asm/system.h>
9#include <asm/sni.h>
10
11/*
12 * This routine reboots the machine by asking the keyboard
13 * controller to pulse the reset-line low. We try that for a while,
14 * and if it doesn't work, we do some other stupid things.
15 */
16static inline void
17kb_wait(void)
18{
19 int i;
20
21 for (i=0; i<0x10000; i++)
22 if ((inb_p(0x64) & 0x02) == 0)
23 break;
24}
25
26/* XXX This ends up at the ARC firmware prompt ... */
27void sni_machine_restart(char *command)
28{
29 int i, j;
30
31 /* This does a normal via the keyboard controller like a PC.
32 We can do that easier ... */
33 local_irq_disable();
34 for (;;) {
35 for (i=0; i<100; i++) {
36 kb_wait();
37 for(j = 0; j < 100000 ; j++)
38 /* nothing */;
39 outb_p(0xfe,0x64); /* pulse reset low */
40 }
41 }
42}
43
44void sni_machine_halt(void)
45{
46}
47
48void sni_machine_power_off(void)
49{
50 *(volatile unsigned char *)PCIMT_CSWCSM = 0xfd;
51}