* [igt-dev] [PATCH i-g-t] include/drm-uapi: Update to latest i915_drm.h from drm-next
@ 2023-09-22 21:19 Ashutosh Dixit
2023-09-22 22:15 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Ashutosh Dixit @ 2023-09-22 21:19 UTC (permalink / raw)
To: igt-dev
Update to the latest version of the drm uapi header file from
drm-next (https://anongit.freedesktop.org/git/drm/drm):
commit f107ff76a8c242b298413ef52db9978dc3fe0153
Merge: ce9ecca0238b1 15d30b46573d7
Author: Dave Airlie <airlied@redhat.com>
Date: Fri Sep 22 16:28:29 2023 +1000
Merge tag 'drm-misc-next-2023-09-11-1' of
git://anongit.freedesktop.org/drm/drm-misc into drm-next
drm-misc-next for v6.7-rc1:
Also remove duplicated declarations from lib/i915/i915_drm_local.h
Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
---
include/drm-uapi/i915_drm.h | 377 ++++++++++++++++++++++++++++--------
lib/i915/i915_drm_local.h | 55 ------
2 files changed, 301 insertions(+), 131 deletions(-)
diff --git a/include/drm-uapi/i915_drm.h b/include/drm-uapi/i915_drm.h
index a0876ee41323..0a5c81445528 100644
--- a/include/drm-uapi/i915_drm.h
+++ b/include/drm-uapi/i915_drm.h
@@ -280,7 +280,16 @@ enum drm_i915_pmu_engine_sample {
#define I915_PMU_ENGINE_SEMA(class, instance) \
__I915_PMU_ENGINE(class, instance, I915_SAMPLE_SEMA)
-#define __I915_PMU_OTHER(x) (__I915_PMU_ENGINE(0xff, 0xff, 0xf) + 1 + (x))
+/*
+ * Top 4 bits of every non-engine counter are GT id.
+ */
+#define __I915_PMU_GT_SHIFT (60)
+
+#define ___I915_PMU_OTHER(gt, x) \
+ (((__u64)__I915_PMU_ENGINE(0xff, 0xff, 0xf) + 1 + (x)) | \
+ ((__u64)(gt) << __I915_PMU_GT_SHIFT))
+
+#define __I915_PMU_OTHER(x) ___I915_PMU_OTHER(0, x)
#define I915_PMU_ACTUAL_FREQUENCY __I915_PMU_OTHER(0)
#define I915_PMU_REQUESTED_FREQUENCY __I915_PMU_OTHER(1)
@@ -290,6 +299,12 @@ enum drm_i915_pmu_engine_sample {
#define I915_PMU_LAST /* Deprecated - do not use */ I915_PMU_RC6_RESIDENCY
+#define __I915_PMU_ACTUAL_FREQUENCY(gt) ___I915_PMU_OTHER(gt, 0)
+#define __I915_PMU_REQUESTED_FREQUENCY(gt) ___I915_PMU_OTHER(gt, 1)
+#define __I915_PMU_INTERRUPTS(gt) ___I915_PMU_OTHER(gt, 2)
+#define __I915_PMU_RC6_RESIDENCY(gt) ___I915_PMU_OTHER(gt, 3)
+#define __I915_PMU_SOFTWARE_GT_AWAKE_TIME(gt) ___I915_PMU_OTHER(gt, 4)
+
/* Each region is a minimum of 16k, and there are at most 255 of them.
*/
#define I915_NR_TEX_REGIONS 255 /* table size 2k - maximum due to use
@@ -645,6 +660,23 @@ typedef struct drm_i915_irq_wait {
*/
#define I915_SCHEDULER_CAP_STATIC_PRIORITY_MAP (1ul << 5)
+/*
+ * Query the status of HuC load.
+ *
+ * The query can fail in the following scenarios with the listed error codes:
+ * -ENODEV if HuC is not present on this platform,
+ * -EOPNOTSUPP if HuC firmware usage is disabled,
+ * -ENOPKG if HuC firmware fetch failed,
+ * -ENOEXEC if HuC firmware is invalid or mismatched,
+ * -ENOMEM if i915 failed to prepare the FW objects for transfer to the uC,
+ * -EIO if the FW transfer or the FW authentication failed.
+ *
+ * If the IOCTL is successful, the returned parameter will be set to one of the
+ * following values:
+ * * 0 if HuC firmware load is not complete,
+ * * 1 if HuC firmware is loaded and fully authenticated,
+ * * 2 if HuC firmware is loaded and authenticated for clear media only
+ */
#define I915_PARAM_HUC_STATUS 42
/* Query whether DRM_I915_GEM_EXECBUFFER2 supports the ability to opt-out of
@@ -755,16 +787,48 @@ typedef struct drm_i915_irq_wait {
*/
#define I915_PARAM_OA_TIMESTAMP_FREQUENCY 57
+/*
+ * Query the status of PXP support in i915.
+ *
+ * The query can fail in the following scenarios with the listed error codes:
+ * -ENODEV = PXP support is not available on the GPU device or in the
+ * kernel due to missing component drivers or kernel configs.
+ *
+ * If the IOCTL is successful, the returned parameter will be set to one of
+ * the following values:
+ * 1 = PXP feature is supported and is ready for use.
+ * 2 = PXP feature is supported but should be ready soon (pending
+ * initialization of non-i915 system dependencies).
+ *
+ * NOTE: When param is supported (positive return values), user space should
+ * still refer to the GEM PXP context-creation UAPI header specs to be
+ * aware of possible failure due to system state machine at the time.
+ */
+#define I915_PARAM_PXP_STATUS 58
+
/* Must be kept compact -- no holes and well documented */
-typedef struct drm_i915_getparam {
+/**
+ * struct drm_i915_getparam - Driver parameter query structure.
+ */
+struct drm_i915_getparam {
+ /** @param: Driver parameter to query. */
__s32 param;
- /*
+
+ /**
+ * @value: Address of memory where queried value should be put.
+ *
* WARNING: Using pointers instead of fixed-size u64 means we need to write
* compat32 code. Don't repeat this mistake.
*/
int *value;
-} drm_i915_getparam_t;
+};
+
+/**
+ * typedef drm_i915_getparam_t - Driver parameter query structure.
+ * See struct drm_i915_getparam.
+ */
+typedef struct drm_i915_getparam drm_i915_getparam_t;
/* Ioctl to set kernel params:
*/
@@ -1245,76 +1309,119 @@ struct drm_i915_gem_exec_object2 {
__u64 rsvd2;
};
+/**
+ * struct drm_i915_gem_exec_fence - An input or output fence for the execbuf
+ * ioctl.
+ *
+ * The request will wait for input fence to signal before submission.
+ *
+ * The returned output fence will be signaled after the completion of the
+ * request.
+ */
struct drm_i915_gem_exec_fence {
- /**
- * User's handle for a drm_syncobj to wait on or signal.
- */
+ /** @handle: User's handle for a drm_syncobj to wait on or signal. */
__u32 handle;
+ /**
+ * @flags: Supported flags are:
+ *
+ * I915_EXEC_FENCE_WAIT:
+ * Wait for the input fence before request submission.
+ *
+ * I915_EXEC_FENCE_SIGNAL:
+ * Return request completion fence as output
+ */
+ __u32 flags;
#define I915_EXEC_FENCE_WAIT (1<<0)
#define I915_EXEC_FENCE_SIGNAL (1<<1)
#define __I915_EXEC_FENCE_UNKNOWN_FLAGS (-(I915_EXEC_FENCE_SIGNAL << 1))
- __u32 flags;
};
-/*
- * See drm_i915_gem_execbuffer_ext_timeline_fences.
- */
-#define DRM_I915_GEM_EXECBUFFER_EXT_TIMELINE_FENCES 0
-
-/*
+/**
+ * struct drm_i915_gem_execbuffer_ext_timeline_fences - Timeline fences
+ * for execbuf ioctl.
+ *
* This structure describes an array of drm_syncobj and associated points for
* timeline variants of drm_syncobj. It is invalid to append this structure to
* the execbuf if I915_EXEC_FENCE_ARRAY is set.
*/
struct drm_i915_gem_execbuffer_ext_timeline_fences {
+#define DRM_I915_GEM_EXECBUFFER_EXT_TIMELINE_FENCES 0
+ /** @base: Extension link. See struct i915_user_extension. */
struct i915_user_extension base;
/**
- * Number of element in the handles_ptr & value_ptr arrays.
+ * @fence_count: Number of elements in the @handles_ptr & @value_ptr
+ * arrays.
*/
__u64 fence_count;
/**
- * Pointer to an array of struct drm_i915_gem_exec_fence of length
- * fence_count.
+ * @handles_ptr: Pointer to an array of struct drm_i915_gem_exec_fence
+ * of length @fence_count.
*/
__u64 handles_ptr;
/**
- * Pointer to an array of u64 values of length fence_count. Values
- * must be 0 for a binary drm_syncobj. A Value of 0 for a timeline
- * drm_syncobj is invalid as it turns a drm_syncobj into a binary one.
+ * @values_ptr: Pointer to an array of u64 values of length
+ * @fence_count.
+ * Values must be 0 for a binary drm_syncobj. A Value of 0 for a
+ * timeline drm_syncobj is invalid as it turns a drm_syncobj into a
+ * binary one.
*/
__u64 values_ptr;
};
+/**
+ * struct drm_i915_gem_execbuffer2 - Structure for DRM_I915_GEM_EXECBUFFER2
+ * ioctl.
+ */
struct drm_i915_gem_execbuffer2 {
- /**
- * List of gem_exec_object2 structs
- */
+ /** @buffers_ptr: Pointer to a list of gem_exec_object2 structs */
__u64 buffers_ptr;
+
+ /** @buffer_count: Number of elements in @buffers_ptr array */
__u32 buffer_count;
- /** Offset in the batchbuffer to start execution from. */
+ /**
+ * @batch_start_offset: Offset in the batchbuffer to start execution
+ * from.
+ */
__u32 batch_start_offset;
- /** Bytes used in batchbuffer from batch_start_offset */
+
+ /**
+ * @batch_len: Length in bytes of the batch buffer, starting from the
+ * @batch_start_offset. If 0, length is assumed to be the batch buffer
+ * object size.
+ */
__u32 batch_len;
+
+ /** @DR1: deprecated */
__u32 DR1;
+
+ /** @DR4: deprecated */
__u32 DR4;
+
+ /** @num_cliprects: See @cliprects_ptr */
__u32 num_cliprects;
+
/**
- * This is a struct drm_clip_rect *cliprects if I915_EXEC_FENCE_ARRAY
- * & I915_EXEC_USE_EXTENSIONS are not set.
+ * @cliprects_ptr: Kernel clipping was a DRI1 misfeature.
+ *
+ * It is invalid to use this field if I915_EXEC_FENCE_ARRAY or
+ * I915_EXEC_USE_EXTENSIONS flags are not set.
*
* If I915_EXEC_FENCE_ARRAY is set, then this is a pointer to an array
- * of struct drm_i915_gem_exec_fence and num_cliprects is the length
- * of the array.
+ * of &drm_i915_gem_exec_fence and @num_cliprects is the length of the
+ * array.
*
* If I915_EXEC_USE_EXTENSIONS is set, then this is a pointer to a
- * single struct i915_user_extension and num_cliprects is 0.
+ * single &i915_user_extension and num_cliprects is 0.
*/
__u64 cliprects_ptr;
+
+ /** @flags: Execbuf flags */
+ __u64 flags;
#define I915_EXEC_RING_MASK (0x3f)
#define I915_EXEC_DEFAULT (0<<0)
#define I915_EXEC_RENDER (1<<0)
@@ -1332,10 +1439,6 @@ struct drm_i915_gem_execbuffer2 {
#define I915_EXEC_CONSTANTS_REL_GENERAL (0<<6) /* default */
#define I915_EXEC_CONSTANTS_ABSOLUTE (1<<6)
#define I915_EXEC_CONSTANTS_REL_SURFACE (2<<6) /* gen4/5 only */
- __u64 flags;
- __u64 rsvd1; /* now used for context info */
- __u64 rsvd2;
-};
/** Resets the SO write offset registers for transform feedback on gen7. */
#define I915_EXEC_GEN7_SOL_RESET (1<<8)
@@ -1438,9 +1541,23 @@ struct drm_i915_gem_execbuffer2 {
* drm_i915_gem_execbuffer_ext enum.
*/
#define I915_EXEC_USE_EXTENSIONS (1 << 21)
-
#define __I915_EXEC_UNKNOWN_FLAGS (-(I915_EXEC_USE_EXTENSIONS << 1))
+ /** @rsvd1: Context id */
+ __u64 rsvd1;
+
+ /**
+ * @rsvd2: in and out sync_file file descriptors.
+ *
+ * When I915_EXEC_FENCE_IN or I915_EXEC_FENCE_SUBMIT flag is set, the
+ * lower 32 bits of this field will have the in sync_file fd (input).
+ *
+ * When I915_EXEC_FENCE_OUT flag is set, the upper 32 bits of this
+ * field will have the out sync_file fd (output).
+ */
+ __u64 rsvd2;
+};
+
#define I915_EXEC_CONTEXT_ID_MASK (0xffffffff)
#define i915_execbuffer2_set_context_id(eb2, context) \
(eb2).rsvd1 = context & I915_EXEC_CONTEXT_ID_MASK
@@ -1820,19 +1937,58 @@ struct drm_i915_gem_context_create {
__u32 pad;
};
+/**
+ * struct drm_i915_gem_context_create_ext - Structure for creating contexts.
+ */
struct drm_i915_gem_context_create_ext {
- __u32 ctx_id; /* output: id of new context*/
+ /** @ctx_id: Id of the created context (output) */
+ __u32 ctx_id;
+
+ /**
+ * @flags: Supported flags are:
+ *
+ * I915_CONTEXT_CREATE_FLAGS_USE_EXTENSIONS:
+ *
+ * Extensions may be appended to this structure and driver must check
+ * for those. See @extensions.
+ *
+ * I915_CONTEXT_CREATE_FLAGS_SINGLE_TIMELINE
+ *
+ * Created context will have single timeline.
+ */
__u32 flags;
#define I915_CONTEXT_CREATE_FLAGS_USE_EXTENSIONS (1u << 0)
#define I915_CONTEXT_CREATE_FLAGS_SINGLE_TIMELINE (1u << 1)
#define I915_CONTEXT_CREATE_FLAGS_UNKNOWN \
(-(I915_CONTEXT_CREATE_FLAGS_SINGLE_TIMELINE << 1))
+
+ /**
+ * @extensions: Zero-terminated chain of extensions.
+ *
+ * I915_CONTEXT_CREATE_EXT_SETPARAM:
+ * Context parameter to set or query during context creation.
+ * See struct drm_i915_gem_context_create_ext_setparam.
+ *
+ * I915_CONTEXT_CREATE_EXT_CLONE:
+ * This extension has been removed. On the off chance someone somewhere
+ * has attempted to use it, never re-use this extension number.
+ */
__u64 extensions;
+#define I915_CONTEXT_CREATE_EXT_SETPARAM 0
+#define I915_CONTEXT_CREATE_EXT_CLONE 1
};
+/**
+ * struct drm_i915_gem_context_param - Context parameter to set or query.
+ */
struct drm_i915_gem_context_param {
+ /** @ctx_id: Context id */
__u32 ctx_id;
+
+ /** @size: Size of the parameter @value */
__u32 size;
+
+ /** @param: Parameter to set or query */
__u64 param;
#define I915_CONTEXT_PARAM_BAN_PERIOD 0x1
/* I915_CONTEXT_PARAM_NO_ZEROMAP has been removed. On the off chance
@@ -1975,10 +2131,26 @@ struct drm_i915_gem_context_param {
*
* -ENODEV: feature not available
* -EPERM: trying to mark a recoverable or not bannable context as protected
+ * -ENXIO: A dependency such as a component driver or firmware is not yet
+ * loaded so user space may need to attempt again. Depending on the
+ * device, this error may be reported if protected context creation is
+ * attempted very early after kernel start because the internal timeout
+ * waiting for such dependencies is not guaranteed to be larger than
+ * required (numbers differ depending on system and kernel config):
+ * - ADL/RPL: dependencies may take up to 3 seconds from kernel start
+ * while context creation internal timeout is 250 milisecs
+ * - MTL: dependencies may take up to 8 seconds from kernel start
+ * while context creation internal timeout is 250 milisecs
+ * NOTE: such dependencies happen once, so a subsequent call to create a
+ * protected context after a prior successful call will not experience
+ * such timeouts and will not return -ENXIO (unless the driver is reloaded,
+ * or, depending on the device, resumes from a suspended state).
+ * -EIO: The firmware did not succeed in creating the protected context.
*/
#define I915_CONTEXT_PARAM_PROTECTED_CONTENT 0xd
/* Must be kept compact -- no holes and well documented */
+ /** @value: Context parameter value to be set or queried */
__u64 value;
};
@@ -2129,7 +2301,7 @@ struct i915_context_engines_load_balance {
__u64 mbz64; /* reserved for future use; must be zero */
- struct i915_engine_class_instance engines[0];
+ struct i915_engine_class_instance engines[];
} __attribute__((packed));
#define I915_DEFINE_CONTEXT_ENGINES_LOAD_BALANCE(name__, N__) struct { \
@@ -2167,7 +2339,7 @@ struct i915_context_engines_bond {
__u64 flags; /* all undefined flags must be zero */
__u64 mbz64[4]; /* reserved for future use; must be zero */
- struct i915_engine_class_instance engines[0];
+ struct i915_engine_class_instance engines[];
} __attribute__((packed));
#define I915_DEFINE_CONTEXT_ENGINES_BOND(name__, N__) struct { \
@@ -2294,7 +2466,7 @@ struct i915_context_engines_parallel_submit {
* length = width (i) * num_siblings (j)
* index = j + i * num_siblings
*/
- struct i915_engine_class_instance engines[0];
+ struct i915_engine_class_instance engines[];
} __attribute__((packed));
@@ -2369,7 +2541,7 @@ struct i915_context_param_engines {
#define I915_CONTEXT_ENGINES_EXT_LOAD_BALANCE 0 /* see i915_context_engines_load_balance */
#define I915_CONTEXT_ENGINES_EXT_BOND 1 /* see i915_context_engines_bond */
#define I915_CONTEXT_ENGINES_EXT_PARALLEL_SUBMIT 2 /* see i915_context_engines_parallel_submit */
- struct i915_engine_class_instance engines[0];
+ struct i915_engine_class_instance engines[];
} __attribute__((packed));
#define I915_DEFINE_CONTEXT_PARAM_ENGINES(name__, N__) struct { \
@@ -2377,23 +2549,29 @@ struct i915_context_param_engines {
struct i915_engine_class_instance engines[N__]; \
} __attribute__((packed)) name__
+/**
+ * struct drm_i915_gem_context_create_ext_setparam - Context parameter
+ * to set or query during context creation.
+ */
struct drm_i915_gem_context_create_ext_setparam {
-#define I915_CONTEXT_CREATE_EXT_SETPARAM 0
+ /** @base: Extension link. See struct i915_user_extension. */
struct i915_user_extension base;
+
+ /**
+ * @param: Context parameter to set or query.
+ * See struct drm_i915_gem_context_param.
+ */
struct drm_i915_gem_context_param param;
};
-/* This API has been removed. On the off chance someone somewhere has
- * attempted to use it, never re-use this extension number.
- */
-#define I915_CONTEXT_CREATE_EXT_CLONE 1
-
struct drm_i915_gem_context_destroy {
__u32 ctx_id;
__u32 pad;
};
-/*
+/**
+ * struct drm_i915_gem_vm_control - Structure to create or destroy VM.
+ *
* DRM_I915_GEM_VM_CREATE -
*
* Create a new virtual memory address space (ppGTT) for use within a context
@@ -2403,20 +2581,23 @@ struct drm_i915_gem_context_destroy {
* The id of new VM (bound to the fd) for use with I915_CONTEXT_PARAM_VM is
* returned in the outparam @id.
*
- * No flags are defined, with all bits reserved and must be zero.
- *
* An extension chain maybe provided, starting with @extensions, and terminated
* by the @next_extension being 0. Currently, no extensions are defined.
*
* DRM_I915_GEM_VM_DESTROY -
*
- * Destroys a previously created VM id, specified in @id.
+ * Destroys a previously created VM id, specified in @vm_id.
*
* No extensions or flags are allowed currently, and so must be zero.
*/
struct drm_i915_gem_vm_control {
+ /** @extensions: Zero-terminated chain of extensions. */
__u64 extensions;
+
+ /** @flags: reserved for future usage, currently MBZ */
__u32 flags;
+
+ /** @vm_id: Id of the VM created or to be destroyed */
__u32 vm_id;
};
@@ -2631,6 +2812,25 @@ enum drm_i915_perf_property_id {
*/
DRM_I915_PERF_PROP_POLL_OA_PERIOD,
+ /**
+ * Multiple engines may be mapped to the same OA unit. The OA unit is
+ * identified by class:instance of any engine mapped to it.
+ *
+ * This parameter specifies the engine class and must be passed along
+ * with DRM_I915_PERF_PROP_OA_ENGINE_INSTANCE.
+ *
+ * This property is available in perf revision 6.
+ */
+ DRM_I915_PERF_PROP_OA_ENGINE_CLASS,
+
+ /**
+ * This parameter specifies the engine instance and must be passed along
+ * with DRM_I915_PERF_PROP_OA_ENGINE_CLASS.
+ *
+ * This property is available in perf revision 6.
+ */
+ DRM_I915_PERF_PROP_OA_ENGINE_INSTANCE,
+
DRM_I915_PERF_PROP_MAX /* non-ABI */
};
@@ -3392,27 +3592,13 @@ struct drm_i915_gem_create_ext {
*
* The (page-aligned) allocated size for the object will be returned.
*
- * DG2 64K min page size implications:
- *
- * On discrete platforms, starting from DG2, we have to contend with GTT
- * page size restrictions when dealing with I915_MEMORY_CLASS_DEVICE
- * objects. Specifically the hardware only supports 64K or larger GTT
- * page sizes for such memory. The kernel will already ensure that all
- * I915_MEMORY_CLASS_DEVICE memory is allocated using 64K or larger page
- * sizes underneath.
- *
- * Note that the returned size here will always reflect any required
- * rounding up done by the kernel, i.e 4K will now become 64K on devices
- * such as DG2. The kernel will always select the largest minimum
- * page-size for the set of possible placements as the value to use when
- * rounding up the @size.
- *
- * Special DG2 GTT address alignment requirement:
+ * On platforms like DG2/ATS the kernel will always use 64K or larger
+ * pages for I915_MEMORY_CLASS_DEVICE. The kernel also requires a
+ * minimum of 64K GTT alignment for such objects.
*
- * The GTT alignment will also need to be at least 2M for such objects.
- *
- * Note that due to how the hardware implements 64K GTT page support, we
- * have some further complications:
+ * NOTE: Previously the ABI here required a minimum GTT alignment of 2M
+ * on DG2/ATS, due to how the hardware implemented 64K GTT page support,
+ * where we had the following complications:
*
* 1) The entire PDE (which covers a 2MB virtual address range), must
* contain only 64K PTEs, i.e mixing 4K and 64K PTEs in the same
@@ -3421,12 +3607,10 @@ struct drm_i915_gem_create_ext {
* 2) We still need to support 4K PTEs for I915_MEMORY_CLASS_SYSTEM
* objects.
*
- * To keep things simple for userland, we mandate that any GTT mappings
- * must be aligned to and rounded up to 2MB. The kernel will internally
- * pad them out to the next 2MB boundary. As this only wastes virtual
- * address space and avoids userland having to copy any needlessly
- * complicated PDE sharing scheme (coloring) and only affects DG2, this
- * is deemed to be a good compromise.
+ * However on actual production HW this was completely changed to now
+ * allow setting a TLB hint at the PTE level (see PS64), which is a lot
+ * more flexible than the above. With this the 2M restriction was
+ * dropped where we now only require 64K.
*/
__u64 size;
@@ -3496,9 +3680,13 @@ struct drm_i915_gem_create_ext {
*
* For I915_GEM_CREATE_EXT_PROTECTED_CONTENT usage see
* struct drm_i915_gem_create_ext_protected_content.
+ *
+ * For I915_GEM_CREATE_EXT_SET_PAT usage see
+ * struct drm_i915_gem_create_ext_set_pat.
*/
#define I915_GEM_CREATE_EXT_MEMORY_REGIONS 0
#define I915_GEM_CREATE_EXT_PROTECTED_CONTENT 1
+#define I915_GEM_CREATE_EXT_SET_PAT 2
__u64 extensions;
};
@@ -3613,6 +3801,43 @@ struct drm_i915_gem_create_ext_protected_content {
__u32 flags;
};
+/**
+ * struct drm_i915_gem_create_ext_set_pat - The
+ * I915_GEM_CREATE_EXT_SET_PAT extension.
+ *
+ * If this extension is provided, the specified caching policy (PAT index) is
+ * applied to the buffer object.
+ *
+ * Below is an example on how to create an object with specific caching policy:
+ *
+ * .. code-block:: C
+ *
+ * struct drm_i915_gem_create_ext_set_pat set_pat_ext = {
+ * .base = { .name = I915_GEM_CREATE_EXT_SET_PAT },
+ * .pat_index = 0,
+ * };
+ * struct drm_i915_gem_create_ext create_ext = {
+ * .size = PAGE_SIZE,
+ * .extensions = (uintptr_t)&set_pat_ext,
+ * };
+ *
+ * int err = ioctl(fd, DRM_IOCTL_I915_GEM_CREATE_EXT, &create_ext);
+ * if (err) ...
+ */
+struct drm_i915_gem_create_ext_set_pat {
+ /** @base: Extension link. See struct i915_user_extension. */
+ struct i915_user_extension base;
+ /**
+ * @pat_index: PAT index to be set
+ * PAT index is a bit field in Page Table Entry to control caching
+ * behaviors for GPU accesses. The definition of PAT index is
+ * platform dependent and can be found in hardware specifications,
+ */
+ __u32 pat_index;
+ /** @rsvd: reserved for future use */
+ __u32 rsvd;
+};
+
/* ID of the protected content session managed by i915 when PXP is active */
#define I915_PROTECTED_CONTENT_DEFAULT_SESSION 0xf
diff --git a/lib/i915/i915_drm_local.h b/lib/i915/i915_drm_local.h
index 0f47578c636d..dd646aedf497 100644
--- a/lib/i915/i915_drm_local.h
+++ b/lib/i915/i915_drm_local.h
@@ -19,61 +19,6 @@ extern "C" {
* or local_ prefix and without any #ifndef's. Attempt should be made to
* clean these up when kernel uapi headers are sync'd.
*/
-#define I915_ENGINE_CLASS_COMPUTE 4
-
-#define DRM_I915_QUERY_GEOMETRY_SUBSLICES 6
-
-#define DRM_I915_PERF_PROP_OA_ENGINE_CLASS 9
-#define DRM_I915_PERF_PROP_OA_ENGINE_INSTANCE 10
-
-/*
- * Top 4 bits of every non-engine counter are GT id.
- */
-#define __I915_PMU_GT_SHIFT (60)
-
-#define ___I915_PMU_OTHER(gt, x) \
- (((__u64)__I915_PMU_ENGINE(0xff, 0xff, 0xf) + 1 + (x)) | \
- ((__u64)(gt) << __I915_PMU_GT_SHIFT))
-
-#define __I915_PMU_ACTUAL_FREQUENCY(gt) ___I915_PMU_OTHER(gt, 0)
-#define __I915_PMU_REQUESTED_FREQUENCY(gt) ___I915_PMU_OTHER(gt, 1)
-#define __I915_PMU_INTERRUPTS(gt) ___I915_PMU_OTHER(gt, 2)
-#define __I915_PMU_RC6_RESIDENCY(gt) ___I915_PMU_OTHER(gt, 3)
-#define __I915_PMU_SOFTWARE_GT_AWAKE_TIME(gt) ___I915_PMU_OTHER(gt, 4)
-
-#define I915_GEM_CREATE_EXT_SET_PAT 2
-
-/**
- * struct drm_i915_gem_create_ext_set_pat - The
- * I915_GEM_CREATE_EXT_SET_PAT extension.
- *
- * If this extension is provided, the specified caching policy (PAT index) is
- * applied to the buffer object.
- *
- * Below is an example on how to create an object with specific caching policy:
- *
- * .. code-block:: C
- *
- * struct drm_i915_gem_create_ext_set_pat set_pat_ext = {
- * .base = { .name = I915_GEM_CREATE_EXT_SET_PAT },
- * .pat_index = 0,
- * };
- * struct drm_i915_gem_create_ext create_ext = {
- * .size = PAGE_SIZE,
- * .extensions = (uintptr_t)&set_pat_ext,
- * };
- *
- * int err = ioctl(fd, DRM_IOCTL_I915_GEM_CREATE_EXT, &create_ext);
- * if (err) ...
- */
-struct drm_i915_gem_create_ext_set_pat {
- /** @base: Extension link. See struct i915_user_extension. */
- struct i915_user_extension base;
- /** @pat_index: PAT index to be set */
- __u32 pat_index;
- /** @rsvd: reserved for future use */
- __u32 rsvd;
-};
#if defined(__cplusplus)
}
--
2.41.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* [igt-dev] ✓ Fi.CI.BAT: success for include/drm-uapi: Update to latest i915_drm.h from drm-next 2023-09-22 21:19 [igt-dev] [PATCH i-g-t] include/drm-uapi: Update to latest i915_drm.h from drm-next Ashutosh Dixit @ 2023-09-22 22:15 ` Patchwork 2023-09-22 22:43 ` [igt-dev] ✓ CI.xeBAT: " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-09-22 22:15 UTC (permalink / raw) To: Ashutosh Dixit; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8447 bytes --] == Series Details == Series: include/drm-uapi: Update to latest i915_drm.h from drm-next URL : https://patchwork.freedesktop.org/series/124144/ State : success == Summary == CI Bug Log - changes from IGT_7499 -> IGTPW_9857 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/index.html Participating hosts (39 -> 38) ------------------------------ Additional (1): bat-dg2-8 Missing (2): fi-hsw-4770 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9857 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_parallel@engines@userptr: - bat-mtlp-6: [PASS][1] -> [ABORT][2] ([i915#9262]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/bat-mtlp-6/igt@gem_exec_parallel@engines@userptr.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/bat-mtlp-6/igt@gem_exec_parallel@engines@userptr.html * igt@gem_mmap@basic: - bat-dg2-8: NOTRUN -> [SKIP][3] ([i915#4083]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/bat-dg2-8/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic: - bat-dg2-8: NOTRUN -> [SKIP][4] ([i915#4077]) +2 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/bat-dg2-8/igt@gem_mmap_gtt@basic.html * igt@gem_tiled_pread_basic: - bat-dg2-8: NOTRUN -> [SKIP][5] ([i915#4079]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/bat-dg2-8/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-dg2-8: NOTRUN -> [SKIP][6] ([i915#6621]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/bat-dg2-8/igt@i915_pm_rps@basic-api.html * igt@i915_suspend@basic-s2idle-without-i915: - fi-rkl-11600: [PASS][7] -> [FAIL][8] ([fdo#103375]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/fi-rkl-11600/igt@i915_suspend@basic-s2idle-without-i915.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/fi-rkl-11600/igt@i915_suspend@basic-s2idle-without-i915.html * igt@i915_suspend@basic-s3-without-i915: - bat-dg2-8: NOTRUN -> [SKIP][9] ([i915#6645]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/bat-dg2-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-8: NOTRUN -> [SKIP][10] ([i915#5190]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/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][11] ([i915#4215] / [i915#5190]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/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][12] ([i915#4212]) +6 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/bat-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@tile-pitch-mismatch: - bat-dg2-8: NOTRUN -> [SKIP][13] ([i915#4212] / [i915#5608]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/bat-dg2-8/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-dg2-8: NOTRUN -> [SKIP][14] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/bat-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg2-8: NOTRUN -> [SKIP][15] ([fdo#109285]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/bat-dg2-8/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-8: NOTRUN -> [SKIP][16] ([i915#5274]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][17] ([i915#1845]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_psr@cursor_plane_move: - bat-dg2-8: NOTRUN -> [SKIP][18] ([i915#1072]) +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/bat-dg2-8/igt@kms_psr@cursor_plane_move.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg2-8: NOTRUN -> [SKIP][19] ([i915#3555]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/bat-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg2-8: NOTRUN -> [SKIP][20] ([i915#3708]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/bat-dg2-8/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-dg2-8: NOTRUN -> [SKIP][21] ([i915#3708] / [i915#4077]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/bat-dg2-8/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-write: - bat-dg2-8: NOTRUN -> [SKIP][22] ([i915#3291] / [i915#3708]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/bat-dg2-8/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@kms_frontbuffer_tracking@basic: - fi-bsw-nick: [FAIL][23] ([i915#9276]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/fi-bsw-nick/igt@kms_frontbuffer_tracking@basic.html * igt@kms_hdmi_inject@inject-audio: - fi-kbl-guc: [FAIL][25] ([IGT#3]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.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#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9276]: https://gitlab.freedesktop.org/drm/intel/issues/9276 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7499 -> IGTPW_9857 CI-20190529: 20190529 CI_DRM_13671: e1973de2c4516e9130157e538014e79c8aa57b41 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9857: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/index.html IGT_7499: d991240f6c6751e9480456c20de785cfc6e6ff15 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/index.html [-- Attachment #2: Type: text/html, Size: 9945 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for include/drm-uapi: Update to latest i915_drm.h from drm-next 2023-09-22 21:19 [igt-dev] [PATCH i-g-t] include/drm-uapi: Update to latest i915_drm.h from drm-next Ashutosh Dixit 2023-09-22 22:15 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-09-22 22:43 ` Patchwork 2023-09-24 2:40 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-09-26 16:32 ` [igt-dev] [PATCH i-g-t] " Kamil Konieczny 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-09-22 22:43 UTC (permalink / raw) To: Ashutosh Dixit; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2763 bytes --] == Series Details == Series: include/drm-uapi: Update to latest i915_drm.h from drm-next URL : https://patchwork.freedesktop.org/series/124144/ State : success == Summary == CI Bug Log - changes from XEIGT_7499_BAT -> XEIGTPW_9857_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_9857_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1: - bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#480]) +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7499/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9857/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html * igt@xe_module_load@load: - bat-dg2-oem2: [PASS][3] -> [INCOMPLETE][4] ([Intel XE#597] / [Intel XE#714]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7499/bat-dg2-oem2/igt@xe_module_load@load.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9857/bat-dg2-oem2/igt@xe_module_load@load.html #### Possible fixes #### * {igt@xe_create@create-execqueues-noleak}: - bat-atsm-2: [FAIL][5] ([Intel XE#524]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7499/bat-atsm-2/igt@xe_create@create-execqueues-noleak.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9857/bat-atsm-2/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#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 [Intel XE#597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/597 [Intel XE#714]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/714 Build changes ------------- * IGT: IGT_7499 -> IGTPW_9857 * Linux: xe-390-6149acb947f2f8b65ee1a058982a5d6fce3124ec -> xe-391-b489a0b530fc8c24d11b50ddb754e4fd15311768 IGTPW_9857: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/index.html IGT_7499: d991240f6c6751e9480456c20de785cfc6e6ff15 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-390-6149acb947f2f8b65ee1a058982a5d6fce3124ec: 6149acb947f2f8b65ee1a058982a5d6fce3124ec xe-391-b489a0b530fc8c24d11b50ddb754e4fd15311768: b489a0b530fc8c24d11b50ddb754e4fd15311768 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9857/index.html [-- Attachment #2: Type: text/html, Size: 3401 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for include/drm-uapi: Update to latest i915_drm.h from drm-next 2023-09-22 21:19 [igt-dev] [PATCH i-g-t] include/drm-uapi: Update to latest i915_drm.h from drm-next Ashutosh Dixit 2023-09-22 22:15 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-09-22 22:43 ` [igt-dev] ✓ CI.xeBAT: " Patchwork @ 2023-09-24 2:40 ` Patchwork 2023-09-26 16:32 ` [igt-dev] [PATCH i-g-t] " Kamil Konieczny 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-09-24 2:40 UTC (permalink / raw) To: Ashutosh Dixit; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 83974 bytes --] == Series Details == Series: include/drm-uapi: Update to latest i915_drm.h from drm-next URL : https://patchwork.freedesktop.org/series/124144/ State : failure == Summary == CI Bug Log - changes from IGT_7499_full -> IGTPW_9857_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9857_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9857_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_9857/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9857_full: ### IGT changes ### #### Possible regressions #### * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-3/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-2/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-mtlp: NOTRUN -> [DMESG-FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-4/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_suspend@basic-s0@lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-3/igt@gem_exec_suspend@basic-s0@lmem0.html New tests --------- New tests have been introduced between IGT_7499_full and IGTPW_9857_full: ### New IGT tests (1) ### * igt@kms_flip_event_leak@basic@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9857_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#9318]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-5/igt@debugfs_test@basic-hwmon.html * igt@device_reset@unbind-cold-reset-rebind: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#7701]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-1/igt@device_reset@unbind-cold-reset-rebind.html - shard-dg2: NOTRUN -> [SKIP][7] ([i915#7701]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-1/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-hang@rcs0: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#8414]) +18 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-2/igt@drm_fdinfo@busy-hang@rcs0.html * igt@drm_fdinfo@busy-idle-check-all@vcs0: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) +10 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-6/igt@drm_fdinfo@busy-idle-check-all@vcs0.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#3936]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-10/igt@gem_busy@semaphore.html * igt@gem_create@create-ext-cpu-access-big: - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#6335]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-7/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8555]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@heartbeat-many: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8555]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_sseu@mmap-args: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#280]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-7/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#4812]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-6/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@hang: - shard-mtlp: NOTRUN -> [ABORT][16] ([i915#8104] / [i915#9262]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-7/igt@gem_exec_balancer@hang.html * igt@gem_exec_balancer@hog: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#4812]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-2/igt@gem_exec_balancer@hog.html * igt@gem_exec_capture@capture@vcs1-smem: - shard-mtlp: NOTRUN -> [DMESG-WARN][18] ([i915#5591]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-2/igt@gem_exec_capture@capture@vcs1-smem.html * igt@gem_exec_fair@basic-none: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#4473] / [i915#4771]) +3 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-8/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-rkl: [PASS][20] -> [FAIL][21] ([i915#2842]) +1 other test fail [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-rkl-4/igt@gem_exec_fair@basic-pace@bcs0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-6/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#3539] / [i915#4852]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-11/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-rkl: NOTRUN -> [SKIP][23] ([fdo#109313]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#3711]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-6/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#3539]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-1/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#7697]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-11/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3281]) +11 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-6/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#3281]) +7 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-8/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#3281]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4537]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-3/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4537] / [i915#4812]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4537] / [i915#4812]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-10/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_suspend@basic-s3-devices@smem: - shard-snb: NOTRUN -> [DMESG-WARN][33] ([i915#8841]) +1 other test dmesg-warn [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-snb2/igt@gem_exec_suspend@basic-s3-devices@smem.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#4860]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-7/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4860]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-4/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-tglu: NOTRUN -> [SKIP][36] ([i915#4613]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-tglu-3/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@verify-random: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#4613]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-2/igt@gem_lmem_swapping@verify-random.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4613]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-7/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_media_vme: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#284]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-7/igt@gem_media_vme.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4077]) +18 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-10/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_gtt@fault-concurrent: - shard-dg1: NOTRUN -> [SKIP][41] ([i915#4077]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg1-13/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_wc@close: - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4083]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-5/igt@gem_mmap_wc@close.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4083]) +4 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-6/igt@gem_mmap_wc@copy.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#3282]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#3282]) +9 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-6/igt@gem_pread@snoop.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4270]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-11/igt@gem_pxp@regular-baseline-src-copy-readible.html - shard-rkl: NOTRUN -> [SKIP][47] ([i915#4270]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-7/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4270]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-2/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3282]) +7 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-7/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@y-tiled: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#8428]) +8 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-8/igt@gem_render_copy@y-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4079]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-3/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4079]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-3/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4885]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-6/igt@gem_softpin@evict-snoop.html - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4885]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-10/igt@gem_softpin@evict-snoop.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][55] ([i915#5889]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-5/igt@gem_spin_batch@spin-all-new.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#3297]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-6/igt@gem_userptr_blits@coherency-unsync.html - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#3297]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-7/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#3297]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg1-16/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#3297]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-7/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@vma-merge: - shard-dg2: NOTRUN -> [FAIL][60] ([i915#3318]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-7/igt@gem_userptr_blits@vma-merge.html * igt@gen7_exec_parse@chained-batch: - shard-tglu: NOTRUN -> [SKIP][61] ([fdo#109289]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-tglu-3/igt@gen7_exec_parse@chained-batch.html * igt@gen9_exec_parse@allowed-single: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#2527]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-1/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-start-far: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#2856]) +4 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-3/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@unaligned-jump: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#2856]) +5 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-4/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_fb_tiling: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4881]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-1/igt@i915_fb_tiling.html - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4881]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-10/igt@i915_fb_tiling.html * igt@i915_module_load@load: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#6227]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-2/igt@i915_module_load@load.html - shard-dg2: NOTRUN -> [SKIP][68] ([i915#6227]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-2/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [PASS][69] -> [DMESG-WARN][70] ([i915#8617]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#8436]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-7/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#8399]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-tglu-2/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-dg1: [PASS][73] -> [FAIL][74] ([i915#3591]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@i915_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#1397]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-2/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@i2c: - shard-dg2: [PASS][76] -> [FAIL][77] ([i915#8717]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-10/igt@i915_pm_rpm@i2c.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-2/igt@i915_pm_rpm@i2c.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][78] ([fdo#111644] / [i915#1397]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-tglu-7/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg1: [PASS][79] -> [SKIP][80] ([i915#1397]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg1-16/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_pm_rpm@pc8-residency: - shard-dg2: NOTRUN -> [SKIP][81] ([fdo#109506]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-1/igt@i915_pm_rpm@pc8-residency.html - shard-rkl: NOTRUN -> [SKIP][82] ([fdo#109506]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-1/igt@i915_pm_rpm@pc8-residency.html - shard-mtlp: NOTRUN -> [SKIP][83] ([fdo#109293]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-2/igt@i915_pm_rpm@pc8-residency.html * igt@i915_pm_rpm@system-suspend-modeset: - shard-dg2: [PASS][84] -> [FAIL][85] ([fdo#103375]) +1 other test fail [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-11/igt@i915_pm_rpm@system-suspend-modeset.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-11/igt@i915_pm_rpm@system-suspend-modeset.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#6621]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-10/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#8925]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-11/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_pm_rps@thresholds-park@gt1: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#8925]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-5/igt@i915_pm_rps@thresholds-park@gt1.html * igt@i915_query@query-topology-unsupported: - shard-mtlp: NOTRUN -> [SKIP][89] ([fdo#109302]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-1/igt@i915_query@query-topology-unsupported.html * igt@i915_suspend@debugfs-reader: - shard-mtlp: NOTRUN -> [ABORT][90] ([i915#7461] / [i915#9262]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-2/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#4077]) +9 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-5/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@i915_suspend@sysfs-reader: - shard-mtlp: NOTRUN -> [ABORT][92] ([i915#9262]) +8 other tests abort [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-6/igt@i915_suspend@sysfs-reader.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#4212]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-3/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#4212]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-5/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#8502]) +11 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#8502] / [i915#8709]) +11 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#8502]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][98] ([i915#8247]) +3 other tests fail [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#6229]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-7/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-snb: NOTRUN -> [SKIP][100] ([fdo#109271] / [i915#1769]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-snb6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][101] ([fdo#111615] / [i915#5286]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-tglu-3/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#5286]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-7/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][103] ([fdo#111614]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-8/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][104] ([fdo#111614]) +5 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-7/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#3638]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg1-19/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#5190]) +16 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#6187]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][108] ([fdo#111615]) +10 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][109] ([fdo#110723]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][110] ([fdo#111615]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-tglu-9/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#4538] / [i915#5190]) +7 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#4538]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg1-15/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_joiner@basic: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#2705]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-7/igt@kms_big_joiner@basic.html - shard-rkl: NOTRUN -> [SKIP][114] ([i915#2705]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-2/igt@kms_big_joiner@basic.html - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#2705]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-4/igt@kms_big_joiner@basic.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#3689] / [i915#3886] / [i915#5354]) +11 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-11/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][117] ([i915#5354] / [i915#6095]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-tglu-8/igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-primary-basic-4_tiled_mtl_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#5354] / [i915#6095]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-7/igt@kms_ccs@pipe-b-crc-primary-basic-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg1-15/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#3886] / [i915#5354] / [i915#6095]) +14 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-7/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][121] ([fdo#109271] / [i915#3886]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-apl1/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html - shard-glk: NOTRUN -> [SKIP][122] ([fdo#109271] / [i915#3886]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-glk9/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-random-ccs-data-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#3734] / [i915#5354] / [i915#6095]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-4/igt@kms_ccs@pipe-b-random-ccs-data-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#5354] / [i915#6095]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg1-14/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#5354] / [i915#6095]) +33 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-8/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg1-13/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#3689] / [i915#5354] / [i915#6095]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-tglu-9/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#3689] / [i915#5354]) +28 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-6/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html - shard-rkl: NOTRUN -> [SKIP][129] ([i915#5354]) +5 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-4/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][130] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-tglu-10/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#3742]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-4/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#4087] / [i915#7213]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#7213]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#4087]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-mtlp: NOTRUN -> [SKIP][135] ([fdo#111827]) +3 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-8/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][136] ([fdo#111827]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-3/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@gamma: - shard-tglu: NOTRUN -> [SKIP][137] ([fdo#111827]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-tglu-10/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#7828]) +7 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#7828]) +11 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-6/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#7828]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-tglu-5/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#7828]) +2 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_color@deep-color@pipe-b-edp-1-degamma: - shard-mtlp: NOTRUN -> [FAIL][142] ([i915#6892]) +3 other tests fail [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-3/igt@kms_color@deep-color@pipe-b-edp-1-degamma.html * igt@kms_content_protection@atomic: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#7118]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-6/igt@kms_content_protection@atomic.html * igt@kms_content_protection@content_type_change: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#6944] / [i915#7116] / [i915#7118]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-tglu-4/igt@kms_content_protection@content_type_change.html * igt@kms_content_protection@lic: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#6944]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-5/igt@kms_content_protection@lic.html * igt@kms_content_protection@mei_interface: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#8063]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-1/igt@kms_content_protection@mei_interface.html * igt@kms_cursor_crc@cursor-offscreen-256x256@pipe-b-vga-1: - shard-snb: [PASS][147] -> [ABORT][148] ([i915#8865]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-snb6/igt@kms_cursor_crc@cursor-offscreen-256x256@pipe-b-vga-1.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-snb7/igt@kms_cursor_crc@cursor-offscreen-256x256@pipe-b-vga-1.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#3555] / [i915#8814]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#3359]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-dg2: NOTRUN -> [SKIP][151] ([i915#3359]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1: - shard-mtlp: [PASS][152] -> [ABORT][153] ([i915#9262]) +2 other tests abort [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-mtlp-1/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-2/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu: NOTRUN -> [SKIP][154] ([i915#4103]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-tglu-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-dg2: NOTRUN -> [SKIP][155] ([i915#4103] / [i915#4213]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-dg1: NOTRUN -> [SKIP][156] ([fdo#111825]) +4 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg1-16/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3546]) +4 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][158] ([fdo#109274] / [i915#5354]) +7 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-apl: NOTRUN -> [SKIP][159] ([fdo#109271] / [fdo#111767]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-apl1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-dg2: NOTRUN -> [SKIP][160] ([fdo#109274] / [fdo#111767] / [i915#5354]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-rkl: NOTRUN -> [SKIP][161] ([fdo#111767] / [fdo#111825]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#4213]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#9227]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-10/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#9226] / [i915#9261]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-10/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#3804]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#3555]) +6 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-3/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#3469]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-1/igt@kms_fbcon_fbt@psr.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][168] ([fdo#109274]) +7 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-10/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-dpms: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3637]) +10 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-7/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][170] ([fdo#109274] / [i915#3637]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-tglu-10/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#8381]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-1/igt@kms_flip@2x-flip-vs-fences.html - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#8381]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-1/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-nonexisting-fb: - shard-rkl: NOTRUN -> [SKIP][173] ([fdo#111825]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-4/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@flip-vs-suspend@b-edp1: - shard-mtlp: NOTRUN -> [DMESG-WARN][174] ([i915#9262]) +2 other tests dmesg-warn [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-4/igt@kms_flip@flip-vs-suspend@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#2587] / [i915#2672]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#2672]) +3 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html - shard-rkl: NOTRUN -> [SKIP][177] ([i915#2672]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#2672]) +2 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#2672] / [i915#3555]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#2672] / [i915#3555]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg2: NOTRUN -> [SKIP][181] ([fdo#109285]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-3/igt@kms_force_connector_basic@force-load-detect.html - shard-mtlp: NOTRUN -> [SKIP][182] ([fdo#109285]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [FAIL][183] ([i915#6880]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#5354]) +57 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][185] ([fdo#109280]) +4 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#1825]) +38 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#8708]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#8708]) +31 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-apl: NOTRUN -> [SKIP][189] ([fdo#109271]) +52 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-apl2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#3023]) +5 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#5460]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#5460]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][193] ([fdo#110189]) +5 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#3458]) +25 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][195] ([fdo#111825] / [i915#1825]) +7 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#8708]) +12 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#8228]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg1-19/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8228]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-1/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-swap: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#8228]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-6/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8228]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-7/igt@kms_hdr@static-toggle.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#4816]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-mtlp: NOTRUN -> [SKIP][202] ([fdo#109289]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-1/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html - shard-rkl: NOTRUN -> [SKIP][203] ([fdo#109289]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-6/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#8821]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-10/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8806]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-7/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#5176]) +7 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][207] ([i915#5176]) +3 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-tglu-7/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#5176]) +3 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][209] ([i915#5176]) +11 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#5176]) +5 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#5235]) +11 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg1-18/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#5235]) +15 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#5235]) +11 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][214] ([fdo#109271]) +101 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-snb6/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#5235]) +3 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_prime@basic-crc-hybrid: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#6524]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-1/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#6524] / [i915#6805]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-10/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#658]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-6/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html - shard-tglu: NOTRUN -> [SKIP][219] ([i915#658]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-tglu-2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#4348]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-2/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@primary_blt: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#1072]) +13 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-2/igt@kms_psr@primary_blt.html * igt@kms_psr@psr2_primary_blt: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#1072]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-1/igt@kms_psr@psr2_primary_blt.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#4235]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-5/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#5289]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#5289]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#4235]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#5030]) +3 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-8/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d.html * igt@kms_tiled_display@basic-test-pattern: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#8623]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-7/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][229] ([fdo#109309]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-7/igt@kms_tv_load_detect@load-detect.html - shard-dg2: NOTRUN -> [SKIP][230] ([fdo#109309]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-3/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@pipe-d-ts-continuation-modeset-hang: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#4070] / [i915#533] / [i915#6768]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-4/igt@kms_vblank@pipe-d-ts-continuation-modeset-hang.html * igt@kms_vrr@flip-suspend: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#3555]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-tglu-2/igt@kms_vrr@flip-suspend.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#2437]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-7/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-invalid-parameters: - shard-mtlp: NOTRUN -> [SKIP][234] ([i915#2437]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-8/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#7387]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-7/igt@perf@global-sseu-config-invalid.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#2434]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-2/igt@perf@mi-rpc.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [PASS][237] -> [FAIL][238] ([i915#9100]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html * igt@perf@per-context-mode-unprivileged: - shard-dg2: NOTRUN -> [SKIP][239] ([fdo#109289]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-11/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#8516]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-6/igt@perf_pmu@rc6@other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][241] ([i915#8516]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-2/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][242] ([i915#9351]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#3708] / [i915#4077]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-6/igt@prime_vgem@basic-fence-mmap.html * igt@runner@aborted: - shard-apl: NOTRUN -> [FAIL][244] ([i915#7812]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-apl1/igt@runner@aborted.html * igt@v3d/v3d_perfmon@destroy-invalid-perfmon: - shard-glk: NOTRUN -> [SKIP][245] ([fdo#109271]) +30 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-glk6/igt@v3d/v3d_perfmon@destroy-invalid-perfmon.html - shard-rkl: NOTRUN -> [SKIP][246] ([fdo#109315]) +3 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-6/igt@v3d/v3d_perfmon@destroy-invalid-perfmon.html * igt@v3d/v3d_perfmon@destroy-valid-perfmon: - shard-tglu: NOTRUN -> [SKIP][247] ([fdo#109315] / [i915#2575]) +2 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-tglu-4/igt@v3d/v3d_perfmon@destroy-valid-perfmon.html * igt@v3d/v3d_submit_cl@bad-flag: - shard-dg1: NOTRUN -> [SKIP][248] ([i915#2575]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg1-19/igt@v3d/v3d_submit_cl@bad-flag.html * igt@v3d/v3d_submit_cl@simple-flush-cache: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#2575]) +16 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-7/igt@v3d/v3d_submit_cl@simple-flush-cache.html * igt@v3d/v3d_submit_csd@bad-bo: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#2575]) +17 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-1/igt@v3d/v3d_submit_csd@bad-bo.html * igt@vc4/vc4_create_bo@create-bo-4096: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#7711]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg1-13/igt@vc4/vc4_create_bo@create-bo-4096.html * igt@vc4/vc4_lookup_fail@bad-color-write: - shard-tglu: NOTRUN -> [SKIP][252] ([i915#2575]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-tglu-10/igt@vc4/vc4_lookup_fail@bad-color-write.html * igt@vc4/vc4_purgeable_bo@free-purged-bo: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#7711]) +9 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-7/igt@vc4/vc4_purgeable_bo@free-purged-bo.html * igt@vc4/vc4_tiling@get-bad-handle: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#7711]) +13 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-10/igt@vc4/vc4_tiling@get-bad-handle.html * igt@vc4/vc4_wait_bo@unused-bo-1ns: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#7711]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-6/igt@vc4/vc4_wait_bo@unused-bo-1ns.html #### Possible fixes #### * igt@device_reset@unbind-reset-rebind: - shard-dg2: [ABORT][256] ([i915#5507] / [i915#8260]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-3/igt@device_reset@unbind-reset-rebind.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-10/igt@device_reset@unbind-reset-rebind.html * igt@gem_eio@kms: - shard-dg2: [FAIL][258] ([i915#5784]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-10/igt@gem_eio@kms.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-2/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][260] ([i915#5784]) -> [PASS][261] [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg1-15/igt@gem_eio@unwedge-stress.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg1-18/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [FAIL][262] ([i915#2842]) -> [PASS][263] [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [FAIL][264] ([i915#2842]) -> [PASS][265] [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-6/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: [ABORT][266] ([i915#7975] / [i915#8213]) -> [PASS][267] [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-1/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [INCOMPLETE][268] ([i915#5566]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-apl1/igt@gen9_exec_parse@allowed-single.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-apl1/igt@gen9_exec_parse@allowed-single.html - shard-glk: [INCOMPLETE][270] -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-glk8/igt@gen9_exec_parse@allowed-single.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-glk1/igt@gen9_exec_parse@allowed-single.html * igt@i915_hangman@engine-engine-error@vcs0: - shard-mtlp: [FAIL][272] ([i915#7069]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-mtlp-7/igt@i915_hangman@engine-engine-error@vcs0.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-7/igt@i915_hangman@engine-engine-error@vcs0.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [SKIP][274] ([i915#1397]) -> [PASS][275] +1 other test pass [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-6/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-dg1: [SKIP][276] ([i915#1397]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg1-14/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][278] ([i915#2346]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@forked-bo@all-pipes: - shard-mtlp: [DMESG-WARN][280] ([i915#2017]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-mtlp-4/igt@kms_cursor_legacy@forked-bo@all-pipes.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-mtlp-1/igt@kms_cursor_legacy@forked-bo@all-pipes.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1: - shard-apl: [INCOMPLETE][282] ([i915#180] / [i915#9392]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html * {igt@kms_pm_dc@dc5-dpms}: - shard-rkl: [FAIL][284] -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-rkl-1/igt@kms_pm_dc@dc5-dpms.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-6/igt@kms_pm_dc@dc5-dpms.html * igt@kms_vblank@pipe-b-query-forked-hang: - shard-glk: [SKIP][286] ([fdo#109271]) -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-glk8/igt@kms_vblank@pipe-b-query-forked-hang.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-glk8/igt@kms_vblank@pipe-b-query-forked-hang.html - shard-apl: [SKIP][288] ([fdo#109271]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-apl1/igt@kms_vblank@pipe-b-query-forked-hang.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-apl6/igt@kms_vblank@pipe-b-query-forked-hang.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [FAIL][290] ([i915#4349]) -> [PASS][291] +2 other tests pass [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg1-15/igt@perf_pmu@semaphore-busy@vcs1.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg1-13/igt@perf_pmu@semaphore-busy@vcs1.html #### Warnings #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][292] ([i915#7461]) -> [INCOMPLETE][293] ([i915#9283]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [DMESG-WARN][294] ([i915#4936] / [i915#5493]) -> [DMESG-WARN][295] ([i915#1982] / [i915#4936] / [i915#5493]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@kms_content_protection@mei_interface: - shard-dg1: [SKIP][296] ([i915#7116]) -> [SKIP][297] ([fdo#109300]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg1-14/igt@kms_content_protection@mei_interface.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg1-14/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][298] ([i915#7118] / [i915#7162]) -> [SKIP][299] ([i915#7118]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-11/igt@kms_content_protection@type1.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg2-7/igt@kms_content_protection@type1.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][300] ([i915#3955]) -> [SKIP][301] ([fdo#110189] / [i915#3955]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-rkl-6/igt@kms_fbcon_fbt@psr.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-1/igt@kms_fbcon_fbt@psr.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][302] ([fdo#109285] / [i915#4098]) -> [SKIP][303] ([fdo#109285]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][304] ([i915#1072]) -> [SKIP][305] ([i915#1072] / [i915#4078]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg1-19/igt@kms_psr@cursor_plane_move.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg1-13/igt@kms_psr@cursor_plane_move.html * igt@kms_psr@primary_page_flip: - shard-dg1: [SKIP][306] ([i915#1072] / [i915#4078]) -> [SKIP][307] ([i915#1072]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg1-16/igt@kms_psr@primary_page_flip.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/shard-dg1-17/igt@kms_psr@primary_page_flip.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [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#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [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#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [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#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [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#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3711]: https://gitlab.freedesktop.org/drm/intel/issues/3711 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [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#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#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#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030 [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#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5507]: https://gitlab.freedesktop.org/drm/intel/issues/5507 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6892]: https://gitlab.freedesktop.org/drm/intel/issues/6892 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [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#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063 [i915#8104]: https://gitlab.freedesktop.org/drm/intel/issues/8104 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8260]: https://gitlab.freedesktop.org/drm/intel/issues/8260 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8436]: https://gitlab.freedesktop.org/drm/intel/issues/8436 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [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#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9100]: https://gitlab.freedesktop.org/drm/intel/issues/9100 [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#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9283]: https://gitlab.freedesktop.org/drm/intel/issues/9283 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 [i915#9392]: https://gitlab.freedesktop.org/drm/intel/issues/9392 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7499 -> IGTPW_9857 CI-20190529: 20190529 CI_DRM_13671: e1973de2c4516e9130157e538014e79c8aa57b41 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9857: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/index.html IGT_7499: d991240f6c6751e9480456c20de785cfc6e6ff15 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9857/index.html [-- Attachment #2: Type: text/html, Size: 102629 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] include/drm-uapi: Update to latest i915_drm.h from drm-next 2023-09-22 21:19 [igt-dev] [PATCH i-g-t] include/drm-uapi: Update to latest i915_drm.h from drm-next Ashutosh Dixit ` (2 preceding siblings ...) 2023-09-24 2:40 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-09-26 16:32 ` Kamil Konieczny 3 siblings, 0 replies; 5+ messages in thread From: Kamil Konieczny @ 2023-09-26 16:32 UTC (permalink / raw) To: igt-dev Hi Ashutosh, On 2023-09-22 at 14:19:02 -0700, Ashutosh Dixit wrote: > Update to the latest version of the drm uapi header file from > drm-next (https://anongit.freedesktop.org/git/drm/drm): > > commit f107ff76a8c242b298413ef52db9978dc3fe0153 > Merge: ce9ecca0238b1 15d30b46573d7 > Author: Dave Airlie <airlied@redhat.com> > Date: Fri Sep 22 16:28:29 2023 +1000 > > Merge tag 'drm-misc-next-2023-09-11-1' of > git://anongit.freedesktop.org/drm/drm-misc into drm-next > > drm-misc-next for v6.7-rc1: > > Also remove duplicated declarations from lib/i915/i915_drm_local.h > > Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > include/drm-uapi/i915_drm.h | 377 ++++++++++++++++++++++++++++-------- > lib/i915/i915_drm_local.h | 55 ------ > 2 files changed, 301 insertions(+), 131 deletions(-) > > diff --git a/include/drm-uapi/i915_drm.h b/include/drm-uapi/i915_drm.h > index a0876ee41323..0a5c81445528 100644 > --- a/include/drm-uapi/i915_drm.h > +++ b/include/drm-uapi/i915_drm.h > @@ -280,7 +280,16 @@ enum drm_i915_pmu_engine_sample { > #define I915_PMU_ENGINE_SEMA(class, instance) \ > __I915_PMU_ENGINE(class, instance, I915_SAMPLE_SEMA) > > -#define __I915_PMU_OTHER(x) (__I915_PMU_ENGINE(0xff, 0xff, 0xf) + 1 + (x)) > +/* > + * Top 4 bits of every non-engine counter are GT id. > + */ > +#define __I915_PMU_GT_SHIFT (60) > + > +#define ___I915_PMU_OTHER(gt, x) \ > + (((__u64)__I915_PMU_ENGINE(0xff, 0xff, 0xf) + 1 + (x)) | \ > + ((__u64)(gt) << __I915_PMU_GT_SHIFT)) > + > +#define __I915_PMU_OTHER(x) ___I915_PMU_OTHER(0, x) > > #define I915_PMU_ACTUAL_FREQUENCY __I915_PMU_OTHER(0) > #define I915_PMU_REQUESTED_FREQUENCY __I915_PMU_OTHER(1) > @@ -290,6 +299,12 @@ enum drm_i915_pmu_engine_sample { > > #define I915_PMU_LAST /* Deprecated - do not use */ I915_PMU_RC6_RESIDENCY > > +#define __I915_PMU_ACTUAL_FREQUENCY(gt) ___I915_PMU_OTHER(gt, 0) > +#define __I915_PMU_REQUESTED_FREQUENCY(gt) ___I915_PMU_OTHER(gt, 1) > +#define __I915_PMU_INTERRUPTS(gt) ___I915_PMU_OTHER(gt, 2) > +#define __I915_PMU_RC6_RESIDENCY(gt) ___I915_PMU_OTHER(gt, 3) > +#define __I915_PMU_SOFTWARE_GT_AWAKE_TIME(gt) ___I915_PMU_OTHER(gt, 4) > + > /* Each region is a minimum of 16k, and there are at most 255 of them. > */ > #define I915_NR_TEX_REGIONS 255 /* table size 2k - maximum due to use > @@ -645,6 +660,23 @@ typedef struct drm_i915_irq_wait { > */ > #define I915_SCHEDULER_CAP_STATIC_PRIORITY_MAP (1ul << 5) > > +/* > + * Query the status of HuC load. > + * > + * The query can fail in the following scenarios with the listed error codes: > + * -ENODEV if HuC is not present on this platform, > + * -EOPNOTSUPP if HuC firmware usage is disabled, > + * -ENOPKG if HuC firmware fetch failed, > + * -ENOEXEC if HuC firmware is invalid or mismatched, > + * -ENOMEM if i915 failed to prepare the FW objects for transfer to the uC, > + * -EIO if the FW transfer or the FW authentication failed. > + * > + * If the IOCTL is successful, the returned parameter will be set to one of the > + * following values: > + * * 0 if HuC firmware load is not complete, > + * * 1 if HuC firmware is loaded and fully authenticated, > + * * 2 if HuC firmware is loaded and authenticated for clear media only > + */ > #define I915_PARAM_HUC_STATUS 42 > > /* Query whether DRM_I915_GEM_EXECBUFFER2 supports the ability to opt-out of > @@ -755,16 +787,48 @@ typedef struct drm_i915_irq_wait { > */ > #define I915_PARAM_OA_TIMESTAMP_FREQUENCY 57 > > +/* > + * Query the status of PXP support in i915. > + * > + * The query can fail in the following scenarios with the listed error codes: > + * -ENODEV = PXP support is not available on the GPU device or in the > + * kernel due to missing component drivers or kernel configs. > + * > + * If the IOCTL is successful, the returned parameter will be set to one of > + * the following values: > + * 1 = PXP feature is supported and is ready for use. > + * 2 = PXP feature is supported but should be ready soon (pending > + * initialization of non-i915 system dependencies). > + * > + * NOTE: When param is supported (positive return values), user space should > + * still refer to the GEM PXP context-creation UAPI header specs to be > + * aware of possible failure due to system state machine at the time. > + */ > +#define I915_PARAM_PXP_STATUS 58 > + > /* Must be kept compact -- no holes and well documented */ > > -typedef struct drm_i915_getparam { > +/** > + * struct drm_i915_getparam - Driver parameter query structure. > + */ > +struct drm_i915_getparam { > + /** @param: Driver parameter to query. */ > __s32 param; > - /* > + > + /** > + * @value: Address of memory where queried value should be put. > + * > * WARNING: Using pointers instead of fixed-size u64 means we need to write > * compat32 code. Don't repeat this mistake. > */ > int *value; > -} drm_i915_getparam_t; > +}; > + > +/** > + * typedef drm_i915_getparam_t - Driver parameter query structure. > + * See struct drm_i915_getparam. > + */ > +typedef struct drm_i915_getparam drm_i915_getparam_t; > > /* Ioctl to set kernel params: > */ > @@ -1245,76 +1309,119 @@ struct drm_i915_gem_exec_object2 { > __u64 rsvd2; > }; > > +/** > + * struct drm_i915_gem_exec_fence - An input or output fence for the execbuf > + * ioctl. > + * > + * The request will wait for input fence to signal before submission. > + * > + * The returned output fence will be signaled after the completion of the > + * request. > + */ > struct drm_i915_gem_exec_fence { > - /** > - * User's handle for a drm_syncobj to wait on or signal. > - */ > + /** @handle: User's handle for a drm_syncobj to wait on or signal. */ > __u32 handle; > > + /** > + * @flags: Supported flags are: > + * > + * I915_EXEC_FENCE_WAIT: > + * Wait for the input fence before request submission. > + * > + * I915_EXEC_FENCE_SIGNAL: > + * Return request completion fence as output > + */ > + __u32 flags; > #define I915_EXEC_FENCE_WAIT (1<<0) > #define I915_EXEC_FENCE_SIGNAL (1<<1) > #define __I915_EXEC_FENCE_UNKNOWN_FLAGS (-(I915_EXEC_FENCE_SIGNAL << 1)) > - __u32 flags; > }; > > -/* > - * See drm_i915_gem_execbuffer_ext_timeline_fences. > - */ > -#define DRM_I915_GEM_EXECBUFFER_EXT_TIMELINE_FENCES 0 > - > -/* > +/** > + * struct drm_i915_gem_execbuffer_ext_timeline_fences - Timeline fences > + * for execbuf ioctl. > + * > * This structure describes an array of drm_syncobj and associated points for > * timeline variants of drm_syncobj. It is invalid to append this structure to > * the execbuf if I915_EXEC_FENCE_ARRAY is set. > */ > struct drm_i915_gem_execbuffer_ext_timeline_fences { > +#define DRM_I915_GEM_EXECBUFFER_EXT_TIMELINE_FENCES 0 > + /** @base: Extension link. See struct i915_user_extension. */ > struct i915_user_extension base; > > /** > - * Number of element in the handles_ptr & value_ptr arrays. > + * @fence_count: Number of elements in the @handles_ptr & @value_ptr > + * arrays. > */ > __u64 fence_count; > > /** > - * Pointer to an array of struct drm_i915_gem_exec_fence of length > - * fence_count. > + * @handles_ptr: Pointer to an array of struct drm_i915_gem_exec_fence > + * of length @fence_count. > */ > __u64 handles_ptr; > > /** > - * Pointer to an array of u64 values of length fence_count. Values > - * must be 0 for a binary drm_syncobj. A Value of 0 for a timeline > - * drm_syncobj is invalid as it turns a drm_syncobj into a binary one. > + * @values_ptr: Pointer to an array of u64 values of length > + * @fence_count. > + * Values must be 0 for a binary drm_syncobj. A Value of 0 for a > + * timeline drm_syncobj is invalid as it turns a drm_syncobj into a > + * binary one. > */ > __u64 values_ptr; > }; > > +/** > + * struct drm_i915_gem_execbuffer2 - Structure for DRM_I915_GEM_EXECBUFFER2 > + * ioctl. > + */ > struct drm_i915_gem_execbuffer2 { > - /** > - * List of gem_exec_object2 structs > - */ > + /** @buffers_ptr: Pointer to a list of gem_exec_object2 structs */ > __u64 buffers_ptr; > + > + /** @buffer_count: Number of elements in @buffers_ptr array */ > __u32 buffer_count; > > - /** Offset in the batchbuffer to start execution from. */ > + /** > + * @batch_start_offset: Offset in the batchbuffer to start execution > + * from. > + */ > __u32 batch_start_offset; > - /** Bytes used in batchbuffer from batch_start_offset */ > + > + /** > + * @batch_len: Length in bytes of the batch buffer, starting from the > + * @batch_start_offset. If 0, length is assumed to be the batch buffer > + * object size. > + */ > __u32 batch_len; > + > + /** @DR1: deprecated */ > __u32 DR1; > + > + /** @DR4: deprecated */ > __u32 DR4; > + > + /** @num_cliprects: See @cliprects_ptr */ > __u32 num_cliprects; > + > /** > - * This is a struct drm_clip_rect *cliprects if I915_EXEC_FENCE_ARRAY > - * & I915_EXEC_USE_EXTENSIONS are not set. > + * @cliprects_ptr: Kernel clipping was a DRI1 misfeature. > + * > + * It is invalid to use this field if I915_EXEC_FENCE_ARRAY or > + * I915_EXEC_USE_EXTENSIONS flags are not set. > * > * If I915_EXEC_FENCE_ARRAY is set, then this is a pointer to an array > - * of struct drm_i915_gem_exec_fence and num_cliprects is the length > - * of the array. > + * of &drm_i915_gem_exec_fence and @num_cliprects is the length of the > + * array. > * > * If I915_EXEC_USE_EXTENSIONS is set, then this is a pointer to a > - * single struct i915_user_extension and num_cliprects is 0. > + * single &i915_user_extension and num_cliprects is 0. > */ > __u64 cliprects_ptr; > + > + /** @flags: Execbuf flags */ > + __u64 flags; > #define I915_EXEC_RING_MASK (0x3f) > #define I915_EXEC_DEFAULT (0<<0) > #define I915_EXEC_RENDER (1<<0) > @@ -1332,10 +1439,6 @@ struct drm_i915_gem_execbuffer2 { > #define I915_EXEC_CONSTANTS_REL_GENERAL (0<<6) /* default */ > #define I915_EXEC_CONSTANTS_ABSOLUTE (1<<6) > #define I915_EXEC_CONSTANTS_REL_SURFACE (2<<6) /* gen4/5 only */ > - __u64 flags; > - __u64 rsvd1; /* now used for context info */ > - __u64 rsvd2; > -}; > > /** Resets the SO write offset registers for transform feedback on gen7. */ > #define I915_EXEC_GEN7_SOL_RESET (1<<8) > @@ -1438,9 +1541,23 @@ struct drm_i915_gem_execbuffer2 { > * drm_i915_gem_execbuffer_ext enum. > */ > #define I915_EXEC_USE_EXTENSIONS (1 << 21) > - > #define __I915_EXEC_UNKNOWN_FLAGS (-(I915_EXEC_USE_EXTENSIONS << 1)) > > + /** @rsvd1: Context id */ > + __u64 rsvd1; > + > + /** > + * @rsvd2: in and out sync_file file descriptors. > + * > + * When I915_EXEC_FENCE_IN or I915_EXEC_FENCE_SUBMIT flag is set, the > + * lower 32 bits of this field will have the in sync_file fd (input). > + * > + * When I915_EXEC_FENCE_OUT flag is set, the upper 32 bits of this > + * field will have the out sync_file fd (output). > + */ > + __u64 rsvd2; > +}; > + > #define I915_EXEC_CONTEXT_ID_MASK (0xffffffff) > #define i915_execbuffer2_set_context_id(eb2, context) \ > (eb2).rsvd1 = context & I915_EXEC_CONTEXT_ID_MASK > @@ -1820,19 +1937,58 @@ struct drm_i915_gem_context_create { > __u32 pad; > }; > > +/** > + * struct drm_i915_gem_context_create_ext - Structure for creating contexts. > + */ > struct drm_i915_gem_context_create_ext { > - __u32 ctx_id; /* output: id of new context*/ > + /** @ctx_id: Id of the created context (output) */ > + __u32 ctx_id; > + > + /** > + * @flags: Supported flags are: > + * > + * I915_CONTEXT_CREATE_FLAGS_USE_EXTENSIONS: > + * > + * Extensions may be appended to this structure and driver must check > + * for those. See @extensions. > + * > + * I915_CONTEXT_CREATE_FLAGS_SINGLE_TIMELINE > + * > + * Created context will have single timeline. > + */ > __u32 flags; > #define I915_CONTEXT_CREATE_FLAGS_USE_EXTENSIONS (1u << 0) > #define I915_CONTEXT_CREATE_FLAGS_SINGLE_TIMELINE (1u << 1) > #define I915_CONTEXT_CREATE_FLAGS_UNKNOWN \ > (-(I915_CONTEXT_CREATE_FLAGS_SINGLE_TIMELINE << 1)) > + > + /** > + * @extensions: Zero-terminated chain of extensions. > + * > + * I915_CONTEXT_CREATE_EXT_SETPARAM: > + * Context parameter to set or query during context creation. > + * See struct drm_i915_gem_context_create_ext_setparam. > + * > + * I915_CONTEXT_CREATE_EXT_CLONE: > + * This extension has been removed. On the off chance someone somewhere > + * has attempted to use it, never re-use this extension number. > + */ > __u64 extensions; > +#define I915_CONTEXT_CREATE_EXT_SETPARAM 0 > +#define I915_CONTEXT_CREATE_EXT_CLONE 1 > }; > > +/** > + * struct drm_i915_gem_context_param - Context parameter to set or query. > + */ > struct drm_i915_gem_context_param { > + /** @ctx_id: Context id */ > __u32 ctx_id; > + > + /** @size: Size of the parameter @value */ > __u32 size; > + > + /** @param: Parameter to set or query */ > __u64 param; > #define I915_CONTEXT_PARAM_BAN_PERIOD 0x1 > /* I915_CONTEXT_PARAM_NO_ZEROMAP has been removed. On the off chance > @@ -1975,10 +2131,26 @@ struct drm_i915_gem_context_param { > * > * -ENODEV: feature not available > * -EPERM: trying to mark a recoverable or not bannable context as protected > + * -ENXIO: A dependency such as a component driver or firmware is not yet > + * loaded so user space may need to attempt again. Depending on the > + * device, this error may be reported if protected context creation is > + * attempted very early after kernel start because the internal timeout > + * waiting for such dependencies is not guaranteed to be larger than > + * required (numbers differ depending on system and kernel config): > + * - ADL/RPL: dependencies may take up to 3 seconds from kernel start > + * while context creation internal timeout is 250 milisecs > + * - MTL: dependencies may take up to 8 seconds from kernel start > + * while context creation internal timeout is 250 milisecs > + * NOTE: such dependencies happen once, so a subsequent call to create a > + * protected context after a prior successful call will not experience > + * such timeouts and will not return -ENXIO (unless the driver is reloaded, > + * or, depending on the device, resumes from a suspended state). > + * -EIO: The firmware did not succeed in creating the protected context. > */ > #define I915_CONTEXT_PARAM_PROTECTED_CONTENT 0xd > /* Must be kept compact -- no holes and well documented */ > > + /** @value: Context parameter value to be set or queried */ > __u64 value; > }; > > @@ -2129,7 +2301,7 @@ struct i915_context_engines_load_balance { > > __u64 mbz64; /* reserved for future use; must be zero */ > > - struct i915_engine_class_instance engines[0]; > + struct i915_engine_class_instance engines[]; > } __attribute__((packed)); > > #define I915_DEFINE_CONTEXT_ENGINES_LOAD_BALANCE(name__, N__) struct { \ > @@ -2167,7 +2339,7 @@ struct i915_context_engines_bond { > __u64 flags; /* all undefined flags must be zero */ > __u64 mbz64[4]; /* reserved for future use; must be zero */ > > - struct i915_engine_class_instance engines[0]; > + struct i915_engine_class_instance engines[]; > } __attribute__((packed)); > > #define I915_DEFINE_CONTEXT_ENGINES_BOND(name__, N__) struct { \ > @@ -2294,7 +2466,7 @@ struct i915_context_engines_parallel_submit { > * length = width (i) * num_siblings (j) > * index = j + i * num_siblings > */ > - struct i915_engine_class_instance engines[0]; > + struct i915_engine_class_instance engines[]; > > } __attribute__((packed)); > > @@ -2369,7 +2541,7 @@ struct i915_context_param_engines { > #define I915_CONTEXT_ENGINES_EXT_LOAD_BALANCE 0 /* see i915_context_engines_load_balance */ > #define I915_CONTEXT_ENGINES_EXT_BOND 1 /* see i915_context_engines_bond */ > #define I915_CONTEXT_ENGINES_EXT_PARALLEL_SUBMIT 2 /* see i915_context_engines_parallel_submit */ > - struct i915_engine_class_instance engines[0]; > + struct i915_engine_class_instance engines[]; > } __attribute__((packed)); > > #define I915_DEFINE_CONTEXT_PARAM_ENGINES(name__, N__) struct { \ > @@ -2377,23 +2549,29 @@ struct i915_context_param_engines { > struct i915_engine_class_instance engines[N__]; \ > } __attribute__((packed)) name__ > > +/** > + * struct drm_i915_gem_context_create_ext_setparam - Context parameter > + * to set or query during context creation. > + */ > struct drm_i915_gem_context_create_ext_setparam { > -#define I915_CONTEXT_CREATE_EXT_SETPARAM 0 > + /** @base: Extension link. See struct i915_user_extension. */ > struct i915_user_extension base; > + > + /** > + * @param: Context parameter to set or query. > + * See struct drm_i915_gem_context_param. > + */ > struct drm_i915_gem_context_param param; > }; > > -/* This API has been removed. On the off chance someone somewhere has > - * attempted to use it, never re-use this extension number. > - */ > -#define I915_CONTEXT_CREATE_EXT_CLONE 1 > - > struct drm_i915_gem_context_destroy { > __u32 ctx_id; > __u32 pad; > }; > > -/* > +/** > + * struct drm_i915_gem_vm_control - Structure to create or destroy VM. > + * > * DRM_I915_GEM_VM_CREATE - > * > * Create a new virtual memory address space (ppGTT) for use within a context > @@ -2403,20 +2581,23 @@ struct drm_i915_gem_context_destroy { > * The id of new VM (bound to the fd) for use with I915_CONTEXT_PARAM_VM is > * returned in the outparam @id. > * > - * No flags are defined, with all bits reserved and must be zero. > - * > * An extension chain maybe provided, starting with @extensions, and terminated > * by the @next_extension being 0. Currently, no extensions are defined. > * > * DRM_I915_GEM_VM_DESTROY - > * > - * Destroys a previously created VM id, specified in @id. > + * Destroys a previously created VM id, specified in @vm_id. > * > * No extensions or flags are allowed currently, and so must be zero. > */ > struct drm_i915_gem_vm_control { > + /** @extensions: Zero-terminated chain of extensions. */ > __u64 extensions; > + > + /** @flags: reserved for future usage, currently MBZ */ > __u32 flags; > + > + /** @vm_id: Id of the VM created or to be destroyed */ > __u32 vm_id; > }; > > @@ -2631,6 +2812,25 @@ enum drm_i915_perf_property_id { > */ > DRM_I915_PERF_PROP_POLL_OA_PERIOD, > > + /** > + * Multiple engines may be mapped to the same OA unit. The OA unit is > + * identified by class:instance of any engine mapped to it. > + * > + * This parameter specifies the engine class and must be passed along > + * with DRM_I915_PERF_PROP_OA_ENGINE_INSTANCE. > + * > + * This property is available in perf revision 6. > + */ > + DRM_I915_PERF_PROP_OA_ENGINE_CLASS, > + > + /** > + * This parameter specifies the engine instance and must be passed along > + * with DRM_I915_PERF_PROP_OA_ENGINE_CLASS. > + * > + * This property is available in perf revision 6. > + */ > + DRM_I915_PERF_PROP_OA_ENGINE_INSTANCE, > + > DRM_I915_PERF_PROP_MAX /* non-ABI */ > }; > > @@ -3392,27 +3592,13 @@ struct drm_i915_gem_create_ext { > * > * The (page-aligned) allocated size for the object will be returned. > * > - * DG2 64K min page size implications: > - * > - * On discrete platforms, starting from DG2, we have to contend with GTT > - * page size restrictions when dealing with I915_MEMORY_CLASS_DEVICE > - * objects. Specifically the hardware only supports 64K or larger GTT > - * page sizes for such memory. The kernel will already ensure that all > - * I915_MEMORY_CLASS_DEVICE memory is allocated using 64K or larger page > - * sizes underneath. > - * > - * Note that the returned size here will always reflect any required > - * rounding up done by the kernel, i.e 4K will now become 64K on devices > - * such as DG2. The kernel will always select the largest minimum > - * page-size for the set of possible placements as the value to use when > - * rounding up the @size. > - * > - * Special DG2 GTT address alignment requirement: > + * On platforms like DG2/ATS the kernel will always use 64K or larger > + * pages for I915_MEMORY_CLASS_DEVICE. The kernel also requires a > + * minimum of 64K GTT alignment for such objects. > * > - * The GTT alignment will also need to be at least 2M for such objects. > - * > - * Note that due to how the hardware implements 64K GTT page support, we > - * have some further complications: > + * NOTE: Previously the ABI here required a minimum GTT alignment of 2M > + * on DG2/ATS, due to how the hardware implemented 64K GTT page support, > + * where we had the following complications: > * > * 1) The entire PDE (which covers a 2MB virtual address range), must > * contain only 64K PTEs, i.e mixing 4K and 64K PTEs in the same > @@ -3421,12 +3607,10 @@ struct drm_i915_gem_create_ext { > * 2) We still need to support 4K PTEs for I915_MEMORY_CLASS_SYSTEM > * objects. > * > - * To keep things simple for userland, we mandate that any GTT mappings > - * must be aligned to and rounded up to 2MB. The kernel will internally > - * pad them out to the next 2MB boundary. As this only wastes virtual > - * address space and avoids userland having to copy any needlessly > - * complicated PDE sharing scheme (coloring) and only affects DG2, this > - * is deemed to be a good compromise. > + * However on actual production HW this was completely changed to now > + * allow setting a TLB hint at the PTE level (see PS64), which is a lot > + * more flexible than the above. With this the 2M restriction was > + * dropped where we now only require 64K. > */ > __u64 size; > > @@ -3496,9 +3680,13 @@ struct drm_i915_gem_create_ext { > * > * For I915_GEM_CREATE_EXT_PROTECTED_CONTENT usage see > * struct drm_i915_gem_create_ext_protected_content. > + * > + * For I915_GEM_CREATE_EXT_SET_PAT usage see > + * struct drm_i915_gem_create_ext_set_pat. > */ > #define I915_GEM_CREATE_EXT_MEMORY_REGIONS 0 > #define I915_GEM_CREATE_EXT_PROTECTED_CONTENT 1 > +#define I915_GEM_CREATE_EXT_SET_PAT 2 > __u64 extensions; > }; > > @@ -3613,6 +3801,43 @@ struct drm_i915_gem_create_ext_protected_content { > __u32 flags; > }; > > +/** > + * struct drm_i915_gem_create_ext_set_pat - The > + * I915_GEM_CREATE_EXT_SET_PAT extension. > + * > + * If this extension is provided, the specified caching policy (PAT index) is > + * applied to the buffer object. > + * > + * Below is an example on how to create an object with specific caching policy: > + * > + * .. code-block:: C > + * > + * struct drm_i915_gem_create_ext_set_pat set_pat_ext = { > + * .base = { .name = I915_GEM_CREATE_EXT_SET_PAT }, > + * .pat_index = 0, > + * }; > + * struct drm_i915_gem_create_ext create_ext = { > + * .size = PAGE_SIZE, > + * .extensions = (uintptr_t)&set_pat_ext, > + * }; > + * > + * int err = ioctl(fd, DRM_IOCTL_I915_GEM_CREATE_EXT, &create_ext); > + * if (err) ... > + */ > +struct drm_i915_gem_create_ext_set_pat { > + /** @base: Extension link. See struct i915_user_extension. */ > + struct i915_user_extension base; > + /** > + * @pat_index: PAT index to be set > + * PAT index is a bit field in Page Table Entry to control caching > + * behaviors for GPU accesses. The definition of PAT index is > + * platform dependent and can be found in hardware specifications, > + */ > + __u32 pat_index; > + /** @rsvd: reserved for future use */ > + __u32 rsvd; > +}; > + > /* ID of the protected content session managed by i915 when PXP is active */ > #define I915_PROTECTED_CONTENT_DEFAULT_SESSION 0xf > > diff --git a/lib/i915/i915_drm_local.h b/lib/i915/i915_drm_local.h > index 0f47578c636d..dd646aedf497 100644 > --- a/lib/i915/i915_drm_local.h > +++ b/lib/i915/i915_drm_local.h > @@ -19,61 +19,6 @@ extern "C" { > * or local_ prefix and without any #ifndef's. Attempt should be made to > * clean these up when kernel uapi headers are sync'd. > */ > -#define I915_ENGINE_CLASS_COMPUTE 4 > - > -#define DRM_I915_QUERY_GEOMETRY_SUBSLICES 6 > - > -#define DRM_I915_PERF_PROP_OA_ENGINE_CLASS 9 > -#define DRM_I915_PERF_PROP_OA_ENGINE_INSTANCE 10 > - > -/* > - * Top 4 bits of every non-engine counter are GT id. > - */ > -#define __I915_PMU_GT_SHIFT (60) > - > -#define ___I915_PMU_OTHER(gt, x) \ > - (((__u64)__I915_PMU_ENGINE(0xff, 0xff, 0xf) + 1 + (x)) | \ > - ((__u64)(gt) << __I915_PMU_GT_SHIFT)) > - > -#define __I915_PMU_ACTUAL_FREQUENCY(gt) ___I915_PMU_OTHER(gt, 0) > -#define __I915_PMU_REQUESTED_FREQUENCY(gt) ___I915_PMU_OTHER(gt, 1) > -#define __I915_PMU_INTERRUPTS(gt) ___I915_PMU_OTHER(gt, 2) > -#define __I915_PMU_RC6_RESIDENCY(gt) ___I915_PMU_OTHER(gt, 3) > -#define __I915_PMU_SOFTWARE_GT_AWAKE_TIME(gt) ___I915_PMU_OTHER(gt, 4) > - > -#define I915_GEM_CREATE_EXT_SET_PAT 2 > - > -/** > - * struct drm_i915_gem_create_ext_set_pat - The > - * I915_GEM_CREATE_EXT_SET_PAT extension. > - * > - * If this extension is provided, the specified caching policy (PAT index) is > - * applied to the buffer object. > - * > - * Below is an example on how to create an object with specific caching policy: > - * > - * .. code-block:: C > - * > - * struct drm_i915_gem_create_ext_set_pat set_pat_ext = { > - * .base = { .name = I915_GEM_CREATE_EXT_SET_PAT }, > - * .pat_index = 0, > - * }; > - * struct drm_i915_gem_create_ext create_ext = { > - * .size = PAGE_SIZE, > - * .extensions = (uintptr_t)&set_pat_ext, > - * }; > - * > - * int err = ioctl(fd, DRM_IOCTL_I915_GEM_CREATE_EXT, &create_ext); > - * if (err) ... > - */ > -struct drm_i915_gem_create_ext_set_pat { > - /** @base: Extension link. See struct i915_user_extension. */ > - struct i915_user_extension base; > - /** @pat_index: PAT index to be set */ > - __u32 pat_index; > - /** @rsvd: reserved for future use */ > - __u32 rsvd; > -}; > > #if defined(__cplusplus) > } > -- > 2.41.0 > ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-09-26 16:32 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-22 21:19 [igt-dev] [PATCH i-g-t] include/drm-uapi: Update to latest i915_drm.h from drm-next Ashutosh Dixit 2023-09-22 22:15 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-09-22 22:43 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-09-24 2:40 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-09-26 16:32 ` [igt-dev] [PATCH i-g-t] " Kamil Konieczny
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox