blob: ddf62a006635d7dc8b89cdd0353ccdc09f834c9c [file] [log] [blame]
Andrew Victor907d6de2006-06-20 19:30:19 +01001/*
Andrew Victor9d041262007-02-05 11:42:07 +01002 * arch/arm/mach-at91/pm.c
Andrew Victor907d6de2006-06-20 19:30:19 +01003 * AT91 Power Management
4 *
5 * Copyright (C) 2005 David Brownell
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 */
12
Alexandre Bellonid2e46792015-01-15 15:59:25 +010013#include <linux/genalloc.h>
Alexandre Belloni9824c442017-01-31 13:49:24 +010014#include <linux/io.h>
15#include <linux/of_address.h>
Alexandre Bellonif5598d32015-01-15 15:59:24 +010016#include <linux/of.h>
Alexandre Bellonid2e46792015-01-15 15:59:25 +010017#include <linux/of_platform.h>
Alexandre Belloni9824c442017-01-31 13:49:24 +010018#include <linux/suspend.h>
19
Boris BREZILLON2edb90a2013-10-11 09:37:45 +020020#include <linux/clk/at91_pmc.h>
Andrew Victor907d6de2006-06-20 19:30:19 +010021
Wenyou Yang385acc02015-03-09 11:54:26 +080022#include <asm/cacheflush.h>
Alexandre Belloni9824c442017-01-31 13:49:24 +010023#include <asm/fncpy.h>
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +020024#include <asm/system_misc.h>
Andrew Victor907d6de2006-06-20 19:30:19 +010025
Andrew Victor907d6de2006-06-20 19:30:19 +010026#include "generic.h"
Albin Tonnerre1ea60cf2009-11-01 18:40:50 +010027#include "pm.h"
Andrew Victor907d6de2006-06-20 19:30:19 +010028
Alexandre Belloni23b84082015-03-13 22:57:23 +010029/*
30 * FIXME: this is needed to communicate between the pinctrl driver and
31 * the PM implementation in the machine. Possibly part of the PM
32 * implementation should be moved down into the pinctrl driver and get
33 * called as part of the generic suspend/resume path.
34 */
Ludovic Desroches84235362015-12-01 11:44:40 +010035#ifdef CONFIG_PINCTRL_AT91
Alexandre Belloni23b84082015-03-13 22:57:23 +010036extern void at91_pinctrl_gpio_suspend(void);
37extern void at91_pinctrl_gpio_resume(void);
Ludovic Desroches84235362015-12-01 11:44:40 +010038#endif
Alexandre Belloni23b84082015-03-13 22:57:23 +010039
Alexandre Belloni65cc1a52017-01-31 18:12:57 +010040static struct at91_pm_data pm_data;
Alexandre Bellonif5598d32015-01-15 15:59:24 +010041
Alexandre Belloni4d767bc2017-01-31 14:08:47 +010042#define at91_ramc_read(id, field) \
Alexandre Belloni65cc1a52017-01-31 18:12:57 +010043 __raw_readl(pm_data.ramc[id] + field)
Alexandre Belloni4d767bc2017-01-31 14:08:47 +010044
45#define at91_ramc_write(id, field, value) \
Alexandre Belloni65cc1a52017-01-31 18:12:57 +010046 __raw_writel(value, pm_data.ramc[id] + field)
Daniel Lezcano5ad945e2013-09-22 22:29:57 +020047
Andrew Victor907d6de2006-06-20 19:30:19 +010048static int at91_pm_valid_state(suspend_state_t state)
49{
50 switch (state) {
51 case PM_SUSPEND_ON:
52 case PM_SUSPEND_STANDBY:
53 case PM_SUSPEND_MEM:
54 return 1;
55
56 default:
57 return 0;
58 }
59}
60
61
62static suspend_state_t target_state;
63
64/*
65 * Called after processes are frozen, but before we shutdown devices.
66 */
Rafael J. Wysockic697eec2008-01-08 00:04:17 +010067static int at91_pm_begin(suspend_state_t state)
Andrew Victor907d6de2006-06-20 19:30:19 +010068{
69 target_state = state;
70 return 0;
71}
72
73/*
74 * Verify that all the clocks are correct before entering
75 * slow-clock mode.
76 */
77static int at91_pm_verify_clocks(void)
78{
79 unsigned long scsr;
80 int i;
81
Alexandre Belloni65cc1a52017-01-31 18:12:57 +010082 scsr = readl(pm_data.pmc + AT91_PMC_SCSR);
Andrew Victor907d6de2006-06-20 19:30:19 +010083
84 /* USB must not be using PLLB */
Alexandre Belloni65cc1a52017-01-31 18:12:57 +010085 if ((scsr & pm_data.uhp_udp_mask) != 0) {
Alexandre Bellonif5598d32015-01-15 15:59:24 +010086 pr_err("AT91: PM - Suspend-to-RAM with USB still active\n");
87 return 0;
Andrew Victor907d6de2006-06-20 19:30:19 +010088 }
89
Andrew Victor907d6de2006-06-20 19:30:19 +010090 /* PCK0..PCK3 must be disabled, or configured to use clk32k */
91 for (i = 0; i < 4; i++) {
92 u32 css;
93
94 if ((scsr & (AT91_PMC_PCK0 << i)) == 0)
95 continue;
Alexandre Belloni65cc1a52017-01-31 18:12:57 +010096 css = readl(pm_data.pmc + AT91_PMC_PCKR(i)) & AT91_PMC_CSS;
Andrew Victor907d6de2006-06-20 19:30:19 +010097 if (css != AT91_PMC_CSS_SLOW) {
Ryan Mallon7f96b1c2009-04-01 20:33:30 +010098 pr_err("AT91: PM - Suspend-to-RAM with PCK%d src %d\n", i, css);
Andrew Victor907d6de2006-06-20 19:30:19 +010099 return 0;
100 }
101 }
Andrew Victor907d6de2006-06-20 19:30:19 +0100102
103 return 1;
104}
105
106/*
107 * Call this from platform driver suspend() to see how deeply to suspend.
108 * For example, some controllers (like OHCI) need one of the PLL clocks
109 * in order to act as a wakeup source, and those are not available when
110 * going into slow clock mode.
111 *
112 * REVISIT: generalize as clk_will_be_available(clk)? Other platforms have
113 * the very same problem (but not using at91 main_clk), and it'd be better
114 * to add one generic API rather than lots of platform-specific ones.
115 */
116int at91_suspend_entering_slow_clock(void)
117{
118 return (target_state == PM_SUSPEND_MEM);
119}
120EXPORT_SYMBOL(at91_suspend_entering_slow_clock);
121
Alexandre Belloni65cc1a52017-01-31 18:12:57 +0100122static void (*at91_suspend_sram_fn)(struct at91_pm_data *);
123extern void at91_pm_suspend_in_sram(struct at91_pm_data *pm_data);
Wenyou Yang5726a8b2015-03-09 11:51:09 +0800124extern u32 at91_pm_suspend_in_sram_sz;
Andrew Victorf5d0f452008-04-02 21:50:16 +0100125
Wenyou Yang23be4be2015-03-09 11:49:46 +0800126static void at91_pm_suspend(suspend_state_t state)
127{
Alexandre Belloni65cc1a52017-01-31 18:12:57 +0100128 pm_data.mode = (state == PM_SUSPEND_MEM) ? AT91_PM_SLOW_CLOCK : 0;
Wenyou Yang23be4be2015-03-09 11:49:46 +0800129
Wenyou Yang385acc02015-03-09 11:54:26 +0800130 flush_cache_all();
131 outer_disable();
132
Alexandre Belloni65cc1a52017-01-31 18:12:57 +0100133 at91_suspend_sram_fn(&pm_data);
Wenyou Yang385acc02015-03-09 11:54:26 +0800134
135 outer_resume();
Wenyou Yang23be4be2015-03-09 11:49:46 +0800136}
137
Andrew Victor907d6de2006-06-20 19:30:19 +0100138static int at91_pm_enter(suspend_state_t state)
139{
Ludovic Desroches84235362015-12-01 11:44:40 +0100140#ifdef CONFIG_PINCTRL_AT91
Arnd Bergmann85c4b312014-12-02 12:08:27 +0100141 at91_pinctrl_gpio_suspend();
Ludovic Desroches84235362015-12-01 11:44:40 +0100142#endif
Andrew Victor907d6de2006-06-20 19:30:19 +0100143 switch (state) {
Wenyou Yang23be4be2015-03-09 11:49:46 +0800144 /*
145 * Suspend-to-RAM is like STANDBY plus slow clock mode, so
146 * drivers must suspend more deeply, the master clock switches
147 * to the clk32k and turns off the main oscillator
148 */
149 case PM_SUSPEND_MEM:
Andrew Victor907d6de2006-06-20 19:30:19 +0100150 /*
Wenyou Yang23be4be2015-03-09 11:49:46 +0800151 * Ensure that clocks are in a valid state.
Andrew Victor907d6de2006-06-20 19:30:19 +0100152 */
Wenyou Yang23be4be2015-03-09 11:49:46 +0800153 if (!at91_pm_verify_clocks())
Andrew Victor907d6de2006-06-20 19:30:19 +0100154 goto error;
Wenyou Yang23be4be2015-03-09 11:49:46 +0800155
156 at91_pm_suspend(state);
157
158 break;
159
160 /*
161 * STANDBY mode has *all* drivers suspended; ignores irqs not
162 * marked as 'wakeup' event sources; and reduces DRAM power.
163 * But otherwise it's identical to PM_SUSPEND_ON: cpu idle, and
164 * nothing fancy done with main or cpu clocks.
165 */
166 case PM_SUSPEND_STANDBY:
167 at91_pm_suspend(state);
168 break;
169
170 case PM_SUSPEND_ON:
171 cpu_do_idle();
172 break;
173
174 default:
175 pr_debug("AT91: PM - bogus suspend state %d\n", state);
176 goto error;
Andrew Victor907d6de2006-06-20 19:30:19 +0100177 }
178
Andrew Victor907d6de2006-06-20 19:30:19 +0100179error:
180 target_state = PM_SUSPEND_ON;
Boris BREZILLON07192602014-07-10 19:14:20 +0200181
Ludovic Desroches84235362015-12-01 11:44:40 +0100182#ifdef CONFIG_PINCTRL_AT91
Arnd Bergmann85c4b312014-12-02 12:08:27 +0100183 at91_pinctrl_gpio_resume();
Ludovic Desroches84235362015-12-01 11:44:40 +0100184#endif
Andrew Victor907d6de2006-06-20 19:30:19 +0100185 return 0;
186}
187
Rafael J. Wysockic697eec2008-01-08 00:04:17 +0100188/*
189 * Called right prior to thawing processes.
190 */
191static void at91_pm_end(void)
192{
193 target_state = PM_SUSPEND_ON;
194}
195
Andrew Victor907d6de2006-06-20 19:30:19 +0100196
Lionel Debroux2f55ac02010-11-16 14:14:02 +0100197static const struct platform_suspend_ops at91_pm_ops = {
Rafael J. Wysockic697eec2008-01-08 00:04:17 +0100198 .valid = at91_pm_valid_state,
199 .begin = at91_pm_begin,
200 .enter = at91_pm_enter,
201 .end = at91_pm_end,
Andrew Victor907d6de2006-06-20 19:30:19 +0100202};
203
Daniel Lezcano5ad945e2013-09-22 22:29:57 +0200204static struct platform_device at91_cpuidle_device = {
205 .name = "cpuidle-at91",
206};
207
Wenyou Yang047794e2015-03-04 09:44:45 +0800208static void at91_pm_set_standby(void (*at91_standby)(void))
Daniel Lezcano5ad945e2013-09-22 22:29:57 +0200209{
Wenyou Yange32d9952015-03-09 11:51:49 +0800210 if (at91_standby)
Daniel Lezcano5ad945e2013-09-22 22:29:57 +0200211 at91_cpuidle_device.dev.platform_data = at91_standby;
Daniel Lezcano5ad945e2013-09-22 22:29:57 +0200212}
213
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100214/*
215 * The AT91RM9200 goes into self-refresh mode with this command, and will
216 * terminate self-refresh automatically on the next SDRAM access.
217 *
218 * Self-refresh mode is exited as soon as a memory access is made, but we don't
219 * know for sure when that happens. However, we need to restore the low-power
220 * mode if it was enabled before going idle. Restoring low-power mode while
221 * still in self-refresh is "not recommended", but seems to work.
222 */
223static void at91rm9200_standby(void)
224{
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100225 asm volatile(
226 "b 1f\n\t"
227 ".align 5\n\t"
228 "1: mcr p15, 0, %0, c7, c10, 4\n\t"
Alexandre Belloni5a2d4f02017-02-01 21:32:43 +0100229 " str %2, [%1, %3]\n\t"
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100230 " mcr p15, 0, %0, c7, c0, 4\n\t"
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100231 :
Alexandre Belloni5a2d4f02017-02-01 21:32:43 +0100232 : "r" (0), "r" (pm_data.ramc[0]),
233 "r" (1), "r" (AT91_MC_SDRAMC_SRR));
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100234}
235
236/* We manage both DDRAM/SDRAM controllers, we need more than one value to
237 * remember.
238 */
239static void at91_ddr_standby(void)
240{
241 /* Those two values allow us to delay self-refresh activation
242 * to the maximum. */
243 u32 lpr0, lpr1 = 0;
Alexandre Belloni56387632017-02-01 22:10:34 +0100244 u32 mdr, saved_mdr0, saved_mdr1 = 0;
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100245 u32 saved_lpr0, saved_lpr1 = 0;
246
Alexandre Belloni56387632017-02-01 22:10:34 +0100247 /* LPDDR1 --> force DDR2 mode during self-refresh */
248 saved_mdr0 = at91_ramc_read(0, AT91_DDRSDRC_MDR);
249 if ((saved_mdr0 & AT91_DDRSDRC_MD) == AT91_DDRSDRC_MD_LOW_POWER_DDR) {
250 mdr = saved_mdr0 & ~AT91_DDRSDRC_MD;
251 mdr |= AT91_DDRSDRC_MD_DDR2;
252 at91_ramc_write(0, AT91_DDRSDRC_MDR, mdr);
253 }
254
Alexandre Belloni65cc1a52017-01-31 18:12:57 +0100255 if (pm_data.ramc[1]) {
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100256 saved_lpr1 = at91_ramc_read(1, AT91_DDRSDRC_LPR);
257 lpr1 = saved_lpr1 & ~AT91_DDRSDRC_LPCB;
258 lpr1 |= AT91_DDRSDRC_LPCB_SELF_REFRESH;
Alexandre Belloni56387632017-02-01 22:10:34 +0100259 saved_mdr1 = at91_ramc_read(1, AT91_DDRSDRC_MDR);
260 if ((saved_mdr1 & AT91_DDRSDRC_MD) == AT91_DDRSDRC_MD_LOW_POWER_DDR) {
261 mdr = saved_mdr1 & ~AT91_DDRSDRC_MD;
262 mdr |= AT91_DDRSDRC_MD_DDR2;
263 at91_ramc_write(1, AT91_DDRSDRC_MDR, mdr);
264 }
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100265 }
266
267 saved_lpr0 = at91_ramc_read(0, AT91_DDRSDRC_LPR);
268 lpr0 = saved_lpr0 & ~AT91_DDRSDRC_LPCB;
269 lpr0 |= AT91_DDRSDRC_LPCB_SELF_REFRESH;
270
271 /* self-refresh mode now */
272 at91_ramc_write(0, AT91_DDRSDRC_LPR, lpr0);
Alexandre Belloni65cc1a52017-01-31 18:12:57 +0100273 if (pm_data.ramc[1])
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100274 at91_ramc_write(1, AT91_DDRSDRC_LPR, lpr1);
275
276 cpu_do_idle();
277
Alexandre Belloni56387632017-02-01 22:10:34 +0100278 at91_ramc_write(0, AT91_DDRSDRC_MDR, saved_mdr0);
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100279 at91_ramc_write(0, AT91_DDRSDRC_LPR, saved_lpr0);
Alexandre Belloni56387632017-02-01 22:10:34 +0100280 if (pm_data.ramc[1]) {
281 at91_ramc_write(0, AT91_DDRSDRC_MDR, saved_mdr1);
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100282 at91_ramc_write(1, AT91_DDRSDRC_LPR, saved_lpr1);
Alexandre Belloni56387632017-02-01 22:10:34 +0100283 }
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100284}
285
Nicolas Ferre60b89f12017-03-14 09:38:04 +0100286static void sama5d3_ddr_standby(void)
287{
288 u32 lpr0;
289 u32 saved_lpr0;
290
291 saved_lpr0 = at91_ramc_read(0, AT91_DDRSDRC_LPR);
292 lpr0 = saved_lpr0 & ~AT91_DDRSDRC_LPCB;
293 lpr0 |= AT91_DDRSDRC_LPCB_POWER_DOWN;
294
295 at91_ramc_write(0, AT91_DDRSDRC_LPR, lpr0);
296
297 cpu_do_idle();
298
299 at91_ramc_write(0, AT91_DDRSDRC_LPR, saved_lpr0);
300}
301
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100302/* We manage both DDRAM/SDRAM controllers, we need more than one value to
303 * remember.
304 */
305static void at91sam9_sdram_standby(void)
306{
307 u32 lpr0, lpr1 = 0;
308 u32 saved_lpr0, saved_lpr1 = 0;
309
Alexandre Belloni65cc1a52017-01-31 18:12:57 +0100310 if (pm_data.ramc[1]) {
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100311 saved_lpr1 = at91_ramc_read(1, AT91_SDRAMC_LPR);
312 lpr1 = saved_lpr1 & ~AT91_SDRAMC_LPCB;
313 lpr1 |= AT91_SDRAMC_LPCB_SELF_REFRESH;
314 }
315
316 saved_lpr0 = at91_ramc_read(0, AT91_SDRAMC_LPR);
317 lpr0 = saved_lpr0 & ~AT91_SDRAMC_LPCB;
318 lpr0 |= AT91_SDRAMC_LPCB_SELF_REFRESH;
319
320 /* self-refresh mode now */
321 at91_ramc_write(0, AT91_SDRAMC_LPR, lpr0);
Alexandre Belloni65cc1a52017-01-31 18:12:57 +0100322 if (pm_data.ramc[1])
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100323 at91_ramc_write(1, AT91_SDRAMC_LPR, lpr1);
324
325 cpu_do_idle();
326
327 at91_ramc_write(0, AT91_SDRAMC_LPR, saved_lpr0);
Alexandre Belloni65cc1a52017-01-31 18:12:57 +0100328 if (pm_data.ramc[1])
Alexandre Bellonia18d0692015-03-16 23:44:37 +0100329 at91_ramc_write(1, AT91_SDRAMC_LPR, saved_lpr1);
330}
331
Alexandre Belloniaab02d62017-02-01 22:41:50 +0100332struct ramc_info {
333 void (*idle)(void);
334 unsigned int memctrl;
335};
336
337static const struct ramc_info ramc_infos[] __initconst = {
338 { .idle = at91rm9200_standby, .memctrl = AT91_MEMCTRL_MC},
339 { .idle = at91sam9_sdram_standby, .memctrl = AT91_MEMCTRL_SDRAMC},
340 { .idle = at91_ddr_standby, .memctrl = AT91_MEMCTRL_DDRSDR},
341 { .idle = sama5d3_ddr_standby, .memctrl = AT91_MEMCTRL_DDRSDR},
342};
343
Nicolas Pitre19c233b2015-07-27 18:27:52 -0400344static const struct of_device_id const ramc_ids[] __initconst = {
Alexandre Belloniaab02d62017-02-01 22:41:50 +0100345 { .compatible = "atmel,at91rm9200-sdramc", .data = &ramc_infos[0] },
346 { .compatible = "atmel,at91sam9260-sdramc", .data = &ramc_infos[1] },
347 { .compatible = "atmel,at91sam9g45-ddramc", .data = &ramc_infos[2] },
348 { .compatible = "atmel,sama5d3-ddramc", .data = &ramc_infos[3] },
Alexandre Belloni827de1f2015-01-27 17:38:46 +0100349 { /*sentinel*/ }
350};
351
Uwe Kleine-König444d2d32015-02-18 21:19:56 +0100352static __init void at91_dt_ramc(void)
Alexandre Belloni827de1f2015-01-27 17:38:46 +0100353{
354 struct device_node *np;
355 const struct of_device_id *of_id;
356 int idx = 0;
357 const void *standby = NULL;
Alexandre Belloniaab02d62017-02-01 22:41:50 +0100358 const struct ramc_info *ramc;
Alexandre Belloni827de1f2015-01-27 17:38:46 +0100359
360 for_each_matching_node_and_match(np, ramc_ids, &of_id) {
Alexandre Belloni65cc1a52017-01-31 18:12:57 +0100361 pm_data.ramc[idx] = of_iomap(np, 0);
362 if (!pm_data.ramc[idx])
Alexandre Belloni827de1f2015-01-27 17:38:46 +0100363 panic(pr_fmt("unable to map ramc[%d] cpu registers\n"), idx);
364
Alexandre Belloniaab02d62017-02-01 22:41:50 +0100365 ramc = of_id->data;
Alexandre Belloni827de1f2015-01-27 17:38:46 +0100366 if (!standby)
Alexandre Belloniaab02d62017-02-01 22:41:50 +0100367 standby = ramc->idle;
368 pm_data.memctrl = ramc->memctrl;
Alexandre Belloni827de1f2015-01-27 17:38:46 +0100369
370 idx++;
371 }
372
373 if (!idx)
374 panic(pr_fmt("unable to find compatible ram controller node in dtb\n"));
375
376 if (!standby) {
377 pr_warn("ramc no standby function available\n");
378 return;
379 }
380
381 at91_pm_set_standby(standby);
382}
383
Ben Dooksab6778e2016-06-17 16:34:18 +0100384static void at91rm9200_idle(void)
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +0200385{
386 /*
387 * Disable the processor clock. The processor will be automatically
388 * re-enabled by an interrupt or by a reset.
389 */
Alexandre Belloni65cc1a52017-01-31 18:12:57 +0100390 writel(AT91_PMC_PCK, pm_data.pmc + AT91_PMC_SCDR);
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +0200391}
392
Ben Dooksab6778e2016-06-17 16:34:18 +0100393static void at91sam9_idle(void)
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +0200394{
Alexandre Belloni65cc1a52017-01-31 18:12:57 +0100395 writel(AT91_PMC_PCK, pm_data.pmc + AT91_PMC_SCDR);
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +0200396 cpu_do_idle();
397}
398
Alexandre Bellonid2e46792015-01-15 15:59:25 +0100399static void __init at91_pm_sram_init(void)
400{
401 struct gen_pool *sram_pool;
402 phys_addr_t sram_pbase;
403 unsigned long sram_base;
404 struct device_node *node;
Alexandre Belloni4a031f72015-03-03 08:38:07 +0100405 struct platform_device *pdev = NULL;
Alexandre Bellonid2e46792015-01-15 15:59:25 +0100406
Alexandre Belloni4a031f72015-03-03 08:38:07 +0100407 for_each_compatible_node(node, NULL, "mmio-sram") {
408 pdev = of_find_device_by_node(node);
409 if (pdev) {
410 of_node_put(node);
411 break;
412 }
Alexandre Bellonid2e46792015-01-15 15:59:25 +0100413 }
414
Alexandre Bellonid2e46792015-01-15 15:59:25 +0100415 if (!pdev) {
416 pr_warn("%s: failed to find sram device!\n", __func__);
Alexandre Belloni4a031f72015-03-03 08:38:07 +0100417 return;
Alexandre Bellonid2e46792015-01-15 15:59:25 +0100418 }
419
Vladimir Zapolskiy73858172015-09-04 15:47:43 -0700420 sram_pool = gen_pool_get(&pdev->dev, NULL);
Alexandre Bellonid2e46792015-01-15 15:59:25 +0100421 if (!sram_pool) {
422 pr_warn("%s: sram pool unavailable!\n", __func__);
Alexandre Belloni4a031f72015-03-03 08:38:07 +0100423 return;
Alexandre Bellonid2e46792015-01-15 15:59:25 +0100424 }
425
Wenyou Yang5726a8b2015-03-09 11:51:09 +0800426 sram_base = gen_pool_alloc(sram_pool, at91_pm_suspend_in_sram_sz);
Alexandre Bellonid2e46792015-01-15 15:59:25 +0100427 if (!sram_base) {
Wenyou Yang5726a8b2015-03-09 11:51:09 +0800428 pr_warn("%s: unable to alloc sram!\n", __func__);
Alexandre Belloni4a031f72015-03-03 08:38:07 +0100429 return;
Alexandre Bellonid2e46792015-01-15 15:59:25 +0100430 }
431
432 sram_pbase = gen_pool_virt_to_phys(sram_pool, sram_base);
Wenyou Yang5726a8b2015-03-09 11:51:09 +0800433 at91_suspend_sram_fn = __arm_ioremap_exec(sram_pbase,
434 at91_pm_suspend_in_sram_sz, false);
435 if (!at91_suspend_sram_fn) {
Wenyou Yangd94e6882015-03-09 11:49:01 +0800436 pr_warn("SRAM: Could not map\n");
437 return;
438 }
439
Wenyou Yang5726a8b2015-03-09 11:51:09 +0800440 /* Copy the pm suspend handler to SRAM */
441 at91_suspend_sram_fn = fncpy(at91_suspend_sram_fn,
442 &at91_pm_suspend_in_sram, at91_pm_suspend_in_sram_sz);
Alexandre Bellonid2e46792015-01-15 15:59:25 +0100443}
Alexandre Bellonid2e46792015-01-15 15:59:25 +0100444
Alexandre Belloni5737b732015-09-30 01:31:34 +0200445static const struct of_device_id atmel_pmc_ids[] __initconst = {
446 { .compatible = "atmel,at91rm9200-pmc" },
447 { .compatible = "atmel,at91sam9260-pmc" },
448 { .compatible = "atmel,at91sam9g45-pmc" },
449 { .compatible = "atmel,at91sam9n12-pmc" },
450 { .compatible = "atmel,at91sam9x5-pmc" },
451 { .compatible = "atmel,sama5d3-pmc" },
452 { .compatible = "atmel,sama5d2-pmc" },
453 { /* sentinel */ },
454};
455
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +0200456static void __init at91_pm_init(void (*pm_idle)(void))
Andrew Victor907d6de2006-06-20 19:30:19 +0100457{
Alexandre Belloni5737b732015-09-30 01:31:34 +0200458 struct device_node *pmc_np;
Andrew Victorf5d0f452008-04-02 21:50:16 +0100459
Daniel Lezcano5ad945e2013-09-22 22:29:57 +0200460 if (at91_cpuidle_device.dev.platform_data)
461 platform_device_register(&at91_cpuidle_device);
Andrew Victor907d6de2006-06-20 19:30:19 +0100462
Alexandre Belloni5737b732015-09-30 01:31:34 +0200463 pmc_np = of_find_matching_node(NULL, atmel_pmc_ids);
Alexandre Belloni65cc1a52017-01-31 18:12:57 +0100464 pm_data.pmc = of_iomap(pmc_np, 0);
465 if (!pm_data.pmc) {
Alexandre Belloni5737b732015-09-30 01:31:34 +0200466 pr_err("AT91: PM not supported, PMC not found\n");
467 return;
468 }
469
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +0200470 if (pm_idle)
471 arm_pm_idle = pm_idle;
472
Alexandre Belloni5737b732015-09-30 01:31:34 +0200473 at91_pm_sram_init();
474
Wenyou Yang5726a8b2015-03-09 11:51:09 +0800475 if (at91_suspend_sram_fn)
Wenyou Yangd94e6882015-03-09 11:49:01 +0800476 suspend_set_ops(&at91_pm_ops);
477 else
478 pr_info("AT91: PM not supported, due to no SRAM allocated\n");
Andrew Victor907d6de2006-06-20 19:30:19 +0100479}
Alexandre Belloni4db0ba22015-01-15 15:59:27 +0100480
Nicolas Ferread3fc3e2015-01-27 18:41:33 +0100481void __init at91rm9200_pm_init(void)
Alexandre Belloni4db0ba22015-01-15 15:59:27 +0100482{
Alexandre Belloni827de1f2015-01-27 17:38:46 +0100483 at91_dt_ramc();
484
Alexandre Belloni4db0ba22015-01-15 15:59:27 +0100485 /*
486 * AT91RM9200 SDRAM low-power mode cannot be used with self-refresh.
487 */
Alexandre Bellonid7d45f22015-03-16 15:14:50 +0100488 at91_ramc_write(0, AT91_MC_SDRAMC_LPR, 0);
Alexandre Belloni4db0ba22015-01-15 15:59:27 +0100489
Alexandre Belloni65cc1a52017-01-31 18:12:57 +0100490 pm_data.uhp_udp_mask = AT91RM9200_PMC_UHP | AT91RM9200_PMC_UDP;
Alexandre Belloni4db0ba22015-01-15 15:59:27 +0100491
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +0200492 at91_pm_init(at91rm9200_idle);
Alexandre Belloni4db0ba22015-01-15 15:59:27 +0100493}
494
Nicolas Ferread3fc3e2015-01-27 18:41:33 +0100495void __init at91sam9260_pm_init(void)
Alexandre Belloni4db0ba22015-01-15 15:59:27 +0100496{
Alexandre Belloni827de1f2015-01-27 17:38:46 +0100497 at91_dt_ramc();
Alexandre Belloni65cc1a52017-01-31 18:12:57 +0100498 pm_data.uhp_udp_mask = AT91SAM926x_PMC_UHP | AT91SAM926x_PMC_UDP;
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +0200499 at91_pm_init(at91sam9_idle);
Alexandre Belloni4db0ba22015-01-15 15:59:27 +0100500}
501
Nicolas Ferread3fc3e2015-01-27 18:41:33 +0100502void __init at91sam9g45_pm_init(void)
Alexandre Belloni4db0ba22015-01-15 15:59:27 +0100503{
Alexandre Belloni827de1f2015-01-27 17:38:46 +0100504 at91_dt_ramc();
Alexandre Belloni65cc1a52017-01-31 18:12:57 +0100505 pm_data.uhp_udp_mask = AT91SAM926x_PMC_UHP;
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +0200506 at91_pm_init(at91sam9_idle);
Alexandre Belloni4db0ba22015-01-15 15:59:27 +0100507}
Nicolas Ferrebf022802015-01-22 16:54:50 +0100508
Nicolas Ferread3fc3e2015-01-27 18:41:33 +0100509void __init at91sam9x5_pm_init(void)
Nicolas Ferrebf022802015-01-22 16:54:50 +0100510{
Alexandre Belloni827de1f2015-01-27 17:38:46 +0100511 at91_dt_ramc();
Alexandre Belloni65cc1a52017-01-31 18:12:57 +0100512 pm_data.uhp_udp_mask = AT91SAM926x_PMC_UHP | AT91SAM926x_PMC_UDP;
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +0200513 at91_pm_init(at91sam9_idle);
514}
515
516void __init sama5_pm_init(void)
517{
518 at91_dt_ramc();
Alexandre Belloni65cc1a52017-01-31 18:12:57 +0100519 pm_data.uhp_udp_mask = AT91SAM926x_PMC_UHP | AT91SAM926x_PMC_UDP;
Alexandre Bellonifbc7edc2015-09-30 01:58:40 +0200520 at91_pm_init(NULL);
Nicolas Ferrebf022802015-01-22 16:54:50 +0100521}