* [CI 1/2] drm/xe/lnl: Apply Wa_22019338487
2024-05-27 21:19 [CI 0/2] Test GSC loading with Wa_22019338487 Daniele Ceraolo Spurio
@ 2024-05-27 21:19 ` Daniele Ceraolo Spurio
2024-05-28 13:45 ` Lucas De Marchi
2024-05-27 21:19 ` [CI 2/2] Reapply "drm/xe/gsc: define GSC FW for LNL" Daniele Ceraolo Spurio
` (8 subsequent siblings)
9 siblings, 1 reply; 13+ messages in thread
From: Daniele Ceraolo Spurio @ 2024-05-27 21:19 UTC (permalink / raw)
To: intel-xe; +Cc: Vinay Belgaumkar
From: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
This WA requires us to limit media GT frequency requests to a certain
cap value during driver load as well as after driver unload. Freq limits
are restored after driver load completes, so perf will not be
affected during normal operations.
Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
---
drivers/gpu/drm/xe/Makefile | 2 ++
drivers/gpu/drm/xe/xe_device.c | 8 ++++++++
drivers/gpu/drm/xe/xe_gsc.c | 8 ++++++++
drivers/gpu/drm/xe/xe_guc_pc.c | 31 ++++++++++++++++++++++++++++--
drivers/gpu/drm/xe/xe_guc_pc.h | 2 ++
drivers/gpu/drm/xe/xe_wa_oob.rules | 1 +
6 files changed, 50 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
index d5b137e762ed..3701d1a01e50 100644
--- a/drivers/gpu/drm/xe/Makefile
+++ b/drivers/gpu/drm/xe/Makefile
@@ -47,9 +47,11 @@ $(obj)/generated/%_wa_oob.c $(obj)/generated/%_wa_oob.h: $(obj)/xe_gen_wa_oob \
$(call cmd,wa_oob)
uses_generated_oob := \
+ $(obj)/xe_device.o \
$(obj)/xe_gsc.o \
$(obj)/xe_guc.o \
$(obj)/xe_guc_ads.o \
+ $(obj)/xe_guc_pc.o \
$(obj)/xe_migrate.o \
$(obj)/xe_ring_ops.o \
$(obj)/xe_vm.o \
diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
index f04b11e45c2d..85c1b0c406a6 100644
--- a/drivers/gpu/drm/xe/xe_device.c
+++ b/drivers/gpu/drm/xe/xe_device.c
@@ -16,6 +16,7 @@
#include <drm/drm_managed.h>
#include <drm/drm_print.h>
#include <drm/xe_drm.h>
+#include <generated/xe_wa_oob.h>
#include "display/xe_display.h"
#include "instructions/xe_gpu_commands.h"
@@ -37,6 +38,7 @@
#include "xe_gt_printk.h"
#include "xe_gt_sriov_vf.h"
#include "xe_guc.h"
+#include "xe_guc_pc.h"
#include "xe_hwmon.h"
#include "xe_irq.h"
#include "xe_memirq.h"
@@ -51,6 +53,7 @@
#include "xe_ttm_stolen_mgr.h"
#include "xe_ttm_sys_mgr.h"
#include "xe_vm.h"
+#include "xe_wa.h"
#include "xe_wait_user_fence.h"
static int xe_file_open(struct drm_device *dev, struct drm_file *file)
@@ -337,6 +340,7 @@ static void xe_driver_flr(struct xe_device *xe)
{
const unsigned int flr_timeout = 3 * MICRO; /* specs recommend a 3s wait */
struct xe_gt *gt = xe_root_mmio_gt(xe);
+ struct xe_guc_pc *pc = >->uc.guc.pc;
int ret;
if (xe_mmio_read32(gt, GU_CNTL_PROTECTED) & DRIVERINT_FLR_DIS) {
@@ -344,6 +348,10 @@ static void xe_driver_flr(struct xe_device *xe)
return;
}
+ /* Set requested freq to mert_freq_cap before FLR */
+ if (XE_WA(gt, 22019338487))
+ pc_set_cur_freq(pc, min(xe_guc_pc_mert_freq_cap(pc), pc->rpe_freq));
+
drm_dbg(&xe->drm, "Triggering Driver-FLR\n");
/*
diff --git a/drivers/gpu/drm/xe/xe_gsc.c b/drivers/gpu/drm/xe/xe_gsc.c
index 80a61934decc..4369e3ff19cf 100644
--- a/drivers/gpu/drm/xe/xe_gsc.c
+++ b/drivers/gpu/drm/xe/xe_gsc.c
@@ -22,6 +22,7 @@
#include "xe_gt.h"
#include "xe_gt_mcr.h"
#include "xe_gt_printk.h"
+#include "xe_guc_pc.h"
#include "xe_huc.h"
#include "xe_map.h"
#include "xe_mmio.h"
@@ -342,6 +343,7 @@ static void gsc_work(struct work_struct *work)
struct xe_gsc *gsc = container_of(work, typeof(*gsc), work);
struct xe_gt *gt = gsc_to_gt(gsc);
struct xe_device *xe = gt_to_xe(gt);
+ struct xe_guc_pc *pc = >->uc.guc.pc;
u32 actions;
int ret;
@@ -370,6 +372,12 @@ static void gsc_work(struct work_struct *work)
if (actions & GSC_ACTION_SW_PROXY)
xe_gsc_proxy_request_handler(gsc);
+ /* Revert the min/max freq limits as we're done with GSC/driver load */
+ if (XE_WA(gt, 22019338487)) {
+ xe_guc_pc_set_max_freq(pc, pc->rp0_freq);
+ xe_guc_pc_set_min_freq(pc, pc->rpe_freq);
+ }
+
out:
xe_force_wake_put(gt_to_fw(gt), XE_FW_GSC);
xe_pm_runtime_put(xe);
diff --git a/drivers/gpu/drm/xe/xe_guc_pc.c b/drivers/gpu/drm/xe/xe_guc_pc.c
index 8187dfb2ad6c..3ecfbaa75495 100644
--- a/drivers/gpu/drm/xe/xe_guc_pc.c
+++ b/drivers/gpu/drm/xe/xe_guc_pc.c
@@ -8,6 +8,7 @@
#include <linux/delay.h>
#include <drm/drm_managed.h>
+#include <generated/xe_wa_oob.h>
#include "abi/guc_actions_abi.h"
#include "abi/guc_actions_slpc_abi.h"
@@ -24,6 +25,7 @@
#include "xe_map.h"
#include "xe_mmio.h"
#include "xe_pcode.h"
+#include "xe_wa.h"
#define MCHBAR_MIRROR_BASE_SNB 0x140000
@@ -41,6 +43,8 @@
#define GT_FREQUENCY_MULTIPLIER 50
#define GT_FREQUENCY_SCALER 3
+#define LNL_MERT_FREQ_CAP 800
+
/**
* DOC: GuC Power Conservation (PC)
*
@@ -238,7 +242,7 @@ static void pc_set_manual_rp_ctrl(struct xe_guc_pc *pc, bool enable)
xe_mmio_write32(gt, RP_CONTROL, state);
}
-static void pc_set_cur_freq(struct xe_guc_pc *pc, u32 freq)
+void pc_set_cur_freq(struct xe_guc_pc *pc, u32 freq)
{
struct xe_gt *gt = pc_to_gt(pc);
u32 rpnswreq;
@@ -674,6 +678,14 @@ static void pc_init_fused_rp_values(struct xe_guc_pc *pc)
tgl_init_fused_rp_values(pc);
}
+u32 xe_guc_pc_mert_freq_cap(struct xe_guc_pc *pc)
+{
+ if (MEDIA_VERx100(pc_to_xe(pc)) == 2000)
+ return LNL_MERT_FREQ_CAP;
+ else
+ return 0;
+}
+
/**
* xe_guc_pc_init_early - Initialize RPx values and request a higher GT
* frequency to allow faster GuC load times
@@ -685,7 +697,11 @@ void xe_guc_pc_init_early(struct xe_guc_pc *pc)
xe_force_wake_assert_held(gt_to_fw(gt), XE_FW_GT);
pc_init_fused_rp_values(pc);
- pc_set_cur_freq(pc, pc->rp0_freq);
+
+ if (XE_WA(gt, 22019338487))
+ pc_set_cur_freq(pc, min(xe_guc_pc_mert_freq_cap(pc), pc->rp0_freq));
+ else
+ pc_set_cur_freq(pc, pc->rp0_freq);
}
static int pc_adjust_freq_bounds(struct xe_guc_pc *pc)
@@ -716,6 +732,17 @@ static int pc_adjust_freq_bounds(struct xe_guc_pc *pc)
if (pc_get_min_freq(pc) > pc->rp0_freq)
ret = pc_set_min_freq(pc, pc->rp0_freq);
+ if (!ret && XE_WA(pc_to_gt(pc), 22019338487)) {
+ /*
+ * Setting min to RPn disables use of efficient freq
+ * which could otherwise interfere with this WA for media GT.
+ * We will also bind max to MERT_FREQ_CAP until driver loads.
+ */
+ ret = pc_set_min_freq(pc, pc->rpn_freq);
+ if (!ret)
+ ret = pc_set_max_freq(pc, min(pc->rp0_freq, xe_guc_pc_mert_freq_cap(pc)));
+ }
+
out:
return ret;
}
diff --git a/drivers/gpu/drm/xe/xe_guc_pc.h b/drivers/gpu/drm/xe/xe_guc_pc.h
index 532cac985a6d..4abdefa36b9a 100644
--- a/drivers/gpu/drm/xe/xe_guc_pc.h
+++ b/drivers/gpu/drm/xe/xe_guc_pc.h
@@ -29,5 +29,7 @@ enum xe_gt_idle_state xe_guc_pc_c_status(struct xe_guc_pc *pc);
u64 xe_guc_pc_rc6_residency(struct xe_guc_pc *pc);
u64 xe_guc_pc_mc6_residency(struct xe_guc_pc *pc);
void xe_guc_pc_init_early(struct xe_guc_pc *pc);
+void pc_set_cur_freq(struct xe_guc_pc *pc, u32 freq);
+u32 xe_guc_pc_mert_freq_cap(struct xe_guc_pc *pc);
#endif /* _XE_GUC_PC_H_ */
diff --git a/drivers/gpu/drm/xe/xe_wa_oob.rules b/drivers/gpu/drm/xe/xe_wa_oob.rules
index 12fe88796a49..a6b897030fde 100644
--- a/drivers/gpu/drm/xe/xe_wa_oob.rules
+++ b/drivers/gpu/drm/xe/xe_wa_oob.rules
@@ -27,3 +27,4 @@
16022287689 GRAPHICS_VERSION(2001)
GRAPHICS_VERSION(2004)
13011645652 GRAPHICS_VERSION(2004)
+22019338487 MEDIA_VERSION(2000)
--
2.43.0
^ permalink raw reply related [flat|nested] 13+ messages in thread* Re: [CI 1/2] drm/xe/lnl: Apply Wa_22019338487
2024-05-27 21:19 ` [CI 1/2] drm/xe/lnl: Apply Wa_22019338487 Daniele Ceraolo Spurio
@ 2024-05-28 13:45 ` Lucas De Marchi
2024-05-28 17:20 ` Daniele Ceraolo Spurio
0 siblings, 1 reply; 13+ messages in thread
From: Lucas De Marchi @ 2024-05-28 13:45 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-xe, Vinay Belgaumkar
On Mon, May 27, 2024 at 02:19:27PM GMT, Daniele Ceraolo Spurio wrote:
>From: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
>
>This WA requires us to limit media GT frequency requests to a certain
>cap value during driver load as well as after driver unload. Freq limits
>are restored after driver load completes, so perf will not be
>affected during normal operations.
>
>Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
>---
> drivers/gpu/drm/xe/Makefile | 2 ++
> drivers/gpu/drm/xe/xe_device.c | 8 ++++++++
> drivers/gpu/drm/xe/xe_gsc.c | 8 ++++++++
> drivers/gpu/drm/xe/xe_guc_pc.c | 31 ++++++++++++++++++++++++++++--
> drivers/gpu/drm/xe/xe_guc_pc.h | 2 ++
> drivers/gpu/drm/xe/xe_wa_oob.rules | 1 +
> 6 files changed, 50 insertions(+), 2 deletions(-)
>
>diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
>index d5b137e762ed..3701d1a01e50 100644
>--- a/drivers/gpu/drm/xe/Makefile
>+++ b/drivers/gpu/drm/xe/Makefile
>@@ -47,9 +47,11 @@ $(obj)/generated/%_wa_oob.c $(obj)/generated/%_wa_oob.h: $(obj)/xe_gen_wa_oob \
> $(call cmd,wa_oob)
>
> uses_generated_oob := \
>+ $(obj)/xe_device.o \
> $(obj)/xe_gsc.o \
> $(obj)/xe_guc.o \
> $(obj)/xe_guc_ads.o \
>+ $(obj)/xe_guc_pc.o \
> $(obj)/xe_migrate.o \
> $(obj)/xe_ring_ops.o \
> $(obj)/xe_vm.o \
>diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
>index f04b11e45c2d..85c1b0c406a6 100644
>--- a/drivers/gpu/drm/xe/xe_device.c
>+++ b/drivers/gpu/drm/xe/xe_device.c
>@@ -16,6 +16,7 @@
> #include <drm/drm_managed.h>
> #include <drm/drm_print.h>
> #include <drm/xe_drm.h>
>+#include <generated/xe_wa_oob.h>
>
> #include "display/xe_display.h"
> #include "instructions/xe_gpu_commands.h"
>@@ -37,6 +38,7 @@
> #include "xe_gt_printk.h"
> #include "xe_gt_sriov_vf.h"
> #include "xe_guc.h"
>+#include "xe_guc_pc.h"
> #include "xe_hwmon.h"
> #include "xe_irq.h"
> #include "xe_memirq.h"
>@@ -51,6 +53,7 @@
> #include "xe_ttm_stolen_mgr.h"
> #include "xe_ttm_sys_mgr.h"
> #include "xe_vm.h"
>+#include "xe_wa.h"
> #include "xe_wait_user_fence.h"
>
> static int xe_file_open(struct drm_device *dev, struct drm_file *file)
>@@ -337,6 +340,7 @@ static void xe_driver_flr(struct xe_device *xe)
> {
> const unsigned int flr_timeout = 3 * MICRO; /* specs recommend a 3s wait */
> struct xe_gt *gt = xe_root_mmio_gt(xe);
>+ struct xe_guc_pc *pc = >->uc.guc.pc;
> int ret;
>
> if (xe_mmio_read32(gt, GU_CNTL_PROTECTED) & DRIVERINT_FLR_DIS) {
>@@ -344,6 +348,10 @@ static void xe_driver_flr(struct xe_device *xe)
> return;
> }
>
>+ /* Set requested freq to mert_freq_cap before FLR */
>+ if (XE_WA(gt, 22019338487))
>+ pc_set_cur_freq(pc, min(xe_guc_pc_mert_freq_cap(pc), pc->rpe_freq));
it seems pc_set_cur_freq() is violating a layer here. At the minimum it
should have the xe_guc_pc prefix, but it seems we actually want a higher
level call here like xe_guc_pc_prepare_for_flr(pc). Then the WA is
handled internally to xe_guc_pc.
>+
> drm_dbg(&xe->drm, "Triggering Driver-FLR\n");
>
> /*
>diff --git a/drivers/gpu/drm/xe/xe_gsc.c b/drivers/gpu/drm/xe/xe_gsc.c
>index 80a61934decc..4369e3ff19cf 100644
>--- a/drivers/gpu/drm/xe/xe_gsc.c
>+++ b/drivers/gpu/drm/xe/xe_gsc.c
>@@ -22,6 +22,7 @@
> #include "xe_gt.h"
> #include "xe_gt_mcr.h"
> #include "xe_gt_printk.h"
>+#include "xe_guc_pc.h"
> #include "xe_huc.h"
> #include "xe_map.h"
> #include "xe_mmio.h"
>@@ -342,6 +343,7 @@ static void gsc_work(struct work_struct *work)
> struct xe_gsc *gsc = container_of(work, typeof(*gsc), work);
> struct xe_gt *gt = gsc_to_gt(gsc);
> struct xe_device *xe = gt_to_xe(gt);
>+ struct xe_guc_pc *pc = >->uc.guc.pc;
> u32 actions;
> int ret;
>
>@@ -370,6 +372,12 @@ static void gsc_work(struct work_struct *work)
> if (actions & GSC_ACTION_SW_PROXY)
> xe_gsc_proxy_request_handler(gsc);
>
>+ /* Revert the min/max freq limits as we're done with GSC/driver load */
same thing... do we need a higher level call here rather than calling
the set max/min freq?
>+ if (XE_WA(gt, 22019338487)) {
>+ xe_guc_pc_set_max_freq(pc, pc->rp0_freq);
>+ xe_guc_pc_set_min_freq(pc, pc->rpe_freq);
>+ }
>+
> out:
> xe_force_wake_put(gt_to_fw(gt), XE_FW_GSC);
> xe_pm_runtime_put(xe);
>diff --git a/drivers/gpu/drm/xe/xe_guc_pc.c b/drivers/gpu/drm/xe/xe_guc_pc.c
>index 8187dfb2ad6c..3ecfbaa75495 100644
>--- a/drivers/gpu/drm/xe/xe_guc_pc.c
>+++ b/drivers/gpu/drm/xe/xe_guc_pc.c
>@@ -8,6 +8,7 @@
> #include <linux/delay.h>
>
> #include <drm/drm_managed.h>
>+#include <generated/xe_wa_oob.h>
>
> #include "abi/guc_actions_abi.h"
> #include "abi/guc_actions_slpc_abi.h"
>@@ -24,6 +25,7 @@
> #include "xe_map.h"
> #include "xe_mmio.h"
> #include "xe_pcode.h"
>+#include "xe_wa.h"
>
> #define MCHBAR_MIRROR_BASE_SNB 0x140000
>
>@@ -41,6 +43,8 @@
> #define GT_FREQUENCY_MULTIPLIER 50
> #define GT_FREQUENCY_SCALER 3
>
>+#define LNL_MERT_FREQ_CAP 800
>+
> /**
> * DOC: GuC Power Conservation (PC)
> *
>@@ -238,7 +242,7 @@ static void pc_set_manual_rp_ctrl(struct xe_guc_pc *pc, bool enable)
> xe_mmio_write32(gt, RP_CONTROL, state);
> }
>
>-static void pc_set_cur_freq(struct xe_guc_pc *pc, u32 freq)
>+void pc_set_cur_freq(struct xe_guc_pc *pc, u32 freq)
> {
> struct xe_gt *gt = pc_to_gt(pc);
> u32 rpnswreq;
>@@ -674,6 +678,14 @@ static void pc_init_fused_rp_values(struct xe_guc_pc *pc)
> tgl_init_fused_rp_values(pc);
> }
>
>+u32 xe_guc_pc_mert_freq_cap(struct xe_guc_pc *pc)
>+{
>+ if (MEDIA_VERx100(pc_to_xe(pc)) == 2000)
>+ return LNL_MERT_FREQ_CAP;
>+ else
>+ return 0;
>+}
>+
> /**
> * xe_guc_pc_init_early - Initialize RPx values and request a higher GT
> * frequency to allow faster GuC load times
>@@ -685,7 +697,11 @@ void xe_guc_pc_init_early(struct xe_guc_pc *pc)
>
> xe_force_wake_assert_held(gt_to_fw(gt), XE_FW_GT);
> pc_init_fused_rp_values(pc);
>- pc_set_cur_freq(pc, pc->rp0_freq);
>+
>+ if (XE_WA(gt, 22019338487))
>+ pc_set_cur_freq(pc, min(xe_guc_pc_mert_freq_cap(pc), pc->rp0_freq));
>+ else
>+ pc_set_cur_freq(pc, pc->rp0_freq);
> }
>
> static int pc_adjust_freq_bounds(struct xe_guc_pc *pc)
>@@ -716,6 +732,17 @@ static int pc_adjust_freq_bounds(struct xe_guc_pc *pc)
> if (pc_get_min_freq(pc) > pc->rp0_freq)
> ret = pc_set_min_freq(pc, pc->rp0_freq);
>
>+ if (!ret && XE_WA(pc_to_gt(pc), 22019338487)) {
>+ /*
>+ * Setting min to RPn disables use of efficient freq
>+ * which could otherwise interfere with this WA for media GT.
>+ * We will also bind max to MERT_FREQ_CAP until driver loads.
>+ */
>+ ret = pc_set_min_freq(pc, pc->rpn_freq);
>+ if (!ret)
>+ ret = pc_set_max_freq(pc, min(pc->rp0_freq, xe_guc_pc_mert_freq_cap(pc)));
>+ }
>+
> out:
> return ret;
> }
>diff --git a/drivers/gpu/drm/xe/xe_guc_pc.h b/drivers/gpu/drm/xe/xe_guc_pc.h
>index 532cac985a6d..4abdefa36b9a 100644
>--- a/drivers/gpu/drm/xe/xe_guc_pc.h
>+++ b/drivers/gpu/drm/xe/xe_guc_pc.h
>@@ -29,5 +29,7 @@ enum xe_gt_idle_state xe_guc_pc_c_status(struct xe_guc_pc *pc);
> u64 xe_guc_pc_rc6_residency(struct xe_guc_pc *pc);
> u64 xe_guc_pc_mc6_residency(struct xe_guc_pc *pc);
> void xe_guc_pc_init_early(struct xe_guc_pc *pc);
>+void pc_set_cur_freq(struct xe_guc_pc *pc, u32 freq);
^
See the other functions in this header. We don't export functions to
the other parts in the driver without a prefix for this component.
Lucas De Marchi
>+u32 xe_guc_pc_mert_freq_cap(struct xe_guc_pc *pc);
>
> #endif /* _XE_GUC_PC_H_ */
>diff --git a/drivers/gpu/drm/xe/xe_wa_oob.rules b/drivers/gpu/drm/xe/xe_wa_oob.rules
>index 12fe88796a49..a6b897030fde 100644
>--- a/drivers/gpu/drm/xe/xe_wa_oob.rules
>+++ b/drivers/gpu/drm/xe/xe_wa_oob.rules
>@@ -27,3 +27,4 @@
> 16022287689 GRAPHICS_VERSION(2001)
> GRAPHICS_VERSION(2004)
> 13011645652 GRAPHICS_VERSION(2004)
>+22019338487 MEDIA_VERSION(2000)
>--
>2.43.0
>
^ permalink raw reply [flat|nested] 13+ messages in thread* Re: [CI 1/2] drm/xe/lnl: Apply Wa_22019338487
2024-05-28 13:45 ` Lucas De Marchi
@ 2024-05-28 17:20 ` Daniele Ceraolo Spurio
0 siblings, 0 replies; 13+ messages in thread
From: Daniele Ceraolo Spurio @ 2024-05-28 17:20 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-xe, Vinay Belgaumkar
On 5/28/2024 6:45 AM, Lucas De Marchi wrote:
> On Mon, May 27, 2024 at 02:19:27PM GMT, Daniele Ceraolo Spurio wrote:
>> From: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
>>
>> This WA requires us to limit media GT frequency requests to a certain
>> cap value during driver load as well as after driver unload. Freq limits
>> are restored after driver load completes, so perf will not be
>> affected during normal operations.
>>
>> Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
>> ---
>> drivers/gpu/drm/xe/Makefile | 2 ++
>> drivers/gpu/drm/xe/xe_device.c | 8 ++++++++
>> drivers/gpu/drm/xe/xe_gsc.c | 8 ++++++++
>> drivers/gpu/drm/xe/xe_guc_pc.c | 31 ++++++++++++++++++++++++++++--
>> drivers/gpu/drm/xe/xe_guc_pc.h | 2 ++
>> drivers/gpu/drm/xe/xe_wa_oob.rules | 1 +
>> 6 files changed, 50 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
>> index d5b137e762ed..3701d1a01e50 100644
>> --- a/drivers/gpu/drm/xe/Makefile
>> +++ b/drivers/gpu/drm/xe/Makefile
>> @@ -47,9 +47,11 @@ $(obj)/generated/%_wa_oob.c
>> $(obj)/generated/%_wa_oob.h: $(obj)/xe_gen_wa_oob \
>> $(call cmd,wa_oob)
>>
>> uses_generated_oob := \
>> + $(obj)/xe_device.o \
>> $(obj)/xe_gsc.o \
>> $(obj)/xe_guc.o \
>> $(obj)/xe_guc_ads.o \
>> + $(obj)/xe_guc_pc.o \
>> $(obj)/xe_migrate.o \
>> $(obj)/xe_ring_ops.o \
>> $(obj)/xe_vm.o \
>> diff --git a/drivers/gpu/drm/xe/xe_device.c
>> b/drivers/gpu/drm/xe/xe_device.c
>> index f04b11e45c2d..85c1b0c406a6 100644
>> --- a/drivers/gpu/drm/xe/xe_device.c
>> +++ b/drivers/gpu/drm/xe/xe_device.c
>> @@ -16,6 +16,7 @@
>> #include <drm/drm_managed.h>
>> #include <drm/drm_print.h>
>> #include <drm/xe_drm.h>
>> +#include <generated/xe_wa_oob.h>
>>
>> #include "display/xe_display.h"
>> #include "instructions/xe_gpu_commands.h"
>> @@ -37,6 +38,7 @@
>> #include "xe_gt_printk.h"
>> #include "xe_gt_sriov_vf.h"
>> #include "xe_guc.h"
>> +#include "xe_guc_pc.h"
>> #include "xe_hwmon.h"
>> #include "xe_irq.h"
>> #include "xe_memirq.h"
>> @@ -51,6 +53,7 @@
>> #include "xe_ttm_stolen_mgr.h"
>> #include "xe_ttm_sys_mgr.h"
>> #include "xe_vm.h"
>> +#include "xe_wa.h"
>> #include "xe_wait_user_fence.h"
>>
>> static int xe_file_open(struct drm_device *dev, struct drm_file *file)
>> @@ -337,6 +340,7 @@ static void xe_driver_flr(struct xe_device *xe)
>> {
>> const unsigned int flr_timeout = 3 * MICRO; /* specs recommend a
>> 3s wait */
>> struct xe_gt *gt = xe_root_mmio_gt(xe);
>> + struct xe_guc_pc *pc = >->uc.guc.pc;
>> int ret;
>>
>> if (xe_mmio_read32(gt, GU_CNTL_PROTECTED) & DRIVERINT_FLR_DIS) {
>> @@ -344,6 +348,10 @@ static void xe_driver_flr(struct xe_device *xe)
>> return;
>> }
>>
>> + /* Set requested freq to mert_freq_cap before FLR */
>> + if (XE_WA(gt, 22019338487))
>> + pc_set_cur_freq(pc, min(xe_guc_pc_mert_freq_cap(pc),
>> pc->rpe_freq));
>
> it seems pc_set_cur_freq() is violating a layer here. At the minimum it
> should have the xe_guc_pc prefix, but it seems we actually want a higher
> level call here like xe_guc_pc_prepare_for_flr(pc). Then the WA is
> handled internally to xe_guc_pc.
Note that this WA is being reviewed as its own patch here:
https://patchwork.freedesktop.org/series/134036/
Just mentioning it because I'm going to respin this series later today
with a fix for the GSC proxy unload and I'm not going to include your
suggested fix for this patch; I'm only including this patch in the
series for testing, so it doesn't really matter if the patch is clean as
long as it does the right thing :) . I'll leave it to Vinay to fix it
properly in the other thread.
Daniele
>
>> +
>> drm_dbg(&xe->drm, "Triggering Driver-FLR\n");
>>
>> /*
>> diff --git a/drivers/gpu/drm/xe/xe_gsc.c b/drivers/gpu/drm/xe/xe_gsc.c
>> index 80a61934decc..4369e3ff19cf 100644
>> --- a/drivers/gpu/drm/xe/xe_gsc.c
>> +++ b/drivers/gpu/drm/xe/xe_gsc.c
>> @@ -22,6 +22,7 @@
>> #include "xe_gt.h"
>> #include "xe_gt_mcr.h"
>> #include "xe_gt_printk.h"
>> +#include "xe_guc_pc.h"
>> #include "xe_huc.h"
>> #include "xe_map.h"
>> #include "xe_mmio.h"
>> @@ -342,6 +343,7 @@ static void gsc_work(struct work_struct *work)
>> struct xe_gsc *gsc = container_of(work, typeof(*gsc), work);
>> struct xe_gt *gt = gsc_to_gt(gsc);
>> struct xe_device *xe = gt_to_xe(gt);
>> + struct xe_guc_pc *pc = >->uc.guc.pc;
>> u32 actions;
>> int ret;
>>
>> @@ -370,6 +372,12 @@ static void gsc_work(struct work_struct *work)
>> if (actions & GSC_ACTION_SW_PROXY)
>> xe_gsc_proxy_request_handler(gsc);
>>
>> + /* Revert the min/max freq limits as we're done with GSC/driver
>> load */
>
> same thing... do we need a higher level call here rather than calling
> the set max/min freq?
>
>> + if (XE_WA(gt, 22019338487)) {
>> + xe_guc_pc_set_max_freq(pc, pc->rp0_freq);
>> + xe_guc_pc_set_min_freq(pc, pc->rpe_freq);
>> + }
>> +
>> out:
>> xe_force_wake_put(gt_to_fw(gt), XE_FW_GSC);
>> xe_pm_runtime_put(xe);
>> diff --git a/drivers/gpu/drm/xe/xe_guc_pc.c
>> b/drivers/gpu/drm/xe/xe_guc_pc.c
>> index 8187dfb2ad6c..3ecfbaa75495 100644
>> --- a/drivers/gpu/drm/xe/xe_guc_pc.c
>> +++ b/drivers/gpu/drm/xe/xe_guc_pc.c
>> @@ -8,6 +8,7 @@
>> #include <linux/delay.h>
>>
>> #include <drm/drm_managed.h>
>> +#include <generated/xe_wa_oob.h>
>>
>> #include "abi/guc_actions_abi.h"
>> #include "abi/guc_actions_slpc_abi.h"
>> @@ -24,6 +25,7 @@
>> #include "xe_map.h"
>> #include "xe_mmio.h"
>> #include "xe_pcode.h"
>> +#include "xe_wa.h"
>>
>> #define MCHBAR_MIRROR_BASE_SNB 0x140000
>>
>> @@ -41,6 +43,8 @@
>> #define GT_FREQUENCY_MULTIPLIER 50
>> #define GT_FREQUENCY_SCALER 3
>>
>> +#define LNL_MERT_FREQ_CAP 800
>> +
>> /**
>> * DOC: GuC Power Conservation (PC)
>> *
>> @@ -238,7 +242,7 @@ static void pc_set_manual_rp_ctrl(struct
>> xe_guc_pc *pc, bool enable)
>> xe_mmio_write32(gt, RP_CONTROL, state);
>> }
>>
>> -static void pc_set_cur_freq(struct xe_guc_pc *pc, u32 freq)
>> +void pc_set_cur_freq(struct xe_guc_pc *pc, u32 freq)
>> {
>> struct xe_gt *gt = pc_to_gt(pc);
>> u32 rpnswreq;
>> @@ -674,6 +678,14 @@ static void pc_init_fused_rp_values(struct
>> xe_guc_pc *pc)
>> tgl_init_fused_rp_values(pc);
>> }
>>
>> +u32 xe_guc_pc_mert_freq_cap(struct xe_guc_pc *pc)
>> +{
>> + if (MEDIA_VERx100(pc_to_xe(pc)) == 2000)
>> + return LNL_MERT_FREQ_CAP;
>> + else
>> + return 0;
>> +}
>> +
>> /**
>> * xe_guc_pc_init_early - Initialize RPx values and request a higher GT
>> * frequency to allow faster GuC load times
>> @@ -685,7 +697,11 @@ void xe_guc_pc_init_early(struct xe_guc_pc *pc)
>>
>> xe_force_wake_assert_held(gt_to_fw(gt), XE_FW_GT);
>> pc_init_fused_rp_values(pc);
>> - pc_set_cur_freq(pc, pc->rp0_freq);
>> +
>> + if (XE_WA(gt, 22019338487))
>> + pc_set_cur_freq(pc, min(xe_guc_pc_mert_freq_cap(pc),
>> pc->rp0_freq));
>> + else
>> + pc_set_cur_freq(pc, pc->rp0_freq);
>> }
>>
>> static int pc_adjust_freq_bounds(struct xe_guc_pc *pc)
>> @@ -716,6 +732,17 @@ static int pc_adjust_freq_bounds(struct
>> xe_guc_pc *pc)
>> if (pc_get_min_freq(pc) > pc->rp0_freq)
>> ret = pc_set_min_freq(pc, pc->rp0_freq);
>>
>> + if (!ret && XE_WA(pc_to_gt(pc), 22019338487)) {
>> + /*
>> + * Setting min to RPn disables use of efficient freq
>> + * which could otherwise interfere with this WA for media GT.
>> + * We will also bind max to MERT_FREQ_CAP until driver loads.
>> + */
>> + ret = pc_set_min_freq(pc, pc->rpn_freq);
>> + if (!ret)
>> + ret = pc_set_max_freq(pc, min(pc->rp0_freq,
>> xe_guc_pc_mert_freq_cap(pc)));
>> + }
>> +
>> out:
>> return ret;
>> }
>> diff --git a/drivers/gpu/drm/xe/xe_guc_pc.h
>> b/drivers/gpu/drm/xe/xe_guc_pc.h
>> index 532cac985a6d..4abdefa36b9a 100644
>> --- a/drivers/gpu/drm/xe/xe_guc_pc.h
>> +++ b/drivers/gpu/drm/xe/xe_guc_pc.h
>> @@ -29,5 +29,7 @@ enum xe_gt_idle_state xe_guc_pc_c_status(struct
>> xe_guc_pc *pc);
>> u64 xe_guc_pc_rc6_residency(struct xe_guc_pc *pc);
>> u64 xe_guc_pc_mc6_residency(struct xe_guc_pc *pc);
>> void xe_guc_pc_init_early(struct xe_guc_pc *pc);
>> +void pc_set_cur_freq(struct xe_guc_pc *pc, u32 freq);
>
> ^
>
> See the other functions in this header. We don't export functions to
> the other parts in the driver without a prefix for this component.
>
> Lucas De Marchi
>
>> +u32 xe_guc_pc_mert_freq_cap(struct xe_guc_pc *pc);
>>
>> #endif /* _XE_GUC_PC_H_ */
>> diff --git a/drivers/gpu/drm/xe/xe_wa_oob.rules
>> b/drivers/gpu/drm/xe/xe_wa_oob.rules
>> index 12fe88796a49..a6b897030fde 100644
>> --- a/drivers/gpu/drm/xe/xe_wa_oob.rules
>> +++ b/drivers/gpu/drm/xe/xe_wa_oob.rules
>> @@ -27,3 +27,4 @@
>> 16022287689 GRAPHICS_VERSION(2001)
>> GRAPHICS_VERSION(2004)
>> 13011645652 GRAPHICS_VERSION(2004)
>> +22019338487 MEDIA_VERSION(2000)
>> --
>> 2.43.0
>>
^ permalink raw reply [flat|nested] 13+ messages in thread
* [CI 2/2] Reapply "drm/xe/gsc: define GSC FW for LNL"
2024-05-27 21:19 [CI 0/2] Test GSC loading with Wa_22019338487 Daniele Ceraolo Spurio
2024-05-27 21:19 ` [CI 1/2] drm/xe/lnl: Apply Wa_22019338487 Daniele Ceraolo Spurio
@ 2024-05-27 21:19 ` Daniele Ceraolo Spurio
2024-05-27 21:25 ` ✓ CI.Patch_applied: success for Test GSC loading with Wa_22019338487 Patchwork
` (7 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Daniele Ceraolo Spurio @ 2024-05-27 21:19 UTC (permalink / raw)
To: intel-xe; +Cc: Daniele Ceraolo Spurio
This reverts commit 684685f297175fb825771a33adfbb6a293d7b614.
---
drivers/gpu/drm/xe/xe_uc_fw.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/xe/xe_uc_fw.c b/drivers/gpu/drm/xe/xe_uc_fw.c
index 12346645a8e5..6500765b5779 100644
--- a/drivers/gpu/drm/xe/xe_uc_fw.c
+++ b/drivers/gpu/drm/xe/xe_uc_fw.c
@@ -128,6 +128,7 @@ struct fw_blobs_by_type {
/* for the GSC FW we match the compatibility version and not the release one */
#define XE_GSC_FIRMWARE_DEFS(fw_def, major_ver) \
+ fw_def(LUNARLAKE, major_ver(intel-ci/xe, gsc, lnl, 1, 0, 0)) \
fw_def(METEORLAKE, major_ver(i915, gsc, mtl, 1, 0, 0))
#define MAKE_FW_PATH(dir__, uc__, shortname__, version__) \
--
2.43.0
^ permalink raw reply related [flat|nested] 13+ messages in thread* ✓ CI.Patch_applied: success for Test GSC loading with Wa_22019338487
2024-05-27 21:19 [CI 0/2] Test GSC loading with Wa_22019338487 Daniele Ceraolo Spurio
2024-05-27 21:19 ` [CI 1/2] drm/xe/lnl: Apply Wa_22019338487 Daniele Ceraolo Spurio
2024-05-27 21:19 ` [CI 2/2] Reapply "drm/xe/gsc: define GSC FW for LNL" Daniele Ceraolo Spurio
@ 2024-05-27 21:25 ` Patchwork
2024-05-27 21:25 ` ✗ CI.checkpatch: warning " Patchwork
` (6 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-05-27 21:25 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-xe
== Series Details ==
Series: Test GSC loading with Wa_22019338487
URL : https://patchwork.freedesktop.org/series/134099/
State : success
== Summary ==
=== Applying kernel patches on branch 'drm-tip' with base: ===
Base commit: e3349a28c5e6 drm-tip: 2024y-05m-27d-19h-30m-41s UTC integration manifest
=== git am output follows ===
Applying: drm/xe/lnl: Apply Wa_22019338487
Applying: Reapply "drm/xe/gsc: define GSC FW for LNL"
^ permalink raw reply [flat|nested] 13+ messages in thread* ✗ CI.checkpatch: warning for Test GSC loading with Wa_22019338487
2024-05-27 21:19 [CI 0/2] Test GSC loading with Wa_22019338487 Daniele Ceraolo Spurio
` (2 preceding siblings ...)
2024-05-27 21:25 ` ✓ CI.Patch_applied: success for Test GSC loading with Wa_22019338487 Patchwork
@ 2024-05-27 21:25 ` Patchwork
2024-05-27 21:26 ` ✓ CI.KUnit: success " Patchwork
` (5 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-05-27 21:25 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-xe
== Series Details ==
Series: Test GSC loading with Wa_22019338487
URL : https://patchwork.freedesktop.org/series/134099/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
51ce9f6cd981d42d7467409d7dbc559a450abc1e
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit b9048b0e7b35314f237f360b401396b686cde4ca
Author: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Date: Mon May 27 14:19:28 2024 -0700
Reapply "drm/xe/gsc: define GSC FW for LNL"
This reverts commit 684685f297175fb825771a33adfbb6a293d7b614.
+ /mt/dim checkpatch e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c drm-intel
932195595f7a drm/xe/lnl: Apply Wa_22019338487
b9048b0e7b35 Reapply "drm/xe/gsc: define GSC FW for LNL"
-:9: WARNING:COMMIT_MESSAGE: Missing commit description - Add an appropriate one
-:16: CHECK:SPACING: spaces preferred around that '-' (ctx:VxV)
#16: FILE: drivers/gpu/drm/xe/xe_uc_fw.c:131:
+ fw_def(LUNARLAKE, major_ver(intel-ci/xe, gsc, lnl, 1, 0, 0)) \
^
-:16: CHECK:SPACING: spaces preferred around that '/' (ctx:VxV)
#16: FILE: drivers/gpu/drm/xe/xe_uc_fw.c:131:
+ fw_def(LUNARLAKE, major_ver(intel-ci/xe, gsc, lnl, 1, 0, 0)) \
^
-:19: ERROR:MISSING_SIGN_OFF: Missing Signed-off-by: line(s)
total: 1 errors, 1 warnings, 2 checks, 7 lines checked
^ permalink raw reply [flat|nested] 13+ messages in thread* ✓ CI.KUnit: success for Test GSC loading with Wa_22019338487
2024-05-27 21:19 [CI 0/2] Test GSC loading with Wa_22019338487 Daniele Ceraolo Spurio
` (3 preceding siblings ...)
2024-05-27 21:25 ` ✗ CI.checkpatch: warning " Patchwork
@ 2024-05-27 21:26 ` Patchwork
2024-05-27 21:38 ` ✓ CI.Build: " Patchwork
` (4 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-05-27 21:26 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-xe
== Series Details ==
Series: Test GSC loading with Wa_22019338487
URL : https://patchwork.freedesktop.org/series/134099/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[21:25:35] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:25:40] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make ARCH=um O=.kunit --jobs=48
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
156 | u64 ioread64_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
163 | u64 ioread64_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
170 | u64 ioread64be_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
178 | u64 ioread64be_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
[21:26:06] Starting KUnit Kernel (1/1)...
[21:26:06] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:26:06] =================== guc_dbm (7 subtests) ===================
[21:26:06] [PASSED] test_empty
[21:26:06] [PASSED] test_default
[21:26:06] ======================== test_size ========================
[21:26:06] [PASSED] 4
[21:26:06] [PASSED] 8
[21:26:06] [PASSED] 32
[21:26:06] [PASSED] 256
[21:26:06] ==================== [PASSED] test_size ====================
[21:26:06] ======================= test_reuse ========================
[21:26:06] [PASSED] 4
[21:26:06] [PASSED] 8
[21:26:06] [PASSED] 32
[21:26:06] [PASSED] 256
[21:26:06] =================== [PASSED] test_reuse ====================
[21:26:06] =================== test_range_overlap ====================
[21:26:06] [PASSED] 4
[21:26:06] [PASSED] 8
[21:26:06] [PASSED] 32
[21:26:06] [PASSED] 256
[21:26:06] =============== [PASSED] test_range_overlap ================
[21:26:06] =================== test_range_compact ====================
[21:26:06] [PASSED] 4
[21:26:06] [PASSED] 8
[21:26:06] [PASSED] 32
[21:26:06] [PASSED] 256
[21:26:06] =============== [PASSED] test_range_compact ================
[21:26:06] ==================== test_range_spare =====================
[21:26:06] [PASSED] 4
[21:26:06] [PASSED] 8
[21:26:06] [PASSED] 32
[21:26:06] [PASSED] 256
[21:26:06] ================ [PASSED] test_range_spare =================
[21:26:06] ===================== [PASSED] guc_dbm =====================
[21:26:06] =================== guc_idm (6 subtests) ===================
[21:26:06] [PASSED] bad_init
[21:26:06] [PASSED] no_init
[21:26:06] [PASSED] init_fini
[21:26:06] [PASSED] check_used
[21:26:06] [PASSED] check_quota
[21:26:06] [PASSED] check_all
[21:26:06] ===================== [PASSED] guc_idm =====================
[21:26:06] ================== no_relay (3 subtests) ===================
[21:26:06] [PASSED] xe_drops_guc2pf_if_not_ready
[21:26:06] [PASSED] xe_drops_guc2vf_if_not_ready
[21:26:06] [PASSED] xe_rejects_send_if_not_ready
[21:26:06] ==================== [PASSED] no_relay =====================
[21:26:06] ================== pf_relay (14 subtests) ==================
[21:26:06] [PASSED] pf_rejects_guc2pf_too_short
[21:26:06] [PASSED] pf_rejects_guc2pf_too_long
[21:26:06] [PASSED] pf_rejects_guc2pf_no_payload
[21:26:06] [PASSED] pf_fails_no_payload
[21:26:06] [PASSED] pf_fails_bad_origin
[21:26:06] [PASSED] pf_fails_bad_type
[21:26:06] [PASSED] pf_txn_reports_error
[21:26:06] [PASSED] pf_txn_sends_pf2guc
[21:26:06] [PASSED] pf_sends_pf2guc
[21:26:06] [SKIPPED] pf_loopback_nop
[21:26:06] [SKIPPED] pf_loopback_echo
[21:26:06] [SKIPPED] pf_loopback_fail
[21:26:06] [SKIPPED] pf_loopback_busy
[21:26:06] [SKIPPED] pf_loopback_retry
[21:26:06] ==================== [PASSED] pf_relay =====================
[21:26:06] ================== vf_relay (3 subtests) ===================
[21:26:06] [PASSED] vf_rejects_guc2vf_too_short
[21:26:06] [PASSED] vf_rejects_guc2vf_too_long
[21:26:06] [PASSED] vf_rejects_guc2vf_no_payload
[21:26:06] ==================== [PASSED] vf_relay =====================
[21:26:06] ================= pf_service (11 subtests) =================
[21:26:06] [PASSED] pf_negotiate_any
[21:26:06] [PASSED] pf_negotiate_base_match
[21:26:06] [PASSED] pf_negotiate_base_newer
[21:26:06] [PASSED] pf_negotiate_base_next
[21:26:06] [SKIPPED] pf_negotiate_base_older
[21:26:06] [PASSED] pf_negotiate_base_prev
[21:26:06] [PASSED] pf_negotiate_latest_match
[21:26:06] [PASSED] pf_negotiate_latest_newer
[21:26:06] [PASSED] pf_negotiate_latest_next
[21:26:06] [SKIPPED] pf_negotiate_latest_older
[21:26:06] [SKIPPED] pf_negotiate_latest_prev
[21:26:06] =================== [PASSED] pf_service ====================
[21:26:06] ===================== lmtt (1 subtest) =====================
[21:26:06] ======================== test_ops =========================
[21:26:06] [PASSED] 2-level
[21:26:06] [PASSED] multi-level
[21:26:06] ==================== [PASSED] test_ops =====================
[21:26:06] ====================== [PASSED] lmtt =======================
[21:26:06] ==================== xe_bo (2 subtests) ====================
[21:26:06] [SKIPPED] xe_ccs_migrate_kunit
[21:26:06] [SKIPPED] xe_bo_evict_kunit
[21:26:06] ===================== [SKIPPED] xe_bo ======================
[21:26:06] ================== xe_dma_buf (1 subtest) ==================
[21:26:06] [SKIPPED] xe_dma_buf_kunit
[21:26:06] =================== [SKIPPED] xe_dma_buf ===================
[21:26:06] ================== xe_migrate (1 subtest) ==================
[21:26:06] [SKIPPED] xe_migrate_sanity_kunit
[21:26:06] =================== [SKIPPED] xe_migrate ===================
[21:26:06] =================== xe_mocs (2 subtests) ===================
[21:26:06] [SKIPPED] xe_live_mocs_kernel_kunit
[21:26:06] [SKIPPED] xe_live_mocs_reset_kunit
[21:26:06] ==================== [SKIPPED] xe_mocs =====================
[21:26:06] ==================== args (11 subtests) ====================
[21:26:06] [PASSED] count_args_test
[21:26:06] [PASSED] call_args_example
[21:26:06] [PASSED] call_args_test
[21:26:06] [PASSED] drop_first_arg_example
[21:26:06] [PASSED] drop_first_arg_test
[21:26:06] [PASSED] first_arg_example
[21:26:06] [PASSED] first_arg_test
[21:26:06] [PASSED] last_arg_example
[21:26:06] [PASSED] last_arg_test
[21:26:06] [PASSED] pick_arg_example
[21:26:06] [PASSED] sep_comma_example
[21:26:06] ====================== [PASSED] args =======================
[21:26:06] =================== xe_pci (2 subtests) ====================
[21:26:06] [PASSED] xe_gmdid_graphics_ip
[21:26:06] [PASSED] xe_gmdid_media_ip
[21:26:06] ===================== [PASSED] xe_pci ======================
[21:26:06] ==================== xe_rtp (1 subtest) ====================
[21:26:06] ================== xe_rtp_process_tests ===================
[21:26:06] [PASSED] coalesce-same-reg
[21:26:06] [PASSED] no-match-no-add
[21:26:06] [PASSED] no-match-no-add-multiple-rules
[21:26:06] [PASSED] two-regs-two-entries
[21:26:06] [PASSED] clr-one-set-other
[21:26:06] [PASSED] set-field
[21:26:06] [PASSED] conflict-duplicate
[21:26:06] [PASSED] conflict-not-disjoint
[21:26:06] [PASSED] conflict-reg-type
[21:26:06] ============== [PASSED] xe_rtp_process_tests ===============
stty: 'standard input': Inappropriate ioctl for device
[21:26:06] ===================== [PASSED] xe_rtp ======================
[21:26:06] ==================== xe_wa (1 subtest) =====================
[21:26:06] ======================== xe_wa_gt =========================
[21:26:06] [PASSED] TIGERLAKE (B0)
[21:26:06] [PASSED] DG1 (A0)
[21:26:06] [PASSED] DG1 (B0)
[21:26:06] [PASSED] ALDERLAKE_S (A0)
[21:26:06] [PASSED] ALDERLAKE_S (B0)
[21:26:06] [PASSED] ALDERLAKE_S (C0)
[21:26:06] [PASSED] ALDERLAKE_S (D0)
[21:26:06] [PASSED] ALDERLAKE_P (A0)
[21:26:06] [PASSED] ALDERLAKE_P (B0)
[21:26:06] [PASSED] ALDERLAKE_P (C0)
[21:26:06] [PASSED] ALDERLAKE_S_RPLS (D0)
[21:26:06] [PASSED] ALDERLAKE_P_RPLU (E0)
[21:26:06] [PASSED] DG2_G10 (C0)
[21:26:06] [PASSED] DG2_G11 (B1)
[21:26:06] [PASSED] DG2_G12 (A1)
[21:26:06] [PASSED] METEORLAKE (g:A0, m:A0)
[21:26:06] [PASSED] METEORLAKE (g:A0, m:A0)
[21:26:06] [PASSED] METEORLAKE (g:A0, m:A0)
[21:26:06] [PASSED] LUNARLAKE (g:A0, m:A0)
[21:26:06] [PASSED] LUNARLAKE (g:B0, m:A0)
[21:26:06] ==================== [PASSED] xe_wa_gt =====================
[21:26:06] ====================== [PASSED] xe_wa ======================
[21:26:06] ============================================================
[21:26:06] Testing complete. Ran 109 tests: passed: 95, skipped: 14
[21:26:06] Elapsed time: 30.718s total, 4.257s configuring, 26.190s building, 0.218s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[21:26:06] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:26:08] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make ARCH=um O=.kunit --jobs=48
../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes]
156 | u64 ioread64_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes]
163 | u64 ioread64_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~
../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes]
170 | u64 ioread64be_lo_hi(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes]
178 | u64 ioread64be_hi_lo(const void __iomem *addr)
| ^~~~~~~~~~~~~~~~
../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes]
264 | void iowrite64_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes]
272 | void iowrite64_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~
../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes]
280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes]
288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr)
| ^~~~~~~~~~~~~~~~~
[21:26:29] Starting KUnit Kernel (1/1)...
[21:26:29] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:26:29] ============ drm_test_pick_cmdline (2 subtests) ============
[21:26:29] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[21:26:29] =============== drm_test_pick_cmdline_named ===============
[21:26:29] [PASSED] NTSC
[21:26:29] [PASSED] NTSC-J
[21:26:29] [PASSED] PAL
[21:26:29] [PASSED] PAL-M
[21:26:29] =========== [PASSED] drm_test_pick_cmdline_named ===========
[21:26:29] ============== [PASSED] drm_test_pick_cmdline ==============
[21:26:29] ================== drm_buddy (7 subtests) ==================
[21:26:29] [PASSED] drm_test_buddy_alloc_limit
[21:26:29] [PASSED] drm_test_buddy_alloc_optimistic
[21:26:29] [PASSED] drm_test_buddy_alloc_pessimistic
[21:26:29] [PASSED] drm_test_buddy_alloc_pathological
[21:26:29] [PASSED] drm_test_buddy_alloc_contiguous
[21:26:29] [PASSED] drm_test_buddy_alloc_clear
[21:26:29] [PASSED] drm_test_buddy_alloc_range_bias
[21:26:29] ==================== [PASSED] drm_buddy ====================
[21:26:29] ============= drm_cmdline_parser (40 subtests) =============
[21:26:29] [PASSED] drm_test_cmdline_force_d_only
[21:26:29] [PASSED] drm_test_cmdline_force_D_only_dvi
[21:26:29] [PASSED] drm_test_cmdline_force_D_only_hdmi
[21:26:29] [PASSED] drm_test_cmdline_force_D_only_not_digital
[21:26:29] [PASSED] drm_test_cmdline_force_e_only
[21:26:29] [PASSED] drm_test_cmdline_res
[21:26:29] [PASSED] drm_test_cmdline_res_vesa
[21:26:29] [PASSED] drm_test_cmdline_res_vesa_rblank
[21:26:29] [PASSED] drm_test_cmdline_res_rblank
[21:26:29] [PASSED] drm_test_cmdline_res_bpp
[21:26:29] [PASSED] drm_test_cmdline_res_refresh
[21:26:29] [PASSED] drm_test_cmdline_res_bpp_refresh
[21:26:29] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[21:26:29] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[21:26:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[21:26:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[21:26:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[21:26:29] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[21:26:29] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[21:26:29] [PASSED] drm_test_cmdline_res_margins_force_on
[21:26:29] [PASSED] drm_test_cmdline_res_vesa_margins
[21:26:29] [PASSED] drm_test_cmdline_name
[21:26:29] [PASSED] drm_test_cmdline_name_bpp
[21:26:29] [PASSED] drm_test_cmdline_name_option
[21:26:29] [PASSED] drm_test_cmdline_name_bpp_option
[21:26:29] [PASSED] drm_test_cmdline_rotate_0
[21:26:29] [PASSED] drm_test_cmdline_rotate_90
[21:26:29] [PASSED] drm_test_cmdline_rotate_180
[21:26:29] [PASSED] drm_test_cmdline_rotate_270
[21:26:29] [PASSED] drm_test_cmdline_hmirror
[21:26:29] [PASSED] drm_test_cmdline_vmirror
[21:26:29] [PASSED] drm_test_cmdline_margin_options
[21:26:29] [PASSED] drm_test_cmdline_multiple_options
[21:26:29] [PASSED] drm_test_cmdline_bpp_extra_and_option
[21:26:29] [PASSED] drm_test_cmdline_extra_and_option
[21:26:29] [PASSED] drm_test_cmdline_freestanding_options
[21:26:29] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[21:26:29] [PASSED] drm_test_cmdline_panel_orientation
[21:26:29] ================ drm_test_cmdline_invalid =================
[21:26:29] [PASSED] margin_only
[21:26:29] [PASSED] interlace_only
[21:26:29] [PASSED] res_missing_x
[21:26:29] [PASSED] res_missing_y
[21:26:29] [PASSED] res_bad_y
[21:26:29] [PASSED] res_missing_y_bpp
[21:26:29] [PASSED] res_bad_bpp
[21:26:29] [PASSED] res_bad_refresh
[21:26:29] [PASSED] res_bpp_refresh_force_on_off
[21:26:29] [PASSED] res_invalid_mode
[21:26:29] [PASSED] res_bpp_wrong_place_mode
[21:26:29] [PASSED] name_bpp_refresh
[21:26:29] [PASSED] name_refresh
[21:26:29] [PASSED] name_refresh_wrong_mode
[21:26:29] [PASSED] name_refresh_invalid_mode
[21:26:29] [PASSED] rotate_multiple
[21:26:29] [PASSED] rotate_invalid_val
[21:26:29] [PASSED] rotate_truncated
[21:26:29] [PASSED] invalid_option
[21:26:29] [PASSED] invalid_tv_option
[21:26:29] [PASSED] truncated_tv_option
[21:26:29] ============ [PASSED] drm_test_cmdline_invalid =============
[21:26:29] =============== drm_test_cmdline_tv_options ===============
[21:26:29] [PASSED] NTSC
[21:26:29] [PASSED] NTSC_443
[21:26:29] [PASSED] NTSC_J
[21:26:29] [PASSED] PAL
[21:26:29] [PASSED] PAL_M
[21:26:29] [PASSED] PAL_N
[21:26:29] [PASSED] SECAM
[21:26:29] =========== [PASSED] drm_test_cmdline_tv_options ===========
[21:26:29] =============== [PASSED] drm_cmdline_parser ================
[21:26:29] ============= drmm_connector_init (3 subtests) =============
[21:26:29] [PASSED] drm_test_drmm_connector_init
[21:26:29] [PASSED] drm_test_drmm_connector_init_null_ddc
[21:26:29] ========= drm_test_drmm_connector_init_type_valid =========
[21:26:29] [PASSED] Unknown
[21:26:29] [PASSED] VGA
[21:26:29] [PASSED] DVI-I
[21:26:29] [PASSED] DVI-D
[21:26:29] [PASSED] DVI-A
[21:26:29] [PASSED] Composite
[21:26:29] [PASSED] SVIDEO
[21:26:29] [PASSED] LVDS
[21:26:29] [PASSED] Component
[21:26:29] [PASSED] DIN
[21:26:29] [PASSED] DP
[21:26:29] [PASSED] HDMI-A
[21:26:29] [PASSED] HDMI-B
[21:26:29] [PASSED] TV
[21:26:29] [PASSED] eDP
[21:26:29] [PASSED] Virtual
[21:26:29] [PASSED] DSI
[21:26:29] [PASSED] DPI
[21:26:29] [PASSED] Writeback
[21:26:29] [PASSED] SPI
[21:26:29] [PASSED] USB
[21:26:29] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[21:26:29] =============== [PASSED] drmm_connector_init ===============
[21:26:29] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[21:26:29] ========== drm_test_get_tv_mode_from_name_valid ===========
[21:26:29] [PASSED] NTSC
[21:26:29] [PASSED] NTSC-443
[21:26:29] [PASSED] NTSC-J
[21:26:29] [PASSED] PAL
[21:26:29] [PASSED] PAL-M
[21:26:29] [PASSED] PAL-N
[21:26:29] [PASSED] SECAM
[21:26:29] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[21:26:29] [PASSED] drm_test_get_tv_mode_from_name_truncated
[21:26:29] ============ [PASSED] drm_get_tv_mode_from_name ============
[21:26:29] ============= drm_damage_helper (21 subtests) ==============
[21:26:29] [PASSED] drm_test_damage_iter_no_damage
[21:26:29] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[21:26:29] [PASSED] drm_test_damage_iter_no_damage_src_moved
[21:26:29] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[21:26:29] [PASSED] drm_test_damage_iter_no_damage_not_visible
[21:26:29] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[21:26:29] [PASSED] drm_test_damage_iter_no_damage_no_fb
[21:26:29] [PASSED] drm_test_damage_iter_simple_damage
[21:26:29] [PASSED] drm_test_damage_iter_single_damage
[21:26:29] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[21:26:29] [PASSED] drm_test_damage_iter_single_damage_outside_src
[21:26:29] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[21:26:29] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[21:26:29] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[21:26:29] [PASSED] drm_test_damage_iter_single_damage_src_moved
[21:26:29] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[21:26:29] [PASSED] drm_test_damage_iter_damage
[21:26:29] [PASSED] drm_test_damage_iter_damage_one_intersect
[21:26:29] [PASSED] drm_test_damage_iter_damage_one_outside
[21:26:29] [PASSED] drm_test_damage_iter_damage_src_moved
[21:26:29] [PASSED] drm_test_damage_iter_damage_not_visible
[21:26:29] ================ [PASSED] drm_damage_helper ================
[21:26:29] ============== drm_dp_mst_helper (3 subtests) ==============
[21:26:29] ============== drm_test_dp_mst_calc_pbn_mode ==============
[21:26:29] [PASSED] Clock 154000 BPP 30 DSC disabled
[21:26:29] [PASSED] Clock 234000 BPP 30 DSC disabled
[21:26:29] [PASSED] Clock 297000 BPP 24 DSC disabled
[21:26:29] [PASSED] Clock 332880 BPP 24 DSC enabled
[21:26:29] [PASSED] Clock 324540 BPP 24 DSC enabled
[21:26:29] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[21:26:29] ============== drm_test_dp_mst_calc_pbn_div ===============
[21:26:29] [PASSED] Link rate 2000000 lane count 4
[21:26:29] [PASSED] Link rate 2000000 lane count 2
[21:26:29] [PASSED] Link rate 2000000 lane count 1
[21:26:29] [PASSED] Link rate 1350000 lane count 4
[21:26:29] [PASSED] Link rate 1350000 lane count 2
[21:26:29] [PASSED] Link rate 1350000 lane count 1
[21:26:29] [PASSED] Link rate 1000000 lane count 4
[21:26:29] [PASSED] Link rate 1000000 lane count 2
[21:26:29] [PASSED] Link rate 1000000 lane count 1
[21:26:29] [PASSED] Link rate 810000 lane count 4
[21:26:29] [PASSED] Link rate 810000 lane count 2
[21:26:29] [PASSED] Link rate 810000 lane count 1
[21:26:29] [PASSED] Link rate 540000 lane count 4
[21:26:29] [PASSED] Link rate 540000 lane count 2
[21:26:29] [PASSED] Link rate 540000 lane count 1
[21:26:29] [PASSED] Link rate 270000 lane count 4
[21:26:29] [PASSED] Link rate 270000 lane count 2
[21:26:29] [PASSED] Link rate 270000 lane count 1
[21:26:29] [PASSED] Link rate 162000 lane count 4
[21:26:29] [PASSED] Link rate 162000 lane count 2
[21:26:29] [PASSED] Link rate 162000 lane count 1
[21:26:29] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[21:26:29] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[21:26:29] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[21:26:29] [PASSED] DP_POWER_UP_PHY with port number
[21:26:29] [PASSED] DP_POWER_DOWN_PHY with port number
[21:26:29] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[21:26:29] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[21:26:29] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[21:26:29] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[21:26:29] [PASSED] DP_QUERY_PAYLOAD with port number
[21:26:29] [PASSED] DP_QUERY_PAYLOAD with VCPI
[21:26:29] [PASSED] DP_REMOTE_DPCD_READ with port number
[21:26:29] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[21:26:29] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[21:26:29] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[21:26:29] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[21:26:29] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[21:26:29] [PASSED] DP_REMOTE_I2C_READ with port number
[21:26:29] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[21:26:29] [PASSED] DP_REMOTE_I2C_READ with transactions array
[21:26:29] [PASSED] DP_REMOTE_I2C_WRITE with port number
[21:26:29] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[21:26:29] [PASSED] DP_REMOTE_I2C_WRITE with data array
[21:26:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[21:26:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[21:26:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[21:26:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[21:26:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[21:26:29] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[21:26:29] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[21:26:29] ================ [PASSED] drm_dp_mst_helper ================
[21:26:29] ================== drm_exec (7 subtests) ===================
[21:26:29] [PASSED] sanitycheck
[21:26:29] [PASSED] test_lock
[21:26:29] [PASSED] test_lock_unlock
[21:26:29] [PASSED] test_duplicates
[21:26:29] [PASSED] test_prepare
[21:26:29] [PASSED] test_prepare_array
[21:26:29] [PASSED] test_multiple_loops
[21:26:29] ==================== [PASSED] drm_exec =====================
[21:26:29] =========== drm_format_helper_test (17 subtests) ===========
[21:26:29] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[21:26:29] [PASSED] single_pixel_source_buffer
[21:26:29] [PASSED] single_pixel_clip_rectangle
[21:26:29] [PASSED] well_known_colors
[21:26:29] [PASSED] destination_pitch
[21:26:29] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[21:26:29] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[21:26:29] [PASSED] single_pixel_source_buffer
[21:26:29] [PASSED] single_pixel_clip_rectangle
[21:26:29] [PASSED] well_known_colors
[21:26:29] [PASSED] destination_pitch
[21:26:29] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[21:26:29] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[21:26:29] [PASSED] single_pixel_source_buffer
[21:26:29] [PASSED] single_pixel_clip_rectangle
[21:26:29] [PASSED] well_known_colors
[21:26:29] [PASSED] destination_pitch
[21:26:29] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[21:26:29] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[21:26:29] [PASSED] single_pixel_source_buffer
[21:26:29] [PASSED] single_pixel_clip_rectangle
[21:26:29] [PASSED] well_known_colors
[21:26:29] [PASSED] destination_pitch
[21:26:29] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[21:26:29] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[21:26:29] [PASSED] single_pixel_source_buffer
[21:26:29] [PASSED] single_pixel_clip_rectangle
[21:26:29] [PASSED] well_known_colors
[21:26:29] [PASSED] destination_pitch
[21:26:29] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[21:26:29] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[21:26:29] [PASSED] single_pixel_source_buffer
[21:26:29] [PASSED] single_pixel_clip_rectangle
[21:26:29] [PASSED] well_known_colors
[21:26:29] [PASSED] destination_pitch
[21:26:29] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[21:26:29] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[21:26:29] [PASSED] single_pixel_source_buffer
[21:26:29] [PASSED] single_pixel_clip_rectangle
[21:26:29] [PASSED] well_known_colors
[21:26:29] [PASSED] destination_pitch
[21:26:29] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[21:26:29] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[21:26:29] [PASSED] single_pixel_source_buffer
[21:26:29] [PASSED] single_pixel_clip_rectangle
[21:26:29] [PASSED] well_known_colors
[21:26:29] [PASSED] destination_pitch
[21:26:29] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[21:26:29] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[21:26:29] [PASSED] single_pixel_source_buffer
[21:26:29] [PASSED] single_pixel_clip_rectangle
[21:26:29] [PASSED] well_known_colors
[21:26:29] [PASSED] destination_pitch
[21:26:29] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[21:26:29] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[21:26:29] [PASSED] single_pixel_source_buffer
[21:26:29] [PASSED] single_pixel_clip_rectangle
[21:26:29] [PASSED] well_known_colors
[21:26:29] [PASSED] destination_pitch
[21:26:29] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[21:26:29] ============== drm_test_fb_xrgb8888_to_mono ===============
[21:26:29] [PASSED] single_pixel_source_buffer
[21:26:29] [PASSED] single_pixel_clip_rectangle
[21:26:29] [PASSED] well_known_colors
[21:26:29] [PASSED] destination_pitch
[21:26:29] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[21:26:29] ==================== drm_test_fb_swab =====================
[21:26:29] [PASSED] single_pixel_source_buffer
[21:26:29] [PASSED] single_pixel_clip_rectangle
[21:26:29] [PASSED] well_known_colors
[21:26:29] [PASSED] destination_pitch
[21:26:29] ================ [PASSED] drm_test_fb_swab =================
[21:26:29] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[21:26:29] [PASSED] single_pixel_source_buffer
[21:26:29] [PASSED] single_pixel_clip_rectangle
[21:26:29] [PASSED] well_known_colors
[21:26:29] [PASSED] destination_pitch
[21:26:29] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[21:26:29] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[21:26:29] [PASSED] single_pixel_source_buffer
[21:26:29] [PASSED] single_pixel_clip_rectangle
[21:26:29] [PASSED] well_known_colors
[21:26:29] [PASSED] destination_pitch
[21:26:29] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[21:26:29] ================= drm_test_fb_clip_offset =================
[21:26:29] [PASSED] pass through
[21:26:29] [PASSED] horizontal offset
[21:26:29] [PASSED] vertical offset
[21:26:29] [PASSED] horizontal and vertical offset
[21:26:29] [PASSED] horizontal offset (custom pitch)
[21:26:29] [PASSED] vertical offset (custom pitch)
[21:26:29] [PASSED] horizontal and vertical offset (custom pitch)
[21:26:29] ============= [PASSED] drm_test_fb_clip_offset =============
[21:26:29] ============== drm_test_fb_build_fourcc_list ==============
[21:26:29] [PASSED] no native formats
[21:26:29] [PASSED] XRGB8888 as native format
[21:26:29] [PASSED] remove duplicates
[21:26:29] [PASSED] convert alpha formats
[21:26:29] [PASSED] random formats
[21:26:29] ========== [PASSED] drm_test_fb_build_fourcc_list ==========
[21:26:29] =================== drm_test_fb_memcpy ====================
[21:26:29] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[21:26:29] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[21:26:29] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[21:26:29] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[21:26:29] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[21:26:29] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[21:26:29] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[21:26:29] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[21:26:29] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[21:26:29] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[21:26:29] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[21:26:29] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[21:26:29] =============== [PASSED] drm_test_fb_memcpy ================
[21:26:29] ============= [PASSED] drm_format_helper_test ==============
[21:26:29] ================= drm_format (18 subtests) =================
[21:26:29] [PASSED] drm_test_format_block_width_invalid
[21:26:29] [PASSED] drm_test_format_block_width_one_plane
[21:26:29] [PASSED] drm_test_format_block_width_two_plane
[21:26:29] [PASSED] drm_test_format_block_width_three_plane
[21:26:29] [PASSED] drm_test_format_block_width_tiled
[21:26:29] [PASSED] drm_test_format_block_height_invalid
[21:26:29] [PASSED] drm_test_format_block_height_one_plane
[21:26:29] [PASSED] drm_test_format_block_height_two_plane
[21:26:29] [PASSED] drm_test_format_block_height_three_plane
[21:26:29] [PASSED] drm_test_format_block_height_tiled
[21:26:29] [PASSED] drm_test_format_min_pitch_invalid
[21:26:29] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[21:26:29] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[21:26:29] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[21:26:29] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[21:26:29] [PASSED] drm_test_format_min_pitch_two_plane
[21:26:29] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[21:26:29] [PASSED] drm_test_format_min_pitch_tiled
[21:26:29] =================== [PASSED] drm_format ====================
[21:26:29] =============== drm_framebuffer (1 subtest) ================
[21:26:29] =============== drm_test_framebuffer_create ===============
[21:26:29] [PASSED] ABGR8888 normal sizes
[21:26:29] [PASSED] ABGR8888 max sizes
[21:26:29] [PASSED] ABGR8888 pitch greater than min required
[21:26:29] [PASSED] ABGR8888 pitch less than min required
[21:26:29] [PASSED] ABGR8888 Invalid width
[21:26:29] [PASSED] ABGR8888 Invalid buffer handle
[21:26:29] [PASSED] No pixel format
[21:26:29] [PASSED] ABGR8888 Width 0
[21:26:29] [PASSED] ABGR8888 Height 0
[21:26:29] [PASSED] ABGR8888 Out of bound height * pitch combination
[21:26:29] [PASSED] ABGR8888 Large buffer offset
[21:26:29] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[21:26:29] [PASSED] ABGR8888 Valid buffer modifier
[21:26:29] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[21:26:29] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[21:26:29] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[21:26:29] [PASSED] NV12 Normal sizes
[21:26:29] [PASSED] NV12 Max sizes
[21:26:29] [PASSED] NV12 Invalid pitch
[21:26:29] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[21:26:29] [PASSED] NV12 different modifier per-plane
[21:26:29] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[21:26:29] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[21:26:29] [PASSED] NV12 Modifier for inexistent plane
[21:26:29] [PASSED] NV12 Handle for inexistent plane
[21:26:29] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[21:26:29] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[21:26:29] [PASSED] YVU420 Normal sizes
[21:26:29] [PASSED] YVU420 Max sizes
[21:26:29] [PASSED] YVU420 Invalid pitch
[21:26:29] [PASSED] YVU420 Different pitches
[21:26:29] [PASSED] YVU420 Different buffer offsets/pitches
[21:26:29] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[21:26:29] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[21:26:29] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[21:26:29] [PASSED] YVU420 Valid modifier
[21:26:29] [PASSED] YVU420 Different modifiers per plane
[21:26:29] [PASSED] YVU420 Modifier for inexistent plane
[21:26:29] [PASSED] X0L2 Normal sizes
[21:26:29] [PASSED] X0L2 Max sizes
[21:26:29] [PASSED] X0L2 Invalid pitch
[21:26:29] [PASSED] X0L2 Pitch greater than minimum required
[21:26:29] [PASSED] X0L2 Handle for inexistent plane
[21:26:29] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[21:26:29] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[21:26:29] [PASSED] X0L2 Valid modifier
[21:26:29] [PASSED] X0L2 Modifier for inexistent plane
[21:26:29] =========== [PASSED] drm_test_framebuffer_create ===========
[21:26:29] ================= [PASSED] drm_framebuffer =================
[21:26:29] ================ drm_gem_shmem (8 subtests) ================
[21:26:29] [PASSED] drm_gem_shmem_test_obj_create
[21:26:29] [PASSED] drm_gem_shmem_test_obj_create_private
[21:26:29] [PASSED] drm_gem_shmem_test_pin_pages
[21:26:29] [PASSED] drm_gem_shmem_test_vmap
[21:26:29] [PASSED] drm_gem_shmem_test_get_pages_sgt
[21:26:29] [PASSED] drm_gem_shmem_test_get_sg_table
[21:26:29] [PASSED] drm_gem_shmem_test_madvise
[21:26:29] [PASSED] drm_gem_shmem_test_purge
[21:26:29] ================== [PASSED] drm_gem_shmem ==================
[21:26:29] ================= drm_managed (2 subtests) =================
[21:26:29] [PASSED] drm_test_managed_release_action
[21:26:29] [PASSED] drm_test_managed_run_action
[21:26:29] =================== [PASSED] drm_managed ===================
stty: 'standard input': Inappropriate ioctl for device
[21:26:29] =================== drm_mm (6 subtests) ====================
[21:26:29] [PASSED] drm_test_mm_init
[21:26:29] [PASSED] drm_test_mm_debug
[21:26:29] [PASSED] drm_test_mm_align32
[21:26:29] [PASSED] drm_test_mm_align64
[21:26:29] [PASSED] drm_test_mm_lowest
[21:26:29] [PASSED] drm_test_mm_highest
[21:26:29] ===================== [PASSED] drm_mm ======================
[21:26:29] ============= drm_modes_analog_tv (4 subtests) =============
[21:26:29] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[21:26:29] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[21:26:29] [PASSED] drm_test_modes_analog_tv_pal_576i
[21:26:29] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[21:26:29] =============== [PASSED] drm_modes_analog_tv ===============
[21:26:29] ============== drm_plane_helper (2 subtests) ===============
[21:26:29] =============== drm_test_check_plane_state ================
[21:26:29] [PASSED] clipping_simple
[21:26:29] [PASSED] clipping_rotate_reflect
[21:26:29] [PASSED] positioning_simple
[21:26:29] [PASSED] upscaling
[21:26:29] [PASSED] downscaling
[21:26:29] [PASSED] rounding1
[21:26:29] [PASSED] rounding2
[21:26:29] [PASSED] rounding3
[21:26:29] [PASSED] rounding4
[21:26:29] =========== [PASSED] drm_test_check_plane_state ============
[21:26:29] =========== drm_test_check_invalid_plane_state ============
[21:26:29] [PASSED] positioning_invalid
[21:26:29] [PASSED] upscaling_invalid
[21:26:29] [PASSED] downscaling_invalid
[21:26:29] ======= [PASSED] drm_test_check_invalid_plane_state ========
[21:26:29] ================ [PASSED] drm_plane_helper =================
[21:26:29] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[21:26:29] ====== drm_test_connector_helper_tv_get_modes_check =======
[21:26:29] [PASSED] None
[21:26:29] [PASSED] PAL
[21:26:29] [PASSED] NTSC
[21:26:29] [PASSED] Both, NTSC Default
[21:26:29] [PASSED] Both, PAL Default
[21:26:29] [PASSED] Both, NTSC Default, with PAL on command-line
[21:26:29] [PASSED] Both, PAL Default, with NTSC on command-line
[21:26:29] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[21:26:29] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[21:26:29] ================== drm_rect (9 subtests) ===================
[21:26:29] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[21:26:29] [PASSED] drm_test_rect_clip_scaled_not_clipped
[21:26:29] [PASSED] drm_test_rect_clip_scaled_clipped
[21:26:29] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[21:26:29] ================= drm_test_rect_intersect =================
[21:26:29] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[21:26:29] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[21:26:29] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[21:26:29] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[21:26:29] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[21:26:29] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[21:26:29] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[21:26:29] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[21:26:29] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[21:26:29] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[21:26:29] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[21:26:29] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[21:26:29] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[21:26:29] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[21:26:29] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[21:26:29] ============= [PASSED] drm_test_rect_intersect =============
[21:26:29] ================ drm_test_rect_calc_hscale ================
[21:26:29] [PASSED] normal use
[21:26:29] [PASSED] out of max range
[21:26:29] [PASSED] out of min range
[21:26:29] [PASSED] zero dst
[21:26:29] [PASSED] negative src
[21:26:29] [PASSED] negative dst
[21:26:29] ============ [PASSED] drm_test_rect_calc_hscale ============
[21:26:29] ================ drm_test_rect_calc_vscale ================
[21:26:29] [PASSED] normal use
[21:26:29] [PASSED] out of max range
[21:26:29] [PASSED] out of min range
[21:26:29] [PASSED] zero dst
[21:26:29] [PASSED] negative src
[21:26:29] [PASSED] negative dst
[21:26:29] ============ [PASSED] drm_test_rect_calc_vscale ============
[21:26:29] ================== drm_test_rect_rotate ===================
[21:26:29] [PASSED] reflect-x
[21:26:29] [PASSED] reflect-y
[21:26:29] [PASSED] rotate-0
[21:26:29] [PASSED] rotate-90
[21:26:29] [PASSED] rotate-180
[21:26:29] [PASSED] rotate-270
[21:26:29] ============== [PASSED] drm_test_rect_rotate ===============
[21:26:29] ================ drm_test_rect_rotate_inv =================
[21:26:29] [PASSED] reflect-x
[21:26:29] [PASSED] reflect-y
[21:26:29] [PASSED] rotate-0
[21:26:29] [PASSED] rotate-90
[21:26:29] [PASSED] rotate-180
[21:26:29] [PASSED] rotate-270
[21:26:29] ============ [PASSED] drm_test_rect_rotate_inv =============
[21:26:29] ==================== [PASSED] drm_rect =====================
[21:26:29] ============================================================
[21:26:29] Testing complete. Ran 417 tests: passed: 417
[21:26:29] Elapsed time: 23.209s total, 1.730s configuring, 21.330s building, 0.146s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 13+ messages in thread* ✓ CI.Build: success for Test GSC loading with Wa_22019338487
2024-05-27 21:19 [CI 0/2] Test GSC loading with Wa_22019338487 Daniele Ceraolo Spurio
` (4 preceding siblings ...)
2024-05-27 21:26 ` ✓ CI.KUnit: success " Patchwork
@ 2024-05-27 21:38 ` Patchwork
2024-05-27 21:38 ` ✗ CI.Hooks: failure " Patchwork
` (3 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-05-27 21:38 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-xe
== Series Details ==
Series: Test GSC loading with Wa_22019338487
URL : https://patchwork.freedesktop.org/series/134099/
State : success
== Summary ==
lib/modules/6.10.0-rc1-xe/kernel/sound/core/seq/
lib/modules/6.10.0-rc1-xe/kernel/sound/core/seq/snd-seq.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd-seq-device.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd-hwdep.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd-pcm.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd-compress.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/core/snd-timer.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soundcore.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/atom/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/atom/sst/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/atom/sst/snd-intel-sst-acpi.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/atom/sst/snd-intel-sst-core.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/common/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/intel/common/snd-soc-acpi-intel-match.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/amd/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/amd/snd-acp-config.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-tgl.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-mlink.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-cnl.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-lnl.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-common.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda-generic.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-intel-hda.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/intel/snd-sof-pci-intel-mtl.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/amd/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/amd/snd-sof-amd-renoir.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/amd/snd-sof-amd-acp.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/snd-sof-utils.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/snd-sof-pci.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/snd-sof.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/snd-sof-probes.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/xtensa/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/sof/xtensa/snd-sof-xtensa-dsp.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/snd-soc-core.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/snd-soc-acpi.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/codecs/
lib/modules/6.10.0-rc1-xe/kernel/sound/soc/codecs/snd-soc-hdac-hda.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/snd-intel-sdw-acpi.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/ext/
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/ext/snd-hda-ext-core.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/snd-intel-dspcfg.ko
lib/modules/6.10.0-rc1-xe/kernel/sound/hda/snd-hda-core.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kernel/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kernel/msr.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kernel/cpuid.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/sha512-ssse3.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/crct10dif-pclmul.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/ghash-clmulni-intel.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/sha1-ssse3.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/crc32-pclmul.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/sha256-ssse3.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/aesni-intel.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/crypto/polyval-clmulni.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/events/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/events/intel/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/events/intel/intel-cstate.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/events/rapl.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kvm/
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kvm/kvm.ko
lib/modules/6.10.0-rc1-xe/kernel/arch/x86/kvm/kvm-intel.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/
lib/modules/6.10.0-rc1-xe/kernel/crypto/crypto_simd.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/cmac.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/ccm.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/cryptd.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/polyval-generic.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/async_xor.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/async_tx.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/async_memcpy.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/async_pq.ko
lib/modules/6.10.0-rc1-xe/kernel/crypto/async_tx/async_raid6_recov.ko
lib/modules/6.10.0-rc1-xe/build
lib/modules/6.10.0-rc1-xe/modules.alias.bin
lib/modules/6.10.0-rc1-xe/modules.builtin
lib/modules/6.10.0-rc1-xe/modules.softdep
lib/modules/6.10.0-rc1-xe/modules.alias
lib/modules/6.10.0-rc1-xe/modules.order
lib/modules/6.10.0-rc1-xe/modules.symbols
lib/modules/6.10.0-rc1-xe/modules.dep.bin
+ mv kernel-nodebug.tar.gz ..
+ cd ..
+ rm -rf archive
++ date +%s
+ echo -e '\e[0Ksection_end:1716845883:package_x86_64_nodebug\r\e[0K'
+ sync
^[[0Ksection_end:1716845883:package_x86_64_nodebug
^[[0K
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 13+ messages in thread* ✗ CI.Hooks: failure for Test GSC loading with Wa_22019338487
2024-05-27 21:19 [CI 0/2] Test GSC loading with Wa_22019338487 Daniele Ceraolo Spurio
` (5 preceding siblings ...)
2024-05-27 21:38 ` ✓ CI.Build: " Patchwork
@ 2024-05-27 21:38 ` Patchwork
2024-05-27 21:39 ` ✓ CI.checksparse: success " Patchwork
` (2 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-05-27 21:38 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-xe
== Series Details ==
Series: Test GSC loading with Wa_22019338487
URL : https://patchwork.freedesktop.org/series/134099/
State : failure
== Summary ==
run-parts: executing /workspace/ci/hooks/00-showenv
+ export
+ grep -Ei '(^|\W)CI_'
declare -x CI_KERNEL_BUILD_DIR="/workspace/kernel/build64-default"
declare -x CI_KERNEL_SRC_DIR="/workspace/kernel"
declare -x CI_TOOLS_SRC_DIR="/workspace/ci"
declare -x CI_WORKSPACE_DIR="/workspace"
run-parts: executing /workspace/ci/hooks/10-build-W1
+ SRC_DIR=/workspace/kernel
+ RESTORE_DISPLAY_CONFIG=0
+ '[' -n /workspace/kernel/build64-default ']'
+ BUILD_DIR=/workspace/kernel/build64-default
+ cd /workspace/kernel
++ nproc
+ make -j48 O=/workspace/kernel/build64-default modules_prepare
make[1]: Entering directory '/workspace/kernel/build64-default'
GEN Makefile
UPD include/generated/compile.h
UPD include/config/kernel.release
mkdir -p /workspace/kernel/build64-default/tools/objtool && make O=/workspace/kernel/build64-default subdir=tools/objtool --no-print-directory -C objtool
UPD include/generated/utsrelease.h
HOSTCC /workspace/kernel/build64-default/tools/objtool/fixdep.o
CALL ../scripts/checksyscalls.sh
HOSTLD /workspace/kernel/build64-default/tools/objtool/fixdep-in.o
LINK /workspace/kernel/build64-default/tools/objtool/fixdep
INSTALL libsubcmd_headers
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/exec-cmd.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/help.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/pager.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/parse-options.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/run-command.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/sigchain.o
CC /workspace/kernel/build64-default/tools/objtool/libsubcmd/subcmd-config.o
LD /workspace/kernel/build64-default/tools/objtool/libsubcmd/libsubcmd-in.o
AR /workspace/kernel/build64-default/tools/objtool/libsubcmd/libsubcmd.a
CC /workspace/kernel/build64-default/tools/objtool/weak.o
CC /workspace/kernel/build64-default/tools/objtool/check.o
CC /workspace/kernel/build64-default/tools/objtool/special.o
CC /workspace/kernel/build64-default/tools/objtool/builtin-check.o
CC /workspace/kernel/build64-default/tools/objtool/elf.o
CC /workspace/kernel/build64-default/tools/objtool/objtool.o
CC /workspace/kernel/build64-default/tools/objtool/orc_gen.o
CC /workspace/kernel/build64-default/tools/objtool/orc_dump.o
CC /workspace/kernel/build64-default/tools/objtool/libstring.o
CC /workspace/kernel/build64-default/tools/objtool/libctype.o
CC /workspace/kernel/build64-default/tools/objtool/str_error_r.o
CC /workspace/kernel/build64-default/tools/objtool/librbtree.o
CC /workspace/kernel/build64-default/tools/objtool/arch/x86/special.o
CC /workspace/kernel/build64-default/tools/objtool/arch/x86/decode.o
CC /workspace/kernel/build64-default/tools/objtool/arch/x86/orc.o
LD /workspace/kernel/build64-default/tools/objtool/arch/x86/objtool-in.o
LD /workspace/kernel/build64-default/tools/objtool/objtool-in.o
LINK /workspace/kernel/build64-default/tools/objtool/objtool
make[1]: Leaving directory '/workspace/kernel/build64-default'
++ nproc
+ make -j48 O=/workspace/kernel/build64-default M=drivers/gpu/drm/xe W=1
make[1]: Entering directory '/workspace/kernel/build64-default'
../scripts/Makefile.build:41: drivers/gpu/drm/xe/Makefile: No such file or directory
make[3]: *** No rule to make target 'drivers/gpu/drm/xe/Makefile'. Stop.
make[2]: *** [/workspace/kernel/Makefile:1934: drivers/gpu/drm/xe] Error 2
make[1]: *** [/workspace/kernel/Makefile:240: __sub-make] Error 2
make[1]: Leaving directory '/workspace/kernel/build64-default'
make: *** [Makefile:240: __sub-make] Error 2
run-parts: /workspace/ci/hooks/10-build-W1 exited with return code 2
^ permalink raw reply [flat|nested] 13+ messages in thread* ✓ CI.checksparse: success for Test GSC loading with Wa_22019338487
2024-05-27 21:19 [CI 0/2] Test GSC loading with Wa_22019338487 Daniele Ceraolo Spurio
` (6 preceding siblings ...)
2024-05-27 21:38 ` ✗ CI.Hooks: failure " Patchwork
@ 2024-05-27 21:39 ` Patchwork
2024-05-27 22:09 ` ✓ CI.BAT: " Patchwork
2024-05-27 22:52 ` ✗ CI.FULL: failure " Patchwork
9 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-05-27 21:39 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-xe
== Series Details ==
Series: Test GSC loading with Wa_22019338487
URL : https://patchwork.freedesktop.org/series/134099/
State : success
== Summary ==
+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c
Sparse version: 0.6.1 (Ubuntu: 0.6.1-2build1)
Fast mode used, each commit won't be checked separately.
Okay!
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 13+ messages in thread* ✓ CI.BAT: success for Test GSC loading with Wa_22019338487
2024-05-27 21:19 [CI 0/2] Test GSC loading with Wa_22019338487 Daniele Ceraolo Spurio
` (7 preceding siblings ...)
2024-05-27 21:39 ` ✓ CI.checksparse: success " Patchwork
@ 2024-05-27 22:09 ` Patchwork
2024-05-27 22:52 ` ✗ CI.FULL: failure " Patchwork
9 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-05-27 22:09 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 3429 bytes --]
== Series Details ==
Series: Test GSC loading with Wa_22019338487
URL : https://patchwork.freedesktop.org/series/134099/
State : success
== Summary ==
CI Bug Log - changes from xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c_BAT -> xe-pw-134099v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (5 -> 5)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-134099v1_BAT:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@core_hotunplug@unbind-rebind:
- {bat-lnl-1}: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c/bat-lnl-1/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/bat-lnl-1/igt@core_hotunplug@unbind-rebind.html
Known issues
------------
Here are the changes found in xe-pw-134099v1_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race:
- bat-dg2-oem2: [PASS][3] -> [ABORT][4] ([Intel XE#1908] / [Intel XE#1939])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html
#### Possible fixes ####
* igt@xe_gt_freq@freq_range_idle:
- {bat-lnl-1}: [SKIP][5] ([Intel XE#1462]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c/bat-lnl-1/igt@xe_gt_freq@freq_range_idle.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/bat-lnl-1/igt@xe_gt_freq@freq_range_idle.html
* igt@xe_pm_residency@gt-c6-on-idle:
- {bat-lnl-1}: [FAIL][7] ([Intel XE#1442]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c/bat-lnl-1/igt@xe_pm_residency@gt-c6-on-idle.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/bat-lnl-1/igt@xe_pm_residency@gt-c6-on-idle.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1442
[Intel XE#1462]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1462
[Intel XE#1908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1908
[Intel XE#1939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1939
Build changes
-------------
* Linux: xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c -> xe-pw-134099v1
IGT_7871: 1d7b961235e345db20933c057f265898e2e96fd2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c: e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c
xe-pw-134099v1: 134099v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/index.html
[-- Attachment #2: Type: text/html, Size: 4084 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread* ✗ CI.FULL: failure for Test GSC loading with Wa_22019338487
2024-05-27 21:19 [CI 0/2] Test GSC loading with Wa_22019338487 Daniele Ceraolo Spurio
` (8 preceding siblings ...)
2024-05-27 22:09 ` ✓ CI.BAT: " Patchwork
@ 2024-05-27 22:52 ` Patchwork
9 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2024-05-27 22:52 UTC (permalink / raw)
To: Daniele Ceraolo Spurio; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 34829 bytes --]
== Series Details ==
Series: Test GSC loading with Wa_22019338487
URL : https://patchwork.freedesktop.org/series/134099/
State : failure
== Summary ==
CI Bug Log - changes from xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c_full -> xe-pw-134099v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-134099v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-134099v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (3 -> 3)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-134099v1_full:
### IGT changes ###
#### Possible regressions ####
* igt@xe_pm@d3hot-mmap-system:
- shard-adlp: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@xe_pm@d3hot-mmap-system.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@core_hotunplug@hotreplug-lateclose:
- {shard-lnl}: NOTRUN -> [ABORT][2] +1 other test abort
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-lnl-8/igt@core_hotunplug@hotreplug-lateclose.html
* igt@xe_module_load@reload:
- {shard-lnl}: [PASS][3] -> [ABORT][4] +7 other tests abort
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c/shard-lnl-4/igt@xe_module_load@reload.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-lnl-8/igt@xe_module_load@reload.html
Known issues
------------
Here are the changes found in xe-pw-134099v1_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-read:
- shard-adlp: NOTRUN -> [SKIP][5] ([Intel XE#1125] / [Intel XE#1201]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-2/igt@intel_hwmon@hwmon-read.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-adlp: NOTRUN -> [SKIP][6] ([Intel XE#1124] / [Intel XE#1201]) +12 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-adlp: NOTRUN -> [FAIL][7] ([Intel XE#1204])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][8] ([Intel XE#1201] / [Intel XE#316]) +9 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-adlp: NOTRUN -> [FAIL][9] ([Intel XE#1231]) +1 other test fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-adlp: NOTRUN -> [SKIP][10] ([Intel XE#1201] / [Intel XE#610])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-adlp: NOTRUN -> [SKIP][11] ([Intel XE#1201] / [Intel XE#367]) +5 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-9/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][12] ([Intel XE#1201] / [Intel XE#787]) +53 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs:
- shard-adlp: NOTRUN -> [SKIP][13] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +35 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-adlp: NOTRUN -> [SKIP][14] ([Intel XE#1201] / [Intel XE#306]) +4 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-2/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-adlp: NOTRUN -> [SKIP][15] ([Intel XE#1201] / [Intel XE#373]) +12 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_cursor_edge_walk@128x128-right-edge:
- shard-adlp: NOTRUN -> [FAIL][16] ([Intel XE#581])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@kms_cursor_edge_walk@128x128-right-edge.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-adlp: NOTRUN -> [SKIP][17] ([Intel XE#1201] / [Intel XE#309]) +5 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_feature_discovery@display-2x:
- shard-adlp: NOTRUN -> [SKIP][18] ([Intel XE#1201] / [Intel XE#702])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-2/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-adlp: NOTRUN -> [SKIP][19] ([Intel XE#1138] / [Intel XE#1201])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-adlp: NOTRUN -> [SKIP][20] ([Intel XE#1137] / [Intel XE#1201])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-adlp: NOTRUN -> [SKIP][21] ([Intel XE#1135] / [Intel XE#1201])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-adlp: NOTRUN -> [SKIP][22] ([Intel XE#1201] / [Intel XE#310]) +9 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1:
- shard-adlp: NOTRUN -> [DMESG-WARN][23] ([Intel XE#1214] / [Intel XE#1608]) +2 other tests dmesg-warn
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-adlp: NOTRUN -> [SKIP][24] ([Intel XE#1201] / [Intel XE#455]) +31 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-adlp: NOTRUN -> [DMESG-FAIL][25] ([Intel XE#324]) +1 other test dmesg-fail
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
- shard-adlp: NOTRUN -> [SKIP][26] ([Intel XE#1201] / [Intel XE#651]) +26 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
- shard-adlp: NOTRUN -> [SKIP][27] ([Intel XE#1201] / [Intel XE#656]) +57 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
- shard-adlp: NOTRUN -> [FAIL][28] ([Intel XE#1861])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-adlp: NOTRUN -> [SKIP][29] ([Intel XE#1201]) +39 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-adlp: NOTRUN -> [SKIP][30] ([Intel XE#1201] / [Intel XE#653]) +20 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-adlp: NOTRUN -> [SKIP][31] ([Intel XE#1201] / [Intel XE#356])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-adlp: NOTRUN -> [FAIL][32] ([Intel XE#1331]) +2 other tests fail
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-adlp: NOTRUN -> [SKIP][33] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#498]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][34] ([Intel XE#1201] / [Intel XE#498]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][35] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][36] ([Intel XE#1201] / [Intel XE#305]) +5 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-9/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_pm_backlight@bad-brightness:
- shard-adlp: NOTRUN -> [SKIP][37] ([Intel XE#1201] / [Intel XE#870])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc6-dpms:
- shard-adlp: NOTRUN -> [FAIL][38] ([Intel XE#718])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-adlp: NOTRUN -> [SKIP][39] ([Intel XE#1201] / [Intel XE#1211])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-adlp: NOTRUN -> [SKIP][40] ([Intel XE#1201] / [Intel XE#836])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_prop_blob@blob-prop-validate:
- shard-adlp: NOTRUN -> [SKIP][41] ([Intel XE#1201] / [Intel XE#780])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@kms_prop_blob@blob-prop-validate.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-adlp: NOTRUN -> [SKIP][42] ([Intel XE#1122] / [Intel XE#1201])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@psr-suspend:
- shard-adlp: NOTRUN -> [SKIP][43] ([Intel XE#1201] / [Intel XE#929]) +21 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@kms_psr@psr-suspend.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-adlp: NOTRUN -> [SKIP][44] ([Intel XE#1149] / [Intel XE#1201])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-adlp: NOTRUN -> [SKIP][45] ([Intel XE#1201] / [Intel XE#327]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-adlp: NOTRUN -> [FAIL][46] ([Intel XE#1874]) +5 other tests fail
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-adlp: NOTRUN -> [SKIP][47] ([Intel XE#1127] / [Intel XE#1201])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-adlp: NOTRUN -> [SKIP][48] ([Intel XE#1201] / [Intel XE#829]) +5 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_sysfs_edid_timing:
- shard-adlp: NOTRUN -> [FAIL][49] ([Intel XE#1174])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-adlp: NOTRUN -> [SKIP][50] ([Intel XE#1201] / [Intel XE#362]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@query-forked-hang:
- shard-adlp: NOTRUN -> [ABORT][51] ([Intel XE#1939]) +1 other test abort
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_vblank@query-forked-hang.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-adlp: NOTRUN -> [DMESG-WARN][52] ([Intel XE#1191] / [Intel XE#1214]) +7 other tests dmesg-warn
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-2/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_writeback@writeback-fb-id:
- shard-adlp: NOTRUN -> [SKIP][53] ([Intel XE#1201] / [Intel XE#756])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@kms_writeback@writeback-fb-id.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-adlp: NOTRUN -> [SKIP][54] ([Intel XE#1201] / [Intel XE#1932]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@xe_ccs@suspend-resume:
- shard-adlp: NOTRUN -> [SKIP][55] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#488]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@xe_ccs@suspend-resume.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-adlp: NOTRUN -> [SKIP][56] ([Intel XE#1201] / [Intel XE#261]) +8 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-small:
- shard-adlp: NOTRUN -> [SKIP][57] ([Intel XE#1201] / [Intel XE#261] / [Intel XE#688]) +5 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@xe_evict@evict-small.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
- shard-adlp: NOTRUN -> [SKIP][58] ([Intel XE#1201] / [Intel XE#688]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
- shard-adlp: NOTRUN -> [SKIP][59] ([Intel XE#1201] / [Intel XE#1392]) +14 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch:
- shard-adlp: NOTRUN -> [SKIP][60] ([Intel XE#1201] / [Intel XE#288]) +49 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html
* igt@xe_exec_threads@threads-bal-mixed-userptr-rebind:
- shard-adlp: NOTRUN -> [DMESG-FAIL][61] ([Intel XE#1069] / [Intel XE#1638])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@xe_exec_threads@threads-bal-mixed-userptr-rebind.html
* igt@xe_gt_freq@freq_reset_multiple:
- shard-adlp: NOTRUN -> [DMESG-WARN][62] ([Intel XE#1214]) +2 other tests dmesg-warn
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@xe_gt_freq@freq_reset_multiple.html
* igt@xe_mmap@small-bar:
- shard-adlp: NOTRUN -> [SKIP][63] ([Intel XE#1201] / [Intel XE#512])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@xe_mmap@small-bar.html
* igt@xe_module_load@force-load:
- shard-adlp: NOTRUN -> [SKIP][64] ([Intel XE#1201] / [Intel XE#378])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@xe_module_load@force-load.html
* igt@xe_noexec_ping_pong:
- shard-adlp: NOTRUN -> [SKIP][65] ([Intel XE#1201] / [Intel XE#379])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@xe_noexec_ping_pong.html
* igt@xe_pat@pat-index-xehpc:
- shard-adlp: NOTRUN -> [SKIP][66] ([Intel XE#1201] / [Intel XE#979])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-2/igt@xe_pat@pat-index-xehpc.html
* igt@xe_peer2peer@read:
- shard-adlp: NOTRUN -> [SKIP][67] ([Intel XE#1061] / [Intel XE#1201])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@xe_peer2peer@read.html
* igt@xe_pm@s2idle-basic-exec:
- shard-adlp: NOTRUN -> [DMESG-WARN][68] ([Intel XE#1191] / [Intel XE#1214] / [Intel XE#1608])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-2/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-adlp: NOTRUN -> [SKIP][69] ([Intel XE#1201] / [Intel XE#366])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s4-basic:
- shard-adlp: NOTRUN -> [ABORT][70] ([Intel XE#1358])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-9/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-adlp: [PASS][71] -> [ABORT][72] ([Intel XE#1794]) +1 other test abort
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c/shard-adlp-6/igt@xe_pm@s4-vm-bind-unbind-all.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-9/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-adlp: [PASS][73] -> [INCOMPLETE][74] ([Intel XE#1195])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c/shard-adlp-8/igt@xe_pm@s4-vm-bind-userptr.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-1/igt@xe_pm@s4-vm-bind-userptr.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-adlp: NOTRUN -> [SKIP][75] ([Intel XE#1201] / [Intel XE#944]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_wedged@basic-wedged:
- shard-adlp: NOTRUN -> [DMESG-WARN][76] ([Intel XE#1214] / [Intel XE#1760])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@xe_wedged@basic-wedged.html
#### Possible fixes ####
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs:
- {shard-lnl}: [FAIL][77] ([Intel XE#1701]) -> [PASS][78] +1 other test pass
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c/shard-lnl-3/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-lnl-7/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@1x-outputs.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- {shard-lnl}: [FAIL][79] ([Intel XE#1659]) -> [PASS][80] +1 other test pass
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_cursor_crc@cursor-sliding-128x128@pipe-a-edp-1:
- {shard-lnl}: [ABORT][81] ([Intel XE#1939]) -> [PASS][82] +4 other tests pass
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c/shard-lnl-6/igt@kms_cursor_crc@cursor-sliding-128x128@pipe-a-edp-1.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-lnl-6/igt@kms_cursor_crc@cursor-sliding-128x128@pipe-a-edp-1.html
* igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate:
- {shard-lnl}: [DMESG-WARN][83] ([Intel XE#1622]) -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c/shard-lnl-8/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-lnl-6/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-invalidate.html
* igt@xe_pm@s4-basic-exec:
- shard-adlp: [ABORT][85] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c/shard-adlp-9/igt@xe_pm@s4-basic-exec.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-6/igt@xe_pm@s4-basic-exec.html
#### Warnings ####
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-adlp: [DMESG-FAIL][87] ([Intel XE#324]) -> [FAIL][88] ([Intel XE#1231])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: [INCOMPLETE][89] ([Intel XE#1195] / [Intel XE#927]) -> [DMESG-WARN][90] ([Intel XE#1191] / [Intel XE#1214] / [Intel XE#1608])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c/shard-adlp-9/igt@kms_flip@flip-vs-suspend-interruptible.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-adlp: [INCOMPLETE][91] ([Intel XE#1195]) -> [DMESG-WARN][92] ([Intel XE#1191] / [Intel XE#1214] / [Intel XE#1608])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c/shard-adlp-9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-adlp: [DMESG-WARN][93] ([Intel XE#1191] / [Intel XE#1214] / [Intel XE#1608]) -> [INCOMPLETE][94] ([Intel XE#1195] / [Intel XE#927])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c/shard-adlp-8/igt@kms_frontbuffer_tracking@fbc-suspend.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-1/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@xe_pm@s2idle-exec-after:
- shard-adlp: [INCOMPLETE][95] ([Intel XE#1044] / [Intel XE#1195] / [Intel XE#1358]) -> [DMESG-WARN][96] ([Intel XE#1191] / [Intel XE#1214])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c/shard-adlp-1/igt@xe_pm@s2idle-exec-after.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-8/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-adlp: [INCOMPLETE][97] ([Intel XE#1195] / [Intel XE#1694]) -> [DMESG-WARN][98] ([Intel XE#1214] / [Intel XE#1608])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c/shard-adlp-1/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-2/igt@xe_pm@s2idle-vm-bind-unbind-all.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-adlp: [DMESG-WARN][99] ([Intel XE#1214] / [Intel XE#1608]) -> [INCOMPLETE][100] ([Intel XE#1195] / [Intel XE#1694])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c/shard-adlp-2/igt@xe_pm@s2idle-vm-bind-userptr.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-1/igt@xe_pm@s2idle-vm-bind-userptr.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-adlp: [DMESG-WARN][101] ([Intel XE#1214] / [Intel XE#1330] / [Intel XE#1760]) -> [DMESG-WARN][102] ([Intel XE#1214] / [Intel XE#1760])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c/shard-adlp-1/igt@xe_wedged@wedged-at-any-timeout.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/shard-adlp-2/igt@xe_wedged@wedged-at-any-timeout.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1044]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1044
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1069]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1069
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1149
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1174
[Intel XE#1191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1191
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
[Intel XE#1211]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1211
[Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214
[Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231
[Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330
[Intel XE#1331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1331
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1446
[Intel XE#1608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1608
[Intel XE#1622]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1622
[Intel XE#1638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1638
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694
[Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
[Intel XE#1761]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1761
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1830]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1830
[Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#1932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1932
[Intel XE#1939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1939
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
[Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#581]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/581
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/927
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* Linux: xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c -> xe-pw-134099v1
IGT_7871: 1d7b961235e345db20933c057f265898e2e96fd2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-1352-e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c: e3349a28c5e6fe986305d4c99b13e59eb7ca9b9c
xe-pw-134099v1: 134099v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-134099v1/index.html
[-- Attachment #2: Type: text/html, Size: 42983 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread