xref: /rk3399_ARM-atf/plat/arm/common/arm_topology.c (revision 38dce70f51fb83b27958ba3e2ad15f5635cb1061)
1b4315306SDan Handley /*
2b4315306SDan Handley  * Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
3b4315306SDan Handley  *
4b4315306SDan Handley  * Redistribution and use in source and binary forms, with or without
5b4315306SDan Handley  * modification, are permitted provided that the following conditions are met:
6b4315306SDan Handley  *
7b4315306SDan Handley  * Redistributions of source code must retain the above copyright notice, this
8b4315306SDan Handley  * list of conditions and the following disclaimer.
9b4315306SDan Handley  *
10b4315306SDan Handley  * Redistributions in binary form must reproduce the above copyright notice,
11b4315306SDan Handley  * this list of conditions and the following disclaimer in the documentation
12b4315306SDan Handley  * and/or other materials provided with the distribution.
13b4315306SDan Handley  *
14b4315306SDan Handley  * Neither the name of ARM nor the names of its contributors may be used
15b4315306SDan Handley  * to endorse or promote products derived from this software without specific
16b4315306SDan Handley  * prior written permission.
17b4315306SDan Handley  *
18b4315306SDan Handley  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19b4315306SDan Handley  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20b4315306SDan Handley  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21b4315306SDan Handley  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22b4315306SDan Handley  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23b4315306SDan Handley  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24b4315306SDan Handley  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25b4315306SDan Handley  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26b4315306SDan Handley  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27b4315306SDan Handley  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28b4315306SDan Handley  * POSSIBILITY OF SUCH DAMAGE.
29b4315306SDan Handley  */
30b4315306SDan Handley 
31b4315306SDan Handley #include <arch.h>
32b4315306SDan Handley #include <psci.h>
33*38dce70fSSoby Mathew #include <plat_arm.h>
34b4315306SDan Handley #include <platform_def.h>
35b4315306SDan Handley 
36*38dce70fSSoby Mathew #define get_arm_cluster_core_count(mpidr)\
37*38dce70fSSoby Mathew 		(((mpidr) & 0x100) ? PLAT_ARM_CLUSTER1_CORE_COUNT :\
38*38dce70fSSoby Mathew 				PLAT_ARM_CLUSTER0_CORE_COUNT)
39*38dce70fSSoby Mathew 
40*38dce70fSSoby Mathew /* The power domain tree descriptor which need to be exported by ARM platforms */
41*38dce70fSSoby Mathew extern const unsigned char arm_power_domain_tree_desc[];
42b4315306SDan Handley 
43b4315306SDan Handley 
44*38dce70fSSoby Mathew /*******************************************************************************
45*38dce70fSSoby Mathew  * This function returns the ARM default topology tree information.
46*38dce70fSSoby Mathew  ******************************************************************************/
47*38dce70fSSoby Mathew const unsigned char *plat_get_power_domain_tree_desc(void)
48b4315306SDan Handley {
49*38dce70fSSoby Mathew 	return arm_power_domain_tree_desc;
50b4315306SDan Handley }
51b4315306SDan Handley 
52*38dce70fSSoby Mathew /*******************************************************************************
53*38dce70fSSoby Mathew  * This function validates an MPIDR by checking whether it falls within the
54*38dce70fSSoby Mathew  * acceptable bounds. An error code (-1) is returned if an incorrect mpidr
55*38dce70fSSoby Mathew  * is passed.
56*38dce70fSSoby Mathew  ******************************************************************************/
57*38dce70fSSoby Mathew int arm_check_mpidr(u_register_t mpidr)
58b4315306SDan Handley {
59*38dce70fSSoby Mathew 	unsigned int cluster_id, cpu_id;
60b4315306SDan Handley 
61*38dce70fSSoby Mathew 	mpidr &= MPIDR_AFFINITY_MASK;
62*38dce70fSSoby Mathew 
63*38dce70fSSoby Mathew 	if (mpidr & ~(MPIDR_CLUSTER_MASK | MPIDR_CPU_MASK))
64*38dce70fSSoby Mathew 		return -1;
65*38dce70fSSoby Mathew 
66*38dce70fSSoby Mathew 	cluster_id = (mpidr >> MPIDR_AFF1_SHIFT) & MPIDR_AFFLVL_MASK;
67*38dce70fSSoby Mathew 	cpu_id = (mpidr >> MPIDR_AFF0_SHIFT) & MPIDR_AFFLVL_MASK;
68*38dce70fSSoby Mathew 
69*38dce70fSSoby Mathew 	if (cluster_id >= ARM_CLUSTER_COUNT)
70*38dce70fSSoby Mathew 		return -1;
71*38dce70fSSoby Mathew 
72*38dce70fSSoby Mathew 	/* Validate cpu_id by checking whether it represents a CPU in
73*38dce70fSSoby Mathew 	   one of the two clusters present on the platform. */
74*38dce70fSSoby Mathew 	if (cpu_id >= get_arm_cluster_core_count(mpidr))
75*38dce70fSSoby Mathew 		return -1;
76*38dce70fSSoby Mathew 
77*38dce70fSSoby Mathew 	return 0;
78b4315306SDan Handley }
79