summaryrefslogtreecommitdiffstats
path: root/arch/mips/sgi/kernel/reset.c
blob: 578a205744865839ca6dbd38c42094c44f36ab5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 *  linux/arch/mips/sgi/kernel/process.c
 *
 *  Reset a SGI.
 */
#include <asm/io.h>
#include <asm/system.h>
#include <asm/reboot.h>
#include <asm/sgialib.h>

/* XXX How to pass the reboot command to the firmware??? */
void sgi_machine_restart(char *command)
{
        for(;;)
                prom_imode();
}

void sgi_machine_halt(void)
{
	/* XXX */
}

void sgi_machine_power_off(void)
{
	/* XXX */
}