From c1d3fa007cabdcb69f37acdfaa8154402cb6e760 Mon Sep 17 00:00:00 2001 From: Jordan Justen Date: Tue, 4 Oct 2022 00:22:07 -0700 Subject: [PATCH] intel/dev: Add BMG PCI IDs (with FORCE_PROBE set) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ref: bspec 68090 Signed-off-by: Jordan Justen Reviewed-by: Tapani Pälli Reviewed-by: José Roberto de Souza Part-of: --- include/pci_ids/iris_pci_ids.h | 6 ++++++ src/intel/dev/intel_device_info.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/include/pci_ids/iris_pci_ids.h b/include/pci_ids/iris_pci_ids.h index 14dc1040644..cbe82b80bf0 100644 --- a/include/pci_ids/iris_pci_ids.h +++ b/include/pci_ids/iris_pci_ids.h @@ -271,3 +271,9 @@ CHIPSET(0x7d41, arl_u, "ARL", "Intel(R) Graphics") CHIPSET(0x7d51, arl_h, "ARL", "Intel(R) Graphics") CHIPSET(0x7d67, arl_u, "ARL", "Intel(R) Graphics") CHIPSET(0x7dd1, arl_h, "ARL", "Intel(R) Graphics") + +CHIPSET(0xe202, bmg, "BMG G21", "Intel(R) Graphics", FORCE_PROBE) +CHIPSET(0xe20b, bmg, "BMG G21", "Intel(R) Graphics", FORCE_PROBE) +CHIPSET(0xe20c, bmg, "BMG G21", "Intel(R) Graphics", FORCE_PROBE) +CHIPSET(0xe20d, bmg, "BMG G21", "Intel(R) Graphics", FORCE_PROBE) +CHIPSET(0xe212, bmg, "BMG G21", "Intel(R) Graphics", FORCE_PROBE) diff --git a/src/intel/dev/intel_device_info.c b/src/intel/dev/intel_device_info.c index 7ed0dca263c..8306b0ce78c 100644 --- a/src/intel/dev/intel_device_info.c +++ b/src/intel/dev/intel_device_info.c @@ -1225,7 +1225,7 @@ static const struct intel_device_info intel_device_info_arl_h = { .cooperative_matrix_configurations = { { 0 }, }, \ .has_flat_ccs = true -UNUSED static const struct intel_device_info intel_device_info_bmg = { +static const struct intel_device_info intel_device_info_bmg = { XE2_FEATURES, .platform = INTEL_PLATFORM_BMG, .has_local_mem = true,