blob: fa5ba6263f21dd3ae42e2b3cece3d1379f3b9c11 [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 uint32_t __tegra194_cpu_reset_handler_data,
30 __tegra194_cpu_reset_handler_end;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070031
32/* TZDRAM offset for saving SMMU context */
Varun Wadekar362a6b22017-11-10 11:04:42 -080033#define TEGRA194_SMMU_CTX_OFFSET 16U
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070034
35/* state id mask */
Varun Wadekar362a6b22017-11-10 11:04:42 -080036#define TEGRA194_STATE_ID_MASK 0xFU
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070037/* constants to get power state's wake time */
Varun Wadekar362a6b22017-11-10 11:04:42 -080038#define TEGRA194_WAKE_TIME_MASK 0x0FFFFFF0U
39#define TEGRA194_WAKE_TIME_SHIFT 4U
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070040/* default core wake mask for CPU_SUSPEND */
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +080041#define TEGRA194_CORE_WAKE_MASK 0x180cU
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070042
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +080043static struct t19x_psci_percpu_data {
44 uint32_t wake_time;
45} __aligned(CACHE_WRITEBACK_GRANULE) t19x_percpu_data[PLATFORM_CORE_COUNT];
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070046
Vignesh Radhakrishnand7a5c252017-05-25 16:27:42 -070047/*
48 * tegra_fake_system_suspend acts as a boolean var controlling whether
49 * we are going to take fake system suspend code or normal system suspend code
50 * path. This variable is set inside the sip call handlers, when the kernel
51 * requests an SIP call to set the suspend debug flags.
52 */
53bool tegra_fake_system_suspend;
54
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +080055int32_t tegra_soc_validate_power_state(uint32_t power_state,
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070056 psci_power_state_t *req_state)
57{
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +080058 uint8_t state_id = (uint8_t)psci_get_pstate_id(power_state) &
Varun Wadekar362a6b22017-11-10 11:04:42 -080059 TEGRA194_STATE_ID_MASK;
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +080060 uint32_t cpu = plat_my_core_pos();
61 int32_t ret = PSCI_E_SUCCESS;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070062
63 /* save the core wake time (in TSC ticks)*/
Varun Wadekar362a6b22017-11-10 11:04:42 -080064 t19x_percpu_data[cpu].wake_time = (power_state & TEGRA194_WAKE_TIME_MASK)
65 << TEGRA194_WAKE_TIME_SHIFT;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070066
67 /*
Varun Wadekar56c64592019-12-03 08:50:57 -080068 * Clean t19x_percpu_data[cpu] to DRAM. This needs to be done to ensure
69 * that the correct value is read in tegra_soc_pwr_domain_suspend(),
70 * which is called with caches disabled. It is possible to read a stale
71 * value from DRAM in that function, because the L2 cache is not flushed
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070072 * unless the cluster is entering CC6/CC7.
73 */
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +080074 clean_dcache_range((uint64_t)&t19x_percpu_data[cpu],
75 sizeof(t19x_percpu_data[cpu]));
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070076
77 /* Sanity check the requested state id */
78 switch (state_id) {
79 case PSTATE_ID_CORE_IDLE:
80 case PSTATE_ID_CORE_POWERDN:
81
82 /* Core powerdown request */
83 req_state->pwr_domain_state[MPIDR_AFFLVL0] = state_id;
84 req_state->pwr_domain_state[MPIDR_AFFLVL1] = state_id;
85
86 break;
87
88 default:
89 ERROR("%s: unsupported state id (%d)\n", __func__, state_id);
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +080090 ret = PSCI_E_INVALID_PARAMS;
91 break;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070092 }
93
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +080094 return ret;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070095}
96
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +080097int32_t tegra_soc_pwr_domain_suspend(const psci_power_state_t *target_state)
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070098{
99 const plat_local_state_t *pwr_domain_state;
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800100 uint8_t stateid_afflvl0, stateid_afflvl2;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700101 plat_params_from_bl2_t *params_from_bl2 = bl31_get_plat_params();
102 uint64_t smmu_ctx_base;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700103 uint32_t val;
Vignesh Radhakrishnand7a5c252017-05-25 16:27:42 -0700104 mce_cstate_info_t sc7_cstate_info = {
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800105 .cluster = (uint32_t)TEGRA_NVG_CLUSTER_CC6,
106 .system = (uint32_t)TEGRA_NVG_SYSTEM_SC7,
107 .system_state_force = 1U,
108 .update_wake_mask = 1U,
Vignesh Radhakrishnand7a5c252017-05-25 16:27:42 -0700109 };
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800110 uint32_t cpu = plat_my_core_pos();
Vignesh Radhakrishnand7a5c252017-05-25 16:27:42 -0700111 int32_t ret = 0;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700112
113 /* get the state ID */
114 pwr_domain_state = target_state->pwr_domain_state;
115 stateid_afflvl0 = pwr_domain_state[MPIDR_AFFLVL0] &
Varun Wadekar362a6b22017-11-10 11:04:42 -0800116 TEGRA194_STATE_ID_MASK;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700117 stateid_afflvl2 = pwr_domain_state[PLAT_MAX_PWR_LVL] &
Varun Wadekar362a6b22017-11-10 11:04:42 -0800118 TEGRA194_STATE_ID_MASK;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700119
120 if ((stateid_afflvl0 == PSTATE_ID_CORE_IDLE) ||
121 (stateid_afflvl0 == PSTATE_ID_CORE_POWERDN)) {
122
123 /* Enter CPU idle/powerdown */
Krishna Sitaramanc64afeb2017-01-23 16:15:44 -0800124 val = (stateid_afflvl0 == PSTATE_ID_CORE_IDLE) ?
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800125 (uint32_t)TEGRA_NVG_CORE_C6 : (uint32_t)TEGRA_NVG_CORE_C7;
126 ret = mce_command_handler((uint64_t)MCE_CMD_ENTER_CSTATE, (uint64_t)val,
Varun Wadekar56c64592019-12-03 08:50:57 -0800127 t19x_percpu_data[cpu].wake_time, 0);
Vignesh Radhakrishnand7a5c252017-05-25 16:27:42 -0700128 assert(ret == 0);
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700129
130 } else if (stateid_afflvl2 == PSTATE_ID_SOC_POWERDN) {
131
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700132 /* save 'Secure Boot' Processor Feature Config Register */
133 val = mmio_read_32(TEGRA_MISC_BASE + MISCREG_PFCFG);
Steven Kao4607f172017-10-23 18:35:14 +0800134 mmio_write_32(TEGRA_SCRATCH_BASE + SCRATCH_SECURE_BOOTP_FCFG, val);
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700135
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700136 /* save SMMU context */
137 smmu_ctx_base = params_from_bl2->tzdram_base +
Varun Wadekare0c222f2017-11-10 13:23:34 -0800138 tegra194_get_smmu_ctx_offset();
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700139 tegra_smmu_save_context((uintptr_t)smmu_ctx_base);
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700140
Steven Kao530b2172017-06-23 16:18:58 +0800141 /*
142 * Suspend SE, RNG1 and PKA1 only on silcon and fpga,
143 * since VDK does not support atomic se ctx save
144 */
145 if (tegra_platform_is_silicon() || tegra_platform_is_fpga()) {
146 ret = tegra_se_suspend();
147 assert(ret == 0);
148 }
149
Vignesh Radhakrishnand7a5c252017-05-25 16:27:42 -0700150 if (!tegra_fake_system_suspend) {
Vignesh Radhakrishnan0e2502f2017-04-10 15:07:39 -0700151
152 /* Prepare for system suspend */
Vignesh Radhakrishnand7a5c252017-05-25 16:27:42 -0700153 mce_update_cstate_info(&sc7_cstate_info);
Vignesh Radhakrishnan0e2502f2017-04-10 15:07:39 -0700154
155 do {
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800156 val = (uint32_t)mce_command_handler(
157 (uint32_t)MCE_CMD_IS_SC7_ALLOWED,
158 (uint32_t)TEGRA_NVG_CORE_C7,
Vignesh Radhakrishnan0e2502f2017-04-10 15:07:39 -0700159 MCE_CORE_SLEEP_TIME_INFINITE,
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800160 0U);
161 } while (val == 0U);
Tejal Kudav153ba222017-02-14 18:02:04 -0800162
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800163 /* Instruct the MCE to enter system suspend state */
164 ret = mce_command_handler(
165 (uint64_t)MCE_CMD_ENTER_CSTATE,
166 (uint64_t)TEGRA_NVG_CORE_C7,
167 MCE_CORE_SLEEP_TIME_INFINITE,
168 0U);
169 assert(ret == 0);
Varun Wadekarda865de2017-11-10 13:27:29 -0800170
171 /* set system suspend state for house-keeping */
172 tegra194_set_system_suspend_entry();
Vignesh Radhakrishnan0e2502f2017-04-10 15:07:39 -0700173 }
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800174 } else {
175 ; /* do nothing */
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700176 }
177
178 return PSCI_E_SUCCESS;
179}
180
181/*******************************************************************************
Varun Wadekar0723bb62017-10-16 15:57:17 -0700182 * Helper function to check if this is the last ON CPU in the cluster
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700183 ******************************************************************************/
Varun Wadekar0723bb62017-10-16 15:57:17 -0700184static bool tegra_last_on_cpu_in_cluster(const plat_local_state_t *states,
185 uint32_t ncpu)
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700186{
Varun Wadekar0723bb62017-10-16 15:57:17 -0700187 plat_local_state_t target;
188 bool last_on_cpu = true;
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800189 uint32_t num_cpus = ncpu, pos = 0;
Varun Wadekar0723bb62017-10-16 15:57:17 -0700190
191 do {
192 target = states[pos];
193 if (target != PLAT_MAX_OFF_STATE) {
194 last_on_cpu = false;
195 }
196 --num_cpus;
197 pos++;
198 } while (num_cpus != 0U);
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700199
Varun Wadekar0723bb62017-10-16 15:57:17 -0700200 return last_on_cpu;
201}
202
203/*******************************************************************************
204 * Helper function to get target power state for the cluster
205 ******************************************************************************/
206static plat_local_state_t tegra_get_afflvl1_pwr_state(const plat_local_state_t *states,
207 uint32_t ncpu)
208{
209 uint32_t core_pos = (uint32_t)read_mpidr() & (uint32_t)MPIDR_CPU_MASK;
210 plat_local_state_t target = states[core_pos];
211 mce_cstate_info_t cstate_info = { 0 };
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700212
213 /* CPU suspend */
Varun Wadekar0723bb62017-10-16 15:57:17 -0700214 if (target == PSTATE_ID_CORE_POWERDN) {
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700215
216 /* Program default wake mask */
Krishna Sitaramanc64afeb2017-01-23 16:15:44 -0800217 cstate_info.wake_mask = TEGRA194_CORE_WAKE_MASK;
218 cstate_info.update_wake_mask = 1;
219 mce_update_cstate_info(&cstate_info);
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700220 }
221
222 /* CPU off */
Varun Wadekar0723bb62017-10-16 15:57:17 -0700223 if (target == PLAT_MAX_OFF_STATE) {
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700224
225 /* Enable cluster powerdn from last CPU in the cluster */
Varun Wadekar0723bb62017-10-16 15:57:17 -0700226 if (tegra_last_on_cpu_in_cluster(states, ncpu)) {
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700227
Varun Wadekar0723bb62017-10-16 15:57:17 -0700228 /* Enable CC6 state and turn off wake mask */
229 cstate_info.cluster = (uint32_t)TEGRA_NVG_CLUSTER_CC6;
Krishna Sitaraman74813f92017-07-14 13:51:44 -0700230 cstate_info.update_wake_mask = 1U;
231 mce_update_cstate_info(&cstate_info);
232
233 } else {
Varun Wadekar0723bb62017-10-16 15:57:17 -0700234
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700235 /* Turn off wake_mask */
Krishna Sitaraman74813f92017-07-14 13:51:44 -0700236 cstate_info.update_wake_mask = 1U;
237 mce_update_cstate_info(&cstate_info);
Varun Wadekar0723bb62017-10-16 15:57:17 -0700238 target = PSCI_LOCAL_STATE_RUN;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700239 }
240 }
241
Varun Wadekar0723bb62017-10-16 15:57:17 -0700242 return target;
243}
244
245/*******************************************************************************
246 * Platform handler to calculate the proper target power level at the
247 * specified affinity level
248 ******************************************************************************/
249plat_local_state_t tegra_soc_get_target_pwr_state(uint32_t lvl,
250 const plat_local_state_t *states,
251 uint32_t ncpu)
252{
253 plat_local_state_t target = PSCI_LOCAL_STATE_RUN;
254 uint32_t cpu = plat_my_core_pos();
255
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700256 /* System Suspend */
Varun Wadekar0723bb62017-10-16 15:57:17 -0700257 if ((lvl == (uint32_t)MPIDR_AFFLVL2) && (states[cpu] == PSTATE_ID_SOC_POWERDN)) {
258 target = PSTATE_ID_SOC_POWERDN;
259 }
260
261 /* CPU off, CPU suspend */
262 if (lvl == (uint32_t)MPIDR_AFFLVL1) {
263 target = tegra_get_afflvl1_pwr_state(states, ncpu);
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800264 }
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700265
Varun Wadekar0723bb62017-10-16 15:57:17 -0700266 /* target cluster/system state */
267 return target;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700268}
269
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800270int32_t tegra_soc_pwr_domain_power_down_wfi(const psci_power_state_t *target_state)
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700271{
272 const plat_local_state_t *pwr_domain_state =
273 target_state->pwr_domain_state;
274 plat_params_from_bl2_t *params_from_bl2 = bl31_get_plat_params();
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800275 uint8_t stateid_afflvl2 = pwr_domain_state[PLAT_MAX_PWR_LVL] &
Varun Wadekar362a6b22017-11-10 11:04:42 -0800276 TEGRA194_STATE_ID_MASK;
Steven Kao55c2ce72016-12-23 15:51:32 +0800277 uint64_t val;
Vignesh Radhakrishnand7a5c252017-05-25 16:27:42 -0700278 u_register_t ns_sctlr_el1;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700279
280 if (stateid_afflvl2 == PSTATE_ID_SOC_POWERDN) {
281 /*
282 * The TZRAM loses power when we enter system suspend. To
283 * allow graceful exit from system suspend, we need to copy
284 * BL3-1 over to TZDRAM.
285 */
286 val = params_from_bl2->tzdram_base +
Varun Wadekare0c222f2017-11-10 13:23:34 -0800287 tegra194_get_cpu_reset_handler_size();
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700288 memcpy((void *)(uintptr_t)val, (void *)(uintptr_t)BL31_BASE,
289 (uintptr_t)&__BL31_END__ - (uintptr_t)BL31_BASE);
Vignesh Radhakrishnand7a5c252017-05-25 16:27:42 -0700290
Vignesh Radhakrishnand7a5c252017-05-25 16:27:42 -0700291 /*
292 * In fake suspend mode, ensure that the loopback procedure
293 * towards system suspend exit is started, instead of calling
294 * WFI. This is done by disabling both MMU's of EL1 & El3
295 * and calling tegra_secure_entrypoint().
296 */
297 if (tegra_fake_system_suspend) {
298
299 /*
300 * Disable EL1's MMU.
301 */
302 ns_sctlr_el1 = read_sctlr_el1();
303 ns_sctlr_el1 &= (~((u_register_t)SCTLR_M_BIT));
304 write_sctlr_el1(ns_sctlr_el1);
305
306 /*
307 * Disable MMU to power up the CPU in a "clean"
308 * state
309 */
310 disable_mmu_el3();
311 tegra_secure_entrypoint();
312 panic();
313 }
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700314 }
315
316 return PSCI_E_SUCCESS;
317}
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700318
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800319int32_t tegra_soc_pwr_domain_on(u_register_t mpidr)
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700320{
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800321 uint64_t target_cpu = mpidr & MPIDR_CPU_MASK;
322 uint64_t target_cluster = (mpidr & MPIDR_CLUSTER_MASK) >>
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700323 MPIDR_AFFINITY_BITS;
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800324 int32_t ret = 0;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700325
Varun Wadekara4e0a812017-10-17 10:53:33 -0700326 if (target_cluster > ((uint32_t)PLATFORM_CLUSTER_COUNT - 1U)) {
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700327 ERROR("%s: unsupported CPU (0x%lx)\n", __func__ , mpidr);
328 return PSCI_E_NOT_PRESENT;
329 }
330
331 /* construct the target CPU # */
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800332 target_cpu += (target_cluster << 1U);
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700333
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800334 ret = mce_command_handler((uint64_t)MCE_CMD_ONLINE_CORE, target_cpu, 0U, 0U);
335 if (ret < 0) {
336 return PSCI_E_DENIED;
337 }
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700338
339 return PSCI_E_SUCCESS;
340}
341
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800342int32_t tegra_soc_pwr_domain_on_finish(const psci_power_state_t *target_state)
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700343{
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800344 uint8_t stateid_afflvl2 = target_state->pwr_domain_state[PLAT_MAX_PWR_LVL];
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700345
346 /*
347 * Reset power state info for CPUs when onlining, we set
348 * deepest power when offlining a core but that may not be
349 * requested by non-secure sw which controls idle states. It
350 * will re-init this info from non-secure software when the
351 * core come online.
352 */
353
354 /*
355 * Check if we are exiting from deep sleep and restore SE
356 * context if we are.
357 */
358 if (stateid_afflvl2 == PSTATE_ID_SOC_POWERDN) {
Dilan Lee4e7a63c2017-08-10 16:01:42 +0800359
360 /*
361 * Enable strict checking after programming the GSC for
362 * enabling TZSRAM and TZDRAM
363 */
364 mce_enable_strict_checking();
365
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700366 /* Init SMMU */
Vignesh Radhakrishnan978887f2017-07-11 15:16:08 -0700367 tegra_smmu_init();
368
Steven Kao530b2172017-06-23 16:18:58 +0800369 /* Resume SE, RNG1 and PKA1 */
370 tegra_se_resume();
371
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700372 /*
373 * Reset power state info for the last core doing SC7
374 * entry and exit, we set deepest power state as CC7
375 * and SC7 for SC7 entry which may not be requested by
376 * non-secure SW which controls idle states.
377 */
378 }
379
380 return PSCI_E_SUCCESS;
381}
382
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800383int32_t tegra_soc_pwr_domain_off(const psci_power_state_t *target_state)
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700384{
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800385 uint64_t impl = (read_midr() >> MIDR_IMPL_SHIFT) & MIDR_IMPL_MASK;
Krishna Sitaraman74813f92017-07-14 13:51:44 -0700386 int32_t ret = 0;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700387
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800388 (void)target_state;
389
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700390 /* Disable Denver's DCO operations */
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800391 if (impl == DENVER_IMPL) {
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700392 denver_disable_dco();
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800393 }
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700394
395 /* Turn off CPU */
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800396 ret = mce_command_handler((uint64_t)MCE_CMD_ENTER_CSTATE,
397 (uint64_t)TEGRA_NVG_CORE_C7, MCE_CORE_SLEEP_TIME_INFINITE, 0U);
Krishna Sitaraman74813f92017-07-14 13:51:44 -0700398 assert(ret == 0);
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700399
400 return PSCI_E_SUCCESS;
401}
402
403__dead2 void tegra_soc_prepare_system_off(void)
404{
405 /* System power off */
406
407 /* SC8 */
408
409 wfi();
410
411 /* wait for the system to power down */
412 for (;;) {
413 ;
414 }
415}
416
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800417int32_t tegra_soc_prepare_system_reset(void)
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700418{
419 return PSCI_E_SUCCESS;
420}