blob: 971e35b5b75aee9bf98885400659cf473b0ab860 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -06002 * Copyright (c) 2013-2023, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005 */
6
Madhukar Pappireddy7b834ad2020-02-21 14:01:44 -06007#include <assert.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008
Dan Handley2b6b5742015-03-19 19:17:53 +00009#include <arch.h>
Antonio Nino Diazf13d09a2019-01-23 21:50:09 +000010#include <drivers/arm/fvp/fvp_pwrc.h>
Madhukar Pappireddy7b834ad2020-02-21 14:01:44 -060011#include <fconf_hw_config_getter.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000012#include <lib/cassert.h>
Antonio Nino Diazbd7b7402019-01-25 14:30:04 +000013#include <plat/arm/common/arm_config.h>
14#include <plat/arm/common/plat_arm.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000015#include <plat/common/platform.h>
16
Madhukar Pappireddy7b834ad2020-02-21 14:01:44 -060017#include <platform_def.h>
18
Soby Mathewfec4eb72015-07-01 16:16:20 +010019/* The FVP power domain tree descriptor */
Roberto Vargas2ca18d92018-02-12 12:36:17 +000020static unsigned char fvp_power_domain_tree_desc[FVP_CLUSTER_COUNT + 2];
Soby Mathew47e43f22016-02-01 14:04:34 +000021
22
Sathees Balya30952cc2018-09-27 14:41:02 +010023CASSERT(((FVP_CLUSTER_COUNT > 0) && (FVP_CLUSTER_COUNT <= 256)),
24 assert_invalid_fvp_cluster_count);
Soby Mathew47e43f22016-02-01 14:04:34 +000025
26/*******************************************************************************
Madhukar Pappireddy7b834ad2020-02-21 14:01:44 -060027 * This function dynamically constructs the topology according to cpu-map node
28 * in HW_CONFIG dtb and returns it.
Soby Mathew47e43f22016-02-01 14:04:34 +000029 ******************************************************************************/
30const unsigned char *plat_get_power_domain_tree_desc(void)
31{
Madhukar Pappireddy7b834ad2020-02-21 14:01:44 -060032 unsigned int i;
33 uint32_t cluster_count, cpus_per_cluster;
34
35 /*
36 * fconf APIs are not supported for RESET_TO_SP_MIN, RESET_TO_BL31 and
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -060037 * RESET_TO_BL2 systems.
Madhukar Pappireddy7b834ad2020-02-21 14:01:44 -060038 */
Arvind Ram Prakash11b9b492022-11-22 14:41:00 -060039#if RESET_TO_SP_MIN || RESET_TO_BL31 || RESET_TO_BL2
Madhukar Pappireddy7b834ad2020-02-21 14:01:44 -060040 cluster_count = FVP_CLUSTER_COUNT;
41 cpus_per_cluster = FVP_MAX_CPUS_PER_CLUSTER * FVP_MAX_PE_PER_CPU;
42#else
43 cluster_count = FCONF_GET_PROPERTY(hw_config, topology, plat_cluster_count);
44 cpus_per_cluster = FCONF_GET_PROPERTY(hw_config, topology, cluster_cpu_count);
45 /* Several FVP Models use the same blanket dts. Ex: FVP_Base_Cortex-A65x4
46 * and FVP_Base_Cortex-A65AEx8 both use same dts but have different number of
47 * CPUs in the cluster, as reflected by build flags FVP_MAX_CPUS_PER_CLUSTER.
48 * Take the minimum of two to ensure PSCI functions do not exceed the size of
49 * the PSCI data structures allocated at build time.
50 */
51 cpus_per_cluster = MIN(cpus_per_cluster,
52 (uint32_t)(FVP_MAX_CPUS_PER_CLUSTER * FVP_MAX_PE_PER_CPU));
53
54#endif
55
56 assert(cluster_count > 0U);
57 assert(cpus_per_cluster > 0U);
Soby Mathew47e43f22016-02-01 14:04:34 +000058
59 /*
Soby Mathew9ca28062017-10-11 16:08:58 +010060 * The highest level is the system level. The next level is constituted
61 * by clusters and then cores in clusters.
Soby Mathew47e43f22016-02-01 14:04:34 +000062 */
Soby Mathew9ca28062017-10-11 16:08:58 +010063 fvp_power_domain_tree_desc[0] = 1;
Madhukar Pappireddy7b834ad2020-02-21 14:01:44 -060064 fvp_power_domain_tree_desc[1] = (unsigned char)cluster_count;
Soby Mathew9ca28062017-10-11 16:08:58 +010065
Madhukar Pappireddy7b834ad2020-02-21 14:01:44 -060066 for (i = 0; i < cluster_count; i++)
67 fvp_power_domain_tree_desc[i + 2] = (unsigned char)cpus_per_cluster;
Soby Mathew47e43f22016-02-01 14:04:34 +000068
69 return fvp_power_domain_tree_desc;
70}
71
72/*******************************************************************************
73 * This function returns the core count within the cluster corresponding to
74 * `mpidr`.
75 ******************************************************************************/
76unsigned int plat_arm_get_cluster_core_count(u_register_t mpidr)
77{
78 return FVP_MAX_CPUS_PER_CLUSTER;
79}
Achin Gupta4f6ad662013-10-25 09:08:21 +010080
81/*******************************************************************************
Achin Gupta4f6ad662013-10-25 09:08:21 +010082 * This function implements a part of the critical interface between the psci
Soby Mathewfec4eb72015-07-01 16:16:20 +010083 * generic layer and the platform that allows the former to query the platform
84 * to convert an MPIDR to a unique linear index. An error code (-1) is returned
85 * in case the MPIDR is invalid.
Achin Gupta4f6ad662013-10-25 09:08:21 +010086 ******************************************************************************/
Soby Mathewfec4eb72015-07-01 16:16:20 +010087int plat_core_pos_by_mpidr(u_register_t mpidr)
Achin Gupta4f6ad662013-10-25 09:08:21 +010088{
Jeenu Viswambharan9e78b922017-07-18 15:42:50 +010089 unsigned int clus_id, cpu_id, thread_id;
90
91 /* Validate affinity fields */
Sathees Balya30952cc2018-09-27 14:41:02 +010092 if ((arm_config.flags & ARM_CONFIG_FVP_SHIFTED_AFF) != 0U) {
Jeenu Viswambharan9e78b922017-07-18 15:42:50 +010093 thread_id = MPIDR_AFFLVL0_VAL(mpidr);
94 cpu_id = MPIDR_AFFLVL1_VAL(mpidr);
95 clus_id = MPIDR_AFFLVL2_VAL(mpidr);
96 } else {
97 thread_id = 0;
98 cpu_id = MPIDR_AFFLVL0_VAL(mpidr);
99 clus_id = MPIDR_AFFLVL1_VAL(mpidr);
100 }
101
102 if (clus_id >= FVP_CLUSTER_COUNT)
103 return -1;
104 if (cpu_id >= FVP_MAX_CPUS_PER_CLUSTER)
105 return -1;
106 if (thread_id >= FVP_MAX_PE_PER_CPU)
107 return -1;
108
Soby Mathewfec4eb72015-07-01 16:16:20 +0100109 if (fvp_pwrc_read_psysr(mpidr) == PSYSR_INVALID)
110 return -1;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100111
Jeenu Viswambharan528d21b2016-11-15 13:53:57 +0000112 /*
113 * Core position calculation for FVP platform depends on the MT bit in
114 * MPIDR. This function cannot assume that the supplied MPIDR has the MT
115 * bit set even if the implementation has. For example, PSCI clients
116 * might supply MPIDR values without the MT bit set. Therefore, we
117 * inject the current PE's MT bit so as to get the calculation correct.
118 * This of course assumes that none or all CPUs on the platform has MT
119 * bit set.
120 */
121 mpidr |= (read_mpidr_el1() & MPIDR_MT_MASK);
Sathees Balya30952cc2018-09-27 14:41:02 +0100122 return (int) plat_arm_calc_core_pos(mpidr);
Achin Gupta4f6ad662013-10-25 09:08:21 +0100123}