blob: dd9eb3f14f45c93f60a7bcf509d094b61bf72741 [file] [log] [blame]
Shawn Guoa1f1c7e2011-09-06 15:08:40 +08001/*
Anson Huangdf595742014-01-17 11:39:05 +08002 * Copyright 2011-2014 Freescale Semiconductor, Inc.
Shawn Guoa1f1c7e2011-09-06 15:08:40 +08003 * Copyright 2011 Linaro Ltd.
4 *
5 * The code contained herein is licensed under the GNU General Public
6 * License. You may obtain a copy of the GNU General Public License
7 * Version 2 or later at the following locations:
8 *
9 * http://www.opensource.org/licenses/gpl-license.html
10 * http://www.gnu.org/copyleft/gpl.html
11 */
12
Shawn Guo9e8147b2013-09-25 23:09:36 +080013#include <linux/delay.h>
Shawn Guoa1f1c7e2011-09-06 15:08:40 +080014#include <linux/init.h>
15#include <linux/io.h>
Shawn Guod48866f2013-10-16 19:52:00 +080016#include <linux/irq.h>
Anson Huangdf595742014-01-17 11:39:05 +080017#include <linux/genalloc.h>
Shawn Guod48866f2013-10-16 19:52:00 +080018#include <linux/mfd/syscon.h>
19#include <linux/mfd/syscon/imx6q-iomuxc-gpr.h>
Shawn Guoa1f1c7e2011-09-06 15:08:40 +080020#include <linux/of.h>
Shawn Guo9e8147b2013-09-25 23:09:36 +080021#include <linux/of_address.h>
Anson Huangdf595742014-01-17 11:39:05 +080022#include <linux/of_platform.h>
Shawn Guod48866f2013-10-16 19:52:00 +080023#include <linux/regmap.h>
Shawn Guoa1f1c7e2011-09-06 15:08:40 +080024#include <linux/suspend.h>
25#include <asm/cacheflush.h>
Anson Huangdf595742014-01-17 11:39:05 +080026#include <asm/fncpy.h>
Shawn Guoa1f1c7e2011-09-06 15:08:40 +080027#include <asm/proc-fns.h>
28#include <asm/suspend.h>
Anson Huangdf595742014-01-17 11:39:05 +080029#include <asm/tlb.h>
Shawn Guoa1f1c7e2011-09-06 15:08:40 +080030
Shawn Guoe3372472012-09-13 21:01:00 +080031#include "common.h"
Shawn Guo50f2de62012-09-14 14:14:45 +080032#include "hardware.h"
Shawn Guoe3372472012-09-13 21:01:00 +080033
Shawn Guo9e8147b2013-09-25 23:09:36 +080034#define CCR 0x0
35#define BM_CCR_WB_COUNT (0x7 << 16)
36#define BM_CCR_RBC_BYPASS_COUNT (0x3f << 21)
37#define BM_CCR_RBC_EN (0x1 << 27)
38
39#define CLPCR 0x54
40#define BP_CLPCR_LPM 0
41#define BM_CLPCR_LPM (0x3 << 0)
42#define BM_CLPCR_BYPASS_PMIC_READY (0x1 << 2)
43#define BM_CLPCR_ARM_CLK_DIS_ON_LPM (0x1 << 5)
44#define BM_CLPCR_SBYOS (0x1 << 6)
45#define BM_CLPCR_DIS_REF_OSC (0x1 << 7)
46#define BM_CLPCR_VSTBY (0x1 << 8)
47#define BP_CLPCR_STBY_COUNT 9
48#define BM_CLPCR_STBY_COUNT (0x3 << 9)
49#define BM_CLPCR_COSC_PWRDOWN (0x1 << 11)
50#define BM_CLPCR_WB_PER_AT_LPM (0x1 << 16)
51#define BM_CLPCR_WB_CORE_AT_LPM (0x1 << 17)
52#define BM_CLPCR_BYP_MMDC_CH0_LPM_HS (0x1 << 19)
53#define BM_CLPCR_BYP_MMDC_CH1_LPM_HS (0x1 << 21)
54#define BM_CLPCR_MASK_CORE0_WFI (0x1 << 22)
55#define BM_CLPCR_MASK_CORE1_WFI (0x1 << 23)
56#define BM_CLPCR_MASK_CORE2_WFI (0x1 << 24)
57#define BM_CLPCR_MASK_CORE3_WFI (0x1 << 25)
58#define BM_CLPCR_MASK_SCU_IDLE (0x1 << 26)
59#define BM_CLPCR_MASK_L2CC_IDLE (0x1 << 27)
60
61#define CGPR 0x64
Fabio Estevamfa6be652014-01-07 08:00:40 -020062#define BM_CGPR_INT_MEM_CLK_LPM (0x1 << 17)
Shawn Guo9e8147b2013-09-25 23:09:36 +080063
Anson Huangdf595742014-01-17 11:39:05 +080064#define MX6Q_SUSPEND_OCRAM_SIZE 0x1000
65#define MX6_MAX_MMDC_IO_NUM 33
66
Shawn Guo9e8147b2013-09-25 23:09:36 +080067static void __iomem *ccm_base;
Anson Huangdf595742014-01-17 11:39:05 +080068static void __iomem *suspend_ocram_base;
69static void (*imx6_suspend_in_ocram_fn)(void __iomem *ocram_vbase);
70
71/*
72 * suspend ocram space layout:
73 * ======================== high address ======================
74 * .
75 * .
76 * .
77 * ^
78 * ^
79 * ^
80 * imx6_suspend code
81 * PM_INFO structure(imx6_cpu_pm_info)
82 * ======================== low address =======================
83 */
84
85struct imx6_pm_base {
86 phys_addr_t pbase;
87 void __iomem *vbase;
88};
89
90struct imx6_pm_socdata {
Anson Huangec336b22014-09-17 11:11:45 +080091 u32 ddr_type;
Anson Huangdf595742014-01-17 11:39:05 +080092 const char *mmdc_compat;
93 const char *src_compat;
94 const char *iomuxc_compat;
95 const char *gpc_compat;
Anson Huangee4a5f82015-08-05 01:48:37 +080096 const char *pl310_compat;
Anson Huangdf595742014-01-17 11:39:05 +080097 const u32 mmdc_io_num;
98 const u32 *mmdc_io_offset;
99};
100
101static const u32 imx6q_mmdc_io_offset[] __initconst = {
102 0x5ac, 0x5b4, 0x528, 0x520, /* DQM0 ~ DQM3 */
103 0x514, 0x510, 0x5bc, 0x5c4, /* DQM4 ~ DQM7 */
104 0x56c, 0x578, 0x588, 0x594, /* CAS, RAS, SDCLK_0, SDCLK_1 */
105 0x5a8, 0x5b0, 0x524, 0x51c, /* SDQS0 ~ SDQS3 */
106 0x518, 0x50c, 0x5b8, 0x5c0, /* SDQS4 ~ SDQS7 */
107 0x784, 0x788, 0x794, 0x79c, /* GPR_B0DS ~ GPR_B3DS */
108 0x7a0, 0x7a4, 0x7a8, 0x748, /* GPR_B4DS ~ GPR_B7DS */
109 0x59c, 0x5a0, 0x750, 0x774, /* SODT0, SODT1, MODE_CTL, MODE */
110 0x74c, /* GPR_ADDS */
111};
112
Anson Huangda9e9262014-01-17 11:39:06 +0800113static const u32 imx6dl_mmdc_io_offset[] __initconst = {
114 0x470, 0x474, 0x478, 0x47c, /* DQM0 ~ DQM3 */
115 0x480, 0x484, 0x488, 0x48c, /* DQM4 ~ DQM7 */
116 0x464, 0x490, 0x4ac, 0x4b0, /* CAS, RAS, SDCLK_0, SDCLK_1 */
117 0x4bc, 0x4c0, 0x4c4, 0x4c8, /* DRAM_SDQS0 ~ DRAM_SDQS3 */
118 0x4cc, 0x4d0, 0x4d4, 0x4d8, /* DRAM_SDQS4 ~ DRAM_SDQS7 */
119 0x764, 0x770, 0x778, 0x77c, /* GPR_B0DS ~ GPR_B3DS */
120 0x780, 0x784, 0x78c, 0x748, /* GPR_B4DS ~ GPR_B7DS */
121 0x4b4, 0x4b8, 0x750, 0x760, /* SODT0, SODT1, MODE_CTL, MODE */
122 0x74c, /* GPR_ADDS */
123};
124
Anson Huang64b08682014-01-17 11:39:07 +0800125static const u32 imx6sl_mmdc_io_offset[] __initconst = {
126 0x30c, 0x310, 0x314, 0x318, /* DQM0 ~ DQM3 */
127 0x5c4, 0x5cc, 0x5d4, 0x5d8, /* GPR_B0DS ~ GPR_B3DS */
128 0x300, 0x31c, 0x338, 0x5ac, /* CAS, RAS, SDCLK_0, GPR_ADDS */
129 0x33c, 0x340, 0x5b0, 0x5c0, /* SODT0, SODT1, MODE_CTL, MODE */
130 0x330, 0x334, 0x320, /* SDCKE0, SDCKE1, RESET */
131};
132
Anson Huangff843d62014-06-20 13:20:54 +0800133static const u32 imx6sx_mmdc_io_offset[] __initconst = {
134 0x2ec, 0x2f0, 0x2f4, 0x2f8, /* DQM0 ~ DQM3 */
135 0x60c, 0x610, 0x61c, 0x620, /* GPR_B0DS ~ GPR_B3DS */
136 0x300, 0x2fc, 0x32c, 0x5f4, /* CAS, RAS, SDCLK_0, GPR_ADDS */
137 0x310, 0x314, 0x5f8, 0x608, /* SODT0, SODT1, MODE_CTL, MODE */
138 0x330, 0x334, 0x338, 0x33c, /* SDQS0 ~ SDQS3 */
139};
140
Anson Huangee4a5f82015-08-05 01:48:37 +0800141static const u32 imx6ul_mmdc_io_offset[] __initconst = {
142 0x244, 0x248, 0x24c, 0x250, /* DQM0, DQM1, RAS, CAS */
143 0x27c, 0x498, 0x4a4, 0x490, /* SDCLK0, GPR_B0DS-B1DS, GPR_ADDS */
144 0x280, 0x284, 0x260, 0x264, /* SDQS0~1, SODT0, SODT1 */
145 0x494, 0x4b0, /* MODE_CTL, MODE, */
146};
147
Anson Huangdf595742014-01-17 11:39:05 +0800148static const struct imx6_pm_socdata imx6q_pm_data __initconst = {
Anson Huangdf595742014-01-17 11:39:05 +0800149 .mmdc_compat = "fsl,imx6q-mmdc",
150 .src_compat = "fsl,imx6q-src",
151 .iomuxc_compat = "fsl,imx6q-iomuxc",
152 .gpc_compat = "fsl,imx6q-gpc",
Anson Huangee4a5f82015-08-05 01:48:37 +0800153 .pl310_compat = "arm,pl310-cache",
Anson Huangdf595742014-01-17 11:39:05 +0800154 .mmdc_io_num = ARRAY_SIZE(imx6q_mmdc_io_offset),
155 .mmdc_io_offset = imx6q_mmdc_io_offset,
156};
157
Anson Huangda9e9262014-01-17 11:39:06 +0800158static const struct imx6_pm_socdata imx6dl_pm_data __initconst = {
Anson Huangda9e9262014-01-17 11:39:06 +0800159 .mmdc_compat = "fsl,imx6q-mmdc",
160 .src_compat = "fsl,imx6q-src",
161 .iomuxc_compat = "fsl,imx6dl-iomuxc",
162 .gpc_compat = "fsl,imx6q-gpc",
Anson Huangee4a5f82015-08-05 01:48:37 +0800163 .pl310_compat = "arm,pl310-cache",
Anson Huangda9e9262014-01-17 11:39:06 +0800164 .mmdc_io_num = ARRAY_SIZE(imx6dl_mmdc_io_offset),
165 .mmdc_io_offset = imx6dl_mmdc_io_offset,
166};
167
Anson Huang64b08682014-01-17 11:39:07 +0800168static const struct imx6_pm_socdata imx6sl_pm_data __initconst = {
Anson Huang64b08682014-01-17 11:39:07 +0800169 .mmdc_compat = "fsl,imx6sl-mmdc",
170 .src_compat = "fsl,imx6sl-src",
171 .iomuxc_compat = "fsl,imx6sl-iomuxc",
172 .gpc_compat = "fsl,imx6sl-gpc",
Anson Huangee4a5f82015-08-05 01:48:37 +0800173 .pl310_compat = "arm,pl310-cache",
Anson Huang64b08682014-01-17 11:39:07 +0800174 .mmdc_io_num = ARRAY_SIZE(imx6sl_mmdc_io_offset),
175 .mmdc_io_offset = imx6sl_mmdc_io_offset,
176};
177
Anson Huangff843d62014-06-20 13:20:54 +0800178static const struct imx6_pm_socdata imx6sx_pm_data __initconst = {
Anson Huangff843d62014-06-20 13:20:54 +0800179 .mmdc_compat = "fsl,imx6sx-mmdc",
180 .src_compat = "fsl,imx6sx-src",
181 .iomuxc_compat = "fsl,imx6sx-iomuxc",
182 .gpc_compat = "fsl,imx6sx-gpc",
Anson Huangee4a5f82015-08-05 01:48:37 +0800183 .pl310_compat = "arm,pl310-cache",
Anson Huangff843d62014-06-20 13:20:54 +0800184 .mmdc_io_num = ARRAY_SIZE(imx6sx_mmdc_io_offset),
185 .mmdc_io_offset = imx6sx_mmdc_io_offset,
186};
187
Anson Huangee4a5f82015-08-05 01:48:37 +0800188static const struct imx6_pm_socdata imx6ul_pm_data __initconst = {
189 .mmdc_compat = "fsl,imx6ul-mmdc",
190 .src_compat = "fsl,imx6ul-src",
191 .iomuxc_compat = "fsl,imx6ul-iomuxc",
192 .gpc_compat = "fsl,imx6ul-gpc",
193 .pl310_compat = NULL,
194 .mmdc_io_num = ARRAY_SIZE(imx6ul_mmdc_io_offset),
195 .mmdc_io_offset = imx6ul_mmdc_io_offset,
196};
197
Anson Huangdf595742014-01-17 11:39:05 +0800198/*
199 * This structure is for passing necessary data for low level ocram
200 * suspend code(arch/arm/mach-imx/suspend-imx6.S), if this struct
201 * definition is changed, the offset definition in
202 * arch/arm/mach-imx/suspend-imx6.S must be also changed accordingly,
203 * otherwise, the suspend to ocram function will be broken!
204 */
205struct imx6_cpu_pm_info {
206 phys_addr_t pbase; /* The physical address of pm_info. */
207 phys_addr_t resume_addr; /* The physical resume address for asm code */
Anson Huangec336b22014-09-17 11:11:45 +0800208 u32 ddr_type;
Anson Huangdf595742014-01-17 11:39:05 +0800209 u32 pm_info_size; /* Size of pm_info. */
210 struct imx6_pm_base mmdc_base;
211 struct imx6_pm_base src_base;
212 struct imx6_pm_base iomuxc_base;
213 struct imx6_pm_base ccm_base;
214 struct imx6_pm_base gpc_base;
215 struct imx6_pm_base l2_base;
216 u32 mmdc_io_num; /* Number of MMDC IOs which need saved/restored. */
217 u32 mmdc_io_val[MX6_MAX_MMDC_IO_NUM][2]; /* To save offset and value */
218} __aligned(8);
Shawn Guo9e8147b2013-09-25 23:09:36 +0800219
Anson Huang8765caa2016-08-29 21:49:56 +0800220void imx6_set_int_mem_clk_lpm(bool enable)
Shawn Guo9e8147b2013-09-25 23:09:36 +0800221{
222 u32 val = readl_relaxed(ccm_base + CGPR);
223
Anson Huangdfea9532014-06-23 16:42:43 +0800224 val &= ~BM_CGPR_INT_MEM_CLK_LPM;
225 if (enable)
226 val |= BM_CGPR_INT_MEM_CLK_LPM;
Shawn Guo9e8147b2013-09-25 23:09:36 +0800227 writel_relaxed(val, ccm_base + CGPR);
228}
229
Anson Huang05136f02014-12-17 12:24:12 +0800230void imx6_enable_rbc(bool enable)
Shawn Guo9e8147b2013-09-25 23:09:36 +0800231{
232 u32 val;
Shawn Guo9e8147b2013-09-25 23:09:36 +0800233
Shawn Guo9e8147b2013-09-25 23:09:36 +0800234 /*
235 * need to mask all interrupts in GPC before
236 * operating RBC configurations
237 */
238 imx_gpc_mask_all();
239
240 /* configure RBC enable bit */
241 val = readl_relaxed(ccm_base + CCR);
242 val &= ~BM_CCR_RBC_EN;
243 val |= enable ? BM_CCR_RBC_EN : 0;
244 writel_relaxed(val, ccm_base + CCR);
245
246 /* configure RBC count */
247 val = readl_relaxed(ccm_base + CCR);
248 val &= ~BM_CCR_RBC_BYPASS_COUNT;
249 val |= enable ? BM_CCR_RBC_BYPASS_COUNT : 0;
250 writel(val, ccm_base + CCR);
251
252 /*
253 * need to delay at least 2 cycles of CKIL(32K)
254 * due to hardware design requirement, which is
255 * ~61us, here we use 65us for safe
256 */
257 udelay(65);
258
259 /* restore GPC interrupt mask settings */
260 imx_gpc_restore_all();
Shawn Guo9e8147b2013-09-25 23:09:36 +0800261}
262
263static void imx6q_enable_wb(bool enable)
264{
265 u32 val;
Shawn Guo9e8147b2013-09-25 23:09:36 +0800266
267 /* configure well bias enable bit */
268 val = readl_relaxed(ccm_base + CLPCR);
269 val &= ~BM_CLPCR_WB_PER_AT_LPM;
270 val |= enable ? BM_CLPCR_WB_PER_AT_LPM : 0;
271 writel_relaxed(val, ccm_base + CLPCR);
272
273 /* configure well bias count */
274 val = readl_relaxed(ccm_base + CCR);
275 val &= ~BM_CCR_WB_COUNT;
276 val |= enable ? BM_CCR_WB_COUNT : 0;
277 writel_relaxed(val, ccm_base + CCR);
Shawn Guo9e8147b2013-09-25 23:09:36 +0800278}
279
Shawn Guo8fb76a02015-04-25 22:59:19 +0800280int imx6_set_lpm(enum mxc_cpu_pwr_mode mode)
Shawn Guo9e8147b2013-09-25 23:09:36 +0800281{
282 u32 val = readl_relaxed(ccm_base + CLPCR);
283
284 val &= ~BM_CLPCR_LPM;
285 switch (mode) {
286 case WAIT_CLOCKED:
Shawn Guo9e8147b2013-09-25 23:09:36 +0800287 break;
288 case WAIT_UNCLOCKED:
289 val |= 0x1 << BP_CLPCR_LPM;
290 val |= BM_CLPCR_ARM_CLK_DIS_ON_LPM;
291 break;
292 case STOP_POWER_ON:
293 val |= 0x2 << BP_CLPCR_LPM;
Anson Huang80c0ecd2014-06-23 16:42:44 +0800294 val &= ~BM_CLPCR_VSTBY;
295 val &= ~BM_CLPCR_SBYOS;
296 if (cpu_is_imx6sl())
297 val |= BM_CLPCR_BYPASS_PMIC_READY;
Peter Chenf5a49052016-08-09 16:24:43 +0800298 if (cpu_is_imx6sl() || cpu_is_imx6sx() || cpu_is_imx6ul())
Anson Huang80c0ecd2014-06-23 16:42:44 +0800299 val |= BM_CLPCR_BYP_MMDC_CH0_LPM_HS;
300 else
301 val |= BM_CLPCR_BYP_MMDC_CH1_LPM_HS;
Shawn Guo9e8147b2013-09-25 23:09:36 +0800302 break;
303 case WAIT_UNCLOCKED_POWER_OFF:
304 val |= 0x1 << BP_CLPCR_LPM;
305 val &= ~BM_CLPCR_VSTBY;
306 val &= ~BM_CLPCR_SBYOS;
307 break;
308 case STOP_POWER_OFF:
309 val |= 0x2 << BP_CLPCR_LPM;
310 val |= 0x3 << BP_CLPCR_STBY_COUNT;
311 val |= BM_CLPCR_VSTBY;
312 val |= BM_CLPCR_SBYOS;
Anson Huang8aade772016-08-22 23:53:25 +0800313 if (cpu_is_imx6sl() || cpu_is_imx6sx())
Shawn Guo9ba64fe2013-10-17 10:07:09 +0800314 val |= BM_CLPCR_BYPASS_PMIC_READY;
Anson Huangee4a5f82015-08-05 01:48:37 +0800315 if (cpu_is_imx6sl() || cpu_is_imx6sx() || cpu_is_imx6ul())
Shawn Guo9ba64fe2013-10-17 10:07:09 +0800316 val |= BM_CLPCR_BYP_MMDC_CH0_LPM_HS;
Anson Huangff843d62014-06-20 13:20:54 +0800317 else
Shawn Guo9ba64fe2013-10-17 10:07:09 +0800318 val |= BM_CLPCR_BYP_MMDC_CH1_LPM_HS;
Shawn Guo9e8147b2013-09-25 23:09:36 +0800319 break;
320 default:
321 return -EINVAL;
322 }
323
Shawn Guod48866f2013-10-16 19:52:00 +0800324 /*
Anson Huang48c95842013-12-24 17:19:21 -0500325 * ERR007265: CCM: When improper low-power sequence is used,
326 * the SoC enters low power mode before the ARM core executes WFI.
327 *
328 * Software workaround:
329 * 1) Software should trigger IRQ #32 (IOMUX) to be always pending
330 * by setting IOMUX_GPR1_GINT.
331 * 2) Software should then unmask IRQ #32 in GPC before setting CCM
332 * Low-Power mode.
333 * 3) Software should mask IRQ #32 right after CCM Low-Power mode
334 * is set (set bits 0-1 of CCM_CLPCR).
Marc Zyngierb923ff62015-02-23 17:45:18 +0000335 *
336 * Note that IRQ #32 is GIC SPI #0.
Shawn Guod48866f2013-10-16 19:52:00 +0800337 */
Marc Zyngierb923ff62015-02-23 17:45:18 +0000338 imx_gpc_hwirq_unmask(0);
Shawn Guo9e8147b2013-09-25 23:09:36 +0800339 writel_relaxed(val, ccm_base + CLPCR);
Marc Zyngierb923ff62015-02-23 17:45:18 +0000340 imx_gpc_hwirq_mask(0);
Shawn Guo9e8147b2013-09-25 23:09:36 +0800341
342 return 0;
343}
344
Shawn Guoa1f1c7e2011-09-06 15:08:40 +0800345static int imx6q_suspend_finish(unsigned long val)
346{
Anson Huangdf595742014-01-17 11:39:05 +0800347 if (!imx6_suspend_in_ocram_fn) {
348 cpu_do_idle();
349 } else {
350 /*
351 * call low level suspend function in ocram,
352 * as we need to float DDR IO.
353 */
354 local_flush_tlb_all();
Anson Huangee4a5f82015-08-05 01:48:37 +0800355 /* check if need to flush internal L2 cache */
356 if (!((struct imx6_cpu_pm_info *)
357 suspend_ocram_base)->l2_base.vbase)
358 flush_cache_all();
Anson Huangdf595742014-01-17 11:39:05 +0800359 imx6_suspend_in_ocram_fn(suspend_ocram_base);
360 }
361
Shawn Guoa1f1c7e2011-09-06 15:08:40 +0800362 return 0;
363}
364
365static int imx6q_pm_enter(suspend_state_t state)
366{
367 switch (state) {
Anson Huang80c0ecd2014-06-23 16:42:44 +0800368 case PM_SUSPEND_STANDBY:
Shawn Guo8fb76a02015-04-25 22:59:19 +0800369 imx6_set_lpm(STOP_POWER_ON);
Anson Huang8765caa2016-08-29 21:49:56 +0800370 imx6_set_int_mem_clk_lpm(true);
Anson Huang80c0ecd2014-06-23 16:42:44 +0800371 imx_gpc_pre_suspend(false);
372 if (cpu_is_imx6sl())
373 imx6sl_set_wait_clk(true);
374 /* Zzz ... */
375 cpu_do_idle();
376 if (cpu_is_imx6sl())
377 imx6sl_set_wait_clk(false);
378 imx_gpc_post_resume();
Shawn Guo8fb76a02015-04-25 22:59:19 +0800379 imx6_set_lpm(WAIT_CLOCKED);
Anson Huang80c0ecd2014-06-23 16:42:44 +0800380 break;
Shawn Guoa1f1c7e2011-09-06 15:08:40 +0800381 case PM_SUSPEND_MEM:
Shawn Guo8fb76a02015-04-25 22:59:19 +0800382 imx6_set_lpm(STOP_POWER_OFF);
Anson Huang8765caa2016-08-29 21:49:56 +0800383 imx6_set_int_mem_clk_lpm(false);
Shawn Guo1d674a72013-10-09 20:31:28 +0800384 imx6q_enable_wb(true);
Anson Huangdf595742014-01-17 11:39:05 +0800385 /*
386 * For suspend into ocram, asm code already take care of
387 * RBC setting, so we do NOT need to do that here.
388 */
389 if (!imx6_suspend_in_ocram_fn)
Anson Huang05136f02014-12-17 12:24:12 +0800390 imx6_enable_rbc(true);
Anson Huang80c0ecd2014-06-23 16:42:44 +0800391 imx_gpc_pre_suspend(true);
Anson Huange95dddb2013-03-20 19:39:42 -0400392 imx_anatop_pre_suspend();
Shawn Guoa1f1c7e2011-09-06 15:08:40 +0800393 /* Zzz ... */
394 cpu_suspend(0, imx6q_suspend_finish);
Shawn Guo9ba64fe2013-10-17 10:07:09 +0800395 if (cpu_is_imx6q() || cpu_is_imx6dl())
396 imx_smp_prepare();
Anson Huange95dddb2013-03-20 19:39:42 -0400397 imx_anatop_post_resume();
Shawn Guoa1f1c7e2011-09-06 15:08:40 +0800398 imx_gpc_post_resume();
Anson Huang05136f02014-12-17 12:24:12 +0800399 imx6_enable_rbc(false);
Shawn Guo1d674a72013-10-09 20:31:28 +0800400 imx6q_enable_wb(false);
Anson Huang8765caa2016-08-29 21:49:56 +0800401 imx6_set_int_mem_clk_lpm(true);
Shawn Guo8fb76a02015-04-25 22:59:19 +0800402 imx6_set_lpm(WAIT_CLOCKED);
Shawn Guoa1f1c7e2011-09-06 15:08:40 +0800403 break;
404 default:
405 return -EINVAL;
406 }
407
408 return 0;
409}
410
Anson Huang80c0ecd2014-06-23 16:42:44 +0800411static int imx6q_pm_valid(suspend_state_t state)
412{
413 return (state == PM_SUSPEND_STANDBY || state == PM_SUSPEND_MEM);
414}
415
Shawn Guoa1f1c7e2011-09-06 15:08:40 +0800416static const struct platform_suspend_ops imx6q_pm_ops = {
417 .enter = imx6q_pm_enter,
Anson Huang80c0ecd2014-06-23 16:42:44 +0800418 .valid = imx6q_pm_valid,
Shawn Guoa1f1c7e2011-09-06 15:08:40 +0800419};
420
Anson Huangdf595742014-01-17 11:39:05 +0800421static int __init imx6_pm_get_base(struct imx6_pm_base *base,
422 const char *compat)
423{
424 struct device_node *node;
425 struct resource res;
426 int ret = 0;
427
428 node = of_find_compatible_node(NULL, NULL, compat);
429 if (!node) {
430 ret = -ENODEV;
431 goto out;
432 }
433
434 ret = of_address_to_resource(node, 0, &res);
435 if (ret)
436 goto put_node;
437
438 base->pbase = res.start;
439 base->vbase = ioremap(res.start, resource_size(&res));
440 if (!base->vbase)
441 ret = -ENOMEM;
442
443put_node:
444 of_node_put(node);
445out:
446 return ret;
447}
448
Shawn Guoafc51f42014-02-26 21:28:18 +0800449static int __init imx6q_suspend_init(const struct imx6_pm_socdata *socdata)
Anson Huangdf595742014-01-17 11:39:05 +0800450{
451 phys_addr_t ocram_pbase;
452 struct device_node *node;
453 struct platform_device *pdev;
454 struct imx6_cpu_pm_info *pm_info;
455 struct gen_pool *ocram_pool;
456 unsigned long ocram_base;
457 int i, ret = 0;
458 const u32 *mmdc_offset_array;
459
Shawn Guoafc51f42014-02-26 21:28:18 +0800460 suspend_set_ops(&imx6q_pm_ops);
461
Anson Huangdf595742014-01-17 11:39:05 +0800462 if (!socdata) {
463 pr_warn("%s: invalid argument!\n", __func__);
464 return -EINVAL;
465 }
466
467 node = of_find_compatible_node(NULL, NULL, "mmio-sram");
468 if (!node) {
469 pr_warn("%s: failed to find ocram node!\n", __func__);
470 return -ENODEV;
471 }
472
473 pdev = of_find_device_by_node(node);
474 if (!pdev) {
475 pr_warn("%s: failed to find ocram device!\n", __func__);
476 ret = -ENODEV;
477 goto put_node;
478 }
479
Vladimir Zapolskiy73858172015-09-04 15:47:43 -0700480 ocram_pool = gen_pool_get(&pdev->dev, NULL);
Anson Huangdf595742014-01-17 11:39:05 +0800481 if (!ocram_pool) {
482 pr_warn("%s: ocram pool unavailable!\n", __func__);
483 ret = -ENODEV;
484 goto put_node;
485 }
486
487 ocram_base = gen_pool_alloc(ocram_pool, MX6Q_SUSPEND_OCRAM_SIZE);
488 if (!ocram_base) {
489 pr_warn("%s: unable to alloc ocram!\n", __func__);
490 ret = -ENOMEM;
491 goto put_node;
492 }
493
494 ocram_pbase = gen_pool_virt_to_phys(ocram_pool, ocram_base);
495
496 suspend_ocram_base = __arm_ioremap_exec(ocram_pbase,
497 MX6Q_SUSPEND_OCRAM_SIZE, false);
498
Anson Huangee4a5f82015-08-05 01:48:37 +0800499 memset(suspend_ocram_base, 0, sizeof(*pm_info));
Anson Huangdf595742014-01-17 11:39:05 +0800500 pm_info = suspend_ocram_base;
501 pm_info->pbase = ocram_pbase;
502 pm_info->resume_addr = virt_to_phys(v7_cpu_resume);
503 pm_info->pm_info_size = sizeof(*pm_info);
504
505 /*
506 * ccm physical address is not used by asm code currently,
Shawn Guof0b478b2015-04-25 23:37:12 +0800507 * so get ccm virtual address directly.
Anson Huangdf595742014-01-17 11:39:05 +0800508 */
509 pm_info->ccm_base.vbase = ccm_base;
510
511 ret = imx6_pm_get_base(&pm_info->mmdc_base, socdata->mmdc_compat);
512 if (ret) {
513 pr_warn("%s: failed to get mmdc base %d!\n", __func__, ret);
514 goto put_node;
515 }
516
517 ret = imx6_pm_get_base(&pm_info->src_base, socdata->src_compat);
518 if (ret) {
519 pr_warn("%s: failed to get src base %d!\n", __func__, ret);
520 goto src_map_failed;
521 }
522
523 ret = imx6_pm_get_base(&pm_info->iomuxc_base, socdata->iomuxc_compat);
524 if (ret) {
525 pr_warn("%s: failed to get iomuxc base %d!\n", __func__, ret);
526 goto iomuxc_map_failed;
527 }
528
529 ret = imx6_pm_get_base(&pm_info->gpc_base, socdata->gpc_compat);
530 if (ret) {
531 pr_warn("%s: failed to get gpc base %d!\n", __func__, ret);
532 goto gpc_map_failed;
533 }
534
Anson Huangee4a5f82015-08-05 01:48:37 +0800535 if (socdata->pl310_compat) {
536 ret = imx6_pm_get_base(&pm_info->l2_base, socdata->pl310_compat);
537 if (ret) {
538 pr_warn("%s: failed to get pl310-cache base %d!\n",
539 __func__, ret);
540 goto pl310_cache_map_failed;
541 }
Anson Huangdf595742014-01-17 11:39:05 +0800542 }
543
Anson Huangec336b22014-09-17 11:11:45 +0800544 pm_info->ddr_type = imx_mmdc_get_ddr_type();
Anson Huangdf595742014-01-17 11:39:05 +0800545 pm_info->mmdc_io_num = socdata->mmdc_io_num;
546 mmdc_offset_array = socdata->mmdc_io_offset;
547
548 for (i = 0; i < pm_info->mmdc_io_num; i++) {
549 pm_info->mmdc_io_val[i][0] =
550 mmdc_offset_array[i];
551 pm_info->mmdc_io_val[i][1] =
552 readl_relaxed(pm_info->iomuxc_base.vbase +
553 mmdc_offset_array[i]);
554 }
555
556 imx6_suspend_in_ocram_fn = fncpy(
557 suspend_ocram_base + sizeof(*pm_info),
558 &imx6_suspend,
559 MX6Q_SUSPEND_OCRAM_SIZE - sizeof(*pm_info));
560
561 goto put_node;
562
563pl310_cache_map_failed:
Jean-Christophe Duboiscfefb762015-12-26 23:16:08 +0100564 iounmap(pm_info->gpc_base.vbase);
Anson Huangdf595742014-01-17 11:39:05 +0800565gpc_map_failed:
Jean-Christophe Duboiscfefb762015-12-26 23:16:08 +0100566 iounmap(pm_info->iomuxc_base.vbase);
Anson Huangdf595742014-01-17 11:39:05 +0800567iomuxc_map_failed:
Jean-Christophe Duboiscfefb762015-12-26 23:16:08 +0100568 iounmap(pm_info->src_base.vbase);
Anson Huangdf595742014-01-17 11:39:05 +0800569src_map_failed:
Jean-Christophe Duboiscfefb762015-12-26 23:16:08 +0100570 iounmap(pm_info->mmdc_base.vbase);
Anson Huangdf595742014-01-17 11:39:05 +0800571put_node:
572 of_node_put(node);
573
574 return ret;
575}
576
577static void __init imx6_pm_common_init(const struct imx6_pm_socdata
578 *socdata)
Shawn Guoa1f1c7e2011-09-06 15:08:40 +0800579{
Shawn Guod48866f2013-10-16 19:52:00 +0800580 struct regmap *gpr;
Anson Huangdf595742014-01-17 11:39:05 +0800581 int ret;
Shawn Guod48866f2013-10-16 19:52:00 +0800582
Shawn Guo9e8147b2013-09-25 23:09:36 +0800583 WARN_ON(!ccm_base);
584
Shawn Guo110666d2014-02-26 21:40:32 +0800585 if (IS_ENABLED(CONFIG_SUSPEND)) {
586 ret = imx6q_suspend_init(socdata);
587 if (ret)
588 pr_warn("%s: No DDR LPM support with suspend %d!\n",
589 __func__, ret);
590 }
Anson Huangdf595742014-01-17 11:39:05 +0800591
Shawn Guod48866f2013-10-16 19:52:00 +0800592 /*
Anson Huang48c95842013-12-24 17:19:21 -0500593 * This is for SW workaround step #1 of ERR007265, see comments
Shawn Guo8fb76a02015-04-25 22:59:19 +0800594 * in imx6_set_lpm for details of this errata.
Shawn Guod48866f2013-10-16 19:52:00 +0800595 * Force IOMUXC irq pending, so that the interrupt to GPC can be
596 * used to deassert dsm_request signal when the signal gets
597 * asserted unexpectedly.
598 */
599 gpr = syscon_regmap_lookup_by_compatible("fsl,imx6q-iomuxc-gpr");
600 if (!IS_ERR(gpr))
601 regmap_update_bits(gpr, IOMUXC_GPR1, IMX6Q_GPR1_GINT,
602 IMX6Q_GPR1_GINT);
Shawn Guoa1f1c7e2011-09-06 15:08:40 +0800603}
Anson Huangdf595742014-01-17 11:39:05 +0800604
Oleksij Rempel674d72a2018-08-02 12:34:21 +0200605static void imx6_pm_stby_poweroff(void)
606{
607 imx6_set_lpm(STOP_POWER_OFF);
608 imx6q_suspend_finish(0);
609
610 mdelay(1000);
611
612 pr_emerg("Unable to poweroff system\n");
613}
614
615static int imx6_pm_stby_poweroff_probe(void)
616{
617 if (pm_power_off) {
618 pr_warn("%s: pm_power_off already claimed %p %pf!\n",
619 __func__, pm_power_off, pm_power_off);
620 return -EBUSY;
621 }
622
623 pm_power_off = imx6_pm_stby_poweroff;
624 return 0;
625}
626
Shawn Guo35e29162015-04-29 13:07:03 +0800627void __init imx6_pm_ccm_init(const char *ccm_compat)
628{
629 struct device_node *np;
630 u32 val;
631
632 np = of_find_compatible_node(NULL, NULL, ccm_compat);
633 ccm_base = of_iomap(np, 0);
634 BUG_ON(!ccm_base);
635
636 /*
637 * Initialize CCM_CLPCR_LPM into RUN mode to avoid ARM core
638 * clock being shut down unexpectedly by WAIT mode.
639 */
640 val = readl_relaxed(ccm_base + CLPCR);
641 val &= ~BM_CLPCR_LPM;
642 writel_relaxed(val, ccm_base + CLPCR);
Oleksij Rempel674d72a2018-08-02 12:34:21 +0200643
644 if (of_property_read_bool(np, "fsl,pmic-stby-poweroff"))
645 imx6_pm_stby_poweroff_probe();
Shawn Guo35e29162015-04-29 13:07:03 +0800646}
647
Anson Huangdf595742014-01-17 11:39:05 +0800648void __init imx6q_pm_init(void)
649{
650 imx6_pm_common_init(&imx6q_pm_data);
651}
652
653void __init imx6dl_pm_init(void)
654{
Anson Huangda9e9262014-01-17 11:39:06 +0800655 imx6_pm_common_init(&imx6dl_pm_data);
Anson Huangdf595742014-01-17 11:39:05 +0800656}
657
658void __init imx6sl_pm_init(void)
659{
Anson Huang64b08682014-01-17 11:39:07 +0800660 imx6_pm_common_init(&imx6sl_pm_data);
Anson Huangdf595742014-01-17 11:39:05 +0800661}
Anson Huangff843d62014-06-20 13:20:54 +0800662
663void __init imx6sx_pm_init(void)
664{
665 imx6_pm_common_init(&imx6sx_pm_data);
666}
Anson Huangee4a5f82015-08-05 01:48:37 +0800667
668void __init imx6ul_pm_init(void)
669{
670 imx6_pm_common_init(&imx6ul_pm_data);
671}