blob: 244f9427625b5873003cc92132c96a32d99663eb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/mips/sni/process.c
3 *
4 * Reset a SNI machine.
5 */
6#include <asm/io.h>
7#include <asm/reboot.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <asm/sni.h>
9
10/*
11 * This routine reboots the machine by asking the keyboard
12 * controller to pulse the reset-line low. We try that for a while,
13 * and if it doesn't work, we do some other stupid things.
14 */
Thomas Bogendoerferc066a322006-12-28 18:22:32 +010015static inline void kb_wait(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016{
17 int i;
18
Thomas Bogendoerferc066a322006-12-28 18:22:32 +010019 for (i = 0; i < 0x10000; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 if ((inb_p(0x64) & 0x02) == 0)
21 break;
22}
23
24/* XXX This ends up at the ARC firmware prompt ... */
25void sni_machine_restart(char *command)
26{
27 int i, j;
28
29 /* This does a normal via the keyboard controller like a PC.
30 We can do that easier ... */
31 local_irq_disable();
32 for (;;) {
Thomas Bogendoerferc066a322006-12-28 18:22:32 +010033 for (i = 0; i < 100; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 kb_wait();
Thomas Bogendoerferc066a322006-12-28 18:22:32 +010035 for (j = 0; j < 100000 ; j++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 /* nothing */;
Ralf Baechle21a151d2007-10-11 23:46:15 +010037 outb_p(0xfe, 0x64); /* pulse reset low */
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 }
39 }
40}
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042void sni_machine_power_off(void)
43{
44 *(volatile unsigned char *)PCIMT_CSWCSM = 0xfd;
45}