2 * linux/arch/mips/sni/process.c
6 #include <linux/delay.h>
9 #include <asm/reboot.h>
13 * This routine reboots the machine by asking the keyboard
14 * controller to pulse the reset-line low. We try that for a while,
15 * and if it doesn't work, we do some other stupid things.
17 static inline void kb_wait(void)
21 for (i
= 0; i
< 0x10000; i
++)
22 if ((inb_p(0x64) & 0x02) == 0)
26 /* XXX This ends up at the ARC firmware prompt ... */
27 void sni_machine_restart(char *command
)
31 /* This does a normal via the keyboard controller like a PC.
32 We can do that easier ... */
35 for (i
= 0; i
< 100; i
++) {
38 outb_p(0xfe, 0x64); /* pulse reset low */
44 void sni_machine_power_off(void)
46 *(volatile unsigned char *)PCIMT_CSWCSM
= 0xfd;