linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] x86/smpboot: Don't do mwait_play_dead() on AMD systems
@ 2018-04-02 18:34 Yazen Ghannam
  2018-04-03 11:03 ` Ingo Molnar
  0 siblings, 1 reply; 5+ messages in thread
From: Yazen Ghannam @ 2018-04-02 18:34 UTC (permalink / raw)
  To: x86; +Cc: Yazen Ghannam, linux-kernel, bp

From: Yazen Ghannam <yazen.ghannam@amd.com>

Recent AMD systems support using MWAIT for C1 state. However, MWAIT will
not allow deeper cstates than C1 on current systems.

With play_dead() we expect the OS to use the deepest state available.
The deepest state available on AMD systems is reached through SystemIO
or HALT. If MWAIT is available, we use it instead of the other methods,
so we never reach the deepest state.

Don't try to use MWAIT to play_dead() on AMD systems. Instead, we'll use
CPUIDLE to enter the deepest state advertised by firmware. If CPUIDLE is
not available then we fallback to HALT.

Signed-off-by: Yazen Ghannam <yazen.ghannam@amd.com>
---
 arch/x86/kernel/smpboot.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
index ff99e2b6fc54..67cf00b25f83 100644
--- a/arch/x86/kernel/smpboot.c
+++ b/arch/x86/kernel/smpboot.c
@@ -1536,6 +1536,9 @@ static inline void mwait_play_dead(void)
 	void *mwait_ptr;
 	int i;
 
+	/* Don't try native MWAIT on AMD. Stick to CPUIDLE and HALT. */
+	if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
+		return;
 	if (!this_cpu_has(X86_FEATURE_MWAIT))
 		return;
 	if (!this_cpu_has(X86_FEATURE_CLFLUSH))
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] x86/smpboot: Don't do mwait_play_dead() on AMD systems
  2018-04-02 18:34 [PATCH] x86/smpboot: Don't do mwait_play_dead() on AMD systems Yazen Ghannam
@ 2018-04-03 11:03 ` Ingo Molnar
  2018-04-03 13:55   ` Ghannam, Yazen
  0 siblings, 1 reply; 5+ messages in thread
From: Ingo Molnar @ 2018-04-03 11:03 UTC (permalink / raw)
  To: Yazen Ghannam; +Cc: x86, linux-kernel, bp


* Yazen Ghannam <Yazen.Ghannam@amd.com> wrote:

> From: Yazen Ghannam <yazen.ghannam@amd.com>
> 
> Recent AMD systems support using MWAIT for C1 state. However, MWAIT will
> not allow deeper cstates than C1 on current systems.
> 
> With play_dead() we expect the OS to use the deepest state available.
> The deepest state available on AMD systems is reached through SystemIO
> or HALT. If MWAIT is available, we use it instead of the other methods,
> so we never reach the deepest state.
> 
> Don't try to use MWAIT to play_dead() on AMD systems. Instead, we'll use
> CPUIDLE to enter the deepest state advertised by firmware. If CPUIDLE is
> not available then we fallback to HALT.
> 
> Signed-off-by: Yazen Ghannam <yazen.ghannam@amd.com>
> ---
>  arch/x86/kernel/smpboot.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
> index ff99e2b6fc54..67cf00b25f83 100644
> --- a/arch/x86/kernel/smpboot.c
> +++ b/arch/x86/kernel/smpboot.c
> @@ -1536,6 +1536,9 @@ static inline void mwait_play_dead(void)
>  	void *mwait_ptr;
>  	int i;
>  
> +	/* Don't try native MWAIT on AMD. Stick to CPUIDLE and HALT. */
> +	if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
> +		return;

The comment should mainly explain the 'why is this done', not the 'what is done' 
which is pretty obvious from the code ...

Thanks,

	Ingo

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH] x86/smpboot: Don't do mwait_play_dead() on AMD systems
  2018-04-03 11:03 ` Ingo Molnar
@ 2018-04-03 13:55   ` Ghannam, Yazen
  2018-04-03 14:40     ` Ingo Molnar
  0 siblings, 1 reply; 5+ messages in thread
From: Ghannam, Yazen @ 2018-04-03 13:55 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: x86, linux-kernel, bp

> -----Original Message-----
> From: Ingo Molnar <mingo.kernel.org@gmail.com> On Behalf Of Ingo Molnar
> Sent: Tuesday, April 3, 2018 7:04 AM
> To: Ghannam, Yazen <Yazen.Ghannam@amd.com>
> Cc: x86@kernel.org; linux-kernel@vger.kernel.org; bp@suse.de
> Subject: Re: [PATCH] x86/smpboot: Don't do mwait_play_dead() on AMD
> systems
> 
> 
> * Yazen Ghannam <Yazen.Ghannam@amd.com> wrote:
> 
> > From: Yazen Ghannam <yazen.ghannam@amd.com>
> >
> > Recent AMD systems support using MWAIT for C1 state. However, MWAIT will
> > not allow deeper cstates than C1 on current systems.
> >
> > With play_dead() we expect the OS to use the deepest state available.
> > The deepest state available on AMD systems is reached through SystemIO
> > or HALT. If MWAIT is available, we use it instead of the other methods,
> > so we never reach the deepest state.
> >
> > Don't try to use MWAIT to play_dead() on AMD systems. Instead, we'll use
> > CPUIDLE to enter the deepest state advertised by firmware. If CPUIDLE is
> > not available then we fallback to HALT.
> >
> > Signed-off-by: Yazen Ghannam <yazen.ghannam@amd.com>
> > ---
> >  arch/x86/kernel/smpboot.c | 3 +++
> >  1 file changed, 3 insertions(+)
> >
> > diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
> > index ff99e2b6fc54..67cf00b25f83 100644
> > --- a/arch/x86/kernel/smpboot.c
> > +++ b/arch/x86/kernel/smpboot.c
> > @@ -1536,6 +1536,9 @@ static inline void mwait_play_dead(void)
> >  	void *mwait_ptr;
> >  	int i;
> >
> > +	/* Don't try native MWAIT on AMD. Stick to CPUIDLE and HALT. */
> > +	if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
> > +		return;
> 
> The comment should mainly explain the 'why is this done', not the 'what is done'
> which is pretty obvious from the code ...
> 

Yes, I'll drop that comment since the commit message has the explanation.

Thanks,
Yazen

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] x86/smpboot: Don't do mwait_play_dead() on AMD systems
  2018-04-03 13:55   ` Ghannam, Yazen
@ 2018-04-03 14:40     ` Ingo Molnar
  2018-04-03 14:47       ` Ghannam, Yazen
  0 siblings, 1 reply; 5+ messages in thread
From: Ingo Molnar @ 2018-04-03 14:40 UTC (permalink / raw)
  To: Ghannam, Yazen; +Cc: x86, linux-kernel, bp


* Ghannam, Yazen <Yazen.Ghannam@amd.com> wrote:

> > -----Original Message-----
> > From: Ingo Molnar <mingo.kernel.org@gmail.com> On Behalf Of Ingo Molnar
> > Sent: Tuesday, April 3, 2018 7:04 AM
> > To: Ghannam, Yazen <Yazen.Ghannam@amd.com>
> > Cc: x86@kernel.org; linux-kernel@vger.kernel.org; bp@suse.de
> > Subject: Re: [PATCH] x86/smpboot: Don't do mwait_play_dead() on AMD
> > systems
> > 
> > 
> > * Yazen Ghannam <Yazen.Ghannam@amd.com> wrote:
> > 
> > > From: Yazen Ghannam <yazen.ghannam@amd.com>
> > >
> > > Recent AMD systems support using MWAIT for C1 state. However, MWAIT will
> > > not allow deeper cstates than C1 on current systems.
> > >
> > > With play_dead() we expect the OS to use the deepest state available.
> > > The deepest state available on AMD systems is reached through SystemIO
> > > or HALT. If MWAIT is available, we use it instead of the other methods,
> > > so we never reach the deepest state.
> > >
> > > Don't try to use MWAIT to play_dead() on AMD systems. Instead, we'll use
> > > CPUIDLE to enter the deepest state advertised by firmware. If CPUIDLE is
> > > not available then we fallback to HALT.
> > >
> > > Signed-off-by: Yazen Ghannam <yazen.ghannam@amd.com>
> > > ---
> > >  arch/x86/kernel/smpboot.c | 3 +++
> > >  1 file changed, 3 insertions(+)
> > >
> > > diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
> > > index ff99e2b6fc54..67cf00b25f83 100644
> > > --- a/arch/x86/kernel/smpboot.c
> > > +++ b/arch/x86/kernel/smpboot.c
> > > @@ -1536,6 +1536,9 @@ static inline void mwait_play_dead(void)
> > >  	void *mwait_ptr;
> > >  	int i;
> > >
> > > +	/* Don't try native MWAIT on AMD. Stick to CPUIDLE and HALT. */
> > > +	if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
> > > +		return;
> > 
> > The comment should mainly explain the 'why is this done', not the 'what is done'
> > which is pretty obvious from the code ...
> > 
> 
> Yes, I'll drop that comment since the commit message has the explanation.

Or rather, explain the 'why' in the comment, because otherwise this is a pretty 
obscure condition that is not self-documenting?

Thanks,

	Ingo

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH] x86/smpboot: Don't do mwait_play_dead() on AMD systems
  2018-04-03 14:40     ` Ingo Molnar
@ 2018-04-03 14:47       ` Ghannam, Yazen
  0 siblings, 0 replies; 5+ messages in thread
From: Ghannam, Yazen @ 2018-04-03 14:47 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: x86, linux-kernel, bp

> -----Original Message-----
> From: Ingo Molnar <mingo.kernel.org@gmail.com> On Behalf Of Ingo Molnar
> Sent: Tuesday, April 3, 2018 10:41 AM
> To: Ghannam, Yazen <Yazen.Ghannam@amd.com>
> Cc: x86@kernel.org; linux-kernel@vger.kernel.org; bp@suse.de
> Subject: Re: [PATCH] x86/smpboot: Don't do mwait_play_dead() on AMD
> systems
> 
> 
> * Ghannam, Yazen <Yazen.Ghannam@amd.com> wrote:
> 
> > > -----Original Message-----
> > > From: Ingo Molnar <mingo.kernel.org@gmail.com> On Behalf Of Ingo
> Molnar
> > > Sent: Tuesday, April 3, 2018 7:04 AM
> > > To: Ghannam, Yazen <Yazen.Ghannam@amd.com>
> > > Cc: x86@kernel.org; linux-kernel@vger.kernel.org; bp@suse.de
> > > Subject: Re: [PATCH] x86/smpboot: Don't do mwait_play_dead() on AMD
> > > systems
> > >
> > >
> > > * Yazen Ghannam <Yazen.Ghannam@amd.com> wrote:
> > >
> > > > From: Yazen Ghannam <yazen.ghannam@amd.com>
> > > >
> > > > Recent AMD systems support using MWAIT for C1 state. However, MWAIT
> will
> > > > not allow deeper cstates than C1 on current systems.
> > > >
> > > > With play_dead() we expect the OS to use the deepest state available.
> > > > The deepest state available on AMD systems is reached through SystemIO
> > > > or HALT. If MWAIT is available, we use it instead of the other methods,
> > > > so we never reach the deepest state.
> > > >
> > > > Don't try to use MWAIT to play_dead() on AMD systems. Instead, we'll use
> > > > CPUIDLE to enter the deepest state advertised by firmware. If CPUIDLE is
> > > > not available then we fallback to HALT.
> > > >
> > > > Signed-off-by: Yazen Ghannam <yazen.ghannam@amd.com>
> > > > ---
> > > >  arch/x86/kernel/smpboot.c | 3 +++
> > > >  1 file changed, 3 insertions(+)
> > > >
> > > > diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
> > > > index ff99e2b6fc54..67cf00b25f83 100644
> > > > --- a/arch/x86/kernel/smpboot.c
> > > > +++ b/arch/x86/kernel/smpboot.c
> > > > @@ -1536,6 +1536,9 @@ static inline void mwait_play_dead(void)
> > > >  	void *mwait_ptr;
> > > >  	int i;
> > > >
> > > > +	/* Don't try native MWAIT on AMD. Stick to CPUIDLE and HALT. */
> > > > +	if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
> > > > +		return;
> > >
> > > The comment should mainly explain the 'why is this done', not the 'what is
> done'
> > > which is pretty obvious from the code ...
> > >
> >
> > Yes, I'll drop that comment since the commit message has the explanation.
> 
> Or rather, explain the 'why' in the comment, because otherwise this is a pretty
> obscure condition that is not self-documenting?
> 

Okay, how about this?

"MWAIT only provides shallow Cstates on AMD systems. Fallback to CPUIDLE and
HALT to have access to deeper Cstates."

Thanks,
Yazen

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-04-03 14:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-02 18:34 [PATCH] x86/smpboot: Don't do mwait_play_dead() on AMD systems Yazen Ghannam
2018-04-03 11:03 ` Ingo Molnar
2018-04-03 13:55   ` Ghannam, Yazen
2018-04-03 14:40     ` Ingo Molnar
2018-04-03 14:47       ` Ghannam, Yazen

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).