blob: ad212b6521ed82c04b9af8dd934b1303afa66866 [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>
32#include <arch_helpers.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010033#include <assert.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010034#include <bl_common.h>
Dan Handleybcd60ba2014-04-17 18:53:42 +010035#include <bl31.h>
Soby Mathew74e52a72014-10-02 16:56:51 +010036#include <debug.h>
Achin Gupta0a9f7472014-02-09 17:48:12 +000037#include <context_mgmt.h>
Dan Handleyed6ff952014-05-14 17:44:19 +010038#include <platform.h>
Dan Handleybcd60ba2014-04-17 18:53:42 +010039#include <runtime_svc.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010040#include <stddef.h>
Dan Handley714a0d22014-04-09 13:13:04 +010041#include "psci_private.h"
Achin Gupta4f6ad662013-10-25 09:08:21 +010042
Soby Mathewffb4ab12014-09-26 15:08:52 +010043typedef int (*afflvl_on_handler_t)(unsigned long target_cpu,
Soby Mathew8595b872015-01-06 15:36:38 +000044 aff_map_node_t *node);
Achin Gupta4f6ad662013-10-25 09:08:21 +010045
46/*******************************************************************************
47 * This function checks whether a cpu which has been requested to be turned on
48 * is OFF to begin with.
49 ******************************************************************************/
Soby Mathew5f2c1b32015-01-12 13:01:31 +000050static int cpu_on_validate_state(unsigned int psci_state)
Achin Gupta4f6ad662013-10-25 09:08:21 +010051{
Achin Gupta4f6ad662013-10-25 09:08:21 +010052 if (psci_state == PSCI_STATE_ON || psci_state == PSCI_STATE_SUSPEND)
53 return PSCI_E_ALREADY_ON;
54
55 if (psci_state == PSCI_STATE_ON_PENDING)
56 return PSCI_E_ON_PENDING;
57
58 assert(psci_state == PSCI_STATE_OFF);
59 return PSCI_E_SUCCESS;
60}
61
62/*******************************************************************************
63 * Handler routine to turn a cpu on. It takes care of any generic, architectural
64 * or platform specific setup required.
65 * TODO: Split this code across separate handlers for each type of setup?
66 ******************************************************************************/
67static int psci_afflvl0_on(unsigned long target_cpu,
Soby Mathew8595b872015-01-06 15:36:38 +000068 aff_map_node_t *cpu_node)
Achin Gupta4f6ad662013-10-25 09:08:21 +010069{
Achin Gupta4f6ad662013-10-25 09:08:21 +010070 unsigned long psci_entrypoint;
Achin Gupta4f6ad662013-10-25 09:08:21 +010071
72 /* Sanity check to safeguard against data corruption */
73 assert(cpu_node->level == MPIDR_AFFLVL0);
74
Achin Gupta4f6ad662013-10-25 09:08:21 +010075 /* Set the secure world (EL3) re-entry point after BL1 */
76 psci_entrypoint = (unsigned long) psci_aff_on_finish_entry;
77
Soby Mathew74e52a72014-10-02 16:56:51 +010078 assert(psci_plat_pm_ops->affinst_on);
Achin Gupta56bcdc22014-07-28 00:15:23 +010079
Achin Gupta4f6ad662013-10-25 09:08:21 +010080 /*
81 * Plat. management: Give the platform the current state
82 * of the target cpu to allow it to perform the necessary
83 * steps to power on.
84 */
Achin Gupta56bcdc22014-07-28 00:15:23 +010085 return psci_plat_pm_ops->affinst_on(target_cpu,
86 psci_entrypoint,
Achin Gupta56bcdc22014-07-28 00:15:23 +010087 cpu_node->level,
88 psci_get_phys_state(cpu_node));
Achin Gupta4f6ad662013-10-25 09:08:21 +010089}
90
91/*******************************************************************************
92 * Handler routine to turn a cluster on. It takes care or any generic, arch.
93 * or platform specific setup required.
94 * TODO: Split this code across separate handlers for each type of setup?
95 ******************************************************************************/
96static int psci_afflvl1_on(unsigned long target_cpu,
Soby Mathew8595b872015-01-06 15:36:38 +000097 aff_map_node_t *cluster_node)
Achin Gupta4f6ad662013-10-25 09:08:21 +010098{
Achin Gupta4f6ad662013-10-25 09:08:21 +010099 unsigned long psci_entrypoint;
100
101 assert(cluster_node->level == MPIDR_AFFLVL1);
102
103 /*
104 * There is no generic and arch. specific cluster
105 * management required
106 */
107
Achin Gupta75f73672013-12-05 16:33:10 +0000108 /* State management: Is not required while turning a cluster on */
109
Soby Mathew74e52a72014-10-02 16:56:51 +0100110 assert(psci_plat_pm_ops->affinst_on);
Achin Gupta56bcdc22014-07-28 00:15:23 +0100111
Achin Gupta4f6ad662013-10-25 09:08:21 +0100112 /*
113 * Plat. management: Give the platform the current state
114 * of the target cpu to allow it to perform the necessary
115 * steps to power on.
116 */
Achin Gupta56bcdc22014-07-28 00:15:23 +0100117 psci_entrypoint = (unsigned long) psci_aff_on_finish_entry;
118 return psci_plat_pm_ops->affinst_on(target_cpu,
119 psci_entrypoint,
Achin Gupta56bcdc22014-07-28 00:15:23 +0100120 cluster_node->level,
121 psci_get_phys_state(cluster_node));
Achin Gupta4f6ad662013-10-25 09:08:21 +0100122}
123
124/*******************************************************************************
125 * Handler routine to turn a cluster of clusters on. It takes care or any
126 * generic, arch. or platform specific setup required.
127 * TODO: Split this code across separate handlers for each type of setup?
128 ******************************************************************************/
129static int psci_afflvl2_on(unsigned long target_cpu,
Soby Mathew8595b872015-01-06 15:36:38 +0000130 aff_map_node_t *system_node)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100131{
Achin Gupta4f6ad662013-10-25 09:08:21 +0100132 unsigned long psci_entrypoint;
133
134 /* Cannot go beyond affinity level 2 in this psci imp. */
135 assert(system_node->level == MPIDR_AFFLVL2);
136
137 /*
138 * There is no generic and arch. specific system management
139 * required
140 */
141
Achin Gupta75f73672013-12-05 16:33:10 +0000142 /* State management: Is not required while turning a system on */
143
Soby Mathew74e52a72014-10-02 16:56:51 +0100144 assert(psci_plat_pm_ops->affinst_on);
Achin Gupta56bcdc22014-07-28 00:15:23 +0100145
Achin Gupta4f6ad662013-10-25 09:08:21 +0100146 /*
147 * Plat. management: Give the platform the current state
148 * of the target cpu to allow it to perform the necessary
149 * steps to power on.
150 */
Achin Gupta56bcdc22014-07-28 00:15:23 +0100151 psci_entrypoint = (unsigned long) psci_aff_on_finish_entry;
152 return psci_plat_pm_ops->affinst_on(target_cpu,
153 psci_entrypoint,
Achin Gupta56bcdc22014-07-28 00:15:23 +0100154 system_node->level,
155 psci_get_phys_state(system_node));
Achin Gupta4f6ad662013-10-25 09:08:21 +0100156}
157
158/* Private data structure to make this handlers accessible through indexing */
Dan Handleye2712bc2014-04-10 15:37:22 +0100159static const afflvl_on_handler_t psci_afflvl_on_handlers[] = {
Achin Gupta4f6ad662013-10-25 09:08:21 +0100160 psci_afflvl0_on,
161 psci_afflvl1_on,
162 psci_afflvl2_on,
163};
164
165/*******************************************************************************
Achin Gupta0959db52013-12-02 17:33:04 +0000166 * This function takes an array of pointers to affinity instance nodes in the
167 * topology tree and calls the on handler for the corresponding affinity
168 * levels
169 ******************************************************************************/
Achin Gupta56bcdc22014-07-28 00:15:23 +0100170static int psci_call_on_handlers(aff_map_node_t *target_cpu_nodes[],
Achin Gupta0959db52013-12-02 17:33:04 +0000171 int start_afflvl,
172 int end_afflvl,
Soby Mathew8595b872015-01-06 15:36:38 +0000173 unsigned long target_cpu)
Achin Gupta0959db52013-12-02 17:33:04 +0000174{
175 int rc = PSCI_E_INVALID_PARAMS, level;
Dan Handleye2712bc2014-04-10 15:37:22 +0100176 aff_map_node_t *node;
Achin Gupta0959db52013-12-02 17:33:04 +0000177
178 for (level = end_afflvl; level >= start_afflvl; level--) {
179 node = target_cpu_nodes[level];
180 if (node == NULL)
181 continue;
182
183 /*
184 * TODO: In case of an error should there be a way
185 * of undoing what we might have setup at higher
186 * affinity levels.
187 */
188 rc = psci_afflvl_on_handlers[level](target_cpu,
Soby Mathew8595b872015-01-06 15:36:38 +0000189 node);
Achin Gupta0959db52013-12-02 17:33:04 +0000190 if (rc != PSCI_E_SUCCESS)
191 break;
192 }
193
194 return rc;
195}
196
197/*******************************************************************************
198 * Generic handler which is called to physically power on a cpu identified by
199 * its mpidr. It traverses through all the affinity levels performing generic,
200 * architectural, platform setup and state management e.g. for a cpu that is
201 * to be powered on, it will ensure that enough information is stashed for it
202 * to resume execution in the non-secure security state.
203 *
204 * The state of all the relevant affinity levels is changed after calling the
205 * affinity level specific handlers as their actions would depend upon the state
206 * the affinity level is currently in.
207 *
208 * The affinity level specific handlers are called in descending order i.e. from
209 * the highest to the lowest affinity level implemented by the platform because
Soby Mathewffb4ab12014-09-26 15:08:52 +0100210 * to turn on affinity level X it is necessary to turn on affinity level X + 1
Achin Gupta0959db52013-12-02 17:33:04 +0000211 * first.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100212 ******************************************************************************/
213int psci_afflvl_on(unsigned long target_cpu,
Soby Mathew8595b872015-01-06 15:36:38 +0000214 entry_point_info_t *ep,
Achin Gupta0959db52013-12-02 17:33:04 +0000215 int start_afflvl,
216 int end_afflvl)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100217{
Soby Mathew74e52a72014-10-02 16:56:51 +0100218 int rc;
Dan Handleye2712bc2014-04-10 15:37:22 +0100219 mpidr_aff_map_nodes_t target_cpu_nodes;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100220
221 /*
Achin Gupta0959db52013-12-02 17:33:04 +0000222 * Collect the pointers to the nodes in the topology tree for
223 * each affinity instance in the mpidr. If this function does
224 * not return successfully then either the mpidr or the affinity
225 * levels are incorrect.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100226 */
Achin Gupta0959db52013-12-02 17:33:04 +0000227 rc = psci_get_aff_map_nodes(target_cpu,
228 start_afflvl,
229 end_afflvl,
230 target_cpu_nodes);
Soby Mathew74e52a72014-10-02 16:56:51 +0100231 assert(rc == PSCI_E_SUCCESS);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100232
233 /*
Achin Gupta0959db52013-12-02 17:33:04 +0000234 * This function acquires the lock corresponding to each affinity
235 * level so that by the time all locks are taken, the system topology
236 * is snapshot and state management can be done safely.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100237 */
Andrew Thoelke2bc07852014-06-09 12:44:21 +0100238 psci_acquire_afflvl_locks(start_afflvl,
Achin Gupta0959db52013-12-02 17:33:04 +0000239 end_afflvl,
240 target_cpu_nodes);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100241
Soby Mathew5f2c1b32015-01-12 13:01:31 +0000242 /*
243 * Generic management: Ensure that the cpu is off to be
244 * turned on.
245 */
246 rc = cpu_on_validate_state(psci_get_state(
Soby Mathew74e52a72014-10-02 16:56:51 +0100247 target_cpu_nodes[MPIDR_AFFLVL0]));
Soby Mathew5f2c1b32015-01-12 13:01:31 +0000248 if (rc != PSCI_E_SUCCESS)
249 goto exit;
250
Soby Mathew74e52a72014-10-02 16:56:51 +0100251 /*
252 * Call the cpu on handler registered by the Secure Payload Dispatcher
253 * to let it do any bookeeping. If the handler encounters an error, it's
254 * expected to assert within
255 */
256 if (psci_spd_pm && psci_spd_pm->svc_on)
257 psci_spd_pm->svc_on(target_cpu);
258
Achin Gupta0959db52013-12-02 17:33:04 +0000259 /* Perform generic, architecture and platform specific handling. */
260 rc = psci_call_on_handlers(target_cpu_nodes,
261 start_afflvl,
262 end_afflvl,
Soby Mathew8595b872015-01-06 15:36:38 +0000263 target_cpu);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100264
Soby Mathew74e52a72014-10-02 16:56:51 +0100265 assert(rc == PSCI_E_SUCCESS || rc == PSCI_E_INTERN_FAIL);
266
Achin Gupta4f6ad662013-10-25 09:08:21 +0100267 /*
Achin Guptacab78e42014-07-28 00:09:01 +0100268 * This function updates the state of each affinity instance
269 * corresponding to the mpidr in the range of affinity levels
270 * specified.
271 */
Soby Mathew8595b872015-01-06 15:36:38 +0000272 if (rc == PSCI_E_SUCCESS) {
Achin Guptacab78e42014-07-28 00:09:01 +0100273 psci_do_afflvl_state_mgmt(start_afflvl,
274 end_afflvl,
275 target_cpu_nodes,
276 PSCI_STATE_ON_PENDING);
Soby Mathew74e52a72014-10-02 16:56:51 +0100277
Soby Mathew8595b872015-01-06 15:36:38 +0000278 /*
279 * Store the re-entry information for the non-secure world.
280 */
281 cm_init_context(target_cpu, ep);
282 }
Achin Guptacab78e42014-07-28 00:09:01 +0100283
Soby Mathew5f2c1b32015-01-12 13:01:31 +0000284exit:
Achin Guptacab78e42014-07-28 00:09:01 +0100285 /*
Achin Gupta4f6ad662013-10-25 09:08:21 +0100286 * This loop releases the lock corresponding to each affinity level
Achin Gupta0959db52013-12-02 17:33:04 +0000287 * in the reverse order to which they were acquired.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100288 */
Andrew Thoelke2bc07852014-06-09 12:44:21 +0100289 psci_release_afflvl_locks(start_afflvl,
Achin Gupta0959db52013-12-02 17:33:04 +0000290 end_afflvl,
291 target_cpu_nodes);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100292
293 return rc;
294}
295
296/*******************************************************************************
297 * The following functions finish an earlier affinity power on request. They
298 * are called by the common finisher routine in psci_common.c.
299 ******************************************************************************/
Soby Mathew74e52a72014-10-02 16:56:51 +0100300static void psci_afflvl0_on_finish(aff_map_node_t *cpu_node)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100301{
Soby Mathew74e52a72014-10-02 16:56:51 +0100302 unsigned int plat_state, state;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100303
304 assert(cpu_node->level == MPIDR_AFFLVL0);
305
Achin Gupta0959db52013-12-02 17:33:04 +0000306 /* Ensure we have been explicitly woken up by another cpu */
Achin Gupta75f73672013-12-05 16:33:10 +0000307 state = psci_get_state(cpu_node);
Achin Gupta0959db52013-12-02 17:33:04 +0000308 assert(state == PSCI_STATE_ON_PENDING);
309
Achin Gupta4f6ad662013-10-25 09:08:21 +0100310 /*
311 * Plat. management: Perform the platform specific actions
312 * for this cpu e.g. enabling the gic or zeroing the mailbox
313 * register. The actual state of this cpu has already been
314 * changed.
315 */
Soby Mathew74e52a72014-10-02 16:56:51 +0100316 assert(psci_plat_pm_ops->affinst_on_finish);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100317
Soby Mathew74e52a72014-10-02 16:56:51 +0100318 /* Get the physical state of this cpu */
319 plat_state = get_phys_state(state);
320 psci_plat_pm_ops->affinst_on_finish(cpu_node->level,
Achin Gupta4f6ad662013-10-25 09:08:21 +0100321 plat_state);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100322
323 /*
Achin Guptae1aa5162014-06-26 09:58:52 +0100324 * Arch. management: Enable data cache and manage stack memory
Achin Gupta4f6ad662013-10-25 09:08:21 +0100325 */
Achin Guptae1aa5162014-06-26 09:58:52 +0100326 psci_do_pwrup_cache_maintenance();
Achin Gupta4f6ad662013-10-25 09:08:21 +0100327
328 /*
329 * All the platform specific actions for turning this cpu
330 * on have completed. Perform enough arch.initialization
331 * to run in the non-secure address space.
332 */
333 bl31_arch_setup();
334
335 /*
Achin Gupta607084e2014-02-09 18:24:19 +0000336 * Call the cpu on finish handler registered by the Secure Payload
337 * Dispatcher to let it do any bookeeping. If the handler encounters an
338 * error, it's expected to assert within
339 */
Jeenu Viswambharan7f366602014-02-20 17:11:00 +0000340 if (psci_spd_pm && psci_spd_pm->svc_on_finish)
341 psci_spd_pm->svc_on_finish(0);
Achin Gupta607084e2014-02-09 18:24:19 +0000342
343 /*
Achin Gupta4f6ad662013-10-25 09:08:21 +0100344 * Generic management: Now we just need to retrieve the
345 * information that we had stashed away during the cpu_on
Andrew Thoelke4e126072014-06-04 21:10:52 +0100346 * call to set this cpu on its way.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100347 */
Andrew Thoelke4e126072014-06-04 21:10:52 +0100348 cm_prepare_el3_exit(NON_SECURE);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100349
350 /* Clean caches before re-entering normal world */
351 dcsw_op_louis(DCCSW);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100352}
353
Soby Mathew74e52a72014-10-02 16:56:51 +0100354static void psci_afflvl1_on_finish(aff_map_node_t *cluster_node)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100355{
Achin Gupta56bcdc22014-07-28 00:15:23 +0100356 unsigned int plat_state;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100357
358 assert(cluster_node->level == MPIDR_AFFLVL1);
359
Soby Mathew74e52a72014-10-02 16:56:51 +0100360 assert(psci_plat_pm_ops->affinst_on_finish);
Achin Gupta56bcdc22014-07-28 00:15:23 +0100361
Achin Gupta4f6ad662013-10-25 09:08:21 +0100362 /*
363 * Plat. management: Perform the platform specific actions
364 * as per the old state of the cluster e.g. enabling
365 * coherency at the interconnect depends upon the state with
366 * which this cluster was powered up. If anything goes wrong
367 * then assert as there is no way to recover from this
368 * situation.
369 */
Achin Gupta56bcdc22014-07-28 00:15:23 +0100370 plat_state = psci_get_phys_state(cluster_node);
Soby Mathew74e52a72014-10-02 16:56:51 +0100371 psci_plat_pm_ops->affinst_on_finish(cluster_node->level,
Achin Gupta56bcdc22014-07-28 00:15:23 +0100372 plat_state);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100373}
374
375
Soby Mathew74e52a72014-10-02 16:56:51 +0100376static void psci_afflvl2_on_finish(aff_map_node_t *system_node)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100377{
Achin Gupta56bcdc22014-07-28 00:15:23 +0100378 unsigned int plat_state;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100379
380 /* Cannot go beyond this affinity level */
381 assert(system_node->level == MPIDR_AFFLVL2);
382
Soby Mathew74e52a72014-10-02 16:56:51 +0100383 assert(psci_plat_pm_ops->affinst_on_finish);
Achin Gupta56bcdc22014-07-28 00:15:23 +0100384
Achin Gupta4f6ad662013-10-25 09:08:21 +0100385 /*
386 * Currently, there are no architectural actions to perform
387 * at the system level.
388 */
389
390 /*
391 * Plat. management: Perform the platform specific actions
392 * as per the old state of the cluster e.g. enabling
393 * coherency at the interconnect depends upon the state with
394 * which this cluster was powered up. If anything goes wrong
395 * then assert as there is no way to recover from this
396 * situation.
397 */
Achin Gupta56bcdc22014-07-28 00:15:23 +0100398 plat_state = psci_get_phys_state(system_node);
Soby Mathew74e52a72014-10-02 16:56:51 +0100399 psci_plat_pm_ops->affinst_on_finish(system_node->level,
Achin Gupta56bcdc22014-07-28 00:15:23 +0100400 plat_state);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100401}
402
Dan Handleye2712bc2014-04-10 15:37:22 +0100403const afflvl_power_on_finisher_t psci_afflvl_on_finishers[] = {
Achin Gupta4f6ad662013-10-25 09:08:21 +0100404 psci_afflvl0_on_finish,
405 psci_afflvl1_on_finish,
406 psci_afflvl2_on_finish,
407};