• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * arch/arm/mach-at91/pm.c
3  * 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 
13 #include <linux/gpio.h>
14 #include <linux/suspend.h>
15 #include <linux/sched.h>
16 #include <linux/proc_fs.h>
17 #include <linux/genalloc.h>
18 #include <linux/interrupt.h>
19 #include <linux/sysfs.h>
20 #include <linux/module.h>
21 #include <linux/of.h>
22 #include <linux/of_platform.h>
23 #include <linux/of_address.h>
24 #include <linux/platform_device.h>
25 #include <linux/io.h>
26 #include <linux/clk/at91_pmc.h>
27 
28 #include <asm/irq.h>
29 #include <linux/atomic.h>
30 #include <asm/mach/time.h>
31 #include <asm/mach/irq.h>
32 #include <asm/fncpy.h>
33 #include <asm/cacheflush.h>
34 
35 #include "generic.h"
36 #include "pm.h"
37 
38 /*
39  * FIXME: this is needed to communicate between the pinctrl driver and
40  * the PM implementation in the machine. Possibly part of the PM
41  * implementation should be moved down into the pinctrl driver and get
42  * called as part of the generic suspend/resume path.
43  */
44 #ifdef CONFIG_PINCTRL_AT91
45 extern void at91_pinctrl_gpio_suspend(void);
46 extern void at91_pinctrl_gpio_resume(void);
47 #endif
48 
49 static struct {
50 	unsigned long uhp_udp_mask;
51 	int memctrl;
52 } at91_pm_data;
53 
54 void __iomem *at91_ramc_base[2];
55 
at91_pm_valid_state(suspend_state_t state)56 static int at91_pm_valid_state(suspend_state_t state)
57 {
58 	switch (state) {
59 		case PM_SUSPEND_ON:
60 		case PM_SUSPEND_STANDBY:
61 		case PM_SUSPEND_MEM:
62 			return 1;
63 
64 		default:
65 			return 0;
66 	}
67 }
68 
69 
70 static suspend_state_t target_state;
71 
72 /*
73  * Called after processes are frozen, but before we shutdown devices.
74  */
at91_pm_begin(suspend_state_t state)75 static int at91_pm_begin(suspend_state_t state)
76 {
77 	target_state = state;
78 	return 0;
79 }
80 
81 /*
82  * Verify that all the clocks are correct before entering
83  * slow-clock mode.
84  */
at91_pm_verify_clocks(void)85 static int at91_pm_verify_clocks(void)
86 {
87 	unsigned long scsr;
88 	int i;
89 
90 	scsr = at91_pmc_read(AT91_PMC_SCSR);
91 
92 	/* USB must not be using PLLB */
93 	if ((scsr & at91_pm_data.uhp_udp_mask) != 0) {
94 		pr_err("AT91: PM - Suspend-to-RAM with USB still active\n");
95 		return 0;
96 	}
97 
98 	/* PCK0..PCK3 must be disabled, or configured to use clk32k */
99 	for (i = 0; i < 4; i++) {
100 		u32 css;
101 
102 		if ((scsr & (AT91_PMC_PCK0 << i)) == 0)
103 			continue;
104 
105 		css = at91_pmc_read(AT91_PMC_PCKR(i)) & AT91_PMC_CSS;
106 		if (css != AT91_PMC_CSS_SLOW) {
107 			pr_err("AT91: PM - Suspend-to-RAM with PCK%d src %d\n", i, css);
108 			return 0;
109 		}
110 	}
111 
112 	return 1;
113 }
114 
115 /*
116  * Call this from platform driver suspend() to see how deeply to suspend.
117  * For example, some controllers (like OHCI) need one of the PLL clocks
118  * in order to act as a wakeup source, and those are not available when
119  * going into slow clock mode.
120  *
121  * REVISIT: generalize as clk_will_be_available(clk)?  Other platforms have
122  * the very same problem (but not using at91 main_clk), and it'd be better
123  * to add one generic API rather than lots of platform-specific ones.
124  */
at91_suspend_entering_slow_clock(void)125 int at91_suspend_entering_slow_clock(void)
126 {
127 	return (target_state == PM_SUSPEND_MEM);
128 }
129 EXPORT_SYMBOL(at91_suspend_entering_slow_clock);
130 
131 static void (*at91_suspend_sram_fn)(void __iomem *pmc, void __iomem *ramc0,
132 			  void __iomem *ramc1, int memctrl);
133 
134 extern void at91_pm_suspend_in_sram(void __iomem *pmc, void __iomem *ramc0,
135 			    void __iomem *ramc1, int memctrl);
136 extern u32 at91_pm_suspend_in_sram_sz;
137 
at91_pm_suspend(suspend_state_t state)138 static void at91_pm_suspend(suspend_state_t state)
139 {
140 	unsigned int pm_data = at91_pm_data.memctrl;
141 
142 	pm_data |= (state == PM_SUSPEND_MEM) ?
143 				AT91_PM_MODE(AT91_PM_SLOW_CLOCK) : 0;
144 
145 	flush_cache_all();
146 	outer_disable();
147 
148 	at91_suspend_sram_fn(at91_pmc_base, at91_ramc_base[0],
149 				at91_ramc_base[1], pm_data);
150 
151 	outer_resume();
152 }
153 
at91_pm_enter(suspend_state_t state)154 static int at91_pm_enter(suspend_state_t state)
155 {
156 #ifdef CONFIG_PINCTRL_AT91
157 	at91_pinctrl_gpio_suspend();
158 #endif
159 	switch (state) {
160 	/*
161 	 * Suspend-to-RAM is like STANDBY plus slow clock mode, so
162 	 * drivers must suspend more deeply, the master clock switches
163 	 * to the clk32k and turns off the main oscillator
164 	 */
165 	case PM_SUSPEND_MEM:
166 		/*
167 		 * Ensure that clocks are in a valid state.
168 		 */
169 		if (!at91_pm_verify_clocks())
170 			goto error;
171 
172 		at91_pm_suspend(state);
173 
174 		break;
175 
176 	/*
177 	 * STANDBY mode has *all* drivers suspended; ignores irqs not
178 	 * marked as 'wakeup' event sources; and reduces DRAM power.
179 	 * But otherwise it's identical to PM_SUSPEND_ON: cpu idle, and
180 	 * nothing fancy done with main or cpu clocks.
181 	 */
182 	case PM_SUSPEND_STANDBY:
183 		at91_pm_suspend(state);
184 		break;
185 
186 	case PM_SUSPEND_ON:
187 		cpu_do_idle();
188 		break;
189 
190 	default:
191 		pr_debug("AT91: PM - bogus suspend state %d\n", state);
192 		goto error;
193 	}
194 
195 error:
196 	target_state = PM_SUSPEND_ON;
197 
198 #ifdef CONFIG_PINCTRL_AT91
199 	at91_pinctrl_gpio_resume();
200 #endif
201 	return 0;
202 }
203 
204 /*
205  * Called right prior to thawing processes.
206  */
at91_pm_end(void)207 static void at91_pm_end(void)
208 {
209 	target_state = PM_SUSPEND_ON;
210 }
211 
212 
213 static const struct platform_suspend_ops at91_pm_ops = {
214 	.valid	= at91_pm_valid_state,
215 	.begin	= at91_pm_begin,
216 	.enter	= at91_pm_enter,
217 	.end	= at91_pm_end,
218 };
219 
220 static struct platform_device at91_cpuidle_device = {
221 	.name = "cpuidle-at91",
222 };
223 
at91_pm_set_standby(void (* at91_standby)(void))224 static void at91_pm_set_standby(void (*at91_standby)(void))
225 {
226 	if (at91_standby)
227 		at91_cpuidle_device.dev.platform_data = at91_standby;
228 }
229 
230 /*
231  * The AT91RM9200 goes into self-refresh mode with this command, and will
232  * terminate self-refresh automatically on the next SDRAM access.
233  *
234  * Self-refresh mode is exited as soon as a memory access is made, but we don't
235  * know for sure when that happens. However, we need to restore the low-power
236  * mode if it was enabled before going idle. Restoring low-power mode while
237  * still in self-refresh is "not recommended", but seems to work.
238  */
at91rm9200_standby(void)239 static void at91rm9200_standby(void)
240 {
241 	u32 lpr = at91_ramc_read(0, AT91_MC_SDRAMC_LPR);
242 
243 	asm volatile(
244 		"b    1f\n\t"
245 		".align    5\n\t"
246 		"1:  mcr    p15, 0, %0, c7, c10, 4\n\t"
247 		"    str    %0, [%1, %2]\n\t"
248 		"    str    %3, [%1, %4]\n\t"
249 		"    mcr    p15, 0, %0, c7, c0, 4\n\t"
250 		"    str    %5, [%1, %2]"
251 		:
252 		: "r" (0), "r" (at91_ramc_base[0]), "r" (AT91_MC_SDRAMC_LPR),
253 		  "r" (1), "r" (AT91_MC_SDRAMC_SRR),
254 		  "r" (lpr));
255 }
256 
257 /* We manage both DDRAM/SDRAM controllers, we need more than one value to
258  * remember.
259  */
at91_ddr_standby(void)260 static void at91_ddr_standby(void)
261 {
262 	/* Those two values allow us to delay self-refresh activation
263 	 * to the maximum. */
264 	u32 lpr0, lpr1 = 0;
265 	u32 saved_lpr0, saved_lpr1 = 0;
266 
267 	if (at91_ramc_base[1]) {
268 		saved_lpr1 = at91_ramc_read(1, AT91_DDRSDRC_LPR);
269 		lpr1 = saved_lpr1 & ~AT91_DDRSDRC_LPCB;
270 		lpr1 |= AT91_DDRSDRC_LPCB_SELF_REFRESH;
271 	}
272 
273 	saved_lpr0 = at91_ramc_read(0, AT91_DDRSDRC_LPR);
274 	lpr0 = saved_lpr0 & ~AT91_DDRSDRC_LPCB;
275 	lpr0 |= AT91_DDRSDRC_LPCB_SELF_REFRESH;
276 
277 	/* self-refresh mode now */
278 	at91_ramc_write(0, AT91_DDRSDRC_LPR, lpr0);
279 	if (at91_ramc_base[1])
280 		at91_ramc_write(1, AT91_DDRSDRC_LPR, lpr1);
281 
282 	cpu_do_idle();
283 
284 	at91_ramc_write(0, AT91_DDRSDRC_LPR, saved_lpr0);
285 	if (at91_ramc_base[1])
286 		at91_ramc_write(1, AT91_DDRSDRC_LPR, saved_lpr1);
287 }
288 
sama5d3_ddr_standby(void)289 static void sama5d3_ddr_standby(void)
290 {
291 	u32 lpr0;
292 	u32 saved_lpr0;
293 
294 	saved_lpr0 = at91_ramc_read(0, AT91_DDRSDRC_LPR);
295 	lpr0 = saved_lpr0 & ~AT91_DDRSDRC_LPCB;
296 	lpr0 |= AT91_DDRSDRC_LPCB_POWER_DOWN;
297 
298 	at91_ramc_write(0, AT91_DDRSDRC_LPR, lpr0);
299 
300 	cpu_do_idle();
301 
302 	at91_ramc_write(0, AT91_DDRSDRC_LPR, saved_lpr0);
303 }
304 
305 /* We manage both DDRAM/SDRAM controllers, we need more than one value to
306  * remember.
307  */
at91sam9_sdram_standby(void)308 static void at91sam9_sdram_standby(void)
309 {
310 	u32 lpr0, lpr1 = 0;
311 	u32 saved_lpr0, saved_lpr1 = 0;
312 
313 	if (at91_ramc_base[1]) {
314 		saved_lpr1 = at91_ramc_read(1, AT91_SDRAMC_LPR);
315 		lpr1 = saved_lpr1 & ~AT91_SDRAMC_LPCB;
316 		lpr1 |= AT91_SDRAMC_LPCB_SELF_REFRESH;
317 	}
318 
319 	saved_lpr0 = at91_ramc_read(0, AT91_SDRAMC_LPR);
320 	lpr0 = saved_lpr0 & ~AT91_SDRAMC_LPCB;
321 	lpr0 |= AT91_SDRAMC_LPCB_SELF_REFRESH;
322 
323 	/* self-refresh mode now */
324 	at91_ramc_write(0, AT91_SDRAMC_LPR, lpr0);
325 	if (at91_ramc_base[1])
326 		at91_ramc_write(1, AT91_SDRAMC_LPR, lpr1);
327 
328 	cpu_do_idle();
329 
330 	at91_ramc_write(0, AT91_SDRAMC_LPR, saved_lpr0);
331 	if (at91_ramc_base[1])
332 		at91_ramc_write(1, AT91_SDRAMC_LPR, saved_lpr1);
333 }
334 
335 static const struct of_device_id ramc_ids[] __initconst = {
336 	{ .compatible = "atmel,at91rm9200-sdramc", .data = at91rm9200_standby },
337 	{ .compatible = "atmel,at91sam9260-sdramc", .data = at91sam9_sdram_standby },
338 	{ .compatible = "atmel,at91sam9g45-ddramc", .data = at91_ddr_standby },
339 	{ .compatible = "atmel,sama5d3-ddramc", .data = sama5d3_ddr_standby },
340 	{ /*sentinel*/ }
341 };
342 
at91_dt_ramc(void)343 static __init void at91_dt_ramc(void)
344 {
345 	struct device_node *np;
346 	const struct of_device_id *of_id;
347 	int idx = 0;
348 	const void *standby = NULL;
349 
350 	for_each_matching_node_and_match(np, ramc_ids, &of_id) {
351 		at91_ramc_base[idx] = of_iomap(np, 0);
352 		if (!at91_ramc_base[idx])
353 			panic(pr_fmt("unable to map ramc[%d] cpu registers\n"), idx);
354 
355 		if (!standby)
356 			standby = of_id->data;
357 
358 		idx++;
359 	}
360 
361 	if (!idx)
362 		panic(pr_fmt("unable to find compatible ram controller node in dtb\n"));
363 
364 	if (!standby) {
365 		pr_warn("ramc no standby function available\n");
366 		return;
367 	}
368 
369 	at91_pm_set_standby(standby);
370 }
371 
at91_pm_sram_init(void)372 static void __init at91_pm_sram_init(void)
373 {
374 	struct gen_pool *sram_pool;
375 	phys_addr_t sram_pbase;
376 	unsigned long sram_base;
377 	struct device_node *node;
378 	struct platform_device *pdev = NULL;
379 
380 	for_each_compatible_node(node, NULL, "mmio-sram") {
381 		pdev = of_find_device_by_node(node);
382 		if (pdev) {
383 			of_node_put(node);
384 			break;
385 		}
386 	}
387 
388 	if (!pdev) {
389 		pr_warn("%s: failed to find sram device!\n", __func__);
390 		return;
391 	}
392 
393 	sram_pool = gen_pool_get(&pdev->dev, NULL);
394 	if (!sram_pool) {
395 		pr_warn("%s: sram pool unavailable!\n", __func__);
396 		goto out_put_device;
397 	}
398 
399 	sram_base = gen_pool_alloc(sram_pool, at91_pm_suspend_in_sram_sz);
400 	if (!sram_base) {
401 		pr_warn("%s: unable to alloc sram!\n", __func__);
402 		goto out_put_device;
403 	}
404 
405 	sram_pbase = gen_pool_virt_to_phys(sram_pool, sram_base);
406 	at91_suspend_sram_fn = __arm_ioremap_exec(sram_pbase,
407 					at91_pm_suspend_in_sram_sz, false);
408 	if (!at91_suspend_sram_fn) {
409 		pr_warn("SRAM: Could not map\n");
410 		goto out_put_device;
411 	}
412 
413 	/* Copy the pm suspend handler to SRAM */
414 	at91_suspend_sram_fn = fncpy(at91_suspend_sram_fn,
415 			&at91_pm_suspend_in_sram, at91_pm_suspend_in_sram_sz);
416 	return;
417 
418 out_put_device:
419 	put_device(&pdev->dev);
420 	return;
421 }
422 
at91_pm_init(void)423 static void __init at91_pm_init(void)
424 {
425 	at91_pm_sram_init();
426 
427 	if (at91_cpuidle_device.dev.platform_data)
428 		platform_device_register(&at91_cpuidle_device);
429 
430 	if (at91_suspend_sram_fn)
431 		suspend_set_ops(&at91_pm_ops);
432 	else
433 		pr_info("AT91: PM not supported, due to no SRAM allocated\n");
434 }
435 
at91rm9200_pm_init(void)436 void __init at91rm9200_pm_init(void)
437 {
438 	at91_dt_ramc();
439 
440 	/*
441 	 * AT91RM9200 SDRAM low-power mode cannot be used with self-refresh.
442 	 */
443 	at91_ramc_write(0, AT91_MC_SDRAMC_LPR, 0);
444 
445 	at91_pm_data.uhp_udp_mask = AT91RM9200_PMC_UHP | AT91RM9200_PMC_UDP;
446 	at91_pm_data.memctrl = AT91_MEMCTRL_MC;
447 
448 	at91_pm_init();
449 }
450 
at91sam9260_pm_init(void)451 void __init at91sam9260_pm_init(void)
452 {
453 	at91_dt_ramc();
454 	at91_pm_data.memctrl = AT91_MEMCTRL_SDRAMC;
455 	at91_pm_data.uhp_udp_mask = AT91SAM926x_PMC_UHP | AT91SAM926x_PMC_UDP;
456 	return at91_pm_init();
457 }
458 
at91sam9g45_pm_init(void)459 void __init at91sam9g45_pm_init(void)
460 {
461 	at91_dt_ramc();
462 	at91_pm_data.uhp_udp_mask = AT91SAM926x_PMC_UHP;
463 	at91_pm_data.memctrl = AT91_MEMCTRL_DDRSDR;
464 	return at91_pm_init();
465 }
466 
at91sam9x5_pm_init(void)467 void __init at91sam9x5_pm_init(void)
468 {
469 	at91_dt_ramc();
470 	at91_pm_data.uhp_udp_mask = AT91SAM926x_PMC_UHP | AT91SAM926x_PMC_UDP;
471 	at91_pm_data.memctrl = AT91_MEMCTRL_DDRSDR;
472 	return at91_pm_init();
473 }
474