blob: 7da04fb38a2277dd9c422cb0e9018fc1eab33f4a [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Dan Handleye83b0ca2014-01-14 18:17:09 +00002 * Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * Redistributions of source code must retain the above copyright notice, this
8 * list of conditions and the following disclaimer.
9 *
10 * Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 *
14 * Neither the name of ARM nor the names of its contributors may be used
15 * to endorse or promote products derived from this software without specific
16 * prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
Dan Handley2bd4ef22014-04-09 13:14:54 +010031#include <arch.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010032#include <arch_helpers.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010033#include <assert.h>
34#include <bl_common.h>
35#include <context.h>
Jeenu Viswambharancaa84932014-02-06 10:36:15 +000036#include <context_mgmt.h>
Dan Handley714a0d22014-04-09 13:13:04 +010037#include <debug.h>
Dan Handleyed6ff952014-05-14 17:44:19 +010038#include <platform.h>
Dan Handley714a0d22014-04-09 13:13:04 +010039#include "psci_private.h"
Achin Gupta4f6ad662013-10-25 09:08:21 +010040
Achin Gupta607084e2014-02-09 18:24:19 +000041/*
Jeenu Viswambharan7f366602014-02-20 17:11:00 +000042 * SPD power management operations, expected to be supplied by the registered
43 * SPD on successful SP initialization
Achin Gupta607084e2014-02-09 18:24:19 +000044 */
Dan Handleye2712bc2014-04-10 15:37:22 +010045const spd_pm_ops_t *psci_spd_pm;
Achin Gupta607084e2014-02-09 18:24:19 +000046
Achin Gupta4f6ad662013-10-25 09:08:21 +010047/*******************************************************************************
48 * Arrays that contains information needs to resume a cpu's execution when woken
Dan Handley60b13e32014-05-14 15:13:16 +010049 * out of suspend or off states. Each cpu is allocated a single entry in each
50 * array during startup.
Achin Gupta4f6ad662013-10-25 09:08:21 +010051 ******************************************************************************/
Dan Handleye2712bc2014-04-10 15:37:22 +010052suspend_context_t psci_suspend_context[PSCI_NUM_AFFS];
53ns_entry_info_t psci_ns_entry_info[PSCI_NUM_AFFS];
Achin Gupta4f6ad662013-10-25 09:08:21 +010054
55/*******************************************************************************
56 * Grand array that holds the platform's topology information for state
57 * management of affinity instances. Each node (aff_map_node) in the array
58 * corresponds to an affinity instance e.g. cluster, cpu within an mpidr
59 ******************************************************************************/
Dan Handleye2712bc2014-04-10 15:37:22 +010060aff_map_node_t psci_aff_map[PSCI_NUM_AFFS]
Achin Gupta4f6ad662013-10-25 09:08:21 +010061__attribute__ ((section("tzfw_coherent_mem")));
62
63/*******************************************************************************
Achin Gupta4f6ad662013-10-25 09:08:21 +010064 * Pointer to functions exported by the platform to complete power mgmt. ops
65 ******************************************************************************/
Dan Handleya4cb68e2014-04-23 13:47:06 +010066const plat_pm_ops_t *psci_plat_pm_ops;
Achin Gupta4f6ad662013-10-25 09:08:21 +010067
68/*******************************************************************************
Achin Guptaa45e3972013-12-05 15:10:48 +000069 * Routine to return the maximum affinity level to traverse to after a cpu has
70 * been physically powered up. It is expected to be called immediately after
71 * reset from assembler code. It has to find its 'aff_map_node' instead of
72 * getting it as an argument.
73 * TODO: Calling psci_get_aff_map_node() with the MMU disabled is slow. Add
74 * support to allow faster access to the target affinity level.
75 ******************************************************************************/
76int get_power_on_target_afflvl(unsigned long mpidr)
77{
Dan Handleye2712bc2014-04-10 15:37:22 +010078 aff_map_node_t *node;
Achin Guptaa45e3972013-12-05 15:10:48 +000079 unsigned int state;
Vikram Kanigirif100f412014-04-01 19:26:26 +010080 int afflvl;
Achin Guptaa45e3972013-12-05 15:10:48 +000081
82 /* Retrieve our node from the topology tree */
Jeenu Viswambharancaa84932014-02-06 10:36:15 +000083 node = psci_get_aff_map_node(mpidr & MPIDR_AFFINITY_MASK,
84 MPIDR_AFFLVL0);
Achin Guptaa45e3972013-12-05 15:10:48 +000085 assert(node);
86
87 /*
88 * Return the maximum supported affinity level if this cpu was off.
89 * Call the handler in the suspend code if this cpu had been suspended.
90 * Any other state is invalid.
91 */
Achin Gupta75f73672013-12-05 16:33:10 +000092 state = psci_get_state(node);
Achin Guptaa45e3972013-12-05 15:10:48 +000093 if (state == PSCI_STATE_ON_PENDING)
94 return get_max_afflvl();
95
Vikram Kanigirif100f412014-04-01 19:26:26 +010096 if (state == PSCI_STATE_SUSPEND) {
97 afflvl = psci_get_aff_map_node_suspend_afflvl(node);
98 assert(afflvl != PSCI_INVALID_DATA);
99 return afflvl;
100 }
Achin Guptaa45e3972013-12-05 15:10:48 +0000101 return PSCI_E_INVALID_PARAMS;
102}
103
104/*******************************************************************************
Achin Gupta4f6ad662013-10-25 09:08:21 +0100105 * Simple routine to retrieve the maximum affinity level supported by the
106 * platform and check that it makes sense.
107 ******************************************************************************/
108int get_max_afflvl()
109{
110 int aff_lvl;
111
112 aff_lvl = plat_get_max_afflvl();
113 assert(aff_lvl <= MPIDR_MAX_AFFLVL && aff_lvl >= MPIDR_AFFLVL0);
114
115 return aff_lvl;
116}
117
118/*******************************************************************************
119 * Simple routine to set the id of an affinity instance at a given level in the
120 * mpidr.
121 ******************************************************************************/
122unsigned long mpidr_set_aff_inst(unsigned long mpidr,
123 unsigned char aff_inst,
124 int aff_lvl)
125{
126 unsigned long aff_shift;
127
128 assert(aff_lvl <= MPIDR_AFFLVL3);
129
130 /*
131 * Decide the number of bits to shift by depending upon
132 * the affinity level
133 */
134 aff_shift = get_afflvl_shift(aff_lvl);
135
136 /* Clear the existing affinity instance & set the new one*/
137 mpidr &= ~(MPIDR_AFFLVL_MASK << aff_shift);
138 mpidr |= aff_inst << aff_shift;
139
140 return mpidr;
141}
142
143/*******************************************************************************
Achin Gupta0959db52013-12-02 17:33:04 +0000144 * This function sanity checks a range of affinity levels.
145 ******************************************************************************/
146int psci_check_afflvl_range(int start_afflvl, int end_afflvl)
147{
148 /* Sanity check the parameters passed */
149 if (end_afflvl > MPIDR_MAX_AFFLVL)
150 return PSCI_E_INVALID_PARAMS;
151
152 if (start_afflvl < MPIDR_AFFLVL0)
153 return PSCI_E_INVALID_PARAMS;
154
155 if (end_afflvl < start_afflvl)
156 return PSCI_E_INVALID_PARAMS;
157
158 return PSCI_E_SUCCESS;
159}
160
161/*******************************************************************************
162 * This function is passed an array of pointers to affinity level nodes in the
163 * topology tree for an mpidr. It picks up locks for each affinity level bottom
164 * up in the range specified.
165 ******************************************************************************/
166void psci_acquire_afflvl_locks(unsigned long mpidr,
167 int start_afflvl,
168 int end_afflvl,
Dan Handleye2712bc2014-04-10 15:37:22 +0100169 mpidr_aff_map_nodes_t mpidr_nodes)
Achin Gupta0959db52013-12-02 17:33:04 +0000170{
171 int level;
172
173 for (level = start_afflvl; level <= end_afflvl; level++) {
174 if (mpidr_nodes[level] == NULL)
175 continue;
Andrew Thoelke958cc022014-06-09 12:54:15 +0100176 bakery_lock_get(&mpidr_nodes[level]->lock);
Achin Gupta0959db52013-12-02 17:33:04 +0000177 }
178}
179
180/*******************************************************************************
181 * This function is passed an array of pointers to affinity level nodes in the
182 * topology tree for an mpidr. It releases the lock for each affinity level top
183 * down in the range specified.
184 ******************************************************************************/
185void psci_release_afflvl_locks(unsigned long mpidr,
186 int start_afflvl,
187 int end_afflvl,
Dan Handleye2712bc2014-04-10 15:37:22 +0100188 mpidr_aff_map_nodes_t mpidr_nodes)
Achin Gupta0959db52013-12-02 17:33:04 +0000189{
190 int level;
191
192 for (level = end_afflvl; level >= start_afflvl; level--) {
193 if (mpidr_nodes[level] == NULL)
194 continue;
Andrew Thoelke958cc022014-06-09 12:54:15 +0100195 bakery_lock_release(&mpidr_nodes[level]->lock);
Achin Gupta0959db52013-12-02 17:33:04 +0000196 }
197}
198
199/*******************************************************************************
Achin Gupta4f6ad662013-10-25 09:08:21 +0100200 * Simple routine to determine whether an affinity instance at a given level
201 * in an mpidr exists or not.
202 ******************************************************************************/
203int psci_validate_mpidr(unsigned long mpidr, int level)
204{
Dan Handleye2712bc2014-04-10 15:37:22 +0100205 aff_map_node_t *node;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100206
207 node = psci_get_aff_map_node(mpidr, level);
208 if (node && (node->state & PSCI_AFF_PRESENT))
209 return PSCI_E_SUCCESS;
210 else
211 return PSCI_E_INVALID_PARAMS;
212}
213
214/*******************************************************************************
Achin Gupta4f6ad662013-10-25 09:08:21 +0100215 * This function retrieves all the stashed information needed to correctly
216 * resume a cpu's execution in the non-secure state after it has been physically
217 * powered on i.e. turned ON or resumed from SUSPEND
218 ******************************************************************************/
Achin Guptac8afc782013-11-25 18:45:02 +0000219void psci_get_ns_entry_info(unsigned int index)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100220{
221 unsigned long sctlr = 0, scr, el_status, id_aa64pfr0;
Dan Handleye2712bc2014-04-10 15:37:22 +0100222 cpu_context_t *ns_entry_context;
223 gp_regs_t *ns_entry_gpregs;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100224
225 scr = read_scr();
226
Achin Gupta4f6ad662013-10-25 09:08:21 +0100227 /* Find out which EL we are going to */
228 id_aa64pfr0 = read_id_aa64pfr0_el1();
229 el_status = (id_aa64pfr0 >> ID_AA64PFR0_EL2_SHIFT) &
230 ID_AA64PFR0_ELX_MASK;
231
232 /* Restore endianess */
233 if (psci_ns_entry_info[index].sctlr & SCTLR_EE_BIT)
234 sctlr |= SCTLR_EE_BIT;
235 else
236 sctlr &= ~SCTLR_EE_BIT;
237
238 /* Turn off MMU and Caching */
239 sctlr &= ~(SCTLR_M_BIT | SCTLR_C_BIT | SCTLR_M_BIT);
240
241 /* Set the register width */
242 if (psci_ns_entry_info[index].scr & SCR_RW_BIT)
243 scr |= SCR_RW_BIT;
244 else
245 scr &= ~SCR_RW_BIT;
246
247 scr |= SCR_NS_BIT;
248
249 if (el_status)
250 write_sctlr_el2(sctlr);
251 else
252 write_sctlr_el1(sctlr);
253
254 /* Fulfill the cpu_on entry reqs. as per the psci spec */
Andrew Thoelkea2f65532014-05-14 17:09:32 +0100255 ns_entry_context = (cpu_context_t *) cm_get_context(NON_SECURE);
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000256 assert(ns_entry_context);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100257
Achin Guptac8afc782013-11-25 18:45:02 +0000258 /*
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000259 * Setup general purpose registers to return the context id and
260 * prevent leakage of secure information into the normal world.
Achin Guptac8afc782013-11-25 18:45:02 +0000261 */
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000262 ns_entry_gpregs = get_gpregs_ctx(ns_entry_context);
263 write_ctx_reg(ns_entry_gpregs,
264 CTX_GPREG_X0,
265 psci_ns_entry_info[index].context_id);
266
267 /*
268 * Tell the context management library to setup EL3 system registers to
269 * be able to ERET into the ns state, and SP_EL3 points to the right
270 * context to exit from EL3 correctly.
271 */
272 cm_set_el3_eret_context(NON_SECURE,
273 psci_ns_entry_info[index].eret_info.entrypoint,
274 psci_ns_entry_info[index].eret_info.spsr,
275 scr);
276
277 cm_set_next_eret_context(NON_SECURE);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100278}
279
280/*******************************************************************************
281 * This function retrieves and stashes all the information needed to correctly
282 * resume a cpu's execution in the non-secure state after it has been physically
283 * powered on i.e. turned ON or resumed from SUSPEND. This is done prior to
284 * turning it on or before suspending it.
285 ******************************************************************************/
286int psci_set_ns_entry_info(unsigned int index,
287 unsigned long entrypoint,
288 unsigned long context_id)
289{
290 int rc = PSCI_E_SUCCESS;
291 unsigned int rw, mode, ee, spsr = 0;
292 unsigned long id_aa64pfr0 = read_id_aa64pfr0_el1(), scr = read_scr();
293 unsigned long el_status;
Vikram Kanigiri9851e422014-05-13 14:42:08 +0100294 unsigned long daif;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100295
296 /* Figure out what mode do we enter the non-secure world in */
297 el_status = (id_aa64pfr0 >> ID_AA64PFR0_EL2_SHIFT) &
298 ID_AA64PFR0_ELX_MASK;
299
300 /*
301 * Figure out whether the cpu enters the non-secure address space
302 * in aarch32 or aarch64
303 */
304 rw = scr & SCR_RW_BIT;
305 if (rw) {
306
307 /*
308 * Check whether a Thumb entry point has been provided for an
309 * aarch64 EL
310 */
311 if (entrypoint & 0x1)
312 return PSCI_E_INVALID_PARAMS;
313
314 if (el_status && (scr & SCR_HCE_BIT)) {
315 mode = MODE_EL2;
316 ee = read_sctlr_el2() & SCTLR_EE_BIT;
317 } else {
318 mode = MODE_EL1;
319 ee = read_sctlr_el1() & SCTLR_EE_BIT;
320 }
321
Vikram Kanigiri9851e422014-05-13 14:42:08 +0100322 spsr = SPSR_64(mode, MODE_SP_ELX, DISABLE_ALL_EXCEPTIONS);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100323
324 psci_ns_entry_info[index].sctlr |= ee;
325 psci_ns_entry_info[index].scr |= SCR_RW_BIT;
326 } else {
327
Achin Gupta4f6ad662013-10-25 09:08:21 +0100328
329 if (el_status && (scr & SCR_HCE_BIT)) {
Vikram Kanigiri9851e422014-05-13 14:42:08 +0100330 mode = MODE32_hyp;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100331 ee = read_sctlr_el2() & SCTLR_EE_BIT;
332 } else {
Vikram Kanigiri9851e422014-05-13 14:42:08 +0100333 mode = MODE32_svc;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100334 ee = read_sctlr_el1() & SCTLR_EE_BIT;
335 }
336
337 /*
338 * TODO: Choose async. exception bits if HYP mode is not
339 * implemented according to the values of SCR.{AW, FW} bits
340 */
Vikram Kanigiri9851e422014-05-13 14:42:08 +0100341 daif = DAIF_ABT_BIT | DAIF_IRQ_BIT | DAIF_FIQ_BIT;
342
343 spsr = SPSR_MODE32(mode, entrypoint & 0x1, ee, daif);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100344
345 /* Ensure that the CSPR.E and SCTLR.EE bits match */
346 psci_ns_entry_info[index].sctlr |= ee;
347 psci_ns_entry_info[index].scr &= ~SCR_RW_BIT;
348 }
349
350 psci_ns_entry_info[index].eret_info.entrypoint = entrypoint;
351 psci_ns_entry_info[index].eret_info.spsr = spsr;
352 psci_ns_entry_info[index].context_id = context_id;
353
354 return rc;
355}
356
357/*******************************************************************************
Achin Gupta75f73672013-12-05 16:33:10 +0000358 * This function takes a pointer to an affinity node in the topology tree and
359 * returns its state. State of a non-leaf node needs to be calculated.
360 ******************************************************************************/
Dan Handleye2712bc2014-04-10 15:37:22 +0100361unsigned short psci_get_state(aff_map_node_t *node)
Achin Gupta75f73672013-12-05 16:33:10 +0000362{
363 assert(node->level >= MPIDR_AFFLVL0 && node->level <= MPIDR_MAX_AFFLVL);
364
365 /* A cpu node just contains the state which can be directly returned */
366 if (node->level == MPIDR_AFFLVL0)
367 return (node->state >> PSCI_STATE_SHIFT) & PSCI_STATE_MASK;
368
369 /*
370 * For an affinity level higher than a cpu, the state has to be
371 * calculated. It depends upon the value of the reference count
372 * which is managed by each node at the next lower affinity level
373 * e.g. for a cluster, each cpu increments/decrements the reference
374 * count. If the reference count is 0 then the affinity level is
375 * OFF else ON.
376 */
377 if (node->ref_count)
378 return PSCI_STATE_ON;
379 else
380 return PSCI_STATE_OFF;
381}
382
383/*******************************************************************************
384 * This function takes a pointer to an affinity node in the topology tree and
385 * a target state. State of a non-leaf node needs to be converted to a reference
386 * count. State of a leaf node can be set directly.
387 ******************************************************************************/
Dan Handleye2712bc2014-04-10 15:37:22 +0100388void psci_set_state(aff_map_node_t *node, unsigned short state)
Achin Gupta75f73672013-12-05 16:33:10 +0000389{
390 assert(node->level >= MPIDR_AFFLVL0 && node->level <= MPIDR_MAX_AFFLVL);
391
392 /*
393 * For an affinity level higher than a cpu, the state is used
394 * to decide whether the reference count is incremented or
395 * decremented. Entry into the ON_PENDING state does not have
396 * effect.
397 */
398 if (node->level > MPIDR_AFFLVL0) {
399 switch (state) {
400 case PSCI_STATE_ON:
401 node->ref_count++;
402 break;
403 case PSCI_STATE_OFF:
404 case PSCI_STATE_SUSPEND:
405 node->ref_count--;
406 break;
407 case PSCI_STATE_ON_PENDING:
408 /*
409 * An affinity level higher than a cpu will not undergo
410 * a state change when it is about to be turned on
411 */
412 return;
413 default:
414 assert(0);
415 }
416 } else {
417 node->state &= ~(PSCI_STATE_MASK << PSCI_STATE_SHIFT);
418 node->state |= (state & PSCI_STATE_MASK) << PSCI_STATE_SHIFT;
419 }
420}
421
422/*******************************************************************************
Achin Gupta4f6ad662013-10-25 09:08:21 +0100423 * An affinity level could be on, on_pending, suspended or off. These are the
Achin Gupta3140a9e2013-12-02 16:23:12 +0000424 * logical states it can be in. Physically either it is off or on. When it is in
425 * the state on_pending then it is about to be turned on. It is not possible to
Achin Gupta4f6ad662013-10-25 09:08:21 +0100426 * tell whether that's actually happenned or not. So we err on the side of
427 * caution & treat the affinity level as being turned off.
428 ******************************************************************************/
Dan Handleye2712bc2014-04-10 15:37:22 +0100429unsigned short psci_get_phys_state(aff_map_node_t *node)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100430{
Achin Gupta75f73672013-12-05 16:33:10 +0000431 unsigned int state;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100432
Achin Gupta75f73672013-12-05 16:33:10 +0000433 state = psci_get_state(node);
434 return get_phys_state(state);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100435}
436
437/*******************************************************************************
Achin Gupta0959db52013-12-02 17:33:04 +0000438 * This function takes an array of pointers to affinity instance nodes in the
439 * topology tree and calls the physical power on handler for the corresponding
440 * affinity levels
441 ******************************************************************************/
Dan Handleye2712bc2014-04-10 15:37:22 +0100442static int psci_call_power_on_handlers(mpidr_aff_map_nodes_t mpidr_nodes,
Achin Gupta0959db52013-12-02 17:33:04 +0000443 int start_afflvl,
444 int end_afflvl,
Dan Handleye2712bc2014-04-10 15:37:22 +0100445 afflvl_power_on_finisher_t *pon_handlers,
Achin Gupta0959db52013-12-02 17:33:04 +0000446 unsigned long mpidr)
447{
448 int rc = PSCI_E_INVALID_PARAMS, level;
Dan Handleye2712bc2014-04-10 15:37:22 +0100449 aff_map_node_t *node;
Achin Gupta0959db52013-12-02 17:33:04 +0000450
451 for (level = end_afflvl; level >= start_afflvl; level--) {
452 node = mpidr_nodes[level];
453 if (node == NULL)
454 continue;
455
456 /*
457 * If we run into any trouble while powering up an
458 * affinity instance, then there is no recovery path
459 * so simply return an error and let the caller take
460 * care of the situation.
461 */
462 rc = pon_handlers[level](mpidr, node);
463 if (rc != PSCI_E_SUCCESS)
464 break;
465 }
466
467 return rc;
468}
469
470/*******************************************************************************
Achin Gupta4f6ad662013-10-25 09:08:21 +0100471 * Generic handler which is called when a cpu is physically powered on. It
Achin Gupta0959db52013-12-02 17:33:04 +0000472 * traverses through all the affinity levels performing generic, architectural,
Achin Gupta4f6ad662013-10-25 09:08:21 +0100473 * platform setup and state management e.g. for a cluster that's been powered
474 * on, it will call the platform specific code which will enable coherency at
475 * the interconnect level. For a cpu it could mean turning on the MMU etc.
476 *
Achin Gupta0959db52013-12-02 17:33:04 +0000477 * The state of all the relevant affinity levels is changed after calling the
478 * affinity level specific handlers as their actions would depend upon the state
479 * the affinity level is exiting from.
480 *
481 * The affinity level specific handlers are called in descending order i.e. from
482 * the highest to the lowest affinity level implemented by the platform because
483 * to turn on affinity level X it is neccesary to turn on affinity level X + 1
484 * first.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100485 *
486 * CAUTION: This function is called with coherent stacks so that coherency and
487 * the mmu can be turned on safely.
488 ******************************************************************************/
Achin Gupta0959db52013-12-02 17:33:04 +0000489void psci_afflvl_power_on_finish(unsigned long mpidr,
490 int start_afflvl,
491 int end_afflvl,
Dan Handleye2712bc2014-04-10 15:37:22 +0100492 afflvl_power_on_finisher_t *pon_handlers)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100493{
Dan Handleye2712bc2014-04-10 15:37:22 +0100494 mpidr_aff_map_nodes_t mpidr_nodes;
Achin Gupta0959db52013-12-02 17:33:04 +0000495 int rc;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100496
Jeenu Viswambharancaa84932014-02-06 10:36:15 +0000497 mpidr &= MPIDR_AFFINITY_MASK;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100498
499 /*
Achin Gupta0959db52013-12-02 17:33:04 +0000500 * Collect the pointers to the nodes in the topology tree for
501 * each affinity instance in the mpidr. If this function does
502 * not return successfully then either the mpidr or the affinity
503 * levels are incorrect. Either case is an irrecoverable error.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100504 */
Achin Gupta0959db52013-12-02 17:33:04 +0000505 rc = psci_get_aff_map_nodes(mpidr,
506 start_afflvl,
507 end_afflvl,
508 mpidr_nodes);
James Morrissey40a6f642014-02-10 14:24:36 +0000509 if (rc != PSCI_E_SUCCESS)
510 panic();
Achin Gupta4f6ad662013-10-25 09:08:21 +0100511
512 /*
Achin Gupta0959db52013-12-02 17:33:04 +0000513 * This function acquires the lock corresponding to each affinity
514 * level so that by the time all locks are taken, the system topology
515 * is snapshot and state management can be done safely.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100516 */
Achin Gupta0959db52013-12-02 17:33:04 +0000517 psci_acquire_afflvl_locks(mpidr,
518 start_afflvl,
519 end_afflvl,
520 mpidr_nodes);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100521
522 /* Perform generic, architecture and platform specific handling */
Achin Gupta0959db52013-12-02 17:33:04 +0000523 rc = psci_call_power_on_handlers(mpidr_nodes,
524 start_afflvl,
525 end_afflvl,
526 pon_handlers,
527 mpidr);
James Morrissey40a6f642014-02-10 14:24:36 +0000528 if (rc != PSCI_E_SUCCESS)
529 panic();
Achin Gupta4f6ad662013-10-25 09:08:21 +0100530
531 /*
Achin Gupta0959db52013-12-02 17:33:04 +0000532 * This loop releases the lock corresponding to each affinity level
533 * in the reverse order to which they were acquired.
534 */
535 psci_release_afflvl_locks(mpidr,
536 start_afflvl,
537 end_afflvl,
538 mpidr_nodes);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100539}
Jeenu Viswambharan7f366602014-02-20 17:11:00 +0000540
541/*******************************************************************************
542 * This function initializes the set of hooks that PSCI invokes as part of power
543 * management operation. The power management hooks are expected to be provided
544 * by the SPD, after it finishes all its initialization
545 ******************************************************************************/
Dan Handleye2712bc2014-04-10 15:37:22 +0100546void psci_register_spd_pm_hook(const spd_pm_ops_t *pm)
Jeenu Viswambharan7f366602014-02-20 17:11:00 +0000547{
548 psci_spd_pm = pm;
549}