[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <4b3c042c-a986-9768-c923-cc19b82ee777@hisilicon.com>
Date: Sat, 30 Aug 2025 18:20:23 +0800
From: Jie Zhan <zhanjie9@...ilicon.com>
To: Lifeng Zheng <zhenglifeng1@...wei.com>, <catalin.marinas@....com>,
<will@...nel.org>, <rafael@...nel.org>, <viresh.kumar@...aro.org>,
<beata.michalska@....com>, <sudeep.holla@....com>
CC: <linux-arm-kernel@...ts.infradead.org>, <linux-pm@...r.kernel.org>,
<linux-kernel@...r.kernel.org>, <linuxarm@...wei.com>,
<jonathan.cameron@...wei.com>, <vincent.guittot@...aro.org>,
<yangyicong@...ilicon.com>, <lihuisong@...wei.com>, <yubowen8@...wei.com>,
<zhangpengjie2@...wei.com>, <linhongye@...artners.com>
Subject: Re: [PATCH v5 3/3] arm64: topology: Setup AMU FIE for online CPUs
only
Hi Lifeng,
Some minor suggestions in addition to Beata's comments on the readability
of those checks.
On 19/08/2025 15:29, Lifeng Zheng wrote:
> When boot with maxcpu=1 restrict, and LPI(Low Power Idle States) is on,
> only CPU0 will go online. The support AMU flag of CPU0 will be set but the
> flags of other CPUs will not. This will cause AMU FIE set up fail for CPU0
> when it shares a cpufreq policy with other CPU(s). After that, when other
> CPUs are finally online and the support AMU flags of them are set, they'll
> never have a chance to set up AMU FIE, even though they're eligible.
>
> To solve this problem, the process of setting up AMU FIE needs to be
> modified as follows:
>
> 1. Set up AMU FIE only for the online CPUs.
>
> 2. Try to set up AMU FIE each time a CPU goes online and do the
> freq_counters_valid() check. If this check fails, clear scale freq source
> of all the CPUs related to the same policy, in case they use different
> source of the freq scale.
>
> At the same time, this change also be applied to cpufreq when calling
> arch_set_freq_scale.
>
> Signed-off-by: Lifeng Zheng <zhenglifeng1@...wei.com>
> ---
> arch/arm64/kernel/topology.c | 54 ++++++++++++++++++++++++++++++++++--
> drivers/cpufreq/cpufreq.c | 4 +--
> 2 files changed, 54 insertions(+), 4 deletions(-)
>
> diff --git a/arch/arm64/kernel/topology.c b/arch/arm64/kernel/topology.c
> index 9317a618bb87..a9d9e9969cea 100644
> --- a/arch/arm64/kernel/topology.c
> +++ b/arch/arm64/kernel/topology.c
> @@ -385,7 +385,7 @@ static int init_amu_fie_callback(struct notifier_block *nb, unsigned long val,
> struct cpufreq_policy *policy = data;
>
> if (val == CPUFREQ_CREATE_POLICY)
> - amu_fie_setup(policy->related_cpus);
> + amu_fie_setup(policy->cpus);
>
> /*
> * We don't need to handle CPUFREQ_REMOVE_POLICY event as the AMU
> @@ -404,10 +404,60 @@ static struct notifier_block init_amu_fie_notifier = {
> .notifier_call = init_amu_fie_callback,
> };
>
> +static int cpuhp_topology_online(unsigned int cpu)
> +{
> + struct cpufreq_policy *policy = cpufreq_cpu_policy(cpu);
> +
> + /*
> + * If the online CPUs are not all AMU FIE CPUs or the new one is already
> + * an AMU FIE one, no need to set it.
> + */
> + if (!policy || !cpumask_available(amu_fie_cpus) ||
> + !cpumask_subset(policy->cpus, amu_fie_cpus) ||
> + cpumask_test_cpu(cpu, amu_fie_cpus))
> + return 0;
> +
> + /*
> + * If the new online CPU cannot pass this check, all the CPUs related to
> + * the same policy should be clear from amu_fie_cpus mask, otherwise they
> + * may use different source of the freq scale.
> + */
> + if (WARN_ON(!freq_counters_valid(cpu))) {
I think a panic warning might be too much for this?
pr_info/pr_warn, or even pr_debug, should be enough.
> + topology_clear_scale_freq_source(SCALE_FREQ_SOURCE_ARCH,
> + policy->related_cpus);
> + cpumask_andnot(amu_fie_cpus, amu_fie_cpus, policy->related_cpus);
> + return 0;
> + }
> +
> + cpumask_set_cpu(cpu, amu_fie_cpus);
> +
> + topology_set_scale_freq_source(&amu_sfd, cpumask_of(cpu));
> +
> + pr_debug("CPU[%u]: counter will be used for FIE.", cpu);
> +
> + return 0;
> +}
> +
> static int __init init_amu_fie(void)
> {
> - return cpufreq_register_notifier(&init_amu_fie_notifier,
> + int ret;
> +
> + ret = cpufreq_register_notifier(&init_amu_fie_notifier,
> CPUFREQ_POLICY_NOTIFIER);
> + if (ret)
> + return ret;
> +
> + ret = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN,
> + "arm64/topology:online",
> + cpuhp_topology_online,
> + NULL);
> + if (ret < 0) {
> + cpufreq_unregister_notifier(&init_amu_fie_notifier,
> + CPUFREQ_POLICY_NOTIFIER);
> + return ret;
> + }
> +
> + return 0;
> }
> core_initcall(init_amu_fie);
>
It's better move the following change into a separate patch before the
AMU FIE changes.
I don't think they are interdependent, and they can be applied separately.
> diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c
> index 78ca68ea754d..d1890a2af1af 100644
> --- a/drivers/cpufreq/cpufreq.c
> +++ b/drivers/cpufreq/cpufreq.c
> @@ -417,7 +417,7 @@ void cpufreq_freq_transition_end(struct cpufreq_policy *policy,
>
> cpufreq_notify_post_transition(policy, freqs, transition_failed);
>
> - arch_set_freq_scale(policy->related_cpus,
> + arch_set_freq_scale(policy->cpus,
> policy->cur,
> arch_scale_freq_ref(policy->cpu));
>
> @@ -2219,7 +2219,7 @@ unsigned int cpufreq_driver_fast_switch(struct cpufreq_policy *policy,
> return 0;
>
> policy->cur = freq;
> - arch_set_freq_scale(policy->related_cpus, freq,
> + arch_set_freq_scale(policy->cpus, freq,
> arch_scale_freq_ref(policy->cpu));
> cpufreq_stats_record_transition(policy, freq);
>
Powered by blists - more mailing lists