Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/xe/hwmon: Prevent unintended VRAM channel creation
@ 2026-01-19 14:31 Karthik Poosa
  2026-01-20 13:38 ` Raag Jadav
  0 siblings, 1 reply; 9+ messages in thread
From: Karthik Poosa @ 2026-01-19 14:31 UTC (permalink / raw)
  To: intel-xe
  Cc: anshuman.gupta, badal.nilawar, rodrigo.vivi, raag.jadav,
	Karthik Poosa

Remove the unnecessary VRAM channel entry introduced in
xe_hwmon_channel. Without this, adding any new hwmon channel
causes an extra VRAM channel to appear. This remained unnoticed
earlier because VRAM was the final xe hwmon channel.

Signed-off-by: Karthik Poosa <karthik.poosa@intel.com>
Fixes: 49a498338417 ("drm/xe/hwmon: Expose individual VRAM channel temperature")
---
 drivers/gpu/drm/xe/xe_hwmon.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/xe/xe_hwmon.c b/drivers/gpu/drm/xe/xe_hwmon.c
index baf277955b33..f614f1308dec 100644
--- a/drivers/gpu/drm/xe/xe_hwmon.c
+++ b/drivers/gpu/drm/xe/xe_hwmon.c
@@ -48,7 +48,7 @@ enum xe_hwmon_channel {
 	CHANNEL_MCTRL,
 	CHANNEL_PCIE,
 	CHANNEL_VRAM_N,
-	CHANNEL_VRAM_N_MAX = CHANNEL_VRAM_N + MAX_VRAM_CHANNELS,
+	CHANNEL_VRAM_N_MAX = CHANNEL_VRAM_N + MAX_VRAM_CHANNELS - 1,
 	CHANNEL_MAX,
 };
 
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [PATCH] drm/xe/hwmon: Prevent unintended VRAM channel creation
  2026-01-19 14:31 Karthik Poosa
@ 2026-01-20 13:38 ` Raag Jadav
  2026-02-06  7:29   ` Poosa, Karthik
  0 siblings, 1 reply; 9+ messages in thread
From: Raag Jadav @ 2026-01-20 13:38 UTC (permalink / raw)
  To: Karthik Poosa; +Cc: intel-xe, anshuman.gupta, badal.nilawar, rodrigo.vivi

On Mon, Jan 19, 2026 at 08:01:38PM +0530, Karthik Poosa wrote:
> Remove the unnecessary VRAM channel entry introduced in
> xe_hwmon_channel. Without this, adding any new hwmon channel
> causes an extra VRAM channel to appear. This remained unnoticed
> earlier because VRAM was the final xe hwmon channel.
> 
> Signed-off-by: Karthik Poosa <karthik.poosa@intel.com>
> Fixes: 49a498338417 ("drm/xe/hwmon: Expose individual VRAM channel temperature")
> ---
>  drivers/gpu/drm/xe/xe_hwmon.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_hwmon.c b/drivers/gpu/drm/xe/xe_hwmon.c
> index baf277955b33..f614f1308dec 100644
> --- a/drivers/gpu/drm/xe/xe_hwmon.c
> +++ b/drivers/gpu/drm/xe/xe_hwmon.c
> @@ -48,7 +48,7 @@ enum xe_hwmon_channel {
>  	CHANNEL_MCTRL,
>  	CHANNEL_PCIE,
>  	CHANNEL_VRAM_N,
> -	CHANNEL_VRAM_N_MAX = CHANNEL_VRAM_N + MAX_VRAM_CHANNELS,
> +	CHANNEL_VRAM_N_MAX = CHANNEL_VRAM_N + MAX_VRAM_CHANNELS - 1,

Can you also check in_range() logic and investigate how channel id greater
than CHANNEL_VRAM_N_MAX (for example 23) is delt with?

Raag

>  	CHANNEL_MAX,
>  };
>  
> -- 
> 2.25.1
> 

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] drm/xe/hwmon: Prevent unintended VRAM channel creation
  2026-01-20 13:38 ` Raag Jadav
@ 2026-02-06  7:29   ` Poosa, Karthik
  0 siblings, 0 replies; 9+ messages in thread
From: Poosa, Karthik @ 2026-02-06  7:29 UTC (permalink / raw)
  To: Raag Jadav; +Cc: intel-xe, anshuman.gupta, badal.nilawar, rodrigo.vivi

[-- Attachment #1: Type: text/plain, Size: 1783 bytes --]

2

On 20-01-2026 19:08, Raag Jadav wrote:
> On Mon, Jan 19, 2026 at 08:01:38PM +0530, Karthik Poosa wrote:
>> Remove the unnecessary VRAM channel entry introduced in
>> xe_hwmon_channel. Without this, adding any new hwmon channel
>> causes an extra VRAM channel to appear. This remained unnoticed
>> earlier because VRAM was the final xe hwmon channel.
>>
>> Signed-off-by: Karthik Poosa<karthik.poosa@intel.com>
>> Fixes: 49a498338417 ("drm/xe/hwmon: Expose individual VRAM channel temperature")
>> ---
>>   drivers/gpu/drm/xe/xe_hwmon.c | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_hwmon.c b/drivers/gpu/drm/xe/xe_hwmon.c
>> index baf277955b33..f614f1308dec 100644
>> --- a/drivers/gpu/drm/xe/xe_hwmon.c
>> +++ b/drivers/gpu/drm/xe/xe_hwmon.c
>> @@ -48,7 +48,7 @@ enum xe_hwmon_channel {
>>   	CHANNEL_MCTRL,
>>   	CHANNEL_PCIE,
>>   	CHANNEL_VRAM_N,
>> -	CHANNEL_VRAM_N_MAX = CHANNEL_VRAM_N + MAX_VRAM_CHANNELS,
>> +	CHANNEL_VRAM_N_MAX = CHANNEL_VRAM_N + MAX_VRAM_CHANNELS - 1,
> Can you also check in_range() logic and investigate how channel id greater
> than CHANNEL_VRAM_N_MAX (for example 23) is delt with?
>
> Raag
Hi Raag,

We are not seeing new channels with in_range() + CHANNEL_VRAM_N_MAX as
1. hwmon_info[] has defined only CHANNEL_VRAM_N_MAX channels,
2. CHANNEL_VRAM_N_MAX is the max channel supported in xe_hwmon.c
Checked in_range implementation also, you are right, using 
|MAX_VRAM_CHANNELS| with |in_range|() is correct, |as it |requires a 
start value and length.
Using |CHANNEL_VRAM_N_MAX| instead would pass offset which also includes 
extra offsets from CHANNEL_CARD to CHANNEL_PCIe.

I will use MAX_VRAM_CHANNELS with in_range in the next revision.
>
>>   	CHANNEL_MAX,
>>   };
>>   
>> -- 
>> 2.25.1
>>

[-- Attachment #2: Type: text/html, Size: 4331 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [PATCH] drm/xe/hwmon: Prevent unintended VRAM channel creation
@ 2026-02-06  8:16 Karthik Poosa
  2026-02-06  8:17 ` ✓ CI.KUnit: success for drm/xe/hwmon: Prevent unintended VRAM channel creation (rev2) Patchwork
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Karthik Poosa @ 2026-02-06  8:16 UTC (permalink / raw)
  To: intel-xe
  Cc: anshuman.gupta, badal.nilawar, rodrigo.vivi, raag.jadav,
	Karthik Poosa

Remove the unnecessary VRAM channel entry introduced in xe_hwmon_channel.
Without this, adding any new hwmon channel causes extra VRAM channel
to appear. This remained unnoticed earlier because VRAM was the
final xe hwmon channel.

v2: Use MAX_VRAM_CHANNELS with in_range() instead of
    CHANNEL_VRAM_N_MAX. (Raag)

Signed-off-by: Karthik Poosa <karthik.poosa@intel.com>
Fixes: 49a498338417 ("drm/xe/hwmon: Expose individual VRAM channel temperature")
---
 drivers/gpu/drm/xe/xe_hwmon.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_hwmon.c b/drivers/gpu/drm/xe/xe_hwmon.c
index baf277955b33..0fd4d4f1014a 100644
--- a/drivers/gpu/drm/xe/xe_hwmon.c
+++ b/drivers/gpu/drm/xe/xe_hwmon.c
@@ -48,7 +48,7 @@ enum xe_hwmon_channel {
 	CHANNEL_MCTRL,
 	CHANNEL_PCIE,
 	CHANNEL_VRAM_N,
-	CHANNEL_VRAM_N_MAX = CHANNEL_VRAM_N + MAX_VRAM_CHANNELS,
+	CHANNEL_VRAM_N_MAX = CHANNEL_VRAM_N + MAX_VRAM_CHANNELS - 1,
 	CHANNEL_MAX,
 };
 
@@ -264,7 +264,7 @@ static struct xe_reg xe_hwmon_get_reg(struct xe_hwmon *hwmon, enum xe_hwmon_reg
 				return BMG_PACKAGE_TEMPERATURE;
 			else if (channel == CHANNEL_VRAM)
 				return BMG_VRAM_TEMPERATURE;
-			else if (in_range(channel, CHANNEL_VRAM_N, CHANNEL_VRAM_N_MAX))
+			else if (in_range(channel, CHANNEL_VRAM_N, MAX_VRAM_CHANNELS))
 				return BMG_VRAM_TEMPERATURE_N(channel - CHANNEL_VRAM_N);
 		} else if (xe->info.platform == XE_DG2) {
 			if (channel == CHANNEL_PKG)
@@ -1427,7 +1427,7 @@ static int xe_hwmon_read_label(struct device *dev,
 			*str = "mctrl";
 		else if (channel == CHANNEL_PCIE)
 			*str = "pcie";
-		else if (in_range(channel, CHANNEL_VRAM_N, CHANNEL_VRAM_N_MAX))
+		else if (in_range(channel, CHANNEL_VRAM_N, MAX_VRAM_CHANNELS))
 			*str = hwmon->temp.vram_label[channel - CHANNEL_VRAM_N];
 		return 0;
 	case hwmon_power:
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* ✓ CI.KUnit: success for drm/xe/hwmon: Prevent unintended VRAM channel creation (rev2)
  2026-02-06  8:16 [PATCH] drm/xe/hwmon: Prevent unintended VRAM channel creation Karthik Poosa
@ 2026-02-06  8:17 ` Patchwork
  2026-02-06  8:55 ` ✓ Xe.CI.BAT: " Patchwork
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-02-06  8:17 UTC (permalink / raw)
  To: Karthik Poosa; +Cc: intel-xe

== Series Details ==

Series: drm/xe/hwmon: Prevent unintended VRAM channel creation (rev2)
URL   : https://patchwork.freedesktop.org/series/160302/
State : success

== Summary ==

+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[08:15:48] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:15:52] 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=25
[08:16:31] Starting KUnit Kernel (1/1)...
[08:16:31] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:16:31] ================== guc_buf (11 subtests) ===================
[08:16:31] [PASSED] test_smallest
[08:16:31] [PASSED] test_largest
[08:16:31] [PASSED] test_granular
[08:16:31] [PASSED] test_unique
[08:16:31] [PASSED] test_overlap
[08:16:31] [PASSED] test_reusable
[08:16:31] [PASSED] test_too_big
[08:16:31] [PASSED] test_flush
[08:16:31] [PASSED] test_lookup
[08:16:31] [PASSED] test_data
[08:16:31] [PASSED] test_class
[08:16:31] ===================== [PASSED] guc_buf =====================
[08:16:31] =================== guc_dbm (7 subtests) ===================
[08:16:31] [PASSED] test_empty
[08:16:31] [PASSED] test_default
[08:16:31] ======================== test_size  ========================
[08:16:31] [PASSED] 4
[08:16:31] [PASSED] 8
[08:16:31] [PASSED] 32
[08:16:31] [PASSED] 256
[08:16:31] ==================== [PASSED] test_size ====================
[08:16:31] ======================= test_reuse  ========================
[08:16:31] [PASSED] 4
[08:16:31] [PASSED] 8
[08:16:31] [PASSED] 32
[08:16:31] [PASSED] 256
[08:16:31] =================== [PASSED] test_reuse ====================
[08:16:31] =================== test_range_overlap  ====================
[08:16:31] [PASSED] 4
[08:16:31] [PASSED] 8
[08:16:31] [PASSED] 32
[08:16:31] [PASSED] 256
[08:16:31] =============== [PASSED] test_range_overlap ================
[08:16:31] =================== test_range_compact  ====================
[08:16:31] [PASSED] 4
[08:16:31] [PASSED] 8
[08:16:31] [PASSED] 32
[08:16:31] [PASSED] 256
[08:16:31] =============== [PASSED] test_range_compact ================
[08:16:31] ==================== test_range_spare  =====================
[08:16:31] [PASSED] 4
[08:16:31] [PASSED] 8
[08:16:31] [PASSED] 32
[08:16:31] [PASSED] 256
[08:16:31] ================ [PASSED] test_range_spare =================
[08:16:31] ===================== [PASSED] guc_dbm =====================
[08:16:31] =================== guc_idm (6 subtests) ===================
[08:16:31] [PASSED] bad_init
[08:16:31] [PASSED] no_init
[08:16:31] [PASSED] init_fini
[08:16:31] [PASSED] check_used
[08:16:31] [PASSED] check_quota
[08:16:31] [PASSED] check_all
[08:16:31] ===================== [PASSED] guc_idm =====================
[08:16:31] ================== no_relay (3 subtests) ===================
[08:16:31] [PASSED] xe_drops_guc2pf_if_not_ready
[08:16:31] [PASSED] xe_drops_guc2vf_if_not_ready
[08:16:31] [PASSED] xe_rejects_send_if_not_ready
[08:16:31] ==================== [PASSED] no_relay =====================
[08:16:31] ================== pf_relay (14 subtests) ==================
[08:16:31] [PASSED] pf_rejects_guc2pf_too_short
[08:16:31] [PASSED] pf_rejects_guc2pf_too_long
[08:16:31] [PASSED] pf_rejects_guc2pf_no_payload
[08:16:31] [PASSED] pf_fails_no_payload
[08:16:31] [PASSED] pf_fails_bad_origin
[08:16:31] [PASSED] pf_fails_bad_type
[08:16:31] [PASSED] pf_txn_reports_error
[08:16:31] [PASSED] pf_txn_sends_pf2guc
[08:16:31] [PASSED] pf_sends_pf2guc
[08:16:31] [SKIPPED] pf_loopback_nop
[08:16:31] [SKIPPED] pf_loopback_echo
[08:16:31] [SKIPPED] pf_loopback_fail
[08:16:31] [SKIPPED] pf_loopback_busy
[08:16:31] [SKIPPED] pf_loopback_retry
[08:16:31] ==================== [PASSED] pf_relay =====================
[08:16:31] ================== vf_relay (3 subtests) ===================
[08:16:31] [PASSED] vf_rejects_guc2vf_too_short
[08:16:31] [PASSED] vf_rejects_guc2vf_too_long
[08:16:31] [PASSED] vf_rejects_guc2vf_no_payload
[08:16:31] ==================== [PASSED] vf_relay =====================
[08:16:31] ================ pf_gt_config (6 subtests) =================
[08:16:31] [PASSED] fair_contexts_1vf
[08:16:31] [PASSED] fair_doorbells_1vf
[08:16:31] [PASSED] fair_ggtt_1vf
[08:16:31] ====================== fair_contexts  ======================
[08:16:31] [PASSED] 1 VF
[08:16:31] [PASSED] 2 VFs
[08:16:31] [PASSED] 3 VFs
[08:16:31] [PASSED] 4 VFs
[08:16:31] [PASSED] 5 VFs
[08:16:31] [PASSED] 6 VFs
[08:16:31] [PASSED] 7 VFs
[08:16:31] [PASSED] 8 VFs
[08:16:31] [PASSED] 9 VFs
[08:16:31] [PASSED] 10 VFs
[08:16:31] [PASSED] 11 VFs
[08:16:31] [PASSED] 12 VFs
[08:16:31] [PASSED] 13 VFs
[08:16:31] [PASSED] 14 VFs
[08:16:31] [PASSED] 15 VFs
[08:16:31] [PASSED] 16 VFs
[08:16:31] [PASSED] 17 VFs
[08:16:31] [PASSED] 18 VFs
[08:16:31] [PASSED] 19 VFs
[08:16:31] [PASSED] 20 VFs
[08:16:31] [PASSED] 21 VFs
[08:16:31] [PASSED] 22 VFs
[08:16:31] [PASSED] 23 VFs
[08:16:31] [PASSED] 24 VFs
[08:16:31] [PASSED] 25 VFs
[08:16:31] [PASSED] 26 VFs
[08:16:31] [PASSED] 27 VFs
[08:16:31] [PASSED] 28 VFs
[08:16:31] [PASSED] 29 VFs
[08:16:31] [PASSED] 30 VFs
[08:16:31] [PASSED] 31 VFs
[08:16:31] [PASSED] 32 VFs
[08:16:31] [PASSED] 33 VFs
[08:16:31] [PASSED] 34 VFs
[08:16:31] [PASSED] 35 VFs
[08:16:31] [PASSED] 36 VFs
[08:16:31] [PASSED] 37 VFs
[08:16:31] [PASSED] 38 VFs
[08:16:31] [PASSED] 39 VFs
[08:16:31] [PASSED] 40 VFs
[08:16:31] [PASSED] 41 VFs
[08:16:31] [PASSED] 42 VFs
[08:16:31] [PASSED] 43 VFs
[08:16:31] [PASSED] 44 VFs
[08:16:31] [PASSED] 45 VFs
[08:16:31] [PASSED] 46 VFs
[08:16:31] [PASSED] 47 VFs
[08:16:31] [PASSED] 48 VFs
[08:16:31] [PASSED] 49 VFs
[08:16:31] [PASSED] 50 VFs
[08:16:31] [PASSED] 51 VFs
[08:16:31] [PASSED] 52 VFs
[08:16:31] [PASSED] 53 VFs
[08:16:31] [PASSED] 54 VFs
[08:16:31] [PASSED] 55 VFs
[08:16:31] [PASSED] 56 VFs
[08:16:31] [PASSED] 57 VFs
[08:16:31] [PASSED] 58 VFs
[08:16:31] [PASSED] 59 VFs
[08:16:31] [PASSED] 60 VFs
[08:16:31] [PASSED] 61 VFs
[08:16:31] [PASSED] 62 VFs
[08:16:31] [PASSED] 63 VFs
[08:16:31] ================== [PASSED] fair_contexts ==================
[08:16:31] ===================== fair_doorbells  ======================
[08:16:31] [PASSED] 1 VF
[08:16:31] [PASSED] 2 VFs
[08:16:31] [PASSED] 3 VFs
[08:16:31] [PASSED] 4 VFs
[08:16:31] [PASSED] 5 VFs
[08:16:31] [PASSED] 6 VFs
[08:16:31] [PASSED] 7 VFs
[08:16:31] [PASSED] 8 VFs
[08:16:31] [PASSED] 9 VFs
[08:16:31] [PASSED] 10 VFs
[08:16:31] [PASSED] 11 VFs
[08:16:31] [PASSED] 12 VFs
[08:16:31] [PASSED] 13 VFs
[08:16:31] [PASSED] 14 VFs
[08:16:31] [PASSED] 15 VFs
[08:16:31] [PASSED] 16 VFs
[08:16:31] [PASSED] 17 VFs
[08:16:31] [PASSED] 18 VFs
[08:16:31] [PASSED] 19 VFs
[08:16:31] [PASSED] 20 VFs
[08:16:31] [PASSED] 21 VFs
[08:16:31] [PASSED] 22 VFs
[08:16:31] [PASSED] 23 VFs
[08:16:31] [PASSED] 24 VFs
[08:16:31] [PASSED] 25 VFs
[08:16:31] [PASSED] 26 VFs
[08:16:31] [PASSED] 27 VFs
[08:16:31] [PASSED] 28 VFs
[08:16:31] [PASSED] 29 VFs
[08:16:31] [PASSED] 30 VFs
[08:16:31] [PASSED] 31 VFs
[08:16:31] [PASSED] 32 VFs
[08:16:31] [PASSED] 33 VFs
[08:16:31] [PASSED] 34 VFs
[08:16:31] [PASSED] 35 VFs
[08:16:31] [PASSED] 36 VFs
[08:16:31] [PASSED] 37 VFs
[08:16:31] [PASSED] 38 VFs
[08:16:31] [PASSED] 39 VFs
[08:16:31] [PASSED] 40 VFs
[08:16:31] [PASSED] 41 VFs
[08:16:31] [PASSED] 42 VFs
[08:16:31] [PASSED] 43 VFs
[08:16:31] [PASSED] 44 VFs
[08:16:31] [PASSED] 45 VFs
[08:16:31] [PASSED] 46 VFs
[08:16:31] [PASSED] 47 VFs
[08:16:31] [PASSED] 48 VFs
[08:16:31] [PASSED] 49 VFs
[08:16:31] [PASSED] 50 VFs
[08:16:31] [PASSED] 51 VFs
[08:16:31] [PASSED] 52 VFs
[08:16:31] [PASSED] 53 VFs
[08:16:31] [PASSED] 54 VFs
[08:16:31] [PASSED] 55 VFs
[08:16:31] [PASSED] 56 VFs
[08:16:31] [PASSED] 57 VFs
[08:16:31] [PASSED] 58 VFs
[08:16:31] [PASSED] 59 VFs
[08:16:31] [PASSED] 60 VFs
[08:16:31] [PASSED] 61 VFs
[08:16:31] [PASSED] 62 VFs
[08:16:31] [PASSED] 63 VFs
[08:16:31] ================= [PASSED] fair_doorbells ==================
[08:16:31] ======================== fair_ggtt  ========================
[08:16:31] [PASSED] 1 VF
[08:16:31] [PASSED] 2 VFs
[08:16:31] [PASSED] 3 VFs
[08:16:31] [PASSED] 4 VFs
[08:16:31] [PASSED] 5 VFs
[08:16:31] [PASSED] 6 VFs
[08:16:31] [PASSED] 7 VFs
[08:16:31] [PASSED] 8 VFs
[08:16:31] [PASSED] 9 VFs
[08:16:31] [PASSED] 10 VFs
[08:16:31] [PASSED] 11 VFs
[08:16:31] [PASSED] 12 VFs
[08:16:31] [PASSED] 13 VFs
[08:16:31] [PASSED] 14 VFs
[08:16:31] [PASSED] 15 VFs
[08:16:31] [PASSED] 16 VFs
[08:16:31] [PASSED] 17 VFs
[08:16:31] [PASSED] 18 VFs
[08:16:31] [PASSED] 19 VFs
[08:16:31] [PASSED] 20 VFs
[08:16:31] [PASSED] 21 VFs
[08:16:31] [PASSED] 22 VFs
[08:16:31] [PASSED] 23 VFs
[08:16:31] [PASSED] 24 VFs
[08:16:31] [PASSED] 25 VFs
[08:16:31] [PASSED] 26 VFs
[08:16:31] [PASSED] 27 VFs
[08:16:31] [PASSED] 28 VFs
[08:16:31] [PASSED] 29 VFs
[08:16:31] [PASSED] 30 VFs
[08:16:31] [PASSED] 31 VFs
[08:16:31] [PASSED] 32 VFs
[08:16:31] [PASSED] 33 VFs
[08:16:31] [PASSED] 34 VFs
[08:16:31] [PASSED] 35 VFs
[08:16:31] [PASSED] 36 VFs
[08:16:31] [PASSED] 37 VFs
[08:16:31] [PASSED] 38 VFs
[08:16:31] [PASSED] 39 VFs
[08:16:31] [PASSED] 40 VFs
[08:16:31] [PASSED] 41 VFs
[08:16:31] [PASSED] 42 VFs
[08:16:31] [PASSED] 43 VFs
[08:16:31] [PASSED] 44 VFs
[08:16:31] [PASSED] 45 VFs
[08:16:31] [PASSED] 46 VFs
[08:16:31] [PASSED] 47 VFs
[08:16:31] [PASSED] 48 VFs
[08:16:31] [PASSED] 49 VFs
[08:16:31] [PASSED] 50 VFs
[08:16:31] [PASSED] 51 VFs
[08:16:31] [PASSED] 52 VFs
[08:16:31] [PASSED] 53 VFs
[08:16:31] [PASSED] 54 VFs
[08:16:31] [PASSED] 55 VFs
[08:16:31] [PASSED] 56 VFs
[08:16:31] [PASSED] 57 VFs
[08:16:31] [PASSED] 58 VFs
[08:16:31] [PASSED] 59 VFs
[08:16:31] [PASSED] 60 VFs
[08:16:31] [PASSED] 61 VFs
[08:16:31] [PASSED] 62 VFs
[08:16:31] [PASSED] 63 VFs
[08:16:31] ==================== [PASSED] fair_ggtt ====================
[08:16:31] ================== [PASSED] pf_gt_config ===================
[08:16:31] ===================== lmtt (1 subtest) =====================
[08:16:31] ======================== test_ops  =========================
[08:16:31] [PASSED] 2-level
[08:16:31] [PASSED] multi-level
[08:16:31] ==================== [PASSED] test_ops =====================
[08:16:31] ====================== [PASSED] lmtt =======================
[08:16:31] ================= pf_service (11 subtests) =================
[08:16:31] [PASSED] pf_negotiate_any
[08:16:31] [PASSED] pf_negotiate_base_match
[08:16:31] [PASSED] pf_negotiate_base_newer
[08:16:31] [PASSED] pf_negotiate_base_next
[08:16:31] [SKIPPED] pf_negotiate_base_older
[08:16:31] [PASSED] pf_negotiate_base_prev
[08:16:31] [PASSED] pf_negotiate_latest_match
[08:16:31] [PASSED] pf_negotiate_latest_newer
[08:16:31] [PASSED] pf_negotiate_latest_next
[08:16:31] [SKIPPED] pf_negotiate_latest_older
[08:16:31] [SKIPPED] pf_negotiate_latest_prev
[08:16:31] =================== [PASSED] pf_service ====================
[08:16:31] ================= xe_guc_g2g (2 subtests) ==================
[08:16:31] ============== xe_live_guc_g2g_kunit_default  ==============
[08:16:31] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[08:16:31] ============== xe_live_guc_g2g_kunit_allmem  ===============
[08:16:31] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[08:16:31] =================== [SKIPPED] xe_guc_g2g ===================
[08:16:31] =================== xe_mocs (2 subtests) ===================
[08:16:31] ================ xe_live_mocs_kernel_kunit  ================
[08:16:31] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[08:16:31] ================ xe_live_mocs_reset_kunit  =================
[08:16:31] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[08:16:31] ==================== [SKIPPED] xe_mocs =====================
[08:16:31] ================= xe_migrate (2 subtests) ==================
[08:16:31] ================= xe_migrate_sanity_kunit  =================
[08:16:31] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[08:16:31] ================== xe_validate_ccs_kunit  ==================
[08:16:31] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[08:16:31] =================== [SKIPPED] xe_migrate ===================
[08:16:31] ================== xe_dma_buf (1 subtest) ==================
[08:16:31] ==================== xe_dma_buf_kunit  =====================
[08:16:31] ================ [SKIPPED] xe_dma_buf_kunit ================
[08:16:31] =================== [SKIPPED] xe_dma_buf ===================
[08:16:31] ================= xe_bo_shrink (1 subtest) =================
[08:16:31] =================== xe_bo_shrink_kunit  ====================
[08:16:31] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[08:16:31] ================== [SKIPPED] xe_bo_shrink ==================
[08:16:31] ==================== xe_bo (2 subtests) ====================
[08:16:31] ================== xe_ccs_migrate_kunit  ===================
[08:16:31] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[08:16:31] ==================== xe_bo_evict_kunit  ====================
[08:16:31] =============== [SKIPPED] xe_bo_evict_kunit ================
[08:16:31] ===================== [SKIPPED] xe_bo ======================
[08:16:31] ==================== args (13 subtests) ====================
[08:16:31] [PASSED] count_args_test
[08:16:31] [PASSED] call_args_example
[08:16:31] [PASSED] call_args_test
[08:16:31] [PASSED] drop_first_arg_example
[08:16:31] [PASSED] drop_first_arg_test
[08:16:31] [PASSED] first_arg_example
[08:16:31] [PASSED] first_arg_test
[08:16:31] [PASSED] last_arg_example
[08:16:31] [PASSED] last_arg_test
[08:16:31] [PASSED] pick_arg_example
[08:16:31] [PASSED] if_args_example
[08:16:31] [PASSED] if_args_test
[08:16:31] [PASSED] sep_comma_example
[08:16:31] ====================== [PASSED] args =======================
[08:16:31] =================== xe_pci (3 subtests) ====================
[08:16:31] ==================== check_graphics_ip  ====================
[08:16:31] [PASSED] 12.00 Xe_LP
[08:16:31] [PASSED] 12.10 Xe_LP+
[08:16:31] [PASSED] 12.55 Xe_HPG
[08:16:31] [PASSED] 12.60 Xe_HPC
[08:16:31] [PASSED] 12.70 Xe_LPG
[08:16:31] [PASSED] 12.71 Xe_LPG
[08:16:31] [PASSED] 12.74 Xe_LPG+
[08:16:31] [PASSED] 20.01 Xe2_HPG
[08:16:31] [PASSED] 20.02 Xe2_HPG
[08:16:31] [PASSED] 20.04 Xe2_LPG
[08:16:31] [PASSED] 30.00 Xe3_LPG
[08:16:31] [PASSED] 30.01 Xe3_LPG
[08:16:31] [PASSED] 30.03 Xe3_LPG
[08:16:31] [PASSED] 30.04 Xe3_LPG
[08:16:31] [PASSED] 30.05 Xe3_LPG
[08:16:31] [PASSED] 35.11 Xe3p_XPC
[08:16:31] ================ [PASSED] check_graphics_ip ================
[08:16:31] ===================== check_media_ip  ======================
[08:16:31] [PASSED] 12.00 Xe_M
[08:16:31] [PASSED] 12.55 Xe_HPM
[08:16:31] [PASSED] 13.00 Xe_LPM+
[08:16:31] [PASSED] 13.01 Xe2_HPM
[08:16:31] [PASSED] 20.00 Xe2_LPM
[08:16:31] [PASSED] 30.00 Xe3_LPM
[08:16:31] [PASSED] 30.02 Xe3_LPM
[08:16:31] [PASSED] 35.00 Xe3p_LPM
[08:16:31] [PASSED] 35.03 Xe3p_HPM
[08:16:31] ================= [PASSED] check_media_ip ==================
[08:16:31] =================== check_platform_desc  ===================
[08:16:31] [PASSED] 0x9A60 (TIGERLAKE)
[08:16:31] [PASSED] 0x9A68 (TIGERLAKE)
[08:16:31] [PASSED] 0x9A70 (TIGERLAKE)
[08:16:31] [PASSED] 0x9A40 (TIGERLAKE)
[08:16:31] [PASSED] 0x9A49 (TIGERLAKE)
[08:16:31] [PASSED] 0x9A59 (TIGERLAKE)
[08:16:31] [PASSED] 0x9A78 (TIGERLAKE)
[08:16:31] [PASSED] 0x9AC0 (TIGERLAKE)
[08:16:31] [PASSED] 0x9AC9 (TIGERLAKE)
[08:16:31] [PASSED] 0x9AD9 (TIGERLAKE)
[08:16:31] [PASSED] 0x9AF8 (TIGERLAKE)
[08:16:31] [PASSED] 0x4C80 (ROCKETLAKE)
[08:16:31] [PASSED] 0x4C8A (ROCKETLAKE)
[08:16:31] [PASSED] 0x4C8B (ROCKETLAKE)
[08:16:31] [PASSED] 0x4C8C (ROCKETLAKE)
[08:16:31] [PASSED] 0x4C90 (ROCKETLAKE)
[08:16:31] [PASSED] 0x4C9A (ROCKETLAKE)
[08:16:31] [PASSED] 0x4680 (ALDERLAKE_S)
[08:16:31] [PASSED] 0x4682 (ALDERLAKE_S)
[08:16:31] [PASSED] 0x4688 (ALDERLAKE_S)
[08:16:31] [PASSED] 0x468A (ALDERLAKE_S)
[08:16:31] [PASSED] 0x468B (ALDERLAKE_S)
[08:16:31] [PASSED] 0x4690 (ALDERLAKE_S)
[08:16:31] [PASSED] 0x4692 (ALDERLAKE_S)
[08:16:31] [PASSED] 0x4693 (ALDERLAKE_S)
[08:16:31] [PASSED] 0x46A0 (ALDERLAKE_P)
[08:16:31] [PASSED] 0x46A1 (ALDERLAKE_P)
[08:16:31] [PASSED] 0x46A2 (ALDERLAKE_P)
[08:16:31] [PASSED] 0x46A3 (ALDERLAKE_P)
[08:16:31] [PASSED] 0x46A6 (ALDERLAKE_P)
[08:16:31] [PASSED] 0x46A8 (ALDERLAKE_P)
[08:16:31] [PASSED] 0x46AA (ALDERLAKE_P)
[08:16:31] [PASSED] 0x462A (ALDERLAKE_P)
[08:16:31] [PASSED] 0x4626 (ALDERLAKE_P)
[08:16:31] [PASSED] 0x4628 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[08:16:31] [PASSED] 0x46B0 (ALDERLAKE_P)
[08:16:31] [PASSED] 0x46B1 (ALDERLAKE_P)
[08:16:31] [PASSED] 0x46B2 (ALDERLAKE_P)
[08:16:31] [PASSED] 0x46B3 (ALDERLAKE_P)
[08:16:31] [PASSED] 0x46C0 (ALDERLAKE_P)
[08:16:31] [PASSED] 0x46C1 (ALDERLAKE_P)
[08:16:31] [PASSED] 0x46C2 (ALDERLAKE_P)
[08:16:31] [PASSED] 0x46C3 (ALDERLAKE_P)
[08:16:31] [PASSED] 0x46D0 (ALDERLAKE_N)
[08:16:31] [PASSED] 0x46D1 (ALDERLAKE_N)
[08:16:31] [PASSED] 0x46D2 (ALDERLAKE_N)
[08:16:31] [PASSED] 0x46D3 (ALDERLAKE_N)
[08:16:31] [PASSED] 0x46D4 (ALDERLAKE_N)
[08:16:31] [PASSED] 0xA721 (ALDERLAKE_P)
[08:16:31] [PASSED] 0xA7A1 (ALDERLAKE_P)
[08:16:31] [PASSED] 0xA7A9 (ALDERLAKE_P)
[08:16:31] [PASSED] 0xA7AC (ALDERLAKE_P)
[08:16:31] [PASSED] 0xA7AD (ALDERLAKE_P)
[08:16:31] [PASSED] 0xA720 (ALDERLAKE_P)
[08:16:31] [PASSED] 0xA7A0 (ALDERLAKE_P)
[08:16:31] [PASSED] 0xA7A8 (ALDERLAKE_P)
[08:16:31] [PASSED] 0xA7AA (ALDERLAKE_P)
[08:16:31] [PASSED] 0xA7AB (ALDERLAKE_P)
[08:16:31] [PASSED] 0xA780 (ALDERLAKE_S)
[08:16:31] [PASSED] 0xA781 (ALDERLAKE_S)
[08:16:31] [PASSED] 0xA782 (ALDERLAKE_S)
[08:16:31] [PASSED] 0xA783 (ALDERLAKE_S)
[08:16:31] [PASSED] 0xA788 (ALDERLAKE_S)
[08:16:31] [PASSED] 0xA789 (ALDERLAKE_S)
[08:16:31] [PASSED] 0xA78A (ALDERLAKE_S)
[08:16:31] [PASSED] 0xA78B (ALDERLAKE_S)
[08:16:31] [PASSED] 0x4905 (DG1)
[08:16:31] [PASSED] 0x4906 (DG1)
[08:16:31] [PASSED] 0x4907 (DG1)
[08:16:31] [PASSED] 0x4908 (DG1)
[08:16:31] [PASSED] 0x4909 (DG1)
[08:16:31] [PASSED] 0x56C0 (DG2)
[08:16:31] [PASSED] 0x56C2 (DG2)
[08:16:31] [PASSED] 0x56C1 (DG2)
[08:16:31] [PASSED] 0x7D51 (METEORLAKE)
[08:16:31] [PASSED] 0x7DD1 (METEORLAKE)
[08:16:31] [PASSED] 0x7D41 (METEORLAKE)
[08:16:31] [PASSED] 0x7D67 (METEORLAKE)
[08:16:31] [PASSED] 0xB640 (METEORLAKE)
[08:16:31] [PASSED] 0x56A0 (DG2)
[08:16:31] [PASSED] 0x56A1 (DG2)
[08:16:31] [PASSED] 0x56A2 (DG2)
[08:16:31] [PASSED] 0x56BE (DG2)
[08:16:31] [PASSED] 0x56BF (DG2)
[08:16:31] [PASSED] 0x5690 (DG2)
[08:16:31] [PASSED] 0x5691 (DG2)
[08:16:31] [PASSED] 0x5692 (DG2)
[08:16:31] [PASSED] 0x56A5 (DG2)
[08:16:31] [PASSED] 0x56A6 (DG2)
[08:16:31] [PASSED] 0x56B0 (DG2)
[08:16:31] [PASSED] 0x56B1 (DG2)
[08:16:31] [PASSED] 0x56BA (DG2)
[08:16:31] [PASSED] 0x56BB (DG2)
[08:16:31] [PASSED] 0x56BC (DG2)
[08:16:31] [PASSED] 0x56BD (DG2)
[08:16:31] [PASSED] 0x5693 (DG2)
[08:16:31] [PASSED] 0x5694 (DG2)
[08:16:31] [PASSED] 0x5695 (DG2)
[08:16:31] [PASSED] 0x56A3 (DG2)
[08:16:31] [PASSED] 0x56A4 (DG2)
[08:16:31] [PASSED] 0x56B2 (DG2)
[08:16:31] [PASSED] 0x56B3 (DG2)
[08:16:31] [PASSED] 0x5696 (DG2)
[08:16:31] [PASSED] 0x5697 (DG2)
[08:16:31] [PASSED] 0xB69 (PVC)
[08:16:31] [PASSED] 0xB6E (PVC)
[08:16:31] [PASSED] 0xBD4 (PVC)
[08:16:31] [PASSED] 0xBD5 (PVC)
[08:16:31] [PASSED] 0xBD6 (PVC)
[08:16:31] [PASSED] 0xBD7 (PVC)
[08:16:31] [PASSED] 0xBD8 (PVC)
[08:16:31] [PASSED] 0xBD9 (PVC)
[08:16:31] [PASSED] 0xBDA (PVC)
[08:16:31] [PASSED] 0xBDB (PVC)
[08:16:31] [PASSED] 0xBE0 (PVC)
[08:16:31] [PASSED] 0xBE1 (PVC)
[08:16:31] [PASSED] 0xBE5 (PVC)
[08:16:31] [PASSED] 0x7D40 (METEORLAKE)
[08:16:31] [PASSED] 0x7D45 (METEORLAKE)
[08:16:31] [PASSED] 0x7D55 (METEORLAKE)
[08:16:31] [PASSED] 0x7D60 (METEORLAKE)
[08:16:31] [PASSED] 0x7DD5 (METEORLAKE)
[08:16:31] [PASSED] 0x6420 (LUNARLAKE)
[08:16:31] [PASSED] 0x64A0 (LUNARLAKE)
[08:16:31] [PASSED] 0x64B0 (LUNARLAKE)
[08:16:31] [PASSED] 0xE202 (BATTLEMAGE)
[08:16:31] [PASSED] 0xE209 (BATTLEMAGE)
[08:16:31] [PASSED] 0xE20B (BATTLEMAGE)
[08:16:31] [PASSED] 0xE20C (BATTLEMAGE)
[08:16:31] [PASSED] 0xE20D (BATTLEMAGE)
[08:16:31] [PASSED] 0xE210 (BATTLEMAGE)
[08:16:31] [PASSED] 0xE211 (BATTLEMAGE)
[08:16:31] [PASSED] 0xE212 (BATTLEMAGE)
[08:16:31] [PASSED] 0xE216 (BATTLEMAGE)
[08:16:31] [PASSED] 0xE220 (BATTLEMAGE)
[08:16:31] [PASSED] 0xE221 (BATTLEMAGE)
[08:16:31] [PASSED] 0xE222 (BATTLEMAGE)
[08:16:31] [PASSED] 0xE223 (BATTLEMAGE)
[08:16:31] [PASSED] 0xB080 (PANTHERLAKE)
[08:16:31] [PASSED] 0xB081 (PANTHERLAKE)
[08:16:31] [PASSED] 0xB082 (PANTHERLAKE)
[08:16:31] [PASSED] 0xB083 (PANTHERLAKE)
[08:16:31] [PASSED] 0xB084 (PANTHERLAKE)
[08:16:31] [PASSED] 0xB085 (PANTHERLAKE)
[08:16:31] [PASSED] 0xB086 (PANTHERLAKE)
[08:16:31] [PASSED] 0xB087 (PANTHERLAKE)
[08:16:31] [PASSED] 0xB08F (PANTHERLAKE)
[08:16:31] [PASSED] 0xB090 (PANTHERLAKE)
[08:16:31] [PASSED] 0xB0A0 (PANTHERLAKE)
[08:16:31] [PASSED] 0xB0B0 (PANTHERLAKE)
[08:16:31] [PASSED] 0xFD80 (PANTHERLAKE)
[08:16:31] [PASSED] 0xFD81 (PANTHERLAKE)
[08:16:31] [PASSED] 0xD740 (NOVALAKE_S)
[08:16:31] [PASSED] 0xD741 (NOVALAKE_S)
[08:16:31] [PASSED] 0xD742 (NOVALAKE_S)
[08:16:31] [PASSED] 0xD743 (NOVALAKE_S)
[08:16:31] [PASSED] 0xD744 (NOVALAKE_S)
[08:16:31] [PASSED] 0xD745 (NOVALAKE_S)
[08:16:31] [PASSED] 0x674C (CRESCENTISLAND)
[08:16:31] =============== [PASSED] check_platform_desc ===============
[08:16:31] ===================== [PASSED] xe_pci ======================
[08:16:31] =================== xe_rtp (2 subtests) ====================
[08:16:31] =============== xe_rtp_process_to_sr_tests  ================
[08:16:31] [PASSED] coalesce-same-reg
[08:16:31] [PASSED] no-match-no-add
[08:16:31] [PASSED] match-or
[08:16:31] [PASSED] match-or-xfail
[08:16:31] [PASSED] no-match-no-add-multiple-rules
[08:16:31] [PASSED] two-regs-two-entries
[08:16:31] [PASSED] clr-one-set-other
[08:16:31] [PASSED] set-field
[08:16:31] [PASSED] conflict-duplicate
[08:16:31] [PASSED] conflict-not-disjoint
[08:16:31] [PASSED] conflict-reg-type
[08:16:31] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[08:16:31] ================== xe_rtp_process_tests  ===================
[08:16:31] [PASSED] active1
[08:16:31] [PASSED] active2
[08:16:31] [PASSED] active-inactive
[08:16:31] [PASSED] inactive-active
[08:16:31] [PASSED] inactive-1st_or_active-inactive
[08:16:31] [PASSED] inactive-2nd_or_active-inactive
[08:16:31] [PASSED] inactive-last_or_active-inactive
[08:16:31] [PASSED] inactive-no_or_active-inactive
[08:16:31] ============== [PASSED] xe_rtp_process_tests ===============
[08:16:31] ===================== [PASSED] xe_rtp ======================
[08:16:31] ==================== xe_wa (1 subtest) =====================
[08:16:31] ======================== xe_wa_gt  =========================
[08:16:31] [PASSED] TIGERLAKE B0
[08:16:31] [PASSED] DG1 A0
[08:16:31] [PASSED] DG1 B0
[08:16:31] [PASSED] ALDERLAKE_S A0
[08:16:31] [PASSED] ALDERLAKE_S B0
[08:16:31] [PASSED] ALDERLAKE_S C0
[08:16:31] [PASSED] ALDERLAKE_S D0
[08:16:31] [PASSED] ALDERLAKE_P A0
[08:16:31] [PASSED] ALDERLAKE_P B0
[08:16:31] [PASSED] ALDERLAKE_P C0
[08:16:31] [PASSED] ALDERLAKE_S RPLS D0
[08:16:31] [PASSED] ALDERLAKE_P RPLU E0
[08:16:31] [PASSED] DG2 G10 C0
[08:16:31] [PASSED] DG2 G11 B1
[08:16:31] [PASSED] DG2 G12 A1
[08:16:31] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[08:16:31] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[08:16:31] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[08:16:31] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[08:16:31] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[08:16:31] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[08:16:31] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[08:16:31] ==================== [PASSED] xe_wa_gt =====================
[08:16:31] ====================== [PASSED] xe_wa ======================
[08:16:31] ============================================================
[08:16:31] Testing complete. Ran 512 tests: passed: 494, skipped: 18
[08:16:31] Elapsed time: 43.824s total, 4.354s configuring, 38.952s building, 0.485s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[08:16:32] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:16:33] 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=25
[08:17:04] Starting KUnit Kernel (1/1)...
[08:17:04] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:17:04] ============ drm_test_pick_cmdline (2 subtests) ============
[08:17:04] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[08:17:04] =============== drm_test_pick_cmdline_named  ===============
[08:17:04] [PASSED] NTSC
[08:17:04] [PASSED] NTSC-J
[08:17:04] [PASSED] PAL
[08:17:04] [PASSED] PAL-M
[08:17:04] =========== [PASSED] drm_test_pick_cmdline_named ===========
[08:17:04] ============== [PASSED] drm_test_pick_cmdline ==============
[08:17:04] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[08:17:04] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[08:17:04] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[08:17:04] =========== drm_validate_clone_mode (2 subtests) ===========
[08:17:04] ============== drm_test_check_in_clone_mode  ===============
[08:17:04] [PASSED] in_clone_mode
[08:17:04] [PASSED] not_in_clone_mode
[08:17:04] ========== [PASSED] drm_test_check_in_clone_mode ===========
[08:17:04] =============== drm_test_check_valid_clones  ===============
[08:17:04] [PASSED] not_in_clone_mode
[08:17:04] [PASSED] valid_clone
[08:17:04] [PASSED] invalid_clone
[08:17:04] =========== [PASSED] drm_test_check_valid_clones ===========
[08:17:04] ============= [PASSED] drm_validate_clone_mode =============
[08:17:04] ============= drm_validate_modeset (1 subtest) =============
[08:17:04] [PASSED] drm_test_check_connector_changed_modeset
[08:17:04] ============== [PASSED] drm_validate_modeset ===============
[08:17:04] ====== drm_test_bridge_get_current_state (2 subtests) ======
[08:17:04] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[08:17:04] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[08:17:04] ======== [PASSED] drm_test_bridge_get_current_state ========
[08:17:04] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[08:17:04] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[08:17:04] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[08:17:04] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[08:17:04] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[08:17:04] ============== drm_bridge_alloc (2 subtests) ===============
[08:17:04] [PASSED] drm_test_drm_bridge_alloc_basic
[08:17:04] [PASSED] drm_test_drm_bridge_alloc_get_put
[08:17:04] ================ [PASSED] drm_bridge_alloc =================
[08:17:04] ============= drm_cmdline_parser (40 subtests) =============
[08:17:04] [PASSED] drm_test_cmdline_force_d_only
[08:17:04] [PASSED] drm_test_cmdline_force_D_only_dvi
[08:17:04] [PASSED] drm_test_cmdline_force_D_only_hdmi
[08:17:04] [PASSED] drm_test_cmdline_force_D_only_not_digital
[08:17:04] [PASSED] drm_test_cmdline_force_e_only
[08:17:04] [PASSED] drm_test_cmdline_res
[08:17:04] [PASSED] drm_test_cmdline_res_vesa
[08:17:04] [PASSED] drm_test_cmdline_res_vesa_rblank
[08:17:04] [PASSED] drm_test_cmdline_res_rblank
[08:17:04] [PASSED] drm_test_cmdline_res_bpp
[08:17:04] [PASSED] drm_test_cmdline_res_refresh
[08:17:04] [PASSED] drm_test_cmdline_res_bpp_refresh
[08:17:04] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[08:17:04] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[08:17:04] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[08:17:04] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[08:17:04] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[08:17:04] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[08:17:04] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[08:17:04] [PASSED] drm_test_cmdline_res_margins_force_on
[08:17:04] [PASSED] drm_test_cmdline_res_vesa_margins
[08:17:04] [PASSED] drm_test_cmdline_name
[08:17:04] [PASSED] drm_test_cmdline_name_bpp
[08:17:04] [PASSED] drm_test_cmdline_name_option
[08:17:04] [PASSED] drm_test_cmdline_name_bpp_option
[08:17:04] [PASSED] drm_test_cmdline_rotate_0
[08:17:04] [PASSED] drm_test_cmdline_rotate_90
[08:17:04] [PASSED] drm_test_cmdline_rotate_180
[08:17:04] [PASSED] drm_test_cmdline_rotate_270
[08:17:04] [PASSED] drm_test_cmdline_hmirror
[08:17:04] [PASSED] drm_test_cmdline_vmirror
[08:17:04] [PASSED] drm_test_cmdline_margin_options
[08:17:04] [PASSED] drm_test_cmdline_multiple_options
[08:17:04] [PASSED] drm_test_cmdline_bpp_extra_and_option
[08:17:04] [PASSED] drm_test_cmdline_extra_and_option
[08:17:04] [PASSED] drm_test_cmdline_freestanding_options
[08:17:04] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[08:17:04] [PASSED] drm_test_cmdline_panel_orientation
[08:17:04] ================ drm_test_cmdline_invalid  =================
[08:17:04] [PASSED] margin_only
[08:17:04] [PASSED] interlace_only
[08:17:04] [PASSED] res_missing_x
[08:17:04] [PASSED] res_missing_y
[08:17:04] [PASSED] res_bad_y
[08:17:04] [PASSED] res_missing_y_bpp
[08:17:04] [PASSED] res_bad_bpp
[08:17:04] [PASSED] res_bad_refresh
[08:17:04] [PASSED] res_bpp_refresh_force_on_off
[08:17:04] [PASSED] res_invalid_mode
[08:17:04] [PASSED] res_bpp_wrong_place_mode
[08:17:04] [PASSED] name_bpp_refresh
[08:17:04] [PASSED] name_refresh
[08:17:04] [PASSED] name_refresh_wrong_mode
[08:17:04] [PASSED] name_refresh_invalid_mode
[08:17:04] [PASSED] rotate_multiple
[08:17:04] [PASSED] rotate_invalid_val
[08:17:04] [PASSED] rotate_truncated
[08:17:04] [PASSED] invalid_option
[08:17:04] [PASSED] invalid_tv_option
[08:17:04] [PASSED] truncated_tv_option
[08:17:04] ============ [PASSED] drm_test_cmdline_invalid =============
[08:17:04] =============== drm_test_cmdline_tv_options  ===============
[08:17:04] [PASSED] NTSC
[08:17:04] [PASSED] NTSC_443
[08:17:04] [PASSED] NTSC_J
[08:17:04] [PASSED] PAL
[08:17:04] [PASSED] PAL_M
[08:17:04] [PASSED] PAL_N
[08:17:04] [PASSED] SECAM
[08:17:04] [PASSED] MONO_525
[08:17:04] [PASSED] MONO_625
[08:17:04] =========== [PASSED] drm_test_cmdline_tv_options ===========
[08:17:04] =============== [PASSED] drm_cmdline_parser ================
[08:17:04] ========== drmm_connector_hdmi_init (20 subtests) ==========
[08:17:04] [PASSED] drm_test_connector_hdmi_init_valid
[08:17:04] [PASSED] drm_test_connector_hdmi_init_bpc_8
[08:17:04] [PASSED] drm_test_connector_hdmi_init_bpc_10
[08:17:04] [PASSED] drm_test_connector_hdmi_init_bpc_12
[08:17:04] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[08:17:04] [PASSED] drm_test_connector_hdmi_init_bpc_null
[08:17:04] [PASSED] drm_test_connector_hdmi_init_formats_empty
[08:17:04] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[08:17:04] === drm_test_connector_hdmi_init_formats_yuv420_allowed  ===
[08:17:04] [PASSED] supported_formats=0x9 yuv420_allowed=1
[08:17:04] [PASSED] supported_formats=0x9 yuv420_allowed=0
[08:17:04] [PASSED] supported_formats=0x3 yuv420_allowed=1
[08:17:04] [PASSED] supported_formats=0x3 yuv420_allowed=0
[08:17:04] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[08:17:04] [PASSED] drm_test_connector_hdmi_init_null_ddc
[08:17:04] [PASSED] drm_test_connector_hdmi_init_null_product
[08:17:04] [PASSED] drm_test_connector_hdmi_init_null_vendor
[08:17:04] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[08:17:04] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[08:17:04] [PASSED] drm_test_connector_hdmi_init_product_valid
[08:17:04] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[08:17:04] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[08:17:04] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[08:17:04] ========= drm_test_connector_hdmi_init_type_valid  =========
[08:17:04] [PASSED] HDMI-A
[08:17:04] [PASSED] HDMI-B
[08:17:04] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[08:17:04] ======== drm_test_connector_hdmi_init_type_invalid  ========
[08:17:04] [PASSED] Unknown
[08:17:04] [PASSED] VGA
[08:17:04] [PASSED] DVI-I
[08:17:04] [PASSED] DVI-D
[08:17:04] [PASSED] DVI-A
[08:17:04] [PASSED] Composite
[08:17:04] [PASSED] SVIDEO
[08:17:04] [PASSED] LVDS
[08:17:04] [PASSED] Component
[08:17:04] [PASSED] DIN
[08:17:04] [PASSED] DP
[08:17:04] [PASSED] TV
[08:17:04] [PASSED] eDP
[08:17:04] [PASSED] Virtual
[08:17:04] [PASSED] DSI
[08:17:04] [PASSED] DPI
[08:17:04] [PASSED] Writeback
[08:17:04] [PASSED] SPI
[08:17:04] [PASSED] USB
[08:17:04] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[08:17:04] ============ [PASSED] drmm_connector_hdmi_init =============
[08:17:04] ============= drmm_connector_init (3 subtests) =============
[08:17:04] [PASSED] drm_test_drmm_connector_init
[08:17:04] [PASSED] drm_test_drmm_connector_init_null_ddc
[08:17:04] ========= drm_test_drmm_connector_init_type_valid  =========
[08:17:04] [PASSED] Unknown
[08:17:04] [PASSED] VGA
[08:17:04] [PASSED] DVI-I
[08:17:04] [PASSED] DVI-D
[08:17:04] [PASSED] DVI-A
[08:17:04] [PASSED] Composite
[08:17:04] [PASSED] SVIDEO
[08:17:04] [PASSED] LVDS
[08:17:04] [PASSED] Component
[08:17:04] [PASSED] DIN
[08:17:04] [PASSED] DP
[08:17:04] [PASSED] HDMI-A
[08:17:04] [PASSED] HDMI-B
[08:17:04] [PASSED] TV
[08:17:04] [PASSED] eDP
[08:17:04] [PASSED] Virtual
[08:17:04] [PASSED] DSI
[08:17:04] [PASSED] DPI
[08:17:04] [PASSED] Writeback
[08:17:04] [PASSED] SPI
[08:17:04] [PASSED] USB
[08:17:04] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[08:17:04] =============== [PASSED] drmm_connector_init ===============
[08:17:04] ========= drm_connector_dynamic_init (6 subtests) ==========
[08:17:04] [PASSED] drm_test_drm_connector_dynamic_init
[08:17:04] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[08:17:04] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[08:17:04] [PASSED] drm_test_drm_connector_dynamic_init_properties
[08:17:04] ===== drm_test_drm_connector_dynamic_init_type_valid  ======
[08:17:04] [PASSED] Unknown
[08:17:04] [PASSED] VGA
[08:17:04] [PASSED] DVI-I
[08:17:04] [PASSED] DVI-D
[08:17:04] [PASSED] DVI-A
[08:17:04] [PASSED] Composite
[08:17:04] [PASSED] SVIDEO
[08:17:04] [PASSED] LVDS
[08:17:04] [PASSED] Component
[08:17:04] [PASSED] DIN
[08:17:04] [PASSED] DP
[08:17:04] [PASSED] HDMI-A
[08:17:04] [PASSED] HDMI-B
[08:17:04] [PASSED] TV
[08:17:04] [PASSED] eDP
[08:17:04] [PASSED] Virtual
[08:17:04] [PASSED] DSI
[08:17:04] [PASSED] DPI
[08:17:04] [PASSED] Writeback
[08:17:04] [PASSED] SPI
[08:17:04] [PASSED] USB
[08:17:04] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[08:17:04] ======== drm_test_drm_connector_dynamic_init_name  =========
[08:17:04] [PASSED] Unknown
[08:17:04] [PASSED] VGA
[08:17:04] [PASSED] DVI-I
[08:17:04] [PASSED] DVI-D
[08:17:04] [PASSED] DVI-A
[08:17:04] [PASSED] Composite
[08:17:04] [PASSED] SVIDEO
[08:17:04] [PASSED] LVDS
[08:17:04] [PASSED] Component
[08:17:04] [PASSED] DIN
[08:17:04] [PASSED] DP
[08:17:04] [PASSED] HDMI-A
[08:17:04] [PASSED] HDMI-B
[08:17:04] [PASSED] TV
[08:17:04] [PASSED] eDP
[08:17:04] [PASSED] Virtual
[08:17:04] [PASSED] DSI
[08:17:04] [PASSED] DPI
[08:17:04] [PASSED] Writeback
[08:17:04] [PASSED] SPI
[08:17:04] [PASSED] USB
[08:17:04] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[08:17:04] =========== [PASSED] drm_connector_dynamic_init ============
[08:17:04] ==== drm_connector_dynamic_register_early (4 subtests) =====
[08:17:04] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[08:17:04] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[08:17:04] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[08:17:04] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[08:17:04] ====== [PASSED] drm_connector_dynamic_register_early =======
[08:17:04] ======= drm_connector_dynamic_register (7 subtests) ========
[08:17:04] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[08:17:04] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[08:17:04] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[08:17:04] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[08:17:04] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[08:17:04] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[08:17:04] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[08:17:04] ========= [PASSED] drm_connector_dynamic_register ==========
[08:17:04] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[08:17:04] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[08:17:04] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[08:17:04] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[08:17:04] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[08:17:04] ========== drm_test_get_tv_mode_from_name_valid  ===========
[08:17:04] [PASSED] NTSC
[08:17:04] [PASSED] NTSC-443
[08:17:04] [PASSED] NTSC-J
[08:17:04] [PASSED] PAL
[08:17:04] [PASSED] PAL-M
[08:17:04] [PASSED] PAL-N
[08:17:04] [PASSED] SECAM
[08:17:04] [PASSED] Mono
[08:17:04] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[08:17:04] [PASSED] drm_test_get_tv_mode_from_name_truncated
[08:17:04] ============ [PASSED] drm_get_tv_mode_from_name ============
[08:17:04] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[08:17:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[08:17:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[08:17:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[08:17:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[08:17:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[08:17:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[08:17:04] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid  =
[08:17:04] [PASSED] VIC 96
[08:17:04] [PASSED] VIC 97
[08:17:04] [PASSED] VIC 101
[08:17:04] [PASSED] VIC 102
[08:17:04] [PASSED] VIC 106
[08:17:04] [PASSED] VIC 107
[08:17:04] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[08:17:04] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[08:17:04] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[08:17:04] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[08:17:04] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[08:17:04] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[08:17:04] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[08:17:04] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[08:17:04] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name  ====
[08:17:04] [PASSED] Automatic
[08:17:04] [PASSED] Full
[08:17:04] [PASSED] Limited 16:235
[08:17:04] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[08:17:04] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[08:17:04] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[08:17:04] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[08:17:04] === drm_test_drm_hdmi_connector_get_output_format_name  ====
[08:17:04] [PASSED] RGB
[08:17:04] [PASSED] YUV 4:2:0
[08:17:04] [PASSED] YUV 4:2:2
[08:17:04] [PASSED] YUV 4:4:4
[08:17:04] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[08:17:04] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[08:17:04] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[08:17:04] ============= drm_damage_helper (21 subtests) ==============
[08:17:04] [PASSED] drm_test_damage_iter_no_damage
[08:17:04] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[08:17:04] [PASSED] drm_test_damage_iter_no_damage_src_moved
[08:17:04] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[08:17:04] [PASSED] drm_test_damage_iter_no_damage_not_visible
[08:17:04] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[08:17:04] [PASSED] drm_test_damage_iter_no_damage_no_fb
[08:17:04] [PASSED] drm_test_damage_iter_simple_damage
[08:17:04] [PASSED] drm_test_damage_iter_single_damage
[08:17:04] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[08:17:04] [PASSED] drm_test_damage_iter_single_damage_outside_src
[08:17:04] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[08:17:04] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[08:17:04] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[08:17:04] [PASSED] drm_test_damage_iter_single_damage_src_moved
[08:17:04] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[08:17:04] [PASSED] drm_test_damage_iter_damage
[08:17:04] [PASSED] drm_test_damage_iter_damage_one_intersect
[08:17:04] [PASSED] drm_test_damage_iter_damage_one_outside
[08:17:04] [PASSED] drm_test_damage_iter_damage_src_moved
[08:17:04] [PASSED] drm_test_damage_iter_damage_not_visible
[08:17:04] ================ [PASSED] drm_damage_helper ================
[08:17:04] ============== drm_dp_mst_helper (3 subtests) ==============
[08:17:04] ============== drm_test_dp_mst_calc_pbn_mode  ==============
[08:17:04] [PASSED] Clock 154000 BPP 30 DSC disabled
[08:17:04] [PASSED] Clock 234000 BPP 30 DSC disabled
[08:17:04] [PASSED] Clock 297000 BPP 24 DSC disabled
[08:17:04] [PASSED] Clock 332880 BPP 24 DSC enabled
[08:17:04] [PASSED] Clock 324540 BPP 24 DSC enabled
[08:17:04] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[08:17:04] ============== drm_test_dp_mst_calc_pbn_div  ===============
[08:17:04] [PASSED] Link rate 2000000 lane count 4
[08:17:04] [PASSED] Link rate 2000000 lane count 2
[08:17:04] [PASSED] Link rate 2000000 lane count 1
[08:17:04] [PASSED] Link rate 1350000 lane count 4
[08:17:04] [PASSED] Link rate 1350000 lane count 2
[08:17:04] [PASSED] Link rate 1350000 lane count 1
[08:17:04] [PASSED] Link rate 1000000 lane count 4
[08:17:04] [PASSED] Link rate 1000000 lane count 2
[08:17:04] [PASSED] Link rate 1000000 lane count 1
[08:17:04] [PASSED] Link rate 810000 lane count 4
[08:17:04] [PASSED] Link rate 810000 lane count 2
[08:17:04] [PASSED] Link rate 810000 lane count 1
[08:17:04] [PASSED] Link rate 540000 lane count 4
[08:17:04] [PASSED] Link rate 540000 lane count 2
[08:17:04] [PASSED] Link rate 540000 lane count 1
[08:17:04] [PASSED] Link rate 270000 lane count 4
[08:17:04] [PASSED] Link rate 270000 lane count 2
[08:17:04] [PASSED] Link rate 270000 lane count 1
[08:17:04] [PASSED] Link rate 162000 lane count 4
[08:17:04] [PASSED] Link rate 162000 lane count 2
[08:17:04] [PASSED] Link rate 162000 lane count 1
[08:17:04] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[08:17:04] ========= drm_test_dp_mst_sideband_msg_req_decode  =========
[08:17:04] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[08:17:04] [PASSED] DP_POWER_UP_PHY with port number
[08:17:04] [PASSED] DP_POWER_DOWN_PHY with port number
[08:17:04] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[08:17:04] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[08:17:04] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[08:17:04] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[08:17:04] [PASSED] DP_QUERY_PAYLOAD with port number
[08:17:04] [PASSED] DP_QUERY_PAYLOAD with VCPI
[08:17:04] [PASSED] DP_REMOTE_DPCD_READ with port number
[08:17:04] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[08:17:04] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[08:17:04] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[08:17:04] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[08:17:04] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[08:17:04] [PASSED] DP_REMOTE_I2C_READ with port number
[08:17:04] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[08:17:04] [PASSED] DP_REMOTE_I2C_READ with transactions array
[08:17:04] [PASSED] DP_REMOTE_I2C_WRITE with port number
[08:17:04] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[08:17:04] [PASSED] DP_REMOTE_I2C_WRITE with data array
[08:17:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[08:17:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[08:17:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[08:17:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[08:17:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[08:17:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[08:17:04] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[08:17:04] ================ [PASSED] drm_dp_mst_helper ================
[08:17:04] ================== drm_exec (7 subtests) ===================
[08:17:04] [PASSED] sanitycheck
[08:17:04] [PASSED] test_lock
[08:17:04] [PASSED] test_lock_unlock
[08:17:04] [PASSED] test_duplicates
[08:17:04] [PASSED] test_prepare
[08:17:04] [PASSED] test_prepare_array
[08:17:04] [PASSED] test_multiple_loops
[08:17:04] ==================== [PASSED] drm_exec =====================
[08:17:04] =========== drm_format_helper_test (17 subtests) ===========
[08:17:04] ============== drm_test_fb_xrgb8888_to_gray8  ==============
[08:17:04] [PASSED] single_pixel_source_buffer
[08:17:04] [PASSED] single_pixel_clip_rectangle
[08:17:04] [PASSED] well_known_colors
[08:17:04] [PASSED] destination_pitch
[08:17:04] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[08:17:04] ============= drm_test_fb_xrgb8888_to_rgb332  ==============
[08:17:04] [PASSED] single_pixel_source_buffer
[08:17:04] [PASSED] single_pixel_clip_rectangle
[08:17:04] [PASSED] well_known_colors
[08:17:04] [PASSED] destination_pitch
[08:17:04] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[08:17:04] ============= drm_test_fb_xrgb8888_to_rgb565  ==============
[08:17:04] [PASSED] single_pixel_source_buffer
[08:17:04] [PASSED] single_pixel_clip_rectangle
[08:17:04] [PASSED] well_known_colors
[08:17:04] [PASSED] destination_pitch
[08:17:04] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[08:17:04] ============ drm_test_fb_xrgb8888_to_xrgb1555  =============
[08:17:04] [PASSED] single_pixel_source_buffer
[08:17:04] [PASSED] single_pixel_clip_rectangle
[08:17:04] [PASSED] well_known_colors
[08:17:04] [PASSED] destination_pitch
[08:17:04] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[08:17:04] ============ drm_test_fb_xrgb8888_to_argb1555  =============
[08:17:04] [PASSED] single_pixel_source_buffer
[08:17:04] [PASSED] single_pixel_clip_rectangle
[08:17:04] [PASSED] well_known_colors
[08:17:04] [PASSED] destination_pitch
[08:17:04] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[08:17:04] ============ drm_test_fb_xrgb8888_to_rgba5551  =============
[08:17:04] [PASSED] single_pixel_source_buffer
[08:17:04] [PASSED] single_pixel_clip_rectangle
[08:17:04] [PASSED] well_known_colors
[08:17:04] [PASSED] destination_pitch
[08:17:04] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[08:17:04] ============= drm_test_fb_xrgb8888_to_rgb888  ==============
[08:17:04] [PASSED] single_pixel_source_buffer
[08:17:04] [PASSED] single_pixel_clip_rectangle
[08:17:04] [PASSED] well_known_colors
[08:17:04] [PASSED] destination_pitch
[08:17:04] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[08:17:04] ============= drm_test_fb_xrgb8888_to_bgr888  ==============
[08:17:04] [PASSED] single_pixel_source_buffer
[08:17:04] [PASSED] single_pixel_clip_rectangle
[08:17:04] [PASSED] well_known_colors
[08:17:04] [PASSED] destination_pitch
[08:17:04] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[08:17:04] ============ drm_test_fb_xrgb8888_to_argb8888  =============
[08:17:04] [PASSED] single_pixel_source_buffer
[08:17:04] [PASSED] single_pixel_clip_rectangle
[08:17:04] [PASSED] well_known_colors
[08:17:04] [PASSED] destination_pitch
[08:17:04] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[08:17:04] =========== drm_test_fb_xrgb8888_to_xrgb2101010  ===========
[08:17:04] [PASSED] single_pixel_source_buffer
[08:17:04] [PASSED] single_pixel_clip_rectangle
[08:17:04] [PASSED] well_known_colors
[08:17:04] [PASSED] destination_pitch
[08:17:04] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[08:17:04] =========== drm_test_fb_xrgb8888_to_argb2101010  ===========
[08:17:04] [PASSED] single_pixel_source_buffer
[08:17:04] [PASSED] single_pixel_clip_rectangle
[08:17:04] [PASSED] well_known_colors
[08:17:04] [PASSED] destination_pitch
[08:17:04] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[08:17:04] ============== drm_test_fb_xrgb8888_to_mono  ===============
[08:17:04] [PASSED] single_pixel_source_buffer
[08:17:04] [PASSED] single_pixel_clip_rectangle
[08:17:04] [PASSED] well_known_colors
[08:17:04] [PASSED] destination_pitch
[08:17:04] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[08:17:04] ==================== drm_test_fb_swab  =====================
[08:17:04] [PASSED] single_pixel_source_buffer
[08:17:04] [PASSED] single_pixel_clip_rectangle
[08:17:04] [PASSED] well_known_colors
[08:17:04] [PASSED] destination_pitch
[08:17:04] ================ [PASSED] drm_test_fb_swab =================
[08:17:04] ============ drm_test_fb_xrgb8888_to_xbgr8888  =============
[08:17:04] [PASSED] single_pixel_source_buffer
[08:17:04] [PASSED] single_pixel_clip_rectangle
[08:17:04] [PASSED] well_known_colors
[08:17:04] [PASSED] destination_pitch
[08:17:04] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[08:17:04] ============ drm_test_fb_xrgb8888_to_abgr8888  =============
[08:17:04] [PASSED] single_pixel_source_buffer
[08:17:04] [PASSED] single_pixel_clip_rectangle
[08:17:04] [PASSED] well_known_colors
[08:17:04] [PASSED] destination_pitch
[08:17:04] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[08:17:04] ================= drm_test_fb_clip_offset  =================
[08:17:04] [PASSED] pass through
[08:17:04] [PASSED] horizontal offset
[08:17:04] [PASSED] vertical offset
[08:17:04] [PASSED] horizontal and vertical offset
[08:17:04] [PASSED] horizontal offset (custom pitch)
[08:17:04] [PASSED] vertical offset (custom pitch)
[08:17:04] [PASSED] horizontal and vertical offset (custom pitch)
[08:17:04] ============= [PASSED] drm_test_fb_clip_offset =============
[08:17:04] =================== drm_test_fb_memcpy  ====================
[08:17:04] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[08:17:04] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[08:17:04] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[08:17:04] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[08:17:04] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[08:17:04] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[08:17:04] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[08:17:04] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[08:17:04] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[08:17:04] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[08:17:04] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[08:17:04] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[08:17:04] =============== [PASSED] drm_test_fb_memcpy ================
[08:17:04] ============= [PASSED] drm_format_helper_test ==============
[08:17:04] ================= drm_format (18 subtests) =================
[08:17:04] [PASSED] drm_test_format_block_width_invalid
[08:17:04] [PASSED] drm_test_format_block_width_one_plane
[08:17:04] [PASSED] drm_test_format_block_width_two_plane
[08:17:04] [PASSED] drm_test_format_block_width_three_plane
[08:17:04] [PASSED] drm_test_format_block_width_tiled
[08:17:04] [PASSED] drm_test_format_block_height_invalid
[08:17:04] [PASSED] drm_test_format_block_height_one_plane
[08:17:04] [PASSED] drm_test_format_block_height_two_plane
[08:17:04] [PASSED] drm_test_format_block_height_three_plane
[08:17:04] [PASSED] drm_test_format_block_height_tiled
[08:17:04] [PASSED] drm_test_format_min_pitch_invalid
[08:17:04] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[08:17:04] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[08:17:04] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[08:17:04] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[08:17:04] [PASSED] drm_test_format_min_pitch_two_plane
[08:17:04] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[08:17:04] [PASSED] drm_test_format_min_pitch_tiled
[08:17:04] =================== [PASSED] drm_format ====================
[08:17:04] ============== drm_framebuffer (10 subtests) ===============
[08:17:04] ========== drm_test_framebuffer_check_src_coords  ==========
[08:17:04] [PASSED] Success: source fits into fb
[08:17:04] [PASSED] Fail: overflowing fb with x-axis coordinate
[08:17:04] [PASSED] Fail: overflowing fb with y-axis coordinate
[08:17:04] [PASSED] Fail: overflowing fb with source width
[08:17:04] [PASSED] Fail: overflowing fb with source height
[08:17:04] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[08:17:04] [PASSED] drm_test_framebuffer_cleanup
[08:17:04] =============== drm_test_framebuffer_create  ===============
[08:17:04] [PASSED] ABGR8888 normal sizes
[08:17:04] [PASSED] ABGR8888 max sizes
[08:17:04] [PASSED] ABGR8888 pitch greater than min required
[08:17:04] [PASSED] ABGR8888 pitch less than min required
[08:17:04] [PASSED] ABGR8888 Invalid width
[08:17:04] [PASSED] ABGR8888 Invalid buffer handle
[08:17:04] [PASSED] No pixel format
[08:17:04] [PASSED] ABGR8888 Width 0
[08:17:04] [PASSED] ABGR8888 Height 0
[08:17:04] [PASSED] ABGR8888 Out of bound height * pitch combination
[08:17:04] [PASSED] ABGR8888 Large buffer offset
[08:17:04] [PASSED] ABGR8888 Buffer offset for inexistent plane
[08:17:04] [PASSED] ABGR8888 Invalid flag
[08:17:04] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[08:17:04] [PASSED] ABGR8888 Valid buffer modifier
[08:17:04] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[08:17:04] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[08:17:04] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[08:17:04] [PASSED] NV12 Normal sizes
[08:17:04] [PASSED] NV12 Max sizes
[08:17:04] [PASSED] NV12 Invalid pitch
[08:17:04] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[08:17:04] [PASSED] NV12 different  modifier per-plane
[08:17:04] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[08:17:04] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[08:17:04] [PASSED] NV12 Modifier for inexistent plane
[08:17:04] [PASSED] NV12 Handle for inexistent plane
[08:17:04] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[08:17:04] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[08:17:04] [PASSED] YVU420 Normal sizes
[08:17:04] [PASSED] YVU420 Max sizes
[08:17:04] [PASSED] YVU420 Invalid pitch
[08:17:04] [PASSED] YVU420 Different pitches
[08:17:04] [PASSED] YVU420 Different buffer offsets/pitches
[08:17:04] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[08:17:04] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[08:17:04] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[08:17:04] [PASSED] YVU420 Valid modifier
[08:17:04] [PASSED] YVU420 Different modifiers per plane
[08:17:04] [PASSED] YVU420 Modifier for inexistent plane
[08:17:04] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[08:17:04] [PASSED] X0L2 Normal sizes
[08:17:04] [PASSED] X0L2 Max sizes
[08:17:04] [PASSED] X0L2 Invalid pitch
[08:17:04] [PASSED] X0L2 Pitch greater than minimum required
[08:17:04] [PASSED] X0L2 Handle for inexistent plane
[08:17:04] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[08:17:04] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[08:17:04] [PASSED] X0L2 Valid modifier
[08:17:04] [PASSED] X0L2 Modifier for inexistent plane
[08:17:04] =========== [PASSED] drm_test_framebuffer_create ===========
[08:17:04] [PASSED] drm_test_framebuffer_free
[08:17:04] [PASSED] drm_test_framebuffer_init
[08:17:04] [PASSED] drm_test_framebuffer_init_bad_format
[08:17:04] [PASSED] drm_test_framebuffer_init_dev_mismatch
[08:17:04] [PASSED] drm_test_framebuffer_lookup
[08:17:04] [PASSED] drm_test_framebuffer_lookup_inexistent
[08:17:04] [PASSED] drm_test_framebuffer_modifiers_not_supported
[08:17:04] ================= [PASSED] drm_framebuffer =================
[08:17:04] ================ drm_gem_shmem (8 subtests) ================
[08:17:04] [PASSED] drm_gem_shmem_test_obj_create
[08:17:04] [PASSED] drm_gem_shmem_test_obj_create_private
[08:17:04] [PASSED] drm_gem_shmem_test_pin_pages
[08:17:04] [PASSED] drm_gem_shmem_test_vmap
[08:17:04] [PASSED] drm_gem_shmem_test_get_sg_table
[08:17:04] [PASSED] drm_gem_shmem_test_get_pages_sgt
[08:17:04] [PASSED] drm_gem_shmem_test_madvise
[08:17:04] [PASSED] drm_gem_shmem_test_purge
[08:17:04] ================== [PASSED] drm_gem_shmem ==================
[08:17:04] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[08:17:04] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[08:17:04] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[08:17:04] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[08:17:04] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[08:17:04] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[08:17:04] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[08:17:04] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420  =======
[08:17:04] [PASSED] Automatic
[08:17:04] [PASSED] Full
[08:17:04] [PASSED] Limited 16:235
[08:17:04] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[08:17:04] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[08:17:04] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[08:17:04] [PASSED] drm_test_check_disable_connector
[08:17:04] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[08:17:04] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[08:17:04] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[08:17:04] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[08:17:04] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[08:17:04] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[08:17:04] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[08:17:04] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[08:17:04] [PASSED] drm_test_check_output_bpc_dvi
[08:17:04] [PASSED] drm_test_check_output_bpc_format_vic_1
[08:17:04] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[08:17:04] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[08:17:04] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[08:17:04] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[08:17:04] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[08:17:04] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[08:17:04] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[08:17:04] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[08:17:04] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[08:17:04] [PASSED] drm_test_check_broadcast_rgb_value
[08:17:04] [PASSED] drm_test_check_bpc_8_value
[08:17:04] [PASSED] drm_test_check_bpc_10_value
[08:17:04] [PASSED] drm_test_check_bpc_12_value
[08:17:04] [PASSED] drm_test_check_format_value
[08:17:04] [PASSED] drm_test_check_tmds_char_value
[08:17:04] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[08:17:04] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[08:17:04] [PASSED] drm_test_check_mode_valid
[08:17:04] [PASSED] drm_test_check_mode_valid_reject
[08:17:04] [PASSED] drm_test_check_mode_valid_reject_rate
[08:17:04] [PASSED] drm_test_check_mode_valid_reject_max_clock
[08:17:04] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[08:17:04] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[08:17:04] [PASSED] drm_test_check_infoframes
[08:17:04] [PASSED] drm_test_check_reject_avi_infoframe
[08:17:04] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[08:17:04] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[08:17:04] [PASSED] drm_test_check_reject_audio_infoframe
[08:17:04] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[08:17:04] ================= drm_managed (2 subtests) =================
[08:17:04] [PASSED] drm_test_managed_release_action
[08:17:04] [PASSED] drm_test_managed_run_action
[08:17:04] =================== [PASSED] drm_managed ===================
[08:17:04] =================== drm_mm (6 subtests) ====================
[08:17:04] [PASSED] drm_test_mm_init
[08:17:04] [PASSED] drm_test_mm_debug
[08:17:04] [PASSED] drm_test_mm_align32
[08:17:04] [PASSED] drm_test_mm_align64
[08:17:04] [PASSED] drm_test_mm_lowest
[08:17:04] [PASSED] drm_test_mm_highest
[08:17:04] ===================== [PASSED] drm_mm ======================
[08:17:04] ============= drm_modes_analog_tv (5 subtests) =============
[08:17:04] [PASSED] drm_test_modes_analog_tv_mono_576i
[08:17:04] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[08:17:04] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[08:17:04] [PASSED] drm_test_modes_analog_tv_pal_576i
[08:17:04] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[08:17:04] =============== [PASSED] drm_modes_analog_tv ===============
[08:17:04] ============== drm_plane_helper (2 subtests) ===============
[08:17:04] =============== drm_test_check_plane_state  ================
[08:17:04] [PASSED] clipping_simple
[08:17:04] [PASSED] clipping_rotate_reflect
[08:17:04] [PASSED] positioning_simple
[08:17:04] [PASSED] upscaling
[08:17:04] [PASSED] downscaling
[08:17:04] [PASSED] rounding1
[08:17:04] [PASSED] rounding2
[08:17:04] [PASSED] rounding3
[08:17:04] [PASSED] rounding4
[08:17:04] =========== [PASSED] drm_test_check_plane_state ============
[08:17:04] =========== drm_test_check_invalid_plane_state  ============
[08:17:04] [PASSED] positioning_invalid
[08:17:04] [PASSED] upscaling_invalid
[08:17:04] [PASSED] downscaling_invalid
[08:17:04] ======= [PASSED] drm_test_check_invalid_plane_state ========
[08:17:04] ================ [PASSED] drm_plane_helper =================
[08:17:04] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[08:17:04] ====== drm_test_connector_helper_tv_get_modes_check  =======
[08:17:04] [PASSED] None
[08:17:04] [PASSED] PAL
[08:17:04] [PASSED] NTSC
[08:17:04] [PASSED] Both, NTSC Default
[08:17:04] [PASSED] Both, PAL Default
[08:17:04] [PASSED] Both, NTSC Default, with PAL on command-line
[08:17:04] [PASSED] Both, PAL Default, with NTSC on command-line
[08:17:04] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[08:17:04] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[08:17:04] ================== drm_rect (9 subtests) ===================
[08:17:04] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[08:17:04] [PASSED] drm_test_rect_clip_scaled_not_clipped
[08:17:04] [PASSED] drm_test_rect_clip_scaled_clipped
[08:17:04] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[08:17:04] ================= drm_test_rect_intersect  =================
[08:17:04] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[08:17:04] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[08:17:04] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[08:17:04] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[08:17:04] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[08:17:04] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[08:17:04] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[08:17:04] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[08:17:04] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[08:17:04] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[08:17:04] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[08:17:04] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[08:17:04] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[08:17:04] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[08:17:04] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[08:17:04] ============= [PASSED] drm_test_rect_intersect =============
[08:17:04] ================ drm_test_rect_calc_hscale  ================
[08:17:04] [PASSED] normal use
[08:17:04] [PASSED] out of max range
[08:17:04] [PASSED] out of min range
[08:17:04] [PASSED] zero dst
[08:17:04] [PASSED] negative src
[08:17:04] [PASSED] negative dst
[08:17:04] ============ [PASSED] drm_test_rect_calc_hscale ============
[08:17:04] ================ drm_test_rect_calc_vscale  ================
[08:17:04] [PASSED] normal use
[08:17:04] [PASSED] out of max range
[08:17:04] [PASSED] out of min range
[08:17:04] [PASSED] zero dst
[08:17:04] [PASSED] negative src
[08:17:04] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[08:17:04] ============ [PASSED] drm_test_rect_calc_vscale ============
[08:17:04] ================== drm_test_rect_rotate  ===================
[08:17:04] [PASSED] reflect-x
[08:17:04] [PASSED] reflect-y
[08:17:04] [PASSED] rotate-0
[08:17:04] [PASSED] rotate-90
[08:17:04] [PASSED] rotate-180
[08:17:04] [PASSED] rotate-270
[08:17:04] ============== [PASSED] drm_test_rect_rotate ===============
[08:17:04] ================ drm_test_rect_rotate_inv  =================
[08:17:04] [PASSED] reflect-x
[08:17:04] [PASSED] reflect-y
[08:17:04] [PASSED] rotate-0
[08:17:04] [PASSED] rotate-90
[08:17:04] [PASSED] rotate-180
[08:17:04] [PASSED] rotate-270
[08:17:04] ============ [PASSED] drm_test_rect_rotate_inv =============
[08:17:04] ==================== [PASSED] drm_rect =====================
[08:17:04] ============ drm_sysfb_modeset_test (1 subtest) ============
[08:17:04] ============ drm_test_sysfb_build_fourcc_list  =============
[08:17:04] [PASSED] no native formats
[08:17:04] [PASSED] XRGB8888 as native format
[08:17:04] [PASSED] remove duplicates
[08:17:04] [PASSED] convert alpha formats
[08:17:04] [PASSED] random formats
[08:17:04] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[08:17:04] ============= [PASSED] drm_sysfb_modeset_test ==============
[08:17:04] ================== drm_fixp (2 subtests) ===================
[08:17:04] [PASSED] drm_test_int2fixp
[08:17:04] [PASSED] drm_test_sm2fixp
[08:17:04] ==================== [PASSED] drm_fixp =====================
[08:17:04] ============================================================
[08:17:04] Testing complete. Ran 621 tests: passed: 621
[08:17:04] Elapsed time: 32.425s total, 1.638s configuring, 30.520s building, 0.244s running

+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[08:17:04] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[08:17:06] 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=25
[08:17:15] Starting KUnit Kernel (1/1)...
[08:17:15] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[08:17:15] ================= ttm_device (5 subtests) ==================
[08:17:15] [PASSED] ttm_device_init_basic
[08:17:15] [PASSED] ttm_device_init_multiple
[08:17:15] [PASSED] ttm_device_fini_basic
[08:17:15] [PASSED] ttm_device_init_no_vma_man
[08:17:15] ================== ttm_device_init_pools  ==================
[08:17:15] [PASSED] No DMA allocations, no DMA32 required
[08:17:15] [PASSED] DMA allocations, DMA32 required
[08:17:15] [PASSED] No DMA allocations, DMA32 required
[08:17:15] [PASSED] DMA allocations, no DMA32 required
[08:17:15] ============== [PASSED] ttm_device_init_pools ==============
[08:17:15] =================== [PASSED] ttm_device ====================
[08:17:15] ================== ttm_pool (8 subtests) ===================
[08:17:15] ================== ttm_pool_alloc_basic  ===================
[08:17:15] [PASSED] One page
[08:17:15] [PASSED] More than one page
[08:17:15] [PASSED] Above the allocation limit
[08:17:15] [PASSED] One page, with coherent DMA mappings enabled
[08:17:15] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[08:17:15] ============== [PASSED] ttm_pool_alloc_basic ===============
[08:17:15] ============== ttm_pool_alloc_basic_dma_addr  ==============
[08:17:15] [PASSED] One page
[08:17:15] [PASSED] More than one page
[08:17:15] [PASSED] Above the allocation limit
[08:17:15] [PASSED] One page, with coherent DMA mappings enabled
[08:17:15] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[08:17:15] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[08:17:15] [PASSED] ttm_pool_alloc_order_caching_match
[08:17:15] [PASSED] ttm_pool_alloc_caching_mismatch
[08:17:15] [PASSED] ttm_pool_alloc_order_mismatch
[08:17:15] [PASSED] ttm_pool_free_dma_alloc
[08:17:15] [PASSED] ttm_pool_free_no_dma_alloc
[08:17:15] [PASSED] ttm_pool_fini_basic
[08:17:15] ==================== [PASSED] ttm_pool =====================
[08:17:15] ================ ttm_resource (8 subtests) =================
[08:17:15] ================= ttm_resource_init_basic  =================
[08:17:15] [PASSED] Init resource in TTM_PL_SYSTEM
[08:17:15] [PASSED] Init resource in TTM_PL_VRAM
[08:17:15] [PASSED] Init resource in a private placement
[08:17:15] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[08:17:15] ============= [PASSED] ttm_resource_init_basic =============
[08:17:15] [PASSED] ttm_resource_init_pinned
[08:17:15] [PASSED] ttm_resource_fini_basic
[08:17:15] [PASSED] ttm_resource_manager_init_basic
[08:17:15] [PASSED] ttm_resource_manager_usage_basic
[08:17:15] [PASSED] ttm_resource_manager_set_used_basic
[08:17:15] [PASSED] ttm_sys_man_alloc_basic
[08:17:15] [PASSED] ttm_sys_man_free_basic
[08:17:15] ================== [PASSED] ttm_resource ===================
[08:17:15] =================== ttm_tt (15 subtests) ===================
[08:17:15] ==================== ttm_tt_init_basic  ====================
[08:17:15] [PASSED] Page-aligned size
[08:17:15] [PASSED] Extra pages requested
[08:17:15] ================ [PASSED] ttm_tt_init_basic ================
[08:17:15] [PASSED] ttm_tt_init_misaligned
[08:17:15] [PASSED] ttm_tt_fini_basic
[08:17:15] [PASSED] ttm_tt_fini_sg
[08:17:15] [PASSED] ttm_tt_fini_shmem
[08:17:15] [PASSED] ttm_tt_create_basic
[08:17:15] [PASSED] ttm_tt_create_invalid_bo_type
[08:17:15] [PASSED] ttm_tt_create_ttm_exists
[08:17:15] [PASSED] ttm_tt_create_failed
[08:17:15] [PASSED] ttm_tt_destroy_basic
[08:17:15] [PASSED] ttm_tt_populate_null_ttm
[08:17:15] [PASSED] ttm_tt_populate_populated_ttm
[08:17:15] [PASSED] ttm_tt_unpopulate_basic
[08:17:15] [PASSED] ttm_tt_unpopulate_empty_ttm
[08:17:15] [PASSED] ttm_tt_swapin_basic
[08:17:15] ===================== [PASSED] ttm_tt ======================
[08:17:15] =================== ttm_bo (14 subtests) ===================
[08:17:15] =========== ttm_bo_reserve_optimistic_no_ticket  ===========
[08:17:15] [PASSED] Cannot be interrupted and sleeps
[08:17:15] [PASSED] Cannot be interrupted, locks straight away
[08:17:15] [PASSED] Can be interrupted, sleeps
[08:17:15] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[08:17:15] [PASSED] ttm_bo_reserve_locked_no_sleep
[08:17:15] [PASSED] ttm_bo_reserve_no_wait_ticket
[08:17:15] [PASSED] ttm_bo_reserve_double_resv
[08:17:15] [PASSED] ttm_bo_reserve_interrupted
[08:17:15] [PASSED] ttm_bo_reserve_deadlock
[08:17:15] [PASSED] ttm_bo_unreserve_basic
[08:17:15] [PASSED] ttm_bo_unreserve_pinned
[08:17:15] [PASSED] ttm_bo_unreserve_bulk
[08:17:15] [PASSED] ttm_bo_fini_basic
[08:17:15] [PASSED] ttm_bo_fini_shared_resv
[08:17:15] [PASSED] ttm_bo_pin_basic
[08:17:15] [PASSED] ttm_bo_pin_unpin_resource
[08:17:15] [PASSED] ttm_bo_multiple_pin_one_unpin
[08:17:15] ===================== [PASSED] ttm_bo ======================
[08:17:15] ============== ttm_bo_validate (21 subtests) ===============
[08:17:15] ============== ttm_bo_init_reserved_sys_man  ===============
[08:17:15] [PASSED] Buffer object for userspace
[08:17:15] [PASSED] Kernel buffer object
[08:17:15] [PASSED] Shared buffer object
[08:17:15] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[08:17:15] ============== ttm_bo_init_reserved_mock_man  ==============
[08:17:15] [PASSED] Buffer object for userspace
[08:17:15] [PASSED] Kernel buffer object
[08:17:15] [PASSED] Shared buffer object
[08:17:15] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[08:17:15] [PASSED] ttm_bo_init_reserved_resv
[08:17:15] ================== ttm_bo_validate_basic  ==================
[08:17:15] [PASSED] Buffer object for userspace
[08:17:15] [PASSED] Kernel buffer object
[08:17:15] [PASSED] Shared buffer object
[08:17:15] ============== [PASSED] ttm_bo_validate_basic ==============
[08:17:15] [PASSED] ttm_bo_validate_invalid_placement
[08:17:15] ============= ttm_bo_validate_same_placement  ==============
[08:17:15] [PASSED] System manager
[08:17:15] [PASSED] VRAM manager
[08:17:15] ========= [PASSED] ttm_bo_validate_same_placement ==========
[08:17:15] [PASSED] ttm_bo_validate_failed_alloc
[08:17:15] [PASSED] ttm_bo_validate_pinned
[08:17:15] [PASSED] ttm_bo_validate_busy_placement
[08:17:15] ================ ttm_bo_validate_multihop  =================
[08:17:15] [PASSED] Buffer object for userspace
[08:17:15] [PASSED] Kernel buffer object
[08:17:15] [PASSED] Shared buffer object
[08:17:15] ============ [PASSED] ttm_bo_validate_multihop =============
[08:17:15] ========== ttm_bo_validate_no_placement_signaled  ==========
[08:17:15] [PASSED] Buffer object in system domain, no page vector
[08:17:15] [PASSED] Buffer object in system domain with an existing page vector
[08:17:15] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[08:17:15] ======== ttm_bo_validate_no_placement_not_signaled  ========
[08:17:15] [PASSED] Buffer object for userspace
[08:17:15] [PASSED] Kernel buffer object
[08:17:15] [PASSED] Shared buffer object
[08:17:15] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[08:17:15] [PASSED] ttm_bo_validate_move_fence_signaled
[08:17:15] ========= ttm_bo_validate_move_fence_not_signaled  =========
[08:17:15] [PASSED] Waits for GPU
[08:17:15] [PASSED] Tries to lock straight away
[08:17:15] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[08:17:15] [PASSED] ttm_bo_validate_happy_evict
[08:17:15] [PASSED] ttm_bo_validate_all_pinned_evict
[08:17:15] [PASSED] ttm_bo_validate_allowed_only_evict
[08:17:15] [PASSED] ttm_bo_validate_deleted_evict
[08:17:15] [PASSED] ttm_bo_validate_busy_domain_evict
[08:17:15] [PASSED] ttm_bo_validate_evict_gutting
[08:17:15] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[08:17:15] ================= [PASSED] ttm_bo_validate =================
[08:17:15] ============================================================
[08:17:15] Testing complete. Ran 101 tests: passed: 101
[08:17:15] Elapsed time: 11.093s total, 1.619s configuring, 9.258s building, 0.185s running

+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel



^ permalink raw reply	[flat|nested] 9+ messages in thread

* ✓ Xe.CI.BAT: success for drm/xe/hwmon: Prevent unintended VRAM channel creation (rev2)
  2026-02-06  8:16 [PATCH] drm/xe/hwmon: Prevent unintended VRAM channel creation Karthik Poosa
  2026-02-06  8:17 ` ✓ CI.KUnit: success for drm/xe/hwmon: Prevent unintended VRAM channel creation (rev2) Patchwork
@ 2026-02-06  8:55 ` Patchwork
  2026-02-07 10:25 ` ✗ Xe.CI.FULL: failure " Patchwork
  2026-02-11 11:17 ` [PATCH] drm/xe/hwmon: Prevent unintended VRAM channel creation Raag Jadav
  3 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-02-06  8:55 UTC (permalink / raw)
  To: Karthik Poosa; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 1022 bytes --]

== Series Details ==

Series: drm/xe/hwmon: Prevent unintended VRAM channel creation (rev2)
URL   : https://patchwork.freedesktop.org/series/160302/
State : success

== Summary ==

CI Bug Log - changes from xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb_BAT -> xe-pw-160302v2_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (12 -> 12)
------------------------------

  No changes in participating hosts


Changes
-------

  No changes found


Build changes
-------------

  * IGT: IGT_8739 -> IGT_8740
  * Linux: xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb -> xe-pw-160302v2

  IGT_8739: 8739
  IGT_8740: 36ebdc56b434bf330c44e96205f1fcefcf598651 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb: 75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb
  xe-pw-160302v2: 160302v2

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/index.html

[-- Attachment #2: Type: text/html, Size: 1584 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* ✗ Xe.CI.FULL: failure for drm/xe/hwmon: Prevent unintended VRAM channel creation (rev2)
  2026-02-06  8:16 [PATCH] drm/xe/hwmon: Prevent unintended VRAM channel creation Karthik Poosa
  2026-02-06  8:17 ` ✓ CI.KUnit: success for drm/xe/hwmon: Prevent unintended VRAM channel creation (rev2) Patchwork
  2026-02-06  8:55 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-02-07 10:25 ` Patchwork
  2026-02-11 11:17 ` [PATCH] drm/xe/hwmon: Prevent unintended VRAM channel creation Raag Jadav
  3 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-02-07 10:25 UTC (permalink / raw)
  To: Karthik Poosa; +Cc: intel-xe

[-- Attachment #1: Type: text/plain, Size: 52754 bytes --]

== Series Details ==

Series: drm/xe/hwmon: Prevent unintended VRAM channel creation (rev2)
URL   : https://patchwork.freedesktop.org/series/160302/
State : failure

== Summary ==

CI Bug Log - changes from xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb_FULL -> xe-pw-160302v2_FULL
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-160302v2_FULL absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-160302v2_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 (2 -> 2)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in xe-pw-160302v2_FULL:

### IGT changes ###

#### Possible regressions ####

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][1]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html

  * igt@kms_pm_backlight@fade-with-dpms:
    - shard-lnl:          [PASS][2] -> [SKIP][3]
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-lnl-5/igt@kms_pm_backlight@fade-with-dpms.html
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-2/igt@kms_pm_backlight@fade-with-dpms.html

  * igt@kms_rotation_crc@multiplane-rotation-cropping-top:
    - shard-bmg:          [PASS][4] -> [FAIL][5]
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-2/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-2/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html

  * igt@xe_compute_preempt@compute-preempt-many-vram:
    - shard-bmg:          [PASS][6] -> [ABORT][7] +1 other test abort
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-10/igt@xe_compute_preempt@compute-preempt-many-vram.html
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-6/igt@xe_compute_preempt@compute-preempt-many-vram.html

  
Known issues
------------

  Here are the changes found in xe-pw-160302v2_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear:
    - shard-lnl:          [PASS][8] -> [FAIL][9] ([Intel XE#5993]) +3 other tests fail
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
    - shard-lnl:          NOTRUN -> [SKIP][10] ([Intel XE#1407]) +4 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-90:
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2327]) +3 other tests skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-lnl:          NOTRUN -> [SKIP][12] ([Intel XE#1124]) +7 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#1124]) +6 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
    - shard-lnl:          NOTRUN -> [SKIP][14] ([Intel XE#1512])
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-5/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#2314] / [Intel XE#2894])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-9/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-1-displays-1920x1080p:
    - shard-bmg:          NOTRUN -> [SKIP][16] ([Intel XE#367])
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-6/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-2-displays-2560x1440p:
    - shard-lnl:          NOTRUN -> [SKIP][17] ([Intel XE#367])
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-2/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          [PASS][18] -> [INCOMPLETE][19] ([Intel XE#7084])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][20] ([Intel XE#2887]) +12 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html

  * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][21] ([Intel XE#2887]) +11 other tests skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html

  * igt@kms_chamelium_color@ctm-0-50:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#2325]) +1 other test skip
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-2/igt@kms_chamelium_color@ctm-0-50.html

  * igt@kms_chamelium_color@ctm-negative:
    - shard-lnl:          NOTRUN -> [SKIP][23] ([Intel XE#306]) +1 other test skip
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-8/igt@kms_chamelium_color@ctm-negative.html

  * igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
    - shard-bmg:          NOTRUN -> [SKIP][24] ([Intel XE#2252]) +2 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-7/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html

  * igt@kms_chamelium_hpd@dp-hpd:
    - shard-lnl:          NOTRUN -> [SKIP][25] ([Intel XE#373]) +2 other tests skip
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-7/igt@kms_chamelium_hpd@dp-hpd.html

  * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][26] ([Intel XE#6969]) +2 other tests skip
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-2/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-a-dp-2.html

  * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][27] ([Intel XE#6969]) +1 other test skip
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-6/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-edp-1.html

  * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-c-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][28] ([Intel XE#6969] / [Intel XE#7006]) +1 other test skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-6/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-c-edp-1.html

  * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#6969] / [Intel XE#7006]) +1 other test skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-2/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-dp-2.html

  * igt@kms_content_protection@atomic:
    - shard-bmg:          NOTRUN -> [FAIL][30] ([Intel XE#1178] / [Intel XE#3304]) +2 other tests fail
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-9/igt@kms_content_protection@atomic.html

  * igt@kms_cursor_crc@cursor-offscreen-512x512:
    - shard-lnl:          NOTRUN -> [SKIP][31] ([Intel XE#2321])
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
    - shard-bmg:          NOTRUN -> [SKIP][32] ([Intel XE#2321])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html

  * igt@kms_cursor_crc@cursor-onscreen-64x21:
    - shard-bmg:          NOTRUN -> [SKIP][33] ([Intel XE#2320])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-9/igt@kms_cursor_crc@cursor-onscreen-64x21.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x10:
    - shard-lnl:          NOTRUN -> [SKIP][34] ([Intel XE#1424])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-3/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2291])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
    - shard-lnl:          NOTRUN -> [SKIP][36] ([Intel XE#309]) +4 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
    - shard-bmg:          [PASS][37] -> [SKIP][38] ([Intel XE#2291]) +4 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-10/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html

  * igt@kms_dp_aux_dev:
    - shard-bmg:          [PASS][39] -> [SKIP][40] ([Intel XE#3009])
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-2/igt@kms_dp_aux_dev.html
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-6/igt@kms_dp_aux_dev.html

  * igt@kms_dp_link_training@uhbr-mst:
    - shard-lnl:          NOTRUN -> [SKIP][41] ([Intel XE#4354])
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-2/igt@kms_dp_link_training@uhbr-mst.html
    - shard-bmg:          NOTRUN -> [SKIP][42] ([Intel XE#4354])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-5/igt@kms_dp_link_training@uhbr-mst.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][43] ([Intel XE#4156])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-6/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_feature_discovery@display-3x:
    - shard-lnl:          NOTRUN -> [SKIP][44] ([Intel XE#703])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-4/igt@kms_feature_discovery@display-3x.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
    - shard-bmg:          [PASS][45] -> [SKIP][46] ([Intel XE#2316]) +10 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#2316])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_flip@2x-flip-vs-wf_vblank:
    - shard-lnl:          NOTRUN -> [SKIP][48] ([Intel XE#1421]) +1 other test skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-2/igt@kms_flip@2x-flip-vs-wf_vblank.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-lnl:          [PASS][49] -> [FAIL][50] ([Intel XE#301]) +1 other test fail
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_flip@flip-vs-suspend@c-hdmi-a3:
    - shard-bmg:          [PASS][51] -> [INCOMPLETE][52] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-5/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-4/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
    - shard-lnl:          NOTRUN -> [SKIP][53] ([Intel XE#7178]) +1 other test skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][54] ([Intel XE#1397] / [Intel XE#1745])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][55] ([Intel XE#1397])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#7178]) +2 other tests skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][57] ([Intel XE#656]) +15 other tests skip
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][58] ([Intel XE#7061]) +2 other tests skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#2311]) +12 other tests skip
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#4141]) +7 other tests skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#7061]) +3 other tests skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][62] ([Intel XE#6312])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt:
    - shard-lnl:          NOTRUN -> [SKIP][63] ([Intel XE#651]) +5 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt:
    - shard-bmg:          NOTRUN -> [SKIP][64] ([Intel XE#2312]) +7 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#2313]) +12 other tests skip
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html

  * igt@kms_hdr@invalid-hdr:
    - shard-bmg:          [PASS][66] -> [SKIP][67] ([Intel XE#1503]) +1 other test skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-1/igt@kms_hdr@invalid-hdr.html
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-2/igt@kms_hdr@invalid-hdr.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [PASS][68] -> [SKIP][69] ([Intel XE#7086])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-lnl:          NOTRUN -> [SKIP][70] ([Intel XE#356])
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  * igt@kms_pipe_stress@stress-xrgb8888-ytiled:
    - shard-bmg:          NOTRUN -> [SKIP][71] ([Intel XE#4329] / [Intel XE#6912])
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-9/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@kms_plane@pixel-format-y-tiled-modifier:
    - shard-bmg:          NOTRUN -> [SKIP][72] ([Intel XE#7111] / [Intel XE#7130]) +3 other tests skip
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-8/igt@kms_plane@pixel-format-y-tiled-modifier.html

  * igt@kms_plane@pixel-format-y-tiled-modifier@pipe-a-plane-0:
    - shard-bmg:          NOTRUN -> [SKIP][73] ([Intel XE#7130]) +9 other tests skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-8/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-a-plane-0.html

  * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
    - shard-lnl:          NOTRUN -> [SKIP][74] ([Intel XE#7130] / [Intel XE#7131])
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-4/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-a-plane-0:
    - shard-lnl:          NOTRUN -> [SKIP][75] ([Intel XE#7130]) +3 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-4/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-a-plane-0.html

  * igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-5:
    - shard-lnl:          NOTRUN -> [SKIP][76] ([Intel XE#7131]) +1 other test skip
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-4/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping@pipe-b-plane-5.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [PASS][77] -> [SKIP][78] ([Intel XE#4596])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4.html
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
    - shard-bmg:          NOTRUN -> [SKIP][79] ([Intel XE#6886]) +4 other tests skip
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-10/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b:
    - shard-lnl:          NOTRUN -> [SKIP][80] ([Intel XE#6886]) +7 other tests skip
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html

  * igt@kms_pm_backlight@bad-brightness:
    - shard-bmg:          NOTRUN -> [SKIP][81] ([Intel XE#870])
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-6/igt@kms_pm_backlight@bad-brightness.html

  * igt@kms_pm_dc@dc5-dpms-negative:
    - shard-lnl:          NOTRUN -> [SKIP][82] ([Intel XE#1131])
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-7/igt@kms_pm_dc@dc5-dpms-negative.html

  * igt@kms_pm_rpm@universal-planes:
    - shard-lnl:          [PASS][83] -> [SKIP][84] ([Intel XE#7197])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-lnl-3/igt@kms_pm_rpm@universal-planes.html
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-2/igt@kms_pm_rpm@universal-planes.html

  * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
    - shard-bmg:          NOTRUN -> [SKIP][85] ([Intel XE#1406] / [Intel XE#1489]) +5 other tests skip
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
    - shard-lnl:          NOTRUN -> [SKIP][86] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +1 other test skip
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][87] ([Intel XE#1406] / [Intel XE#4608]) +3 other tests skip
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1.html

  * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
    - shard-lnl:          NOTRUN -> [SKIP][88] ([Intel XE#1406] / [Intel XE#2893]) +1 other test skip
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-1/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html

  * igt@kms_psr@fbc-psr2-cursor-plane-move:
    - shard-bmg:          NOTRUN -> [SKIP][89] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +6 other tests skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-7/igt@kms_psr@fbc-psr2-cursor-plane-move.html

  * igt@kms_psr@pr-no-drrs:
    - shard-lnl:          NOTRUN -> [SKIP][90] ([Intel XE#1406]) +4 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-6/igt@kms_psr@pr-no-drrs.html

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-lnl:          NOTRUN -> [SKIP][91] ([Intel XE#3414] / [Intel XE#3904])
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-5/igt@kms_rotation_crc@primary-rotation-270.html
    - shard-bmg:          NOTRUN -> [SKIP][92] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-7/igt@kms_rotation_crc@primary-rotation-270.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-lnl:          NOTRUN -> [SKIP][93] ([Intel XE#1127])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_scaling_modes@scaling-mode-full-aspect:
    - shard-bmg:          NOTRUN -> [SKIP][94] ([Intel XE#2413])
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-full-aspect.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - shard-bmg:          NOTRUN -> [SKIP][95] ([Intel XE#1435])
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-6/igt@kms_setmode@basic-clone-single-crtc.html

  * igt@kms_setmode@invalid-clone-single-crtc-stealing:
    - shard-bmg:          [PASS][96] -> [SKIP][97] ([Intel XE#1435])
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html

  * igt@kms_sharpness_filter@filter-strength:
    - shard-bmg:          NOTRUN -> [SKIP][98] ([Intel XE#6503])
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-6/igt@kms_sharpness_filter@filter-strength.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          NOTRUN -> [FAIL][99] ([Intel XE#1729])
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html
    - shard-lnl:          NOTRUN -> [SKIP][100] ([Intel XE#362])
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-7/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_universal_plane@cursor-fb-leak:
    - shard-bmg:          [PASS][101] -> [ABORT][102] ([Intel XE#5545] / [Intel XE#6652]) +1 other test abort
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-2/igt@kms_universal_plane@cursor-fb-leak.html
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-2/igt@kms_universal_plane@cursor-fb-leak.html

  * igt@kms_vrr@cmrr:
    - shard-bmg:          NOTRUN -> [SKIP][103] ([Intel XE#2168])
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-6/igt@kms_vrr@cmrr.html

  * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
    - shard-lnl:          [PASS][104] -> [FAIL][105] ([Intel XE#2142]) +1 other test fail
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-lnl-4/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-6/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html

  * igt@xe_eudebug@basic-exec-queues:
    - shard-bmg:          NOTRUN -> [SKIP][106] ([Intel XE#4837]) +3 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-4/igt@xe_eudebug@basic-exec-queues.html

  * igt@xe_eudebug_online@basic-breakpoint:
    - shard-lnl:          NOTRUN -> [SKIP][107] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-3/igt@xe_eudebug_online@basic-breakpoint.html

  * igt@xe_eudebug_online@interrupt-other:
    - shard-bmg:          NOTRUN -> [SKIP][108] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-2/igt@xe_eudebug_online@interrupt-other.html

  * igt@xe_eudebug_online@pagefault-write-stress:
    - shard-lnl:          NOTRUN -> [SKIP][109] ([Intel XE#6665])
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-1/igt@xe_eudebug_online@pagefault-write-stress.html
    - shard-bmg:          NOTRUN -> [SKIP][110] ([Intel XE#6665] / [Intel XE#6681])
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-6/igt@xe_eudebug_online@pagefault-write-stress.html

  * igt@xe_evict@evict-small-multi-queue-priority:
    - shard-bmg:          NOTRUN -> [SKIP][111] ([Intel XE#7140]) +1 other test skip
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-2/igt@xe_evict@evict-small-multi-queue-priority.html

  * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
    - shard-lnl:          NOTRUN -> [SKIP][112] ([Intel XE#688]) +5 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-5/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html

  * igt@xe_exec_balancer@once-cm-parallel-userptr:
    - shard-bmg:          [PASS][113] -> [ABORT][114] ([Intel XE#7169])
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-7/igt@xe_exec_balancer@once-cm-parallel-userptr.html
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-3/igt@xe_exec_balancer@once-cm-parallel-userptr.html

  * igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
    - shard-lnl:          NOTRUN -> [SKIP][115] ([Intel XE#1392]) +3 other tests skip
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-3/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html

  * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind:
    - shard-bmg:          NOTRUN -> [SKIP][116] ([Intel XE#2322]) +2 other tests skip
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-4/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html

  * igt@xe_exec_fault_mode@twice-multi-queue-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][117] ([Intel XE#7136]) +6 other tests skip
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-7/igt@xe_exec_fault_mode@twice-multi-queue-prefetch.html

  * igt@xe_exec_fault_mode@twice-multi-queue-rebind-prefetch:
    - shard-lnl:          NOTRUN -> [SKIP][118] ([Intel XE#7136]) +5 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-8/igt@xe_exec_fault_mode@twice-multi-queue-rebind-prefetch.html

  * igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-priority-smem:
    - shard-lnl:          NOTRUN -> [SKIP][119] ([Intel XE#6874]) +13 other tests skip
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-2/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-priority-smem.html

  * igt@xe_exec_multi_queue@two-queues-priority:
    - shard-bmg:          NOTRUN -> [SKIP][120] ([Intel XE#6874]) +16 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-priority.html

  * igt@xe_exec_sip_eudebug@wait-writesip-nodebug:
    - shard-lnl:          NOTRUN -> [SKIP][121] ([Intel XE#4837]) +1 other test skip
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-8/igt@xe_exec_sip_eudebug@wait-writesip-nodebug.html

  * igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset:
    - shard-lnl:          NOTRUN -> [SKIP][122] ([Intel XE#5007])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-5/igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset.html

  * igt@xe_exec_system_allocator@process-many-mmap-new-huge-nomemset:
    - shard-lnl:          NOTRUN -> [SKIP][123] ([Intel XE#4943]) +11 other tests skip
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-2/igt@xe_exec_system_allocator@process-many-mmap-new-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][124] ([Intel XE#4943]) +12 other tests skip
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-4/igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset.html

  * igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate:
    - shard-bmg:          NOTRUN -> [SKIP][125] ([Intel XE#7138]) +4 other tests skip
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate.html

  * igt@xe_exec_threads@threads-multi-queue-rebind-err:
    - shard-lnl:          NOTRUN -> [SKIP][126] ([Intel XE#7138]) +1 other test skip
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-8/igt@xe_exec_threads@threads-multi-queue-rebind-err.html

  * igt@xe_multigpu_svm@mgpu-coherency-conflict:
    - shard-lnl:          NOTRUN -> [SKIP][127] ([Intel XE#6964]) +1 other test skip
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-2/igt@xe_multigpu_svm@mgpu-coherency-conflict.html
    - shard-bmg:          NOTRUN -> [SKIP][128] ([Intel XE#6964])
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-2/igt@xe_multigpu_svm@mgpu-coherency-conflict.html

  * igt@xe_pm@d3cold-i2c:
    - shard-bmg:          NOTRUN -> [SKIP][129] ([Intel XE#5694])
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-6/igt@xe_pm@d3cold-i2c.html

  * igt@xe_pxp@pxp-termination-key-update-post-termination-irq:
    - shard-bmg:          NOTRUN -> [SKIP][130] ([Intel XE#4733]) +1 other test skip
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-2/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html

  * igt@xe_query@multigpu-query-cs-cycles:
    - shard-lnl:          NOTRUN -> [SKIP][131] ([Intel XE#944])
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-1/igt@xe_query@multigpu-query-cs-cycles.html

  * igt@xe_sriov_admin@bulk-preempt-timeout-vfs-disabled:
    - shard-lnl:          NOTRUN -> [SKIP][132] ([Intel XE#7174]) +1 other test skip
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-4/igt@xe_sriov_admin@bulk-preempt-timeout-vfs-disabled.html

  * igt@xe_sriov_flr@flr-vfs-parallel:
    - shard-lnl:          NOTRUN -> [SKIP][133] ([Intel XE#4273])
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-8/igt@xe_sriov_flr@flr-vfs-parallel.html

  * igt@xe_sriov_scheduling@nonpreempt-engine-resets:
    - shard-lnl:          NOTRUN -> [SKIP][134] ([Intel XE#4351])
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-5/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html

  * igt@xe_vm@out-of-memory:
    - shard-lnl:          NOTRUN -> [SKIP][135] ([Intel XE#5745])
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-7/igt@xe_vm@out-of-memory.html

  
#### Possible fixes ####

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
    - shard-lnl:          [FAIL][136] ([Intel XE#6054]) -> [PASS][137] +3 other tests pass
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          [SKIP][138] ([Intel XE#2291]) -> [PASS][139]
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-bmg:          [SKIP][140] ([Intel XE#1503]) -> [PASS][141]
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-5/igt@kms_hdr@invalid-metadata-sizes.html
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-6/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_joiner@basic-force-big-joiner:
    - shard-bmg:          [SKIP][142] ([Intel XE#7086]) -> [PASS][143]
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-5/igt@kms_joiner@basic-force-big-joiner.html
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-7/igt@kms_joiner@basic-force-big-joiner.html

  * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
    - shard-lnl:          [ABORT][144] ([Intel XE#7169]) -> [PASS][145] +1 other test pass
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-lnl-2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          [FAIL][146] ([Intel XE#718]) -> [PASS][147]
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html

  * igt@kms_pm_rpm@system-suspend-modeset:
    - shard-lnl:          [SKIP][148] -> [PASS][149]
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-lnl-2/igt@kms_pm_rpm@system-suspend-modeset.html
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-lnl-7/igt@kms_pm_rpm@system-suspend-modeset.html

  * igt@xe_wedged@basic-wedged:
    - shard-bmg:          [ABORT][150] -> [PASS][151]
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-6/igt@xe_wedged@basic-wedged.html
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-5/igt@xe_wedged@basic-wedged.html

  
#### Warnings ####

  * igt@kms_content_protection@srm:
    - shard-bmg:          [FAIL][152] ([Intel XE#1178] / [Intel XE#3304]) -> [SKIP][153] ([Intel XE#2341])
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-10/igt@kms_content_protection@srm.html
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-5/igt@kms_content_protection@srm.html

  * igt@kms_content_protection@suspend-resume:
    - shard-bmg:          [SKIP][154] ([Intel XE#6705]) -> [FAIL][155] ([Intel XE#1178] / [Intel XE#3304])
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-5/igt@kms_content_protection@suspend-resume.html
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-2/igt@kms_content_protection@suspend-resume.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          [FAIL][156] ([Intel XE#6707]) -> [SKIP][157] ([Intel XE#2341])
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-3/igt@kms_content_protection@uevent.html
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-6/igt@kms_content_protection@uevent.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][158] ([Intel XE#2311]) -> [SKIP][159] ([Intel XE#2312]) +12 other tests skip
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt:
    - shard-bmg:          [SKIP][160] ([Intel XE#2312]) -> [SKIP][161] ([Intel XE#2311]) +5 other tests skip
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt.html
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt:
    - shard-bmg:          [ABORT][162] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#4760] / [Intel XE#7169]) -> [SKIP][163] ([Intel XE#4141])
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
    - shard-bmg:          [SKIP][164] ([Intel XE#4141]) -> [SKIP][165] ([Intel XE#2312]) +9 other tests skip
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
    - shard-bmg:          [SKIP][166] ([Intel XE#2312]) -> [SKIP][167] ([Intel XE#4141]) +3 other tests skip
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
   [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][168] ([Intel XE#2312]) -> [SKIP][169] ([Intel XE#2313]) +4 other tests skip
   [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
   [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
    - shard-bmg:          [SKIP][170] ([Intel XE#2313]) -> [SKIP][171] ([Intel XE#2312]) +18 other tests skip
   [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
   [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-bmg:          [SKIP][172] ([Intel XE#4596]) -> [SKIP][173] ([Intel XE#5021])
   [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-yf.html
   [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][174] ([Intel XE#2509]) -> [SKIP][175] ([Intel XE#2426])
   [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  
  [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#1131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1131
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [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#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [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#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#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
  [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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
  [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
  [Intel XE#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#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
  [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
  [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
  [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [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#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
  [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
  [Intel XE#5745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5745
  [Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
  [Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
  [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681
  [Intel XE#6705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6705
  [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969
  [Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006
  [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084
  [Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
  [Intel XE#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111
  [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
  [Intel XE#7131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
  [Intel XE#7169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7169
  [Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#7197]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7197
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


Build changes
-------------

  * IGT: IGT_8739 -> IGT_8740
  * Linux: xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb -> xe-pw-160302v2

  IGT_8739: 8739
  IGT_8740: 36ebdc56b434bf330c44e96205f1fcefcf598651 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  xe-4517-75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb: 75ff5c3e0838e9fb77677fd1446ffe7b1cf75bdb
  xe-pw-160302v2: 160302v2

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-160302v2/index.html

[-- Attachment #2: Type: text/html, Size: 60667 bytes --]

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] drm/xe/hwmon: Prevent unintended VRAM channel creation
  2026-02-06  8:16 [PATCH] drm/xe/hwmon: Prevent unintended VRAM channel creation Karthik Poosa
                   ` (2 preceding siblings ...)
  2026-02-07 10:25 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-02-11 11:17 ` Raag Jadav
  2026-02-18  0:22   ` Rodrigo Vivi
  3 siblings, 1 reply; 9+ messages in thread
From: Raag Jadav @ 2026-02-11 11:17 UTC (permalink / raw)
  To: Karthik Poosa; +Cc: intel-xe, anshuman.gupta, badal.nilawar, rodrigo.vivi

On Fri, Feb 06, 2026 at 01:46:55PM +0530, Karthik Poosa wrote:
> Remove the unnecessary VRAM channel entry introduced in xe_hwmon_channel.
> Without this, adding any new hwmon channel causes extra VRAM channel
> to appear. This remained unnoticed earlier because VRAM was the
> final xe hwmon channel.
> 
> v2: Use MAX_VRAM_CHANNELS with in_range() instead of
>     CHANNEL_VRAM_N_MAX. (Raag)
> 
> Signed-off-by: Karthik Poosa <karthik.poosa@intel.com>
> Fixes: 49a498338417 ("drm/xe/hwmon: Expose individual VRAM channel temperature")

Fixes tag usually goes first, but perhaps it can be re-ordered while
applying. In any case,

Reviewed-by: Raag Jadav <raag.jadav@intel.com>

> ---
>  drivers/gpu/drm/xe/xe_hwmon.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_hwmon.c b/drivers/gpu/drm/xe/xe_hwmon.c
> index baf277955b33..0fd4d4f1014a 100644
> --- a/drivers/gpu/drm/xe/xe_hwmon.c
> +++ b/drivers/gpu/drm/xe/xe_hwmon.c
> @@ -48,7 +48,7 @@ enum xe_hwmon_channel {
>  	CHANNEL_MCTRL,
>  	CHANNEL_PCIE,
>  	CHANNEL_VRAM_N,
> -	CHANNEL_VRAM_N_MAX = CHANNEL_VRAM_N + MAX_VRAM_CHANNELS,
> +	CHANNEL_VRAM_N_MAX = CHANNEL_VRAM_N + MAX_VRAM_CHANNELS - 1,
>  	CHANNEL_MAX,
>  };
>  
> @@ -264,7 +264,7 @@ static struct xe_reg xe_hwmon_get_reg(struct xe_hwmon *hwmon, enum xe_hwmon_reg
>  				return BMG_PACKAGE_TEMPERATURE;
>  			else if (channel == CHANNEL_VRAM)
>  				return BMG_VRAM_TEMPERATURE;
> -			else if (in_range(channel, CHANNEL_VRAM_N, CHANNEL_VRAM_N_MAX))
> +			else if (in_range(channel, CHANNEL_VRAM_N, MAX_VRAM_CHANNELS))
>  				return BMG_VRAM_TEMPERATURE_N(channel - CHANNEL_VRAM_N);
>  		} else if (xe->info.platform == XE_DG2) {
>  			if (channel == CHANNEL_PKG)
> @@ -1427,7 +1427,7 @@ static int xe_hwmon_read_label(struct device *dev,
>  			*str = "mctrl";
>  		else if (channel == CHANNEL_PCIE)
>  			*str = "pcie";
> -		else if (in_range(channel, CHANNEL_VRAM_N, CHANNEL_VRAM_N_MAX))
> +		else if (in_range(channel, CHANNEL_VRAM_N, MAX_VRAM_CHANNELS))
>  			*str = hwmon->temp.vram_label[channel - CHANNEL_VRAM_N];
>  		return 0;
>  	case hwmon_power:
> -- 
> 2.25.1
> 

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH] drm/xe/hwmon: Prevent unintended VRAM channel creation
  2026-02-11 11:17 ` [PATCH] drm/xe/hwmon: Prevent unintended VRAM channel creation Raag Jadav
@ 2026-02-18  0:22   ` Rodrigo Vivi
  0 siblings, 0 replies; 9+ messages in thread
From: Rodrigo Vivi @ 2026-02-18  0:22 UTC (permalink / raw)
  To: Raag Jadav; +Cc: Karthik Poosa, intel-xe, anshuman.gupta, badal.nilawar

On Wed, Feb 11, 2026 at 12:17:04PM +0100, Raag Jadav wrote:
> On Fri, Feb 06, 2026 at 01:46:55PM +0530, Karthik Poosa wrote:
> > Remove the unnecessary VRAM channel entry introduced in xe_hwmon_channel.
> > Without this, adding any new hwmon channel causes extra VRAM channel
> > to appear. This remained unnoticed earlier because VRAM was the
> > final xe hwmon channel.
> > 
> > v2: Use MAX_VRAM_CHANNELS with in_range() instead of
> >     CHANNEL_VRAM_N_MAX. (Raag)
> > 
> > Signed-off-by: Karthik Poosa <karthik.poosa@intel.com>
> > Fixes: 49a498338417 ("drm/xe/hwmon: Expose individual VRAM channel temperature")
> 
> Fixes tag usually goes first, but perhaps it can be re-ordered while
> applying. In any case,

done and pushed, thank you both

> 
> Reviewed-by: Raag Jadav <raag.jadav@intel.com>
> 
> > ---
> >  drivers/gpu/drm/xe/xe_hwmon.c | 6 +++---
> >  1 file changed, 3 insertions(+), 3 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/xe/xe_hwmon.c b/drivers/gpu/drm/xe/xe_hwmon.c
> > index baf277955b33..0fd4d4f1014a 100644
> > --- a/drivers/gpu/drm/xe/xe_hwmon.c
> > +++ b/drivers/gpu/drm/xe/xe_hwmon.c
> > @@ -48,7 +48,7 @@ enum xe_hwmon_channel {
> >  	CHANNEL_MCTRL,
> >  	CHANNEL_PCIE,
> >  	CHANNEL_VRAM_N,
> > -	CHANNEL_VRAM_N_MAX = CHANNEL_VRAM_N + MAX_VRAM_CHANNELS,
> > +	CHANNEL_VRAM_N_MAX = CHANNEL_VRAM_N + MAX_VRAM_CHANNELS - 1,
> >  	CHANNEL_MAX,
> >  };
> >  
> > @@ -264,7 +264,7 @@ static struct xe_reg xe_hwmon_get_reg(struct xe_hwmon *hwmon, enum xe_hwmon_reg
> >  				return BMG_PACKAGE_TEMPERATURE;
> >  			else if (channel == CHANNEL_VRAM)
> >  				return BMG_VRAM_TEMPERATURE;
> > -			else if (in_range(channel, CHANNEL_VRAM_N, CHANNEL_VRAM_N_MAX))
> > +			else if (in_range(channel, CHANNEL_VRAM_N, MAX_VRAM_CHANNELS))
> >  				return BMG_VRAM_TEMPERATURE_N(channel - CHANNEL_VRAM_N);
> >  		} else if (xe->info.platform == XE_DG2) {
> >  			if (channel == CHANNEL_PKG)
> > @@ -1427,7 +1427,7 @@ static int xe_hwmon_read_label(struct device *dev,
> >  			*str = "mctrl";
> >  		else if (channel == CHANNEL_PCIE)
> >  			*str = "pcie";
> > -		else if (in_range(channel, CHANNEL_VRAM_N, CHANNEL_VRAM_N_MAX))
> > +		else if (in_range(channel, CHANNEL_VRAM_N, MAX_VRAM_CHANNELS))
> >  			*str = hwmon->temp.vram_label[channel - CHANNEL_VRAM_N];
> >  		return 0;
> >  	case hwmon_power:
> > -- 
> > 2.25.1
> > 

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2026-02-18  0:22 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-06  8:16 [PATCH] drm/xe/hwmon: Prevent unintended VRAM channel creation Karthik Poosa
2026-02-06  8:17 ` ✓ CI.KUnit: success for drm/xe/hwmon: Prevent unintended VRAM channel creation (rev2) Patchwork
2026-02-06  8:55 ` ✓ Xe.CI.BAT: " Patchwork
2026-02-07 10:25 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-02-11 11:17 ` [PATCH] drm/xe/hwmon: Prevent unintended VRAM channel creation Raag Jadav
2026-02-18  0:22   ` Rodrigo Vivi
  -- strict thread matches above, loose matches on Subject: below --
2026-01-19 14:31 Karthik Poosa
2026-01-20 13:38 ` Raag Jadav
2026-02-06  7:29   ` Poosa, Karthik

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox