From: Huang Rui <ray.huang@amd.com>
To: Borislav Petkov <bp@alien8.de>, Peter Zijlstra <peterz@infradead.org>
Cc: "Ingo Molnar" <mingo@kernel.org>,
"Andy Lutomirski" <luto@amacapital.net>,
"Thomas Gleixner" <tglx@linutronix.de>,
"Robert Richter" <rric@kernel.org>,
"Jacob Shin" <jacob.w.shin@gmail.com>,
"John Stultz" <john.stultz@linaro.org>,
"Fr�d�ric Weisbecker" <fweisbec@gmail.com>,
linux-kernel@vger.kernel.org, spg_linux_kernel@amd.com,
x86@kernel.org, "Guenter Roeck" <linux@roeck-us.net>,
"Andreas Herrmann" <herrmann.der.user@googlemail.com>,
"Suravee Suthikulpanit" <suravee.suthikulpanit@amd.com>,
"Aravind Gopalakrishnan" <Aravind.Gopalakrishnan@amd.com>,
"Fengguang Wu" <fengguang.wu@intel.com>,
"Aaron Lu" <aaron.lu@intel.com>
Subject: Re: [PATCH v2 5/5] perf/x86/amd/power: Add AMD accumulated power reporting mechanism
Date: Fri, 22 Jan 2016 16:04:40 +0800 [thread overview]
Message-ID: <20160122080439.GB16975@hr-amur2> (raw)
In-Reply-To: <20160121165958.GF21930@pd.tnic>
On Thu, Jan 21, 2016 at 05:59:58PM +0100, Borislav Petkov wrote:
> On Thu, Jan 21, 2016 at 04:10:40PM +0100, Peter Zijlstra wrote:
> > > > > + cpumask_clear(pmu->mask);
> > > > > + cpumask_clear(pmu->tmp_mask);
> > > > >
> > > > > for (i = 0; i < cores_per_cu; i++)
> > > > > + cpumask_set_cpu(i, pmu->mask);
> > > > >
> > > > > + cpumask_shift_left(pmu->mask, pmu->mask, cu * cores_per_cu);
> > > >
> > > > Couldn't you simply use topology_sibling_cpumask(cpu) instead?
> > > >
> > >
> > > Looks like we couldn't. That's because cores number per cu (compute
> > > unit) is got by CPUID 0x8000001e EBX. That relies on the CPU hardware.
> >
> > Borislav? I thought the AMD compute unit stuff was modeled as the SMT
> > topology.
>
> I would think so too:
>
> smp_num_siblings = ((ebx >> 8) & 3) + 1;
>
> gets set based on that CPUID leaf above. And that value is
> CoresPerComputeUnit which needs to be incremented by 1 to get the actual
> count of cores in a compute unit.
>
> And that participates in the setting of topology_sibling_cpumask() in
> set_cpu_sibling_map().
>
> And that looks correct on my system here:
>
> $ grep -EriIn . /sys/devices/system/cpu/cpu?/topology/* | grep thread_siblings
> /sys/devices/system/cpu/cpu0/topology/thread_siblings:1:03
> /sys/devices/system/cpu/cpu0/topology/thread_siblings_list:1:0-1
> /sys/devices/system/cpu/cpu1/topology/thread_siblings:1:03
> /sys/devices/system/cpu/cpu1/topology/thread_siblings_list:1:0-1
> /sys/devices/system/cpu/cpu2/topology/thread_siblings:1:0c
> /sys/devices/system/cpu/cpu2/topology/thread_siblings_list:1:2-3
> /sys/devices/system/cpu/cpu3/topology/thread_siblings:1:0c
> /sys/devices/system/cpu/cpu3/topology/thread_siblings_list:1:2-3
> /sys/devices/system/cpu/cpu4/topology/thread_siblings:1:30
> /sys/devices/system/cpu/cpu4/topology/thread_siblings_list:1:4-5
> /sys/devices/system/cpu/cpu5/topology/thread_siblings:1:30
> /sys/devices/system/cpu/cpu5/topology/thread_siblings_list:1:4-5
> /sys/devices/system/cpu/cpu6/topology/thread_siblings:1:c0
> /sys/devices/system/cpu/cpu6/topology/thread_siblings_list:1:6-7
> /sys/devices/system/cpu/cpu7/topology/thread_siblings:1:c0
> /sys/devices/system/cpu/cpu7/topology/thread_siblings_list:1:6-7
>
> and when we look at what CPUID reports:
>
> $ cpuid -r | grep -E "^\s+0x8000001e" | awk '{ print $4 }'
> ebx=0x00000100
> ebx=0x00000100
> ebx=0x00000101
> ebx=0x00000101
> ebx=0x00000102
> ebx=0x00000102
> ebx=0x00000103
> ebx=0x00000103
>
> We see that [15:8] is CoresPerComputeUnit which is + 1, so 2 cores per
> compute unit.
>
> And slice [7:0] gives the compute unit (CU) id of each core, so cores 0
> and 1 are CU0, 2 and 3 are CU1 and so on...
>
> So Rui, why do you say you can't use topology_sibling_cpumask()?
>
OK, you're right. Peter, Boris, thanks for your information.
I might need look at topology deeper. :-)
So how about below update:
8<--------------------------------------------------------------------------
diff --git a/arch/x86/kernel/cpu/perf_event_amd_power.c b/arch/x86/kernel/cpu/perf_event_amd_power.c
index 1f31157..d387fe7 100644
--- a/arch/x86/kernel/cpu/perf_event_amd_power.c
+++ b/arch/x86/kernel/cpu/perf_event_amd_power.c
@@ -301,18 +301,12 @@ static struct pmu pmu_class = {
static int power_cpu_exit(int cpu)
{
struct power_pmu *pmu = per_cpu(amd_power_pmu, cpu);
- int i, cu, ret = 0;
+ int ret = 0;
int target = nr_cpumask_bits;
- cu = cpu / cores_per_cu;
-
cpumask_clear(pmu->mask);
- cpumask_clear(pmu->tmp_mask);
-
- for (i = 0; i < cores_per_cu; i++)
- cpumask_set_cpu(i, pmu->mask);
- cpumask_shift_left(pmu->mask, pmu->mask, cu * cores_per_cu);
+ cpumask_copy(pmu->mask, topology_sibling_cpumask(cpu));
cpumask_clear_cpu(cpu, &cpu_mask);
cpumask_clear_cpu(cpu, pmu->mask);
@@ -345,19 +339,12 @@ out:
static int power_cpu_init(int cpu)
{
struct power_pmu *pmu = per_cpu(amd_power_pmu, cpu);
- int i, cu;
if (pmu)
return 0;
- cu = cpu / cores_per_cu;
-
- for (i = 0; i < cores_per_cu; i++)
- cpumask_set_cpu(i, pmu->mask);
-
- cpumask_shift_left(pmu->mask, pmu->mask, cu * cores_per_cu);
-
- if (!cpumask_and(pmu->tmp_mask, pmu->mask, &cpu_mask))
+ if (!cpumask_and(pmu->mask, topology_sibling_cpumask(cpu),
+ &cpu_mask))
cpumask_set_cpu(cpu, &cpu_mask);
return 0;
@@ -454,7 +441,6 @@ static int __init amd_power_pmu_init(void)
{
int i, ret;
u64 tmp;
- cpumask_var_t tmp_mask, res_mask;
if (!x86_match_cpu(cpu_match))
return 0;
@@ -476,27 +462,16 @@ static int __init amd_power_pmu_init(void)
}
max_cu_acc_power = tmp;
- if (!zalloc_cpumask_var(&tmp_mask, GFP_KERNEL))
- return -ENOMEM;
-
- if (!zalloc_cpumask_var(&res_mask, GFP_KERNEL)) {
- ret = -ENOMEM;
- goto out;
- }
-
- for (i = 0; i < cores_per_cu; i++)
- cpumask_set_cpu(i, tmp_mask);
-
cpu_notifier_register_begin();
/*
* Choose the one online core of each compute unit
*/
- for (i = 0; i < cu_num; i++) {
+ for (i = 0; i < boot_cpu_data.x86_max_cores; i += cores_per_cu) {
/* WARN_ON for empty CU masks */
- WARN_ON(!cpumask_and(res_mask, tmp_mask, cpu_online_mask));
- cpumask_set_cpu(cpumask_any(res_mask), &cpu_mask);
- cpumask_shift_left(tmp_mask, tmp_mask, cores_per_cu);
+ WARN_ON(cpumask_empty(topology_sibling_cpumask(i)));
+ cpumask_set_cpu(cpumask_any(topology_sibling_cpumask(i)),
+ &cpu_mask);
}
for_each_present_cpu(i) {
@@ -505,14 +480,14 @@ static int __init amd_power_pmu_init(void)
/* unwind on [0 ... i-1] CPUs */
while (i--)
power_cpu_kfree(i);
- goto out1;
+ goto out;
}
ret = power_cpu_init(i);
if (ret) {
/* unwind on [0 ... i] CPUs */
while (i >= 0)
power_cpu_kfree(i--);
- goto out1;
+ goto out;
}
}
@@ -521,17 +496,13 @@ static int __init amd_power_pmu_init(void)
ret = perf_pmu_register(&pmu_class, "power", -1);
if (WARN_ON(ret)) {
pr_warn("AMD Power PMU registration failed\n");
- goto out1;
+ goto out;
}
pr_info("AMD Power PMU detected, %d compute units\n", cu_num);
-out1:
- cpu_notifier_register_done();
-
- free_cpumask_var(res_mask);
out:
- free_cpumask_var(tmp_mask);
+ cpu_notifier_register_done();
return ret;
}
8<--------------------------------------------------------------------------
BTW, "smp_num_siblings = ((ebx >> 8) & 3) + 1" should not put under
init_amd(), we would better move it to bsp_init_amd(). Because the AMD
"smp_num_siblings" number must be constant.
Thanks,
Rui
next prev parent reply other threads:[~2016-01-22 8:05 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-14 2:50 [PATCH v2 0/5] perf/x86/power: Introduce AMD accumlated power reporting mechanism Huang Rui
2016-01-14 2:50 ` [PATCH v2 1/5] x86/amd: move nodes_per_socket into bsp_init_amd Huang Rui
2016-03-21 9:54 ` [tip:perf/urgent] perf/x86/amd: Move nodes_per_socket into bsp_init_amd() tip-bot for Huang Rui
2016-01-14 2:50 ` [PATCH v2 2/5] x86/amd: add accessor for number of cores per compute unit Huang Rui
2016-01-14 2:50 ` [PATCH v2 3/5] x86/cpufeature: add AMD Accumulated Power Mechanism feature flag Huang Rui
2016-03-21 9:55 ` [tip:perf/urgent] x86/cpufeature, perf/x86: Add " tip-bot for Huang Rui
2016-01-14 2:50 ` [PATCH v2 4/5] perf/x86: Move events_sysfs_show outside CPU_SUP_INTEL Huang Rui
2016-01-14 2:50 ` [PATCH v2 5/5] perf/x86/amd/power: Add AMD accumulated power reporting mechanism Huang Rui
2016-01-19 12:12 ` Peter Zijlstra
2016-01-20 4:48 ` Huang Rui
2016-01-20 9:22 ` Peter Zijlstra
2016-01-21 7:04 ` Huang Rui
2016-01-21 9:02 ` Peter Zijlstra
2016-01-21 14:42 ` Huang Rui
2016-01-21 15:10 ` Peter Zijlstra
2016-01-21 15:24 ` Huang Rui
2016-01-21 15:51 ` Peter Zijlstra
2016-01-21 16:59 ` Borislav Petkov
2016-01-22 8:04 ` Huang Rui [this message]
2016-01-22 17:51 ` Borislav Petkov
2016-01-14 6:01 ` [PATCH v2 0/5] perf/x86/power: Introduce AMD accumlated " Borislav Petkov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160122080439.GB16975@hr-amur2 \
--to=ray.huang@amd.com \
--cc=Aravind.Gopalakrishnan@amd.com \
--cc=aaron.lu@intel.com \
--cc=bp@alien8.de \
--cc=fengguang.wu@intel.com \
--cc=fweisbec@gmail.com \
--cc=herrmann.der.user@googlemail.com \
--cc=jacob.w.shin@gmail.com \
--cc=john.stultz@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@roeck-us.net \
--cc=luto@amacapital.net \
--cc=mingo@kernel.org \
--cc=peterz@infradead.org \
--cc=rric@kernel.org \
--cc=spg_linux_kernel@amd.com \
--cc=suravee.suthikulpanit@amd.com \
--cc=tglx@linutronix.de \
--cc=x86@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox