From 1964346481dbc5fad08004b26c434bf599905be5 Mon Sep 17 00:00:00 2001 From: Jordan Justen Date: Tue, 4 Oct 2022 00:21:41 -0700 Subject: [PATCH] intel/dev: Add BMG device info MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jordan Justen Reviewed-by: Tapani Pälli Reviewed-by: José Roberto de Souza Part-of: --- src/intel/dev/intel_device_info.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/intel/dev/intel_device_info.c b/src/intel/dev/intel_device_info.c index 6c1deed5e24..7ed0dca263c 100644 --- a/src/intel/dev/intel_device_info.c +++ b/src/intel/dev/intel_device_info.c @@ -75,6 +75,7 @@ static const struct { { "mtl", 0x7d60 }, { "arl", 0x7d67 }, { "lnl", 0x64a0 }, + { "bmg", 0xe202 }, }; /** @@ -1224,6 +1225,13 @@ 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 = { + XE2_FEATURES, + .platform = INTEL_PLATFORM_BMG, + .has_local_mem = true, + .apply_hwconfig = true, +}; + static const struct intel_device_info intel_device_info_lnl = { XE2_FEATURES, .platform = INTEL_PLATFORM_LNL,