1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Hisilicon SoC reset code
4 *
5 * Copyright (c) 2014 Hisilicon Ltd.
6 * Copyright (c) 2014 Linaro Ltd.
7 *
8 * Author: Haojian Zhuang <haojian.zhuang@linaro.org>
9 */
10
11 #include <linux/bitops.h>
12 #include <linux/delay.h>
13 #include <linux/io.h>
14 #include <linux/module.h>
15 #include <linux/mfd/syscon.h>
16 #include <linux/notifier.h>
17 #include <linux/of_address.h>
18 #include <linux/platform_device.h>
19 #include <linux/reboot.h>
20 #include <linux/regmap.h>
21 #include <asm/system_misc.h>
22
23 #include <asm/proc-fns.h>
24
25 static void __iomem *base;
26 static u32 reboot_offset;
27 static struct regmap *pmu_regmap;
28 static struct regmap *sctrl_regmap;
29
30 #define REBOOT_REASON_BOOTLOADER (0x01)
31 #define REBOOT_REASON_COLDBOOT (0x00)
32 #define DDR_BYPASS BIT(31)
33
34 #define RST_FLAG_MASK GENMASK(7, 0)
35
36 #define PMU_HRST_OFFSET ((0x101) << 2)
37 #define SCPEREN1_OFFSET (0x170)
38
hisi_restart_handler(struct notifier_block * this,unsigned long mode,void * cmd)39 static int hisi_restart_handler(struct notifier_block *this,
40 unsigned long mode, void *cmd)
41 {
42 int ret;
43 char reboot_reason;
44
45 if (!cmd || !strcmp(cmd, "bootloader"))
46 reboot_reason = REBOOT_REASON_BOOTLOADER;
47 else
48 reboot_reason = REBOOT_REASON_COLDBOOT;
49
50 if (base) {
51 writel_relaxed(0xdeadbeef, base + reboot_offset);
52 } else {
53 ret = regmap_update_bits(pmu_regmap, PMU_HRST_OFFSET,
54 RST_FLAG_MASK, reboot_reason);
55 if (ret)
56 return ret;
57
58 ret = regmap_write(sctrl_regmap, SCPEREN1_OFFSET, DDR_BYPASS);
59 if (ret)
60 return ret;
61
62 ret = regmap_write(sctrl_regmap, reboot_offset, 0xdeadbeef);
63 if (ret)
64 return ret;
65 }
66
67 while (1)
68 mdelay(1);
69
70 return NOTIFY_DONE;
71 }
72
73 static struct notifier_block hisi_restart_nb = {
74 .notifier_call = hisi_restart_handler,
75 .priority = 128,
76 };
77
hisi_reboot_probe(struct platform_device * pdev)78 static int hisi_reboot_probe(struct platform_device *pdev)
79 {
80 struct device_node *np = pdev->dev.of_node;
81 int err;
82
83 base = of_iomap(np, 0);
84 if (!base) {
85 pmu_regmap = syscon_regmap_lookup_by_phandle(np, "pmu-regmap");
86 if (!pmu_regmap) {
87 WARN(1, "failed to regmap pmu address");
88 return -ENODEV;
89 }
90
91 sctrl_regmap = syscon_regmap_lookup_by_phandle(np, "sctrl-regmap");
92 if (!sctrl_regmap) {
93 WARN(1, "failed to regmap sctrl address");
94 return -ENODEV;
95 }
96 }
97
98 if (of_property_read_u32(np, "reboot-offset", &reboot_offset) < 0) {
99 pr_err("failed to find reboot-offset property\n");
100 iounmap(base);
101 return -EINVAL;
102 }
103
104 err = register_restart_handler(&hisi_restart_nb);
105 if (err) {
106 dev_err(&pdev->dev, "cannot register restart handler (err=%d)\n",
107 err);
108 iounmap(base);
109 }
110
111 return err;
112 }
113
114 static const struct of_device_id hisi_reboot_of_match[] = {
115 { .compatible = "hisilicon,sysctrl" },
116 { .compatible = "hisilicon,hi3660-reboot" },
117 {}
118 };
119
120 static struct platform_driver hisi_reboot_driver = {
121 .probe = hisi_reboot_probe,
122 .driver = {
123 .name = "hisi-reboot",
124 .of_match_table = hisi_reboot_of_match,
125 },
126 };
127 module_platform_driver(hisi_reboot_driver);
128
129 MODULE_DESCRIPTION("Reset driver for HiSi SoCs");
130 MODULE_LICENSE("GPL v2");
131