blob: 2fd2cc2c5034fbf1ddd59ffec163fab76187aa4a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Steven J. Hillb72d9a42013-06-13 19:55:06 +00002 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Carsten Langgaard, carstenl@mips.com
7 * Copyright (C) 1999,2000 MIPS Technologies, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
Steven J. Hillb72d9a42013-06-13 19:55:06 +00009#include <linux/io.h>
Ralf Baechlefcdb27a2006-01-18 17:37:07 +000010#include <linux/pm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <asm/reboot.h>
Paul Burtondadaa1c2014-05-07 12:22:12 +010013#include <asm/mach-malta/malta-pm.h>
Steven J. Hill36a29af2013-06-13 19:55:05 +000014
15#define SOFTRES_REG 0x1f000500
16#define GORESET 0x42
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Linus Torvalds1da177e2005-04-16 15:20:36 -070018static void mips_machine_restart(char *command)
19{
Dmitri Vorobiev84c21e22008-01-08 06:44:00 +030020 unsigned int __iomem *softres_reg =
21 ioremap(SOFTRES_REG, sizeof(unsigned int));
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Dmitri Vorobiev84c21e22008-01-08 06:44:00 +030023 __raw_writel(GORESET, softres_reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070024}
25
26static void mips_machine_halt(void)
27{
Paul Burton37e5c832014-05-07 12:20:59 +010028 while (true);
29}
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Paul Burton37e5c832014-05-07 12:20:59 +010031static void mips_machine_power_off(void)
32{
Paul Burtondadaa1c2014-05-07 12:22:12 +010033 mips_pm_suspend(PIIX4_FUNC3IO_PMCNTRL_SUS_TYP_SOFF);
34
35 pr_info("Failed to power down, resetting\n");
Paul Burton37e5c832014-05-07 12:20:59 +010036 mips_machine_restart(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037}
38
Ralf Baechle1f320d02009-09-15 14:50:39 +020039static int __init mips_reboot_setup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040{
41 _machine_restart = mips_machine_restart;
42 _machine_halt = mips_machine_halt;
Paul Burton37e5c832014-05-07 12:20:59 +010043 pm_power_off = mips_machine_power_off;
Ralf Baechle1f320d02009-09-15 14:50:39 +020044
45 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046}
Ralf Baechle1f320d02009-09-15 14:50:39 +020047arch_initcall(mips_reboot_setup);