blob: 71a666b803acf6cf654edcf0aa552e59fd1acd2c [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>
20#include <plat/common/platform.h>
Steven Kao530b2172017-06-23 16:18:58 +080021#include <se.h>
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070022#include <smmu.h>
Tejal Kudav153ba222017-02-14 18:02:04 -080023#include <t194_nvg.h>
Varun Wadekare0c222f2017-11-10 13:23:34 -080024#include <tegra194_private.h>
Steven Kao530b2172017-06-23 16:18:58 +080025#include <tegra_platform.h>
26#include <tegra_private.h>
Varun Wadekarecd6a5a2018-04-09 17:48:58 -070027
Varun Wadekar362a6b22017-11-10 11:04:42 -080028extern void tegra194_cpu_reset_handler(void);
29extern 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 /*
68 * Clean percpu_data[cpu] to DRAM. This needs to be done to ensure that
69 * the correct value is read in tegra_soc_pwr_domain_suspend(), which
70 * is called with caches disabled. It is possible to read a stale value
71 * from DRAM in that function, because the L2 cache is not flushed
72 * 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,
Krishna Sitaramanc64afeb2017-01-23 16:15:44 -0800127 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/*******************************************************************************
182 * Platform handler to calculate the proper target power level at the
183 * specified affinity level
184 ******************************************************************************/
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800185plat_local_state_t tegra_soc_get_target_pwr_state(uint32_t lvl,
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700186 const plat_local_state_t *states,
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800187 uint32_t ncpu)
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700188{
189 plat_local_state_t target = *states;
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800190 int32_t cluster_powerdn = 1;
191 uint32_t core_pos = (uint32_t)read_mpidr() & MPIDR_CPU_MASK;
192 uint32_t num_cpus = ncpu, pos = 0;
Krishna Sitaramanc64afeb2017-01-23 16:15:44 -0800193 mce_cstate_info_t cstate_info = { 0 };
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700194
195 /* get the current core's power state */
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800196 target = states[core_pos];
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700197
198 /* CPU suspend */
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800199 if ((lvl == MPIDR_AFFLVL1) && (target == PSTATE_ID_CORE_POWERDN)) {
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700200
201 /* Program default wake mask */
Krishna Sitaramanc64afeb2017-01-23 16:15:44 -0800202 cstate_info.wake_mask = TEGRA194_CORE_WAKE_MASK;
203 cstate_info.update_wake_mask = 1;
204 mce_update_cstate_info(&cstate_info);
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700205 }
206
207 /* CPU off */
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800208 if ((lvl == MPIDR_AFFLVL1) && (target == PLAT_MAX_OFF_STATE)) {
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700209
210 /* find out the number of ON cpus in the cluster */
211 do {
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800212 target = states[pos];
213 if (target != PLAT_MAX_OFF_STATE) {
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700214 cluster_powerdn = 0;
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800215 }
216 --num_cpus;
217 pos++;
218 } while (num_cpus != 0U);
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700219
220 /* Enable cluster powerdn from last CPU in the cluster */
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800221 if (cluster_powerdn != 0) {
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700222
Krishna Sitaraman74813f92017-07-14 13:51:44 -0700223 /* Enable CC6 */
224 /* todo */
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700225
Krishna Sitaraman74813f92017-07-14 13:51:44 -0700226 /* If cluster group needs to be railgated, request CG7 */
227 /* todo */
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700228
Krishna Sitaraman74813f92017-07-14 13:51:44 -0700229 /* Turn off wake mask */
230 cstate_info.update_wake_mask = 1U;
231 mce_update_cstate_info(&cstate_info);
232
233 } else {
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700234 /* Turn off wake_mask */
Krishna Sitaraman74813f92017-07-14 13:51:44 -0700235 cstate_info.update_wake_mask = 1U;
236 mce_update_cstate_info(&cstate_info);
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700237 }
238 }
239
240 /* System Suspend */
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800241 if ((lvl == MPIDR_AFFLVL2) || (target == PSTATE_ID_SOC_POWERDN)) {
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700242 return PSTATE_ID_SOC_POWERDN;
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800243 }
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700244
245 /* default state */
246 return PSCI_LOCAL_STATE_RUN;
247}
248
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800249int32_t tegra_soc_pwr_domain_power_down_wfi(const psci_power_state_t *target_state)
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700250{
251 const plat_local_state_t *pwr_domain_state =
252 target_state->pwr_domain_state;
253 plat_params_from_bl2_t *params_from_bl2 = bl31_get_plat_params();
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800254 uint8_t stateid_afflvl2 = pwr_domain_state[PLAT_MAX_PWR_LVL] &
Varun Wadekar362a6b22017-11-10 11:04:42 -0800255 TEGRA194_STATE_ID_MASK;
Steven Kao55c2ce72016-12-23 15:51:32 +0800256 uint64_t val;
Vignesh Radhakrishnand7a5c252017-05-25 16:27:42 -0700257 u_register_t ns_sctlr_el1;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700258
259 if (stateid_afflvl2 == PSTATE_ID_SOC_POWERDN) {
260 /*
261 * The TZRAM loses power when we enter system suspend. To
262 * allow graceful exit from system suspend, we need to copy
263 * BL3-1 over to TZDRAM.
264 */
265 val = params_from_bl2->tzdram_base +
Varun Wadekare0c222f2017-11-10 13:23:34 -0800266 tegra194_get_cpu_reset_handler_size();
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700267 memcpy((void *)(uintptr_t)val, (void *)(uintptr_t)BL31_BASE,
268 (uintptr_t)&__BL31_END__ - (uintptr_t)BL31_BASE);
Vignesh Radhakrishnand7a5c252017-05-25 16:27:42 -0700269
Vignesh Radhakrishnand7a5c252017-05-25 16:27:42 -0700270 /*
271 * In fake suspend mode, ensure that the loopback procedure
272 * towards system suspend exit is started, instead of calling
273 * WFI. This is done by disabling both MMU's of EL1 & El3
274 * and calling tegra_secure_entrypoint().
275 */
276 if (tegra_fake_system_suspend) {
277
278 /*
279 * Disable EL1's MMU.
280 */
281 ns_sctlr_el1 = read_sctlr_el1();
282 ns_sctlr_el1 &= (~((u_register_t)SCTLR_M_BIT));
283 write_sctlr_el1(ns_sctlr_el1);
284
285 /*
286 * Disable MMU to power up the CPU in a "clean"
287 * state
288 */
289 disable_mmu_el3();
290 tegra_secure_entrypoint();
291 panic();
292 }
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700293 }
294
295 return PSCI_E_SUCCESS;
296}
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700297
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800298int32_t tegra_soc_pwr_domain_on(u_register_t mpidr)
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700299{
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800300 uint64_t target_cpu = mpidr & MPIDR_CPU_MASK;
301 uint64_t target_cluster = (mpidr & MPIDR_CLUSTER_MASK) >>
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700302 MPIDR_AFFINITY_BITS;
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800303 int32_t ret = 0;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700304
Varun Wadekara4e0a812017-10-17 10:53:33 -0700305 if (target_cluster > ((uint32_t)PLATFORM_CLUSTER_COUNT - 1U)) {
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700306 ERROR("%s: unsupported CPU (0x%lx)\n", __func__ , mpidr);
307 return PSCI_E_NOT_PRESENT;
308 }
309
310 /* construct the target CPU # */
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800311 target_cpu += (target_cluster << 1U);
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700312
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800313 ret = mce_command_handler((uint64_t)MCE_CMD_ONLINE_CORE, target_cpu, 0U, 0U);
314 if (ret < 0) {
315 return PSCI_E_DENIED;
316 }
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700317
318 return PSCI_E_SUCCESS;
319}
320
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800321int32_t tegra_soc_pwr_domain_on_finish(const psci_power_state_t *target_state)
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700322{
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800323 uint8_t stateid_afflvl2 = target_state->pwr_domain_state[PLAT_MAX_PWR_LVL];
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700324
325 /*
326 * Reset power state info for CPUs when onlining, we set
327 * deepest power when offlining a core but that may not be
328 * requested by non-secure sw which controls idle states. It
329 * will re-init this info from non-secure software when the
330 * core come online.
331 */
332
333 /*
334 * Check if we are exiting from deep sleep and restore SE
335 * context if we are.
336 */
337 if (stateid_afflvl2 == PSTATE_ID_SOC_POWERDN) {
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700338 /* Init SMMU */
Vignesh Radhakrishnan978887f2017-07-11 15:16:08 -0700339 tegra_smmu_init();
340
Steven Kao530b2172017-06-23 16:18:58 +0800341 /* Resume SE, RNG1 and PKA1 */
342 tegra_se_resume();
343
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700344 /*
345 * Reset power state info for the last core doing SC7
346 * entry and exit, we set deepest power state as CC7
347 * and SC7 for SC7 entry which may not be requested by
348 * non-secure SW which controls idle states.
349 */
350 }
351
352 return PSCI_E_SUCCESS;
353}
354
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800355int32_t tegra_soc_pwr_domain_off(const psci_power_state_t *target_state)
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700356{
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800357 uint64_t impl = (read_midr() >> MIDR_IMPL_SHIFT) & MIDR_IMPL_MASK;
Krishna Sitaraman74813f92017-07-14 13:51:44 -0700358 int32_t ret = 0;
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700359
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800360 (void)target_state;
361
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700362 /* Disable Denver's DCO operations */
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800363 if (impl == DENVER_IMPL) {
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700364 denver_disable_dco();
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800365 }
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700366
367 /* Turn off CPU */
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800368 ret = mce_command_handler((uint64_t)MCE_CMD_ENTER_CSTATE,
369 (uint64_t)TEGRA_NVG_CORE_C7, MCE_CORE_SLEEP_TIME_INFINITE, 0U);
Krishna Sitaraman74813f92017-07-14 13:51:44 -0700370 assert(ret == 0);
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700371
372 return PSCI_E_SUCCESS;
373}
374
375__dead2 void tegra_soc_prepare_system_off(void)
376{
377 /* System power off */
378
379 /* SC8 */
380
381 wfi();
382
383 /* wait for the system to power down */
384 for (;;) {
385 ;
386 }
387}
388
Anthony Zhou8bf6d4e2017-09-20 17:44:43 +0800389int32_t tegra_soc_prepare_system_reset(void)
Varun Wadekarecd6a5a2018-04-09 17:48:58 -0700390{
391 return PSCI_E_SUCCESS;
392}