psci_setup.c 11.8 KB
Newer Older
1
/*
2
 * Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved.
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice, this
 * list of conditions and the following disclaimer.
 *
 * Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following disclaimer in the documentation
 * and/or other materials provided with the distribution.
 *
 * Neither the name of ARM nor the names of its contributors may be used
 * to endorse or promote products derived from this software without specific
 * prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

31
#include <arch.h>
32
#include <arch_helpers.h>
33
34
35
#include <assert.h>
#include <bl_common.h>
#include <context.h>
36
#include <context_mgmt.h>
37
#include <errata_report.h>
38
39
#include <platform.h>
#include <stddef.h>
40
#include "psci_private.h"
41
42
43
44
45

/*******************************************************************************
 * Per cpu non-secure contexts used to program the architectural state prior
 * return to the normal world.
 * TODO: Use the memory allocator to set aside memory for the contexts instead
46
 * of relying on platform defined constants.
47
 ******************************************************************************/
48
static cpu_context_t psci_ns_context[PLATFORM_CORE_COUNT];
49

Soby Mathew's avatar
Soby Mathew committed
50
51
52
/******************************************************************************
 * Define the psci capability variable.
 *****************************************************************************/
53
unsigned int psci_caps;
Soby Mathew's avatar
Soby Mathew committed
54

55
/*******************************************************************************
56
57
 * Function which initializes the 'psci_non_cpu_pd_nodes' or the
 * 'psci_cpu_pd_nodes' corresponding to the power level.
58
 ******************************************************************************/
59
60
61
static void psci_init_pwr_domain_node(unsigned int node_idx,
					unsigned int parent_idx,
					unsigned int level)
62
{
63
64
65
66
67
68
69
70
	if (level > PSCI_CPU_PWR_LVL) {
		psci_non_cpu_pd_nodes[node_idx].level = level;
		psci_lock_init(psci_non_cpu_pd_nodes, node_idx);
		psci_non_cpu_pd_nodes[node_idx].parent_node = parent_idx;
		psci_non_cpu_pd_nodes[node_idx].local_state =
							 PLAT_MAX_OFF_STATE;
	} else {
		psci_cpu_data_t *svc_cpu_data;
71

72
		psci_cpu_pd_nodes[node_idx].parent_node = parent_idx;
73

74
75
		/* Initialize with an invalid mpidr */
		psci_cpu_pd_nodes[node_idx].mpidr = PSCI_INVALID_MPIDR;
76

77
78
		svc_cpu_data =
			&(_cpu_data_by_index(node_idx)->psci_svc_cpu_data);
79

80
81
		/* Set the Affinity Info for the cores as OFF */
		svc_cpu_data->aff_info_state = AFF_STATE_OFF;
82

83
		/* Invalidate the suspend level for the cpu */
84
		svc_cpu_data->target_pwrlvl = PSCI_INVALID_PWR_LVL;
85

86
87
		/* Set the power state to OFF state */
		svc_cpu_data->local_state = PLAT_MAX_OFF_STATE;
88

89
		flush_dcache_range((uintptr_t)svc_cpu_data,
90
91
92
93
94
95
						 sizeof(*svc_cpu_data));

		cm_set_context_by_index(node_idx,
					(void *) &psci_ns_context[node_idx],
					NON_SECURE);
	}
96
97
}

98
/*******************************************************************************
99
100
101
102
103
104
105
106
107
 * This functions updates cpu_start_idx and ncpus field for each of the node in
 * psci_non_cpu_pd_nodes[]. It does so by comparing the parent nodes of each of
 * the CPUs and check whether they match with the parent of the previous
 * CPU. The basic assumption for this work is that children of the same parent
 * are allocated adjacent indices. The platform should ensure this though proper
 * mapping of the CPUs to indices via plat_core_pos_by_mpidr() and
 * plat_my_core_pos() APIs.
 *******************************************************************************/
static void psci_update_pwrlvl_limits(void)
108
{
109
	int j;
110
	unsigned int nodes_idx[PLAT_MAX_PWR_LVL] = {0};
111
	unsigned int temp_index[PLAT_MAX_PWR_LVL], cpu_idx;
112
113
114
115
116
117
118
119
120
121

	for (cpu_idx = 0; cpu_idx < PLATFORM_CORE_COUNT; cpu_idx++) {
		psci_get_parent_pwr_domain_nodes(cpu_idx,
						 PLAT_MAX_PWR_LVL,
						 temp_index);
		for (j = PLAT_MAX_PWR_LVL - 1; j >= 0; j--) {
			if (temp_index[j] != nodes_idx[j]) {
				nodes_idx[j] = temp_index[j];
				psci_non_cpu_pd_nodes[nodes_idx[j]].cpu_start_idx
					= cpu_idx;
122
			}
123
124
			psci_non_cpu_pd_nodes[nodes_idx[j]].ncpus++;
		}
125
126
127
	}
}

128
/*******************************************************************************
129
130
131
132
 * Core routine to populate the power domain tree. The tree descriptor passed by
 * the platform is populated breadth-first and the first entry in the map
 * informs the number of root power domains. The parent nodes of the root nodes
 * will point to an invalid entry(-1).
133
 ******************************************************************************/
134
static void populate_power_domain_tree(const unsigned char *topology)
135
{
136
137
138
	unsigned int i, j = 0, num_nodes_at_lvl = 1, num_nodes_at_next_lvl;
	unsigned int node_index = 0, parent_node_index = 0, num_children;
	int level = PLAT_MAX_PWR_LVL;
139
140

	/*
141
142
143
144
145
146
147
	 * For each level the inputs are:
	 * - number of nodes at this level in plat_array i.e. num_nodes_at_level
	 *   This is the sum of values of nodes at the parent level.
	 * - Index of first entry at this level in the plat_array i.e.
	 *   parent_node_index.
	 * - Index of first free entry in psci_non_cpu_pd_nodes[] or
	 *   psci_cpu_pd_nodes[] i.e. node_index depending upon the level.
148
	 */
149
150
	while (level >= PSCI_CPU_PWR_LVL) {
		num_nodes_at_next_lvl = 0;
151
		/*
152
153
154
155
156
157
		 * For each entry (parent node) at this level in the plat_array:
		 * - Find the number of children
		 * - Allocate a node in a power domain array for each child
		 * - Set the parent of the child to the parent_node_index - 1
		 * - Increment parent_node_index to point to the next parent
		 * - Accumulate the number of children at next level.
158
		 */
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
		for (i = 0; i < num_nodes_at_lvl; i++) {
			assert(parent_node_index <=
					PSCI_NUM_NON_CPU_PWR_DOMAINS);
			num_children = topology[parent_node_index];

			for (j = node_index;
				j < node_index + num_children; j++)
				psci_init_pwr_domain_node(j,
							  parent_node_index - 1,
							  level);

			node_index = j;
			num_nodes_at_next_lvl += num_children;
			parent_node_index++;
		}
174

175
176
		num_nodes_at_lvl = num_nodes_at_next_lvl;
		level--;
177

178
179
180
		/* Reset the index for the cpu power domain array */
		if (level == PSCI_CPU_PWR_LVL)
			node_index = 0;
181
182
	}

183
184
	/* Validate the sanity of array exported by the platform */
	assert(j == PLATFORM_CORE_COUNT);
185
186
187
}

/*******************************************************************************
Soby Mathew's avatar
Soby Mathew committed
188
189
190
191
192
193
 * This function does the architectural setup and takes the warm boot
 * entry-point `mailbox_ep` as an argument. The function also initializes the
 * power domain topology tree by querying the platform. The power domain nodes
 * higher than the CPU are populated in the array psci_non_cpu_pd_nodes[] and
 * the CPU power domains are populated in psci_cpu_pd_nodes[]. The platform
 * exports its static topology map through the
194
195
 * populate_power_domain_topology_tree() API. The algorithm populates the
 * psci_non_cpu_pd_nodes and psci_cpu_pd_nodes iteratively by using this
Soby Mathew's avatar
Soby Mathew committed
196
197
198
 * topology map.  On a platform that implements two clusters of 2 cpus each,
 * and supporting 3 domain levels, the populated psci_non_cpu_pd_nodes would
 * look like this:
199
200
 *
 * ---------------------------------------------------
201
 * | system node | cluster 0 node  | cluster 1 node  |
202
203
 * ---------------------------------------------------
 *
204
205
206
207
208
 * And populated psci_cpu_pd_nodes would look like this :
 * <-    cpus cluster0   -><-   cpus cluster1   ->
 * ------------------------------------------------
 * |   CPU 0   |   CPU 1   |   CPU 2   |   CPU 3  |
 * ------------------------------------------------
209
 ******************************************************************************/
210
int psci_setup(const psci_lib_args_t *lib_args)
211
{
212
	const unsigned char *topology_tree;
213

214
215
	assert(VERIFY_PSCI_LIB_ARGS_V1(lib_args));

Soby Mathew's avatar
Soby Mathew committed
216
217
218
	/* Do the Architectural initialization */
	psci_arch_setup();

219
220
	/* Query the topology map from the platform */
	topology_tree = plat_get_power_domain_tree_desc();
221

222
223
	/* Populate the power domain arrays using the platform topology map */
	populate_power_domain_tree(topology_tree);
224

225
226
227
228
229
230
	/* Update the CPU limits for each node in psci_non_cpu_pd_nodes */
	psci_update_pwrlvl_limits();

	/* Populate the mpidr field of cpu node for this CPU */
	psci_cpu_pd_nodes[plat_my_core_pos()].mpidr =
		read_mpidr() & MPIDR_AFFINITY_MASK;
231

232
	psci_init_req_local_pwr_states();
233
234

	/*
235
236
	 * Set the requested and target state of this CPU and all the higher
	 * power domain levels for this CPU to run.
237
	 */
238
	psci_set_pwr_domains_to_run(PLAT_MAX_PWR_LVL);
239

240
	plat_setup_psci_ops((uintptr_t)lib_args->mailbox_ep, &psci_plat_pm_ops);
241
242
	assert(psci_plat_pm_ops);

243
244
245
246
247
248
249
	/*
	 * Flush `psci_plat_pm_ops` as it will be accessed by secondary CPUs
	 * during warm boot before data cache is enabled.
	 */
	flush_dcache_range((uintptr_t)&psci_plat_pm_ops,
					sizeof(psci_plat_pm_ops));

Soby Mathew's avatar
Soby Mathew committed
250
251
252
	/* Initialize the psci capability */
	psci_caps = PSCI_GENERIC_CAP;

253
	if (psci_plat_pm_ops->pwr_domain_off)
Soby Mathew's avatar
Soby Mathew committed
254
		psci_caps |=  define_psci_cap(PSCI_CPU_OFF);
255
256
	if (psci_plat_pm_ops->pwr_domain_on &&
			psci_plat_pm_ops->pwr_domain_on_finish)
Soby Mathew's avatar
Soby Mathew committed
257
		psci_caps |=  define_psci_cap(PSCI_CPU_ON_AARCH64);
258
259
	if (psci_plat_pm_ops->pwr_domain_suspend &&
			psci_plat_pm_ops->pwr_domain_suspend_finish) {
Soby Mathew's avatar
Soby Mathew committed
260
		psci_caps |=  define_psci_cap(PSCI_CPU_SUSPEND_AARCH64);
261
262
263
		if (psci_plat_pm_ops->get_sys_suspend_power_state)
			psci_caps |=  define_psci_cap(PSCI_SYSTEM_SUSPEND_AARCH64);
	}
Soby Mathew's avatar
Soby Mathew committed
264
265
266
267
	if (psci_plat_pm_ops->system_off)
		psci_caps |=  define_psci_cap(PSCI_SYSTEM_OFF);
	if (psci_plat_pm_ops->system_reset)
		psci_caps |=  define_psci_cap(PSCI_SYSTEM_RESET);
268
269
	if (psci_plat_pm_ops->get_node_hw_state)
		psci_caps |= define_psci_cap(PSCI_NODE_HW_STATE_AARCH64);
Soby Mathew's avatar
Soby Mathew committed
270

271
272
273
274
275
#if ENABLE_PSCI_STAT
	psci_caps |=  define_psci_cap(PSCI_STAT_RESIDENCY_AARCH64);
	psci_caps |=  define_psci_cap(PSCI_STAT_COUNT_AARCH64);
#endif

Achin Gupta's avatar
Achin Gupta committed
276
	return 0;
277
}
Soby Mathew's avatar
Soby Mathew committed
278
279
280
281
282
283
284
285
286
287
288
289
290

/*******************************************************************************
 * This duplicates what the primary cpu did after a cold boot in BL1. The same
 * needs to be done when a cpu is hotplugged in. This function could also over-
 * ride any EL3 setup done by BL1 as this code resides in rw memory.
 ******************************************************************************/
void psci_arch_setup(void)
{
	/* Program the counter frequency */
	write_cntfrq_el0(plat_get_syscnt_freq2());

	/* Initialize the cpu_ops pointer. */
	init_cpu_ops();
291
292
293

	/* Having initialized cpu_ops, we can now print errata status */
	print_errata_status();
Soby Mathew's avatar
Soby Mathew committed
294
}
Soby Mathew's avatar
Soby Mathew committed
295
296
297
298
299
300
301
302
303
304
305
306

/******************************************************************************
 * PSCI Library interface to initialize the cpu context for the next non
 * secure image during cold boot. The relevant registers in the cpu context
 * need to be retrieved and programmed on return from this interface.
 *****************************************************************************/
void psci_prepare_next_non_secure_ctx(entry_point_info_t *next_image_info)
{
	assert(GET_SECURITY_STATE(next_image_info->h.attr) == NON_SECURE);
	cm_init_my_context(next_image_info);
	cm_prepare_el3_exit(NON_SECURE);
}