All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [i-g-t 0/2] Add Spin support for XE
@ 2023-06-19  8:57 Bhanuprakash Modem
  2023-06-19  8:57 ` [igt-dev] [i-g-t 1/2] tests/kms_cursor_legacy: " Bhanuprakash Modem
                   ` (3 more replies)
  0 siblings, 4 replies; 11+ messages in thread
From: Bhanuprakash Modem @ 2023-06-19  8:57 UTC (permalink / raw)
  To: igt-dev

Add support to run spin tests on XE driver.

Bhanuprakash Modem (2):
  tests/kms_cursor_legacy: Add Spin support for XE
  tests/kms_cursor_legacy: Allow busy tests to run on XE

 tests/kms_cursor_legacy.c | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

--
2.40.0

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

* [igt-dev] [i-g-t 1/2] tests/kms_cursor_legacy: Add Spin support for XE
  2023-06-19  8:57 [igt-dev] [i-g-t 0/2] Add Spin support for XE Bhanuprakash Modem
@ 2023-06-19  8:57 ` Bhanuprakash Modem
  2023-06-22  4:46   ` Modem, Bhanuprakash
  2023-06-26 10:41   ` [igt-dev] [i-g-t, " Joshi, Kunal1
  2023-06-19  8:58 ` [igt-dev] [i-g-t 2/2] tests/kms_cursor_legacy: Allow busy tests to run on XE Bhanuprakash Modem
                   ` (2 subsequent siblings)
  3 siblings, 2 replies; 11+ messages in thread
From: Bhanuprakash Modem @ 2023-06-19  8:57 UTC (permalink / raw)
  To: igt-dev

To support the SPIN tests for XE, just need to fix the allocator
handle, since the same spin apis works for both i915 & XE.

Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/kms_cursor_legacy.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c
index f7a6202cf..1f0f3b7e6 100644
--- a/tests/kms_cursor_legacy.c
+++ b/tests/kms_cursor_legacy.c
@@ -595,7 +595,10 @@ static void basic_flip_cursor(igt_display_t *display,
 	if (flags & BASIC_BUSY)
 	{
 		igt_require_intel(display->drm_fd);
-		ahnd = get_reloc_ahnd(display->drm_fd, 0);
+
+		ahnd = is_i915_device(display->drm_fd) ?
+			get_reloc_ahnd(display->drm_fd, 0) :
+			intel_allocator_open(display->drm_fd, 0, INTEL_ALLOCATOR_RELOC);
 	}
 
 	if (mode >= flip_test_atomic)
@@ -1505,7 +1508,9 @@ static void flip_vs_cursor_busy_crc(igt_display_t *display, bool atomic)
 	igt_output_t *output;
 	igt_plane_t *cursor;
 
-	ahnd = get_reloc_ahnd(display->drm_fd, 0);
+	ahnd = is_i915_device(display->drm_fd) ?
+		get_reloc_ahnd(display->drm_fd, 0) :
+		intel_allocator_open(display->drm_fd, 0, INTEL_ALLOCATOR_RELOC);
 
 	if (atomic)
 		igt_require(display->is_atomic);
-- 
2.40.0

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

* [igt-dev] [i-g-t 2/2] tests/kms_cursor_legacy: Allow busy tests to run on XE
  2023-06-19  8:57 [igt-dev] [i-g-t 0/2] Add Spin support for XE Bhanuprakash Modem
  2023-06-19  8:57 ` [igt-dev] [i-g-t 1/2] tests/kms_cursor_legacy: " Bhanuprakash Modem
@ 2023-06-19  8:58 ` Bhanuprakash Modem
  2023-06-22  4:45   ` Modem, Bhanuprakash
  2023-06-26 10:42   ` [igt-dev] [i-g-t, " Joshi, Kunal1
  2023-06-19 17:56 ` [igt-dev] ✓ Fi.CI.BAT: success for Add Spin support for XE Patchwork
  2023-06-20  3:46 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  3 siblings, 2 replies; 11+ messages in thread
From: Bhanuprakash Modem @ 2023-06-19  8:58 UTC (permalink / raw)
  To: igt-dev

As busy tests supports both i915 & XE, update the intel specific
checks to allow them to run on XE.

Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
---
 tests/kms_cursor_legacy.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c
index 1f0f3b7e6..d55d96067 100644
--- a/tests/kms_cursor_legacy.c
+++ b/tests/kms_cursor_legacy.c
@@ -1752,7 +1752,7 @@ igt_main
 	igt_describe("this test perform a busy bo update followed by a cursor update");
 	igt_subtest_group {
 		igt_fixture {
-			igt_require_i915(display.drm_fd);
+			igt_require_intel(display.drm_fd);
 			igt_require_pipe_crc(display.drm_fd);
 			igt_display_require_output(&display);
 		}
-- 
2.40.0

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

* [igt-dev] ✓ Fi.CI.BAT: success for Add Spin support for XE
  2023-06-19  8:57 [igt-dev] [i-g-t 0/2] Add Spin support for XE Bhanuprakash Modem
  2023-06-19  8:57 ` [igt-dev] [i-g-t 1/2] tests/kms_cursor_legacy: " Bhanuprakash Modem
  2023-06-19  8:58 ` [igt-dev] [i-g-t 2/2] tests/kms_cursor_legacy: Allow busy tests to run on XE Bhanuprakash Modem
@ 2023-06-19 17:56 ` Patchwork
  2023-06-20  3:46 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  3 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-06-19 17:56 UTC (permalink / raw)
  To: Bhanuprakash Modem; +Cc: igt-dev

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

== Series Details ==

Series: Add Spin support for XE
URL   : https://patchwork.freedesktop.org/series/119518/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_13289 -> IGTPW_9206
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/index.html

Participating hosts (41 -> 43)
------------------------------

  Additional (3): fi-tgl-1115g4 bat-dg1-8 fi-pnv-d510 
  Missing    (1): fi-snb-2520m 

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

  Here are the unknown changes that may have been introduced in IGTPW_9206:

### IGT changes ###

#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@xe_compute@compute-square:
    - {bat-dg1-8}:        NOTRUN -> [SKIP][1] +2 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/bat-dg1-8/igt@xe_compute@compute-square.html

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

  Here are the changes found in IGTPW_9206 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@debugfs_test@basic-hwmon:
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][2] ([i915#7456])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/fi-tgl-1115g4/igt@debugfs_test@basic-hwmon.html

  * igt@gem_exec_suspend@basic-s0@smem:
    - bat-jsl-3:          [PASS][3] -> [ABORT][4] ([i915#5122])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html

  * igt@gem_huc_copy@huc-copy:
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][5] ([i915#2190])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/fi-tgl-1115g4/igt@gem_huc_copy@huc-copy.html

  * igt@gem_lmem_swapping@parallel-random-engines:
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][6] ([i915#4613]) +3 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/fi-tgl-1115g4/igt@gem_lmem_swapping@parallel-random-engines.html

  * igt@i915_pm_backlight@basic-brightness:
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][7] ([i915#3546] / [i915#7561])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/fi-tgl-1115g4/igt@i915_pm_backlight@basic-brightness.html

  * igt@i915_selftest@live@gt_lrc:
    - bat-rpls-1:         [PASS][8] -> [INCOMPLETE][9] ([i915#4983])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/bat-rpls-1/igt@i915_selftest@live@gt_lrc.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/bat-rpls-1/igt@i915_selftest@live@gt_lrc.html

  * igt@i915_suspend@basic-s3-without-i915:
    - fi-tgl-1115g4:      NOTRUN -> [INCOMPLETE][10] ([i915#7443] / [i915#8102])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html
    - bat-jsl-3:          [PASS][11] -> [FAIL][12] ([fdo#103375])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
    - bat-atsm-1:         NOTRUN -> [SKIP][13] ([i915#6645])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/bat-atsm-1/igt@i915_suspend@basic-s3-without-i915.html

  * igt@kms_chamelium_frames@dp-crc-fast:
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][14] ([i915#7828]) +7 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/fi-tgl-1115g4/igt@kms_chamelium_frames@dp-crc-fast.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - bat-atsm-1:         NOTRUN -> [SKIP][15] ([i915#6078])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/bat-atsm-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][16] ([i915#4103]) +1 similar issue
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/fi-tgl-1115g4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html

  * igt@kms_force_connector_basic@force-load-detect:
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][17] ([fdo#109285])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/fi-tgl-1115g4/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - bat-atsm-1:         NOTRUN -> [SKIP][18] ([i915#1836])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/bat-atsm-1/igt@kms_pipe_crc_basic@suspend-read-crc.html

  * igt@kms_psr@primary_page_flip:
    - fi-pnv-d510:        NOTRUN -> [SKIP][19] ([fdo#109271]) +37 similar issues
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/fi-pnv-d510/igt@kms_psr@primary_page_flip.html
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][20] ([fdo#110189]) +3 similar issues
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/fi-tgl-1115g4/igt@kms_psr@primary_page_flip.html

  * igt@kms_setmode@basic-clone-single-crtc:
    - fi-tgl-1115g4:      NOTRUN -> [SKIP][21] ([i915#3555] / [i915#4579])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/fi-tgl-1115g4/igt@kms_setmode@basic-clone-single-crtc.html
    - fi-pnv-d510:        NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#4579])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/fi-pnv-d510/igt@kms_setmode@basic-clone-single-crtc.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@gt_mocs:
    - bat-mtlp-6:         [DMESG-FAIL][23] ([i915#7059]) -> [PASS][24]
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html

  * igt@i915_selftest@live@requests:
    - bat-mtlp-8:         [DMESG-FAIL][25] ([i915#8497]) -> [PASS][26]
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/bat-mtlp-8/igt@i915_selftest@live@requests.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/bat-mtlp-8/igt@i915_selftest@live@requests.html

  * igt@i915_selftest@live@slpc:
    - bat-mtlp-6:         [DMESG-WARN][27] ([i915#6367]) -> [PASS][28]
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/bat-mtlp-6/igt@i915_selftest@live@slpc.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/bat-mtlp-6/igt@i915_selftest@live@slpc.html
    - bat-rpls-2:         [DMESG-WARN][29] ([i915#6367]) -> [PASS][30]
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/bat-rpls-2/igt@i915_selftest@live@slpc.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/bat-rpls-2/igt@i915_selftest@live@slpc.html

  
#### Warnings ####

  * igt@i915_module_load@load:
    - bat-adlp-11:        [DMESG-WARN][31] ([i915#4423]) -> [ABORT][32] ([i915#4423])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/bat-adlp-11/igt@i915_module_load@load.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/bat-adlp-11/igt@i915_module_load@load.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
  [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
  [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
  [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
  [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
  [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
  [i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078
  [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
  [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
  [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
  [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443
  [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
  [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#8102]: https://gitlab.freedesktop.org/drm/intel/issues/8102
  [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
  [i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497
  [i915#8513]: https://gitlab.freedesktop.org/drm/intel/issues/8513
  [i915#8676]: https://gitlab.freedesktop.org/drm/intel/issues/8676
  [i915#8678]: https://gitlab.freedesktop.org/drm/intel/issues/8678
  [i915#8679]: https://gitlab.freedesktop.org/drm/intel/issues/8679


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7338 -> IGTPW_9206

  CI-20190529: 20190529
  CI_DRM_13289: 32e260cd0d16cee6f33e747679f168d63ea54bf6 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_9206: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/index.html
  IGT_7338: 4f2f4b61eafc613ec58fd07bb11be7072b41c6bf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


Testlist changes
----------------

-igt@xe_exec_basic@many-engines-many-vm-null
-igt@xe_exec_basic@many-engines-many-vm-null-defer-bind
-igt@xe_exec_basic@many-engines-many-vm-null-defer-mmap
-igt@xe_exec_basic@many-engines-many-vm-null-rebind
-igt@xe_exec_basic@many-engines-null
-igt@xe_exec_basic@many-engines-null-defer-bind
-igt@xe_exec_basic@many-engines-null-defer-mmap
-igt@xe_exec_basic@many-engines-null-rebind
-igt@xe_exec_basic@many-null
-igt@xe_exec_basic@many-null-defer-bind
-igt@xe_exec_basic@many-null-defer-mmap
-igt@xe_exec_basic@many-null-rebind
-igt@xe_exec_basic@no-exec-null
-igt@xe_exec_basic@no-exec-null-defer-bind
-igt@xe_exec_basic@no-exec-null-defer-mmap
-igt@xe_exec_basic@no-exec-null-rebind
-igt@xe_exec_basic@once-null
-igt@xe_exec_basic@once-null-defer-bind
-igt@xe_exec_basic@once-null-defer-mmap
-igt@xe_exec_basic@once-null-rebind
-igt@xe_exec_basic@twice-null
-igt@xe_exec_basic@twice-null-defer-bind
-igt@xe_exec_basic@twice-null-defer-mmap
-igt@xe_exec_basic@twice-null-rebind

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/index.html

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for Add Spin support for XE
  2023-06-19  8:57 [igt-dev] [i-g-t 0/2] Add Spin support for XE Bhanuprakash Modem
                   ` (2 preceding siblings ...)
  2023-06-19 17:56 ` [igt-dev] ✓ Fi.CI.BAT: success for Add Spin support for XE Patchwork
@ 2023-06-20  3:46 ` Patchwork
  3 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-06-20  3:46 UTC (permalink / raw)
  To: Bhanuprakash Modem; +Cc: igt-dev

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

== Series Details ==

Series: Add Spin support for XE
URL   : https://patchwork.freedesktop.org/series/119518/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_13289_full -> IGTPW_9206_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/index.html

Participating hosts (7 -> 7)
------------------------------

  No changes in participating hosts

New tests
---------

  New tests have been introduced between CI_DRM_13289_full and IGTPW_9206_full:

### New IGT tests (4) ###

  * igt@kms_plane_lowres@tiling-y@pipe-a-hdmi-a-3:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_plane_lowres@tiling-y@pipe-b-hdmi-a-3:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_plane_lowres@tiling-y@pipe-c-hdmi-a-3:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  * igt@kms_plane_lowres@tiling-y@pipe-d-hdmi-a-3:
    - Statuses : 1 pass(s)
    - Exec time: [0.0] s

  

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

  Here are the changes found in IGTPW_9206_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_close_race@multigpu-basic-threads:
    - shard-rkl:          NOTRUN -> [SKIP][1] ([i915#7697])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-4/igt@gem_close_race@multigpu-basic-threads.html

  * igt@gem_ctx_exec@basic-nohangcheck:
    - shard-rkl:          [PASS][2] -> [FAIL][3] ([i915#6268])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html

  * igt@gem_ctx_sseu@invalid-sseu:
    - shard-rkl:          NOTRUN -> [SKIP][4] ([i915#280])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-1/igt@gem_ctx_sseu@invalid-sseu.html

  * igt@gem_exec_balancer@parallel-balancer:
    - shard-rkl:          NOTRUN -> [SKIP][5] ([i915#4525]) +1 similar issue
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-7/igt@gem_exec_balancer@parallel-balancer.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-rkl:          [PASS][6] -> [FAIL][7] ([i915#2846])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none-solo@rcs0:
    - shard-apl:          [PASS][8] -> [FAIL][9] ([i915#2842])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-apl2/igt@gem_exec_fair@basic-none-solo@rcs0.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html
    - shard-rkl:          NOTRUN -> [FAIL][10] ([i915#2842])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-4/igt@gem_exec_fair@basic-none-solo@rcs0.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-rkl:          [PASS][11] -> [FAIL][12] ([i915#2842])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-rkl-7/igt@gem_exec_fair@basic-none@vcs0.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-6/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_reloc@basic-cpu-read:
    - shard-rkl:          NOTRUN -> [SKIP][13] ([i915#3281]) +3 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-1/igt@gem_exec_reloc@basic-cpu-read.html

  * igt@gem_lmem_evict@dontneed-evict-race:
    - shard-tglu:         NOTRUN -> [SKIP][14] ([i915#4613] / [i915#7582])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-tglu-7/igt@gem_lmem_evict@dontneed-evict-race.html

  * igt@gem_lmem_swapping@random-engines:
    - shard-rkl:          NOTRUN -> [SKIP][15] ([i915#4613])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-6/igt@gem_lmem_swapping@random-engines.html

  * igt@gem_mmap_gtt@coherency:
    - shard-rkl:          NOTRUN -> [SKIP][16] ([fdo#111656])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-1/igt@gem_mmap_gtt@coherency.html

  * igt@gem_pxp@create-regular-context-1:
    - shard-rkl:          NOTRUN -> [SKIP][17] ([i915#4270]) +1 similar issue
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-6/igt@gem_pxp@create-regular-context-1.html

  * igt@gem_pxp@reject-modify-context-protection-off-3:
    - shard-snb:          NOTRUN -> [SKIP][18] ([fdo#109271]) +60 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-snb2/igt@gem_pxp@reject-modify-context-protection-off-3.html

  * igt@gem_userptr_blits@forbidden-operations:
    - shard-rkl:          NOTRUN -> [SKIP][19] ([i915#3282])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-4/igt@gem_userptr_blits@forbidden-operations.html

  * igt@gen7_exec_parse@chained-batch:
    - shard-rkl:          NOTRUN -> [SKIP][20] ([fdo#109289]) +1 similar issue
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-7/igt@gen7_exec_parse@chained-batch.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-tglu:         [PASS][21] -> [FAIL][22] ([i915#3989] / [i915#454])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-tglu-9/igt@i915_pm_dc@dc6-dpms.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-tglu-5/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_rpm@dpms-mode-unset-lpsp:
    - shard-rkl:          [PASS][23] -> [SKIP][24] ([i915#1397]) +3 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html

  * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs:
    - shard-rkl:          NOTRUN -> [SKIP][25] ([i915#8502]) +3 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-0:
    - shard-rkl:          NOTRUN -> [SKIP][26] ([i915#5286]) +1 similar issue
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
    - shard-rkl:          NOTRUN -> [SKIP][27] ([fdo#111614] / [i915#3638])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-7/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
    - shard-rkl:          NOTRUN -> [SKIP][28] ([fdo#110723]) +1 similar issue
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html

  * igt@kms_big_joiner@basic:
    - shard-rkl:          NOTRUN -> [SKIP][29] ([i915#2705])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-4/igt@kms_big_joiner@basic.html

  * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_mc_ccs:
    - shard-rkl:          NOTRUN -> [SKIP][30] ([i915#5354] / [i915#6095]) +4 similar issues
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-4/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_mc_ccs.html

  * igt@kms_ccs@pipe-a-bad-rotation-90-yf_tiled_ccs:
    - shard-tglu:         NOTRUN -> [SKIP][31] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-tglu-3/igt@kms_ccs@pipe-a-bad-rotation-90-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
    - shard-rkl:          NOTRUN -> [SKIP][32] ([i915#3886] / [i915#5354] / [i915#6095]) +2 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-4/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs:
    - shard-rkl:          NOTRUN -> [SKIP][33] ([i915#3734] / [i915#5354] / [i915#6095]) +1 similar issue
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-4/igt@kms_ccs@pipe-a-crc-primary-basic-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_mtl_rc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][34] ([fdo#109271]) +10 similar issues
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-apl6/igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_mtl_rc_ccs.html

  * igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_mc_ccs:
    - shard-rkl:          NOTRUN -> [SKIP][35] ([i915#5354]) +13 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-7/igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_mc_ccs.html

  * igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs:
    - shard-glk:          NOTRUN -> [SKIP][36] ([fdo#109271]) +16 similar issues
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-glk8/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs.html

  * igt@kms_cdclk@mode-transition:
    - shard-rkl:          NOTRUN -> [SKIP][37] ([i915#3742])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-2/igt@kms_cdclk@mode-transition.html

  * igt@kms_chamelium_color@degamma:
    - shard-rkl:          NOTRUN -> [SKIP][38] ([fdo#111827]) +1 similar issue
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-6/igt@kms_chamelium_color@degamma.html

  * igt@kms_chamelium_edid@vga-edid-read:
    - shard-tglu:         NOTRUN -> [SKIP][39] ([i915#7828]) +1 similar issue
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-tglu-2/igt@kms_chamelium_edid@vga-edid-read.html

  * igt@kms_chamelium_frames@vga-frame-dump:
    - shard-rkl:          NOTRUN -> [SKIP][40] ([i915#7828]) +3 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-6/igt@kms_chamelium_frames@vga-frame-dump.html

  * igt@kms_color@deep-color:
    - shard-rkl:          NOTRUN -> [SKIP][41] ([i915#3555] / [i915#4579]) +4 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-7/igt@kms_color@deep-color.html

  * igt@kms_content_protection@srm:
    - shard-rkl:          NOTRUN -> [SKIP][42] ([i915#4579] / [i915#7118])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-7/igt@kms_content_protection@srm.html

  * igt@kms_cursor_crc@cursor-rapid-movement-512x512:
    - shard-rkl:          NOTRUN -> [SKIP][43] ([i915#3359])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
    - shard-tglu:         NOTRUN -> [SKIP][44] ([fdo#109274])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-tglu-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
    - shard-rkl:          NOTRUN -> [SKIP][45] ([fdo#111825]) +6 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-glk:          [PASS][46] -> [FAIL][47] ([i915#2346]) +1 similar issue
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
    - shard-apl:          [PASS][48] -> [FAIL][49] ([i915#2346])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_dsc@dsc-with-bpc:
    - shard-rkl:          NOTRUN -> [SKIP][50] ([i915#3840] / [i915#4579])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html

  * igt@kms_fbcon_fbt@psr:
    - shard-rkl:          NOTRUN -> [SKIP][51] ([i915#3955])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-6/igt@kms_fbcon_fbt@psr.html

  * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp1:
    - shard-apl:          [PASS][52] -> [FAIL][53] ([i915#2122])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-apl2/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp1.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-apl4/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-dp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
    - shard-rkl:          NOTRUN -> [SKIP][54] ([i915#2672] / [i915#4579]) +3 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
    - shard-rkl:          NOTRUN -> [SKIP][55] ([i915#3023]) +11 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
    - shard-tglu:         NOTRUN -> [SKIP][56] ([fdo#109280])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu:
    - shard-tglu:         NOTRUN -> [SKIP][57] ([fdo#110189]) +2 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite:
    - shard-rkl:          NOTRUN -> [SKIP][58] ([fdo#111825] / [i915#1825]) +14 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html

  * igt@kms_hdr@invalid-metadata-sizes:
    - shard-rkl:          NOTRUN -> [SKIP][59] ([i915#4579] / [i915#6953] / [i915#8228])
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-6/igt@kms_hdr@invalid-metadata-sizes.html

  * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
    - shard-tglu:         [PASS][60] -> [FAIL][61] ([i915#8292])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-tglu-5/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-tglu-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html

  * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][62] ([i915#5176]) +1 similar issue
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2.html

  * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2:
    - shard-rkl:          NOTRUN -> [SKIP][63] ([i915#4579] / [i915#5176]) +1 similar issue
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-dp-1:
    - shard-apl:          NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#4579])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-apl2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-dp-1.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1:
    - shard-glk:          NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#4579]) +1 similar issue
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-glk1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-b-vga-1:
    - shard-snb:          NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#4579]) +8 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-snb2/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-b-vga-1.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][67] ([i915#5235]) +2 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1.html

  * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1:
    - shard-rkl:          NOTRUN -> [SKIP][68] ([i915#4579] / [i915#5235]) +2 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
    - shard-rkl:          NOTRUN -> [SKIP][69] ([i915#658])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html

  * igt@kms_psr@psr2_sprite_blt:
    - shard-rkl:          NOTRUN -> [SKIP][70] ([i915#1072]) +1 similar issue
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-7/igt@kms_psr@psr2_sprite_blt.html

  * igt@kms_rotation_crc@sprite-rotation-270:
    - shard-rkl:          [PASS][71] -> [ABORT][72] ([i915#7461])
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-rkl-4/igt@kms_rotation_crc@sprite-rotation-270.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-6/igt@kms_rotation_crc@sprite-rotation-270.html

  * igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm:
    - shard-rkl:          NOTRUN -> [SKIP][73] ([i915#4070] / [i915#6768]) +2 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-1/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html

  * igt@kms_vblank@pipe-d-query-forked:
    - shard-rkl:          NOTRUN -> [SKIP][74] ([i915#4070] / [i915#533] / [i915#6768])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-2/igt@kms_vblank@pipe-d-query-forked.html

  * igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend:
    - shard-tglu:         [PASS][75] -> [ABORT][76] ([i915#5122])
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-tglu-8/igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-tglu-9/igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-rkl:          NOTRUN -> [SKIP][77] ([i915#2437])
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-6/igt@kms_writeback@writeback-pixel-formats.html

  * igt@perf_pmu@event-wait@rcs0:
    - shard-rkl:          NOTRUN -> [SKIP][78] ([fdo#112283] / [i915#4579])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-2/igt@perf_pmu@event-wait@rcs0.html

  * igt@prime_udl:
    - shard-tglu:         NOTRUN -> [SKIP][79] ([fdo#109291])
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-tglu-2/igt@prime_udl.html
    - shard-rkl:          NOTRUN -> [SKIP][80] ([fdo#109291])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-7/igt@prime_udl.html

  * igt@v3d/v3d_submit_cl@multi-and-single-sync:
    - shard-rkl:          NOTRUN -> [SKIP][81] ([fdo#109315]) +7 similar issues
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-4/igt@v3d/v3d_submit_cl@multi-and-single-sync.html

  * igt@v3d/v3d_wait_bo@used-bo-1ns:
    - shard-tglu:         NOTRUN -> [SKIP][82] ([fdo#109315] / [i915#2575])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-tglu-6/igt@v3d/v3d_wait_bo@used-bo-1ns.html

  * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained:
    - shard-tglu:         NOTRUN -> [SKIP][83] ([i915#2575])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-tglu-7/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html

  * igt@vc4/vc4_tiling@get-bad-flags:
    - shard-rkl:          NOTRUN -> [SKIP][84] ([i915#7711]) +2 similar issues
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-6/igt@vc4/vc4_tiling@get-bad-flags.html

  
#### Possible fixes ####

  * igt@gem_exec_fair@basic-pace@rcs0:
    - shard-rkl:          [FAIL][85] ([i915#2842]) -> [PASS][86]
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-tglu:         [FAIL][87] ([i915#2842]) -> [PASS][88]
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-tglu-9/igt@gem_exec_fair@basic-throttle@rcs0.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-tglu-3/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_mmap_gtt@fault-concurrent-x:
    - shard-snb:          [ABORT][89] ([i915#5161]) -> [PASS][90]
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-snb4/igt@gem_mmap_gtt@fault-concurrent-x.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-snb1/igt@gem_mmap_gtt@fault-concurrent-x.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-apl:          [SKIP][91] ([fdo#109271]) -> [PASS][92]
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-apl2/igt@i915_pm_dc@dc9-dpms.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-apl6/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_rc6_residency@rc6-idle@vecs0:
    - {shard-dg1}:        [FAIL][93] ([i915#3591]) -> [PASS][94]
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress:
    - {shard-dg1}:        [SKIP][95] ([i915#1397]) -> [PASS][96]
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-dg1-14/igt@i915_pm_rpm@modeset-non-lpsp-stress.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-rkl:          [FAIL][97] ([i915#3743]) -> [PASS][98] +1 similar issue
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-rkl-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_cursor_legacy@single-bo@pipe-b:
    - {shard-dg1}:        [INCOMPLETE][99] ([i915#8011] / [i915#8347]) -> [PASS][100]
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-dg1-19/igt@kms_cursor_legacy@single-bo@pipe-b.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-dg1-16/igt@kms_cursor_legacy@single-bo@pipe-b.html

  * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
    - shard-rkl:          [ABORT][101] ([i915#7461]) -> [PASS][102]
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-rkl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html

  * igt@perf_pmu@rc6-suspend:
    - shard-apl:          [ABORT][103] ([i915#180]) -> [PASS][104]
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-apl2/igt@perf_pmu@rc6-suspend.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-apl1/igt@perf_pmu@rc6-suspend.html

  * igt@syncobj_timeline@multi-wait-for-submit-available-signaled:
    - {shard-dg1}:        [DMESG-WARN][105] ([i915#4423]) -> [PASS][106]
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-dg1-18/igt@syncobj_timeline@multi-wait-for-submit-available-signaled.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-dg1-18/igt@syncobj_timeline@multi-wait-for-submit-available-signaled.html

  
#### Warnings ####

  * igt@i915_pm_rc6_residency@rc6-idle@rcs0:
    - shard-tglu:         [FAIL][107] ([i915#2681] / [i915#3591]) -> [WARN][108] ([i915#2681])
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html

  * igt@kms_content_protection@mei_interface:
    - shard-rkl:          [SKIP][109] ([fdo#109300]) -> [SKIP][110] ([i915#4579] / [i915#7118])
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-rkl-1/igt@kms_content_protection@mei_interface.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-6/igt@kms_content_protection@mei_interface.html
    - shard-apl:          [SKIP][111] ([fdo#109271]) -> [SKIP][112] ([fdo#109271] / [i915#4579])
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-apl2/igt@kms_content_protection@mei_interface.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-apl1/igt@kms_content_protection@mei_interface.html
    - shard-snb:          [SKIP][113] ([fdo#109271]) -> [SKIP][114] ([fdo#109271] / [i915#4579])
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-snb4/igt@kms_content_protection@mei_interface.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-snb1/igt@kms_content_protection@mei_interface.html
    - shard-tglu:         [SKIP][115] ([fdo#109300]) -> [SKIP][116] ([i915#4579] / [i915#6944] / [i915#7116] / [i915#7118])
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-tglu-8/igt@kms_content_protection@mei_interface.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-tglu-4/igt@kms_content_protection@mei_interface.html
    - shard-glk:          [SKIP][117] ([fdo#109271]) -> [SKIP][118] ([fdo#109271] / [i915#4579])
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-glk7/igt@kms_content_protection@mei_interface.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-glk4/igt@kms_content_protection@mei_interface.html

  * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
    - shard-rkl:          [SKIP][119] ([i915#4070] / [i915#4816]) -> [SKIP][120] ([i915#4816])
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13289/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
  [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
  [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
  [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
  [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
  [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
  [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
  [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
  [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
  [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
  [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
  [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
  [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
  [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
  [i915#5161]: https://gitlab.freedesktop.org/drm/intel/issues/5161
  [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
  [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
  [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
  [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
  [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6724]: https://gitlab.freedesktop.org/drm/intel/issues/6724
  [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
  [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
  [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
  [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
  [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
  [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582
  [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
  [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#7863]: https://gitlab.freedesktop.org/drm/intel/issues/7863
  [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011
  [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
  [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
  [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347
  [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
  [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
  [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7338 -> IGTPW_9206
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_13289: 32e260cd0d16cee6f33e747679f168d63ea54bf6 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_9206: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/index.html
  IGT_7338: 4f2f4b61eafc613ec58fd07bb11be7072b41c6bf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9206/index.html

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

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

* Re: [igt-dev] [i-g-t 2/2] tests/kms_cursor_legacy: Allow busy tests to run on XE
  2023-06-19  8:58 ` [igt-dev] [i-g-t 2/2] tests/kms_cursor_legacy: Allow busy tests to run on XE Bhanuprakash Modem
@ 2023-06-22  4:45   ` Modem, Bhanuprakash
  2023-06-22  6:13     ` Ch, Sai Gowtham
  2023-06-26 10:42   ` [igt-dev] [i-g-t, " Joshi, Kunal1
  1 sibling, 1 reply; 11+ messages in thread
From: Modem, Bhanuprakash @ 2023-06-22  4:45 UTC (permalink / raw)
  To: igt-dev, Ch, Sai Gowtham


On Mon-19-06-2023 02:28 pm, Bhanuprakash Modem wrote:
> As busy tests supports both i915 & XE, update the intel specific
> checks to allow them to run on XE.
> 
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>

Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com>

> ---
>   tests/kms_cursor_legacy.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c
> index 1f0f3b7e6..d55d96067 100644
> --- a/tests/kms_cursor_legacy.c
> +++ b/tests/kms_cursor_legacy.c
> @@ -1752,7 +1752,7 @@ igt_main
>   	igt_describe("this test perform a busy bo update followed by a cursor update");
>   	igt_subtest_group {
>   		igt_fixture {
> -			igt_require_i915(display.drm_fd);
> +			igt_require_intel(display.drm_fd);
>   			igt_require_pipe_crc(display.drm_fd);
>   			igt_display_require_output(&display);
>   		}

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

* Re: [igt-dev] [i-g-t 1/2] tests/kms_cursor_legacy: Add Spin support for XE
  2023-06-19  8:57 ` [igt-dev] [i-g-t 1/2] tests/kms_cursor_legacy: " Bhanuprakash Modem
@ 2023-06-22  4:46   ` Modem, Bhanuprakash
  2023-06-22  6:14     ` Ch, Sai Gowtham
  2023-06-26 10:41   ` [igt-dev] [i-g-t, " Joshi, Kunal1
  1 sibling, 1 reply; 11+ messages in thread
From: Modem, Bhanuprakash @ 2023-06-22  4:46 UTC (permalink / raw)
  To: igt-dev, Ch, Sai Gowtham


On Mon-19-06-2023 02:27 pm, Bhanuprakash Modem wrote:
> To support the SPIN tests for XE, just need to fix the allocator
> handle, since the same spin apis works for both i915 & XE.
> 
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>

Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com>

> ---
>   tests/kms_cursor_legacy.c | 9 +++++++--
>   1 file changed, 7 insertions(+), 2 deletions(-)
> 
> diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c
> index f7a6202cf..1f0f3b7e6 100644
> --- a/tests/kms_cursor_legacy.c
> +++ b/tests/kms_cursor_legacy.c
> @@ -595,7 +595,10 @@ static void basic_flip_cursor(igt_display_t *display,
>   	if (flags & BASIC_BUSY)
>   	{
>   		igt_require_intel(display->drm_fd);
> -		ahnd = get_reloc_ahnd(display->drm_fd, 0);
> +
> +		ahnd = is_i915_device(display->drm_fd) ?
> +			get_reloc_ahnd(display->drm_fd, 0) :
> +			intel_allocator_open(display->drm_fd, 0, INTEL_ALLOCATOR_RELOC);
>   	}
>   
>   	if (mode >= flip_test_atomic)
> @@ -1505,7 +1508,9 @@ static void flip_vs_cursor_busy_crc(igt_display_t *display, bool atomic)
>   	igt_output_t *output;
>   	igt_plane_t *cursor;
>   
> -	ahnd = get_reloc_ahnd(display->drm_fd, 0);
> +	ahnd = is_i915_device(display->drm_fd) ?
> +		get_reloc_ahnd(display->drm_fd, 0) :
> +		intel_allocator_open(display->drm_fd, 0, INTEL_ALLOCATOR_RELOC);
>   
>   	if (atomic)
>   		igt_require(display->is_atomic);

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

* Re: [igt-dev] [i-g-t 2/2] tests/kms_cursor_legacy: Allow busy tests to run on XE
  2023-06-22  4:45   ` Modem, Bhanuprakash
@ 2023-06-22  6:13     ` Ch, Sai Gowtham
  0 siblings, 0 replies; 11+ messages in thread
From: Ch, Sai Gowtham @ 2023-06-22  6:13 UTC (permalink / raw)
  To: Modem, Bhanuprakash, igt-dev

LGTM 
Acked-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com>

> -----Original Message-----
> From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Sent: Thursday, June 22, 2023 10:16 AM
> To: igt-dev@lists.freedesktop.org; Ch, Sai Gowtham
> <sai.gowtham.ch@intel.com>
> Subject: Re: [i-g-t 2/2] tests/kms_cursor_legacy: Allow busy tests to run on XE
> 
> 
> On Mon-19-06-2023 02:28 pm, Bhanuprakash Modem wrote:
> > As busy tests supports both i915 & XE, update the intel specific
> > checks to allow them to run on XE.
> >
> > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> 
> Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
> 
> > ---
> >   tests/kms_cursor_legacy.c | 2 +-
> >   1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c
> > index 1f0f3b7e6..d55d96067 100644
> > --- a/tests/kms_cursor_legacy.c
> > +++ b/tests/kms_cursor_legacy.c
> > @@ -1752,7 +1752,7 @@ igt_main
> >   	igt_describe("this test perform a busy bo update followed by a cursor
> update");
> >   	igt_subtest_group {
> >   		igt_fixture {
> > -			igt_require_i915(display.drm_fd);
> > +			igt_require_intel(display.drm_fd);
> >   			igt_require_pipe_crc(display.drm_fd);
> >   			igt_display_require_output(&display);
> >   		}

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

* Re: [igt-dev] [i-g-t 1/2] tests/kms_cursor_legacy: Add Spin support for XE
  2023-06-22  4:46   ` Modem, Bhanuprakash
@ 2023-06-22  6:14     ` Ch, Sai Gowtham
  0 siblings, 0 replies; 11+ messages in thread
From: Ch, Sai Gowtham @ 2023-06-22  6:14 UTC (permalink / raw)
  To: Modem, Bhanuprakash, igt-dev


> -----Original Message-----
> From: Modem, Bhanuprakash <bhanuprakash.modem@intel.com>
> Sent: Thursday, June 22, 2023 10:16 AM
> To: igt-dev@lists.freedesktop.org; Ch, Sai Gowtham
> <sai.gowtham.ch@intel.com>
> Subject: Re: [i-g-t 1/2] tests/kms_cursor_legacy: Add Spin support for XE
> 
> 
> On Mon-19-06-2023 02:27 pm, Bhanuprakash Modem wrote:
> > To support the SPIN tests for XE, just need to fix the allocator
> > handle, since the same spin apis works for both i915 & XE.
> >
> > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> 
> Cc: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
> 
> > ---
> >   tests/kms_cursor_legacy.c | 9 +++++++--
> >   1 file changed, 7 insertions(+), 2 deletions(-)
> >
> > diff --git a/tests/kms_cursor_legacy.c b/tests/kms_cursor_legacy.c
> > index f7a6202cf..1f0f3b7e6 100644
> > --- a/tests/kms_cursor_legacy.c
> > +++ b/tests/kms_cursor_legacy.c
> > @@ -595,7 +595,10 @@ static void basic_flip_cursor(igt_display_t *display,
> >   	if (flags & BASIC_BUSY)
> >   	{
> >   		igt_require_intel(display->drm_fd);
> > -		ahnd = get_reloc_ahnd(display->drm_fd, 0);
> > +
> > +		ahnd = is_i915_device(display->drm_fd) ?
> > +			get_reloc_ahnd(display->drm_fd, 0) :
> > +			intel_allocator_open(display->drm_fd, 0,
> INTEL_ALLOCATOR_RELOC);
> >   	}
> >
> >   	if (mode >= flip_test_atomic)
> > @@ -1505,7 +1508,9 @@ static void flip_vs_cursor_busy_crc(igt_display_t
> *display, bool atomic)
> >   	igt_output_t *output;
> >   	igt_plane_t *cursor;
> >
> > -	ahnd = get_reloc_ahnd(display->drm_fd, 0);
> > +	ahnd = is_i915_device(display->drm_fd) ?
> > +		get_reloc_ahnd(display->drm_fd, 0) :
> > +		intel_allocator_open(display->drm_fd, 0,
> INTEL_ALLOCATOR_RELOC);
LGTM, However be aware we are not using dependency_handle in spinner.

Acked-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
> >
> >   	if (atomic)
> >   		igt_require(display->is_atomic);

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

* Re: [igt-dev] [i-g-t, 1/2] tests/kms_cursor_legacy: Add Spin support for XE
  2023-06-19  8:57 ` [igt-dev] [i-g-t 1/2] tests/kms_cursor_legacy: " Bhanuprakash Modem
  2023-06-22  4:46   ` Modem, Bhanuprakash
@ 2023-06-26 10:41   ` Joshi, Kunal1
  1 sibling, 0 replies; 11+ messages in thread
From: Joshi, Kunal1 @ 2023-06-26 10:41 UTC (permalink / raw)
  To: Bhanuprakash Modem, igt-dev


On 6/19/2023 2:27 PM, Bhanuprakash Modem wrote:
> To support the SPIN tests for XE, just need to fix the allocator
> handle, since the same spin apis works for both i915 & XE.
>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> Acked-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>

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

* Re: [igt-dev] [i-g-t, 2/2] tests/kms_cursor_legacy: Allow busy tests to run on XE
  2023-06-19  8:58 ` [igt-dev] [i-g-t 2/2] tests/kms_cursor_legacy: Allow busy tests to run on XE Bhanuprakash Modem
  2023-06-22  4:45   ` Modem, Bhanuprakash
@ 2023-06-26 10:42   ` Joshi, Kunal1
  1 sibling, 0 replies; 11+ messages in thread
From: Joshi, Kunal1 @ 2023-06-26 10:42 UTC (permalink / raw)
  To: Bhanuprakash Modem, igt-dev


On 6/19/2023 2:28 PM, Bhanuprakash Modem wrote:
> As busy tests supports both i915 & XE, update the intel specific
> checks to allow them to run on XE.
>
> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
> Acked-by: Sai Gowtham Ch <sai.gowtham.ch@intel.com>
Reviewed-by: Kunal Joshi <kunal1.joshi@intel.com>

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

end of thread, other threads:[~2023-06-26 10:42 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-19  8:57 [igt-dev] [i-g-t 0/2] Add Spin support for XE Bhanuprakash Modem
2023-06-19  8:57 ` [igt-dev] [i-g-t 1/2] tests/kms_cursor_legacy: " Bhanuprakash Modem
2023-06-22  4:46   ` Modem, Bhanuprakash
2023-06-22  6:14     ` Ch, Sai Gowtham
2023-06-26 10:41   ` [igt-dev] [i-g-t, " Joshi, Kunal1
2023-06-19  8:58 ` [igt-dev] [i-g-t 2/2] tests/kms_cursor_legacy: Allow busy tests to run on XE Bhanuprakash Modem
2023-06-22  4:45   ` Modem, Bhanuprakash
2023-06-22  6:13     ` Ch, Sai Gowtham
2023-06-26 10:42   ` [igt-dev] [i-g-t, " Joshi, Kunal1
2023-06-19 17:56 ` [igt-dev] ✓ Fi.CI.BAT: success for Add Spin support for XE Patchwork
2023-06-20  3:46 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.