1
2
3
4
5
6
7#include <cpu_func.h>
8#include <asm/io.h>
9#include <asm/psci.h>
10#include <asm/secure.h>
11#include <asm/arch/imx-regs.h>
12#include <asm/armv7.h>
13#include <asm/gic.h>
14#include <linux/bitops.h>
15#include <common.h>
16#include <fsl_wdog.h>
17
18#define GPC_LPCR_A7_BSC 0x0
19#define GPC_LPCR_A7_AD 0x4
20#define GPC_SLPCR 0x14
21#define GPC_PGC_ACK_SEL_A7 0x24
22#define GPC_IMR1_CORE0 0x30
23#define GPC_SLOT0_CFG 0xb0
24#define GPC_CPU_PGC_SW_PUP_REQ 0xf0
25#define GPC_CPU_PGC_SW_PDN_REQ 0xfc
26#define GPC_PGC_C0 0x800
27#define GPC_PGC_C0 0x800
28#define GPC_PGC_C1 0x840
29#define GPC_PGC_SCU 0x880
30
31#define BM_LPCR_A7_BSC_CPU_CLK_ON_LPM 0x4000
32#define BM_LPCR_A7_BSC_LPM1 0xc
33#define BM_LPCR_A7_BSC_LPM0 0x3
34#define BP_LPCR_A7_BSC_LPM0 0
35#define BM_SLPCR_EN_DSM 0x80000000
36#define BM_SLPCR_RBC_EN 0x40000000
37#define BM_SLPCR_REG_BYPASS_COUNT 0x3f000000
38#define BM_SLPCR_VSTBY 0x4
39#define BM_SLPCR_SBYOS 0x2
40#define BM_SLPCR_BYPASS_PMIC_READY 0x1
41#define BM_LPCR_A7_AD_L2PGE 0x10000
42#define BM_LPCR_A7_AD_EN_C1_PUP 0x800
43#define BM_LPCR_A7_AD_EN_C0_PUP 0x200
44#define BM_LPCR_A7_AD_EN_PLAT_PDN 0x10
45#define BM_LPCR_A7_AD_EN_C1_PDN 0x8
46#define BM_LPCR_A7_AD_EN_C0_PDN 0x2
47
48#define BM_CPU_PGC_SW_PDN_PUP_REQ_CORE0_A7 0x1
49#define BM_CPU_PGC_SW_PDN_PUP_REQ_CORE1_A7 0x2
50
51#define BM_GPC_PGC_ACK_SEL_A7_PD_DUMMY_ACK 0x8000
52#define BM_GPC_PGC_ACK_SEL_A7_PU_DUMMY_ACK 0x80000000
53
54#define MAX_SLOT_NUMBER 10
55#define A7_LPM_WAIT 0x5
56#define A7_LPM_STOP 0xa
57
58#define BM_SYS_COUNTER_CNTCR_FCR1 0x200
59#define BM_SYS_COUNTER_CNTCR_FCR0 0x100
60
61#define REG_SET 0x4
62#define REG_CLR 0x8
63
64#define ANADIG_ARM_PLL 0x60
65#define ANADIG_DDR_PLL 0x70
66#define ANADIG_SYS_PLL 0xb0
67#define ANADIG_ENET_PLL 0xe0
68#define ANADIG_AUDIO_PLL 0xf0
69#define ANADIG_VIDEO_PLL 0x130
70#define BM_ANATOP_ARM_PLL_OVERRIDE BIT(20)
71#define BM_ANATOP_DDR_PLL_OVERRIDE BIT(19)
72#define BM_ANATOP_SYS_PLL_OVERRIDE (0x1ff << 17)
73#define BM_ANATOP_ENET_PLL_OVERRIDE BIT(13)
74#define BM_ANATOP_AUDIO_PLL_OVERRIDE BIT(24)
75#define BM_ANATOP_VIDEO_PLL_OVERRIDE BIT(24)
76
77#define DDRC_STAT 0x4
78#define DDRC_PWRCTL 0x30
79#define DDRC_PSTAT 0x3fc
80
81#define SRC_GPR1_MX7D 0x074
82#define SRC_GPR2_MX7D 0x078
83#define SRC_A7RCR0 0x004
84#define SRC_A7RCR1 0x008
85
86#define BP_SRC_A7RCR0_A7_CORE_RESET0 0
87#define BP_SRC_A7RCR1_A7_CORE1_ENABLE 1
88
89#define SNVS_LPCR 0x38
90#define BP_SNVS_LPCR_DP_EN 0x20
91#define BP_SNVS_LPCR_TOP 0x40
92
93#define CCM_CCGR_SNVS 0x4250
94
95#define CCM_ROOT_WDOG 0xbb80
96#define CCM_CCGR_WDOG1 0x49c0
97
98#define MPIDR_AFF0 GENMASK(7, 0)
99
100#define IMX7D_PSCI_NR_CPUS 2
101#if IMX7D_PSCI_NR_CPUS > CONFIG_ARMV7_PSCI_NR_CPUS
102#error "invalid value for CONFIG_ARMV7_PSCI_NR_CPUS"
103#endif
104
105#define imx_cpu_gpr_entry_offset(cpu) \
106 (SRC_BASE_ADDR + SRC_GPR1_MX7D + cpu * 8)
107#define imx_cpu_gpr_para_offset(cpu) \
108 (imx_cpu_gpr_entry_offset(cpu) + 4)
109
110#define IMX_CPU_SYNC_OFF ~0
111#define IMX_CPU_SYNC_ON 0
112
113u8 psci_state[IMX7D_PSCI_NR_CPUS] __secure_data = {
114 PSCI_AFFINITY_LEVEL_ON,
115 PSCI_AFFINITY_LEVEL_OFF};
116
117enum imx_gpc_slot {
118 CORE0_A7,
119 CORE1_A7,
120 SCU_A7,
121 FAST_MEGA_MIX,
122 MIPI_PHY,
123 PCIE_PHY,
124 USB_OTG1_PHY,
125 USB_OTG2_PHY,
126 USB_HSIC_PHY,
127 CORE0_M4,
128};
129
130enum mxc_cpu_pwr_mode {
131 RUN,
132 WAIT,
133 STOP,
134};
135
136extern void psci_system_resume(void);
137
138static inline void psci_set_state(int cpu, u8 state)
139{
140 psci_state[cpu] = state;
141 dsb();
142 isb();
143}
144
145static inline void imx_gpcv2_set_m_core_pgc(bool enable, u32 offset)
146{
147 writel(enable, GPC_IPS_BASE_ADDR + offset);
148}
149
150__secure void imx_gpcv2_set_core_power(int cpu, bool pdn)
151{
152 u32 reg = pdn ? GPC_CPU_PGC_SW_PUP_REQ : GPC_CPU_PGC_SW_PDN_REQ;
153 u32 pgc = cpu ? GPC_PGC_C1 : GPC_PGC_C0;
154 u32 pdn_pup_req = cpu ? BM_CPU_PGC_SW_PDN_PUP_REQ_CORE1_A7 :
155 BM_CPU_PGC_SW_PDN_PUP_REQ_CORE0_A7;
156 u32 val;
157
158 imx_gpcv2_set_m_core_pgc(true, pgc);
159
160 val = readl(GPC_IPS_BASE_ADDR + reg);
161 val |= pdn_pup_req;
162 writel(val, GPC_IPS_BASE_ADDR + reg);
163
164 while ((readl(GPC_IPS_BASE_ADDR + reg) & pdn_pup_req) != 0)
165 ;
166
167 imx_gpcv2_set_m_core_pgc(false, pgc);
168}
169
170__secure void imx_enable_cpu_ca7(int cpu, bool enable)
171{
172 u32 mask, val;
173
174 mask = 1 << (BP_SRC_A7RCR1_A7_CORE1_ENABLE + cpu - 1);
175 val = readl(SRC_BASE_ADDR + SRC_A7RCR1);
176 val = enable ? val | mask : val & ~mask;
177 writel(val, SRC_BASE_ADDR + SRC_A7RCR1);
178}
179
180__secure void psci_arch_cpu_entry(void)
181{
182 u32 cpu = psci_get_cpu_id();
183
184 psci_set_state(cpu, PSCI_AFFINITY_LEVEL_ON);
185}
186
187__secure s32 psci_cpu_on(u32 __always_unused function_id, u32 mpidr, u32 ep,
188 u32 context_id)
189{
190 u32 cpu = mpidr & MPIDR_AFF0;
191
192 if (mpidr & ~MPIDR_AFF0)
193 return ARM_PSCI_RET_INVAL;
194
195 if (cpu >= IMX7D_PSCI_NR_CPUS)
196 return ARM_PSCI_RET_INVAL;
197
198 if (psci_state[cpu] == PSCI_AFFINITY_LEVEL_ON)
199 return ARM_PSCI_RET_ALREADY_ON;
200
201 if (psci_state[cpu] == PSCI_AFFINITY_LEVEL_ON_PENDING)
202 return ARM_PSCI_RET_ON_PENDING;
203
204 psci_save(cpu, ep, context_id);
205
206 writel((u32)psci_cpu_entry, imx_cpu_gpr_entry_offset(cpu));
207
208 psci_set_state(cpu, PSCI_AFFINITY_LEVEL_ON_PENDING);
209
210 imx_gpcv2_set_core_power(cpu, true);
211 imx_enable_cpu_ca7(cpu, true);
212
213 return ARM_PSCI_RET_SUCCESS;
214}
215
216__secure s32 psci_cpu_off(void)
217{
218 int cpu;
219
220 cpu = psci_get_cpu_id();
221
222 psci_cpu_off_common();
223 psci_set_state(cpu, PSCI_AFFINITY_LEVEL_OFF);
224
225 imx_enable_cpu_ca7(cpu, false);
226 imx_gpcv2_set_core_power(cpu, false);
227
228
229
230
231 writel(IMX_CPU_SYNC_OFF, imx_cpu_gpr_para_offset(cpu));
232
233 while (1)
234 wfi();
235}
236
237__secure void psci_system_reset(void)
238{
239 struct wdog_regs *wdog = (struct wdog_regs *)WDOG1_BASE_ADDR;
240
241
242 writel(0x1 << 28, CCM_BASE_ADDR + CCM_ROOT_WDOG);
243 writel(0x3, CCM_BASE_ADDR + CCM_CCGR_WDOG1);
244 writew(WCR_WDE, &wdog->wcr);
245
246 while (1)
247 wfi();
248}
249
250__secure void psci_system_off(void)
251{
252 u32 val;
253
254
255 writel(0x3, CCM_BASE_ADDR + CCM_CCGR_SNVS);
256
257 val = readl(SNVS_BASE_ADDR + SNVS_LPCR);
258 val |= BP_SNVS_LPCR_DP_EN | BP_SNVS_LPCR_TOP;
259 writel(val, SNVS_BASE_ADDR + SNVS_LPCR);
260
261 while (1)
262 wfi();
263}
264
265__secure u32 psci_version(void)
266{
267 return ARM_PSCI_VER_1_0;
268}
269
270__secure s32 psci_cpu_suspend(u32 __always_unused function_id, u32 power_state,
271 u32 entry_point_address,
272 u32 context_id)
273{
274 return ARM_PSCI_RET_INVAL;
275}
276
277__secure s32 psci_affinity_info(u32 __always_unused function_id,
278 u32 target_affinity,
279 u32 lowest_affinity_level)
280{
281 u32 cpu = target_affinity & MPIDR_AFF0;
282
283 if (lowest_affinity_level > 0)
284 return ARM_PSCI_RET_INVAL;
285
286 if (target_affinity & ~MPIDR_AFF0)
287 return ARM_PSCI_RET_INVAL;
288
289 if (cpu >= IMX7D_PSCI_NR_CPUS)
290 return ARM_PSCI_RET_INVAL;
291
292
293 if (readl(imx_cpu_gpr_para_offset(cpu)) == IMX_CPU_SYNC_OFF) {
294 imx_enable_cpu_ca7(cpu, false);
295 imx_gpcv2_set_core_power(cpu, false);
296 writel(IMX_CPU_SYNC_ON, imx_cpu_gpr_para_offset(cpu));
297 }
298
299 return psci_state[cpu];
300}
301
302__secure u32 psci_migrate_info_type(void)
303{
304
305 return 2;
306}
307
308__secure s32 psci_features(u32 __always_unused function_id, u32 psci_fid)
309{
310 switch (psci_fid) {
311 case ARM_PSCI_0_2_FN_PSCI_VERSION:
312 case ARM_PSCI_0_2_FN_CPU_OFF:
313 case ARM_PSCI_0_2_FN_CPU_ON:
314 case ARM_PSCI_0_2_FN_AFFINITY_INFO:
315 case ARM_PSCI_0_2_FN_MIGRATE_INFO_TYPE:
316 case ARM_PSCI_0_2_FN_SYSTEM_OFF:
317 case ARM_PSCI_0_2_FN_SYSTEM_RESET:
318 case ARM_PSCI_1_0_FN_PSCI_FEATURES:
319 case ARM_PSCI_1_0_FN_SYSTEM_SUSPEND:
320 return 0x0;
321 }
322 return ARM_PSCI_RET_NI;
323}
324
325static __secure void imx_gpcv2_set_lpm_mode(enum mxc_cpu_pwr_mode mode)
326{
327 u32 val1, val2, val3;
328
329 val1 = readl(GPC_IPS_BASE_ADDR + GPC_LPCR_A7_BSC);
330 val2 = readl(GPC_IPS_BASE_ADDR + GPC_SLPCR);
331
332
333 val1 &= ~(BM_LPCR_A7_BSC_LPM0 | BM_LPCR_A7_BSC_LPM1);
334 val1 |= BM_LPCR_A7_BSC_CPU_CLK_ON_LPM;
335
336 val2 &= ~(BM_SLPCR_EN_DSM | BM_SLPCR_VSTBY | BM_SLPCR_RBC_EN |
337 BM_SLPCR_SBYOS | BM_SLPCR_BYPASS_PMIC_READY);
338
339
340
341
342
343
344
345
346
347
348
349
350 switch (mode) {
351 case RUN:
352 val3 = readl(GPC_IPS_BASE_ADDR + GPC_IMR1_CORE0);
353 val3 &= ~0x1;
354 writel(val3, GPC_IPS_BASE_ADDR + GPC_IMR1_CORE0);
355 break;
356 case WAIT:
357 val1 |= A7_LPM_WAIT << BP_LPCR_A7_BSC_LPM0;
358 val1 &= ~BM_LPCR_A7_BSC_CPU_CLK_ON_LPM;
359 val3 = readl(GPC_IPS_BASE_ADDR + GPC_IMR1_CORE0);
360 val3 &= ~0x1;
361 writel(val3, GPC_IPS_BASE_ADDR + GPC_IMR1_CORE0);
362 break;
363 case STOP:
364 val1 |= A7_LPM_STOP << BP_LPCR_A7_BSC_LPM0;
365 val1 &= ~BM_LPCR_A7_BSC_CPU_CLK_ON_LPM;
366 val2 |= BM_SLPCR_EN_DSM;
367 val2 |= BM_SLPCR_SBYOS;
368 val2 |= BM_SLPCR_VSTBY;
369 val2 |= BM_SLPCR_BYPASS_PMIC_READY;
370 val3 = readl(GPC_IPS_BASE_ADDR + GPC_IMR1_CORE0);
371 val3 |= 0x1;
372 writel(val3, GPC_IPS_BASE_ADDR + GPC_IMR1_CORE0);
373 break;
374 default:
375 return;
376 }
377 writel(val1, GPC_IPS_BASE_ADDR + GPC_LPCR_A7_BSC);
378 writel(val2, GPC_IPS_BASE_ADDR + GPC_SLPCR);
379}
380
381static __secure void imx_gpcv2_set_plat_power_gate_by_lpm(bool pdn)
382{
383 u32 val = readl(GPC_IPS_BASE_ADDR + GPC_LPCR_A7_AD);
384
385 val &= ~(BM_LPCR_A7_AD_EN_PLAT_PDN | BM_LPCR_A7_AD_L2PGE);
386 if (pdn)
387 val |= BM_LPCR_A7_AD_EN_PLAT_PDN | BM_LPCR_A7_AD_L2PGE;
388
389 writel(val, GPC_IPS_BASE_ADDR + GPC_LPCR_A7_AD);
390}
391
392static __secure void imx_gpcv2_set_cpu_power_gate_by_lpm(u32 cpu, bool pdn)
393{
394 u32 val;
395
396 val = readl(GPC_IPS_BASE_ADDR + GPC_LPCR_A7_AD);
397 if (cpu == 0) {
398 if (pdn)
399 val |= BM_LPCR_A7_AD_EN_C0_PDN |
400 BM_LPCR_A7_AD_EN_C0_PUP;
401 else
402 val &= ~(BM_LPCR_A7_AD_EN_C0_PDN |
403 BM_LPCR_A7_AD_EN_C0_PUP);
404 }
405 if (cpu == 1) {
406 if (pdn)
407 val |= BM_LPCR_A7_AD_EN_C1_PDN |
408 BM_LPCR_A7_AD_EN_C1_PUP;
409 else
410 val &= ~(BM_LPCR_A7_AD_EN_C1_PDN |
411 BM_LPCR_A7_AD_EN_C1_PUP);
412 }
413 writel(val, GPC_IPS_BASE_ADDR + GPC_LPCR_A7_AD);
414}
415
416static __secure void imx_gpcv2_set_slot_ack(u32 index, enum imx_gpc_slot m_core,
417 bool mode, bool ack)
418{
419 u32 val;
420
421 if (index >= MAX_SLOT_NUMBER)
422 return;
423
424
425 writel(readl(GPC_IPS_BASE_ADDR + GPC_SLOT0_CFG + index * 4) |
426 ((mode + 1) << (m_core * 2)),
427 GPC_IPS_BASE_ADDR + GPC_SLOT0_CFG + index * 4);
428
429 if (ack) {
430
431 val = readl(GPC_IPS_BASE_ADDR + GPC_PGC_ACK_SEL_A7);
432
433 val &= ~(mode ? BM_GPC_PGC_ACK_SEL_A7_PU_DUMMY_ACK :
434 BM_GPC_PGC_ACK_SEL_A7_PD_DUMMY_ACK);
435 val |= 1 << (m_core + (mode ? 16 : 0));
436 writel(val, GPC_IPS_BASE_ADDR + GPC_PGC_ACK_SEL_A7);
437 }
438}
439
440static __secure void imx_system_counter_resume(void)
441{
442 u32 val;
443
444 val = readl(SYSCNT_CTRL_IPS_BASE_ADDR);
445 val &= ~BM_SYS_COUNTER_CNTCR_FCR1;
446 val |= BM_SYS_COUNTER_CNTCR_FCR0;
447 writel(val, SYSCNT_CTRL_IPS_BASE_ADDR);
448}
449
450static __secure void imx_system_counter_suspend(void)
451{
452 u32 val;
453
454 val = readl(SYSCNT_CTRL_IPS_BASE_ADDR);
455 val &= ~BM_SYS_COUNTER_CNTCR_FCR0;
456 val |= BM_SYS_COUNTER_CNTCR_FCR1;
457 writel(val, SYSCNT_CTRL_IPS_BASE_ADDR);
458}
459
460static __secure void gic_resume(void)
461{
462 u32 itlinesnr, i;
463 u32 gic_dist_addr = GIC400_ARB_BASE_ADDR + GIC_DIST_OFFSET;
464
465
466 writel(readl(gic_dist_addr + GICD_CTLR) | 0x03,
467 gic_dist_addr + GICD_CTLR);
468
469
470 itlinesnr = readl(gic_dist_addr + GICD_TYPER) & 0x1f;
471
472
473
474
475
476 for (i = 1; i <= itlinesnr; i++)
477 writel((u32)-1, gic_dist_addr + GICD_IGROUPRn + 4 * i);
478}
479
480static inline void imx_pll_suspend(void)
481{
482 writel(BM_ANATOP_ARM_PLL_OVERRIDE,
483 ANATOP_BASE_ADDR + ANADIG_ARM_PLL + REG_SET);
484 writel(BM_ANATOP_DDR_PLL_OVERRIDE,
485 ANATOP_BASE_ADDR + ANADIG_DDR_PLL + REG_SET);
486 writel(BM_ANATOP_SYS_PLL_OVERRIDE,
487 ANATOP_BASE_ADDR + ANADIG_SYS_PLL + REG_SET);
488 writel(BM_ANATOP_ENET_PLL_OVERRIDE,
489 ANATOP_BASE_ADDR + ANADIG_ENET_PLL + REG_SET);
490 writel(BM_ANATOP_AUDIO_PLL_OVERRIDE,
491 ANATOP_BASE_ADDR + ANADIG_AUDIO_PLL + REG_SET);
492 writel(BM_ANATOP_VIDEO_PLL_OVERRIDE,
493 ANATOP_BASE_ADDR + ANADIG_VIDEO_PLL + REG_SET);
494}
495
496static inline void imx_pll_resume(void)
497{
498 writel(BM_ANATOP_ARM_PLL_OVERRIDE,
499 ANATOP_BASE_ADDR + ANADIG_ARM_PLL + REG_CLR);
500 writel(BM_ANATOP_DDR_PLL_OVERRIDE,
501 ANATOP_BASE_ADDR + ANADIG_DDR_PLL + REG_CLR);
502 writel(BM_ANATOP_SYS_PLL_OVERRIDE,
503 ANATOP_BASE_ADDR + ANADIG_SYS_PLL + REG_CLR);
504 writel(BM_ANATOP_ENET_PLL_OVERRIDE,
505 ANATOP_BASE_ADDR + ANADIG_ENET_PLL + REG_CLR);
506 writel(BM_ANATOP_AUDIO_PLL_OVERRIDE,
507 ANATOP_BASE_ADDR + ANADIG_AUDIO_PLL + REG_CLR);
508 writel(BM_ANATOP_VIDEO_PLL_OVERRIDE,
509 ANATOP_BASE_ADDR + ANADIG_VIDEO_PLL + REG_CLR);
510}
511
512static inline void imx_udelay(u32 usec)
513{
514 u32 freq;
515 u64 start, end;
516
517 asm volatile("mrc p15, 0, %0, c14, c0, 0" : "=r" (freq));
518 asm volatile("mrrc p15, 0, %Q0, %R0, c14" : "=r" (start));
519 do {
520 asm volatile("mrrc p15, 0, %Q0, %R0, c14" : "=r" (end));
521 if ((end - start) > usec * (freq / 1000000))
522 break;
523 } while (1);
524}
525
526static inline void imx_ddrc_enter_self_refresh(void)
527{
528 writel(0, DDRC_IPS_BASE_ADDR + DDRC_PWRCTL);
529 while (readl(DDRC_IPS_BASE_ADDR + DDRC_PSTAT) & 0x10001)
530 ;
531
532 writel(0x20, DDRC_IPS_BASE_ADDR + DDRC_PWRCTL);
533 while ((readl(DDRC_IPS_BASE_ADDR + DDRC_STAT) & 0x23) != 0x23)
534 ;
535 writel(readl(DDRC_IPS_BASE_ADDR + DDRC_PWRCTL) | 0x8,
536 DDRC_IPS_BASE_ADDR + DDRC_PWRCTL);
537}
538
539static inline void imx_ddrc_exit_self_refresh(void)
540{
541 writel(0, DDRC_IPS_BASE_ADDR + DDRC_PWRCTL);
542 while ((readl(DDRC_IPS_BASE_ADDR + DDRC_STAT) & 0x3) == 0x3)
543 ;
544 writel(readl(DDRC_IPS_BASE_ADDR + DDRC_PWRCTL) | 0x1,
545 DDRC_IPS_BASE_ADDR + DDRC_PWRCTL);
546}
547
548__secure void imx_system_resume(void)
549{
550 unsigned int i, val, imr[4], entry;
551
552 entry = psci_get_target_pc(0);
553 imx_ddrc_exit_self_refresh();
554 imx_system_counter_resume();
555 imx_gpcv2_set_lpm_mode(RUN);
556 imx_gpcv2_set_cpu_power_gate_by_lpm(0, false);
557 imx_gpcv2_set_plat_power_gate_by_lpm(false);
558 imx_gpcv2_set_m_core_pgc(false, GPC_PGC_C0);
559 imx_gpcv2_set_m_core_pgc(false, GPC_PGC_SCU);
560
561
562
563
564
565 for (i = 0; i < 4; i++) {
566 imr[i] = readl(GPC_IPS_BASE_ADDR + GPC_IMR1_CORE0 + i * 4);
567 writel(~0, GPC_IPS_BASE_ADDR + GPC_IMR1_CORE0 + i * 4);
568 }
569
570
571 val = readl(GPC_IPS_BASE_ADDR + GPC_SLPCR);
572 val &= ~BM_SLPCR_RBC_EN;
573 writel(val, GPC_IPS_BASE_ADDR + GPC_SLPCR);
574
575
576 val = readl(GPC_IPS_BASE_ADDR + GPC_SLPCR);
577 val &= ~BM_SLPCR_REG_BYPASS_COUNT;
578 writel(val, GPC_IPS_BASE_ADDR + GPC_SLPCR);
579
580
581
582
583
584
585 imx_udelay(65);
586
587
588 for (i = 0; i < 4; i++)
589 writel(imr[i], GPC_IPS_BASE_ADDR + GPC_IMR1_CORE0 + i * 4);
590
591
592 gic_resume();
593 _nonsec_init();
594
595
596 psci_save(0, entry, 0);
597 psci_cpu_entry();
598}
599
600__secure void psci_system_suspend(u32 __always_unused function_id,
601 u32 ep, u32 context_id)
602{
603 u32 gpc_mask[4];
604 u32 i, val;
605
606 psci_save(0, ep, context_id);
607
608 imx_pll_suspend();
609 imx_system_counter_suspend();
610
611 imx_gpcv2_set_lpm_mode(STOP);
612
613 imx_gpcv2_set_cpu_power_gate_by_lpm(0, true);
614 imx_gpcv2_set_plat_power_gate_by_lpm(true);
615
616 imx_gpcv2_set_slot_ack(0, CORE0_A7, false, false);
617 imx_gpcv2_set_slot_ack(1, SCU_A7, false, true);
618 imx_gpcv2_set_slot_ack(5, SCU_A7, true, false);
619 imx_gpcv2_set_slot_ack(6, CORE0_A7, true, true);
620 imx_gpcv2_set_m_core_pgc(true, GPC_PGC_C0);
621 imx_gpcv2_set_m_core_pgc(true, GPC_PGC_SCU);
622 psci_v7_flush_dcache_all();
623
624 imx_ddrc_enter_self_refresh();
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643 writel(0, GIC400_ARB_BASE_ADDR + GIC_DIST_OFFSET);
644
645 for (i = 0; i < 4; i++)
646 gpc_mask[i] = readl(GPC_IPS_BASE_ADDR + GPC_IMR1_CORE0 + i * 4);
647
648
649
650
651
652
653
654
655 val = readl(GPC_IPS_BASE_ADDR + GPC_SLPCR);
656 val &= ~(0x3f << 24);
657 val |= (0x8 << 24);
658 writel(val, GPC_IPS_BASE_ADDR + GPC_SLPCR);
659
660
661 val = readl(GPC_IPS_BASE_ADDR + GPC_SLPCR);
662 val |= (1 << 30);
663 writel(val, GPC_IPS_BASE_ADDR + GPC_SLPCR);
664
665
666 for (i = 0; i < 4; i++)
667 writel(gpc_mask[i], GPC_IPS_BASE_ADDR + GPC_IMR1_CORE0 + i * 4);
668
669
670
671
672
673
674
675
676
677
678
679 imx_udelay(3);
680
681
682 asm volatile("mov %0, sp" : "=r" (val));
683 writel((u32)psci_system_resume, SRC_BASE_ADDR + SRC_GPR1_MX7D);
684 writel(val, SRC_BASE_ADDR + SRC_GPR2_MX7D);
685
686
687 while (1)
688 wfi();
689}
690