* [PATCH 0/4] XE HDCP Enablement
@ 2024-02-27 5:32 Suraj Kandpal
2024-02-27 5:32 ` [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file Suraj Kandpal
` (10 more replies)
0 siblings, 11 replies; 21+ messages in thread
From: Suraj Kandpal @ 2024-02-27 5:32 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Suraj Kandpal
This patch series enables HDCP on XE.
Mainly includes rewriting functions that were responsible for
sending hdcp messages via gsc cs.
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Suraj Kandpal (4):
drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file
drm/xe/hdcp: Use xe_device struct
drm/xe: Use gsc_proxy_init_done to check proxy status
drm/xe/hdcp: Enable HDCP for XE
drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 6 +
drivers/gpu/drm/i915/display/intel_hdcp_gsc.h | 7 +-
drivers/gpu/drm/xe/Makefile | 1 +
drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 241 +++++++++++++++++-
drivers/gpu/drm/xe/xe_gsc_proxy.c | 4 +-
drivers/gpu/drm/xe/xe_gsc_proxy.h | 1 +
drivers/gpu/drm/xe/xe_gsc_submit.c | 15 ++
drivers/gpu/drm/xe/xe_gsc_submit.h | 1 +
8 files changed, 258 insertions(+), 18 deletions(-)
--
2.43.2
^ permalink raw reply [flat|nested] 21+ messages in thread* [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file 2024-02-27 5:32 [PATCH 0/4] XE HDCP Enablement Suraj Kandpal @ 2024-02-27 5:32 ` Suraj Kandpal 2024-02-27 6:33 ` Suraj Kandpal ` (2 more replies) 2024-02-27 5:32 ` [PATCH 2/4] drm/xe/hdcp: Use xe_device struct Suraj Kandpal ` (9 subsequent siblings) 10 siblings, 3 replies; 21+ messages in thread From: Suraj Kandpal @ 2024-02-27 5:32 UTC (permalink / raw) To: intel-gfx, intel-xe; +Cc: Suraj Kandpal Move intel_hdcp_gsc_message definition into intel_hdcp_gsc.h so that intel_hdcp_gsc_message can be redefined for xe as needed. --v2 -Correct commit message to reflect what patch is actually doing [Arun] Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> --- drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 6 ++++++ drivers/gpu/drm/i915/display/intel_hdcp_gsc.h | 7 +------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c index 302bff75b06c..35823e1f65d6 100644 --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c @@ -13,6 +13,12 @@ #include "intel_hdcp_gsc.h" #include "intel_hdcp_gsc_message.h" +struct intel_hdcp_gsc_message { + struct i915_vma *vma; + void *hdcp_cmd_in; + void *hdcp_cmd_out; +}; + bool intel_hdcp_gsc_cs_required(struct drm_i915_private *i915) { return DISPLAY_VER(i915) >= 14; diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h index eba2057c5a9e..5f610df61cc9 100644 --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h @@ -10,12 +10,7 @@ #include <linux/types.h> struct drm_i915_private; - -struct intel_hdcp_gsc_message { - struct i915_vma *vma; - void *hdcp_cmd_in; - void *hdcp_cmd_out; -}; +struct intel_hdcp_gsc_message; bool intel_hdcp_gsc_cs_required(struct drm_i915_private *i915); ssize_t intel_hdcp_gsc_msg_send(struct drm_i915_private *i915, u8 *msg_in, -- 2.43.2 ^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file 2024-02-27 5:32 ` [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file Suraj Kandpal @ 2024-02-27 6:33 ` Suraj Kandpal 2024-02-28 6:01 ` Murthy, Arun R 2024-02-28 5:59 ` Kandpal, Suraj 2024-03-04 15:59 ` Jani Nikula 2 siblings, 1 reply; 21+ messages in thread From: Suraj Kandpal @ 2024-02-27 6:33 UTC (permalink / raw) To: intel-gfx, intel-xe; +Cc: Suraj Kandpal Move intel_hdcp_gsc_message definition into intel_hdcp_gsc.c so that intel_hdcp_gsc_message can be redefined for xe as needed. --v2 -Correct commit message to reflect what patch is actually doing [Arun] Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> --- drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 6 ++++++ drivers/gpu/drm/i915/display/intel_hdcp_gsc.h | 7 +------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c index 302bff75b06c..35823e1f65d6 100644 --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c @@ -13,6 +13,12 @@ #include "intel_hdcp_gsc.h" #include "intel_hdcp_gsc_message.h" +struct intel_hdcp_gsc_message { + struct i915_vma *vma; + void *hdcp_cmd_in; + void *hdcp_cmd_out; +}; + bool intel_hdcp_gsc_cs_required(struct drm_i915_private *i915) { return DISPLAY_VER(i915) >= 14; diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h index eba2057c5a9e..5f610df61cc9 100644 --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h @@ -10,12 +10,7 @@ #include <linux/types.h> struct drm_i915_private; - -struct intel_hdcp_gsc_message { - struct i915_vma *vma; - void *hdcp_cmd_in; - void *hdcp_cmd_out; -}; +struct intel_hdcp_gsc_message; bool intel_hdcp_gsc_cs_required(struct drm_i915_private *i915); ssize_t intel_hdcp_gsc_msg_send(struct drm_i915_private *i915, u8 *msg_in, -- 2.43.2 ^ permalink raw reply related [flat|nested] 21+ messages in thread
* RE: [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file 2024-02-27 6:33 ` Suraj Kandpal @ 2024-02-28 6:01 ` Murthy, Arun R 0 siblings, 0 replies; 21+ messages in thread From: Murthy, Arun R @ 2024-02-28 6:01 UTC (permalink / raw) To: Kandpal, Suraj, intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org Cc: Kandpal, Suraj > -----Original Message----- > From: Intel-gfx <intel-gfx-bounces@lists.freedesktop.org> On Behalf Of Suraj > Kandpal > Sent: Tuesday, February 27, 2024 12:04 PM > To: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org > Cc: Kandpal, Suraj <suraj.kandpal@intel.com> > Subject: [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away > from header file > > Move intel_hdcp_gsc_message definition into intel_hdcp_gsc.c so that > intel_hdcp_gsc_message can be redefined for xe as needed. > > --v2 > -Correct commit message to reflect what patch is actually doing [Arun] > > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> Reviewed-by: Arun R Murthy <arun.r.murthy@intel.com> Thanks and Regards, Arun R Murthy ------------------- > --- > drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 6 ++++++ > drivers/gpu/drm/i915/display/intel_hdcp_gsc.h | 7 +------ > 2 files changed, 7 insertions(+), 6 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c > b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c > index 302bff75b06c..35823e1f65d6 100644 > --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c > +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c > @@ -13,6 +13,12 @@ > #include "intel_hdcp_gsc.h" > #include "intel_hdcp_gsc_message.h" > > +struct intel_hdcp_gsc_message { > + struct i915_vma *vma; > + void *hdcp_cmd_in; > + void *hdcp_cmd_out; > +}; > + > bool intel_hdcp_gsc_cs_required(struct drm_i915_private *i915) { > return DISPLAY_VER(i915) >= 14; > diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h > b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h > index eba2057c5a9e..5f610df61cc9 100644 > --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h > +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h > @@ -10,12 +10,7 @@ > #include <linux/types.h> > > struct drm_i915_private; > - > -struct intel_hdcp_gsc_message { > - struct i915_vma *vma; > - void *hdcp_cmd_in; > - void *hdcp_cmd_out; > -}; > +struct intel_hdcp_gsc_message; > > bool intel_hdcp_gsc_cs_required(struct drm_i915_private *i915); ssize_t > intel_hdcp_gsc_msg_send(struct drm_i915_private *i915, u8 *msg_in, > -- > 2.43.2 ^ permalink raw reply [flat|nested] 21+ messages in thread
* RE: [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file 2024-02-27 5:32 ` [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file Suraj Kandpal 2024-02-27 6:33 ` Suraj Kandpal @ 2024-02-28 5:59 ` Kandpal, Suraj 2024-03-04 15:59 ` Jani Nikula 2 siblings, 0 replies; 21+ messages in thread From: Kandpal, Suraj @ 2024-02-28 5:59 UTC (permalink / raw) To: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org Cc: Murthy, Arun R > Subject: [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away > from header file > > Move intel_hdcp_gsc_message definition into intel_hdcp_gsc.h so that > intel_hdcp_gsc_message can be redefined for xe as needed. > > --v2 > -Correct commit message to reflect what patch is actually doing [Arun] > Any Reviews Arun Regards, Suraj Kandpal > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> > --- > drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 6 ++++++ > drivers/gpu/drm/i915/display/intel_hdcp_gsc.h | 7 +------ > 2 files changed, 7 insertions(+), 6 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c > b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c > index 302bff75b06c..35823e1f65d6 100644 > --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c > +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c > @@ -13,6 +13,12 @@ > #include "intel_hdcp_gsc.h" > #include "intel_hdcp_gsc_message.h" > > +struct intel_hdcp_gsc_message { > + struct i915_vma *vma; > + void *hdcp_cmd_in; > + void *hdcp_cmd_out; > +}; > + > bool intel_hdcp_gsc_cs_required(struct drm_i915_private *i915) { > return DISPLAY_VER(i915) >= 14; > diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h > b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h > index eba2057c5a9e..5f610df61cc9 100644 > --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h > +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h > @@ -10,12 +10,7 @@ > #include <linux/types.h> > > struct drm_i915_private; > - > -struct intel_hdcp_gsc_message { > - struct i915_vma *vma; > - void *hdcp_cmd_in; > - void *hdcp_cmd_out; > -}; > +struct intel_hdcp_gsc_message; > > bool intel_hdcp_gsc_cs_required(struct drm_i915_private *i915); ssize_t > intel_hdcp_gsc_msg_send(struct drm_i915_private *i915, u8 *msg_in, > -- > 2.43.2 ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file 2024-02-27 5:32 ` [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file Suraj Kandpal 2024-02-27 6:33 ` Suraj Kandpal 2024-02-28 5:59 ` Kandpal, Suraj @ 2024-03-04 15:59 ` Jani Nikula 2 siblings, 0 replies; 21+ messages in thread From: Jani Nikula @ 2024-03-04 15:59 UTC (permalink / raw) To: Suraj Kandpal, intel-gfx, intel-xe; +Cc: Suraj Kandpal, Lucas De Marchi On Tue, 27 Feb 2024, Suraj Kandpal <suraj.kandpal@intel.com> wrote: > Move intel_hdcp_gsc_message definition into intel_hdcp_gsc.h > so that intel_hdcp_gsc_message can be redefined for xe as needed. > > --v2 > -Correct commit message to reflect what patch is actually doing [Arun] > > Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> Acked-by: Jani Nikula <jani.nikula@intel.com> for merging this patch via drm-xe-next. BR, Jani. > --- > drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 6 ++++++ > drivers/gpu/drm/i915/display/intel_hdcp_gsc.h | 7 +------ > 2 files changed, 7 insertions(+), 6 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c > index 302bff75b06c..35823e1f65d6 100644 > --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c > +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c > @@ -13,6 +13,12 @@ > #include "intel_hdcp_gsc.h" > #include "intel_hdcp_gsc_message.h" > > +struct intel_hdcp_gsc_message { > + struct i915_vma *vma; > + void *hdcp_cmd_in; > + void *hdcp_cmd_out; > +}; > + > bool intel_hdcp_gsc_cs_required(struct drm_i915_private *i915) > { > return DISPLAY_VER(i915) >= 14; > diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h > index eba2057c5a9e..5f610df61cc9 100644 > --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h > +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h > @@ -10,12 +10,7 @@ > #include <linux/types.h> > > struct drm_i915_private; > - > -struct intel_hdcp_gsc_message { > - struct i915_vma *vma; > - void *hdcp_cmd_in; > - void *hdcp_cmd_out; > -}; > +struct intel_hdcp_gsc_message; > > bool intel_hdcp_gsc_cs_required(struct drm_i915_private *i915); > ssize_t intel_hdcp_gsc_msg_send(struct drm_i915_private *i915, u8 *msg_in, -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 21+ messages in thread
* [PATCH 2/4] drm/xe/hdcp: Use xe_device struct 2024-02-27 5:32 [PATCH 0/4] XE HDCP Enablement Suraj Kandpal 2024-02-27 5:32 ` [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file Suraj Kandpal @ 2024-02-27 5:32 ` Suraj Kandpal 2024-02-27 5:32 ` [PATCH 3/4] drm/xe: Use gsc_proxy_init_done to check proxy status Suraj Kandpal ` (8 subsequent siblings) 10 siblings, 0 replies; 21+ messages in thread From: Suraj Kandpal @ 2024-02-27 5:32 UTC (permalink / raw) To: intel-gfx, intel-xe; +Cc: Suraj Kandpal, Arun R Murthy Use xe_device struct instead of drm_i915_private so as to not cause confusion and comply with Xe standards as drm_i915_private is xe_device under the hood. --v2 -Fix commit message [Daniele] Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> Reviewed-by: Arun R Murthy <arun.r.murthy@intel.com> --- drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c index 0f11a39333e2..5d1d0054b578 100644 --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c @@ -3,30 +3,31 @@ * Copyright 2023, Intel Corporation. */ -#include "i915_drv.h" +#include <drm/drm_print.h> #include "intel_hdcp_gsc.h" +#include "xe_device_types.h" -bool intel_hdcp_gsc_cs_required(struct drm_i915_private *i915) +bool intel_hdcp_gsc_cs_required(struct xe_device *xe) { return true; } -bool intel_hdcp_gsc_check_status(struct drm_i915_private *i915) +bool intel_hdcp_gsc_check_status(struct xe_device *xe) { return false; } -int intel_hdcp_gsc_init(struct drm_i915_private *i915) +int intel_hdcp_gsc_init(struct xe_device *xe) { - drm_info(&i915->drm, "HDCP support not yet implemented\n"); + drm_dbg_kms(&xe->drm, "HDCP support not yet implemented\n"); return -ENODEV; } -void intel_hdcp_gsc_fini(struct drm_i915_private *i915) +void intel_hdcp_gsc_fini(struct xe_device *xe) { } -ssize_t intel_hdcp_gsc_msg_send(struct drm_i915_private *i915, u8 *msg_in, +ssize_t intel_hdcp_gsc_msg_send(struct xe_device *xe, u8 *msg_in, size_t msg_in_len, u8 *msg_out, size_t msg_out_len) { -- 2.43.2 ^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH 3/4] drm/xe: Use gsc_proxy_init_done to check proxy status 2024-02-27 5:32 [PATCH 0/4] XE HDCP Enablement Suraj Kandpal 2024-02-27 5:32 ` [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file Suraj Kandpal 2024-02-27 5:32 ` [PATCH 2/4] drm/xe/hdcp: Use xe_device struct Suraj Kandpal @ 2024-02-27 5:32 ` Suraj Kandpal 2024-02-28 5:47 ` Suraj Kandpal 2024-02-27 5:32 ` [PATCH 4/4] drm/xe/hdcp: Enable HDCP for XE Suraj Kandpal ` (7 subsequent siblings) 10 siblings, 1 reply; 21+ messages in thread From: Suraj Kandpal @ 2024-02-27 5:32 UTC (permalink / raw) To: intel-gfx, intel-xe; +Cc: Suraj Kandpal, Arun R Murthy, Daniele Ceraolo Spurio Expose gsc_proxy_init_done so that we can check if gsc proxy has been initialized or not. --v2 -Check if GSC FW is enabled before taking forcewake ref [Daniele] Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> Reviewed-by: Arun R Murthy <arun.r.murthy@intel.com> Reviewed-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> --- drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 30 +++++++++++++++++++++++- drivers/gpu/drm/xe/xe_gsc_proxy.c | 4 ++-- drivers/gpu/drm/xe/xe_gsc_proxy.h | 1 + 3 files changed, 32 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c index 5d1d0054b578..0de06e0373ef 100644 --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c @@ -4,8 +4,14 @@ */ #include <drm/drm_print.h> + #include "intel_hdcp_gsc.h" #include "xe_device_types.h" +#include "xe_device.h" +#include "xe_gt.h" +#include "xe_gsc_proxy.h" +#include "xe_pm.h" +#include "xe_uc_fw.h" bool intel_hdcp_gsc_cs_required(struct xe_device *xe) { @@ -14,7 +20,29 @@ bool intel_hdcp_gsc_cs_required(struct xe_device *xe) bool intel_hdcp_gsc_check_status(struct xe_device *xe) { - return false; + struct xe_tile *tile = xe_device_get_root_tile(xe); + struct xe_gt *gt = tile->media_gt; + bool ret = true; + + if (!xe_uc_fw_is_enabled(>->uc.gsc.fw)) + return false; + + xe_pm_runtime_get(xe); + ret = xe_force_wake_get(gt_to_fw(gt), XE_FW_GSC); + if (ret) { + drm_dbg_kms(&xe->drm, + "failed to get forcewake to check proxy status\n"); + ret = false; + goto out; + } + + if (!xe_gsc_proxy_init_done(>->uc.gsc)) + ret = false; + + xe_force_wake_put(gt_to_fw(gt), XE_FW_GSC); +out: + xe_pm_runtime_put(xe); + return ret; } int intel_hdcp_gsc_init(struct xe_device *xe) diff --git a/drivers/gpu/drm/xe/xe_gsc_proxy.c b/drivers/gpu/drm/xe/xe_gsc_proxy.c index 309ef80e3b95..1ced6b4d4946 100644 --- a/drivers/gpu/drm/xe/xe_gsc_proxy.c +++ b/drivers/gpu/drm/xe/xe_gsc_proxy.c @@ -66,7 +66,7 @@ static inline struct xe_device *kdev_to_xe(struct device *kdev) return dev_get_drvdata(kdev); } -static bool gsc_proxy_init_done(struct xe_gsc *gsc) +bool xe_gsc_proxy_init_done(struct xe_gsc *gsc) { struct xe_gt *gt = gsc_to_gt(gsc); u32 fwsts1 = xe_mmio_read32(gt, HECI_FWSTS1(MTL_GSC_HECI1_BASE)); @@ -528,7 +528,7 @@ int xe_gsc_proxy_start(struct xe_gsc *gsc) if (err) return err; - if (!gsc_proxy_init_done(gsc)) { + if (!xe_gsc_proxy_init_done(gsc)) { xe_gt_err(gsc_to_gt(gsc), "GSC FW reports proxy init not completed\n"); return -EIO; } diff --git a/drivers/gpu/drm/xe/xe_gsc_proxy.h b/drivers/gpu/drm/xe/xe_gsc_proxy.h index 908f9441f093..c511ade6b863 100644 --- a/drivers/gpu/drm/xe/xe_gsc_proxy.h +++ b/drivers/gpu/drm/xe/xe_gsc_proxy.h @@ -11,6 +11,7 @@ struct xe_gsc; int xe_gsc_proxy_init(struct xe_gsc *gsc); +bool xe_gsc_proxy_init_done(struct xe_gsc *gsc); void xe_gsc_proxy_remove(struct xe_gsc *gsc); int xe_gsc_proxy_start(struct xe_gsc *gsc); -- 2.43.2 ^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH 3/4] drm/xe: Use gsc_proxy_init_done to check proxy status 2024-02-27 5:32 ` [PATCH 3/4] drm/xe: Use gsc_proxy_init_done to check proxy status Suraj Kandpal @ 2024-02-28 5:47 ` Suraj Kandpal 0 siblings, 0 replies; 21+ messages in thread From: Suraj Kandpal @ 2024-02-28 5:47 UTC (permalink / raw) To: intel-gfx, intel-xe; +Cc: Suraj Kandpal, Arun R Murthy, Daniele Ceraolo Spurio Expose gsc_proxy_init_done so that we can check if gsc proxy has been initialized or not. --v2 -Check if GSC FW is enabled before taking forcewake ref [Daniele] --v3 -Directly call forcewake get function inside if condition Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> Reviewed-by: Arun R Murthy <arun.r.murthy@intel.com> Reviewed-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> --- drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 29 +++++++++++++++++++++++- drivers/gpu/drm/xe/xe_gsc_proxy.c | 4 ++-- drivers/gpu/drm/xe/xe_gsc_proxy.h | 1 + 3 files changed, 31 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c index 5d1d0054b578..3af5a86db3aa 100644 --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c @@ -4,8 +4,14 @@ */ #include <drm/drm_print.h> + #include "intel_hdcp_gsc.h" #include "xe_device_types.h" +#include "xe_device.h" +#include "xe_gt.h" +#include "xe_gsc_proxy.h" +#include "xe_pm.h" +#include "xe_uc_fw.h" bool intel_hdcp_gsc_cs_required(struct xe_device *xe) { @@ -14,7 +20,28 @@ bool intel_hdcp_gsc_cs_required(struct xe_device *xe) bool intel_hdcp_gsc_check_status(struct xe_device *xe) { - return false; + struct xe_tile *tile = xe_device_get_root_tile(xe); + struct xe_gt *gt = tile->media_gt; + bool ret = true; + + if (!xe_uc_fw_is_enabled(>->uc.gsc.fw)) + return false; + + xe_pm_runtime_get(xe); + if (xe_force_wake_get(gt_to_fw(gt), XE_FW_GSC)) { + drm_dbg_kms(&xe->drm, + "failed to get forcewake to check proxy status\n"); + ret = false; + goto out; + } + + if (!xe_gsc_proxy_init_done(>->uc.gsc)) + ret = false; + + xe_force_wake_put(gt_to_fw(gt), XE_FW_GSC); +out: + xe_pm_runtime_put(xe); + return ret; } int intel_hdcp_gsc_init(struct xe_device *xe) diff --git a/drivers/gpu/drm/xe/xe_gsc_proxy.c b/drivers/gpu/drm/xe/xe_gsc_proxy.c index 309ef80e3b95..1ced6b4d4946 100644 --- a/drivers/gpu/drm/xe/xe_gsc_proxy.c +++ b/drivers/gpu/drm/xe/xe_gsc_proxy.c @@ -66,7 +66,7 @@ static inline struct xe_device *kdev_to_xe(struct device *kdev) return dev_get_drvdata(kdev); } -static bool gsc_proxy_init_done(struct xe_gsc *gsc) +bool xe_gsc_proxy_init_done(struct xe_gsc *gsc) { struct xe_gt *gt = gsc_to_gt(gsc); u32 fwsts1 = xe_mmio_read32(gt, HECI_FWSTS1(MTL_GSC_HECI1_BASE)); @@ -528,7 +528,7 @@ int xe_gsc_proxy_start(struct xe_gsc *gsc) if (err) return err; - if (!gsc_proxy_init_done(gsc)) { + if (!xe_gsc_proxy_init_done(gsc)) { xe_gt_err(gsc_to_gt(gsc), "GSC FW reports proxy init not completed\n"); return -EIO; } diff --git a/drivers/gpu/drm/xe/xe_gsc_proxy.h b/drivers/gpu/drm/xe/xe_gsc_proxy.h index 908f9441f093..c511ade6b863 100644 --- a/drivers/gpu/drm/xe/xe_gsc_proxy.h +++ b/drivers/gpu/drm/xe/xe_gsc_proxy.h @@ -11,6 +11,7 @@ struct xe_gsc; int xe_gsc_proxy_init(struct xe_gsc *gsc); +bool xe_gsc_proxy_init_done(struct xe_gsc *gsc); void xe_gsc_proxy_remove(struct xe_gsc *gsc); int xe_gsc_proxy_start(struct xe_gsc *gsc); -- 2.43.2 ^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH 4/4] drm/xe/hdcp: Enable HDCP for XE 2024-02-27 5:32 [PATCH 0/4] XE HDCP Enablement Suraj Kandpal ` (2 preceding siblings ...) 2024-02-27 5:32 ` [PATCH 3/4] drm/xe: Use gsc_proxy_init_done to check proxy status Suraj Kandpal @ 2024-02-27 5:32 ` Suraj Kandpal 2024-03-05 13:36 ` Lucas De Marchi 2024-02-27 7:24 ` ✗ Fi.CI.SPARSE: warning for XE HDCP Enablement (rev7) Patchwork ` (6 subsequent siblings) 10 siblings, 1 reply; 21+ messages in thread From: Suraj Kandpal @ 2024-02-27 5:32 UTC (permalink / raw) To: intel-gfx, intel-xe; +Cc: Suraj Kandpal, Arun R Murthy Enable HDCP for Xe by defining functions which take care of interaction of HDCP as a client with the GSC CS interface. Add intel_hdcp_gsc_message to Makefile and add corresponding changes to xe_hdcp_gsc.c to make it build. --v2 -add kfree at appropriate place [Daniele] -remove useless define [Daniele] -move host session logic to xe_gsc_submit.c [Daniele] -call xe_gsc_check_and_update_pending directly in an if condition [Daniele] -use xe_device instead of drm_i915_private [Daniele] --v3 -use xe prefix for newly exposed function [Daniele] -remove client specific defines from intel_gsc_mtl_header [Daniele] -add missing kfree() [Daniele] -have NULL check for hdcp_message in finish function [Daniele] -dont have too many variable declarations in the same line [Daniele] --v4 -don't point the hdcp_message structure in xe_device to anything until it properly gets initialized [Daniele] --v5 -Squash commits for buildability Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> Reviewed-by: Arun R Murthy <arun.r.murthy@intel.com> --- drivers/gpu/drm/xe/Makefile | 1 + drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 198 ++++++++++++++++++++++- drivers/gpu/drm/xe/xe_gsc_submit.c | 15 ++ drivers/gpu/drm/xe/xe_gsc_submit.h | 1 + 4 files changed, 212 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile index c531210695db..2b654c908ff3 100644 --- a/drivers/gpu/drm/xe/Makefile +++ b/drivers/gpu/drm/xe/Makefile @@ -254,6 +254,7 @@ xe-$(CONFIG_DRM_XE_DISPLAY) += \ i915-display/intel_global_state.o \ i915-display/intel_gmbus.o \ i915-display/intel_hdcp.o \ + i915-display/intel_hdcp_gsc_message.o \ i915-display/intel_hdmi.o \ i915-display/intel_hotplug.o \ i915-display/intel_hotplug_irq.o \ diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c index 0de06e0373ef..bb3bddcd5747 100644 --- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c +++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c @@ -4,14 +4,31 @@ */ #include <drm/drm_print.h> +#include <linux/delay.h> +#include <drm/i915_hdcp_interface.h> +#include "abi/gsc_command_header_abi.h" #include "intel_hdcp_gsc.h" +#include "intel_hdcp_gsc_message.h" #include "xe_device_types.h" #include "xe_device.h" #include "xe_gt.h" #include "xe_gsc_proxy.h" #include "xe_pm.h" #include "xe_uc_fw.h" +#include "xe_bo.h" +#include "xe_map.h" +#include "xe_gsc_submit.h" + +#define HECI_MEADDRESS_HDCP 18 + +struct intel_hdcp_gsc_message { + struct xe_bo *hdcp_bo; + u64 hdcp_cmd_in; + u64 hdcp_cmd_out; +}; + +#define HDCP_GSC_HEADER_SIZE sizeof(struct intel_gsc_mtl_header) bool intel_hdcp_gsc_cs_required(struct xe_device *xe) { @@ -45,19 +62,194 @@ bool intel_hdcp_gsc_check_status(struct xe_device *xe) return ret; } +/*This function helps allocate memory for the command that we will send to gsc cs */ +static int intel_hdcp_gsc_initialize_message(struct xe_device *xe, + struct intel_hdcp_gsc_message *hdcp_message) +{ + struct xe_bo *bo = NULL; + u64 cmd_in, cmd_out; + int ret = 0; + + /* allocate object of two page for HDCP command memory and store it */ + xe_device_mem_access_get(xe); + bo = xe_bo_create_pin_map(xe, xe_device_get_root_tile(xe), NULL, PAGE_SIZE * 2, + ttm_bo_type_kernel, + XE_BO_CREATE_SYSTEM_BIT | + XE_BO_CREATE_GGTT_BIT); + + if (IS_ERR(bo)) { + drm_err(&xe->drm, "Failed to allocate bo for HDCP streaming command!\n"); + ret = PTR_ERR(bo); + goto out; + } + + cmd_in = xe_bo_ggtt_addr(bo); + cmd_out = cmd_in + PAGE_SIZE; + xe_map_memset(xe, &bo->vmap, 0, 0, bo->size); + + hdcp_message->hdcp_bo = bo; + hdcp_message->hdcp_cmd_in = cmd_in; + hdcp_message->hdcp_cmd_out = cmd_out; +out: + xe_device_mem_access_put(xe); + return ret; +} + +static int intel_hdcp_gsc_hdcp2_init(struct xe_device *xe) +{ + struct intel_hdcp_gsc_message *hdcp_message; + int ret; + + hdcp_message = kzalloc(sizeof(*hdcp_message), GFP_KERNEL); + + if (!hdcp_message) + return -ENOMEM; + + /* + * NOTE: No need to lock the comp mutex here as it is already + * going to be taken before this function called + */ + ret = intel_hdcp_gsc_initialize_message(xe, hdcp_message); + if (ret) { + drm_err(&xe->drm, "Could not initialize hdcp_message\n"); + kfree(hdcp_message); + return ret; + } + + xe->display.hdcp.hdcp_message = hdcp_message; + return ret; +} + +static const struct i915_hdcp_ops gsc_hdcp_ops = { + .initiate_hdcp2_session = intel_hdcp_gsc_initiate_session, + .verify_receiver_cert_prepare_km = + intel_hdcp_gsc_verify_receiver_cert_prepare_km, + .verify_hprime = intel_hdcp_gsc_verify_hprime, + .store_pairing_info = intel_hdcp_gsc_store_pairing_info, + .initiate_locality_check = intel_hdcp_gsc_initiate_locality_check, + .verify_lprime = intel_hdcp_gsc_verify_lprime, + .get_session_key = intel_hdcp_gsc_get_session_key, + .repeater_check_flow_prepare_ack = + intel_hdcp_gsc_repeater_check_flow_prepare_ack, + .verify_mprime = intel_hdcp_gsc_verify_mprime, + .enable_hdcp_authentication = intel_hdcp_gsc_enable_authentication, + .close_hdcp_session = intel_hdcp_gsc_close_session, +}; + int intel_hdcp_gsc_init(struct xe_device *xe) { - drm_dbg_kms(&xe->drm, "HDCP support not yet implemented\n"); - return -ENODEV; + struct i915_hdcp_arbiter *data; + int ret; + + data = kzalloc(sizeof(*data), GFP_KERNEL); + if (!data) + return -ENOMEM; + + mutex_lock(&xe->display.hdcp.hdcp_mutex); + xe->display.hdcp.arbiter = data; + xe->display.hdcp.arbiter->hdcp_dev = xe->drm.dev; + xe->display.hdcp.arbiter->ops = &gsc_hdcp_ops; + ret = intel_hdcp_gsc_hdcp2_init(xe); + if (ret) + kfree(data); + + mutex_unlock(&xe->display.hdcp.hdcp_mutex); + + return ret; } void intel_hdcp_gsc_fini(struct xe_device *xe) { + struct intel_hdcp_gsc_message *hdcp_message = + xe->display.hdcp.hdcp_message; + + if (!hdcp_message) + return; + + xe_bo_unpin_map_no_vm(hdcp_message->hdcp_bo); + kfree(hdcp_message); +} + +static int xe_gsc_send_sync(struct xe_device *xe, + struct intel_hdcp_gsc_message *hdcp_message, + u32 msg_size_in, u32 msg_size_out, + u32 addr_out_off) +{ + struct xe_gt *gt = hdcp_message->hdcp_bo->tile->media_gt; + struct iosys_map *map = &hdcp_message->hdcp_bo->vmap; + struct xe_gsc *gsc = >->uc.gsc; + int ret; + + ret = xe_gsc_pkt_submit_kernel(gsc, hdcp_message->hdcp_cmd_in, msg_size_in, + hdcp_message->hdcp_cmd_out, msg_size_out); + if (ret) { + drm_err(&xe->drm, "failed to send gsc HDCP msg (%d)\n", ret); + return ret; + } + + if (xe_gsc_check_and_update_pending(xe, map, 0, map, addr_out_off)) + return -EAGAIN; + + ret = xe_gsc_read_out_header(xe, map, addr_out_off, + sizeof(struct hdcp_cmd_header), NULL); + + return ret; } ssize_t intel_hdcp_gsc_msg_send(struct xe_device *xe, u8 *msg_in, size_t msg_in_len, u8 *msg_out, size_t msg_out_len) { - return -ENODEV; + const size_t max_msg_size = PAGE_SIZE - HDCP_GSC_HEADER_SIZE; + struct intel_hdcp_gsc_message *hdcp_message; + u64 host_session_id; + u32 msg_size_in, msg_size_out; + u32 addr_out_off, addr_in_wr_off = 0; + int ret, tries = 0; + + if (msg_in_len > max_msg_size || msg_out_len > max_msg_size) { + ret = -ENOSPC; + goto out; + } + + msg_size_in = msg_in_len + HDCP_GSC_HEADER_SIZE; + msg_size_out = msg_out_len + HDCP_GSC_HEADER_SIZE; + hdcp_message = xe->display.hdcp.hdcp_message; + addr_out_off = PAGE_SIZE; + + host_session_id = xe_gsc_create_host_session_id(); + xe_device_mem_access_get(xe); + addr_in_wr_off = xe_gsc_emit_header(xe, &hdcp_message->hdcp_bo->vmap, + addr_in_wr_off, HECI_MEADDRESS_HDCP, + host_session_id, msg_in_len); + xe_map_memcpy_to(xe, &hdcp_message->hdcp_bo->vmap, addr_in_wr_off, + msg_in, msg_in_len); + /* + * Keep sending request in case the pending bit is set no need to add + * message handle as we are using same address hence loc. of header is + * same and it will contain the message handle. we will send the message + * 20 times each message 50 ms apart + */ + do { + ret = xe_gsc_send_sync(xe, hdcp_message, msg_size_in, msg_size_out, + addr_out_off); + + /* Only try again if gsc says so */ + if (ret != -EAGAIN) + break; + + msleep(50); + + } while (++tries < 20); + + if (ret) + goto out; + + xe_map_memcpy_from(xe, msg_out, &hdcp_message->hdcp_bo->vmap, + addr_out_off + HDCP_GSC_HEADER_SIZE, + msg_out_len); + +out: + xe_device_mem_access_put(xe); + return ret; } diff --git a/drivers/gpu/drm/xe/xe_gsc_submit.c b/drivers/gpu/drm/xe/xe_gsc_submit.c index 348994b271be..9a18f5667db3 100644 --- a/drivers/gpu/drm/xe/xe_gsc_submit.c +++ b/drivers/gpu/drm/xe/xe_gsc_submit.c @@ -40,6 +40,21 @@ gsc_to_gt(struct xe_gsc *gsc) return container_of(gsc, struct xe_gt, uc.gsc); } +/** + * xe_gsc_get_host_session_id - Creates a random 64 bit host_session id with + * bits 56-63 masked. + * + * Returns: random host_session_id which can be used to send messages to gsc cs + */ +u64 xe_gsc_create_host_session_id(void) +{ + u64 host_session_id; + + get_random_bytes(&host_session_id, sizeof(u64)); + host_session_id &= ~HOST_SESSION_CLIENT_MASK; + return host_session_id; +} + /** * xe_gsc_emit_header - write the MTL GSC header in memory * @xe: the Xe device diff --git a/drivers/gpu/drm/xe/xe_gsc_submit.h b/drivers/gpu/drm/xe/xe_gsc_submit.h index 1939855031a6..1416b5745a4c 100644 --- a/drivers/gpu/drm/xe/xe_gsc_submit.h +++ b/drivers/gpu/drm/xe/xe_gsc_submit.h @@ -28,4 +28,5 @@ int xe_gsc_read_out_header(struct xe_device *xe, int xe_gsc_pkt_submit_kernel(struct xe_gsc *gsc, u64 addr_in, u32 size_in, u64 addr_out, u32 size_out); +u64 xe_gsc_create_host_session_id(void); #endif -- 2.43.2 ^ permalink raw reply related [flat|nested] 21+ messages in thread
* Re: [PATCH 4/4] drm/xe/hdcp: Enable HDCP for XE 2024-02-27 5:32 ` [PATCH 4/4] drm/xe/hdcp: Enable HDCP for XE Suraj Kandpal @ 2024-03-05 13:36 ` Lucas De Marchi 0 siblings, 0 replies; 21+ messages in thread From: Lucas De Marchi @ 2024-03-05 13:36 UTC (permalink / raw) To: Suraj Kandpal; +Cc: intel-gfx, intel-xe, Arun R Murthy On Tue, Feb 27, 2024 at 11:02:04AM +0530, Suraj Kandpal wrote: >Enable HDCP for Xe by defining functions which take care of >interaction of HDCP as a client with the GSC CS interface. >Add intel_hdcp_gsc_message to Makefile and add corresponding >changes to xe_hdcp_gsc.c to make it build. > >--v2 >-add kfree at appropriate place [Daniele] >-remove useless define [Daniele] >-move host session logic to xe_gsc_submit.c [Daniele] >-call xe_gsc_check_and_update_pending directly in an if condition >[Daniele] >-use xe_device instead of drm_i915_private [Daniele] > >--v3 >-use xe prefix for newly exposed function [Daniele] >-remove client specific defines from intel_gsc_mtl_header [Daniele] >-add missing kfree() [Daniele] >-have NULL check for hdcp_message in finish function [Daniele] >-dont have too many variable declarations in the same line [Daniele] > >--v4 >-don't point the hdcp_message structure in xe_device to anything >until it properly gets initialized [Daniele] > >--v5 >-Squash commits for buildability > >Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> >Reviewed-by: Arun R Murthy <arun.r.murthy@intel.com> >--- > drivers/gpu/drm/xe/Makefile | 1 + > drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 198 ++++++++++++++++++++++- > drivers/gpu/drm/xe/xe_gsc_submit.c | 15 ++ > drivers/gpu/drm/xe/xe_gsc_submit.h | 1 + > 4 files changed, 212 insertions(+), 3 deletions(-) > >diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile >index c531210695db..2b654c908ff3 100644 >--- a/drivers/gpu/drm/xe/Makefile >+++ b/drivers/gpu/drm/xe/Makefile >@@ -254,6 +254,7 @@ xe-$(CONFIG_DRM_XE_DISPLAY) += \ > i915-display/intel_global_state.o \ > i915-display/intel_gmbus.o \ > i915-display/intel_hdcp.o \ >+ i915-display/intel_hdcp_gsc_message.o \ > i915-display/intel_hdmi.o \ > i915-display/intel_hotplug.o \ > i915-display/intel_hotplug_irq.o \ >diff --git a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c >index 0de06e0373ef..bb3bddcd5747 100644 >--- a/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c >+++ b/drivers/gpu/drm/xe/display/xe_hdcp_gsc.c >@@ -4,14 +4,31 @@ > */ > > #include <drm/drm_print.h> >+#include <linux/delay.h> >+#include <drm/i915_hdcp_interface.h> > >+#include "abi/gsc_command_header_abi.h" > #include "intel_hdcp_gsc.h" >+#include "intel_hdcp_gsc_message.h" > #include "xe_device_types.h" > #include "xe_device.h" > #include "xe_gt.h" > #include "xe_gsc_proxy.h" > #include "xe_pm.h" > #include "xe_uc_fw.h" >+#include "xe_bo.h" >+#include "xe_map.h" >+#include "xe_gsc_submit.h" don't append includes here, please follow the alphabetical order. >+ >+#define HECI_MEADDRESS_HDCP 18 >+ >+struct intel_hdcp_gsc_message { >+ struct xe_bo *hdcp_bo; >+ u64 hdcp_cmd_in; >+ u64 hdcp_cmd_out; >+}; >+ >+#define HDCP_GSC_HEADER_SIZE sizeof(struct intel_gsc_mtl_header) > > bool intel_hdcp_gsc_cs_required(struct xe_device *xe) > { >@@ -45,19 +62,194 @@ bool intel_hdcp_gsc_check_status(struct xe_device *xe) > return ret; > } > >+/*This function helps allocate memory for the command that we will send to gsc cs */ >+static int intel_hdcp_gsc_initialize_message(struct xe_device *xe, >+ struct intel_hdcp_gsc_message *hdcp_message) >+{ >+ struct xe_bo *bo = NULL; >+ u64 cmd_in, cmd_out; >+ int ret = 0; >+ >+ /* allocate object of two page for HDCP command memory and store it */ >+ xe_device_mem_access_get(xe); >+ bo = xe_bo_create_pin_map(xe, xe_device_get_root_tile(xe), NULL, PAGE_SIZE * 2, >+ ttm_bo_type_kernel, >+ XE_BO_CREATE_SYSTEM_BIT | >+ XE_BO_CREATE_GGTT_BIT); >+ >+ if (IS_ERR(bo)) { >+ drm_err(&xe->drm, "Failed to allocate bo for HDCP streaming command!\n"); >+ ret = PTR_ERR(bo); >+ goto out; >+ } >+ >+ cmd_in = xe_bo_ggtt_addr(bo); >+ cmd_out = cmd_in + PAGE_SIZE; >+ xe_map_memset(xe, &bo->vmap, 0, 0, bo->size); >+ >+ hdcp_message->hdcp_bo = bo; >+ hdcp_message->hdcp_cmd_in = cmd_in; >+ hdcp_message->hdcp_cmd_out = cmd_out; >+out: >+ xe_device_mem_access_put(xe); >+ return ret; >+} >+ >+static int intel_hdcp_gsc_hdcp2_init(struct xe_device *xe) >+{ >+ struct intel_hdcp_gsc_message *hdcp_message; >+ int ret; >+ >+ hdcp_message = kzalloc(sizeof(*hdcp_message), GFP_KERNEL); >+ >+ if (!hdcp_message) >+ return -ENOMEM; >+ >+ /* >+ * NOTE: No need to lock the comp mutex here as it is already >+ * going to be taken before this function called >+ */ >+ ret = intel_hdcp_gsc_initialize_message(xe, hdcp_message); >+ if (ret) { >+ drm_err(&xe->drm, "Could not initialize hdcp_message\n"); >+ kfree(hdcp_message); >+ return ret; >+ } >+ >+ xe->display.hdcp.hdcp_message = hdcp_message; >+ return ret; >+} >+ >+static const struct i915_hdcp_ops gsc_hdcp_ops = { >+ .initiate_hdcp2_session = intel_hdcp_gsc_initiate_session, >+ .verify_receiver_cert_prepare_km = >+ intel_hdcp_gsc_verify_receiver_cert_prepare_km, >+ .verify_hprime = intel_hdcp_gsc_verify_hprime, >+ .store_pairing_info = intel_hdcp_gsc_store_pairing_info, >+ .initiate_locality_check = intel_hdcp_gsc_initiate_locality_check, >+ .verify_lprime = intel_hdcp_gsc_verify_lprime, >+ .get_session_key = intel_hdcp_gsc_get_session_key, >+ .repeater_check_flow_prepare_ack = >+ intel_hdcp_gsc_repeater_check_flow_prepare_ack, >+ .verify_mprime = intel_hdcp_gsc_verify_mprime, >+ .enable_hdcp_authentication = intel_hdcp_gsc_enable_authentication, >+ .close_hdcp_session = intel_hdcp_gsc_close_session, >+}; >+ > int intel_hdcp_gsc_init(struct xe_device *xe) > { >- drm_dbg_kms(&xe->drm, "HDCP support not yet implemented\n"); >- return -ENODEV; >+ struct i915_hdcp_arbiter *data; >+ int ret; >+ >+ data = kzalloc(sizeof(*data), GFP_KERNEL); >+ if (!data) >+ return -ENOMEM; >+ >+ mutex_lock(&xe->display.hdcp.hdcp_mutex); >+ xe->display.hdcp.arbiter = data; >+ xe->display.hdcp.arbiter->hdcp_dev = xe->drm.dev; >+ xe->display.hdcp.arbiter->ops = &gsc_hdcp_ops; >+ ret = intel_hdcp_gsc_hdcp2_init(xe); >+ if (ret) >+ kfree(data); >+ >+ mutex_unlock(&xe->display.hdcp.hdcp_mutex); >+ >+ return ret; > } > > void intel_hdcp_gsc_fini(struct xe_device *xe) > { >+ struct intel_hdcp_gsc_message *hdcp_message = >+ xe->display.hdcp.hdcp_message; >+ >+ if (!hdcp_message) >+ return; >+ >+ xe_bo_unpin_map_no_vm(hdcp_message->hdcp_bo); >+ kfree(hdcp_message); >+} >+ >+static int xe_gsc_send_sync(struct xe_device *xe, >+ struct intel_hdcp_gsc_message *hdcp_message, >+ u32 msg_size_in, u32 msg_size_out, >+ u32 addr_out_off) >+{ >+ struct xe_gt *gt = hdcp_message->hdcp_bo->tile->media_gt; >+ struct iosys_map *map = &hdcp_message->hdcp_bo->vmap; >+ struct xe_gsc *gsc = >->uc.gsc; >+ int ret; >+ >+ ret = xe_gsc_pkt_submit_kernel(gsc, hdcp_message->hdcp_cmd_in, msg_size_in, >+ hdcp_message->hdcp_cmd_out, msg_size_out); >+ if (ret) { >+ drm_err(&xe->drm, "failed to send gsc HDCP msg (%d)\n", ret); >+ return ret; >+ } >+ >+ if (xe_gsc_check_and_update_pending(xe, map, 0, map, addr_out_off)) >+ return -EAGAIN; >+ >+ ret = xe_gsc_read_out_header(xe, map, addr_out_off, >+ sizeof(struct hdcp_cmd_header), NULL); >+ >+ return ret; > } > > ssize_t intel_hdcp_gsc_msg_send(struct xe_device *xe, u8 *msg_in, > size_t msg_in_len, u8 *msg_out, > size_t msg_out_len) > { >- return -ENODEV; >+ const size_t max_msg_size = PAGE_SIZE - HDCP_GSC_HEADER_SIZE; >+ struct intel_hdcp_gsc_message *hdcp_message; >+ u64 host_session_id; >+ u32 msg_size_in, msg_size_out; >+ u32 addr_out_off, addr_in_wr_off = 0; >+ int ret, tries = 0; >+ >+ if (msg_in_len > max_msg_size || msg_out_len > max_msg_size) { >+ ret = -ENOSPC; >+ goto out; >+ } >+ >+ msg_size_in = msg_in_len + HDCP_GSC_HEADER_SIZE; >+ msg_size_out = msg_out_len + HDCP_GSC_HEADER_SIZE; >+ hdcp_message = xe->display.hdcp.hdcp_message; >+ addr_out_off = PAGE_SIZE; >+ >+ host_session_id = xe_gsc_create_host_session_id(); >+ xe_device_mem_access_get(xe); >+ addr_in_wr_off = xe_gsc_emit_header(xe, &hdcp_message->hdcp_bo->vmap, >+ addr_in_wr_off, HECI_MEADDRESS_HDCP, >+ host_session_id, msg_in_len); >+ xe_map_memcpy_to(xe, &hdcp_message->hdcp_bo->vmap, addr_in_wr_off, >+ msg_in, msg_in_len); >+ /* >+ * Keep sending request in case the pending bit is set no need to add >+ * message handle as we are using same address hence loc. of header is >+ * same and it will contain the message handle. we will send the message >+ * 20 times each message 50 ms apart >+ */ >+ do { >+ ret = xe_gsc_send_sync(xe, hdcp_message, msg_size_in, msg_size_out, >+ addr_out_off); >+ >+ /* Only try again if gsc says so */ >+ if (ret != -EAGAIN) >+ break; >+ >+ msleep(50); >+ >+ } while (++tries < 20); >+ >+ if (ret) >+ goto out; >+ >+ xe_map_memcpy_from(xe, msg_out, &hdcp_message->hdcp_bo->vmap, >+ addr_out_off + HDCP_GSC_HEADER_SIZE, >+ msg_out_len); >+ >+out: >+ xe_device_mem_access_put(xe); >+ return ret; > } >diff --git a/drivers/gpu/drm/xe/xe_gsc_submit.c b/drivers/gpu/drm/xe/xe_gsc_submit.c >index 348994b271be..9a18f5667db3 100644 >--- a/drivers/gpu/drm/xe/xe_gsc_submit.c >+++ b/drivers/gpu/drm/xe/xe_gsc_submit.c >@@ -40,6 +40,21 @@ gsc_to_gt(struct xe_gsc *gsc) > return container_of(gsc, struct xe_gt, uc.gsc); > } > >+/** >+ * xe_gsc_get_host_session_id - Creates a random 64 bit host_session id with >+ * bits 56-63 masked. >+ * >+ * Returns: random host_session_id which can be used to send messages to gsc cs >+ */ >+u64 xe_gsc_create_host_session_id(void) >+{ >+ u64 host_session_id; >+ >+ get_random_bytes(&host_session_id, sizeof(u64)); >+ host_session_id &= ~HOST_SESSION_CLIENT_MASK; >+ return host_session_id; >+} >+ > /** > * xe_gsc_emit_header - write the MTL GSC header in memory > * @xe: the Xe device >diff --git a/drivers/gpu/drm/xe/xe_gsc_submit.h b/drivers/gpu/drm/xe/xe_gsc_submit.h >index 1939855031a6..1416b5745a4c 100644 >--- a/drivers/gpu/drm/xe/xe_gsc_submit.h >+++ b/drivers/gpu/drm/xe/xe_gsc_submit.h >@@ -28,4 +28,5 @@ int xe_gsc_read_out_header(struct xe_device *xe, > int xe_gsc_pkt_submit_kernel(struct xe_gsc *gsc, u64 addr_in, u32 size_in, > u64 addr_out, u32 size_out); > >+u64 xe_gsc_create_host_session_id(void); > #endif >-- >2.43.2 > ^ permalink raw reply [flat|nested] 21+ messages in thread
* ✗ Fi.CI.SPARSE: warning for XE HDCP Enablement (rev7) 2024-02-27 5:32 [PATCH 0/4] XE HDCP Enablement Suraj Kandpal ` (3 preceding siblings ...) 2024-02-27 5:32 ` [PATCH 4/4] drm/xe/hdcp: Enable HDCP for XE Suraj Kandpal @ 2024-02-27 7:24 ` Patchwork 2024-02-27 7:33 ` ✓ Fi.CI.BAT: success " Patchwork ` (5 subsequent siblings) 10 siblings, 0 replies; 21+ messages in thread From: Patchwork @ 2024-02-27 7:24 UTC (permalink / raw) To: Suraj Kandpal; +Cc: intel-gfx == Series Details == Series: XE HDCP Enablement (rev7) URL : https://patchwork.freedesktop.org/series/129456/ State : warning == Summary == Error: dim sparse failed Sparse version: v0.6.2 Fast mode used, each commit won't be checked separately. - +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' ^ permalink raw reply [flat|nested] 21+ messages in thread
* ✓ Fi.CI.BAT: success for XE HDCP Enablement (rev7) 2024-02-27 5:32 [PATCH 0/4] XE HDCP Enablement Suraj Kandpal ` (4 preceding siblings ...) 2024-02-27 7:24 ` ✗ Fi.CI.SPARSE: warning for XE HDCP Enablement (rev7) Patchwork @ 2024-02-27 7:33 ` Patchwork 2024-02-27 16:26 ` ✓ Fi.CI.IGT: " Patchwork ` (4 subsequent siblings) 10 siblings, 0 replies; 21+ messages in thread From: Patchwork @ 2024-02-27 7:33 UTC (permalink / raw) To: Suraj Kandpal; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 8946 bytes --] == Series Details == Series: XE HDCP Enablement (rev7) URL : https://patchwork.freedesktop.org/series/129456/ State : success == Summary == CI Bug Log - changes from CI_DRM_14345 -> Patchwork_129456v7 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/index.html Participating hosts (39 -> 39) ------------------------------ Additional (2): bat-kbl-2 bat-adlm-1 Missing (2): bat-arls-2 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_129456v7: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_selftest@live@execlists: - {bat-rpls-3}: [PASS][1] -> [TIMEOUT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/bat-rpls-3/igt@i915_selftest@live@execlists.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/bat-rpls-3/igt@i915_selftest@live@execlists.html Known issues ------------ Here are the changes found in Patchwork_129456v7 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-adlm-1: NOTRUN -> [SKIP][3] ([i915#3826]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/bat-adlm-1/igt@debugfs_test@basic-hwmon.html * igt@fbdev@eof: - bat-adlm-1: NOTRUN -> [SKIP][4] ([i915#2582]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/bat-adlm-1/igt@fbdev@eof.html * igt@fbdev@info: - bat-kbl-2: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#1849]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/bat-kbl-2/igt@fbdev@info.html - bat-adlm-1: NOTRUN -> [SKIP][6] ([i915#1849] / [i915#2582]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/bat-adlm-1/igt@fbdev@info.html * igt@gem_exec_fence@basic-busy@ccs0: - bat-arls-1: [PASS][7] -> [DMESG-WARN][8] ([i915#10194]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/bat-arls-1/igt@gem_exec_fence@basic-busy@ccs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/bat-arls-1/igt@gem_exec_fence@basic-busy@ccs0.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-kbl-2: NOTRUN -> [SKIP][9] ([fdo#109271]) +39 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html - bat-adlm-1: NOTRUN -> [SKIP][10] ([i915#4613]) +3 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/bat-adlm-1/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic: - bat-adlm-1: NOTRUN -> [SKIP][11] ([i915#3282]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/bat-adlm-1/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-adlm-1: NOTRUN -> [SKIP][12] ([i915#6621]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/bat-adlm-1/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@execlists: - fi-bsw-n3050: [PASS][13] -> [ABORT][14] ([i915#7911]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/fi-bsw-n3050/igt@i915_selftest@live@execlists.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/fi-bsw-n3050/igt@i915_selftest@live@execlists.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - bat-adlm-1: NOTRUN -> [SKIP][15] ([i915#9875] / [i915#9900]) +16 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/bat-adlm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@kms_flip@basic-plain-flip: - bat-adlm-1: NOTRUN -> [SKIP][16] ([i915#3637]) +3 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/bat-adlm-1/igt@kms_flip@basic-plain-flip.html * igt@kms_force_connector_basic@force-load-detect: - bat-adlm-1: NOTRUN -> [SKIP][17] ([fdo#109285]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/bat-adlm-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@basic: - bat-adlm-1: NOTRUN -> [SKIP][18] ([i915#1849] / [i915#4342]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/bat-adlm-1/igt@kms_frontbuffer_tracking@basic.html * igt@kms_pm_backlight@basic-brightness: - bat-adlm-1: NOTRUN -> [SKIP][19] ([i915#5354]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/bat-adlm-1/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-adlm-1: NOTRUN -> [SKIP][20] ([i915#9673] / [i915#9732]) +3 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/bat-adlm-1/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adlm-1: NOTRUN -> [SKIP][21] ([i915#3555]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/bat-adlm-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-adlm-1: NOTRUN -> [SKIP][22] ([i915#3708] / [i915#9900]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/bat-adlm-1/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-write: - bat-adlm-1: NOTRUN -> [SKIP][23] ([i915#3708]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/bat-adlm-1/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@gem_exec_create@basic@smem: - bat-arls-1: [DMESG-WARN][24] ([i915#10194]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/bat-arls-1/igt@gem_exec_create@basic@smem.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/bat-arls-1/igt@gem_exec_create@basic@smem.html * igt@i915_selftest@live@gem_contexts: - bat-atsm-1: [INCOMPLETE][26] ([i915#10094] / [i915#10137]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/bat-atsm-1/igt@i915_selftest@live@gem_contexts.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/bat-atsm-1/igt@i915_selftest@live@gem_contexts.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#10094]: https://gitlab.freedesktop.org/drm/intel/issues/10094 [i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137 [i915#10194]: https://gitlab.freedesktop.org/drm/intel/issues/10194 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#4342]: https://gitlab.freedesktop.org/drm/intel/issues/4342 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9875]: https://gitlab.freedesktop.org/drm/intel/issues/9875 [i915#9900]: https://gitlab.freedesktop.org/drm/intel/issues/9900 Build changes ------------- * Linux: CI_DRM_14345 -> Patchwork_129456v7 CI-20190529: 20190529 CI_DRM_14345: b3552bf1e79de200a6ca49c518ead46a1256618c @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7731: 17f897a81868fb35c6a7033a8b07256659742248 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_129456v7: b3552bf1e79de200a6ca49c518ead46a1256618c @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits ab36a23e8acf drm/xe/hdcp: Enable HDCP for XE 051c0080a7e3 drm/xe: Use gsc_proxy_init_done to check proxy status 60d8156958c4 drm/xe/hdcp: Use xe_device struct efb36d221e5f drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/index.html [-- Attachment #2: Type: text/html, Size: 10550 bytes --] ^ permalink raw reply [flat|nested] 21+ messages in thread
* ✓ Fi.CI.IGT: success for XE HDCP Enablement (rev7) 2024-02-27 5:32 [PATCH 0/4] XE HDCP Enablement Suraj Kandpal ` (5 preceding siblings ...) 2024-02-27 7:33 ` ✓ Fi.CI.BAT: success " Patchwork @ 2024-02-27 16:26 ` Patchwork 2024-02-28 6:34 ` ✗ Fi.CI.SPARSE: warning for XE HDCP Enablement (rev8) Patchwork ` (3 subsequent siblings) 10 siblings, 0 replies; 21+ messages in thread From: Patchwork @ 2024-02-27 16:26 UTC (permalink / raw) To: Suraj Kandpal; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 71952 bytes --] == Series Details == Series: XE HDCP Enablement (rev7) URL : https://patchwork.freedesktop.org/series/129456/ State : success == Summary == CI Bug Log - changes from CI_DRM_14345_full -> Patchwork_129456v7_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in Patchwork_129456v7_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][1] ([i915#8411]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-mtlp: NOTRUN -> [SKIP][2] ([i915#7701]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@virtual-busy-hang: - shard-dg2: NOTRUN -> [SKIP][3] ([i915#8414]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-10/igt@drm_fdinfo@virtual-busy-hang.html * igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][4] ([i915#7297]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-6/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-smem-lmem0.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#8555]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-stop.html - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8555]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@invalid-args: - shard-tglu: NOTRUN -> [SKIP][7] ([i915#280]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-4/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#280]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-10/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@kms: - shard-dg1: NOTRUN -> [FAIL][9] ([i915#5784]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][10] -> [FAIL][11] ([i915#5784]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-dg1-18/igt@gem_eio@unwedge-stress.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-17/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-true-hang: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#4812]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_capture@many-4k-zero: - shard-dg2: NOTRUN -> [FAIL][13] ([i915#9606]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-10/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_endless@dispatch@rcs0: - shard-dg2: [PASS][14] -> [TIMEOUT][15] ([i915#3778] / [i915#7016]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-dg2-2/igt@gem_exec_endless@dispatch@rcs0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-6/igt@gem_exec_endless@dispatch@rcs0.html * igt@gem_exec_fair@basic-deadline: - shard-glk: NOTRUN -> [FAIL][16] ([i915#2846]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-glk8/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-flow: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#4473] / [i915#4771]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@gem_exec_fair@basic-flow.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-tglu: NOTRUN -> [FAIL][18] ([i915#2842]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-4/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-rkl: [PASS][19] -> [FAIL][20] ([i915#2842]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#4812]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-10/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-batch-kernel-default-uc: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#3539] / [i915#4852]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@gem_exec_flush@basic-batch-kernel-default-uc.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#3539] / [i915#4852]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#7697]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-10/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#5107]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_params@secure-non-master: - shard-mtlp: NOTRUN -> [SKIP][26] ([fdo#112283]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-concurrent0: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#3281]) +4 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-17/igt@gem_exec_reloc@basic-concurrent0.html * igt@gem_exec_reloc@basic-cpu-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#3281]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html * igt@gem_exec_reloc@basic-write-gtt: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#3281]) +8 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-2/igt@gem_exec_reloc@basic-write-gtt.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#4860]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4860]) +2 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-2/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][32] ([i915#4613]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-10/igt@gem_lmem_swapping@verify-ccs.html - shard-glk: NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#4613]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-glk9/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4565]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4613]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#284]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-10/igt@gem_media_vme.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4077]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_gtt@hang: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4077]) +6 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-10/igt@gem_mmap_gtt@hang.html * igt@gem_mmap_gtt@ptrace: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4077]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@gem_mmap_gtt@ptrace.html * igt@gem_mmap_wc@fault-concurrent: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4083]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-2/igt@gem_mmap_wc@fault-concurrent.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3282]) +6 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu: NOTRUN -> [WARN][42] ([i915#2658]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-4/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@fail-invalid-protected-context: - shard-tglu: NOTRUN -> [SKIP][43] ([i915#4270]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-10/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4270]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4270]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4270]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_readwrite@read-write: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3282]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-17/igt@gem_readwrite@read-write.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#8428]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4079]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4885]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-2/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#3297]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-10/igt@gem_userptr_blits@coherency-unsync.html - shard-dg1: NOTRUN -> [SKIP][52] ([i915#3297]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-17/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#3297]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@gem_userptr_blits@dmabuf-sync.html * igt@gen7_exec_parse@basic-allowed: - shard-tglu: NOTRUN -> [SKIP][54] ([fdo#109289]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-4/igt@gen7_exec_parse@basic-allowed.html * igt@gen9_exec_parse@bb-start-param: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#2856]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#2856]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-10/igt@gen9_exec_parse@unaligned-access.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][57] ([i915#8399]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-4/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_rc6_residency@rc6-fence@gt0: - shard-tglu: NOTRUN -> [WARN][58] ([i915#2681]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-fence@gt0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-dg1: [PASS][59] -> [FAIL][60] ([i915#3591]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#6621]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-2/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@reset: - shard-tglu: [PASS][62] -> [INCOMPLETE][63] ([i915#10137]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-tglu-5/igt@i915_pm_rps@reset.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-6/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#8925]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-10/igt@i915_pm_rps@thresholds-park@gt0.html * igt@intel_hwmon@hwmon-write: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#7707]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4215] / [i915#5190]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4538] / [i915#5286]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-17/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][68] ([fdo#111615] / [i915#5286]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-4/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][69] ([fdo#111614]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][70] ([fdo#111614]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][71] ([fdo#111614]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-4/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#3638]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: [PASS][73] -> [FAIL][74] ([i915#3743]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-tglu-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-mtlp: NOTRUN -> [SKIP][75] ([fdo#111615]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#4538] / [i915#5190]) +8 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4538]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html - shard-tglu: NOTRUN -> [SKIP][78] ([fdo#111615]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-10/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_cdclk@mode-transition: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3742]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@kms_cdclk@mode-transition.html - shard-tglu: NOTRUN -> [SKIP][80] ([i915#3742]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-10/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#7213] / [i915#9010]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#7213]) +3 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4087]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#7828]) +4 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-4/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-0-50: - shard-dg2: NOTRUN -> [SKIP][85] ([fdo#111827]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-2/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg1: NOTRUN -> [SKIP][86] ([fdo#111827]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-17/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#7828]) +9 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-2/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#7828]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd-after-suspend: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#7828]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#3299]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#9424]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-2/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#7118]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-10/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#7118] / [i915#9424]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-2/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#3359]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-tglu: NOTRUN -> [SKIP][95] ([i915#3555]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-10/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-256x85: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#8814]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#3359]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#3555] / [i915#8814]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-snb: [PASS][99] -> [SKIP][100] ([fdo#109271]) +8 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-snb7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-snb5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][101] ([fdo#109274] / [i915#5354]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4213]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#9809]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-tglu: NOTRUN -> [SKIP][104] ([fdo#109274] / [fdo#111767]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-tglu: NOTRUN -> [SKIP][105] ([fdo#109274]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#9067]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-10/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@torture-move@pipe-a: - shard-dg1: [PASS][107] -> [DMESG-WARN][108] ([i915#10166]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-dg1-18/igt@kms_cursor_legacy@torture-move@pipe-a.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-15/igt@kms_cursor_legacy@torture-move@pipe-a.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][109] ([fdo#110189] / [i915#9227]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][110] ([fdo#110189] / [i915#9723]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#3555]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#3804]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html - shard-tglu: NOTRUN -> [SKIP][113] ([i915#3804]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#3555] / [i915#8812]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-fractional-bpp: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#3840] / [i915#9688]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#3840] / [i915#9053]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#3637]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#8381]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-2/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][119] ([fdo#109274] / [i915#3637] / [i915#3966]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-4/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg2: NOTRUN -> [SKIP][120] ([fdo#109274]) +8 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-2/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg1: NOTRUN -> [SKIP][121] ([fdo#111825] / [i915#9934]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-tglu: NOTRUN -> [SKIP][122] ([fdo#109274] / [i915#3637]) +3 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-10/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#2587] / [i915#2672]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#2672]) +5 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][125] ([i915#2587] / [i915#2672]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][126] ([fdo#109285]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-2/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2: [PASS][127] -> [FAIL][128] ([i915#6880]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt: - shard-glk: [PASS][129] -> [DMESG-FAIL][130] ([i915#118]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-glk8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-glk2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#1825]) +7 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][132] ([fdo#109280]) +15 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][133] ([fdo#111825]) +6 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#5354]) +32 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#8708]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#3458]) +4 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-glk: NOTRUN -> [SKIP][137] ([fdo#109271]) +65 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-glk9/igt@kms_frontbuffer_tracking@plane-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][138] ([i915#10070]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][139] ([i915#10070]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@kms_frontbuffer_tracking@plane-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][140] ([i915#10070]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-10/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#8708]) +10 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#3458]) +18 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#8708]) +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#3555] / [i915#8228]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-2/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][145] ([fdo#109274] / [i915#5354] / [i915#9423]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][146] ([i915#8292]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#9423]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#9423]) +15 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-15/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#9423]) +7 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#5176] / [i915#9423]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#5235]) +7 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#5235] / [i915#9423]) +19 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#5235]) +3 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#9685]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#9685]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-4/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#9519]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][157] -> [SKIP][158] ([i915#9519]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html - shard-dg2: [PASS][159] -> [SKIP][160] ([i915#9519]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#6524] / [i915#6805]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-2/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][162] ([fdo#110189]) +13 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-4/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][163] ([fdo#110189]) +5 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html - shard-dg1: NOTRUN -> [SKIP][164] ([fdo#110189]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html - shard-glk: NOTRUN -> [SKIP][165] ([fdo#109271] / [fdo#110189]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-glk9/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#4348]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#9688]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@kms_psr@fbc-psr-primary-mmap-gtt@edp-1.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#9732]) +17 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@fbc-psr2-no-drrs: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#9732]) +7 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-10/igt@kms_psr@fbc-psr2-no-drrs.html * igt@kms_psr@psr2-primary-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#9732]) +4 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@kms_psr@psr2-primary-mmap-cpu.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-rkl: [PASS][171] -> [ABORT][172] ([i915#8875]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-rkl-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-rkl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#5190]) +8 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#4235]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#4235]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#3555]) +4 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#8623]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [PASS][178] -> [FAIL][179] ([i915#9196]) +1 other test fail [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#9906]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-pixel-formats: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#2437] / [i915#9412]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-10/igt@kms_writeback@writeback-pixel-formats.html - shard-glk: NOTRUN -> [SKIP][182] ([fdo#109271] / [i915#2437]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-glk9/igt@kms_writeback@writeback-pixel-formats.html - shard-dg2: NOTRUN -> [SKIP][183] ([i915#2437] / [i915#9412]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@kms_writeback@writeback-pixel-formats.html - shard-dg1: NOTRUN -> [SKIP][184] ([i915#2437] / [i915#9412]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#2434] / [i915#7387]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-2/igt@perf@mi-rpc.html * igt@perf@per-context-mode-unprivileged: - shard-dg2: NOTRUN -> [SKIP][186] ([fdo#109289]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@event-wait@rcs0: - shard-tglu: NOTRUN -> [SKIP][187] ([fdo#112283]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-4/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][188] ([i915#6806]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-10/igt@perf_pmu@frequency@gt0.html - shard-dg1: NOTRUN -> [FAIL][189] ([i915#6806]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-17/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#8516]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-4/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_udl: - shard-dg2: NOTRUN -> [SKIP][191] ([fdo#109291]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-2/igt@prime_udl.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#3291] / [i915#3708]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][193] ([fdo#109295]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-10/igt@prime_vgem@fence-write-hang.html - shard-dg2: NOTRUN -> [SKIP][194] ([i915#3708]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@prime_vgem@fence-write-hang.html - shard-dg1: NOTRUN -> [SKIP][195] ([i915#3708]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@prime_vgem@fence-write-hang.html * igt@runner@aborted: - shard-snb: NOTRUN -> [FAIL][196] ([i915#8852]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-snb2/igt@runner@aborted.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#9917]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-10/igt@sriov_basic@enable-vfs-autoprobe-on.html - shard-dg2: NOTRUN -> [SKIP][198] ([i915#9917]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@sriov_basic@enable-vfs-autoprobe-on.html - shard-dg1: NOTRUN -> [SKIP][199] ([i915#9917]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#9917]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][201] ([i915#9779]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-dg1: NOTRUN -> [FAIL][202] ([i915#9779]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@syncobj_wait@invalid-wait-zero-handles.html - shard-tglu: NOTRUN -> [FAIL][203] ([i915#9779]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-10/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@v3d/v3d_perfmon@create-two-perfmon: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#2575]) +2 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@v3d/v3d_perfmon@create-two-perfmon.html * igt@v3d/v3d_submit_cl@single-out-sync: - shard-tglu: NOTRUN -> [SKIP][205] ([fdo#109315] / [i915#2575]) +5 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-4/igt@v3d/v3d_submit_cl@single-out-sync.html * igt@v3d/v3d_submit_csd@bad-extension: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#2575]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@v3d/v3d_submit_csd@bad-extension.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#2575]) +12 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-2/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_label_bo@set-bad-name: - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#7711]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-7/igt@vc4/vc4_label_bo@set-bad-name.html * igt@vc4/vc4_perfmon@create-perfmon-0: - shard-tglu: NOTRUN -> [SKIP][209] ([i915#2575]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-4/igt@vc4/vc4_perfmon@create-perfmon-0.html * igt@vc4/vc4_tiling@set-bad-modifier: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#7711]) +6 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@vc4/vc4_tiling@set-bad-modifier.html - shard-dg1: NOTRUN -> [SKIP][211] ([i915#7711]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@vc4/vc4_tiling@set-bad-modifier.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][212] ([i915#7297]) -> [PASS][213] [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-dg2-2/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-6/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [FAIL][214] ([i915#6268]) -> [PASS][215] [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html - shard-tglu: [FAIL][216] ([i915#6268]) -> [PASS][217] [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-6/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][218] ([i915#5784]) -> [PASS][219] [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-dg1-12/igt@gem_eio@reset-stress.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-12/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [FAIL][220] ([i915#2842]) -> [PASS][221] [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-glk5/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-rkl: [FAIL][222] ([i915#2842]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-rkl-1/igt@gem_exec_fair@basic-none@vcs0.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-rkl-7/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [FAIL][224] ([i915#2842]) -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-tglu-2/igt@gem_exec_fair@basic-pace@rcs0.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-3/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [TIMEOUT][226] ([i915#5493]) -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [INCOMPLETE][228] ([i915#10137] / [i915#9820] / [i915#9849]) -> [PASS][229] [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [INCOMPLETE][230] ([i915#10137]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-tglu-6/igt@i915_module_load@reload-with-fault-injection.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [INCOMPLETE][232] ([i915#10137] / [i915#9820] / [i915#9849]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [FAIL][234] ([i915#3763] / [i915#5138]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-mtlp-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][236] ([i915#5138]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][238] ([i915#3743]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][240] ([i915#2346]) -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-snb: [SKIP][242] ([fdo#109271]) -> [PASS][243] +5 other tests pass [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [SKIP][244] ([i915#9519]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-dg2-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][246] ([i915#9519]) -> [PASS][247] +2 other tests pass [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][248] ([i915#7484]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html #### Warnings #### * igt@i915_pm_rps@reset: - shard-dg2: [FAIL][250] -> [FAIL][251] ([i915#8346]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-dg2-2/igt@i915_pm_rps@reset.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg2-6/igt@i915_pm_rps@reset.html * igt@kms_content_protection@atomic: - shard-snb: [INCOMPLETE][252] ([i915#8816]) -> [SKIP][253] ([fdo#109271]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-snb7/igt@kms_content_protection@atomic.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-snb6/igt@kms_content_protection@atomic.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][254] ([i915#9424]) -> [SKIP][255] ([i915#9433]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-dg1-15/igt@kms_content_protection@mei-interface.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-dg1-13/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent: - shard-snb: [SKIP][256] ([fdo#109271]) -> [INCOMPLETE][257] ([i915#8816]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-snb4/igt@kms_content_protection@uevent.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-snb7/igt@kms_content_protection@uevent.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][258] ([fdo#110189] / [i915#3955]) -> [SKIP][259] ([i915#3955]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-rkl-1/igt@kms_fbcon_fbt@psr.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-rkl-3/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][260] ([i915#3955]) -> [SKIP][261] ([fdo#110189] / [i915#3955]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-rkl-3/igt@kms_fbcon_fbt@psr-suspend.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-rkl-5/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render: - shard-snb: [SKIP][262] ([fdo#109271]) -> [SKIP][263] ([fdo#109271] / [fdo#111767]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-snb6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][264] ([i915#4070] / [i915#4816]) -> [SKIP][265] ([i915#4816]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14345/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#10070]: https://gitlab.freedesktop.org/drm/intel/issues/10070 [i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137 [i915#10166]: https://gitlab.freedesktop.org/drm/intel/issues/10166 [i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3763]: https://gitlab.freedesktop.org/drm/intel/issues/3763 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7016]: https://gitlab.freedesktop.org/drm/intel/issues/7016 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816 [i915#8852]: https://gitlab.freedesktop.org/drm/intel/issues/8852 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 Build changes ------------- * Linux: CI_DRM_14345 -> Patchwork_129456v7 CI-20190529: 20190529 CI_DRM_14345: b3552bf1e79de200a6ca49c518ead46a1256618c @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7731: 17f897a81868fb35c6a7033a8b07256659742248 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_129456v7: b3552bf1e79de200a6ca49c518ead46a1256618c @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v7/index.html [-- Attachment #2: Type: text/html, Size: 86466 bytes --] ^ permalink raw reply [flat|nested] 21+ messages in thread
* ✗ Fi.CI.SPARSE: warning for XE HDCP Enablement (rev8) 2024-02-27 5:32 [PATCH 0/4] XE HDCP Enablement Suraj Kandpal ` (6 preceding siblings ...) 2024-02-27 16:26 ` ✓ Fi.CI.IGT: " Patchwork @ 2024-02-28 6:34 ` Patchwork 2024-02-28 6:37 ` ✓ Fi.CI.BAT: success " Patchwork ` (2 subsequent siblings) 10 siblings, 0 replies; 21+ messages in thread From: Patchwork @ 2024-02-28 6:34 UTC (permalink / raw) To: Kandpal, Suraj; +Cc: intel-gfx == Series Details == Series: XE HDCP Enablement (rev8) URL : https://patchwork.freedesktop.org/series/129456/ State : warning == Summary == Error: dim sparse failed Sparse version: v0.6.2 Fast mode used, each commit won't be checked separately. - +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' ^ permalink raw reply [flat|nested] 21+ messages in thread
* ✓ Fi.CI.BAT: success for XE HDCP Enablement (rev8) 2024-02-27 5:32 [PATCH 0/4] XE HDCP Enablement Suraj Kandpal ` (7 preceding siblings ...) 2024-02-28 6:34 ` ✗ Fi.CI.SPARSE: warning for XE HDCP Enablement (rev8) Patchwork @ 2024-02-28 6:37 ` Patchwork 2024-02-28 18:14 ` ✓ Fi.CI.IGT: " Patchwork 2024-03-05 13:38 ` [PATCH 0/4] XE HDCP Enablement Lucas De Marchi 10 siblings, 0 replies; 21+ messages in thread From: Patchwork @ 2024-02-28 6:37 UTC (permalink / raw) To: Kandpal, Suraj; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 10008 bytes --] == Series Details == Series: XE HDCP Enablement (rev8) URL : https://patchwork.freedesktop.org/series/129456/ State : success == Summary == CI Bug Log - changes from CI_DRM_14353 -> Patchwork_129456v8 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/index.html Participating hosts (42 -> 41) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_129456v8 that come from known issues: ### CI changes ### #### Possible fixes #### * boot: - bat-arls-3: [FAIL][1] ([i915#10234]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/bat-arls-3/boot.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/bat-arls-3/boot.html - fi-cfl-8109u: [FAIL][3] ([i915#8293]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/fi-cfl-8109u/boot.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/fi-cfl-8109u/boot.html ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-arls-3: NOTRUN -> [SKIP][5] ([i915#9318]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/bat-arls-3/igt@debugfs_test@basic-hwmon.html * igt@gem_huc_copy@huc-copy: - fi-cfl-8109u: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#2190]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/fi-cfl-8109u/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-arls-3: NOTRUN -> [SKIP][7] ([i915#10213]) +3 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/bat-arls-3/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@verify-random: - fi-cfl-8109u: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#4613]) +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/fi-cfl-8109u/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@basic: - bat-arls-3: NOTRUN -> [SKIP][9] ([i915#4083]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/bat-arls-3/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-arls-3: NOTRUN -> [SKIP][10] ([i915#10197] / [i915#10211] / [i915#4079]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/bat-arls-3/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_blits@basic: - bat-arls-3: NOTRUN -> [SKIP][11] ([i915#10196] / [i915#4077]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/bat-arls-3/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_basic: - bat-arls-3: NOTRUN -> [SKIP][12] ([i915#10206] / [i915#4079]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/bat-arls-3/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-arls-3: NOTRUN -> [SKIP][13] ([i915#10209]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/bat-arls-3/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gem_contexts: - bat-atsm-1: [PASS][14] -> [INCOMPLETE][15] ([i915#10094] / [i915#10137]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/bat-atsm-1/igt@i915_selftest@live@gem_contexts.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/bat-atsm-1/igt@i915_selftest@live@gem_contexts.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-arls-3: NOTRUN -> [SKIP][16] ([i915#10200]) +9 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/bat-arls-3/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - bat-arls-3: NOTRUN -> [SKIP][17] ([i915#10202]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/bat-arls-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_dsc@dsc-basic: - fi-cfl-8109u: NOTRUN -> [SKIP][18] ([fdo#109271]) +11 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/fi-cfl-8109u/igt@kms_dsc@dsc-basic.html - bat-arls-3: NOTRUN -> [SKIP][19] ([i915#9886]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/bat-arls-3/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-arls-3: NOTRUN -> [SKIP][20] ([i915#10207]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/bat-arls-3/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - bat-arls-3: NOTRUN -> [SKIP][21] ([i915#9812]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/bat-arls-3/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-mmap-gtt: - bat-arls-3: NOTRUN -> [SKIP][22] ([i915#9732]) +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/bat-arls-3/igt@kms_psr@psr-primary-mmap-gtt.html * igt@kms_setmode@basic-clone-single-crtc: - bat-arls-3: NOTRUN -> [SKIP][23] ([i915#10208] / [i915#8809]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/bat-arls-3/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-arls-3: NOTRUN -> [SKIP][24] ([i915#10212] / [i915#3708]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/bat-arls-3/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-arls-3: NOTRUN -> [SKIP][25] ([i915#10196] / [i915#3708] / [i915#4077]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/bat-arls-3/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-read: - bat-arls-3: NOTRUN -> [SKIP][26] ([i915#10214] / [i915#3708]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/bat-arls-3/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - bat-arls-3: NOTRUN -> [SKIP][27] ([i915#10216] / [i915#3708]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/bat-arls-3/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live@late_gt_pm: - bat-arls-2: [DMESG-FAIL][28] ([i915#10262]) -> [PASS][29] +35 other tests pass [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/bat-arls-2/igt@i915_selftest@live@late_gt_pm.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/bat-arls-2/igt@i915_selftest@live@late_gt_pm.html * igt@i915_selftest@live@sanitycheck: - bat-arls-2: [DMESG-WARN][30] -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/bat-arls-2/igt@i915_selftest@live@sanitycheck.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/bat-arls-2/igt@i915_selftest@live@sanitycheck.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#10094]: https://gitlab.freedesktop.org/drm/intel/issues/10094 [i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137 [i915#10196]: https://gitlab.freedesktop.org/drm/intel/issues/10196 [i915#10197]: https://gitlab.freedesktop.org/drm/intel/issues/10197 [i915#10200]: https://gitlab.freedesktop.org/drm/intel/issues/10200 [i915#10202]: https://gitlab.freedesktop.org/drm/intel/issues/10202 [i915#10206]: https://gitlab.freedesktop.org/drm/intel/issues/10206 [i915#10207]: https://gitlab.freedesktop.org/drm/intel/issues/10207 [i915#10208]: https://gitlab.freedesktop.org/drm/intel/issues/10208 [i915#10209]: https://gitlab.freedesktop.org/drm/intel/issues/10209 [i915#10211]: https://gitlab.freedesktop.org/drm/intel/issues/10211 [i915#10212]: https://gitlab.freedesktop.org/drm/intel/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/intel/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/intel/issues/10214 [i915#10216]: https://gitlab.freedesktop.org/drm/intel/issues/10216 [i915#10234]: https://gitlab.freedesktop.org/drm/intel/issues/10234 [i915#10262]: https://gitlab.freedesktop.org/drm/intel/issues/10262 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812 [i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886 Build changes ------------- * Linux: CI_DRM_14353 -> Patchwork_129456v8 CI-20190529: 20190529 CI_DRM_14353: 269ea0ff7988bc743e1f66a928e778950eabf59c @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7731: 17f897a81868fb35c6a7033a8b07256659742248 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_129456v8: 269ea0ff7988bc743e1f66a928e778950eabf59c @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits 7af91b7d4a90 drm/xe/hdcp: Enable HDCP for XE eacdd8dadec1 drm/xe: Use gsc_proxy_init_done to check proxy status 1ef990acfca6 drm/xe/hdcp: Use xe_device struct 19fa1f2160d4 drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/index.html [-- Attachment #2: Type: text/html, Size: 11733 bytes --] ^ permalink raw reply [flat|nested] 21+ messages in thread
* ✓ Fi.CI.IGT: success for XE HDCP Enablement (rev8) 2024-02-27 5:32 [PATCH 0/4] XE HDCP Enablement Suraj Kandpal ` (8 preceding siblings ...) 2024-02-28 6:37 ` ✓ Fi.CI.BAT: success " Patchwork @ 2024-02-28 18:14 ` Patchwork 2024-03-05 13:38 ` [PATCH 0/4] XE HDCP Enablement Lucas De Marchi 10 siblings, 0 replies; 21+ messages in thread From: Patchwork @ 2024-02-28 18:14 UTC (permalink / raw) To: Kandpal, Suraj; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 61480 bytes --] == Series Details == Series: XE HDCP Enablement (rev8) URL : https://patchwork.freedesktop.org/series/129456/ State : success == Summary == CI Bug Log - changes from CI_DRM_14353_full -> Patchwork_129456v8_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in Patchwork_129456v8_full that come from known issues: ### CI changes ### #### Issues hit #### * boot: - shard-rkl: ([PASS][1], [PASS][2], [PASS][3], [PASS][4], [PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22]) -> ([PASS][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [FAIL][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45]) ([i915#8293]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-7/boot.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-5/boot.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-5/boot.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-5/boot.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-4/boot.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-4/boot.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-4/boot.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-4/boot.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-3/boot.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-2/boot.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-2/boot.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-1/boot.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-1/boot.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-1/boot.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-7/boot.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-7/boot.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-7/boot.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-6/boot.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-6/boot.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-6/boot.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-5/boot.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-5/boot.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/boot.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-7/boot.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-7/boot.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-7/boot.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-7/boot.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-7/boot.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-6/boot.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-6/boot.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/boot.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/boot.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/boot.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/boot.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/boot.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-4/boot.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-4/boot.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-4/boot.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-4/boot.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-3/boot.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-3/boot.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-2/boot.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/boot.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/boot.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/boot.html ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#6230]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#8411]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/igt@api_intel_bb@object-reloc-purge-cache.html * igt@debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#9318]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@debugfs_test@basic-hwmon.html * igt@drm_fdinfo@busy-check-all@ccs3: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#8414]) +9 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-10/igt@drm_fdinfo@busy-check-all@ccs3.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][50] -> [FAIL][51] ([i915#7742]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-5/igt@drm_fdinfo@most-busy-check-all@rcs0.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-6/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3936]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-10/igt@gem_busy@semaphore.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#3555] / [i915#9323]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][54] -> [INCOMPLETE][55] ([i915#7297]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [ABORT][56] ([i915#10183]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][57] -> [FAIL][58] ([i915#6268]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_freq@sysfs@gt0: - shard-dg2: [PASS][59] -> [FAIL][60] ([i915#9561]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-2/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#8555]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#5882]) +9 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html * igt@gem_eio@hibernate: - shard-rkl: NOTRUN -> [ABORT][63] ([i915#7975] / [i915#8213]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4036]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-6/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#4525]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#6344]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_capture@many-4k-zero: - shard-glk: NOTRUN -> [FAIL][67] ([i915#9606]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-glk7/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_endless@dispatch@rcs0: - shard-mtlp: [PASS][68] -> [TIMEOUT][69] ([i915#3778] / [i915#7016]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-mtlp-5/igt@gem_exec_endless@dispatch@rcs0.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-mtlp-1/igt@gem_exec_endless@dispatch@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][70] ([i915#2842]) +3 other tests fail [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace-share: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#3539] / [i915#4852]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@gem_exec_fair@basic-pace-share.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [PASS][72] -> [FAIL][73] ([i915#2842]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-tglu-4/igt@gem_exec_fair@basic-pace@rcs0.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-tglu-6/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fence@concurrent: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4812]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@gem_exec_fence@concurrent.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3539]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-6/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3281]) +12 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-write-read-active: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#3281]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4537] / [i915#4812]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-6/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s0@lmem0: - shard-dg2: [PASS][79] -> [INCOMPLETE][80] ([i915#9275]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-dg2-6/igt@gem_exec_suspend@basic-s0@lmem0.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-5/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [PASS][81] -> [ABORT][82] ([i915#7975] / [i915#8213]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-tglu-3/igt@gem_exec_suspend@basic-s4-devices@smem.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4860]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#4613] / [i915#7582]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@random-engines: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#4613]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify: - shard-glk: NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#4613]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-glk4/igt@gem_lmem_swapping@verify.html * igt@gem_mmap_gtt@basic-copy: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4077]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@gem_mmap_gtt@basic-copy.html * igt@gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4083]) +5 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@gem_mmap_wc@invalid-flags.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3282]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-10/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_pwrite@basic-self: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#3282]) +5 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/igt@gem_pwrite@basic-self.html * igt@gem_pxp@create-valid-protected-context: - shard-rkl: NOTRUN -> [SKIP][91] ([i915#4270]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@gem_pxp@create-valid-protected-context.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#5190]) +5 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-6/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_userptr_blits@access-control: - shard-glk: NOTRUN -> [SKIP][93] ([fdo#109271]) +73 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-glk4/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][94] ([fdo#110542]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#3282] / [i915#3297]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-6/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#3297] / [i915#4880]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@unsync-overlap: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#3297]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#3297]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-10/igt@gem_userptr_blits@unsync-unmap.html * igt@gen3_render_tiledx_blits: - shard-dg2: NOTRUN -> [SKIP][99] ([fdo#109289]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@gen3_render_tiledx_blits.html * igt@gen7_exec_parse@chained-batch: - shard-rkl: NOTRUN -> [SKIP][100] ([fdo#109289]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/igt@gen7_exec_parse@chained-batch.html * igt@gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#2527]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#2856]) +4 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-10/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [PASS][103] -> [INCOMPLETE][104] ([i915#10137]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-dg1: [PASS][105] -> [FAIL][106] ([i915#3591]) +1 other test fail [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#6621]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-6/igt@i915_pm_rps@basic-api.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#4387]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@i915_pm_sseu@full-enable.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#7984]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/igt@i915_power@sanity.html * igt@i915_selftest@mock@memory_region: - shard-rkl: NOTRUN -> [DMESG-WARN][110] ([i915#9311]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#4212]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-10/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#8709]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#8709]) +7 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#1769] / [i915#3555]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#5286]) +4 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][116] ([fdo#111614] / [i915#3638]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][117] ([fdo#111614]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5190]) +7 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-rkl: NOTRUN -> [SKIP][119] ([fdo#111615]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][120] ([fdo#110723]) +4 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg2: NOTRUN -> [SKIP][121] ([fdo#111827]) +3 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@degamma: - shard-rkl: NOTRUN -> [SKIP][122] ([fdo#111827]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#7828]) +5 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_frames@vga-frame-dump: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#7828]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@kms_chamelium_frames@vga-frame-dump.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#3299]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-10/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#7118] / [i915#9424]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-6/igt@kms_content_protection@legacy.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#3555]) +5 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#3359]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][129] ([fdo#109274] / [i915#5354]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-rkl: NOTRUN -> [SKIP][130] ([fdo#111767] / [fdo#111825]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][131] -> [FAIL][132] ([i915#2346]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@torture-move@pipe-a: - shard-dg2: NOTRUN -> [DMESG-WARN][133] ([i915#10166]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-6/igt@kms_cursor_legacy@torture-move@pipe-a.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#9833]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-10/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][135] ([fdo#110189] / [i915#9723]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][136] ([fdo#110189] / [i915#9723]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg1-12/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html * igt@kms_display_modes@extended-mode-basic: - shard-snb: NOTRUN -> [SKIP][137] ([fdo#109271]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-snb4/igt@kms_display_modes@extended-mode-basic.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#8588]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#3555]) +5 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#3555] / [i915#3840]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#3840] / [i915#9053]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#9337]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][143] ([fdo#109274] / [fdo#111767]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: NOTRUN -> [SKIP][144] ([fdo#111825]) +10 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][145] ([fdo#109274]) +4 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-6/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#2672]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#2672]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#5354]) +19 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][149] ([fdo#111767] / [i915#5354]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite: - shard-snb: [PASS][150] -> [SKIP][151] ([fdo#109271]) +6 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#10055]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#3023]) +16 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#8708]) +10 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#3458]) +15 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][156] ([fdo#111767] / [fdo#111825] / [i915#1825]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][157] ([fdo#111825] / [i915#1825]) +18 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_hdr@static-toggle-dpms: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#8228]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@kms_hdr@static-toggle-dpms.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#4070] / [i915#4816]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#6301]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-6/igt@kms_panel_fitting@legacy.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][161] ([i915#7862]) +1 other test fail [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-glk7/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#6953] / [i915#9423]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#9423]) +3 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#9423]) +9 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][165] ([i915#9423]) +11 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg1-13/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#5235]) +3 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#5235] / [i915#9423]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#5235] / [i915#9423] / [i915#9728]) +7 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#5235]) +3 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#9685]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#3361]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#9519]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@pc8-residency: - shard-rkl: NOTRUN -> [SKIP][173] ([fdo#109293] / [fdo#109506]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@kms_pm_rpm@pc8-residency.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#6524]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][175] ([fdo#110189]) +2 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-6/igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][176] ([fdo#110189]) +3 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][177] ([fdo#109271] / [fdo#110189]) +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-glk7/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#9683]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-6/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-psr2-sprite-blt: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#9732]) +15 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-6/igt@kms_psr@fbc-psr2-sprite-blt.html * igt@kms_psr@psr-cursor-plane-move: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#9732]) +14 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#9685]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-10/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#4235]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-rkl: [PASS][183] -> [INCOMPLETE][184] ([i915#8875] / [i915#9569]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][185] ([fdo#111615] / [i915#5289]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#4235] / [i915#5190]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: [PASS][187] -> [FAIL][188] ([i915#9196]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#9906]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#2437]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@kms_writeback@writeback-check-output.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#7387]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@perf@global-sseu-config.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#2435]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][193] ([i915#6806]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@perf_pmu@frequency@gt0.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][194] ([i915#9351]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][195] ([fdo#109295] / [i915#3291] / [i915#3708]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#3708] / [i915#4077]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-10/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@bind-unbind-vf: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#9917]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@sriov_basic@bind-unbind-vf.html * igt@v3d/v3d_perfmon@get-values-valid-perfmon: - shard-rkl: NOTRUN -> [SKIP][198] ([fdo#109315]) +7 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-1/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html * igt@v3d/v3d_submit_csd@single-in-sync: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#2575]) +7 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-6/igt@v3d/v3d_submit_csd@single-in-sync.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#7711]) +4 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html * igt@vc4/vc4_tiling@get-bad-flags: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#7711]) +5 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-5/igt@vc4/vc4_tiling@get-bad-flags.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - shard-dg1: [DMESG-WARN][202] ([i915#4391] / [i915#4423]) -> [PASS][203] [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-dg1-17/igt@core_hotunplug@unbind-rebind.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg1-15/igt@core_hotunplug@unbind-rebind.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][204] ([i915#5784]) -> [PASS][205] [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-dg1-19/igt@gem_eio@reset-stress.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg1-17/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [FAIL][206] ([i915#2842]) -> [PASS][207] [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-tglu: [FAIL][208] ([i915#2842]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-tglu-4/igt@gem_exec_fair@basic-throttle@rcs0.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-tglu-2/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [DMESG-WARN][210] ([i915#4936] / [i915#5493]) -> [PASS][211] [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [INCOMPLETE][212] ([i915#10137] / [i915#5566]) -> [PASS][213] [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-glk8/igt@gen9_exec_parse@allowed-all.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-glk4/igt@gen9_exec_parse@allowed-all.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: [FAIL][214] ([i915#3743]) -> [PASS][215] [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-snb: [SKIP][216] ([fdo#109271]) -> [PASS][217] +7 other tests pass [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][218] ([i915#9519]) -> [PASS][219] +1 other test pass [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: [FAIL][220] ([i915#9196]) -> [PASS][221] +2 other tests pass [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][222] ([i915#7484]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@busy-double-start@ccs0: - shard-mtlp: [FAIL][224] ([i915#4349]) -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-mtlp-2/igt@perf_pmu@busy-double-start@ccs0.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-mtlp-7/igt@perf_pmu@busy-double-start@ccs0.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [INCOMPLETE][226] ([i915#10137] / [i915#9849]) -> [INCOMPLETE][227] ([i915#10137] / [i915#1982] / [i915#9820] / [i915#9849]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-dg1: [SKIP][228] ([i915#4423] / [i915#7828]) -> [SKIP][229] ([i915#7828]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-dg1-17/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg1-15/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_content_protection@atomic: - shard-snb: [SKIP][230] ([fdo#109271]) -> [INCOMPLETE][231] ([i915#8816]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-snb4/igt@kms_content_protection@atomic.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-snb7/igt@kms_content_protection@atomic.html * igt@kms_content_protection@lic-type-1: - shard-snb: [INCOMPLETE][232] ([i915#10137]) -> [SKIP][233] ([fdo#109271]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-snb7/igt@kms_content_protection@lic-type-1.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-snb4/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][234] ([i915#9424]) -> [SKIP][235] ([i915#9433]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-dg1-18/igt@kms_content_protection@mei-interface.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg1-12/igt@kms_content_protection@mei-interface.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][236] ([fdo#110189] / [i915#3955]) -> [SKIP][237] ([i915#3955]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-rkl-1/igt@kms_fbcon_fbt@psr.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-rkl-7/igt@kms_fbcon_fbt@psr.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg1: [SKIP][238] ([i915#4423] / [i915#8708]) -> [SKIP][239] ([i915#8708]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render: - shard-snb: [SKIP][240] ([fdo#109271] / [fdo#111767]) -> [SKIP][241] ([fdo#109271]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14353/shard-snb4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/shard-snb7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055 [i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137 [i915#10166]: https://gitlab.freedesktop.org/drm/intel/issues/10166 [i915#10183]: https://gitlab.freedesktop.org/drm/intel/issues/10183 [i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7016]: https://gitlab.freedesktop.org/drm/intel/issues/7016 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9561]: https://gitlab.freedesktop.org/drm/intel/issues/9561 [i915#9569]: https://gitlab.freedesktop.org/drm/intel/issues/9569 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9728]: https://gitlab.freedesktop.org/drm/intel/issues/9728 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 Build changes ------------- * Linux: CI_DRM_14353 -> Patchwork_129456v8 CI-20190529: 20190529 CI_DRM_14353: 269ea0ff7988bc743e1f66a928e778950eabf59c @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7731: 17f897a81868fb35c6a7033a8b07256659742248 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_129456v8: 269ea0ff7988bc743e1f66a928e778950eabf59c @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129456v8/index.html [-- Attachment #2: Type: text/html, Size: 72486 bytes --] ^ permalink raw reply [flat|nested] 21+ messages in thread
* Re: [PATCH 0/4] XE HDCP Enablement 2024-02-27 5:32 [PATCH 0/4] XE HDCP Enablement Suraj Kandpal ` (9 preceding siblings ...) 2024-02-28 18:14 ` ✓ Fi.CI.IGT: " Patchwork @ 2024-03-05 13:38 ` Lucas De Marchi 10 siblings, 0 replies; 21+ messages in thread From: Lucas De Marchi @ 2024-03-05 13:38 UTC (permalink / raw) To: Suraj Kandpal; +Cc: intel-gfx, intel-xe On Tue, Feb 27, 2024 at 11:02:00AM +0530, Suraj Kandpal wrote: >This patch series enables HDCP on XE. >Mainly includes rewriting functions that were responsible for >sending hdcp messages via gsc cs. > >Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> > >Suraj Kandpal (4): > drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file > drm/xe/hdcp: Use xe_device struct > drm/xe: Use gsc_proxy_init_done to check proxy status > drm/xe/hdcp: Enable HDCP for XE please double check your includes to follow the convention used in the driver. I commented in one of them. Other than that and with CI passing, Acked-by: Lucas De Marchi <lucas.demarchi@intel.com> Lucas De Marchi > > drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 6 + > drivers/gpu/drm/i915/display/intel_hdcp_gsc.h | 7 +- > drivers/gpu/drm/xe/Makefile | 1 + > drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 241 +++++++++++++++++- > drivers/gpu/drm/xe/xe_gsc_proxy.c | 4 +- > drivers/gpu/drm/xe/xe_gsc_proxy.h | 1 + > drivers/gpu/drm/xe/xe_gsc_submit.c | 15 ++ > drivers/gpu/drm/xe/xe_gsc_submit.h | 1 + > 8 files changed, 258 insertions(+), 18 deletions(-) > >-- >2.43.2 > ^ permalink raw reply [flat|nested] 21+ messages in thread
* [PATCH 0/4] XE HDCP Enablement @ 2024-03-06 2:42 Suraj Kandpal 2024-03-06 2:42 ` [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file Suraj Kandpal 0 siblings, 1 reply; 21+ messages in thread From: Suraj Kandpal @ 2024-03-06 2:42 UTC (permalink / raw) To: intel-gfx, intel-xe; +Cc: Suraj Kandpal, Lucas De Marchi This patch series enables HDCP on XE. Mainly includes rewriting functions that were responsible for sending hdcp messages via gsc cs. Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> Acked-by: Lucas De Marchi <lucas.demarchi@intel.com> Suraj Kandpal (4): drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file drm/xe/hdcp: Use xe_device struct drm/xe: Use gsc_proxy_init_done to check proxy status drm/xe/hdcp: Enable HDCP for XE drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 6 + drivers/gpu/drm/i915/display/intel_hdcp_gsc.h | 7 +- drivers/gpu/drm/xe/Makefile | 1 + drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 240 +++++++++++++++++- drivers/gpu/drm/xe/xe_gsc_proxy.c | 4 +- drivers/gpu/drm/xe/xe_gsc_proxy.h | 1 + drivers/gpu/drm/xe/xe_gsc_submit.c | 15 ++ drivers/gpu/drm/xe/xe_gsc_submit.h | 1 + 8 files changed, 257 insertions(+), 18 deletions(-) -- 2.43.2 ^ permalink raw reply [flat|nested] 21+ messages in thread
* [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file 2024-03-06 2:42 Suraj Kandpal @ 2024-03-06 2:42 ` Suraj Kandpal 2024-03-06 2:47 ` Suraj Kandpal 0 siblings, 1 reply; 21+ messages in thread From: Suraj Kandpal @ 2024-03-06 2:42 UTC (permalink / raw) To: intel-gfx, intel-xe; +Cc: Suraj Kandpal, Jani Nikula Move intel_hdcp_gsc_message definition into intel_hdcp_gsc.c so that intel_hdcp_gsc_message can be redefined for xe as needed. --v2 -Correct commit message to reflect what patch is actually doing [Arun] Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> Acked-by: Jani Nikula <jani.nikula@intel.com> --- drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 6 ++++++ drivers/gpu/drm/i915/display/intel_hdcp_gsc.h | 7 +------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c index 302bff75b06c..35823e1f65d6 100644 --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c @@ -13,6 +13,12 @@ #include "intel_hdcp_gsc.h" #include "intel_hdcp_gsc_message.h" +struct intel_hdcp_gsc_message { + struct i915_vma *vma; + void *hdcp_cmd_in; + void *hdcp_cmd_out; +}; + bool intel_hdcp_gsc_cs_required(struct drm_i915_private *i915) { return DISPLAY_VER(i915) >= 14; diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h index eba2057c5a9e..5f610df61cc9 100644 --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h @@ -10,12 +10,7 @@ #include <linux/types.h> struct drm_i915_private; - -struct intel_hdcp_gsc_message { - struct i915_vma *vma; - void *hdcp_cmd_in; - void *hdcp_cmd_out; -}; +struct intel_hdcp_gsc_message; bool intel_hdcp_gsc_cs_required(struct drm_i915_private *i915); ssize_t intel_hdcp_gsc_msg_send(struct drm_i915_private *i915, u8 *msg_in, -- 2.43.2 ^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file 2024-03-06 2:42 ` [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file Suraj Kandpal @ 2024-03-06 2:47 ` Suraj Kandpal 0 siblings, 0 replies; 21+ messages in thread From: Suraj Kandpal @ 2024-03-06 2:47 UTC (permalink / raw) To: intel-gfx, intel-xe; +Cc: Suraj Kandpal, Arun R Murthy, Jani Nikula Move intel_hdcp_gsc_message definition into intel_hdcp_gsc.c so that intel_hdcp_gsc_message can be redefined for xe as needed. --v2 -Correct commit message to reflect what patch is actually doing [Arun] Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> Reviewed-by: Arun R Murthy <arun.r.murthy@intel.com> Acked-by: Jani Nikula <jani.nikula@intel.com> --- drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 6 ++++++ drivers/gpu/drm/i915/display/intel_hdcp_gsc.h | 7 +------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c index 302bff75b06c..35823e1f65d6 100644 --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c @@ -13,6 +13,12 @@ #include "intel_hdcp_gsc.h" #include "intel_hdcp_gsc_message.h" +struct intel_hdcp_gsc_message { + struct i915_vma *vma; + void *hdcp_cmd_in; + void *hdcp_cmd_out; +}; + bool intel_hdcp_gsc_cs_required(struct drm_i915_private *i915) { return DISPLAY_VER(i915) >= 14; diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h index eba2057c5a9e..5f610df61cc9 100644 --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h @@ -10,12 +10,7 @@ #include <linux/types.h> struct drm_i915_private; - -struct intel_hdcp_gsc_message { - struct i915_vma *vma; - void *hdcp_cmd_in; - void *hdcp_cmd_out; -}; +struct intel_hdcp_gsc_message; bool intel_hdcp_gsc_cs_required(struct drm_i915_private *i915); ssize_t intel_hdcp_gsc_msg_send(struct drm_i915_private *i915, u8 *msg_in, -- 2.43.2 ^ permalink raw reply related [flat|nested] 21+ messages in thread
* [PATCH 0/4] XE HDCP Enablement @ 2024-02-07 11:35 Suraj Kandpal 2024-02-07 11:35 ` [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file Suraj Kandpal 0 siblings, 1 reply; 21+ messages in thread From: Suraj Kandpal @ 2024-02-07 11:35 UTC (permalink / raw) To: intel-gfx, intel-xe; +Cc: daniele.ceraolospurio, Suraj Kandpal This patch series enables HDCP on XE. Mainly includes rewriting functions that were responsible for sending hdcp messages via gsc cs. Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> Suraj Kandpal (4): drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file drm/xe: Use gsc_proxy_init_done to check proxy status drm/xe/hdcp: Enable HDCP for XE drm/xe/hdcp: Add intel_hdcp_gsc_message to Makefile drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 10 +- drivers/gpu/drm/i915/display/intel_hdcp_gsc.h | 7 +- drivers/gpu/drm/xe/Makefile | 1 + .../gpu/drm/xe/abi/gsc_command_header_abi.h | 2 + drivers/gpu/drm/xe/display/xe_hdcp_gsc.c | 227 +++++++++++++++++- drivers/gpu/drm/xe/xe_gsc_proxy.c | 2 +- drivers/gpu/drm/xe/xe_gsc_proxy.h | 1 + drivers/gpu/drm/xe/xe_gsc_submit.c | 19 ++ drivers/gpu/drm/xe/xe_gsc_submit.h | 1 + 9 files changed, 253 insertions(+), 17 deletions(-) -- 2.25.1 ^ permalink raw reply [flat|nested] 21+ messages in thread
* [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file 2024-02-07 11:35 [PATCH 0/4] XE HDCP Enablement Suraj Kandpal @ 2024-02-07 11:35 ` Suraj Kandpal 0 siblings, 0 replies; 21+ messages in thread From: Suraj Kandpal @ 2024-02-07 11:35 UTC (permalink / raw) To: intel-gfx, intel-xe; +Cc: daniele.ceraolospurio, Suraj Kandpal Move intel_hdcp_gsc_message definition into intel_hdcp_gsc_message.c so that intel_hdcp_gsc_message can be redefined for xe as needed. Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com> --- drivers/gpu/drm/i915/display/intel_hdcp_gsc.c | 6 ++++++ drivers/gpu/drm/i915/display/intel_hdcp_gsc.h | 7 +------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c index 18117b789b16..e44f60f00e8b 100644 --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.c @@ -13,6 +13,12 @@ #include "intel_hdcp_gsc.h" #include "intel_hdcp_gsc_message.h" +struct intel_hdcp_gsc_message { + struct i915_vma *vma; + void *hdcp_cmd_in; + void *hdcp_cmd_out; +}; + bool intel_hdcp_gsc_cs_required(struct drm_i915_private *i915) { return DISPLAY_VER(i915) >= 14; diff --git a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h index eba2057c5a9e..5f610df61cc9 100644 --- a/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h +++ b/drivers/gpu/drm/i915/display/intel_hdcp_gsc.h @@ -10,12 +10,7 @@ #include <linux/types.h> struct drm_i915_private; - -struct intel_hdcp_gsc_message { - struct i915_vma *vma; - void *hdcp_cmd_in; - void *hdcp_cmd_out; -}; +struct intel_hdcp_gsc_message; bool intel_hdcp_gsc_cs_required(struct drm_i915_private *i915); ssize_t intel_hdcp_gsc_msg_send(struct drm_i915_private *i915, u8 *msg_in, -- 2.25.1 ^ permalink raw reply related [flat|nested] 21+ messages in thread
end of thread, other threads:[~2024-03-06 2:49 UTC | newest] Thread overview: 21+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-02-27 5:32 [PATCH 0/4] XE HDCP Enablement Suraj Kandpal 2024-02-27 5:32 ` [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file Suraj Kandpal 2024-02-27 6:33 ` Suraj Kandpal 2024-02-28 6:01 ` Murthy, Arun R 2024-02-28 5:59 ` Kandpal, Suraj 2024-03-04 15:59 ` Jani Nikula 2024-02-27 5:32 ` [PATCH 2/4] drm/xe/hdcp: Use xe_device struct Suraj Kandpal 2024-02-27 5:32 ` [PATCH 3/4] drm/xe: Use gsc_proxy_init_done to check proxy status Suraj Kandpal 2024-02-28 5:47 ` Suraj Kandpal 2024-02-27 5:32 ` [PATCH 4/4] drm/xe/hdcp: Enable HDCP for XE Suraj Kandpal 2024-03-05 13:36 ` Lucas De Marchi 2024-02-27 7:24 ` ✗ Fi.CI.SPARSE: warning for XE HDCP Enablement (rev7) Patchwork 2024-02-27 7:33 ` ✓ Fi.CI.BAT: success " Patchwork 2024-02-27 16:26 ` ✓ Fi.CI.IGT: " Patchwork 2024-02-28 6:34 ` ✗ Fi.CI.SPARSE: warning for XE HDCP Enablement (rev8) Patchwork 2024-02-28 6:37 ` ✓ Fi.CI.BAT: success " Patchwork 2024-02-28 18:14 ` ✓ Fi.CI.IGT: " Patchwork 2024-03-05 13:38 ` [PATCH 0/4] XE HDCP Enablement Lucas De Marchi -- strict thread matches above, loose matches on Subject: below -- 2024-03-06 2:42 Suraj Kandpal 2024-03-06 2:42 ` [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file Suraj Kandpal 2024-03-06 2:47 ` Suraj Kandpal 2024-02-07 11:35 [PATCH 0/4] XE HDCP Enablement Suraj Kandpal 2024-02-07 11:35 ` [PATCH 1/4] drm/i915/hdcp: Move intel_hdcp_gsc_message def away from header file Suraj Kandpal
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox