blob: d18b4fc24b2431c3ada5952c9fe973e69fcbcdab [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Tang Yuantiana7787b72014-11-21 11:17:15 +08002/*
3 * Copyright 2014 Freescale Semiconductor, Inc.
Tang Yuantiana7787b72014-11-21 11:17:15 +08004 */
5
6#include <common.h>
7#include <asm/io.h>
Jan Kiszka104d6fb2015-04-21 07:18:24 +02008#ifndef CONFIG_ARMV7_NONSEC
Tang Yuantiana7787b72014-11-21 11:17:15 +08009#error " Deep sleep needs non-secure mode support. "
10#else
11#include <asm/secure.h>
12#endif
13#include <asm/armv7.h>
Tang Yuantiana7787b72014-11-21 11:17:15 +080014
York Sun73fb5832017-03-27 11:41:03 -070015#if defined(CONFIG_ARCH_LS1021A)
Tang Yuantiana7787b72014-11-21 11:17:15 +080016#include <asm/arch/immap_ls102xa.h>
17#endif
18
19#include "sleep.h"
Zhao Qiang1fb5ff92015-04-07 15:09:54 +080020#ifdef CONFIG_U_QE
Qianyu Gong2459afb2016-02-18 13:01:59 +080021#include <fsl_qe.h>
Zhao Qiang1fb5ff92015-04-07 15:09:54 +080022#endif
Tang Yuantiana7787b72014-11-21 11:17:15 +080023
24DECLARE_GLOBAL_DATA_PTR;
25
26void __weak board_mem_sleep_setup(void)
27{
28}
29
30void __weak board_sleep_prepare(void)
31{
32}
33
34bool is_warm_boot(void)
35{
36 struct ccsr_gur __iomem *gur = (void *)CONFIG_SYS_FSL_GUTS_ADDR;
37
38 if (in_be32(&gur->crstsr) & DCFG_CCSR_CRSTSR_WDRFR)
39 return 1;
40
41 return 0;
42}
43
44void fsl_dp_disable_console(void)
45{
46 gd->flags |= GD_FLG_SILENT | GD_FLG_DISABLE_CONSOLE;
47}
48
49/*
50 * When wakeup from deep sleep, the first 128 bytes space
51 * will be used to do DDR training which corrupts the data
52 * in there. This function will restore them.
53 */
54static void dp_ddr_restore(void)
55{
56 u64 *src, *dst;
57 int i;
58 struct ccsr_scfg __iomem *scfg = (void *)CONFIG_SYS_FSL_SCFG_ADDR;
59
60 /* get the address of ddr date from SPARECR3 */
61 src = (u64 *)in_le32(&scfg->sparecr[2]);
62 dst = (u64 *)CONFIG_SYS_SDRAM_BASE;
63
64 for (i = 0; i < DDR_BUFF_LEN / 8; i++)
65 *dst++ = *src++;
Tang Yuantiana7787b72014-11-21 11:17:15 +080066}
67
York Sun73fb5832017-03-27 11:41:03 -070068#if defined(CONFIG_ARMV7_PSCI) && defined(CONFIG_ARCH_LS1021A)
Hongbo Zhang214ffae2016-08-19 17:20:33 +080069void ls1_psci_resume_fixup(void)
70{
71 u32 tmp;
72 struct ccsr_scfg __iomem *scfg = (void *)CONFIG_SYS_FSL_SCFG_ADDR;
73
74#ifdef QIXIS_BASE
75 void *qixis_base = (void *)QIXIS_BASE;
76
77 /* Pull on PCIe RST# */
78 out_8(qixis_base + QIXIS_RST_FORCE_3, 0);
79
80 /* disable deep sleep signals in FPGA */
81 tmp = in_8(qixis_base + QIXIS_PWR_CTL2);
82 tmp &= ~QIXIS_PWR_CTL2_PCTL;
83 out_8(qixis_base + QIXIS_PWR_CTL2, tmp);
84#endif
85
86 /* Disable wakeup interrupt during deep sleep */
87 out_be32(&scfg->pmcintecr, 0);
88 /* Clear PMC interrupt status */
89 out_be32(&scfg->pmcintsr, 0xffffffff);
90
91 /* Disable Warm Device Reset */
92 tmp = in_be32(&scfg->dpslpcr);
93 tmp &= ~SCFG_DPSLPCR_WDRR_EN;
94 out_be32(&scfg->dpslpcr, tmp);
95}
96#endif
97
Tang Yuantiana7787b72014-11-21 11:17:15 +080098static void dp_resume_prepare(void)
99{
100 dp_ddr_restore();
101 board_sleep_prepare();
102 armv7_init_nonsec();
Zhao Qiang1fb5ff92015-04-07 15:09:54 +0800103#ifdef CONFIG_U_QE
104 u_qe_resume();
105#endif
York Sun73fb5832017-03-27 11:41:03 -0700106#if defined(CONFIG_ARMV7_PSCI) && defined(CONFIG_ARCH_LS1021A)
Hongbo Zhang214ffae2016-08-19 17:20:33 +0800107 ls1_psci_resume_fixup();
108#endif
Tang Yuantiana7787b72014-11-21 11:17:15 +0800109}
110
111int fsl_dp_resume(void)
112{
113 u32 start_addr;
114 void (*kernel_resume)(void);
115 struct ccsr_scfg __iomem *scfg = (void *)CONFIG_SYS_FSL_SCFG_ADDR;
116
117 if (!is_warm_boot())
118 return 0;
119
120 dp_resume_prepare();
121
122 /* Get the entry address and jump to kernel */
Hongbo Zhang214ffae2016-08-19 17:20:33 +0800123 start_addr = in_le32(&scfg->sparecr[3]);
Tang Yuantiana7787b72014-11-21 11:17:15 +0800124 debug("Entry address is 0x%08x\n", start_addr);
125 kernel_resume = (void (*)(void))start_addr;
126 secure_ram_addr(_do_nonsec_entry)(kernel_resume, 0, 0, 0);
127
128 return 0;
129}