tools/power/x86/intel-speed-select: Fix missing base-freq core IDs
authorJonathan Doman <jonathan.doman@intel.com>
Wed, 30 Sep 2020 22:26:36 +0000 (15:26 -0700)
committerHans de Goede <hdegoede@redhat.com>
Wed, 7 Oct 2020 20:54:16 +0000 (22:54 +0200)
The reported base-freq high-priority-cpu-list was potentially omitting
some cpus, due to incorrectly using a logical core count to constrain
the size of a physical punit core ID mask. We may need to read both high
and low PBF CORE_MASK values regardless of the logical core count.

Signed-off-by: Jonathan Doman <jonathan.doman@intel.com>
Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
tools/power/x86/intel-speed-select/isst-config.c
tools/power/x86/intel-speed-select/isst-core.c
tools/power/x86/intel-speed-select/isst.h

index 9f4b190..0bba5be 100644 (file)
@@ -545,20 +545,23 @@ static void set_cpu_present_cpu_mask(void)
        }
 }
 
-int get_core_count(int pkg_id, int die_id)
+int get_max_punit_core_id(int pkg_id, int die_id)
 {
-       int cnt = 0;
+       int max_id = 0;
+       int i;
 
-       if (pkg_id < MAX_PACKAGE_COUNT && die_id < MAX_DIE_PER_PACKAGE) {
-               int i;
+       for (i = 0; i < topo_max_cpus; ++i)
+       {
+               if (!CPU_ISSET_S(i, present_cpumask_size, present_cpumask))
+                       continue;
 
-               for (i = 0; i < sizeof(long long) * 8; ++i) {
-                       if (core_mask[pkg_id][die_id] & (1ULL << i))
-                               cnt++;
-               }
+               if (cpu_map[i].pkg_id == pkg_id &&
+                       cpu_map[i].die_id == die_id &&
+                       cpu_map[i].punit_cpu_core > max_id)
+                       max_id = cpu_map[i].punit_cpu_core;
        }
 
-       return cnt;
+       return max_id;
 }
 
 int get_cpu_count(int pkg_id, int die_id)
index a7f4337..1d7ecb5 100644 (file)
@@ -396,7 +396,7 @@ int isst_get_pbf_info(int cpu, int level, struct isst_pbf_info *pbf_info)
 {
        struct isst_pkg_ctdp_level_info ctdp_level;
        struct isst_pkg_ctdp pkg_dev;
-       int i, ret, core_cnt, max;
+       int i, ret, max_punit_core, max_mask_index;
        unsigned int req, resp;
 
        ret = isst_get_ctdp_levels(cpu, &pkg_dev);
@@ -421,10 +421,10 @@ int isst_get_pbf_info(int cpu, int level, struct isst_pbf_info *pbf_info)
 
        pbf_info->core_cpumask_size = alloc_cpu_set(&pbf_info->core_cpumask);
 
-       core_cnt = get_core_count(get_physical_package_id(cpu), get_physical_die_id(cpu));
-       max = core_cnt > 32 ? 2 : 1;
+       max_punit_core = get_max_punit_core_id(get_physical_package_id(cpu), get_physical_die_id(cpu));
+       max_mask_index = max_punit_core > 32 ? 2 : 1;
 
-       for (i = 0; i < max; ++i) {
+       for (i = 0; i < max_mask_index; ++i) {
                unsigned long long mask;
                int count;
 
index 094ba45..29715e9 100644 (file)
@@ -170,7 +170,7 @@ struct isst_pkg_ctdp {
 
 extern int get_topo_max_cpus(void);
 extern int get_cpu_count(int pkg_id, int die_id);
-extern int get_core_count(int pkg_id, int die_id);
+extern int get_max_punit_core_id(int pkg_id, int die_id);
 
 /* Common interfaces */
 FILE *get_output_file(void);