xref: /rk3399_ARM-atf/lib/psci/psci_off.c (revision 5d893410026b590aa8af8d6f7009d3c2e000fe3e)
1532ed618SSoby Mathew /*
2*5d893410SBoyan Karatotev  * Copyright (c) 2013-2025, Arm Limited and Contributors. All rights reserved.
36cf4ae97SVarun Wadekar  * Copyright (c) 2023, NVIDIA Corporation. All rights reserved.
4532ed618SSoby Mathew  *
582cb2c1aSdp-arm  * SPDX-License-Identifier: BSD-3-Clause
6532ed618SSoby Mathew  */
7532ed618SSoby Mathew 
809d40e0eSAntonio Nino Diaz #include <assert.h>
909d40e0eSAntonio Nino Diaz #include <string.h>
1009d40e0eSAntonio Nino Diaz 
11532ed618SSoby Mathew #include <arch.h>
12532ed618SSoby Mathew #include <arch_helpers.h>
1309d40e0eSAntonio Nino Diaz #include <common/debug.h>
14*5d893410SBoyan Karatotev #include <drivers/arm/gic.h>
1509d40e0eSAntonio Nino Diaz #include <lib/pmf/pmf.h>
1609d40e0eSAntonio Nino Diaz #include <lib/runtime_instr.h>
1709d40e0eSAntonio Nino Diaz #include <plat/common/platform.h>
1809d40e0eSAntonio Nino Diaz 
19532ed618SSoby Mathew #include "psci_private.h"
20532ed618SSoby Mathew 
21532ed618SSoby Mathew /******************************************************************************
22532ed618SSoby Mathew  * Construct the psci_power_state to request power OFF at all power levels.
23532ed618SSoby Mathew  ******************************************************************************/
24532ed618SSoby Mathew static void psci_set_power_off_state(psci_power_state_t *state_info)
25532ed618SSoby Mathew {
266311f63dSVarun Wadekar 	unsigned int lvl;
27532ed618SSoby Mathew 
28532ed618SSoby Mathew 	for (lvl = PSCI_CPU_PWR_LVL; lvl <= PLAT_MAX_PWR_LVL; lvl++)
29532ed618SSoby Mathew 		state_info->pwr_domain_state[lvl] = PLAT_MAX_OFF_STATE;
30532ed618SSoby Mathew }
31532ed618SSoby Mathew 
32532ed618SSoby Mathew /******************************************************************************
33532ed618SSoby Mathew  * Top level handler which is called when a cpu wants to power itself down.
34532ed618SSoby Mathew  * It's assumed that along with turning the cpu power domain off, power
35532ed618SSoby Mathew  * domains at higher levels will be turned off as far as possible. It finds
36532ed618SSoby Mathew  * the highest level where a domain has to be powered off by traversing the
37532ed618SSoby Mathew  * node information and then performs generic, architectural, platform setup
38532ed618SSoby Mathew  * and state management required to turn OFF that power domain and domains
39532ed618SSoby Mathew  * below it. e.g. For a cpu that's to be powered OFF, it could mean programming
40532ed618SSoby Mathew  * the power controller whereas for a cluster that's to be powered off, it will
41532ed618SSoby Mathew  * call the platform specific code which will disable coherency at the
42532ed618SSoby Mathew  * interconnect level if the cpu is the last in the cluster and also the
43532ed618SSoby Mathew  * program the power controller.
44532ed618SSoby Mathew  ******************************************************************************/
45532ed618SSoby Mathew int psci_do_cpu_off(unsigned int end_pwrlvl)
46532ed618SSoby Mathew {
47621d64f8SAntonio Nino Diaz 	int rc = PSCI_E_SUCCESS;
485b33ad17SDeepika Bhavnani 	unsigned int idx = plat_my_core_pos();
49532ed618SSoby Mathew 	psci_power_state_t state_info;
5074d27d00SAndrew F. Davis 	unsigned int parent_nodes[PLAT_MAX_PWR_LVL] = {0};
51532ed618SSoby Mathew 
52532ed618SSoby Mathew 	/*
53532ed618SSoby Mathew 	 * This function must only be called on platforms where the
54532ed618SSoby Mathew 	 * CPU_OFF platform hooks have been implemented.
55532ed618SSoby Mathew 	 */
56621d64f8SAntonio Nino Diaz 	assert(psci_plat_pm_ops->pwr_domain_off != NULL);
57532ed618SSoby Mathew 
58216e58a3SRoberto Vargas 	/* Construct the psci_power_state for CPU_OFF */
59216e58a3SRoberto Vargas 	psci_set_power_off_state(&state_info);
60216e58a3SRoberto Vargas 
61532ed618SSoby Mathew 	/*
626cf4ae97SVarun Wadekar 	 * Call the platform provided early CPU_OFF handler to allow
636cf4ae97SVarun Wadekar 	 * platforms to perform any housekeeping activities before
646cf4ae97SVarun Wadekar 	 * actually powering the CPU off. PSCI_E_DENIED indicates that
656cf4ae97SVarun Wadekar 	 * the CPU off sequence should be aborted at this time.
666cf4ae97SVarun Wadekar 	 */
676cf4ae97SVarun Wadekar 	if (psci_plat_pm_ops->pwr_domain_off_early) {
686cf4ae97SVarun Wadekar 		rc = psci_plat_pm_ops->pwr_domain_off_early(&state_info);
696cf4ae97SVarun Wadekar 		if (rc == PSCI_E_DENIED) {
706cf4ae97SVarun Wadekar 			return rc;
716cf4ae97SVarun Wadekar 		}
726cf4ae97SVarun Wadekar 	}
736cf4ae97SVarun Wadekar 
746cf4ae97SVarun Wadekar 	/*
7574d27d00SAndrew F. Davis 	 * Get the parent nodes here, this is important to do before we
7674d27d00SAndrew F. Davis 	 * initiate the power down sequence as after that point the core may
7774d27d00SAndrew F. Davis 	 * have exited coherency and its cache may be disabled, any access to
7874d27d00SAndrew F. Davis 	 * shared memory after that (such as the parent node lookup in
7974d27d00SAndrew F. Davis 	 * psci_cpu_pd_nodes) can cause coherency issues on some platforms.
8074d27d00SAndrew F. Davis 	 */
8174d27d00SAndrew F. Davis 	psci_get_parent_pwr_domain_nodes(idx, end_pwrlvl, parent_nodes);
8274d27d00SAndrew F. Davis 
8374d27d00SAndrew F. Davis 	/*
84532ed618SSoby Mathew 	 * This function acquires the lock corresponding to each power
85532ed618SSoby Mathew 	 * level so that by the time all locks are taken, the system topology
86532ed618SSoby Mathew 	 * is snapshot and state management can be done safely.
87532ed618SSoby Mathew 	 */
8874d27d00SAndrew F. Davis 	psci_acquire_pwr_domain_locks(end_pwrlvl, parent_nodes);
89532ed618SSoby Mathew 
90532ed618SSoby Mathew 	/*
91532ed618SSoby Mathew 	 * Call the cpu off handler registered by the Secure Payload Dispatcher
92532ed618SSoby Mathew 	 * to let it do any bookkeeping. Assume that the SPD always reports an
93532ed618SSoby Mathew 	 * E_DENIED error if SP refuse to power down
94532ed618SSoby Mathew 	 */
95621d64f8SAntonio Nino Diaz 	if ((psci_spd_pm != NULL) && (psci_spd_pm->svc_off != NULL)) {
96532ed618SSoby Mathew 		rc = psci_spd_pm->svc_off(0);
9745c7328cSBoyan Karatotev 		if (rc != PSCI_E_SUCCESS)
980839cfc9SMaheedhar Bollapalli 			goto off_exit;
99532ed618SSoby Mathew 	}
100532ed618SSoby Mathew 
101532ed618SSoby Mathew 	/*
102532ed618SSoby Mathew 	 * This function is passed the requested state info and
103532ed618SSoby Mathew 	 * it returns the negotiated state info for each power level upto
104532ed618SSoby Mathew 	 * the end level specified.
105532ed618SSoby Mathew 	 */
1063b802105SBoyan Karatotev 	psci_do_state_coordination(idx, end_pwrlvl, &state_info);
107532ed618SSoby Mathew 
108d3488614SWing Li 	/* Update the target state in the power domain nodes */
1093b802105SBoyan Karatotev 	psci_set_target_local_pwr_states(idx, end_pwrlvl, &state_info);
110d3488614SWing Li 
111532ed618SSoby Mathew #if ENABLE_PSCI_STAT
112532ed618SSoby Mathew 	/* Update the last cpu for each level till end_pwrlvl */
1133b802105SBoyan Karatotev 	psci_stats_update_pwr_down(idx, end_pwrlvl, &state_info);
114532ed618SSoby Mathew #endif
115532ed618SSoby Mathew 
116532ed618SSoby Mathew 	/*
117b0408e87SJeenu Viswambharan 	 * Arch. management. Initiate power down sequence.
118532ed618SSoby Mathew 	 */
1192b5e00d4SBoyan Karatotev 	psci_pwrdown_cpu_start(psci_find_max_off_lvl(&state_info));
120532ed618SSoby Mathew 
121*5d893410SBoyan Karatotev #if USE_GIC_DRIVER
122*5d893410SBoyan Karatotev 	/* turn the GIC off before we hand off to the platform */
123*5d893410SBoyan Karatotev 	gic_cpuif_disable(idx);
124*5d893410SBoyan Karatotev 	/* we don't want any wakeups until explicitly turned on */
125*5d893410SBoyan Karatotev 	gic_pcpu_off(idx);
126*5d893410SBoyan Karatotev #endif /* USE_GIC_DRIVER */
127*5d893410SBoyan Karatotev 
128532ed618SSoby Mathew 	/*
129532ed618SSoby Mathew 	 * Plat. management: Perform platform specific actions to turn this
130532ed618SSoby Mathew 	 * cpu off e.g. exit cpu coherency, program the power controller etc.
131532ed618SSoby Mathew 	 */
132532ed618SSoby Mathew 	psci_plat_pm_ops->pwr_domain_off(&state_info);
133532ed618SSoby Mathew 
134532ed618SSoby Mathew #if ENABLE_PSCI_STAT
13504c1db1eSdp-arm 	plat_psci_stat_accounting_start(&state_info);
136532ed618SSoby Mathew #endif
137532ed618SSoby Mathew 
1380839cfc9SMaheedhar Bollapalli off_exit:
139532ed618SSoby Mathew 	/*
140532ed618SSoby Mathew 	 * Release the locks corresponding to each power level in the
141532ed618SSoby Mathew 	 * reverse order to which they were acquired.
142532ed618SSoby Mathew 	 */
14374d27d00SAndrew F. Davis 	psci_release_pwr_domain_locks(end_pwrlvl, parent_nodes);
144532ed618SSoby Mathew 
145532ed618SSoby Mathew 	/*
146532ed618SSoby Mathew 	 * Check if all actions needed to safely power down this cpu have
147532ed618SSoby Mathew 	 * successfully completed.
148532ed618SSoby Mathew 	 */
149532ed618SSoby Mathew 	if (rc == PSCI_E_SUCCESS) {
150532ed618SSoby Mathew 		/*
151a10d3632SJeenu Viswambharan 		 * Set the affinity info state to OFF. When caches are disabled,
152a10d3632SJeenu Viswambharan 		 * this writes directly to main memory, so cache maintenance is
153532ed618SSoby Mathew 		 * required to ensure that later cached reads of aff_info_state
154532ed618SSoby Mathew 		 * return AFF_STATE_OFF. A dsbish() ensures ordering of the
155532ed618SSoby Mathew 		 * update to the affinity info state prior to cache line
156532ed618SSoby Mathew 		 * invalidation.
157532ed618SSoby Mathew 		 */
158a10d3632SJeenu Viswambharan 		psci_flush_cpu_data(psci_svc_cpu_data.aff_info_state);
159532ed618SSoby Mathew 		psci_set_aff_info_state(AFF_STATE_OFF);
160a10d3632SJeenu Viswambharan 		psci_dsbish();
161a10d3632SJeenu Viswambharan 		psci_inv_cpu_data(psci_svc_cpu_data.aff_info_state);
162532ed618SSoby Mathew 
163872be88aSdp-arm #if ENABLE_RUNTIME_INSTRUMENTATION
164872be88aSdp-arm 		/*
165872be88aSdp-arm 		 * Update the timestamp with cache off.  We assume this
166872be88aSdp-arm 		 * timestamp can only be read from the current CPU and the
167872be88aSdp-arm 		 * timestamp cache line will be flushed before return to
168872be88aSdp-arm 		 * normal world on wakeup.
169872be88aSdp-arm 		 */
170872be88aSdp-arm 		PMF_CAPTURE_TIMESTAMP(rt_instr_svc,
171872be88aSdp-arm 		    RT_INSTR_ENTER_HW_LOW_PWR,
172872be88aSdp-arm 		    PMF_NO_CACHE_MAINT);
173872be88aSdp-arm #endif
174db5fe4f4SBoyan Karatotev 		if (psci_plat_pm_ops->pwr_domain_pwr_down != NULL) {
1752b5e00d4SBoyan Karatotev 			/* This function may not return */
176db5fe4f4SBoyan Karatotev 			psci_plat_pm_ops->pwr_domain_pwr_down(&state_info);
177532ed618SSoby Mathew 		}
1782b5e00d4SBoyan Karatotev 
1792b5e00d4SBoyan Karatotev 		psci_pwrdown_cpu_end_terminal();
180532ed618SSoby Mathew 	}
181532ed618SSoby Mathew 
182532ed618SSoby Mathew 	return rc;
183532ed618SSoby Mathew }
184