xref: /rk3399_ARM-atf/lib/psci/psci_common.c (revision 2274490945695c1da37bc5b708212a40073d7891)
1532ed618SSoby Mathew /*
22fe75a2dSZelalem  * Copyright (c) 2013-2020, ARM Limited and Contributors. All rights reserved.
3532ed618SSoby Mathew  *
482cb2c1aSdp-arm  * SPDX-License-Identifier: BSD-3-Clause
5532ed618SSoby Mathew  */
6532ed618SSoby Mathew 
709d40e0eSAntonio Nino Diaz #include <assert.h>
809d40e0eSAntonio Nino Diaz #include <string.h>
909d40e0eSAntonio Nino Diaz 
10532ed618SSoby Mathew #include <arch.h>
11532ed618SSoby Mathew #include <arch_helpers.h>
1209d40e0eSAntonio Nino Diaz #include <common/bl_common.h>
1309d40e0eSAntonio Nino Diaz #include <common/debug.h>
14532ed618SSoby Mathew #include <context.h>
15*22744909SSandeep Tripathy #include <drivers/delay_timer.h>
1609d40e0eSAntonio Nino Diaz #include <lib/el3_runtime/context_mgmt.h>
1709d40e0eSAntonio Nino Diaz #include <lib/utils.h>
1809d40e0eSAntonio Nino Diaz #include <plat/common/platform.h>
1909d40e0eSAntonio Nino Diaz 
20532ed618SSoby Mathew #include "psci_private.h"
21532ed618SSoby Mathew 
22532ed618SSoby Mathew /*
23532ed618SSoby Mathew  * SPD power management operations, expected to be supplied by the registered
24532ed618SSoby Mathew  * SPD on successful SP initialization
25532ed618SSoby Mathew  */
26532ed618SSoby Mathew const spd_pm_ops_t *psci_spd_pm;
27532ed618SSoby Mathew 
28532ed618SSoby Mathew /*
29532ed618SSoby Mathew  * PSCI requested local power state map. This array is used to store the local
30532ed618SSoby Mathew  * power states requested by a CPU for power levels from level 1 to
31532ed618SSoby Mathew  * PLAT_MAX_PWR_LVL. It does not store the requested local power state for power
32532ed618SSoby Mathew  * level 0 (PSCI_CPU_PWR_LVL) as the requested and the target power state for a
33532ed618SSoby Mathew  * CPU are the same.
34532ed618SSoby Mathew  *
35532ed618SSoby Mathew  * During state coordination, the platform is passed an array containing the
36532ed618SSoby Mathew  * local states requested for a particular non cpu power domain by each cpu
37532ed618SSoby Mathew  * within the domain.
38532ed618SSoby Mathew  *
39532ed618SSoby Mathew  * TODO: Dense packing of the requested states will cause cache thrashing
40532ed618SSoby Mathew  * when multiple power domains write to it. If we allocate the requested
41532ed618SSoby Mathew  * states at each power level in a cache-line aligned per-domain memory,
42532ed618SSoby Mathew  * the cache thrashing can be avoided.
43532ed618SSoby Mathew  */
44532ed618SSoby Mathew static plat_local_state_t
45532ed618SSoby Mathew 	psci_req_local_pwr_states[PLAT_MAX_PWR_LVL][PLATFORM_CORE_COUNT];
46532ed618SSoby Mathew 
47ab4df50cSPankaj Gupta unsigned int psci_plat_core_count;
48532ed618SSoby Mathew 
49532ed618SSoby Mathew /*******************************************************************************
50532ed618SSoby Mathew  * Arrays that hold the platform's power domain tree information for state
51532ed618SSoby Mathew  * management of power domains.
52532ed618SSoby Mathew  * Each node in the array 'psci_non_cpu_pd_nodes' corresponds to a power domain
53532ed618SSoby Mathew  * which is an ancestor of a CPU power domain.
54532ed618SSoby Mathew  * Each node in the array 'psci_cpu_pd_nodes' corresponds to a cpu power domain
55532ed618SSoby Mathew  ******************************************************************************/
56532ed618SSoby Mathew non_cpu_pd_node_t psci_non_cpu_pd_nodes[PSCI_NUM_NON_CPU_PWR_DOMAINS]
57532ed618SSoby Mathew #if USE_COHERENT_MEM
58532ed618SSoby Mathew __section("tzfw_coherent_mem")
59532ed618SSoby Mathew #endif
60532ed618SSoby Mathew ;
61532ed618SSoby Mathew 
62b0408e87SJeenu Viswambharan /* Lock for PSCI state coordination */
63b0408e87SJeenu Viswambharan DEFINE_PSCI_LOCK(psci_locks[PSCI_NUM_NON_CPU_PWR_DOMAINS]);
64532ed618SSoby Mathew 
65532ed618SSoby Mathew cpu_pd_node_t psci_cpu_pd_nodes[PLATFORM_CORE_COUNT];
66532ed618SSoby Mathew 
67532ed618SSoby Mathew /*******************************************************************************
68532ed618SSoby Mathew  * Pointer to functions exported by the platform to complete power mgmt. ops
69532ed618SSoby Mathew  ******************************************************************************/
70532ed618SSoby Mathew const plat_psci_ops_t *psci_plat_pm_ops;
71532ed618SSoby Mathew 
72532ed618SSoby Mathew /******************************************************************************
73532ed618SSoby Mathew  * Check that the maximum power level supported by the platform makes sense
74532ed618SSoby Mathew  *****************************************************************************/
756b7b0f36SAntonio Nino Diaz CASSERT((PLAT_MAX_PWR_LVL <= PSCI_MAX_PWR_LVL) &&
766b7b0f36SAntonio Nino Diaz 	(PLAT_MAX_PWR_LVL >= PSCI_CPU_PWR_LVL),
77532ed618SSoby Mathew 	assert_platform_max_pwrlvl_check);
78532ed618SSoby Mathew 
79532ed618SSoby Mathew /*
80532ed618SSoby Mathew  * The plat_local_state used by the platform is one of these types: RUN,
81532ed618SSoby Mathew  * RETENTION and OFF. The platform can define further sub-states for each type
82532ed618SSoby Mathew  * apart from RUN. This categorization is done to verify the sanity of the
83532ed618SSoby Mathew  * psci_power_state passed by the platform and to print debug information. The
84532ed618SSoby Mathew  * categorization is done on the basis of the following conditions:
85532ed618SSoby Mathew  *
86532ed618SSoby Mathew  * 1. If (plat_local_state == 0) then the category is STATE_TYPE_RUN.
87532ed618SSoby Mathew  *
88532ed618SSoby Mathew  * 2. If (0 < plat_local_state <= PLAT_MAX_RET_STATE), then the category is
89532ed618SSoby Mathew  *    STATE_TYPE_RETN.
90532ed618SSoby Mathew  *
91532ed618SSoby Mathew  * 3. If (plat_local_state > PLAT_MAX_RET_STATE), then the category is
92532ed618SSoby Mathew  *    STATE_TYPE_OFF.
93532ed618SSoby Mathew  */
94532ed618SSoby Mathew typedef enum plat_local_state_type {
95532ed618SSoby Mathew 	STATE_TYPE_RUN = 0,
96532ed618SSoby Mathew 	STATE_TYPE_RETN,
97532ed618SSoby Mathew 	STATE_TYPE_OFF
98532ed618SSoby Mathew } plat_local_state_type_t;
99532ed618SSoby Mathew 
10097373c33SAntonio Nino Diaz /* Function used to categorize plat_local_state. */
10197373c33SAntonio Nino Diaz static plat_local_state_type_t find_local_state_type(plat_local_state_t state)
10297373c33SAntonio Nino Diaz {
10397373c33SAntonio Nino Diaz 	if (state != 0U) {
10497373c33SAntonio Nino Diaz 		if (state > PLAT_MAX_RET_STATE) {
10597373c33SAntonio Nino Diaz 			return STATE_TYPE_OFF;
10697373c33SAntonio Nino Diaz 		} else {
10797373c33SAntonio Nino Diaz 			return STATE_TYPE_RETN;
10897373c33SAntonio Nino Diaz 		}
10997373c33SAntonio Nino Diaz 	} else {
11097373c33SAntonio Nino Diaz 		return STATE_TYPE_RUN;
11197373c33SAntonio Nino Diaz 	}
11297373c33SAntonio Nino Diaz }
113532ed618SSoby Mathew 
114532ed618SSoby Mathew /******************************************************************************
115532ed618SSoby Mathew  * Check that the maximum retention level supported by the platform is less
116532ed618SSoby Mathew  * than the maximum off level.
117532ed618SSoby Mathew  *****************************************************************************/
1186b7b0f36SAntonio Nino Diaz CASSERT(PLAT_MAX_RET_STATE < PLAT_MAX_OFF_STATE,
119532ed618SSoby Mathew 		assert_platform_max_off_and_retn_state_check);
120532ed618SSoby Mathew 
121532ed618SSoby Mathew /******************************************************************************
122532ed618SSoby Mathew  * This function ensures that the power state parameter in a CPU_SUSPEND request
123532ed618SSoby Mathew  * is valid. If so, it returns the requested states for each power level.
124532ed618SSoby Mathew  *****************************************************************************/
125532ed618SSoby Mathew int psci_validate_power_state(unsigned int power_state,
126532ed618SSoby Mathew 			      psci_power_state_t *state_info)
127532ed618SSoby Mathew {
128532ed618SSoby Mathew 	/* Check SBZ bits in power state are zero */
1296b7b0f36SAntonio Nino Diaz 	if (psci_check_power_state(power_state) != 0U)
130532ed618SSoby Mathew 		return PSCI_E_INVALID_PARAMS;
131532ed618SSoby Mathew 
1326b7b0f36SAntonio Nino Diaz 	assert(psci_plat_pm_ops->validate_power_state != NULL);
133532ed618SSoby Mathew 
134532ed618SSoby Mathew 	/* Validate the power_state using platform pm_ops */
135532ed618SSoby Mathew 	return psci_plat_pm_ops->validate_power_state(power_state, state_info);
136532ed618SSoby Mathew }
137532ed618SSoby Mathew 
138532ed618SSoby Mathew /******************************************************************************
139532ed618SSoby Mathew  * This function retrieves the `psci_power_state_t` for system suspend from
140532ed618SSoby Mathew  * the platform.
141532ed618SSoby Mathew  *****************************************************************************/
142532ed618SSoby Mathew void psci_query_sys_suspend_pwrstate(psci_power_state_t *state_info)
143532ed618SSoby Mathew {
144532ed618SSoby Mathew 	/*
145532ed618SSoby Mathew 	 * Assert that the required pm_ops hook is implemented to ensure that
146532ed618SSoby Mathew 	 * the capability detected during psci_setup() is valid.
147532ed618SSoby Mathew 	 */
1486b7b0f36SAntonio Nino Diaz 	assert(psci_plat_pm_ops->get_sys_suspend_power_state != NULL);
149532ed618SSoby Mathew 
150532ed618SSoby Mathew 	/*
151532ed618SSoby Mathew 	 * Query the platform for the power_state required for system suspend
152532ed618SSoby Mathew 	 */
153532ed618SSoby Mathew 	psci_plat_pm_ops->get_sys_suspend_power_state(state_info);
154532ed618SSoby Mathew }
155532ed618SSoby Mathew 
156532ed618SSoby Mathew /*******************************************************************************
157532ed618SSoby Mathew  * This function verifies that the all the other cores in the system have been
158532ed618SSoby Mathew  * turned OFF and the current CPU is the last running CPU in the system.
159532ed618SSoby Mathew  * Returns 1 (true) if the current CPU is the last ON CPU or 0 (false)
160532ed618SSoby Mathew  * otherwise.
161532ed618SSoby Mathew  ******************************************************************************/
162532ed618SSoby Mathew unsigned int psci_is_last_on_cpu(void)
163532ed618SSoby Mathew {
164fc81021aSDeepika Bhavnani 	unsigned int cpu_idx, my_idx = plat_my_core_pos();
165532ed618SSoby Mathew 
166ab4df50cSPankaj Gupta 	for (cpu_idx = 0; cpu_idx < psci_plat_core_count;
167fc81021aSDeepika Bhavnani 			cpu_idx++) {
168532ed618SSoby Mathew 		if (cpu_idx == my_idx) {
169532ed618SSoby Mathew 			assert(psci_get_aff_info_state() == AFF_STATE_ON);
170532ed618SSoby Mathew 			continue;
171532ed618SSoby Mathew 		}
172532ed618SSoby Mathew 
173532ed618SSoby Mathew 		if (psci_get_aff_info_state_by_idx(cpu_idx) != AFF_STATE_OFF)
174532ed618SSoby Mathew 			return 0;
175532ed618SSoby Mathew 	}
176532ed618SSoby Mathew 
177532ed618SSoby Mathew 	return 1;
178532ed618SSoby Mathew }
179532ed618SSoby Mathew 
180532ed618SSoby Mathew /*******************************************************************************
181532ed618SSoby Mathew  * Routine to return the maximum power level to traverse to after a cpu has
182532ed618SSoby Mathew  * been physically powered up. It is expected to be called immediately after
183532ed618SSoby Mathew  * reset from assembler code.
184532ed618SSoby Mathew  ******************************************************************************/
185532ed618SSoby Mathew static unsigned int get_power_on_target_pwrlvl(void)
186532ed618SSoby Mathew {
187532ed618SSoby Mathew 	unsigned int pwrlvl;
188532ed618SSoby Mathew 
189532ed618SSoby Mathew 	/*
190532ed618SSoby Mathew 	 * Assume that this cpu was suspended and retrieve its target power
191532ed618SSoby Mathew 	 * level. If it is invalid then it could only have been turned off
192532ed618SSoby Mathew 	 * earlier. PLAT_MAX_PWR_LVL will be the highest power level a
193532ed618SSoby Mathew 	 * cpu can be turned off to.
194532ed618SSoby Mathew 	 */
195532ed618SSoby Mathew 	pwrlvl = psci_get_suspend_pwrlvl();
196532ed618SSoby Mathew 	if (pwrlvl == PSCI_INVALID_PWR_LVL)
197532ed618SSoby Mathew 		pwrlvl = PLAT_MAX_PWR_LVL;
1980c411c78SDeepika Bhavnani 	assert(pwrlvl < PSCI_INVALID_PWR_LVL);
199532ed618SSoby Mathew 	return pwrlvl;
200532ed618SSoby Mathew }
201532ed618SSoby Mathew 
202532ed618SSoby Mathew /******************************************************************************
203532ed618SSoby Mathew  * Helper function to update the requested local power state array. This array
204532ed618SSoby Mathew  * does not store the requested state for the CPU power level. Hence an
20541af0515SDeepika Bhavnani  * assertion is added to prevent us from accessing the CPU power level.
206532ed618SSoby Mathew  *****************************************************************************/
207532ed618SSoby Mathew static void psci_set_req_local_pwr_state(unsigned int pwrlvl,
208532ed618SSoby Mathew 					 unsigned int cpu_idx,
209532ed618SSoby Mathew 					 plat_local_state_t req_pwr_state)
210532ed618SSoby Mathew {
211532ed618SSoby Mathew 	assert(pwrlvl > PSCI_CPU_PWR_LVL);
21241af0515SDeepika Bhavnani 	if ((pwrlvl > PSCI_CPU_PWR_LVL) && (pwrlvl <= PLAT_MAX_PWR_LVL) &&
213ab4df50cSPankaj Gupta 			(cpu_idx < psci_plat_core_count)) {
2146b7b0f36SAntonio Nino Diaz 		psci_req_local_pwr_states[pwrlvl - 1U][cpu_idx] = req_pwr_state;
21541af0515SDeepika Bhavnani 	}
216532ed618SSoby Mathew }
217532ed618SSoby Mathew 
218532ed618SSoby Mathew /******************************************************************************
219532ed618SSoby Mathew  * This function initializes the psci_req_local_pwr_states.
220532ed618SSoby Mathew  *****************************************************************************/
22187c85134SDaniel Boulby void __init psci_init_req_local_pwr_states(void)
222532ed618SSoby Mathew {
223532ed618SSoby Mathew 	/* Initialize the requested state of all non CPU power domains as OFF */
2246b7b0f36SAntonio Nino Diaz 	unsigned int pwrlvl;
225ab4df50cSPankaj Gupta 	unsigned int core;
2266b7b0f36SAntonio Nino Diaz 
2276b7b0f36SAntonio Nino Diaz 	for (pwrlvl = 0U; pwrlvl < PLAT_MAX_PWR_LVL; pwrlvl++) {
228ab4df50cSPankaj Gupta 		for (core = 0; core < psci_plat_core_count; core++) {
2296b7b0f36SAntonio Nino Diaz 			psci_req_local_pwr_states[pwrlvl][core] =
2306b7b0f36SAntonio Nino Diaz 				PLAT_MAX_OFF_STATE;
2316b7b0f36SAntonio Nino Diaz 		}
2326b7b0f36SAntonio Nino Diaz 	}
233532ed618SSoby Mathew }
234532ed618SSoby Mathew 
235532ed618SSoby Mathew /******************************************************************************
236532ed618SSoby Mathew  * Helper function to return a reference to an array containing the local power
237532ed618SSoby Mathew  * states requested by each cpu for a power domain at 'pwrlvl'. The size of the
238532ed618SSoby Mathew  * array will be the number of cpu power domains of which this power domain is
239532ed618SSoby Mathew  * an ancestor. These requested states will be used to determine a suitable
240532ed618SSoby Mathew  * target state for this power domain during psci state coordination. An
241532ed618SSoby Mathew  * assertion is added to prevent us from accessing the CPU power level.
242532ed618SSoby Mathew  *****************************************************************************/
243532ed618SSoby Mathew static plat_local_state_t *psci_get_req_local_pwr_states(unsigned int pwrlvl,
244fc81021aSDeepika Bhavnani 							 unsigned int cpu_idx)
245532ed618SSoby Mathew {
246532ed618SSoby Mathew 	assert(pwrlvl > PSCI_CPU_PWR_LVL);
247532ed618SSoby Mathew 
24841af0515SDeepika Bhavnani 	if ((pwrlvl > PSCI_CPU_PWR_LVL) && (pwrlvl <= PLAT_MAX_PWR_LVL) &&
249ab4df50cSPankaj Gupta 			(cpu_idx < psci_plat_core_count)) {
2506b7b0f36SAntonio Nino Diaz 		return &psci_req_local_pwr_states[pwrlvl - 1U][cpu_idx];
25141af0515SDeepika Bhavnani 	} else
25241af0515SDeepika Bhavnani 		return NULL;
253532ed618SSoby Mathew }
254532ed618SSoby Mathew 
255a10d3632SJeenu Viswambharan /*
256a10d3632SJeenu Viswambharan  * psci_non_cpu_pd_nodes can be placed either in normal memory or coherent
257a10d3632SJeenu Viswambharan  * memory.
258a10d3632SJeenu Viswambharan  *
259a10d3632SJeenu Viswambharan  * With !USE_COHERENT_MEM, psci_non_cpu_pd_nodes is placed in normal memory,
260a10d3632SJeenu Viswambharan  * it's accessed by both cached and non-cached participants. To serve the common
261a10d3632SJeenu Viswambharan  * minimum, perform a cache flush before read and after write so that non-cached
262a10d3632SJeenu Viswambharan  * participants operate on latest data in main memory.
263a10d3632SJeenu Viswambharan  *
264a10d3632SJeenu Viswambharan  * When USE_COHERENT_MEM is used, psci_non_cpu_pd_nodes is placed in coherent
265a10d3632SJeenu Viswambharan  * memory. With HW_ASSISTED_COHERENCY, all PSCI participants are cache-coherent.
266a10d3632SJeenu Viswambharan  * In both cases, no cache operations are required.
267a10d3632SJeenu Viswambharan  */
268a10d3632SJeenu Viswambharan 
269a10d3632SJeenu Viswambharan /*
270a10d3632SJeenu Viswambharan  * Retrieve local state of non-CPU power domain node from a non-cached CPU,
271a10d3632SJeenu Viswambharan  * after any required cache maintenance operation.
272a10d3632SJeenu Viswambharan  */
273a10d3632SJeenu Viswambharan static plat_local_state_t get_non_cpu_pd_node_local_state(
274a10d3632SJeenu Viswambharan 		unsigned int parent_idx)
275a10d3632SJeenu Viswambharan {
276f996a5f7SAndrew F. Davis #if !(USE_COHERENT_MEM || HW_ASSISTED_COHERENCY || WARMBOOT_ENABLE_DCACHE_EARLY)
277a10d3632SJeenu Viswambharan 	flush_dcache_range(
278a10d3632SJeenu Viswambharan 			(uintptr_t) &psci_non_cpu_pd_nodes[parent_idx],
279a10d3632SJeenu Viswambharan 			sizeof(psci_non_cpu_pd_nodes[parent_idx]));
280a10d3632SJeenu Viswambharan #endif
281a10d3632SJeenu Viswambharan 	return psci_non_cpu_pd_nodes[parent_idx].local_state;
282a10d3632SJeenu Viswambharan }
283a10d3632SJeenu Viswambharan 
284a10d3632SJeenu Viswambharan /*
285a10d3632SJeenu Viswambharan  * Update local state of non-CPU power domain node from a cached CPU; perform
286a10d3632SJeenu Viswambharan  * any required cache maintenance operation afterwards.
287a10d3632SJeenu Viswambharan  */
288a10d3632SJeenu Viswambharan static void set_non_cpu_pd_node_local_state(unsigned int parent_idx,
289a10d3632SJeenu Viswambharan 		plat_local_state_t state)
290a10d3632SJeenu Viswambharan {
291a10d3632SJeenu Viswambharan 	psci_non_cpu_pd_nodes[parent_idx].local_state = state;
292f996a5f7SAndrew F. Davis #if !(USE_COHERENT_MEM || HW_ASSISTED_COHERENCY || WARMBOOT_ENABLE_DCACHE_EARLY)
293a10d3632SJeenu Viswambharan 	flush_dcache_range(
294a10d3632SJeenu Viswambharan 			(uintptr_t) &psci_non_cpu_pd_nodes[parent_idx],
295a10d3632SJeenu Viswambharan 			sizeof(psci_non_cpu_pd_nodes[parent_idx]));
296a10d3632SJeenu Viswambharan #endif
297a10d3632SJeenu Viswambharan }
298a10d3632SJeenu Viswambharan 
299532ed618SSoby Mathew /******************************************************************************
300532ed618SSoby Mathew  * Helper function to return the current local power state of each power domain
301532ed618SSoby Mathew  * from the current cpu power domain to its ancestor at the 'end_pwrlvl'. This
302532ed618SSoby Mathew  * function will be called after a cpu is powered on to find the local state
303532ed618SSoby Mathew  * each power domain has emerged from.
304532ed618SSoby Mathew  *****************************************************************************/
30561eae524SAchin Gupta void psci_get_target_local_pwr_states(unsigned int end_pwrlvl,
306532ed618SSoby Mathew 				      psci_power_state_t *target_state)
307532ed618SSoby Mathew {
308532ed618SSoby Mathew 	unsigned int parent_idx, lvl;
309532ed618SSoby Mathew 	plat_local_state_t *pd_state = target_state->pwr_domain_state;
310532ed618SSoby Mathew 
311532ed618SSoby Mathew 	pd_state[PSCI_CPU_PWR_LVL] = psci_get_cpu_local_state();
312532ed618SSoby Mathew 	parent_idx = psci_cpu_pd_nodes[plat_my_core_pos()].parent_node;
313532ed618SSoby Mathew 
314532ed618SSoby Mathew 	/* Copy the local power state from node to state_info */
3156b7b0f36SAntonio Nino Diaz 	for (lvl = PSCI_CPU_PWR_LVL + 1U; lvl <= end_pwrlvl; lvl++) {
316a10d3632SJeenu Viswambharan 		pd_state[lvl] = get_non_cpu_pd_node_local_state(parent_idx);
317532ed618SSoby Mathew 		parent_idx = psci_non_cpu_pd_nodes[parent_idx].parent_node;
318532ed618SSoby Mathew 	}
319532ed618SSoby Mathew 
320532ed618SSoby Mathew 	/* Set the the higher levels to RUN */
321532ed618SSoby Mathew 	for (; lvl <= PLAT_MAX_PWR_LVL; lvl++)
322532ed618SSoby Mathew 		target_state->pwr_domain_state[lvl] = PSCI_LOCAL_STATE_RUN;
323532ed618SSoby Mathew }
324532ed618SSoby Mathew 
325532ed618SSoby Mathew /******************************************************************************
326532ed618SSoby Mathew  * Helper function to set the target local power state that each power domain
327532ed618SSoby Mathew  * from the current cpu power domain to its ancestor at the 'end_pwrlvl' will
328532ed618SSoby Mathew  * enter. This function will be called after coordination of requested power
329532ed618SSoby Mathew  * states has been done for each power level.
330532ed618SSoby Mathew  *****************************************************************************/
331532ed618SSoby Mathew static void psci_set_target_local_pwr_states(unsigned int end_pwrlvl,
332532ed618SSoby Mathew 					const psci_power_state_t *target_state)
333532ed618SSoby Mathew {
334532ed618SSoby Mathew 	unsigned int parent_idx, lvl;
335532ed618SSoby Mathew 	const plat_local_state_t *pd_state = target_state->pwr_domain_state;
336532ed618SSoby Mathew 
337532ed618SSoby Mathew 	psci_set_cpu_local_state(pd_state[PSCI_CPU_PWR_LVL]);
338532ed618SSoby Mathew 
339532ed618SSoby Mathew 	/*
340a10d3632SJeenu Viswambharan 	 * Need to flush as local_state might be accessed with Data Cache
341532ed618SSoby Mathew 	 * disabled during power on
342532ed618SSoby Mathew 	 */
343a10d3632SJeenu Viswambharan 	psci_flush_cpu_data(psci_svc_cpu_data.local_state);
344532ed618SSoby Mathew 
345532ed618SSoby Mathew 	parent_idx = psci_cpu_pd_nodes[plat_my_core_pos()].parent_node;
346532ed618SSoby Mathew 
347532ed618SSoby Mathew 	/* Copy the local_state from state_info */
3486b7b0f36SAntonio Nino Diaz 	for (lvl = 1U; lvl <= end_pwrlvl; lvl++) {
349a10d3632SJeenu Viswambharan 		set_non_cpu_pd_node_local_state(parent_idx, pd_state[lvl]);
350532ed618SSoby Mathew 		parent_idx = psci_non_cpu_pd_nodes[parent_idx].parent_node;
351532ed618SSoby Mathew 	}
352532ed618SSoby Mathew }
353532ed618SSoby Mathew 
354532ed618SSoby Mathew 
355532ed618SSoby Mathew /*******************************************************************************
356532ed618SSoby Mathew  * PSCI helper function to get the parent nodes corresponding to a cpu_index.
357532ed618SSoby Mathew  ******************************************************************************/
358fc81021aSDeepika Bhavnani void psci_get_parent_pwr_domain_nodes(unsigned int cpu_idx,
359532ed618SSoby Mathew 				      unsigned int end_lvl,
3606b7b0f36SAntonio Nino Diaz 				      unsigned int *node_index)
361532ed618SSoby Mathew {
362532ed618SSoby Mathew 	unsigned int parent_node = psci_cpu_pd_nodes[cpu_idx].parent_node;
3636311f63dSVarun Wadekar 	unsigned int i;
3646b7b0f36SAntonio Nino Diaz 	unsigned int *node = node_index;
365532ed618SSoby Mathew 
3666b7b0f36SAntonio Nino Diaz 	for (i = PSCI_CPU_PWR_LVL + 1U; i <= end_lvl; i++) {
3676b7b0f36SAntonio Nino Diaz 		*node = parent_node;
3686b7b0f36SAntonio Nino Diaz 		node++;
369532ed618SSoby Mathew 		parent_node = psci_non_cpu_pd_nodes[parent_node].parent_node;
370532ed618SSoby Mathew 	}
371532ed618SSoby Mathew }
372532ed618SSoby Mathew 
373532ed618SSoby Mathew /******************************************************************************
374532ed618SSoby Mathew  * This function is invoked post CPU power up and initialization. It sets the
375532ed618SSoby Mathew  * affinity info state, target power state and requested power state for the
376532ed618SSoby Mathew  * current CPU and all its ancestor power domains to RUN.
377532ed618SSoby Mathew  *****************************************************************************/
378532ed618SSoby Mathew void psci_set_pwr_domains_to_run(unsigned int end_pwrlvl)
379532ed618SSoby Mathew {
380532ed618SSoby Mathew 	unsigned int parent_idx, cpu_idx = plat_my_core_pos(), lvl;
381532ed618SSoby Mathew 	parent_idx = psci_cpu_pd_nodes[cpu_idx].parent_node;
382532ed618SSoby Mathew 
383532ed618SSoby Mathew 	/* Reset the local_state to RUN for the non cpu power domains. */
3846b7b0f36SAntonio Nino Diaz 	for (lvl = PSCI_CPU_PWR_LVL + 1U; lvl <= end_pwrlvl; lvl++) {
385a10d3632SJeenu Viswambharan 		set_non_cpu_pd_node_local_state(parent_idx,
386a10d3632SJeenu Viswambharan 				PSCI_LOCAL_STATE_RUN);
387532ed618SSoby Mathew 		psci_set_req_local_pwr_state(lvl,
388532ed618SSoby Mathew 					     cpu_idx,
389532ed618SSoby Mathew 					     PSCI_LOCAL_STATE_RUN);
390532ed618SSoby Mathew 		parent_idx = psci_non_cpu_pd_nodes[parent_idx].parent_node;
391532ed618SSoby Mathew 	}
392532ed618SSoby Mathew 
393532ed618SSoby Mathew 	/* Set the affinity info state to ON */
394532ed618SSoby Mathew 	psci_set_aff_info_state(AFF_STATE_ON);
395532ed618SSoby Mathew 
396532ed618SSoby Mathew 	psci_set_cpu_local_state(PSCI_LOCAL_STATE_RUN);
397a10d3632SJeenu Viswambharan 	psci_flush_cpu_data(psci_svc_cpu_data);
398532ed618SSoby Mathew }
399532ed618SSoby Mathew 
400532ed618SSoby Mathew /******************************************************************************
401532ed618SSoby Mathew  * This function is passed the local power states requested for each power
402532ed618SSoby Mathew  * domain (state_info) between the current CPU domain and its ancestors until
403532ed618SSoby Mathew  * the target power level (end_pwrlvl). It updates the array of requested power
404532ed618SSoby Mathew  * states with this information.
405532ed618SSoby Mathew  *
406532ed618SSoby Mathew  * Then, for each level (apart from the CPU level) until the 'end_pwrlvl', it
407532ed618SSoby Mathew  * retrieves the states requested by all the cpus of which the power domain at
408532ed618SSoby Mathew  * that level is an ancestor. It passes this information to the platform to
409532ed618SSoby Mathew  * coordinate and return the target power state. If the target state for a level
410532ed618SSoby Mathew  * is RUN then subsequent levels are not considered. At the CPU level, state
411532ed618SSoby Mathew  * coordination is not required. Hence, the requested and the target states are
412532ed618SSoby Mathew  * the same.
413532ed618SSoby Mathew  *
414532ed618SSoby Mathew  * The 'state_info' is updated with the target state for each level between the
415532ed618SSoby Mathew  * CPU and the 'end_pwrlvl' and returned to the caller.
416532ed618SSoby Mathew  *
417532ed618SSoby Mathew  * This function will only be invoked with data cache enabled and while
418532ed618SSoby Mathew  * powering down a core.
419532ed618SSoby Mathew  *****************************************************************************/
420532ed618SSoby Mathew void psci_do_state_coordination(unsigned int end_pwrlvl,
421532ed618SSoby Mathew 				psci_power_state_t *state_info)
422532ed618SSoby Mathew {
423532ed618SSoby Mathew 	unsigned int lvl, parent_idx, cpu_idx = plat_my_core_pos();
424fc81021aSDeepika Bhavnani 	unsigned int start_idx;
4256b7b0f36SAntonio Nino Diaz 	unsigned int ncpus;
426532ed618SSoby Mathew 	plat_local_state_t target_state, *req_states;
427532ed618SSoby Mathew 
428532ed618SSoby Mathew 	assert(end_pwrlvl <= PLAT_MAX_PWR_LVL);
429532ed618SSoby Mathew 	parent_idx = psci_cpu_pd_nodes[cpu_idx].parent_node;
430532ed618SSoby Mathew 
431532ed618SSoby Mathew 	/* For level 0, the requested state will be equivalent
432532ed618SSoby Mathew 	   to target state */
4336b7b0f36SAntonio Nino Diaz 	for (lvl = PSCI_CPU_PWR_LVL + 1U; lvl <= end_pwrlvl; lvl++) {
434532ed618SSoby Mathew 
435532ed618SSoby Mathew 		/* First update the requested power state */
436532ed618SSoby Mathew 		psci_set_req_local_pwr_state(lvl, cpu_idx,
437532ed618SSoby Mathew 					     state_info->pwr_domain_state[lvl]);
438532ed618SSoby Mathew 
439532ed618SSoby Mathew 		/* Get the requested power states for this power level */
440532ed618SSoby Mathew 		start_idx = psci_non_cpu_pd_nodes[parent_idx].cpu_start_idx;
441532ed618SSoby Mathew 		req_states = psci_get_req_local_pwr_states(lvl, start_idx);
442532ed618SSoby Mathew 
443532ed618SSoby Mathew 		/*
444532ed618SSoby Mathew 		 * Let the platform coordinate amongst the requested states at
445532ed618SSoby Mathew 		 * this power level and return the target local power state.
446532ed618SSoby Mathew 		 */
447532ed618SSoby Mathew 		ncpus = psci_non_cpu_pd_nodes[parent_idx].ncpus;
448532ed618SSoby Mathew 		target_state = plat_get_target_pwr_state(lvl,
449532ed618SSoby Mathew 							 req_states,
450532ed618SSoby Mathew 							 ncpus);
451532ed618SSoby Mathew 
452532ed618SSoby Mathew 		state_info->pwr_domain_state[lvl] = target_state;
453532ed618SSoby Mathew 
454532ed618SSoby Mathew 		/* Break early if the negotiated target power state is RUN */
4556b7b0f36SAntonio Nino Diaz 		if (is_local_state_run(state_info->pwr_domain_state[lvl]) != 0)
456532ed618SSoby Mathew 			break;
457532ed618SSoby Mathew 
458532ed618SSoby Mathew 		parent_idx = psci_non_cpu_pd_nodes[parent_idx].parent_node;
459532ed618SSoby Mathew 	}
460532ed618SSoby Mathew 
461532ed618SSoby Mathew 	/*
462532ed618SSoby Mathew 	 * This is for cases when we break out of the above loop early because
463532ed618SSoby Mathew 	 * the target power state is RUN at a power level < end_pwlvl.
464532ed618SSoby Mathew 	 * We update the requested power state from state_info and then
465532ed618SSoby Mathew 	 * set the target state as RUN.
466532ed618SSoby Mathew 	 */
4676b7b0f36SAntonio Nino Diaz 	for (lvl = lvl + 1U; lvl <= end_pwrlvl; lvl++) {
468532ed618SSoby Mathew 		psci_set_req_local_pwr_state(lvl, cpu_idx,
469532ed618SSoby Mathew 					     state_info->pwr_domain_state[lvl]);
470532ed618SSoby Mathew 		state_info->pwr_domain_state[lvl] = PSCI_LOCAL_STATE_RUN;
471532ed618SSoby Mathew 
472532ed618SSoby Mathew 	}
473532ed618SSoby Mathew 
474532ed618SSoby Mathew 	/* Update the target state in the power domain nodes */
475532ed618SSoby Mathew 	psci_set_target_local_pwr_states(end_pwrlvl, state_info);
476532ed618SSoby Mathew }
477532ed618SSoby Mathew 
478532ed618SSoby Mathew /******************************************************************************
479532ed618SSoby Mathew  * This function validates a suspend request by making sure that if a standby
480532ed618SSoby Mathew  * state is requested then no power level is turned off and the highest power
481532ed618SSoby Mathew  * level is placed in a standby/retention state.
482532ed618SSoby Mathew  *
483532ed618SSoby Mathew  * It also ensures that the state level X will enter is not shallower than the
484532ed618SSoby Mathew  * state level X + 1 will enter.
485532ed618SSoby Mathew  *
486532ed618SSoby Mathew  * This validation will be enabled only for DEBUG builds as the platform is
487532ed618SSoby Mathew  * expected to perform these validations as well.
488532ed618SSoby Mathew  *****************************************************************************/
489532ed618SSoby Mathew int psci_validate_suspend_req(const psci_power_state_t *state_info,
490532ed618SSoby Mathew 			      unsigned int is_power_down_state)
491532ed618SSoby Mathew {
492532ed618SSoby Mathew 	unsigned int max_off_lvl, target_lvl, max_retn_lvl;
493532ed618SSoby Mathew 	plat_local_state_t state;
494532ed618SSoby Mathew 	plat_local_state_type_t req_state_type, deepest_state_type;
495532ed618SSoby Mathew 	int i;
496532ed618SSoby Mathew 
497532ed618SSoby Mathew 	/* Find the target suspend power level */
498532ed618SSoby Mathew 	target_lvl = psci_find_target_suspend_lvl(state_info);
499532ed618SSoby Mathew 	if (target_lvl == PSCI_INVALID_PWR_LVL)
500532ed618SSoby Mathew 		return PSCI_E_INVALID_PARAMS;
501532ed618SSoby Mathew 
502532ed618SSoby Mathew 	/* All power domain levels are in a RUN state to begin with */
503532ed618SSoby Mathew 	deepest_state_type = STATE_TYPE_RUN;
504532ed618SSoby Mathew 
5056b7b0f36SAntonio Nino Diaz 	for (i = (int) target_lvl; i >= (int) PSCI_CPU_PWR_LVL; i--) {
506532ed618SSoby Mathew 		state = state_info->pwr_domain_state[i];
507532ed618SSoby Mathew 		req_state_type = find_local_state_type(state);
508532ed618SSoby Mathew 
509532ed618SSoby Mathew 		/*
510532ed618SSoby Mathew 		 * While traversing from the highest power level to the lowest,
511532ed618SSoby Mathew 		 * the state requested for lower levels has to be the same or
512532ed618SSoby Mathew 		 * deeper i.e. equal to or greater than the state at the higher
513532ed618SSoby Mathew 		 * levels. If this condition is true, then the requested state
514532ed618SSoby Mathew 		 * becomes the deepest state encountered so far.
515532ed618SSoby Mathew 		 */
516532ed618SSoby Mathew 		if (req_state_type < deepest_state_type)
517532ed618SSoby Mathew 			return PSCI_E_INVALID_PARAMS;
518532ed618SSoby Mathew 		deepest_state_type = req_state_type;
519532ed618SSoby Mathew 	}
520532ed618SSoby Mathew 
521532ed618SSoby Mathew 	/* Find the highest off power level */
522532ed618SSoby Mathew 	max_off_lvl = psci_find_max_off_lvl(state_info);
523532ed618SSoby Mathew 
524532ed618SSoby Mathew 	/* The target_lvl is either equal to the max_off_lvl or max_retn_lvl */
525532ed618SSoby Mathew 	max_retn_lvl = PSCI_INVALID_PWR_LVL;
526532ed618SSoby Mathew 	if (target_lvl != max_off_lvl)
527532ed618SSoby Mathew 		max_retn_lvl = target_lvl;
528532ed618SSoby Mathew 
529532ed618SSoby Mathew 	/*
530532ed618SSoby Mathew 	 * If this is not a request for a power down state then max off level
531532ed618SSoby Mathew 	 * has to be invalid and max retention level has to be a valid power
532532ed618SSoby Mathew 	 * level.
533532ed618SSoby Mathew 	 */
5346b7b0f36SAntonio Nino Diaz 	if ((is_power_down_state == 0U) &&
5356b7b0f36SAntonio Nino Diaz 			((max_off_lvl != PSCI_INVALID_PWR_LVL) ||
5366b7b0f36SAntonio Nino Diaz 			 (max_retn_lvl == PSCI_INVALID_PWR_LVL)))
537532ed618SSoby Mathew 		return PSCI_E_INVALID_PARAMS;
538532ed618SSoby Mathew 
539532ed618SSoby Mathew 	return PSCI_E_SUCCESS;
540532ed618SSoby Mathew }
541532ed618SSoby Mathew 
542532ed618SSoby Mathew /******************************************************************************
543532ed618SSoby Mathew  * This function finds the highest power level which will be powered down
544532ed618SSoby Mathew  * amongst all the power levels specified in the 'state_info' structure
545532ed618SSoby Mathew  *****************************************************************************/
546532ed618SSoby Mathew unsigned int psci_find_max_off_lvl(const psci_power_state_t *state_info)
547532ed618SSoby Mathew {
548532ed618SSoby Mathew 	int i;
549532ed618SSoby Mathew 
5506b7b0f36SAntonio Nino Diaz 	for (i = (int) PLAT_MAX_PWR_LVL; i >= (int) PSCI_CPU_PWR_LVL; i--) {
5516b7b0f36SAntonio Nino Diaz 		if (is_local_state_off(state_info->pwr_domain_state[i]) != 0)
5526b7b0f36SAntonio Nino Diaz 			return (unsigned int) i;
553532ed618SSoby Mathew 	}
554532ed618SSoby Mathew 
555532ed618SSoby Mathew 	return PSCI_INVALID_PWR_LVL;
556532ed618SSoby Mathew }
557532ed618SSoby Mathew 
558532ed618SSoby Mathew /******************************************************************************
559532ed618SSoby Mathew  * This functions finds the level of the highest power domain which will be
560532ed618SSoby Mathew  * placed in a low power state during a suspend operation.
561532ed618SSoby Mathew  *****************************************************************************/
562532ed618SSoby Mathew unsigned int psci_find_target_suspend_lvl(const psci_power_state_t *state_info)
563532ed618SSoby Mathew {
564532ed618SSoby Mathew 	int i;
565532ed618SSoby Mathew 
5666b7b0f36SAntonio Nino Diaz 	for (i = (int) PLAT_MAX_PWR_LVL; i >= (int) PSCI_CPU_PWR_LVL; i--) {
5676b7b0f36SAntonio Nino Diaz 		if (is_local_state_run(state_info->pwr_domain_state[i]) == 0)
5686b7b0f36SAntonio Nino Diaz 			return (unsigned int) i;
569532ed618SSoby Mathew 	}
570532ed618SSoby Mathew 
571532ed618SSoby Mathew 	return PSCI_INVALID_PWR_LVL;
572532ed618SSoby Mathew }
573532ed618SSoby Mathew 
574532ed618SSoby Mathew /*******************************************************************************
57574d27d00SAndrew F. Davis  * This function is passed the highest level in the topology tree that the
57674d27d00SAndrew F. Davis  * operation should be applied to and a list of node indexes. It picks up locks
57774d27d00SAndrew F. Davis  * from the node index list in order of increasing power domain level in the
57874d27d00SAndrew F. Davis  * range specified.
579532ed618SSoby Mathew  ******************************************************************************/
58074d27d00SAndrew F. Davis void psci_acquire_pwr_domain_locks(unsigned int end_pwrlvl,
58174d27d00SAndrew F. Davis 				   const unsigned int *parent_nodes)
582532ed618SSoby Mathew {
58374d27d00SAndrew F. Davis 	unsigned int parent_idx;
584532ed618SSoby Mathew 	unsigned int level;
585532ed618SSoby Mathew 
586532ed618SSoby Mathew 	/* No locking required for level 0. Hence start locking from level 1 */
5876b7b0f36SAntonio Nino Diaz 	for (level = PSCI_CPU_PWR_LVL + 1U; level <= end_pwrlvl; level++) {
58874d27d00SAndrew F. Davis 		parent_idx = parent_nodes[level - 1U];
589532ed618SSoby Mathew 		psci_lock_get(&psci_non_cpu_pd_nodes[parent_idx]);
590532ed618SSoby Mathew 	}
591532ed618SSoby Mathew }
592532ed618SSoby Mathew 
593532ed618SSoby Mathew /*******************************************************************************
59474d27d00SAndrew F. Davis  * This function is passed the highest level in the topology tree that the
59574d27d00SAndrew F. Davis  * operation should be applied to and a list of node indexes. It releases the
59674d27d00SAndrew F. Davis  * locks in order of decreasing power domain level in the range specified.
597532ed618SSoby Mathew  ******************************************************************************/
59874d27d00SAndrew F. Davis void psci_release_pwr_domain_locks(unsigned int end_pwrlvl,
59974d27d00SAndrew F. Davis 				   const unsigned int *parent_nodes)
600532ed618SSoby Mathew {
60174d27d00SAndrew F. Davis 	unsigned int parent_idx;
6026b7b0f36SAntonio Nino Diaz 	unsigned int level;
603532ed618SSoby Mathew 
604532ed618SSoby Mathew 	/* Unlock top down. No unlocking required for level 0. */
6052fe75a2dSZelalem 	for (level = end_pwrlvl; level >= (PSCI_CPU_PWR_LVL + 1U); level--) {
6066b7b0f36SAntonio Nino Diaz 		parent_idx = parent_nodes[level - 1U];
607532ed618SSoby Mathew 		psci_lock_release(&psci_non_cpu_pd_nodes[parent_idx]);
608532ed618SSoby Mathew 	}
609532ed618SSoby Mathew }
610532ed618SSoby Mathew 
611532ed618SSoby Mathew /*******************************************************************************
612532ed618SSoby Mathew  * Simple routine to determine whether a mpidr is valid or not.
613532ed618SSoby Mathew  ******************************************************************************/
614532ed618SSoby Mathew int psci_validate_mpidr(u_register_t mpidr)
615532ed618SSoby Mathew {
616532ed618SSoby Mathew 	if (plat_core_pos_by_mpidr(mpidr) < 0)
617532ed618SSoby Mathew 		return PSCI_E_INVALID_PARAMS;
618532ed618SSoby Mathew 
619532ed618SSoby Mathew 	return PSCI_E_SUCCESS;
620532ed618SSoby Mathew }
621532ed618SSoby Mathew 
622532ed618SSoby Mathew /*******************************************************************************
623532ed618SSoby Mathew  * This function determines the full entrypoint information for the requested
624532ed618SSoby Mathew  * PSCI entrypoint on power on/resume and returns it.
625532ed618SSoby Mathew  ******************************************************************************/
626402b3cf8SJulius Werner #ifdef __aarch64__
627532ed618SSoby Mathew static int psci_get_ns_ep_info(entry_point_info_t *ep,
628532ed618SSoby Mathew 			       uintptr_t entrypoint,
629532ed618SSoby Mathew 			       u_register_t context_id)
630532ed618SSoby Mathew {
631532ed618SSoby Mathew 	u_register_t ep_attr, sctlr;
632532ed618SSoby Mathew 	unsigned int daif, ee, mode;
633532ed618SSoby Mathew 	u_register_t ns_scr_el3 = read_scr_el3();
634532ed618SSoby Mathew 	u_register_t ns_sctlr_el1 = read_sctlr_el1();
635532ed618SSoby Mathew 
6366b7b0f36SAntonio Nino Diaz 	sctlr = ((ns_scr_el3 & SCR_HCE_BIT) != 0U) ?
6376b7b0f36SAntonio Nino Diaz 		read_sctlr_el2() : ns_sctlr_el1;
638532ed618SSoby Mathew 	ee = 0;
639532ed618SSoby Mathew 
640532ed618SSoby Mathew 	ep_attr = NON_SECURE | EP_ST_DISABLE;
6416b7b0f36SAntonio Nino Diaz 	if ((sctlr & SCTLR_EE_BIT) != 0U) {
642532ed618SSoby Mathew 		ep_attr |= EP_EE_BIG;
643532ed618SSoby Mathew 		ee = 1;
644532ed618SSoby Mathew 	}
645532ed618SSoby Mathew 	SET_PARAM_HEAD(ep, PARAM_EP, VERSION_1, ep_attr);
646532ed618SSoby Mathew 
647532ed618SSoby Mathew 	ep->pc = entrypoint;
64832f0d3c6SDouglas Raillard 	zeromem(&ep->args, sizeof(ep->args));
649532ed618SSoby Mathew 	ep->args.arg0 = context_id;
650532ed618SSoby Mathew 
651532ed618SSoby Mathew 	/*
652532ed618SSoby Mathew 	 * Figure out whether the cpu enters the non-secure address space
653532ed618SSoby Mathew 	 * in aarch32 or aarch64
654532ed618SSoby Mathew 	 */
6556b7b0f36SAntonio Nino Diaz 	if ((ns_scr_el3 & SCR_RW_BIT) != 0U) {
656532ed618SSoby Mathew 
657532ed618SSoby Mathew 		/*
658532ed618SSoby Mathew 		 * Check whether a Thumb entry point has been provided for an
659532ed618SSoby Mathew 		 * aarch64 EL
660532ed618SSoby Mathew 		 */
6616b7b0f36SAntonio Nino Diaz 		if ((entrypoint & 0x1UL) != 0UL)
662532ed618SSoby Mathew 			return PSCI_E_INVALID_ADDRESS;
663532ed618SSoby Mathew 
6646b7b0f36SAntonio Nino Diaz 		mode = ((ns_scr_el3 & SCR_HCE_BIT) != 0U) ? MODE_EL2 : MODE_EL1;
665532ed618SSoby Mathew 
666532ed618SSoby Mathew 		ep->spsr = SPSR_64(mode, MODE_SP_ELX, DISABLE_ALL_EXCEPTIONS);
667532ed618SSoby Mathew 	} else {
668532ed618SSoby Mathew 
6696b7b0f36SAntonio Nino Diaz 		mode = ((ns_scr_el3 & SCR_HCE_BIT) != 0U) ?
6706b7b0f36SAntonio Nino Diaz 			MODE32_hyp : MODE32_svc;
671532ed618SSoby Mathew 
672532ed618SSoby Mathew 		/*
673532ed618SSoby Mathew 		 * TODO: Choose async. exception bits if HYP mode is not
674532ed618SSoby Mathew 		 * implemented according to the values of SCR.{AW, FW} bits
675532ed618SSoby Mathew 		 */
676532ed618SSoby Mathew 		daif = DAIF_ABT_BIT | DAIF_IRQ_BIT | DAIF_FIQ_BIT;
677532ed618SSoby Mathew 
678532ed618SSoby Mathew 		ep->spsr = SPSR_MODE32(mode, entrypoint & 0x1, ee, daif);
679532ed618SSoby Mathew 	}
680532ed618SSoby Mathew 
681532ed618SSoby Mathew 	return PSCI_E_SUCCESS;
682532ed618SSoby Mathew }
683402b3cf8SJulius Werner #else /* !__aarch64__ */
684402b3cf8SJulius Werner static int psci_get_ns_ep_info(entry_point_info_t *ep,
685402b3cf8SJulius Werner 			       uintptr_t entrypoint,
686402b3cf8SJulius Werner 			       u_register_t context_id)
687402b3cf8SJulius Werner {
688402b3cf8SJulius Werner 	u_register_t ep_attr;
689402b3cf8SJulius Werner 	unsigned int aif, ee, mode;
690402b3cf8SJulius Werner 	u_register_t scr = read_scr();
691402b3cf8SJulius Werner 	u_register_t ns_sctlr, sctlr;
692402b3cf8SJulius Werner 
693402b3cf8SJulius Werner 	/* Switch to non secure state */
694402b3cf8SJulius Werner 	write_scr(scr | SCR_NS_BIT);
695402b3cf8SJulius Werner 	isb();
696402b3cf8SJulius Werner 	ns_sctlr = read_sctlr();
697402b3cf8SJulius Werner 
698402b3cf8SJulius Werner 	sctlr = scr & SCR_HCE_BIT ? read_hsctlr() : ns_sctlr;
699402b3cf8SJulius Werner 
700402b3cf8SJulius Werner 	/* Return to original state */
701402b3cf8SJulius Werner 	write_scr(scr);
702402b3cf8SJulius Werner 	isb();
703402b3cf8SJulius Werner 	ee = 0;
704402b3cf8SJulius Werner 
705402b3cf8SJulius Werner 	ep_attr = NON_SECURE | EP_ST_DISABLE;
706402b3cf8SJulius Werner 	if (sctlr & SCTLR_EE_BIT) {
707402b3cf8SJulius Werner 		ep_attr |= EP_EE_BIG;
708402b3cf8SJulius Werner 		ee = 1;
709402b3cf8SJulius Werner 	}
710402b3cf8SJulius Werner 	SET_PARAM_HEAD(ep, PARAM_EP, VERSION_1, ep_attr);
711402b3cf8SJulius Werner 
712402b3cf8SJulius Werner 	ep->pc = entrypoint;
713402b3cf8SJulius Werner 	zeromem(&ep->args, sizeof(ep->args));
714402b3cf8SJulius Werner 	ep->args.arg0 = context_id;
715402b3cf8SJulius Werner 
716402b3cf8SJulius Werner 	mode = scr & SCR_HCE_BIT ? MODE32_hyp : MODE32_svc;
717402b3cf8SJulius Werner 
718402b3cf8SJulius Werner 	/*
719402b3cf8SJulius Werner 	 * TODO: Choose async. exception bits if HYP mode is not
720402b3cf8SJulius Werner 	 * implemented according to the values of SCR.{AW, FW} bits
721402b3cf8SJulius Werner 	 */
722402b3cf8SJulius Werner 	aif = SPSR_ABT_BIT | SPSR_IRQ_BIT | SPSR_FIQ_BIT;
723402b3cf8SJulius Werner 
724402b3cf8SJulius Werner 	ep->spsr = SPSR_MODE32(mode, entrypoint & 0x1, ee, aif);
725402b3cf8SJulius Werner 
726402b3cf8SJulius Werner 	return PSCI_E_SUCCESS;
727402b3cf8SJulius Werner }
728402b3cf8SJulius Werner 
729402b3cf8SJulius Werner #endif /* __aarch64__ */
730532ed618SSoby Mathew 
731532ed618SSoby Mathew /*******************************************************************************
732532ed618SSoby Mathew  * This function validates the entrypoint with the platform layer if the
733532ed618SSoby Mathew  * appropriate pm_ops hook is exported by the platform and returns the
734532ed618SSoby Mathew  * 'entry_point_info'.
735532ed618SSoby Mathew  ******************************************************************************/
736532ed618SSoby Mathew int psci_validate_entry_point(entry_point_info_t *ep,
737532ed618SSoby Mathew 			      uintptr_t entrypoint,
738532ed618SSoby Mathew 			      u_register_t context_id)
739532ed618SSoby Mathew {
740532ed618SSoby Mathew 	int rc;
741532ed618SSoby Mathew 
742532ed618SSoby Mathew 	/* Validate the entrypoint using platform psci_ops */
7436b7b0f36SAntonio Nino Diaz 	if (psci_plat_pm_ops->validate_ns_entrypoint != NULL) {
744532ed618SSoby Mathew 		rc = psci_plat_pm_ops->validate_ns_entrypoint(entrypoint);
745532ed618SSoby Mathew 		if (rc != PSCI_E_SUCCESS)
746532ed618SSoby Mathew 			return PSCI_E_INVALID_ADDRESS;
747532ed618SSoby Mathew 	}
748532ed618SSoby Mathew 
749532ed618SSoby Mathew 	/*
750532ed618SSoby Mathew 	 * Verify and derive the re-entry information for
751532ed618SSoby Mathew 	 * the non-secure world from the non-secure state from
752532ed618SSoby Mathew 	 * where this call originated.
753532ed618SSoby Mathew 	 */
754532ed618SSoby Mathew 	rc = psci_get_ns_ep_info(ep, entrypoint, context_id);
755532ed618SSoby Mathew 	return rc;
756532ed618SSoby Mathew }
757532ed618SSoby Mathew 
758532ed618SSoby Mathew /*******************************************************************************
759532ed618SSoby Mathew  * Generic handler which is called when a cpu is physically powered on. It
760532ed618SSoby Mathew  * traverses the node information and finds the highest power level powered
761532ed618SSoby Mathew  * off and performs generic, architectural, platform setup and state management
762532ed618SSoby Mathew  * to power on that power level and power levels below it.
763532ed618SSoby Mathew  * e.g. For a cpu that's been powered on, it will call the platform specific
764532ed618SSoby Mathew  * code to enable the gic cpu interface and for a cluster it will enable
765532ed618SSoby Mathew  * coherency at the interconnect level in addition to gic cpu interface.
766532ed618SSoby Mathew  ******************************************************************************/
767cf0b1492SSoby Mathew void psci_warmboot_entrypoint(void)
768532ed618SSoby Mathew {
7696b7b0f36SAntonio Nino Diaz 	unsigned int end_pwrlvl;
770fc81021aSDeepika Bhavnani 	unsigned int cpu_idx = plat_my_core_pos();
77174d27d00SAndrew F. Davis 	unsigned int parent_nodes[PLAT_MAX_PWR_LVL] = {0};
772532ed618SSoby Mathew 	psci_power_state_t state_info = { {PSCI_LOCAL_STATE_RUN} };
773532ed618SSoby Mathew 
774532ed618SSoby Mathew 	/*
775532ed618SSoby Mathew 	 * Verify that we have been explicitly turned ON or resumed from
776532ed618SSoby Mathew 	 * suspend.
777532ed618SSoby Mathew 	 */
778532ed618SSoby Mathew 	if (psci_get_aff_info_state() == AFF_STATE_OFF) {
77933e8c569SAndrew Walbran 		ERROR("Unexpected affinity info state.\n");
780532ed618SSoby Mathew 		panic();
781532ed618SSoby Mathew 	}
782532ed618SSoby Mathew 
783532ed618SSoby Mathew 	/*
784532ed618SSoby Mathew 	 * Get the maximum power domain level to traverse to after this cpu
785532ed618SSoby Mathew 	 * has been physically powered up.
786532ed618SSoby Mathew 	 */
787532ed618SSoby Mathew 	end_pwrlvl = get_power_on_target_pwrlvl();
788532ed618SSoby Mathew 
78974d27d00SAndrew F. Davis 	/* Get the parent nodes */
79074d27d00SAndrew F. Davis 	psci_get_parent_pwr_domain_nodes(cpu_idx, end_pwrlvl, parent_nodes);
79174d27d00SAndrew F. Davis 
792532ed618SSoby Mathew 	/*
793532ed618SSoby Mathew 	 * This function acquires the lock corresponding to each power level so
794532ed618SSoby Mathew 	 * that by the time all locks are taken, the system topology is snapshot
795532ed618SSoby Mathew 	 * and state management can be done safely.
796532ed618SSoby Mathew 	 */
79774d27d00SAndrew F. Davis 	psci_acquire_pwr_domain_locks(end_pwrlvl, parent_nodes);
798532ed618SSoby Mathew 
799bfc87a8dSSoby Mathew 	psci_get_target_local_pwr_states(end_pwrlvl, &state_info);
800bfc87a8dSSoby Mathew 
801532ed618SSoby Mathew #if ENABLE_PSCI_STAT
80204c1db1eSdp-arm 	plat_psci_stat_accounting_stop(&state_info);
803532ed618SSoby Mathew #endif
804532ed618SSoby Mathew 
805532ed618SSoby Mathew 	/*
806532ed618SSoby Mathew 	 * This CPU could be resuming from suspend or it could have just been
807532ed618SSoby Mathew 	 * turned on. To distinguish between these 2 cases, we examine the
808532ed618SSoby Mathew 	 * affinity state of the CPU:
809532ed618SSoby Mathew 	 *  - If the affinity state is ON_PENDING then it has just been
810532ed618SSoby Mathew 	 *    turned on.
811532ed618SSoby Mathew 	 *  - Else it is resuming from suspend.
812532ed618SSoby Mathew 	 *
813532ed618SSoby Mathew 	 * Depending on the type of warm reset identified, choose the right set
814532ed618SSoby Mathew 	 * of power management handler and perform the generic, architecture
815532ed618SSoby Mathew 	 * and platform specific handling.
816532ed618SSoby Mathew 	 */
817532ed618SSoby Mathew 	if (psci_get_aff_info_state() == AFF_STATE_ON_PENDING)
818532ed618SSoby Mathew 		psci_cpu_on_finish(cpu_idx, &state_info);
819532ed618SSoby Mathew 	else
820532ed618SSoby Mathew 		psci_cpu_suspend_finish(cpu_idx, &state_info);
821532ed618SSoby Mathew 
822532ed618SSoby Mathew 	/*
823532ed618SSoby Mathew 	 * Set the requested and target state of this CPU and all the higher
824532ed618SSoby Mathew 	 * power domains which are ancestors of this CPU to run.
825532ed618SSoby Mathew 	 */
826532ed618SSoby Mathew 	psci_set_pwr_domains_to_run(end_pwrlvl);
827532ed618SSoby Mathew 
828532ed618SSoby Mathew #if ENABLE_PSCI_STAT
829532ed618SSoby Mathew 	/*
830532ed618SSoby Mathew 	 * Update PSCI stats.
831532ed618SSoby Mathew 	 * Caches are off when writing stats data on the power down path.
832532ed618SSoby Mathew 	 * Since caches are now enabled, it's necessary to do cache
833532ed618SSoby Mathew 	 * maintenance before reading that same data.
834532ed618SSoby Mathew 	 */
83504c1db1eSdp-arm 	psci_stats_update_pwr_up(end_pwrlvl, &state_info);
836532ed618SSoby Mathew #endif
837532ed618SSoby Mathew 
838532ed618SSoby Mathew 	/*
839532ed618SSoby Mathew 	 * This loop releases the lock corresponding to each power level
840532ed618SSoby Mathew 	 * in the reverse order to which they were acquired.
841532ed618SSoby Mathew 	 */
84274d27d00SAndrew F. Davis 	psci_release_pwr_domain_locks(end_pwrlvl, parent_nodes);
843532ed618SSoby Mathew }
844532ed618SSoby Mathew 
845532ed618SSoby Mathew /*******************************************************************************
846532ed618SSoby Mathew  * This function initializes the set of hooks that PSCI invokes as part of power
847532ed618SSoby Mathew  * management operation. The power management hooks are expected to be provided
848532ed618SSoby Mathew  * by the SPD, after it finishes all its initialization
849532ed618SSoby Mathew  ******************************************************************************/
850532ed618SSoby Mathew void psci_register_spd_pm_hook(const spd_pm_ops_t *pm)
851532ed618SSoby Mathew {
8526b7b0f36SAntonio Nino Diaz 	assert(pm != NULL);
853532ed618SSoby Mathew 	psci_spd_pm = pm;
854532ed618SSoby Mathew 
8556b7b0f36SAntonio Nino Diaz 	if (pm->svc_migrate != NULL)
856532ed618SSoby Mathew 		psci_caps |= define_psci_cap(PSCI_MIG_AARCH64);
857532ed618SSoby Mathew 
8586b7b0f36SAntonio Nino Diaz 	if (pm->svc_migrate_info != NULL)
859532ed618SSoby Mathew 		psci_caps |= define_psci_cap(PSCI_MIG_INFO_UP_CPU_AARCH64)
860532ed618SSoby Mathew 				| define_psci_cap(PSCI_MIG_INFO_TYPE);
861532ed618SSoby Mathew }
862532ed618SSoby Mathew 
863532ed618SSoby Mathew /*******************************************************************************
864532ed618SSoby Mathew  * This function invokes the migrate info hook in the spd_pm_ops. It performs
865532ed618SSoby Mathew  * the necessary return value validation. If the Secure Payload is UP and
866532ed618SSoby Mathew  * migrate capable, it returns the mpidr of the CPU on which the Secure payload
867532ed618SSoby Mathew  * is resident through the mpidr parameter. Else the value of the parameter on
868532ed618SSoby Mathew  * return is undefined.
869532ed618SSoby Mathew  ******************************************************************************/
870532ed618SSoby Mathew int psci_spd_migrate_info(u_register_t *mpidr)
871532ed618SSoby Mathew {
872532ed618SSoby Mathew 	int rc;
873532ed618SSoby Mathew 
8746b7b0f36SAntonio Nino Diaz 	if ((psci_spd_pm == NULL) || (psci_spd_pm->svc_migrate_info == NULL))
875532ed618SSoby Mathew 		return PSCI_E_NOT_SUPPORTED;
876532ed618SSoby Mathew 
877532ed618SSoby Mathew 	rc = psci_spd_pm->svc_migrate_info(mpidr);
878532ed618SSoby Mathew 
8796b7b0f36SAntonio Nino Diaz 	assert((rc == PSCI_TOS_UP_MIG_CAP) || (rc == PSCI_TOS_NOT_UP_MIG_CAP) ||
8806b7b0f36SAntonio Nino Diaz 	       (rc == PSCI_TOS_NOT_PRESENT_MP) || (rc == PSCI_E_NOT_SUPPORTED));
881532ed618SSoby Mathew 
882532ed618SSoby Mathew 	return rc;
883532ed618SSoby Mathew }
884532ed618SSoby Mathew 
885532ed618SSoby Mathew 
886532ed618SSoby Mathew /*******************************************************************************
887532ed618SSoby Mathew  * This function prints the state of all power domains present in the
888532ed618SSoby Mathew  * system
889532ed618SSoby Mathew  ******************************************************************************/
890532ed618SSoby Mathew void psci_print_power_domain_map(void)
891532ed618SSoby Mathew {
892532ed618SSoby Mathew #if LOG_LEVEL >= LOG_LEVEL_INFO
893ab4df50cSPankaj Gupta 	unsigned int idx;
894532ed618SSoby Mathew 	plat_local_state_t state;
895532ed618SSoby Mathew 	plat_local_state_type_t state_type;
896532ed618SSoby Mathew 
897532ed618SSoby Mathew 	/* This array maps to the PSCI_STATE_X definitions in psci.h */
898532ed618SSoby Mathew 	static const char * const psci_state_type_str[] = {
899532ed618SSoby Mathew 		"ON",
900532ed618SSoby Mathew 		"RETENTION",
901532ed618SSoby Mathew 		"OFF",
902532ed618SSoby Mathew 	};
903532ed618SSoby Mathew 
904532ed618SSoby Mathew 	INFO("PSCI Power Domain Map:\n");
905ab4df50cSPankaj Gupta 	for (idx = 0; idx < (PSCI_NUM_PWR_DOMAINS - psci_plat_core_count);
906532ed618SSoby Mathew 							idx++) {
907532ed618SSoby Mathew 		state_type = find_local_state_type(
908532ed618SSoby Mathew 				psci_non_cpu_pd_nodes[idx].local_state);
909532ed618SSoby Mathew 		INFO("  Domain Node : Level %u, parent_node %d,"
910532ed618SSoby Mathew 				" State %s (0x%x)\n",
911532ed618SSoby Mathew 				psci_non_cpu_pd_nodes[idx].level,
912532ed618SSoby Mathew 				psci_non_cpu_pd_nodes[idx].parent_node,
913532ed618SSoby Mathew 				psci_state_type_str[state_type],
914532ed618SSoby Mathew 				psci_non_cpu_pd_nodes[idx].local_state);
915532ed618SSoby Mathew 	}
916532ed618SSoby Mathew 
917ab4df50cSPankaj Gupta 	for (idx = 0; idx < psci_plat_core_count; idx++) {
918532ed618SSoby Mathew 		state = psci_get_cpu_local_state_by_idx(idx);
919532ed618SSoby Mathew 		state_type = find_local_state_type(state);
920532ed618SSoby Mathew 		INFO("  CPU Node : MPID 0x%llx, parent_node %d,"
921532ed618SSoby Mathew 				" State %s (0x%x)\n",
922532ed618SSoby Mathew 				(unsigned long long)psci_cpu_pd_nodes[idx].mpidr,
923532ed618SSoby Mathew 				psci_cpu_pd_nodes[idx].parent_node,
924532ed618SSoby Mathew 				psci_state_type_str[state_type],
925532ed618SSoby Mathew 				psci_get_cpu_local_state_by_idx(idx));
926532ed618SSoby Mathew 	}
927532ed618SSoby Mathew #endif
928532ed618SSoby Mathew }
929532ed618SSoby Mathew 
930b10d4499SJeenu Viswambharan /******************************************************************************
931b10d4499SJeenu Viswambharan  * Return whether any secondaries were powered up with CPU_ON call. A CPU that
932b10d4499SJeenu Viswambharan  * have ever been powered up would have set its MPDIR value to something other
933b10d4499SJeenu Viswambharan  * than PSCI_INVALID_MPIDR. Note that MPDIR isn't reset back to
934b10d4499SJeenu Viswambharan  * PSCI_INVALID_MPIDR when a CPU is powered down later, so the return value is
935b10d4499SJeenu Viswambharan  * meaningful only when called on the primary CPU during early boot.
936b10d4499SJeenu Viswambharan  *****************************************************************************/
937b10d4499SJeenu Viswambharan int psci_secondaries_brought_up(void)
938b10d4499SJeenu Viswambharan {
9396b7b0f36SAntonio Nino Diaz 	unsigned int idx, n_valid = 0U;
940b10d4499SJeenu Viswambharan 
9416b7b0f36SAntonio Nino Diaz 	for (idx = 0U; idx < ARRAY_SIZE(psci_cpu_pd_nodes); idx++) {
942b10d4499SJeenu Viswambharan 		if (psci_cpu_pd_nodes[idx].mpidr != PSCI_INVALID_MPIDR)
943b10d4499SJeenu Viswambharan 			n_valid++;
944b10d4499SJeenu Viswambharan 	}
945b10d4499SJeenu Viswambharan 
9466b7b0f36SAntonio Nino Diaz 	assert(n_valid > 0U);
947b10d4499SJeenu Viswambharan 
9486b7b0f36SAntonio Nino Diaz 	return (n_valid > 1U) ? 1 : 0;
949b10d4499SJeenu Viswambharan }
950b10d4499SJeenu Viswambharan 
951b0408e87SJeenu Viswambharan /*******************************************************************************
952b0408e87SJeenu Viswambharan  * Initiate power down sequence, by calling power down operations registered for
953b0408e87SJeenu Viswambharan  * this CPU.
954b0408e87SJeenu Viswambharan  ******************************************************************************/
955b0408e87SJeenu Viswambharan void psci_do_pwrdown_sequence(unsigned int power_level)
956b0408e87SJeenu Viswambharan {
957b0408e87SJeenu Viswambharan #if HW_ASSISTED_COHERENCY
958b0408e87SJeenu Viswambharan 	/*
959b0408e87SJeenu Viswambharan 	 * With hardware-assisted coherency, the CPU drivers only initiate the
960b0408e87SJeenu Viswambharan 	 * power down sequence, without performing cache-maintenance operations
961c98db6c6SAndrew F. Davis 	 * in software. Data caches enabled both before and after this call.
962b0408e87SJeenu Viswambharan 	 */
963b0408e87SJeenu Viswambharan 	prepare_cpu_pwr_dwn(power_level);
964b0408e87SJeenu Viswambharan #else
965b0408e87SJeenu Viswambharan 	/*
966b0408e87SJeenu Viswambharan 	 * Without hardware-assisted coherency, the CPU drivers disable data
967c98db6c6SAndrew F. Davis 	 * caches, then perform cache-maintenance operations in software.
968b0408e87SJeenu Viswambharan 	 *
969c98db6c6SAndrew F. Davis 	 * This also calls prepare_cpu_pwr_dwn() to initiate power down
970c98db6c6SAndrew F. Davis 	 * sequence, but that function will return with data caches disabled.
971c98db6c6SAndrew F. Davis 	 * We must ensure that the stack memory is flushed out to memory before
972c98db6c6SAndrew F. Davis 	 * we start popping from it again.
973b0408e87SJeenu Viswambharan 	 */
974b0408e87SJeenu Viswambharan 	psci_do_pwrdown_cache_maintenance(power_level);
975b0408e87SJeenu Viswambharan #endif
976b0408e87SJeenu Viswambharan }
977*22744909SSandeep Tripathy 
978*22744909SSandeep Tripathy /*******************************************************************************
979*22744909SSandeep Tripathy  * This function invokes the callback 'stop_func()' with the 'mpidr' of each
980*22744909SSandeep Tripathy  * online PE. Caller can pass suitable method to stop a remote core.
981*22744909SSandeep Tripathy  *
982*22744909SSandeep Tripathy  * 'wait_ms' is the timeout value in milliseconds for the other cores to
983*22744909SSandeep Tripathy  * transition to power down state. Passing '0' makes it non-blocking.
984*22744909SSandeep Tripathy  *
985*22744909SSandeep Tripathy  * The function returns 'PSCI_E_DENIED' if some cores failed to stop within the
986*22744909SSandeep Tripathy  * given timeout.
987*22744909SSandeep Tripathy  ******************************************************************************/
988*22744909SSandeep Tripathy int psci_stop_other_cores(unsigned int wait_ms,
989*22744909SSandeep Tripathy 				   void (*stop_func)(u_register_t mpidr))
990*22744909SSandeep Tripathy {
991*22744909SSandeep Tripathy 	unsigned int idx, this_cpu_idx;
992*22744909SSandeep Tripathy 
993*22744909SSandeep Tripathy 	this_cpu_idx = plat_my_core_pos();
994*22744909SSandeep Tripathy 
995*22744909SSandeep Tripathy 	/* Invoke stop_func for each core */
996*22744909SSandeep Tripathy 	for (idx = 0U; idx < psci_plat_core_count; idx++) {
997*22744909SSandeep Tripathy 		/* skip current CPU */
998*22744909SSandeep Tripathy 		if (idx == this_cpu_idx) {
999*22744909SSandeep Tripathy 			continue;
1000*22744909SSandeep Tripathy 		}
1001*22744909SSandeep Tripathy 
1002*22744909SSandeep Tripathy 		/* Check if the CPU is ON */
1003*22744909SSandeep Tripathy 		if (psci_get_aff_info_state_by_idx(idx) == AFF_STATE_ON) {
1004*22744909SSandeep Tripathy 			(*stop_func)(psci_cpu_pd_nodes[idx].mpidr);
1005*22744909SSandeep Tripathy 		}
1006*22744909SSandeep Tripathy 	}
1007*22744909SSandeep Tripathy 
1008*22744909SSandeep Tripathy 	/* Need to wait for other cores to shutdown */
1009*22744909SSandeep Tripathy 	if (wait_ms != 0U) {
1010*22744909SSandeep Tripathy 		while ((wait_ms-- != 0U) && (psci_is_last_on_cpu() != 0U)) {
1011*22744909SSandeep Tripathy 			mdelay(1U);
1012*22744909SSandeep Tripathy 		}
1013*22744909SSandeep Tripathy 
1014*22744909SSandeep Tripathy 		if (psci_is_last_on_cpu() != 0U) {
1015*22744909SSandeep Tripathy 			WARN("Failed to stop all cores!\n");
1016*22744909SSandeep Tripathy 			psci_print_power_domain_map();
1017*22744909SSandeep Tripathy 			return PSCI_E_DENIED;
1018*22744909SSandeep Tripathy 		}
1019*22744909SSandeep Tripathy 	}
1020*22744909SSandeep Tripathy 
1021*22744909SSandeep Tripathy 	return PSCI_E_SUCCESS;
1022*22744909SSandeep Tripathy }
1023