From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 8A5A5C43458 for ; Sat, 4 Jul 2026 10:49:11 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 4D91F10E6A3; Sat, 4 Jul 2026 10:49:11 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=intel.com header.i=@intel.com header.b="HoYTgU8p"; dkim-atps=neutral Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.15]) by gabe.freedesktop.org (Postfix) with ESMTPS id CCCFC10E691; Sat, 4 Jul 2026 10:49:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1783162150; x=1814698150; h=date:from:to:cc:subject:in-reply-to:message-id: references:mime-version:content-id; bh=6eEbsXnNHbbN51HbDmSZG6Wxi2GU0mLDcfm/rPOGrTA=; b=HoYTgU8p1ysMPrYidc46pRlQOgBZJHb8GYx729BGfv3dQ4fLCcRsOj+J OVElgX682LrGJTh58Q2FnxI6rRSKGDRK6anTdPHHwUmCtLZVsfeK8adYI jo5t8PhI7aaAWmEMRDxdhhu/SX8dnGMMZImPkivrgoaLnKutPKZJqHDEX AtPymXBzftcR9Nv0JS5+2YoGLI755azBw+daIZojB3LN7bIyp1AArbmrG hwS9PlX29AIG7kLamzMAQGwuBfW1kn6Vxqs8ZWOFPQIcNoNhbKghGlwyC 7BTJmwHuryV+/zEaAubGKjKPQsYBfHpsDox6Gm4LnHSoW0UYQc960+N9M g==; X-CSE-ConnectionGUID: xOWvdLMxSbiFPFUMx5m1ig== X-CSE-MsgGUID: cvE8wfm/TyuWwLK+oelEbg== X-IronPort-AV: E=McAfee;i="6800,10657,11836"; a="87559682" X-IronPort-AV: E=Sophos;i="6.25,147,1779174000"; d="scan'208";a="87559682" Received: from fmviesa005.fm.intel.com ([10.60.135.145]) by orvoesa107.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Jul 2026 03:49:10 -0700 X-CSE-ConnectionGUID: kDd5yMRUTbW7IFfDIe9J4A== X-CSE-MsgGUID: bOutkLXaRymUVM9/S/4T9w== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.25,147,1779174000"; d="scan'208";a="258181898" Received: from dev-417.igk.intel.com ([10.91.214.181]) by fmviesa005.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Jul 2026 03:49:08 -0700 Date: Sat, 4 Jul 2026 12:49:06 +0200 (CEST) From: =?ISO-8859-2?Q?Micha=B3_Grzelak?= To: Imre Deak cc: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org Subject: Re: [PATCH v2 28/34] drm/xe/kunit: Add display test config In-Reply-To: <20260701153204.4124150-29-imre.deak@intel.com> Message-ID: References: <20260701153204.4124150-1-imre.deak@intel.com> <20260701153204.4124150-29-imre.deak@intel.com> MIME-Version: 1.0 Content-Type: multipart/mixed; BOUNDARY="8323329-1000968344-1783117019=:605841" Content-ID: <33c4decf-4620-f250-5421-a54ebd7ca4ec@intel.com> X-BeenThere: intel-xe@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel Xe graphics driver List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: intel-xe-bounces@lists.freedesktop.org Sender: "Intel-xe" This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --8323329-1000968344-1783117019=:605841 Content-Type: text/plain; CHARSET=ISO-8859-2; format=flowed Content-Transfer-Encoding: 8BIT Content-ID: On Wed, 1 Jul 2026, Imre Deak wrote: > Add a separate xe KUnit config for display tests. > > The existing xe .kunitconfig builds xe statically, which is suitable for > non-display xe tests. The display code can only be enabled for xe when > xe is built as a module, so add a separate display config with DRM_XE=m > and DRM_XE_DISPLAY=y. > > This can be folded back into the main xe KUnit config once the display > code becomes a separate module. > > Signed-off-by: Imre Deak > --- > drivers/gpu/drm/xe/.gitignore | 1 + > drivers/gpu/drm/xe/.kunitconfig-display | 11 +++++++++++ > 2 files changed, 12 insertions(+) > create mode 100644 drivers/gpu/drm/xe/.kunitconfig-display > > diff --git a/drivers/gpu/drm/xe/.gitignore b/drivers/gpu/drm/xe/.gitignore > index 8778bf132674d..6dad8a5a21355 100644 > --- a/drivers/gpu/drm/xe/.gitignore > +++ b/drivers/gpu/drm/xe/.gitignore > @@ -2,3 +2,4 @@ > *.hdrtest > /generated > /xe_gen_wa_oob > +!.kunitconfig-display Same comment as on PATCH 26/34 ("drm/i915/kunit: Enable KUnit tests"), so not sure why the *-display file here is excluded from .gitignore and .kunitconfig is not. With that addressed: Reviewed-by: Micha³ Grzelak BR, Micha³ > diff --git a/drivers/gpu/drm/xe/.kunitconfig-display b/drivers/gpu/drm/xe/.kunitconfig-display > new file mode 100644 > index 0000000000000..17020aa4ded3a > --- /dev/null > +++ b/drivers/gpu/drm/xe/.kunitconfig-display > @@ -0,0 +1,11 @@ > +CONFIG_EXPERT=y > +CONFIG_MODULES=y > +CONFIG_KUNIT=y > +CONFIG_PCI=y > +CONFIG_DEBUG_FS=y > +CONFIG_BLK_DEV_INITRD=y > +CONFIG_MAGIC_SYSRQ=y > +CONFIG_DRM=m > +CONFIG_DRM_XE=m > +CONFIG_DRM_XE_DISPLAY=y > +CONFIG_DRM_XE_KUNIT_TEST=m > -- > 2.49.1 > > --8323329-1000968344-1783117019=:605841--