blob: 76e8c908a0d9a4776c822e29cfd822d8f08a81cc [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
Achin Gupta4f6ad662013-10-25 09:08:21 +010031#include <assert.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010032#include <bl_common.h>
33#include <arch.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010034#include <arch_helpers.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010035#include <context.h>
Achin Guptaef7a28c2014-02-01 08:59:56 +000036#include <context_mgmt.h>
Achin Guptaf3ccbab2014-07-25 14:52:47 +010037#include <cpu_data.h>
Soby Mathew74e52a72014-10-02 16:56:51 +010038#include <debug.h>
Soby Mathew2ed46e92014-07-04 16:02:26 +010039#include <platform.h>
Dan Handleybcd60ba2014-04-17 18:53:42 +010040#include <runtime_svc.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010041#include <stddef.h>
Dan Handley714a0d22014-04-09 13:13:04 +010042#include "psci_private.h"
Achin Gupta4f6ad662013-10-25 09:08:21 +010043
Soby Mathew74e52a72014-10-02 16:56:51 +010044typedef void (*afflvl_suspend_handler_t)(aff_map_node_t *node);
Achin Gupta4f6ad662013-10-25 09:08:21 +010045
46/*******************************************************************************
Achin Guptaf3ccbab2014-07-25 14:52:47 +010047 * This function saves the power state parameter passed in the current PSCI
48 * cpu_suspend call in the per-cpu data array.
Achin Guptaa45e3972013-12-05 15:10:48 +000049 ******************************************************************************/
Achin Guptaf3ccbab2014-07-25 14:52:47 +010050void psci_set_suspend_power_state(unsigned int power_state)
Achin Guptaa45e3972013-12-05 15:10:48 +000051{
Achin Guptaf3ccbab2014-07-25 14:52:47 +010052 set_cpu_data(psci_svc_cpu_data.power_state, power_state);
53 flush_cpu_data(psci_svc_cpu_data.power_state);
Achin Guptaa45e3972013-12-05 15:10:48 +000054}
55
56/*******************************************************************************
Achin Guptaf3ccbab2014-07-25 14:52:47 +010057 * This function gets the affinity level till which the current cpu could be
58 * powered down during a cpu_suspend call. Returns PSCI_INVALID_DATA if the
59 * power state is invalid.
Vikram Kanigirif100f412014-04-01 19:26:26 +010060 ******************************************************************************/
Sandrine Bailleuxa64a8542015-03-05 10:54:34 +000061int psci_get_suspend_afflvl(void)
Vikram Kanigirif100f412014-04-01 19:26:26 +010062{
Achin Guptaf3ccbab2014-07-25 14:52:47 +010063 unsigned int power_state;
Vikram Kanigirif100f412014-04-01 19:26:26 +010064
Achin Guptaf3ccbab2014-07-25 14:52:47 +010065 power_state = get_cpu_data(psci_svc_cpu_data.power_state);
Vikram Kanigirif100f412014-04-01 19:26:26 +010066
Achin Guptaf3ccbab2014-07-25 14:52:47 +010067 return ((power_state == PSCI_INVALID_DATA) ?
68 power_state : psci_get_pstate_afflvl(power_state));
Vikram Kanigirif100f412014-04-01 19:26:26 +010069}
70
Vikram Kanigirif100f412014-04-01 19:26:26 +010071/*******************************************************************************
Achin Guptaf3ccbab2014-07-25 14:52:47 +010072 * This function gets the state id of the current cpu from the power state
73 * parameter saved in the per-cpu data array. Returns PSCI_INVALID_DATA if the
74 * power state saved is invalid.
Vikram Kanigirif100f412014-04-01 19:26:26 +010075 ******************************************************************************/
Sandrine Bailleuxa64a8542015-03-05 10:54:34 +000076int psci_get_suspend_stateid(void)
Vikram Kanigirif100f412014-04-01 19:26:26 +010077{
78 unsigned int power_state;
79
Achin Guptaf3ccbab2014-07-25 14:52:47 +010080 power_state = get_cpu_data(psci_svc_cpu_data.power_state);
Vikram Kanigirif100f412014-04-01 19:26:26 +010081
Vikram Kanigirif100f412014-04-01 19:26:26 +010082 return ((power_state == PSCI_INVALID_DATA) ?
Achin Guptaf3ccbab2014-07-25 14:52:47 +010083 power_state : psci_get_pstate_id(power_state));
Vikram Kanigirif100f412014-04-01 19:26:26 +010084}
85
86/*******************************************************************************
Achin Guptaf3ccbab2014-07-25 14:52:47 +010087 * This function gets the state id of the cpu specified by the 'mpidr' parameter
88 * from the power state parameter saved in the per-cpu data array. Returns
89 * PSCI_INVALID_DATA if the power state saved is invalid.
Achin Guptaa45e3972013-12-05 15:10:48 +000090 ******************************************************************************/
Achin Guptaf3ccbab2014-07-25 14:52:47 +010091int psci_get_suspend_stateid_by_mpidr(unsigned long mpidr)
Achin Guptaa45e3972013-12-05 15:10:48 +000092{
Vikram Kanigirif100f412014-04-01 19:26:26 +010093 unsigned int power_state;
94
Achin Guptaf3ccbab2014-07-25 14:52:47 +010095 power_state = get_cpu_data_by_mpidr(mpidr,
96 psci_svc_cpu_data.power_state);
Vikram Kanigirif100f412014-04-01 19:26:26 +010097
Vikram Kanigirif100f412014-04-01 19:26:26 +010098 return ((power_state == PSCI_INVALID_DATA) ?
Achin Guptaf3ccbab2014-07-25 14:52:47 +010099 power_state : psci_get_pstate_id(power_state));
Achin Guptaa45e3972013-12-05 15:10:48 +0000100}
101
102/*******************************************************************************
Achin Gupta4f6ad662013-10-25 09:08:21 +0100103 * The next three functions implement a handler for each supported affinity
104 * level which is called when that affinity level is about to be suspended.
105 ******************************************************************************/
Soby Mathew74e52a72014-10-02 16:56:51 +0100106static void psci_afflvl0_suspend(aff_map_node_t *cpu_node)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100107{
Achin Guptae1aa5162014-06-26 09:58:52 +0100108 unsigned long psci_entrypoint;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100109
110 /* Sanity check to safeguard against data corruption */
111 assert(cpu_node->level == MPIDR_AFFLVL0);
112
Achin Gupta4f6ad662013-10-25 09:08:21 +0100113 /* Set the secure world (EL3) re-entry point after BL1 */
114 psci_entrypoint = (unsigned long) psci_aff_suspend_finish_entry;
115
116 /*
117 * Arch. management. Perform the necessary steps to flush all
118 * cpu caches.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100119 */
Achin Guptae1aa5162014-06-26 09:58:52 +0100120 psci_do_pwrdown_cache_maintenance(MPIDR_AFFLVL0);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100121
122 /*
Achin Gupta4f6ad662013-10-25 09:08:21 +0100123 * Plat. management: Allow the platform to perform the
124 * necessary actions to turn off this cpu e.g. set the
125 * platform defined mailbox with the psci entrypoint,
126 * program the power controller etc.
127 */
Soby Mathew74e52a72014-10-02 16:56:51 +0100128 psci_plat_pm_ops->affinst_suspend(psci_entrypoint,
Achin Gupta56bcdc22014-07-28 00:15:23 +0100129 cpu_node->level,
130 psci_get_phys_state(cpu_node));
Achin Gupta4f6ad662013-10-25 09:08:21 +0100131}
132
Soby Mathew74e52a72014-10-02 16:56:51 +0100133static void psci_afflvl1_suspend(aff_map_node_t *cluster_node)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100134{
Achin Gupta4f6ad662013-10-25 09:08:21 +0100135 unsigned int plat_state;
136 unsigned long psci_entrypoint;
137
138 /* Sanity check the cluster level */
139 assert(cluster_node->level == MPIDR_AFFLVL1);
140
141 /*
Achin Gupta4f6ad662013-10-25 09:08:21 +0100142 * Arch. management: Flush all levels of caches to PoC if the
Achin Guptaf6b9e992014-07-31 11:19:11 +0100143 * cluster is to be shutdown.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100144 */
Achin Guptaf6b9e992014-07-31 11:19:11 +0100145 psci_do_pwrdown_cache_maintenance(MPIDR_AFFLVL1);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100146
147 /*
Achin Gupta56bcdc22014-07-28 00:15:23 +0100148 * Plat. Management. Allow the platform to do its cluster specific
149 * bookeeping e.g. turn off interconnect coherency, program the power
150 * controller etc. Sending the psci entrypoint is currently redundant
151 * beyond affinity level 0 but one never knows what a platform might
152 * do. Also it allows us to keep the platform handler prototype the
153 * same.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100154 */
Achin Gupta56bcdc22014-07-28 00:15:23 +0100155 plat_state = psci_get_phys_state(cluster_node);
156 psci_entrypoint = (unsigned long) psci_aff_suspend_finish_entry;
Soby Mathew74e52a72014-10-02 16:56:51 +0100157 psci_plat_pm_ops->affinst_suspend(psci_entrypoint,
Achin Gupta56bcdc22014-07-28 00:15:23 +0100158 cluster_node->level,
159 plat_state);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100160}
161
162
Soby Mathew74e52a72014-10-02 16:56:51 +0100163static void psci_afflvl2_suspend(aff_map_node_t *system_node)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100164{
Achin Gupta4f6ad662013-10-25 09:08:21 +0100165 unsigned int plat_state;
166 unsigned long psci_entrypoint;
167
168 /* Cannot go beyond this */
169 assert(system_node->level == MPIDR_AFFLVL2);
170
171 /*
172 * Keep the physical state of the system handy to decide what
173 * action needs to be taken
174 */
Achin Gupta75f73672013-12-05 16:33:10 +0000175 plat_state = psci_get_phys_state(system_node);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100176
177 /*
Achin Guptaf6b9e992014-07-31 11:19:11 +0100178 * Arch. management: Flush all levels of caches to PoC if the
179 * system is to be shutdown.
180 */
181 psci_do_pwrdown_cache_maintenance(MPIDR_AFFLVL2);
182
183 /*
Achin Gupta3140a9e2013-12-02 16:23:12 +0000184 * Plat. Management : Allow the platform to do its bookeeping
Achin Gupta4f6ad662013-10-25 09:08:21 +0100185 * at this affinity level
186 */
Achin Gupta4f6ad662013-10-25 09:08:21 +0100187
Achin Gupta56bcdc22014-07-28 00:15:23 +0100188 /*
189 * Sending the psci entrypoint is currently redundant
190 * beyond affinity level 0 but one never knows what a
191 * platform might do. Also it allows us to keep the
192 * platform handler prototype the same.
193 */
194 plat_state = psci_get_phys_state(system_node);
195 psci_entrypoint = (unsigned long) psci_aff_suspend_finish_entry;
Soby Mathew74e52a72014-10-02 16:56:51 +0100196 psci_plat_pm_ops->affinst_suspend(psci_entrypoint,
Achin Gupta56bcdc22014-07-28 00:15:23 +0100197 system_node->level,
198 plat_state);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100199}
200
Dan Handleye2712bc2014-04-10 15:37:22 +0100201static const afflvl_suspend_handler_t psci_afflvl_suspend_handlers[] = {
Achin Gupta4f6ad662013-10-25 09:08:21 +0100202 psci_afflvl0_suspend,
203 psci_afflvl1_suspend,
204 psci_afflvl2_suspend,
205};
206
207/*******************************************************************************
Achin Gupta0959db52013-12-02 17:33:04 +0000208 * This function takes an array of pointers to affinity instance nodes in the
209 * topology tree and calls the suspend handler for the corresponding affinity
210 * levels
211 ******************************************************************************/
Soby Mathew74e52a72014-10-02 16:56:51 +0100212static void psci_call_suspend_handlers(aff_map_node_t *mpidr_nodes[],
Achin Gupta0959db52013-12-02 17:33:04 +0000213 int start_afflvl,
Soby Mathewf5121572014-09-30 11:19:51 +0100214 int end_afflvl)
Achin Gupta0959db52013-12-02 17:33:04 +0000215{
Soby Mathew74e52a72014-10-02 16:56:51 +0100216 int level;
Dan Handleye2712bc2014-04-10 15:37:22 +0100217 aff_map_node_t *node;
Achin Gupta0959db52013-12-02 17:33:04 +0000218
219 for (level = start_afflvl; level <= end_afflvl; level++) {
220 node = mpidr_nodes[level];
221 if (node == NULL)
222 continue;
223
Soby Mathew74e52a72014-10-02 16:56:51 +0100224 psci_afflvl_suspend_handlers[level](node);
Achin Gupta0959db52013-12-02 17:33:04 +0000225 }
Achin Gupta0959db52013-12-02 17:33:04 +0000226}
227
228/*******************************************************************************
229 * Top level handler which is called when a cpu wants to suspend its execution.
230 * It is assumed that along with turning the cpu off, higher affinity levels
231 * until the target affinity level will be turned off as well. It traverses
232 * through all the affinity levels performing generic, architectural, platform
233 * setup and state management e.g. for a cluster that's to be suspended, it will
234 * call the platform specific code which will disable coherency at the
235 * interconnect level if the cpu is the last in the cluster. For a cpu it could
236 * mean programming the power controller etc.
237 *
238 * The state of all the relevant affinity levels is changed prior to calling the
239 * affinity level specific handlers as their actions would depend upon the state
240 * the affinity level is about to enter.
241 *
242 * The affinity level specific handlers are called in ascending order i.e. from
243 * the lowest to the highest affinity level implemented by the platform because
244 * to turn off affinity level X it is neccesary to turn off affinity level X - 1
245 * first.
Soby Mathew74e52a72014-10-02 16:56:51 +0100246 *
247 * All the required parameter checks are performed at the beginning and after
248 * the state transition has been done, no further error is expected and it
249 * is not possible to undo any of the actions taken beyond that point.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100250 ******************************************************************************/
Soby Mathew74e52a72014-10-02 16:56:51 +0100251void psci_afflvl_suspend(entry_point_info_t *ep,
Achin Gupta0959db52013-12-02 17:33:04 +0000252 int start_afflvl,
253 int end_afflvl)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100254{
Soby Mathew26fb90e2015-01-06 21:36:55 +0000255 int skip_wfi = 0;
Dan Handleye2712bc2014-04-10 15:37:22 +0100256 mpidr_aff_map_nodes_t mpidr_nodes;
Achin Guptaf6b9e992014-07-31 11:19:11 +0100257 unsigned int max_phys_off_afflvl;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100258
Achin Gupta4f6ad662013-10-25 09:08:21 +0100259 /*
Soby Mathew61e615b2015-01-15 11:49:49 +0000260 * This function must only be called on platforms where the
261 * CPU_SUSPEND platform hooks have been implemented.
262 */
263 assert(psci_plat_pm_ops->affinst_suspend &&
264 psci_plat_pm_ops->affinst_suspend_finish);
265
266 /*
Achin Gupta0959db52013-12-02 17:33:04 +0000267 * Collect the pointers to the nodes in the topology tree for
268 * each affinity instance in the mpidr. If this function does
269 * not return successfully then either the mpidr or the affinity
Soby Mathew74e52a72014-10-02 16:56:51 +0100270 * levels are incorrect. Either way, this an internal TF error
271 * therefore assert.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100272 */
Soby Mathew74e52a72014-10-02 16:56:51 +0100273 if (psci_get_aff_map_nodes(read_mpidr_el1() & MPIDR_AFFINITY_MASK,
274 start_afflvl, end_afflvl, mpidr_nodes) != PSCI_E_SUCCESS)
275 assert(0);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100276
277 /*
Achin Gupta0959db52013-12-02 17:33:04 +0000278 * This function acquires the lock corresponding to each affinity
279 * level so that by the time all locks are taken, the system topology
280 * is snapshot and state management can be done safely.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100281 */
Andrew Thoelke2bc07852014-06-09 12:44:21 +0100282 psci_acquire_afflvl_locks(start_afflvl,
Achin Gupta0959db52013-12-02 17:33:04 +0000283 end_afflvl,
284 mpidr_nodes);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100285
Achin Guptacab78e42014-07-28 00:09:01 +0100286 /*
Soby Mathew26fb90e2015-01-06 21:36:55 +0000287 * We check if there are any pending interrupts after the delay
288 * introduced by lock contention to increase the chances of early
289 * detection that a wake-up interrupt has fired.
290 */
291 if (read_isr_el1()) {
292 skip_wfi = 1;
293 goto exit;
294 }
295
296 /*
Soby Mathew74e52a72014-10-02 16:56:51 +0100297 * Call the cpu suspend handler registered by the Secure Payload
298 * Dispatcher to let it do any bookeeping. If the handler encounters an
299 * error, it's expected to assert within
300 */
301 if (psci_spd_pm && psci_spd_pm->svc_suspend)
302 psci_spd_pm->svc_suspend(0);
303
304 /*
Achin Guptacab78e42014-07-28 00:09:01 +0100305 * This function updates the state of each affinity instance
306 * corresponding to the mpidr in the range of affinity levels
307 * specified.
308 */
309 psci_do_afflvl_state_mgmt(start_afflvl,
310 end_afflvl,
311 mpidr_nodes,
312 PSCI_STATE_SUSPEND);
Achin Guptaf6b9e992014-07-31 11:19:11 +0100313
314 max_phys_off_afflvl = psci_find_max_phys_off_afflvl(start_afflvl,
315 end_afflvl,
316 mpidr_nodes);
317 assert(max_phys_off_afflvl != PSCI_INVALID_DATA);
318
319 /* Stash the highest affinity level that will be turned off */
320 psci_set_max_phys_off_afflvl(max_phys_off_afflvl);
321
Soby Mathew8595b872015-01-06 15:36:38 +0000322 /*
323 * Store the re-entry information for the non-secure world.
324 */
325 cm_init_context(read_mpidr_el1(), ep);
326
Achin Gupta0959db52013-12-02 17:33:04 +0000327 /* Perform generic, architecture and platform specific handling */
Soby Mathew74e52a72014-10-02 16:56:51 +0100328 psci_call_suspend_handlers(mpidr_nodes,
Achin Gupta0959db52013-12-02 17:33:04 +0000329 start_afflvl,
Soby Mathewf5121572014-09-30 11:19:51 +0100330 end_afflvl);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100331
332 /*
Achin Guptaf6b9e992014-07-31 11:19:11 +0100333 * Invalidate the entry for the highest affinity level stashed earlier.
334 * This ensures that any reads of this variable outside the power
335 * up/down sequences return PSCI_INVALID_DATA.
336 */
337 psci_set_max_phys_off_afflvl(PSCI_INVALID_DATA);
338
Soby Mathew26fb90e2015-01-06 21:36:55 +0000339exit:
Achin Guptaf6b9e992014-07-31 11:19:11 +0100340 /*
Achin Gupta0959db52013-12-02 17:33:04 +0000341 * Release the locks corresponding to each affinity level in the
342 * reverse order to which they were acquired.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100343 */
Andrew Thoelke2bc07852014-06-09 12:44:21 +0100344 psci_release_afflvl_locks(start_afflvl,
Achin Gupta0959db52013-12-02 17:33:04 +0000345 end_afflvl,
346 mpidr_nodes);
Soby Mathew26fb90e2015-01-06 21:36:55 +0000347 if (!skip_wfi)
348 psci_power_down_wfi();
Achin Gupta4f6ad662013-10-25 09:08:21 +0100349}
350
351/*******************************************************************************
352 * The following functions finish an earlier affinity suspend request. They
353 * are called by the common finisher routine in psci_common.c.
354 ******************************************************************************/
Soby Mathew74e52a72014-10-02 16:56:51 +0100355static void psci_afflvl0_suspend_finish(aff_map_node_t *cpu_node)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100356{
Soby Mathew74e52a72014-10-02 16:56:51 +0100357 unsigned int plat_state, state;
Achin Gupta607084e2014-02-09 18:24:19 +0000358 int32_t suspend_level;
Soby Mathew2ed46e92014-07-04 16:02:26 +0100359 uint64_t counter_freq;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100360
361 assert(cpu_node->level == MPIDR_AFFLVL0);
362
Achin Gupta0959db52013-12-02 17:33:04 +0000363 /* Ensure we have been woken up from a suspended state */
Achin Gupta75f73672013-12-05 16:33:10 +0000364 state = psci_get_state(cpu_node);
Achin Gupta0959db52013-12-02 17:33:04 +0000365 assert(state == PSCI_STATE_SUSPEND);
366
Achin Gupta4f6ad662013-10-25 09:08:21 +0100367 /*
368 * Plat. management: Perform the platform specific actions
369 * before we change the state of the cpu e.g. enabling the
370 * gic or zeroing the mailbox register. If anything goes
371 * wrong then assert as there is no way to recover from this
372 * situation.
373 */
Soby Mathew74e52a72014-10-02 16:56:51 +0100374
Soby Mathew74e52a72014-10-02 16:56:51 +0100375 /* Get the physical state of this cpu */
376 plat_state = get_phys_state(state);
377 psci_plat_pm_ops->affinst_suspend_finish(cpu_node->level,
Achin Gupta4f6ad662013-10-25 09:08:21 +0100378 plat_state);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100379
Achin Gupta4f6ad662013-10-25 09:08:21 +0100380 /*
Achin Guptae1aa5162014-06-26 09:58:52 +0100381 * Arch. management: Enable the data cache, manage stack memory and
382 * restore the stashed EL3 architectural context from the 'cpu_context'
383 * structure for this cpu.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100384 */
Achin Guptae1aa5162014-06-26 09:58:52 +0100385 psci_do_pwrup_cache_maintenance();
Soby Mathew2ed46e92014-07-04 16:02:26 +0100386
387 /* Re-init the cntfrq_el0 register */
388 counter_freq = plat_get_syscnt_freq();
389 write_cntfrq_el0(counter_freq);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100390
391 /*
Achin Gupta607084e2014-02-09 18:24:19 +0000392 * Call the cpu suspend finish handler registered by the Secure Payload
393 * Dispatcher to let it do any bookeeping. If the handler encounters an
394 * error, it's expected to assert within
395 */
Jeenu Viswambharan7f366602014-02-20 17:11:00 +0000396 if (psci_spd_pm && psci_spd_pm->svc_suspend) {
Achin Guptaf3ccbab2014-07-25 14:52:47 +0100397 suspend_level = psci_get_suspend_afflvl();
Vikram Kanigirif100f412014-04-01 19:26:26 +0100398 assert (suspend_level != PSCI_INVALID_DATA);
Jeenu Viswambharan7f366602014-02-20 17:11:00 +0000399 psci_spd_pm->svc_suspend_finish(suspend_level);
Achin Gupta607084e2014-02-09 18:24:19 +0000400 }
401
Vikram Kanigirif100f412014-04-01 19:26:26 +0100402 /* Invalidate the suspend context for the node */
Achin Guptaf3ccbab2014-07-25 14:52:47 +0100403 psci_set_suspend_power_state(PSCI_INVALID_DATA);
Vikram Kanigirif100f412014-04-01 19:26:26 +0100404
Achin Gupta607084e2014-02-09 18:24:19 +0000405 /*
Achin Gupta4f6ad662013-10-25 09:08:21 +0100406 * Generic management: Now we just need to retrieve the
407 * information that we had stashed away during the suspend
Achin Gupta3140a9e2013-12-02 16:23:12 +0000408 * call to set this cpu on its way.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100409 */
Andrew Thoelke4e126072014-06-04 21:10:52 +0100410 cm_prepare_el3_exit(NON_SECURE);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100411
412 /* Clean caches before re-entering normal world */
413 dcsw_op_louis(DCCSW);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100414}
415
Soby Mathew74e52a72014-10-02 16:56:51 +0100416static void psci_afflvl1_suspend_finish(aff_map_node_t *cluster_node)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100417{
Soby Mathew74e52a72014-10-02 16:56:51 +0100418 unsigned int plat_state;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100419
420 assert(cluster_node->level == MPIDR_AFFLVL1);
421
422 /*
423 * Plat. management: Perform the platform specific actions
424 * as per the old state of the cluster e.g. enabling
425 * coherency at the interconnect depends upon the state with
426 * which this cluster was powered up. If anything goes wrong
427 * then assert as there is no way to recover from this
428 * situation.
429 */
Achin Gupta0959db52013-12-02 17:33:04 +0000430
Soby Mathew74e52a72014-10-02 16:56:51 +0100431 /* Get the physical state of this cpu */
432 plat_state = psci_get_phys_state(cluster_node);
433 psci_plat_pm_ops->affinst_suspend_finish(cluster_node->level,
434 plat_state);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100435}
436
437
Soby Mathew74e52a72014-10-02 16:56:51 +0100438static void psci_afflvl2_suspend_finish(aff_map_node_t *system_node)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100439{
Soby Mathew74e52a72014-10-02 16:56:51 +0100440 unsigned int plat_state;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100441
442 /* Cannot go beyond this affinity level */
443 assert(system_node->level == MPIDR_AFFLVL2);
444
445 /*
446 * Currently, there are no architectural actions to perform
447 * at the system level.
448 */
449
450 /*
451 * Plat. management: Perform the platform specific actions
452 * as per the old state of the cluster e.g. enabling
453 * coherency at the interconnect depends upon the state with
454 * which this cluster was powered up. If anything goes wrong
455 * then assert as there is no way to recover from this
456 * situation.
457 */
Achin Gupta0959db52013-12-02 17:33:04 +0000458
Soby Mathew74e52a72014-10-02 16:56:51 +0100459 /* Get the physical state of the system */
460 plat_state = psci_get_phys_state(system_node);
461 psci_plat_pm_ops->affinst_suspend_finish(system_node->level,
462 plat_state);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100463}
464
Dan Handleye2712bc2014-04-10 15:37:22 +0100465const afflvl_power_on_finisher_t psci_afflvl_suspend_finishers[] = {
Achin Gupta4f6ad662013-10-25 09:08:21 +0100466 psci_afflvl0_suspend_finish,
467 psci_afflvl1_suspend_finish,
468 psci_afflvl2_suspend_finish,
469};