xref: /rk3399_ARM-atf/plat/arm/board/fvp/fvp_pm.c (revision 4824e250595881be7a59f8080818c59d30c3b10a)
1 /*
2  * Copyright (c) 2013-2025, Arm Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #include <assert.h>
8 
9 #include <arch_helpers.h>
10 #include <common/debug.h>
11 #include <drivers/arm/gicv3.h>
12 #include <drivers/arm/fvp/fvp_pwrc.h>
13 #include <lib/mmio.h>
14 #include <lib/psci/psci.h>
15 #include <plat/arm/common/arm_config.h>
16 #include <plat/arm/common/plat_arm.h>
17 #include <platform_def.h>
18 
19 #include "fvp_private.h"
20 #include "../drivers/arm/gic/v3/gicv3_private.h"
21 
22 
23 #if ARM_RECOM_STATE_ID_ENC
24 /*
25  *  The table storing the valid idle power states. Ensure that the
26  *  array entries are populated in ascending order of state-id to
27  *  enable us to use binary search during power state validation.
28  *  The table must be terminated by a NULL entry.
29  */
30 const unsigned int arm_pm_idle_states[] = {
31 	/* State-id - 0x01 */
32 	arm_make_pwrstate_lvl1(ARM_LOCAL_STATE_RUN, ARM_LOCAL_STATE_RET,
33 			ARM_PWR_LVL0, PSTATE_TYPE_STANDBY),
34 	/* State-id - 0x02 */
35 	arm_make_pwrstate_lvl1(ARM_LOCAL_STATE_RUN, ARM_LOCAL_STATE_OFF,
36 			ARM_PWR_LVL0, PSTATE_TYPE_POWERDOWN),
37 	/* State-id - 0x22 */
38 	arm_make_pwrstate_lvl1(ARM_LOCAL_STATE_OFF, ARM_LOCAL_STATE_OFF,
39 			ARM_PWR_LVL1, PSTATE_TYPE_POWERDOWN),
40 	/* State-id - 0x222 */
41 	arm_make_pwrstate_lvl2(ARM_LOCAL_STATE_OFF, ARM_LOCAL_STATE_OFF,
42 		ARM_LOCAL_STATE_OFF, ARM_PWR_LVL2, PSTATE_TYPE_POWERDOWN),
43 	0,
44 };
45 #endif
46 
47 /*******************************************************************************
48  * Function which implements the common FVP specific operations to power down a
49  * cluster in response to a CPU_OFF or CPU_SUSPEND request.
50  ******************************************************************************/
51 static void fvp_cluster_pwrdwn_common(void)
52 {
53 	uint64_t mpidr = read_mpidr_el1();
54 
55 	/* Disable coherency if this cluster is to be turned off */
56 	fvp_interconnect_disable();
57 
58 	/* Program the power controller to turn the cluster off */
59 	fvp_pwrc_write_pcoffr(mpidr);
60 }
61 
62 /*
63  * Empty implementation of these hooks avoid setting the GICR_WAKER.Sleep bit
64  * on ARM GICv3 implementations on FVP. This is required, because FVP does not
65  * support SYSTEM_SUSPEND and it is `faked` in firmware. Hence, for wake up
66  * from `fake` system suspend the GIC must not be powered off.
67  */
68 void arm_gicv3_distif_pre_save(unsigned int rdist_proc_num)
69 {}
70 
71 void arm_gicv3_distif_post_restore(unsigned int rdist_proc_num)
72 {}
73 
74 static void fvp_power_domain_on_finish_common(const psci_power_state_t *target_state)
75 {
76 	unsigned long mpidr;
77 
78 	assert(target_state->pwr_domain_state[ARM_PWR_LVL0] ==
79 					ARM_LOCAL_STATE_OFF);
80 
81 	/* Get the mpidr for this cpu */
82 	mpidr = read_mpidr_el1();
83 
84 	/* Perform the common cluster specific operations */
85 	if (target_state->pwr_domain_state[ARM_PWR_LVL1] ==
86 					ARM_LOCAL_STATE_OFF) {
87 		/*
88 		 * This CPU might have woken up whilst the cluster was
89 		 * attempting to power down. In this case the FVP power
90 		 * controller will have a pending cluster power off request
91 		 * which needs to be cleared by writing to the PPONR register.
92 		 * This prevents the power controller from interpreting a
93 		 * subsequent entry of this cpu into a simple wfi as a power
94 		 * down request.
95 		 */
96 		fvp_pwrc_write_pponr(mpidr);
97 
98 		/* Enable coherency if this cluster was off */
99 		fvp_interconnect_enable();
100 	}
101 	/* Perform the common system specific operations */
102 	if (target_state->pwr_domain_state[ARM_PWR_LVL2] ==
103 						ARM_LOCAL_STATE_OFF)
104 		arm_system_pwr_domain_resume();
105 
106 	/*
107 	 * Clear PWKUPR.WEN bit to ensure interrupts do not interfere
108 	 * with a cpu power down unless the bit is set again
109 	 */
110 	fvp_pwrc_clr_wen(mpidr);
111 }
112 
113 /*******************************************************************************
114  * FVP handler called when a CPU is about to enter standby.
115  ******************************************************************************/
116 static void fvp_cpu_standby(plat_local_state_t cpu_state)
117 {
118 	u_register_t scr = read_scr_el3();
119 
120 	assert(cpu_state == ARM_LOCAL_STATE_RET);
121 
122 	/*
123 	 * Enable the Non-secure interrupt to wake the CPU.
124 	 * In GICv3 affinity routing mode, the Non-secure Group 1 interrupts
125 	 * use Physical FIQ at EL3 whereas in GICv2, Physical IRQ is used.
126 	 * Enabling both the bits works for both GICv2 mode and GICv3 affinity
127 	 * routing mode.
128 	 */
129 	write_scr_el3(scr | SCR_IRQ_BIT | SCR_FIQ_BIT);
130 	isb();
131 
132 	/*
133 	 * Enter standby state.
134 	 * dsb is good practice before using wfi to enter low power states.
135 	 */
136 	dsb();
137 	wfi();
138 
139 	/*
140 	 * Restore SCR_EL3 to the original value, synchronisation of SCR_EL3
141 	 * is done by eret in el3_exit() to save some execution cycles.
142 	 */
143 	write_scr_el3(scr);
144 }
145 
146 /*******************************************************************************
147  * FVP handler called when a power domain is about to be turned on. The
148  * mpidr determines the CPU to be turned on.
149  ******************************************************************************/
150 static int fvp_pwr_domain_on(u_register_t mpidr)
151 {
152 	int rc = PSCI_E_SUCCESS;
153 	unsigned int psysr;
154 
155 	/*
156 	 * Ensure that we do not cancel an inflight power off request for the
157 	 * target cpu. That would leave it in a zombie wfi. Wait for it to power
158 	 * off and then program the power controller to turn that CPU on.
159 	 */
160 	do {
161 		psysr = fvp_pwrc_read_psysr(mpidr);
162 	} while ((psysr & PSYSR_AFF_L0) != 0U);
163 
164 	fvp_pwrc_write_pponr(mpidr);
165 	return rc;
166 }
167 
168 /*******************************************************************************
169  * FVP handler called when a power domain is about to be turned off. The
170  * target_state encodes the power state that each level should transition to.
171  ******************************************************************************/
172 static void fvp_pwr_domain_off(const psci_power_state_t *target_state)
173 {
174 	assert(target_state->pwr_domain_state[ARM_PWR_LVL0] ==
175 					ARM_LOCAL_STATE_OFF);
176 
177 	/*
178 	 * If execution reaches this stage then this power domain will be
179 	 * suspended. Perform at least the cpu specific actions followed
180 	 * by the cluster specific operations if applicable.
181 	 */
182 
183 	/* Program the power controller to power off this cpu. */
184 	fvp_pwrc_write_ppoffr(read_mpidr_el1());
185 
186 	if (target_state->pwr_domain_state[ARM_PWR_LVL1] ==
187 					ARM_LOCAL_STATE_OFF)
188 		fvp_cluster_pwrdwn_common();
189 
190 }
191 
192 /*******************************************************************************
193  * FVP handler called when a power domain is about to be suspended. The
194  * target_state encodes the power state that each level should transition to.
195  ******************************************************************************/
196 static void fvp_pwr_domain_suspend(const psci_power_state_t *target_state)
197 {
198 	unsigned long mpidr;
199 
200 	/*
201 	 * FVP has retention only at cpu level. Just return
202 	 * as nothing is to be done for retention.
203 	 */
204 	if (target_state->pwr_domain_state[ARM_PWR_LVL0] ==
205 					ARM_LOCAL_STATE_RET)
206 		return;
207 
208 	assert(target_state->pwr_domain_state[ARM_PWR_LVL0] ==
209 					ARM_LOCAL_STATE_OFF);
210 
211 	/* Get the mpidr for this cpu */
212 	mpidr = read_mpidr_el1();
213 
214 	/* Program the power controller to enable wakeup interrupts. */
215 	fvp_pwrc_set_wen(mpidr);
216 
217 	/*
218 	 * The Redistributor is not powered off as it can potentially prevent
219 	 * wake up events reaching the CPUIF and/or might lead to losing
220 	 * register context.
221 	 */
222 
223 	/* Perform the common cluster specific operations */
224 	if (target_state->pwr_domain_state[ARM_PWR_LVL1] ==
225 					ARM_LOCAL_STATE_OFF)
226 		fvp_cluster_pwrdwn_common();
227 
228 	/* Perform the common system specific operations */
229 	if (target_state->pwr_domain_state[ARM_PWR_LVL2] ==
230 						ARM_LOCAL_STATE_OFF)
231 		arm_system_pwr_domain_save();
232 
233 	/* Program the power controller to power off this cpu. */
234 	fvp_pwrc_write_ppoffr(read_mpidr_el1());
235 
236 	return;
237 }
238 
239 /*******************************************************************************
240  * FVP handler called when a power domain has just been powered on after
241  * being turned off earlier. The target_state encodes the low power state that
242  * each level has woken up from.
243  ******************************************************************************/
244 static void fvp_pwr_domain_on_finish(const psci_power_state_t *target_state)
245 {
246 	fvp_power_domain_on_finish_common(target_state);
247 }
248 
249 /*******************************************************************************
250  * FVP handler called when a power domain has just been powered on and the cpu
251  * and its cluster are fully participating in coherent transaction on the
252  * interconnect. Data cache must be enabled for CPU at this point.
253  ******************************************************************************/
254 static void fvp_pwr_domain_on_finish_late(const psci_power_state_t *target_state)
255 {
256 #if USE_GIC_DRIVER == 3
257 	fvp_pcpu_init();
258 #endif
259 }
260 
261 /*******************************************************************************
262  * FVP handler called when a power domain has just been powered on after
263  * having been suspended earlier. The target_state encodes the low power state
264  * that each level has woken up from.
265  * TODO: At the moment we reuse the on finisher and reinitialize the secure
266  * context. Need to implement a separate suspend finisher.
267  ******************************************************************************/
268 static void fvp_pwr_domain_suspend_finish(const psci_power_state_t *target_state)
269 {
270 	/*
271 	 * Nothing to be done on waking up from retention from CPU level.
272 	 */
273 	if (target_state->pwr_domain_state[ARM_PWR_LVL0] ==
274 					ARM_LOCAL_STATE_RET)
275 		return;
276 
277 	fvp_power_domain_on_finish_common(target_state);
278 }
279 
280 /*******************************************************************************
281  * FVP handlers to shutdown/reboot the system
282  ******************************************************************************/
283 static void fvp_system_off(void)
284 {
285 	/* Write the System Configuration Control Register */
286 	mmio_write_32(V2M_SYSREGS_BASE + V2M_SYS_CFGCTRL,
287 		V2M_CFGCTRL_START |
288 		V2M_CFGCTRL_RW |
289 		V2M_CFGCTRL_FUNC(V2M_FUNC_SHUTDOWN));
290 }
291 
292 static void fvp_system_reset(void)
293 {
294 	/* Write the System Configuration Control Register */
295 	mmio_write_32(V2M_SYSREGS_BASE + V2M_SYS_CFGCTRL,
296 		V2M_CFGCTRL_START |
297 		V2M_CFGCTRL_RW |
298 		V2M_CFGCTRL_FUNC(V2M_FUNC_REBOOT));
299 }
300 
301 static int fvp_node_hw_state(u_register_t target_cpu,
302 			     unsigned int power_level)
303 {
304 	unsigned int psysr;
305 	int ret = 0;
306 
307 	/*
308 	 * The format of 'power_level' is implementation-defined, but 0 must
309 	 * mean a CPU. We also allow 1 to denote the cluster
310 	 */
311 	if (power_level > ARM_PWR_LVL1) {
312 		return PSCI_E_INVALID_PARAMS;
313 	}
314 
315 	/*
316 	 * Read the status of the given MPDIR from FVP power controller. The
317 	 * power controller only gives us on/off status, so map that to expected
318 	 * return values of the PSCI call
319 	 */
320 	psysr = fvp_pwrc_read_psysr(target_cpu);
321 	if (psysr == PSYSR_INVALID)
322 		return PSCI_E_INVALID_PARAMS;
323 
324 	if (power_level == ARM_PWR_LVL0) {
325 		ret = ((psysr & PSYSR_AFF_L0) != 0U) ? HW_ON : HW_OFF;
326 	} else if (power_level == ARM_PWR_LVL1) {
327 	/*
328 	 * Use L1 affinity if MPIDR_EL1.MT bit is not set else use L2 affinity.
329 	 */
330 		if ((read_mpidr_el1() & MPIDR_MT_MASK) == 0U)
331 			ret = ((psysr & PSYSR_AFF_L1) != 0U) ? HW_ON : HW_OFF;
332 		else
333 			ret = ((psysr & PSYSR_AFF_L2) != 0U) ? HW_ON : HW_OFF;
334 	}
335 
336 	return ret;
337 }
338 
339 /*
340  * The FVP doesn't truly support power management at SYSTEM power domain. The
341  * SYSTEM_SUSPEND will be down-graded to the cluster level within the platform
342  * layer. The `fake` SYSTEM_SUSPEND allows us to validate some of the driver
343  * save and restore sequences on FVP.
344  */
345 #if !ARM_BL31_IN_DRAM
346 static void fvp_get_sys_suspend_power_state(psci_power_state_t *req_state)
347 {
348 	unsigned int i;
349 
350 	for (i = ARM_PWR_LVL0; i <= PLAT_MAX_PWR_LVL; i++)
351 		req_state->pwr_domain_state[i] = ARM_LOCAL_STATE_OFF;
352 
353 #if PSCI_OS_INIT_MODE
354 	req_state->last_at_pwrlvl = PLAT_MAX_PWR_LVL;
355 #endif
356 }
357 #endif
358 
359 /*******************************************************************************
360  * Handler to filter PSCI requests.
361  ******************************************************************************/
362 /*
363  * The system power domain suspend is only supported only via
364  * PSCI SYSTEM_SUSPEND API. PSCI CPU_SUSPEND request to system power domain
365  * will be downgraded to the lower level.
366  */
367 static int fvp_validate_power_state(unsigned int power_state,
368 			    psci_power_state_t *req_state)
369 {
370 	int rc;
371 	rc = arm_validate_power_state(power_state, req_state);
372 
373 	/*
374 	 * Ensure that the system power domain level is never suspended
375 	 * via PSCI CPU SUSPEND API. Currently system suspend is only
376 	 * supported via PSCI SYSTEM SUSPEND API.
377 	 */
378 	req_state->pwr_domain_state[ARM_PWR_LVL2] = ARM_LOCAL_STATE_RUN;
379 	return rc;
380 }
381 
382 /*
383  * Custom `translate_power_state_by_mpidr` handler for FVP. Unlike in the
384  * `fvp_validate_power_state`, we do not downgrade the system power
385  * domain level request in `power_state` as it will be used to query the
386  * PSCI_STAT_COUNT/RESIDENCY at the system power domain level.
387  */
388 static int fvp_translate_power_state_by_mpidr(u_register_t mpidr,
389 		unsigned int power_state,
390 		psci_power_state_t *output_state)
391 {
392 	return arm_validate_power_state(power_state, output_state);
393 }
394 
395 /*******************************************************************************
396  * Export the platform handlers via plat_arm_psci_pm_ops. The ARM Standard
397  * platform layer will take care of registering the handlers with PSCI.
398  ******************************************************************************/
399 plat_psci_ops_t plat_arm_psci_pm_ops = {
400 	.cpu_standby = fvp_cpu_standby,
401 	.pwr_domain_on = fvp_pwr_domain_on,
402 	.pwr_domain_off = fvp_pwr_domain_off,
403 	.pwr_domain_suspend = fvp_pwr_domain_suspend,
404 	.pwr_domain_on_finish = fvp_pwr_domain_on_finish,
405 	.pwr_domain_on_finish_late = fvp_pwr_domain_on_finish_late,
406 	.pwr_domain_suspend_finish = fvp_pwr_domain_suspend_finish,
407 	.system_off = fvp_system_off,
408 	.system_reset = fvp_system_reset,
409 	.validate_power_state = fvp_validate_power_state,
410 	.validate_ns_entrypoint = arm_validate_psci_entrypoint,
411 	.translate_power_state_by_mpidr = fvp_translate_power_state_by_mpidr,
412 	.get_node_hw_state = fvp_node_hw_state,
413 #if !ARM_BL31_IN_DRAM
414 	/*
415 	 * The TrustZone Controller is set up during the warmboot sequence after
416 	 * resuming the CPU from a SYSTEM_SUSPEND. If BL31 is located in SRAM
417 	 * this is  not a problem but, if it is in TZC-secured DRAM, it tries to
418 	 * reconfigure the same memory it is running on, causing an exception.
419 	 */
420 	.get_sys_suspend_power_state = fvp_get_sys_suspend_power_state,
421 #endif
422 	.mem_protect_chk	= arm_psci_mem_protect_chk,
423 	.read_mem_protect	= arm_psci_read_mem_protect,
424 	.write_mem_protect	= arm_nor_psci_write_mem_protect,
425 };
426 
427 const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops)
428 {
429 	return ops;
430 }
431