blob: 1188a3b81a533e7f76446d600852a66e278ea28e [file] [log] [blame]
Varun Wadekarecd6a5a2018-04-09 17:48:58 -07001/*
2 * Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <arch.h>
Varun Wadekarecd6a5a2018-04-09 17:48:58 -07008#include <assert.h>
Steven Kao530b2172017-06-23 16:18:58 +08009#include <stdbool.h>
10#include <string.h>
11
12#include <arch_helpers.h>
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070013#include <common/bl_common.h>
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070014#include <common/debug.h>
Steven Kao530b2172017-06-23 16:18:58 +080015#include <context.h>
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070016#include <denver.h>
Steven Kao530b2172017-06-23 16:18:58 +080017#include <lib/el3_runtime/context_mgmt.h>
18#include <lib/psci/psci.h>
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070019#include <mce.h>
Dilan Lee4e7a63c2017-08-10 16:01:42 +080020#include <mce_private.h>
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070021#include <plat/common/platform.h>
Steven Kao530b2172017-06-23 16:18:58 +080022#include <se.h>
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070023#include <smmu.h>
Tejal Kudav153ba222017-02-14 18:02:04 -080024#include <t194_nvg.h>
Varun Wadekare0c222f2017-11-10 13:23:34 -080025#include <tegra194_private.h>
Steven Kao530b2172017-06-23 16:18:58 +080026#include <tegra_platform.h>
27#include <tegra_private.h>
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070028
Varun Wadekar362a6b22017-11-10 11:04:42 -080029extern void tegra194_cpu_reset_handler(void);
30extern uint32_t __tegra194_cpu_reset_handler_data,
31 __tegra194_cpu_reset_handler_end;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070032
33/* TZDRAM offset for saving SMMU context */
Varun Wadekar362a6b22017-11-10 11:04:42 -080034#define TEGRA194_SMMU_CTX_OFFSET 16U
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070035
36/* state id mask */
Varun Wadekar362a6b22017-11-10 11:04:42 -080037#define TEGRA194_STATE_ID_MASK 0xFU
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070038/* constants to get power state's wake time */
Varun Wadekar362a6b22017-11-10 11:04:42 -080039#define TEGRA194_WAKE_TIME_MASK 0x0FFFFFF0U
40#define TEGRA194_WAKE_TIME_SHIFT 4U
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070041/* default core wake mask for CPU_SUSPEND */
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +080042#define TEGRA194_CORE_WAKE_MASK 0x180cU
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070043
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +080044static struct t19x_psci_percpu_data {
45 uint32_t wake_time;
46} __aligned(CACHE_WRITEBACK_GRANULE) t19x_percpu_data[PLATFORM_CORE_COUNT];
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070047
Vignesh Radhakrishnand7a5c252017-05-25 16:27:42 -070048/*
49 * tegra_fake_system_suspend acts as a boolean var controlling whether
50 * we are going to take fake system suspend code or normal system suspend code
51 * path. This variable is set inside the sip call handlers, when the kernel
52 * requests an SIP call to set the suspend debug flags.
53 */
54bool tegra_fake_system_suspend;
55
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +080056int32_t tegra_soc_validate_power_state(uint32_t power_state,
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070057 psci_power_state_t *req_state)
58{
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +080059 uint8_t state_id = (uint8_t)psci_get_pstate_id(power_state) &
Varun Wadekar362a6b22017-11-10 11:04:42 -080060 TEGRA194_STATE_ID_MASK;
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +080061 uint32_t cpu = plat_my_core_pos();
62 int32_t ret = PSCI_E_SUCCESS;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070063
64 /* save the core wake time (in TSC ticks)*/
Varun Wadekar362a6b22017-11-10 11:04:42 -080065 t19x_percpu_data[cpu].wake_time = (power_state & TEGRA194_WAKE_TIME_MASK)
66 << TEGRA194_WAKE_TIME_SHIFT;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070067
68 /*
Varun Wadekar56c64592019-12-03 08:50:57 -080069 * Clean t19x_percpu_data[cpu] to DRAM. This needs to be done to ensure
70 * that the correct value is read in tegra_soc_pwr_domain_suspend(),
71 * which is called with caches disabled. It is possible to read a stale
72 * value from DRAM in that function, because the L2 cache is not flushed
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070073 * unless the cluster is entering CC6/CC7.
74 */
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +080075 clean_dcache_range((uint64_t)&t19x_percpu_data[cpu],
76 sizeof(t19x_percpu_data[cpu]));
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070077
78 /* Sanity check the requested state id */
79 switch (state_id) {
80 case PSTATE_ID_CORE_IDLE:
81 case PSTATE_ID_CORE_POWERDN:
82
83 /* Core powerdown request */
84 req_state->pwr_domain_state[MPIDR_AFFLVL0] = state_id;
85 req_state->pwr_domain_state[MPIDR_AFFLVL1] = state_id;
86
87 break;
88
89 default:
90 ERROR("%s: unsupported state id (%d)\n", __func__, state_id);
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +080091 ret = PSCI_E_INVALID_PARAMS;
92 break;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070093 }
94
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +080095 return ret;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070096}
97
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +080098int32_t tegra_soc_pwr_domain_suspend(const psci_power_state_t *target_state)
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070099{
100 const plat_local_state_t *pwr_domain_state;
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800101 uint8_t stateid_afflvl0, stateid_afflvl2;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700102 plat_params_from_bl2_t *params_from_bl2 = bl31_get_plat_params();
103 uint64_t smmu_ctx_base;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700104 uint32_t val;
Vignesh Radhakrishnand7a5c252017-05-25 16:27:42 -0700105 mce_cstate_info_t sc7_cstate_info = {
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800106 .cluster = (uint32_t)TEGRA_NVG_CLUSTER_CC6,
107 .system = (uint32_t)TEGRA_NVG_SYSTEM_SC7,
108 .system_state_force = 1U,
109 .update_wake_mask = 1U,
Vignesh Radhakrishnand7a5c252017-05-25 16:27:42 -0700110 };
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800111 uint32_t cpu = plat_my_core_pos();
Vignesh Radhakrishnand7a5c252017-05-25 16:27:42 -0700112 int32_t ret = 0;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700113
114 /* get the state ID */
115 pwr_domain_state = target_state->pwr_domain_state;
116 stateid_afflvl0 = pwr_domain_state[MPIDR_AFFLVL0] &
Varun Wadekar362a6b22017-11-10 11:04:42 -0800117 TEGRA194_STATE_ID_MASK;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700118 stateid_afflvl2 = pwr_domain_state[PLAT_MAX_PWR_LVL] &
Varun Wadekar362a6b22017-11-10 11:04:42 -0800119 TEGRA194_STATE_ID_MASK;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700120
121 if ((stateid_afflvl0 == PSTATE_ID_CORE_IDLE) ||
122 (stateid_afflvl0 == PSTATE_ID_CORE_POWERDN)) {
123
124 /* Enter CPU idle/powerdown */
Krishna Sitaramanc64afeb2017-01-23 16:15:44 -0800125 val = (stateid_afflvl0 == PSTATE_ID_CORE_IDLE) ?
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800126 (uint32_t)TEGRA_NVG_CORE_C6 : (uint32_t)TEGRA_NVG_CORE_C7;
127 ret = mce_command_handler((uint64_t)MCE_CMD_ENTER_CSTATE, (uint64_t)val,
Varun Wadekar56c64592019-12-03 08:50:57 -0800128 t19x_percpu_data[cpu].wake_time, 0);
Vignesh Radhakrishnand7a5c252017-05-25 16:27:42 -0700129 assert(ret == 0);
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700130
131 } else if (stateid_afflvl2 == PSTATE_ID_SOC_POWERDN) {
132
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700133 /* save 'Secure Boot' Processor Feature Config Register */
134 val = mmio_read_32(TEGRA_MISC_BASE + MISCREG_PFCFG);
Steven Kao4607f172017-10-23 18:35:14 +0800135 mmio_write_32(TEGRA_SCRATCH_BASE + SCRATCH_SECURE_BOOTP_FCFG, val);
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700136
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700137 /* save SMMU context */
138 smmu_ctx_base = params_from_bl2->tzdram_base +
Varun Wadekare0c222f2017-11-10 13:23:34 -0800139 tegra194_get_smmu_ctx_offset();
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700140 tegra_smmu_save_context((uintptr_t)smmu_ctx_base);
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700141
Steven Kao530b2172017-06-23 16:18:58 +0800142 /*
143 * Suspend SE, RNG1 and PKA1 only on silcon and fpga,
144 * since VDK does not support atomic se ctx save
145 */
146 if (tegra_platform_is_silicon() || tegra_platform_is_fpga()) {
147 ret = tegra_se_suspend();
148 assert(ret == 0);
149 }
150
Vignesh Radhakrishnand7a5c252017-05-25 16:27:42 -0700151 if (!tegra_fake_system_suspend) {
Vignesh Radhakrishnan0e2502f2017-04-10 15:07:39 -0700152
153 /* Prepare for system suspend */
Vignesh Radhakrishnand7a5c252017-05-25 16:27:42 -0700154 mce_update_cstate_info(&sc7_cstate_info);
Vignesh Radhakrishnan0e2502f2017-04-10 15:07:39 -0700155
156 do {
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800157 val = (uint32_t)mce_command_handler(
158 (uint32_t)MCE_CMD_IS_SC7_ALLOWED,
159 (uint32_t)TEGRA_NVG_CORE_C7,
Vignesh Radhakrishnan0e2502f2017-04-10 15:07:39 -0700160 MCE_CORE_SLEEP_TIME_INFINITE,
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800161 0U);
162 } while (val == 0U);
Tejal Kudav153ba222017-02-14 18:02:04 -0800163
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800164 /* Instruct the MCE to enter system suspend state */
165 ret = mce_command_handler(
166 (uint64_t)MCE_CMD_ENTER_CSTATE,
167 (uint64_t)TEGRA_NVG_CORE_C7,
168 MCE_CORE_SLEEP_TIME_INFINITE,
169 0U);
170 assert(ret == 0);
Varun Wadekarda865de2017-11-10 13:27:29 -0800171
172 /* set system suspend state for house-keeping */
173 tegra194_set_system_suspend_entry();
Vignesh Radhakrishnan0e2502f2017-04-10 15:07:39 -0700174 }
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800175 } else {
176 ; /* do nothing */
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700177 }
178
179 return PSCI_E_SUCCESS;
180}
181
182/*******************************************************************************
Varun Wadekar0723bb62017-10-16 15:57:17 -0700183 * Helper function to check if this is the last ON CPU in the cluster
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700184 ******************************************************************************/
Varun Wadekar0723bb62017-10-16 15:57:17 -0700185static bool tegra_last_on_cpu_in_cluster(const plat_local_state_t *states,
186 uint32_t ncpu)
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700187{
Varun Wadekar0723bb62017-10-16 15:57:17 -0700188 plat_local_state_t target;
189 bool last_on_cpu = true;
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800190 uint32_t num_cpus = ncpu, pos = 0;
Varun Wadekar0723bb62017-10-16 15:57:17 -0700191
192 do {
193 target = states[pos];
194 if (target != PLAT_MAX_OFF_STATE) {
195 last_on_cpu = false;
196 }
197 --num_cpus;
198 pos++;
199 } while (num_cpus != 0U);
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700200
Varun Wadekar0723bb62017-10-16 15:57:17 -0700201 return last_on_cpu;
202}
203
204/*******************************************************************************
205 * Helper function to get target power state for the cluster
206 ******************************************************************************/
207static plat_local_state_t tegra_get_afflvl1_pwr_state(const plat_local_state_t *states,
208 uint32_t ncpu)
209{
210 uint32_t core_pos = (uint32_t)read_mpidr() & (uint32_t)MPIDR_CPU_MASK;
211 plat_local_state_t target = states[core_pos];
212 mce_cstate_info_t cstate_info = { 0 };
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700213
214 /* CPU suspend */
Varun Wadekar0723bb62017-10-16 15:57:17 -0700215 if (target == PSTATE_ID_CORE_POWERDN) {
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700216
217 /* Program default wake mask */
Krishna Sitaramanc64afeb2017-01-23 16:15:44 -0800218 cstate_info.wake_mask = TEGRA194_CORE_WAKE_MASK;
219 cstate_info.update_wake_mask = 1;
220 mce_update_cstate_info(&cstate_info);
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700221 }
222
223 /* CPU off */
Varun Wadekar0723bb62017-10-16 15:57:17 -0700224 if (target == PLAT_MAX_OFF_STATE) {
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700225
226 /* Enable cluster powerdn from last CPU in the cluster */
Varun Wadekar0723bb62017-10-16 15:57:17 -0700227 if (tegra_last_on_cpu_in_cluster(states, ncpu)) {
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700228
Varun Wadekar0723bb62017-10-16 15:57:17 -0700229 /* Enable CC6 state and turn off wake mask */
230 cstate_info.cluster = (uint32_t)TEGRA_NVG_CLUSTER_CC6;
Krishna Sitaraman74813f92017-07-14 13:51:44 -0700231 cstate_info.update_wake_mask = 1U;
232 mce_update_cstate_info(&cstate_info);
233
234 } else {
Varun Wadekar0723bb62017-10-16 15:57:17 -0700235
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700236 /* Turn off wake_mask */
Krishna Sitaraman74813f92017-07-14 13:51:44 -0700237 cstate_info.update_wake_mask = 1U;
238 mce_update_cstate_info(&cstate_info);
Varun Wadekar0723bb62017-10-16 15:57:17 -0700239 target = PSCI_LOCAL_STATE_RUN;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700240 }
241 }
242
Varun Wadekar0723bb62017-10-16 15:57:17 -0700243 return target;
244}
245
246/*******************************************************************************
247 * Platform handler to calculate the proper target power level at the
248 * specified affinity level
249 ******************************************************************************/
250plat_local_state_t tegra_soc_get_target_pwr_state(uint32_t lvl,
251 const plat_local_state_t *states,
252 uint32_t ncpu)
253{
254 plat_local_state_t target = PSCI_LOCAL_STATE_RUN;
255 uint32_t cpu = plat_my_core_pos();
256
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700257 /* System Suspend */
Varun Wadekar0723bb62017-10-16 15:57:17 -0700258 if ((lvl == (uint32_t)MPIDR_AFFLVL2) && (states[cpu] == PSTATE_ID_SOC_POWERDN)) {
259 target = PSTATE_ID_SOC_POWERDN;
260 }
261
262 /* CPU off, CPU suspend */
263 if (lvl == (uint32_t)MPIDR_AFFLVL1) {
264 target = tegra_get_afflvl1_pwr_state(states, ncpu);
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800265 }
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700266
Varun Wadekar0723bb62017-10-16 15:57:17 -0700267 /* target cluster/system state */
268 return target;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700269}
270
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800271int32_t tegra_soc_pwr_domain_power_down_wfi(const psci_power_state_t *target_state)
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700272{
273 const plat_local_state_t *pwr_domain_state =
274 target_state->pwr_domain_state;
275 plat_params_from_bl2_t *params_from_bl2 = bl31_get_plat_params();
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800276 uint8_t stateid_afflvl2 = pwr_domain_state[PLAT_MAX_PWR_LVL] &
Varun Wadekar362a6b22017-11-10 11:04:42 -0800277 TEGRA194_STATE_ID_MASK;
Steven Kao55c2ce72016-12-23 15:51:32 +0800278 uint64_t val;
Vignesh Radhakrishnand7a5c252017-05-25 16:27:42 -0700279 u_register_t ns_sctlr_el1;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700280
281 if (stateid_afflvl2 == PSTATE_ID_SOC_POWERDN) {
282 /*
283 * The TZRAM loses power when we enter system suspend. To
284 * allow graceful exit from system suspend, we need to copy
285 * BL3-1 over to TZDRAM.
286 */
287 val = params_from_bl2->tzdram_base +
Varun Wadekare0c222f2017-11-10 13:23:34 -0800288 tegra194_get_cpu_reset_handler_size();
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700289 memcpy((void *)(uintptr_t)val, (void *)(uintptr_t)BL31_BASE,
290 (uintptr_t)&__BL31_END__ - (uintptr_t)BL31_BASE);
Vignesh Radhakrishnand7a5c252017-05-25 16:27:42 -0700291
Vignesh Radhakrishnand7a5c252017-05-25 16:27:42 -0700292 /*
293 * In fake suspend mode, ensure that the loopback procedure
294 * towards system suspend exit is started, instead of calling
295 * WFI. This is done by disabling both MMU's of EL1 & El3
296 * and calling tegra_secure_entrypoint().
297 */
298 if (tegra_fake_system_suspend) {
299
300 /*
301 * Disable EL1's MMU.
302 */
303 ns_sctlr_el1 = read_sctlr_el1();
304 ns_sctlr_el1 &= (~((u_register_t)SCTLR_M_BIT));
305 write_sctlr_el1(ns_sctlr_el1);
306
307 /*
308 * Disable MMU to power up the CPU in a "clean"
309 * state
310 */
311 disable_mmu_el3();
312 tegra_secure_entrypoint();
313 panic();
314 }
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700315 }
316
317 return PSCI_E_SUCCESS;
318}
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700319
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800320int32_t tegra_soc_pwr_domain_on(u_register_t mpidr)
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700321{
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800322 uint64_t target_cpu = mpidr & MPIDR_CPU_MASK;
323 uint64_t target_cluster = (mpidr & MPIDR_CLUSTER_MASK) >>
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700324 MPIDR_AFFINITY_BITS;
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800325 int32_t ret = 0;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700326
Varun Wadekara4e0a812017-10-17 10:53:33 -0700327 if (target_cluster > ((uint32_t)PLATFORM_CLUSTER_COUNT - 1U)) {
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700328 ERROR("%s: unsupported CPU (0x%lx)\n", __func__ , mpidr);
329 return PSCI_E_NOT_PRESENT;
330 }
331
332 /* construct the target CPU # */
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800333 target_cpu += (target_cluster << 1U);
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700334
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800335 ret = mce_command_handler((uint64_t)MCE_CMD_ONLINE_CORE, target_cpu, 0U, 0U);
336 if (ret < 0) {
337 return PSCI_E_DENIED;
338 }
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700339
340 return PSCI_E_SUCCESS;
341}
342
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800343int32_t tegra_soc_pwr_domain_on_finish(const psci_power_state_t *target_state)
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700344{
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800345 uint8_t stateid_afflvl2 = target_state->pwr_domain_state[PLAT_MAX_PWR_LVL];
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700346
347 /*
348 * Reset power state info for CPUs when onlining, we set
349 * deepest power when offlining a core but that may not be
350 * requested by non-secure sw which controls idle states. It
351 * will re-init this info from non-secure software when the
352 * core come online.
353 */
354
355 /*
356 * Check if we are exiting from deep sleep and restore SE
357 * context if we are.
358 */
359 if (stateid_afflvl2 == PSTATE_ID_SOC_POWERDN) {
Dilan Lee4e7a63c2017-08-10 16:01:42 +0800360
361 /*
362 * Enable strict checking after programming the GSC for
363 * enabling TZSRAM and TZDRAM
364 */
365 mce_enable_strict_checking();
366
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700367 /* Init SMMU */
Vignesh Radhakrishnan978887f2017-07-11 15:16:08 -0700368 tegra_smmu_init();
369
Steven Kao530b2172017-06-23 16:18:58 +0800370 /* Resume SE, RNG1 and PKA1 */
371 tegra_se_resume();
372
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700373 /*
374 * Reset power state info for the last core doing SC7
375 * entry and exit, we set deepest power state as CC7
376 * and SC7 for SC7 entry which may not be requested by
377 * non-secure SW which controls idle states.
378 */
379 }
380
381 return PSCI_E_SUCCESS;
382}
383
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800384int32_t tegra_soc_pwr_domain_off(const psci_power_state_t *target_state)
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700385{
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800386 uint64_t impl = (read_midr() >> MIDR_IMPL_SHIFT) & MIDR_IMPL_MASK;
Krishna Sitaraman74813f92017-07-14 13:51:44 -0700387 int32_t ret = 0;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700388
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800389 (void)target_state;
390
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700391 /* Disable Denver's DCO operations */
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800392 if (impl == DENVER_IMPL) {
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700393 denver_disable_dco();
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800394 }
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700395
396 /* Turn off CPU */
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800397 ret = mce_command_handler((uint64_t)MCE_CMD_ENTER_CSTATE,
398 (uint64_t)TEGRA_NVG_CORE_C7, MCE_CORE_SLEEP_TIME_INFINITE, 0U);
Krishna Sitaraman74813f92017-07-14 13:51:44 -0700399 assert(ret == 0);
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700400
401 return PSCI_E_SUCCESS;
402}
403
404__dead2 void tegra_soc_prepare_system_off(void)
405{
406 /* System power off */
407
408 /* SC8 */
409
410 wfi();
411
412 /* wait for the system to power down */
413 for (;;) {
414 ;
415 }
416}
417
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800418int32_t tegra_soc_prepare_system_reset(void)
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700419{
420 return PSCI_E_SUCCESS;
421}