From 492f8d2030bec7ab6d0adf7f41808d73871f86e7 Mon Sep 17 00:00:00 2001 From: Daniele Ceraolo Spurio Date: Wed, 29 Jan 2025 09:41:37 -0800 Subject: [PATCH] drm/xe/pxp: Enable PXP for MTL and LNL Now that are the pieces are there, we can turn the feature on. Signed-off-by: Daniele Ceraolo Spurio Reviewed-by: John Harrison Link: https://patchwork.freedesktop.org/patch/msgid/20250129174140.948829-14-daniele.ceraolospurio@intel.com --- drivers/gpu/drm/xe/xe_pci.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/gpu/drm/xe/xe_pci.c b/drivers/gpu/drm/xe/xe_pci.c index 0a6e58d55682..feb46a707281 100644 --- a/drivers/gpu/drm/xe/xe_pci.c +++ b/drivers/gpu/drm/xe/xe_pci.c @@ -333,11 +333,13 @@ static const struct xe_device_desc mtl_desc = { .require_force_probe = true, PLATFORM(METEORLAKE), .has_display = true, + .has_pxp = true, }; static const struct xe_device_desc lnl_desc = { PLATFORM(LUNARLAKE), .has_display = true, + .has_pxp = true, }; static const struct xe_device_desc bmg_desc = { -- 2.25.1