blob: da85e64143e935e03978f2efb5e610c00584f057 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Andrew Victor907d6de2006-06-20 19:30:19 +01002/*
Andrew Victor9d041262007-02-05 11:42:07 +01003 * arch/arm/mach-at91/pm.c
Andrew Victor907d6de2006-06-20 19:30:19 +01004 * AT91 Power Management
5 *
6 * Copyright (C) 2005 David Brownell
Andrew Victor907d6de2006-06-20 19:30:19 +01007 */
8
Alexandre Bellonid2e46792015-01-15 15:59:25 +01009#include <linux/genalloc.h>
Alexandre Belloni9824c442017-01-31 13:49:24 +010010#include <linux/io.h>
11#include <linux/of_address.h>
Alexandre Bellonif5598d32015-01-15 15:59:24 +010012#include <linux/of.h>
Alexandre Bellonid2e46792015-01-15 15:59:25 +010013#include <linux/of_platform.h>
Alexandre Belloni7693e182017-04-26 16:31:03 +020014#include <linux/parser.h>
Alexandre Belloni9824c442017-01-31 13:49:24 +010015#include <linux/suspend.h>
16
Boris BREZILLON2edb90a2013-10-11 09:37:45 +020017#include <linux/clk/at91_pmc.h>
Andrew Victor907d6de2006-06-20 19:30:19 +010018
Wenyou Yang385acc02015-03-09 11:54:26 +080019#include <asm/cacheflush.h>
Alexandre Belloni9824c442017-01-31 13:49:24 +010020#include <asm/fncpy.h>
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +020021#include <asm/system_misc.h>
Alexandre Belloni24a0f5c2016-09-27 12:29:50 +020022#include <asm/suspend.h>
Andrew Victor907d6de2006-06-20 19:30:19 +010023
Andrew Victor907d6de2006-06-20 19:30:19 +010024#include "generic.h"
Albin Tonnerre1ea60cf2009-11-01 18:40:50 +010025#include "pm.h"
Andrew Victor907d6de2006-06-20 19:30:19 +010026
Alexandre Belloni23b84082015-03-13 22:57:23 +010027/*
28 * FIXME: this is needed to communicate between the pinctrl driver and
29 * the PM implementation in the machine. Possibly part of the PM
30 * implementation should be moved down into the pinctrl driver and get
31 * called as part of the generic suspend/resume path.
32 */
Ludovic Desroches84235362015-12-01 11:44:40 +010033#ifdef CONFIG_PINCTRL_AT91
Alexandre Belloni23b84082015-03-13 22:57:23 +010034extern void at91_pinctrl_gpio_suspend(void);
35extern void at91_pinctrl_gpio_resume(void);
Ludovic Desroches84235362015-12-01 11:44:40 +010036#endif
Alexandre Belloni23b84082015-03-13 22:57:23 +010037
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +000038struct at91_soc_pm {
Claudiu Bezneaa9581562019-02-14 15:54:51 +000039 int (*config_shdwc_ws)(void __iomem *shdwc, u32 *mode, u32 *polarity);
40 int (*config_pmc_ws)(void __iomem *pmc, u32 mode, u32 polarity);
41 const struct of_device_id *ws_ids;
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +000042 struct at91_pm_data data;
43};
44
45static struct at91_soc_pm soc_pm = {
46 .data = {
47 .standby_mode = AT91_PM_STANDBY,
48 .suspend_mode = AT91_PM_ULP0,
49 },
50};
51
Alexandre Belloni7693e182017-04-26 16:31:03 +020052static const match_table_t pm_modes __initconst = {
Claudiu Beznea514e2a22018-07-17 11:26:54 +030053 { AT91_PM_STANDBY, "standby" },
54 { AT91_PM_ULP0, "ulp0" },
Wenyou Yang5b56c182018-07-17 11:26:55 +030055 { AT91_PM_ULP1, "ulp1" },
Alexandre Belloni7693e182017-04-26 16:31:03 +020056 { AT91_PM_BACKUP, "backup" },
57 { -1, NULL },
58};
59
Alexandre Belloni4d767bc2017-01-31 14:08:47 +010060#define at91_ramc_read(id, field) \
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +000061 __raw_readl(soc_pm.data.ramc[id] + field)
Alexandre Belloni4d767bc2017-01-31 14:08:47 +010062
63#define at91_ramc_write(id, field, value) \
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +000064 __raw_writel(value, soc_pm.data.ramc[id] + field)
Daniel Lezcano5ad945e2013-09-22 22:29:57 +020065
Andrew Victor907d6de2006-06-20 19:30:19 +010066static int at91_pm_valid_state(suspend_state_t state)
67{
68 switch (state) {
69 case PM_SUSPEND_ON:
70 case PM_SUSPEND_STANDBY:
71 case PM_SUSPEND_MEM:
72 return 1;
73
74 default:
75 return 0;
76 }
77}
78
Alexandre Belloni24a0f5c2016-09-27 12:29:50 +020079static int canary = 0xA5A5A5A5;
Andrew Victor907d6de2006-06-20 19:30:19 +010080
Alexandre Belloni24a0f5c2016-09-27 12:29:50 +020081static struct at91_pm_bu {
82 int suspended;
83 unsigned long reserved;
84 phys_addr_t canary;
85 phys_addr_t resume;
86} *pm_bu;
Andrew Victor907d6de2006-06-20 19:30:19 +010087
Claudiu Beznead7484f52018-07-17 14:06:24 +030088struct wakeup_source_info {
89 unsigned int pmc_fsmr_bit;
90 unsigned int shdwc_mr_bit;
91 bool set_polarity;
92};
93
94static const struct wakeup_source_info ws_info[] = {
95 { .pmc_fsmr_bit = AT91_PMC_FSTT(10), .set_polarity = true },
96 { .pmc_fsmr_bit = AT91_PMC_RTCAL, .shdwc_mr_bit = BIT(17) },
97 { .pmc_fsmr_bit = AT91_PMC_USBAL },
98 { .pmc_fsmr_bit = AT91_PMC_SDMMC_CD },
Claudiu Bezneaeaedc0d2019-02-14 15:54:57 +000099 { .pmc_fsmr_bit = AT91_PMC_RTTAL },
100 { .pmc_fsmr_bit = AT91_PMC_RXLP_MCE },
Claudiu Beznead7484f52018-07-17 14:06:24 +0300101};
102
103static const struct of_device_id sama5d2_ws_ids[] = {
104 { .compatible = "atmel,sama5d2-gem", .data = &ws_info[0] },
105 { .compatible = "atmel,at91rm9200-rtc", .data = &ws_info[1] },
106 { .compatible = "atmel,sama5d3-udc", .data = &ws_info[2] },
107 { .compatible = "atmel,at91rm9200-ohci", .data = &ws_info[2] },
108 { .compatible = "usb-ohci", .data = &ws_info[2] },
109 { .compatible = "atmel,at91sam9g45-ehci", .data = &ws_info[2] },
110 { .compatible = "usb-ehci", .data = &ws_info[2] },
111 { .compatible = "atmel,sama5d2-sdhci", .data = &ws_info[3] },
112 { /* sentinel */ }
113};
114
Claudiu Bezneaeaedc0d2019-02-14 15:54:57 +0000115static const struct of_device_id sam9x60_ws_ids[] = {
116 { .compatible = "atmel,at91sam9x5-rtc", .data = &ws_info[1] },
117 { .compatible = "atmel,at91rm9200-ohci", .data = &ws_info[2] },
118 { .compatible = "usb-ohci", .data = &ws_info[2] },
119 { .compatible = "atmel,at91sam9g45-ehci", .data = &ws_info[2] },
120 { .compatible = "usb-ehci", .data = &ws_info[2] },
121 { .compatible = "atmel,at91sam9260-rtt", .data = &ws_info[4] },
122 { .compatible = "cdns,sam9x60-macb", .data = &ws_info[5] },
123 { /* sentinel */ }
124};
125
Claudiu Beznead7484f52018-07-17 14:06:24 +0300126static int at91_pm_config_ws(unsigned int pm_mode, bool set)
127{
128 const struct wakeup_source_info *wsi;
129 const struct of_device_id *match;
130 struct platform_device *pdev;
131 struct device_node *np;
132 unsigned int mode = 0, polarity = 0, val = 0;
133
134 if (pm_mode != AT91_PM_ULP1)
135 return 0;
136
Claudiu Bezneaa9581562019-02-14 15:54:51 +0000137 if (!soc_pm.data.pmc || !soc_pm.data.shdwc || !soc_pm.ws_ids)
Claudiu Beznead7484f52018-07-17 14:06:24 +0300138 return -EPERM;
139
140 if (!set) {
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000141 writel(mode, soc_pm.data.pmc + AT91_PMC_FSMR);
Claudiu Beznead7484f52018-07-17 14:06:24 +0300142 return 0;
143 }
144
Claudiu Bezneaa9581562019-02-14 15:54:51 +0000145 if (soc_pm.config_shdwc_ws)
146 soc_pm.config_shdwc_ws(soc_pm.data.shdwc, &mode, &polarity);
Claudiu Beznead7484f52018-07-17 14:06:24 +0300147
148 /* SHDWC.MR */
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000149 val = readl(soc_pm.data.shdwc + 0x04);
Claudiu Beznead7484f52018-07-17 14:06:24 +0300150
151 /* Loop through defined wakeup sources. */
Claudiu Bezneaa9581562019-02-14 15:54:51 +0000152 for_each_matching_node_and_match(np, soc_pm.ws_ids, &match) {
Claudiu Beznead7484f52018-07-17 14:06:24 +0300153 pdev = of_find_device_by_node(np);
154 if (!pdev)
155 continue;
156
157 if (device_may_wakeup(&pdev->dev)) {
158 wsi = match->data;
159
160 /* Check if enabled on SHDWC. */
161 if (wsi->shdwc_mr_bit && !(val & wsi->shdwc_mr_bit))
zhong jiang95590a62018-08-16 18:26:22 +0800162 goto put_device;
Claudiu Beznead7484f52018-07-17 14:06:24 +0300163
164 mode |= wsi->pmc_fsmr_bit;
165 if (wsi->set_polarity)
166 polarity |= wsi->pmc_fsmr_bit;
167 }
168
zhong jiang95590a62018-08-16 18:26:22 +0800169put_device:
170 put_device(&pdev->dev);
Claudiu Beznead7484f52018-07-17 14:06:24 +0300171 }
172
173 if (mode) {
Claudiu Bezneaa9581562019-02-14 15:54:51 +0000174 if (soc_pm.config_pmc_ws)
175 soc_pm.config_pmc_ws(soc_pm.data.pmc, mode, polarity);
Claudiu Beznead7484f52018-07-17 14:06:24 +0300176 } else {
177 pr_err("AT91: PM: no ULP1 wakeup sources found!");
178 }
179
180 return mode ? 0 : -EPERM;
181}
182
Claudiu Bezneaa9581562019-02-14 15:54:51 +0000183static int at91_sama5d2_config_shdwc_ws(void __iomem *shdwc, u32 *mode,
184 u32 *polarity)
185{
186 u32 val;
187
188 /* SHDWC.WUIR */
189 val = readl(shdwc + 0x0c);
190 *mode |= (val & 0x3ff);
191 *polarity |= ((val >> 16) & 0x3ff);
192
193 return 0;
194}
195
196static int at91_sama5d2_config_pmc_ws(void __iomem *pmc, u32 mode, u32 polarity)
197{
198 writel(mode, pmc + AT91_PMC_FSMR);
199 writel(polarity, pmc + AT91_PMC_FSPR);
200
201 return 0;
202}
203
Claudiu Bezneaeaedc0d2019-02-14 15:54:57 +0000204static int at91_sam9x60_config_pmc_ws(void __iomem *pmc, u32 mode, u32 polarity)
205{
206 writel(mode, pmc + AT91_PMC_FSMR);
207
208 return 0;
209}
210
Andrew Victor907d6de2006-06-20 19:30:19 +0100211/*
212 * Called after processes are frozen, but before we shutdown devices.
213 */
Rafael J. Wysockic697eec2008-01-08 00:04:17 +0100214static int at91_pm_begin(suspend_state_t state)
Andrew Victor907d6de2006-06-20 19:30:19 +0100215{
Alexandre Belloni7693e182017-04-26 16:31:03 +0200216 switch (state) {
217 case PM_SUSPEND_MEM:
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000218 soc_pm.data.mode = soc_pm.data.suspend_mode;
Alexandre Belloni7693e182017-04-26 16:31:03 +0200219 break;
220
221 case PM_SUSPEND_STANDBY:
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000222 soc_pm.data.mode = soc_pm.data.standby_mode;
Alexandre Belloni7693e182017-04-26 16:31:03 +0200223 break;
224
225 default:
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000226 soc_pm.data.mode = -1;
Alexandre Belloni7693e182017-04-26 16:31:03 +0200227 }
228
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000229 return at91_pm_config_ws(soc_pm.data.mode, true);
Andrew Victor907d6de2006-06-20 19:30:19 +0100230}
231
232/*
233 * Verify that all the clocks are correct before entering
234 * slow-clock mode.
235 */
236static int at91_pm_verify_clocks(void)
237{
238 unsigned long scsr;
239 int i;
240
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000241 scsr = readl(soc_pm.data.pmc + AT91_PMC_SCSR);
Andrew Victor907d6de2006-06-20 19:30:19 +0100242
243 /* USB must not be using PLLB */
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000244 if ((scsr & soc_pm.data.uhp_udp_mask) != 0) {
Alexandre Bellonif5598d32015-01-15 15:59:24 +0100245 pr_err("AT91: PM - Suspend-to-RAM with USB still active\n");
246 return 0;
Andrew Victor907d6de2006-06-20 19:30:19 +0100247 }
248
Andrew Victor907d6de2006-06-20 19:30:19 +0100249 /* PCK0..PCK3 must be disabled, or configured to use clk32k */
250 for (i = 0; i < 4; i++) {
251 u32 css;
252
253 if ((scsr & (AT91_PMC_PCK0 << i)) == 0)
254 continue;
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000255 css = readl(soc_pm.data.pmc + AT91_PMC_PCKR(i)) & AT91_PMC_CSS;
Andrew Victor907d6de2006-06-20 19:30:19 +0100256 if (css != AT91_PMC_CSS_SLOW) {
Ryan Mallon7f96b1c2009-04-01 20:33:30 +0100257 pr_err("AT91: PM - Suspend-to-RAM with PCK%d src %d\n", i, css);
Andrew Victor907d6de2006-06-20 19:30:19 +0100258 return 0;
259 }
260 }
Andrew Victor907d6de2006-06-20 19:30:19 +0100261
262 return 1;
263}
264
265/*
266 * Call this from platform driver suspend() to see how deeply to suspend.
267 * For example, some controllers (like OHCI) need one of the PLL clocks
268 * in order to act as a wakeup source, and those are not available when
269 * going into slow clock mode.
270 *
271 * REVISIT: generalize as clk_will_be_available(clk)? Other platforms have
272 * the very same problem (but not using at91 main_clk), and it'd be better
273 * to add one generic API rather than lots of platform-specific ones.
274 */
275int at91_suspend_entering_slow_clock(void)
276{
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000277 return (soc_pm.data.mode >= AT91_PM_ULP0);
Andrew Victor907d6de2006-06-20 19:30:19 +0100278}
279EXPORT_SYMBOL(at91_suspend_entering_slow_clock);
280
Alexandre Belloni65cc1a52017-01-31 18:12:57 +0100281static void (*at91_suspend_sram_fn)(struct at91_pm_data *);
282extern void at91_pm_suspend_in_sram(struct at91_pm_data *pm_data);
Wenyou Yang5726a8b2015-03-09 11:51:09 +0800283extern u32 at91_pm_suspend_in_sram_sz;
Andrew Victorf5d0f452008-04-02 21:50:16 +0100284
Alexandre Belloni24a0f5c2016-09-27 12:29:50 +0200285static int at91_suspend_finish(unsigned long val)
Wenyou Yang23be4be2015-03-09 11:49:46 +0800286{
Wenyou Yang385acc02015-03-09 11:54:26 +0800287 flush_cache_all();
288 outer_disable();
289
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000290 at91_suspend_sram_fn(&soc_pm.data);
Wenyou Yang385acc02015-03-09 11:54:26 +0800291
Alexandre Belloni24a0f5c2016-09-27 12:29:50 +0200292 return 0;
293}
294
295static void at91_pm_suspend(suspend_state_t state)
296{
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000297 if (soc_pm.data.mode == AT91_PM_BACKUP) {
Alexandre Belloni24a0f5c2016-09-27 12:29:50 +0200298 pm_bu->suspended = 1;
299
300 cpu_suspend(0, at91_suspend_finish);
301
302 /* The SRAM is lost between suspend cycles */
303 at91_suspend_sram_fn = fncpy(at91_suspend_sram_fn,
304 &at91_pm_suspend_in_sram,
305 at91_pm_suspend_in_sram_sz);
306 } else {
307 at91_suspend_finish(0);
308 }
309
Wenyou Yang385acc02015-03-09 11:54:26 +0800310 outer_resume();
Wenyou Yang23be4be2015-03-09 11:49:46 +0800311}
312
Alexandre Belloni7693e182017-04-26 16:31:03 +0200313/*
314 * STANDBY mode has *all* drivers suspended; ignores irqs not marked as 'wakeup'
315 * event sources; and reduces DRAM power. But otherwise it's identical to
316 * PM_SUSPEND_ON: cpu idle, and nothing fancy done with main or cpu clocks.
317 *
Claudiu Beznea514e2a22018-07-17 11:26:54 +0300318 * AT91_PM_ULP0 is like STANDBY plus slow clock mode, so drivers must
Alexandre Belloni7693e182017-04-26 16:31:03 +0200319 * suspend more deeply, the master clock switches to the clk32k and turns off
320 * the main oscillator
321 *
322 * AT91_PM_BACKUP turns off the whole SoC after placing the DDR in self refresh
323 */
Andrew Victor907d6de2006-06-20 19:30:19 +0100324static int at91_pm_enter(suspend_state_t state)
325{
Ludovic Desroches84235362015-12-01 11:44:40 +0100326#ifdef CONFIG_PINCTRL_AT91
Arnd Bergmann85c4b312014-12-02 12:08:27 +0100327 at91_pinctrl_gpio_suspend();
Ludovic Desroches84235362015-12-01 11:44:40 +0100328#endif
Alexandre Belloni7693e182017-04-26 16:31:03 +0200329
Andrew Victor907d6de2006-06-20 19:30:19 +0100330 switch (state) {
Wenyou Yang23be4be2015-03-09 11:49:46 +0800331 case PM_SUSPEND_MEM:
Alexandre Belloni7693e182017-04-26 16:31:03 +0200332 case PM_SUSPEND_STANDBY:
Andrew Victor907d6de2006-06-20 19:30:19 +0100333 /*
Wenyou Yang23be4be2015-03-09 11:49:46 +0800334 * Ensure that clocks are in a valid state.
Andrew Victor907d6de2006-06-20 19:30:19 +0100335 */
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000336 if (soc_pm.data.mode >= AT91_PM_ULP0 &&
Alexandre Belloni7693e182017-04-26 16:31:03 +0200337 !at91_pm_verify_clocks())
Andrew Victor907d6de2006-06-20 19:30:19 +0100338 goto error;
Wenyou Yang23be4be2015-03-09 11:49:46 +0800339
340 at91_pm_suspend(state);
341
342 break;
343
Wenyou Yang23be4be2015-03-09 11:49:46 +0800344 case PM_SUSPEND_ON:
345 cpu_do_idle();
346 break;
347
348 default:
349 pr_debug("AT91: PM - bogus suspend state %d\n", state);
350 goto error;
Andrew Victor907d6de2006-06-20 19:30:19 +0100351 }
352
Andrew Victor907d6de2006-06-20 19:30:19 +0100353error:
Ludovic Desroches84235362015-12-01 11:44:40 +0100354#ifdef CONFIG_PINCTRL_AT91
Arnd Bergmann85c4b312014-12-02 12:08:27 +0100355 at91_pinctrl_gpio_resume();
Ludovic Desroches84235362015-12-01 11:44:40 +0100356#endif
Andrew Victor907d6de2006-06-20 19:30:19 +0100357 return 0;
358}
359
Rafael J. Wysockic697eec2008-01-08 00:04:17 +0100360/*
361 * Called right prior to thawing processes.
362 */
363static void at91_pm_end(void)
364{
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000365 at91_pm_config_ws(soc_pm.data.mode, false);
Rafael J. Wysockic697eec2008-01-08 00:04:17 +0100366}
367
Andrew Victor907d6de2006-06-20 19:30:19 +0100368
Lionel Debroux2f55ac02010-11-16 14:14:02 +0100369static const struct platform_suspend_ops at91_pm_ops = {
Rafael J. Wysockic697eec2008-01-08 00:04:17 +0100370 .valid = at91_pm_valid_state,
371 .begin = at91_pm_begin,
372 .enter = at91_pm_enter,
373 .end = at91_pm_end,
Andrew Victor907d6de2006-06-20 19:30:19 +0100374};
375
Daniel Lezcano5ad945e2013-09-22 22:29:57 +0200376static struct platform_device at91_cpuidle_device = {
377 .name = "cpuidle-at91",
378};
379
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100380/*
381 * The AT91RM9200 goes into self-refresh mode with this command, and will
382 * terminate self-refresh automatically on the next SDRAM access.
383 *
384 * Self-refresh mode is exited as soon as a memory access is made, but we don't
385 * know for sure when that happens. However, we need to restore the low-power
386 * mode if it was enabled before going idle. Restoring low-power mode while
387 * still in self-refresh is "not recommended", but seems to work.
388 */
389static void at91rm9200_standby(void)
390{
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100391 asm volatile(
392 "b 1f\n\t"
393 ".align 5\n\t"
394 "1: mcr p15, 0, %0, c7, c10, 4\n\t"
Alexandre Belloni5a2d4f02017-02-01 21:32:43 +0100395 " str %2, [%1, %3]\n\t"
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100396 " mcr p15, 0, %0, c7, c0, 4\n\t"
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100397 :
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000398 : "r" (0), "r" (soc_pm.data.ramc[0]),
Alexandre Belloni5a2d4f02017-02-01 21:32:43 +0100399 "r" (1), "r" (AT91_MC_SDRAMC_SRR));
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100400}
401
402/* We manage both DDRAM/SDRAM controllers, we need more than one value to
403 * remember.
404 */
405static void at91_ddr_standby(void)
406{
407 /* Those two values allow us to delay self-refresh activation
408 * to the maximum. */
409 u32 lpr0, lpr1 = 0;
Alexandre Belloni56387632017-02-01 22:10:34 +0100410 u32 mdr, saved_mdr0, saved_mdr1 = 0;
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100411 u32 saved_lpr0, saved_lpr1 = 0;
412
Alexandre Belloni56387632017-02-01 22:10:34 +0100413 /* LPDDR1 --> force DDR2 mode during self-refresh */
414 saved_mdr0 = at91_ramc_read(0, AT91_DDRSDRC_MDR);
415 if ((saved_mdr0 & AT91_DDRSDRC_MD) == AT91_DDRSDRC_MD_LOW_POWER_DDR) {
416 mdr = saved_mdr0 & ~AT91_DDRSDRC_MD;
417 mdr |= AT91_DDRSDRC_MD_DDR2;
418 at91_ramc_write(0, AT91_DDRSDRC_MDR, mdr);
419 }
420
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000421 if (soc_pm.data.ramc[1]) {
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100422 saved_lpr1 = at91_ramc_read(1, AT91_DDRSDRC_LPR);
423 lpr1 = saved_lpr1 & ~AT91_DDRSDRC_LPCB;
424 lpr1 |= AT91_DDRSDRC_LPCB_SELF_REFRESH;
Alexandre Belloni56387632017-02-01 22:10:34 +0100425 saved_mdr1 = at91_ramc_read(1, AT91_DDRSDRC_MDR);
426 if ((saved_mdr1 & AT91_DDRSDRC_MD) == AT91_DDRSDRC_MD_LOW_POWER_DDR) {
427 mdr = saved_mdr1 & ~AT91_DDRSDRC_MD;
428 mdr |= AT91_DDRSDRC_MD_DDR2;
429 at91_ramc_write(1, AT91_DDRSDRC_MDR, mdr);
430 }
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100431 }
432
433 saved_lpr0 = at91_ramc_read(0, AT91_DDRSDRC_LPR);
434 lpr0 = saved_lpr0 & ~AT91_DDRSDRC_LPCB;
435 lpr0 |= AT91_DDRSDRC_LPCB_SELF_REFRESH;
436
437 /* self-refresh mode now */
438 at91_ramc_write(0, AT91_DDRSDRC_LPR, lpr0);
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000439 if (soc_pm.data.ramc[1])
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100440 at91_ramc_write(1, AT91_DDRSDRC_LPR, lpr1);
441
442 cpu_do_idle();
443
Alexandre Belloni56387632017-02-01 22:10:34 +0100444 at91_ramc_write(0, AT91_DDRSDRC_MDR, saved_mdr0);
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100445 at91_ramc_write(0, AT91_DDRSDRC_LPR, saved_lpr0);
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000446 if (soc_pm.data.ramc[1]) {
Alexandre Belloni56387632017-02-01 22:10:34 +0100447 at91_ramc_write(0, AT91_DDRSDRC_MDR, saved_mdr1);
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100448 at91_ramc_write(1, AT91_DDRSDRC_LPR, saved_lpr1);
Alexandre Belloni56387632017-02-01 22:10:34 +0100449 }
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100450}
451
Nicolas Ferre60b89f12017-03-14 09:38:04 +0100452static void sama5d3_ddr_standby(void)
453{
454 u32 lpr0;
455 u32 saved_lpr0;
456
457 saved_lpr0 = at91_ramc_read(0, AT91_DDRSDRC_LPR);
458 lpr0 = saved_lpr0 & ~AT91_DDRSDRC_LPCB;
459 lpr0 |= AT91_DDRSDRC_LPCB_POWER_DOWN;
460
461 at91_ramc_write(0, AT91_DDRSDRC_LPR, lpr0);
462
463 cpu_do_idle();
464
465 at91_ramc_write(0, AT91_DDRSDRC_LPR, saved_lpr0);
466}
467
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100468/* We manage both DDRAM/SDRAM controllers, we need more than one value to
469 * remember.
470 */
471static void at91sam9_sdram_standby(void)
472{
473 u32 lpr0, lpr1 = 0;
474 u32 saved_lpr0, saved_lpr1 = 0;
475
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000476 if (soc_pm.data.ramc[1]) {
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100477 saved_lpr1 = at91_ramc_read(1, AT91_SDRAMC_LPR);
478 lpr1 = saved_lpr1 & ~AT91_SDRAMC_LPCB;
479 lpr1 |= AT91_SDRAMC_LPCB_SELF_REFRESH;
480 }
481
482 saved_lpr0 = at91_ramc_read(0, AT91_SDRAMC_LPR);
483 lpr0 = saved_lpr0 & ~AT91_SDRAMC_LPCB;
484 lpr0 |= AT91_SDRAMC_LPCB_SELF_REFRESH;
485
486 /* self-refresh mode now */
487 at91_ramc_write(0, AT91_SDRAMC_LPR, lpr0);
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000488 if (soc_pm.data.ramc[1])
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100489 at91_ramc_write(1, AT91_SDRAMC_LPR, lpr1);
490
491 cpu_do_idle();
492
493 at91_ramc_write(0, AT91_SDRAMC_LPR, saved_lpr0);
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000494 if (soc_pm.data.ramc[1])
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100495 at91_ramc_write(1, AT91_SDRAMC_LPR, saved_lpr1);
496}
497
Alexandre Belloniaab02d62017-02-01 22:41:50 +0100498struct ramc_info {
499 void (*idle)(void);
500 unsigned int memctrl;
501};
502
503static const struct ramc_info ramc_infos[] __initconst = {
504 { .idle = at91rm9200_standby, .memctrl = AT91_MEMCTRL_MC},
505 { .idle = at91sam9_sdram_standby, .memctrl = AT91_MEMCTRL_SDRAMC},
506 { .idle = at91_ddr_standby, .memctrl = AT91_MEMCTRL_DDRSDR},
507 { .idle = sama5d3_ddr_standby, .memctrl = AT91_MEMCTRL_DDRSDR},
508};
509
Arnd Bergmann05278732017-05-11 13:50:16 +0200510static const struct of_device_id ramc_ids[] __initconst = {
Alexandre Belloniaab02d62017-02-01 22:41:50 +0100511 { .compatible = "atmel,at91rm9200-sdramc", .data = &ramc_infos[0] },
512 { .compatible = "atmel,at91sam9260-sdramc", .data = &ramc_infos[1] },
513 { .compatible = "atmel,at91sam9g45-ddramc", .data = &ramc_infos[2] },
514 { .compatible = "atmel,sama5d3-ddramc", .data = &ramc_infos[3] },
Alexandre Belloni827de1f2015-01-27 17:38:46 +0100515 { /*sentinel*/ }
516};
517
Uwe Kleine-König444d2d32015-02-18 21:19:56 +0100518static __init void at91_dt_ramc(void)
Alexandre Belloni827de1f2015-01-27 17:38:46 +0100519{
520 struct device_node *np;
521 const struct of_device_id *of_id;
522 int idx = 0;
Alexandre Bellonie56d75a2017-02-01 23:55:10 +0100523 void *standby = NULL;
Alexandre Belloniaab02d62017-02-01 22:41:50 +0100524 const struct ramc_info *ramc;
Alexandre Belloni827de1f2015-01-27 17:38:46 +0100525
526 for_each_matching_node_and_match(np, ramc_ids, &of_id) {
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000527 soc_pm.data.ramc[idx] = of_iomap(np, 0);
528 if (!soc_pm.data.ramc[idx])
Alexandre Belloni827de1f2015-01-27 17:38:46 +0100529 panic(pr_fmt("unable to map ramc[%d] cpu registers\n"), idx);
530
Alexandre Belloniaab02d62017-02-01 22:41:50 +0100531 ramc = of_id->data;
Alexandre Belloni827de1f2015-01-27 17:38:46 +0100532 if (!standby)
Alexandre Belloniaab02d62017-02-01 22:41:50 +0100533 standby = ramc->idle;
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000534 soc_pm.data.memctrl = ramc->memctrl;
Alexandre Belloni827de1f2015-01-27 17:38:46 +0100535
536 idx++;
537 }
538
539 if (!idx)
540 panic(pr_fmt("unable to find compatible ram controller node in dtb\n"));
541
542 if (!standby) {
543 pr_warn("ramc no standby function available\n");
544 return;
545 }
546
Alexandre Bellonie56d75a2017-02-01 23:55:10 +0100547 at91_cpuidle_device.dev.platform_data = standby;
Alexandre Belloni827de1f2015-01-27 17:38:46 +0100548}
549
Ben Dooksab6778e2016-06-17 16:34:18 +0100550static void at91rm9200_idle(void)
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +0200551{
552 /*
553 * Disable the processor clock. The processor will be automatically
554 * re-enabled by an interrupt or by a reset.
555 */
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000556 writel(AT91_PMC_PCK, soc_pm.data.pmc + AT91_PMC_SCDR);
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +0200557}
558
Claudiu Beznea01c70312019-02-14 15:54:41 +0000559static void at91sam9x60_idle(void)
560{
561 cpu_do_idle();
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +0200562}
563
Ben Dooksab6778e2016-06-17 16:34:18 +0100564static void at91sam9_idle(void)
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +0200565{
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000566 writel(AT91_PMC_PCK, soc_pm.data.pmc + AT91_PMC_SCDR);
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +0200567 cpu_do_idle();
568}
569
Alexandre Bellonid2e46792015-01-15 15:59:25 +0100570static void __init at91_pm_sram_init(void)
571{
572 struct gen_pool *sram_pool;
573 phys_addr_t sram_pbase;
574 unsigned long sram_base;
575 struct device_node *node;
Alexandre Belloni4a031f72015-03-03 08:38:07 +0100576 struct platform_device *pdev = NULL;
Alexandre Bellonid2e46792015-01-15 15:59:25 +0100577
Alexandre Belloni4a031f72015-03-03 08:38:07 +0100578 for_each_compatible_node(node, NULL, "mmio-sram") {
579 pdev = of_find_device_by_node(node);
580 if (pdev) {
581 of_node_put(node);
582 break;
583 }
Alexandre Bellonid2e46792015-01-15 15:59:25 +0100584 }
585
Alexandre Bellonid2e46792015-01-15 15:59:25 +0100586 if (!pdev) {
587 pr_warn("%s: failed to find sram device!\n", __func__);
Alexandre Belloni4a031f72015-03-03 08:38:07 +0100588 return;
Alexandre Bellonid2e46792015-01-15 15:59:25 +0100589 }
590
Vladimir Zapolskiy73858172015-09-04 15:47:43 -0700591 sram_pool = gen_pool_get(&pdev->dev, NULL);
Alexandre Bellonid2e46792015-01-15 15:59:25 +0100592 if (!sram_pool) {
593 pr_warn("%s: sram pool unavailable!\n", __func__);
Alexandre Belloni4a031f72015-03-03 08:38:07 +0100594 return;
Alexandre Bellonid2e46792015-01-15 15:59:25 +0100595 }
596
Wenyou Yang5726a8b2015-03-09 11:51:09 +0800597 sram_base = gen_pool_alloc(sram_pool, at91_pm_suspend_in_sram_sz);
Alexandre Bellonid2e46792015-01-15 15:59:25 +0100598 if (!sram_base) {
Wenyou Yang5726a8b2015-03-09 11:51:09 +0800599 pr_warn("%s: unable to alloc sram!\n", __func__);
Alexandre Belloni4a031f72015-03-03 08:38:07 +0100600 return;
Alexandre Bellonid2e46792015-01-15 15:59:25 +0100601 }
602
603 sram_pbase = gen_pool_virt_to_phys(sram_pool, sram_base);
Wenyou Yang5726a8b2015-03-09 11:51:09 +0800604 at91_suspend_sram_fn = __arm_ioremap_exec(sram_pbase,
605 at91_pm_suspend_in_sram_sz, false);
606 if (!at91_suspend_sram_fn) {
Wenyou Yangd94e6882015-03-09 11:49:01 +0800607 pr_warn("SRAM: Could not map\n");
608 return;
609 }
610
Wenyou Yang5726a8b2015-03-09 11:51:09 +0800611 /* Copy the pm suspend handler to SRAM */
612 at91_suspend_sram_fn = fncpy(at91_suspend_sram_fn,
613 &at91_pm_suspend_in_sram, at91_pm_suspend_in_sram_sz);
Alexandre Bellonid2e46792015-01-15 15:59:25 +0100614}
Alexandre Bellonid2e46792015-01-15 15:59:25 +0100615
Claudiu Beznead7484f52018-07-17 14:06:24 +0300616static bool __init at91_is_pm_mode_active(int pm_mode)
617{
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000618 return (soc_pm.data.standby_mode == pm_mode ||
619 soc_pm.data.suspend_mode == pm_mode);
Claudiu Beznead7484f52018-07-17 14:06:24 +0300620}
621
622static int __init at91_pm_backup_init(void)
Alexandre Belloni24a0f5c2016-09-27 12:29:50 +0200623{
624 struct gen_pool *sram_pool;
625 struct device_node *np;
626 struct platform_device *pdev = NULL;
Claudiu Beznead7484f52018-07-17 14:06:24 +0300627 int ret = -ENODEV;
Alexandre Belloni24a0f5c2016-09-27 12:29:50 +0200628
Claudiu Beznea2fa86e52019-02-14 15:54:47 +0000629 if (!IS_ENABLED(CONFIG_SOC_SAMA5D2))
630 return -EPERM;
631
Claudiu Beznead7484f52018-07-17 14:06:24 +0300632 if (!at91_is_pm_mode_active(AT91_PM_BACKUP))
633 return 0;
Alexandre Belloni7693e182017-04-26 16:31:03 +0200634
Alexandre Belloni24a0f5c2016-09-27 12:29:50 +0200635 np = of_find_compatible_node(NULL, NULL, "atmel,sama5d2-sfrbu");
636 if (!np) {
637 pr_warn("%s: failed to find sfrbu!\n", __func__);
Claudiu Beznead7484f52018-07-17 14:06:24 +0300638 return ret;
Alexandre Belloni24a0f5c2016-09-27 12:29:50 +0200639 }
640
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000641 soc_pm.data.sfrbu = of_iomap(np, 0);
Alexandre Belloni24a0f5c2016-09-27 12:29:50 +0200642 of_node_put(np);
Alexandre Belloni24a0f5c2016-09-27 12:29:50 +0200643
644 np = of_find_compatible_node(NULL, NULL, "atmel,sama5d2-securam");
645 if (!np)
Peng Haoba5e60c2019-04-02 22:12:38 +0800646 goto securam_fail_no_ref_dev;
Alexandre Belloni24a0f5c2016-09-27 12:29:50 +0200647
648 pdev = of_find_device_by_node(np);
649 of_node_put(np);
650 if (!pdev) {
651 pr_warn("%s: failed to find securam device!\n", __func__);
Peng Haoba5e60c2019-04-02 22:12:38 +0800652 goto securam_fail_no_ref_dev;
Alexandre Belloni24a0f5c2016-09-27 12:29:50 +0200653 }
654
655 sram_pool = gen_pool_get(&pdev->dev, NULL);
656 if (!sram_pool) {
657 pr_warn("%s: securam pool unavailable!\n", __func__);
658 goto securam_fail;
659 }
660
661 pm_bu = (void *)gen_pool_alloc(sram_pool, sizeof(struct at91_pm_bu));
662 if (!pm_bu) {
663 pr_warn("%s: unable to alloc securam!\n", __func__);
Claudiu Beznead7484f52018-07-17 14:06:24 +0300664 ret = -ENOMEM;
Alexandre Belloni24a0f5c2016-09-27 12:29:50 +0200665 goto securam_fail;
666 }
667
668 pm_bu->suspended = 0;
Alexandre Belloni093d79f2017-08-24 13:44:54 +0200669 pm_bu->canary = __pa_symbol(&canary);
670 pm_bu->resume = __pa_symbol(cpu_resume);
Alexandre Belloni24a0f5c2016-09-27 12:29:50 +0200671
Claudiu Beznead7484f52018-07-17 14:06:24 +0300672 return 0;
Alexandre Belloni24a0f5c2016-09-27 12:29:50 +0200673
Alexandre Belloni24a0f5c2016-09-27 12:29:50 +0200674securam_fail:
Peng Haoba5e60c2019-04-02 22:12:38 +0800675 put_device(&pdev->dev);
676securam_fail_no_ref_dev:
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000677 iounmap(soc_pm.data.sfrbu);
678 soc_pm.data.sfrbu = NULL;
Claudiu Beznead7484f52018-07-17 14:06:24 +0300679 return ret;
680}
Alexandre Belloni28732232017-04-26 16:34:24 +0200681
Claudiu Beznead7484f52018-07-17 14:06:24 +0300682static void __init at91_pm_use_default_mode(int pm_mode)
683{
684 if (pm_mode != AT91_PM_ULP1 && pm_mode != AT91_PM_BACKUP)
685 return;
686
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000687 if (soc_pm.data.standby_mode == pm_mode)
688 soc_pm.data.standby_mode = AT91_PM_ULP0;
689 if (soc_pm.data.suspend_mode == pm_mode)
690 soc_pm.data.suspend_mode = AT91_PM_ULP0;
Alexandre Belloni24a0f5c2016-09-27 12:29:50 +0200691}
692
Claudiu Beznead7484f52018-07-17 14:06:24 +0300693static void __init at91_pm_modes_init(void)
694{
695 struct device_node *np;
696 int ret;
697
698 if (!at91_is_pm_mode_active(AT91_PM_BACKUP) &&
699 !at91_is_pm_mode_active(AT91_PM_ULP1))
700 return;
701
702 np = of_find_compatible_node(NULL, NULL, "atmel,sama5d2-shdwc");
703 if (!np) {
704 pr_warn("%s: failed to find shdwc!\n", __func__);
705 goto ulp1_default;
706 }
707
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000708 soc_pm.data.shdwc = of_iomap(np, 0);
Claudiu Beznead7484f52018-07-17 14:06:24 +0300709 of_node_put(np);
710
711 ret = at91_pm_backup_init();
712 if (ret) {
713 if (!at91_is_pm_mode_active(AT91_PM_ULP1))
714 goto unmap;
715 else
716 goto backup_default;
717 }
718
719 return;
720
721unmap:
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000722 iounmap(soc_pm.data.shdwc);
723 soc_pm.data.shdwc = NULL;
Claudiu Beznead7484f52018-07-17 14:06:24 +0300724ulp1_default:
725 at91_pm_use_default_mode(AT91_PM_ULP1);
726backup_default:
727 at91_pm_use_default_mode(AT91_PM_BACKUP);
728}
729
Alexandre Belloni13f16012017-02-01 23:35:18 +0100730struct pmc_info {
731 unsigned long uhp_udp_mask;
732};
733
734static const struct pmc_info pmc_infos[] __initconst = {
735 { .uhp_udp_mask = AT91RM9200_PMC_UHP | AT91RM9200_PMC_UDP },
736 { .uhp_udp_mask = AT91SAM926x_PMC_UHP | AT91SAM926x_PMC_UDP },
737 { .uhp_udp_mask = AT91SAM926x_PMC_UHP },
Alexandre Belloni91f87182018-06-07 10:41:06 +0200738 { .uhp_udp_mask = 0 },
Alexandre Belloni13f16012017-02-01 23:35:18 +0100739};
740
Alexandre Belloni5737b732015-09-30 01:31:34 +0200741static const struct of_device_id atmel_pmc_ids[] __initconst = {
Alexandre Belloni13f16012017-02-01 23:35:18 +0100742 { .compatible = "atmel,at91rm9200-pmc", .data = &pmc_infos[0] },
743 { .compatible = "atmel,at91sam9260-pmc", .data = &pmc_infos[1] },
Alexandre Belloni91f87182018-06-07 10:41:06 +0200744 { .compatible = "atmel,at91sam9261-pmc", .data = &pmc_infos[1] },
745 { .compatible = "atmel,at91sam9263-pmc", .data = &pmc_infos[1] },
Alexandre Belloni13f16012017-02-01 23:35:18 +0100746 { .compatible = "atmel,at91sam9g45-pmc", .data = &pmc_infos[2] },
747 { .compatible = "atmel,at91sam9n12-pmc", .data = &pmc_infos[1] },
Alexandre Belloni91f87182018-06-07 10:41:06 +0200748 { .compatible = "atmel,at91sam9rl-pmc", .data = &pmc_infos[3] },
Alexandre Belloni13f16012017-02-01 23:35:18 +0100749 { .compatible = "atmel,at91sam9x5-pmc", .data = &pmc_infos[1] },
750 { .compatible = "atmel,sama5d3-pmc", .data = &pmc_infos[1] },
Alexandre Belloni91f87182018-06-07 10:41:06 +0200751 { .compatible = "atmel,sama5d4-pmc", .data = &pmc_infos[1] },
Alexandre Belloni13f16012017-02-01 23:35:18 +0100752 { .compatible = "atmel,sama5d2-pmc", .data = &pmc_infos[1] },
Alexandre Belloni5737b732015-09-30 01:31:34 +0200753 { /* sentinel */ },
754};
755
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +0200756static void __init at91_pm_init(void (*pm_idle)(void))
Andrew Victor907d6de2006-06-20 19:30:19 +0100757{
Alexandre Belloni5737b732015-09-30 01:31:34 +0200758 struct device_node *pmc_np;
Alexandre Belloni13f16012017-02-01 23:35:18 +0100759 const struct of_device_id *of_id;
760 const struct pmc_info *pmc;
Andrew Victorf5d0f452008-04-02 21:50:16 +0100761
Daniel Lezcano5ad945e2013-09-22 22:29:57 +0200762 if (at91_cpuidle_device.dev.platform_data)
763 platform_device_register(&at91_cpuidle_device);
Andrew Victor907d6de2006-06-20 19:30:19 +0100764
Alexandre Belloni13f16012017-02-01 23:35:18 +0100765 pmc_np = of_find_matching_node_and_match(NULL, atmel_pmc_ids, &of_id);
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000766 soc_pm.data.pmc = of_iomap(pmc_np, 0);
767 if (!soc_pm.data.pmc) {
Alexandre Belloni5737b732015-09-30 01:31:34 +0200768 pr_err("AT91: PM not supported, PMC not found\n");
769 return;
770 }
771
Alexandre Belloni13f16012017-02-01 23:35:18 +0100772 pmc = of_id->data;
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000773 soc_pm.data.uhp_udp_mask = pmc->uhp_udp_mask;
Alexandre Belloni13f16012017-02-01 23:35:18 +0100774
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +0200775 if (pm_idle)
776 arm_pm_idle = pm_idle;
777
Alexandre Belloni5737b732015-09-30 01:31:34 +0200778 at91_pm_sram_init();
779
Alexandre Belloni7693e182017-04-26 16:31:03 +0200780 if (at91_suspend_sram_fn) {
Wenyou Yangd94e6882015-03-09 11:49:01 +0800781 suspend_set_ops(&at91_pm_ops);
Alexandre Belloni7693e182017-04-26 16:31:03 +0200782 pr_info("AT91: PM: standby: %s, suspend: %s\n",
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000783 pm_modes[soc_pm.data.standby_mode].pattern,
784 pm_modes[soc_pm.data.suspend_mode].pattern);
Alexandre Belloni7693e182017-04-26 16:31:03 +0200785 } else {
Wenyou Yangd94e6882015-03-09 11:49:01 +0800786 pr_info("AT91: PM not supported, due to no SRAM allocated\n");
Alexandre Belloni7693e182017-04-26 16:31:03 +0200787 }
Andrew Victor907d6de2006-06-20 19:30:19 +0100788}
Alexandre Belloni4db0ba22015-01-15 15:59:27 +0100789
Nicolas Ferread3fc3e2015-01-27 18:41:33 +0100790void __init at91rm9200_pm_init(void)
Alexandre Belloni4db0ba22015-01-15 15:59:27 +0100791{
Arnd Bergmanndbeb0c82017-08-23 16:46:15 +0200792 if (!IS_ENABLED(CONFIG_SOC_AT91RM9200))
793 return;
794
Alexandre Belloni827de1f2015-01-27 17:38:46 +0100795 at91_dt_ramc();
796
Alexandre Belloni4db0ba22015-01-15 15:59:27 +0100797 /*
798 * AT91RM9200 SDRAM low-power mode cannot be used with self-refresh.
799 */
Alexandre Bellonid7d45f22015-03-16 15:14:50 +0100800 at91_ramc_write(0, AT91_MC_SDRAMC_LPR, 0);
Alexandre Belloni4db0ba22015-01-15 15:59:27 +0100801
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +0200802 at91_pm_init(at91rm9200_idle);
Alexandre Belloni4db0ba22015-01-15 15:59:27 +0100803}
804
Claudiu Beznea01c70312019-02-14 15:54:41 +0000805void __init sam9x60_pm_init(void)
806{
807 if (!IS_ENABLED(CONFIG_SOC_AT91SAM9))
808 return;
809
Claudiu Bezneaeaedc0d2019-02-14 15:54:57 +0000810 at91_pm_modes_init();
Claudiu Beznea01c70312019-02-14 15:54:41 +0000811 at91_dt_ramc();
812 at91_pm_init(at91sam9x60_idle);
Claudiu Bezneaeaedc0d2019-02-14 15:54:57 +0000813
814 soc_pm.ws_ids = sam9x60_ws_ids;
815 soc_pm.config_pmc_ws = at91_sam9x60_config_pmc_ws;
Claudiu Beznea01c70312019-02-14 15:54:41 +0000816}
817
Alexandre Belloni13469192017-02-01 23:43:03 +0100818void __init at91sam9_pm_init(void)
Nicolas Ferrebf022802015-01-22 16:54:50 +0100819{
Arnd Bergmanndbeb0c82017-08-23 16:46:15 +0200820 if (!IS_ENABLED(CONFIG_SOC_AT91SAM9))
821 return;
822
Alexandre Belloni827de1f2015-01-27 17:38:46 +0100823 at91_dt_ramc();
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +0200824 at91_pm_init(at91sam9_idle);
825}
826
827void __init sama5_pm_init(void)
828{
Arnd Bergmanndbeb0c82017-08-23 16:46:15 +0200829 if (!IS_ENABLED(CONFIG_SOC_SAMA5))
830 return;
831
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +0200832 at91_dt_ramc();
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +0200833 at91_pm_init(NULL);
Nicolas Ferrebf022802015-01-22 16:54:50 +0100834}
Alexandre Belloni24a0f5c2016-09-27 12:29:50 +0200835
836void __init sama5d2_pm_init(void)
837{
Arnd Bergmanndbeb0c82017-08-23 16:46:15 +0200838 if (!IS_ENABLED(CONFIG_SOC_SAMA5D2))
839 return;
840
Claudiu Beznead7484f52018-07-17 14:06:24 +0300841 at91_pm_modes_init();
Alexandre Belloni24a0f5c2016-09-27 12:29:50 +0200842 sama5_pm_init();
Claudiu Bezneaa9581562019-02-14 15:54:51 +0000843
844 soc_pm.ws_ids = sama5d2_ws_ids;
845 soc_pm.config_shdwc_ws = at91_sama5d2_config_shdwc_ws;
846 soc_pm.config_pmc_ws = at91_sama5d2_config_pmc_ws;
Alexandre Belloni24a0f5c2016-09-27 12:29:50 +0200847}
Alexandre Belloni7693e182017-04-26 16:31:03 +0200848
849static int __init at91_pm_modes_select(char *str)
850{
851 char *s;
852 substring_t args[MAX_OPT_ARGS];
853 int standby, suspend;
854
855 if (!str)
856 return 0;
857
858 s = strsep(&str, ",");
859 standby = match_token(s, pm_modes, args);
860 if (standby < 0)
861 return 0;
862
863 suspend = match_token(str, pm_modes, args);
864 if (suspend < 0)
865 return 0;
866
Claudiu Bezneac3f5b8f2019-02-14 15:54:31 +0000867 soc_pm.data.standby_mode = standby;
868 soc_pm.data.suspend_mode = suspend;
Alexandre Belloni7693e182017-04-26 16:31:03 +0200869
870 return 0;
871}
872early_param("atmel.pm_modes", at91_pm_modes_select);