summaryrefslogtreecommitdiffstats
path: root/plat/qti/common/src/qti_topology.c
blob: bf2e3f3b7d032e8a883507029b0f869e602d5fad (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
44
45
46
47
48
/*
 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
 * Copyright (c) 2018,2020 The Linux Foundation. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <arch.h>

#include <platform_def.h>
#include <qti_plat.h>

/* The QTI power domain tree descriptor */
const unsigned char qti_power_domain_tree_desc[] = {
	/* One domain to represent PDC */
	PLAT_PDC_COUNT,
	/* One domain to represent RSC */
	PLAT_RSC_COUNT,
	/* There is one top-level FCM cluster */
	PLAT_CLUSTER_COUNT,
	/* No. of cores in the FCM cluster */
	PLAT_CLUSTER0_CORE_COUNT
};

/*******************************************************************************
 * This function returns the ARM default topology tree information.
 ******************************************************************************/
const unsigned char *plat_get_power_domain_tree_desc(void)
{
	return qti_power_domain_tree_desc;
}

/** Function: plat_core_pos_by_mpidr
 * 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)
{
	int core_linear_index = plat_qti_core_pos_by_mpidr(mpidr);

	if (core_linear_index < PLATFORM_CORE_COUNT) {
		return core_linear_index;
	} else {
		return -1;
	}
}