aboutsummaryrefslogtreecommitdiff
path: root/plat/arm/board/corstone700/corstone700_topology.c
blob: 904f5ab3a5f4f292e0a3ef0165edfaea15a14fa9 (plain)
1
2
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
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
 * Copyright (c) 2019-2020, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <plat/arm/common/plat_arm.h>
#include <plat/common/platform.h>

/* The Corstone700 power domain tree descriptor */
static unsigned char corstone700_power_domain_tree_desc[PLAT_ARM_CLUSTER_COUNT
							+ 2];
/*******************************************************************************
 * This function dynamically constructs the topology according to
 * CLUSTER_COUNT and returns it.
 ******************************************************************************/
const unsigned char *plat_get_power_domain_tree_desc(void)
{
	int i;

	/*
	 * The highest level is the system level. The next level is constituted
	 * by clusters and then cores in clusters.
	 */
	corstone700_power_domain_tree_desc[0] = 1;
	corstone700_power_domain_tree_desc[1] = PLAT_ARM_CLUSTER_COUNT;

	for (i = 0; i < PLAT_ARM_CLUSTER_COUNT; i++)
		corstone700_power_domain_tree_desc[i + 2] = PLATFORM_CORE_COUNT;

	return corstone700_power_domain_tree_desc;
}

/******************************************************************************
 * This function implements a part of the critical interface between the PSCI
 * generic layer and the platform that allows the former to query the platform
 * to convert an MPIDR to a unique linear index. An error code (-1) is
 * returned in case the MPIDR is invalid.
 *****************************************************************************/
int plat_core_pos_by_mpidr(u_register_t mpidr)
{
	return plat_arm_calc_core_pos(mpidr);
}