Skip to content

Commit f317f38

Browse files
debox1ij-intel
authored andcommitted
platform/x86/intel/vsec: Add Diamond Rapids support
Add PCI ID for the Diamond Rapids Platforms Signed-off-by: David E. Box <david.e.box@linux.intel.com> Link: https://lore.kernel.org/r/20250226214728.1256747-1-david.e.box@linux.intel.com Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
1 parent d0d10ea commit f317f38

File tree

1 file changed

+7
-0
lines changed
  • drivers/platform/x86/intel

1 file changed

+7
-0
lines changed

drivers/platform/x86/intel/vsec.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -404,6 +404,11 @@ static const struct intel_vsec_platform_info oobmsm_info = {
404404
.caps = VSEC_CAP_TELEMETRY | VSEC_CAP_SDSI | VSEC_CAP_TPMI,
405405
};
406406

407+
/* DMR OOBMSM info */
408+
static const struct intel_vsec_platform_info dmr_oobmsm_info = {
409+
.caps = VSEC_CAP_TELEMETRY | VSEC_CAP_TPMI,
410+
};
411+
407412
/* TGL info */
408413
static const struct intel_vsec_platform_info tgl_info = {
409414
.caps = VSEC_CAP_TELEMETRY,
@@ -420,6 +425,7 @@ static const struct intel_vsec_platform_info lnl_info = {
420425
#define PCI_DEVICE_ID_INTEL_VSEC_MTL_M 0x7d0d
421426
#define PCI_DEVICE_ID_INTEL_VSEC_MTL_S 0xad0d
422427
#define PCI_DEVICE_ID_INTEL_VSEC_OOBMSM 0x09a7
428+
#define PCI_DEVICE_ID_INTEL_VSEC_OOBMSM_DMR 0x09a1
423429
#define PCI_DEVICE_ID_INTEL_VSEC_RPL 0xa77d
424430
#define PCI_DEVICE_ID_INTEL_VSEC_TGL 0x9a0d
425431
#define PCI_DEVICE_ID_INTEL_VSEC_LNL_M 0x647d
@@ -430,6 +436,7 @@ static const struct pci_device_id intel_vsec_pci_ids[] = {
430436
{ PCI_DEVICE_DATA(INTEL, VSEC_MTL_M, &mtl_info) },
431437
{ PCI_DEVICE_DATA(INTEL, VSEC_MTL_S, &mtl_info) },
432438
{ PCI_DEVICE_DATA(INTEL, VSEC_OOBMSM, &oobmsm_info) },
439+
{ PCI_DEVICE_DATA(INTEL, VSEC_OOBMSM_DMR, &dmr_oobmsm_info) },
433440
{ PCI_DEVICE_DATA(INTEL, VSEC_RPL, &tgl_info) },
434441
{ PCI_DEVICE_DATA(INTEL, VSEC_TGL, &tgl_info) },
435442
{ PCI_DEVICE_DATA(INTEL, VSEC_LNL_M, &lnl_info) },

0 commit comments

Comments
 (0)