X86 platform drivers
 help / color / mirror / Atom feed
* [PATCH] platform/x86: ISST: Check HWP support before MSR access
@ 2026-02-28 12:24 lirongqing
  2026-02-28 23:01 ` srinivas pandruvada
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: lirongqing @ 2026-02-28 12:24 UTC (permalink / raw)
  To: Srinivas Pandruvada, Hans de Goede, Ilpo Järvinen,
	platform-driver-x86
  Cc: Li RongQing

From: Li RongQing <lirongqing@baidu.com>

On some systems, HWP can be explicitly disabled in the BIOS settings
When HWP is disabled by firmware, the HWP CPUID bit is not set, and
attempting to read MSR_PM_ENABLE will result in a General Protection
(GP) fault.

[  426.715441] unchecked MSR access error: RDMSR from 0x770 at rIP: 0xffffffffc33db92e (disable_dynamic_sst_features+0xe/0x50 [isst_tpmi_core])
[  426.715450] Call Trace:
[  426.715453]  <TASK>
[  426.715454]  ? ex_handler_msr+0xf6/0x150
[  426.715461]  ? fixup_exception+0x1ad/0x340
[  426.715462]  ? gp_try_fixup_and_notify+0x1e/0xb0
[  426.715466]  ? exc_general_protection+0xc9/0x390
[  426.715470]  ? terminate_walk+0x64/0x100
[  426.715474]  ? asm_exc_general_protection+0x22/0x30
[  426.715477]  ? disable_dynamic_sst_features+0xe/0x50 [isst_tpmi_core]
[  426.715480]  isst_if_def_ioctl+0xece/0x1050 [isst_tpmi_core]
[  426.715484]  ? ioctl_has_perm.constprop.42+0xe0/0x130
[  426.715489]  isst_if_def_ioctl+0x10d/0x1a0 [isst_if_common]
[  426.715495]  __se_sys_ioctl+0x86/0xc0
[  426.715498]  do_syscall_64+0x8a/0x100
[  426.715500]  entry_SYSCALL_64_after_hwframe+0x78/0xe2
[  426.715503] RIP: 0033:0x7f36eaef54a7

Add a check for X86_FEATURE_HWP before accessing the MSR. If HWP is
not available, return false safely.

Fixes: 12a7d2cb811dd8a ("platform/x86: ISST: Add SST-CP support via TPMI")
Signed-off-by: Li RongQing <lirongqing@baidu.com>
---
 drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c b/drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c
index b8cdaa2..6f46cbb 100644
--- a/drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c
+++ b/drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c
@@ -558,6 +558,9 @@ static bool disable_dynamic_sst_features(void)
 {
 	u64 value;
 
+	if (!static_cpu_has(X86_FEATURE_HWP))
+		return true;
+
 	rdmsrq(MSR_PM_ENABLE, value);
 	return !(value & 0x1);
 }
-- 
2.9.4


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

* Re: [PATCH] platform/x86: ISST: Check HWP support before MSR access
  2026-02-28 12:24 [PATCH] platform/x86: ISST: Check HWP support before MSR access lirongqing
@ 2026-02-28 23:01 ` srinivas pandruvada
  2026-02-28 23:03 ` srinivas pandruvada
  2026-03-02  2:20 ` 答复: " Li,Rongqing(ACG CCN)
  2 siblings, 0 replies; 5+ messages in thread
From: srinivas pandruvada @ 2026-02-28 23:01 UTC (permalink / raw)
  To: lirongqing, Hans de Goede, Ilpo Järvinen,
	platform-driver-x86

On Sat, 2026-02-28 at 07:24 -0500, lirongqing wrote:
> From: Li RongQing <lirongqing@baidu.com>
> 
> On some systems, HWP can be explicitly disabled in the BIOS settings
> When HWP is disabled by firmware, the HWP CPUID bit is not set, and
> attempting to read MSR_PM_ENABLE will result in a General Protection
> (GP) fault.
> 
> [  426.715441] unchecked MSR access error: RDMSR from 0x770 at rIP:
> 0xffffffffc33db92e (disable_dynamic_sst_features+0xe/0x50
> [isst_tpmi_core])
> [  426.715450] Call Trace:
> [  426.715453]  <TASK>
> [  426.715454]  ? ex_handler_msr+0xf6/0x150
> [  426.715461]  ? fixup_exception+0x1ad/0x340
> [  426.715462]  ? gp_try_fixup_and_notify+0x1e/0xb0
> [  426.715466]  ? exc_general_protection+0xc9/0x390
> [  426.715470]  ? terminate_walk+0x64/0x100
> [  426.715474]  ? asm_exc_general_protection+0x22/0x30
> [  426.715477]  ? disable_dynamic_sst_features+0xe/0x50
> [isst_tpmi_core]
> [  426.715480]  isst_if_def_ioctl+0xece/0x1050 [isst_tpmi_core]
> [  426.715484]  ? ioctl_has_perm.constprop.42+0xe0/0x130
> [  426.715489]  isst_if_def_ioctl+0x10d/0x1a0 [isst_if_common]
> [  426.715495]  __se_sys_ioctl+0x86/0xc0
> [  426.715498]  do_syscall_64+0x8a/0x100
> [  426.715500]  entry_SYSCALL_64_after_hwframe+0x78/0xe2
> [  426.715503] RIP: 0033:0x7f36eaef54a7
> 
> Add a check for X86_FEATURE_HWP before accessing the MSR. If HWP is
> not available, return false safely.
> 
> Fixes: 12a7d2cb811dd8a ("platform/x86: ISST: Add SST-CP support via
> TPMI")
> Signed-off-by: Li RongQing <lirongqing@baidu.com>
> ---
>  drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git
> a/drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c
> b/drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c
> index b8cdaa2..6f46cbb 100644
> --- a/drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c
> +++ b/drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c
> @@ -558,6 +558,9 @@ static bool disable_dynamic_sst_features(void)
>  {
>  	u64 value;
>  
> +	if (!static_cpu_has(X86_FEATURE_HWP))
> +		return true;
> +
>  	rdmsrq(MSR_PM_ENABLE, value);
>  	return !(value & 0x1);
>  }

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

* Re: [PATCH] platform/x86: ISST: Check HWP support before MSR access
  2026-02-28 12:24 [PATCH] platform/x86: ISST: Check HWP support before MSR access lirongqing
  2026-02-28 23:01 ` srinivas pandruvada
@ 2026-02-28 23:03 ` srinivas pandruvada
  2026-03-02  2:20 ` 答复: " Li,Rongqing(ACG CCN)
  2 siblings, 0 replies; 5+ messages in thread
From: srinivas pandruvada @ 2026-02-28 23:03 UTC (permalink / raw)
  To: lirongqing, Hans de Goede, Ilpo Järvinen,
	platform-driver-x86

On Sat, 2026-02-28 at 07:24 -0500, lirongqing wrote:
> From: Li RongQing <lirongqing@baidu.com>
> 
> On some systems, HWP can be explicitly disabled in the BIOS settings
> When HWP is disabled by firmware, the HWP CPUID bit is not set, and
> attempting to read MSR_PM_ENABLE will result in a General Protection
> (GP) fault.
> 
> [  426.715441] unchecked MSR access error: RDMSR from 0x770 at rIP:
> 0xffffffffc33db92e (disable_dynamic_sst_features+0xe/0x50
> [isst_tpmi_core])
> [  426.715450] Call Trace:
> [  426.715453]  <TASK>
> [  426.715454]  ? ex_handler_msr+0xf6/0x150
> [  426.715461]  ? fixup_exception+0x1ad/0x340
> [  426.715462]  ? gp_try_fixup_and_notify+0x1e/0xb0
> [  426.715466]  ? exc_general_protection+0xc9/0x390
> [  426.715470]  ? terminate_walk+0x64/0x100
> [  426.715474]  ? asm_exc_general_protection+0x22/0x30
> [  426.715477]  ? disable_dynamic_sst_features+0xe/0x50
> [isst_tpmi_core]
> [  426.715480]  isst_if_def_ioctl+0xece/0x1050 [isst_tpmi_core]
> [  426.715484]  ? ioctl_has_perm.constprop.42+0xe0/0x130
> [  426.715489]  isst_if_def_ioctl+0x10d/0x1a0 [isst_if_common]
> [  426.715495]  __se_sys_ioctl+0x86/0xc0
> [  426.715498]  do_syscall_64+0x8a/0x100
> [  426.715500]  entry_SYSCALL_64_after_hwframe+0x78/0xe2
> [  426.715503] RIP: 0033:0x7f36eaef54a7
> 
> Add a check for X86_FEATURE_HWP before accessing the MSR. If HWP is
> not available, return false safely.
> 
> Fixes: 12a7d2cb811dd8a ("platform/x86: ISST: Add SST-CP support via
> TPMI")
> Signed-off-by: Li RongQing <lirongqing@baidu.com>

Acked-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>


> ---
>  drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git
> a/drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c
> b/drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c
> index b8cdaa2..6f46cbb 100644
> --- a/drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c
> +++ b/drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c
> @@ -558,6 +558,9 @@ static bool disable_dynamic_sst_features(void)
>  {
>  	u64 value;
>  
> +	if (!static_cpu_has(X86_FEATURE_HWP))
> +		return true;
> +
>  	rdmsrq(MSR_PM_ENABLE, value);
>  	return !(value & 0x1);
>  }

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

* 答复: [PATCH] platform/x86: ISST: Check HWP support before MSR access
  2026-02-28 12:24 [PATCH] platform/x86: ISST: Check HWP support before MSR access lirongqing
  2026-02-28 23:01 ` srinivas pandruvada
  2026-02-28 23:03 ` srinivas pandruvada
@ 2026-03-02  2:20 ` Li,Rongqing(ACG CCN)
  2026-03-02 16:16   ` srinivas pandruvada
  2 siblings, 1 reply; 5+ messages in thread
From: Li,Rongqing(ACG CCN) @ 2026-03-02  2:20 UTC (permalink / raw)
  To: Srinivas Pandruvada, Hans de Goede, Ilpo Järvinen,
	platform-driver-x86@vger.kernel.org

> On some systems, HWP can be explicitly disabled in the BIOS settings When
> HWP is disabled by firmware, the HWP CPUID bit is not set, and attempting to
> read MSR_PM_ENABLE will result in a General Protection
> (GP) fault.
> 
> [  426.715441] unchecked MSR access error: RDMSR from 0x770 at rIP:
> 0xffffffffc33db92e (disable_dynamic_sst_features+0xe/0x50 [isst_tpmi_core])
> [  426.715450] Call Trace:
> [  426.715453]  <TASK>
> [  426.715454]  ? ex_handler_msr+0xf6/0x150 [  426.715461]  ?
> fixup_exception+0x1ad/0x340 [  426.715462]  ?
> gp_try_fixup_and_notify+0x1e/0xb0 [  426.715466]  ?
> exc_general_protection+0xc9/0x390 [  426.715470]  ?
> terminate_walk+0x64/0x100 [  426.715474]  ?
> asm_exc_general_protection+0x22/0x30
> [  426.715477]  ? disable_dynamic_sst_features+0xe/0x50 [isst_tpmi_core]
> [  426.715480]  isst_if_def_ioctl+0xece/0x1050 [isst_tpmi_core]
> [  426.715484]  ? ioctl_has_perm.constprop.42+0xe0/0x130
> [  426.715489]  isst_if_def_ioctl+0x10d/0x1a0 [isst_if_common]
> [  426.715495]  __se_sys_ioctl+0x86/0xc0 [  426.715498]
> do_syscall_64+0x8a/0x100 [  426.715500]
> entry_SYSCALL_64_after_hwframe+0x78/0xe2
> [  426.715503] RIP: 0033:0x7f36eaef54a7
> 
> Add a check for X86_FEATURE_HWP before accessing the MSR. If HWP is not
> available, return false safely.

It returns true, not false. Could you revise this commit message in the merge?

[Li,Rongqing] 


> 
> Fixes: 12a7d2cb811dd8a ("platform/x86: ISST: Add SST-CP support via TPMI")
> Signed-off-by: Li RongQing <lirongqing@baidu.com>
> ---
>  drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c
> b/drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c
> index b8cdaa2..6f46cbb 100644
> --- a/drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c
> +++ b/drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c
> @@ -558,6 +558,9 @@ static bool disable_dynamic_sst_features(void)
>  {
>  	u64 value;
> 
> +	if (!static_cpu_has(X86_FEATURE_HWP))
> +		return true;
> +
>  	rdmsrq(MSR_PM_ENABLE, value);
>  	return !(value & 0x1);
>  }
> --
> 2.9.4


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

* Re: 答复: [PATCH] platform/x86: ISST: Check HWP support before MSR access
  2026-03-02  2:20 ` 答复: " Li,Rongqing(ACG CCN)
@ 2026-03-02 16:16   ` srinivas pandruvada
  0 siblings, 0 replies; 5+ messages in thread
From: srinivas pandruvada @ 2026-03-02 16:16 UTC (permalink / raw)
  To: Li,Rongqing(ACG CCN), Hans de Goede, Ilpo Järvinen,
	platform-driver-x86@vger.kernel.org

On Mon, 2026-03-02 at 02:20 +0000, Li,Rongqing(ACG CCN) wrote:
> > On some systems, HWP can be explicitly disabled in the BIOS
> > settings When
> > HWP is disabled by firmware, the HWP CPUID bit is not set, and
> > attempting to
> > read MSR_PM_ENABLE will result in a General Protection
> > (GP) fault.
> > 
> > [  426.715441] unchecked MSR access error: RDMSR from 0x770 at rIP:
> > 0xffffffffc33db92e (disable_dynamic_sst_features+0xe/0x50
> > [isst_tpmi_core])
> > [  426.715450] Call Trace:
> > [  426.715453]  <TASK>
> > [  426.715454]  ? ex_handler_msr+0xf6/0x150 [  426.715461]  ?
> > fixup_exception+0x1ad/0x340 [  426.715462]  ?
> > gp_try_fixup_and_notify+0x1e/0xb0 [  426.715466]  ?
> > exc_general_protection+0xc9/0x390 [  426.715470]  ?
> > terminate_walk+0x64/0x100 [  426.715474]  ?
> > asm_exc_general_protection+0x22/0x30
> > [  426.715477]  ? disable_dynamic_sst_features+0xe/0x50
> > [isst_tpmi_core]
> > [  426.715480]  isst_if_def_ioctl+0xece/0x1050 [isst_tpmi_core]
> > [  426.715484]  ? ioctl_has_perm.constprop.42+0xe0/0x130
> > [  426.715489]  isst_if_def_ioctl+0x10d/0x1a0 [isst_if_common]
> > [  426.715495]  __se_sys_ioctl+0x86/0xc0 [  426.715498]
> > do_syscall_64+0x8a/0x100 [  426.715500]
> > entry_SYSCALL_64_after_hwframe+0x78/0xe2
> > [  426.715503] RIP: 0033:0x7f36eaef54a7
> > 
> > Add a check for X86_FEATURE_HWP before accessing the MSR. If HWP is
> > not
> > available, return false safely.
> 
> It returns true, not false. Could you revise this commit message in
> the merge?

You should submit V2.

Thanks,
Srinivas

> 
> [Li,Rongqing] 
> 
> 
> > 
> > Fixes: 12a7d2cb811dd8a ("platform/x86: ISST: Add SST-CP support via
> > TPMI")
> > Signed-off-by: Li RongQing <lirongqing@baidu.com>
> > ---
> >  drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c | 3
> > +++
> >  1 file changed, 3 insertions(+)
> > 
> > diff --git
> > a/drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c
> > b/drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c
> > index b8cdaa2..6f46cbb 100644
> > --- a/drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c
> > +++ b/drivers/platform/x86/intel/speed_select_if/isst_tpmi_core.c
> > @@ -558,6 +558,9 @@ static bool disable_dynamic_sst_features(void)
> >  {
> >  	u64 value;
> > 
> > +	if (!static_cpu_has(X86_FEATURE_HWP))
> > +		return true;
> > +
> >  	rdmsrq(MSR_PM_ENABLE, value);
> >  	return !(value & 0x1);
> >  }
> > --
> > 2.9.4

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

end of thread, other threads:[~2026-03-02 16:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-28 12:24 [PATCH] platform/x86: ISST: Check HWP support before MSR access lirongqing
2026-02-28 23:01 ` srinivas pandruvada
2026-02-28 23:03 ` srinivas pandruvada
2026-03-02  2:20 ` 答复: " Li,Rongqing(ACG CCN)
2026-03-02 16:16   ` srinivas pandruvada

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox