2 * Hisilicon SoC reset code
4 * Copyright (c) 2014 Hisilicon Ltd.
5 * Copyright (c) 2014 Linaro Ltd.
7 * Author: Haojian Zhuang <haojian.zhuang@linaro.org>
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.
14 #include <linux/delay.h>
16 #include <linux/module.h>
17 #include <linux/notifier.h>
18 #include <linux/of_address.h>
19 #include <linux/platform_device.h>
20 #include <linux/reboot.h>
22 #include <asm/proc-fns.h>
24 static void __iomem
*base
;
25 static u32 reboot_offset
;
27 static int hisi_restart_handler(struct notifier_block
*this,
28 unsigned long mode
, void *cmd
)
30 writel_relaxed(0xdeadbeef, base
+ reboot_offset
);
38 static struct notifier_block hisi_restart_nb
= {
39 .notifier_call
= hisi_restart_handler
,
43 static int hisi_reboot_probe(struct platform_device
*pdev
)
45 struct device_node
*np
= pdev
->dev
.of_node
;
48 base
= of_iomap(np
, 0);
50 WARN(1, "failed to map base address");
54 if (of_property_read_u32(np
, "reboot-offset", &reboot_offset
) < 0) {
55 pr_err("failed to find reboot-offset property\n");
60 err
= register_restart_handler(&hisi_restart_nb
);
62 dev_err(&pdev
->dev
, "cannot register restart handler (err=%d)\n",
70 static const struct of_device_id hisi_reboot_of_match
[] = {
71 { .compatible
= "hisilicon,sysctrl" },
75 static struct platform_driver hisi_reboot_driver
= {
76 .probe
= hisi_reboot_probe
,
78 .name
= "hisi-reboot",
79 .of_match_table
= hisi_reboot_of_match
,
82 module_platform_driver(hisi_reboot_driver
);