blob: 8f88e2887b2cd3eaa714e621ecc6c8ae1c8b0bbb [file] [log] [blame]
Varun Wadekar921b9062015-08-25 17:03:14 +05301/*
Antonio Nino Diaz4b32e622018-08-16 16:52:57 +01002 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
Varun Wadekarb5b15b22018-05-17 10:10:25 -07003 * Copyright (c) 2020, NVIDIA Corporation. All rights reserved.
Varun Wadekar921b9062015-08-25 17:03:14 +05304 *
dp-armfa3cf0b2017-05-03 09:38:09 +01005 * SPDX-License-Identifier: BSD-3-Clause
Varun Wadekar921b9062015-08-25 17:03:14 +05306 */
7
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008#include <assert.h>
Jeetesh Burman50cd1062018-07-19 13:07:23 +05309#include <stdbool.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010#include <string.h>
11
Varun Wadekarabd153c2015-09-14 09:31:39 +053012#include <arch.h>
13#include <arch_helpers.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000014#include <common/bl_common.h>
15#include <common/debug.h>
Varun Wadekara64806a2016-01-05 15:17:41 -080016#include <context.h>
Harvey Hsiehfbdfce12016-11-23 19:13:08 +080017#include <cortex_a57.h>
Varun Wadekar89645092016-02-09 14:55:44 -080018#include <denver.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000019#include <lib/el3_runtime/context_mgmt.h>
20#include <lib/psci/psci.h>
21#include <plat/common/platform.h>
22
Jeetesh Burman50cd1062018-07-19 13:07:23 +053023#include <bpmp_ipc.h>
Varun Wadekarabd153c2015-09-14 09:31:39 +053024#include <mce.h>
Pritesh Raithatha75c94432018-08-03 15:48:15 +053025#include <memctrl_v2.h>
Jeetesh Burman50cd1062018-07-19 13:07:23 +053026#include <security_engine.h>
Varun Wadekarb8776152016-03-03 13:52:52 -080027#include <smmu.h>
Varun Wadekar782c83d2017-03-14 14:25:35 -070028#include <t18x_ari.h>
Varun Wadekarfa887672017-11-08 14:45:08 -080029#include <tegra186_private.h>
Varun Wadekar921b9062015-08-25 17:03:14 +053030#include <tegra_private.h>
31
Antonio Nino Diaz4b32e622018-08-16 16:52:57 +010032extern void memcpy16(void *dest, const void *src, unsigned int length);
Varun Wadekard66ee542016-02-29 10:24:30 -080033
Varun Wadekar42236572016-01-18 19:03:19 -080034/* state id mask */
Anthony Zhou5d1bb052017-03-03 16:23:08 +080035#define TEGRA186_STATE_ID_MASK 0xFU
Varun Wadekar42236572016-01-18 19:03:19 -080036/* constants to get power state's wake time */
Anthony Zhou5d1bb052017-03-03 16:23:08 +080037#define TEGRA186_WAKE_TIME_MASK 0x0FFFFFF0U
38#define TEGRA186_WAKE_TIME_SHIFT 4U
Varun Wadekar698e7c62016-03-28 15:05:03 -070039/* default core wake mask for CPU_SUSPEND */
Anthony Zhou5d1bb052017-03-03 16:23:08 +080040#define TEGRA186_CORE_WAKE_MASK 0x180cU
Varun Wadekarb8776152016-03-03 13:52:52 -080041/* context size to save during system suspend */
Anthony Zhou5d1bb052017-03-03 16:23:08 +080042#define TEGRA186_SE_CONTEXT_SIZE 3U
Varun Wadekar42236572016-01-18 19:03:19 -080043
Varun Wadekarb8776152016-03-03 13:52:52 -080044static uint32_t se_regs[TEGRA186_SE_CONTEXT_SIZE];
Anthony Zhou5d1bb052017-03-03 16:23:08 +080045static struct tegra_psci_percpu_data {
46 uint32_t wake_time;
47} __aligned(CACHE_WRITEBACK_GRANULE) tegra_percpu_data[PLATFORM_CORE_COUNT];
Varun Wadekar42236572016-01-18 19:03:19 -080048
Anthony Zhou5d1bb052017-03-03 16:23:08 +080049int32_t tegra_soc_validate_power_state(uint32_t power_state,
Varun Wadekarc2c3a2a2016-01-08 17:38:51 -080050 psci_power_state_t *req_state)
Varun Wadekar921b9062015-08-25 17:03:14 +053051{
Anthony Zhou5d1bb052017-03-03 16:23:08 +080052 uint8_t state_id = (uint8_t)psci_get_pstate_id(power_state) & TEGRA186_STATE_ID_MASK;
53 uint32_t cpu = plat_my_core_pos();
54 int32_t ret = PSCI_E_SUCCESS;
Varun Wadekar89645092016-02-09 14:55:44 -080055
Krishna Sitaraman86569d12016-08-18 15:41:21 -070056 /* save the core wake time (in TSC ticks)*/
Anthony Zhou5d1bb052017-03-03 16:23:08 +080057 tegra_percpu_data[cpu].wake_time = (power_state & TEGRA186_WAKE_TIME_MASK)
Krishna Sitaraman86569d12016-08-18 15:41:21 -070058 << TEGRA186_WAKE_TIME_SHIFT;
Varun Wadekar42236572016-01-18 19:03:19 -080059
Mustafa Yigit Bilgenf40bc2c2016-09-02 19:30:22 -070060 /*
61 * Clean percpu_data[cpu] to DRAM. This needs to be done to ensure that
62 * the correct value is read in tegra_soc_pwr_domain_suspend(), which
63 * is called with caches disabled. It is possible to read a stale value
64 * from DRAM in that function, because the L2 cache is not flushed
65 * unless the cluster is entering CC6/CC7.
66 */
Anthony Zhou5d1bb052017-03-03 16:23:08 +080067 clean_dcache_range((uint64_t)&tegra_percpu_data[cpu],
68 sizeof(tegra_percpu_data[cpu]));
Mustafa Yigit Bilgenf40bc2c2016-09-02 19:30:22 -070069
Varun Wadekar42236572016-01-18 19:03:19 -080070 /* Sanity check the requested state id */
71 switch (state_id) {
72 case PSTATE_ID_CORE_IDLE:
73 case PSTATE_ID_CORE_POWERDN:
Varun Wadekar4a0b37a2016-04-09 00:36:42 -070074
Varun Wadekard969c582020-07-23 10:31:42 -070075 if (psci_get_pstate_type(power_state) != PSTATE_TYPE_POWERDOWN) {
76 ret = PSCI_E_INVALID_PARAMS;
77 break;
78 }
79
Varun Wadekar4a0b37a2016-04-09 00:36:42 -070080 /* Core powerdown request */
Varun Wadekar42236572016-01-18 19:03:19 -080081 req_state->pwr_domain_state[MPIDR_AFFLVL0] = state_id;
Varun Wadekar4a0b37a2016-04-09 00:36:42 -070082 req_state->pwr_domain_state[MPIDR_AFFLVL1] = state_id;
Varun Wadekar42236572016-01-18 19:03:19 -080083
84 break;
85
86 default:
87 ERROR("%s: unsupported state id (%d)\n", __func__, state_id);
Anthony Zhou5d1bb052017-03-03 16:23:08 +080088 ret = PSCI_E_INVALID_PARAMS;
89 break;
Varun Wadekar42236572016-01-18 19:03:19 -080090 }
91
Anthony Zhou5d1bb052017-03-03 16:23:08 +080092 return ret;
Varun Wadekar42236572016-01-18 19:03:19 -080093}
94
Varun Wadekarb5b15b22018-05-17 10:10:25 -070095int32_t tegra_soc_cpu_standby(plat_local_state_t cpu_state)
96{
97 (void)cpu_state;
98 return PSCI_E_SUCCESS;
99}
100
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800101int32_t tegra_soc_pwr_domain_suspend(const psci_power_state_t *target_state)
Varun Wadekar42236572016-01-18 19:03:19 -0800102{
103 const plat_local_state_t *pwr_domain_state;
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800104 uint8_t stateid_afflvl0, stateid_afflvl2;
105 uint32_t cpu = plat_my_core_pos();
106 const plat_params_from_bl2_t *params_from_bl2 = bl31_get_plat_params();
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700107 mce_cstate_info_t cstate_info = { 0 };
Pritesh Raithatha75c94432018-08-03 15:48:15 +0530108 uint64_t mc_ctx_base;
Varun Wadekarb8776152016-03-03 13:52:52 -0800109 uint32_t val;
110
Varun Wadekar42236572016-01-18 19:03:19 -0800111 /* get the state ID */
112 pwr_domain_state = target_state->pwr_domain_state;
113 stateid_afflvl0 = pwr_domain_state[MPIDR_AFFLVL0] &
114 TEGRA186_STATE_ID_MASK;
Varun Wadekarb8776152016-03-03 13:52:52 -0800115 stateid_afflvl2 = pwr_domain_state[PLAT_MAX_PWR_LVL] &
116 TEGRA186_STATE_ID_MASK;
Varun Wadekar42236572016-01-18 19:03:19 -0800117
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700118 if ((stateid_afflvl0 == PSTATE_ID_CORE_IDLE) ||
119 (stateid_afflvl0 == PSTATE_ID_CORE_POWERDN)) {
Varun Wadekar42236572016-01-18 19:03:19 -0800120
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700121 /* Enter CPU idle/powerdown */
122 val = (stateid_afflvl0 == PSTATE_ID_CORE_IDLE) ?
Anthony Zhou0e07e452017-07-26 17:16:54 +0800123 (uint32_t)TEGRA_ARI_CORE_C6 : (uint32_t)TEGRA_ARI_CORE_C7;
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800124 (void)mce_command_handler((uint64_t)MCE_CMD_ENTER_CSTATE, (uint64_t)val,
125 tegra_percpu_data[cpu].wake_time, 0U);
Varun Wadekarc2c3a2a2016-01-08 17:38:51 -0800126
Varun Wadekarb8776152016-03-03 13:52:52 -0800127 } else if (stateid_afflvl2 == PSTATE_ID_SOC_POWERDN) {
128
Varun Wadekarb8776152016-03-03 13:52:52 -0800129 /* save SE registers */
130 se_regs[0] = mmio_read_32(TEGRA_SE0_BASE +
131 SE_MUTEX_WATCHDOG_NS_LIMIT);
132 se_regs[1] = mmio_read_32(TEGRA_RNG1_BASE +
133 RNG_MUTEX_WATCHDOG_NS_LIMIT);
134 se_regs[2] = mmio_read_32(TEGRA_PKA1_BASE +
135 PKA_MUTEX_WATCHDOG_NS_LIMIT);
136
137 /* save 'Secure Boot' Processor Feature Config Register */
138 val = mmio_read_32(TEGRA_MISC_BASE + MISCREG_PFCFG);
Steven Kao186485e2017-10-23 18:22:09 +0800139 mmio_write_32(TEGRA_SCRATCH_BASE + SCRATCH_SECURE_BOOTP_FCFG, val);
Varun Wadekarb8776152016-03-03 13:52:52 -0800140
Pritesh Raithatha75c94432018-08-03 15:48:15 +0530141 /* save MC context to TZDRAM */
Varun Wadekar17ad11a2018-11-09 09:08:16 -0800142 mc_ctx_base = params_from_bl2->tzdram_base;
Pritesh Raithatha75c94432018-08-03 15:48:15 +0530143 tegra_mc_save_context((uintptr_t)mc_ctx_base);
Varun Wadekarb8776152016-03-03 13:52:52 -0800144
145 /* Prepare for system suspend */
Anthony Zhou0e07e452017-07-26 17:16:54 +0800146 cstate_info.cluster = (uint32_t)TEGRA_ARI_CLUSTER_CC7;
147 cstate_info.system = (uint32_t)TEGRA_ARI_SYSTEM_SC7;
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700148 cstate_info.system_state_force = 1;
149 cstate_info.update_wake_mask = 1;
150 mce_update_cstate_info(&cstate_info);
Varun Wadekar2a7d87e2017-11-10 10:26:57 -0800151
Varun Wadekara9002bb2016-03-28 15:11:43 -0700152 /* Loop until system suspend is allowed */
153 do {
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800154 val = (uint32_t)mce_command_handler(
155 (uint64_t)MCE_CMD_IS_SC7_ALLOWED,
Anthony Zhou0e07e452017-07-26 17:16:54 +0800156 (uint64_t)TEGRA_ARI_CORE_C7,
Varun Wadekara9002bb2016-03-28 15:11:43 -0700157 MCE_CORE_SLEEP_TIME_INFINITE,
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800158 0U);
159 } while (val == 0U);
Varun Wadekara9002bb2016-03-28 15:11:43 -0700160
Varun Wadekar93bed2a2016-03-18 13:07:33 -0700161 /* Instruct the MCE to enter system suspend state */
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800162 (void)mce_command_handler((uint64_t)MCE_CMD_ENTER_CSTATE,
Anthony Zhou0e07e452017-07-26 17:16:54 +0800163 (uint64_t)TEGRA_ARI_CORE_C7, MCE_CORE_SLEEP_TIME_INFINITE, 0U);
Varun Wadekar2a7d87e2017-11-10 10:26:57 -0800164
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800165 } else {
166 ; /* do nothing */
Varun Wadekar921b9062015-08-25 17:03:14 +0530167 }
168
169 return PSCI_E_SUCCESS;
170}
Varun Wadekarabd153c2015-09-14 09:31:39 +0530171
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700172/*******************************************************************************
Varun Wadekar1e7250b2017-05-24 08:47:15 -0700173 * Helper function to check if this is the last ON CPU in the cluster
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700174 ******************************************************************************/
Varun Wadekar1e7250b2017-05-24 08:47:15 -0700175static bool tegra_last_cpu_in_cluster(const plat_local_state_t *states,
176 uint32_t ncpu)
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700177{
Varun Wadekar1e7250b2017-05-24 08:47:15 -0700178 plat_local_state_t target;
179 bool last_on_cpu = true;
180 uint32_t num_cpus = ncpu, pos = 0;
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700181
Varun Wadekar1e7250b2017-05-24 08:47:15 -0700182 do {
183 target = states[pos];
184 if (target != PLAT_MAX_OFF_STATE) {
185 last_on_cpu = false;
186 }
187 --num_cpus;
188 pos++;
189 } while (num_cpus != 0U);
190
191 return last_on_cpu;
192}
193
194/*******************************************************************************
195 * Helper function to get target power state for the cluster
196 ******************************************************************************/
197static plat_local_state_t tegra_get_afflvl1_pwr_state(const plat_local_state_t *states,
198 uint32_t ncpu)
199{
200 uint32_t core_pos = (uint32_t)read_mpidr() & (uint32_t)MPIDR_CPU_MASK;
201 uint32_t cpu = plat_my_core_pos();
202 int32_t ret;
203 plat_local_state_t target = states[core_pos];
204 mce_cstate_info_t cstate_info = { 0 };
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700205
206 /* CPU suspend */
Varun Wadekar1e7250b2017-05-24 08:47:15 -0700207 if (target == PSTATE_ID_CORE_POWERDN) {
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700208 /* Program default wake mask */
209 cstate_info.wake_mask = TEGRA186_CORE_WAKE_MASK;
210 cstate_info.update_wake_mask = 1;
211 mce_update_cstate_info(&cstate_info);
212
213 /* Check if CCx state is allowed. */
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800214 ret = mce_command_handler((uint64_t)MCE_CMD_IS_CCX_ALLOWED,
Varun Wadekar1e7250b2017-05-24 08:47:15 -0700215 (uint64_t)TEGRA_ARI_CORE_C7,
216 tegra_percpu_data[cpu].wake_time,
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800217 0U);
Varun Wadekar1e7250b2017-05-24 08:47:15 -0700218 if (ret == 0) {
219 target = PSCI_LOCAL_STATE_RUN;
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800220 }
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700221 }
222
223 /* CPU off */
Varun Wadekar1e7250b2017-05-24 08:47:15 -0700224 if (target == PLAT_MAX_OFF_STATE) {
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700225 /* Enable cluster powerdn from last CPU in the cluster */
Varun Wadekar1e7250b2017-05-24 08:47:15 -0700226 if (tegra_last_cpu_in_cluster(states, ncpu)) {
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700227 /* Enable CC7 state and turn off wake mask */
Varun Wadekar1e7250b2017-05-24 08:47:15 -0700228 cstate_info.cluster = (uint32_t)TEGRA_ARI_CLUSTER_CC7;
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700229 cstate_info.update_wake_mask = 1;
230 mce_update_cstate_info(&cstate_info);
231
232 /* Check if CCx state is allowed. */
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800233 ret = mce_command_handler((uint64_t)MCE_CMD_IS_CCX_ALLOWED,
Varun Wadekar1e7250b2017-05-24 08:47:15 -0700234 (uint64_t)TEGRA_ARI_CORE_C7,
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700235 MCE_CORE_SLEEP_TIME_INFINITE,
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800236 0U);
Varun Wadekar1e7250b2017-05-24 08:47:15 -0700237 if (ret == 0) {
238 target = PSCI_LOCAL_STATE_RUN;
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800239 }
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700240
241 } else {
242
243 /* Turn off wake_mask */
244 cstate_info.update_wake_mask = 1;
245 mce_update_cstate_info(&cstate_info);
Varun Wadekar1e7250b2017-05-24 08:47:15 -0700246 target = PSCI_LOCAL_STATE_RUN;
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700247 }
248 }
249
Varun Wadekar1e7250b2017-05-24 08:47:15 -0700250 return target;
251}
252
253/*******************************************************************************
254 * Platform handler to calculate the proper target power level at the
255 * specified affinity level
256 ******************************************************************************/
Anthony Zhou0e07e452017-07-26 17:16:54 +0800257plat_local_state_t tegra_soc_get_target_pwr_state(uint32_t lvl,
Varun Wadekar1e7250b2017-05-24 08:47:15 -0700258 const plat_local_state_t *states,
259 uint32_t ncpu)
260{
261 plat_local_state_t target = PSCI_LOCAL_STATE_RUN;
Anthony Zhou0e07e452017-07-26 17:16:54 +0800262 uint32_t cpu = plat_my_core_pos();
Varun Wadekar1e7250b2017-05-24 08:47:15 -0700263
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700264 /* System Suspend */
Varun Wadekar1e7250b2017-05-24 08:47:15 -0700265 if ((lvl == (uint32_t)MPIDR_AFFLVL2) &&
266 (states[cpu] == PSTATE_ID_SOC_POWERDN)) {
267 target = PSTATE_ID_SOC_POWERDN;
268 }
269
270 /* CPU off, CPU suspend */
271 if (lvl == (uint32_t)MPIDR_AFFLVL1) {
272 target = tegra_get_afflvl1_pwr_state(states, ncpu);
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800273 }
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700274
Varun Wadekar1e7250b2017-05-24 08:47:15 -0700275 /* target cluster/system state */
276 return target;
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700277}
278
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800279int32_t tegra_soc_pwr_domain_power_down_wfi(const psci_power_state_t *target_state)
Varun Wadekar93bed2a2016-03-18 13:07:33 -0700280{
281 const plat_local_state_t *pwr_domain_state =
282 target_state->pwr_domain_state;
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800283 const plat_params_from_bl2_t *params_from_bl2 = bl31_get_plat_params();
284 uint8_t stateid_afflvl2 = pwr_domain_state[PLAT_MAX_PWR_LVL] &
Varun Wadekar93bed2a2016-03-18 13:07:33 -0700285 TEGRA186_STATE_ID_MASK;
Steven Kao235e9c32016-12-23 15:43:17 +0800286 uint64_t val;
Jeetesh Burman50cd1062018-07-19 13:07:23 +0530287 uint64_t src_len_in_bytes = (uint64_t)(((uintptr_t)(&__BL31_END__) -
288 (uintptr_t)BL31_BASE));
289 int32_t ret;
Varun Wadekar93bed2a2016-03-18 13:07:33 -0700290
291 if (stateid_afflvl2 == PSTATE_ID_SOC_POWERDN) {
Jeetesh Burman50cd1062018-07-19 13:07:23 +0530292 val = params_from_bl2->tzdram_base +
Varun Wadekar17ad11a2018-11-09 09:08:16 -0800293 tegra186_get_mc_ctx_size();
Jeetesh Burman50cd1062018-07-19 13:07:23 +0530294
295 /* Initialise communication channel with BPMP */
296 assert(tegra_bpmp_ipc_init() == 0);
297
298 /* Enable SE clock */
Varun Wadekare55c27b2018-09-13 08:47:43 -0700299 ret = tegra_bpmp_ipc_enable_clock(TEGRA186_CLK_SE);
Jeetesh Burman50cd1062018-07-19 13:07:23 +0530300 if (ret != 0) {
301 ERROR("Failed to enable clock\n");
302 return ret;
303 }
304
305 /*
306 * Generate/save SHA256 of ATF during SC7 entry
307 */
308 if (tegra_se_save_sha256_hash(BL31_BASE,
309 (uint32_t)src_len_in_bytes) != 0) {
310 ERROR("Hash calculation failed. Reboot\n");
311 (void)tegra_soc_prepare_system_reset();
312 }
313
Varun Wadekar93bed2a2016-03-18 13:07:33 -0700314 /*
315 * The TZRAM loses power when we enter system suspend. To
316 * allow graceful exit from system suspend, we need to copy
317 * BL3-1 over to TZDRAM.
318 */
319 val = params_from_bl2->tzdram_base +
Varun Wadekar17ad11a2018-11-09 09:08:16 -0800320 tegra186_get_mc_ctx_size();
Varun Wadekar93bed2a2016-03-18 13:07:33 -0700321 memcpy16((void *)(uintptr_t)val, (void *)(uintptr_t)BL31_BASE,
Varun Wadekara6c69ab2019-01-11 10:48:47 -0800322 (uintptr_t)BL31_END - (uintptr_t)BL31_BASE);
Jeetesh Burman50cd1062018-07-19 13:07:23 +0530323
Varun Wadekar17ad11a2018-11-09 09:08:16 -0800324 /*
325 * Save code base and size; this would be used by SC7-RF to
326 * verify binary
327 */
328 mmio_write_32(TEGRA_SCRATCH_BASE + SECURE_SCRATCH_RSV68_LO,
329 (uint32_t)val);
330 mmio_write_32(TEGRA_SCRATCH_BASE + SECURE_SCRATCH_RSV0_HI,
331 (uint32_t)src_len_in_bytes);
332
Varun Wadekare55c27b2018-09-13 08:47:43 -0700333 ret = tegra_bpmp_ipc_disable_clock(TEGRA186_CLK_SE);
Jeetesh Burman50cd1062018-07-19 13:07:23 +0530334 if (ret != 0) {
335 ERROR("Failed to disable clock\n");
336 return ret;
337 }
Varun Wadekar93bed2a2016-03-18 13:07:33 -0700338 }
339
340 return PSCI_E_SUCCESS;
341}
342
Varun Wadekarb5b15b22018-05-17 10:10:25 -0700343int32_t tegra_soc_pwr_domain_suspend_pwrdown_early(const psci_power_state_t *target_state)
344{
345 return PSCI_E_NOT_SUPPORTED;
346}
347
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800348int32_t tegra_soc_pwr_domain_on(u_register_t mpidr)
Varun Wadekarabd153c2015-09-14 09:31:39 +0530349{
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800350 int32_t ret = PSCI_E_SUCCESS;
Anthony Zhou5a4ce002017-06-28 16:49:16 +0800351 uint64_t target_cpu = mpidr & MPIDR_CPU_MASK;
352 uint64_t target_cluster = (mpidr & MPIDR_CLUSTER_MASK) >>
353 MPIDR_AFFINITY_BITS;
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800354
Varun Wadekara2dd0b32017-10-17 10:29:24 -0700355 if (target_cluster > ((uint32_t)PLATFORM_CLUSTER_COUNT - 1U)) {
Varun Wadekarabd153c2015-09-14 09:31:39 +0530356
Varun Wadekarabd153c2015-09-14 09:31:39 +0530357 ERROR("%s: unsupported CPU (0x%lx)\n", __func__, mpidr);
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800358 ret = PSCI_E_NOT_PRESENT;
Varun Wadekarabd153c2015-09-14 09:31:39 +0530359
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800360 } else {
361 /* construct the target CPU # */
362 target_cpu |= (target_cluster << 2);
Varun Wadekarabd153c2015-09-14 09:31:39 +0530363
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800364 (void)mce_command_handler((uint64_t)MCE_CMD_ONLINE_CORE, target_cpu, 0U, 0U);
365 }
Varun Wadekarabd153c2015-09-14 09:31:39 +0530366
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800367 return ret;
Varun Wadekarabd153c2015-09-14 09:31:39 +0530368}
369
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800370int32_t tegra_soc_pwr_domain_on_finish(const psci_power_state_t *target_state)
Varun Wadekarb8776152016-03-03 13:52:52 -0800371{
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800372 uint8_t stateid_afflvl2 = target_state->pwr_domain_state[PLAT_MAX_PWR_LVL];
373 uint8_t stateid_afflvl0 = target_state->pwr_domain_state[MPIDR_AFFLVL0];
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700374 mce_cstate_info_t cstate_info = { 0 };
Harvey Hsiehfbdfce12016-11-23 19:13:08 +0800375 uint64_t impl, val;
376 const plat_params_from_bl2_t *plat_params = bl31_get_plat_params();
377
Anthony Zhou5a4ce002017-06-28 16:49:16 +0800378 impl = (read_midr() >> MIDR_IMPL_SHIFT) & MIDR_IMPL_MASK;
Harvey Hsiehfbdfce12016-11-23 19:13:08 +0800379
380 /*
381 * Enable ECC and Parity Protection for Cortex-A57 CPUs (Tegra186
382 * A02p and beyond).
383 */
Anthony Zhou5a4ce002017-06-28 16:49:16 +0800384 if ((plat_params->l2_ecc_parity_prot_dis != 1) && (impl != DENVER_IMPL)) {
Harvey Hsiehfbdfce12016-11-23 19:13:08 +0800385
386 val = read_l2ctlr_el1();
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800387 val |= CORTEX_A57_L2_ECC_PARITY_PROTECTION_BIT;
Harvey Hsiehfbdfce12016-11-23 19:13:08 +0800388 write_l2ctlr_el1(val);
389 }
Varun Wadekarb8776152016-03-03 13:52:52 -0800390
391 /*
Varun Wadekar5a402562016-04-29 11:25:46 -0700392 * Reset power state info for CPUs when onlining, we set
393 * deepest power when offlining a core but that may not be
394 * requested by non-secure sw which controls idle states. It
395 * will re-init this info from non-secure software when the
396 * core come online.
Varun Wadekard2da47a2016-04-09 00:40:45 -0700397 */
Varun Wadekar5a402562016-04-29 11:25:46 -0700398 if (stateid_afflvl0 == PLAT_MAX_OFF_STATE) {
399
Anthony Zhou0e07e452017-07-26 17:16:54 +0800400 cstate_info.cluster = (uint32_t)TEGRA_ARI_CLUSTER_CC1;
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700401 cstate_info.update_wake_mask = 1;
402 mce_update_cstate_info(&cstate_info);
Varun Wadekar5a402562016-04-29 11:25:46 -0700403 }
Varun Wadekard2da47a2016-04-09 00:40:45 -0700404
405 /*
Varun Wadekarb8776152016-03-03 13:52:52 -0800406 * Check if we are exiting from deep sleep and restore SE
407 * context if we are.
408 */
Varun Wadekar5a402562016-04-29 11:25:46 -0700409 if (stateid_afflvl2 == PSTATE_ID_SOC_POWERDN) {
410
Varun Wadekarb8776152016-03-03 13:52:52 -0800411 mmio_write_32(TEGRA_SE0_BASE + SE_MUTEX_WATCHDOG_NS_LIMIT,
412 se_regs[0]);
413 mmio_write_32(TEGRA_RNG1_BASE + RNG_MUTEX_WATCHDOG_NS_LIMIT,
414 se_regs[1]);
415 mmio_write_32(TEGRA_PKA1_BASE + PKA_MUTEX_WATCHDOG_NS_LIMIT,
416 se_regs[2]);
417
418 /* Init SMMU */
419 tegra_smmu_init();
Varun Wadekar93bed2a2016-03-18 13:07:33 -0700420
421 /*
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700422 * Reset power state info for the last core doing SC7
423 * entry and exit, we set deepest power state as CC7
424 * and SC7 for SC7 entry which may not be requested by
425 * non-secure SW which controls idle states.
Varun Wadekar93bed2a2016-03-18 13:07:33 -0700426 */
Anthony Zhou0e07e452017-07-26 17:16:54 +0800427 cstate_info.cluster = (uint32_t)TEGRA_ARI_CLUSTER_CC7;
428 cstate_info.system = (uint32_t)TEGRA_ARI_SYSTEM_SC1;
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700429 cstate_info.update_wake_mask = 1;
430 mce_update_cstate_info(&cstate_info);
Varun Wadekarb8776152016-03-03 13:52:52 -0800431 }
432
433 return PSCI_E_SUCCESS;
434}
435
Varun Wadekarcb2dd3a2023-04-25 14:58:33 +0100436int32_t tegra_soc_pwr_domain_off_early(const psci_power_state_t *target_state)
437{
438 /* Do not power off the boot CPU */
439 if (plat_is_my_cpu_primary()) {
440 return PSCI_E_DENIED;
441 }
442
443 return PSCI_E_SUCCESS;
444}
445
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800446int32_t tegra_soc_pwr_domain_off(const psci_power_state_t *target_state)
Varun Wadekarabd153c2015-09-14 09:31:39 +0530447{
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800448 uint64_t impl = (read_midr() >> MIDR_IMPL_SHIFT) & (uint64_t)MIDR_IMPL_MASK;
449
450 (void)target_state;
Varun Wadekara64806a2016-01-05 15:17:41 -0800451
Varun Wadekare26a55a2016-02-26 11:09:21 -0800452 /* Disable Denver's DCO operations */
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800453 if (impl == DENVER_IMPL) {
Varun Wadekare26a55a2016-02-26 11:09:21 -0800454 denver_disable_dco();
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800455 }
Varun Wadekare26a55a2016-02-26 11:09:21 -0800456
Varun Wadekarabd153c2015-09-14 09:31:39 +0530457 /* Turn off CPU */
Anthony Zhou0e07e452017-07-26 17:16:54 +0800458 (void)mce_command_handler((uint64_t)MCE_CMD_ENTER_CSTATE,
459 (uint64_t)TEGRA_ARI_CORE_C7, MCE_CORE_SLEEP_TIME_INFINITE, 0U);
Varun Wadekar4a0b37a2016-04-09 00:36:42 -0700460
461 return PSCI_E_SUCCESS;
Varun Wadekarabd153c2015-09-14 09:31:39 +0530462}
Varun Wadekar782c83d2017-03-14 14:25:35 -0700463
464__dead2 void tegra_soc_prepare_system_off(void)
465{
Varun Wadekar71d0e8d2017-05-17 14:35:33 -0700466 /* power off the entire system */
Anthony Zhou0e07e452017-07-26 17:16:54 +0800467 mce_enter_ccplex_state((uint32_t)TEGRA_ARI_MISC_CCPLEX_SHUTDOWN_POWER_OFF);
Varun Wadekard66ee542016-02-29 10:24:30 -0800468
469 wfi();
470
471 /* wait for the system to power down */
472 for (;;) {
473 ;
474 }
Varun Wadekar782c83d2017-03-14 14:25:35 -0700475}
Varun Wadekar38020c92016-01-07 14:36:12 -0800476
Anthony Zhou5d1bb052017-03-03 16:23:08 +0800477int32_t tegra_soc_prepare_system_reset(void)
Varun Wadekar38020c92016-01-07 14:36:12 -0800478{
Anthony Zhou0e07e452017-07-26 17:16:54 +0800479 mce_enter_ccplex_state((uint32_t)TEGRA_ARI_MISC_CCPLEX_SHUTDOWN_REBOOT);
Varun Wadekar38020c92016-01-07 14:36:12 -0800480
481 return PSCI_E_SUCCESS;
482}