blob: ce4da9599fd528e534a1bc19d8c2e7c63bdabb5e [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Soby Mathew981487a2015-07-13 14:10:57 +01002 * Copyright (c) 2013-2015, 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>
Achin Guptaef7a28c2014-02-01 08:59:56 +000036#include <context_mgmt.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010037#include <platform.h>
38#include <stddef.h>
Dan Handley714a0d22014-04-09 13:13:04 +010039#include "psci_private.h"
Achin Gupta4f6ad662013-10-25 09:08:21 +010040
41/*******************************************************************************
Achin Guptaef7a28c2014-02-01 08:59:56 +000042 * Per cpu non-secure contexts used to program the architectural state prior
43 * return to the normal world.
44 * TODO: Use the memory allocator to set aside memory for the contexts instead
Soby Mathew981487a2015-07-13 14:10:57 +010045 * of relying on platform defined constants.
Achin Guptaef7a28c2014-02-01 08:59:56 +000046 ******************************************************************************/
Dan Handleye2712bc2014-04-10 15:37:22 +010047static cpu_context_t psci_ns_context[PLATFORM_CORE_COUNT];
Achin Guptaef7a28c2014-02-01 08:59:56 +000048
Soby Mathew6cdddaf2015-01-07 11:10:22 +000049/******************************************************************************
50 * Define the psci capability variable.
51 *****************************************************************************/
52uint32_t psci_caps;
53
Dan Handley60b13e32014-05-14 15:13:16 +010054/*******************************************************************************
Soby Mathew981487a2015-07-13 14:10:57 +010055 * Function which initializes the 'psci_non_cpu_pd_nodes' or the
56 * 'psci_cpu_pd_nodes' corresponding to the power level.
Achin Gupta4f6ad662013-10-25 09:08:21 +010057 ******************************************************************************/
Soby Mathew981487a2015-07-13 14:10:57 +010058static void psci_init_pwr_domain_node(int node_idx, int parent_idx, int level)
Achin Gupta4f6ad662013-10-25 09:08:21 +010059{
Soby Mathew981487a2015-07-13 14:10:57 +010060 if (level > PSCI_CPU_PWR_LVL) {
61 psci_non_cpu_pd_nodes[node_idx].level = level;
62 psci_lock_init(psci_non_cpu_pd_nodes, node_idx);
63 psci_non_cpu_pd_nodes[node_idx].parent_node = parent_idx;
64 psci_non_cpu_pd_nodes[node_idx].local_state =
65 PLAT_MAX_OFF_STATE;
66 } else {
67 psci_cpu_data_t *svc_cpu_data;
Achin Gupta4f6ad662013-10-25 09:08:21 +010068
Soby Mathew981487a2015-07-13 14:10:57 +010069 psci_cpu_pd_nodes[node_idx].parent_node = parent_idx;
Achin Gupta4f6ad662013-10-25 09:08:21 +010070
Soby Mathew981487a2015-07-13 14:10:57 +010071 /* Initialize with an invalid mpidr */
72 psci_cpu_pd_nodes[node_idx].mpidr = PSCI_INVALID_MPIDR;
Soby Mathew2b697502014-10-02 17:24:19 +010073
Soby Mathew981487a2015-07-13 14:10:57 +010074 svc_cpu_data =
75 &(_cpu_data_by_index(node_idx)->psci_svc_cpu_data);
Soby Mathew2b697502014-10-02 17:24:19 +010076
Soby Mathew981487a2015-07-13 14:10:57 +010077 /* Set the Affinity Info for the cores as OFF */
78 svc_cpu_data->aff_info_state = AFF_STATE_OFF;
Achin Gupta4f6ad662013-10-25 09:08:21 +010079
Soby Mathew981487a2015-07-13 14:10:57 +010080 /* Invalidate the suspend level for the cpu */
81 svc_cpu_data->target_pwrlvl = PSCI_INVALID_DATA;
Achin Gupta4f6ad662013-10-25 09:08:21 +010082
Soby Mathew981487a2015-07-13 14:10:57 +010083 /* Set the power state to OFF state */
84 svc_cpu_data->local_state = PLAT_MAX_OFF_STATE;
Soby Mathew2b697502014-10-02 17:24:19 +010085
Soby Mathew981487a2015-07-13 14:10:57 +010086 flush_dcache_range((uint64_t)svc_cpu_data,
87 sizeof(*svc_cpu_data));
Achin Gupta4f6ad662013-10-25 09:08:21 +010088
Soby Mathew981487a2015-07-13 14:10:57 +010089 cm_set_context_by_index(node_idx,
90 (void *) &psci_ns_context[node_idx],
91 NON_SECURE);
92 }
Achin Gupta4f6ad662013-10-25 09:08:21 +010093}
94
95/*******************************************************************************
Soby Mathew981487a2015-07-13 14:10:57 +010096 * This functions updates cpu_start_idx and ncpus field for each of the node in
97 * psci_non_cpu_pd_nodes[]. It does so by comparing the parent nodes of each of
98 * the CPUs and check whether they match with the parent of the previous
99 * CPU. The basic assumption for this work is that children of the same parent
100 * are allocated adjacent indices. The platform should ensure this though proper
101 * mapping of the CPUs to indices via plat_core_pos_by_mpidr() and
102 * plat_my_core_pos() APIs.
103 *******************************************************************************/
104static void psci_update_pwrlvl_limits(void)
Achin Gupta0959db52013-12-02 17:33:04 +0000105{
Soby Mathew981487a2015-07-13 14:10:57 +0100106 int cpu_idx, j;
107 unsigned int nodes_idx[PLAT_MAX_PWR_LVL] = {0};
108 unsigned int temp_index[PLAT_MAX_PWR_LVL];
Achin Gupta0959db52013-12-02 17:33:04 +0000109
Soby Mathew981487a2015-07-13 14:10:57 +0100110 for (cpu_idx = 0; cpu_idx < PLATFORM_CORE_COUNT; cpu_idx++) {
111 psci_get_parent_pwr_domain_nodes(cpu_idx,
112 PLAT_MAX_PWR_LVL,
113 temp_index);
114 for (j = PLAT_MAX_PWR_LVL - 1; j >= 0; j--) {
115 if (temp_index[j] != nodes_idx[j]) {
116 nodes_idx[j] = temp_index[j];
117 psci_non_cpu_pd_nodes[nodes_idx[j]].cpu_start_idx
118 = cpu_idx;
Achin Gupta0959db52013-12-02 17:33:04 +0000119 }
Soby Mathew981487a2015-07-13 14:10:57 +0100120 psci_non_cpu_pd_nodes[nodes_idx[j]].ncpus++;
121 }
Achin Gupta0959db52013-12-02 17:33:04 +0000122 }
Achin Gupta0959db52013-12-02 17:33:04 +0000123}
124
125/*******************************************************************************
Soby Mathew981487a2015-07-13 14:10:57 +0100126 * Core routine to populate the power domain tree. The tree descriptor passed by
127 * the platform is populated breadth-first and the first entry in the map
128 * informs the number of root power domains. The parent nodes of the root nodes
129 * will point to an invalid entry(-1).
Achin Gupta4f6ad662013-10-25 09:08:21 +0100130 ******************************************************************************/
Soby Mathew981487a2015-07-13 14:10:57 +0100131static void populate_power_domain_tree(const unsigned char *topology)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100132{
Soby Mathew981487a2015-07-13 14:10:57 +0100133 unsigned int i, j = 0, num_nodes_at_lvl = 1, num_nodes_at_next_lvl;
134 unsigned int node_index = 0, parent_node_index = 0, num_children;
135 int level = PLAT_MAX_PWR_LVL;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100136
137 /*
Soby Mathew981487a2015-07-13 14:10:57 +0100138 * For each level the inputs are:
139 * - number of nodes at this level in plat_array i.e. num_nodes_at_level
140 * This is the sum of values of nodes at the parent level.
141 * - Index of first entry at this level in the plat_array i.e.
142 * parent_node_index.
143 * - Index of first free entry in psci_non_cpu_pd_nodes[] or
144 * psci_cpu_pd_nodes[] i.e. node_index depending upon the level.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100145 */
Soby Mathew981487a2015-07-13 14:10:57 +0100146 while (level >= PSCI_CPU_PWR_LVL) {
147 num_nodes_at_next_lvl = 0;
Achin Guptaef7a28c2014-02-01 08:59:56 +0000148 /*
Soby Mathew981487a2015-07-13 14:10:57 +0100149 * For each entry (parent node) at this level in the plat_array:
150 * - Find the number of children
151 * - Allocate a node in a power domain array for each child
152 * - Set the parent of the child to the parent_node_index - 1
153 * - Increment parent_node_index to point to the next parent
154 * - Accumulate the number of children at next level.
Achin Guptaef7a28c2014-02-01 08:59:56 +0000155 */
Soby Mathew981487a2015-07-13 14:10:57 +0100156 for (i = 0; i < num_nodes_at_lvl; i++) {
157 assert(parent_node_index <=
158 PSCI_NUM_NON_CPU_PWR_DOMAINS);
159 num_children = topology[parent_node_index];
Achin Guptaef7a28c2014-02-01 08:59:56 +0000160
Soby Mathew981487a2015-07-13 14:10:57 +0100161 for (j = node_index;
162 j < node_index + num_children; j++)
163 psci_init_pwr_domain_node(j,
164 parent_node_index - 1,
165 level);
Achin Guptaf3ccbab2014-07-25 14:52:47 +0100166
Soby Mathew981487a2015-07-13 14:10:57 +0100167 node_index = j;
168 num_nodes_at_next_lvl += num_children;
169 parent_node_index++;
170 }
Achin Guptaf6b9e992014-07-31 11:19:11 +0100171
Soby Mathew981487a2015-07-13 14:10:57 +0100172 num_nodes_at_lvl = num_nodes_at_next_lvl;
173 level--;
Soby Mathew7d861ea2014-11-18 10:14:14 +0000174
Soby Mathew981487a2015-07-13 14:10:57 +0100175 /* Reset the index for the cpu power domain array */
176 if (level == PSCI_CPU_PWR_LVL)
177 node_index = 0;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100178 }
179
Soby Mathew981487a2015-07-13 14:10:57 +0100180 /* Validate the sanity of array exported by the platform */
181 assert(j == PLATFORM_CORE_COUNT);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100182
Soby Mathew981487a2015-07-13 14:10:57 +0100183#if !USE_COHERENT_MEM
184 /* Flush the non CPU power domain data to memory */
185 flush_dcache_range((uint64_t) &psci_non_cpu_pd_nodes,
186 sizeof(psci_non_cpu_pd_nodes));
187#endif
Achin Gupta4f6ad662013-10-25 09:08:21 +0100188}
189
190/*******************************************************************************
Soby Mathew981487a2015-07-13 14:10:57 +0100191 * This function initializes the power domain topology tree by querying the
192 * platform. The power domain nodes higher than the CPU are populated in the
193 * array psci_non_cpu_pd_nodes[] and the CPU power domains are populated in
194 * psci_cpu_pd_nodes[]. The platform exports its static topology map through the
195 * populate_power_domain_topology_tree() API. The algorithm populates the
196 * psci_non_cpu_pd_nodes and psci_cpu_pd_nodes iteratively by using this
197 * topology map. On a platform that implements two clusters of 2 cpus each, and
198 * supporting 3 domain levels, the populated psci_non_cpu_pd_nodes would look
199 * like this:
Achin Gupta4f6ad662013-10-25 09:08:21 +0100200 *
Achin Gupta4f6ad662013-10-25 09:08:21 +0100201 * ---------------------------------------------------
Soby Mathew981487a2015-07-13 14:10:57 +0100202 * | system node | cluster 0 node | cluster 1 node |
Achin Gupta4f6ad662013-10-25 09:08:21 +0100203 * ---------------------------------------------------
Achin Gupta4f6ad662013-10-25 09:08:21 +0100204 *
Soby Mathew981487a2015-07-13 14:10:57 +0100205 * And populated psci_cpu_pd_nodes would look like this :
206 * <- cpus cluster0 -><- cpus cluster1 ->
207 * ------------------------------------------------
208 * | CPU 0 | CPU 1 | CPU 2 | CPU 3 |
209 * ------------------------------------------------
Achin Gupta4f6ad662013-10-25 09:08:21 +0100210 ******************************************************************************/
Achin Gupta7421b462014-02-01 18:53:26 +0000211int32_t psci_setup(void)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100212{
Soby Mathew981487a2015-07-13 14:10:57 +0100213 const unsigned char *topology_tree;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100214
Soby Mathew981487a2015-07-13 14:10:57 +0100215 /* Query the topology map from the platform */
216 topology_tree = plat_get_power_domain_tree_desc();
Achin Gupta4f6ad662013-10-25 09:08:21 +0100217
Soby Mathew981487a2015-07-13 14:10:57 +0100218 /* Populate the power domain arrays using the platform topology map */
219 populate_power_domain_tree(topology_tree);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100220
Soby Mathew981487a2015-07-13 14:10:57 +0100221 /* Update the CPU limits for each node in psci_non_cpu_pd_nodes */
222 psci_update_pwrlvl_limits();
223
224 /* Populate the mpidr field of cpu node for this CPU */
225 psci_cpu_pd_nodes[plat_my_core_pos()].mpidr =
226 read_mpidr() & MPIDR_AFFINITY_MASK;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100227
Soby Mathew2ae20432015-01-08 18:02:44 +0000228#if !USE_COHERENT_MEM
229 /*
Soby Mathew981487a2015-07-13 14:10:57 +0100230 * The psci_non_cpu_pd_nodes only needs flushing when it's not allocated in
Soby Mathew2ae20432015-01-08 18:02:44 +0000231 * coherent memory.
232 */
Soby Mathew981487a2015-07-13 14:10:57 +0100233 flush_dcache_range((uint64_t) &psci_non_cpu_pd_nodes,
234 sizeof(psci_non_cpu_pd_nodes));
Soby Mathew2ae20432015-01-08 18:02:44 +0000235#endif
236
Soby Mathew981487a2015-07-13 14:10:57 +0100237 flush_dcache_range((uint64_t) &psci_cpu_pd_nodes,
238 sizeof(psci_cpu_pd_nodes));
Achin Gupta4f6ad662013-10-25 09:08:21 +0100239
Soby Mathew981487a2015-07-13 14:10:57 +0100240 psci_init_req_local_pwr_states();
Achin Gupta4f6ad662013-10-25 09:08:21 +0100241
242 /*
Soby Mathew981487a2015-07-13 14:10:57 +0100243 * Set the requested and target state of this CPU and all the higher
244 * power domain levels for this CPU to run.
Achin Gupta4f6ad662013-10-25 09:08:21 +0100245 */
Soby Mathew981487a2015-07-13 14:10:57 +0100246 psci_set_pwr_domains_to_run(PLAT_MAX_PWR_LVL);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100247
Soby Mathew981487a2015-07-13 14:10:57 +0100248 plat_setup_psci_ops((uintptr_t)psci_entrypoint,
249 &psci_plat_pm_ops);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100250 assert(psci_plat_pm_ops);
251
Soby Mathew6cdddaf2015-01-07 11:10:22 +0000252 /* Initialize the psci capability */
253 psci_caps = PSCI_GENERIC_CAP;
254
Soby Mathew981487a2015-07-13 14:10:57 +0100255 if (psci_plat_pm_ops->pwr_domain_off)
Soby Mathew6cdddaf2015-01-07 11:10:22 +0000256 psci_caps |= define_psci_cap(PSCI_CPU_OFF);
Soby Mathew981487a2015-07-13 14:10:57 +0100257 if (psci_plat_pm_ops->pwr_domain_on &&
258 psci_plat_pm_ops->pwr_domain_on_finish)
Soby Mathew6cdddaf2015-01-07 11:10:22 +0000259 psci_caps |= define_psci_cap(PSCI_CPU_ON_AARCH64);
Soby Mathew981487a2015-07-13 14:10:57 +0100260 if (psci_plat_pm_ops->pwr_domain_suspend &&
261 psci_plat_pm_ops->pwr_domain_suspend_finish) {
Soby Mathew6cdddaf2015-01-07 11:10:22 +0000262 psci_caps |= define_psci_cap(PSCI_CPU_SUSPEND_AARCH64);
Soby Mathew96168382014-12-17 14:47:57 +0000263 if (psci_plat_pm_ops->get_sys_suspend_power_state)
264 psci_caps |= define_psci_cap(PSCI_SYSTEM_SUSPEND_AARCH64);
265 }
Soby Mathew6cdddaf2015-01-07 11:10:22 +0000266 if (psci_plat_pm_ops->system_off)
267 psci_caps |= define_psci_cap(PSCI_SYSTEM_OFF);
268 if (psci_plat_pm_ops->system_reset)
269 psci_caps |= define_psci_cap(PSCI_SYSTEM_RESET);
270
Achin Gupta7421b462014-02-01 18:53:26 +0000271 return 0;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100272}