blob: 8a1d9cc5a134356910815c736f356821c8c77ec5 [file] [log] [blame]
Kelvin Cheungca585cf2012-07-25 16:17:24 +02001/*
2 * Copyright (c) 2011 Zhang, Keguang <keguang.zhang@gmail.com>
3 *
Ralf Baechle70342282013-01-22 12:59:30 +01004 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
Kelvin Cheungca585cf2012-07-25 16:17:24 +02006 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version.
8 */
9
10#include <linux/io.h>
11#include <linux/pm.h>
Kelvin Cheung9ec88b62016-04-06 20:34:54 +080012#include <linux/sizes.h>
Ralf Baechlebdc92d742013-05-21 16:59:19 +020013#include <asm/idle.h>
Kelvin Cheungca585cf2012-07-25 16:17:24 +020014#include <asm/reboot.h>
15
16#include <loongson1.h>
17
Kelvin Cheung9ec88b62016-04-06 20:34:54 +080018static void __iomem *wdt_reg_base;
Kelvin Cheungca585cf2012-07-25 16:17:24 +020019
20static void ls1x_halt(void)
21{
22 while (1) {
23 if (cpu_wait)
24 cpu_wait();
25 }
26}
27
Kelvin Cheunga13f0792014-10-10 11:39:59 +080028static void ls1x_restart(char *command)
29{
Kelvin Cheung9ec88b62016-04-06 20:34:54 +080030 __raw_writel(0x1, wdt_reg_base + WDT_EN);
31 __raw_writel(0x1, wdt_reg_base + WDT_TIMER);
32 __raw_writel(0x1, wdt_reg_base + WDT_SET);
Kelvin Cheunga13f0792014-10-10 11:39:59 +080033
34 ls1x_halt();
35}
36
Kelvin Cheungca585cf2012-07-25 16:17:24 +020037static void ls1x_power_off(void)
38{
39 ls1x_halt();
40}
41
42static int __init ls1x_reboot_setup(void)
43{
Kelvin Cheung9ec88b62016-04-06 20:34:54 +080044 wdt_reg_base = ioremap_nocache(LS1X_WDT_BASE, (SZ_4 + SZ_8));
45 if (!wdt_reg_base)
Kelvin Cheunga13f0792014-10-10 11:39:59 +080046 panic("Failed to remap watchdog registers");
47
Kelvin Cheungca585cf2012-07-25 16:17:24 +020048 _machine_restart = ls1x_restart;
49 _machine_halt = ls1x_halt;
50 pm_power_off = ls1x_power_off;
51
52 return 0;
53}
54
55arch_initcall(ls1x_reboot_setup);