* [PATCH v2 1/3] drm/xe/guc: Default log level to non-verbose
2025-06-13 20:00 [PATCH v2 0/3] drm/xe: Tweak default GuC log level Lucas De Marchi
@ 2025-06-13 20:00 ` Lucas De Marchi
2025-06-13 20:00 ` [PATCH v2 2/3] drm/xe: Annotate default for guc_log_level param Lucas De Marchi
` (6 subsequent siblings)
7 siblings, 0 replies; 12+ messages in thread
From: Lucas De Marchi @ 2025-06-13 20:00 UTC (permalink / raw)
To: intel-xe; +Cc: Lucas De Marchi, Michal Mrozek, John Harrison, Michal Wajdeczko
Currently xe sets the guc log level to a verbose level since it's useful
to debug hangs and general development. However the verbose level may
already be too much and affect performance.
Michal Mrozek did some tests with the L0 compute stack for submission
latency with ULLS disabled. Below are the normalized numbers with log
level 3 (the current default) as baseline for each test:
Test \ Log Level 3 0 1 2
----------------------------------------------------------- ------ ------ ------ ------
BestWalkerNthCommandListSubmission(CmdListCount=2) 1.00 0.63 0.63 0.96
BestWalkerNthSubmission(KernelCount=2) 1.00 0.62 0.63 0.96
BestWalkerNthSubmissionImmediate(KernelCount=2) 1.00 0.58 0.58 0.85
BestWalkerSubmission 1.00 0.62 0.62 0.96
BestWalkerSubmissionImmediate 1.00 0.63 0.62 0.96
BestWalkerSubmissionImmediateMultiCmdlists(cmdlistCount=2) 1.00 0.58 0.58 0.86
BestWalkerSubmissionImmediateMultiCmdlists(cmdlistCount=4) 1.00 0.70 0.70 0.83
BestWalkerSubmissionImmediateMultiCmdlists(cmdlistCount=8) 1.00 0.53 0.52 0.78
Log level 2 is the first "verbose level" for GuC, where the biggest
difference happens. Keep log level 3 for CONFIG_DRM_XE_DEBUG, but switch
to 1, i.e. GUC_LOG_LEVEL_NON_VERBOSE, for "normal" builds.
Cc: Michal Mrozek <michal.mrozek@intel.com>
Cc: John Harrison <John.C.Harrison@Intel.com>
Reviewed-by: John Harrison <John.C.Harrison@Intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
drivers/gpu/drm/xe/xe_module.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_module.c b/drivers/gpu/drm/xe/xe_module.c
index 1c4dfafbcd0bc..4809afa7ce3f9 100644
--- a/drivers/gpu/drm/xe/xe_module.c
+++ b/drivers/gpu/drm/xe/xe_module.c
@@ -20,7 +20,7 @@
struct xe_modparam xe_modparam = {
.probe_display = true,
- .guc_log_level = 3,
+ .guc_log_level = IS_ENABLED(CONFIG_DRM_XE_DEBUG) ? 3 : 1,
.force_probe = CONFIG_DRM_XE_FORCE_PROBE,
#ifdef CONFIG_PCI_IOV
.max_vfs = IS_ENABLED(CONFIG_DRM_XE_DEBUG) ? ~0 : 0,
--
2.49.0
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH v2 2/3] drm/xe: Annotate default for guc_log_level param
2025-06-13 20:00 [PATCH v2 0/3] drm/xe: Tweak default GuC log level Lucas De Marchi
2025-06-13 20:00 ` [PATCH v2 1/3] drm/xe/guc: Default log level to non-verbose Lucas De Marchi
@ 2025-06-13 20:00 ` Lucas De Marchi
2025-06-13 20:00 ` [PATCH v2 3/3] drm/xe: Normalize default param values Lucas De Marchi
` (5 subsequent siblings)
7 siblings, 0 replies; 12+ messages in thread
From: Lucas De Marchi @ 2025-06-13 20:00 UTC (permalink / raw)
To: intel-xe; +Cc: Lucas De Marchi, Michal Mrozek, John Harrison, Michal Wajdeczko
Reword the parameter description so it's clear what's the default and
what are the verbose levels.
Reviewed-by: John Harrison <John.C.Harrison@Intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
drivers/gpu/drm/xe/xe_module.c | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_module.c b/drivers/gpu/drm/xe/xe_module.c
index 4809afa7ce3f9..192908fa074cb 100644
--- a/drivers/gpu/drm/xe/xe_module.c
+++ b/drivers/gpu/drm/xe/xe_module.c
@@ -18,9 +18,15 @@
#include "xe_observation.h"
#include "xe_sched_job.h"
+#if IS_ENABLED(CONFIG_DRM_XE_DEBUG)
+#define DEFAULT_GUC_LOG_LEVEL 3
+#else
+#define DEFAULT_GUC_LOG_LEVEL 1
+#endif
+
struct xe_modparam xe_modparam = {
.probe_display = true,
- .guc_log_level = IS_ENABLED(CONFIG_DRM_XE_DEBUG) ? 3 : 1,
+ .guc_log_level = DEFAULT_GUC_LOG_LEVEL,
.force_probe = CONFIG_DRM_XE_FORCE_PROBE,
#ifdef CONFIG_PCI_IOV
.max_vfs = IS_ENABLED(CONFIG_DRM_XE_DEBUG) ? ~0 : 0,
@@ -43,7 +49,8 @@ module_param_named(vram_bar_size, xe_modparam.force_vram_bar_size, int, 0600);
MODULE_PARM_DESC(vram_bar_size, "Set the vram bar size (in MiB) - <0=disable-resize, 0=max-needed-size[default], >0=force-size");
module_param_named(guc_log_level, xe_modparam.guc_log_level, int, 0600);
-MODULE_PARM_DESC(guc_log_level, "GuC firmware logging level (0=disable, 1..5=enable with verbosity min..max)");
+MODULE_PARM_DESC(guc_log_level, "GuC firmware logging level (0=disable, 1=normal, 2..5=verbose-levels "
+ "[default=" __stringify(DEFAULT_GUC_LOG_LEVEL) "])");
module_param_named_unsafe(guc_firmware_path, xe_modparam.guc_firmware_path, charp, 0400);
MODULE_PARM_DESC(guc_firmware_path,
--
2.49.0
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH v2 3/3] drm/xe: Normalize default param values
2025-06-13 20:00 [PATCH v2 0/3] drm/xe: Tweak default GuC log level Lucas De Marchi
2025-06-13 20:00 ` [PATCH v2 1/3] drm/xe/guc: Default log level to non-verbose Lucas De Marchi
2025-06-13 20:00 ` [PATCH v2 2/3] drm/xe: Annotate default for guc_log_level param Lucas De Marchi
@ 2025-06-13 20:00 ` Lucas De Marchi
2025-06-16 18:46 ` John Harrison
2025-06-13 21:52 ` ✗ CI.checkpatch: warning for drm/xe: Tweak default GuC log level (rev2) Patchwork
` (4 subsequent siblings)
7 siblings, 1 reply; 12+ messages in thread
From: Lucas De Marchi @ 2025-06-13 20:00 UTC (permalink / raw)
To: intel-xe; +Cc: Lucas De Marchi, Michal Mrozek, John Harrison, Michal Wajdeczko
Document xe module params with the default values following a similar
strategy for all of them:
1) Define a DEFAULT_* macro with the default value. When the
value can't be directly stringified, also define a *_STR
variant
2) Use __stringify() or the _STR variant to make sure the
default value shows up in the param description
This allows us to show the correct default according to the
configuration. max_vfs for example was wrongly documented for
CONFIG_DRM_XE_DEBUG and svm_notifier_size didn't have its default
documented.
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
drivers/gpu/drm/xe/xe_module.c | 44 +++++++++++++++++++++++++++---------------
1 file changed, 28 insertions(+), 16 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_module.c b/drivers/gpu/drm/xe/xe_module.c
index 192908fa074cb..2068c579d5c3b 100644
--- a/drivers/gpu/drm/xe/xe_module.c
+++ b/drivers/gpu/drm/xe/xe_module.c
@@ -19,34 +19,43 @@
#include "xe_sched_job.h"
#if IS_ENABLED(CONFIG_DRM_XE_DEBUG)
-#define DEFAULT_GUC_LOG_LEVEL 3
+#define DEFAULT_GUC_LOG_LEVEL 3
+#define DEFAULT_MAX_VFS ~0
+#define DEFAULT_MAX_VFS_STR "unlimited"
#else
-#define DEFAULT_GUC_LOG_LEVEL 1
+#define DEFAULT_GUC_LOG_LEVEL 1
+#define DEFAULT_MAX_VFS 0
+#define DEFAULT_MAX_VFS_STR "0"
#endif
+#define DEFAULT_PROBE_DISPLAY true
+#define DEFAULT_FORCE_PROBE CONFIG_DRM_XE_FORCE_PROBE
+#define DEFAULT_WEDGED_MODE 1
+#define DEFAULT_SVM_NOTIFIER_SIZE 512
+
struct xe_modparam xe_modparam = {
- .probe_display = true,
- .guc_log_level = DEFAULT_GUC_LOG_LEVEL,
- .force_probe = CONFIG_DRM_XE_FORCE_PROBE,
-#ifdef CONFIG_PCI_IOV
- .max_vfs = IS_ENABLED(CONFIG_DRM_XE_DEBUG) ? ~0 : 0,
-#endif
- .wedged_mode = 1,
- .svm_notifier_size = 512,
+ .probe_display = DEFAULT_PROBE_DISPLAY,
+ .guc_log_level = DEFAULT_GUC_LOG_LEVEL,
+ .force_probe = DEFAULT_FORCE_PROBE,
+ .max_vfs = DEFAULT_MAX_VFS,
+ .wedged_mode = DEFAULT_WEDGED_MODE,
+ .svm_notifier_size = DEFAULT_SVM_NOTIFIER_SIZE,
/* the rest are 0 by default */
};
module_param_named(svm_notifier_size, xe_modparam.svm_notifier_size, uint, 0600);
-MODULE_PARM_DESC(svm_notifier_size, "Set the svm notifier size(in MiB), must be power of 2");
+MODULE_PARM_DESC(svm_notifier_size, "Set the svm notifier size in MiB, must be power of 2 "
+ "[default=" __stringify(DEFAULT_SVM_NOTIFIER_SIZE) "]");
module_param_named_unsafe(force_execlist, xe_modparam.force_execlist, bool, 0444);
MODULE_PARM_DESC(force_execlist, "Force Execlist submission");
module_param_named(probe_display, xe_modparam.probe_display, bool, 0444);
-MODULE_PARM_DESC(probe_display, "Probe display HW, otherwise it's left untouched (default: true)");
+MODULE_PARM_DESC(probe_display, "Probe display HW, otherwise it's left untouched "
+ "[default=" __stringify(DEFAULT_PROBE_DISPLAY) "])");
module_param_named(vram_bar_size, xe_modparam.force_vram_bar_size, int, 0600);
-MODULE_PARM_DESC(vram_bar_size, "Set the vram bar size (in MiB) - <0=disable-resize, 0=max-needed-size[default], >0=force-size");
+MODULE_PARM_DESC(vram_bar_size, "Set the vram bar size in MiB (<0=disable-resize, 0=max-needed-size, >0=force-size [default=0])");
module_param_named(guc_log_level, xe_modparam.guc_log_level, int, 0600);
MODULE_PARM_DESC(guc_log_level, "GuC firmware logging level (0=disable, 1=normal, 2..5=verbose-levels "
@@ -66,18 +75,21 @@ MODULE_PARM_DESC(gsc_firmware_path,
module_param_named_unsafe(force_probe, xe_modparam.force_probe, charp, 0400);
MODULE_PARM_DESC(force_probe,
- "Force probe options for specified devices. See CONFIG_DRM_XE_FORCE_PROBE for details.");
+ "Force probe options for specified devices. See CONFIG_DRM_XE_FORCE_PROBE for details "
+ "[default=" DEFAULT_FORCE_PROBE "])");
#ifdef CONFIG_PCI_IOV
module_param_named(max_vfs, xe_modparam.max_vfs, uint, 0400);
MODULE_PARM_DESC(max_vfs,
"Limit number of Virtual Functions (VFs) that could be managed. "
- "(0 = no VFs [default]; N = allow up to N VFs)");
+ "(0=no VFs; N=allow up to N VFs "
+ "[default=" DEFAULT_MAX_VFS_STR "])");
#endif
module_param_named_unsafe(wedged_mode, xe_modparam.wedged_mode, int, 0600);
MODULE_PARM_DESC(wedged_mode,
- "Module's default policy for the wedged mode - 0=never, 1=upon-critical-errors[default], 2=upon-any-hang");
+ "Module's default policy for the wedged mode (0=never, 1=upon-critical-errors, 2=upon-any-hang "
+ "[default=" __stringify(DEFAULT_WEDGED_MODE) "])");
static int xe_check_nomodeset(void)
{
--
2.49.0
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [PATCH v2 3/3] drm/xe: Normalize default param values
2025-06-13 20:00 ` [PATCH v2 3/3] drm/xe: Normalize default param values Lucas De Marchi
@ 2025-06-16 18:46 ` John Harrison
2025-06-16 18:52 ` Lucas De Marchi
0 siblings, 1 reply; 12+ messages in thread
From: John Harrison @ 2025-06-16 18:46 UTC (permalink / raw)
To: Lucas De Marchi, intel-xe; +Cc: Michal Mrozek, Michal Wajdeczko
On 6/13/2025 1:00 PM, Lucas De Marchi wrote:
> Document xe module params with the default values following a similar
> strategy for all of them:
>
> 1) Define a DEFAULT_* macro with the default value. When the
> value can't be directly stringified, also define a *_STR
> variant
> 2) Use __stringify() or the _STR variant to make sure the
> default value shows up in the param description
>
> This allows us to show the correct default according to the
> configuration. max_vfs for example was wrongly documented for
> CONFIG_DRM_XE_DEBUG and svm_notifier_size didn't have its default
> documented.
>
> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
> ---
> drivers/gpu/drm/xe/xe_module.c | 44 +++++++++++++++++++++++++++---------------
> 1 file changed, 28 insertions(+), 16 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_module.c b/drivers/gpu/drm/xe/xe_module.c
> index 192908fa074cb..2068c579d5c3b 100644
> --- a/drivers/gpu/drm/xe/xe_module.c
> +++ b/drivers/gpu/drm/xe/xe_module.c
> @@ -19,34 +19,43 @@
> #include "xe_sched_job.h"
>
> #if IS_ENABLED(CONFIG_DRM_XE_DEBUG)
> -#define DEFAULT_GUC_LOG_LEVEL 3
> +#define DEFAULT_GUC_LOG_LEVEL 3
> +#define DEFAULT_MAX_VFS ~0
> +#define DEFAULT_MAX_VFS_STR "unlimited"
> #else
> -#define DEFAULT_GUC_LOG_LEVEL 1
> +#define DEFAULT_GUC_LOG_LEVEL 1
> +#define DEFAULT_MAX_VFS 0
> +#define DEFAULT_MAX_VFS_STR "0"
Could be 'stringify(MAX_VFS)'.
> #endif
>
> +#define DEFAULT_PROBE_DISPLAY true
> +#define DEFAULT_FORCE_PROBE CONFIG_DRM_XE_FORCE_PROBE
> +#define DEFAULT_WEDGED_MODE 1
> +#define DEFAULT_SVM_NOTIFIER_SIZE 512
> +
> struct xe_modparam xe_modparam = {
> - .probe_display = true,
> - .guc_log_level = DEFAULT_GUC_LOG_LEVEL,
> - .force_probe = CONFIG_DRM_XE_FORCE_PROBE,
> -#ifdef CONFIG_PCI_IOV
This ifdef is lost from the new version?
> - .max_vfs = IS_ENABLED(CONFIG_DRM_XE_DEBUG) ? ~0 : 0,
> -#endif
> - .wedged_mode = 1,
> - .svm_notifier_size = 512,
> + .probe_display = DEFAULT_PROBE_DISPLAY,
> + .guc_log_level = DEFAULT_GUC_LOG_LEVEL,
> + .force_probe = DEFAULT_FORCE_PROBE,
> + .max_vfs = DEFAULT_MAX_VFS,
> + .wedged_mode = DEFAULT_WEDGED_MODE,
> + .svm_notifier_size = DEFAULT_SVM_NOTIFIER_SIZE,
> /* the rest are 0 by default */
> };
>
> module_param_named(svm_notifier_size, xe_modparam.svm_notifier_size, uint, 0600);
> -MODULE_PARM_DESC(svm_notifier_size, "Set the svm notifier size(in MiB), must be power of 2");
> +MODULE_PARM_DESC(svm_notifier_size, "Set the svm notifier size in MiB, must be power of 2 "
> + "[default=" __stringify(DEFAULT_SVM_NOTIFIER_SIZE) "]");
>
> module_param_named_unsafe(force_execlist, xe_modparam.force_execlist, bool, 0444);
> MODULE_PARM_DESC(force_execlist, "Force Execlist submission");
>
> module_param_named(probe_display, xe_modparam.probe_display, bool, 0444);
> -MODULE_PARM_DESC(probe_display, "Probe display HW, otherwise it's left untouched (default: true)");
> +MODULE_PARM_DESC(probe_display, "Probe display HW, otherwise it's left untouched "
> + "[default=" __stringify(DEFAULT_PROBE_DISPLAY) "])");
>
> module_param_named(vram_bar_size, xe_modparam.force_vram_bar_size, int, 0600);
> -MODULE_PARM_DESC(vram_bar_size, "Set the vram bar size (in MiB) - <0=disable-resize, 0=max-needed-size[default], >0=force-size");
> +MODULE_PARM_DESC(vram_bar_size, "Set the vram bar size in MiB (<0=disable-resize, 0=max-needed-size, >0=force-size [default=0])");
Why leave this one as hard coded value rather than a define?
John.
>
> module_param_named(guc_log_level, xe_modparam.guc_log_level, int, 0600);
> MODULE_PARM_DESC(guc_log_level, "GuC firmware logging level (0=disable, 1=normal, 2..5=verbose-levels "
> @@ -66,18 +75,21 @@ MODULE_PARM_DESC(gsc_firmware_path,
>
> module_param_named_unsafe(force_probe, xe_modparam.force_probe, charp, 0400);
> MODULE_PARM_DESC(force_probe,
> - "Force probe options for specified devices. See CONFIG_DRM_XE_FORCE_PROBE for details.");
> + "Force probe options for specified devices. See CONFIG_DRM_XE_FORCE_PROBE for details "
> + "[default=" DEFAULT_FORCE_PROBE "])");
>
> #ifdef CONFIG_PCI_IOV
> module_param_named(max_vfs, xe_modparam.max_vfs, uint, 0400);
> MODULE_PARM_DESC(max_vfs,
> "Limit number of Virtual Functions (VFs) that could be managed. "
> - "(0 = no VFs [default]; N = allow up to N VFs)");
> + "(0=no VFs; N=allow up to N VFs "
> + "[default=" DEFAULT_MAX_VFS_STR "])");
> #endif
>
> module_param_named_unsafe(wedged_mode, xe_modparam.wedged_mode, int, 0600);
> MODULE_PARM_DESC(wedged_mode,
> - "Module's default policy for the wedged mode - 0=never, 1=upon-critical-errors[default], 2=upon-any-hang");
> + "Module's default policy for the wedged mode (0=never, 1=upon-critical-errors, 2=upon-any-hang "
> + "[default=" __stringify(DEFAULT_WEDGED_MODE) "])");
>
> static int xe_check_nomodeset(void)
> {
>
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [PATCH v2 3/3] drm/xe: Normalize default param values
2025-06-16 18:46 ` John Harrison
@ 2025-06-16 18:52 ` Lucas De Marchi
2025-06-16 19:14 ` John Harrison
0 siblings, 1 reply; 12+ messages in thread
From: Lucas De Marchi @ 2025-06-16 18:52 UTC (permalink / raw)
To: John Harrison; +Cc: intel-xe, Michal Mrozek, Michal Wajdeczko
On Mon, Jun 16, 2025 at 11:46:57AM -0700, John Harrison wrote:
>On 6/13/2025 1:00 PM, Lucas De Marchi wrote:
>>Document xe module params with the default values following a similar
>>strategy for all of them:
>>
>> 1) Define a DEFAULT_* macro with the default value. When the
>> value can't be directly stringified, also define a *_STR
>> variant
>> 2) Use __stringify() or the _STR variant to make sure the
>> default value shows up in the param description
>>
>>This allows us to show the correct default according to the
>>configuration. max_vfs for example was wrongly documented for
>>CONFIG_DRM_XE_DEBUG and svm_notifier_size didn't have its default
>>documented.
>>
>>Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
>>---
>> drivers/gpu/drm/xe/xe_module.c | 44 +++++++++++++++++++++++++++---------------
>> 1 file changed, 28 insertions(+), 16 deletions(-)
>>
>>diff --git a/drivers/gpu/drm/xe/xe_module.c b/drivers/gpu/drm/xe/xe_module.c
>>index 192908fa074cb..2068c579d5c3b 100644
>>--- a/drivers/gpu/drm/xe/xe_module.c
>>+++ b/drivers/gpu/drm/xe/xe_module.c
>>@@ -19,34 +19,43 @@
>> #include "xe_sched_job.h"
>> #if IS_ENABLED(CONFIG_DRM_XE_DEBUG)
>>-#define DEFAULT_GUC_LOG_LEVEL 3
>>+#define DEFAULT_GUC_LOG_LEVEL 3
>>+#define DEFAULT_MAX_VFS ~0
>>+#define DEFAULT_MAX_VFS_STR "unlimited"
>> #else
>>-#define DEFAULT_GUC_LOG_LEVEL 1
>>+#define DEFAULT_GUC_LOG_LEVEL 1
>>+#define DEFAULT_MAX_VFS 0
>>+#define DEFAULT_MAX_VFS_STR "0"
>Could be 'stringify(MAX_VFS)'.
I think it's better to pair with the one above.
We don't want to print the the default is ~0 in the other case so we
create a manual _STR.
>
>> #endif
>>+#define DEFAULT_PROBE_DISPLAY true
>>+#define DEFAULT_FORCE_PROBE CONFIG_DRM_XE_FORCE_PROBE
>>+#define DEFAULT_WEDGED_MODE 1
>>+#define DEFAULT_SVM_NOTIFIER_SIZE 512
>>+
>> struct xe_modparam xe_modparam = {
>>- .probe_display = true,
>>- .guc_log_level = DEFAULT_GUC_LOG_LEVEL,
>>- .force_probe = CONFIG_DRM_XE_FORCE_PROBE,
>>-#ifdef CONFIG_PCI_IOV
>This ifdef is lost from the new version?
yeah, dropped it by mistake... will need to add it back.
>
>>- .max_vfs = IS_ENABLED(CONFIG_DRM_XE_DEBUG) ? ~0 : 0,
>>-#endif
>>- .wedged_mode = 1,
>>- .svm_notifier_size = 512,
>>+ .probe_display = DEFAULT_PROBE_DISPLAY,
>>+ .guc_log_level = DEFAULT_GUC_LOG_LEVEL,
>>+ .force_probe = DEFAULT_FORCE_PROBE,
>>+ .max_vfs = DEFAULT_MAX_VFS,
>>+ .wedged_mode = DEFAULT_WEDGED_MODE,
>>+ .svm_notifier_size = DEFAULT_SVM_NOTIFIER_SIZE,
>> /* the rest are 0 by default */
>> };
>> module_param_named(svm_notifier_size, xe_modparam.svm_notifier_size, uint, 0600);
>>-MODULE_PARM_DESC(svm_notifier_size, "Set the svm notifier size(in MiB), must be power of 2");
>>+MODULE_PARM_DESC(svm_notifier_size, "Set the svm notifier size in MiB, must be power of 2 "
>>+ "[default=" __stringify(DEFAULT_SVM_NOTIFIER_SIZE) "]");
>> module_param_named_unsafe(force_execlist, xe_modparam.force_execlist, bool, 0444);
>> MODULE_PARM_DESC(force_execlist, "Force Execlist submission");
>> module_param_named(probe_display, xe_modparam.probe_display, bool, 0444);
>>-MODULE_PARM_DESC(probe_display, "Probe display HW, otherwise it's left untouched (default: true)");
>>+MODULE_PARM_DESC(probe_display, "Probe display HW, otherwise it's left untouched "
>>+ "[default=" __stringify(DEFAULT_PROBE_DISPLAY) "])");
>> module_param_named(vram_bar_size, xe_modparam.force_vram_bar_size, int, 0600);
>>-MODULE_PARM_DESC(vram_bar_size, "Set the vram bar size (in MiB) - <0=disable-resize, 0=max-needed-size[default], >0=force-size");
>>+MODULE_PARM_DESC(vram_bar_size, "Set the vram bar size in MiB (<0=disable-resize, 0=max-needed-size, >0=force-size [default=0])");
>Why leave this one as hard coded value rather than a define?
there wasn't an assignment xe_modparam, so I overlooked it. I will fix
those up in next rev
thanks
Lucas De Marchi
>
>John.
>
>> module_param_named(guc_log_level, xe_modparam.guc_log_level, int, 0600);
>> MODULE_PARM_DESC(guc_log_level, "GuC firmware logging level (0=disable, 1=normal, 2..5=verbose-levels "
>>@@ -66,18 +75,21 @@ MODULE_PARM_DESC(gsc_firmware_path,
>> module_param_named_unsafe(force_probe, xe_modparam.force_probe, charp, 0400);
>> MODULE_PARM_DESC(force_probe,
>>- "Force probe options for specified devices. See CONFIG_DRM_XE_FORCE_PROBE for details.");
>>+ "Force probe options for specified devices. See CONFIG_DRM_XE_FORCE_PROBE for details "
>>+ "[default=" DEFAULT_FORCE_PROBE "])");
>> #ifdef CONFIG_PCI_IOV
>> module_param_named(max_vfs, xe_modparam.max_vfs, uint, 0400);
>> MODULE_PARM_DESC(max_vfs,
>> "Limit number of Virtual Functions (VFs) that could be managed. "
>>- "(0 = no VFs [default]; N = allow up to N VFs)");
>>+ "(0=no VFs; N=allow up to N VFs "
>>+ "[default=" DEFAULT_MAX_VFS_STR "])");
>> #endif
>> module_param_named_unsafe(wedged_mode, xe_modparam.wedged_mode, int, 0600);
>> MODULE_PARM_DESC(wedged_mode,
>>- "Module's default policy for the wedged mode - 0=never, 1=upon-critical-errors[default], 2=upon-any-hang");
>>+ "Module's default policy for the wedged mode (0=never, 1=upon-critical-errors, 2=upon-any-hang "
>>+ "[default=" __stringify(DEFAULT_WEDGED_MODE) "])");
>> static int xe_check_nomodeset(void)
>> {
>>
>
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [PATCH v2 3/3] drm/xe: Normalize default param values
2025-06-16 18:52 ` Lucas De Marchi
@ 2025-06-16 19:14 ` John Harrison
0 siblings, 0 replies; 12+ messages in thread
From: John Harrison @ 2025-06-16 19:14 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-xe, Michal Mrozek, Michal Wajdeczko
[-- Attachment #1: Type: text/plain, Size: 6423 bytes --]
On 6/16/2025 11:52 AM, Lucas De Marchi wrote:
> On Mon, Jun 16, 2025 at 11:46:57AM -0700, John Harrison wrote:
>> On 6/13/2025 1:00 PM, Lucas De Marchi wrote:
>>> Document xe module params with the default values following a similar
>>> strategy for all of them:
>>>
>>> 1) Define a DEFAULT_* macro with the default value. When the
>>> value can't be directly stringified, also define a *_STR
>>> variant
>>> 2) Use __stringify() or the _STR variant to make sure the
>>> default value shows up in the param description
>>>
>>> This allows us to show the correct default according to the
>>> configuration. max_vfs for example was wrongly documented for
>>> CONFIG_DRM_XE_DEBUG and svm_notifier_size didn't have its default
>>> documented.
>>>
>>> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
>>> ---
>>> drivers/gpu/drm/xe/xe_module.c | 44
>>> +++++++++++++++++++++++++++---------------
>>> 1 file changed, 28 insertions(+), 16 deletions(-)
>>>
>>> diff --git a/drivers/gpu/drm/xe/xe_module.c
>>> b/drivers/gpu/drm/xe/xe_module.c
>>> index 192908fa074cb..2068c579d5c3b 100644
>>> --- a/drivers/gpu/drm/xe/xe_module.c
>>> +++ b/drivers/gpu/drm/xe/xe_module.c
>>> @@ -19,34 +19,43 @@
>>> #include "xe_sched_job.h"
>>> #if IS_ENABLED(CONFIG_DRM_XE_DEBUG)
>>> -#define DEFAULT_GUC_LOG_LEVEL 3
>>> +#define DEFAULT_GUC_LOG_LEVEL 3
>>> +#define DEFAULT_MAX_VFS ~0
>>> +#define DEFAULT_MAX_VFS_STR "unlimited"
>>> #else
>>> -#define DEFAULT_GUC_LOG_LEVEL 1
>>> +#define DEFAULT_GUC_LOG_LEVEL 1
>>> +#define DEFAULT_MAX_VFS 0
>>> +#define DEFAULT_MAX_VFS_STR "0"
>> Could be 'stringify(MAX_VFS)'.
>
> I think it's better to pair with the one above.
> We don't want to print the the default is ~0 in the other case so we
> create a manual _STR.
I meant:
#define DEFAULT_MAX_VFS ~0
#define DEFAULT_MAX_VFS_STR "unlimited"
#else
#define DEFAULT_MAX_VFS 0
#define DEFAULT_MAX_VFS_STR __stringify(DEFAULT_MAX_VFS)
John.
>
>
>>
>>> #endif
>>> +#define DEFAULT_PROBE_DISPLAY true
>>> +#define DEFAULT_FORCE_PROBE CONFIG_DRM_XE_FORCE_PROBE
>>> +#define DEFAULT_WEDGED_MODE 1
>>> +#define DEFAULT_SVM_NOTIFIER_SIZE 512
>>> +
>>> struct xe_modparam xe_modparam = {
>>> - .probe_display = true,
>>> - .guc_log_level = DEFAULT_GUC_LOG_LEVEL,
>>> - .force_probe = CONFIG_DRM_XE_FORCE_PROBE,
>>> -#ifdef CONFIG_PCI_IOV
>> This ifdef is lost from the new version?
>
> yeah, dropped it by mistake... will need to add it back.
>>
>>> - .max_vfs = IS_ENABLED(CONFIG_DRM_XE_DEBUG) ? ~0 : 0,
>>> -#endif
>>> - .wedged_mode = 1,
>>> - .svm_notifier_size = 512,
>>> + .probe_display = DEFAULT_PROBE_DISPLAY,
>>> + .guc_log_level = DEFAULT_GUC_LOG_LEVEL,
>>> + .force_probe = DEFAULT_FORCE_PROBE,
>>> + .max_vfs = DEFAULT_MAX_VFS,
>>> + .wedged_mode = DEFAULT_WEDGED_MODE,
>>> + .svm_notifier_size = DEFAULT_SVM_NOTIFIER_SIZE,
>>> /* the rest are 0 by default */
>>> };
>>> module_param_named(svm_notifier_size,
>>> xe_modparam.svm_notifier_size, uint, 0600);
>>> -MODULE_PARM_DESC(svm_notifier_size, "Set the svm notifier size(in
>>> MiB), must be power of 2");
>>> +MODULE_PARM_DESC(svm_notifier_size, "Set the svm notifier size in
>>> MiB, must be power of 2 "
>>> + "[default=" __stringify(DEFAULT_SVM_NOTIFIER_SIZE) "]");
>>> module_param_named_unsafe(force_execlist,
>>> xe_modparam.force_execlist, bool, 0444);
>>> MODULE_PARM_DESC(force_execlist, "Force Execlist submission");
>>> module_param_named(probe_display, xe_modparam.probe_display, bool,
>>> 0444);
>>> -MODULE_PARM_DESC(probe_display, "Probe display HW, otherwise it's
>>> left untouched (default: true)");
>>> +MODULE_PARM_DESC(probe_display, "Probe display HW, otherwise it's
>>> left untouched "
>>> + "[default=" __stringify(DEFAULT_PROBE_DISPLAY) "])");
>>> module_param_named(vram_bar_size, xe_modparam.force_vram_bar_size,
>>> int, 0600);
>>> -MODULE_PARM_DESC(vram_bar_size, "Set the vram bar size (in MiB) -
>>> <0=disable-resize, 0=max-needed-size[default], >0=force-size");
>>> +MODULE_PARM_DESC(vram_bar_size, "Set the vram bar size in MiB
>>> (<0=disable-resize, 0=max-needed-size, >0=force-size [default=0])");
>> Why leave this one as hard coded value rather than a define?
>
> there wasn't an assignment xe_modparam, so I overlooked it. I will fix
> those up in next rev
>
> thanks
> Lucas De Marchi
>
>
>>
>> John.
>>
>>> module_param_named(guc_log_level, xe_modparam.guc_log_level, int,
>>> 0600);
>>> MODULE_PARM_DESC(guc_log_level, "GuC firmware logging level
>>> (0=disable, 1=normal, 2..5=verbose-levels "
>>> @@ -66,18 +75,21 @@ MODULE_PARM_DESC(gsc_firmware_path,
>>> module_param_named_unsafe(force_probe, xe_modparam.force_probe,
>>> charp, 0400);
>>> MODULE_PARM_DESC(force_probe,
>>> - "Force probe options for specified devices. See
>>> CONFIG_DRM_XE_FORCE_PROBE for details.");
>>> + "Force probe options for specified devices. See
>>> CONFIG_DRM_XE_FORCE_PROBE for details "
>>> + "[default=" DEFAULT_FORCE_PROBE "])");
>>> #ifdef CONFIG_PCI_IOV
>>> module_param_named(max_vfs, xe_modparam.max_vfs, uint, 0400);
>>> MODULE_PARM_DESC(max_vfs,
>>> "Limit number of Virtual Functions (VFs) that could be
>>> managed. "
>>> - "(0 = no VFs [default]; N = allow up to N VFs)");
>>> + "(0=no VFs; N=allow up to N VFs "
>>> + "[default=" DEFAULT_MAX_VFS_STR "])");
>>> #endif
>>> module_param_named_unsafe(wedged_mode, xe_modparam.wedged_mode,
>>> int, 0600);
>>> MODULE_PARM_DESC(wedged_mode,
>>> - "Module's default policy for the wedged mode - 0=never,
>>> 1=upon-critical-errors[default], 2=upon-any-hang");
>>> + "Module's default policy for the wedged mode (0=never,
>>> 1=upon-critical-errors, 2=upon-any-hang "
>>> + "[default=" __stringify(DEFAULT_WEDGED_MODE) "])");
>>> static int xe_check_nomodeset(void)
>>> {
>>>
>>
[-- Attachment #2: Type: text/html, Size: 11576 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ CI.checkpatch: warning for drm/xe: Tweak default GuC log level (rev2)
2025-06-13 20:00 [PATCH v2 0/3] drm/xe: Tweak default GuC log level Lucas De Marchi
` (2 preceding siblings ...)
2025-06-13 20:00 ` [PATCH v2 3/3] drm/xe: Normalize default param values Lucas De Marchi
@ 2025-06-13 21:52 ` Patchwork
2025-06-13 21:53 ` ✓ CI.KUnit: success " Patchwork
` (3 subsequent siblings)
7 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-06-13 21:52 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Tweak default GuC log level (rev2)
URL : https://patchwork.freedesktop.org/series/150183/
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
f8ff75ae1d2127635239b134695774ed4045d05b
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 2be111f0468a73e69e50fb206b37718c2e35a308
Author: Lucas De Marchi <lucas.demarchi@intel.com>
Date: Fri Jun 13 13:00:39 2025 -0700
drm/xe: Normalize default param values
Document xe module params with the default values following a similar
strategy for all of them:
1) Define a DEFAULT_* macro with the default value. When the
value can't be directly stringified, also define a *_STR
variant
2) Use __stringify() or the _STR variant to make sure the
default value shows up in the param description
This allows us to show the correct default according to the
configuration. max_vfs for example was wrongly documented for
CONFIG_DRM_XE_DEBUG and svm_notifier_size didn't have its default
documented.
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
+ /mt/dim checkpatch 4d016d6e602638e0ebc3895331224e057508c07a drm-intel
5612509e25cd drm/xe/guc: Default log level to non-verbose
-:14: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#14:
Test \ Log Level 3 0 1 2
total: 0 errors, 1 warnings, 0 checks, 8 lines checked
db4b27e00a56 drm/xe: Annotate default for guc_log_level param
2be111f0468a drm/xe: Normalize default param values
^ permalink raw reply [flat|nested] 12+ messages in thread* ✓ CI.KUnit: success for drm/xe: Tweak default GuC log level (rev2)
2025-06-13 20:00 [PATCH v2 0/3] drm/xe: Tweak default GuC log level Lucas De Marchi
` (3 preceding siblings ...)
2025-06-13 21:52 ` ✗ CI.checkpatch: warning for drm/xe: Tweak default GuC log level (rev2) Patchwork
@ 2025-06-13 21:53 ` Patchwork
2025-06-13 22:33 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-06-13 21:53 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Tweak default GuC log level (rev2)
URL : https://patchwork.freedesktop.org/series/150183/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[21:52:27] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:52:31] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[21:52:58] Starting KUnit Kernel (1/1)...
[21:52:58] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:52:58] ================== guc_buf (11 subtests) ===================
[21:52:58] [PASSED] test_smallest
[21:52:58] [PASSED] test_largest
[21:52:58] [PASSED] test_granular
[21:52:58] [PASSED] test_unique
[21:52:58] [PASSED] test_overlap
[21:52:58] [PASSED] test_reusable
[21:52:58] [PASSED] test_too_big
[21:52:58] [PASSED] test_flush
[21:52:58] [PASSED] test_lookup
[21:52:58] [PASSED] test_data
[21:52:58] [PASSED] test_class
[21:52:58] ===================== [PASSED] guc_buf =====================
[21:52:58] =================== guc_dbm (7 subtests) ===================
[21:52:58] [PASSED] test_empty
[21:52:58] [PASSED] test_default
[21:52:58] ======================== test_size ========================
[21:52:58] [PASSED] 4
[21:52:58] [PASSED] 8
[21:52:58] [PASSED] 32
[21:52:58] [PASSED] 256
[21:52:58] ==================== [PASSED] test_size ====================
[21:52:58] ======================= test_reuse ========================
[21:52:58] [PASSED] 4
[21:52:58] [PASSED] 8
[21:52:58] [PASSED] 32
[21:52:58] [PASSED] 256
[21:52:58] =================== [PASSED] test_reuse ====================
[21:52:58] =================== test_range_overlap ====================
[21:52:58] [PASSED] 4
[21:52:58] [PASSED] 8
[21:52:58] [PASSED] 32
[21:52:58] [PASSED] 256
[21:52:58] =============== [PASSED] test_range_overlap ================
[21:52:58] =================== test_range_compact ====================
[21:52:58] [PASSED] 4
[21:52:58] [PASSED] 8
[21:52:58] [PASSED] 32
[21:52:58] [PASSED] 256
[21:52:58] =============== [PASSED] test_range_compact ================
[21:52:58] ==================== test_range_spare =====================
[21:52:58] [PASSED] 4
[21:52:58] [PASSED] 8
[21:52:58] [PASSED] 32
[21:52:58] [PASSED] 256
[21:52:58] ================ [PASSED] test_range_spare =================
[21:52:58] ===================== [PASSED] guc_dbm =====================
[21:52:58] =================== guc_idm (6 subtests) ===================
[21:52:58] [PASSED] bad_init
[21:52:58] [PASSED] no_init
[21:52:58] [PASSED] init_fini
[21:52:58] [PASSED] check_used
[21:52:58] [PASSED] check_quota
[21:52:58] [PASSED] check_all
[21:52:58] ===================== [PASSED] guc_idm =====================
[21:52:58] ================== no_relay (3 subtests) ===================
[21:52:58] [PASSED] xe_drops_guc2pf_if_not_ready
[21:52:58] [PASSED] xe_drops_guc2vf_if_not_ready
[21:52:58] [PASSED] xe_rejects_send_if_not_ready
[21:52:58] ==================== [PASSED] no_relay =====================
[21:52:58] ================== pf_relay (14 subtests) ==================
[21:52:58] [PASSED] pf_rejects_guc2pf_too_short
[21:52:58] [PASSED] pf_rejects_guc2pf_too_long
[21:52:58] [PASSED] pf_rejects_guc2pf_no_payload
[21:52:58] [PASSED] pf_fails_no_payload
[21:52:58] [PASSED] pf_fails_bad_origin
[21:52:58] [PASSED] pf_fails_bad_type
[21:52:58] [PASSED] pf_txn_reports_error
[21:52:58] [PASSED] pf_txn_sends_pf2guc
[21:52:58] [PASSED] pf_sends_pf2guc
[21:52:58] [SKIPPED] pf_loopback_nop
[21:52:58] [SKIPPED] pf_loopback_echo
[21:52:58] [SKIPPED] pf_loopback_fail
[21:52:58] [SKIPPED] pf_loopback_busy
[21:52:58] [SKIPPED] pf_loopback_retry
[21:52:58] ==================== [PASSED] pf_relay =====================
[21:52:58] ================== vf_relay (3 subtests) ===================
[21:52:58] [PASSED] vf_rejects_guc2vf_too_short
[21:52:58] [PASSED] vf_rejects_guc2vf_too_long
[21:52:58] [PASSED] vf_rejects_guc2vf_no_payload
[21:52:58] ==================== [PASSED] vf_relay =====================
[21:52:58] ================= pf_service (11 subtests) =================
[21:52:58] [PASSED] pf_negotiate_any
[21:52:58] [PASSED] pf_negotiate_base_match
[21:52:58] [PASSED] pf_negotiate_base_newer
[21:52:58] [PASSED] pf_negotiate_base_next
[21:52:58] [SKIPPED] pf_negotiate_base_older
[21:52:58] [PASSED] pf_negotiate_base_prev
[21:52:58] [PASSED] pf_negotiate_latest_match
[21:52:58] [PASSED] pf_negotiate_latest_newer
[21:52:58] [PASSED] pf_negotiate_latest_next
[21:52:58] [SKIPPED] pf_negotiate_latest_older
[21:52:58] [SKIPPED] pf_negotiate_latest_prev
[21:52:58] =================== [PASSED] pf_service ====================
[21:52:58] ===================== lmtt (1 subtest) =====================
[21:52:58] ======================== test_ops =========================
[21:52:58] [PASSED] 2-level
[21:52:58] [PASSED] multi-level
[21:52:58] ==================== [PASSED] test_ops =====================
[21:52:58] ====================== [PASSED] lmtt =======================
[21:52:58] =================== xe_mocs (2 subtests) ===================
[21:52:58] ================ xe_live_mocs_kernel_kunit ================
[21:52:58] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[21:52:58] ================ xe_live_mocs_reset_kunit =================
[21:52:58] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[21:52:58] ==================== [SKIPPED] xe_mocs =====================
[21:52:58] ================= xe_migrate (2 subtests) ==================
[21:52:58] ================= xe_migrate_sanity_kunit =================
[21:52:58] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[21:52:58] ================== xe_validate_ccs_kunit ==================
[21:52:58] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[21:52:58] =================== [SKIPPED] xe_migrate ===================
[21:52:58] ================== xe_dma_buf (1 subtest) ==================
[21:52:58] ==================== xe_dma_buf_kunit =====================
[21:52:58] ================ [SKIPPED] xe_dma_buf_kunit ================
[21:52:58] =================== [SKIPPED] xe_dma_buf ===================
[21:52:58] ================= xe_bo_shrink (1 subtest) =================
[21:52:58] =================== xe_bo_shrink_kunit ====================
[21:52:58] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[21:52:58] ================== [SKIPPED] xe_bo_shrink ==================
[21:52:58] ==================== xe_bo (2 subtests) ====================
[21:52:58] ================== xe_ccs_migrate_kunit ===================
[21:52:58] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[21:52:58] ==================== xe_bo_evict_kunit ====================
[21:52:58] =============== [SKIPPED] xe_bo_evict_kunit ================
[21:52:58] ===================== [SKIPPED] xe_bo ======================
[21:52:58] ==================== args (11 subtests) ====================
[21:52:58] [PASSED] count_args_test
[21:52:58] [PASSED] call_args_example
[21:52:58] [PASSED] call_args_test
[21:52:58] [PASSED] drop_first_arg_example
[21:52:58] [PASSED] drop_first_arg_test
[21:52:58] [PASSED] first_arg_example
[21:52:58] [PASSED] first_arg_test
[21:52:58] [PASSED] last_arg_example
[21:52:58] [PASSED] last_arg_test
[21:52:58] [PASSED] pick_arg_example
[21:52:58] [PASSED] sep_comma_example
[21:52:58] ====================== [PASSED] args =======================
[21:52:58] =================== xe_pci (2 subtests) ====================
[21:52:58] [PASSED] xe_gmdid_graphics_ip
[21:52:58] [PASSED] xe_gmdid_media_ip
[21:52:58] ===================== [PASSED] xe_pci ======================
[21:52:58] =================== xe_rtp (2 subtests) ====================
[21:52:58] =============== xe_rtp_process_to_sr_tests ================
[21:52:58] [PASSED] coalesce-same-reg
[21:52:58] [PASSED] no-match-no-add
[21:52:58] [PASSED] match-or
[21:52:58] [PASSED] match-or-xfail
[21:52:58] [PASSED] no-match-no-add-multiple-rules
[21:52:58] [PASSED] two-regs-two-entries
[21:52:58] [PASSED] clr-one-set-other
[21:52:58] [PASSED] set-field
[21:52:58] [PASSED] conflict-duplicate
[21:52:58] [PASSED] conflict-not-disjoint
stty: 'standard input': Inappropriate ioctl for device
[21:52:58] [PASSED] conflict-reg-type
[21:52:58] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[21:52:58] ================== xe_rtp_process_tests ===================
[21:52:58] [PASSED] active1
[21:52:58] [PASSED] active2
[21:52:58] [PASSED] active-inactive
[21:52:58] [PASSED] inactive-active
[21:52:58] [PASSED] inactive-1st_or_active-inactive
[21:52:58] [PASSED] inactive-2nd_or_active-inactive
[21:52:58] [PASSED] inactive-last_or_active-inactive
[21:52:58] [PASSED] inactive-no_or_active-inactive
[21:52:58] ============== [PASSED] xe_rtp_process_tests ===============
[21:52:58] ===================== [PASSED] xe_rtp ======================
[21:52:58] ==================== xe_wa (1 subtest) =====================
[21:52:58] ======================== xe_wa_gt =========================
[21:52:58] [PASSED] TIGERLAKE (B0)
[21:52:58] [PASSED] DG1 (A0)
[21:52:58] [PASSED] DG1 (B0)
[21:52:58] [PASSED] ALDERLAKE_S (A0)
[21:52:58] [PASSED] ALDERLAKE_S (B0)
[21:52:58] [PASSED] ALDERLAKE_S (C0)
[21:52:58] [PASSED] ALDERLAKE_S (D0)
[21:52:58] [PASSED] ALDERLAKE_P (A0)
[21:52:58] [PASSED] ALDERLAKE_P (B0)
[21:52:58] [PASSED] ALDERLAKE_P (C0)
[21:52:58] [PASSED] ALDERLAKE_S_RPLS (D0)
[21:52:58] [PASSED] ALDERLAKE_P_RPLU (E0)
[21:52:58] [PASSED] DG2_G10 (C0)
[21:52:58] [PASSED] DG2_G11 (B1)
[21:52:58] [PASSED] DG2_G12 (A1)
[21:52:58] [PASSED] METEORLAKE (g:A0, m:A0)
[21:52:58] [PASSED] METEORLAKE (g:A0, m:A0)
[21:52:58] [PASSED] METEORLAKE (g:A0, m:A0)
[21:52:58] [PASSED] LUNARLAKE (g:A0, m:A0)
[21:52:58] [PASSED] LUNARLAKE (g:B0, m:A0)
[21:52:58] [PASSED] BATTLEMAGE (g:A0, m:A1)
[21:52:58] ==================== [PASSED] xe_wa_gt =====================
[21:52:58] ====================== [PASSED] xe_wa ======================
[21:52:58] ============================================================
[21:52:58] Testing complete. Ran 133 tests: passed: 117, skipped: 16
[21:52:58] Elapsed time: 31.570s total, 4.187s configuring, 27.066s building, 0.295s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[21:52:59] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:53:00] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[21:53:22] Starting KUnit Kernel (1/1)...
[21:53:22] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:53:22] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[21:53:22] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[21:53:22] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[21:53:22] =========== drm_validate_clone_mode (2 subtests) ===========
[21:53:22] ============== drm_test_check_in_clone_mode ===============
[21:53:22] [PASSED] in_clone_mode
[21:53:22] [PASSED] not_in_clone_mode
[21:53:22] ========== [PASSED] drm_test_check_in_clone_mode ===========
[21:53:22] =============== drm_test_check_valid_clones ===============
[21:53:22] [PASSED] not_in_clone_mode
[21:53:22] [PASSED] valid_clone
[21:53:22] [PASSED] invalid_clone
[21:53:22] =========== [PASSED] drm_test_check_valid_clones ===========
[21:53:22] ============= [PASSED] drm_validate_clone_mode =============
[21:53:22] ============= drm_validate_modeset (1 subtest) =============
[21:53:22] [PASSED] drm_test_check_connector_changed_modeset
[21:53:22] ============== [PASSED] drm_validate_modeset ===============
[21:53:22] ====== drm_test_bridge_get_current_state (2 subtests) ======
[21:53:22] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[21:53:22] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[21:53:22] ======== [PASSED] drm_test_bridge_get_current_state ========
[21:53:22] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[21:53:22] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[21:53:22] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[21:53:22] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[21:53:22] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[21:53:22] ============== drm_bridge_alloc (2 subtests) ===============
[21:53:22] [PASSED] drm_test_drm_bridge_alloc_basic
[21:53:22] [PASSED] drm_test_drm_bridge_alloc_get_put
[21:53:22] ================ [PASSED] drm_bridge_alloc =================
[21:53:22] ================== drm_buddy (7 subtests) ==================
[21:53:22] [PASSED] drm_test_buddy_alloc_limit
[21:53:22] [PASSED] drm_test_buddy_alloc_optimistic
[21:53:22] [PASSED] drm_test_buddy_alloc_pessimistic
[21:53:22] [PASSED] drm_test_buddy_alloc_pathological
[21:53:22] [PASSED] drm_test_buddy_alloc_contiguous
[21:53:22] [PASSED] drm_test_buddy_alloc_clear
[21:53:22] [PASSED] drm_test_buddy_alloc_range_bias
[21:53:22] ==================== [PASSED] drm_buddy ====================
[21:53:22] ============= drm_cmdline_parser (40 subtests) =============
[21:53:22] [PASSED] drm_test_cmdline_force_d_only
[21:53:22] [PASSED] drm_test_cmdline_force_D_only_dvi
[21:53:22] [PASSED] drm_test_cmdline_force_D_only_hdmi
[21:53:22] [PASSED] drm_test_cmdline_force_D_only_not_digital
[21:53:22] [PASSED] drm_test_cmdline_force_e_only
[21:53:22] [PASSED] drm_test_cmdline_res
[21:53:22] [PASSED] drm_test_cmdline_res_vesa
[21:53:22] [PASSED] drm_test_cmdline_res_vesa_rblank
[21:53:22] [PASSED] drm_test_cmdline_res_rblank
[21:53:22] [PASSED] drm_test_cmdline_res_bpp
[21:53:22] [PASSED] drm_test_cmdline_res_refresh
[21:53:22] [PASSED] drm_test_cmdline_res_bpp_refresh
[21:53:22] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[21:53:22] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[21:53:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[21:53:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[21:53:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[21:53:22] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[21:53:22] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[21:53:22] [PASSED] drm_test_cmdline_res_margins_force_on
[21:53:22] [PASSED] drm_test_cmdline_res_vesa_margins
[21:53:22] [PASSED] drm_test_cmdline_name
[21:53:22] [PASSED] drm_test_cmdline_name_bpp
[21:53:22] [PASSED] drm_test_cmdline_name_option
[21:53:22] [PASSED] drm_test_cmdline_name_bpp_option
[21:53:22] [PASSED] drm_test_cmdline_rotate_0
[21:53:22] [PASSED] drm_test_cmdline_rotate_90
[21:53:22] [PASSED] drm_test_cmdline_rotate_180
[21:53:22] [PASSED] drm_test_cmdline_rotate_270
[21:53:22] [PASSED] drm_test_cmdline_hmirror
[21:53:22] [PASSED] drm_test_cmdline_vmirror
[21:53:22] [PASSED] drm_test_cmdline_margin_options
[21:53:22] [PASSED] drm_test_cmdline_multiple_options
[21:53:22] [PASSED] drm_test_cmdline_bpp_extra_and_option
[21:53:22] [PASSED] drm_test_cmdline_extra_and_option
[21:53:22] [PASSED] drm_test_cmdline_freestanding_options
[21:53:22] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[21:53:22] [PASSED] drm_test_cmdline_panel_orientation
[21:53:22] ================ drm_test_cmdline_invalid =================
[21:53:22] [PASSED] margin_only
[21:53:22] [PASSED] interlace_only
[21:53:22] [PASSED] res_missing_x
[21:53:22] [PASSED] res_missing_y
[21:53:22] [PASSED] res_bad_y
[21:53:22] [PASSED] res_missing_y_bpp
[21:53:22] [PASSED] res_bad_bpp
[21:53:22] [PASSED] res_bad_refresh
[21:53:22] [PASSED] res_bpp_refresh_force_on_off
[21:53:22] [PASSED] res_invalid_mode
[21:53:22] [PASSED] res_bpp_wrong_place_mode
[21:53:22] [PASSED] name_bpp_refresh
[21:53:22] [PASSED] name_refresh
[21:53:22] [PASSED] name_refresh_wrong_mode
[21:53:22] [PASSED] name_refresh_invalid_mode
[21:53:22] [PASSED] rotate_multiple
[21:53:22] [PASSED] rotate_invalid_val
[21:53:22] [PASSED] rotate_truncated
[21:53:22] [PASSED] invalid_option
[21:53:22] [PASSED] invalid_tv_option
[21:53:22] [PASSED] truncated_tv_option
[21:53:22] ============ [PASSED] drm_test_cmdline_invalid =============
[21:53:22] =============== drm_test_cmdline_tv_options ===============
[21:53:22] [PASSED] NTSC
[21:53:22] [PASSED] NTSC_443
[21:53:22] [PASSED] NTSC_J
[21:53:22] [PASSED] PAL
[21:53:22] [PASSED] PAL_M
[21:53:22] [PASSED] PAL_N
[21:53:22] [PASSED] SECAM
[21:53:22] [PASSED] MONO_525
[21:53:22] [PASSED] MONO_625
[21:53:22] =========== [PASSED] drm_test_cmdline_tv_options ===========
[21:53:22] =============== [PASSED] drm_cmdline_parser ================
[21:53:22] ========== drmm_connector_hdmi_init (20 subtests) ==========
[21:53:22] [PASSED] drm_test_connector_hdmi_init_valid
[21:53:22] [PASSED] drm_test_connector_hdmi_init_bpc_8
[21:53:22] [PASSED] drm_test_connector_hdmi_init_bpc_10
[21:53:22] [PASSED] drm_test_connector_hdmi_init_bpc_12
[21:53:22] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[21:53:22] [PASSED] drm_test_connector_hdmi_init_bpc_null
[21:53:22] [PASSED] drm_test_connector_hdmi_init_formats_empty
[21:53:22] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[21:53:22] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[21:53:22] [PASSED] supported_formats=0x9 yuv420_allowed=1
[21:53:22] [PASSED] supported_formats=0x9 yuv420_allowed=0
[21:53:22] [PASSED] supported_formats=0x3 yuv420_allowed=1
[21:53:22] [PASSED] supported_formats=0x3 yuv420_allowed=0
[21:53:22] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[21:53:22] [PASSED] drm_test_connector_hdmi_init_null_ddc
[21:53:22] [PASSED] drm_test_connector_hdmi_init_null_product
[21:53:22] [PASSED] drm_test_connector_hdmi_init_null_vendor
[21:53:22] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[21:53:22] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[21:53:22] [PASSED] drm_test_connector_hdmi_init_product_valid
[21:53:22] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[21:53:22] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[21:53:22] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[21:53:22] ========= drm_test_connector_hdmi_init_type_valid =========
[21:53:22] [PASSED] HDMI-A
[21:53:22] [PASSED] HDMI-B
[21:53:22] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[21:53:22] ======== drm_test_connector_hdmi_init_type_invalid ========
[21:53:22] [PASSED] Unknown
[21:53:22] [PASSED] VGA
[21:53:22] [PASSED] DVI-I
[21:53:22] [PASSED] DVI-D
[21:53:22] [PASSED] DVI-A
[21:53:22] [PASSED] Composite
[21:53:22] [PASSED] SVIDEO
[21:53:22] [PASSED] LVDS
[21:53:22] [PASSED] Component
[21:53:22] [PASSED] DIN
[21:53:22] [PASSED] DP
[21:53:22] [PASSED] TV
[21:53:22] [PASSED] eDP
[21:53:22] [PASSED] Virtual
[21:53:22] [PASSED] DSI
[21:53:22] [PASSED] DPI
[21:53:22] [PASSED] Writeback
[21:53:22] [PASSED] SPI
[21:53:22] [PASSED] USB
[21:53:22] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[21:53:22] ============ [PASSED] drmm_connector_hdmi_init =============
[21:53:22] ============= drmm_connector_init (3 subtests) =============
[21:53:22] [PASSED] drm_test_drmm_connector_init
[21:53:22] [PASSED] drm_test_drmm_connector_init_null_ddc
[21:53:22] ========= drm_test_drmm_connector_init_type_valid =========
[21:53:22] [PASSED] Unknown
[21:53:22] [PASSED] VGA
[21:53:22] [PASSED] DVI-I
[21:53:22] [PASSED] DVI-D
[21:53:22] [PASSED] DVI-A
[21:53:22] [PASSED] Composite
[21:53:22] [PASSED] SVIDEO
[21:53:22] [PASSED] LVDS
[21:53:22] [PASSED] Component
[21:53:22] [PASSED] DIN
[21:53:22] [PASSED] DP
[21:53:22] [PASSED] HDMI-A
[21:53:22] [PASSED] HDMI-B
[21:53:22] [PASSED] TV
[21:53:22] [PASSED] eDP
[21:53:22] [PASSED] Virtual
[21:53:22] [PASSED] DSI
[21:53:22] [PASSED] DPI
[21:53:22] [PASSED] Writeback
[21:53:22] [PASSED] SPI
[21:53:22] [PASSED] USB
[21:53:22] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[21:53:22] =============== [PASSED] drmm_connector_init ===============
[21:53:22] ========= drm_connector_dynamic_init (6 subtests) ==========
[21:53:22] [PASSED] drm_test_drm_connector_dynamic_init
[21:53:22] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[21:53:22] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[21:53:22] [PASSED] drm_test_drm_connector_dynamic_init_properties
[21:53:22] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[21:53:22] [PASSED] Unknown
[21:53:22] [PASSED] VGA
[21:53:22] [PASSED] DVI-I
[21:53:22] [PASSED] DVI-D
[21:53:22] [PASSED] DVI-A
[21:53:22] [PASSED] Composite
[21:53:22] [PASSED] SVIDEO
[21:53:22] [PASSED] LVDS
[21:53:22] [PASSED] Component
[21:53:22] [PASSED] DIN
[21:53:22] [PASSED] DP
[21:53:22] [PASSED] HDMI-A
[21:53:22] [PASSED] HDMI-B
[21:53:22] [PASSED] TV
[21:53:22] [PASSED] eDP
[21:53:22] [PASSED] Virtual
[21:53:22] [PASSED] DSI
[21:53:22] [PASSED] DPI
[21:53:22] [PASSED] Writeback
[21:53:22] [PASSED] SPI
[21:53:22] [PASSED] USB
[21:53:22] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[21:53:22] ======== drm_test_drm_connector_dynamic_init_name =========
[21:53:22] [PASSED] Unknown
[21:53:22] [PASSED] VGA
[21:53:22] [PASSED] DVI-I
[21:53:22] [PASSED] DVI-D
[21:53:22] [PASSED] DVI-A
[21:53:22] [PASSED] Composite
[21:53:22] [PASSED] SVIDEO
[21:53:22] [PASSED] LVDS
[21:53:22] [PASSED] Component
[21:53:22] [PASSED] DIN
[21:53:22] [PASSED] DP
[21:53:22] [PASSED] HDMI-A
[21:53:22] [PASSED] HDMI-B
[21:53:22] [PASSED] TV
[21:53:22] [PASSED] eDP
[21:53:22] [PASSED] Virtual
[21:53:22] [PASSED] DSI
[21:53:22] [PASSED] DPI
[21:53:22] [PASSED] Writeback
[21:53:22] [PASSED] SPI
[21:53:22] [PASSED] USB
[21:53:22] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[21:53:22] =========== [PASSED] drm_connector_dynamic_init ============
[21:53:22] ==== drm_connector_dynamic_register_early (4 subtests) =====
[21:53:22] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[21:53:22] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[21:53:22] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[21:53:22] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[21:53:22] ====== [PASSED] drm_connector_dynamic_register_early =======
[21:53:22] ======= drm_connector_dynamic_register (7 subtests) ========
[21:53:22] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[21:53:22] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[21:53:22] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[21:53:22] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[21:53:22] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[21:53:22] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[21:53:22] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[21:53:22] ========= [PASSED] drm_connector_dynamic_register ==========
[21:53:22] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[21:53:22] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[21:53:22] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[21:53:22] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[21:53:22] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[21:53:22] ========== drm_test_get_tv_mode_from_name_valid ===========
[21:53:22] [PASSED] NTSC
[21:53:22] [PASSED] NTSC-443
[21:53:22] [PASSED] NTSC-J
[21:53:22] [PASSED] PAL
[21:53:22] [PASSED] PAL-M
[21:53:22] [PASSED] PAL-N
[21:53:22] [PASSED] SECAM
[21:53:22] [PASSED] Mono
[21:53:22] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[21:53:22] [PASSED] drm_test_get_tv_mode_from_name_truncated
[21:53:22] ============ [PASSED] drm_get_tv_mode_from_name ============
[21:53:22] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[21:53:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[21:53:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[21:53:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[21:53:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[21:53:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[21:53:22] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[21:53:22] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[21:53:22] [PASSED] VIC 96
[21:53:22] [PASSED] VIC 97
[21:53:22] [PASSED] VIC 101
[21:53:22] [PASSED] VIC 102
[21:53:22] [PASSED] VIC 106
[21:53:22] [PASSED] VIC 107
[21:53:22] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[21:53:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[21:53:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[21:53:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[21:53:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[21:53:22] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[21:53:22] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[21:53:22] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[21:53:22] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[21:53:22] [PASSED] Automatic
[21:53:22] [PASSED] Full
[21:53:22] [PASSED] Limited 16:235
[21:53:22] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[21:53:22] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[21:53:22] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[21:53:22] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[21:53:22] === drm_test_drm_hdmi_connector_get_output_format_name ====
[21:53:22] [PASSED] RGB
[21:53:22] [PASSED] YUV 4:2:0
[21:53:22] [PASSED] YUV 4:2:2
[21:53:22] [PASSED] YUV 4:4:4
[21:53:22] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[21:53:22] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[21:53:22] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[21:53:22] ============= drm_damage_helper (21 subtests) ==============
[21:53:22] [PASSED] drm_test_damage_iter_no_damage
[21:53:22] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[21:53:22] [PASSED] drm_test_damage_iter_no_damage_src_moved
[21:53:22] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[21:53:22] [PASSED] drm_test_damage_iter_no_damage_not_visible
[21:53:22] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[21:53:22] [PASSED] drm_test_damage_iter_no_damage_no_fb
[21:53:22] [PASSED] drm_test_damage_iter_simple_damage
[21:53:22] [PASSED] drm_test_damage_iter_single_damage
[21:53:22] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[21:53:22] [PASSED] drm_test_damage_iter_single_damage_outside_src
[21:53:22] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[21:53:22] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[21:53:22] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[21:53:22] [PASSED] drm_test_damage_iter_single_damage_src_moved
[21:53:22] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[21:53:22] [PASSED] drm_test_damage_iter_damage
[21:53:22] [PASSED] drm_test_damage_iter_damage_one_intersect
[21:53:22] [PASSED] drm_test_damage_iter_damage_one_outside
[21:53:22] [PASSED] drm_test_damage_iter_damage_src_moved
[21:53:22] [PASSED] drm_test_damage_iter_damage_not_visible
[21:53:22] ================ [PASSED] drm_damage_helper ================
[21:53:22] ============== drm_dp_mst_helper (3 subtests) ==============
[21:53:22] ============== drm_test_dp_mst_calc_pbn_mode ==============
[21:53:22] [PASSED] Clock 154000 BPP 30 DSC disabled
[21:53:22] [PASSED] Clock 234000 BPP 30 DSC disabled
[21:53:22] [PASSED] Clock 297000 BPP 24 DSC disabled
[21:53:22] [PASSED] Clock 332880 BPP 24 DSC enabled
[21:53:22] [PASSED] Clock 324540 BPP 24 DSC enabled
[21:53:22] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[21:53:22] ============== drm_test_dp_mst_calc_pbn_div ===============
[21:53:22] [PASSED] Link rate 2000000 lane count 4
[21:53:22] [PASSED] Link rate 2000000 lane count 2
[21:53:22] [PASSED] Link rate 2000000 lane count 1
[21:53:22] [PASSED] Link rate 1350000 lane count 4
[21:53:22] [PASSED] Link rate 1350000 lane count 2
[21:53:22] [PASSED] Link rate 1350000 lane count 1
[21:53:22] [PASSED] Link rate 1000000 lane count 4
[21:53:22] [PASSED] Link rate 1000000 lane count 2
[21:53:22] [PASSED] Link rate 1000000 lane count 1
[21:53:22] [PASSED] Link rate 810000 lane count 4
[21:53:22] [PASSED] Link rate 810000 lane count 2
[21:53:22] [PASSED] Link rate 810000 lane count 1
[21:53:22] [PASSED] Link rate 540000 lane count 4
[21:53:22] [PASSED] Link rate 540000 lane count 2
[21:53:22] [PASSED] Link rate 540000 lane count 1
[21:53:22] [PASSED] Link rate 270000 lane count 4
[21:53:22] [PASSED] Link rate 270000 lane count 2
[21:53:22] [PASSED] Link rate 270000 lane count 1
[21:53:22] [PASSED] Link rate 162000 lane count 4
[21:53:22] [PASSED] Link rate 162000 lane count 2
[21:53:22] [PASSED] Link rate 162000 lane count 1
[21:53:22] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[21:53:22] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[21:53:22] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[21:53:22] [PASSED] DP_POWER_UP_PHY with port number
[21:53:22] [PASSED] DP_POWER_DOWN_PHY with port number
[21:53:22] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[21:53:22] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[21:53:22] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[21:53:22] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[21:53:22] [PASSED] DP_QUERY_PAYLOAD with port number
[21:53:22] [PASSED] DP_QUERY_PAYLOAD with VCPI
[21:53:22] [PASSED] DP_REMOTE_DPCD_READ with port number
[21:53:22] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[21:53:22] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[21:53:22] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[21:53:22] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[21:53:22] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[21:53:22] [PASSED] DP_REMOTE_I2C_READ with port number
[21:53:22] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[21:53:22] [PASSED] DP_REMOTE_I2C_READ with transactions array
[21:53:22] [PASSED] DP_REMOTE_I2C_WRITE with port number
[21:53:22] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[21:53:22] [PASSED] DP_REMOTE_I2C_WRITE with data array
[21:53:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[21:53:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[21:53:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[21:53:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[21:53:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[21:53:22] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[21:53:22] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[21:53:22] ================ [PASSED] drm_dp_mst_helper ================
[21:53:22] ================== drm_exec (7 subtests) ===================
[21:53:22] [PASSED] sanitycheck
[21:53:22] [PASSED] test_lock
[21:53:22] [PASSED] test_lock_unlock
[21:53:22] [PASSED] test_duplicates
[21:53:22] [PASSED] test_prepare
[21:53:22] [PASSED] test_prepare_array
[21:53:22] [PASSED] test_multiple_loops
[21:53:22] ==================== [PASSED] drm_exec =====================
[21:53:22] =========== drm_format_helper_test (18 subtests) ===========
[21:53:22] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[21:53:22] [PASSED] single_pixel_source_buffer
[21:53:22] [PASSED] single_pixel_clip_rectangle
[21:53:22] [PASSED] well_known_colors
[21:53:22] [PASSED] destination_pitch
[21:53:22] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[21:53:22] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[21:53:22] [PASSED] single_pixel_source_buffer
[21:53:22] [PASSED] single_pixel_clip_rectangle
[21:53:22] [PASSED] well_known_colors
[21:53:22] [PASSED] destination_pitch
[21:53:22] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[21:53:22] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[21:53:22] [PASSED] single_pixel_source_buffer
[21:53:22] [PASSED] single_pixel_clip_rectangle
[21:53:22] [PASSED] well_known_colors
[21:53:22] [PASSED] destination_pitch
[21:53:22] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[21:53:22] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[21:53:22] [PASSED] single_pixel_source_buffer
[21:53:22] [PASSED] single_pixel_clip_rectangle
[21:53:22] [PASSED] well_known_colors
[21:53:22] [PASSED] destination_pitch
[21:53:22] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[21:53:22] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[21:53:22] [PASSED] single_pixel_source_buffer
[21:53:22] [PASSED] single_pixel_clip_rectangle
[21:53:22] [PASSED] well_known_colors
[21:53:22] [PASSED] destination_pitch
[21:53:22] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[21:53:22] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[21:53:22] [PASSED] single_pixel_source_buffer
[21:53:22] [PASSED] single_pixel_clip_rectangle
[21:53:22] [PASSED] well_known_colors
[21:53:22] [PASSED] destination_pitch
[21:53:22] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[21:53:22] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[21:53:22] [PASSED] single_pixel_source_buffer
[21:53:22] [PASSED] single_pixel_clip_rectangle
[21:53:22] [PASSED] well_known_colors
[21:53:22] [PASSED] destination_pitch
[21:53:22] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[21:53:22] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[21:53:22] [PASSED] single_pixel_source_buffer
[21:53:22] [PASSED] single_pixel_clip_rectangle
[21:53:22] [PASSED] well_known_colors
[21:53:22] [PASSED] destination_pitch
[21:53:22] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[21:53:22] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[21:53:22] [PASSED] single_pixel_source_buffer
[21:53:22] [PASSED] single_pixel_clip_rectangle
[21:53:22] [PASSED] well_known_colors
[21:53:22] [PASSED] destination_pitch
[21:53:22] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[21:53:22] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[21:53:22] [PASSED] single_pixel_source_buffer
[21:53:22] [PASSED] single_pixel_clip_rectangle
[21:53:22] [PASSED] well_known_colors
[21:53:22] [PASSED] destination_pitch
[21:53:22] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[21:53:22] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[21:53:22] [PASSED] single_pixel_source_buffer
[21:53:22] [PASSED] single_pixel_clip_rectangle
[21:53:22] [PASSED] well_known_colors
[21:53:22] [PASSED] destination_pitch
[21:53:22] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[21:53:22] ============== drm_test_fb_xrgb8888_to_mono ===============
[21:53:22] [PASSED] single_pixel_source_buffer
[21:53:22] [PASSED] single_pixel_clip_rectangle
[21:53:22] [PASSED] well_known_colors
[21:53:22] [PASSED] destination_pitch
[21:53:22] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[21:53:22] ==================== drm_test_fb_swab =====================
[21:53:22] [PASSED] single_pixel_source_buffer
[21:53:22] [PASSED] single_pixel_clip_rectangle
[21:53:22] [PASSED] well_known_colors
[21:53:22] [PASSED] destination_pitch
[21:53:22] ================ [PASSED] drm_test_fb_swab =================
[21:53:22] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[21:53:22] [PASSED] single_pixel_source_buffer
[21:53:22] [PASSED] single_pixel_clip_rectangle
[21:53:22] [PASSED] well_known_colors
[21:53:22] [PASSED] destination_pitch
[21:53:22] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[21:53:22] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[21:53:22] [PASSED] single_pixel_source_buffer
[21:53:22] [PASSED] single_pixel_clip_rectangle
[21:53:22] [PASSED] well_known_colors
[21:53:22] [PASSED] destination_pitch
[21:53:22] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[21:53:22] ================= drm_test_fb_clip_offset =================
[21:53:22] [PASSED] pass through
[21:53:22] [PASSED] horizontal offset
[21:53:22] [PASSED] vertical offset
[21:53:22] [PASSED] horizontal and vertical offset
[21:53:22] [PASSED] horizontal offset (custom pitch)
[21:53:22] [PASSED] vertical offset (custom pitch)
[21:53:22] [PASSED] horizontal and vertical offset (custom pitch)
[21:53:22] ============= [PASSED] drm_test_fb_clip_offset =============
[21:53:22] ============== drm_test_fb_build_fourcc_list ==============
[21:53:22] [PASSED] no native formats
[21:53:22] [PASSED] XRGB8888 as native format
[21:53:22] [PASSED] remove duplicates
[21:53:22] [PASSED] convert alpha formats
[21:53:22] [PASSED] random formats
[21:53:22] ========== [PASSED] drm_test_fb_build_fourcc_list ==========
[21:53:22] =================== drm_test_fb_memcpy ====================
[21:53:22] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[21:53:22] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[21:53:22] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[21:53:22] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[21:53:22] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[21:53:22] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[21:53:22] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[21:53:22] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[21:53:22] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[21:53:22] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[21:53:22] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[21:53:22] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[21:53:22] =============== [PASSED] drm_test_fb_memcpy ================
[21:53:22] ============= [PASSED] drm_format_helper_test ==============
[21:53:22] ================= drm_format (18 subtests) =================
[21:53:22] [PASSED] drm_test_format_block_width_invalid
[21:53:22] [PASSED] drm_test_format_block_width_one_plane
[21:53:22] [PASSED] drm_test_format_block_width_two_plane
[21:53:22] [PASSED] drm_test_format_block_width_three_plane
[21:53:22] [PASSED] drm_test_format_block_width_tiled
[21:53:22] [PASSED] drm_test_format_block_height_invalid
[21:53:22] [PASSED] drm_test_format_block_height_one_plane
[21:53:22] [PASSED] drm_test_format_block_height_two_plane
[21:53:22] [PASSED] drm_test_format_block_height_three_plane
[21:53:22] [PASSED] drm_test_format_block_height_tiled
[21:53:22] [PASSED] drm_test_format_min_pitch_invalid
[21:53:22] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[21:53:22] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[21:53:22] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[21:53:22] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[21:53:22] [PASSED] drm_test_format_min_pitch_two_plane
[21:53:22] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[21:53:22] [PASSED] drm_test_format_min_pitch_tiled
[21:53:22] =================== [PASSED] drm_format ====================
[21:53:22] ============== drm_framebuffer (10 subtests) ===============
[21:53:22] ========== drm_test_framebuffer_check_src_coords ==========
[21:53:22] [PASSED] Success: source fits into fb
[21:53:22] [PASSED] Fail: overflowing fb with x-axis coordinate
[21:53:22] [PASSED] Fail: overflowing fb with y-axis coordinate
[21:53:22] [PASSED] Fail: overflowing fb with source width
[21:53:22] [PASSED] Fail: overflowing fb with source height
[21:53:22] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[21:53:22] [PASSED] drm_test_framebuffer_cleanup
[21:53:22] =============== drm_test_framebuffer_create ===============
[21:53:22] [PASSED] ABGR8888 normal sizes
[21:53:22] [PASSED] ABGR8888 max sizes
[21:53:22] [PASSED] ABGR8888 pitch greater than min required
[21:53:22] [PASSED] ABGR8888 pitch less than min required
[21:53:22] [PASSED] ABGR8888 Invalid width
[21:53:22] [PASSED] ABGR8888 Invalid buffer handle
[21:53:22] [PASSED] No pixel format
[21:53:22] [PASSED] ABGR8888 Width 0
[21:53:22] [PASSED] ABGR8888 Height 0
[21:53:22] [PASSED] ABGR8888 Out of bound height * pitch combination
[21:53:22] [PASSED] ABGR8888 Large buffer offset
[21:53:22] [PASSED] ABGR8888 Buffer offset for inexistent plane
[21:53:22] [PASSED] ABGR8888 Invalid flag
[21:53:22] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[21:53:22] [PASSED] ABGR8888 Valid buffer modifier
[21:53:22] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[21:53:22] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[21:53:22] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[21:53:22] [PASSED] NV12 Normal sizes
[21:53:22] [PASSED] NV12 Max sizes
[21:53:22] [PASSED] NV12 Invalid pitch
[21:53:22] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[21:53:22] [PASSED] NV12 different modifier per-plane
[21:53:22] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[21:53:22] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[21:53:22] [PASSED] NV12 Modifier for inexistent plane
[21:53:22] [PASSED] NV12 Handle for inexistent plane
[21:53:22] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[21:53:22] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[21:53:22] [PASSED] YVU420 Normal sizes
[21:53:22] [PASSED] YVU420 Max sizes
[21:53:22] [PASSED] YVU420 Invalid pitch
[21:53:22] [PASSED] YVU420 Different pitches
[21:53:22] [PASSED] YVU420 Different buffer offsets/pitches
[21:53:22] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[21:53:22] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[21:53:22] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[21:53:22] [PASSED] YVU420 Valid modifier
[21:53:22] [PASSED] YVU420 Different modifiers per plane
[21:53:22] [PASSED] YVU420 Modifier for inexistent plane
[21:53:22] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[21:53:22] [PASSED] X0L2 Normal sizes
[21:53:22] [PASSED] X0L2 Max sizes
[21:53:22] [PASSED] X0L2 Invalid pitch
[21:53:22] [PASSED] X0L2 Pitch greater than minimum required
[21:53:22] [PASSED] X0L2 Handle for inexistent plane
[21:53:22] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[21:53:22] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[21:53:22] [PASSED] X0L2 Valid modifier
[21:53:22] [PASSED] X0L2 Modifier for inexistent plane
[21:53:22] =========== [PASSED] drm_test_framebuffer_create ===========
[21:53:22] [PASSED] drm_test_framebuffer_free
[21:53:22] [PASSED] drm_test_framebuffer_init
[21:53:22] [PASSED] drm_test_framebuffer_init_bad_format
[21:53:22] [PASSED] drm_test_framebuffer_init_dev_mismatch
[21:53:22] [PASSED] drm_test_framebuffer_lookup
[21:53:22] [PASSED] drm_test_framebuffer_lookup_inexistent
[21:53:22] [PASSED] drm_test_framebuffer_modifiers_not_supported
[21:53:22] ================= [PASSED] drm_framebuffer =================
[21:53:22] ================ drm_gem_shmem (8 subtests) ================
[21:53:22] [PASSED] drm_gem_shmem_test_obj_create
[21:53:22] [PASSED] drm_gem_shmem_test_obj_create_private
[21:53:22] [PASSED] drm_gem_shmem_test_pin_pages
[21:53:22] [PASSED] drm_gem_shmem_test_vmap
[21:53:22] [PASSED] drm_gem_shmem_test_get_pages_sgt
[21:53:22] [PASSED] drm_gem_shmem_test_get_sg_table
[21:53:22] [PASSED] drm_gem_shmem_test_madvise
[21:53:22] [PASSED] drm_gem_shmem_test_purge
[21:53:22] ================== [PASSED] drm_gem_shmem ==================
[21:53:22] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[21:53:22] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[21:53:22] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[21:53:22] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[21:53:22] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[21:53:22] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[21:53:22] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[21:53:22] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[21:53:22] [PASSED] Automatic
[21:53:22] [PASSED] Full
[21:53:22] [PASSED] Limited 16:235
[21:53:22] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[21:53:22] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[21:53:22] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[21:53:22] [PASSED] drm_test_check_disable_connector
[21:53:22] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[21:53:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[21:53:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[21:53:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[21:53:22] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[21:53:22] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[21:53:22] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[21:53:22] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[21:53:22] [PASSED] drm_test_check_output_bpc_dvi
[21:53:22] [PASSED] drm_test_check_output_bpc_format_vic_1
[21:53:22] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[21:53:22] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[21:53:22] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[21:53:22] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[21:53:22] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[21:53:22] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[21:53:22] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[21:53:22] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[21:53:22] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[21:53:22] [PASSED] drm_test_check_broadcast_rgb_value
[21:53:22] [PASSED] drm_test_check_bpc_8_value
[21:53:22] [PASSED] drm_test_check_bpc_10_value
[21:53:22] [PASSED] drm_test_check_bpc_12_value
[21:53:22] [PASSED] drm_test_check_format_value
[21:53:22] [PASSED] drm_test_check_tmds_char_value
[21:53:22] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[21:53:22] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[21:53:22] [PASSED] drm_test_check_mode_valid
[21:53:22] [PASSED] drm_test_check_mode_valid_reject
[21:53:22] [PASSED] drm_test_check_mode_valid_reject_rate
[21:53:22] [PASSED] drm_test_check_mode_valid_reject_max_clock
[21:53:22] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[21:53:22] ================= drm_managed (2 subtests) =================
[21:53:22] [PASSED] drm_test_managed_release_action
[21:53:22] [PASSED] drm_test_managed_run_action
[21:53:22] =================== [PASSED] drm_managed ===================
[21:53:22] =================== drm_mm (6 subtests) ====================
[21:53:22] [PASSED] drm_test_mm_init
[21:53:22] [PASSED] drm_test_mm_debug
[21:53:22] [PASSED] drm_test_mm_align32
[21:53:22] [PASSED] drm_test_mm_align64
[21:53:22] [PASSED] drm_test_mm_lowest
[21:53:22] [PASSED] drm_test_mm_highest
[21:53:22] ===================== [PASSED] drm_mm ======================
[21:53:22] ============= drm_modes_analog_tv (5 subtests) =============
[21:53:22] [PASSED] drm_test_modes_analog_tv_mono_576i
[21:53:22] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[21:53:22] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[21:53:22] [PASSED] drm_test_modes_analog_tv_pal_576i
[21:53:22] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[21:53:22] =============== [PASSED] drm_modes_analog_tv ===============
[21:53:22] ============== drm_plane_helper (2 subtests) ===============
[21:53:22] =============== drm_test_check_plane_state ================
[21:53:22] [PASSED] clipping_simple
[21:53:22] [PASSED] clipping_rotate_reflect
[21:53:22] [PASSED] positioning_simple
[21:53:22] [PASSED] upscaling
[21:53:22] [PASSED] downscaling
[21:53:22] [PASSED] rounding1
[21:53:22] [PASSED] rounding2
[21:53:22] [PASSED] rounding3
[21:53:22] [PASSED] rounding4
[21:53:22] =========== [PASSED] drm_test_check_plane_state ============
[21:53:22] =========== drm_test_check_invalid_plane_state ============
[21:53:22] [PASSED] positioning_invalid
[21:53:22] [PASSED] upscaling_invalid
[21:53:22] [PASSED] downscaling_invalid
[21:53:22] ======= [PASSED] drm_test_check_invalid_plane_state ========
[21:53:22] ================ [PASSED] drm_plane_helper =================
[21:53:22] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[21:53:22] ====== drm_test_connector_helper_tv_get_modes_check =======
[21:53:22] [PASSED] None
[21:53:22] [PASSED] PAL
[21:53:22] [PASSED] NTSC
[21:53:22] [PASSED] Both, NTSC Default
[21:53:22] [PASSED] Both, PAL Default
[21:53:22] [PASSED] Both, NTSC Default, with PAL on command-line
[21:53:22] [PASSED] Both, PAL Default, with NTSC on command-line
[21:53:22] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[21:53:22] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[21:53:22] ================== drm_rect (9 subtests) ===================
[21:53:22] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[21:53:22] [PASSED] drm_test_rect_clip_scaled_not_clipped
[21:53:22] [PASSED] drm_test_rect_clip_scaled_clipped
[21:53:22] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[21:53:22] ================= drm_test_rect_intersect =================
[21:53:22] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[21:53:22] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[21:53:22] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[21:53:22] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[21:53:22] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[21:53:22] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[21:53:22] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[21:53:22] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[21:53:22] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[21:53:22] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[21:53:22] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[21:53:22] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[21:53:22] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[21:53:22] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[21:53:22] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[21:53:22] ============= [PASSED] drm_test_rect_intersect =============
[21:53:22] ================ drm_test_rect_calc_hscale ================
[21:53:22] [PASSED] normal use
[21:53:22] [PASSED] out of max range
[21:53:22] [PASSED] out of min range
[21:53:22] [PASSED] zero dst
[21:53:22] [PASSED] negative src
[21:53:22] [PASSED] negative dst
[21:53:22] ============ [PASSED] drm_test_rect_calc_hscale ============
[21:53:22] ================ drm_test_rect_calc_vscale ================
[21:53:22] [PASSED] normal use
[21:53:22] [PASSED] out of max range
[21:53:22] [PASSED] out of min range
[21:53:22] [PASSED] zero dst
[21:53:22] [PASSED] negative src
[21:53:22] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[21:53:22] ============ [PASSED] drm_test_rect_calc_vscale ============
[21:53:22] ================== drm_test_rect_rotate ===================
[21:53:22] [PASSED] reflect-x
[21:53:22] [PASSED] reflect-y
[21:53:22] [PASSED] rotate-0
[21:53:22] [PASSED] rotate-90
[21:53:22] [PASSED] rotate-180
[21:53:22] [PASSED] rotate-270
[21:53:22] ============== [PASSED] drm_test_rect_rotate ===============
[21:53:22] ================ drm_test_rect_rotate_inv =================
[21:53:22] [PASSED] reflect-x
[21:53:22] [PASSED] reflect-y
[21:53:22] [PASSED] rotate-0
[21:53:22] [PASSED] rotate-90
[21:53:22] [PASSED] rotate-180
[21:53:22] [PASSED] rotate-270
[21:53:22] ============ [PASSED] drm_test_rect_rotate_inv =============
[21:53:22] ==================== [PASSED] drm_rect =====================
[21:53:22] ============================================================
[21:53:22] Testing complete. Ran 616 tests: passed: 616
[21:53:22] Elapsed time: 23.385s total, 1.629s configuring, 21.582s building, 0.143s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[21:53:22] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[21:53:24] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[21:53:32] Starting KUnit Kernel (1/1)...
[21:53:32] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[21:53:32] ================= ttm_device (5 subtests) ==================
[21:53:32] [PASSED] ttm_device_init_basic
[21:53:32] [PASSED] ttm_device_init_multiple
[21:53:32] [PASSED] ttm_device_fini_basic
[21:53:32] [PASSED] ttm_device_init_no_vma_man
[21:53:32] ================== ttm_device_init_pools ==================
[21:53:32] [PASSED] No DMA allocations, no DMA32 required
[21:53:32] [PASSED] DMA allocations, DMA32 required
[21:53:32] [PASSED] No DMA allocations, DMA32 required
[21:53:32] [PASSED] DMA allocations, no DMA32 required
[21:53:32] ============== [PASSED] ttm_device_init_pools ==============
[21:53:32] =================== [PASSED] ttm_device ====================
[21:53:32] ================== ttm_pool (8 subtests) ===================
[21:53:32] ================== ttm_pool_alloc_basic ===================
[21:53:32] [PASSED] One page
[21:53:32] [PASSED] More than one page
[21:53:32] [PASSED] Above the allocation limit
[21:53:32] [PASSED] One page, with coherent DMA mappings enabled
[21:53:32] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[21:53:32] ============== [PASSED] ttm_pool_alloc_basic ===============
[21:53:32] ============== ttm_pool_alloc_basic_dma_addr ==============
[21:53:32] [PASSED] One page
[21:53:32] [PASSED] More than one page
[21:53:32] [PASSED] Above the allocation limit
[21:53:32] [PASSED] One page, with coherent DMA mappings enabled
[21:53:32] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[21:53:32] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[21:53:32] [PASSED] ttm_pool_alloc_order_caching_match
[21:53:32] [PASSED] ttm_pool_alloc_caching_mismatch
[21:53:32] [PASSED] ttm_pool_alloc_order_mismatch
[21:53:32] [PASSED] ttm_pool_free_dma_alloc
[21:53:32] [PASSED] ttm_pool_free_no_dma_alloc
[21:53:32] [PASSED] ttm_pool_fini_basic
[21:53:32] ==================== [PASSED] ttm_pool =====================
[21:53:32] ================ ttm_resource (8 subtests) =================
[21:53:32] ================= ttm_resource_init_basic =================
[21:53:32] [PASSED] Init resource in TTM_PL_SYSTEM
[21:53:32] [PASSED] Init resource in TTM_PL_VRAM
[21:53:32] [PASSED] Init resource in a private placement
[21:53:32] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[21:53:32] ============= [PASSED] ttm_resource_init_basic =============
[21:53:32] [PASSED] ttm_resource_init_pinned
[21:53:32] [PASSED] ttm_resource_fini_basic
[21:53:32] [PASSED] ttm_resource_manager_init_basic
[21:53:32] [PASSED] ttm_resource_manager_usage_basic
[21:53:32] [PASSED] ttm_resource_manager_set_used_basic
[21:53:32] [PASSED] ttm_sys_man_alloc_basic
[21:53:32] [PASSED] ttm_sys_man_free_basic
[21:53:32] ================== [PASSED] ttm_resource ===================
[21:53:32] =================== ttm_tt (15 subtests) ===================
[21:53:32] ==================== ttm_tt_init_basic ====================
[21:53:32] [PASSED] Page-aligned size
[21:53:32] [PASSED] Extra pages requested
[21:53:32] ================ [PASSED] ttm_tt_init_basic ================
[21:53:32] [PASSED] ttm_tt_init_misaligned
[21:53:32] [PASSED] ttm_tt_fini_basic
[21:53:32] [PASSED] ttm_tt_fini_sg
[21:53:32] [PASSED] ttm_tt_fini_shmem
[21:53:32] [PASSED] ttm_tt_create_basic
[21:53:32] [PASSED] ttm_tt_create_invalid_bo_type
[21:53:32] [PASSED] ttm_tt_create_ttm_exists
[21:53:32] [PASSED] ttm_tt_create_failed
[21:53:32] [PASSED] ttm_tt_destroy_basic
[21:53:32] [PASSED] ttm_tt_populate_null_ttm
[21:53:32] [PASSED] ttm_tt_populate_populated_ttm
[21:53:32] [PASSED] ttm_tt_unpopulate_basic
[21:53:32] [PASSED] ttm_tt_unpopulate_empty_ttm
[21:53:32] [PASSED] ttm_tt_swapin_basic
[21:53:32] ===================== [PASSED] ttm_tt ======================
[21:53:32] =================== ttm_bo (14 subtests) ===================
[21:53:32] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[21:53:32] [PASSED] Cannot be interrupted and sleeps
[21:53:32] [PASSED] Cannot be interrupted, locks straight away
[21:53:32] [PASSED] Can be interrupted, sleeps
[21:53:32] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[21:53:32] [PASSED] ttm_bo_reserve_locked_no_sleep
[21:53:32] [PASSED] ttm_bo_reserve_no_wait_ticket
[21:53:32] [PASSED] ttm_bo_reserve_double_resv
[21:53:32] [PASSED] ttm_bo_reserve_interrupted
[21:53:32] [PASSED] ttm_bo_reserve_deadlock
[21:53:32] [PASSED] ttm_bo_unreserve_basic
[21:53:32] [PASSED] ttm_bo_unreserve_pinned
[21:53:32] [PASSED] ttm_bo_unreserve_bulk
[21:53:32] [PASSED] ttm_bo_put_basic
[21:53:32] [PASSED] ttm_bo_put_shared_resv
[21:53:32] [PASSED] ttm_bo_pin_basic
[21:53:32] [PASSED] ttm_bo_pin_unpin_resource
[21:53:32] [PASSED] ttm_bo_multiple_pin_one_unpin
[21:53:32] ===================== [PASSED] ttm_bo ======================
[21:53:32] ============== ttm_bo_validate (22 subtests) ===============
[21:53:32] ============== ttm_bo_init_reserved_sys_man ===============
[21:53:32] [PASSED] Buffer object for userspace
[21:53:32] [PASSED] Kernel buffer object
[21:53:32] [PASSED] Shared buffer object
[21:53:32] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[21:53:32] ============== ttm_bo_init_reserved_mock_man ==============
[21:53:32] [PASSED] Buffer object for userspace
[21:53:32] [PASSED] Kernel buffer object
[21:53:32] [PASSED] Shared buffer object
[21:53:32] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[21:53:32] [PASSED] ttm_bo_init_reserved_resv
[21:53:32] ================== ttm_bo_validate_basic ==================
[21:53:32] [PASSED] Buffer object for userspace
[21:53:32] [PASSED] Kernel buffer object
[21:53:32] [PASSED] Shared buffer object
[21:53:32] ============== [PASSED] ttm_bo_validate_basic ==============
[21:53:32] [PASSED] ttm_bo_validate_invalid_placement
[21:53:32] ============= ttm_bo_validate_same_placement ==============
[21:53:32] [PASSED] System manager
[21:53:32] [PASSED] VRAM manager
[21:53:32] ========= [PASSED] ttm_bo_validate_same_placement ==========
[21:53:32] [PASSED] ttm_bo_validate_failed_alloc
[21:53:32] [PASSED] ttm_bo_validate_pinned
[21:53:32] [PASSED] ttm_bo_validate_busy_placement
[21:53:32] ================ ttm_bo_validate_multihop =================
[21:53:32] [PASSED] Buffer object for userspace
[21:53:32] [PASSED] Kernel buffer object
[21:53:32] [PASSED] Shared buffer object
[21:53:32] ============ [PASSED] ttm_bo_validate_multihop =============
[21:53:32] ========== ttm_bo_validate_no_placement_signaled ==========
[21:53:32] [PASSED] Buffer object in system domain, no page vector
[21:53:32] [PASSED] Buffer object in system domain with an existing page vector
[21:53:32] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[21:53:32] ======== ttm_bo_validate_no_placement_not_signaled ========
[21:53:32] [PASSED] Buffer object for userspace
[21:53:32] [PASSED] Kernel buffer object
[21:53:32] [PASSED] Shared buffer object
[21:53:32] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[21:53:32] [PASSED] ttm_bo_validate_move_fence_signaled
[21:53:32] ========= ttm_bo_validate_move_fence_not_signaled =========
[21:53:32] [PASSED] Waits for GPU
[21:53:32] [PASSED] Tries to lock straight away
[21:53:32] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[21:53:32] [PASSED] ttm_bo_validate_swapout
[21:53:32] [PASSED] ttm_bo_validate_happy_evict
[21:53:32] [PASSED] ttm_bo_validate_all_pinned_evict
[21:53:32] [PASSED] ttm_bo_validate_allowed_only_evict
[21:53:32] [PASSED] ttm_bo_validate_deleted_evict
[21:53:32] [PASSED] ttm_bo_validate_busy_domain_evict
[21:53:32] [PASSED] ttm_bo_validate_evict_gutting
[21:53:32] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[21:53:32] ================= [PASSED] ttm_bo_validate =================
[21:53:32] ============================================================
[21:53:32] Testing complete. Ran 102 tests: passed: 102
[21:53:32] Elapsed time: 10.161s total, 1.708s configuring, 7.785s building, 0.575s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 12+ messages in thread* ✓ Xe.CI.BAT: success for drm/xe: Tweak default GuC log level (rev2)
2025-06-13 20:00 [PATCH v2 0/3] drm/xe: Tweak default GuC log level Lucas De Marchi
` (4 preceding siblings ...)
2025-06-13 21:53 ` ✓ CI.KUnit: success " Patchwork
@ 2025-06-13 22:33 ` Patchwork
2025-06-15 21:23 ` ✗ Xe.CI.Full: failure " Patchwork
2025-06-17 23:40 ` [PATCH v2 0/3] drm/xe: Tweak default GuC log level Lucas De Marchi
7 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-06-13 22:33 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 954 bytes --]
== Series Details ==
Series: drm/xe: Tweak default GuC log level (rev2)
URL : https://patchwork.freedesktop.org/series/150183/
State : success
== Summary ==
CI Bug Log - changes from xe-3252-4d016d6e602638e0ebc3895331224e057508c07a_BAT -> xe-pw-150183v2_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-3252-4d016d6e602638e0ebc3895331224e057508c07a -> xe-pw-150183v2
IGT_8411: d5b5d2bb4f8795a98ea58376a128b74f654b7ec1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3252-4d016d6e602638e0ebc3895331224e057508c07a: 4d016d6e602638e0ebc3895331224e057508c07a
xe-pw-150183v2: 150183v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/index.html
[-- Attachment #2: Type: text/html, Size: 1502 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread* ✗ Xe.CI.Full: failure for drm/xe: Tweak default GuC log level (rev2)
2025-06-13 20:00 [PATCH v2 0/3] drm/xe: Tweak default GuC log level Lucas De Marchi
` (5 preceding siblings ...)
2025-06-13 22:33 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-06-15 21:23 ` Patchwork
2025-06-17 23:40 ` [PATCH v2 0/3] drm/xe: Tweak default GuC log level Lucas De Marchi
7 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-06-15 21:23 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 65621 bytes --]
== Series Details ==
Series: drm/xe: Tweak default GuC log level (rev2)
URL : https://patchwork.freedesktop.org/series/150183/
State : failure
== Summary ==
CI Bug Log - changes from xe-3252-4d016d6e602638e0ebc3895331224e057508c07a_FULL -> xe-pw-150183v2_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-150183v2_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-150183v2_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 (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-150183v2_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_system_allocator@process-many-stride-mmap-mlock-nomemset:
- shard-bmg: [PASS][1] -> [INCOMPLETE][2] +2 other tests incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-3/igt@xe_exec_system_allocator@process-many-stride-mmap-mlock-nomemset.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-5/igt@xe_exec_system_allocator@process-many-stride-mmap-mlock-nomemset.html
* igt@xe_exec_system_allocator@threads-many-mmap-shared-remap-eocheck:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-436/igt@xe_exec_system_allocator@threads-many-mmap-shared-remap-eocheck.html
Known issues
------------
Here are the changes found in xe-pw-150183v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@test-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#664])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@kms_async_flips@test-cursor-atomic.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-bmg: [PASS][5] -> [FAIL][6] ([Intel XE#3908])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][7] ([Intel XE#3908])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-dp-2.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#316])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-435/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1407])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#610])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#1124])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [PASS][13] -> [SKIP][14] ([Intel XE#2314] / [Intel XE#2894])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2314] / [Intel XE#2894])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2887]) +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#2887])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][18] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][19] ([Intel XE#787]) +5 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#3432])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#787]) +13 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [PASS][22] -> [INCOMPLETE][23] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) +1 other test incomplete
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][24] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][25] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-435/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][27] ([Intel XE#4417]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_cdclk@mode-transition@pipe-a-hdmi-a-1.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2325])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-4/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#306])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#373])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2252]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#373]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_content_protection@lic-type-1:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#5176])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2320]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#2321])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1424])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2321])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-bmg: [PASS][38] -> [SKIP][39] ([Intel XE#2291])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2286])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#4302])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-bmg: [PASS][42] -> [SKIP][43] ([Intel XE#4354])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-3/igt@kms_dp_link_training@non-uhbr-sst.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#455]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-435/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#4156])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][46] -> [FAIL][47] ([Intel XE#301] / [Intel XE#3321])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][48] -> [FAIL][49] ([Intel XE#301]) +6 other tests fail
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#2316]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-4/igt@kms_flip@2x-nonexisting-fb.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2316])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-lnl: [PASS][53] -> [FAIL][54] ([Intel XE#886]) +4 other tests fail
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-adlp: NOTRUN -> [SKIP][55] ([Intel XE#455]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2293]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#651]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#651]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#4141]) +3 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2312]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2311]) +6 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#656]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#653]) +4 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2313]) +5 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2927])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#4329])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#4596])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-d:
- shard-adlp: [PASS][69] -> [DMESG-WARN][70] ([Intel XE#2953] / [Intel XE#4173]) +4 other tests dmesg-warn
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-d.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-d.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#736])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#3309])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-4/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1439] / [Intel XE#3141])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#2893] / [Intel XE#4608])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#4608]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#1489])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1406]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@fbc-psr2-cursor-blt@edp-1:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#4609]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@kms_psr@fbc-psr2-cursor-blt@edp-1.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#3414] / [Intel XE#3904])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#1435])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@xe_eudebug@basic-vm-access-userptr:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#4837])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@xe_eudebug@basic-vm-access-userptr.html
* igt@xe_eudebug@basic-vm-bind:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#4837]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-4/igt@xe_eudebug@basic-vm-bind.html
* igt@xe_eudebug_online@single-step:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#4837])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-435/igt@xe_eudebug_online@single-step.html
* igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#688])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-reopen.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2322]) +3 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1392])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html
* igt@xe_exec_fault_mode@many-userptr:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#288]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-435/igt@xe_exec_fault_mode@many-userptr.html
* igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#4915]) +35 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-435/igt@xe_exec_system_allocator@threads-many-large-mmap-shared-remap-dontunmap-eocheck.html
* igt@xe_exec_system_allocator@threads-many-stride-mmap-huge:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#4943])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@xe_exec_system_allocator@threads-many-stride-mmap-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#4943]) +5 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-bo-map-nomemset:
- shard-lnl: [PASS][92] -> [FAIL][93] ([Intel XE#4937])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-bo-map-nomemset.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-new-bo-map-nomemset.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#2229])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_mmap@pci-membarrier-bad-pagesize:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#5100])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-2/igt@xe_mmap@pci-membarrier-bad-pagesize.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#2541] / [Intel XE#3573]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-435/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2284] / [Intel XE#366])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-435/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@s4-multiple-execs:
- shard-adlp: [PASS][98] -> [ABORT][99] ([Intel XE#1794])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-1/igt@xe_pm@s4-multiple-execs.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-9/igt@xe_pm@s4-multiple-execs.html
* igt@xe_pmu@gt-frequency:
- shard-adlp: NOTRUN -> [ABORT][100] ([Intel XE#5214]) +2 other tests abort
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-4/igt@xe_pmu@gt-frequency.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#4733]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-4/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#3342])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@xe_sriov_flr@flr-each-isolation.html
#### Possible fixes ####
* igt@core_hotunplug@hotrebind-lateclose:
- shard-adlp: [SKIP][103] ([Intel XE#4963]) -> [PASS][104]
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@core_hotunplug@hotrebind-lateclose.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@core_hotunplug@hotrebind-lateclose.html
* igt@kms_addfb_basic@bad-pitch-63:
- shard-adlp: [SKIP][105] ([Intel XE#4950]) -> [PASS][106] +18 other tests pass
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_addfb_basic@bad-pitch-63.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_addfb_basic@bad-pitch-63.html
* igt@kms_async_flips@invalid-async-flip-atomic@pipe-b-hdmi-a-1:
- shard-adlp: [DMESG-WARN][107] ([Intel XE#4543]) -> [PASS][108] +1 other test pass
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_async_flips@invalid-async-flip-atomic@pipe-b-hdmi-a-1.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_async_flips@invalid-async-flip-atomic@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][109] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [PASS][110]
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][111] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [PASS][112]
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [SKIP][113] ([Intel XE#2291]) -> [PASS][114] +1 other test pass
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-bmg: [SKIP][115] ([Intel XE#2316]) -> [PASS][116] +2 other tests pass
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-7/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [INCOMPLETE][117] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][118] +1 other test pass
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_flip@flip-vs-suspend-interruptible.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-1p-rte:
- shard-adlp: [SKIP][119] ([Intel XE#4947]) -> [PASS][120] +2 other tests pass
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-dg2-set2: [INCOMPLETE][121] ([Intel XE#4842]) -> [PASS][122]
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* {igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute}:
- shard-bmg: [ABORT][123] ([Intel XE#3970]) -> [PASS][124] +1 other test pass
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-4/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html
* igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap-nomemset:
- shard-bmg: [FAIL][125] -> [PASS][126]
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-7/igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap-nomemset.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-stride-malloc-bo-unmap-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset:
- shard-lnl: [FAIL][127] ([Intel XE#5018]) -> [PASS][128]
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html
* igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate:
- shard-dg2-set2: [INCOMPLETE][129] -> [PASS][130]
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-464/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate.html
* igt@xe_pm@s2idle-basic:
- shard-adlp: [DMESG-WARN][131] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][132]
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-3/igt@xe_pm@s2idle-basic.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-3/igt@xe_pm@s2idle-basic.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-bmg: [INCOMPLETE][133] ([Intel XE#569]) -> [PASS][134]
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@xe_pm@s3-vm-bind-userptr.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [FAIL][135] ([Intel XE#4835]) -> [PASS][136] +1 other test pass
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-435/igt@xe_pmu@gt-frequency.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-464/igt@xe_pmu@gt-frequency.html
* igt@xe_vm@large-misaligned-binds-2147483648:
- shard-adlp: [SKIP][137] ([Intel XE#4945]) -> [PASS][138] +29 other tests pass
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_vm@large-misaligned-binds-2147483648.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@xe_vm@large-misaligned-binds-2147483648.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-adlp: [SKIP][139] ([Intel XE#4947]) -> [SKIP][140] ([Intel XE#1124])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-adlp: [SKIP][141] ([Intel XE#4947]) -> [SKIP][142] ([Intel XE#316]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_big_fb@linear-32bpp-rotate-90.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-adlp: [SKIP][143] ([Intel XE#4947]) -> [SKIP][144] ([Intel XE#610])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@linear-tiling-4-displays-1920x1080p:
- shard-adlp: [SKIP][145] ([Intel XE#4950]) -> [SKIP][146] ([Intel XE#367])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc:
- shard-adlp: [SKIP][147] ([Intel XE#4947]) -> [SKIP][148] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-adlp: [SKIP][149] ([Intel XE#4947]) -> [SKIP][150] ([Intel XE#2907]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][151] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) -> [INCOMPLETE][152] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition:
- shard-adlp: [SKIP][153] ([Intel XE#4947]) -> [SKIP][154] ([Intel XE#4417] / [Intel XE#455])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_cdclk@mode-transition.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-adlp: [SKIP][155] ([Intel XE#4950]) -> [SKIP][156] ([Intel XE#373])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [FAIL][157] ([Intel XE#1178]) -> [SKIP][158] ([Intel XE#2341])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-4/igt@kms_content_protection@lic-type-0.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-bmg: [FAIL][159] ([Intel XE#1188]) -> [SKIP][160] ([Intel XE#2341])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-3/igt@kms_content_protection@uevent.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@kms_content_protection@uevent.html
* igt@kms_fbcon_fbt@psr:
- shard-adlp: [SKIP][161] ([Intel XE#4947]) -> [SKIP][162] ([Intel XE#776])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_fbcon_fbt@psr.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: [FAIL][163] ([Intel XE#2882]) -> [SKIP][164] ([Intel XE#2316])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-3/igt@kms_flip@2x-blocking-wf_vblank.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-adlp: [SKIP][165] ([Intel XE#4950]) -> [SKIP][166] ([Intel XE#310]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_flip@2x-plain-flip-interruptible.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-adlp: [SKIP][167] ([Intel XE#2351] / [Intel XE#4947]) -> [SKIP][168] ([Intel XE#455])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-adlp: [SKIP][169] ([Intel XE#4947]) -> [SKIP][170] ([Intel XE#455]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-adlp: [SKIP][171] ([Intel XE#4947]) -> [SKIP][172] ([Intel XE#651]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][173] ([Intel XE#2312]) -> [SKIP][174] ([Intel XE#2311]) +2 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-adlp: [SKIP][175] ([Intel XE#4947]) -> [SKIP][176] ([Intel XE#656]) +6 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][177] ([Intel XE#2312]) -> [SKIP][178] ([Intel XE#4141])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][179] ([Intel XE#4141]) -> [SKIP][180] ([Intel XE#2312]) +4 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt:
- shard-adlp: [SKIP][181] ([Intel XE#2351] / [Intel XE#4947]) -> [SKIP][182] ([Intel XE#651])
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][183] ([Intel XE#2311]) -> [SKIP][184] ([Intel XE#2312]) +6 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff:
- shard-adlp: [SKIP][185] ([Intel XE#2351] / [Intel XE#4947]) -> [SKIP][186] ([Intel XE#656]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][187] ([Intel XE#2313]) -> [SKIP][188] ([Intel XE#2312]) +9 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-adlp: [SKIP][189] ([Intel XE#4947]) -> [SKIP][190] ([Intel XE#653]) +2 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][191] ([Intel XE#2312]) -> [SKIP][192] ([Intel XE#2313]) +3 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-adlp: [SKIP][193] ([Intel XE#4950]) -> [SKIP][194] ([Intel XE#455]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_plane_scaling@intel-max-src-size.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-adlp: [SKIP][195] ([Intel XE#4947]) -> [SKIP][196] ([Intel XE#1489])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-primary-page-flip:
- shard-adlp: [SKIP][197] ([Intel XE#4947]) -> [SKIP][198] ([Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_psr@fbc-pr-primary-page-flip.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_psr@fbc-pr-primary-page-flip.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-adlp: [SKIP][199] ([Intel XE#4950]) -> [SKIP][200] ([Intel XE#1127])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@xe_ccs@suspend-resume:
- shard-adlp: [SKIP][201] ([Intel XE#4945]) -> [SKIP][202] ([Intel XE#455] / [Intel XE#488])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_ccs@suspend-resume.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@xe_ccs@suspend-resume.html
* igt@xe_eudebug@read-metadata:
- shard-adlp: [SKIP][203] ([Intel XE#4945]) -> [SKIP][204] ([Intel XE#4837]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_eudebug@read-metadata.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@xe_eudebug@read-metadata.html
* igt@xe_evict@evict-large-cm:
- shard-adlp: [SKIP][205] ([Intel XE#4945]) -> [SKIP][206] ([Intel XE#261] / [Intel XE#688])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_evict@evict-large-cm.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@xe_evict@evict-large-cm.html
* igt@xe_exec_fault_mode@many-bindexecqueue-rebind:
- shard-adlp: [SKIP][207] ([Intel XE#4945]) -> [SKIP][208] ([Intel XE#288]) +3 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_exec_fault_mode@many-bindexecqueue-rebind.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@xe_exec_fault_mode@many-bindexecqueue-rebind.html
* igt@xe_exec_system_allocator@processes-evict-malloc:
- shard-adlp: [SKIP][209] ([Intel XE#4945]) -> [SKIP][210] ([Intel XE#4915]) +60 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_exec_system_allocator@processes-evict-malloc.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@xe_exec_system_allocator@processes-evict-malloc.html
* igt@xe_oa@non-privileged-map-oa-buffer:
- shard-adlp: [SKIP][211] ([Intel XE#4945]) -> [SKIP][212] ([Intel XE#2541] / [Intel XE#3573])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_oa@non-privileged-map-oa-buffer.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@xe_oa@non-privileged-map-oa-buffer.html
* igt@xe_oa@syncs-ufence-wait-cfg:
- shard-adlp: [SKIP][213] ([Intel XE#4945]) -> [SKIP][214] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_oa@syncs-ufence-wait-cfg.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@xe_oa@syncs-ufence-wait-cfg.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-adlp: [SKIP][215] ([Intel XE#4945]) -> [SKIP][216] ([Intel XE#2284] / [Intel XE#366])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_pm@d3cold-mmap-vram.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pmu@all-fn-engine-activity-load:
- shard-adlp: [FAIL][217] ([Intel XE#5219]) -> [ABORT][218] ([Intel XE#5214])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-1/igt@xe_pmu@all-fn-engine-activity-load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-6/igt@xe_pmu@all-fn-engine-activity-load.html
* igt@xe_pmu@engine-activity-all-load:
- shard-adlp: [ABORT][219] ([Intel XE#5214]) -> [DMESG-WARN][220] ([Intel XE#5214])
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-3/igt@xe_pmu@engine-activity-all-load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-8/igt@xe_pmu@engine-activity-all-load.html
* igt@xe_pmu@engine-activity-all-load-idle:
- shard-adlp: [DMESG-WARN][221] ([Intel XE#5214]) -> [ABORT][222] ([Intel XE#5214]) +4 other tests abort
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-9/igt@xe_pmu@engine-activity-all-load-idle.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-8/igt@xe_pmu@engine-activity-all-load-idle.html
* igt@xe_pxp@display-pxp-fb:
- shard-adlp: [SKIP][223] ([Intel XE#4945]) -> [SKIP][224] ([Intel XE#4733])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_pxp@display-pxp-fb.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@xe_pxp@display-pxp-fb.html
* igt@xe_query@multigpu-query-gt-list:
- shard-adlp: [SKIP][225] ([Intel XE#4945]) -> [SKIP][226] ([Intel XE#944])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_query@multigpu-query-gt-list.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_spin_batch@spin-mem-copy:
- shard-adlp: [SKIP][227] ([Intel XE#4945]) -> [SKIP][228] ([Intel XE#4821])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3252-4d016d6e602638e0ebc3895331224e057508c07a/shard-adlp-4/igt@xe_spin_batch@spin-mem-copy.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/shard-adlp-2/igt@xe_spin_batch@spin-mem-copy.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[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#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417
[Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4821]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4821
[Intel XE#4835]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4835
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
[Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4937
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#4945]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4945
[Intel XE#4947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4947
[Intel XE#4950]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4950
[Intel XE#4963]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4963
[Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#5172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5172
[Intel XE#5176]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5176
[Intel XE#5214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5214
[Intel XE#5219]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5219
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-3252-4d016d6e602638e0ebc3895331224e057508c07a -> xe-pw-150183v2
IGT_8411: d5b5d2bb4f8795a98ea58376a128b74f654b7ec1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3252-4d016d6e602638e0ebc3895331224e057508c07a: 4d016d6e602638e0ebc3895331224e057508c07a
xe-pw-150183v2: 150183v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v2/index.html
[-- Attachment #2: Type: text/html, Size: 79309 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [PATCH v2 0/3] drm/xe: Tweak default GuC log level
2025-06-13 20:00 [PATCH v2 0/3] drm/xe: Tweak default GuC log level Lucas De Marchi
` (6 preceding siblings ...)
2025-06-15 21:23 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-06-17 23:40 ` Lucas De Marchi
7 siblings, 0 replies; 12+ messages in thread
From: Lucas De Marchi @ 2025-06-17 23:40 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Mrozek, John Harrison, Michal Wajdeczko
On Fri, Jun 13, 2025 at 01:00:36PM -0700, Lucas De Marchi wrote:
>Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
>---
>Changes in v2:
>- Rework the second patch so the default is kept in a single place and
> the module description doesn't need to be repeated according to the
> configuration. Suggested by Michal Wajdeczko.
>- Add a new patch to normalize all module param descriptions.
>- Link to v1: https://lore.kernel.org/r/20250612-guc-log-level-v1-0-51f124a3be6d@intel.com
>---
>Lucas De Marchi (3):
> drm/xe/guc: Default log level to non-verbose
> drm/xe: Annotate default for guc_log_level param
these first 2 patches are now applied. Last one will need another rev,
already sent.
Lucas De Marchi
> drm/xe: Normalize default param values
>
> drivers/gpu/drm/xe/xe_module.c | 49 +++++++++++++++++++++++++++++-------------
> 1 file changed, 34 insertions(+), 15 deletions(-)
>
>base-commit: 4d016d6e602638e0ebc3895331224e057508c07a
>change-id: 20250612-guc-log-level-79f87ca03396
>
>Lucas De Marchi
>
^ permalink raw reply [flat|nested] 12+ messages in thread