tools/power/x86/intel-speed-select: Improve core-power result and error display
authorSrinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Thu, 5 Mar 2020 22:45:31 +0000 (14:45 -0800)
committerAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Fri, 20 Mar 2020 12:46:22 +0000 (14:46 +0200)
This change adds improved error display and handling for commands related
to core-power feature. The changes include:
- Replace perror with helpful error message
- Use ordered priority for SKX based platform by default as the
proportional priority is not supported
- Don't show weight and epp in help and also give error when user
tries to set them in SKX based platforms
- Range check for epp and weights and display error

Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.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-display.c

index 2ab902c18bcc71dca4e74260462d8e32f1572315..7a8a315ac8d1c35676fa2e3bf7245f2dd76a2680 100644 (file)
@@ -1361,7 +1361,7 @@ static int set_clos_param(int cpu, int clos, int epp, int wt, int min, int max)
 
        ret = isst_pm_get_clos(cpu, clos, &clos_config);
        if (ret) {
-               perror("isst_pm_get_clos");
+               isst_display_error_info_message(1, "isst_pm_get_clos failed", 0, 0);
                return ret;
        }
        clos_config.clos_min = min;
@@ -1370,7 +1370,7 @@ static int set_clos_param(int cpu, int clos, int epp, int wt, int min, int max)
        clos_config.clos_prop_prio = wt;
        ret = isst_set_clos(cpu, clos, &clos_config);
        if (ret) {
-               perror("isst_pm_set_clos");
+               isst_display_error_info_message(1, "isst_set_clos failed", 0, 0);
                return ret;
        }
 
@@ -1577,7 +1577,7 @@ static int set_core_priority_and_min(int cpu, int mask_size,
                debug_printf("Associate cpu: %d clos: %d\n", i, clos);
                ret = isst_clos_associate(i, clos);
                if (ret) {
-                       perror("isst_clos_associate");
+                       isst_display_error_info_message(1, "isst_clos_associate failed", 0, 0);
                        return ret;
                }
        }
@@ -1593,14 +1593,14 @@ static int set_pbf_core_power(int cpu)
 
        ret = isst_get_ctdp_levels(cpu, &pkg_dev);
        if (ret) {
-               perror("isst_get_ctdp_levels");
+               debug_printf("isst_get_ctdp_levels failed");
                return ret;
        }
        debug_printf("Current_level: %d\n", pkg_dev.current_level);
 
        ret = isst_get_pbf_info(cpu, pkg_dev.current_level, &pbf_info);
        if (ret) {
-               perror("isst_get_pbf_info");
+               debug_printf("isst_get_pbf_info failed");
                return ret;
        }
        debug_printf("p1_high: %d p1_low: %d\n", pbf_info.p1_high,
@@ -1610,13 +1610,13 @@ static int set_pbf_core_power(int cpu)
                                        pbf_info.core_cpumask,
                                        pbf_info.p1_high, pbf_info.p1_low);
        if (ret) {
-               perror("set_core_priority_and_min");
+               debug_printf("set_core_priority_and_min failed");
                return ret;
        }
 
        ret = isst_pm_qos_config(cpu, 1, 1);
        if (ret) {
-               perror("isst_pm_qos_config");
+               debug_printf("isst_pm_qos_config failed");
                return ret;
        }
 
@@ -1666,7 +1666,7 @@ static void set_pbf_for_cpu(int cpu, void *arg1, void *arg2, void *arg3,
        }
 
        if (auto_mode && !status)
-               isst_pm_qos_config(cpu, 0, 0);
+               isst_pm_qos_config(cpu, 0, 1);
 
 disp_result:
        if (status)
@@ -1933,9 +1933,12 @@ static void enable_clos_qos_config(int cpu, void *arg1, void *arg2, void *arg3,
        int ret;
        int status = *(int *)arg4;
 
+       if (is_skx_based_platform())
+               clos_priority_type = 1;
+
        ret = isst_pm_qos_config(cpu, status, clos_priority_type);
        if (ret)
-               perror("isst_pm_qos_config");
+               isst_display_error_info_message(1, "isst_pm_qos_config failed", 0, 0);
 
        if (status)
                isst_display_result(cpu, outf, "core-power", "enable",
@@ -1953,9 +1956,11 @@ static void set_clos_enable(int arg)
                if (enable) {
                        fprintf(stderr,
                                "Enable core-power for a package/die\n");
-                       fprintf(stderr,
-                               "\tClos Enable: Specify priority type with [--priority|-p]\n");
-                       fprintf(stderr, "\t\t 0: Proportional, 1: Ordered\n");
+                       if (!is_skx_based_platform()) {
+                               fprintf(stderr,
+                                       "\tClos Enable: Specify priority type with [--priority|-p]\n");
+                               fprintf(stderr, "\t\t 0: Proportional, 1: Ordered\n");
+                       }
                } else {
                        fprintf(stderr,
                                "Disable core-power: [No command arguments are required]\n");
@@ -1986,7 +1991,7 @@ static void dump_clos_config_for_cpu(int cpu, void *arg1, void *arg2,
 
        ret = isst_pm_get_clos(cpu, current_clos, &clos_config);
        if (ret)
-               perror("isst_pm_get_clos");
+               isst_display_error_info_message(1, "isst_pm_get_clos failed", 0, 0);
        else
                isst_clos_display_information(cpu, outf, current_clos,
                                              &clos_config);
@@ -2002,7 +2007,8 @@ static void dump_clos_config(int arg)
                exit(0);
        }
        if (current_clos < 0 || current_clos > 3) {
-               fprintf(stderr, "Invalid clos id\n");
+               isst_display_error_info_message(1, "Invalid clos id\n", 0, 0);
+               isst_ctdp_display_information_end(outf);
                exit(0);
        }
 
@@ -2023,7 +2029,7 @@ static void get_clos_info_for_cpu(int cpu, void *arg1, void *arg2, void *arg3,
 
        ret = isst_clos_get_clos_information(cpu, &enable, &prio_type);
        if (ret)
-               perror("isst_clos_get_info");
+               isst_display_error_info_message(1, "isst_clos_get_info failed", 0, 0);
        else {
                int cp_state, cp_cap;
 
@@ -2069,7 +2075,7 @@ static void set_clos_config_for_cpu(int cpu, void *arg1, void *arg2, void *arg3,
        clos_config.clos_desired = clos_desired;
        ret = isst_set_clos(cpu, current_clos, &clos_config);
        if (ret)
-               perror("isst_set_clos");
+               isst_display_error_info_message(1, "isst_set_clos failed", 0, 0);
        else
                isst_display_result(cpu, outf, "core-power", "config", ret);
 }
@@ -2081,26 +2087,27 @@ static void set_clos_config(int arg)
                        "Set core-power configuration for one of the four clos ids\n");
                fprintf(stderr,
                        "\tSpecify targeted clos id with [--clos|-c]\n");
-               fprintf(stderr, "\tSpecify clos EPP with [--epp|-e]\n");
-               fprintf(stderr,
-                       "\tSpecify clos Proportional Priority [--weight|-w]\n");
+               if (!is_skx_based_platform()) {
+                       fprintf(stderr, "\tSpecify clos EPP with [--epp|-e]\n");
+                       fprintf(stderr,
+                               "\tSpecify clos Proportional Priority [--weight|-w]\n");
+               }
                fprintf(stderr, "\tSpecify clos min in MHz with [--min|-n]\n");
                fprintf(stderr, "\tSpecify clos max in MHz with [--max|-m]\n");
-               fprintf(stderr, "\tSpecify clos desired in MHz with [--desired|-d]\n");
                exit(0);
        }
 
        if (current_clos < 0 || current_clos > 3) {
-               fprintf(stderr, "Invalid clos id\n");
+               isst_display_error_info_message(1, "Invalid clos id\n", 0, 0);
                exit(0);
        }
-       if (clos_epp < 0 || clos_epp > 0x0F) {
-               fprintf(stderr, "clos epp is not specified, default: 0\n");
+       if (!is_skx_based_platform() && (clos_epp < 0 || clos_epp > 0x0F)) {
+               fprintf(stderr, "clos epp is not specified or invalid, default: 0\n");
                clos_epp = 0;
        }
-       if (clos_prop_prio < 0 || clos_prop_prio > 0x0F) {
+       if (!is_skx_based_platform() && (clos_prop_prio < 0 || clos_prop_prio > 0x0F)) {
                fprintf(stderr,
-                       "clos frequency weight is not specified, default: 0\n");
+                       "clos frequency weight is not specified or invalid, default: 0\n");
                clos_prop_prio = 0;
        }
        if (clos_min < 0) {
@@ -2108,11 +2115,11 @@ static void set_clos_config(int arg)
                clos_min = 0;
        }
        if (clos_max < 0) {
-               fprintf(stderr, "clos max is not specified, default: 25500 MHz\n");
+               fprintf(stderr, "clos max is not specified, default: Max frequency (ratio 0xff)\n");
                clos_max = 0xff;
        }
-       if (clos_desired < 0) {
-               fprintf(stderr, "clos desired is not specified, default: 0\n");
+       if (clos_desired) {
+               fprintf(stderr, "clos desired is not supported on this platform\n");
                clos_desired = 0x00;
        }
 
@@ -2133,7 +2140,7 @@ static void set_clos_assoc_for_cpu(int cpu, void *arg1, void *arg2, void *arg3,
 
        ret = isst_clos_associate(cpu, current_clos);
        if (ret)
-               perror("isst_clos_associate");
+               debug_printf("isst_clos_associate failed");
        else
                isst_display_result(cpu, outf, "core-power", "assoc", ret);
 }
@@ -2152,15 +2159,14 @@ static void set_clos_assoc(int arg)
        }
 
        if (current_clos < 0 || current_clos > 3) {
-               fprintf(stderr, "Invalid clos id\n");
+               isst_display_error_info_message(1, "Invalid clos id\n", 0, 0);
                exit(0);
        }
        if (max_target_cpus)
                for_each_online_target_cpu_in_set(set_clos_assoc_for_cpu, NULL,
                                                  NULL, NULL, NULL);
        else {
-               fprintf(stderr,
-                       "Invalid target cpu. Specify with [-c|--cpu]\n");
+               isst_display_error_info_message(1, "Invalid target cpu. Specify with [-c|--cpu]", 0, 0);
        }
 }
 
@@ -2171,7 +2177,7 @@ static void get_clos_assoc_for_cpu(int cpu, void *arg1, void *arg2, void *arg3,
 
        ret = isst_clos_get_assoc_status(cpu, &clos);
        if (ret)
-               perror("isst_clos_get_assoc_status");
+               isst_display_error_info_message(1, "isst_clos_get_assoc_status failed", 0, 0);
        else
                isst_clos_display_assoc_information(cpu, outf, clos);
 }
@@ -2185,8 +2191,7 @@ static void get_clos_assoc(int arg)
        }
 
        if (!max_target_cpus) {
-               fprintf(stderr,
-                       "Invalid target cpu. Specify with [-c|--cpu]\n");
+               isst_display_error_info_message(1, "Invalid target cpu. Specify with [-c|--cpu]", 0, 0);
                exit(0);
        }
 
@@ -2366,6 +2371,10 @@ static void parse_cmd_args(int argc, int start, char **argv)
                        break;
                case 'e':
                        clos_epp = atoi(optarg);
+                       if (is_skx_based_platform()) {
+                               isst_display_error_info_message(1, "epp can't be specified on this platform", 0, 0);
+                               exit(0);
+                       }
                        break;
                case 'n':
                        clos_min = atoi(optarg);
@@ -2377,9 +2386,17 @@ static void parse_cmd_args(int argc, int start, char **argv)
                        break;
                case 'p':
                        clos_priority_type = atoi(optarg);
+                       if (is_skx_based_platform() && !clos_priority_type) {
+                               isst_display_error_info_message(1, "Invalid clos priority type: proportional for this platform", 0, 0);
+                               exit(0);
+                       }
                        break;
                case 'w':
                        clos_prop_prio = atoi(optarg);
+                       if (is_skx_based_platform()) {
+                               isst_display_error_info_message(1, "weight can't be specified on this platform", 0, 0);
+                               exit(0);
+                       }
                        break;
                default:
                        printf("no match\n");
index 89b3068a26855fd58bb98c82395b30a1c10f67c1..67c9b113963177c06d2cb6f7a6a25c9817e45da3 100644 (file)
@@ -917,17 +917,19 @@ int isst_pm_qos_config(int cpu, int enable_clos, int priority_type)
                }
                ret = isst_write_pm_config(cpu, 0);
                if (ret)
-                       perror("isst_write_pm_config\n");
+                       isst_display_error_info_message(0, "WRITE_PM_CONFIG command failed, ignoring error\n", 0, 0);
        } else {
                ret = isst_write_pm_config(cpu, 1);
                if (ret)
-                       perror("isst_write_pm_config\n");
+                       isst_display_error_info_message(0, "WRITE_PM_CONFIG command failed, ignoring error\n", 0, 0);
        }
 
        ret = isst_send_mbox_command(cpu, CONFIG_CLOS, CLOS_PM_QOS_CONFIG, 0, 0,
                                     &resp);
-       if (ret)
+       if (ret) {
+               isst_display_error_info_message(1, "CLOS_PM_QOS_CONFIG command failed", 0, 0);
                return ret;
+       }
 
        debug_printf("cpu:%d CLOS_PM_QOS_CONFIG resp:%x\n", cpu, resp);
 
@@ -939,7 +941,7 @@ int isst_pm_qos_config(int cpu, int enable_clos, int priority_type)
                req = req & ~BIT(1);
 
        if (priority_type > 1)
-               fprintf(stderr, "Invalid priority type: Changing type to ordered\n");
+               isst_display_error_info_message(1, "Invalid priority type: Changing type to ordered", 0, 0);
 
        if (priority_type)
                req = req | BIT(2);
index bf9422336fabfdabd431cb2e29e20f3a1ae1f479..ed51d8b79c41c1bd90697816534d966cd0c231a1 100644 (file)
@@ -599,7 +599,10 @@ void isst_clos_display_information(int cpu, FILE *outf, int clos,
        format_and_print(outf, 5, header, value);
 
        snprintf(header, sizeof(header), "clos-max");
-       snprintf(value, sizeof(value), "%d MHz", clos_config->clos_max * DISP_FREQ_MULTIPLIER);
+       if (clos_config->clos_max == 0xff)
+               snprintf(value, sizeof(value), "Max Turbo frequency");
+       else
+               snprintf(value, sizeof(value), "%d MHz", clos_config->clos_max * DISP_FREQ_MULTIPLIER);
        format_and_print(outf, 5, header, value);
 
        snprintf(header, sizeof(header), "clos-desired");