xref: /rk3399_ARM-atf/plat/nvidia/tegra/soc/t194/plat_psci_handlers.c (revision de4a643876fa31e440cb4e4f15c47692907945f2)
1 /*
2  * Copyright (c) 2019-2020, NVIDIA CORPORATION. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #include <arch.h>
8 #include <assert.h>
9 #include <stdbool.h>
10 #include <string.h>
11 
12 #include <arch_helpers.h>
13 #include <common/bl_common.h>
14 #include <common/debug.h>
15 #include <context.h>
16 #include <denver.h>
17 #include <lib/el3_runtime/context_mgmt.h>
18 #include <lib/psci/psci.h>
19 #include <mce.h>
20 #include <mce_private.h>
21 #include <plat/common/platform.h>
22 #include <se.h>
23 #include <smmu.h>
24 #include <t194_nvg.h>
25 #include <tegra194_private.h>
26 #include <tegra_platform.h>
27 #include <tegra_private.h>
28 
29 extern uint32_t __tegra194_cpu_reset_handler_data,
30 		__tegra194_cpu_reset_handler_end;
31 
32 /* TZDRAM offset for saving SMMU context */
33 #define TEGRA194_SMMU_CTX_OFFSET	16U
34 
35 /* state id mask */
36 #define TEGRA194_STATE_ID_MASK		0xFU
37 /* constants to get power state's wake time */
38 #define TEGRA194_WAKE_TIME_MASK		0x0FFFFFF0U
39 #define TEGRA194_WAKE_TIME_SHIFT	4U
40 /* default core wake mask for CPU_SUSPEND */
41 #define TEGRA194_CORE_WAKE_MASK		0x180cU
42 
43 static struct t19x_psci_percpu_data {
44 	uint32_t wake_time;
45 } __aligned(CACHE_WRITEBACK_GRANULE) t19x_percpu_data[PLATFORM_CORE_COUNT];
46 
47 /*
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  */
53 bool tegra_fake_system_suspend;
54 
55 int32_t tegra_soc_validate_power_state(uint32_t power_state,
56 					psci_power_state_t *req_state)
57 {
58 	uint8_t state_id = (uint8_t)psci_get_pstate_id(power_state) &
59 			   TEGRA194_STATE_ID_MASK;
60 	uint32_t cpu = plat_my_core_pos();
61 	int32_t ret = PSCI_E_SUCCESS;
62 
63 	/* save the core wake time (in TSC ticks)*/
64 	t19x_percpu_data[cpu].wake_time = (power_state & TEGRA194_WAKE_TIME_MASK)
65 			<< TEGRA194_WAKE_TIME_SHIFT;
66 
67 	/*
68 	 * 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
72 	 * unless the cluster is entering CC6/CC7.
73 	 */
74 	clean_dcache_range((uint64_t)&t19x_percpu_data[cpu],
75 			sizeof(t19x_percpu_data[cpu]));
76 
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);
90 		ret = PSCI_E_INVALID_PARAMS;
91 		break;
92 	}
93 
94 	return ret;
95 }
96 
97 int32_t tegra_soc_pwr_domain_suspend(const psci_power_state_t *target_state)
98 {
99 	const plat_local_state_t *pwr_domain_state;
100 	uint8_t stateid_afflvl0, stateid_afflvl2;
101 	plat_params_from_bl2_t *params_from_bl2 = bl31_get_plat_params();
102 	uint64_t smmu_ctx_base;
103 	uint32_t val;
104 	mce_cstate_info_t sc7_cstate_info = {
105 		.cluster = (uint32_t)TEGRA_NVG_CLUSTER_CC6,
106 		.ccplex = (uint32_t)TEGRA_NVG_CG_CG7,
107 		.system = (uint32_t)TEGRA_NVG_SYSTEM_SC7,
108 		.system_state_force = 1U,
109 		.update_wake_mask = 1U,
110 	};
111 	uint32_t cpu = plat_my_core_pos();
112 	int32_t ret = 0;
113 
114 	/* get the state ID */
115 	pwr_domain_state = target_state->pwr_domain_state;
116 	stateid_afflvl0 = pwr_domain_state[MPIDR_AFFLVL0] &
117 		TEGRA194_STATE_ID_MASK;
118 	stateid_afflvl2 = pwr_domain_state[PLAT_MAX_PWR_LVL] &
119 		TEGRA194_STATE_ID_MASK;
120 
121 	if ((stateid_afflvl0 == PSTATE_ID_CORE_IDLE) ||
122 	    (stateid_afflvl0 == PSTATE_ID_CORE_POWERDN)) {
123 
124 		/* Enter CPU idle/powerdown */
125 		val = (stateid_afflvl0 == PSTATE_ID_CORE_IDLE) ?
126 			(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,
128 				t19x_percpu_data[cpu].wake_time, 0);
129 		assert(ret == 0);
130 
131 	} else if (stateid_afflvl2 == PSTATE_ID_SOC_POWERDN) {
132 
133 		/* save 'Secure Boot' Processor Feature Config Register */
134 		val = mmio_read_32(TEGRA_MISC_BASE + MISCREG_PFCFG);
135 		mmio_write_32(TEGRA_SCRATCH_BASE + SCRATCH_SECURE_BOOTP_FCFG, val);
136 
137 		/* save SMMU context */
138 		smmu_ctx_base = params_from_bl2->tzdram_base +
139 				tegra194_get_smmu_ctx_offset();
140 		tegra_smmu_save_context((uintptr_t)smmu_ctx_base);
141 
142 		/*
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 
151 		if (!tegra_fake_system_suspend) {
152 
153 			/* Prepare for system suspend */
154 			mce_update_cstate_info(&sc7_cstate_info);
155 
156 			do {
157 				val = (uint32_t)mce_command_handler(
158 						(uint32_t)MCE_CMD_IS_SC7_ALLOWED,
159 						(uint32_t)TEGRA_NVG_CORE_C7,
160 						MCE_CORE_SLEEP_TIME_INFINITE,
161 						0U);
162 			} while (val == 0U);
163 
164 			/* 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);
171 
172 			/* set system suspend state for house-keeping */
173 			tegra194_set_system_suspend_entry();
174 		}
175 	} else {
176 		; /* do nothing */
177 	}
178 
179 	return PSCI_E_SUCCESS;
180 }
181 
182 /*******************************************************************************
183  * Helper function to check if this is the last ON CPU in the cluster
184  ******************************************************************************/
185 static bool tegra_last_on_cpu_in_cluster(const plat_local_state_t *states,
186 			uint32_t ncpu)
187 {
188 	plat_local_state_t target;
189 	bool last_on_cpu = true;
190 	uint32_t num_cpus = ncpu, pos = 0;
191 
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);
200 
201 	return last_on_cpu;
202 }
203 
204 /*******************************************************************************
205  * Helper function to get target power state for the cluster
206  ******************************************************************************/
207 static 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 };
213 
214 	/* CPU suspend */
215 	if (target == PSTATE_ID_CORE_POWERDN) {
216 
217 		/* Program default wake mask */
218 		cstate_info.wake_mask = TEGRA194_CORE_WAKE_MASK;
219 		cstate_info.update_wake_mask = 1;
220 		mce_update_cstate_info(&cstate_info);
221 	}
222 
223 	/* CPU off */
224 	if (target == PLAT_MAX_OFF_STATE) {
225 
226 		/* Enable cluster powerdn from last CPU in the cluster */
227 		if (tegra_last_on_cpu_in_cluster(states, ncpu)) {
228 
229 			/* Enable CC6 state and turn off wake mask */
230 			cstate_info.cluster = (uint32_t)TEGRA_NVG_CLUSTER_CC6;
231 			cstate_info.update_wake_mask = 1U;
232 			mce_update_cstate_info(&cstate_info);
233 
234 		} else {
235 
236 			/* Turn off wake_mask */
237 			cstate_info.update_wake_mask = 1U;
238 			mce_update_cstate_info(&cstate_info);
239 			target = PSCI_LOCAL_STATE_RUN;
240 		}
241 	}
242 
243 	return target;
244 }
245 
246 /*******************************************************************************
247  * Platform handler to calculate the proper target power level at the
248  * specified affinity level
249  ******************************************************************************/
250 plat_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 
257 	/* System Suspend */
258 	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);
265 	}
266 
267 	/* target cluster/system state */
268 	return target;
269 }
270 
271 int32_t tegra_soc_pwr_domain_power_down_wfi(const psci_power_state_t *target_state)
272 {
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();
276 	uint8_t stateid_afflvl2 = pwr_domain_state[PLAT_MAX_PWR_LVL] &
277 		TEGRA194_STATE_ID_MASK;
278 	uint64_t val;
279 	u_register_t ns_sctlr_el1;
280 
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 +
288 		      tegra194_get_cpu_reset_handler_size();
289 		memcpy((void *)(uintptr_t)val, (void *)(uintptr_t)BL31_BASE,
290 		       (uintptr_t)&__BL31_END__ - (uintptr_t)BL31_BASE);
291 
292 		/*
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 		}
315 	}
316 
317 	return PSCI_E_SUCCESS;
318 }
319 
320 int32_t tegra_soc_pwr_domain_on(u_register_t mpidr)
321 {
322 	uint64_t target_cpu = mpidr & MPIDR_CPU_MASK;
323 	uint64_t target_cluster = (mpidr & MPIDR_CLUSTER_MASK) >>
324 			MPIDR_AFFINITY_BITS;
325 	int32_t ret = 0;
326 
327 	if (target_cluster > ((uint32_t)PLATFORM_CLUSTER_COUNT - 1U)) {
328 		ERROR("%s: unsupported CPU (0x%lx)\n", __func__ , mpidr);
329 		return PSCI_E_NOT_PRESENT;
330 	}
331 
332 	/* construct the target CPU # */
333 	target_cpu += (target_cluster << 1U);
334 
335 	ret = mce_command_handler((uint64_t)MCE_CMD_ONLINE_CORE, target_cpu, 0U, 0U);
336 	if (ret < 0) {
337 		return PSCI_E_DENIED;
338 	}
339 
340 	return PSCI_E_SUCCESS;
341 }
342 
343 int32_t tegra_soc_pwr_domain_on_finish(const psci_power_state_t *target_state)
344 {
345 	uint8_t stateid_afflvl2 = target_state->pwr_domain_state[PLAT_MAX_PWR_LVL];
346 
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) {
360 
361 #if ENABLE_STRICT_CHECKING_MODE
362 		/*
363 		 * Enable strict checking after programming the GSC for
364 		 * enabling TZSRAM and TZDRAM
365 		 */
366 		mce_enable_strict_checking();
367 #endif
368 
369 		/* Init SMMU */
370 		tegra_smmu_init();
371 
372 		/* Resume SE, RNG1 and PKA1 */
373 		tegra_se_resume();
374 
375 		/*
376 		 * Program XUSB STREAMIDs
377 		 * ======================
378 		 * T19x XUSB has support for XUSB virtualization. It will
379 		 * have one physical function (PF) and four Virtual functions
380 		 * (VF)
381 		 *
382 		 * There were below two SIDs for XUSB until T186.
383 		 * 1) #define TEGRA_SID_XUSB_HOST    0x1bU
384 		 * 2) #define TEGRA_SID_XUSB_DEV    0x1cU
385 		 *
386 		 * We have below four new SIDs added for VF(s)
387 		 * 3) #define TEGRA_SID_XUSB_VF0    0x5dU
388 		 * 4) #define TEGRA_SID_XUSB_VF1    0x5eU
389 		 * 5) #define TEGRA_SID_XUSB_VF2    0x5fU
390 		 * 6) #define TEGRA_SID_XUSB_VF3    0x60U
391 		 *
392 		 * When virtualization is enabled then we have to disable SID
393 		 * override and program above SIDs in below newly added SID
394 		 * registers in XUSB PADCTL MMIO space. These registers are
395 		 * TZ protected and so need to be done in ATF.
396 		 *
397 		 * a) #define XUSB_PADCTL_HOST_AXI_STREAMID_PF_0 (0x136cU)
398 		 * b) #define XUSB_PADCTL_DEV_AXI_STREAMID_PF_0  (0x139cU)
399 		 * c) #define XUSB_PADCTL_HOST_AXI_STREAMID_VF_0 (0x1370U)
400 		 * d) #define XUSB_PADCTL_HOST_AXI_STREAMID_VF_1 (0x1374U)
401 		 * e) #define XUSB_PADCTL_HOST_AXI_STREAMID_VF_2 (0x1378U)
402 		 * f) #define XUSB_PADCTL_HOST_AXI_STREAMID_VF_3 (0x137cU)
403 		 *
404 		 * This change disables SID override and programs XUSB SIDs
405 		 * in above registers to support both virtualization and
406 		 * non-virtualization platforms
407 		 */
408 		mmio_write_32(TEGRA_XUSB_PADCTL_BASE +
409 			XUSB_PADCTL_HOST_AXI_STREAMID_PF_0, TEGRA_SID_XUSB_HOST);
410 		mmio_write_32(TEGRA_XUSB_PADCTL_BASE +
411 			XUSB_PADCTL_HOST_AXI_STREAMID_VF_0, TEGRA_SID_XUSB_VF0);
412 		mmio_write_32(TEGRA_XUSB_PADCTL_BASE +
413 			XUSB_PADCTL_HOST_AXI_STREAMID_VF_1, TEGRA_SID_XUSB_VF1);
414 		mmio_write_32(TEGRA_XUSB_PADCTL_BASE +
415 			XUSB_PADCTL_HOST_AXI_STREAMID_VF_2, TEGRA_SID_XUSB_VF2);
416 		mmio_write_32(TEGRA_XUSB_PADCTL_BASE +
417 			XUSB_PADCTL_HOST_AXI_STREAMID_VF_3, TEGRA_SID_XUSB_VF3);
418 		mmio_write_32(TEGRA_XUSB_PADCTL_BASE +
419 			XUSB_PADCTL_DEV_AXI_STREAMID_PF_0, TEGRA_SID_XUSB_DEV);
420 
421 		/*
422 		 * 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.
426 		 */
427 	}
428 
429 	return PSCI_E_SUCCESS;
430 }
431 
432 int32_t tegra_soc_pwr_domain_off(const psci_power_state_t *target_state)
433 {
434 	uint64_t impl = (read_midr() >> MIDR_IMPL_SHIFT) & MIDR_IMPL_MASK;
435 	int32_t ret = 0;
436 
437 	(void)target_state;
438 
439 	/* Disable Denver's DCO operations */
440 	if (impl == DENVER_IMPL) {
441 		denver_disable_dco();
442 	}
443 
444 	/* Turn off CPU */
445 	ret = mce_command_handler((uint64_t)MCE_CMD_ENTER_CSTATE,
446 			(uint64_t)TEGRA_NVG_CORE_C7, MCE_CORE_SLEEP_TIME_INFINITE, 0U);
447 	assert(ret == 0);
448 
449 	return PSCI_E_SUCCESS;
450 }
451 
452 __dead2 void tegra_soc_prepare_system_off(void)
453 {
454 	/* System power off */
455 
456 	/* SC8 */
457 
458 	wfi();
459 
460 	/* wait for the system to power down */
461 	for (;;) {
462 		;
463 	}
464 }
465 
466 int32_t tegra_soc_prepare_system_reset(void)
467 {
468 	return PSCI_E_SUCCESS;
469 }
470