blob: 6afa34346b8148040a84e0a54ecd7af8d7ac608c [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 */
Ralf Baechlec8615192015-11-27 19:17:01 +01006#include <linux/delay.h>
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <asm/io.h>
9#include <asm/reboot.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <asm/sni.h>
11
12/*
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.
16 */
Thomas Bogendoerferc066a322006-12-28 18:22:32 +010017static inline void kb_wait(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070018{
19 int i;
20
Thomas Bogendoerferc066a322006-12-28 18:22:32 +010021 for (i = 0; i < 0x10000; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 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{
Ralf Baechleec7b9722015-11-27 19:17:01 +010029 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31 /* This does a normal via the keyboard controller like a PC.
32 We can do that easier ... */
33 local_irq_disable();
34 for (;;) {
Thomas Bogendoerferc066a322006-12-28 18:22:32 +010035 for (i = 0; i < 100; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 kb_wait();
Ralf Baechlec8615192015-11-27 19:17:01 +010037 udelay(50);
Ralf Baechle21a151d2007-10-11 23:46:15 +010038 outb_p(0xfe, 0x64); /* pulse reset low */
Ralf Baechlec8615192015-11-27 19:17:01 +010039 udelay(50);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 }
41 }
42}
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044void sni_machine_power_off(void)
45{
46 *(volatile unsigned char *)PCIMT_CSWCSM = 0xfd;
47}