* [Intel-gfx] [PATCH] drm: Add a prefetching memcpy_from_wc @ 2021-05-27 9:24 ` Thomas Hellström 0 siblings, 0 replies; 4+ messages in thread From: Thomas Hellström @ 2021-05-27 9:24 UTC (permalink / raw) To: intel-gfx, dri-devel; +Cc: Thomas Hellström, Christian König Reading out of write-combining mapped memory is typically very slow since the CPU doesn't prefetch. However some archs have special instructions to do this. So add a best-effort memcpy_from_wc taking dma-buf-map pointer arguments that attempts to use a fast prefetching memcpy and otherwise falls back to ordinary memcopies, taking the iomem tagging into account. The code is largely copied from i915_memcpy_from_wc. Cc: Daniel Vetter <daniel@ffwll.ch> Cc: Christian König <christian.koenig@amd.com> Suggested-by: Daniel Vetter <daniel@ffwll.ch> Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> --- Documentation/gpu/drm-mm.rst | 2 +- drivers/gpu/drm/drm_cache.c | 208 +++++++++++++++++++++++++++++++++++ drivers/gpu/drm/drm_drv.c | 2 + include/drm/drm_cache.h | 7 ++ 4 files changed, 218 insertions(+), 1 deletion(-) diff --git a/Documentation/gpu/drm-mm.rst b/Documentation/gpu/drm-mm.rst index 21be6deadc12..c66058c5bce7 100644 --- a/Documentation/gpu/drm-mm.rst +++ b/Documentation/gpu/drm-mm.rst @@ -469,7 +469,7 @@ DRM MM Range Allocator Function References .. kernel-doc:: drivers/gpu/drm/drm_mm.c :export: -DRM Cache Handling +DRM Cache Handling and Fast WC memcpy() ================== .. kernel-doc:: drivers/gpu/drm/drm_cache.c diff --git a/drivers/gpu/drm/drm_cache.c b/drivers/gpu/drm/drm_cache.c index 79a50ef1250f..27b834089f8c 100644 --- a/drivers/gpu/drm/drm_cache.c +++ b/drivers/gpu/drm/drm_cache.c @@ -28,6 +28,7 @@ * Authors: Thomas Hellström <thomas-at-tungstengraphics-dot-com> */ +#include <linux/dma-buf-map.h> #include <linux/export.h> #include <linux/highmem.h> #include <linux/mem_encrypt.h> @@ -35,6 +36,9 @@ #include <drm/drm_cache.h> +/* A small bounce buffer that fits on the stack. */ +#define MEMCPY_BOUNCE_SIZE 128 + #if defined(CONFIG_X86) #include <asm/smp.h> @@ -209,3 +213,207 @@ bool drm_need_swiotlb(int dma_bits) return max_iomem > ((u64)1 << dma_bits); } EXPORT_SYMBOL(drm_need_swiotlb); + +#ifdef CONFIG_X86 + +static DEFINE_STATIC_KEY_FALSE(has_movntdqa); + +static void __memcpy_ntdqa(void *dst, const void *src, unsigned long len) +{ + kernel_fpu_begin(); + + while (len >= 4) { + asm("movntdqa (%0), %%xmm0\n" + "movntdqa 16(%0), %%xmm1\n" + "movntdqa 32(%0), %%xmm2\n" + "movntdqa 48(%0), %%xmm3\n" + "movaps %%xmm0, (%1)\n" + "movaps %%xmm1, 16(%1)\n" + "movaps %%xmm2, 32(%1)\n" + "movaps %%xmm3, 48(%1)\n" + :: "r" (src), "r" (dst) : "memory"); + src += 64; + dst += 64; + len -= 4; + } + while (len--) { + asm("movntdqa (%0), %%xmm0\n" + "movaps %%xmm0, (%1)\n" + :: "r" (src), "r" (dst) : "memory"); + src += 16; + dst += 16; + } + + kernel_fpu_end(); +} + +static void __memcpy_ntdqu(void *dst, const void *src, unsigned long len) +{ + kernel_fpu_begin(); + + while (len >= 4) { + asm("movntdqa (%0), %%xmm0\n" + "movntdqa 16(%0), %%xmm1\n" + "movntdqa 32(%0), %%xmm2\n" + "movntdqa 48(%0), %%xmm3\n" + "movups %%xmm0, (%1)\n" + "movups %%xmm1, 16(%1)\n" + "movups %%xmm2, 32(%1)\n" + "movups %%xmm3, 48(%1)\n" + :: "r" (src), "r" (dst) : "memory"); + src += 64; + dst += 64; + len -= 4; + } + while (len--) { + asm("movntdqa (%0), %%xmm0\n" + "movups %%xmm0, (%1)\n" + :: "r" (src), "r" (dst) : "memory"); + src += 16; + dst += 16; + } + + kernel_fpu_end(); +} + +/** + * __drm_unaligned_memcpy_from_wc: perform a mostly accelerated read from WC + * @dst: destination pointer + * @src: source pointer + * @len: how many bytes to copy + * + * Like drm_memcpy_from_wc(), the unaligned variant copies @len bytes from + * @src to @dst using * non-temporal instructions where available, but + * accepts that its arguments may not be aligned, but are valid for the + * potential 16-byte read past the end. + * + */ +static void __drm_unaligned_memcpy_from_wc(void *dst, const void *src, + unsigned long len) +{ + unsigned long addr; + + addr = (unsigned long)src; + if (!IS_ALIGNED(addr, 16)) { + unsigned long x = min(ALIGN(addr, 16) - addr, len); + + memcpy(dst, src, x); + + len -= x; + dst += x; + src += x; + } + + if (likely(len)) + __memcpy_ntdqu(dst, src, DIV_ROUND_UP(len, 16)); +} + +/** + * __drm_memcpy_from_wc: perform an accelerated *aligned* read from WC + * @dst: destination pointer + * @src: source pointer + * @len: how many bytes to copy + * + * drm_memcpy_from_wc copies @len bytes from @src to @dst using + * non-temporal instructions where available. Note that all arguments + * (@src, @dst) must be aligned to 16 bytes and @len must be a multiple + * of 16. + * + * To test whether accelerated reads from WC are supported, use + * drm_memcpy_from_wc(NULL, NULL, 0); + * This interface is intended for memremapped memory without the __iomem tag. + * + * Returns true if the copy was successful, false if the preconditions + * are not met. + */ +static void __drm_memcpy_from_wc(void *dst, const void *src, unsigned long len) +{ + if (unlikely(((unsigned long)dst | (unsigned long)src | len) & 15)) + __drm_unaligned_memcpy_from_wc(dst, src, len); + else if (likely(len)) + __memcpy_ntdqa(dst, src, len >> 4); +} +#endif + +static void memcpy_fallback(struct dma_buf_map *dst, + const struct dma_buf_map *src, + unsigned long len) +{ + if (!dst->is_iomem && !src->is_iomem) { + memcpy(dst->vaddr, src->vaddr, len); + } else if (!src->is_iomem) { + dma_buf_map_memcpy_to(dst, src->vaddr, len); + } else if (!dst->is_iomem) { + memcpy_fromio(dst->vaddr, src->vaddr_iomem, len); + } else { + /* + * Bounce size is not performance tuned, but using a + * bounce buffer like this is significantly faster than + * resorting to ioreadxx() + iowritexx(). + */ + char bounce[MEMCPY_BOUNCE_SIZE]; + void __iomem *_src = src->vaddr_iomem; + void __iomem *_dst = dst->vaddr_iomem; + + while (len >= MEMCPY_BOUNCE_SIZE) { + memcpy_fromio(bounce, _src, MEMCPY_BOUNCE_SIZE); + memcpy_toio(_dst, bounce, MEMCPY_BOUNCE_SIZE); + _src += MEMCPY_BOUNCE_SIZE; + _dst += MEMCPY_BOUNCE_SIZE; + len -= MEMCPY_BOUNCE_SIZE; + } + if (len) { + memcpy_fromio(bounce, _src, MEMCPY_BOUNCE_SIZE); + memcpy_toio(_dst, bounce, MEMCPY_BOUNCE_SIZE); + } + } +} + +/** + * drm_memcpy_from_wc - Perform the fastest available memcpy from a source + * that may be WC. + * @dst: The destination pointer + * @src: The source pointer + * @len: The size of the area o transfer in bytes + * + * Tries an arch optimized memcpy for prefetching reading out of a WC region, + * and if no such beast is available, falls back to a normal memcpy. + */ +void drm_memcpy_from_wc(struct dma_buf_map *dst, + const struct dma_buf_map *src, + unsigned long len) +{ + if (IS_ENABLED(CONFIG_X86) && static_branch_likely(&has_movntdqa)) { + __drm_memcpy_from_wc(dst->is_iomem ? + (void __force *)dst->vaddr_iomem : + dst->vaddr, + src->is_iomem ? + (void const __force *)src->vaddr_iomem : + src->vaddr, + len); + return; + } + + memcpy_fallback(dst, src, len); +} +EXPORT_SYMBOL(drm_memcpy_from_wc); + +#ifdef CONFIG_X86 +/** + * drm_memcpy_init_early - One time initialization of the WC memcpy code + */ +void drm_memcpy_init_early(void) +{ + /* + * Some hypervisors (e.g. KVM) don't support VEX-prefix instructions + * emulation. So don't enable movntdqa in hypervisor guest. + */ + if (static_cpu_has(X86_FEATURE_XMM4_1) && + !boot_cpu_has(X86_FEATURE_HYPERVISOR)) + static_branch_enable(&has_movntdqa); +} +#else +void drm_memcpy_init_early(void) +{ +} +#endif diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c index 3d8d68a98b95..8804ec7d3215 100644 --- a/drivers/gpu/drm/drm_drv.c +++ b/drivers/gpu/drm/drm_drv.c @@ -35,6 +35,7 @@ #include <linux/slab.h> #include <linux/srcu.h> +#include <drm/drm_cache.h> #include <drm/drm_client.h> #include <drm/drm_color_mgmt.h> #include <drm/drm_drv.h> @@ -1041,6 +1042,7 @@ static int __init drm_core_init(void) drm_connector_ida_init(); idr_init(&drm_minors_idr); + drm_memcpy_init_early(); ret = drm_sysfs_init(); if (ret < 0) { diff --git a/include/drm/drm_cache.h b/include/drm/drm_cache.h index e9ad4863d915..cc9de1632dd3 100644 --- a/include/drm/drm_cache.h +++ b/include/drm/drm_cache.h @@ -35,6 +35,8 @@ #include <linux/scatterlist.h> +struct dma_buf_map; + void drm_clflush_pages(struct page *pages[], unsigned long num_pages); void drm_clflush_sg(struct sg_table *st); void drm_clflush_virt_range(void *addr, unsigned long length); @@ -70,4 +72,9 @@ static inline bool drm_arch_can_wc_memory(void) #endif } +void drm_memcpy_init_early(void); + +void drm_memcpy_from_wc(struct dma_buf_map *dst, + const struct dma_buf_map *src, + unsigned long len); #endif -- 2.31.1 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] drm: Add a prefetching memcpy_from_wc @ 2021-05-27 9:24 ` Thomas Hellström 0 siblings, 0 replies; 4+ messages in thread From: Thomas Hellström @ 2021-05-27 9:24 UTC (permalink / raw) To: intel-gfx, dri-devel; +Cc: Thomas Hellström, Christian König Reading out of write-combining mapped memory is typically very slow since the CPU doesn't prefetch. However some archs have special instructions to do this. So add a best-effort memcpy_from_wc taking dma-buf-map pointer arguments that attempts to use a fast prefetching memcpy and otherwise falls back to ordinary memcopies, taking the iomem tagging into account. The code is largely copied from i915_memcpy_from_wc. Cc: Daniel Vetter <daniel@ffwll.ch> Cc: Christian König <christian.koenig@amd.com> Suggested-by: Daniel Vetter <daniel@ffwll.ch> Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> --- Documentation/gpu/drm-mm.rst | 2 +- drivers/gpu/drm/drm_cache.c | 208 +++++++++++++++++++++++++++++++++++ drivers/gpu/drm/drm_drv.c | 2 + include/drm/drm_cache.h | 7 ++ 4 files changed, 218 insertions(+), 1 deletion(-) diff --git a/Documentation/gpu/drm-mm.rst b/Documentation/gpu/drm-mm.rst index 21be6deadc12..c66058c5bce7 100644 --- a/Documentation/gpu/drm-mm.rst +++ b/Documentation/gpu/drm-mm.rst @@ -469,7 +469,7 @@ DRM MM Range Allocator Function References .. kernel-doc:: drivers/gpu/drm/drm_mm.c :export: -DRM Cache Handling +DRM Cache Handling and Fast WC memcpy() ================== .. kernel-doc:: drivers/gpu/drm/drm_cache.c diff --git a/drivers/gpu/drm/drm_cache.c b/drivers/gpu/drm/drm_cache.c index 79a50ef1250f..27b834089f8c 100644 --- a/drivers/gpu/drm/drm_cache.c +++ b/drivers/gpu/drm/drm_cache.c @@ -28,6 +28,7 @@ * Authors: Thomas Hellström <thomas-at-tungstengraphics-dot-com> */ +#include <linux/dma-buf-map.h> #include <linux/export.h> #include <linux/highmem.h> #include <linux/mem_encrypt.h> @@ -35,6 +36,9 @@ #include <drm/drm_cache.h> +/* A small bounce buffer that fits on the stack. */ +#define MEMCPY_BOUNCE_SIZE 128 + #if defined(CONFIG_X86) #include <asm/smp.h> @@ -209,3 +213,207 @@ bool drm_need_swiotlb(int dma_bits) return max_iomem > ((u64)1 << dma_bits); } EXPORT_SYMBOL(drm_need_swiotlb); + +#ifdef CONFIG_X86 + +static DEFINE_STATIC_KEY_FALSE(has_movntdqa); + +static void __memcpy_ntdqa(void *dst, const void *src, unsigned long len) +{ + kernel_fpu_begin(); + + while (len >= 4) { + asm("movntdqa (%0), %%xmm0\n" + "movntdqa 16(%0), %%xmm1\n" + "movntdqa 32(%0), %%xmm2\n" + "movntdqa 48(%0), %%xmm3\n" + "movaps %%xmm0, (%1)\n" + "movaps %%xmm1, 16(%1)\n" + "movaps %%xmm2, 32(%1)\n" + "movaps %%xmm3, 48(%1)\n" + :: "r" (src), "r" (dst) : "memory"); + src += 64; + dst += 64; + len -= 4; + } + while (len--) { + asm("movntdqa (%0), %%xmm0\n" + "movaps %%xmm0, (%1)\n" + :: "r" (src), "r" (dst) : "memory"); + src += 16; + dst += 16; + } + + kernel_fpu_end(); +} + +static void __memcpy_ntdqu(void *dst, const void *src, unsigned long len) +{ + kernel_fpu_begin(); + + while (len >= 4) { + asm("movntdqa (%0), %%xmm0\n" + "movntdqa 16(%0), %%xmm1\n" + "movntdqa 32(%0), %%xmm2\n" + "movntdqa 48(%0), %%xmm3\n" + "movups %%xmm0, (%1)\n" + "movups %%xmm1, 16(%1)\n" + "movups %%xmm2, 32(%1)\n" + "movups %%xmm3, 48(%1)\n" + :: "r" (src), "r" (dst) : "memory"); + src += 64; + dst += 64; + len -= 4; + } + while (len--) { + asm("movntdqa (%0), %%xmm0\n" + "movups %%xmm0, (%1)\n" + :: "r" (src), "r" (dst) : "memory"); + src += 16; + dst += 16; + } + + kernel_fpu_end(); +} + +/** + * __drm_unaligned_memcpy_from_wc: perform a mostly accelerated read from WC + * @dst: destination pointer + * @src: source pointer + * @len: how many bytes to copy + * + * Like drm_memcpy_from_wc(), the unaligned variant copies @len bytes from + * @src to @dst using * non-temporal instructions where available, but + * accepts that its arguments may not be aligned, but are valid for the + * potential 16-byte read past the end. + * + */ +static void __drm_unaligned_memcpy_from_wc(void *dst, const void *src, + unsigned long len) +{ + unsigned long addr; + + addr = (unsigned long)src; + if (!IS_ALIGNED(addr, 16)) { + unsigned long x = min(ALIGN(addr, 16) - addr, len); + + memcpy(dst, src, x); + + len -= x; + dst += x; + src += x; + } + + if (likely(len)) + __memcpy_ntdqu(dst, src, DIV_ROUND_UP(len, 16)); +} + +/** + * __drm_memcpy_from_wc: perform an accelerated *aligned* read from WC + * @dst: destination pointer + * @src: source pointer + * @len: how many bytes to copy + * + * drm_memcpy_from_wc copies @len bytes from @src to @dst using + * non-temporal instructions where available. Note that all arguments + * (@src, @dst) must be aligned to 16 bytes and @len must be a multiple + * of 16. + * + * To test whether accelerated reads from WC are supported, use + * drm_memcpy_from_wc(NULL, NULL, 0); + * This interface is intended for memremapped memory without the __iomem tag. + * + * Returns true if the copy was successful, false if the preconditions + * are not met. + */ +static void __drm_memcpy_from_wc(void *dst, const void *src, unsigned long len) +{ + if (unlikely(((unsigned long)dst | (unsigned long)src | len) & 15)) + __drm_unaligned_memcpy_from_wc(dst, src, len); + else if (likely(len)) + __memcpy_ntdqa(dst, src, len >> 4); +} +#endif + +static void memcpy_fallback(struct dma_buf_map *dst, + const struct dma_buf_map *src, + unsigned long len) +{ + if (!dst->is_iomem && !src->is_iomem) { + memcpy(dst->vaddr, src->vaddr, len); + } else if (!src->is_iomem) { + dma_buf_map_memcpy_to(dst, src->vaddr, len); + } else if (!dst->is_iomem) { + memcpy_fromio(dst->vaddr, src->vaddr_iomem, len); + } else { + /* + * Bounce size is not performance tuned, but using a + * bounce buffer like this is significantly faster than + * resorting to ioreadxx() + iowritexx(). + */ + char bounce[MEMCPY_BOUNCE_SIZE]; + void __iomem *_src = src->vaddr_iomem; + void __iomem *_dst = dst->vaddr_iomem; + + while (len >= MEMCPY_BOUNCE_SIZE) { + memcpy_fromio(bounce, _src, MEMCPY_BOUNCE_SIZE); + memcpy_toio(_dst, bounce, MEMCPY_BOUNCE_SIZE); + _src += MEMCPY_BOUNCE_SIZE; + _dst += MEMCPY_BOUNCE_SIZE; + len -= MEMCPY_BOUNCE_SIZE; + } + if (len) { + memcpy_fromio(bounce, _src, MEMCPY_BOUNCE_SIZE); + memcpy_toio(_dst, bounce, MEMCPY_BOUNCE_SIZE); + } + } +} + +/** + * drm_memcpy_from_wc - Perform the fastest available memcpy from a source + * that may be WC. + * @dst: The destination pointer + * @src: The source pointer + * @len: The size of the area o transfer in bytes + * + * Tries an arch optimized memcpy for prefetching reading out of a WC region, + * and if no such beast is available, falls back to a normal memcpy. + */ +void drm_memcpy_from_wc(struct dma_buf_map *dst, + const struct dma_buf_map *src, + unsigned long len) +{ + if (IS_ENABLED(CONFIG_X86) && static_branch_likely(&has_movntdqa)) { + __drm_memcpy_from_wc(dst->is_iomem ? + (void __force *)dst->vaddr_iomem : + dst->vaddr, + src->is_iomem ? + (void const __force *)src->vaddr_iomem : + src->vaddr, + len); + return; + } + + memcpy_fallback(dst, src, len); +} +EXPORT_SYMBOL(drm_memcpy_from_wc); + +#ifdef CONFIG_X86 +/** + * drm_memcpy_init_early - One time initialization of the WC memcpy code + */ +void drm_memcpy_init_early(void) +{ + /* + * Some hypervisors (e.g. KVM) don't support VEX-prefix instructions + * emulation. So don't enable movntdqa in hypervisor guest. + */ + if (static_cpu_has(X86_FEATURE_XMM4_1) && + !boot_cpu_has(X86_FEATURE_HYPERVISOR)) + static_branch_enable(&has_movntdqa); +} +#else +void drm_memcpy_init_early(void) +{ +} +#endif diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c index 3d8d68a98b95..8804ec7d3215 100644 --- a/drivers/gpu/drm/drm_drv.c +++ b/drivers/gpu/drm/drm_drv.c @@ -35,6 +35,7 @@ #include <linux/slab.h> #include <linux/srcu.h> +#include <drm/drm_cache.h> #include <drm/drm_client.h> #include <drm/drm_color_mgmt.h> #include <drm/drm_drv.h> @@ -1041,6 +1042,7 @@ static int __init drm_core_init(void) drm_connector_ida_init(); idr_init(&drm_minors_idr); + drm_memcpy_init_early(); ret = drm_sysfs_init(); if (ret < 0) { diff --git a/include/drm/drm_cache.h b/include/drm/drm_cache.h index e9ad4863d915..cc9de1632dd3 100644 --- a/include/drm/drm_cache.h +++ b/include/drm/drm_cache.h @@ -35,6 +35,8 @@ #include <linux/scatterlist.h> +struct dma_buf_map; + void drm_clflush_pages(struct page *pages[], unsigned long num_pages); void drm_clflush_sg(struct sg_table *st); void drm_clflush_virt_range(void *addr, unsigned long length); @@ -70,4 +72,9 @@ static inline bool drm_arch_can_wc_memory(void) #endif } +void drm_memcpy_init_early(void); + +void drm_memcpy_from_wc(struct dma_buf_map *dst, + const struct dma_buf_map *src, + unsigned long len); #endif -- 2.31.1 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm: Add a prefetching memcpy_from_wc 2021-05-27 9:24 ` Thomas Hellström (?) @ 2021-05-27 11:06 ` Patchwork -1 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2021-05-27 11:06 UTC (permalink / raw) To: Thomas Hellström; +Cc: intel-gfx [-- Attachment #1.1: Type: text/plain, Size: 5033 bytes --] == Series Details == Series: drm: Add a prefetching memcpy_from_wc URL : https://patchwork.freedesktop.org/series/90656/ State : success == Summary == CI Bug Log - changes from CI_DRM_10140 -> Patchwork_20220 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/index.html Known issues ------------ Here are the changes found in Patchwork_20220 that come from known issues: ### IGT changes ### #### Warnings #### * igt@i915_selftest@live@execlists: - fi-icl-u2: [DMESG-FAIL][1] ([i915#3462]) -> [INCOMPLETE][2] ([i915#2782] / [i915#3462]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/fi-icl-u2/igt@i915_selftest@live@execlists.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/fi-icl-u2/igt@i915_selftest@live@execlists.html - fi-tgl-u2: [INCOMPLETE][3] ([i915#3462]) -> [DMESG-FAIL][4] ([i915#3462]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/fi-tgl-u2/igt@i915_selftest@live@execlists.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/fi-tgl-u2/igt@i915_selftest@live@execlists.html * igt@runner@aborted: - fi-cfl-8700k: [FAIL][5] ([i915#2426] / [i915#3363]) -> [FAIL][6] ([i915#3363]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/fi-cfl-8700k/igt@runner@aborted.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/fi-cfl-8700k/igt@runner@aborted.html - fi-skl-6600u: [FAIL][7] ([i915#1436] / [i915#3363]) -> [FAIL][8] ([i915#1436] / [i915#2426] / [i915#3363]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/fi-skl-6600u/igt@runner@aborted.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/fi-skl-6600u/igt@runner@aborted.html - fi-icl-u2: [FAIL][9] ([i915#2426] / [i915#2782] / [i915#3363]) -> [FAIL][10] ([i915#2782] / [i915#3363]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/fi-icl-u2/igt@runner@aborted.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/fi-icl-u2/igt@runner@aborted.html - fi-glk-dsi: [FAIL][11] ([i915#2426] / [i915#3363] / [k.org#202321]) -> [FAIL][12] ([i915#3363] / [k.org#202321]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/fi-glk-dsi/igt@runner@aborted.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/fi-glk-dsi/igt@runner@aborted.html - fi-bdw-5557u: [FAIL][13] ([i915#3462]) -> [FAIL][14] ([i915#1602] / [i915#2029]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/fi-bdw-5557u/igt@runner@aborted.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/fi-bdw-5557u/igt@runner@aborted.html - fi-kbl-7567u: [FAIL][15] ([i915#1436] / [i915#2426] / [i915#3363]) -> [FAIL][16] ([i915#1436] / [i915#3363]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/fi-kbl-7567u/igt@runner@aborted.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/fi-kbl-7567u/igt@runner@aborted.html - fi-skl-6700k2: [FAIL][17] ([i915#1436] / [i915#3363]) -> [FAIL][18] ([i915#1436] / [i915#2426] / [i915#3363]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/fi-skl-6700k2/igt@runner@aborted.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/fi-skl-6700k2/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436 [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602 [i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029 [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426 [i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782 [i915#2932]: https://gitlab.freedesktop.org/drm/intel/issues/2932 [i915#2966]: https://gitlab.freedesktop.org/drm/intel/issues/2966 [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363 [i915#3462]: https://gitlab.freedesktop.org/drm/intel/issues/3462 [k.org#202321]: https://bugzilla.kernel.org/show_bug.cgi?id=202321 Participating hosts (44 -> 39) ------------------------------ Missing (5): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-bdw-samus Build changes ------------- * Linux: CI_DRM_10140 -> Patchwork_20220 CI-20190529: 20190529 CI_DRM_10140: a3621003ce45b9cea65bad656f50811f1472abab @ git://anongit.freedesktop.org/gfx-ci/linux IGT_6094: f62d8953c0bc5ed68ea978662e62f9dbb46cf101 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools Patchwork_20220: 4e20d6b15822fab2377afc59576bbd764f376972 @ git://anongit.freedesktop.org/gfx-ci/linux == Linux commits == 4e20d6b15822 drm: Add a prefetching memcpy_from_wc == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/index.html [-- Attachment #1.2: Type: text/html, Size: 7453 bytes --] [-- Attachment #2: Type: text/plain, Size: 160 bytes --] _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 4+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm: Add a prefetching memcpy_from_wc 2021-05-27 9:24 ` Thomas Hellström (?) (?) @ 2021-05-28 3:59 ` Patchwork -1 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2021-05-28 3:59 UTC (permalink / raw) To: Thomas Hellström; +Cc: intel-gfx [-- Attachment #1.1: Type: text/plain, Size: 30260 bytes --] == Series Details == Series: drm: Add a prefetching memcpy_from_wc URL : https://patchwork.freedesktop.org/series/90656/ State : failure == Summary == CI Bug Log - changes from CI_DRM_10140_full -> Patchwork_20220_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_20220_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_20220_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_20220_full: ### Piglit changes ### #### Possible regressions #### * spec@!opengl 1.3@gl-1.3-texture-env (NEW): - pig-snb-2600: NOTRUN -> [INCOMPLETE][1] +7 similar issues [1]: None New tests --------- New tests have been introduced between CI_DRM_10140_full and Patchwork_20220_full: ### New Piglit tests (8) ### * spec@!opengl 1.3@gl-1.3-texture-env: - Statuses : 1 incomplete(s) - Exec time: [0.0] s * spec@arb_texture_cube_map_array@texsubimage cube_map_array: - Statuses : 1 incomplete(s) - Exec time: [0.0] s * spec@ext_framebuffer_object@fbo-fragcoord: - Statuses : 1 incomplete(s) - Exec time: [0.0] s * spec@ext_texture_array@fbo-depth-array fs-writes-depth: - Statuses : 1 incomplete(s) - Exec time: [0.0] s * spec@ext_texture_compression_rgtc@fbo-generatemipmap-formats: - Statuses : 1 incomplete(s) - Exec time: [0.0] s * spec@ext_texture_compression_rgtc@fbo-generatemipmap-formats-signed: - Statuses : 1 incomplete(s) - Exec time: [0.0] s * spec@ext_texture_compression_rgtc@texwrap formats: - Statuses : 1 incomplete(s) - Exec time: [0.0] s * spec@ext_texture_swizzle@ext_texture_swizzle-swizzle: - Statuses : 1 incomplete(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in Patchwork_20220_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@feature_discovery@display-3x: - shard-iclb: NOTRUN -> [SKIP][2] ([i915#1839]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-iclb5/igt@feature_discovery@display-3x.html * igt@gem_ctx_persistence@legacy-engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#1099]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-snb7/igt@gem_ctx_persistence@legacy-engines-mixed-process.html * igt@gem_ctx_ringsize@active@bcs0: - shard-skl: [PASS][4] -> [INCOMPLETE][5] ([i915#3316]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-skl10/igt@gem_ctx_ringsize@active@bcs0.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-skl8/igt@gem_ctx_ringsize@active@bcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-kbl: [PASS][6] -> [FAIL][7] ([i915#2842]) +1 similar issue [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-kbl3/igt@gem_exec_fair@basic-none@vcs0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl7/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-iclb: [PASS][8] -> [FAIL][9] ([i915#2842]) +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-iclb5/igt@gem_exec_fair@basic-pace@vcs0.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-iclb4/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_fair@basic-pace@vcs1: - shard-iclb: NOTRUN -> [FAIL][10] ([i915#2842]) +1 similar issue [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-iclb4/igt@gem_exec_fair@basic-pace@vcs1.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-tglb: [PASS][11] -> [FAIL][12] ([i915#2842]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-tglb3/igt@gem_exec_fair@basic-pace@vecs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-tglb7/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_reloc@basic-wide-active@bcs0: - shard-apl: NOTRUN -> [FAIL][13] ([i915#2389]) +3 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-apl8/igt@gem_exec_reloc@basic-wide-active@bcs0.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-iclb: [PASS][14] -> [INCOMPLETE][15] ([i915#3468]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-iclb5/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-iclb4/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html - shard-glk: [PASS][16] -> [FAIL][17] ([i915#307]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-glk1/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-glk7/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_mmap_offset@clear: - shard-skl: [PASS][18] -> [INCOMPLETE][19] ([fdo#109052]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-skl9/igt@gem_mmap_offset@clear.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-skl3/igt@gem_mmap_offset@clear.html * igt@gem_vm_create@destroy-race: - shard-tglb: [PASS][20] -> [FAIL][21] ([i915#2822]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-tglb7/igt@gem_vm_create@destroy-race.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-tglb5/igt@gem_vm_create@destroy-race.html * igt@gem_workarounds@suspend-resume-context: - shard-apl: NOTRUN -> [DMESG-WARN][22] ([i915#180]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-apl3/igt@gem_workarounds@suspend-resume-context.html * igt@i915_pm_dc@dc6-dpms: - shard-skl: NOTRUN -> [FAIL][23] ([i915#454]) +1 similar issue [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-skl4/igt@i915_pm_dc@dc6-dpms.html - shard-tglb: NOTRUN -> [FAIL][24] ([i915#454]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-tglb3/igt@i915_pm_dc@dc6-dpms.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][25] ([fdo#111614]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-tglb3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-tglb: NOTRUN -> [SKIP][26] ([fdo#111615]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-tglb3/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_joiner@basic: - shard-apl: NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#2705]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-apl7/igt@kms_big_joiner@basic.html * igt@kms_chamelium@dp-hpd: - shard-iclb: NOTRUN -> [SKIP][28] ([fdo#109284] / [fdo#111827]) +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-iclb5/igt@kms_chamelium@dp-hpd.html * igt@kms_chamelium@vga-hpd: - shard-apl: NOTRUN -> [SKIP][29] ([fdo#109271] / [fdo#111827]) +26 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-apl6/igt@kms_chamelium@vga-hpd.html * igt@kms_chamelium@vga-hpd-with-enabled-mode: - shard-kbl: NOTRUN -> [SKIP][30] ([fdo#109271] / [fdo#111827]) +3 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl3/igt@kms_chamelium@vga-hpd-with-enabled-mode.html * igt@kms_color_chamelium@pipe-b-ctm-max: - shard-snb: NOTRUN -> [SKIP][31] ([fdo#109271] / [fdo#111827]) +6 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-snb6/igt@kms_color_chamelium@pipe-b-ctm-max.html * igt@kms_color_chamelium@pipe-d-ctm-0-5: - shard-skl: NOTRUN -> [SKIP][32] ([fdo#109271] / [fdo#111827]) +3 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-skl8/igt@kms_color_chamelium@pipe-d-ctm-0-5.html * igt@kms_content_protection@atomic-dpms: - shard-apl: NOTRUN -> [TIMEOUT][33] ([i915#1319]) +1 similar issue [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-apl7/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-iclb: NOTRUN -> [SKIP][34] ([i915#3116]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-iclb5/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@legacy: - shard-kbl: NOTRUN -> [TIMEOUT][35] ([i915#1319]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl3/igt@kms_content_protection@legacy.html * igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding: - shard-snb: NOTRUN -> [SKIP][36] ([fdo#109271]) +132 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-snb6/igt@kms_cursor_crc@pipe-a-cursor-256x85-sliding.html * igt@kms_cursor_crc@pipe-b-cursor-512x512-rapid-movement: - shard-iclb: NOTRUN -> [SKIP][37] ([fdo#109278] / [fdo#109279]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-iclb5/igt@kms_cursor_crc@pipe-b-cursor-512x512-rapid-movement.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-skl: [PASS][38] -> [FAIL][39] ([i915#2346]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-skl10/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-skl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@pipe-d-torture-bo: - shard-apl: NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#533]) +2 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-apl6/igt@kms_cursor_legacy@pipe-d-torture-bo.html * igt@kms_dp_dsc@basic-dsc-enable-edp: - shard-iclb: NOTRUN -> [SKIP][41] ([fdo#109349]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-iclb5/igt@kms_dp_dsc@basic-dsc-enable-edp.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-iclb: NOTRUN -> [SKIP][42] ([fdo#109274]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-iclb5/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1: - shard-skl: [PASS][43] -> [FAIL][44] ([i915#79]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-skl3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-skl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile: - shard-apl: NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#2642]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-apl6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-iclb: NOTRUN -> [SKIP][46] ([fdo#109280]) +3 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-kbl: NOTRUN -> [SKIP][47] ([fdo#109271]) +44 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff: - shard-tglb: NOTRUN -> [SKIP][48] ([fdo#111825]) +1 similar issue [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-tglb3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html * igt@kms_hdr@bpc-switch-suspend: - shard-kbl: [PASS][49] -> [DMESG-WARN][50] ([i915#180]) +6 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-kbl3/igt@kms_hdr@bpc-switch-suspend.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl3/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c: - shard-iclb: NOTRUN -> [SKIP][51] ([fdo#109289]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-iclb5/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - shard-kbl: NOTRUN -> [DMESG-WARN][52] ([i915#180]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html * igt@kms_plane_alpha_blend@pipe-a-alpha-basic: - shard-apl: NOTRUN -> [FAIL][53] ([fdo#108145] / [i915#265]) +3 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-apl6/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html * igt@kms_plane_alpha_blend@pipe-c-coverage-7efc: - shard-skl: [PASS][54] -> [FAIL][55] ([fdo#108145] / [i915#265]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-skl8/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-skl9/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1: - shard-apl: NOTRUN -> [SKIP][56] ([fdo#109271] / [i915#658]) +7 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-apl6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-1.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4: - shard-skl: NOTRUN -> [SKIP][57] ([fdo#109271] / [i915#658]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-skl8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-3: - shard-kbl: NOTRUN -> [SKIP][58] ([fdo#109271] / [i915#658]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-3.html * igt@kms_psr@psr2_cursor_plane_move: - shard-iclb: [PASS][59] -> [SKIP][60] ([fdo#109441]) +1 similar issue [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-iclb2/igt@kms_psr@psr2_cursor_plane_move.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-iclb5/igt@kms_psr@psr2_cursor_plane_move.html * igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend: - shard-iclb: NOTRUN -> [SKIP][61] ([fdo#109278]) +3 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-iclb5/igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-d-ts-continuation-idle: - shard-apl: NOTRUN -> [SKIP][62] ([fdo#109271]) +248 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-apl7/igt@kms_vblank@pipe-d-ts-continuation-idle.html * igt@kms_vrr@flipline: - shard-skl: NOTRUN -> [SKIP][63] ([fdo#109271]) +17 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-skl5/igt@kms_vrr@flipline.html * igt@kms_writeback@writeback-invalid-parameters: - shard-apl: NOTRUN -> [SKIP][64] ([fdo#109271] / [i915#2437]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-apl7/igt@kms_writeback@writeback-invalid-parameters.html * igt@nouveau_crc@pipe-b-source-outp-complete: - shard-iclb: NOTRUN -> [SKIP][65] ([i915#2530]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-iclb5/igt@nouveau_crc@pipe-b-source-outp-complete.html * igt@prime_nv_pcopy@test3_4: - shard-iclb: NOTRUN -> [SKIP][66] ([fdo#109291]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-iclb5/igt@prime_nv_pcopy@test3_4.html * igt@sysfs_clients@pidname: - shard-apl: NOTRUN -> [SKIP][67] ([fdo#109271] / [i915#2994]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-apl6/igt@sysfs_clients@pidname.html * igt@sysfs_clients@split-50: - shard-kbl: NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#2994]) +1 similar issue [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl4/igt@sysfs_clients@split-50.html #### Possible fixes #### * igt@gem_eio@in-flight-suspend: - shard-kbl: [DMESG-WARN][69] ([i915#180]) -> [PASS][70] +1 similar issue [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-kbl3/igt@gem_eio@in-flight-suspend.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl4/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@unwedge-stress: - shard-tglb: [TIMEOUT][71] ([i915#2369] / [i915#3063]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-tglb1/igt@gem_eio@unwedge-stress.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-tglb1/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [FAIL][73] ([i915#2846]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-glk2/igt@gem_exec_fair@basic-deadline.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-glk2/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [FAIL][75] ([i915#2842]) -> [PASS][76] [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-tglb1/igt@gem_exec_fair@basic-pace-share@rcs0.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-tglb3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_mmap_gtt@big-copy: - shard-glk: [FAIL][77] ([i915#307]) -> [PASS][78] [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-glk7/igt@gem_mmap_gtt@big-copy.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-glk9/igt@gem_mmap_gtt@big-copy.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-tglb: [INCOMPLETE][79] ([i915#2910] / [i915#3468]) -> [PASS][80] [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-tglb6/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-tglb3/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html - shard-skl: [INCOMPLETE][81] ([i915#198] / [i915#2910] / [i915#3468]) -> [PASS][82] [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-skl8/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-skl4/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-iclb: [INCOMPLETE][83] ([i915#3468]) -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-iclb3/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-iclb5/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-iclb: [FAIL][85] ([i915#307]) -> [PASS][86] +1 similar issue [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-iclb2/igt@gem_mmap_gtt@cpuset-big-copy-odd.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-iclb6/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-skl: [INCOMPLETE][87] ([i915#3468]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-skl9/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-skl1/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_ppgtt@flink-and-close-vma-leak: - shard-apl: [FAIL][89] ([i915#644]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-apl1/igt@gem_ppgtt@flink-and-close-vma-leak.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-apl8/igt@gem_ppgtt@flink-and-close-vma-leak.html * igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding: - shard-skl: [FAIL][91] ([i915#3444]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-skl3/igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-skl3/igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-skl: [FAIL][93] ([i915#2346]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-skl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-skl9/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-kbl: [INCOMPLETE][95] ([i915#155] / [i915#180] / [i915#636]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-kbl7/igt@kms_fbcon_fbt@fbc-suspend.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl3/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1: - shard-glk: [FAIL][97] ([i915#79]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-glk9/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-glk4/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1.html * igt@kms_flip_tiling@flip-x-tiled@edp-1-pipe-c: - shard-skl: [FAIL][99] ([i915#2767]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-skl4/igt@kms_flip_tiling@flip-x-tiled@edp-1-pipe-c.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-skl5/igt@kms_flip_tiling@flip-x-tiled@edp-1-pipe-c.html * igt@kms_hdr@bpc-switch-dpms: - shard-skl: [FAIL][101] ([i915#1188]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-skl9/igt@kms_hdr@bpc-switch-dpms.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-skl3/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_plane_alpha_blend@pipe-a-coverage-7efc: - shard-skl: [FAIL][103] ([fdo#108145] / [i915#265]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-skl9/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-skl1/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [SKIP][105] ([fdo#109441]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-iclb5/igt@kms_psr@psr2_cursor_render.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-iclb2/igt@kms_psr@psr2_cursor_render.html * igt@syncobj_timeline@invalid-signal-bad-pad: - shard-skl: [DMESG-WARN][107] ([i915#1982]) -> [PASS][108] +1 similar issue [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-skl10/igt@syncobj_timeline@invalid-signal-bad-pad.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-skl8/igt@syncobj_timeline@invalid-signal-bad-pad.html #### Warnings #### * igt@gem_mmap_gtt@fault-concurrent-y: - shard-skl: [INCOMPLETE][109] ([i915#3523]) -> [INCOMPLETE][110] ([i915#3468] / [i915#3523]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-skl3/igt@gem_mmap_gtt@fault-concurrent-y.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-skl7/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@kms_flip@flip-vs-suspend@a-dp1: - shard-kbl: [DMESG-WARN][111] ([i915#180]) -> [INCOMPLETE][112] ([i915#155]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-kbl7/igt@kms_flip@flip-vs-suspend@a-dp1.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl3/igt@kms_flip@flip-vs-suspend@a-dp1.html * igt@kms_psr2_sf@plane-move-sf-dmg-area-2: - shard-iclb: [SKIP][113] ([i915#658]) -> [SKIP][114] ([i915#2920]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-iclb7/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2: - shard-iclb: [SKIP][115] ([i915#2920]) -> [SKIP][116] ([i915#658]) +3 similar issues [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-iclb6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2.html * igt@runner@aborted: - shard-kbl: ([FAIL][117], [FAIL][118], [FAIL][119], [FAIL][120], [FAIL][121], [FAIL][122], [FAIL][123], [FAIL][124], [FAIL][125], [FAIL][126], [FAIL][127], [FAIL][128], [FAIL][129], [FAIL][130], [FAIL][131], [FAIL][132], [FAIL][133]) ([fdo#109271] / [i915#1436] / [i915#180] / [i915#1814] / [i915#2722] / [i915#3002] / [i915#3363] / [i915#92]) -> ([FAIL][134], [FAIL][135], [FAIL][136], [FAIL][137], [FAIL][138], [FAIL][139], [FAIL][140], [FAIL][141], [FAIL][142], [FAIL][143], [FAIL][144], [FAIL][145], [FAIL][146], [FAIL][147], [FAIL][148], [FAIL][149]) ([i915#1436] / [i915#180] / [i915#1814] / [i915#2722] / [i915#3002] / [i915#3363] / [i915#602]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-kbl2/igt@runner@aborted.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-kbl3/igt@runner@aborted.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-kbl3/igt@runner@aborted.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-kbl2/igt@runner@aborted.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-kbl1/igt@runner@aborted.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-kbl3/igt@runner@aborted.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-kbl1/igt@runner@aborted.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-kbl3/igt@runner@aborted.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-kbl1/igt@runner@aborted.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-kbl4/igt@runner@aborted.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-kbl7/igt@runner@aborted.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-kbl7/igt@runner@aborted.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-kbl7/igt@runner@aborted.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-kbl3/igt@runner@aborted.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-kbl3/igt@runner@aborted.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-kbl7/igt@runner@aborted.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-kbl7/igt@runner@aborted.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl4/igt@runner@aborted.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl7/igt@runner@aborted.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl7/igt@runner@aborted.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl4/igt@runner@aborted.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl4/igt@runner@aborted.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl7/igt@runner@aborted.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl4/igt@runner@aborted.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl7/igt@runner@aborted.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl3/igt@runner@aborted.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl3/igt@runner@aborted.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl3/igt@runner@aborted.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl3/igt@runner@aborted.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl3/igt@runner@aborted.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl1/igt@runner@aborted.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl1/igt@runner@aborted.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/shard-kbl2/igt@runner@aborted.html - shard-apl: ([FAIL][150], [FAIL][151], [FAIL][152]) ([i915#1814] / [i915#2722] / [i915#3363]) -> ([FAIL][153], [FAIL][154]) ([fdo#109271] / [i915#180] / [i915#1814] / [i915#3363]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-apl6/igt@runner@aborted.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-apl2/igt@runner@aborted.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10140/shard-apl6/igt == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20220/index.html [-- Attachment #1.2: Type: text/html, Size: 33831 bytes --] [-- Attachment #2: Type: text/plain, Size: 160 bytes --] _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-05-28 3:59 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-05-27 9:24 [Intel-gfx] [PATCH] drm: Add a prefetching memcpy_from_wc Thomas Hellström 2021-05-27 9:24 ` Thomas Hellström 2021-05-27 11:06 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork 2021-05-28 3:59 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.