From: Dave Hansen <dave.hansen@linux.intel.com>
To: Grzegorz Andrejczuk <grzegorz.andrejczuk@intel.com>,
tglx@linutronix.de, mingo@redhat.com, hpa@zytor.com,
x86@kernel.org
Cc: bp@suse.de, linux-kernel@vger.kernel.org,
lukasz.daniluk@intel.com, james.h.cownie@intel.com
Subject: Re: [PATCH v2 2/4] Add enabling of the R3 MWAIT during boot for KNL
Date: Wed, 12 Oct 2016 10:21:08 -0700 [thread overview]
Message-ID: <57FE7104.6070608@linux.intel.com> (raw)
In-Reply-To: <1476274585-21679-3-git-send-email-grzegorz.andrejczuk@intel.com>
On 10/12/2016 05:16 AM, Grzegorz Andrejczuk wrote:
> @@ -211,6 +219,25 @@ static void early_init_intel(struct cpuinfo_x86 *c)
> }
>
> check_mpx_erratum(c);
> +
> + /*
> + * Setting ring 3 MONITOR/MWAIT for all threads
> + * when CPU is Xeon Phi Family x200
> + * This can be disabled with phir3mwait=disable cmdline switch.
> + * We preserve the reserved values and set only 2nd bit.
> + * Ref:
> + * https://software.intel.com/en-us/blogs/2016/10/06/intel-xeon-phi-product-family-x200-knl-user-mode-ring-3-monitor-and-mwait
> + */
> + if (c->x86 == 6 &&
> + c->x86_model == INTEL_FAM6_XEON_PHI_KNL &&
> + phir3mwait) {
> + u64 prev;
> +
> + rdmsrl(MSR_PHI_MISC_THD_FEATURE, prev);
> + if ((prev & MSR_PHI_MISC_THD_FEATURE_R3MWAIT) == 0)
> + wrmsrl(MSR_PHI_MISC_THD_FEATURE,
> + prev | MSR_PHI_MISC_THD_FEATURE_R3MWAIT);
> + }
> }
I'd really prefer that we put hunks like this into helpers just like the
nice check_mpx_erratum(). I know early_init_intel() looks a lot like
what you have here, but I think a little:
probe_xeon_phi_mwait()
would be a lot nicer.
BTW, this hunk totally indicates how badly named 'phir3mwait' is. Could
you please give it a sane name like 'phi_r3_mwait_disabled'?
next prev parent reply other threads:[~2016-10-12 17:21 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-12 12:16 [PATCH v2 0/4] Enabling Ring 3 MONITOR/MWAIT feature for Knights Landing Grzegorz Andrejczuk
2016-10-12 12:16 ` [PATCH v2 1/4] Add R3MWAIT register and bit to msr-info.h Grzegorz Andrejczuk
2016-10-12 12:16 ` [PATCH v2 2/4] Add enabling of the R3 MWAIT during boot for KNL Grzegorz Andrejczuk
2016-10-12 13:34 ` Thomas Gleixner
2016-10-12 16:28 ` Dave Hansen
2016-10-13 15:18 ` Thomas Gleixner
2016-10-12 13:35 ` Thomas Gleixner
2016-10-12 14:32 ` Dave Hansen
2016-10-12 17:21 ` Dave Hansen [this message]
2016-10-12 12:16 ` [PATCH v2 3/4] Add hwcap2 for x86 Grzegorz Andrejczuk
2016-10-12 13:38 ` Thomas Gleixner
2016-10-12 13:48 ` Thomas Gleixner
2016-10-12 12:16 ` [PATCH v2 4/4] Add R3MWAIT to CPU features Grzegorz Andrejczuk
2016-10-12 12:51 ` Borislav Petkov
2016-10-12 13:22 ` Thomas Gleixner
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=57FE7104.6070608@linux.intel.com \
--to=dave.hansen@linux.intel.com \
--cc=bp@suse.de \
--cc=grzegorz.andrejczuk@intel.com \
--cc=hpa@zytor.com \
--cc=james.h.cownie@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=lukasz.daniluk@intel.com \
--cc=mingo@redhat.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.