blob: c378d4ec826f4248155cb9f786697caba7e307ad [file] [log] [blame]
Maxime Ripardecfe64d2014-07-02 17:46:58 +02001/*
2 * Atmel AT91 SAM9 SoCs reset code
3 *
4 * Copyright (C) 2007 Atmel Corporation.
5 * Copyright (C) BitBox Ltd 2010
6 * Copyright (C) 2011 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcosoft.com>
7 * Copyright (C) 2014 Free Electrons
8 *
9 * This file is licensed under the terms of the GNU General Public
10 * License version 2. This program is licensed "as is" without any
11 * warranty of any kind, whether express or implied.
12 */
13
14#include <linux/io.h>
15#include <linux/module.h>
16#include <linux/of_address.h>
17#include <linux/platform_device.h>
18#include <linux/reboot.h>
19
Alexandre Bellonif0a0a582014-11-07 21:58:21 +010020#include <soc/at91/at91sam9_ddrsdr.h>
21#include <soc/at91/at91sam9_sdramc.h>
Maxime Ripardecfe64d2014-07-02 17:46:58 +020022
23#define AT91_RSTC_CR 0x00 /* Reset Controller Control Register */
24#define AT91_RSTC_PROCRST BIT(0) /* Processor Reset */
25#define AT91_RSTC_PERRST BIT(2) /* Peripheral Reset */
26#define AT91_RSTC_EXTRST BIT(3) /* External Reset */
27#define AT91_RSTC_KEY (0xa5 << 24) /* KEY Password */
28
29#define AT91_RSTC_SR 0x04 /* Reset Controller Status Register */
30#define AT91_RSTC_URSTS BIT(0) /* User Reset Status */
31#define AT91_RSTC_RSTTYP GENMASK(10, 8) /* Reset Type */
32#define AT91_RSTC_NRSTL BIT(16) /* NRST Pin Level */
33#define AT91_RSTC_SRCMP BIT(17) /* Software Reset Command in Progress */
34
35#define AT91_RSTC_MR 0x08 /* Reset Controller Mode Register */
36#define AT91_RSTC_URSTEN BIT(0) /* User Reset Enable */
37#define AT91_RSTC_URSTIEN BIT(4) /* User Reset Interrupt Enable */
38#define AT91_RSTC_ERSTL GENMASK(11, 8) /* External Reset Length */
39
40enum reset_type {
41 RESET_TYPE_GENERAL = 0,
42 RESET_TYPE_WAKEUP = 1,
43 RESET_TYPE_WATCHDOG = 2,
44 RESET_TYPE_SOFTWARE = 3,
45 RESET_TYPE_USER = 4,
46};
47
48static void __iomem *at91_ramc_base[2], *at91_rstc_base;
49
50/*
51* unless the SDRAM is cleanly shutdown before we hit the
52* reset register it can be left driving the data bus and
53* killing the chance of a subsequent boot from NAND
54*/
Guenter Roeck481ff6f2015-01-25 12:30:41 -080055static int at91sam9260_restart(struct notifier_block *this, unsigned long mode,
56 void *cmd)
Maxime Ripardecfe64d2014-07-02 17:46:58 +020057{
58 asm volatile(
59 /* Align to cache lines */
60 ".balign 32\n\t"
61
62 /* Disable SDRAM accesses */
63 "str %2, [%0, #" __stringify(AT91_SDRAMC_TR) "]\n\t"
64
65 /* Power down SDRAM */
66 "str %3, [%0, #" __stringify(AT91_SDRAMC_LPR) "]\n\t"
67
68 /* Reset CPU */
69 "str %4, [%1, #" __stringify(AT91_RSTC_CR) "]\n\t"
70
71 "b .\n\t"
72 :
73 : "r" (at91_ramc_base[0]),
74 "r" (at91_rstc_base),
75 "r" (1),
Ben Dooks7be5ac22015-03-26 14:16:22 +000076 "r" cpu_to_le32(AT91_SDRAMC_LPCB_POWER_DOWN),
77 "r" cpu_to_le32(AT91_RSTC_KEY | AT91_RSTC_PERRST | AT91_RSTC_PROCRST));
Guenter Roeck481ff6f2015-01-25 12:30:41 -080078
79 return NOTIFY_DONE;
Maxime Ripardecfe64d2014-07-02 17:46:58 +020080}
81
Guenter Roeck481ff6f2015-01-25 12:30:41 -080082static int at91sam9g45_restart(struct notifier_block *this, unsigned long mode,
83 void *cmd)
Maxime Ripardecfe64d2014-07-02 17:46:58 +020084{
85 asm volatile(
86 /*
87 * Test wether we have a second RAM controller to care
88 * about.
89 *
90 * First, test that we can dereference the virtual address.
91 */
92 "cmp %1, #0\n\t"
93 "beq 1f\n\t"
94
95 /* Then, test that the RAM controller is enabled */
96 "ldr r0, [%1]\n\t"
97 "cmp r0, #0\n\t"
98
99 /* Align to cache lines */
100 ".balign 32\n\t"
101
102 /* Disable SDRAM0 accesses */
103 "1: str %3, [%0, #" __stringify(AT91_DDRSDRC_RTR) "]\n\t"
104 /* Power down SDRAM0 */
Alexandre Belloni7cb4e712014-10-20 20:27:09 +0200105 " str %4, [%0, #" __stringify(AT91_DDRSDRC_LPR) "]\n\t"
Maxime Ripardecfe64d2014-07-02 17:46:58 +0200106 /* Disable SDRAM1 accesses */
107 " strne %3, [%1, #" __stringify(AT91_DDRSDRC_RTR) "]\n\t"
108 /* Power down SDRAM1 */
Alexandre Belloni7cb4e712014-10-20 20:27:09 +0200109 " strne %4, [%1, #" __stringify(AT91_DDRSDRC_LPR) "]\n\t"
Maxime Ripardecfe64d2014-07-02 17:46:58 +0200110 /* Reset CPU */
111 " str %5, [%2, #" __stringify(AT91_RSTC_CR) "]\n\t"
112
113 " b .\n\t"
114 :
115 : "r" (at91_ramc_base[0]),
116 "r" (at91_ramc_base[1]),
117 "r" (at91_rstc_base),
118 "r" (1),
Ben Dooks7be5ac22015-03-26 14:16:22 +0000119 "r" cpu_to_le32(AT91_DDRSDRC_LPCB_POWER_DOWN),
120 "r" cpu_to_le32(AT91_RSTC_KEY | AT91_RSTC_PERRST | AT91_RSTC_PROCRST)
Maxime Ripardecfe64d2014-07-02 17:46:58 +0200121 : "r0");
Guenter Roeck481ff6f2015-01-25 12:30:41 -0800122
123 return NOTIFY_DONE;
Maxime Ripardecfe64d2014-07-02 17:46:58 +0200124}
125
Josh Wu1ae25d62015-07-20 17:32:05 +0800126static int sama5d3_restart(struct notifier_block *this, unsigned long mode,
127 void *cmd)
128{
129 writel(cpu_to_le32(AT91_RSTC_KEY | AT91_RSTC_PERRST | AT91_RSTC_PROCRST),
130 at91_rstc_base);
131
132 return NOTIFY_DONE;
133}
134
Maxime Ripardecfe64d2014-07-02 17:46:58 +0200135static void __init at91_reset_status(struct platform_device *pdev)
136{
137 u32 reg = readl(at91_rstc_base + AT91_RSTC_SR);
138 char *reason;
139
140 switch ((reg & AT91_RSTC_RSTTYP) >> 8) {
141 case RESET_TYPE_GENERAL:
142 reason = "general reset";
143 break;
144 case RESET_TYPE_WAKEUP:
145 reason = "wakeup";
146 break;
147 case RESET_TYPE_WATCHDOG:
148 reason = "watchdog reset";
149 break;
150 case RESET_TYPE_SOFTWARE:
151 reason = "software reset";
152 break;
153 case RESET_TYPE_USER:
154 reason = "user reset";
155 break;
156 default:
157 reason = "unknown reset";
158 break;
159 }
160
161 pr_info("AT91: Starting after %s\n", reason);
162}
163
Fabian Frederick8fb08852015-03-16 20:17:12 +0100164static const struct of_device_id at91_ramc_of_match[] = {
Maxime Ripardecfe64d2014-07-02 17:46:58 +0200165 { .compatible = "atmel,at91sam9260-sdramc", },
166 { .compatible = "atmel,at91sam9g45-ddramc", },
Maxime Ripardecfe64d2014-07-02 17:46:58 +0200167 { /* sentinel */ }
168};
169
Fabian Frederick8fb08852015-03-16 20:17:12 +0100170static const struct of_device_id at91_reset_of_match[] = {
Maxime Ripardecfe64d2014-07-02 17:46:58 +0200171 { .compatible = "atmel,at91sam9260-rstc", .data = at91sam9260_restart },
172 { .compatible = "atmel,at91sam9g45-rstc", .data = at91sam9g45_restart },
Josh Wu1ae25d62015-07-20 17:32:05 +0800173 { .compatible = "atmel,sama5d3-rstc", .data = sama5d3_restart },
Maxime Ripardecfe64d2014-07-02 17:46:58 +0200174 { /* sentinel */ }
175};
176
Guenter Roeck481ff6f2015-01-25 12:30:41 -0800177static struct notifier_block at91_restart_nb = {
178 .priority = 192,
179};
180
Maxime Ripardecfe64d2014-07-02 17:46:58 +0200181static int at91_reset_of_probe(struct platform_device *pdev)
182{
183 const struct of_device_id *match;
184 struct device_node *np;
185 int idx = 0;
186
187 at91_rstc_base = of_iomap(pdev->dev.of_node, 0);
188 if (!at91_rstc_base) {
189 dev_err(&pdev->dev, "Could not map reset controller address\n");
190 return -ENODEV;
191 }
192
Josh Wu1ae25d62015-07-20 17:32:05 +0800193 if (!of_device_is_compatible(pdev->dev.of_node, "atmel,sama5d3-rstc")) {
194 /* we need to shutdown the ddr controller, so get ramc base */
195 for_each_matching_node(np, at91_ramc_of_match) {
196 at91_ramc_base[idx] = of_iomap(np, 0);
197 if (!at91_ramc_base[idx]) {
198 dev_err(&pdev->dev, "Could not map ram controller address\n");
199 return -ENODEV;
200 }
201 idx++;
Maxime Ripardecfe64d2014-07-02 17:46:58 +0200202 }
Maxime Ripardecfe64d2014-07-02 17:46:58 +0200203 }
204
205 match = of_match_node(at91_reset_of_match, pdev->dev.of_node);
Guenter Roeck481ff6f2015-01-25 12:30:41 -0800206 at91_restart_nb.notifier_call = match->data;
207 return register_restart_handler(&at91_restart_nb);
Maxime Ripardecfe64d2014-07-02 17:46:58 +0200208}
209
210static int at91_reset_platform_probe(struct platform_device *pdev)
211{
212 const struct platform_device_id *match;
213 struct resource *res;
214 int idx = 0;
215
216 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
217 at91_rstc_base = devm_ioremap_resource(&pdev->dev, res);
218 if (IS_ERR(at91_rstc_base)) {
219 dev_err(&pdev->dev, "Could not map reset controller address\n");
220 return PTR_ERR(at91_rstc_base);
221 }
222
223 for (idx = 0; idx < 2; idx++) {
224 res = platform_get_resource(pdev, IORESOURCE_MEM, idx + 1 );
225 at91_ramc_base[idx] = devm_ioremap(&pdev->dev, res->start,
226 resource_size(res));
Wei Yongjun932df432015-04-16 20:19:43 +0800227 if (!at91_ramc_base[idx]) {
Maxime Ripardecfe64d2014-07-02 17:46:58 +0200228 dev_err(&pdev->dev, "Could not map ram controller address\n");
Wei Yongjun932df432015-04-16 20:19:43 +0800229 return -ENOMEM;
Maxime Ripardecfe64d2014-07-02 17:46:58 +0200230 }
231 }
232
233 match = platform_get_device_id(pdev);
Guenter Roeck481ff6f2015-01-25 12:30:41 -0800234 at91_restart_nb.notifier_call =
235 (int (*)(struct notifier_block *,
236 unsigned long, void *)) match->driver_data;
Maxime Ripardecfe64d2014-07-02 17:46:58 +0200237
Guenter Roeck481ff6f2015-01-25 12:30:41 -0800238 return register_restart_handler(&at91_restart_nb);
Maxime Ripardecfe64d2014-07-02 17:46:58 +0200239}
240
241static int at91_reset_probe(struct platform_device *pdev)
242{
243 int ret;
244
245 if (pdev->dev.of_node)
246 ret = at91_reset_of_probe(pdev);
247 else
248 ret = at91_reset_platform_probe(pdev);
249
250 if (ret)
251 return ret;
252
253 at91_reset_status(pdev);
254
255 return 0;
256}
257
Krzysztof Kozlowski32366722015-05-02 00:46:44 +0900258static const struct platform_device_id at91_reset_plat_match[] = {
Maxime Ripardecfe64d2014-07-02 17:46:58 +0200259 { "at91-sam9260-reset", (unsigned long)at91sam9260_restart },
260 { "at91-sam9g45-reset", (unsigned long)at91sam9g45_restart },
261 { /* sentinel */ }
262};
263
264static struct platform_driver at91_reset_driver = {
265 .probe = at91_reset_probe,
266 .driver = {
267 .name = "at91-reset",
268 .of_match_table = at91_reset_of_match,
269 },
270 .id_table = at91_reset_plat_match,
271};
272module_platform_driver(at91_reset_driver);