2005-04-17 06:20:36 +08:00
|
|
|
/*
|
2013-06-14 03:55:06 +08: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.
|
|
|
|
*
|
2005-04-17 06:20:36 +08:00
|
|
|
* Carsten Langgaard, carstenl@mips.com
|
|
|
|
* Copyright (C) 1999,2000 MIPS Technologies, Inc. All rights reserved.
|
|
|
|
*/
|
2013-06-14 03:55:06 +08:00
|
|
|
#include <linux/io.h>
|
2006-01-19 01:37:07 +08:00
|
|
|
#include <linux/pm.h>
|
2016-09-20 05:21:28 +08:00
|
|
|
#include <linux/reboot.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#include <asm/reboot.h>
|
2014-05-07 19:22:12 +08:00
|
|
|
#include <asm/mach-malta/malta-pm.h>
|
2013-06-14 03:55:05 +08:00
|
|
|
|
2014-05-07 19:20:59 +08:00
|
|
|
static void mips_machine_power_off(void)
|
|
|
|
{
|
2014-05-07 19:22:12 +08:00
|
|
|
mips_pm_suspend(PIIX4_FUNC3IO_PMCNTRL_SUS_TYP_SOFF);
|
|
|
|
|
|
|
|
pr_info("Failed to power down, resetting\n");
|
2016-09-20 05:21:28 +08:00
|
|
|
machine_restart(NULL);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2009-09-15 20:50:39 +08:00
|
|
|
static int __init mips_reboot_setup(void)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2014-05-07 19:20:59 +08:00
|
|
|
pm_power_off = mips_machine_power_off;
|
2009-09-15 20:50:39 +08:00
|
|
|
|
|
|
|
return 0;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
2009-09-15 20:50:39 +08:00
|
|
|
arch_initcall(mips_reboot_setup);
|