mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 0/2] Diamond Rapids support
@ 2024-10-03 21:55 Srinivas Pandruvada
  2024-10-03 21:55 ` [PATCH 1/2] platform/x86: ISST: Add Diamond Rapids to support list Srinivas Pandruvada
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Srinivas Pandruvada @ 2024-10-03 21:55 UTC (permalink / raw)
  To: hdegoede, ilpo.jarvinen
  Cc: platform-driver-x86, linux-kernel, Srinivas Pandruvada

Add CPU model of Diamond Rapids for SST and TPMI power domain
mapping.

Srinivas Pandruvada (2):
  platform/x86: ISST: Add Diamond Rapids to support list
  platform/x86/intel: power-domains: Add Diamond Rapids support

 drivers/platform/x86/intel/speed_select_if/isst_if_common.c | 1 +
 drivers/platform/x86/intel/tpmi_power_domains.c             | 1 +
 2 files changed, 2 insertions(+)

-- 
2.46.1


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

* [PATCH 1/2] platform/x86: ISST: Add Diamond Rapids to support list
  2024-10-03 21:55 [PATCH 0/2] Diamond Rapids support Srinivas Pandruvada
@ 2024-10-03 21:55 ` Srinivas Pandruvada
  2024-10-03 21:55 ` [PATCH 2/2] platform/x86/intel: power-domains: Add Diamond Rapids support Srinivas Pandruvada
  2024-10-06 10:42 ` [PATCH 0/2] " Hans de Goede
  2 siblings, 0 replies; 4+ messages in thread
From: Srinivas Pandruvada @ 2024-10-03 21:55 UTC (permalink / raw)
  To: hdegoede, ilpo.jarvinen
  Cc: platform-driver-x86, linux-kernel, Srinivas Pandruvada

Add Diamond Rapids (INTEL_PANTHERCOVE_X) to SST support list by adding
to isst_cpu_ids.

Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
---
 drivers/platform/x86/intel/speed_select_if/isst_if_common.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/platform/x86/intel/speed_select_if/isst_if_common.c b/drivers/platform/x86/intel/speed_select_if/isst_if_common.c
index 9ad35fefea47..2a95bd8cf4f4 100644
--- a/drivers/platform/x86/intel/speed_select_if/isst_if_common.c
+++ b/drivers/platform/x86/intel/speed_select_if/isst_if_common.c
@@ -807,6 +807,7 @@ static const struct x86_cpu_id isst_cpu_ids[] = {
 	X86_MATCH_VFM(INTEL_GRANITERAPIDS_X,	SST_HPM_SUPPORTED),
 	X86_MATCH_VFM(INTEL_ICELAKE_D,		0),
 	X86_MATCH_VFM(INTEL_ICELAKE_X,		0),
+	X86_MATCH_VFM(INTEL_PANTHERCOVE_X,	SST_HPM_SUPPORTED),
 	X86_MATCH_VFM(INTEL_SAPPHIRERAPIDS_X,	0),
 	X86_MATCH_VFM(INTEL_SKYLAKE_X,		SST_MBOX_SUPPORTED),
 	{}
-- 
2.46.1


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

* [PATCH 2/2] platform/x86/intel: power-domains: Add Diamond Rapids support
  2024-10-03 21:55 [PATCH 0/2] Diamond Rapids support Srinivas Pandruvada
  2024-10-03 21:55 ` [PATCH 1/2] platform/x86: ISST: Add Diamond Rapids to support list Srinivas Pandruvada
@ 2024-10-03 21:55 ` Srinivas Pandruvada
  2024-10-06 10:42 ` [PATCH 0/2] " Hans de Goede
  2 siblings, 0 replies; 4+ messages in thread
From: Srinivas Pandruvada @ 2024-10-03 21:55 UTC (permalink / raw)
  To: hdegoede, ilpo.jarvinen
  Cc: platform-driver-x86, linux-kernel, Srinivas Pandruvada

Add Diamond Rapids (INTEL_PANTHERCOVE_X) to tpmi_cpu_ids to support
domaid id mappings.

Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
---
 drivers/platform/x86/intel/tpmi_power_domains.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/platform/x86/intel/tpmi_power_domains.c b/drivers/platform/x86/intel/tpmi_power_domains.c
index 4eb02553957c..0609a8320f7e 100644
--- a/drivers/platform/x86/intel/tpmi_power_domains.c
+++ b/drivers/platform/x86/intel/tpmi_power_domains.c
@@ -82,6 +82,7 @@ static const struct x86_cpu_id tpmi_cpu_ids[] = {
 	X86_MATCH_VFM(INTEL_ATOM_CRESTMONT_X,	NULL),
 	X86_MATCH_VFM(INTEL_ATOM_CRESTMONT,	NULL),
 	X86_MATCH_VFM(INTEL_GRANITERAPIDS_D,	NULL),
+	X86_MATCH_VFM(INTEL_PANTHERCOVE_X,	NULL),
 	{}
 };
 MODULE_DEVICE_TABLE(x86cpu, tpmi_cpu_ids);
-- 
2.46.1


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

* Re: [PATCH 0/2] Diamond Rapids support
  2024-10-03 21:55 [PATCH 0/2] Diamond Rapids support Srinivas Pandruvada
  2024-10-03 21:55 ` [PATCH 1/2] platform/x86: ISST: Add Diamond Rapids to support list Srinivas Pandruvada
  2024-10-03 21:55 ` [PATCH 2/2] platform/x86/intel: power-domains: Add Diamond Rapids support Srinivas Pandruvada
@ 2024-10-06 10:42 ` Hans de Goede
  2 siblings, 0 replies; 4+ messages in thread
From: Hans de Goede @ 2024-10-06 10:42 UTC (permalink / raw)
  To: Srinivas Pandruvada, ilpo.jarvinen; +Cc: platform-driver-x86, linux-kernel

Hi,

On 3-Oct-24 11:55 PM, Srinivas Pandruvada wrote:
> Add CPU model of Diamond Rapids for SST and TPMI power domain
> mapping.
> 
> Srinivas Pandruvada (2):
>   platform/x86: ISST: Add Diamond Rapids to support list
>   platform/x86/intel: power-domains: Add Diamond Rapids support

Thank you for your patch/series, I've applied this patch
(series) to my review-hans branch:
https://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git/log/?h=review-hans

Note it will show up in the pdx86 review-hans branch once I've
pushed my local branch there, which might take a while.

I will include this patch in my next fixes pull-req to Linus
for the current kernel development cycle.

Regards,

Hans




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

end of thread, other threads:[~2024-10-06 10:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-10-03 21:55 [PATCH 0/2] Diamond Rapids support Srinivas Pandruvada
2024-10-03 21:55 ` [PATCH 1/2] platform/x86: ISST: Add Diamond Rapids to support list Srinivas Pandruvada
2024-10-03 21:55 ` [PATCH 2/2] platform/x86/intel: power-domains: Add Diamond Rapids support Srinivas Pandruvada
2024-10-06 10:42 ` [PATCH 0/2] " Hans de Goede

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

all inboxes | Powered by JetHome®