* [igt-dev] [PATCH i-g-t v1 1/5] include/drm-uapi: sync core headers with drm-next
2023-11-07 17:43 [igt-dev] [PATCH i-g-t v1 0/5] drm-uapi: sync with drm-next f2cab4b318ee Kamil Konieczny
@ 2023-11-07 17:43 ` Kamil Konieczny
2023-11-07 17:54 ` Simon Ser
2023-11-07 17:43 ` [igt-dev] [PATCH i-g-t v1 2/5] drm-uapi/amdgpu: sync " Kamil Konieczny
` (6 subsequent siblings)
7 siblings, 1 reply; 15+ messages in thread
From: Kamil Konieczny @ 2023-11-07 17:43 UTC (permalink / raw)
To: igt-dev; +Cc: Simon Ser, Alex Deucher
Sync with drm-next commit ("f2cab4b318ee8023f4ad640b906ae268942a7db4")
These are documentation updates and two additional formats in
drm_fourcc.h
Cc: Alex Deucher <alexander.deucher@amd.com>
Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
Cc: Bhanuprakash Modem <bhanuprakash.modem@intel.com>
Cc: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Cc: Simon Ser <contact@emersion.fr>
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
include/drm-uapi/drm.h | 20 ++++++++++++++++++++
include/drm-uapi/drm_fourcc.h | 2 ++
include/drm-uapi/drm_mode.h | 16 ++++++++++++++--
3 files changed, 36 insertions(+), 2 deletions(-)
diff --git a/include/drm-uapi/drm.h b/include/drm-uapi/drm.h
index 02540248d..05e996df5 100644
--- a/include/drm-uapi/drm.h
+++ b/include/drm-uapi/drm.h
@@ -1128,6 +1128,26 @@ extern "C" {
#define DRM_IOCTL_MODE_PAGE_FLIP DRM_IOWR(0xB0, struct drm_mode_crtc_page_flip)
#define DRM_IOCTL_MODE_DIRTYFB DRM_IOWR(0xB1, struct drm_mode_fb_dirty_cmd)
+/**
+ * DRM_IOCTL_MODE_CREATE_DUMB - Create a new dumb buffer object.
+ *
+ * KMS dumb buffers provide a very primitive way to allocate a buffer object
+ * suitable for scanout and map it for software rendering. KMS dumb buffers are
+ * not suitable for hardware-accelerated rendering nor video decoding. KMS dumb
+ * buffers are not suitable to be displayed on any other device than the KMS
+ * device where they were allocated from. Also see
+ * :ref:`kms_dumb_buffer_objects`.
+ *
+ * The IOCTL argument is a struct drm_mode_create_dumb.
+ *
+ * User-space is expected to create a KMS dumb buffer via this IOCTL, then add
+ * it as a KMS framebuffer via &DRM_IOCTL_MODE_ADDFB and map it via
+ * &DRM_IOCTL_MODE_MAP_DUMB.
+ *
+ * &DRM_CAP_DUMB_BUFFER indicates whether this IOCTL is supported.
+ * &DRM_CAP_DUMB_PREFERRED_DEPTH and &DRM_CAP_DUMB_PREFER_SHADOW indicate
+ * driver preferences for dumb buffers.
+ */
#define DRM_IOCTL_MODE_CREATE_DUMB DRM_IOWR(0xB2, struct drm_mode_create_dumb)
#define DRM_IOCTL_MODE_MAP_DUMB DRM_IOWR(0xB3, struct drm_mode_map_dumb)
#define DRM_IOCTL_MODE_DESTROY_DUMB DRM_IOWR(0xB4, struct drm_mode_destroy_dumb)
diff --git a/include/drm-uapi/drm_fourcc.h b/include/drm-uapi/drm_fourcc.h
index 6b6235f7a..9b2504802 100644
--- a/include/drm-uapi/drm_fourcc.h
+++ b/include/drm-uapi/drm_fourcc.h
@@ -323,6 +323,8 @@ extern "C" {
* index 1 = Cr:Cb plane, [39:0] Cr1:Cb1:Cr0:Cb0 little endian
*/
#define DRM_FORMAT_NV15 fourcc_code('N', 'V', '1', '5') /* 2x2 subsampled Cr:Cb plane */
+#define DRM_FORMAT_NV20 fourcc_code('N', 'V', '2', '0') /* 2x1 subsampled Cr:Cb plane */
+#define DRM_FORMAT_NV30 fourcc_code('N', 'V', '3', '0') /* non-subsampled Cr:Cb plane */
/*
* 2 plane YCbCr MSB aligned
diff --git a/include/drm-uapi/drm_mode.h b/include/drm-uapi/drm_mode.h
index ea1b639bc..128d09138 100644
--- a/include/drm-uapi/drm_mode.h
+++ b/include/drm-uapi/drm_mode.h
@@ -1032,13 +1032,25 @@ struct drm_mode_crtc_page_flip_target {
__u64 user_data;
};
-/* create a dumb scanout buffer */
+/**
+ * struct drm_mode_create_dumb - Create a KMS dumb buffer for scanout.
+ * @height: buffer height in pixels
+ * @width: buffer width in pixels
+ * @bpp: bits per pixel
+ * @flags: must be zero
+ * @handle: buffer object handle
+ * @pitch: number of bytes between two consecutive lines
+ * @size: size of the whole buffer in bytes
+ *
+ * User-space fills @height, @width, @bpp and @flags. If the IOCTL succeeds,
+ * the kernel fills @handle, @pitch and @size.
+ */
struct drm_mode_create_dumb {
__u32 height;
__u32 width;
__u32 bpp;
__u32 flags;
- /* handle, pitch, size will be returned */
+
__u32 handle;
__u32 pitch;
__u64 size;
--
2.42.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* Re: [igt-dev] [PATCH i-g-t v1 1/5] include/drm-uapi: sync core headers with drm-next
2023-11-07 17:43 ` [igt-dev] [PATCH i-g-t v1 1/5] include/drm-uapi: sync core headers with drm-next Kamil Konieczny
@ 2023-11-07 17:54 ` Simon Ser
2023-11-08 14:00 ` Kamil Konieczny
0 siblings, 1 reply; 15+ messages in thread
From: Simon Ser @ 2023-11-07 17:54 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev, Alex Deucher
Reviewed-by: Simon Ser <contact@emersion.fr>
Note, I will need to sync once again the core DRM headers soon for
CLOSEFB (it's sitting in drm-misc-next at the moment). If you don't have
a real use for this update, maybe better wait for a bit.
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v1 1/5] include/drm-uapi: sync core headers with drm-next
2023-11-07 17:54 ` Simon Ser
@ 2023-11-08 14:00 ` Kamil Konieczny
0 siblings, 0 replies; 15+ messages in thread
From: Kamil Konieczny @ 2023-11-08 14:00 UTC (permalink / raw)
To: Simon Ser; +Cc: igt-dev, Alex Deucher
Hi Simon,
On 2023-11-07 at 17:54:22 +0000, Simon Ser wrote:
> Reviewed-by: Simon Ser <contact@emersion.fr>
>
> Note, I will need to sync once again the core DRM headers soon for
> CLOSEFB (it's sitting in drm-misc-next at the moment). If you don't have
> a real use for this update, maybe better wait for a bit.
I will wait then for core headers, I do not know if there are any
new tests for these fourcc formats. Meanwhile I plan to merge others
with big diff.
Regards,
Kamil
^ permalink raw reply [flat|nested] 15+ messages in thread
* [igt-dev] [PATCH i-g-t v1 2/5] drm-uapi/amdgpu: sync with drm-next
2023-11-07 17:43 [igt-dev] [PATCH i-g-t v1 0/5] drm-uapi: sync with drm-next f2cab4b318ee Kamil Konieczny
2023-11-07 17:43 ` [igt-dev] [PATCH i-g-t v1 1/5] include/drm-uapi: sync core headers with drm-next Kamil Konieczny
@ 2023-11-07 17:43 ` Kamil Konieczny
2023-11-07 18:35 ` vitaly prosyak
2023-11-07 17:43 ` [igt-dev] [PATCH i-g-t v1 3/5] drm-uapi/i915: " Kamil Konieczny
` (5 subsequent siblings)
7 siblings, 1 reply; 15+ messages in thread
From: Kamil Konieczny @ 2023-11-07 17:43 UTC (permalink / raw)
To: igt-dev; +Cc: Alex Deucher
Sync with drm-next commit ("f2cab4b318ee8023f4ad640b906ae268942a7db4")
Cc: Vitaly Prosyak <vitaly.prosyak@amd.com>
Cc: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
include/drm-uapi/amdgpu_drm.h | 50 ++++++++++++++++++++++++++---------
1 file changed, 38 insertions(+), 12 deletions(-)
diff --git a/include/drm-uapi/amdgpu_drm.h b/include/drm-uapi/amdgpu_drm.h
index f44e140ad..ad21c613f 100644
--- a/include/drm-uapi/amdgpu_drm.h
+++ b/include/drm-uapi/amdgpu_drm.h
@@ -94,6 +94,9 @@ extern "C" {
*
* %AMDGPU_GEM_DOMAIN_OA Ordered append, used by 3D or Compute engines
* for appending data.
+ *
+ * %AMDGPU_GEM_DOMAIN_DOORBELL Doorbell. It is an MMIO region for
+ * signalling user mode queues.
*/
#define AMDGPU_GEM_DOMAIN_CPU 0x1
#define AMDGPU_GEM_DOMAIN_GTT 0x2
@@ -101,12 +104,14 @@ extern "C" {
#define AMDGPU_GEM_DOMAIN_GDS 0x8
#define AMDGPU_GEM_DOMAIN_GWS 0x10
#define AMDGPU_GEM_DOMAIN_OA 0x20
+#define AMDGPU_GEM_DOMAIN_DOORBELL 0x40
#define AMDGPU_GEM_DOMAIN_MASK (AMDGPU_GEM_DOMAIN_CPU | \
AMDGPU_GEM_DOMAIN_GTT | \
AMDGPU_GEM_DOMAIN_VRAM | \
AMDGPU_GEM_DOMAIN_GDS | \
AMDGPU_GEM_DOMAIN_GWS | \
- AMDGPU_GEM_DOMAIN_OA)
+ AMDGPU_GEM_DOMAIN_OA | \
+ AMDGPU_GEM_DOMAIN_DOORBELL)
/* Flag that CPU access will be required for the case of VRAM domain */
#define AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED (1 << 0)
@@ -145,7 +150,7 @@ extern "C" {
*/
#define AMDGPU_GEM_CREATE_DISCARDABLE (1 << 12)
/* Flag that BO is shared coherently between multiple devices or CPU threads.
- * May depend on GPU instructions to flush caches explicitly
+ * May depend on GPU instructions to flush caches to system scope explicitly.
*
* This influences the choice of MTYPE in the PTEs on GFXv9 and later GPUs and
* may override the MTYPE selected in AMDGPU_VA_OP_MAP.
@@ -158,6 +163,14 @@ extern "C" {
* may override the MTYPE selected in AMDGPU_VA_OP_MAP.
*/
#define AMDGPU_GEM_CREATE_UNCACHED (1 << 14)
+/* Flag that BO should be coherent across devices when using device-level
+ * atomics. May depend on GPU instructions to flush caches to device scope
+ * explicitly, promoting them to system scope automatically.
+ *
+ * This influences the choice of MTYPE in the PTEs on GFXv9 and later GPUs and
+ * may override the MTYPE selected in AMDGPU_VA_OP_MAP.
+ */
+#define AMDGPU_GEM_CREATE_EXT_COHERENT (1 << 15)
struct drm_amdgpu_gem_create_in {
/** the requested memory size */
@@ -236,9 +249,9 @@ union drm_amdgpu_bo_list {
/* unknown cause */
#define AMDGPU_CTX_UNKNOWN_RESET 3
-/* indicate gpu reset occured after ctx created */
+/* indicate gpu reset occurred after ctx created */
#define AMDGPU_CTX_QUERY2_FLAGS_RESET (1<<0)
-/* indicate vram lost occured after ctx created */
+/* indicate vram lost occurred after ctx created */
#define AMDGPU_CTX_QUERY2_FLAGS_VRAMLOST (1<<1)
/* indicate some job from this context once cause gpu hang */
#define AMDGPU_CTX_QUERY2_FLAGS_GUILTY (1<<2)
@@ -259,13 +272,6 @@ union drm_amdgpu_bo_list {
*/
#define AMDGPU_CTX_PRIORITY_HIGH 512
#define AMDGPU_CTX_PRIORITY_VERY_HIGH 1023
-/* select a stable profiling pstate for perfmon tools */
-#define AMDGPU_CTX_STABLE_PSTATE_FLAGS_MASK 0xf
-#define AMDGPU_CTX_STABLE_PSTATE_NONE 0
-#define AMDGPU_CTX_STABLE_PSTATE_STANDARD 1
-#define AMDGPU_CTX_STABLE_PSTATE_MIN_SCLK 2
-#define AMDGPU_CTX_STABLE_PSTATE_MIN_MCLK 3
-#define AMDGPU_CTX_STABLE_PSTATE_PEAK 4
/* select a stable profiling pstate for perfmon tools */
#define AMDGPU_CTX_STABLE_PSTATE_FLAGS_MASK 0xf
@@ -588,7 +594,8 @@ struct drm_amdgpu_gem_va {
*/
#define AMDGPU_HW_IP_VCN_ENC 7
#define AMDGPU_HW_IP_VCN_JPEG 8
-#define AMDGPU_HW_IP_NUM 9
+#define AMDGPU_HW_IP_VPE 9
+#define AMDGPU_HW_IP_NUM 10
#define AMDGPU_HW_IP_INSTANCE_MAX_COUNT 1
@@ -799,6 +806,8 @@ struct drm_amdgpu_cs_chunk_cp_gfx_shadow {
#define AMDGPU_INFO_FW_MES 0x1a
/* Subquery id: Query IMU firmware version */
#define AMDGPU_INFO_FW_IMU 0x1b
+ /* Subquery id: Query VPE firmware version */
+ #define AMDGPU_INFO_FW_VPE 0x1c
/* number of bytes moved for TTM migration */
#define AMDGPU_INFO_NUM_BYTES_MOVED 0x0f
@@ -897,6 +906,8 @@ struct drm_amdgpu_cs_chunk_cp_gfx_shadow {
#define AMDGPU_INFO_VIDEO_CAPS_ENCODE 1
/* Query the max number of IBs per gang per submission */
#define AMDGPU_INFO_MAX_IBS 0x22
+/* query last page fault info */
+#define AMDGPU_INFO_GPUVM_FAULT 0x23
#define AMDGPU_INFO_MMR_SE_INDEX_SHIFT 0
#define AMDGPU_INFO_MMR_SE_INDEX_MASK 0xff
@@ -1222,6 +1233,20 @@ struct drm_amdgpu_info_video_caps {
struct drm_amdgpu_info_video_codec_info codec_info[AMDGPU_INFO_VIDEO_CAPS_CODEC_IDX_COUNT];
};
+#define AMDGPU_VMHUB_TYPE_MASK 0xff
+#define AMDGPU_VMHUB_TYPE_SHIFT 0
+#define AMDGPU_VMHUB_TYPE_GFX 0
+#define AMDGPU_VMHUB_TYPE_MM0 1
+#define AMDGPU_VMHUB_TYPE_MM1 2
+#define AMDGPU_VMHUB_IDX_MASK 0xff00
+#define AMDGPU_VMHUB_IDX_SHIFT 8
+
+struct drm_amdgpu_info_gpuvm_fault {
+ __u64 addr;
+ __u32 status;
+ __u32 vmhub;
+};
+
/*
* Supported GPU families
*/
@@ -1240,6 +1265,7 @@ struct drm_amdgpu_info_video_caps {
#define AMDGPU_FAMILY_GC_11_0_1 148 /* GC 11.0.1 */
#define AMDGPU_FAMILY_GC_10_3_6 149 /* GC 10.3.6 */
#define AMDGPU_FAMILY_GC_10_3_7 151 /* GC 10.3.7 */
+#define AMDGPU_FAMILY_GC_11_5_0 150 /* GC 11.5.0 */
#if defined(__cplusplus)
}
--
2.42.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* Re: [igt-dev] [PATCH i-g-t v1 2/5] drm-uapi/amdgpu: sync with drm-next
2023-11-07 17:43 ` [igt-dev] [PATCH i-g-t v1 2/5] drm-uapi/amdgpu: sync " Kamil Konieczny
@ 2023-11-07 18:35 ` vitaly prosyak
0 siblings, 0 replies; 15+ messages in thread
From: vitaly prosyak @ 2023-11-07 18:35 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev; +Cc: Alex Deucher
Thanks Kamil.
Reviewed-by: Vitaly Prosyak <vitaly.prosyak@amd.com>
Vitaly
On 2023-11-07 12:43, Kamil Konieczny wrote:
> Sync with drm-next commit ("f2cab4b318ee8023f4ad640b906ae268942a7db4")
>
> Cc: Vitaly Prosyak <vitaly.prosyak@amd.com>
> Cc: Alex Deucher <alexander.deucher@amd.com>
> Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> include/drm-uapi/amdgpu_drm.h | 50 ++++++++++++++++++++++++++---------
> 1 file changed, 38 insertions(+), 12 deletions(-)
>
> diff --git a/include/drm-uapi/amdgpu_drm.h b/include/drm-uapi/amdgpu_drm.h
> index f44e140ad..ad21c613f 100644
> --- a/include/drm-uapi/amdgpu_drm.h
> +++ b/include/drm-uapi/amdgpu_drm.h
> @@ -94,6 +94,9 @@ extern "C" {
> *
> * %AMDGPU_GEM_DOMAIN_OA Ordered append, used by 3D or Compute engines
> * for appending data.
> + *
> + * %AMDGPU_GEM_DOMAIN_DOORBELL Doorbell. It is an MMIO region for
> + * signalling user mode queues.
> */
> #define AMDGPU_GEM_DOMAIN_CPU 0x1
> #define AMDGPU_GEM_DOMAIN_GTT 0x2
> @@ -101,12 +104,14 @@ extern "C" {
> #define AMDGPU_GEM_DOMAIN_GDS 0x8
> #define AMDGPU_GEM_DOMAIN_GWS 0x10
> #define AMDGPU_GEM_DOMAIN_OA 0x20
> +#define AMDGPU_GEM_DOMAIN_DOORBELL 0x40
> #define AMDGPU_GEM_DOMAIN_MASK (AMDGPU_GEM_DOMAIN_CPU | \
> AMDGPU_GEM_DOMAIN_GTT | \
> AMDGPU_GEM_DOMAIN_VRAM | \
> AMDGPU_GEM_DOMAIN_GDS | \
> AMDGPU_GEM_DOMAIN_GWS | \
> - AMDGPU_GEM_DOMAIN_OA)
> + AMDGPU_GEM_DOMAIN_OA | \
> + AMDGPU_GEM_DOMAIN_DOORBELL)
>
> /* Flag that CPU access will be required for the case of VRAM domain */
> #define AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED (1 << 0)
> @@ -145,7 +150,7 @@ extern "C" {
> */
> #define AMDGPU_GEM_CREATE_DISCARDABLE (1 << 12)
> /* Flag that BO is shared coherently between multiple devices or CPU threads.
> - * May depend on GPU instructions to flush caches explicitly
> + * May depend on GPU instructions to flush caches to system scope explicitly.
> *
> * This influences the choice of MTYPE in the PTEs on GFXv9 and later GPUs and
> * may override the MTYPE selected in AMDGPU_VA_OP_MAP.
> @@ -158,6 +163,14 @@ extern "C" {
> * may override the MTYPE selected in AMDGPU_VA_OP_MAP.
> */
> #define AMDGPU_GEM_CREATE_UNCACHED (1 << 14)
> +/* Flag that BO should be coherent across devices when using device-level
> + * atomics. May depend on GPU instructions to flush caches to device scope
> + * explicitly, promoting them to system scope automatically.
> + *
> + * This influences the choice of MTYPE in the PTEs on GFXv9 and later GPUs and
> + * may override the MTYPE selected in AMDGPU_VA_OP_MAP.
> + */
> +#define AMDGPU_GEM_CREATE_EXT_COHERENT (1 << 15)
>
> struct drm_amdgpu_gem_create_in {
> /** the requested memory size */
> @@ -236,9 +249,9 @@ union drm_amdgpu_bo_list {
> /* unknown cause */
> #define AMDGPU_CTX_UNKNOWN_RESET 3
>
> -/* indicate gpu reset occured after ctx created */
> +/* indicate gpu reset occurred after ctx created */
> #define AMDGPU_CTX_QUERY2_FLAGS_RESET (1<<0)
> -/* indicate vram lost occured after ctx created */
> +/* indicate vram lost occurred after ctx created */
> #define AMDGPU_CTX_QUERY2_FLAGS_VRAMLOST (1<<1)
> /* indicate some job from this context once cause gpu hang */
> #define AMDGPU_CTX_QUERY2_FLAGS_GUILTY (1<<2)
> @@ -259,13 +272,6 @@ union drm_amdgpu_bo_list {
> */
> #define AMDGPU_CTX_PRIORITY_HIGH 512
> #define AMDGPU_CTX_PRIORITY_VERY_HIGH 1023
> -/* select a stable profiling pstate for perfmon tools */
> -#define AMDGPU_CTX_STABLE_PSTATE_FLAGS_MASK 0xf
> -#define AMDGPU_CTX_STABLE_PSTATE_NONE 0
> -#define AMDGPU_CTX_STABLE_PSTATE_STANDARD 1
> -#define AMDGPU_CTX_STABLE_PSTATE_MIN_SCLK 2
> -#define AMDGPU_CTX_STABLE_PSTATE_MIN_MCLK 3
> -#define AMDGPU_CTX_STABLE_PSTATE_PEAK 4
>
> /* select a stable profiling pstate for perfmon tools */
> #define AMDGPU_CTX_STABLE_PSTATE_FLAGS_MASK 0xf
> @@ -588,7 +594,8 @@ struct drm_amdgpu_gem_va {
> */
> #define AMDGPU_HW_IP_VCN_ENC 7
> #define AMDGPU_HW_IP_VCN_JPEG 8
> -#define AMDGPU_HW_IP_NUM 9
> +#define AMDGPU_HW_IP_VPE 9
> +#define AMDGPU_HW_IP_NUM 10
>
> #define AMDGPU_HW_IP_INSTANCE_MAX_COUNT 1
>
> @@ -799,6 +806,8 @@ struct drm_amdgpu_cs_chunk_cp_gfx_shadow {
> #define AMDGPU_INFO_FW_MES 0x1a
> /* Subquery id: Query IMU firmware version */
> #define AMDGPU_INFO_FW_IMU 0x1b
> + /* Subquery id: Query VPE firmware version */
> + #define AMDGPU_INFO_FW_VPE 0x1c
>
> /* number of bytes moved for TTM migration */
> #define AMDGPU_INFO_NUM_BYTES_MOVED 0x0f
> @@ -897,6 +906,8 @@ struct drm_amdgpu_cs_chunk_cp_gfx_shadow {
> #define AMDGPU_INFO_VIDEO_CAPS_ENCODE 1
> /* Query the max number of IBs per gang per submission */
> #define AMDGPU_INFO_MAX_IBS 0x22
> +/* query last page fault info */
> +#define AMDGPU_INFO_GPUVM_FAULT 0x23
>
> #define AMDGPU_INFO_MMR_SE_INDEX_SHIFT 0
> #define AMDGPU_INFO_MMR_SE_INDEX_MASK 0xff
> @@ -1222,6 +1233,20 @@ struct drm_amdgpu_info_video_caps {
> struct drm_amdgpu_info_video_codec_info codec_info[AMDGPU_INFO_VIDEO_CAPS_CODEC_IDX_COUNT];
> };
>
> +#define AMDGPU_VMHUB_TYPE_MASK 0xff
> +#define AMDGPU_VMHUB_TYPE_SHIFT 0
> +#define AMDGPU_VMHUB_TYPE_GFX 0
> +#define AMDGPU_VMHUB_TYPE_MM0 1
> +#define AMDGPU_VMHUB_TYPE_MM1 2
> +#define AMDGPU_VMHUB_IDX_MASK 0xff00
> +#define AMDGPU_VMHUB_IDX_SHIFT 8
> +
> +struct drm_amdgpu_info_gpuvm_fault {
> + __u64 addr;
> + __u32 status;
> + __u32 vmhub;
> +};
> +
> /*
> * Supported GPU families
> */
> @@ -1240,6 +1265,7 @@ struct drm_amdgpu_info_video_caps {
> #define AMDGPU_FAMILY_GC_11_0_1 148 /* GC 11.0.1 */
> #define AMDGPU_FAMILY_GC_10_3_6 149 /* GC 10.3.6 */
> #define AMDGPU_FAMILY_GC_10_3_7 151 /* GC 10.3.7 */
> +#define AMDGPU_FAMILY_GC_11_5_0 150 /* GC 11.5.0 */
>
> #if defined(__cplusplus)
> }
^ permalink raw reply [flat|nested] 15+ messages in thread
* [igt-dev] [PATCH i-g-t v1 3/5] drm-uapi/i915: sync with drm-next
2023-11-07 17:43 [igt-dev] [PATCH i-g-t v1 0/5] drm-uapi: sync with drm-next f2cab4b318ee Kamil Konieczny
2023-11-07 17:43 ` [igt-dev] [PATCH i-g-t v1 1/5] include/drm-uapi: sync core headers with drm-next Kamil Konieczny
2023-11-07 17:43 ` [igt-dev] [PATCH i-g-t v1 2/5] drm-uapi/amdgpu: sync " Kamil Konieczny
@ 2023-11-07 17:43 ` Kamil Konieczny
2023-11-09 6:34 ` Kumar, Janga Rahul
2023-11-07 17:43 ` [igt-dev] [PATCH i-g-t v1 4/5] drm-uapi/nouveau: " Kamil Konieczny
` (4 subsequent siblings)
7 siblings, 1 reply; 15+ messages in thread
From: Kamil Konieczny @ 2023-11-07 17:43 UTC (permalink / raw)
To: igt-dev
Sync with drm-next commit ("f2cab4b318ee8023f4ad640b906ae268942a7db4")
This is documentation cleanup.
Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
Cc: Janga Rahul Kumar<janga.rahul.kumar@intel.com>
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
include/drm-uapi/i915_drm.h | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/include/drm-uapi/i915_drm.h b/include/drm-uapi/i915_drm.h
index 0a5c81445..ce9fa2812 100644
--- a/include/drm-uapi/i915_drm.h
+++ b/include/drm-uapi/i915_drm.h
@@ -38,13 +38,13 @@ extern "C" {
*/
/**
- * DOC: uevents generated by i915 on it's device node
+ * DOC: uevents generated by i915 on its device node
*
* I915_L3_PARITY_UEVENT - Generated when the driver receives a parity mismatch
- * event from the gpu l3 cache. Additional information supplied is ROW,
+ * event from the GPU L3 cache. Additional information supplied is ROW,
* BANK, SUBBANK, SLICE of the affected cacheline. Userspace should keep
- * track of these events and if a specific cache-line seems to have a
- * persistent error remap it with the l3 remapping tool supplied in
+ * track of these events, and if a specific cache-line seems to have a
+ * persistent error, remap it with the L3 remapping tool supplied in
* intel-gpu-tools. The value supplied with the event is always 1.
*
* I915_ERROR_UEVENT - Generated upon error detection, currently only via
--
2.42.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* Re: [igt-dev] [PATCH i-g-t v1 3/5] drm-uapi/i915: sync with drm-next
2023-11-07 17:43 ` [igt-dev] [PATCH i-g-t v1 3/5] drm-uapi/i915: " Kamil Konieczny
@ 2023-11-09 6:34 ` Kumar, Janga Rahul
0 siblings, 0 replies; 15+ messages in thread
From: Kumar, Janga Rahul @ 2023-11-09 6:34 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev@lists.freedesktop.org
> -----Original Message-----
> From: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> Sent: Tuesday, November 7, 2023 11:14 PM
> To: igt-dev@lists.freedesktop.org
> Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>; Dixit, Ashutosh
> <ashutosh.dixit@intel.com>; Kumar, Janga Rahul
> <janga.rahul.kumar@intel.com>
> Subject: [PATCH i-g-t v1 3/5] drm-uapi/i915: sync with drm-next
>
> Sync with drm-next commit
> ("f2cab4b318ee8023f4ad640b906ae268942a7db4")
Needs to change commit msg. below changes are done in the commit 33eaede07ad20eda75f11b538faa320b4be90a48
which is merged post the above commit.
Rest looks good to me.
Reviewed-by: Janga Rahul Kumar<janga.rahul.kumar@intel.com>
-Rahul
>
> This is documentation cleanup.
>
> Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
> Cc: Janga Rahul Kumar<janga.rahul.kumar@intel.com>
> Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> include/drm-uapi/i915_drm.h | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/include/drm-uapi/i915_drm.h b/include/drm-uapi/i915_drm.h
> index 0a5c81445..ce9fa2812 100644
> --- a/include/drm-uapi/i915_drm.h
> +++ b/include/drm-uapi/i915_drm.h
> @@ -38,13 +38,13 @@ extern "C" {
> */
>
> /**
> - * DOC: uevents generated by i915 on it's device node
> + * DOC: uevents generated by i915 on its device node
> *
> * I915_L3_PARITY_UEVENT - Generated when the driver receives a parity
> mismatch
> - * event from the gpu l3 cache. Additional information supplied is
> ROW,
> + * event from the GPU L3 cache. Additional information supplied is
> ROW,
> * BANK, SUBBANK, SLICE of the affected cacheline. Userspace should
> keep
> - * track of these events and if a specific cache-line seems to have a
> - * persistent error remap it with the l3 remapping tool supplied in
> + * track of these events, and if a specific cache-line seems to have a
> + * persistent error, remap it with the L3 remapping tool supplied in
> * intel-gpu-tools. The value supplied with the event is always 1.
> *
> * I915_ERROR_UEVENT - Generated upon error detection, currently only via
> --
> 2.42.0
^ permalink raw reply [flat|nested] 15+ messages in thread
* [igt-dev] [PATCH i-g-t v1 4/5] drm-uapi/nouveau: sync with drm-next
2023-11-07 17:43 [igt-dev] [PATCH i-g-t v1 0/5] drm-uapi: sync with drm-next f2cab4b318ee Kamil Konieczny
` (2 preceding siblings ...)
2023-11-07 17:43 ` [igt-dev] [PATCH i-g-t v1 3/5] drm-uapi/i915: " Kamil Konieczny
@ 2023-11-07 17:43 ` Kamil Konieczny
2023-11-08 20:41 ` Lyude Paul
2023-11-07 17:43 ` [igt-dev] [PATCH i-g-t v1 5/5] drm-uapi/virtgpu: " Kamil Konieczny
` (3 subsequent siblings)
7 siblings, 1 reply; 15+ messages in thread
From: Kamil Konieczny @ 2023-11-07 17:43 UTC (permalink / raw)
To: igt-dev
Sync with drm-next commit ("f2cab4b318ee8023f4ad640b906ae268942a7db4")
Cc: Lyude Paul <lyude@redhat.com>
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
include/drm-uapi/nouveau_drm.h | 281 ++++++++++++++++++++++++++++++++-
1 file changed, 278 insertions(+), 3 deletions(-)
diff --git a/include/drm-uapi/nouveau_drm.h b/include/drm-uapi/nouveau_drm.h
index 853a32743..0bade1592 100644
--- a/include/drm-uapi/nouveau_drm.h
+++ b/include/drm-uapi/nouveau_drm.h
@@ -33,11 +33,61 @@
extern "C" {
#endif
+#define NOUVEAU_GETPARAM_PCI_VENDOR 3
+#define NOUVEAU_GETPARAM_PCI_DEVICE 4
+#define NOUVEAU_GETPARAM_BUS_TYPE 5
+#define NOUVEAU_GETPARAM_FB_SIZE 8
+#define NOUVEAU_GETPARAM_AGP_SIZE 9
+#define NOUVEAU_GETPARAM_CHIPSET_ID 11
+#define NOUVEAU_GETPARAM_VM_VRAM_BASE 12
+#define NOUVEAU_GETPARAM_GRAPH_UNITS 13
+#define NOUVEAU_GETPARAM_PTIMER_TIME 14
+#define NOUVEAU_GETPARAM_HAS_BO_USAGE 15
+#define NOUVEAU_GETPARAM_HAS_PAGEFLIP 16
+
+/*
+ * NOUVEAU_GETPARAM_EXEC_PUSH_MAX - query max pushes through getparam
+ *
+ * Query the maximum amount of IBs that can be pushed through a single
+ * &drm_nouveau_exec structure and hence a single &DRM_IOCTL_NOUVEAU_EXEC
+ * ioctl().
+ */
+#define NOUVEAU_GETPARAM_EXEC_PUSH_MAX 17
+
+struct drm_nouveau_getparam {
+ __u64 param;
+ __u64 value;
+};
+
+struct drm_nouveau_channel_alloc {
+ __u32 fb_ctxdma_handle;
+ __u32 tt_ctxdma_handle;
+
+ __s32 channel;
+ __u32 pushbuf_domains;
+
+ /* Notifier memory */
+ __u32 notifier_handle;
+
+ /* DRM-enforced subchannel assignments */
+ struct {
+ __u32 handle;
+ __u32 grclass;
+ } subchan[8];
+ __u32 nr_subchan;
+};
+
+struct drm_nouveau_channel_free {
+ __s32 channel;
+};
+
#define NOUVEAU_GEM_DOMAIN_CPU (1 << 0)
#define NOUVEAU_GEM_DOMAIN_VRAM (1 << 1)
#define NOUVEAU_GEM_DOMAIN_GART (1 << 2)
#define NOUVEAU_GEM_DOMAIN_MAPPABLE (1 << 3)
#define NOUVEAU_GEM_DOMAIN_COHERENT (1 << 4)
+/* The BO will never be shared via import or export. */
+#define NOUVEAU_GEM_DOMAIN_NO_SHARE (1 << 5)
#define NOUVEAU_GEM_TILE_COMP 0x00030000 /* nv50-only */
#define NOUVEAU_GEM_TILE_LAYOUT_MASK 0x0000ff00
@@ -98,6 +148,7 @@ struct drm_nouveau_gem_pushbuf_push {
__u32 pad;
__u64 offset;
__u64 length;
+#define NOUVEAU_GEM_PUSHBUF_NO_PREFETCH (1 << 23)
};
struct drm_nouveau_gem_pushbuf {
@@ -126,16 +177,233 @@ struct drm_nouveau_gem_cpu_fini {
__u32 handle;
};
-#define DRM_NOUVEAU_GETPARAM 0x00 /* deprecated */
+/**
+ * struct drm_nouveau_sync - sync object
+ *
+ * This structure serves as synchronization mechanism for (potentially)
+ * asynchronous operations such as EXEC or VM_BIND.
+ */
+struct drm_nouveau_sync {
+ /**
+ * @flags: the flags for a sync object
+ *
+ * The first 8 bits are used to determine the type of the sync object.
+ */
+ __u32 flags;
+#define DRM_NOUVEAU_SYNC_SYNCOBJ 0x0
+#define DRM_NOUVEAU_SYNC_TIMELINE_SYNCOBJ 0x1
+#define DRM_NOUVEAU_SYNC_TYPE_MASK 0xf
+ /**
+ * @handle: the handle of the sync object
+ */
+ __u32 handle;
+ /**
+ * @timeline_value:
+ *
+ * The timeline point of the sync object in case the syncobj is of
+ * type DRM_NOUVEAU_SYNC_TIMELINE_SYNCOBJ.
+ */
+ __u64 timeline_value;
+};
+
+/**
+ * struct drm_nouveau_vm_init - GPU VA space init structure
+ *
+ * Used to initialize the GPU's VA space for a user client, telling the kernel
+ * which portion of the VA space is managed by the UMD and kernel respectively.
+ *
+ * For the UMD to use the VM_BIND uAPI, this must be called before any BOs or
+ * channels are created; if called afterwards DRM_IOCTL_NOUVEAU_VM_INIT fails
+ * with -ENOSYS.
+ */
+struct drm_nouveau_vm_init {
+ /**
+ * @kernel_managed_addr: start address of the kernel managed VA space
+ * region
+ */
+ __u64 kernel_managed_addr;
+ /**
+ * @kernel_managed_size: size of the kernel managed VA space region in
+ * bytes
+ */
+ __u64 kernel_managed_size;
+};
+
+/**
+ * struct drm_nouveau_vm_bind_op - VM_BIND operation
+ *
+ * This structure represents a single VM_BIND operation. UMDs should pass
+ * an array of this structure via struct drm_nouveau_vm_bind's &op_ptr field.
+ */
+struct drm_nouveau_vm_bind_op {
+ /**
+ * @op: the operation type
+ */
+ __u32 op;
+/**
+ * @DRM_NOUVEAU_VM_BIND_OP_MAP:
+ *
+ * Map a GEM object to the GPU's VA space. Optionally, the
+ * &DRM_NOUVEAU_VM_BIND_SPARSE flag can be passed to instruct the kernel to
+ * create sparse mappings for the given range.
+ */
+#define DRM_NOUVEAU_VM_BIND_OP_MAP 0x0
+/**
+ * @DRM_NOUVEAU_VM_BIND_OP_UNMAP:
+ *
+ * Unmap an existing mapping in the GPU's VA space. If the region the mapping
+ * is located in is a sparse region, new sparse mappings are created where the
+ * unmapped (memory backed) mapping was mapped previously. To remove a sparse
+ * region the &DRM_NOUVEAU_VM_BIND_SPARSE must be set.
+ */
+#define DRM_NOUVEAU_VM_BIND_OP_UNMAP 0x1
+ /**
+ * @flags: the flags for a &drm_nouveau_vm_bind_op
+ */
+ __u32 flags;
+/**
+ * @DRM_NOUVEAU_VM_BIND_SPARSE:
+ *
+ * Indicates that an allocated VA space region should be sparse.
+ */
+#define DRM_NOUVEAU_VM_BIND_SPARSE (1 << 8)
+ /**
+ * @handle: the handle of the DRM GEM object to map
+ */
+ __u32 handle;
+ /**
+ * @pad: 32 bit padding, should be 0
+ */
+ __u32 pad;
+ /**
+ * @addr:
+ *
+ * the address the VA space region or (memory backed) mapping should be mapped to
+ */
+ __u64 addr;
+ /**
+ * @bo_offset: the offset within the BO backing the mapping
+ */
+ __u64 bo_offset;
+ /**
+ * @range: the size of the requested mapping in bytes
+ */
+ __u64 range;
+};
+
+/**
+ * struct drm_nouveau_vm_bind - structure for DRM_IOCTL_NOUVEAU_VM_BIND
+ */
+struct drm_nouveau_vm_bind {
+ /**
+ * @op_count: the number of &drm_nouveau_vm_bind_op
+ */
+ __u32 op_count;
+ /**
+ * @flags: the flags for a &drm_nouveau_vm_bind ioctl
+ */
+ __u32 flags;
+/**
+ * @DRM_NOUVEAU_VM_BIND_RUN_ASYNC:
+ *
+ * Indicates that the given VM_BIND operation should be executed asynchronously
+ * by the kernel.
+ *
+ * If this flag is not supplied the kernel executes the associated operations
+ * synchronously and doesn't accept any &drm_nouveau_sync objects.
+ */
+#define DRM_NOUVEAU_VM_BIND_RUN_ASYNC 0x1
+ /**
+ * @wait_count: the number of wait &drm_nouveau_syncs
+ */
+ __u32 wait_count;
+ /**
+ * @sig_count: the number of &drm_nouveau_syncs to signal when finished
+ */
+ __u32 sig_count;
+ /**
+ * @wait_ptr: pointer to &drm_nouveau_syncs to wait for
+ */
+ __u64 wait_ptr;
+ /**
+ * @sig_ptr: pointer to &drm_nouveau_syncs to signal when finished
+ */
+ __u64 sig_ptr;
+ /**
+ * @op_ptr: pointer to the &drm_nouveau_vm_bind_ops to execute
+ */
+ __u64 op_ptr;
+};
+
+/**
+ * struct drm_nouveau_exec_push - EXEC push operation
+ *
+ * This structure represents a single EXEC push operation. UMDs should pass an
+ * array of this structure via struct drm_nouveau_exec's &push_ptr field.
+ */
+struct drm_nouveau_exec_push {
+ /**
+ * @va: the virtual address of the push buffer mapping
+ */
+ __u64 va;
+ /**
+ * @va_len: the length of the push buffer mapping
+ */
+ __u32 va_len;
+ /**
+ * @flags: the flags for this push buffer mapping
+ */
+ __u32 flags;
+#define DRM_NOUVEAU_EXEC_PUSH_NO_PREFETCH 0x1
+};
+
+/**
+ * struct drm_nouveau_exec - structure for DRM_IOCTL_NOUVEAU_EXEC
+ */
+struct drm_nouveau_exec {
+ /**
+ * @channel: the channel to execute the push buffer in
+ */
+ __u32 channel;
+ /**
+ * @push_count: the number of &drm_nouveau_exec_push ops
+ */
+ __u32 push_count;
+ /**
+ * @wait_count: the number of wait &drm_nouveau_syncs
+ */
+ __u32 wait_count;
+ /**
+ * @sig_count: the number of &drm_nouveau_syncs to signal when finished
+ */
+ __u32 sig_count;
+ /**
+ * @wait_ptr: pointer to &drm_nouveau_syncs to wait for
+ */
+ __u64 wait_ptr;
+ /**
+ * @sig_ptr: pointer to &drm_nouveau_syncs to signal when finished
+ */
+ __u64 sig_ptr;
+ /**
+ * @push_ptr: pointer to &drm_nouveau_exec_push ops
+ */
+ __u64 push_ptr;
+};
+
+#define DRM_NOUVEAU_GETPARAM 0x00
#define DRM_NOUVEAU_SETPARAM 0x01 /* deprecated */
-#define DRM_NOUVEAU_CHANNEL_ALLOC 0x02 /* deprecated */
-#define DRM_NOUVEAU_CHANNEL_FREE 0x03 /* deprecated */
+#define DRM_NOUVEAU_CHANNEL_ALLOC 0x02
+#define DRM_NOUVEAU_CHANNEL_FREE 0x03
#define DRM_NOUVEAU_GROBJ_ALLOC 0x04 /* deprecated */
#define DRM_NOUVEAU_NOTIFIEROBJ_ALLOC 0x05 /* deprecated */
#define DRM_NOUVEAU_GPUOBJ_FREE 0x06 /* deprecated */
#define DRM_NOUVEAU_NVIF 0x07
#define DRM_NOUVEAU_SVM_INIT 0x08
#define DRM_NOUVEAU_SVM_BIND 0x09
+#define DRM_NOUVEAU_VM_INIT 0x10
+#define DRM_NOUVEAU_VM_BIND 0x11
+#define DRM_NOUVEAU_EXEC 0x12
#define DRM_NOUVEAU_GEM_NEW 0x40
#define DRM_NOUVEAU_GEM_PUSHBUF 0x41
#define DRM_NOUVEAU_GEM_CPU_PREP 0x42
@@ -188,6 +456,10 @@ struct drm_nouveau_svm_bind {
#define NOUVEAU_SVM_BIND_TARGET__GPU_VRAM (1UL << 31)
+#define DRM_IOCTL_NOUVEAU_GETPARAM DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_GETPARAM, struct drm_nouveau_getparam)
+#define DRM_IOCTL_NOUVEAU_CHANNEL_ALLOC DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_CHANNEL_ALLOC, struct drm_nouveau_channel_alloc)
+#define DRM_IOCTL_NOUVEAU_CHANNEL_FREE DRM_IOW (DRM_COMMAND_BASE + DRM_NOUVEAU_CHANNEL_FREE, struct drm_nouveau_channel_free)
+
#define DRM_IOCTL_NOUVEAU_SVM_INIT DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_SVM_INIT, struct drm_nouveau_svm_init)
#define DRM_IOCTL_NOUVEAU_SVM_BIND DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_SVM_BIND, struct drm_nouveau_svm_bind)
@@ -197,6 +469,9 @@ struct drm_nouveau_svm_bind {
#define DRM_IOCTL_NOUVEAU_GEM_CPU_FINI DRM_IOW (DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_CPU_FINI, struct drm_nouveau_gem_cpu_fini)
#define DRM_IOCTL_NOUVEAU_GEM_INFO DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_INFO, struct drm_nouveau_gem_info)
+#define DRM_IOCTL_NOUVEAU_VM_INIT DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_VM_INIT, struct drm_nouveau_vm_init)
+#define DRM_IOCTL_NOUVEAU_VM_BIND DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_VM_BIND, struct drm_nouveau_vm_bind)
+#define DRM_IOCTL_NOUVEAU_EXEC DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_EXEC, struct drm_nouveau_exec)
#if defined(__cplusplus)
}
#endif
--
2.42.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* Re: [igt-dev] [PATCH i-g-t v1 4/5] drm-uapi/nouveau: sync with drm-next
2023-11-07 17:43 ` [igt-dev] [PATCH i-g-t v1 4/5] drm-uapi/nouveau: " Kamil Konieczny
@ 2023-11-08 20:41 ` Lyude Paul
0 siblings, 0 replies; 15+ messages in thread
From: Lyude Paul @ 2023-11-08 20:41 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev
Reviewed-by: Lyude Paul <lyude@redhat.com>
On Tue, 2023-11-07 at 18:43 +0100, Kamil Konieczny wrote:
> Sync with drm-next commit ("f2cab4b318ee8023f4ad640b906ae268942a7db4")
>
> Cc: Lyude Paul <lyude@redhat.com>
> Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> include/drm-uapi/nouveau_drm.h | 281 ++++++++++++++++++++++++++++++++-
> 1 file changed, 278 insertions(+), 3 deletions(-)
>
> diff --git a/include/drm-uapi/nouveau_drm.h b/include/drm-uapi/nouveau_drm.h
> index 853a32743..0bade1592 100644
> --- a/include/drm-uapi/nouveau_drm.h
> +++ b/include/drm-uapi/nouveau_drm.h
> @@ -33,11 +33,61 @@
> extern "C" {
> #endif
>
> +#define NOUVEAU_GETPARAM_PCI_VENDOR 3
> +#define NOUVEAU_GETPARAM_PCI_DEVICE 4
> +#define NOUVEAU_GETPARAM_BUS_TYPE 5
> +#define NOUVEAU_GETPARAM_FB_SIZE 8
> +#define NOUVEAU_GETPARAM_AGP_SIZE 9
> +#define NOUVEAU_GETPARAM_CHIPSET_ID 11
> +#define NOUVEAU_GETPARAM_VM_VRAM_BASE 12
> +#define NOUVEAU_GETPARAM_GRAPH_UNITS 13
> +#define NOUVEAU_GETPARAM_PTIMER_TIME 14
> +#define NOUVEAU_GETPARAM_HAS_BO_USAGE 15
> +#define NOUVEAU_GETPARAM_HAS_PAGEFLIP 16
> +
> +/*
> + * NOUVEAU_GETPARAM_EXEC_PUSH_MAX - query max pushes through getparam
> + *
> + * Query the maximum amount of IBs that can be pushed through a single
> + * &drm_nouveau_exec structure and hence a single &DRM_IOCTL_NOUVEAU_EXEC
> + * ioctl().
> + */
> +#define NOUVEAU_GETPARAM_EXEC_PUSH_MAX 17
> +
> +struct drm_nouveau_getparam {
> + __u64 param;
> + __u64 value;
> +};
> +
> +struct drm_nouveau_channel_alloc {
> + __u32 fb_ctxdma_handle;
> + __u32 tt_ctxdma_handle;
> +
> + __s32 channel;
> + __u32 pushbuf_domains;
> +
> + /* Notifier memory */
> + __u32 notifier_handle;
> +
> + /* DRM-enforced subchannel assignments */
> + struct {
> + __u32 handle;
> + __u32 grclass;
> + } subchan[8];
> + __u32 nr_subchan;
> +};
> +
> +struct drm_nouveau_channel_free {
> + __s32 channel;
> +};
> +
> #define NOUVEAU_GEM_DOMAIN_CPU (1 << 0)
> #define NOUVEAU_GEM_DOMAIN_VRAM (1 << 1)
> #define NOUVEAU_GEM_DOMAIN_GART (1 << 2)
> #define NOUVEAU_GEM_DOMAIN_MAPPABLE (1 << 3)
> #define NOUVEAU_GEM_DOMAIN_COHERENT (1 << 4)
> +/* The BO will never be shared via import or export. */
> +#define NOUVEAU_GEM_DOMAIN_NO_SHARE (1 << 5)
>
> #define NOUVEAU_GEM_TILE_COMP 0x00030000 /* nv50-only */
> #define NOUVEAU_GEM_TILE_LAYOUT_MASK 0x0000ff00
> @@ -98,6 +148,7 @@ struct drm_nouveau_gem_pushbuf_push {
> __u32 pad;
> __u64 offset;
> __u64 length;
> +#define NOUVEAU_GEM_PUSHBUF_NO_PREFETCH (1 << 23)
> };
>
> struct drm_nouveau_gem_pushbuf {
> @@ -126,16 +177,233 @@ struct drm_nouveau_gem_cpu_fini {
> __u32 handle;
> };
>
> -#define DRM_NOUVEAU_GETPARAM 0x00 /* deprecated */
> +/**
> + * struct drm_nouveau_sync - sync object
> + *
> + * This structure serves as synchronization mechanism for (potentially)
> + * asynchronous operations such as EXEC or VM_BIND.
> + */
> +struct drm_nouveau_sync {
> + /**
> + * @flags: the flags for a sync object
> + *
> + * The first 8 bits are used to determine the type of the sync object.
> + */
> + __u32 flags;
> +#define DRM_NOUVEAU_SYNC_SYNCOBJ 0x0
> +#define DRM_NOUVEAU_SYNC_TIMELINE_SYNCOBJ 0x1
> +#define DRM_NOUVEAU_SYNC_TYPE_MASK 0xf
> + /**
> + * @handle: the handle of the sync object
> + */
> + __u32 handle;
> + /**
> + * @timeline_value:
> + *
> + * The timeline point of the sync object in case the syncobj is of
> + * type DRM_NOUVEAU_SYNC_TIMELINE_SYNCOBJ.
> + */
> + __u64 timeline_value;
> +};
> +
> +/**
> + * struct drm_nouveau_vm_init - GPU VA space init structure
> + *
> + * Used to initialize the GPU's VA space for a user client, telling the kernel
> + * which portion of the VA space is managed by the UMD and kernel respectively.
> + *
> + * For the UMD to use the VM_BIND uAPI, this must be called before any BOs or
> + * channels are created; if called afterwards DRM_IOCTL_NOUVEAU_VM_INIT fails
> + * with -ENOSYS.
> + */
> +struct drm_nouveau_vm_init {
> + /**
> + * @kernel_managed_addr: start address of the kernel managed VA space
> + * region
> + */
> + __u64 kernel_managed_addr;
> + /**
> + * @kernel_managed_size: size of the kernel managed VA space region in
> + * bytes
> + */
> + __u64 kernel_managed_size;
> +};
> +
> +/**
> + * struct drm_nouveau_vm_bind_op - VM_BIND operation
> + *
> + * This structure represents a single VM_BIND operation. UMDs should pass
> + * an array of this structure via struct drm_nouveau_vm_bind's &op_ptr field.
> + */
> +struct drm_nouveau_vm_bind_op {
> + /**
> + * @op: the operation type
> + */
> + __u32 op;
> +/**
> + * @DRM_NOUVEAU_VM_BIND_OP_MAP:
> + *
> + * Map a GEM object to the GPU's VA space. Optionally, the
> + * &DRM_NOUVEAU_VM_BIND_SPARSE flag can be passed to instruct the kernel to
> + * create sparse mappings for the given range.
> + */
> +#define DRM_NOUVEAU_VM_BIND_OP_MAP 0x0
> +/**
> + * @DRM_NOUVEAU_VM_BIND_OP_UNMAP:
> + *
> + * Unmap an existing mapping in the GPU's VA space. If the region the mapping
> + * is located in is a sparse region, new sparse mappings are created where the
> + * unmapped (memory backed) mapping was mapped previously. To remove a sparse
> + * region the &DRM_NOUVEAU_VM_BIND_SPARSE must be set.
> + */
> +#define DRM_NOUVEAU_VM_BIND_OP_UNMAP 0x1
> + /**
> + * @flags: the flags for a &drm_nouveau_vm_bind_op
> + */
> + __u32 flags;
> +/**
> + * @DRM_NOUVEAU_VM_BIND_SPARSE:
> + *
> + * Indicates that an allocated VA space region should be sparse.
> + */
> +#define DRM_NOUVEAU_VM_BIND_SPARSE (1 << 8)
> + /**
> + * @handle: the handle of the DRM GEM object to map
> + */
> + __u32 handle;
> + /**
> + * @pad: 32 bit padding, should be 0
> + */
> + __u32 pad;
> + /**
> + * @addr:
> + *
> + * the address the VA space region or (memory backed) mapping should be mapped to
> + */
> + __u64 addr;
> + /**
> + * @bo_offset: the offset within the BO backing the mapping
> + */
> + __u64 bo_offset;
> + /**
> + * @range: the size of the requested mapping in bytes
> + */
> + __u64 range;
> +};
> +
> +/**
> + * struct drm_nouveau_vm_bind - structure for DRM_IOCTL_NOUVEAU_VM_BIND
> + */
> +struct drm_nouveau_vm_bind {
> + /**
> + * @op_count: the number of &drm_nouveau_vm_bind_op
> + */
> + __u32 op_count;
> + /**
> + * @flags: the flags for a &drm_nouveau_vm_bind ioctl
> + */
> + __u32 flags;
> +/**
> + * @DRM_NOUVEAU_VM_BIND_RUN_ASYNC:
> + *
> + * Indicates that the given VM_BIND operation should be executed asynchronously
> + * by the kernel.
> + *
> + * If this flag is not supplied the kernel executes the associated operations
> + * synchronously and doesn't accept any &drm_nouveau_sync objects.
> + */
> +#define DRM_NOUVEAU_VM_BIND_RUN_ASYNC 0x1
> + /**
> + * @wait_count: the number of wait &drm_nouveau_syncs
> + */
> + __u32 wait_count;
> + /**
> + * @sig_count: the number of &drm_nouveau_syncs to signal when finished
> + */
> + __u32 sig_count;
> + /**
> + * @wait_ptr: pointer to &drm_nouveau_syncs to wait for
> + */
> + __u64 wait_ptr;
> + /**
> + * @sig_ptr: pointer to &drm_nouveau_syncs to signal when finished
> + */
> + __u64 sig_ptr;
> + /**
> + * @op_ptr: pointer to the &drm_nouveau_vm_bind_ops to execute
> + */
> + __u64 op_ptr;
> +};
> +
> +/**
> + * struct drm_nouveau_exec_push - EXEC push operation
> + *
> + * This structure represents a single EXEC push operation. UMDs should pass an
> + * array of this structure via struct drm_nouveau_exec's &push_ptr field.
> + */
> +struct drm_nouveau_exec_push {
> + /**
> + * @va: the virtual address of the push buffer mapping
> + */
> + __u64 va;
> + /**
> + * @va_len: the length of the push buffer mapping
> + */
> + __u32 va_len;
> + /**
> + * @flags: the flags for this push buffer mapping
> + */
> + __u32 flags;
> +#define DRM_NOUVEAU_EXEC_PUSH_NO_PREFETCH 0x1
> +};
> +
> +/**
> + * struct drm_nouveau_exec - structure for DRM_IOCTL_NOUVEAU_EXEC
> + */
> +struct drm_nouveau_exec {
> + /**
> + * @channel: the channel to execute the push buffer in
> + */
> + __u32 channel;
> + /**
> + * @push_count: the number of &drm_nouveau_exec_push ops
> + */
> + __u32 push_count;
> + /**
> + * @wait_count: the number of wait &drm_nouveau_syncs
> + */
> + __u32 wait_count;
> + /**
> + * @sig_count: the number of &drm_nouveau_syncs to signal when finished
> + */
> + __u32 sig_count;
> + /**
> + * @wait_ptr: pointer to &drm_nouveau_syncs to wait for
> + */
> + __u64 wait_ptr;
> + /**
> + * @sig_ptr: pointer to &drm_nouveau_syncs to signal when finished
> + */
> + __u64 sig_ptr;
> + /**
> + * @push_ptr: pointer to &drm_nouveau_exec_push ops
> + */
> + __u64 push_ptr;
> +};
> +
> +#define DRM_NOUVEAU_GETPARAM 0x00
> #define DRM_NOUVEAU_SETPARAM 0x01 /* deprecated */
> -#define DRM_NOUVEAU_CHANNEL_ALLOC 0x02 /* deprecated */
> -#define DRM_NOUVEAU_CHANNEL_FREE 0x03 /* deprecated */
> +#define DRM_NOUVEAU_CHANNEL_ALLOC 0x02
> +#define DRM_NOUVEAU_CHANNEL_FREE 0x03
> #define DRM_NOUVEAU_GROBJ_ALLOC 0x04 /* deprecated */
> #define DRM_NOUVEAU_NOTIFIEROBJ_ALLOC 0x05 /* deprecated */
> #define DRM_NOUVEAU_GPUOBJ_FREE 0x06 /* deprecated */
> #define DRM_NOUVEAU_NVIF 0x07
> #define DRM_NOUVEAU_SVM_INIT 0x08
> #define DRM_NOUVEAU_SVM_BIND 0x09
> +#define DRM_NOUVEAU_VM_INIT 0x10
> +#define DRM_NOUVEAU_VM_BIND 0x11
> +#define DRM_NOUVEAU_EXEC 0x12
> #define DRM_NOUVEAU_GEM_NEW 0x40
> #define DRM_NOUVEAU_GEM_PUSHBUF 0x41
> #define DRM_NOUVEAU_GEM_CPU_PREP 0x42
> @@ -188,6 +456,10 @@ struct drm_nouveau_svm_bind {
> #define NOUVEAU_SVM_BIND_TARGET__GPU_VRAM (1UL << 31)
>
>
> +#define DRM_IOCTL_NOUVEAU_GETPARAM DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_GETPARAM, struct drm_nouveau_getparam)
> +#define DRM_IOCTL_NOUVEAU_CHANNEL_ALLOC DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_CHANNEL_ALLOC, struct drm_nouveau_channel_alloc)
> +#define DRM_IOCTL_NOUVEAU_CHANNEL_FREE DRM_IOW (DRM_COMMAND_BASE + DRM_NOUVEAU_CHANNEL_FREE, struct drm_nouveau_channel_free)
> +
> #define DRM_IOCTL_NOUVEAU_SVM_INIT DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_SVM_INIT, struct drm_nouveau_svm_init)
> #define DRM_IOCTL_NOUVEAU_SVM_BIND DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_SVM_BIND, struct drm_nouveau_svm_bind)
>
> @@ -197,6 +469,9 @@ struct drm_nouveau_svm_bind {
> #define DRM_IOCTL_NOUVEAU_GEM_CPU_FINI DRM_IOW (DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_CPU_FINI, struct drm_nouveau_gem_cpu_fini)
> #define DRM_IOCTL_NOUVEAU_GEM_INFO DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_GEM_INFO, struct drm_nouveau_gem_info)
>
> +#define DRM_IOCTL_NOUVEAU_VM_INIT DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_VM_INIT, struct drm_nouveau_vm_init)
> +#define DRM_IOCTL_NOUVEAU_VM_BIND DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_VM_BIND, struct drm_nouveau_vm_bind)
> +#define DRM_IOCTL_NOUVEAU_EXEC DRM_IOWR(DRM_COMMAND_BASE + DRM_NOUVEAU_EXEC, struct drm_nouveau_exec)
> #if defined(__cplusplus)
> }
> #endif
--
Cheers,
Lyude Paul (she/her)
Software Engineer at Red Hat
^ permalink raw reply [flat|nested] 15+ messages in thread
* [igt-dev] [PATCH i-g-t v1 5/5] drm-uapi/virtgpu: sync with drm-next
2023-11-07 17:43 [igt-dev] [PATCH i-g-t v1 0/5] drm-uapi: sync with drm-next f2cab4b318ee Kamil Konieczny
` (3 preceding siblings ...)
2023-11-07 17:43 ` [igt-dev] [PATCH i-g-t v1 4/5] drm-uapi/nouveau: " Kamil Konieczny
@ 2023-11-07 17:43 ` Kamil Konieczny
2023-11-09 6:36 ` Kumar, Janga Rahul
2023-11-07 18:50 ` [igt-dev] ✓ Fi.CI.BAT: success for drm-uapi: sync with drm-next f2cab4b318ee Patchwork
` (2 subsequent siblings)
7 siblings, 1 reply; 15+ messages in thread
From: Kamil Konieczny @ 2023-11-07 17:43 UTC (permalink / raw)
To: igt-dev; +Cc: Helen Koike, Daniel Stone
Sync with drm-next commit ("f2cab4b318ee8023f4ad640b906ae268942a7db4")
Cc: Helen Koike <helen.koike@collabora.com>
Cc: Daniel Stone <daniels@collabora.com>
Cc: Vignesh Raman <vignesh.raman@collabora.com>
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
include/drm-uapi/virtgpu_drm.h | 49 ++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
diff --git a/include/drm-uapi/virtgpu_drm.h b/include/drm-uapi/virtgpu_drm.h
index b9ec26e9c..b1d0e5656 100644
--- a/include/drm-uapi/virtgpu_drm.h
+++ b/include/drm-uapi/virtgpu_drm.h
@@ -47,12 +47,15 @@ extern "C" {
#define DRM_VIRTGPU_WAIT 0x08
#define DRM_VIRTGPU_GET_CAPS 0x09
#define DRM_VIRTGPU_RESOURCE_CREATE_BLOB 0x0a
+#define DRM_VIRTGPU_CONTEXT_INIT 0x0b
#define VIRTGPU_EXECBUF_FENCE_FD_IN 0x01
#define VIRTGPU_EXECBUF_FENCE_FD_OUT 0x02
+#define VIRTGPU_EXECBUF_RING_IDX 0x04
#define VIRTGPU_EXECBUF_FLAGS (\
VIRTGPU_EXECBUF_FENCE_FD_IN |\
VIRTGPU_EXECBUF_FENCE_FD_OUT |\
+ VIRTGPU_EXECBUF_RING_IDX |\
0)
struct drm_virtgpu_map {
@@ -61,6 +64,17 @@ struct drm_virtgpu_map {
__u32 pad;
};
+#define VIRTGPU_EXECBUF_SYNCOBJ_RESET 0x01
+#define VIRTGPU_EXECBUF_SYNCOBJ_FLAGS ( \
+ VIRTGPU_EXECBUF_SYNCOBJ_RESET | \
+ 0)
+struct drm_virtgpu_execbuffer_syncobj {
+ __u32 handle;
+ __u32 flags;
+ __u64 point;
+};
+
+/* fence_fd is modified on success if VIRTGPU_EXECBUF_FENCE_FD_OUT flag is set. */
struct drm_virtgpu_execbuffer {
__u32 flags;
__u32 size;
@@ -68,6 +82,12 @@ struct drm_virtgpu_execbuffer {
__u64 bo_handles;
__u32 num_bo_handles;
__s32 fence_fd; /* in/out fence fd (see VIRTGPU_EXECBUF_FENCE_FD_IN/OUT) */
+ __u32 ring_idx; /* command ring index (see VIRTGPU_EXECBUF_RING_IDX) */
+ __u32 syncobj_stride; /* size of @drm_virtgpu_execbuffer_syncobj */
+ __u32 num_in_syncobjs;
+ __u32 num_out_syncobjs;
+ __u64 in_syncobjs;
+ __u64 out_syncobjs;
};
#define VIRTGPU_PARAM_3D_FEATURES 1 /* do we have 3D features in the hw */
@@ -75,6 +95,8 @@ struct drm_virtgpu_execbuffer {
#define VIRTGPU_PARAM_RESOURCE_BLOB 3 /* DRM_VIRTGPU_RESOURCE_CREATE_BLOB */
#define VIRTGPU_PARAM_HOST_VISIBLE 4 /* Host blob resources are mappable */
#define VIRTGPU_PARAM_CROSS_DEVICE 5 /* Cross virtio-device resource sharing */
+#define VIRTGPU_PARAM_CONTEXT_INIT 6 /* DRM_VIRTGPU_CONTEXT_INIT */
+#define VIRTGPU_PARAM_SUPPORTED_CAPSET_IDs 7 /* Bitmask of supported capability set ids */
struct drm_virtgpu_getparam {
__u64 param;
@@ -173,6 +195,29 @@ struct drm_virtgpu_resource_create_blob {
__u64 blob_id;
};
+#define VIRTGPU_CONTEXT_PARAM_CAPSET_ID 0x0001
+#define VIRTGPU_CONTEXT_PARAM_NUM_RINGS 0x0002
+#define VIRTGPU_CONTEXT_PARAM_POLL_RINGS_MASK 0x0003
+struct drm_virtgpu_context_set_param {
+ __u64 param;
+ __u64 value;
+};
+
+struct drm_virtgpu_context_init {
+ __u32 num_params;
+ __u32 pad;
+
+ /* pointer to drm_virtgpu_context_set_param array */
+ __u64 ctx_set_params;
+};
+
+/*
+ * Event code that's given when VIRTGPU_CONTEXT_PARAM_POLL_RINGS_MASK is in
+ * effect. The event size is sizeof(drm_event), since there is no additional
+ * payload.
+ */
+#define VIRTGPU_EVENT_FENCE_SIGNALED 0x90000000
+
#define DRM_IOCTL_VIRTGPU_MAP \
DRM_IOWR(DRM_COMMAND_BASE + DRM_VIRTGPU_MAP, struct drm_virtgpu_map)
@@ -212,6 +257,10 @@ struct drm_virtgpu_resource_create_blob {
DRM_IOWR(DRM_COMMAND_BASE + DRM_VIRTGPU_RESOURCE_CREATE_BLOB, \
struct drm_virtgpu_resource_create_blob)
+#define DRM_IOCTL_VIRTGPU_CONTEXT_INIT \
+ DRM_IOWR(DRM_COMMAND_BASE + DRM_VIRTGPU_CONTEXT_INIT, \
+ struct drm_virtgpu_context_init)
+
#if defined(__cplusplus)
}
#endif
--
2.42.0
^ permalink raw reply related [flat|nested] 15+ messages in thread* Re: [igt-dev] [PATCH i-g-t v1 5/5] drm-uapi/virtgpu: sync with drm-next
2023-11-07 17:43 ` [igt-dev] [PATCH i-g-t v1 5/5] drm-uapi/virtgpu: " Kamil Konieczny
@ 2023-11-09 6:36 ` Kumar, Janga Rahul
0 siblings, 0 replies; 15+ messages in thread
From: Kumar, Janga Rahul @ 2023-11-09 6:36 UTC (permalink / raw)
To: Kamil Konieczny, igt-dev@lists.freedesktop.org; +Cc: Helen Koike, Daniel Stone
LGTM, Verified the below changes are in sync with drm-next repo.
Reviewed-by: Janga Rahul Kumar<janga.rahul.kumar@intel.com>
> -----Original Message-----
> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Kamil
> Konieczny
> Sent: Tuesday, November 7, 2023 11:14 PM
> To: igt-dev@lists.freedesktop.org
> Cc: Helen Koike <helen.koike@collabora.com>; Daniel Stone
> <daniels@collabora.com>
> Subject: [igt-dev] [PATCH i-g-t v1 5/5] drm-uapi/virtgpu: sync with drm-next
>
> Sync with drm-next commit
> ("f2cab4b318ee8023f4ad640b906ae268942a7db4")
>
> Cc: Helen Koike <helen.koike@collabora.com>
> Cc: Daniel Stone <daniels@collabora.com>
> Cc: Vignesh Raman <vignesh.raman@collabora.com>
> Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> include/drm-uapi/virtgpu_drm.h | 49
> ++++++++++++++++++++++++++++++++++
> 1 file changed, 49 insertions(+)
>
> diff --git a/include/drm-uapi/virtgpu_drm.h b/include/drm-
> uapi/virtgpu_drm.h index b9ec26e9c..b1d0e5656 100644
> --- a/include/drm-uapi/virtgpu_drm.h
> +++ b/include/drm-uapi/virtgpu_drm.h
> @@ -47,12 +47,15 @@ extern "C" {
> #define DRM_VIRTGPU_WAIT 0x08
> #define DRM_VIRTGPU_GET_CAPS 0x09
> #define DRM_VIRTGPU_RESOURCE_CREATE_BLOB 0x0a
> +#define DRM_VIRTGPU_CONTEXT_INIT 0x0b
>
> #define VIRTGPU_EXECBUF_FENCE_FD_IN 0x01
> #define VIRTGPU_EXECBUF_FENCE_FD_OUT 0x02
> +#define VIRTGPU_EXECBUF_RING_IDX 0x04
> #define VIRTGPU_EXECBUF_FLAGS (\
> VIRTGPU_EXECBUF_FENCE_FD_IN |\
> VIRTGPU_EXECBUF_FENCE_FD_OUT |\
> + VIRTGPU_EXECBUF_RING_IDX |\
> 0)
>
> struct drm_virtgpu_map {
> @@ -61,6 +64,17 @@ struct drm_virtgpu_map {
> __u32 pad;
> };
>
> +#define VIRTGPU_EXECBUF_SYNCOBJ_RESET 0x01
> +#define VIRTGPU_EXECBUF_SYNCOBJ_FLAGS ( \
> + VIRTGPU_EXECBUF_SYNCOBJ_RESET | \
> + 0)
> +struct drm_virtgpu_execbuffer_syncobj {
> + __u32 handle;
> + __u32 flags;
> + __u64 point;
> +};
> +
> +/* fence_fd is modified on success if VIRTGPU_EXECBUF_FENCE_FD_OUT
> flag
> +is set. */
> struct drm_virtgpu_execbuffer {
> __u32 flags;
> __u32 size;
> @@ -68,6 +82,12 @@ struct drm_virtgpu_execbuffer {
> __u64 bo_handles;
> __u32 num_bo_handles;
> __s32 fence_fd; /* in/out fence fd (see
> VIRTGPU_EXECBUF_FENCE_FD_IN/OUT) */
> + __u32 ring_idx; /* command ring index (see
> VIRTGPU_EXECBUF_RING_IDX) */
> + __u32 syncobj_stride; /* size of @drm_virtgpu_execbuffer_syncobj
> */
> + __u32 num_in_syncobjs;
> + __u32 num_out_syncobjs;
> + __u64 in_syncobjs;
> + __u64 out_syncobjs;
> };
>
> #define VIRTGPU_PARAM_3D_FEATURES 1 /* do we have 3D features in the
> hw */ @@ -75,6 +95,8 @@ struct drm_virtgpu_execbuffer { #define
> VIRTGPU_PARAM_RESOURCE_BLOB 3 /*
> DRM_VIRTGPU_RESOURCE_CREATE_BLOB */ #define
> VIRTGPU_PARAM_HOST_VISIBLE 4 /* Host blob resources are mappable */
> #define VIRTGPU_PARAM_CROSS_DEVICE 5 /* Cross virtio-device resource
> sharing */
> +#define VIRTGPU_PARAM_CONTEXT_INIT 6 /*
> DRM_VIRTGPU_CONTEXT_INIT */
> +#define VIRTGPU_PARAM_SUPPORTED_CAPSET_IDs 7 /* Bitmask of
> supported
> +capability set ids */
>
> struct drm_virtgpu_getparam {
> __u64 param;
> @@ -173,6 +195,29 @@ struct drm_virtgpu_resource_create_blob {
> __u64 blob_id;
> };
>
> +#define VIRTGPU_CONTEXT_PARAM_CAPSET_ID 0x0001
> +#define VIRTGPU_CONTEXT_PARAM_NUM_RINGS 0x0002
> +#define VIRTGPU_CONTEXT_PARAM_POLL_RINGS_MASK 0x0003 struct
> +drm_virtgpu_context_set_param {
> + __u64 param;
> + __u64 value;
> +};
> +
> +struct drm_virtgpu_context_init {
> + __u32 num_params;
> + __u32 pad;
> +
> + /* pointer to drm_virtgpu_context_set_param array */
> + __u64 ctx_set_params;
> +};
> +
> +/*
> + * Event code that's given when
> VIRTGPU_CONTEXT_PARAM_POLL_RINGS_MASK
> +is in
> + * effect. The event size is sizeof(drm_event), since there is no
> +additional
> + * payload.
> + */
> +#define VIRTGPU_EVENT_FENCE_SIGNALED 0x90000000
> +
> #define DRM_IOCTL_VIRTGPU_MAP \
> DRM_IOWR(DRM_COMMAND_BASE + DRM_VIRTGPU_MAP, struct
> drm_virtgpu_map)
>
> @@ -212,6 +257,10 @@ struct drm_virtgpu_resource_create_blob {
> DRM_IOWR(DRM_COMMAND_BASE +
> DRM_VIRTGPU_RESOURCE_CREATE_BLOB, \
> struct drm_virtgpu_resource_create_blob)
>
> +#define DRM_IOCTL_VIRTGPU_CONTEXT_INIT
> \
> + DRM_IOWR(DRM_COMMAND_BASE + DRM_VIRTGPU_CONTEXT_INIT,
> \
> + struct drm_virtgpu_context_init)
> +
> #if defined(__cplusplus)
> }
> #endif
> --
> 2.42.0
^ permalink raw reply [flat|nested] 15+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for drm-uapi: sync with drm-next f2cab4b318ee
2023-11-07 17:43 [igt-dev] [PATCH i-g-t v1 0/5] drm-uapi: sync with drm-next f2cab4b318ee Kamil Konieczny
` (4 preceding siblings ...)
2023-11-07 17:43 ` [igt-dev] [PATCH i-g-t v1 5/5] drm-uapi/virtgpu: " Kamil Konieczny
@ 2023-11-07 18:50 ` Patchwork
2023-11-07 19:23 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
2023-11-08 11:12 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
7 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2023-11-07 18:50 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 15759 bytes --]
== Series Details ==
Series: drm-uapi: sync with drm-next f2cab4b318ee
URL : https://patchwork.freedesktop.org/series/126084/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13846 -> IGTPW_10131
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/index.html
Participating hosts (32 -> 35)
------------------------------
Additional (4): bat-dg2-14 bat-dg2-8 bat-atsm-1 fi-hsw-4770
Missing (1): bat-dg2-9
Known issues
------------
Here are the changes found in IGTPW_10131 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-adlp-11: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-adlp-11/igt@debugfs_test@basic-hwmon.html
* igt@gem_exec_suspend@basic-s3@lmem0:
- bat-atsm-1: NOTRUN -> [DMESG-WARN][2] ([i915#8841]) +4 other tests dmesg-warn
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-atsm-1/igt@gem_exec_suspend@basic-s3@lmem0.html
* igt@gem_mmap@basic:
- bat-atsm-1: NOTRUN -> [SKIP][3] ([i915#4083])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-atsm-1/igt@gem_mmap@basic.html
- bat-dg2-8: NOTRUN -> [SKIP][4] ([i915#4083])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-dg2-8/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-dg2-8: NOTRUN -> [SKIP][5] ([i915#4077]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-dg2-8/igt@gem_mmap_gtt@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-atsm-1: NOTRUN -> [SKIP][6] ([i915#4077]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-atsm-1/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-atsm-1: NOTRUN -> [SKIP][7] ([i915#4079]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-atsm-1/igt@gem_tiled_pread_basic.html
- bat-dg2-8: NOTRUN -> [SKIP][8] ([i915#4079]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-dg2-8/igt@gem_tiled_pread_basic.html
- bat-adlp-11: NOTRUN -> [SKIP][9] ([i915#3282])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-adlp-11/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-atsm-1: NOTRUN -> [SKIP][10] ([i915#6621])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-atsm-1/igt@i915_pm_rps@basic-api.html
- bat-dg2-8: NOTRUN -> [SKIP][11] ([i915#6621])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-dg2-8/igt@i915_pm_rps@basic-api.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-atsm-1: NOTRUN -> [SKIP][12] ([i915#6645])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-atsm-1/igt@i915_suspend@basic-s3-without-i915.html
- bat-dg2-8: NOTRUN -> [SKIP][13] ([i915#6645])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-dg2-8/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- fi-hsw-4770: NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#5190])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-dg2-8: NOTRUN -> [SKIP][15] ([i915#5190])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-8: NOTRUN -> [SKIP][16] ([i915#4215] / [i915#5190])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-dg2-8: NOTRUN -> [SKIP][17] ([i915#4212]) +6 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@size-max:
- bat-atsm-1: NOTRUN -> [SKIP][18] ([i915#6077]) +36 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-atsm-1/igt@kms_addfb_basic@size-max.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-atsm-1: NOTRUN -> [SKIP][19] ([i915#5608] / [i915#6077])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-atsm-1/igt@kms_addfb_basic@tile-pitch-mismatch.html
- bat-dg2-8: NOTRUN -> [SKIP][20] ([i915#4212] / [i915#5608])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-dg2-8/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-atsm-1: NOTRUN -> [SKIP][21] ([i915#5608] / [i915#6078]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-atsm-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-adlp-11: NOTRUN -> [SKIP][22] ([i915#4103] / [i915#5608]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-adlp-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-dg2-8: NOTRUN -> [SKIP][23] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
- bat-atsm-1: NOTRUN -> [SKIP][24] ([i915#6078]) +8 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-atsm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
* igt@kms_dsc@dsc-basic:
- bat-adlp-11: NOTRUN -> [SKIP][25] ([i915#3555] / [i915#3840])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-adlp-11/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-wf_vblank@d-dp5:
- bat-adlp-11: NOTRUN -> [DMESG-WARN][26] ([i915#6868])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-adlp-11/igt@kms_flip@basic-flip-vs-wf_vblank@d-dp5.html
* igt@kms_flip@basic-plain-flip:
- bat-atsm-1: NOTRUN -> [SKIP][27] ([i915#6166]) +3 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-atsm-1/igt@kms_flip@basic-plain-flip.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-8: NOTRUN -> [SKIP][28] ([fdo#109285])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-dg2-8/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-atsm-1: NOTRUN -> [SKIP][29] ([i915#6093]) +4 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-atsm-1/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-adlp-11: NOTRUN -> [SKIP][30] ([i915#4093]) +3 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-adlp-11/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-8: NOTRUN -> [SKIP][31] ([i915#5274])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_hdmi_inject@inject-audio:
- bat-adlp-11: NOTRUN -> [SKIP][32] ([i915#4369])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-adlp-11/igt@kms_hdmi_inject@inject-audio.html
- fi-kbl-guc: [PASS][33] -> [FAIL][34] ([IGT#3])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1:
- fi-hsw-4770: NOTRUN -> [SKIP][35] ([fdo#109271]) +12 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/fi-hsw-4770/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-5:
- bat-adlp-11: NOTRUN -> [DMESG-FAIL][36] ([i915#6868])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-adlp-11/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-5.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24:
- bat-atsm-1: NOTRUN -> [SKIP][37] ([i915#1836]) +7 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-atsm-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: NOTRUN -> [SKIP][38] ([i915#1845] / [i915#9197]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1:
- fi-hsw-4770: NOTRUN -> [DMESG-WARN][39] ([i915#8841]) +6 other tests dmesg-warn
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/fi-hsw-4770/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1.html
* igt@kms_prop_blob@basic:
- bat-atsm-1: NOTRUN -> [SKIP][40] ([i915#7357])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-atsm-1/igt@kms_prop_blob@basic.html
* igt@kms_psr@cursor_plane_move:
- bat-dg2-8: NOTRUN -> [SKIP][41] ([i915#1072]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-dg2-8/igt@kms_psr@cursor_plane_move.html
* igt@kms_psr@sprite_plane_onoff:
- bat-atsm-1: NOTRUN -> [SKIP][42] ([i915#1072]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-atsm-1/igt@kms_psr@sprite_plane_onoff.html
- fi-hsw-4770: NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#1072]) +3 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-atsm-1: NOTRUN -> [SKIP][44] ([i915#6094])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html
- bat-dg2-8: NOTRUN -> [SKIP][45] ([i915#3555] / [i915#4098])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-atsm-1: NOTRUN -> [SKIP][46] ([fdo#109295] / [i915#6078])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-atsm-1/igt@prime_vgem@basic-fence-flip.html
- bat-dg2-8: NOTRUN -> [SKIP][47] ([i915#3708])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-dg2-8/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-atsm-1: NOTRUN -> [SKIP][48] ([fdo#109295] / [i915#4077]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-atsm-1/igt@prime_vgem@basic-fence-mmap.html
- bat-dg2-8: NOTRUN -> [SKIP][49] ([i915#3708] / [i915#4077]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-dg2-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-atsm-1: NOTRUN -> [SKIP][50] ([fdo#109295]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-atsm-1/igt@prime_vgem@basic-write.html
- bat-dg2-8: NOTRUN -> [SKIP][51] ([i915#3291] / [i915#3708]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-dg2-8/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@kms_psr@sprite_plane_onoff:
- bat-jsl-3: [SKIP][52] -> [PASS][53] +3 other tests pass
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/bat-jsl-3/igt@kms_psr@sprite_plane_onoff.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/bat-jsl-3/igt@kms_psr@sprite_plane_onoff.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4093]: https://gitlab.freedesktop.org/drm/intel/issues/4093
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077
[i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078
[i915#6093]: https://gitlab.freedesktop.org/drm/intel/issues/6093
[i915#6094]: https://gitlab.freedesktop.org/drm/intel/issues/6094
[i915#6166]: https://gitlab.freedesktop.org/drm/intel/issues/6166
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#6868]: https://gitlab.freedesktop.org/drm/intel/issues/6868
[i915#7357]: https://gitlab.freedesktop.org/drm/intel/issues/7357
[i915#7359]: https://gitlab.freedesktop.org/drm/intel/issues/7359
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8981]: https://gitlab.freedesktop.org/drm/intel/issues/8981
[i915#9197]: https://gitlab.freedesktop.org/drm/intel/issues/9197
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7575 -> IGTPW_10131
CI-20190529: 20190529
CI_DRM_13846: 8381a59e1809d7b35b7f19e0dde04e8ceec4cd92 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10131: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/index.html
IGT_7575: 6edf8b6808de2bde968415926d2b55817f7ea1de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/index.html
[-- Attachment #2: Type: text/html, Size: 19136 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread* [igt-dev] ✓ CI.xeBAT: success for drm-uapi: sync with drm-next f2cab4b318ee
2023-11-07 17:43 [igt-dev] [PATCH i-g-t v1 0/5] drm-uapi: sync with drm-next f2cab4b318ee Kamil Konieczny
` (5 preceding siblings ...)
2023-11-07 18:50 ` [igt-dev] ✓ Fi.CI.BAT: success for drm-uapi: sync with drm-next f2cab4b318ee Patchwork
@ 2023-11-07 19:23 ` Patchwork
2023-11-08 11:12 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
7 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2023-11-07 19:23 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1955 bytes --]
== Series Details ==
Series: drm-uapi: sync with drm-next f2cab4b318ee
URL : https://patchwork.freedesktop.org/series/126084/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7575_BAT -> XEIGTPW_10131_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_10131_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* {igt@xe_create@create-execqueues-noleak}:
- bat-adlp-7: [FAIL][1] ([Intel XE#524]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7575/bat-adlp-7/igt@xe_create@create-execqueues-noleak.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10131/bat-adlp-7/igt@xe_create@create-execqueues-noleak.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524
[Intel XE#854]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/854
[Intel XE#862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/862
Build changes
-------------
* IGT: IGT_7575 -> IGTPW_10131
* Linux: xe-472-5a3a6fdda31fc8fa60db6d2fa30bd4db2509eb8b -> xe-476-3b0bded07ef9f00e6120c6856e86e3faf897191f
IGTPW_10131: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/index.html
IGT_7575: 6edf8b6808de2bde968415926d2b55817f7ea1de @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-472-5a3a6fdda31fc8fa60db6d2fa30bd4db2509eb8b: 5a3a6fdda31fc8fa60db6d2fa30bd4db2509eb8b
xe-476-3b0bded07ef9f00e6120c6856e86e3faf897191f: 3b0bded07ef9f00e6120c6856e86e3faf897191f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10131/index.html
[-- Attachment #2: Type: text/html, Size: 2394 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread* [igt-dev] ✗ Fi.CI.IGT: failure for drm-uapi: sync with drm-next f2cab4b318ee
2023-11-07 17:43 [igt-dev] [PATCH i-g-t v1 0/5] drm-uapi: sync with drm-next f2cab4b318ee Kamil Konieczny
` (6 preceding siblings ...)
2023-11-07 19:23 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
@ 2023-11-08 11:12 ` Patchwork
7 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2023-11-08 11:12 UTC (permalink / raw)
To: Kamil Konieczny; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100261 bytes --]
== Series Details ==
Series: drm-uapi: sync with drm-next f2cab4b318ee
URL : https://patchwork.freedesktop.org/series/126084/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13846_full -> IGTPW_10131_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10131_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10131_full, please notify your bug team (lgci.bug.filing@intel.com) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/index.html
Participating hosts (9 -> 11)
------------------------------
Additional (2): shard-mtlp0 shard-rkl0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10131_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-2.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a2:
- shard-glk: [PASS][2] -> [INCOMPLETE][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a2.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a2.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-dp1:
- shard-apl: [PASS][4] -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-apl6/igt@kms_flip@wf_vblank-ts-check-interruptible@b-dp1.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-apl1/igt@kms_flip@wf_vblank-ts-check-interruptible@b-dp1.html
Known issues
------------
Here are the changes found in IGTPW_10131_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-3/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#7701])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-1/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy-hang@bcs0:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) +4 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg1-15/igt@drm_fdinfo@busy-hang@bcs0.html
* igt@drm_fdinfo@virtual-busy-all:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-5/igt@drm_fdinfo@virtual-busy-all.html
* igt@drm_fdinfo@virtual-busy-hang:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-11/igt@drm_fdinfo@virtual-busy-hang.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#7697])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-7/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#7957])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@gem_ccs@block-multicopy-inplace.html
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#3555])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-2/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#7697]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-1/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-dg2: NOTRUN -> [SKIP][15] ([fdo#109314])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-1/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@legacy-engines-hang@blt:
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#6252])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][17] ([i915#280])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-2/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@bonded-dual:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#4771])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-3/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#4812]) +4 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-1/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-1/igt@gem_exec_balancer@noheartbeat.html
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#8555])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-8/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#6334])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-glk7/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@many-4k-zero:
- shard-dg2: NOTRUN -> [FAIL][23] ([i915#9606])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-3/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_endless@dispatch@bcs0:
- shard-rkl: [PASS][24] -> [SKIP][25] ([i915#9591])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-7/igt@gem_exec_endless@dispatch@bcs0.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@gem_exec_endless@dispatch@bcs0.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-glk: NOTRUN -> [FAIL][26] ([i915#2842])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-glk9/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none-vip:
- shard-dg1: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg1-17/igt@gem_exec_fair@basic-none-vip.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [PASS][28] -> [FAIL][29] ([i915#2842])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +4 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-6/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
- shard-rkl: NOTRUN -> [SKIP][31] ([fdo#109313])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-1/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_flush@basic-uc-set-default:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-1/igt@gem_exec_flush@basic-uc-set-default.html
* igt@gem_exec_params@secure-non-master:
- shard-dg2: NOTRUN -> [SKIP][33] ([fdo#112283])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-2/igt@gem_exec_params@secure-non-master.html
- shard-rkl: NOTRUN -> [SKIP][34] ([fdo#112283])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-7/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-cpu-read-active:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#3281])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg1-17/igt@gem_exec_reloc@basic-cpu-read-active.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: [PASS][36] -> [SKIP][37] ([i915#3281]) +6 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-cpu.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_exec_reloc@basic-gtt-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) +5 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-4/igt@gem_exec_reloc@basic-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +15 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-11/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-7/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#7276])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4537] / [i915#4812])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-5/igt@gem_exec_schedule@semaphore-power.html
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4537] / [i915#4812])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-2/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4860]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_lmem_swapping@basic:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4613]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-2/igt@gem_lmem_swapping@basic.html
- shard-apl: NOTRUN -> [SKIP][46] ([fdo#109271] / [i915#4613])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-apl2/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-tglu: NOTRUN -> [SKIP][47] ([i915#4613])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-tglu-10/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#4613]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-1/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#4613]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-glk8/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [PASS][50] -> [TIMEOUT][51] ([i915#5493])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#8289])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-11/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#284])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-1/igt@gem_media_vme.html
* igt@gem_mmap_gtt@close-race:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4077]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-5/igt@gem_mmap_gtt@close-race.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4077])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg1-16/igt@gem_mmap_gtt@cpuset-basic-small-copy.html
* igt@gem_mmap_gtt@hang-user:
- shard-glk: [PASS][56] -> [SKIP][57] ([fdo#109271])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-glk9/igt@gem_mmap_gtt@hang-user.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-glk3/igt@gem_mmap_gtt@hang-user.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) +12 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-2/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@write-read-distinct:
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#4083]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg1-18/igt@gem_mmap_wc@write-read-distinct.html
* igt@gem_mmap_wc@write-wc-read-gtt:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4083]) +6 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-11/igt@gem_mmap_wc@write-wc-read-gtt.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3282]) +6 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-2/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#3282])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: [PASS][63] -> [SKIP][64] ([i915#3282]) +6 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pwrite@basic-random:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#3282])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg1-17/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@create-regular-context-1:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#4270])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4270]) +6 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-6/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4270]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-5/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_readwrite@write-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#3282])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-7/igt@gem_readwrite@write-bad-handle.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#8428]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-5/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_render_copy@yf-tiled-to-vebox-x-tiled:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#768]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@gem_render_copy@yf-tiled-to-vebox-x-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4079])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4079]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4079])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg1-19/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4885])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-11/igt@gem_softpin@evict-snoop.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: NOTRUN -> [FAIL][76] ([i915#5889])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-1/igt@gem_spin_batch@spin-all-new.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#3297]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-2/igt@gem_userptr_blits@coherency-unsync.html
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#3297])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-5/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297] / [i915#4880])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@vma-merge:
- shard-dg2: NOTRUN -> [FAIL][80] ([i915#3318])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-11/igt@gem_userptr_blits@vma-merge.html
- shard-snb: NOTRUN -> [FAIL][81] ([i915#2724])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-snb2/igt@gem_userptr_blits@vma-merge.html
- shard-tglu: NOTRUN -> [FAIL][82] ([i915#3318])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-tglu-8/igt@gem_userptr_blits@vma-merge.html
* igt@gen3_render_linear_blits:
- shard-mtlp: NOTRUN -> [SKIP][83] ([fdo#109289]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-8/igt@gen3_render_linear_blits.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#2856]) +4 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-11/igt@gen9_exec_parse@shadow-peek.html
- shard-rkl: [PASS][85] -> [SKIP][86] ([i915#2527]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@gen9_exec_parse@shadow-peek.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-4/igt@gen9_exec_parse@shadow-peek.html
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#2527] / [i915#2856])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-tglu-8/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu: NOTRUN -> [SKIP][88] ([i915#8399])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-tglu-5/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rc6_residency@rc6-idle@vcs0:
- shard-rkl: NOTRUN -> [WARN][89] ([i915#2681])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-tglu: NOTRUN -> [SKIP][90] ([fdo#109303])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-tglu-2/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_query@query-topology-unsupported:
- shard-dg2: NOTRUN -> [SKIP][91] ([fdo#109302])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-6/igt@i915_query@query-topology-unsupported.html
* igt@i915_selftest@mock@memory_region:
- shard-dg2: NOTRUN -> [DMESG-WARN][92] ([i915#9311])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-2/igt@i915_selftest@mock@memory_region.html
* igt@i915_suspend@sysfs-reader:
- shard-mtlp: [PASS][93] -> [ABORT][94] ([i915#9414]) +1 other test abort
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-mtlp-5/igt@i915_suspend@sysfs-reader.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-7/igt@i915_suspend@sysfs-reader.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#5190]) +18 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#4212] / [i915#5608])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-1/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#6228])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-6/igt@kms_async_flips@invalid-async-flip.html
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#6228])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-2/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#1769] / [i915#3555])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#1769] / [i915#3555])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#5286])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [PASS][102] -> [FAIL][103] ([i915#5138])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-mtlp-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][104] ([fdo#111614])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][105] ([fdo#111614]) +3 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-180:
- shard-snb: [PASS][106] -> [SKIP][107] ([fdo#109271] / [i915#1845])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-snb2/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-snb4/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#3638])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg1-16/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [PASS][109] -> [FAIL][110] ([i915#3743]) +1 other test fail
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-tglu-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#4538] / [i915#5190]) +6 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][112] ([fdo#111615])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-tglu-9/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][113] ([fdo#110723])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#1845] / [i915#4098]) +21 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [SKIP][115] ([fdo#111615]) +3 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#2705])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-6/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4087] / [i915#7213]) +3 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][118] ([i915#4087]) +3 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-rkl: NOTRUN -> [SKIP][119] ([fdo#111827])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-6/igt@kms_chamelium_color@ctm-0-25.html
- shard-mtlp: NOTRUN -> [SKIP][120] ([fdo#111827])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-3/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2: NOTRUN -> [SKIP][121] ([fdo#111827]) +3 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-11/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-tglu: NOTRUN -> [SKIP][122] ([fdo#111827])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-tglu-8/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#7828]) +11 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-2/igt@kms_chamelium_frames@dp-crc-fast.html
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#7828]) +2 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#7828]) +3 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-1/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-tglu: NOTRUN -> [SKIP][126] ([i915#7828])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-tglu-7/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#7828])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg1-15/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_color@ctm-0-75@pipe-b:
- shard-rkl: [PASS][128] -> [SKIP][129] ([i915#4098]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-4/igt@kms_color@ctm-0-75@pipe-b.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_color@ctm-0-75@pipe-b.html
* igt@kms_color@deep-color@pipe-b-edp-1-degamma:
- shard-mtlp: NOTRUN -> [FAIL][130] ([i915#6892]) +3 other tests fail
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-3/igt@kms_color@deep-color@pipe-b-edp-1-degamma.html
* igt@kms_content_protection@atomic:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#7118])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#3299]) +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-1/igt@kms_content_protection@dp-mst-type-1.html
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#3299])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-1/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][134] ([i915#7173]) +1 other test timeout
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-mtlp: NOTRUN -> [SKIP][135] ([i915#3555] / [i915#8814])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#3359])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#3555]) +8 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-6/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#3359])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][139] ([fdo#109274] / [fdo#111767] / [i915#5354])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][141] ([fdo#111767] / [i915#3546])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
- shard-apl: NOTRUN -> [SKIP][142] ([fdo#109271] / [fdo#111767])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-apl1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][143] ([fdo#109274] / [i915#5354]) +5 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-rkl: [PASS][144] -> [SKIP][145] ([i915#1845] / [i915#4098]) +22 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#4103] / [i915#4213]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#4098]) +13 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#3555] / [i915#3840]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fence_pin_leak:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#4881])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-6/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg1: NOTRUN -> [SKIP][150] ([fdo#111825]) +4 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg1-19/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3637]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-8/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-tglu: NOTRUN -> [SKIP][152] ([fdo#109274] / [i915#3637])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-tglu-9/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-dg2: NOTRUN -> [SKIP][153] ([fdo#109274]) +10 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-3/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#3637] / [i915#4098]) +6 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#8381])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-1/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#2587] / [i915#2672])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#2672])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#2672]) +6 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][159] ([i915#3555]) +7 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#8810])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#2672]) +4 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
- shard-dg2: NOTRUN -> [FAIL][162] ([i915#6880])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#5354]) +39 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#1825]) +14 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#1849] / [i915#4098]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
- shard-rkl: [PASS][166] -> [SKIP][167] ([i915#1849] / [i915#4098]) +13 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#8708]) +17 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#8708]) +4 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#8708]) +3 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-apl: NOTRUN -> [SKIP][171] ([fdo#109271]) +47 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-apl3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#3458]) +32 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][173] ([fdo#111825] / [i915#1825]) +8 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][174] ([fdo#109280]) +8 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-modesetfrombusy:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#3023]) +9 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#8228])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-7/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#8228]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-1/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#8228])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-tglu-9/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_invalid_mode@zero-clock:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#4098])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_invalid_mode@zero-clock.html
* igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
- shard-tglu: NOTRUN -> [SKIP][180] ([fdo#109289])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-tglu-7/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg2: NOTRUN -> [SKIP][181] ([fdo#109289]) +4 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-2/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_plane@pixel-format:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#4098] / [i915#8825])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_plane@pixel-format.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][183] ([i915#4573]) +1 other test fail
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-glk8/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#6953])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-6/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][185] ([i915#8292])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#4098] / [i915#8152])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#3555] / [i915#4098] / [i915#6953] / [i915#8152]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#6953] / [i915#8152]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#4098] / [i915#6953] / [i915#8152])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#5235]) +5 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#5235]) +11 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#5235]) +11 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg1-13/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_prime@basic-crc-vgem:
- shard-rkl: NOTRUN -> [SKIP][193] ([i915#6524])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@d3hot:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#6524] / [i915#6805])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-2/igt@kms_prime@d3hot.html
* igt@kms_properties@crtc-properties-legacy:
- shard-rkl: [PASS][195] -> [SKIP][196] ([i915#1849])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-4/igt@kms_properties@crtc-properties-legacy.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_properties@crtc-properties-legacy.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#658])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg1-16/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-glk: NOTRUN -> [SKIP][198] ([fdo#109271] / [i915#658]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-glk5/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#658]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-11/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@cursor_blt:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#1072] / [i915#4078])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg1-13/igt@kms_psr@cursor_blt.html
* igt@kms_psr@dpms:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#1072]) +10 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-3/igt@kms_psr@dpms.html
* igt@kms_psr@psr2_cursor_render:
- shard-tglu: NOTRUN -> [SKIP][202] ([fdo#110189]) +3 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-tglu-7/igt@kms_psr@psr2_cursor_render.html
* igt@kms_psr@psr2_sprite_blt:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#1072]) +2 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-7/igt@kms_psr@psr2_sprite_blt.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#5289])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-tglu-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#4235])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#4235] / [i915#5190]) +2 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-tglu: NOTRUN -> [SKIP][207] ([fdo#111615] / [i915#5289])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-tglu-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#4235]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#4098])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-6/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#8623])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-mtlp: [PASS][211] -> [FAIL][212] ([i915#9196]) +1 other test fail
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1:
- shard-snb: [PASS][213] -> [FAIL][214] ([i915#9196])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-snb7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-vga-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-glk: [PASS][215] -> [FAIL][216] ([i915#9196])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-glk8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-glk4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@kms_vrr@flip-dpms:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#3555]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg1-16/igt@kms_vrr@flip-dpms.html
* igt@kms_writeback@writeback-check-output:
- shard-glk: NOTRUN -> [SKIP][218] ([fdo#109271] / [i915#2437])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-glk6/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-rkl: NOTRUN -> [SKIP][219] ([i915#2437])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@gen12-group-exclusive-stream-ctx-handle:
- shard-rkl: [PASS][220] -> [SKIP][221] ([fdo#109289]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-1/igt@perf@gen12-group-exclusive-stream-ctx-handle.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@perf@gen12-group-exclusive-stream-ctx-handle.html
* igt@perf@global-sseu-config:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#7387])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-11/igt@perf@global-sseu-config.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: [PASS][223] -> [FAIL][224] ([i915#4349])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-mtlp-8/igt@perf_pmu@busy-double-start@bcs0.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-2/igt@perf_pmu@busy-double-start@bcs0.html
* igt@perf_pmu@cpu-hotplug:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#8850])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-2/igt@perf_pmu@cpu-hotplug.html
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#8850])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-7/igt@perf_pmu@cpu-hotplug.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: [PASS][227] -> [FAIL][228] ([i915#6806])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-dg2-3/igt@perf_pmu@frequency@gt0.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-11/igt@perf_pmu@frequency@gt0.html
- shard-dg1: [PASS][229] -> [FAIL][230] ([i915#6806])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-dg1-16/igt@perf_pmu@frequency@gt0.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg1-13/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#5608] / [i915#8516])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-2/igt@perf_pmu@rc6-all-gts.html
* igt@prime_udl:
- shard-dg2: NOTRUN -> [SKIP][232] ([fdo#109291])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-6/igt@prime_udl.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#3291] / [i915#3708]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-11/igt@prime_vgem@basic-write.html
- shard-rkl: [PASS][234] -> [SKIP][235] ([fdo#109295] / [i915#3291] / [i915#3708])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@prime_vgem@basic-write.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-6/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#3708] / [i915#4077]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-2/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#3708])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg1-19/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#3708])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-11/igt@prime_vgem@fence-write-hang.html
* igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted-submitted:
- shard-dg2: NOTRUN -> [FAIL][239] ([i915#9583])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-3/igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted-submitted.html
- shard-rkl: NOTRUN -> [FAIL][240] ([i915#9583])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-7/igt@syncobj_timeline@invalid-multi-wait-available-unsubmitted-submitted.html
* igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted:
- shard-glk: NOTRUN -> [FAIL][241] ([i915#9582])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-glk9/igt@syncobj_timeline@invalid-single-wait-all-available-unsubmitted.html
* igt@tools_test@sysfs_l3_parity:
- shard-tglu: NOTRUN -> [SKIP][242] ([fdo#109307])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-tglu-9/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync:
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#2575]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg1-16/igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync.html
* igt@v3d/v3d_perfmon@create-perfmon-exceed:
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#2575]) +2 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-1/igt@v3d/v3d_perfmon@create-perfmon-exceed.html
* igt@v3d/v3d_submit_cl@valid-multisync-submission:
- shard-rkl: NOTRUN -> [SKIP][245] ([fdo#109315]) +3 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-4/igt@v3d/v3d_submit_cl@valid-multisync-submission.html
* igt@v3d/v3d_submit_csd@job-perfmon:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#2575]) +14 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-11/igt@v3d/v3d_submit_csd@job-perfmon.html
* igt@vc4/vc4_create_bo@create-bo-zeroed:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#7711]) +2 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-1/igt@vc4/vc4_create_bo@create-bo-zeroed.html
* igt@vc4/vc4_lookup_fail@bad-color-write:
- shard-glk: NOTRUN -> [SKIP][248] ([fdo#109271]) +70 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-glk8/igt@vc4/vc4_lookup_fail@bad-color-write.html
* igt@vc4/vc4_perfmon@create-single-perfmon:
- shard-snb: NOTRUN -> [SKIP][249] ([fdo#109271]) +49 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-snb6/igt@vc4/vc4_perfmon@create-single-perfmon.html
* igt@vc4/vc4_purgeable_bo@free-purged-bo:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#7711]) +4 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-3/igt@vc4/vc4_purgeable_bo@free-purged-bo.html
* igt@vc4/vc4_tiling@set-get:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#7711]) +11 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-6/igt@vc4/vc4_tiling@set-get.html
* igt@vc4/vc4_wait_bo@used-bo-1ns:
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#7711]) +1 other test skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg1-13/igt@vc4/vc4_wait_bo@used-bo-1ns.html
#### Possible fixes ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: [SKIP][253] ([i915#8411]) -> [PASS][254]
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-7/igt@api_intel_bb@object-reloc-keep-cache.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@drm_read@short-buffer-block:
- shard-rkl: [SKIP][255] ([i915#4098]) -> [PASS][256] +7 other tests pass
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@drm_read@short-buffer-block.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-2/igt@drm_read@short-buffer-block.html
* igt@fbdev@write:
- shard-rkl: [SKIP][257] ([i915#2582]) -> [PASS][258]
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@fbdev@write.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-1/igt@fbdev@write.html
* igt@gem_ctx_persistence@engines-hang@bcs0:
- shard-rkl: [SKIP][259] ([i915#6252]) -> [PASS][260]
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@gem_ctx_persistence@engines-hang@bcs0.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-7/igt@gem_ctx_persistence@engines-hang@bcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [FAIL][261] ([i915#2842]) -> [PASS][262] +1 other test pass
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_exec_reloc@basic-wc:
- shard-rkl: [SKIP][263] ([i915#3281]) -> [PASS][264] +13 other tests pass
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-1/igt@gem_exec_reloc@basic-wc.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@gem_exec_reloc@basic-wc.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][265] ([i915#5493]) -> [PASS][266]
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: [SKIP][267] ([i915#3282]) -> [PASS][268] +2 other tests pass
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-7/igt@gem_set_tiling_vs_pwrite.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_workarounds@suspend-resume:
- shard-mtlp: [ABORT][269] ([i915#9414]) -> [PASS][270] +1 other test pass
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-mtlp-1/igt@gem_workarounds@suspend-resume.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-7/igt@gem_workarounds@suspend-resume.html
* igt@gen9_exec_parse@allowed-all:
- shard-rkl: [SKIP][271] ([i915#2527]) -> [PASS][272] +3 other tests pass
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-2/igt@gen9_exec_parse@allowed-all.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@allowed-single:
- shard-apl: [INCOMPLETE][273] ([i915#5566]) -> [PASS][274]
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-apl1/igt@gen9_exec_parse@allowed-single.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-apl2/igt@gen9_exec_parse@allowed-single.html
- shard-glk: [INCOMPLETE][275] ([i915#5566]) -> [PASS][276]
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-glk8/igt@gen9_exec_parse@allowed-single.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-glk4/igt@gen9_exec_parse@allowed-single.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [INCOMPLETE][277] ([i915#9407]) -> [PASS][278]
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][279] ([i915#5138]) -> [PASS][280]
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: [FAIL][281] ([i915#3743]) -> [PASS][282] +1 other test pass
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-tglu-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
- shard-rkl: [SKIP][283] ([i915#1845] / [i915#4098]) -> [PASS][284] +27 other tests pass
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-7/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [FAIL][285] ([i915#2346]) -> [PASS][286]
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_draw_crc@draw-method-blt@xrgb8888-ytiled:
- shard-glk: [DMESG-WARN][287] -> [PASS][288]
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-glk7/igt@kms_draw_crc@draw-method-blt@xrgb8888-ytiled.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-glk5/igt@kms_draw_crc@draw-method-blt@xrgb8888-ytiled.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][289] ([i915#1849] / [i915#4098]) -> [PASS][290] +11 other tests pass
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-stridechange:
- shard-dg2: [FAIL][291] ([i915#6880]) -> [PASS][292]
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-stridechange.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-stridechange.html
* {igt@kms_plane@pixel-format@pipe-b}:
- shard-glk: [DMESG-FAIL][293] ([i915#118]) -> [PASS][294]
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-glk6/igt@kms_plane@pixel-format@pipe-b.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-glk1/igt@kms_plane@pixel-format@pipe-b.html
* {igt@kms_plane@planar-pixel-format-settings}:
- shard-rkl: [SKIP][295] ([i915#9581]) -> [PASS][296]
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@kms_plane@planar-pixel-format-settings.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-1/igt@kms_plane@planar-pixel-format-settings.html
* {igt@kms_pm_dc@dc9-dpms}:
- shard-tglu: [SKIP][297] ([i915#4281]) -> [PASS][298]
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html
* {igt@kms_pm_rpm@cursor-dpms}:
- shard-rkl: [SKIP][299] ([i915#1849]) -> [PASS][300]
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@kms_pm_rpm@cursor-dpms.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-7/igt@kms_pm_rpm@cursor-dpms.html
* {igt@kms_pm_rpm@modeset-non-lpsp-stress}:
- shard-dg1: [SKIP][301] ([i915#9519]) -> [PASS][302] +1 other test pass
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-dg1-19/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg1-16/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* {igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait}:
- shard-rkl: [SKIP][303] ([i915#9519]) -> [PASS][304]
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-tglu: [FAIL][305] ([i915#9196]) -> [PASS][306] +1 other test pass
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- shard-mtlp: [FAIL][307] ([i915#9196]) -> [PASS][308] +1 other test pass
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
* igt@perf@mi-rpc:
- shard-rkl: [SKIP][309] ([i915#2434]) -> [PASS][310]
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-4/igt@perf@mi-rpc.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@perf@mi-rpc.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [FAIL][311] ([i915#7484]) -> [PASS][312]
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-dg2-7/igt@perf@non-zero-reason@0-rcs0.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf_pmu@busy-double-start@rcs0:
- shard-mtlp: [FAIL][313] ([i915#4349]) -> [PASS][314]
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-mtlp-8/igt@perf_pmu@busy-double-start@rcs0.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [FAIL][315] ([i915#4349]) -> [PASS][316] +3 other tests pass
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@busy-idle@vcs0:
- shard-dg1: [FAIL][317] ([i915#4349]) -> [PASS][318] +2 other tests pass
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-dg1-19/igt@perf_pmu@busy-idle@vcs0.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-dg1-19/igt@perf_pmu@busy-idle@vcs0.html
* igt@perf_pmu@frequency@gt0:
- shard-mtlp: [SKIP][319] ([i915#9432]) -> [PASS][320]
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-mtlp-2/igt@perf_pmu@frequency@gt0.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-mtlp-3/igt@perf_pmu@frequency@gt0.html
- shard-glk: [SKIP][321] ([fdo#109271]) -> [PASS][322]
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-glk3/igt@perf_pmu@frequency@gt0.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-glk5/igt@perf_pmu@frequency@gt0.html
- shard-snb: [SKIP][323] ([fdo#109271]) -> [PASS][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-snb1/igt@perf_pmu@frequency@gt0.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-snb1/igt@perf_pmu@frequency@gt0.html
#### Warnings ####
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: [SKIP][325] ([i915#3555]) -> [SKIP][326] ([i915#7957])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_pread@exhaustion:
- shard-rkl: [SKIP][327] ([i915#3282]) -> [WARN][328] ([i915#2658])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-7/igt@gem_pread@exhaustion.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@gem_pread@exhaustion.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-snb: [INCOMPLETE][329] -> [DMESG-WARN][330] ([i915#8841])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-snb2/igt@i915_suspend@basic-s3-without-i915.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-snb6/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: [SKIP][331] ([i915#1769] / [i915#3555]) -> [SKIP][332] ([i915#1845] / [i915#4098])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: [SKIP][333] ([i915#4098]) -> [SKIP][334] ([i915#5286]) +3 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-1/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][335] ([i915#5286]) -> [SKIP][336] ([i915#1845] / [i915#4098]) +7 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: [SKIP][337] ([i915#1845] / [i915#4098]) -> [SKIP][338] ([fdo#111614] / [i915#3638]) +4 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-90.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][339] ([fdo#111614] / [i915#3638]) -> [SKIP][340] ([i915#1845] / [i915#4098]) +2 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-1/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-rkl: [SKIP][341] ([fdo#110723]) -> [SKIP][342] ([i915#1845] / [i915#4098]) +2 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-rkl: [SKIP][343] ([i915#1845] / [i915#4098]) -> [SKIP][344] ([fdo#110723]) +3 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-rkl: [SKIP][345] ([fdo#111615]) -> [SKIP][346] ([i915#1845] / [i915#4098])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_content_protection@atomic-dpms:
- shard-rkl: [SKIP][347] ([i915#1845] / [i915#4098]) -> [SKIP][348] ([i915#7118])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@kms_content_protection@atomic-dpms.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-2/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-rkl: [SKIP][349] ([i915#3116]) -> [SKIP][350] ([i915#1845] / [i915#4098])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-0.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: [SKIP][351] ([i915#1845] / [i915#4098]) -> [SKIP][352] ([i915#3116])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-1.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-7/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@type1:
- shard-rkl: [SKIP][353] ([i915#7118]) -> [SKIP][354] ([i915#1845] / [i915#4098]) +1 other test skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-2/igt@kms_content_protection@type1.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-rkl: [SKIP][355] ([i915#4098]) -> [SKIP][356] ([fdo#109279] / [i915#3359])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [SKIP][357] ([i915#4098]) -> [SKIP][358] ([i915#1845] / [i915#4098]) +7 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: [SKIP][359] ([i915#4098]) -> [SKIP][360] ([i915#3555]) +2 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-rkl: [SKIP][361] ([i915#3359]) -> [SKIP][362] ([i915#1845] / [i915#4098])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-1/igt@kms_cursor_crc@cursor-random-512x512.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-rkl: [SKIP][363] ([i915#4098]) -> [SKIP][364] ([i915#3359])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-rkl: [SKIP][365] ([i915#1845] / [i915#4098]) -> [SKIP][366] ([fdo#111825]) +2 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][367] ([fdo#111825]) -> [SKIP][368] ([i915#1845] / [i915#4098]) +4 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: [SKIP][369] ([i915#4103]) -> [SKIP][370] ([i915#1845] / [i915#4098])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-rkl: [SKIP][371] ([i915#1845] / [i915#4098]) -> [SKIP][372] ([i915#4103])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: [SKIP][373] ([i915#3555] / [i915#3840]) -> [SKIP][374] ([i915#4098]) +1 other test skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-1/igt@kms_dsc@dsc-basic.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: [SKIP][375] ([i915#3555] / [i915#3840]) -> [SKIP][376] ([i915#1845] / [i915#4098])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-2/igt@kms_dsc@dsc-with-formats.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_dsc@dsc-with-formats.html
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: [SKIP][377] ([fdo#111825]) -> [SKIP][378] ([i915#1849] / [i915#4098])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: [SKIP][379] ([i915#5439]) -> [SKIP][380] ([i915#1849] / [i915#4098])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: [SKIP][381] ([i915#1849] / [i915#4098]) -> [SKIP][382] ([i915#3023]) +20 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][383] ([fdo#111825] / [i915#1825]) -> [SKIP][384] ([i915#1849] / [i915#4098]) +41 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: [SKIP][385] ([i915#1849] / [i915#4098]) -> [SKIP][386] ([fdo#111825] / [i915#1825]) +33 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: [SKIP][387] ([i915#3023]) -> [SKIP][388] ([i915#1849] / [i915#4098]) +28 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: [SKIP][389] ([i915#1845] / [i915#4098]) -> [SKIP][390] ([i915#3555] / [i915#8228])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@kms_hdr@bpc-switch.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-7/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-rkl: [SKIP][391] ([i915#3555] / [i915#8228]) -> [SKIP][392] ([i915#4098])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-7/igt@kms_hdr@invalid-metadata-sizes.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][393] ([i915#4070] / [i915#4816]) -> [SKIP][394] ([i915#1839] / [i915#4070] / [i915#4816])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: [SKIP][395] ([i915#3555]) -> [SKIP][396] ([i915#1845] / [i915#4098]) +5 other tests skip
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-4/igt@kms_plane_multiple@tiling-yf.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-rkl: [SKIP][397] ([fdo#111825] / [i915#8152]) -> [SKIP][398] ([fdo#111825])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: [SKIP][399] ([i915#4098]) -> [SKIP][400] ([i915#5289])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: [SKIP][401] ([fdo#111615] / [i915#5289]) -> [SKIP][402] ([i915#1845] / [i915#4098]) +1 other test skip
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: [SKIP][403] ([i915#1845] / [i915#4098]) -> [SKIP][404] ([fdo#111615] / [i915#5289])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13846/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
[fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#2724]: https://gitlab.freedesktop.org/drm/intel/issues/2724
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6892]: https://gitlab.freedesktop.org/drm/intel/issues/6892
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484
[i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957
[i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8825]: https://gitlab.freedesktop.org/drm/intel/issues/8825
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850
[i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261
[i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
[i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
[i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340
[i915#9407]: https://gitlab.freedesktop.org/drm/intel/issues/9407
[i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424
[i915#9432]: https://gitlab.freedesktop.org/drm/intel/issues/9432
[i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9581]: https://gitlab.freedesktop.org/drm/intel/issues/9581
[i915#9582]: https://gitlab.freedesktop.org/drm/intel/issues/9582
[i915#9583]: https://gitlab.freedesktop.org/drm/intel/issues/9583
[i915#9591]: https://gitlab.freedesktop.org/drm/intel/issues/9591
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7575 -> IGTPW_10131
CI-20190529: 20190529
CI_DRM_13846: 8381a59e1809d7b35b7f19e0dde04e8ceec4cd92 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10131: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/index.html
IGT_7575: 6edf8b6808de2bde968415926d2b55817f7ea1de @ https://gitlab.free
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10131/index.html
[-- Attachment #2: Type: text/html, Size: 126415 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread