blob: f69387e12c1e545a3cedcb126247050401c8996a [file] [log] [blame]
Haojian Zhuang4a9b3732014-05-13 17:11:28 +08001/*
2 * Hisilicon SoC reset code
3 *
4 * Copyright (c) 2014 Hisilicon Ltd.
5 * Copyright (c) 2014 Linaro Ltd.
6 *
7 * Author: Haojian Zhuang <haojian.zhuang@linaro.org>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
14#include <linux/delay.h>
15#include <linux/io.h>
16#include <linux/module.h>
Guenter Roeck67245342014-09-30 10:48:35 -070017#include <linux/notifier.h>
Haojian Zhuang4a9b3732014-05-13 17:11:28 +080018#include <linux/of_address.h>
19#include <linux/platform_device.h>
20#include <linux/reboot.h>
21
22#include <asm/proc-fns.h>
Haojian Zhuang4a9b3732014-05-13 17:11:28 +080023
24static void __iomem *base;
25static u32 reboot_offset;
26
Guenter Roeck67245342014-09-30 10:48:35 -070027static int hisi_restart_handler(struct notifier_block *this,
28 unsigned long mode, void *cmd)
Haojian Zhuang4a9b3732014-05-13 17:11:28 +080029{
30 writel_relaxed(0xdeadbeef, base + reboot_offset);
31
32 while (1)
33 cpu_do_idle();
Guenter Roeck67245342014-09-30 10:48:35 -070034
35 return NOTIFY_DONE;
Haojian Zhuang4a9b3732014-05-13 17:11:28 +080036}
37
Guenter Roeck67245342014-09-30 10:48:35 -070038static struct notifier_block hisi_restart_nb = {
39 .notifier_call = hisi_restart_handler,
40 .priority = 128,
41};
42
Haojian Zhuang4a9b3732014-05-13 17:11:28 +080043static int hisi_reboot_probe(struct platform_device *pdev)
44{
45 struct device_node *np = pdev->dev.of_node;
Guenter Roeck67245342014-09-30 10:48:35 -070046 int err;
Haojian Zhuang4a9b3732014-05-13 17:11:28 +080047
48 base = of_iomap(np, 0);
49 if (!base) {
50 WARN(1, "failed to map base address");
51 return -ENODEV;
52 }
53
54 if (of_property_read_u32(np, "reboot-offset", &reboot_offset) < 0) {
55 pr_err("failed to find reboot-offset property\n");
Arvind Yadavbae170e2016-08-12 20:49:18 +053056 iounmap(base);
Haojian Zhuang4a9b3732014-05-13 17:11:28 +080057 return -EINVAL;
58 }
59
Guenter Roeck67245342014-09-30 10:48:35 -070060 err = register_restart_handler(&hisi_restart_nb);
Arvind Yadavbae170e2016-08-12 20:49:18 +053061 if (err) {
Guenter Roeck67245342014-09-30 10:48:35 -070062 dev_err(&pdev->dev, "cannot register restart handler (err=%d)\n",
63 err);
Arvind Yadavbae170e2016-08-12 20:49:18 +053064 iounmap(base);
65 }
Haojian Zhuang4a9b3732014-05-13 17:11:28 +080066
Guenter Roeck67245342014-09-30 10:48:35 -070067 return err;
Haojian Zhuang4a9b3732014-05-13 17:11:28 +080068}
69
Fabian Frederick8fb08852015-03-16 20:17:12 +010070static const struct of_device_id hisi_reboot_of_match[] = {
Haojian Zhuang4a9b3732014-05-13 17:11:28 +080071 { .compatible = "hisilicon,sysctrl" },
72 {}
73};
74
75static struct platform_driver hisi_reboot_driver = {
76 .probe = hisi_reboot_probe,
77 .driver = {
78 .name = "hisi-reboot",
79 .of_match_table = hisi_reboot_of_match,
80 },
81};
82module_platform_driver(hisi_reboot_driver);