linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Thomas Gleixner <tglx@linutronix.de>
To: Kan Liang <kan.liang@linux.intel.com>
Cc: peterz@infradead.org, mingo@redhat.com, acme@kernel.org,
	linux-kernel@vger.kernel.org, eranian@google.com,
	ak@linux.intel.com, alexander.shishkin@linux.intel.com
Subject: Re: [PATCH] perf/x86/intel: Add counter freezing quirk for Goldmont
Date: Wed, 3 Oct 2018 08:10:31 +0200 (CEST)	[thread overview]
Message-ID: <alpine.DEB.2.21.1810030803260.1435@nanos.tec.linutronix.de> (raw)
In-Reply-To: <1538515812-8808-1-git-send-email-kan.liang@linux.intel.com>

On Tue, 2 Oct 2018, kan.liang@linux.intel.com wrote:
> +static bool intel_atom_v4_counter_freezing_broken(int cpu)
>  {
>  	u32 rev = UINT_MAX; /* default to broken for unknown stepping */
>  
> -	switch (cpu_data(cpu).x86_stepping) {
> -	case 1:
> -		rev = 0x28;
> +	switch (cpu_data(cpu).x86_model) {
> +	case INTEL_FAM6_ATOM_GOLDMONT:
> +		switch (cpu_data(cpu).x86_stepping) {
> +		case 2:
> +			rev = 0xe;
> +			break;
> +		case 9:
> +			rev = 0x2e;
> +			break;
> +		case 10:
> +			rev = 0x8;
> +			break;
> +		}
>  		break;
> -	case 8:
> -		rev = 0x6;
> +
> +	case INTEL_FAM6_ATOM_GOLDMONT_X:
> +		switch (cpu_data(cpu).x86_stepping) {
> +		case 1:
> +			rev = 0x1a;
> +			break;
> +		}
>  		break;
> +
> +	case INTEL_FAM6_ATOM_GOLDMONT_PLUS:
> +		switch (cpu_data(cpu).x86_stepping) {
> +		case 1:
> +			rev = 0x28;
> +			break;
> +		case 8:
> +			rev = 0x6;
> +			break;
> +		}
>  	}
>  
>  	return (cpu_data(cpu).microcode < rev);

There is another variant of model/stepping micro code verification code in
intel_snb_pebs_broken(). Can we please make this table based and use a
common function? That's certainly not the last quirk we're going to have.

We already have a table based variant of ucode checking in
bad_spectre_microcode(). It's trivial enough to generalize that.

Thanks,

	tglx







  reply	other threads:[~2018-10-03  6:10 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-02 21:30 [PATCH] perf/x86/intel: Add counter freezing quirk for Goldmont kan.liang
2018-10-03  6:10 ` Thomas Gleixner [this message]
2018-10-03 13:32   ` Liang, Kan
2018-10-03 13:55     ` Thomas Gleixner
2018-10-03 14:15       ` Liang, Kan
2018-10-03 14:24         ` Thomas Gleixner
2018-10-03 14:25         ` Liang, Kan
2018-10-03 14:27           ` Borislav Petkov
2018-10-03 14:33   ` Andi Kleen
2018-10-03 15:41   ` Peter Zijlstra
2018-10-03 15:49     ` 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=alpine.DEB.2.21.1810030803260.1435@nanos.tec.linutronix.de \
    --to=tglx@linutronix.de \
    --cc=acme@kernel.org \
    --cc=ak@linux.intel.com \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=eranian@google.com \
    --cc=kan.liang@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=peterz@infradead.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;
as well as URLs for NNTP newsgroup(s).