Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 1 | /* |
Andrew Victor | 9d04126 | 2007-02-05 11:42:07 +0100 | [diff] [blame] | 2 | * arch/arm/mach-at91/pm.c |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 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 | |
Alexandre Belloni | d2e4679 | 2015-01-15 15:59:25 +0100 | [diff] [blame] | 13 | #include <linux/genalloc.h> |
Alexandre Belloni | 9824c44 | 2017-01-31 13:49:24 +0100 | [diff] [blame] | 14 | #include <linux/io.h> |
| 15 | #include <linux/of_address.h> |
Alexandre Belloni | f5598d3 | 2015-01-15 15:59:24 +0100 | [diff] [blame] | 16 | #include <linux/of.h> |
Alexandre Belloni | d2e4679 | 2015-01-15 15:59:25 +0100 | [diff] [blame] | 17 | #include <linux/of_platform.h> |
Alexandre Belloni | 9824c44 | 2017-01-31 13:49:24 +0100 | [diff] [blame] | 18 | #include <linux/suspend.h> |
| 19 | |
Boris BREZILLON | 2edb90a | 2013-10-11 09:37:45 +0200 | [diff] [blame] | 20 | #include <linux/clk/at91_pmc.h> |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 21 | |
Wenyou Yang | 385acc0 | 2015-03-09 11:54:26 +0800 | [diff] [blame] | 22 | #include <asm/cacheflush.h> |
Alexandre Belloni | 9824c44 | 2017-01-31 13:49:24 +0100 | [diff] [blame] | 23 | #include <asm/fncpy.h> |
Alexandre Belloni | fbc7edc | 2015-09-30 01:58:40 +0200 | [diff] [blame] | 24 | #include <asm/system_misc.h> |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 25 | |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 26 | #include "generic.h" |
Albin Tonnerre | 1ea60cf | 2009-11-01 18:40:50 +0100 | [diff] [blame] | 27 | #include "pm.h" |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 28 | |
Alexandre Belloni | 23b8408 | 2015-03-13 22:57:23 +0100 | [diff] [blame] | 29 | /* |
| 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 Desroches | 8423536 | 2015-12-01 11:44:40 +0100 | [diff] [blame] | 35 | #ifdef CONFIG_PINCTRL_AT91 |
Alexandre Belloni | 23b8408 | 2015-03-13 22:57:23 +0100 | [diff] [blame] | 36 | extern void at91_pinctrl_gpio_suspend(void); |
| 37 | extern void at91_pinctrl_gpio_resume(void); |
Ludovic Desroches | 8423536 | 2015-12-01 11:44:40 +0100 | [diff] [blame] | 38 | #endif |
Alexandre Belloni | 23b8408 | 2015-03-13 22:57:23 +0100 | [diff] [blame] | 39 | |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 40 | static struct at91_pm_data pm_data; |
Alexandre Belloni | f5598d3 | 2015-01-15 15:59:24 +0100 | [diff] [blame] | 41 | |
Alexandre Belloni | 4d767bc | 2017-01-31 14:08:47 +0100 | [diff] [blame] | 42 | #define at91_ramc_read(id, field) \ |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 43 | __raw_readl(pm_data.ramc[id] + field) |
Alexandre Belloni | 4d767bc | 2017-01-31 14:08:47 +0100 | [diff] [blame] | 44 | |
| 45 | #define at91_ramc_write(id, field, value) \ |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 46 | __raw_writel(value, pm_data.ramc[id] + field) |
Daniel Lezcano | 5ad945e | 2013-09-22 22:29:57 +0200 | [diff] [blame] | 47 | |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 48 | static 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 | |
| 62 | static suspend_state_t target_state; |
| 63 | |
| 64 | /* |
| 65 | * Called after processes are frozen, but before we shutdown devices. |
| 66 | */ |
Rafael J. Wysocki | c697eec | 2008-01-08 00:04:17 +0100 | [diff] [blame] | 67 | static int at91_pm_begin(suspend_state_t state) |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 68 | { |
| 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 | */ |
| 77 | static int at91_pm_verify_clocks(void) |
| 78 | { |
| 79 | unsigned long scsr; |
| 80 | int i; |
| 81 | |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 82 | scsr = readl(pm_data.pmc + AT91_PMC_SCSR); |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 83 | |
| 84 | /* USB must not be using PLLB */ |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 85 | if ((scsr & pm_data.uhp_udp_mask) != 0) { |
Alexandre Belloni | f5598d3 | 2015-01-15 15:59:24 +0100 | [diff] [blame] | 86 | pr_err("AT91: PM - Suspend-to-RAM with USB still active\n"); |
| 87 | return 0; |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 88 | } |
| 89 | |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 90 | /* 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 Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 96 | css = readl(pm_data.pmc + AT91_PMC_PCKR(i)) & AT91_PMC_CSS; |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 97 | if (css != AT91_PMC_CSS_SLOW) { |
Ryan Mallon | 7f96b1c | 2009-04-01 20:33:30 +0100 | [diff] [blame] | 98 | pr_err("AT91: PM - Suspend-to-RAM with PCK%d src %d\n", i, css); |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 99 | return 0; |
| 100 | } |
| 101 | } |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 102 | |
| 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 | */ |
| 116 | int at91_suspend_entering_slow_clock(void) |
| 117 | { |
| 118 | return (target_state == PM_SUSPEND_MEM); |
| 119 | } |
| 120 | EXPORT_SYMBOL(at91_suspend_entering_slow_clock); |
| 121 | |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 122 | static void (*at91_suspend_sram_fn)(struct at91_pm_data *); |
| 123 | extern void at91_pm_suspend_in_sram(struct at91_pm_data *pm_data); |
Wenyou Yang | 5726a8b | 2015-03-09 11:51:09 +0800 | [diff] [blame] | 124 | extern u32 at91_pm_suspend_in_sram_sz; |
Andrew Victor | f5d0f45 | 2008-04-02 21:50:16 +0100 | [diff] [blame] | 125 | |
Wenyou Yang | 23be4be | 2015-03-09 11:49:46 +0800 | [diff] [blame] | 126 | static void at91_pm_suspend(suspend_state_t state) |
| 127 | { |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 128 | pm_data.mode = (state == PM_SUSPEND_MEM) ? AT91_PM_SLOW_CLOCK : 0; |
Wenyou Yang | 23be4be | 2015-03-09 11:49:46 +0800 | [diff] [blame] | 129 | |
Wenyou Yang | 385acc0 | 2015-03-09 11:54:26 +0800 | [diff] [blame] | 130 | flush_cache_all(); |
| 131 | outer_disable(); |
| 132 | |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 133 | at91_suspend_sram_fn(&pm_data); |
Wenyou Yang | 385acc0 | 2015-03-09 11:54:26 +0800 | [diff] [blame] | 134 | |
| 135 | outer_resume(); |
Wenyou Yang | 23be4be | 2015-03-09 11:49:46 +0800 | [diff] [blame] | 136 | } |
| 137 | |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 138 | static int at91_pm_enter(suspend_state_t state) |
| 139 | { |
Ludovic Desroches | 8423536 | 2015-12-01 11:44:40 +0100 | [diff] [blame] | 140 | #ifdef CONFIG_PINCTRL_AT91 |
Arnd Bergmann | 85c4b31 | 2014-12-02 12:08:27 +0100 | [diff] [blame] | 141 | at91_pinctrl_gpio_suspend(); |
Ludovic Desroches | 8423536 | 2015-12-01 11:44:40 +0100 | [diff] [blame] | 142 | #endif |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 143 | switch (state) { |
Wenyou Yang | 23be4be | 2015-03-09 11:49:46 +0800 | [diff] [blame] | 144 | /* |
| 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 Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 150 | /* |
Wenyou Yang | 23be4be | 2015-03-09 11:49:46 +0800 | [diff] [blame] | 151 | * Ensure that clocks are in a valid state. |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 152 | */ |
Wenyou Yang | 23be4be | 2015-03-09 11:49:46 +0800 | [diff] [blame] | 153 | if (!at91_pm_verify_clocks()) |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 154 | goto error; |
Wenyou Yang | 23be4be | 2015-03-09 11:49:46 +0800 | [diff] [blame] | 155 | |
| 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 Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 177 | } |
| 178 | |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 179 | error: |
| 180 | target_state = PM_SUSPEND_ON; |
Boris BREZILLON | 0719260 | 2014-07-10 19:14:20 +0200 | [diff] [blame] | 181 | |
Ludovic Desroches | 8423536 | 2015-12-01 11:44:40 +0100 | [diff] [blame] | 182 | #ifdef CONFIG_PINCTRL_AT91 |
Arnd Bergmann | 85c4b31 | 2014-12-02 12:08:27 +0100 | [diff] [blame] | 183 | at91_pinctrl_gpio_resume(); |
Ludovic Desroches | 8423536 | 2015-12-01 11:44:40 +0100 | [diff] [blame] | 184 | #endif |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 185 | return 0; |
| 186 | } |
| 187 | |
Rafael J. Wysocki | c697eec | 2008-01-08 00:04:17 +0100 | [diff] [blame] | 188 | /* |
| 189 | * Called right prior to thawing processes. |
| 190 | */ |
| 191 | static void at91_pm_end(void) |
| 192 | { |
| 193 | target_state = PM_SUSPEND_ON; |
| 194 | } |
| 195 | |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 196 | |
Lionel Debroux | 2f55ac0 | 2010-11-16 14:14:02 +0100 | [diff] [blame] | 197 | static const struct platform_suspend_ops at91_pm_ops = { |
Rafael J. Wysocki | c697eec | 2008-01-08 00:04:17 +0100 | [diff] [blame] | 198 | .valid = at91_pm_valid_state, |
| 199 | .begin = at91_pm_begin, |
| 200 | .enter = at91_pm_enter, |
| 201 | .end = at91_pm_end, |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 202 | }; |
| 203 | |
Daniel Lezcano | 5ad945e | 2013-09-22 22:29:57 +0200 | [diff] [blame] | 204 | static struct platform_device at91_cpuidle_device = { |
| 205 | .name = "cpuidle-at91", |
| 206 | }; |
| 207 | |
Wenyou Yang | 047794e | 2015-03-04 09:44:45 +0800 | [diff] [blame] | 208 | static void at91_pm_set_standby(void (*at91_standby)(void)) |
Daniel Lezcano | 5ad945e | 2013-09-22 22:29:57 +0200 | [diff] [blame] | 209 | { |
Wenyou Yang | e32d995 | 2015-03-09 11:51:49 +0800 | [diff] [blame] | 210 | if (at91_standby) |
Daniel Lezcano | 5ad945e | 2013-09-22 22:29:57 +0200 | [diff] [blame] | 211 | at91_cpuidle_device.dev.platform_data = at91_standby; |
Daniel Lezcano | 5ad945e | 2013-09-22 22:29:57 +0200 | [diff] [blame] | 212 | } |
| 213 | |
Alexandre Belloni | a18d069 | 2015-03-16 23:44:37 +0100 | [diff] [blame] | 214 | /* |
| 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 | */ |
| 223 | static void at91rm9200_standby(void) |
| 224 | { |
Alexandre Belloni | d7d45f2 | 2015-03-16 15:14:50 +0100 | [diff] [blame] | 225 | u32 lpr = at91_ramc_read(0, AT91_MC_SDRAMC_LPR); |
Alexandre Belloni | a18d069 | 2015-03-16 23:44:37 +0100 | [diff] [blame] | 226 | |
| 227 | asm volatile( |
| 228 | "b 1f\n\t" |
| 229 | ".align 5\n\t" |
| 230 | "1: mcr p15, 0, %0, c7, c10, 4\n\t" |
| 231 | " str %0, [%1, %2]\n\t" |
| 232 | " str %3, [%1, %4]\n\t" |
| 233 | " mcr p15, 0, %0, c7, c0, 4\n\t" |
| 234 | " str %5, [%1, %2]" |
| 235 | : |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 236 | : "r" (0), "r" (pm_data.ramc[0]), "r" (AT91_MC_SDRAMC_LPR), |
Alexandre Belloni | d7d45f2 | 2015-03-16 15:14:50 +0100 | [diff] [blame] | 237 | "r" (1), "r" (AT91_MC_SDRAMC_SRR), |
Alexandre Belloni | a18d069 | 2015-03-16 23:44:37 +0100 | [diff] [blame] | 238 | "r" (lpr)); |
| 239 | } |
| 240 | |
| 241 | /* We manage both DDRAM/SDRAM controllers, we need more than one value to |
| 242 | * remember. |
| 243 | */ |
| 244 | static void at91_ddr_standby(void) |
| 245 | { |
| 246 | /* Those two values allow us to delay self-refresh activation |
| 247 | * to the maximum. */ |
| 248 | u32 lpr0, lpr1 = 0; |
| 249 | u32 saved_lpr0, saved_lpr1 = 0; |
| 250 | |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 251 | if (pm_data.ramc[1]) { |
Alexandre Belloni | a18d069 | 2015-03-16 23:44:37 +0100 | [diff] [blame] | 252 | saved_lpr1 = at91_ramc_read(1, AT91_DDRSDRC_LPR); |
| 253 | lpr1 = saved_lpr1 & ~AT91_DDRSDRC_LPCB; |
| 254 | lpr1 |= AT91_DDRSDRC_LPCB_SELF_REFRESH; |
| 255 | } |
| 256 | |
| 257 | saved_lpr0 = at91_ramc_read(0, AT91_DDRSDRC_LPR); |
| 258 | lpr0 = saved_lpr0 & ~AT91_DDRSDRC_LPCB; |
| 259 | lpr0 |= AT91_DDRSDRC_LPCB_SELF_REFRESH; |
| 260 | |
| 261 | /* self-refresh mode now */ |
| 262 | at91_ramc_write(0, AT91_DDRSDRC_LPR, lpr0); |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 263 | if (pm_data.ramc[1]) |
Alexandre Belloni | a18d069 | 2015-03-16 23:44:37 +0100 | [diff] [blame] | 264 | at91_ramc_write(1, AT91_DDRSDRC_LPR, lpr1); |
| 265 | |
| 266 | cpu_do_idle(); |
| 267 | |
| 268 | at91_ramc_write(0, AT91_DDRSDRC_LPR, saved_lpr0); |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 269 | if (pm_data.ramc[1]) |
Alexandre Belloni | a18d069 | 2015-03-16 23:44:37 +0100 | [diff] [blame] | 270 | at91_ramc_write(1, AT91_DDRSDRC_LPR, saved_lpr1); |
| 271 | } |
| 272 | |
Nicolas Ferre | 60b89f1 | 2017-03-14 09:38:04 +0100 | [diff] [blame] | 273 | static void sama5d3_ddr_standby(void) |
| 274 | { |
| 275 | u32 lpr0; |
| 276 | u32 saved_lpr0; |
| 277 | |
| 278 | saved_lpr0 = at91_ramc_read(0, AT91_DDRSDRC_LPR); |
| 279 | lpr0 = saved_lpr0 & ~AT91_DDRSDRC_LPCB; |
| 280 | lpr0 |= AT91_DDRSDRC_LPCB_POWER_DOWN; |
| 281 | |
| 282 | at91_ramc_write(0, AT91_DDRSDRC_LPR, lpr0); |
| 283 | |
| 284 | cpu_do_idle(); |
| 285 | |
| 286 | at91_ramc_write(0, AT91_DDRSDRC_LPR, saved_lpr0); |
| 287 | } |
| 288 | |
Alexandre Belloni | a18d069 | 2015-03-16 23:44:37 +0100 | [diff] [blame] | 289 | /* We manage both DDRAM/SDRAM controllers, we need more than one value to |
| 290 | * remember. |
| 291 | */ |
| 292 | static void at91sam9_sdram_standby(void) |
| 293 | { |
| 294 | u32 lpr0, lpr1 = 0; |
| 295 | u32 saved_lpr0, saved_lpr1 = 0; |
| 296 | |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 297 | if (pm_data.ramc[1]) { |
Alexandre Belloni | a18d069 | 2015-03-16 23:44:37 +0100 | [diff] [blame] | 298 | saved_lpr1 = at91_ramc_read(1, AT91_SDRAMC_LPR); |
| 299 | lpr1 = saved_lpr1 & ~AT91_SDRAMC_LPCB; |
| 300 | lpr1 |= AT91_SDRAMC_LPCB_SELF_REFRESH; |
| 301 | } |
| 302 | |
| 303 | saved_lpr0 = at91_ramc_read(0, AT91_SDRAMC_LPR); |
| 304 | lpr0 = saved_lpr0 & ~AT91_SDRAMC_LPCB; |
| 305 | lpr0 |= AT91_SDRAMC_LPCB_SELF_REFRESH; |
| 306 | |
| 307 | /* self-refresh mode now */ |
| 308 | at91_ramc_write(0, AT91_SDRAMC_LPR, lpr0); |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 309 | if (pm_data.ramc[1]) |
Alexandre Belloni | a18d069 | 2015-03-16 23:44:37 +0100 | [diff] [blame] | 310 | at91_ramc_write(1, AT91_SDRAMC_LPR, lpr1); |
| 311 | |
| 312 | cpu_do_idle(); |
| 313 | |
| 314 | at91_ramc_write(0, AT91_SDRAMC_LPR, saved_lpr0); |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 315 | if (pm_data.ramc[1]) |
Alexandre Belloni | a18d069 | 2015-03-16 23:44:37 +0100 | [diff] [blame] | 316 | at91_ramc_write(1, AT91_SDRAMC_LPR, saved_lpr1); |
| 317 | } |
| 318 | |
Nicolas Pitre | 19c233b | 2015-07-27 18:27:52 -0400 | [diff] [blame] | 319 | static const struct of_device_id const ramc_ids[] __initconst = { |
Alexandre Belloni | 827de1f | 2015-01-27 17:38:46 +0100 | [diff] [blame] | 320 | { .compatible = "atmel,at91rm9200-sdramc", .data = at91rm9200_standby }, |
| 321 | { .compatible = "atmel,at91sam9260-sdramc", .data = at91sam9_sdram_standby }, |
| 322 | { .compatible = "atmel,at91sam9g45-ddramc", .data = at91_ddr_standby }, |
Nicolas Ferre | 60b89f1 | 2017-03-14 09:38:04 +0100 | [diff] [blame] | 323 | { .compatible = "atmel,sama5d3-ddramc", .data = sama5d3_ddr_standby }, |
Alexandre Belloni | 827de1f | 2015-01-27 17:38:46 +0100 | [diff] [blame] | 324 | { /*sentinel*/ } |
| 325 | }; |
| 326 | |
Uwe Kleine-König | 444d2d3 | 2015-02-18 21:19:56 +0100 | [diff] [blame] | 327 | static __init void at91_dt_ramc(void) |
Alexandre Belloni | 827de1f | 2015-01-27 17:38:46 +0100 | [diff] [blame] | 328 | { |
| 329 | struct device_node *np; |
| 330 | const struct of_device_id *of_id; |
| 331 | int idx = 0; |
| 332 | const void *standby = NULL; |
| 333 | |
| 334 | for_each_matching_node_and_match(np, ramc_ids, &of_id) { |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 335 | pm_data.ramc[idx] = of_iomap(np, 0); |
| 336 | if (!pm_data.ramc[idx]) |
Alexandre Belloni | 827de1f | 2015-01-27 17:38:46 +0100 | [diff] [blame] | 337 | panic(pr_fmt("unable to map ramc[%d] cpu registers\n"), idx); |
| 338 | |
| 339 | if (!standby) |
| 340 | standby = of_id->data; |
| 341 | |
| 342 | idx++; |
| 343 | } |
| 344 | |
| 345 | if (!idx) |
| 346 | panic(pr_fmt("unable to find compatible ram controller node in dtb\n")); |
| 347 | |
| 348 | if (!standby) { |
| 349 | pr_warn("ramc no standby function available\n"); |
| 350 | return; |
| 351 | } |
| 352 | |
| 353 | at91_pm_set_standby(standby); |
| 354 | } |
| 355 | |
Ben Dooks | ab6778e | 2016-06-17 16:34:18 +0100 | [diff] [blame] | 356 | static void at91rm9200_idle(void) |
Alexandre Belloni | fbc7edc | 2015-09-30 01:58:40 +0200 | [diff] [blame] | 357 | { |
| 358 | /* |
| 359 | * Disable the processor clock. The processor will be automatically |
| 360 | * re-enabled by an interrupt or by a reset. |
| 361 | */ |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 362 | writel(AT91_PMC_PCK, pm_data.pmc + AT91_PMC_SCDR); |
Alexandre Belloni | fbc7edc | 2015-09-30 01:58:40 +0200 | [diff] [blame] | 363 | } |
| 364 | |
Ben Dooks | ab6778e | 2016-06-17 16:34:18 +0100 | [diff] [blame] | 365 | static void at91sam9_idle(void) |
Alexandre Belloni | fbc7edc | 2015-09-30 01:58:40 +0200 | [diff] [blame] | 366 | { |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 367 | writel(AT91_PMC_PCK, pm_data.pmc + AT91_PMC_SCDR); |
Alexandre Belloni | fbc7edc | 2015-09-30 01:58:40 +0200 | [diff] [blame] | 368 | cpu_do_idle(); |
| 369 | } |
| 370 | |
Alexandre Belloni | d2e4679 | 2015-01-15 15:59:25 +0100 | [diff] [blame] | 371 | static void __init at91_pm_sram_init(void) |
| 372 | { |
| 373 | struct gen_pool *sram_pool; |
| 374 | phys_addr_t sram_pbase; |
| 375 | unsigned long sram_base; |
| 376 | struct device_node *node; |
Alexandre Belloni | 4a031f7 | 2015-03-03 08:38:07 +0100 | [diff] [blame] | 377 | struct platform_device *pdev = NULL; |
Alexandre Belloni | d2e4679 | 2015-01-15 15:59:25 +0100 | [diff] [blame] | 378 | |
Alexandre Belloni | 4a031f7 | 2015-03-03 08:38:07 +0100 | [diff] [blame] | 379 | for_each_compatible_node(node, NULL, "mmio-sram") { |
| 380 | pdev = of_find_device_by_node(node); |
| 381 | if (pdev) { |
| 382 | of_node_put(node); |
| 383 | break; |
| 384 | } |
Alexandre Belloni | d2e4679 | 2015-01-15 15:59:25 +0100 | [diff] [blame] | 385 | } |
| 386 | |
Alexandre Belloni | d2e4679 | 2015-01-15 15:59:25 +0100 | [diff] [blame] | 387 | if (!pdev) { |
| 388 | pr_warn("%s: failed to find sram device!\n", __func__); |
Alexandre Belloni | 4a031f7 | 2015-03-03 08:38:07 +0100 | [diff] [blame] | 389 | return; |
Alexandre Belloni | d2e4679 | 2015-01-15 15:59:25 +0100 | [diff] [blame] | 390 | } |
| 391 | |
Vladimir Zapolskiy | 7385817 | 2015-09-04 15:47:43 -0700 | [diff] [blame] | 392 | sram_pool = gen_pool_get(&pdev->dev, NULL); |
Alexandre Belloni | d2e4679 | 2015-01-15 15:59:25 +0100 | [diff] [blame] | 393 | if (!sram_pool) { |
| 394 | pr_warn("%s: sram pool unavailable!\n", __func__); |
Alexandre Belloni | 4a031f7 | 2015-03-03 08:38:07 +0100 | [diff] [blame] | 395 | return; |
Alexandre Belloni | d2e4679 | 2015-01-15 15:59:25 +0100 | [diff] [blame] | 396 | } |
| 397 | |
Wenyou Yang | 5726a8b | 2015-03-09 11:51:09 +0800 | [diff] [blame] | 398 | sram_base = gen_pool_alloc(sram_pool, at91_pm_suspend_in_sram_sz); |
Alexandre Belloni | d2e4679 | 2015-01-15 15:59:25 +0100 | [diff] [blame] | 399 | if (!sram_base) { |
Wenyou Yang | 5726a8b | 2015-03-09 11:51:09 +0800 | [diff] [blame] | 400 | pr_warn("%s: unable to alloc sram!\n", __func__); |
Alexandre Belloni | 4a031f7 | 2015-03-03 08:38:07 +0100 | [diff] [blame] | 401 | return; |
Alexandre Belloni | d2e4679 | 2015-01-15 15:59:25 +0100 | [diff] [blame] | 402 | } |
| 403 | |
| 404 | sram_pbase = gen_pool_virt_to_phys(sram_pool, sram_base); |
Wenyou Yang | 5726a8b | 2015-03-09 11:51:09 +0800 | [diff] [blame] | 405 | at91_suspend_sram_fn = __arm_ioremap_exec(sram_pbase, |
| 406 | at91_pm_suspend_in_sram_sz, false); |
| 407 | if (!at91_suspend_sram_fn) { |
Wenyou Yang | d94e688 | 2015-03-09 11:49:01 +0800 | [diff] [blame] | 408 | pr_warn("SRAM: Could not map\n"); |
| 409 | return; |
| 410 | } |
| 411 | |
Wenyou Yang | 5726a8b | 2015-03-09 11:51:09 +0800 | [diff] [blame] | 412 | /* Copy the pm suspend handler to SRAM */ |
| 413 | at91_suspend_sram_fn = fncpy(at91_suspend_sram_fn, |
| 414 | &at91_pm_suspend_in_sram, at91_pm_suspend_in_sram_sz); |
Alexandre Belloni | d2e4679 | 2015-01-15 15:59:25 +0100 | [diff] [blame] | 415 | } |
Alexandre Belloni | d2e4679 | 2015-01-15 15:59:25 +0100 | [diff] [blame] | 416 | |
Alexandre Belloni | 5737b73 | 2015-09-30 01:31:34 +0200 | [diff] [blame] | 417 | static const struct of_device_id atmel_pmc_ids[] __initconst = { |
| 418 | { .compatible = "atmel,at91rm9200-pmc" }, |
| 419 | { .compatible = "atmel,at91sam9260-pmc" }, |
| 420 | { .compatible = "atmel,at91sam9g45-pmc" }, |
| 421 | { .compatible = "atmel,at91sam9n12-pmc" }, |
| 422 | { .compatible = "atmel,at91sam9x5-pmc" }, |
| 423 | { .compatible = "atmel,sama5d3-pmc" }, |
| 424 | { .compatible = "atmel,sama5d2-pmc" }, |
| 425 | { /* sentinel */ }, |
| 426 | }; |
| 427 | |
Alexandre Belloni | fbc7edc | 2015-09-30 01:58:40 +0200 | [diff] [blame] | 428 | static void __init at91_pm_init(void (*pm_idle)(void)) |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 429 | { |
Alexandre Belloni | 5737b73 | 2015-09-30 01:31:34 +0200 | [diff] [blame] | 430 | struct device_node *pmc_np; |
Andrew Victor | f5d0f45 | 2008-04-02 21:50:16 +0100 | [diff] [blame] | 431 | |
Daniel Lezcano | 5ad945e | 2013-09-22 22:29:57 +0200 | [diff] [blame] | 432 | if (at91_cpuidle_device.dev.platform_data) |
| 433 | platform_device_register(&at91_cpuidle_device); |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 434 | |
Alexandre Belloni | 5737b73 | 2015-09-30 01:31:34 +0200 | [diff] [blame] | 435 | pmc_np = of_find_matching_node(NULL, atmel_pmc_ids); |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 436 | pm_data.pmc = of_iomap(pmc_np, 0); |
| 437 | if (!pm_data.pmc) { |
Alexandre Belloni | 5737b73 | 2015-09-30 01:31:34 +0200 | [diff] [blame] | 438 | pr_err("AT91: PM not supported, PMC not found\n"); |
| 439 | return; |
| 440 | } |
| 441 | |
Alexandre Belloni | fbc7edc | 2015-09-30 01:58:40 +0200 | [diff] [blame] | 442 | if (pm_idle) |
| 443 | arm_pm_idle = pm_idle; |
| 444 | |
Alexandre Belloni | 5737b73 | 2015-09-30 01:31:34 +0200 | [diff] [blame] | 445 | at91_pm_sram_init(); |
| 446 | |
Wenyou Yang | 5726a8b | 2015-03-09 11:51:09 +0800 | [diff] [blame] | 447 | if (at91_suspend_sram_fn) |
Wenyou Yang | d94e688 | 2015-03-09 11:49:01 +0800 | [diff] [blame] | 448 | suspend_set_ops(&at91_pm_ops); |
| 449 | else |
| 450 | pr_info("AT91: PM not supported, due to no SRAM allocated\n"); |
Andrew Victor | 907d6de | 2006-06-20 19:30:19 +0100 | [diff] [blame] | 451 | } |
Alexandre Belloni | 4db0ba2 | 2015-01-15 15:59:27 +0100 | [diff] [blame] | 452 | |
Nicolas Ferre | ad3fc3e | 2015-01-27 18:41:33 +0100 | [diff] [blame] | 453 | void __init at91rm9200_pm_init(void) |
Alexandre Belloni | 4db0ba2 | 2015-01-15 15:59:27 +0100 | [diff] [blame] | 454 | { |
Alexandre Belloni | 827de1f | 2015-01-27 17:38:46 +0100 | [diff] [blame] | 455 | at91_dt_ramc(); |
| 456 | |
Alexandre Belloni | 4db0ba2 | 2015-01-15 15:59:27 +0100 | [diff] [blame] | 457 | /* |
| 458 | * AT91RM9200 SDRAM low-power mode cannot be used with self-refresh. |
| 459 | */ |
Alexandre Belloni | d7d45f2 | 2015-03-16 15:14:50 +0100 | [diff] [blame] | 460 | at91_ramc_write(0, AT91_MC_SDRAMC_LPR, 0); |
Alexandre Belloni | 4db0ba2 | 2015-01-15 15:59:27 +0100 | [diff] [blame] | 461 | |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 462 | pm_data.uhp_udp_mask = AT91RM9200_PMC_UHP | AT91RM9200_PMC_UDP; |
| 463 | pm_data.memctrl = AT91_MEMCTRL_MC; |
Alexandre Belloni | 4db0ba2 | 2015-01-15 15:59:27 +0100 | [diff] [blame] | 464 | |
Alexandre Belloni | fbc7edc | 2015-09-30 01:58:40 +0200 | [diff] [blame] | 465 | at91_pm_init(at91rm9200_idle); |
Alexandre Belloni | 4db0ba2 | 2015-01-15 15:59:27 +0100 | [diff] [blame] | 466 | } |
| 467 | |
Nicolas Ferre | ad3fc3e | 2015-01-27 18:41:33 +0100 | [diff] [blame] | 468 | void __init at91sam9260_pm_init(void) |
Alexandre Belloni | 4db0ba2 | 2015-01-15 15:59:27 +0100 | [diff] [blame] | 469 | { |
Alexandre Belloni | 827de1f | 2015-01-27 17:38:46 +0100 | [diff] [blame] | 470 | at91_dt_ramc(); |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 471 | pm_data.memctrl = AT91_MEMCTRL_SDRAMC; |
| 472 | pm_data.uhp_udp_mask = AT91SAM926x_PMC_UHP | AT91SAM926x_PMC_UDP; |
Alexandre Belloni | fbc7edc | 2015-09-30 01:58:40 +0200 | [diff] [blame] | 473 | at91_pm_init(at91sam9_idle); |
Alexandre Belloni | 4db0ba2 | 2015-01-15 15:59:27 +0100 | [diff] [blame] | 474 | } |
| 475 | |
Nicolas Ferre | ad3fc3e | 2015-01-27 18:41:33 +0100 | [diff] [blame] | 476 | void __init at91sam9g45_pm_init(void) |
Alexandre Belloni | 4db0ba2 | 2015-01-15 15:59:27 +0100 | [diff] [blame] | 477 | { |
Alexandre Belloni | 827de1f | 2015-01-27 17:38:46 +0100 | [diff] [blame] | 478 | at91_dt_ramc(); |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 479 | pm_data.uhp_udp_mask = AT91SAM926x_PMC_UHP; |
| 480 | pm_data.memctrl = AT91_MEMCTRL_DDRSDR; |
Alexandre Belloni | fbc7edc | 2015-09-30 01:58:40 +0200 | [diff] [blame] | 481 | at91_pm_init(at91sam9_idle); |
Alexandre Belloni | 4db0ba2 | 2015-01-15 15:59:27 +0100 | [diff] [blame] | 482 | } |
Nicolas Ferre | bf02280 | 2015-01-22 16:54:50 +0100 | [diff] [blame] | 483 | |
Nicolas Ferre | ad3fc3e | 2015-01-27 18:41:33 +0100 | [diff] [blame] | 484 | void __init at91sam9x5_pm_init(void) |
Nicolas Ferre | bf02280 | 2015-01-22 16:54:50 +0100 | [diff] [blame] | 485 | { |
Alexandre Belloni | 827de1f | 2015-01-27 17:38:46 +0100 | [diff] [blame] | 486 | at91_dt_ramc(); |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 487 | pm_data.uhp_udp_mask = AT91SAM926x_PMC_UHP | AT91SAM926x_PMC_UDP; |
| 488 | pm_data.memctrl = AT91_MEMCTRL_DDRSDR; |
Alexandre Belloni | fbc7edc | 2015-09-30 01:58:40 +0200 | [diff] [blame] | 489 | at91_pm_init(at91sam9_idle); |
| 490 | } |
| 491 | |
| 492 | void __init sama5_pm_init(void) |
| 493 | { |
| 494 | at91_dt_ramc(); |
Alexandre Belloni | 65cc1a5 | 2017-01-31 18:12:57 +0100 | [diff] [blame^] | 495 | pm_data.uhp_udp_mask = AT91SAM926x_PMC_UHP | AT91SAM926x_PMC_UDP; |
| 496 | pm_data.memctrl = AT91_MEMCTRL_DDRSDR; |
Alexandre Belloni | fbc7edc | 2015-09-30 01:58:40 +0200 | [diff] [blame] | 497 | at91_pm_init(NULL); |
Nicolas Ferre | bf02280 | 2015-01-22 16:54:50 +0100 | [diff] [blame] | 498 | } |