mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
To: Prarit Bhargava <prarit@redhat.com>, platform-driver-x86@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 6/7] intel-speed-select: Implement 'perf-profile info' on CascadeLake-N
Date: Fri, 04 Oct 2019 10:32:11 -0700	[thread overview]
Message-ID: <089c42274da8990e0c1b021164fcd921700cba1d.camel@linux.intel.com> (raw)
In-Reply-To: <dbda91d07e656ada3a01e19bedef1a447a1a5470.camel@linux.intel.com>

On Fri, 2019-10-04 at 10:23 -0700, Srinivas Pandruvada wrote:
> On Thu, 2019-10-03 at 08:11 -0400, Prarit Bhargava wrote:
> > Add functionality for perf-profile info on CascadeLake-N.
> > 
> 
> This results in 
> #intel-speed-select perf-profile info
> Intel(R) Speed Select Technology
> Executing on CPU model:85[0x55]
> intel-speed-select:
> /sys/devices/system/cpu/cpu40/cpufreq/base_frequency: open failed: No
> such file or directory
> 
> Let me fix this.
> 
> Also the previous crash was also for this v2 series.
> 

After fix

intel-speed-select perf-profile info
Intel(R) Speed Select Technology
Executing on CPU model:85[0x55]
 package-0
  die-0
    cpu-0
      perf-profile-level-0
        cpu-count:20
        enable-cpu-mask:00000000,00000000
        enable-cpu-list:none
        thermal-design-power-ratio:23
        base-frequency(MHz):2300
        speed-select-turbo-freq:unsupported
        speed-select-base-freq:enabled
        speed-select-base-freq
          high-priority-base-frequency(MHz):2700000
          high-priority-cpu-mask:0000000e,8c00e8c0
          high-priority-cpu-list:6,7,11,13,14,15,26,27,31,33,34,35
          low-priority-base-frequency(MHz):2100000
 package-1
  die-0
    cpu-20
      perf-profile-level-0
        cpu-count:20
        enable-cpu-mask:00000000,00000000
        enable-cpu-list:none
        thermal-design-power-ratio:23
        base-frequency(MHz):2300
        speed-select-turbo-freq:unsupported
        speed-select-base-freq:enabled
        speed-select-base-freq
          high-priority-base-frequency(MHz):2700000
          high-priority-cpu-mask:0000000e,8c00e8c0
          high-priority-cpu-list:6,7,11,13,14,15,26,27,31,33,34,35
          low-priority-base-frequency(MHz):2100000

The display for enable-cpu-mask should be all 1 for all present CPUs.
I will address this.

Thanks,
Srinivas

> Thanks,
> Srinivas
> 
> > Signed-off-by: Prarit Bhargava <prarit@redhat.com>
> > ---
> >  .../x86/intel-speed-select/isst-config.c      | 20 +++++++++++++++
> > ----
> >  .../x86/intel-speed-select/isst-display.c     | 12 +++++++++++
> >  tools/power/x86/intel-speed-select/isst.h     |  1 +
> >  3 files changed, 29 insertions(+), 4 deletions(-)
> > 
> > diff --git a/tools/power/x86/intel-speed-select/isst-config.c
> > b/tools/power/x86/intel-speed-select/isst-config.c
> > index 3ab0edade5ec..d9b580139a07 100644
> > --- a/tools/power/x86/intel-speed-select/isst-config.c
> > +++ b/tools/power/x86/intel-speed-select/isst-config.c
> > @@ -836,6 +836,12 @@ static void clx_n_config(void)
> >  	ctdp_level->fact_enabled = 0;
> >  }
> >  
> > +static void dump_cn_config_for_cpu(int cpu, void *arg1, void
> > *arg2,
> > +				   void *arg3, void *arg4)
> > +{
> > +	isst_ctdp_display_information(cpu, outf, tdp_level,
> > &clx_n_pkg_dev);
> > +}
> > +
> >  static void dump_isst_config_for_cpu(int cpu, void *arg1, void
> > *arg2,
> >  				     void *arg3, void *arg4)
> >  {
> > @@ -854,6 +860,8 @@ static void dump_isst_config_for_cpu(int cpu,
> > void *arg1, void *arg2,
> >  
> >  static void dump_isst_config(int arg)
> >  {
> > +	void *fn;
> > +
> >  	if (cmd_help) {
> >  		fprintf(stderr,
> >  			"Print Intel(R) Speed Select Technology
> > Performance profile configuration\n");
> > @@ -865,14 +873,17 @@ static void dump_isst_config(int arg)
> >  		exit(0);
> >  	}
> >  
> > +	if (!is_clx_n_platform())
> > +		fn = dump_isst_config_for_cpu;
> > +	else
> > +		fn = dump_cn_config_for_cpu;
> > +
> >  	isst_ctdp_display_information_start(outf);
> >  
> >  	if (max_target_cpus)
> > -		for_each_online_target_cpu_in_set(dump_isst_config_for_
> > cpu,
> > -						  NULL, NULL, NULL,
> > NULL);
> > +		for_each_online_target_cpu_in_set(fn, NULL, NULL, NULL,
> > NULL);
> >  	else
> > -		for_each_online_package_in_set(dump_isst_config_for_cpu
> > , NULL,
> > -					       NULL, NULL, NULL);
> > +		for_each_online_package_in_set(fn, NULL, NULL, NULL,
> > NULL);
> >  
> >  	isst_ctdp_display_information_end(outf);
> >  }
> > @@ -1633,6 +1644,7 @@ static void get_clos_assoc(int arg)
> >  }
> >  
> >  static struct process_cmd_struct clx_n_cmds[] = {
> > +	{ "perf-profile", "info", dump_isst_config, 0 },
> >  	{ NULL, NULL, NULL, 0 }
> >  };
> >  
> > diff --git a/tools/power/x86/intel-speed-select/isst-display.c
> > b/tools/power/x86/intel-speed-select/isst-display.c
> > index 1caa7ae25245..8309810e7425 100644
> > --- a/tools/power/x86/intel-speed-select/isst-display.c
> > +++ b/tools/power/x86/intel-speed-select/isst-display.c
> > @@ -202,6 +202,9 @@ static void _isst_pbf_display_information(int
> > cpu, FILE *outf, int level,
> >  		 pbf_info->p1_low * DISP_FREQ_MULTIPLIER);
> >  	format_and_print(outf, disp_level + 1, header, value);
> >  
> > +	if (is_clx_n_platform())
> > +		return;
> > +
> >  	snprintf(header, sizeof(header), "tjunction-temperature(C)");
> >  	snprintf(value, sizeof(value), "%d", pbf_info->t_prochot);
> >  	format_and_print(outf, disp_level + 1, header, value);
> > @@ -375,6 +378,15 @@ void isst_ctdp_display_information(int cpu,
> > FILE
> > *outf, int tdp_level,
> >  			snprintf(value, sizeof(value), "unsupported");
> >  		format_and_print(outf, base_level + 4, header, value);
> >  
> > +		if (is_clx_n_platform()) {
> > +			if (ctdp_level->pbf_support)
> > +				_isst_pbf_display_information(cpu,
> > outf,
> > +							      tdp_level
> > ,
> > +							  &ctdp_level-
> > > pbf_info,
> > 
> > +							      base_leve
> > l + 4);
> > +			continue;
> > +		}
> > +
> >  		snprintf(header, sizeof(header), "thermal-design-
> > power(W)");
> >  		snprintf(value, sizeof(value), "%d", ctdp_level-
> > > pkg_tdp);
> > 
> >  		format_and_print(outf, base_level + 4, header, value);
> > diff --git a/tools/power/x86/intel-speed-select/isst.h
> > b/tools/power/x86/intel-speed-select/isst.h
> > index 0dcae17b3945..bef27bd6138e 100644
> > --- a/tools/power/x86/intel-speed-select/isst.h
> > +++ b/tools/power/x86/intel-speed-select/isst.h
> > @@ -239,4 +239,5 @@ extern void isst_display_result(int cpu, FILE
> > *outf, char *feature, char *cmd,
> >  extern int isst_clos_get_clos_information(int cpu, int *enable,
> > int
> > *type);
> >  extern void isst_clos_display_clos_information(int cpu, FILE
> > *outf,
> >  					       int clos_enable, int
> > type);
> > +extern int is_clx_n_platform(void);
> >  #endif


  reply	other threads:[~2019-10-04 17:32 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-03 12:11 [PATCH v2 0/7] Add CascadeLake-N Support Prarit Bhargava
2019-10-03 12:11 ` [PATCH v2 1/7] intel-speed-select: Add int argument to command functions Prarit Bhargava
2019-10-03 12:11 ` [PATCH v2 2/7] intel-speed-select: Make process_command generic Prarit Bhargava
2019-10-03 12:11 ` [PATCH v2 3/7] intel-speed-select: Add check for CascadeLake-N models Prarit Bhargava
2019-10-04 17:15   ` Srinivas Pandruvada
2019-10-04 17:18     ` Prarit Bhargava
2019-10-07 10:03     ` Andy Shevchenko
2019-10-07 19:18       ` Srinivas Pandruvada
2019-10-03 12:11 ` [PATCH v2 4/7] intel-speed-select: Add configuration for CascadeLake-N Prarit Bhargava
2019-10-03 12:11 ` [PATCH v2 5/7] intel-speed-select: Implement CascadeLake-N help and command functions structures Prarit Bhargava
2019-10-03 12:11 ` [PATCH v2 6/7] intel-speed-select: Implement 'perf-profile info' on CascadeLake-N Prarit Bhargava
2019-10-04 17:23   ` Srinivas Pandruvada
2019-10-04 17:32     ` Srinivas Pandruvada [this message]
2019-10-04 20:14   ` Srinivas Pandruvada
2019-10-03 12:11 ` [PATCH v2 7/7] intel-speed-select: Implement base-freq commands " Prarit Bhargava

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=089c42274da8990e0c1b021164fcd921700cba1d.camel@linux.intel.com \
    --to=srinivas.pandruvada@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=platform-driver-x86@vger.kernel.org \
    --cc=prarit@redhat.com \
    /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

Powered by JetHome