* [PATCH] drm/ttm: WIP limit the TTM pool to 32bit CPUs
@ 2025-08-06 13:28 Christian König
2025-08-06 17:43 ` Thomas Hellström
` (4 more replies)
0 siblings, 5 replies; 12+ messages in thread
From: Christian König @ 2025-08-06 13:28 UTC (permalink / raw)
To: dri-devel, intel-gfx, intel-xe; +Cc: airlied, thomas.hellstrom, matthew.brost
On some old x86 systems we had the problem that changing the caching flags
of system memory requires changing the global MTRR/PAT tables.
But on any modern x86 system (CPUs introduced rughly after 2004) we
actually don't need that any more and can update the caching flags
directly in the PTEs of the CPU mapping. It was just never disabled
because of the fear of regressions.
We already use the PTE flags for encryption on x86 64bit for quite a while
and all other supported platforms (Sparc, PowerPC, ARM, MIPS, LONGARCH)
have never done anything different either.
So disable the page pool completely for 64bit systems and just insert a
clflush to be on the safe side so that we never return memory with dirty
cache lines.
Testing on a Ryzen 5 and 7 shows that this has absolutely no performance
impact and of hand the AMD CI can't find a problem either.
Let's see what the i915 and XE CI systems say to that.
Signed-off-by: Christian König <christian.koenig@amd.com>
---
drivers/gpu/drm/ttm/ttm_pool.c | 16 +++++++++++-----
1 file changed, 11 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/ttm/ttm_pool.c b/drivers/gpu/drm/ttm/ttm_pool.c
index baf27c70a419..7487eac29398 100644
--- a/drivers/gpu/drm/ttm/ttm_pool.c
+++ b/drivers/gpu/drm/ttm/ttm_pool.c
@@ -38,7 +38,7 @@
#include <linux/highmem.h>
#include <linux/sched/mm.h>
-#ifdef CONFIG_X86
+#ifdef CONFIG_X86_32
#include <asm/set_memory.h>
#endif
@@ -46,6 +46,7 @@
#include <drm/ttm/ttm_pool.h>
#include <drm/ttm/ttm_tt.h>
#include <drm/ttm/ttm_bo.h>
+#include <drm/drm_cache.h>
#include "ttm_module.h"
@@ -192,7 +193,7 @@ static void ttm_pool_free_page(struct ttm_pool *pool, enum ttm_caching caching,
struct ttm_pool_dma *dma;
void *vaddr;
-#ifdef CONFIG_X86
+#ifdef CONFIG_X86_32
/* We don't care that set_pages_wb is inefficient here. This is only
* used when we have to shrink and CPU overhead is irrelevant then.
*/
@@ -218,7 +219,7 @@ static void ttm_pool_free_page(struct ttm_pool *pool, enum ttm_caching caching,
/* Apply any cpu-caching deferred during page allocation */
static int ttm_pool_apply_caching(struct ttm_pool_alloc_state *alloc)
{
-#ifdef CONFIG_X86
+#ifdef CONFIG_X86_32
unsigned int num_pages = alloc->pages - alloc->caching_divide;
if (!num_pages)
@@ -232,6 +233,11 @@ static int ttm_pool_apply_caching(struct ttm_pool_alloc_state *alloc)
case ttm_uncached:
return set_pages_array_uc(alloc->caching_divide, num_pages);
}
+
+#elif defined(CONFIG_X86_64)
+ unsigned int num_pages = alloc->pages - alloc->caching_divide;
+
+ drm_clflush_pages(alloc->caching_divide, num_pages);
#endif
alloc->caching_divide = alloc->pages;
return 0;
@@ -342,7 +348,7 @@ static struct ttm_pool_type *ttm_pool_select_type(struct ttm_pool *pool,
if (pool->use_dma_alloc)
return &pool->caching[caching].orders[order];
-#ifdef CONFIG_X86
+#ifdef CONFIG_X86_32
switch (caching) {
case ttm_write_combined:
if (pool->nid != NUMA_NO_NODE)
@@ -980,7 +986,7 @@ long ttm_pool_backup(struct ttm_pool *pool, struct ttm_tt *tt,
pool->use_dma_alloc || ttm_tt_is_backed_up(tt))
return -EBUSY;
-#ifdef CONFIG_X86
+#ifdef CONFIG_X86_32
/* Anything returned to the system needs to be cached. */
if (tt->caching != ttm_cached)
set_pages_array_wb(tt->pages, tt->num_pages);
--
2.43.0
^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH] drm/ttm: WIP limit the TTM pool to 32bit CPUs
2025-08-06 13:28 [PATCH] drm/ttm: WIP limit the TTM pool to 32bit CPUs Christian König
@ 2025-08-06 17:43 ` Thomas Hellström
2025-08-07 9:53 ` Christian König
2025-08-06 18:57 ` ✓ i915.CI.BAT: success for " Patchwork
` (3 subsequent siblings)
4 siblings, 1 reply; 12+ messages in thread
From: Thomas Hellström @ 2025-08-06 17:43 UTC (permalink / raw)
To: Christian König, dri-devel, intel-gfx, intel-xe
Cc: airlied, matthew.brost
Hi, Christian
On Wed, 2025-08-06 at 15:28 +0200, Christian König wrote:
> On some old x86 systems we had the problem that changing the caching
> flags
> of system memory requires changing the global MTRR/PAT tables.
>
> But on any modern x86 system (CPUs introduced rughly after 2004) we
> actually don't need that any more and can update the caching flags
> directly in the PTEs of the CPU mapping. It was just never disabled
> because of the fear of regressions.
>
> We already use the PTE flags for encryption on x86 64bit for quite a
> while
> and all other supported platforms (Sparc, PowerPC, ARM, MIPS,
> LONGARCH)
> have never done anything different either.
IIRC from my VMWARE days, changing SEV encryption mode of a page still
requires changing all mappings including kernel maps?
__set_memory_enc_pgtable()
>
> So disable the page pool completely for 64bit systems and just insert
> a
> clflush to be on the safe side so that we never return memory with
> dirty
> cache lines.
>
> Testing on a Ryzen 5 and 7 shows that this has absolutely no
> performance
> impact and of hand the AMD CI can't find a problem either.
>
> Let's see what the i915 and XE CI systems say to that.
>
> Signed-off-by: Christian König <christian.koenig@amd.com>
I don't think we can do this. First Lunar Lake can in some situations,
just like the old Athlons, write-back clean cache lines which means
writebacks of speculative prefetches may overwrite GPU data. LNL makes
heavy use of non-coherent GPU mappings for performance.
Second, IIRC vm_insert_pfn_prot() on X86 will override the given
caching mode with the last caching mode set for the kernel linear map,
so if you try to set up a write-combined GPU mapping without a previous
call to set_pages_xxxxx it will actually end up cached. see
track_pfn_insert().
/Thomas
> ---
> drivers/gpu/drm/ttm/ttm_pool.c | 16 +++++++++++-----
> 1 file changed, 11 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/ttm/ttm_pool.c
> b/drivers/gpu/drm/ttm/ttm_pool.c
> index baf27c70a419..7487eac29398 100644
> --- a/drivers/gpu/drm/ttm/ttm_pool.c
> +++ b/drivers/gpu/drm/ttm/ttm_pool.c
> @@ -38,7 +38,7 @@
> #include <linux/highmem.h>
> #include <linux/sched/mm.h>
>
> -#ifdef CONFIG_X86
> +#ifdef CONFIG_X86_32
> #include <asm/set_memory.h>
> #endif
>
> @@ -46,6 +46,7 @@
> #include <drm/ttm/ttm_pool.h>
> #include <drm/ttm/ttm_tt.h>
> #include <drm/ttm/ttm_bo.h>
> +#include <drm/drm_cache.h>
>
> #include "ttm_module.h"
>
> @@ -192,7 +193,7 @@ static void ttm_pool_free_page(struct ttm_pool
> *pool, enum ttm_caching caching,
> struct ttm_pool_dma *dma;
> void *vaddr;
>
> -#ifdef CONFIG_X86
> +#ifdef CONFIG_X86_32
> /* We don't care that set_pages_wb is inefficient here. This
> is only
> * used when we have to shrink and CPU overhead is
> irrelevant then.
> */
> @@ -218,7 +219,7 @@ static void ttm_pool_free_page(struct ttm_pool
> *pool, enum ttm_caching caching,
> /* Apply any cpu-caching deferred during page allocation */
> static int ttm_pool_apply_caching(struct ttm_pool_alloc_state
> *alloc)
> {
> -#ifdef CONFIG_X86
> +#ifdef CONFIG_X86_32
> unsigned int num_pages = alloc->pages - alloc-
> >caching_divide;
>
> if (!num_pages)
> @@ -232,6 +233,11 @@ static int ttm_pool_apply_caching(struct
> ttm_pool_alloc_state *alloc)
> case ttm_uncached:
> return set_pages_array_uc(alloc->caching_divide,
> num_pages);
> }
> +
> +#elif defined(CONFIG_X86_64)
> + unsigned int num_pages = alloc->pages - alloc-
> >caching_divide;
> +
> + drm_clflush_pages(alloc->caching_divide, num_pages);
> #endif
> alloc->caching_divide = alloc->pages;
> return 0;
> @@ -342,7 +348,7 @@ static struct ttm_pool_type
> *ttm_pool_select_type(struct ttm_pool *pool,
> if (pool->use_dma_alloc)
> return &pool->caching[caching].orders[order];
>
> -#ifdef CONFIG_X86
> +#ifdef CONFIG_X86_32
> switch (caching) {
> case ttm_write_combined:
> if (pool->nid != NUMA_NO_NODE)
> @@ -980,7 +986,7 @@ long ttm_pool_backup(struct ttm_pool *pool,
> struct ttm_tt *tt,
> pool->use_dma_alloc || ttm_tt_is_backed_up(tt))
> return -EBUSY;
>
> -#ifdef CONFIG_X86
> +#ifdef CONFIG_X86_32
> /* Anything returned to the system needs to be cached. */
> if (tt->caching != ttm_cached)
> set_pages_array_wb(tt->pages, tt->num_pages);
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ i915.CI.BAT: success for drm/ttm: WIP limit the TTM pool to 32bit CPUs
2025-08-06 13:28 [PATCH] drm/ttm: WIP limit the TTM pool to 32bit CPUs Christian König
2025-08-06 17:43 ` Thomas Hellström
@ 2025-08-06 18:57 ` Patchwork
2025-08-06 22:38 ` ✓ i915.CI.Full: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-08-06 18:57 UTC (permalink / raw)
To: Christian König; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 3587 bytes --]
== Series Details ==
Series: drm/ttm: WIP limit the TTM pool to 32bit CPUs
URL : https://patchwork.freedesktop.org/series/152589/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_16963 -> Patchwork_152589v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/index.html
Participating hosts (45 -> 44)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_152589v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/bat-dg2-9/igt@i915_selftest@live@workarounds.html
- bat-dg2-11: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/bat-dg2-11/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/bat-dg2-11/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live@execlists:
- bat-dg2-14: [ABORT][5] ([i915#14201]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/bat-dg2-14/igt@i915_selftest@live@execlists.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/bat-dg2-14/igt@i915_selftest@live@execlists.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/bat-arlh-3/igt@i915_selftest@live@workarounds.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-atsm-1: [DMESG-FAIL][9] ([i915#12061] / [i915#13929]) -> [DMESG-FAIL][10] ([i915#12061] / [i915#14204])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/bat-atsm-1/igt@i915_selftest@live.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/bat-atsm-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@mman:
- bat-atsm-1: [DMESG-FAIL][11] ([i915#13929]) -> [DMESG-FAIL][12] ([i915#14204])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/bat-atsm-1/igt@i915_selftest@live@mman.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/bat-atsm-1/igt@i915_selftest@live@mman.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929
[i915#14201]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14201
[i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204
Build changes
-------------
* Linux: CI_DRM_16963 -> Patchwork_152589v1
CI-20190529: 20190529
CI_DRM_16963: 6dc234cf6e4745947e7af52640c70de93fc5652a @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8487: 8487
Patchwork_152589v1: 6dc234cf6e4745947e7af52640c70de93fc5652a @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/index.html
[-- Attachment #2: Type: text/html, Size: 4746 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ i915.CI.Full: success for drm/ttm: WIP limit the TTM pool to 32bit CPUs
2025-08-06 13:28 [PATCH] drm/ttm: WIP limit the TTM pool to 32bit CPUs Christian König
2025-08-06 17:43 ` Thomas Hellström
2025-08-06 18:57 ` ✓ i915.CI.BAT: success for " Patchwork
@ 2025-08-06 22:38 ` Patchwork
2025-08-09 4:07 ` [PATCH] " kernel test robot
2025-08-12 10:36 ` Matthew Auld
4 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-08-06 22:38 UTC (permalink / raw)
To: Christian König; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 126531 bytes --]
== Series Details ==
Series: drm/ttm: WIP limit the TTM pool to 32bit CPUs
URL : https://patchwork.freedesktop.org/series/152589/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_16963_full -> Patchwork_152589v1_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 14)
------------------------------
Additional (2): shard-snb-0 shard-dg2-set2
Known issues
------------
Here are the changes found in Patchwork_152589v1_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_read@short-buffer-wakeup:
- shard-glk11: NOTRUN -> [SKIP][1] +34 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-glk11/igt@drm_read@short-buffer-wakeup.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][2] ([i915#3555] / [i915#9323])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-4/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][3] ([i915#9323])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-3/igt@gem_ccs@suspend-resume.html
- shard-dg2-9: NOTRUN -> [INCOMPLETE][4] ([i915#13356])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
- shard-dg2-9: NOTRUN -> [INCOMPLETE][5] ([i915#12392] / [i915#13356])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#7697])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-11/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu-1: NOTRUN -> [SKIP][7] ([i915#6335])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_persistence@hang:
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#8555])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-8/igt@gem_ctx_persistence@hang.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#280])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@gem_ctx_sseu@mmap-args.html
- shard-tglu-1: NOTRUN -> [SKIP][10] ([i915#280])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg2-9: NOTRUN -> [SKIP][11] ([i915#4812])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@parallel:
- shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#4525])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_big@single:
- shard-tglu: NOTRUN -> [ABORT][13] ([i915#11713] / [i915#14756])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-4/igt@gem_exec_big@single.html
* igt@gem_exec_endless@dispatch@rcs0:
- shard-dg1: [PASS][14] -> [TIMEOUT][15] ([i915#3778]) +1 other test timeout
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg1-16/igt@gem_exec_endless@dispatch@rcs0.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg1-13/igt@gem_exec_endless@dispatch@rcs0.html
* igt@gem_exec_fence@submit:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#4812])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-8/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2: NOTRUN -> [SKIP][17] ([i915#3539] / [i915#4852])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-7/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#3281]) +5 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-8/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#3281]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_exec_reloc@basic-write-gtt-noreloc:
- shard-dg2-9: NOTRUN -> [SKIP][20] ([i915#3281]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@gem_exec_reloc@basic-write-gtt-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#4537] / [i915#4812])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#4860]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-8/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-dg2-9: NOTRUN -> [SKIP][23] ([i915#4860]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#4613] / [i915#7582])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@gem_lmem_evict@dontneed-evict-race.html
- shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#4613] / [i915#7582])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-tglu: NOTRUN -> [SKIP][26] ([i915#4613]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-4/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][27] -> [TIMEOUT][28] ([i915#5493]) +1 other test timeout
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify-random:
- shard-glk: NOTRUN -> [SKIP][29] ([i915#4613]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-glk1/igt@gem_lmem_swapping@verify-random.html
- shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#4613])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@gem_lmem_swapping@verify-random.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#284])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-11/igt@gem_media_vme.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#4077]) +6 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy.html
* igt@gem_mmap_gtt@hang-busy:
- shard-dg2-9: NOTRUN -> [SKIP][33] ([i915#4077])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@gem_mmap_gtt@hang-busy.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-dg2-9: NOTRUN -> [SKIP][34] ([i915#4083]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2-9: NOTRUN -> [SKIP][35] ([i915#3282]) +4 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#3282]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-8/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk10: NOTRUN -> [WARN][37] ([i915#14702] / [i915#2658])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-glk10/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: NOTRUN -> [TIMEOUT][38] ([i915#12964])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@create-regular-context-1:
- shard-rkl: [PASS][39] -> [TIMEOUT][40] ([i915#12917] / [i915#12964])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-8/igt@gem_pxp@create-regular-context-1.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-7/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@create-valid-protected-context:
- shard-dg2-9: NOTRUN -> [SKIP][41] ([i915#4270])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#4270])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-11/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#5190] / [i915#8428]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-11/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][44] ([i915#5190] / [i915#8428])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][45] ([i915#4079])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: NOTRUN -> [INCOMPLETE][46] ([i915#13809])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-glk1/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_partial_pwrite_pread@reads:
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#3282]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@gem_tiled_partial_pwrite_pread@reads.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2-9: NOTRUN -> [SKIP][48] ([i915#3297] / [i915#4880])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][49] ([i915#3297]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-3/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281] / [i915#3297])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-7/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#3297])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@gem_userptr_blits@unsync-overlap.html
- shard-tglu-1: NOTRUN -> [SKIP][52] ([i915#3297])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2-9: NOTRUN -> [SKIP][53] ([i915#3297]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#3297])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-11/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen7_exec_parse@basic-allocation:
- shard-dg2-9: NOTRUN -> [SKIP][55] +4 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@gen7_exec_parse@basic-allocation.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#2856])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-7/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#2527])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@gen9_exec_parse@bb-chained.html
- shard-tglu-1: NOTRUN -> [SKIP][58] ([i915#2527] / [i915#2856]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-oversize:
- shard-dg2-9: NOTRUN -> [SKIP][59] ([i915#2856])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-param:
- shard-tglu: NOTRUN -> [SKIP][60] ([i915#2527] / [i915#2856]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-4/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_drm_fdinfo@busy-hang@vcs0:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#14073]) +7 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-11/igt@i915_drm_fdinfo@busy-hang@vcs0.html
* igt@i915_drm_fdinfo@most-busy-idle-check-all:
- shard-dg2-9: NOTRUN -> [SKIP][62] ([i915#14073]) +7 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@i915_drm_fdinfo@most-busy-idle-check-all.html
* igt@i915_module_load@load:
- shard-dg2: ([PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85]) -> ([PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [DMESG-WARN][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106]) ([i915#14559])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-7/igt@i915_module_load@load.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-2/igt@i915_module_load@load.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-5/igt@i915_module_load@load.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-4/igt@i915_module_load@load.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-8/igt@i915_module_load@load.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-3/igt@i915_module_load@load.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-8/igt@i915_module_load@load.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-3/igt@i915_module_load@load.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-4/igt@i915_module_load@load.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-11/igt@i915_module_load@load.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-1/igt@i915_module_load@load.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-2/igt@i915_module_load@load.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-1/igt@i915_module_load@load.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-6/igt@i915_module_load@load.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-5/igt@i915_module_load@load.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-3/igt@i915_module_load@load.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-10/igt@i915_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-4/igt@i915_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-1/igt@i915_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-11/igt@i915_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-11/igt@i915_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-7/igt@i915_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-6/igt@i915_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-11/igt@i915_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-11/igt@i915_module_load@load.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-11/igt@i915_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-1/igt@i915_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-1/igt@i915_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-2/igt@i915_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-2/igt@i915_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-2/igt@i915_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-3/igt@i915_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-3/igt@i915_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-4/igt@i915_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-4/igt@i915_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-5/igt@i915_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-5/igt@i915_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-5/igt@i915_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-6/igt@i915_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-6/igt@i915_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-7/igt@i915_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-7/igt@i915_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-8/igt@i915_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-8/igt@i915_module_load@load.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#8399])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-4/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2-9: NOTRUN -> [SKIP][108] ([i915#11681] / [i915#6621])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#11681]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-7/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu: NOTRUN -> [SKIP][110] ([i915#5723])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-4/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu-1: NOTRUN -> [INCOMPLETE][111] ([i915#4817] / [i915#7443])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@i915_suspend@basic-s3-without-i915.html
- shard-glk11: NOTRUN -> [INCOMPLETE][112] ([i915#4817])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-glk11/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@fence-restore-untiled:
- shard-glk10: NOTRUN -> [INCOMPLETE][113] ([i915#4817])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-glk10/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#4212])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-11/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2-9: NOTRUN -> [SKIP][115] ([i915#4212])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-1:
- shard-glk: [PASS][116] -> [FAIL][117] ([i915#12518])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-1.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-glk6/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-hdmi-a-1.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-1:
- shard-glk: [PASS][118] -> [FAIL][119] ([i915#10991])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-1.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-glk6/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-1.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#9531])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-tglu-1: NOTRUN -> [SKIP][121] ([i915#9531])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#1769] / [i915#3555])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#1769] / [i915#3555])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-tglu-1: NOTRUN -> [SKIP][124] ([i915#5286]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][125] ([i915#5286]) +3 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-4/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [PASS][126] -> [FAIL][127] ([i915#5138])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][128] +6 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-8/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][129] ([i915#3638])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-9: NOTRUN -> [SKIP][130] ([i915#5190])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5190]) +5 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-11/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg2-9: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5190]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#5190])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-7/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-rkl: NOTRUN -> [SKIP][134] +4 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][135] ([i915#10307] / [i915#6095]) +18 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#12313])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#6095]) +32 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-8/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][138] ([i915#12313])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#6095]) +107 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#6095]) +19 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#6095]) +39 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#10307] / [i915#10434] / [i915#6095])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][143] ([i915#10307] / [i915#10434] / [i915#6095])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#14098] / [i915#6095]) +31 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#6095]) +23 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#10307] / [i915#6095]) +136 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#13781]) +3 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#13783]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-5/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +3 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-3/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-dg2-9: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +5 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-7/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +5 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_color@ctm-max:
- shard-rkl: [PASS][154] -> [SKIP][155] ([i915#12655] / [i915#14544])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@kms_color@ctm-max.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_color@ctm-max.html
* igt@kms_color@deep-color:
- shard-dg2: [PASS][156] -> [SKIP][157] ([i915#12655] / [i915#3555])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-11/igt@kms_color@deep-color.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-8/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-9: NOTRUN -> [SKIP][158] ([i915#7118] / [i915#9424])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#9424])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-8/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#3116])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-0.html
- shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#3116] / [i915#3299])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@type1:
- shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#13049])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#13049])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#3555]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#13049])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#3555]) +4 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_edge_walk@64x64-top-edge:
- shard-rkl: NOTRUN -> [DMESG-WARN][168] ([i915#12917] / [i915#12964])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@kms_cursor_edge_walk@64x64-top-edge.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#4103] / [i915#4213]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipa-atomic:
- shard-dg1: [PASS][170] -> [DMESG-WARN][171] ([i915#4423]) +2 other tests dmesg-warn
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg1-14/igt@kms_cursor_legacy@cursora-vs-flipa-atomic.html
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg1-13/igt@kms_cursor_legacy@cursora-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#13046] / [i915#5354]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-dg2-9: NOTRUN -> [SKIP][173] ([i915#13046] / [i915#5354]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-rkl: [PASS][174] -> [SKIP][175] ([i915#14544]) +25 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][176] ([i915#2346])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#9833])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-11/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#3804])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-dg2-9: NOTRUN -> [SKIP][179] ([i915#13749])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#13748])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-3/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#13707])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-7/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#3840])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbcon_fbt@fbc:
- shard-rkl: [PASS][183] -> [SKIP][184] ([i915#14544] / [i915#14561])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@kms_fbcon_fbt@fbc.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_fbcon_fbt@fbc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#3469])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#2065] / [i915#4854])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-4/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#1839])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-8/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#9337])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-7/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#658])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#3637] / [i915#9934]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-3/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#9934]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@kms_flip@2x-blocking-wf_vblank.html
- shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#3637] / [i915#9934]) +3 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#8381])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-8/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#9934])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-7/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2-9: NOTRUN -> [SKIP][195] ([i915#9934]) +4 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@absolute-wf_vblank:
- shard-rkl: [PASS][196] -> [SKIP][197] ([i915#14544] / [i915#3637]) +4 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@kms_flip@absolute-wf_vblank.html
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_flip@absolute-wf_vblank.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#2672]) +3 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][199] ([i915#2672] / [i915#3555])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-rkl: [PASS][200] -> [SKIP][201] ([i915#14544] / [i915#3555]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#2672] / [i915#3555])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#2672] / [i915#3555] / [i915#5190])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#2672]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-dg2-9: NOTRUN -> [SKIP][205] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#2587] / [i915#2672] / [i915#3555])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][207] ([i915#2587] / [i915#2672]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
- shard-dg2-9: NOTRUN -> [SKIP][208] ([i915#2672]) +2 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#2672] / [i915#3555]) +4 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#2587] / [i915#2672]) +4 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#2672] / [i915#3555])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [PASS][212] -> [SKIP][213] ([i915#14544] / [i915#1849] / [i915#5354]) +5 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#5354]) +19 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#8708]) +11 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
- shard-dg2: [PASS][216] -> [FAIL][217] ([i915#6880]) +2 other tests fail
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-glk10: NOTRUN -> [SKIP][218] +181 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#3458]) +12 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][220] ([i915#5354]) +8 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-glk: NOTRUN -> [SKIP][221] +150 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-glk2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#3023]) +5 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#5439])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#9766])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][225] +49 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2-9: NOTRUN -> [SKIP][226] ([i915#8708]) +3 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#1825]) +6 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][228] +38 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt:
- shard-dg2-9: NOTRUN -> [SKIP][229] ([i915#3458]) +6 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#8228])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-7/igt@kms_hdr@invalid-hdr.html
* igt@kms_invalid_mode@clock-too-high:
- shard-rkl: [PASS][231] -> [SKIP][232] ([i915#14544] / [i915#3555] / [i915#8826])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@kms_invalid_mode@clock-too-high.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#13688])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@kms_joiner@basic-max-non-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][234] ([i915#13688])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: [PASS][235] -> [SKIP][236] ([i915#12388])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-11/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#13522])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_pipe_crc_basic@read-crc:
- shard-rkl: [PASS][238] -> [SKIP][239] ([i915#11190] / [i915#14544])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@kms_pipe_crc_basic@read-crc.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_pipe_crc_basic@read-crc.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- shard-glk11: NOTRUN -> [SKIP][240] ([i915#11190])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-glk11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][241] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-glk2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-rkl: [PASS][242] -> [SKIP][243] ([i915#14544] / [i915#8825])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@kms_plane@plane-panning-bottom-right-suspend.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#13958])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-tglu: NOTRUN -> [SKIP][245] ([i915#13958])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-3/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#13046] / [i915#5354] / [i915#9423])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-11/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][247] ([i915#12247]) +4 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
- shard-rkl: [PASS][248] -> [SKIP][249] ([i915#14544] / [i915#6953] / [i915#8152])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-rkl: [PASS][250] -> [SKIP][251] ([i915#12247] / [i915#14544] / [i915#6953] / [i915#8152])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a:
- shard-rkl: [PASS][252] -> [SKIP][253] ([i915#12247] / [i915#14544]) +2 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b:
- shard-rkl: [PASS][254] -> [SKIP][255] ([i915#12247] / [i915#14544] / [i915#8152]) +3 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#12343])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-7/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-rkl: [PASS][257] -> [SKIP][258] ([i915#13441] / [i915#14544])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@kms_pm_dc@dc5-dpms-negative.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#3828])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-11/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#8430])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-rkl: [PASS][261] -> [SKIP][262] ([i915#9519])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-8/igt@kms_pm_rpm@dpms-non-lpsp.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-7/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2-9: NOTRUN -> [SKIP][263] ([i915#9519])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [PASS][264] -> [SKIP][265] ([i915#14544] / [i915#9519])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_properties@crtc-properties-atomic:
- shard-rkl: [PASS][266] -> [SKIP][267] ([i915#11521] / [i915#14544])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@kms_properties@crtc-properties-atomic.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_properties@crtc-properties-atomic.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-9: NOTRUN -> [SKIP][268] ([i915#11520]) +2 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-glk10: NOTRUN -> [SKIP][269] ([i915#11520]) +4 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-glk10/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-glk: NOTRUN -> [SKIP][270] ([i915#11520]) +3 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-glk6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#11520]) +3 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#11520]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#11520]) +2 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-3/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#11520]) +3 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-psr2-cursor-render:
- shard-dg2-9: NOTRUN -> [SKIP][275] ([i915#1072] / [i915#9732]) +7 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@kms_psr@fbc-psr2-cursor-render.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#1072] / [i915#9732]) +4 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][277] ([i915#9732]) +6 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-4/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#1072] / [i915#9732]) +11 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-7/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#9732]) +11 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#4235])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-8/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][281] ([i915#5289])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
- shard-tglu-1: NOTRUN -> [SKIP][282] ([i915#5289])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-dg2: NOTRUN -> [SKIP][283] ([i915#3555]) +2 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-11/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_selftest@drm_format@drm_test_format_block_width_one_plane:
- shard-rkl: [PASS][284] -> [DMESG-WARN][285] ([i915#12964]) +9 other tests dmesg-warn
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_selftest@drm_format@drm_test_format_block_width_one_plane.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_selftest@drm_format@drm_test_format_block_width_one_plane.html
* igt@kms_selftest@drm_framebuffer:
- shard-glk10: NOTRUN -> [ABORT][286] ([i915#13179]) +1 other test abort
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-glk10/igt@kms_selftest@drm_framebuffer.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-mtlp: [PASS][287] -> [FAIL][288] ([i915#9196]) +1 other test fail
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_vblank@query-forked-busy@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [DMESG-WARN][289] ([i915#12964]) +3 other tests dmesg-warn
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_vblank@query-forked-busy@pipe-b-hdmi-a-2.html
* igt@kms_vrr@flip-basic:
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#3555]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-2/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flipline:
- shard-dg2-9: NOTRUN -> [SKIP][291] ([i915#3555]) +3 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-9/igt@kms_vrr@flipline.html
* igt@kms_vrr@negative-basic:
- shard-dg2: [PASS][292] -> [SKIP][293] ([i915#3555] / [i915#9906])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-11/igt@kms_vrr@negative-basic.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-8/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#9906])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-7/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][295] ([i915#2437])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-11/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#2437] / [i915#9412])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-8/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf_pmu@module-unload:
- shard-tglu-1: NOTRUN -> [FAIL][297] ([i915#14433])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-1/igt@perf_pmu@module-unload.html
- shard-glk11: NOTRUN -> [FAIL][298] ([i915#14433])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-glk11/igt@perf_pmu@module-unload.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#3708] / [i915#4077])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-11/igt@prime_vgem@coherency-gtt.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s3-devices:
- shard-rkl: [DMESG-WARN][300] ([i915#12964]) -> [PASS][301] +7 other tests pass
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@gem_exec_suspend@basic-s3-devices.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@gem_exec_suspend@basic-s3-devices.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-rkl: [TIMEOUT][302] ([i915#12917] / [i915#12964]) -> [PASS][303] +1 other test pass
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-7/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-8/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_workarounds@suspend-resume-context:
- shard-dg2: [ABORT][304] ([i915#8213]) -> [PASS][305]
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-10/igt@gem_workarounds@suspend-resume-context.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-8/igt@gem_workarounds@suspend-resume-context.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1:
- shard-glk: [FAIL][306] ([i915#10991] / [i915#13335]) -> [PASS][307]
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-glk1/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-glk6/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html
* igt@kms_atomic_transition@plane-all-transition-nonblocking:
- shard-dg1: [DMESG-WARN][308] ([i915#4423]) -> [PASS][309]
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg1-13/igt@kms_atomic_transition@plane-all-transition-nonblocking.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg1-12/igt@kms_atomic_transition@plane-all-transition-nonblocking.html
* igt@kms_atomic_transition@plane-use-after-nonblocking-unbind:
- shard-rkl: [SKIP][310] ([i915#14544]) -> [PASS][311] +22 other tests pass
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-7/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind.html
* igt@kms_busy@basic:
- shard-rkl: [SKIP][312] ([i915#11190] / [i915#14544]) -> [PASS][313] +2 other tests pass
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_busy@basic.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_busy@basic.html
* igt@kms_color@degamma:
- shard-rkl: [SKIP][314] ([i915#12655] / [i915#14544]) -> [PASS][315]
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_color@degamma.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_color@degamma.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-rkl: [FAIL][316] ([i915#13566]) -> [PASS][317]
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-64x21.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][318] ([i915#13566]) -> [PASS][319] +1 other test pass
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-snb: [TIMEOUT][320] ([i915#14033] / [i915#14350]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-snb4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [TIMEOUT][322] ([i915#14033]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-snb4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-rkl: [SKIP][324] ([i915#14544] / [i915#3637]) -> [PASS][325] +2 other tests pass
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-7/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-rkl: [SKIP][326] ([i915#14544] / [i915#3555]) -> [PASS][327]
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt:
- shard-rkl: [SKIP][328] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][329] +5 other tests pass
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
- shard-dg2: [FAIL][330] ([i915#6880]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
* igt@kms_invalid_mode@uint-max-clock:
- shard-rkl: [SKIP][332] ([i915#14544] / [i915#3555] / [i915#8826]) -> [PASS][333] +1 other test pass
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_invalid_mode@uint-max-clock.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_invalid_mode@uint-max-clock.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-rkl: [SKIP][334] ([i915#14544] / [i915#8825]) -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_plane@pixel-format-source-clamping.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-rkl: [SKIP][336] ([i915#14544] / [i915#7294]) -> [PASS][337]
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_scaling@invalid-num-scalers:
- shard-rkl: [SKIP][338] ([i915#14544] / [i915#3555] / [i915#6953] / [i915#8152]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_plane_scaling@invalid-num-scalers.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-7/igt@kms_plane_scaling@invalid-num-scalers.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers:
- shard-rkl: [SKIP][340] ([i915#14544] / [i915#8152]) -> [PASS][341] +1 other test pass
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b:
- shard-rkl: [SKIP][342] ([i915#12247] / [i915#14544] / [i915#8152]) -> [PASS][343] +2 other tests pass
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-rkl: [SKIP][344] ([i915#12247] / [i915#14544] / [i915#6953] / [i915#8152]) -> [PASS][345]
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
- shard-rkl: [SKIP][346] ([i915#12247] / [i915#14544]) -> [PASS][347] +2 other tests pass
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
* igt@kms_pm_rpm@fences-dpms:
- shard-rkl: [SKIP][348] ([i915#14544] / [i915#1849]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_pm_rpm@fences-dpms.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-7/igt@kms_pm_rpm@fences-dpms.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [SKIP][350] ([i915#9519]) -> [PASS][351]
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_vblank@query-forked-hang:
- shard-rkl: [DMESG-WARN][352] ([i915#12917] / [i915#12964]) -> [PASS][353]
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-7/igt@kms_vblank@query-forked-hang.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-8/igt@kms_vblank@query-forked-hang.html
#### Warnings ####
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: [SKIP][354] ([i915#11078]) -> [SKIP][355] ([i915#11078] / [i915#14544])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@device_reset@unbind-cold-reset-rebind.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: [SKIP][356] ([i915#3555] / [i915#9323]) -> [SKIP][357] ([i915#14544] / [i915#3555] / [i915#9323])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-rkl: [SKIP][358] ([i915#14544] / [i915#6335]) -> [SKIP][359] ([i915#6335])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-7/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: [SKIP][360] ([i915#14544] / [i915#4525]) -> [SKIP][361] ([i915#4525])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@gem_exec_balancer@parallel.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-7/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-rkl: [SKIP][362] ([i915#3281]) -> [SKIP][363] ([i915#14544] / [i915#3281]) +4 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-noreloc.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: [SKIP][364] ([i915#14544] / [i915#3281]) -> [SKIP][365] ([i915#3281]) +4 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: [SKIP][366] ([i915#14544] / [i915#4613]) -> [SKIP][367] ([i915#4613]) +1 other test skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: [SKIP][368] ([i915#4613]) -> [SKIP][369] ([i915#14544] / [i915#4613]) +1 other test skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-rkl: [TIMEOUT][370] ([i915#12917] / [i915#12964]) -> [SKIP][371] ([i915#14544] / [i915#4270])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-off-3.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_readwrite@write-bad-handle:
- shard-rkl: [SKIP][372] ([i915#14544] / [i915#3282]) -> [SKIP][373] ([i915#3282]) +2 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@gem_readwrite@write-bad-handle.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-7/igt@gem_readwrite@write-bad-handle.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-rkl: [SKIP][374] ([i915#3282]) -> [SKIP][375] ([i915#14544] / [i915#3282])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@gem_tiled_partial_pwrite_pread@writes.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-rkl: [SKIP][376] ([i915#14544] / [i915#3297]) -> [SKIP][377] ([i915#3297])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@gem_userptr_blits@coherency-unsync.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@gem_userptr_blits@coherency-unsync.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: [SKIP][378] ([i915#2527]) -> [SKIP][379] ([i915#14544] / [i915#2527])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@gen9_exec_parse@bb-start-param.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@shadow-peek:
- shard-rkl: [SKIP][380] ([i915#14544] / [i915#2527]) -> [SKIP][381] ([i915#2527]) +1 other test skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: [SKIP][382] ([i915#8399]) -> [SKIP][383] ([i915#14544] / [i915#8399])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@i915_pm_freq_api@freq-reset.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: [SKIP][384] ([i915#4387]) -> [SKIP][385] ([i915#14544] / [i915#4387])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@i915_pm_sseu@full-enable.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@i915_pm_sseu@full-enable.html
* igt@i915_power@sanity:
- shard-rkl: [SKIP][386] ([i915#14544] / [i915#7984]) -> [SKIP][387] ([i915#7984])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@i915_power@sanity.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@i915_power@sanity.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: [SKIP][388] ([i915#5723]) -> [SKIP][389] ([i915#14544] / [i915#5723])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@i915_query@test-query-geometry-subslices.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: [SKIP][390] ([i915#14544] / [i915#7707]) -> [SKIP][391] ([i915#7707])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@intel_hwmon@hwmon-write.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@intel_hwmon@hwmon-write.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: [SKIP][392] ([i915#4423] / [i915#4538] / [i915#5286]) -> [SKIP][393] ([i915#4538] / [i915#5286])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-rkl: [SKIP][394] ([i915#5286]) -> [SKIP][395] ([i915#14544]) +3 other tests skip
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: [SKIP][396] ([i915#14544]) -> [SKIP][397] ([i915#5286]) +2 other tests skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-rkl: [SKIP][398] ([i915#14544]) -> [SKIP][399] ([i915#3638]) +1 other test skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-7/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-rkl: [SKIP][400] -> [SKIP][401] ([i915#14544]) +9 other tests skip
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: [SKIP][402] ([i915#14544]) -> [SKIP][403] +8 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][404] ([i915#12313]) -> [SKIP][405] ([i915#14544])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][406] ([i915#14544]) -> [SKIP][407] ([i915#12313])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-rkl: [SKIP][408] ([i915#14098] / [i915#6095]) -> [SKIP][409] ([i915#14544]) +4 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
- shard-rkl: [SKIP][410] ([i915#14544]) -> [SKIP][411] ([i915#14098] / [i915#6095]) +6 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-7/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: [SKIP][412] ([i915#3742]) -> [SKIP][413] ([i915#14544] / [i915#3742])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@kms_cdclk@mode-transition-all-outputs.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-rkl: [SKIP][414] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][415] ([i915#11151] / [i915#7828]) +5 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-read.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-rkl: [SKIP][416] ([i915#11151] / [i915#7828]) -> [SKIP][417] ([i915#11151] / [i915#14544] / [i915#7828]) +3 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: [FAIL][418] ([i915#7173]) -> [SKIP][419] ([i915#9424])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-11/igt@kms_content_protection@lic-type-0.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-8/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][420] ([i915#9424]) -> [SKIP][421] ([i915#9433])
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg1-17/igt@kms_content_protection@mei-interface.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg1-12/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-rkl: [SKIP][422] ([i915#14544]) -> [SKIP][423] ([i915#7118] / [i915#9424])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_content_protection@type1.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-7/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: [SKIP][424] ([i915#13049]) -> [SKIP][425] ([i915#14544]) +1 other test skip
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-rkl: [FAIL][426] ([i915#13566]) -> [SKIP][427] ([i915#14544])
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-rkl: [SKIP][428] ([i915#13707]) -> [SKIP][429] ([i915#14544])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: [SKIP][430] ([i915#11190] / [i915#14544]) -> [SKIP][431] ([i915#3555] / [i915#3840])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_dsc@dsc-basic.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: [SKIP][432] ([i915#14544]) -> [SKIP][433] ([i915#3840])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: [SKIP][434] ([i915#4854]) -> [SKIP][435] ([i915#14544] / [i915#4854])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@kms_feature_discovery@chamelium.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: [SKIP][436] ([i915#14544] / [i915#658]) -> [SKIP][437] ([i915#658])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_feature_discovery@psr1.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-7/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: [SKIP][438] ([i915#9934]) -> [SKIP][439] ([i915#14544] / [i915#9934]) +2 other tests skip
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@kms_flip@2x-flip-vs-dpms.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-rkl: [SKIP][440] ([i915#14544] / [i915#9934]) -> [SKIP][441] ([i915#9934]) +5 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-7/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: [SKIP][442] ([i915#14544] / [i915#3555]) -> [SKIP][443] ([i915#2672] / [i915#3555]) +2 other tests skip
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-dg1: [SKIP][444] ([i915#2672] / [i915#3555]) -> [SKIP][445] ([i915#2672] / [i915#3555] / [i915#4423])
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg1: [SKIP][446] ([i915#2587] / [i915#2672]) -> [SKIP][447] ([i915#2587] / [i915#2672] / [i915#4423])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-rkl: [SKIP][448] ([i915#2672] / [i915#3555]) -> [SKIP][449] ([i915#14544] / [i915#3555]) +1 other test skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][450] ([i915#8708]) -> [SKIP][451] ([i915#4423] / [i915#8708])
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-rkl: [SKIP][452] ([i915#3023]) -> [SKIP][453] ([i915#14544] / [i915#1849] / [i915#5354]) +9 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: [SKIP][454] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][455] ([i915#1825]) +14 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-rkl: [SKIP][456] ([i915#1825]) -> [SKIP][457] ([i915#14544] / [i915#1849] / [i915#5354]) +17 other tests skip
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-rkl: [SKIP][458] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][459] ([i915#5439])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: [SKIP][460] ([i915#9766]) -> [SKIP][461] ([i915#14544] / [i915#1849] / [i915#5354])
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][462] ([i915#3458]) -> [SKIP][463] ([i915#10433] / [i915#3458]) +1 other test skip
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: [SKIP][464] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][465] ([i915#3023]) +10 other tests skip
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move:
- shard-dg1: [SKIP][466] ([i915#3458]) -> [SKIP][467] ([i915#3458] / [i915#4423])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg1: [SKIP][468] -> [SKIP][469] ([i915#4423])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2: [SKIP][470] ([i915#10433] / [i915#3458]) -> [SKIP][471] ([i915#3458])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-slowdraw.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_hdr@static-toggle:
- shard-rkl: [SKIP][472] ([i915#3555] / [i915#8228]) -> [SKIP][473] ([i915#14544])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@kms_hdr@static-toggle.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-rkl: [SKIP][474] ([i915#12339]) -> [SKIP][475] ([i915#12339] / [i915#14544])
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: [SKIP][476] ([i915#13522] / [i915#14544]) -> [SKIP][477] ([i915#13522])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane_lowres@tiling-yf:
- shard-rkl: [SKIP][478] ([i915#3555]) -> [SKIP][479] ([i915#14544])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@kms_plane_lowres@tiling-yf.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-rkl: [SKIP][480] ([i915#14544]) -> [SKIP][481] ([i915#13958])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-x.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][482] ([i915#4281]) -> [SKIP][483] ([i915#3361])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-7/igt@kms_pm_dc@dc9-dpms.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-8/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][484] ([i915#14544] / [i915#9340]) -> [SKIP][485] ([i915#9340])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][486] ([i915#9519]) -> [SKIP][487] ([i915#12916])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: [SKIP][488] ([i915#14544] / [i915#6524]) -> [SKIP][489] ([i915#6524])
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][490] ([i915#11520] / [i915#14544]) -> [SKIP][491] ([i915#11520]) +3 other tests skip
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-rkl: [SKIP][492] ([i915#11520]) -> [SKIP][493] ([i915#11520] / [i915#14544]) +3 other tests skip
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: [SKIP][494] ([i915#9683]) -> [SKIP][495] ([i915#14544] / [i915#9683])
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@kms_psr2_su@page_flip-nv12.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-rkl: [SKIP][496] ([i915#1072] / [i915#9732]) -> [SKIP][497] ([i915#1072] / [i915#14544] / [i915#9732]) +8 other tests skip
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@kms_psr@fbc-psr-cursor-plane-move.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@pr-sprite-mmap-gtt:
- shard-dg1: [SKIP][498] ([i915#1072] / [i915#9732]) -> [SKIP][499] ([i915#1072] / [i915#4423] / [i915#9732])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg1-19/igt@kms_psr@pr-sprite-mmap-gtt.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg1-15/igt@kms_psr@pr-sprite-mmap-gtt.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-rkl: [SKIP][500] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][501] ([i915#1072] / [i915#9732]) +10 other tests skip
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: [SKIP][502] ([i915#9685]) -> [SKIP][503] ([i915#14544] / [i915#9685])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-rkl: [SKIP][504] ([i915#3555]) -> [SKIP][505] ([i915#14544] / [i915#3555])
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@kms_setmode@invalid-clone-single-crtc.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_vblank@wait-forked-busy-hang:
- shard-rkl: [DMESG-WARN][506] ([i915#12964]) -> [SKIP][507] ([i915#14544]) +2 other tests skip
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@kms_vblank@wait-forked-busy-hang.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@kms_vblank@wait-forked-busy-hang.html
* igt@kms_vrr@flip-dpms:
- shard-rkl: [SKIP][508] ([i915#14544]) -> [SKIP][509] ([i915#3555]) +2 other tests skip
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@kms_vrr@flip-dpms.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@kms_vrr@flip-dpms.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: [SKIP][510] ([i915#3708]) -> [SKIP][511] ([i915#3708] / [i915#4423])
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-dg1-14/igt@prime_vgem@basic-fence-flip.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-dg1-13/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: [SKIP][512] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][513] ([i915#3291] / [i915#3708])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@prime_vgem@basic-fence-read.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-7/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: [SKIP][514] ([i915#3708]) -> [SKIP][515] ([i915#14544] / [i915#3708])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@prime_vgem@fence-read-hang.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: [SKIP][516] ([i915#9917]) -> [SKIP][517] ([i915#14544] / [i915#9917]) +1 other test skip
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-2/igt@sriov_basic@bind-unbind-vf.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-rkl: [SKIP][518] ([i915#14544] / [i915#9917]) -> [SKIP][519] ([i915#9917])
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16963/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-on.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12518
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13335
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13441
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350
[i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14559]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14559
[i915#14561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14561
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14756
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152
[i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
[i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* Linux: CI_DRM_16963 -> Patchwork_152589v1
CI-20190529: 20190529
CI_DRM_16963: 6dc234cf6e4745947e7af52640c70de93fc5652a @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8487: 8487
Patchwork_152589v1: 6dc234cf6e4745947e7af52640c70de93fc5652a @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_152589v1/index.html
[-- Attachment #2: Type: text/html, Size: 170134 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] drm/ttm: WIP limit the TTM pool to 32bit CPUs
2025-08-06 17:43 ` Thomas Hellström
@ 2025-08-07 9:53 ` Christian König
2025-08-07 16:47 ` Thomas Hellström
0 siblings, 1 reply; 12+ messages in thread
From: Christian König @ 2025-08-07 9:53 UTC (permalink / raw)
To: Thomas Hellström, dri-devel, intel-gfx, intel-xe
Cc: airlied, matthew.brost
On 06.08.25 19:43, Thomas Hellström wrote:
> Hi, Christian
>
> On Wed, 2025-08-06 at 15:28 +0200, Christian König wrote:
>> On some old x86 systems we had the problem that changing the caching
>> flags
>> of system memory requires changing the global MTRR/PAT tables.
>>
>> But on any modern x86 system (CPUs introduced rughly after 2004) we
>> actually don't need that any more and can update the caching flags
>> directly in the PTEs of the CPU mapping. It was just never disabled
>> because of the fear of regressions.
>>
>> We already use the PTE flags for encryption on x86 64bit for quite a
>> while
>> and all other supported platforms (Sparc, PowerPC, ARM, MIPS,
>> LONGARCH)
>> have never done anything different either.
>
> IIRC from my VMWARE days, changing SEV encryption mode of a page still
> requires changing all mappings including kernel maps?
> __set_memory_enc_pgtable()
IIRC both Intel and AMD sacrifice a bit in the page address for that, e.g. for encryption the most significant bit is used to indicate if a page is encrypted or not.
I'm not aware that we need to change all kernel mappings for encryption, but could be that the hypervisor somehow depends on that.
>>
>> So disable the page pool completely for 64bit systems and just insert
>> a
>> clflush to be on the safe side so that we never return memory with
>> dirty
>> cache lines.
>>
>> Testing on a Ryzen 5 and 7 shows that this has absolutely no
>> performance
>> impact and of hand the AMD CI can't find a problem either.
>>
>> Let's see what the i915 and XE CI systems say to that.
>>
>> Signed-off-by: Christian König <christian.koenig@amd.com>
>
> I don't think we can do this. First Lunar Lake can in some situations,
> just like the old Athlons, write-back clean cache lines which means
> writebacks of speculative prefetches may overwrite GPU data.
So a speculative prefetch because of on an access to an adjacent page could causes the cache line to be fetched and then written back without any change to it?
Well it's surprising that even modern CPU do stuff like that. That could explain some of the problems we had with uncached mappings on ARM and RISC-V.
> LNL makes heavy use of non-coherent GPU mappings for performance.
That is even more surprising. At least on modern Ryzens that doesn't seem to have much performance impact any more at all.
I mean non-cached mappings where original introduced to avoid the extra overhead of going over the front side bus, but that design is long gone.
> Second, IIRC vm_insert_pfn_prot() on X86 will override the given
> caching mode with the last caching mode set for the kernel linear map,
> so if you try to set up a write-combined GPU mapping without a previous
> call to set_pages_xxxxx it will actually end up cached. see
> track_pfn_insert().
That is exactly the same incorrect assumption I made as well.
It's not the linear mapping where that comes from but a separate page attribute table, see /sys/kernel/debug/x86/pat_memtype_list.
Question is why the heck should we do this? I mean we keep an extra rb tree around to overwrite something the driver knows in the first place?
That is basically just tons of extra overhead for nothing as far as I can see.
Thanks for taking a look,
Christian.
>
> /Thomas
>
>
>> ---
>> drivers/gpu/drm/ttm/ttm_pool.c | 16 +++++++++++-----
>> 1 file changed, 11 insertions(+), 5 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/ttm/ttm_pool.c
>> b/drivers/gpu/drm/ttm/ttm_pool.c
>> index baf27c70a419..7487eac29398 100644
>> --- a/drivers/gpu/drm/ttm/ttm_pool.c
>> +++ b/drivers/gpu/drm/ttm/ttm_pool.c
>> @@ -38,7 +38,7 @@
>> #include <linux/highmem.h>
>> #include <linux/sched/mm.h>
>>
>> -#ifdef CONFIG_X86
>> +#ifdef CONFIG_X86_32
>> #include <asm/set_memory.h>
>> #endif
>>
>> @@ -46,6 +46,7 @@
>> #include <drm/ttm/ttm_pool.h>
>> #include <drm/ttm/ttm_tt.h>
>> #include <drm/ttm/ttm_bo.h>
>> +#include <drm/drm_cache.h>
>>
>> #include "ttm_module.h"
>>
>> @@ -192,7 +193,7 @@ static void ttm_pool_free_page(struct ttm_pool
>> *pool, enum ttm_caching caching,
>> struct ttm_pool_dma *dma;
>> void *vaddr;
>>
>> -#ifdef CONFIG_X86
>> +#ifdef CONFIG_X86_32
>> /* We don't care that set_pages_wb is inefficient here. This
>> is only
>> * used when we have to shrink and CPU overhead is
>> irrelevant then.
>> */
>> @@ -218,7 +219,7 @@ static void ttm_pool_free_page(struct ttm_pool
>> *pool, enum ttm_caching caching,
>> /* Apply any cpu-caching deferred during page allocation */
>> static int ttm_pool_apply_caching(struct ttm_pool_alloc_state
>> *alloc)
>> {
>> -#ifdef CONFIG_X86
>> +#ifdef CONFIG_X86_32
>> unsigned int num_pages = alloc->pages - alloc-
>>> caching_divide;
>>
>> if (!num_pages)
>> @@ -232,6 +233,11 @@ static int ttm_pool_apply_caching(struct
>> ttm_pool_alloc_state *alloc)
>> case ttm_uncached:
>> return set_pages_array_uc(alloc->caching_divide,
>> num_pages);
>> }
>> +
>> +#elif defined(CONFIG_X86_64)
>> + unsigned int num_pages = alloc->pages - alloc-
>>> caching_divide;
>> +
>> + drm_clflush_pages(alloc->caching_divide, num_pages);
>> #endif
>> alloc->caching_divide = alloc->pages;
>> return 0;
>> @@ -342,7 +348,7 @@ static struct ttm_pool_type
>> *ttm_pool_select_type(struct ttm_pool *pool,
>> if (pool->use_dma_alloc)
>> return &pool->caching[caching].orders[order];
>>
>> -#ifdef CONFIG_X86
>> +#ifdef CONFIG_X86_32
>> switch (caching) {
>> case ttm_write_combined:
>> if (pool->nid != NUMA_NO_NODE)
>> @@ -980,7 +986,7 @@ long ttm_pool_backup(struct ttm_pool *pool,
>> struct ttm_tt *tt,
>> pool->use_dma_alloc || ttm_tt_is_backed_up(tt))
>> return -EBUSY;
>>
>> -#ifdef CONFIG_X86
>> +#ifdef CONFIG_X86_32
>> /* Anything returned to the system needs to be cached. */
>> if (tt->caching != ttm_cached)
>> set_pages_array_wb(tt->pages, tt->num_pages);
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] drm/ttm: WIP limit the TTM pool to 32bit CPUs
2025-08-07 9:53 ` Christian König
@ 2025-08-07 16:47 ` Thomas Hellström
2025-08-11 11:51 ` Christian König
0 siblings, 1 reply; 12+ messages in thread
From: Thomas Hellström @ 2025-08-07 16:47 UTC (permalink / raw)
To: Christian König, dri-devel, intel-gfx, intel-xe
Cc: airlied, matthew.brost
On Thu, 2025-08-07 at 11:53 +0200, Christian König wrote:
> On 06.08.25 19:43, Thomas Hellström wrote:
> > Hi, Christian
> >
> > On Wed, 2025-08-06 at 15:28 +0200, Christian König wrote:
> > > On some old x86 systems we had the problem that changing the
> > > caching
> > > flags
> > > of system memory requires changing the global MTRR/PAT tables.
> > >
> > > But on any modern x86 system (CPUs introduced rughly after 2004)
> > > we
> > > actually don't need that any more and can update the caching
> > > flags
> > > directly in the PTEs of the CPU mapping. It was just never
> > > disabled
> > > because of the fear of regressions.
> > >
> > > We already use the PTE flags for encryption on x86 64bit for
> > > quite a
> > > while
> > > and all other supported platforms (Sparc, PowerPC, ARM, MIPS,
> > > LONGARCH)
> > > have never done anything different either.
> >
> > IIRC from my VMWARE days, changing SEV encryption mode of a page
> > still
> > requires changing all mappings including kernel maps?
> > __set_memory_enc_pgtable()
>
> IIRC both Intel and AMD sacrifice a bit in the page address for that,
> e.g. for encryption the most significant bit is used to indicate if a
> page is encrypted or not.
>
> I'm not aware that we need to change all kernel mappings for
> encryption, but could be that the hypervisor somehow depends on that.
>
> > >
> > > So disable the page pool completely for 64bit systems and just
> > > insert
> > > a
> > > clflush to be on the safe side so that we never return memory
> > > with
> > > dirty
> > > cache lines.
> > >
> > > Testing on a Ryzen 5 and 7 shows that this has absolutely no
> > > performance
> > > impact and of hand the AMD CI can't find a problem either.
> > >
> > > Let's see what the i915 and XE CI systems say to that.
> > >
> > > Signed-off-by: Christian König <christian.koenig@amd.com>
> >
> > I don't think we can do this. First Lunar Lake can in some
> > situations,
> > just like the old Athlons, write-back clean cache lines which means
> > writebacks of speculative prefetches may overwrite GPU data.
>
> So a speculative prefetch because of on an access to an adjacent page
> could causes the cache line to be fetched and then written back
> without any change to it?
Exactly.
>
> Well it's surprising that even modern CPU do stuff like that. That
> could explain some of the problems we had with uncached mappings on
> ARM and RISC-V.
Yeah. I agree. Need to double-check with HW people whether that is gone
with Panther Lake. Don't have a confirmation yet on that.
>
> > LNL makes heavy use of non-coherent GPU mappings for performance.
>
> That is even more surprising. At least on modern Ryzens that doesn't
> seem to have much performance impact any more at all.
>
> I mean non-cached mappings where original introduced to avoid the
> extra overhead of going over the front side bus, but that design is
> long gone.
With LNL it's possible to set up GPU mapping to make the accesses
coherent with CPU but that's quite slow. A tradeoff in HW design.
If it wasn't for the writeback of speculative prefetches we could've
settled for only have TTM map the user-space mappings without changing
the kernel map, just like the i915 driver does for older GPUS.
>
> > Second, IIRC vm_insert_pfn_prot() on X86 will override the given
> > caching mode with the last caching mode set for the kernel linear
> > map,
> > so if you try to set up a write-combined GPU mapping without a
> > previous
> > call to set_pages_xxxxx it will actually end up cached. see
> > track_pfn_insert().
>
> That is exactly the same incorrect assumption I made as well.
>
> It's not the linear mapping where that comes from but a separate page
> attribute table, see /sys/kernel/debug/x86/pat_memtype_list.
>
> Question is why the heck should we do this? I mean we keep an extra
> rb tree around to overwrite something the driver knows in the first
> place?
>
> That is basically just tons of extra overhead for nothing as far as I
> can see.
IIRC it was PAT people enforcing the x86 documentation that aliased
mappings with conflicting caching attributes were not allowed. But it
has proven to work at least on those CPUs not suffering from the clean
cache-line writeback mentioned above.
FWIW If I understand the code correctly, i915 bypasses this by setting
up user-space mappings not by vm_insert_pfn_prot() but using
apply_to_page_range(), mapping the whole bo.
/Thomas
>
> Thanks for taking a look,
> Christian.
>
> >
> > /Thomas
> >
> >
> > > ---
> > > drivers/gpu/drm/ttm/ttm_pool.c | 16 +++++++++++-----
> > > 1 file changed, 11 insertions(+), 5 deletions(-)
> > >
> > > diff --git a/drivers/gpu/drm/ttm/ttm_pool.c
> > > b/drivers/gpu/drm/ttm/ttm_pool.c
> > > index baf27c70a419..7487eac29398 100644
> > > --- a/drivers/gpu/drm/ttm/ttm_pool.c
> > > +++ b/drivers/gpu/drm/ttm/ttm_pool.c
> > > @@ -38,7 +38,7 @@
> > > #include <linux/highmem.h>
> > > #include <linux/sched/mm.h>
> > >
> > > -#ifdef CONFIG_X86
> > > +#ifdef CONFIG_X86_32
> > > #include <asm/set_memory.h>
> > > #endif
> > >
> > > @@ -46,6 +46,7 @@
> > > #include <drm/ttm/ttm_pool.h>
> > > #include <drm/ttm/ttm_tt.h>
> > > #include <drm/ttm/ttm_bo.h>
> > > +#include <drm/drm_cache.h>
> > >
> > > #include "ttm_module.h"
> > >
> > > @@ -192,7 +193,7 @@ static void ttm_pool_free_page(struct
> > > ttm_pool
> > > *pool, enum ttm_caching caching,
> > > struct ttm_pool_dma *dma;
> > > void *vaddr;
> > >
> > > -#ifdef CONFIG_X86
> > > +#ifdef CONFIG_X86_32
> > > /* We don't care that set_pages_wb is inefficient here.
> > > This
> > > is only
> > > * used when we have to shrink and CPU overhead is
> > > irrelevant then.
> > > */
> > > @@ -218,7 +219,7 @@ static void ttm_pool_free_page(struct
> > > ttm_pool
> > > *pool, enum ttm_caching caching,
> > > /* Apply any cpu-caching deferred during page allocation */
> > > static int ttm_pool_apply_caching(struct ttm_pool_alloc_state
> > > *alloc)
> > > {
> > > -#ifdef CONFIG_X86
> > > +#ifdef CONFIG_X86_32
> > > unsigned int num_pages = alloc->pages - alloc-
> > > > caching_divide;
> > >
> > > if (!num_pages)
> > > @@ -232,6 +233,11 @@ static int ttm_pool_apply_caching(struct
> > > ttm_pool_alloc_state *alloc)
> > > case ttm_uncached:
> > > return set_pages_array_uc(alloc->caching_divide,
> > > num_pages);
> > > }
> > > +
> > > +#elif defined(CONFIG_X86_64)
> > > + unsigned int num_pages = alloc->pages - alloc-
> > > > caching_divide;
> > > +
> > > + drm_clflush_pages(alloc->caching_divide, num_pages);
> > > #endif
> > > alloc->caching_divide = alloc->pages;
> > > return 0;
> > > @@ -342,7 +348,7 @@ static struct ttm_pool_type
> > > *ttm_pool_select_type(struct ttm_pool *pool,
> > > if (pool->use_dma_alloc)
> > > return &pool->caching[caching].orders[order];
> > >
> > > -#ifdef CONFIG_X86
> > > +#ifdef CONFIG_X86_32
> > > switch (caching) {
> > > case ttm_write_combined:
> > > if (pool->nid != NUMA_NO_NODE)
> > > @@ -980,7 +986,7 @@ long ttm_pool_backup(struct ttm_pool *pool,
> > > struct ttm_tt *tt,
> > > pool->use_dma_alloc || ttm_tt_is_backed_up(tt))
> > > return -EBUSY;
> > >
> > > -#ifdef CONFIG_X86
> > > +#ifdef CONFIG_X86_32
> > > /* Anything returned to the system needs to be cached.
> > > */
> > > if (tt->caching != ttm_cached)
> > > set_pages_array_wb(tt->pages, tt->num_pages);
> >
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] drm/ttm: WIP limit the TTM pool to 32bit CPUs
2025-08-06 13:28 [PATCH] drm/ttm: WIP limit the TTM pool to 32bit CPUs Christian König
` (2 preceding siblings ...)
2025-08-06 22:38 ` ✓ i915.CI.Full: " Patchwork
@ 2025-08-09 4:07 ` kernel test robot
2025-08-12 10:36 ` Matthew Auld
4 siblings, 0 replies; 12+ messages in thread
From: kernel test robot @ 2025-08-09 4:07 UTC (permalink / raw)
To: Christian König, dri-devel, intel-gfx, intel-xe
Cc: llvm, oe-kbuild-all, airlied, thomas.hellstrom, matthew.brost
Hi Christian,
kernel test robot noticed the following build errors:
[auto build test ERROR on drm-exynos/exynos-drm-next]
[also build test ERROR on linus/master v6.16 next-20250808]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Christian-K-nig/drm-ttm-WIP-limit-the-TTM-pool-to-32bit-CPUs/20250806-212941
base: https://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git exynos-drm-next
patch link: https://lore.kernel.org/r/20250806132838.1831-1-christian.koenig%40amd.com
patch subject: [PATCH] drm/ttm: WIP limit the TTM pool to 32bit CPUs
config: um-randconfig-001-20250809 (https://download.01.org/0day-ci/archive/20250809/202508091134.xJZroqY6-lkp@intel.com/config)
compiler: clang version 22.0.0git (https://github.com/llvm/llvm-project 3769ce013be2879bf0b329c14a16f5cb766f26ce)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20250809/202508091134.xJZroqY6-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202508091134.xJZroqY6-lkp@intel.com/
All errors (new ones prefixed by >>, old ones prefixed by <<):
>> ERROR: modpost: "set_pages_array_wc" [drivers/gpu/drm/ttm/ttm.ko] undefined!
>> ERROR: modpost: "set_pages_array_uc" [drivers/gpu/drm/ttm/ttm.ko] undefined!
>> ERROR: modpost: "set_pages_wb" [drivers/gpu/drm/ttm/ttm.ko] undefined!
>> ERROR: modpost: "set_pages_array_wb" [drivers/gpu/drm/ttm/ttm.ko] undefined!
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] drm/ttm: WIP limit the TTM pool to 32bit CPUs
2025-08-07 16:47 ` Thomas Hellström
@ 2025-08-11 11:51 ` Christian König
2025-08-11 15:16 ` Thomas Hellström
0 siblings, 1 reply; 12+ messages in thread
From: Christian König @ 2025-08-11 11:51 UTC (permalink / raw)
To: Thomas Hellström, dri-devel, intel-gfx, intel-xe
Cc: airlied, matthew.brost
On 07.08.25 18:47, Thomas Hellström wrote:
>> Well it's surprising that even modern CPU do stuff like that. That
>> could explain some of the problems we had with uncached mappings on
>> ARM and RISC-V.
>
> Yeah. I agree. Need to double-check with HW people whether that is gone
> with Panther Lake. Don't have a confirmation yet on that.
Going to ask around AMD internally as well.
> If it wasn't for the writeback of speculative prefetches we could've
> settled for only have TTM map the user-space mappings without changing
> the kernel map, just like the i915 driver does for older GPUS.
We should probably come up with a CPU whitelist or blacklist where that is actually needed.
>>> Second, IIRC vm_insert_pfn_prot() on X86 will override the given
>>> caching mode with the last caching mode set for the kernel linear
>>> map,
>>> so if you try to set up a write-combined GPU mapping without a
>>> previous
>>> call to set_pages_xxxxx it will actually end up cached. see
>>> track_pfn_insert().
>>
>> That is exactly the same incorrect assumption I made as well.
>>
>> It's not the linear mapping where that comes from but a separate page
>> attribute table, see /sys/kernel/debug/x86/pat_memtype_list.
>>
>> Question is why the heck should we do this? I mean we keep an extra
>> rb tree around to overwrite something the driver knows in the first
>> place?
>>
>> That is basically just tons of extra overhead for nothing as far as I
>> can see.
>
> IIRC it was PAT people enforcing the x86 documentation that aliased
> mappings with conflicting caching attributes were not allowed. But it
> has proven to work at least on those CPUs not suffering from the clean
> cache-line writeback mentioned above.
Makes sense. With the PAT handling even accessing things through /dev/mem gives you the right caching.
Do you have a list of Intel CPUs where it works?
> FWIW If I understand the code correctly, i915 bypasses this by setting
> up user-space mappings not by vm_insert_pfn_prot() but using
> apply_to_page_range(), mapping the whole bo.
Yeah, that's probably not something we can do. Even filling in 2MiB of address space at a time caused performance problems for TTM.
We should probably just drop overriding the attributes in vmf_insert_pfn_prot().
Regards,
Christian.
>
> /Thomas
>
>
>>
>> Thanks for taking a look,
>> Christian.
>>
>>>
>>> /Thomas
>>>
>>>
>>>> ---
>>>> drivers/gpu/drm/ttm/ttm_pool.c | 16 +++++++++++-----
>>>> 1 file changed, 11 insertions(+), 5 deletions(-)
>>>>
>>>> diff --git a/drivers/gpu/drm/ttm/ttm_pool.c
>>>> b/drivers/gpu/drm/ttm/ttm_pool.c
>>>> index baf27c70a419..7487eac29398 100644
>>>> --- a/drivers/gpu/drm/ttm/ttm_pool.c
>>>> +++ b/drivers/gpu/drm/ttm/ttm_pool.c
>>>> @@ -38,7 +38,7 @@
>>>> #include <linux/highmem.h>
>>>> #include <linux/sched/mm.h>
>>>>
>>>> -#ifdef CONFIG_X86
>>>> +#ifdef CONFIG_X86_32
>>>> #include <asm/set_memory.h>
>>>> #endif
>>>>
>>>> @@ -46,6 +46,7 @@
>>>> #include <drm/ttm/ttm_pool.h>
>>>> #include <drm/ttm/ttm_tt.h>
>>>> #include <drm/ttm/ttm_bo.h>
>>>> +#include <drm/drm_cache.h>
>>>>
>>>> #include "ttm_module.h"
>>>>
>>>> @@ -192,7 +193,7 @@ static void ttm_pool_free_page(struct
>>>> ttm_pool
>>>> *pool, enum ttm_caching caching,
>>>> struct ttm_pool_dma *dma;
>>>> void *vaddr;
>>>>
>>>> -#ifdef CONFIG_X86
>>>> +#ifdef CONFIG_X86_32
>>>> /* We don't care that set_pages_wb is inefficient here.
>>>> This
>>>> is only
>>>> * used when we have to shrink and CPU overhead is
>>>> irrelevant then.
>>>> */
>>>> @@ -218,7 +219,7 @@ static void ttm_pool_free_page(struct
>>>> ttm_pool
>>>> *pool, enum ttm_caching caching,
>>>> /* Apply any cpu-caching deferred during page allocation */
>>>> static int ttm_pool_apply_caching(struct ttm_pool_alloc_state
>>>> *alloc)
>>>> {
>>>> -#ifdef CONFIG_X86
>>>> +#ifdef CONFIG_X86_32
>>>> unsigned int num_pages = alloc->pages - alloc-
>>>>> caching_divide;
>>>>
>>>> if (!num_pages)
>>>> @@ -232,6 +233,11 @@ static int ttm_pool_apply_caching(struct
>>>> ttm_pool_alloc_state *alloc)
>>>> case ttm_uncached:
>>>> return set_pages_array_uc(alloc->caching_divide,
>>>> num_pages);
>>>> }
>>>> +
>>>> +#elif defined(CONFIG_X86_64)
>>>> + unsigned int num_pages = alloc->pages - alloc-
>>>>> caching_divide;
>>>> +
>>>> + drm_clflush_pages(alloc->caching_divide, num_pages);
>>>> #endif
>>>> alloc->caching_divide = alloc->pages;
>>>> return 0;
>>>> @@ -342,7 +348,7 @@ static struct ttm_pool_type
>>>> *ttm_pool_select_type(struct ttm_pool *pool,
>>>> if (pool->use_dma_alloc)
>>>> return &pool->caching[caching].orders[order];
>>>>
>>>> -#ifdef CONFIG_X86
>>>> +#ifdef CONFIG_X86_32
>>>> switch (caching) {
>>>> case ttm_write_combined:
>>>> if (pool->nid != NUMA_NO_NODE)
>>>> @@ -980,7 +986,7 @@ long ttm_pool_backup(struct ttm_pool *pool,
>>>> struct ttm_tt *tt,
>>>> pool->use_dma_alloc || ttm_tt_is_backed_up(tt))
>>>> return -EBUSY;
>>>>
>>>> -#ifdef CONFIG_X86
>>>> +#ifdef CONFIG_X86_32
>>>> /* Anything returned to the system needs to be cached.
>>>> */
>>>> if (tt->caching != ttm_cached)
>>>> set_pages_array_wb(tt->pages, tt->num_pages);
>>>
>>
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] drm/ttm: WIP limit the TTM pool to 32bit CPUs
2025-08-11 11:51 ` Christian König
@ 2025-08-11 15:16 ` Thomas Hellström
2025-08-12 9:17 ` Christian König
0 siblings, 1 reply; 12+ messages in thread
From: Thomas Hellström @ 2025-08-11 15:16 UTC (permalink / raw)
To: Christian König, dri-devel, intel-gfx, intel-xe
Cc: airlied, matthew.brost
On Mon, 2025-08-11 at 13:51 +0200, Christian König wrote:
> On 07.08.25 18:47, Thomas Hellström wrote:
> > > Well it's surprising that even modern CPU do stuff like that.
> > > That
> > > could explain some of the problems we had with uncached mappings
> > > on
> > > ARM and RISC-V.
> >
> > Yeah. I agree. Need to double-check with HW people whether that is
> > gone
> > with Panther Lake. Don't have a confirmation yet on that.
>
> Going to ask around AMD internally as well.
>
> > If it wasn't for the writeback of speculative prefetches we
> > could've
> > settled for only have TTM map the user-space mappings without
> > changing
> > the kernel map, just like the i915 driver does for older GPUS.
>
> We should probably come up with a CPU whitelist or blacklist where
> that is actually needed.
>
> > > > Second, IIRC vm_insert_pfn_prot() on X86 will override the
> > > > given
> > > > caching mode with the last caching mode set for the kernel
> > > > linear
> > > > map,
> > > > so if you try to set up a write-combined GPU mapping without a
> > > > previous
> > > > call to set_pages_xxxxx it will actually end up cached. see
> > > > track_pfn_insert().
> > >
> > > That is exactly the same incorrect assumption I made as well.
> > >
> > > It's not the linear mapping where that comes from but a separate
> > > page
> > > attribute table, see /sys/kernel/debug/x86/pat_memtype_list.
> > >
> > > Question is why the heck should we do this? I mean we keep an
> > > extra
> > > rb tree around to overwrite something the driver knows in the
> > > first
> > > place?
> > >
> > > That is basically just tons of extra overhead for nothing as far
> > > as I
> > > can see.
> >
> > IIRC it was PAT people enforcing the x86 documentation that aliased
> > mappings with conflicting caching attributes were not allowed. But
> > it
> > has proven to work at least on those CPUs not suffering from the
> > clean
> > cache-line writeback mentioned above.
>
> Makes sense. With the PAT handling even accessing things through
> /dev/mem gives you the right caching.
>
> Do you have a list of Intel CPUs where it works?
AFAIK LNL is the only one so far where it doesn't work. I need to get
more information internally.
>
> > FWIW If I understand the code correctly, i915 bypasses this by
> > setting
> > up user-space mappings not by vm_insert_pfn_prot() but using
> > apply_to_page_range(), mapping the whole bo.
>
> Yeah, that's probably not something we can do. Even filling in 2MiB
> of address space at a time caused performance problems for TTM.
Wasn't that because of repeated calls to vmf_insert_pfn_prot(),
repeating the caching checks and page-table walk all the time?
I think apply_to_page_range() should be pretty fast. Also, to avoid
regressions due to changing the number of prefaulted pages, we could
perhaps honor the MADV_RANDOM and MADV_SEQUENTIAL advises for UMD to
use; one faulting a single page only, one faulting the whole bo, but
also see below:
>
> We should probably just drop overriding the attributes in
> vmf_insert_pfn_prot().
I think either solution will see resistance with arch people. We should
probably involve them in the discussion.
Thanks,
/Thomas
>
> Regards,
> Christian.
>
> >
> > /Thomas
> >
> >
> > >
> > > Thanks for taking a look,
> > > Christian.
> > >
> > > >
> > > > /Thomas
> > > >
> > > >
> > > > > ---
> > > > > drivers/gpu/drm/ttm/ttm_pool.c | 16 +++++++++++-----
> > > > > 1 file changed, 11 insertions(+), 5 deletions(-)
> > > > >
> > > > > diff --git a/drivers/gpu/drm/ttm/ttm_pool.c
> > > > > b/drivers/gpu/drm/ttm/ttm_pool.c
> > > > > index baf27c70a419..7487eac29398 100644
> > > > > --- a/drivers/gpu/drm/ttm/ttm_pool.c
> > > > > +++ b/drivers/gpu/drm/ttm/ttm_pool.c
> > > > > @@ -38,7 +38,7 @@
> > > > > #include <linux/highmem.h>
> > > > > #include <linux/sched/mm.h>
> > > > >
> > > > > -#ifdef CONFIG_X86
> > > > > +#ifdef CONFIG_X86_32
> > > > > #include <asm/set_memory.h>
> > > > > #endif
> > > > >
> > > > > @@ -46,6 +46,7 @@
> > > > > #include <drm/ttm/ttm_pool.h>
> > > > > #include <drm/ttm/ttm_tt.h>
> > > > > #include <drm/ttm/ttm_bo.h>
> > > > > +#include <drm/drm_cache.h>
> > > > >
> > > > > #include "ttm_module.h"
> > > > >
> > > > > @@ -192,7 +193,7 @@ static void ttm_pool_free_page(struct
> > > > > ttm_pool
> > > > > *pool, enum ttm_caching caching,
> > > > > struct ttm_pool_dma *dma;
> > > > > void *vaddr;
> > > > >
> > > > > -#ifdef CONFIG_X86
> > > > > +#ifdef CONFIG_X86_32
> > > > > /* We don't care that set_pages_wb is inefficient
> > > > > here.
> > > > > This
> > > > > is only
> > > > > * used when we have to shrink and CPU overhead is
> > > > > irrelevant then.
> > > > > */
> > > > > @@ -218,7 +219,7 @@ static void ttm_pool_free_page(struct
> > > > > ttm_pool
> > > > > *pool, enum ttm_caching caching,
> > > > > /* Apply any cpu-caching deferred during page allocation */
> > > > > static int ttm_pool_apply_caching(struct
> > > > > ttm_pool_alloc_state
> > > > > *alloc)
> > > > > {
> > > > > -#ifdef CONFIG_X86
> > > > > +#ifdef CONFIG_X86_32
> > > > > unsigned int num_pages = alloc->pages - alloc-
> > > > > > caching_divide;
> > > > >
> > > > > if (!num_pages)
> > > > > @@ -232,6 +233,11 @@ static int ttm_pool_apply_caching(struct
> > > > > ttm_pool_alloc_state *alloc)
> > > > > case ttm_uncached:
> > > > > return set_pages_array_uc(alloc-
> > > > > >caching_divide,
> > > > > num_pages);
> > > > > }
> > > > > +
> > > > > +#elif defined(CONFIG_X86_64)
> > > > > + unsigned int num_pages = alloc->pages - alloc-
> > > > > > caching_divide;
> > > > > +
> > > > > + drm_clflush_pages(alloc->caching_divide, num_pages);
> > > > > #endif
> > > > > alloc->caching_divide = alloc->pages;
> > > > > return 0;
> > > > > @@ -342,7 +348,7 @@ static struct ttm_pool_type
> > > > > *ttm_pool_select_type(struct ttm_pool *pool,
> > > > > if (pool->use_dma_alloc)
> > > > > return &pool-
> > > > > >caching[caching].orders[order];
> > > > >
> > > > > -#ifdef CONFIG_X86
> > > > > +#ifdef CONFIG_X86_32
> > > > > switch (caching) {
> > > > > case ttm_write_combined:
> > > > > if (pool->nid != NUMA_NO_NODE)
> > > > > @@ -980,7 +986,7 @@ long ttm_pool_backup(struct ttm_pool
> > > > > *pool,
> > > > > struct ttm_tt *tt,
> > > > > pool->use_dma_alloc || ttm_tt_is_backed_up(tt))
> > > > > return -EBUSY;
> > > > >
> > > > > -#ifdef CONFIG_X86
> > > > > +#ifdef CONFIG_X86_32
> > > > > /* Anything returned to the system needs to be
> > > > > cached.
> > > > > */
> > > > > if (tt->caching != ttm_cached)
> > > > > set_pages_array_wb(tt->pages, tt-
> > > > > >num_pages);
> > > >
> > >
> >
>
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] drm/ttm: WIP limit the TTM pool to 32bit CPUs
2025-08-11 15:16 ` Thomas Hellström
@ 2025-08-12 9:17 ` Christian König
2025-08-12 10:19 ` Thomas Hellström
0 siblings, 1 reply; 12+ messages in thread
From: Christian König @ 2025-08-12 9:17 UTC (permalink / raw)
To: Thomas Hellström, dri-devel, intel-gfx, intel-xe
Cc: airlied, matthew.brost
On 11.08.25 17:16, Thomas Hellström wrote:
>>
>>> FWIW If I understand the code correctly, i915 bypasses this by
>>> setting
>>> up user-space mappings not by vm_insert_pfn_prot() but using
>>> apply_to_page_range(), mapping the whole bo.
>>
>> Yeah, that's probably not something we can do. Even filling in 2MiB
>> of address space at a time caused performance problems for TTM.
>
> Wasn't that because of repeated calls to vmf_insert_pfn_prot(),
> repeating the caching checks and page-table walk all the time?
Only partially, the main problem was that only a fraction of the BO was actually CPU accessed. So filling in more than faulted was just overhead.
> I think apply_to_page_range() should be pretty fast. Also, to avoid
> regressions due to changing the number of prefaulted pages, we could
> perhaps honor the MADV_RANDOM and MADV_SEQUENTIAL advises for UMD to
> use; one faulting a single page only, one faulting the whole bo
Ah! In my thinking apply_to_page_range() would always fault in the whole BO, if that still works for only a partial range than that should be ok.
> , but
> also see below:
>
>>
>> We should probably just drop overriding the attributes in
>> vmf_insert_pfn_prot().
>
> I think either solution will see resistance with arch people. We should
> probably involve them in the discussion.
Any specific person I should CC or just x86@kernel.org?
Thanks,
Christian
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] drm/ttm: WIP limit the TTM pool to 32bit CPUs
2025-08-12 9:17 ` Christian König
@ 2025-08-12 10:19 ` Thomas Hellström
0 siblings, 0 replies; 12+ messages in thread
From: Thomas Hellström @ 2025-08-12 10:19 UTC (permalink / raw)
To: Christian König, dri-devel, intel-gfx, intel-xe
Cc: airlied, matthew.brost
On Tue, 2025-08-12 at 11:17 +0200, Christian König wrote:
> On 11.08.25 17:16, Thomas Hellström wrote:
> > >
> > > > FWIW If I understand the code correctly, i915 bypasses this by
> > > > setting
> > > > up user-space mappings not by vm_insert_pfn_prot() but using
> > > > apply_to_page_range(), mapping the whole bo.
> > >
> > > Yeah, that's probably not something we can do. Even filling in
> > > 2MiB
> > > of address space at a time caused performance problems for TTM.
> >
> > Wasn't that because of repeated calls to vmf_insert_pfn_prot(),
> > repeating the caching checks and page-table walk all the time?
>
> Only partially, the main problem was that only a fraction of the BO
> was actually CPU accessed. So filling in more than faulted was just
> overhead.
>
> > I think apply_to_page_range() should be pretty fast. Also, to avoid
> > regressions due to changing the number of prefaulted pages, we
> > could
> > perhaps honor the MADV_RANDOM and MADV_SEQUENTIAL advises for UMD
> > to
> > use; one faulting a single page only, one faulting the whole bo
>
> Ah! In my thinking apply_to_page_range() would always fault in the
> whole BO, if that still works for only a partial range than that
> should be ok.
Yes, it looks like it works with partial ranges.
>
> > , but
> > also see below:
> >
> > >
> > > We should probably just drop overriding the attributes in
> > > vmf_insert_pfn_prot().
> >
> > I think either solution will see resistance with arch people. We
> > should
> > probably involve them in the discussion.
>
> Any specific person I should CC or just x86@kernel.org?
scripts/get_maintainer.pl of a tiny change into the PAT code gives me
the following: Hopefully some of these should trigger some replies and
insights:
./scripts/get_maintainer.pl 0001-arch-mm-dummy-commit.patch
Dave Hansen <dave.hansen@linux.intel.com> (maintainer:X86 MM)
Andy Lutomirski <luto@kernel.org> (maintainer:X86 MM)
Peter Zijlstra <peterz@infradead.org> (maintainer:X86 MM)
Thomas Gleixner <tglx@linutronix.de> (maintainer:X86 ARCHITECTURE (32-
BIT AND 64-BIT))
Ingo Molnar <mingo@redhat.com> (maintainer:X86 ARCHITECTURE (32-BIT AND
64-BIT),commit_signer:10/16=62%,authored:2/16=12%)
Borislav Petkov <bp@alien8.de> (maintainer:X86 ARCHITECTURE (32-BIT AND
64-BIT))
x86@kernel.org (maintainer:X86 ARCHITECTURE (32-BIT AND 64-BIT))
"H. Peter Anvin" <hpa@zytor.com> (reviewer:X86 ARCHITECTURE (32-BIT AND
64-BIT))
Andrew Morton <akpm@linux-foundation.org> (commit_signer:7/16=44%)
David Hildenbrand <david@redhat.com>
(commit_signer:6/16=38%,authored:6/16=38%,added_lines:68/105=65%,remove
d_lines:214/292=73%)
"Liam R. Howlett" <Liam.Howlett@oracle.com> (commit_signer:5/16=31%)
Lorenzo Stoakes <lorenzo.stoakes@oracle.com> (commit_signer:5/16=31%)
Sean Christopherson <seanjc@google.com>
(authored:2/16=12%,added_lines:15/105=14%,removed_lines:31/292=11%)
"Thomas Hellström" <thomas.hellstrom@linux.intel.com>
(authored:1/16=6%)
Shivank Garg <shivankg@amd.com> (authored:1/16=6%)
Peter Xu <peterx@redhat.com> (added_lines:7/105=7%)
Dan Williams <dan.j.williams@intel.com> (removed_lines:27/292=9%)
>
> Thanks,
> Christian
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH] drm/ttm: WIP limit the TTM pool to 32bit CPUs
2025-08-06 13:28 [PATCH] drm/ttm: WIP limit the TTM pool to 32bit CPUs Christian König
` (3 preceding siblings ...)
2025-08-09 4:07 ` [PATCH] " kernel test robot
@ 2025-08-12 10:36 ` Matthew Auld
4 siblings, 0 replies; 12+ messages in thread
From: Matthew Auld @ 2025-08-12 10:36 UTC (permalink / raw)
To: Christian König, dri-devel, intel-gfx, intel-xe
Cc: airlied, thomas.hellstrom, matthew.brost
On 06/08/2025 14:28, Christian König wrote:
> On some old x86 systems we had the problem that changing the caching flags
> of system memory requires changing the global MTRR/PAT tables.
>
> But on any modern x86 system (CPUs introduced rughly after 2004) we
> actually don't need that any more and can update the caching flags
> directly in the PTEs of the CPU mapping. It was just never disabled
> because of the fear of regressions.
>
> We already use the PTE flags for encryption on x86 64bit for quite a while
> and all other supported platforms (Sparc, PowerPC, ARM, MIPS, LONGARCH)
> have never done anything different either.
>
> So disable the page pool completely for 64bit systems and just insert a
> clflush to be on the safe side so that we never return memory with dirty
> cache lines.
>
> Testing on a Ryzen 5 and 7 shows that this has absolutely no performance
> impact and of hand the AMD CI can't find a problem either.
>
> Let's see what the i915 and XE CI systems say to that.
>
> Signed-off-by: Christian König <christian.koenig@amd.com>
> ---
> drivers/gpu/drm/ttm/ttm_pool.c | 16 +++++++++++-----
> 1 file changed, 11 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/ttm/ttm_pool.c b/drivers/gpu/drm/ttm/ttm_pool.c
> index baf27c70a419..7487eac29398 100644
> --- a/drivers/gpu/drm/ttm/ttm_pool.c
> +++ b/drivers/gpu/drm/ttm/ttm_pool.c
> @@ -38,7 +38,7 @@
> #include <linux/highmem.h>
> #include <linux/sched/mm.h>
>
> -#ifdef CONFIG_X86
> +#ifdef CONFIG_X86_32
> #include <asm/set_memory.h>
> #endif
>
> @@ -46,6 +46,7 @@
> #include <drm/ttm/ttm_pool.h>
> #include <drm/ttm/ttm_tt.h>
> #include <drm/ttm/ttm_bo.h>
> +#include <drm/drm_cache.h>
>
> #include "ttm_module.h"
>
> @@ -192,7 +193,7 @@ static void ttm_pool_free_page(struct ttm_pool *pool, enum ttm_caching caching,
> struct ttm_pool_dma *dma;
> void *vaddr;
>
> -#ifdef CONFIG_X86
> +#ifdef CONFIG_X86_32
> /* We don't care that set_pages_wb is inefficient here. This is only
> * used when we have to shrink and CPU overhead is irrelevant then.
> */
> @@ -218,7 +219,7 @@ static void ttm_pool_free_page(struct ttm_pool *pool, enum ttm_caching caching,
> /* Apply any cpu-caching deferred during page allocation */
> static int ttm_pool_apply_caching(struct ttm_pool_alloc_state *alloc)
> {
> -#ifdef CONFIG_X86
> +#ifdef CONFIG_X86_32
> unsigned int num_pages = alloc->pages - alloc->caching_divide;
>
> if (!num_pages)
> @@ -232,6 +233,11 @@ static int ttm_pool_apply_caching(struct ttm_pool_alloc_state *alloc)
> case ttm_uncached:
> return set_pages_array_uc(alloc->caching_divide, num_pages);
> }
> +
> +#elif defined(CONFIG_X86_64)
> + unsigned int num_pages = alloc->pages - alloc->caching_divide;
> +
> + drm_clflush_pages(alloc->caching_divide, num_pages);
Do we now also need manual clflushing for things like swap-in? Or what
caching type does copy_highpage() in ttm_tt_swapin() use now? Is it not
wb? If so, is that not one of the nice advantages of using set_pages_*
where raw kmap will respect the PAT setting?
> #endif
> alloc->caching_divide = alloc->pages;
> return 0;
> @@ -342,7 +348,7 @@ static struct ttm_pool_type *ttm_pool_select_type(struct ttm_pool *pool,
> if (pool->use_dma_alloc)
> return &pool->caching[caching].orders[order];
>
> -#ifdef CONFIG_X86
> +#ifdef CONFIG_X86_32
> switch (caching) {
> case ttm_write_combined:
> if (pool->nid != NUMA_NO_NODE)
> @@ -980,7 +986,7 @@ long ttm_pool_backup(struct ttm_pool *pool, struct ttm_tt *tt,
> pool->use_dma_alloc || ttm_tt_is_backed_up(tt))
> return -EBUSY;
>
> -#ifdef CONFIG_X86
> +#ifdef CONFIG_X86_32
> /* Anything returned to the system needs to be cached. */
> if (tt->caching != ttm_cached)
> set_pages_array_wb(tt->pages, tt->num_pages);
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2025-08-12 10:36 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-06 13:28 [PATCH] drm/ttm: WIP limit the TTM pool to 32bit CPUs Christian König
2025-08-06 17:43 ` Thomas Hellström
2025-08-07 9:53 ` Christian König
2025-08-07 16:47 ` Thomas Hellström
2025-08-11 11:51 ` Christian König
2025-08-11 15:16 ` Thomas Hellström
2025-08-12 9:17 ` Christian König
2025-08-12 10:19 ` Thomas Hellström
2025-08-06 18:57 ` ✓ i915.CI.BAT: success for " Patchwork
2025-08-06 22:38 ` ✓ i915.CI.Full: " Patchwork
2025-08-09 4:07 ` [PATCH] " kernel test robot
2025-08-12 10:36 ` Matthew Auld
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).