* Re: [PATCH i-g-t v7 5/5] tests/intel/xe_ccs: Add compression support for Lunarlake
2023-12-15 19:41 ` [PATCH i-g-t v7 5/5] tests/intel/xe_ccs: Add compression support for Lunarlake Akshata Jahagirdar
@ 2023-12-15 8:11 ` Zbigniew Kempczyński
0 siblings, 0 replies; 10+ messages in thread
From: Zbigniew Kempczyński @ 2023-12-15 8:11 UTC (permalink / raw)
To: Akshata Jahagirdar
Cc: igt-dev, matthew.auld, ayaz.siddiqui, akshata.jahagirdar
On Fri, Dec 15, 2023 at 11:41:49AM -0800, Akshata Jahagirdar wrote:
> In XE2 IGFX platform only sysmem participates in compression.
> So for XE2 IGFX platform, create all blt objects in sysmem itself,
> For other platform, it will stay the same way as per pervious implementation.
> Also update the pat-index to reflect the compression status.
> Alter the range to default_alignment before vm bind/unbind operation to
> align the buffer object size with page size.
>
> Signed-off-by: Akshata Jahagirdar <akshata.jahagirdar@intel.com>
> ---
> lib/xe/xe_util.c | 2 +-
> tests/intel/xe_ccs.c | 38 ++++++++++++++++++++++++--------------
> 2 files changed, 25 insertions(+), 15 deletions(-)
>
> diff --git a/lib/xe/xe_util.c b/lib/xe/xe_util.c
> index ba8eece71..42cac9dc2 100644
> --- a/lib/xe/xe_util.c
> +++ b/lib/xe/xe_util.c
> @@ -148,7 +148,7 @@ static struct drm_xe_vm_bind_op *xe_alloc_bind_ops(int xe,
> ops->flags = flags;
> ops->obj_offset = 0;
> ops->addr = obj->offset;
> - ops->range = obj->size;
> + ops->range = ALIGN(obj->size, xe_get_default_alignment(xe));
Objects in system memory might be 4K, whereas xe_get_default_alignment()
will return 64K for device memory on discrete (then it will fail). I would
align to 4K as this should be safe both for system and device memory.
Apart of this I would separate this change (single line) to another
patch.
--
Zbigniew
> ops->prefetch_mem_region_instance = 0;
> if (obj->pat_index == DEFAULT_PAT_INDEX)
> ops->pat_index = intel_get_pat_idx_wb(xe);
> diff --git a/tests/intel/xe_ccs.c b/tests/intel/xe_ccs.c
> index ac0805017..1444b7a66 100644
> --- a/tests/intel/xe_ccs.c
> +++ b/tests/intel/xe_ccs.c
> @@ -96,20 +96,27 @@ static void surf_copy(int xe,
> struct blt_ctrl_surf_copy_data surf = {};
> uint32_t bb1, bb2, ccs, ccs2, *ccsmap, *ccsmap2;
> uint64_t bb_size, ccssize = mid->size / CCS_RATIO(xe);
> + uint64_t ccs_bo_size = xe_get_default_alignment(xe);
> uint32_t *ccscopy;
> uint8_t uc_mocs = intel_get_uc_mocs_index(xe);
> uint32_t sysmem = system_memory(xe);
> + uint8_t comp_pat_index = DEFAULT_PAT_INDEX;
> + uint16_t cpu_caching = __xe_default_cpu_caching(xe, sysmem, 0);
> int result;
>
> igt_assert(mid->compression);
> + if (AT_LEAST_GEN(intel_get_drm_devid(xe), 20) && mid->compression) {
> + comp_pat_index = intel_get_pat_idx_uc_comp(xe);
> + cpu_caching = DRM_XE_GEM_CPU_CACHING_WC;
> + }
> ccscopy = (uint32_t *) malloc(ccssize);
> - ccs = xe_bo_create(xe, 0, ccssize, sysmem, 0);
> - ccs2 = xe_bo_create(xe, 0, ccssize, sysmem, 0);
> + ccs = xe_bo_create_caching(xe, 0, ccs_bo_size, sysmem, 0, cpu_caching);
> + ccs2 = xe_bo_create_caching(xe, 0, ccs_bo_size, sysmem, 0, cpu_caching);
>
> blt_ctrl_surf_copy_init(xe, &surf);
> surf.print_bb = param.print_bb;
> blt_set_ctrl_surf_object(&surf.src, mid->handle, mid->region, mid->size,
> - uc_mocs, DEFAULT_PAT_INDEX, BLT_INDIRECT_ACCESS);
> + uc_mocs, comp_pat_index, BLT_INDIRECT_ACCESS);
> blt_set_ctrl_surf_object(&surf.dst, ccs, sysmem, ccssize, uc_mocs,
> DEFAULT_PAT_INDEX, DIRECT_ACCESS);
> bb_size = xe_get_default_alignment(xe);
> @@ -157,7 +164,7 @@ static void surf_copy(int xe,
> blt_set_ctrl_surf_object(&surf.src, ccs, sysmem, ccssize,
> uc_mocs, DEFAULT_PAT_INDEX, DIRECT_ACCESS);
> blt_set_ctrl_surf_object(&surf.dst, mid->handle, mid->region, mid->size,
> - uc_mocs, DEFAULT_PAT_INDEX, INDIRECT_ACCESS);
> + uc_mocs, comp_pat_index, INDIRECT_ACCESS);
> blt_ctrl_surf_copy(xe, ctx, NULL, ahnd, &surf);
> intel_ctx_xe_sync(ctx, true);
>
> @@ -234,10 +241,10 @@ static int blt_block_copy3(int xe,
> igt_assert_f(blt3, "block-copy3 requires data to do blit\n");
>
> alignment = xe_get_default_alignment(xe);
> - get_offset(ahnd, blt3->src.handle, blt3->src.size, alignment);
> - get_offset(ahnd, blt3->mid.handle, blt3->mid.size, alignment);
> - get_offset(ahnd, blt3->dst.handle, blt3->dst.size, alignment);
> - get_offset(ahnd, blt3->final.handle, blt3->final.size, alignment);
> + get_offset_pat_index(ahnd, blt3->src.handle, blt3->src.size, alignment, blt3->src.pat_index);
> + get_offset_pat_index(ahnd, blt3->mid.handle, blt3->mid.size, alignment, blt3->mid.pat_index);
> + get_offset_pat_index(ahnd, blt3->dst.handle, blt3->dst.size, alignment, blt3->dst.pat_index);
> + get_offset_pat_index(ahnd, blt3->final.handle, blt3->final.size, alignment, blt3->final.pat_index);
> bb_offset = get_offset(ahnd, blt3->bb.handle, blt3->bb.size, alignment);
>
> /* First blit src -> mid */
> @@ -291,8 +298,9 @@ static void block_copy(int xe,
> uint64_t bb_size = xe_get_default_alignment(xe);
> uint64_t ahnd = intel_allocator_open(xe, ctx->vm, INTEL_ALLOCATOR_RELOC);
> uint32_t run_id = mid_tiling;
> - uint32_t mid_region = region2, bb;
> - uint32_t width = param.width, height = param.height;
> + uint32_t mid_region = (AT_LEAST_GEN(intel_get_drm_devid(xe), 20) &
> + !xe_has_vram(xe)) ? region1 : region2;
> + uint32_t width = param.width, height = param.height, bb;
> enum blt_compression mid_compression = config->compression;
> int mid_compression_format = param.compression_format;
> enum blt_compression_type comp_type = COMPRESSION_TYPE_3D;
> @@ -413,8 +421,9 @@ static void block_multicopy(int xe,
> uint64_t bb_size = xe_get_default_alignment(xe);
> uint64_t ahnd = intel_allocator_open(xe, ctx->vm, INTEL_ALLOCATOR_RELOC);
> uint32_t run_id = mid_tiling;
> - uint32_t mid_region = region2, bb;
> - uint32_t width = param.width, height = param.height;
> + uint32_t mid_region = (AT_LEAST_GEN(intel_get_drm_devid(xe), 20) &
> + !xe_has_vram(xe)) ? region1 : region2;
> + uint32_t width = param.width, height = param.height, bb;
> enum blt_compression mid_compression = config->compression;
> int mid_compression_format = param.compression_format;
> enum blt_compression_type comp_type = COMPRESSION_TYPE_3D;
> @@ -539,8 +548,9 @@ static void block_copy_test(int xe,
> region1 = igt_collection_get_value(regions, 0);
> region2 = igt_collection_get_value(regions, 1);
>
> - /* Compressed surface must be in device memory */
> - if (config->compression && !XE_IS_VRAM_MEMORY_REGION(xe, region2))
> + /* if not XE2, then Compressed surface must be in device memory */
> + if (config->compression && !(AT_LEAST_GEN((intel_get_drm_devid(xe)), 20)) &&
> + !XE_IS_VRAM_MEMORY_REGION(xe, region2))
> continue;
>
> regtxt = xe_memregion_dynamic_subtest_name(xe, regions);
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ CI.xeBAT: success for Compression support for Lunarlake
2023-12-15 19:41 [PATCH i-g-t v7 0/5] Compression support for Lunarlake Akshata Jahagirdar
@ 2023-12-15 9:55 ` Patchwork
2023-12-15 10:26 ` ✓ Fi.CI.BAT: " Patchwork
` (6 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2023-12-15 9:55 UTC (permalink / raw)
To: Akshata Jahagirdar; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3213 bytes --]
== Series Details ==
Series: Compression support for Lunarlake
URL : https://patchwork.freedesktop.org/series/127857/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7643_BAT -> XEIGTPW_10426_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_10426_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1:
- bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#480]) +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7643/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10426/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html
* igt@xe_create@create-execqueues-leak:
- bat-atsm-2: [PASS][3] -> [FAIL][4] ([Intel XE#524])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7643/bat-atsm-2/igt@xe_create@create-execqueues-leak.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10426/bat-atsm-2/igt@xe_create@create-execqueues-leak.html
#### Possible fixes ####
* igt@kms_cursor_legacy@basic-flip-before-cursor-atomic:
- bat-adlp-7: [FAIL][5] ([i915#2346]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7643/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10426/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-dg2-oem2: [FAIL][7] ([Intel XE#480]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7643/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10426/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@xe_create@create-execqueues-noleak:
- bat-adlp-7: [FAIL][9] ([Intel XE#524]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7643/bat-adlp-7/igt@xe_create@create-execqueues-noleak.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10426/bat-adlp-7/igt@xe_create@create-execqueues-noleak.html
[Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
[Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
Build changes
-------------
* IGT: IGT_7643 -> IGTPW_10426
* Linux: xe-577-5cd1893366708380854f4694ae57417192458a6b -> xe-579-6154a8abd3c0766b93740feb7e0268ae3f425849
IGTPW_10426: 10426
IGT_7643: ced22f8bf4263ff395dc852c86b682e62a7a1c1b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-577-5cd1893366708380854f4694ae57417192458a6b: 5cd1893366708380854f4694ae57417192458a6b
xe-579-6154a8abd3c0766b93740feb7e0268ae3f425849: 6154a8abd3c0766b93740feb7e0268ae3f425849
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10426/index.html
[-- Attachment #2: Type: text/html, Size: 4058 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Fi.CI.BAT: success for Compression support for Lunarlake
2023-12-15 19:41 [PATCH i-g-t v7 0/5] Compression support for Lunarlake Akshata Jahagirdar
2023-12-15 9:55 ` ✓ CI.xeBAT: success for " Patchwork
@ 2023-12-15 10:26 ` Patchwork
2023-12-15 19:41 ` [PATCH i-g-t v7 1/5] lib: Add blt command properties for lunarlake Akshata Jahagirdar
` (5 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2023-12-15 10:26 UTC (permalink / raw)
To: Akshata Jahagirdar; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 12693 bytes --]
== Series Details ==
Series: Compression support for Lunarlake
URL : https://patchwork.freedesktop.org/series/127857/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14026 -> IGTPW_10426
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/index.html
Participating hosts (35 -> 38)
------------------------------
Additional (4): bat-dg2-8 bat-rpls-2 bat-kbl-2 bat-mtlp-8
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_10426 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-rpls-2: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-rpls-2/igt@debugfs_test@basic-hwmon.html
- bat-mtlp-8: NOTRUN -> [SKIP][2] ([i915#9318])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html
* igt@fbdev@info:
- bat-kbl-2: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#1849])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-kbl-2/igt@fbdev@info.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-kbl-2: NOTRUN -> [SKIP][4] ([fdo#109271]) +36 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html
- bat-mtlp-8: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-mtlp-8/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][6] ([i915#4083])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-mtlp-8/igt@gem_mmap@basic.html
- bat-dg2-8: NOTRUN -> [SKIP][7] ([i915#4083])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-dg2-8/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][8] ([i915#4079]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html
- bat-dg2-8: NOTRUN -> [SKIP][9] ([i915#4079]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-dg2-8/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-mtlp-8: NOTRUN -> [SKIP][10] ([i915#4077]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-mtlp-8/igt@gem_tiled_fence_blits@basic.html
- bat-dg2-8: NOTRUN -> [SKIP][11] ([i915#4077]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-dg2-8/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-rpls-2: NOTRUN -> [SKIP][12] ([i915#3282])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-rpls-2/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-mtlp-8: NOTRUN -> [SKIP][13] ([i915#6621])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-mtlp-8/igt@i915_pm_rps@basic-api.html
- bat-dg2-8: NOTRUN -> [SKIP][14] ([i915#6621])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-dg2-8/igt@i915_pm_rps@basic-api.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-atsm-1: NOTRUN -> [SKIP][15] ([i915#6645])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-atsm-1/igt@i915_suspend@basic-s3-without-i915.html
- bat-mtlp-8: NOTRUN -> [SKIP][16] ([i915#6645])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html
- bat-dg2-8: NOTRUN -> [SKIP][17] ([i915#6645])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-dg2-8/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- bat-dg2-8: NOTRUN -> [SKIP][18] ([i915#4212]) +6 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-dg2-8/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][19] ([i915#5190])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-dg2-8: NOTRUN -> [SKIP][20] ([i915#5190])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][21] ([i915#4212]) +8 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- bat-dg2-8: NOTRUN -> [SKIP][22] ([i915#4215] / [i915#5190])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-dg2-8: NOTRUN -> [SKIP][23] ([i915#4212] / [i915#5608])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-dg2-8/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][24] ([i915#4213]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-dg2-8: NOTRUN -> [SKIP][25] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-rpls-2: NOTRUN -> [SKIP][26] ([i915#4103]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-rpls-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-rpls-2: NOTRUN -> [SKIP][27] ([i915#3555] / [i915#3840] / [i915#9886])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-rpls-2/igt@kms_dsc@dsc-basic.html
- bat-mtlp-8: NOTRUN -> [SKIP][28] ([i915#3555] / [i915#3840] / [i915#9159])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-mtlp-8/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-mtlp-8: NOTRUN -> [SKIP][29] ([fdo#109285])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html
- bat-dg2-8: NOTRUN -> [SKIP][30] ([fdo#109285])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-dg2-8/igt@kms_force_connector_basic@force-load-detect.html
- bat-rpls-2: NOTRUN -> [SKIP][31] ([fdo#109285])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-rpls-2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-mtlp-8: NOTRUN -> [SKIP][32] ([i915#5274])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-8: NOTRUN -> [SKIP][33] ([i915#5274])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- bat-atsm-1: NOTRUN -> [SKIP][34] ([i915#1836])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-atsm-1/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg2-8: NOTRUN -> [SKIP][35] ([i915#5354])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-dg2-8/igt@kms_pm_backlight@basic-brightness.html
- bat-rpls-2: NOTRUN -> [SKIP][36] ([i915#5354])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-rpls-2/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_rpm@basic-rte:
- bat-rpls-2: NOTRUN -> [ABORT][37] ([i915#8668])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-rpls-2/igt@kms_pm_rpm@basic-rte.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-mtlp-8: NOTRUN -> [SKIP][38] ([i915#3555] / [i915#8809])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
- bat-dg2-8: NOTRUN -> [SKIP][39] ([i915#3555])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-8: NOTRUN -> [SKIP][40] ([i915#3708])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-dg2-8/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-read:
- bat-mtlp-8: NOTRUN -> [SKIP][41] ([i915#3708]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-gtt:
- bat-mtlp-8: NOTRUN -> [SKIP][42] ([i915#3708] / [i915#4077]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-mtlp-8/igt@prime_vgem@basic-gtt.html
- bat-dg2-8: NOTRUN -> [SKIP][43] ([i915#3708] / [i915#4077]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-dg2-8/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- bat-dg2-8: NOTRUN -> [SKIP][44] ([i915#3291] / [i915#3708]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/bat-dg2-8/igt@prime_vgem@basic-write.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#7359]: https://gitlab.freedesktop.org/drm/intel/issues/7359
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#8981]: https://gitlab.freedesktop.org/drm/intel/issues/8981
[i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7643 -> IGTPW_10426
CI-20190529: 20190529
CI_DRM_14026: 458b78ab58b042d72b6d0e32b9ac5ec86aa236da @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10426: 10426
IGT_7643: ced22f8bf4263ff395dc852c86b682e62a7a1c1b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/index.html
[-- Attachment #2: Type: text/html, Size: 15953 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t v7 0/5] Compression support for Lunarlake
@ 2023-12-15 19:41 Akshata Jahagirdar
2023-12-15 9:55 ` ✓ CI.xeBAT: success for " Patchwork
` (7 more replies)
0 siblings, 8 replies; 10+ messages in thread
From: Akshata Jahagirdar @ 2023-12-15 19:41 UTC (permalink / raw)
Cc: igt-dev, matthew.auld, Akshata Jahagirdar, akshata.jahagirdar,
ayaz.siddiqui
Series enables the compression feature for Lunarlake and address various
changes of the feature from Gen12. The Main-to-CCS ratio has been
changed to 512:1. This changes the calculations and value for fields
such as CCS Copy size for blitter command APIs.
This patch series updates tests xe_ccs and gem_ccs for XE2.
This series doesn't solve "in-place" and "suspend-resume" subtests.
These changes are based on top of the "vm_bind pat_index" patch here:
https://patchwork.freedesktop.org/series/124667/
v2: Lots of improvements/tweaks (Kamil)
Addressed review comments (Matthew, Karolina)
v3: Reused dg2_xy_fast_copy definition for defing xe2_cmds_info struct(Karolina)
Split the patch to address ccs_size calculation and updating
pat_index, updated the intel_get_pat_idx_uc_comp function as per review
comments (Kamil)
v4: Addressed review comments (Karolina)
Rebase. Removed few unnecessary conditions, plus few fixes.
v5: Addressed Review comments (Matthew, Zbigniew)
Rebase, Fixes for pre-merge IGT tests.
v6: Addressed Review comments (Matthew)
v7: Addressed Review comments (Zbigniew, Kamil)
Akshata Jahagirdar (5):
lib: Add blt command properties for lunarlake
lib/intel_blt: Update calculation of ccs_size and size_of_ctrl_copy
lib/intel_pat: Add uc_comp pat_index
lib/intel_blt: Update caching mode and pat_index
tests/intel/xe_ccs: Add compression support for Lunarlake
lib/intel_blt.c | 24 +++++++++++++++++-------
lib/intel_blt.h | 2 +-
lib/intel_cmds_info.c | 16 ++++++++++++++++
lib/intel_cmds_info.h | 1 +
lib/intel_device_info.c | 2 +-
lib/intel_pat.c | 14 +++++++++++++-
lib/intel_pat.h | 2 ++
lib/xe/xe_util.c | 2 +-
tests/intel/gem_ccs.c | 2 +-
tests/intel/xe_ccs.c | 40 +++++++++++++++++++++++++---------------
10 files changed, 78 insertions(+), 27 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH i-g-t v7 1/5] lib: Add blt command properties for lunarlake
2023-12-15 19:41 [PATCH i-g-t v7 0/5] Compression support for Lunarlake Akshata Jahagirdar
2023-12-15 9:55 ` ✓ CI.xeBAT: success for " Patchwork
2023-12-15 10:26 ` ✓ Fi.CI.BAT: " Patchwork
@ 2023-12-15 19:41 ` Akshata Jahagirdar
2023-12-15 19:41 ` [PATCH i-g-t v7 2/5] lib/intel_blt: Update calculation of ccs_size and size_of_ctrl_copy Akshata Jahagirdar
` (4 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: Akshata Jahagirdar @ 2023-12-15 19:41 UTC (permalink / raw)
Cc: igt-dev, matthew.auld, Akshata Jahagirdar, akshata.jahagirdar,
ayaz.siddiqui
Add struct to describe properties of XY_BLOCK_COPY for XE2 platform.
Reuse XY_FAST_COPY struct from DG2 and Update the definitions for Lunarlake.
Signed-off-by: Akshata Jahagirdar <akshata.jahagirdar@intel.com>
Reviewed-by: Karolina Stolarek <karolina.stolarek@intel.com>
Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
---
lib/intel_cmds_info.c | 16 ++++++++++++++++
lib/intel_cmds_info.h | 1 +
lib/intel_device_info.c | 2 +-
3 files changed, 18 insertions(+), 1 deletion(-)
diff --git a/lib/intel_cmds_info.c b/lib/intel_cmds_info.c
index 2e51ec081..56073bd6d 100644
--- a/lib/intel_cmds_info.c
+++ b/lib/intel_cmds_info.c
@@ -67,6 +67,15 @@ static const struct blt_cmd_info
BLT_CMD_EXTENDED |
BLT_CMD_SUPPORTS_COMPRESSION);
+static const struct blt_cmd_info
+ xe2_xy_block_copy = BLT_INFO_EXT(XY_BLOCK_COPY,
+ BIT(T_LINEAR) |
+ BIT(T_XMAJOR) |
+ BIT(T_TILE4) |
+ BIT(T_TILE64),
+ BLT_CMD_EXTENDED |
+ BLT_CMD_SUPPORTS_COMPRESSION);
+
static const struct blt_cmd_info
mtl_xy_block_copy = BLT_INFO_EXT(XY_BLOCK_COPY,
BIT(T_LINEAR) |
@@ -169,6 +178,13 @@ const struct intel_cmds_info gen12_pvc_cmds_info = {
}
};
+const struct intel_cmds_info xe2_cmds_info = {
+ .blt_cmds = {
+ [XY_FAST_COPY] = &dg2_xy_fast_copy,
+ [XY_BLOCK_COPY] = &xe2_xy_block_copy,
+ }
+};
+
const struct blt_cmd_info *blt_get_cmd_info(const struct intel_cmds_info *cmds_info,
enum blt_cmd_type cmd)
{
diff --git a/lib/intel_cmds_info.h b/lib/intel_cmds_info.h
index f9e3932d1..0a83b6a44 100644
--- a/lib/intel_cmds_info.h
+++ b/lib/intel_cmds_info.h
@@ -55,6 +55,7 @@ extern const struct intel_cmds_info gen12_cmds_info;
extern const struct intel_cmds_info gen12_dg2_cmds_info;
extern const struct intel_cmds_info gen12_mtl_cmds_info;
extern const struct intel_cmds_info gen12_pvc_cmds_info;
+extern const struct intel_cmds_info xe2_cmds_info;
#define for_each_tiling(__tiling) \
for (__tiling = T_LINEAR; __tiling < __BLT_MAX_TILING; __tiling++)
diff --git a/lib/intel_device_info.c b/lib/intel_device_info.c
index 34817f7b6..a669797c3 100644
--- a/lib/intel_device_info.c
+++ b/lib/intel_device_info.c
@@ -511,7 +511,7 @@ static const struct intel_device_info intel_lunarlake_info = {
.has_4tile = true,
.is_lunarlake = true,
.codename = "lunarlake",
- .cmds_info = &gen12_pvc_cmds_info,
+ .cmds_info = &xe2_cmds_info,
};
static const struct pci_id_match intel_device_match[] = {
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t v7 2/5] lib/intel_blt: Update calculation of ccs_size and size_of_ctrl_copy
2023-12-15 19:41 [PATCH i-g-t v7 0/5] Compression support for Lunarlake Akshata Jahagirdar
` (2 preceding siblings ...)
2023-12-15 19:41 ` [PATCH i-g-t v7 1/5] lib: Add blt command properties for lunarlake Akshata Jahagirdar
@ 2023-12-15 19:41 ` Akshata Jahagirdar
2023-12-15 19:41 ` [PATCH i-g-t v7 3/5] lib/intel_pat: Add uc_comp pat_index Akshata Jahagirdar
` (3 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: Akshata Jahagirdar @ 2023-12-15 19:41 UTC (permalink / raw)
Cc: igt-dev, matthew.auld, Akshata Jahagirdar, akshata.jahagirdar,
ayaz.siddiqui
The Main-to-CCS Ratio for XE2 has been changed to 512:1.
Update the CCS_RATIO macro to select relevant ratio based on platform.
Update the ccs_ratio call in gem_ccs and xe_ccs tests
based on previous change.
Signed-off-by: Akshata Jahagirdar <akshata.jahagirdar@intel.com>
Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
---
lib/intel_blt.c | 13 ++++++++-----
lib/intel_blt.h | 2 +-
tests/intel/gem_ccs.c | 2 +-
tests/intel/xe_ccs.c | 2 +-
4 files changed, 11 insertions(+), 8 deletions(-)
diff --git a/lib/intel_blt.c b/lib/intel_blt.c
index 1116c978e..1be289ad6 100644
--- a/lib/intel_blt.c
+++ b/lib/intel_blt.c
@@ -948,15 +948,16 @@ int blt_block_copy(int fd,
return ret;
}
-static uint16_t __ccs_size(const struct blt_ctrl_surf_copy_data *surf)
+static uint16_t __ccs_size(int fd, const struct blt_ctrl_surf_copy_data *surf)
{
uint32_t src_size, dst_size;
+ uint16_t ccsratio = CCS_RATIO(fd);
src_size = surf->src.access_type == DIRECT_ACCESS ?
- surf->src.size : surf->src.size / CCS_RATIO;
+ surf->src.size : surf->src.size / ccsratio;
dst_size = surf->dst.access_type == DIRECT_ACCESS ?
- surf->dst.size : surf->dst.size / CCS_RATIO;
+ surf->dst.size : surf->dst.size / ccsratio;
igt_assert_f(src_size <= dst_size, "dst size must be >= src size for CCS copy\n");
@@ -1118,6 +1119,8 @@ uint64_t emit_blt_ctrl_surf_copy(int fd,
uint64_t dst_offset, src_offset, bb_offset, alignment;
uint32_t bbe = MI_BATCH_BUFFER_END;
uint32_t *bb;
+ uint16_t num_ccs_blocks = (ip_ver >= IP_VER(20, 0)) ?
+ (xe_get_default_alignment(fd) / CCS_RATIO(fd)) : CCS_RATIO(fd);
igt_assert_f(ahnd, "ctrl-surf-copy supports softpin only\n");
igt_assert_f(surf, "ctrl-surf-copy requires data to do ctrl-surf-copy blit\n");
@@ -1136,7 +1139,7 @@ uint64_t emit_blt_ctrl_surf_copy(int fd,
data.xe2.dw00.dst_access_type = surf->dst.access_type;
/* Ensure dst has size capable to keep src ccs aux */
- data.xe2.dw00.size_of_ctrl_copy = __ccs_size(surf) / CCS_RATIO - 1;
+ data.xe2.dw00.size_of_ctrl_copy = __ccs_size(fd, surf) / num_ccs_blocks - 1;
data.xe2.dw00.length = 0x3;
data.xe2.dw01.src_address_lo = src_offset;
@@ -1155,7 +1158,7 @@ uint64_t emit_blt_ctrl_surf_copy(int fd,
data.gen12.dw00.dst_access_type = surf->dst.access_type;
/* Ensure dst has size capable to keep src ccs aux */
- data.gen12.dw00.size_of_ctrl_copy = __ccs_size(surf) / CCS_RATIO - 1;
+ data.gen12.dw00.size_of_ctrl_copy = __ccs_size(fd, surf) / num_ccs_blocks - 1;
data.gen12.dw00.length = 0x3;
data.gen12.dw01.src_address_lo = src_offset;
diff --git a/lib/intel_blt.h b/lib/intel_blt.h
index 5934ccd67..d9be22fdf 100644
--- a/lib/intel_blt.h
+++ b/lib/intel_blt.h
@@ -52,7 +52,7 @@
#include "igt.h"
#include "intel_cmds_info.h"
-#define CCS_RATIO 256
+#define CCS_RATIO(fd) (AT_LEAST_GEN(intel_get_drm_devid(fd), 20) ? 512 : 256)
enum blt_color_depth {
CD_8bit,
diff --git a/tests/intel/gem_ccs.c b/tests/intel/gem_ccs.c
index 0a691778d..80a29ecab 100644
--- a/tests/intel/gem_ccs.c
+++ b/tests/intel/gem_ccs.c
@@ -99,7 +99,7 @@ static void surf_copy(int i915,
struct blt_block_copy_data_ext ext = {};
struct blt_ctrl_surf_copy_data surf = {};
uint32_t bb1, bb2, ccs, ccs2, *ccsmap, *ccsmap2;
- uint64_t bb_size, ccssize = mid->size / CCS_RATIO;
+ uint64_t bb_size, ccssize = mid->size / CCS_RATIO(i915);
uint32_t *ccscopy;
uint8_t uc_mocs = intel_get_uc_mocs_index(i915);
int result;
diff --git a/tests/intel/xe_ccs.c b/tests/intel/xe_ccs.c
index 77d3020bc..ac0805017 100644
--- a/tests/intel/xe_ccs.c
+++ b/tests/intel/xe_ccs.c
@@ -95,7 +95,7 @@ static void surf_copy(int xe,
struct blt_block_copy_data_ext ext = {};
struct blt_ctrl_surf_copy_data surf = {};
uint32_t bb1, bb2, ccs, ccs2, *ccsmap, *ccsmap2;
- uint64_t bb_size, ccssize = mid->size / CCS_RATIO;
+ uint64_t bb_size, ccssize = mid->size / CCS_RATIO(xe);
uint32_t *ccscopy;
uint8_t uc_mocs = intel_get_uc_mocs_index(xe);
uint32_t sysmem = system_memory(xe);
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t v7 3/5] lib/intel_pat: Add uc_comp pat_index
2023-12-15 19:41 [PATCH i-g-t v7 0/5] Compression support for Lunarlake Akshata Jahagirdar
` (3 preceding siblings ...)
2023-12-15 19:41 ` [PATCH i-g-t v7 2/5] lib/intel_blt: Update calculation of ccs_size and size_of_ctrl_copy Akshata Jahagirdar
@ 2023-12-15 19:41 ` Akshata Jahagirdar
2023-12-15 19:41 ` [PATCH i-g-t v7 4/5] lib/intel_blt: Update caching mode and pat_index Akshata Jahagirdar
` (2 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: Akshata Jahagirdar @ 2023-12-15 19:41 UTC (permalink / raw)
Cc: igt-dev, matthew.auld, Akshata Jahagirdar, akshata.jahagirdar,
ayaz.siddiqui
Compression in XE2 is programmed through pat-index attribute.
Add a dedicated pat-index for compression for XE2 and later platforms.
The caller to this helper function ensures GFX version is correct.
Signed-off-by: Akshata Jahagirdar <akshata.jahagirdar@intel.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
---
lib/intel_pat.c | 14 +++++++++++++-
lib/intel_pat.h | 2 ++
2 files changed, 15 insertions(+), 1 deletion(-)
diff --git a/lib/intel_pat.c b/lib/intel_pat.c
index 2b892ee52..041952bd8 100644
--- a/lib/intel_pat.c
+++ b/lib/intel_pat.c
@@ -11,7 +11,7 @@ struct intel_pat_cache {
uint8_t uc; /* UC + COH_NONE */
uint8_t wt; /* WT + COH_NONE */
uint8_t wb; /* WB + COH_AT_LEAST_1WAY */
-
+ uint8_t uc_comp; /* UC + COH_NONE + COMPRESSION, XE2 and later*/
uint8_t max_index;
};
@@ -23,6 +23,7 @@ static void intel_get_pat_idx(int fd, struct intel_pat_cache *pat)
pat->uc = 3;
pat->wt = 15; /* Compressed + WB-transient */
pat->wb = 2;
+ pat->uc_comp = 12; /* Compressed + UC, XE2 and later */
pat->max_index = 31;
} else if (IS_METEORLAKE(dev_id)) {
pat->uc = 2;
@@ -60,6 +61,17 @@ uint8_t intel_get_pat_idx_uc(int fd)
return pat.uc;
}
+uint8_t intel_get_pat_idx_uc_comp(int fd)
+{
+ struct intel_pat_cache pat = {};
+ uint16_t dev_id = intel_get_drm_devid(fd);
+
+ igt_assert(AT_LEAST_GEN(dev_id, 20));
+
+ intel_get_pat_idx(fd, &pat);
+ return pat.uc_comp;
+}
+
uint8_t intel_get_pat_idx_wt(int fd)
{
struct intel_pat_cache pat = {};
diff --git a/lib/intel_pat.h b/lib/intel_pat.h
index c24dbc275..eb48cbc65 100644
--- a/lib/intel_pat.h
+++ b/lib/intel_pat.h
@@ -16,4 +16,6 @@ uint8_t intel_get_pat_idx_uc(int fd);
uint8_t intel_get_pat_idx_wt(int fd);
uint8_t intel_get_pat_idx_wb(int fd);
+uint8_t intel_get_pat_idx_uc_comp(int fd);
+
#endif /* INTEL_PAT_H */
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t v7 4/5] lib/intel_blt: Update caching mode and pat_index
2023-12-15 19:41 [PATCH i-g-t v7 0/5] Compression support for Lunarlake Akshata Jahagirdar
` (4 preceding siblings ...)
2023-12-15 19:41 ` [PATCH i-g-t v7 3/5] lib/intel_pat: Add uc_comp pat_index Akshata Jahagirdar
@ 2023-12-15 19:41 ` Akshata Jahagirdar
2023-12-15 19:41 ` [PATCH i-g-t v7 5/5] tests/intel/xe_ccs: Add compression support for Lunarlake Akshata Jahagirdar
2023-12-15 22:38 ` ✗ Fi.CI.IGT: failure for Compression " Patchwork
7 siblings, 0 replies; 10+ messages in thread
From: Akshata Jahagirdar @ 2023-12-15 19:41 UTC (permalink / raw)
Cc: igt-dev, matthew.auld, Akshata Jahagirdar, akshata.jahagirdar,
ayaz.siddiqui
The pat-index and caching mode for compression need to change to uc_comp in case
of compression, else they just take the default value of pat_index and caching.
Signed-off-by: Akshata Jahagirdar <akshata.jahagirdar@intel.com>
Acked-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
---
lib/intel_blt.c | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/lib/intel_blt.c b/lib/intel_blt.c
index 1be289ad6..e41e261ea 100644
--- a/lib/intel_blt.c
+++ b/lib/intel_blt.c
@@ -1797,6 +1797,7 @@ blt_create_object(const struct blt_copy_data *blt, uint32_t region,
uint64_t size = width * height * bpp / 8;
uint32_t stride = tiling == T_LINEAR ? width * 4 : width;
uint32_t handle;
+ uint8_t pat_index = DEFAULT_PAT_INDEX;
igt_assert_f(blt->driver, "Driver isn't set, have you called blt_copy_init()?\n");
@@ -1806,18 +1807,24 @@ blt_create_object(const struct blt_copy_data *blt, uint32_t region,
if (blt->driver == INTEL_DRIVER_XE) {
uint64_t flags = 0;
+ uint16_t cpu_caching = __xe_default_cpu_caching(blt->fd, region, flags);
if (create_mapping && region != system_memory(blt->fd))
flags |= DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM;
+ if (AT_LEAST_GEN(intel_get_drm_devid(blt->fd), 20) && compression) {
+ pat_index = intel_get_pat_idx_uc_comp(blt->fd);
+ cpu_caching = DRM_XE_GEM_CPU_CACHING_WC;
+ }
+
size = ALIGN(size, xe_get_default_alignment(blt->fd));
- handle = xe_bo_create(blt->fd, 0, size, region, flags);
+ handle = xe_bo_create_caching(blt->fd, 0, size, region, flags, cpu_caching);
} else {
igt_assert(__gem_create_in_memory_regions(blt->fd, &handle,
&size, region) == 0);
}
- blt_set_object(obj, handle, size, region, mocs_index, DEFAULT_PAT_INDEX, tiling,
+ blt_set_object(obj, handle, size, region, mocs_index, pat_index, tiling,
compression, compression_type);
blt_set_geom(obj, stride, 0, 0, width, height, 0, 0);
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH i-g-t v7 5/5] tests/intel/xe_ccs: Add compression support for Lunarlake
2023-12-15 19:41 [PATCH i-g-t v7 0/5] Compression support for Lunarlake Akshata Jahagirdar
` (5 preceding siblings ...)
2023-12-15 19:41 ` [PATCH i-g-t v7 4/5] lib/intel_blt: Update caching mode and pat_index Akshata Jahagirdar
@ 2023-12-15 19:41 ` Akshata Jahagirdar
2023-12-15 8:11 ` Zbigniew Kempczyński
2023-12-15 22:38 ` ✗ Fi.CI.IGT: failure for Compression " Patchwork
7 siblings, 1 reply; 10+ messages in thread
From: Akshata Jahagirdar @ 2023-12-15 19:41 UTC (permalink / raw)
Cc: igt-dev, matthew.auld, Akshata Jahagirdar, akshata.jahagirdar,
ayaz.siddiqui
In XE2 IGFX platform only sysmem participates in compression.
So for XE2 IGFX platform, create all blt objects in sysmem itself,
For other platform, it will stay the same way as per pervious implementation.
Also update the pat-index to reflect the compression status.
Alter the range to default_alignment before vm bind/unbind operation to
align the buffer object size with page size.
Signed-off-by: Akshata Jahagirdar <akshata.jahagirdar@intel.com>
---
lib/xe/xe_util.c | 2 +-
tests/intel/xe_ccs.c | 38 ++++++++++++++++++++++++--------------
2 files changed, 25 insertions(+), 15 deletions(-)
diff --git a/lib/xe/xe_util.c b/lib/xe/xe_util.c
index ba8eece71..42cac9dc2 100644
--- a/lib/xe/xe_util.c
+++ b/lib/xe/xe_util.c
@@ -148,7 +148,7 @@ static struct drm_xe_vm_bind_op *xe_alloc_bind_ops(int xe,
ops->flags = flags;
ops->obj_offset = 0;
ops->addr = obj->offset;
- ops->range = obj->size;
+ ops->range = ALIGN(obj->size, xe_get_default_alignment(xe));
ops->prefetch_mem_region_instance = 0;
if (obj->pat_index == DEFAULT_PAT_INDEX)
ops->pat_index = intel_get_pat_idx_wb(xe);
diff --git a/tests/intel/xe_ccs.c b/tests/intel/xe_ccs.c
index ac0805017..1444b7a66 100644
--- a/tests/intel/xe_ccs.c
+++ b/tests/intel/xe_ccs.c
@@ -96,20 +96,27 @@ static void surf_copy(int xe,
struct blt_ctrl_surf_copy_data surf = {};
uint32_t bb1, bb2, ccs, ccs2, *ccsmap, *ccsmap2;
uint64_t bb_size, ccssize = mid->size / CCS_RATIO(xe);
+ uint64_t ccs_bo_size = xe_get_default_alignment(xe);
uint32_t *ccscopy;
uint8_t uc_mocs = intel_get_uc_mocs_index(xe);
uint32_t sysmem = system_memory(xe);
+ uint8_t comp_pat_index = DEFAULT_PAT_INDEX;
+ uint16_t cpu_caching = __xe_default_cpu_caching(xe, sysmem, 0);
int result;
igt_assert(mid->compression);
+ if (AT_LEAST_GEN(intel_get_drm_devid(xe), 20) && mid->compression) {
+ comp_pat_index = intel_get_pat_idx_uc_comp(xe);
+ cpu_caching = DRM_XE_GEM_CPU_CACHING_WC;
+ }
ccscopy = (uint32_t *) malloc(ccssize);
- ccs = xe_bo_create(xe, 0, ccssize, sysmem, 0);
- ccs2 = xe_bo_create(xe, 0, ccssize, sysmem, 0);
+ ccs = xe_bo_create_caching(xe, 0, ccs_bo_size, sysmem, 0, cpu_caching);
+ ccs2 = xe_bo_create_caching(xe, 0, ccs_bo_size, sysmem, 0, cpu_caching);
blt_ctrl_surf_copy_init(xe, &surf);
surf.print_bb = param.print_bb;
blt_set_ctrl_surf_object(&surf.src, mid->handle, mid->region, mid->size,
- uc_mocs, DEFAULT_PAT_INDEX, BLT_INDIRECT_ACCESS);
+ uc_mocs, comp_pat_index, BLT_INDIRECT_ACCESS);
blt_set_ctrl_surf_object(&surf.dst, ccs, sysmem, ccssize, uc_mocs,
DEFAULT_PAT_INDEX, DIRECT_ACCESS);
bb_size = xe_get_default_alignment(xe);
@@ -157,7 +164,7 @@ static void surf_copy(int xe,
blt_set_ctrl_surf_object(&surf.src, ccs, sysmem, ccssize,
uc_mocs, DEFAULT_PAT_INDEX, DIRECT_ACCESS);
blt_set_ctrl_surf_object(&surf.dst, mid->handle, mid->region, mid->size,
- uc_mocs, DEFAULT_PAT_INDEX, INDIRECT_ACCESS);
+ uc_mocs, comp_pat_index, INDIRECT_ACCESS);
blt_ctrl_surf_copy(xe, ctx, NULL, ahnd, &surf);
intel_ctx_xe_sync(ctx, true);
@@ -234,10 +241,10 @@ static int blt_block_copy3(int xe,
igt_assert_f(blt3, "block-copy3 requires data to do blit\n");
alignment = xe_get_default_alignment(xe);
- get_offset(ahnd, blt3->src.handle, blt3->src.size, alignment);
- get_offset(ahnd, blt3->mid.handle, blt3->mid.size, alignment);
- get_offset(ahnd, blt3->dst.handle, blt3->dst.size, alignment);
- get_offset(ahnd, blt3->final.handle, blt3->final.size, alignment);
+ get_offset_pat_index(ahnd, blt3->src.handle, blt3->src.size, alignment, blt3->src.pat_index);
+ get_offset_pat_index(ahnd, blt3->mid.handle, blt3->mid.size, alignment, blt3->mid.pat_index);
+ get_offset_pat_index(ahnd, blt3->dst.handle, blt3->dst.size, alignment, blt3->dst.pat_index);
+ get_offset_pat_index(ahnd, blt3->final.handle, blt3->final.size, alignment, blt3->final.pat_index);
bb_offset = get_offset(ahnd, blt3->bb.handle, blt3->bb.size, alignment);
/* First blit src -> mid */
@@ -291,8 +298,9 @@ static void block_copy(int xe,
uint64_t bb_size = xe_get_default_alignment(xe);
uint64_t ahnd = intel_allocator_open(xe, ctx->vm, INTEL_ALLOCATOR_RELOC);
uint32_t run_id = mid_tiling;
- uint32_t mid_region = region2, bb;
- uint32_t width = param.width, height = param.height;
+ uint32_t mid_region = (AT_LEAST_GEN(intel_get_drm_devid(xe), 20) &
+ !xe_has_vram(xe)) ? region1 : region2;
+ uint32_t width = param.width, height = param.height, bb;
enum blt_compression mid_compression = config->compression;
int mid_compression_format = param.compression_format;
enum blt_compression_type comp_type = COMPRESSION_TYPE_3D;
@@ -413,8 +421,9 @@ static void block_multicopy(int xe,
uint64_t bb_size = xe_get_default_alignment(xe);
uint64_t ahnd = intel_allocator_open(xe, ctx->vm, INTEL_ALLOCATOR_RELOC);
uint32_t run_id = mid_tiling;
- uint32_t mid_region = region2, bb;
- uint32_t width = param.width, height = param.height;
+ uint32_t mid_region = (AT_LEAST_GEN(intel_get_drm_devid(xe), 20) &
+ !xe_has_vram(xe)) ? region1 : region2;
+ uint32_t width = param.width, height = param.height, bb;
enum blt_compression mid_compression = config->compression;
int mid_compression_format = param.compression_format;
enum blt_compression_type comp_type = COMPRESSION_TYPE_3D;
@@ -539,8 +548,9 @@ static void block_copy_test(int xe,
region1 = igt_collection_get_value(regions, 0);
region2 = igt_collection_get_value(regions, 1);
- /* Compressed surface must be in device memory */
- if (config->compression && !XE_IS_VRAM_MEMORY_REGION(xe, region2))
+ /* if not XE2, then Compressed surface must be in device memory */
+ if (config->compression && !(AT_LEAST_GEN((intel_get_drm_devid(xe)), 20)) &&
+ !XE_IS_VRAM_MEMORY_REGION(xe, region2))
continue;
regtxt = xe_memregion_dynamic_subtest_name(xe, regions);
--
2.34.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* ✗ Fi.CI.IGT: failure for Compression support for Lunarlake
2023-12-15 19:41 [PATCH i-g-t v7 0/5] Compression support for Lunarlake Akshata Jahagirdar
` (6 preceding siblings ...)
2023-12-15 19:41 ` [PATCH i-g-t v7 5/5] tests/intel/xe_ccs: Add compression support for Lunarlake Akshata Jahagirdar
@ 2023-12-15 22:38 ` Patchwork
7 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2023-12-15 22:38 UTC (permalink / raw)
To: Akshata Jahagirdar; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 84093 bytes --]
== Series Details ==
Series: Compression support for Lunarlake
URL : https://patchwork.freedesktop.org/series/127857/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14026_full -> IGTPW_10426_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10426_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10426_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.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/index.html
Participating hosts (7 -> 8)
------------------------------
Additional (1): shard-glk-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10426_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg1: NOTRUN -> [ABORT][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-13/igt@gem_exec_balancer@bonded-true-hang.html
#### Warnings ####
* igt@i915_pm_rps@fence-order:
- shard-snb: [INCOMPLETE][2] ([i915#9847]) -> [INCOMPLETE][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14026/shard-snb2/igt@i915_pm_rps@fence-order.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-snb1/igt@i915_pm_rps@fence-order.html
Known issues
------------
Here are the changes found in IGTPW_10426_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#8411]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-19/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-7/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#8411]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-1/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#8411]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-4/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@api_intel_bb@render-ccs:
- shard-dg2: NOTRUN -> [FAIL][8] ([i915#6122])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-10/igt@api_intel_bb@render-ccs.html
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][9] ([i915#7701])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-14/igt@device_reset@cold-reset-bound.html
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#7701])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-4/igt@device_reset@cold-reset-bound.html
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#7701])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-5/igt@device_reset@cold-reset-bound.html
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#7701])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-11/igt@device_reset@cold-reset-bound.html
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#7701])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-1/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@all-busy-idle-check-all:
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8414])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-7/igt@drm_fdinfo@all-busy-idle-check-all.html
* igt@drm_fdinfo@busy-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][15] ([i915#8414]) +5 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-16/igt@drm_fdinfo@busy-check-all@bcs0.html
* igt@drm_fdinfo@busy-check-all@ccs3:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8414]) +9 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-1/igt@drm_fdinfo@busy-check-all@ccs3.html
* igt@gem_caching@writes:
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#4873])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-6/igt@gem_caching@writes.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#9323]) +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#9323]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-7/igt@gem_ccs@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#9323]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-12/igt@gem_ccs@suspend-resume.html
- shard-tglu: NOTRUN -> [SKIP][21] ([i915#9323]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-8/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][22] ([i915#7297])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-5/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
* igt@gem_ctx_freq@sysfs:
- shard-glk: NOTRUN -> [INCOMPLETE][23] ([i915#9855])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-glk5/igt@gem_ctx_freq@sysfs.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-rkl: NOTRUN -> [SKIP][24] ([fdo#109314])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-7/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@engines-mixed-process:
- shard-snb: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#1099]) +4 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-snb1/igt@gem_ctx_persistence@engines-mixed-process.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#5882]) +9 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-1/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html
* igt@gem_eio@kms:
- shard-dg1: NOTRUN -> [FAIL][27] ([i915#5784])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-12/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-chain:
- shard-dg2: NOTRUN -> [INCOMPLETE][28] ([i915#9856])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-6/igt@gem_exec_balancer@bonded-chain.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4771]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-10/igt@gem_exec_balancer@bonded-sync.html
- shard-rkl: NOTRUN -> [ABORT][30] ([i915#9856])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-3/igt@gem_exec_balancer@bonded-sync.html
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#4771]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-16/igt@gem_exec_balancer@bonded-sync.html
- shard-mtlp: NOTRUN -> [ABORT][32] ([i915#9856])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-4/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@nohangcheck:
- shard-mtlp: NOTRUN -> [ABORT][33] ([i915#9855]) +1 other test abort
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-3/igt@gem_exec_balancer@nohangcheck.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-rkl: NOTRUN -> [ABORT][34] ([i915#9855])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-5/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#6344])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-1/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@many-4k-zero:
- shard-dg1: NOTRUN -> [FAIL][36] ([i915#9606])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-13/igt@gem_exec_capture@many-4k-zero.html
- shard-tglu: NOTRUN -> [FAIL][37] ([i915#9606])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-5/igt@gem_exec_capture@many-4k-zero.html
- shard-glk: NOTRUN -> [FAIL][38] ([i915#9606])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-glk2/igt@gem_exec_capture@many-4k-zero.html
- shard-mtlp: NOTRUN -> [FAIL][39] ([i915#9606])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-5/igt@gem_exec_capture@many-4k-zero.html
- shard-dg2: NOTRUN -> [FAIL][40] ([i915#9606])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-10/igt@gem_exec_capture@many-4k-zero.html
- shard-rkl: NOTRUN -> [FAIL][41] ([i915#9606])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-7/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fence@submit:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#4812])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-14/igt@gem_exec_fence@submit.html
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4812])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-8/igt@gem_exec_fence@submit.html
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4812])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-5/igt@gem_exec_fence@submit.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#7697])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-4/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#3281]) +7 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-5/igt@gem_exec_reloc@basic-wc-read-noreloc.html
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#3281]) +7 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-12/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_reloc@basic-write-gtt:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +5 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-11/igt@gem_exec_reloc@basic-write-gtt.html
* igt@gem_exec_schedule@thriceslice:
- shard-snb: NOTRUN -> [SKIP][49] ([fdo#109271]) +487 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-snb7/igt@gem_exec_schedule@thriceslice.html
* igt@gem_exec_whisper@basic-contexts:
- shard-snb: NOTRUN -> [INCOMPLETE][50] ([i915#9857]) +3 other tests incomplete
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-snb6/igt@gem_exec_whisper@basic-contexts.html
* igt@gem_exec_whisper@basic-contexts-all:
- shard-tglu: NOTRUN -> [INCOMPLETE][51] ([i915#9857])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-2/igt@gem_exec_whisper@basic-contexts-all.html
* igt@gem_exec_whisper@basic-contexts-forked-all:
- shard-mtlp: NOTRUN -> [ABORT][52] ([i915#7392] / [i915#9857]) +1 other test abort
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-7/igt@gem_exec_whisper@basic-contexts-forked-all.html
* igt@gem_exec_whisper@basic-contexts-priority-all:
- shard-tglu: NOTRUN -> [INCOMPLETE][53] ([i915#6755] / [i915#9857]) +2 other tests incomplete
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-8/igt@gem_exec_whisper@basic-contexts-priority-all.html
- shard-glk: NOTRUN -> [ABORT][54] ([i915#9857]) +1 other test abort
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-glk1/igt@gem_exec_whisper@basic-contexts-priority-all.html
* igt@gem_exec_whisper@basic-fds-priority:
- shard-mtlp: NOTRUN -> [ABORT][55] ([i915#9857]) +1 other test abort
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-2/igt@gem_exec_whisper@basic-fds-priority.html
* igt@gem_exec_whisper@basic-fds-priority-all:
- shard-tglu: NOTRUN -> [INCOMPLETE][56] ([i915#6755] / [i915#7392] / [i915#9857])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-10/igt@gem_exec_whisper@basic-fds-priority-all.html
- shard-glk: NOTRUN -> [INCOMPLETE][57] ([i915#9857]) +1 other test incomplete
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-glk9/igt@gem_exec_whisper@basic-fds-priority-all.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4860]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-1/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4860]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4860]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-6/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#4613]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-5/igt@gem_lmem_swapping@parallel-multi.html
- shard-tglu: NOTRUN -> [SKIP][62] ([i915#4613])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-6/igt@gem_lmem_swapping@parallel-multi.html
- shard-glk: NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#4613])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-glk5/igt@gem_lmem_swapping@parallel-multi.html
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4613]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-3/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_mmap_gtt@basic-write-read-distinct:
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4077]) +7 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-6/igt@gem_mmap_gtt@basic-write-read-distinct.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4077]) +9 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-14/igt@gem_mmap_gtt@cpuset-basic-small-copy.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4077]) +8 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-7/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_wc@set-cache-level:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4083])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-8/igt@gem_mmap_wc@set-cache-level.html
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4083])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-5/igt@gem_mmap_wc@set-cache-level.html
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4083])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-14/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_partial_pwrite_pread@reads-snoop:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#3282]) +8 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-12/igt@gem_partial_pwrite_pread@reads-snoop.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#3282]) +4 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-1/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_pread@exhaustion:
- shard-snb: NOTRUN -> [WARN][73] ([i915#2658])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-snb5/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#3282]) +8 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-7/igt@gem_pwrite@basic-exhaustion.html
- shard-tglu: NOTRUN -> [WARN][75] ([i915#2658])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-2/igt@gem_pwrite@basic-exhaustion.html
- shard-glk: NOTRUN -> [WARN][76] ([i915#2658])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-glk7/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-regular-context-1:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4270]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-1/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-tglu: NOTRUN -> [SKIP][78] ([i915#4270]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-5/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4270]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-5/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#4270]) +3 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-1/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#4270]) +3 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-14/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_readwrite@write-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#3282]) +6 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-2/igt@gem_readwrite@write-bad-handle.html
* igt@gem_render_copy@y-tiled-ccs-to-linear:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#5190]) +6 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-7/igt@gem_render_copy@y-tiled-ccs-to-linear.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#8428]) +5 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-3/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-rkl: NOTRUN -> [SKIP][85] ([fdo#109312]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-7/igt@gem_softpin@evict-snoop.html
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#4885]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-12/igt@gem_softpin@evict-snoop.html
- shard-tglu: NOTRUN -> [SKIP][87] ([fdo#109312]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-8/igt@gem_softpin@evict-snoop.html
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4885]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-3/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#4885]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-6/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_unfence_active_buffers:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#4879])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-16/igt@gem_unfence_active_buffers.html
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#4879])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-1/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: NOTRUN -> [SKIP][92] ([fdo#110542])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-7/igt@gem_userptr_blits@coherency-sync.html
- shard-tglu: NOTRUN -> [SKIP][93] ([fdo#110542])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-5/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#3297]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-10/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#3297]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-4/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#3297]) +3 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-17/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-tglu: NOTRUN -> [SKIP][97] ([i915#3297]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-10/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#3323])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#3297] / [i915#4880])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#3297] / [i915#4880])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@mmap-offset-banned@gtt:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#3297]) +4 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-8/igt@gem_userptr_blits@mmap-offset-banned@gtt.html
* igt@gem_userptr_blits@relocations:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#3281]) +4 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-3/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#3297] / [i915#4958])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-7/igt@gem_userptr_blits@sd-probe.html
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#3297] / [i915#4958])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-15/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@vma-merge:
- shard-rkl: NOTRUN -> [FAIL][105] ([i915#3318])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-4/igt@gem_userptr_blits@vma-merge.html
- shard-dg1: NOTRUN -> [FAIL][106] ([i915#3318])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-16/igt@gem_userptr_blits@vma-merge.html
- shard-dg2: NOTRUN -> [FAIL][107] ([i915#3318])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-1/igt@gem_userptr_blits@vma-merge.html
* igt@gen7_exec_parse@basic-allocation:
- shard-mtlp: NOTRUN -> [SKIP][108] ([fdo#109289]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-4/igt@gen7_exec_parse@basic-allocation.html
* igt@gen9_exec_parse@allowed-all:
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#2856])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-6/igt@gen9_exec_parse@allowed-all.html
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#2856]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-7/igt@gen9_exec_parse@allowed-all.html
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#2527])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#2527]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-15/igt@gen9_exec_parse@allowed-all.html
- shard-tglu: NOTRUN -> [SKIP][113] ([i915#2527] / [i915#2856])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-5/igt@gen9_exec_parse@allowed-all.html
* igt@i915_module_load@load:
- shard-snb: NOTRUN -> [SKIP][114] ([fdo#109271] / [i915#6227])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-snb5/igt@i915_module_load@load.html
- shard-dg1: NOTRUN -> [SKIP][115] ([i915#6227])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-17/igt@i915_module_load@load.html
- shard-tglu: NOTRUN -> [SKIP][116] ([i915#6227])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-6/igt@i915_module_load@load.html
- shard-glk: NOTRUN -> [SKIP][117] ([fdo#109271] / [i915#6227])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-glk2/igt@i915_module_load@load.html
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#6227])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-2/igt@i915_module_load@load.html
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#6227])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-10/igt@i915_module_load@load.html
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#6227])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-7/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: NOTRUN -> [INCOMPLETE][121] ([i915#9820] / [i915#9849])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg1: NOTRUN -> [INCOMPLETE][122] ([i915#9820] / [i915#9849])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-19/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: NOTRUN -> [INCOMPLETE][123] ([i915#9200])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#8436])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-3/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#8399]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-4/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#6590])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-2/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#6590])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-13/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-rkl: NOTRUN -> [SKIP][128] ([fdo#109289]) +3 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-5/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- shard-dg1: NOTRUN -> [SKIP][129] ([fdo#109289]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-12/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- shard-tglu: NOTRUN -> [SKIP][130] ([fdo#109289]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-snb: NOTRUN -> [INCOMPLETE][131] ([i915#9858])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-snb6/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_query@query-topology-unsupported:
- shard-rkl: NOTRUN -> [SKIP][132] ([fdo#109302])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-5/igt@i915_query@query-topology-unsupported.html
- shard-dg1: NOTRUN -> [SKIP][133] ([fdo#109302])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-15/igt@i915_query@query-topology-unsupported.html
- shard-tglu: NOTRUN -> [SKIP][134] ([fdo#109302])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-5/igt@i915_query@query-topology-unsupported.html
- shard-mtlp: NOTRUN -> [SKIP][135] ([fdo#109302])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-7/igt@i915_query@query-topology-unsupported.html
- shard-dg2: NOTRUN -> [SKIP][136] ([fdo#109302])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-7/igt@i915_query@query-topology-unsupported.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#7707])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-7/igt@intel_hwmon@hwmon-write.html
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#7707])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-8/igt@intel_hwmon@hwmon-write.html
- shard-mtlp: NOTRUN -> [SKIP][139] ([i915#7707])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-3/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#4215])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-15/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#4212])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-6/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#4215] / [i915#5190])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#1769] / [i915#3555])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-snb: NOTRUN -> [SKIP][144] ([fdo#109271] / [i915#1769])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-snb4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#5286]) +4 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-4/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [FAIL][146] ([i915#5138])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#4538] / [i915#5286]) +4 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
- shard-tglu: NOTRUN -> [SKIP][148] ([fdo#111615] / [i915#5286]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][149] ([fdo#111614]) +2 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-2/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][150] ([fdo#111614] / [i915#3638]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][151] ([i915#3638]) +2 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-14/igt@kms_big_fb@linear-8bpp-rotate-270.html
- shard-tglu: NOTRUN -> [SKIP][152] ([fdo#111614]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-4/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][153] ([fdo#111614]) +2 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-5/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: NOTRUN -> [FAIL][154] ([i915#3743])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
- shard-mtlp: NOTRUN -> [SKIP][155] ([fdo#111615]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][156] ([i915#4538]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#4538] / [i915#5190]) +2 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][158] ([fdo#110723]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
- shard-tglu: NOTRUN -> [SKIP][159] ([fdo#111615])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-dg2-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#5354] / [i915#6095]) +33 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-6/igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-mtl-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#5354]) +54 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-5/igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@pipe-b-missing-ccs-buffer-y-tiled-gen12-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#5354] / [i915#6095]) +22 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-1/igt@kms_ccs@pipe-b-missing-ccs-buffer-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-4-tiled-dg2-rc-ccs:
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#5354] / [i915#6095]) +31 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-4/igt@kms_ccs@pipe-c-bad-rotation-90-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@pipe-d-ccs-on-another-bo-4-tiled-mtl-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#5354]) +28 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-7/igt@kms_ccs@pipe-d-ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@pipe-d-random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#5354] / [i915#6095]) +46 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-12/igt@kms_ccs@pipe-d-random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg1: NOTRUN -> [SKIP][166] ([fdo#111827]) +2 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-19/igt@kms_chamelium_color@ctm-0-50.html
- shard-tglu: NOTRUN -> [SKIP][167] ([fdo#111827]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-7/igt@kms_chamelium_color@ctm-0-50.html
- shard-mtlp: NOTRUN -> [SKIP][168] ([fdo#111827]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-2/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2: NOTRUN -> [SKIP][169] ([fdo#111827]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-7/igt@kms_chamelium_color@ctm-green-to-red.html
- shard-rkl: NOTRUN -> [SKIP][170] ([fdo#111827]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-5/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#7828]) +7 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-6/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#7828]) +9 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-1/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#7828]) +9 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#7828]) +7 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-7/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#7828]) +6 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-5/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#3299])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#3116])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#3299])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#3116] / [i915#3299])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-3/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-mtlp: NOTRUN -> [SKIP][180] ([i915#3299])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-4/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#8814])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#3555]) +9 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-14/igt@kms_cursor_crc@cursor-random-32x32.html
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8814])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#4213]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#4103] / [i915#4213] / [i915#5608])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#4103]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#4103] / [i915#4213]) +2 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#4103]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#4103] / [i915#4213])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: NOTRUN -> [SKIP][190] ([fdo#111825]) +12 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
- shard-tglu: NOTRUN -> [SKIP][191] ([fdo#109274]) +2 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-8/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#9809]) +3 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][193] ([fdo#111767])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
- shard-dg2: NOTRUN -> [SKIP][194] ([fdo#109274] / [fdo#111767] / [i915#5354])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
- shard-rkl: NOTRUN -> [SKIP][195] ([fdo#111767] / [fdo#111825]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
- shard-dg1: NOTRUN -> [SKIP][196] ([fdo#111767] / [fdo#111825]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-18/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
- shard-tglu: NOTRUN -> [SKIP][197] ([fdo#109274] / [fdo#111767])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][198] ([fdo#109274] / [i915#5354]) +4 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#9723])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#9723])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-16/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#9833])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_feature_discovery@psr1:
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#658])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-3/igt@kms_feature_discovery@psr1.html
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#658])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-11/igt@kms_feature_discovery@psr1.html
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#658])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-2/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#658])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-16/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][206] ([fdo#111767] / [i915#3637])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
- shard-tglu: NOTRUN -> [SKIP][207] ([fdo#109274] / [fdo#111767] / [i915#3637])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][208] ([fdo#109274]) +4 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-7/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#3637]) +4 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-tglu: NOTRUN -> [SKIP][210] ([fdo#109274] / [i915#3637]) +4 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#8381])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-13/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#2672]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#2587] / [i915#2672]) +2 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#2587] / [i915#2672]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#2672]) +2 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#2672]) +2 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8810]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][218] ([fdo#109280]) +19 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#8708]) +17 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#5439])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#5439])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#3458]) +12 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][223] ([fdo#111825]) +36 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#8708]) +16 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][225] ([fdo#111825] / [i915#1825]) +35 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#9653])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-6/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#9653])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-7/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#9653])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-6/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#9653])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-15/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
- shard-tglu: NOTRUN -> [SKIP][230] ([i915#9653])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#3023]) +24 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#3458]) +17 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][233] ([i915#8708]) +5 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#1825]) +17 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][235] ([fdo#110189]) +15 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html
* igt@kms_hdr@static-swap:
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-14/igt@kms_hdr@static-swap.html
- shard-tglu: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-4/igt@kms_hdr@static-swap.html
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-5/igt@kms_hdr@static-swap.html
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-1/igt@kms_hdr@static-swap.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#6301])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-6/igt@kms_panel_fitting@legacy.html
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#6301])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-4/igt@kms_panel_fitting@legacy.html
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#6301])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-19/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
- shard-dg2: NOTRUN -> [SKIP][243] ([fdo#109289]) +3 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-7/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html
* igt@kms_plane_lowres@tiling-y:
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#8821])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-3/igt@kms_plane_lowres@tiling-y.html
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#8821])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-7/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#3555]) +9 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html
- shard-mtlp: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#8806])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-6/igt@kms_plane_multiple@tiling-yf.html
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#8806])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-7/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#5176]) +3 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][250] ([fdo#109271]) +148 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-glk3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#9423]) +7 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#9423]) +15 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][253] ([i915#9423]) +15 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-8/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#5235]) +6 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#5235])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d-edp-1.html
* igt@kms_pm_backlight@bad-brightness:
- shard-dg1: NOTRUN -> [SKIP][256] ([i915#5354])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-19/igt@kms_pm_backlight@bad-brightness.html
- shard-tglu: NOTRUN -> [SKIP][257] ([i915#9812])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-7/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-rkl: NOTRUN -> [SKIP][258] ([i915#9685])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-2/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#9685])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-13/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [PASS][260] -> [SKIP][261] ([i915#9519])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14026/shard-dg2-10/igt@kms_pm_rpm@dpms-lpsp.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#9519])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][263] ([i915#9519])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-13/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#9683]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-1/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
- shard-dg1: NOTRUN -> [SKIP][265] ([i915#9683]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-17/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#9683])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-6/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][267] ([fdo#111068] / [i915#9683])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-4/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#9683]) +3 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-7/igt@kms_psr2_su@page_flip-p010.html
- shard-rkl: NOTRUN -> [SKIP][269] ([fdo#111068] / [i915#9683]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-5/igt@kms_psr2_su@page_flip-p010.html
- shard-dg1: NOTRUN -> [SKIP][270] ([fdo#111068] / [i915#9683]) +1 other test skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-12/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#5289])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#5289])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-14/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#4235])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-1/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][274] ([i915#5289])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][275] ([i915#3555]) +5 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-7/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-dg2: NOTRUN -> [SKIP][276] ([i915#3555]) +5 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8823])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8809]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-8/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_writeback@writeback-check-output:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#2437])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-7/igt@kms_writeback@writeback-check-output.html
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#2437])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-19/igt@kms_writeback@writeback-check-output.html
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#2437])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-7/igt@kms_writeback@writeback-check-output.html
- shard-glk: NOTRUN -> [SKIP][282] ([fdo#109271] / [i915#2437])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-glk3/igt@kms_writeback@writeback-check-output.html
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#2437])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-2/igt@kms_writeback@writeback-check-output.html
* igt@perf@gen12-group-concurrent-oa-buffer-read:
- shard-rkl: NOTRUN -> [ABORT][284] ([i915#9847]) +2 other tests abort
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-6/igt@perf@gen12-group-concurrent-oa-buffer-read.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-mtlp: NOTRUN -> [ABORT][285] ([i915#9847]) +6 other tests abort
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-7/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-dg1: NOTRUN -> [ABORT][286] ([i915#9847])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-13/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@sysctl-defaults:
- shard-dg2: NOTRUN -> [ABORT][287] ([i915#9847]) +1 other test abort
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-7/igt@perf@sysctl-defaults.html
* igt@perf_pmu:
- shard-snb: NOTRUN -> [INCOMPLETE][288] ([i915#2295] / [i915#9853])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-snb4/igt@perf_pmu.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-dg2: NOTRUN -> [INCOMPLETE][289] ([i915#9853]) +3 other tests incomplete
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-6/igt@perf_pmu@all-busy-idle-check-all.html
* igt@perf_pmu@busy-accuracy-2@rcs0:
- shard-dg2: NOTRUN -> [ABORT][290] ([i915#9847] / [i915#9853]) +1 other test abort
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-7/igt@perf_pmu@busy-accuracy-2@rcs0.html
- shard-rkl: NOTRUN -> [ABORT][291] ([i915#9847] / [i915#9853]) +2 other tests abort
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-5/igt@perf_pmu@busy-accuracy-2@rcs0.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-snb: NOTRUN -> [INCOMPLETE][292] ([i915#9853]) +5 other tests incomplete
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-snb6/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@busy-idle-check-all:
- shard-snb: NOTRUN -> [INCOMPLETE][293] ([i915#9847] / [i915#9853])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-snb7/igt@perf_pmu@busy-idle-check-all.html
* igt@perf_pmu@busy-idle@rcs0:
- shard-tglu: NOTRUN -> [INCOMPLETE][294] ([i915#9853]) +5 other tests incomplete
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-6/igt@perf_pmu@busy-idle@rcs0.html
- shard-glk: NOTRUN -> [INCOMPLETE][295] ([i915#9853]) +4 other tests incomplete
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-glk2/igt@perf_pmu@busy-idle@rcs0.html
* igt@perf_pmu@idle-no-semaphores@rcs0:
- shard-mtlp: NOTRUN -> [ABORT][296] ([i915#9847] / [i915#9853]) +5 other tests abort
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-8/igt@perf_pmu@idle-no-semaphores@rcs0.html
- shard-rkl: NOTRUN -> [INCOMPLETE][297] ([i915#9853]) +2 other tests incomplete
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-1/igt@perf_pmu@idle-no-semaphores@rcs0.html
* igt@perf_pmu@idle@rcs0:
- shard-glk: NOTRUN -> [ABORT][298] ([i915#9847] / [i915#9853])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-glk1/igt@perf_pmu@idle@rcs0.html
* igt@perf_pmu@interrupts-sync:
- shard-dg1: NOTRUN -> [INCOMPLETE][299] ([i915#9853]) +5 other tests incomplete
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-12/igt@perf_pmu@interrupts-sync.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [INCOMPLETE][300] ([i915#5493])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-5/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][301] ([fdo#109295] / [i915#3291] / [i915#3708])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-7/igt@prime_vgem@basic-write.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-rkl: NOTRUN -> [FAIL][302] ([i915#9781])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-5/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-snb: NOTRUN -> [FAIL][303] ([i915#9779])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-snb1/igt@syncobj_wait@invalid-wait-zero-handles.html
* igt@v3d/v3d_create_bo@create-bo-invalid-flags:
- shard-rkl: NOTRUN -> [SKIP][304] ([fdo#109315]) +5 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-7/igt@v3d/v3d_create_bo@create-bo-invalid-flags.html
* igt@v3d/v3d_submit_cl@bad-multisync-extension:
- shard-tglu: NOTRUN -> [SKIP][305] ([fdo#109315] / [i915#2575]) +2 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-7/igt@v3d/v3d_submit_cl@bad-multisync-extension.html
* igt@v3d/v3d_submit_cl@job-perfmon:
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#2575]) +5 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-18/igt@v3d/v3d_submit_cl@job-perfmon.html
* igt@v3d/v3d_submit_csd@bad-bo:
- shard-mtlp: NOTRUN -> [SKIP][307] ([i915#2575]) +3 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-6/igt@v3d/v3d_submit_csd@bad-bo.html
- shard-dg2: NOTRUN -> [SKIP][308] ([i915#2575]) +2 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-7/igt@v3d/v3d_submit_csd@bad-bo.html
* igt@vc4/vc4_perfmon@create-perfmon-0:
- shard-tglu: NOTRUN -> [SKIP][309] ([i915#2575]) +3 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-tglu-4/igt@vc4/vc4_perfmon@create-perfmon-0.html
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#7711]) +3 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-4/igt@vc4/vc4_perfmon@create-perfmon-0.html
* igt@vc4/vc4_purgeable_bo@mark-purgeable:
- shard-rkl: NOTRUN -> [SKIP][311] ([i915#7711]) +5 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-7/igt@vc4/vc4_purgeable_bo@mark-purgeable.html
- shard-dg1: NOTRUN -> [SKIP][312] ([i915#7711]) +5 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-12/igt@vc4/vc4_purgeable_bo@mark-purgeable.html
* igt@vc4/vc4_tiling@set-bad-modifier:
- shard-dg2: NOTRUN -> [SKIP][313] ([i915#7711]) +3 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-6/igt@vc4/vc4_tiling@set-bad-modifier.html
#### Possible fixes ####
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-pwrite:
- shard-snb: [SKIP][314] ([fdo#109271]) -> [PASS][315] +1 other test pass
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14026/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-pwrite.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-pwrite.html
#### Warnings ####
* igt@gem_ctx_freq@sysfs@gt0:
- shard-dg1: [INCOMPLETE][316] -> [ABORT][317] ([i915#9847])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14026/shard-dg1-17/igt@gem_ctx_freq@sysfs@gt0.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-13/igt@gem_ctx_freq@sysfs@gt0.html
* igt@gem_ctx_freq@sysfs@gt1:
- shard-mtlp: [INCOMPLETE][318] -> [INCOMPLETE][319] ([i915#9855])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14026/shard-mtlp-8/igt@gem_ctx_freq@sysfs@gt1.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-mtlp-1/igt@gem_ctx_freq@sysfs@gt1.html
* igt@perf_pmu@semaphore-wait@rcs0:
- shard-dg2: [ABORT][320] ([i915#9847] / [i915#9853]) -> [INCOMPLETE][321] ([i915#9853]) +1 other test incomplete
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14026/shard-dg2-7/igt@perf_pmu@semaphore-wait@rcs0.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg2-10/igt@perf_pmu@semaphore-wait@rcs0.html
- shard-rkl: [ABORT][322] ([i915#9847] / [i915#9853]) -> [INCOMPLETE][323] ([i915#9853])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14026/shard-rkl-3/igt@perf_pmu@semaphore-wait@rcs0.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-rkl-7/igt@perf_pmu@semaphore-wait@rcs0.html
- shard-dg1: [INCOMPLETE][324] ([i915#9853]) -> [ABORT][325] ([i915#9847] / [i915#9853])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14026/shard-dg1-12/igt@perf_pmu@semaphore-wait@rcs0.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10426/shard-dg1-13/igt@perf_pmu@semaphore-wait@rcs0.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#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295
[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#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6122]: https://gitlab.freedesktop.org/drm/intel/issues/6122
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8436]: https://gitlab.freedesktop.org/drm/intel/issues/8436
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823
[i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9653]: https://gitlab.freedesktop.org/drm/intel/issues/9653
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732
[i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779
[i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781
[i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812
[i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820
[i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833
[i915#9847]: https://gitlab.freedesktop.org/drm/intel/issues/9847
[i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849
[i915#9853]: https://gitlab.freedesktop.org/drm/intel/issues/9853
[i915#9855]: https://gitlab.freedesktop.org/drm/intel/issues/9855
[i915#9856]: https://gitlab.freedesktop.org/drm/intel/issues/9856
[i915#9857]: https://gitlab.freedesktop.org/drm/intel/issues/9857
[i915#9858]: https://gitlab.freedesktop.org/drm/intel/issues/9858
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7643 -> IGTPW_10426
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_14026: 458b78ab58b042d72b6d0e32b9ac5ec86aa236da @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10426: 10426
IGT_7643: ced22f8bf4263ff395dc852c86b682e62a7a1c1b @ 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_10426/index.html
[-- Attachment #2: Type: text/html, Size: 108653 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2023-12-15 22:38 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-15 19:41 [PATCH i-g-t v7 0/5] Compression support for Lunarlake Akshata Jahagirdar
2023-12-15 9:55 ` ✓ CI.xeBAT: success for " Patchwork
2023-12-15 10:26 ` ✓ Fi.CI.BAT: " Patchwork
2023-12-15 19:41 ` [PATCH i-g-t v7 1/5] lib: Add blt command properties for lunarlake Akshata Jahagirdar
2023-12-15 19:41 ` [PATCH i-g-t v7 2/5] lib/intel_blt: Update calculation of ccs_size and size_of_ctrl_copy Akshata Jahagirdar
2023-12-15 19:41 ` [PATCH i-g-t v7 3/5] lib/intel_pat: Add uc_comp pat_index Akshata Jahagirdar
2023-12-15 19:41 ` [PATCH i-g-t v7 4/5] lib/intel_blt: Update caching mode and pat_index Akshata Jahagirdar
2023-12-15 19:41 ` [PATCH i-g-t v7 5/5] tests/intel/xe_ccs: Add compression support for Lunarlake Akshata Jahagirdar
2023-12-15 8:11 ` Zbigniew Kempczyński
2023-12-15 22:38 ` ✗ Fi.CI.IGT: failure for Compression " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox