diff options
| author | Li RongQing <lirongqing@baidu.com> | 2025-06-23 18:56:01 +0800 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2025-08-20 18:30:23 +0200 |
| commit | 2cbf5564beebb2c89230518e5ef944eca6d2f28b (patch) | |
| tree | 26f42f76f9827af8c69242728d08e4bbae2de169 /drivers/cpufreq | |
| parent | bd5cd23c7ae47ebf2ed27ff0e8cc837456041426 (diff) | |
| download | linux-2cbf5564beebb2c89230518e5ef944eca6d2f28b.tar.gz linux-2cbf5564beebb2c89230518e5ef944eca6d2f28b.tar.bz2 linux-2cbf5564beebb2c89230518e5ef944eca6d2f28b.zip | |
cpufreq: intel_pstate: Add Granite Rapids support in no-HWP mode
[ Upstream commit fc64e0421598aaa87d61184f6777b52614a095be ]
Users may disable HWP in firmware, in which case intel_pstate
wouldn't load unless the CPU model is explicitly supported.
Signed-off-by: Li RongQing <lirongqing@baidu.com>
Link: https://patch.msgid.link/20250623105601.3924-1-lirongqing@baidu.com
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers/cpufreq')
| -rw-r--r-- | drivers/cpufreq/intel_pstate.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/cpufreq/intel_pstate.c b/drivers/cpufreq/intel_pstate.c index b86372aa341d..e90871092038 100644 --- a/drivers/cpufreq/intel_pstate.c +++ b/drivers/cpufreq/intel_pstate.c @@ -2654,6 +2654,8 @@ static const struct x86_cpu_id intel_pstate_cpu_ids[] = { X86_MATCH(INTEL_TIGERLAKE, core_funcs), X86_MATCH(INTEL_SAPPHIRERAPIDS_X, core_funcs), X86_MATCH(INTEL_EMERALDRAPIDS_X, core_funcs), + X86_MATCH(INTEL_GRANITERAPIDS_D, core_funcs), + X86_MATCH(INTEL_GRANITERAPIDS_X, core_funcs), {} }; MODULE_DEVICE_TABLE(x86cpu, intel_pstate_cpu_ids); |
