tegra_topology.c 1.55 KB
Newer Older
1
/*
2
 * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
7
 */

#include <platform_def.h>
8
9
10

#include <arch.h>
#include <lib/psci/psci.h>
11

12
extern const unsigned char tegra_power_domain_tree_desc[];
13
#pragma weak plat_core_pos_by_mpidr
14

15
/*******************************************************************************
16
 * This function returns the Tegra default topology tree information.
17
 ******************************************************************************/
18
const unsigned char *plat_get_power_domain_tree_desc(void)
19
{
20
	return tegra_power_domain_tree_desc;
21
22
23
24
}

/*******************************************************************************
 * This function implements a part of the critical interface between the psci
25
26
27
 * 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.
28
 ******************************************************************************/
29
int plat_core_pos_by_mpidr(u_register_t mpidr)
30
{
31
32
33
34
35
36
	unsigned int cluster_id, cpu_id;

	cluster_id = (mpidr >> MPIDR_AFF1_SHIFT) & MPIDR_AFFLVL_MASK;
	cpu_id = (mpidr >> MPIDR_AFF0_SHIFT) & MPIDR_AFFLVL_MASK;

	if (cluster_id >= PLATFORM_CLUSTER_COUNT)
37
		return PSCI_E_NOT_PRESENT;
38
39
40
41
42
43

	/*
	 * Validate cpu_id by checking whether it represents a CPU in
	 * one of the two clusters present on the platform.
	 */
	if (cpu_id >= PLATFORM_MAX_CPUS_PER_CLUSTER)
44
		return PSCI_E_NOT_PRESENT;
45
46

	return (cpu_id + (cluster_id * 4));
47
}