2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
|
|
* for more details.
|
|
|
|
*
|
2006-01-18 18:37:07 +01:00
|
|
|
* Copyright (C) 2001, 06 by Ralf Baechle (ralf@linux-mips.org)
|
2005-04-17 00:20:36 +02:00
|
|
|
* Copyright (C) 2001 MIPS Technologies, Inc.
|
|
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
2006-01-18 18:37:07 +01:00
|
|
|
#include <linux/pm.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/reboot.h>
|
2006-01-18 18:37:07 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <asm/reboot.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Urgs ... Too many MIPS machines to handle this in a generic way.
|
|
|
|
* So handle all using function pointers to machine specific
|
|
|
|
* functions.
|
|
|
|
*/
|
|
|
|
void (*_machine_restart)(char *command);
|
|
|
|
void (*_machine_halt)(void);
|
2006-01-18 18:37:07 +01:00
|
|
|
void (*pm_power_off)(void);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
void machine_restart(char *command)
|
|
|
|
{
|
2006-01-17 22:14:01 +01:00
|
|
|
if (_machine_restart)
|
|
|
|
_machine_restart(command);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void machine_halt(void)
|
|
|
|
{
|
2006-01-17 22:14:01 +01:00
|
|
|
if (_machine_halt)
|
|
|
|
_machine_halt();
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void machine_power_off(void)
|
|
|
|
{
|
2006-01-18 18:37:07 +01:00
|
|
|
if (pm_power_off)
|
|
|
|
pm_power_off();
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|