* [PATCH v2 0/3] Test panthor sparse mappings
@ 2026-05-08 17:25 Adrián Larumbe
2026-05-08 17:25 ` [PATCH v2 1/3] drm-uapi/panthor: sync with kernel 5731bca6a656 Adrián Larumbe
` (6 more replies)
0 siblings, 7 replies; 12+ messages in thread
From: Adrián Larumbe @ 2026-05-08 17:25 UTC (permalink / raw)
To: igt-dev, Petri Latvala, Arkadiusz Hiler, Kamil Konieczny,
Juha-Pekka Heikkila, Bhanuprakash Modem
Cc: Boris Brezillon, Steven Price, Liviu Dudau, Adrián Larumbe,
Daniel Almeida, kernel
This patch series adds IGT tests to validate Panthor's sparse mappings
functionality. They are meant to support sparse bindings in Vulkan, but we
found it necessary to test it separately to make sure all corner remap and
unmap cases intersecting with sparse VA's are covered.
Link to the previous revision can be found at [1].
Kernel patches necessary to test the functionality herein can be found at [2]
Changelog:
v2:
- Reformated DRM uAPI update commit so that it meets the usual IGT convention.
- Renamed panthor_vm_repeat.c to panthor_vm_sparse.c to reflect changes in interface naming.
- Deleted test that submits job to the GPU targeting bound addresses because sparse mappings
no longer require a user-created BO.
- Changed interfaces and sparse mapping sequence in the tests to reflect the changes above.
[1] https://lore.kernel.org/igt-dev/20260313175908.1752151-1-adrian.larumbe@collabora.com
[2] https://lore.kernel.org/dri-devel/20260507214939.2852489-1-adrian.larumbe@collabora.com
Adrián Larumbe (3):
drm-uapi/panthor: sync with kernel 5731bca6a656
panthor: Add IGT library helper for Panthor sparse mappings
tests/panthor: Add Panthor sparse VM_BIND tests
include/drm-uapi/panthor_drm.h | 246 ++++++++++++++++++++++-
lib/igt_panthor.h | 9 +
tests/panthor/meson.build | 1 +
tests/panthor/panthor_vm_sparse.c | 316 ++++++++++++++++++++++++++++++
4 files changed, 566 insertions(+), 6 deletions(-)
create mode 100644 tests/panthor/panthor_vm_sparse.c
base-commit: 529869b7d0fba64ed67819111079ff269bc8159a
--
2.53.0
^ permalink raw reply [flat|nested] 12+ messages in thread* [PATCH v2 1/3] drm-uapi/panthor: sync with kernel 5731bca6a656 2026-05-08 17:25 [PATCH v2 0/3] Test panthor sparse mappings Adrián Larumbe @ 2026-05-08 17:25 ` Adrián Larumbe 2026-05-13 14:04 ` Kamil Konieczny 2026-05-08 17:25 ` [PATCH v2 2/3] panthor: Add IGT library helper for Panthor sparse mappings Adrián Larumbe ` (5 subsequent siblings) 6 siblings, 1 reply; 12+ messages in thread From: Adrián Larumbe @ 2026-05-08 17:25 UTC (permalink / raw) To: igt-dev, Petri Latvala, Arkadiusz Hiler, Kamil Konieczny, Juha-Pekka Heikkila, Bhanuprakash Modem Cc: Boris Brezillon, Steven Price, Liviu Dudau, Adrián Larumbe, Daniel Almeida, kernel Sync Panthor drm uapi with drm-next up to commit 5731bca6a656, this will bring following changes: commit 5731bca6a656 ("drm/panthor: Support sparse mappings") commit a07a79ff4b51 ("drm/panthor: Delete spurious whitespace from uAPI header") commit 3844bb04f7e4 ("drm/panthor: Expose GPU page sizes to UM") commit 1dfa2fd98f17 ("drm/panthor: extend timestamp query with flags") commit 5c3c3e7b654d ("drm/panthor: Fix kerneldoc in uAPI header") commit cd2c9c3015e6 ("drm/panthor: Add flag to map GEM object Write-Back Cacheable") commit c146c82f862e ("drm/panthor: Add an ioctl to query BO flags") commit e06177ec7a36 ("drm/panthor: Add a PANTHOR_BO_SYNC ioctl") commit ea78ec982653 ("drm/panthor: Expose the selected coherency protocol to the UMD") Signed-off-by: Adrián Larumbe <adrian.larumbe@collabora.com> --- include/drm-uapi/panthor_drm.h | 246 ++++++++++++++++++++++++++++++++- 1 file changed, 240 insertions(+), 6 deletions(-) diff --git a/include/drm-uapi/panthor_drm.h b/include/drm-uapi/panthor_drm.h index 467d365ed7ba..a2ff0f4ec691 100644 --- a/include/drm-uapi/panthor_drm.h +++ b/include/drm-uapi/panthor_drm.h @@ -144,6 +144,16 @@ enum drm_panthor_ioctl_id { * pgoff_t size. */ DRM_PANTHOR_SET_USER_MMIO_OFFSET, + + /** @DRM_PANTHOR_BO_SYNC: Sync BO data to/from the device */ + DRM_PANTHOR_BO_SYNC, + + /** + * @DRM_PANTHOR_BO_QUERY_INFO: Query information about a BO. + * + * This is useful for imported BOs. + */ + DRM_PANTHOR_BO_QUERY_INFO, }; /** @@ -243,6 +253,29 @@ enum drm_panthor_dev_query_type { * @DRM_PANTHOR_DEV_QUERY_GROUP_PRIORITIES_INFO: Query allowed group priorities information. */ DRM_PANTHOR_DEV_QUERY_GROUP_PRIORITIES_INFO, + + /** @DRM_PANTHOR_DEV_QUERY_MMU_INFO: Query MMU information. */ + DRM_PANTHOR_DEV_QUERY_MMU_INFO, +}; + +/** + * enum drm_panthor_gpu_coherency: Type of GPU coherency + */ +enum drm_panthor_gpu_coherency { + /** + * @DRM_PANTHOR_GPU_COHERENCY_ACE_LITE: ACE Lite coherency. + */ + DRM_PANTHOR_GPU_COHERENCY_ACE_LITE = 0, + + /** + * @DRM_PANTHOR_GPU_COHERENCY_ACE: ACE coherency. + */ + DRM_PANTHOR_GPU_COHERENCY_ACE = 1, + + /** + * @DRM_PANTHOR_GPU_COHERENCY_NONE: No coherency. + */ + DRM_PANTHOR_GPU_COHERENCY_NONE = 31, }; /** @@ -301,7 +334,16 @@ struct drm_panthor_gpu_info { */ __u32 thread_max_barrier_size; - /** @coherency_features: Coherency features. */ + /** + * @coherency_features: Coherency features. + * + * Combination of drm_panthor_gpu_coherency flags. + * + * Note that this is just what the coherency protocols supported by the + * GPU, but the actual coherency in place depends on the SoC + * integration and is reflected by + * drm_panthor_gpu_info::selected_coherency. + */ __u32 coherency_features; /** @texture_features: Texture features. */ @@ -310,8 +352,12 @@ struct drm_panthor_gpu_info { /** @as_present: Bitmask encoding the number of address-space exposed by the MMU. */ __u32 as_present; - /** @pad0: MBZ. */ - __u32 pad0; + /** + * @selected_coherency: Coherency selected for this device. + * + * One of drm_panthor_gpu_coherency. + */ + __u32 selected_coherency; /** @shader_present: Bitmask encoding the shader cores exposed by the GPU. */ __u64 shader_present; @@ -366,6 +412,38 @@ struct drm_panthor_csif_info { __u32 pad; }; +/** + * enum drm_panthor_timestamp_info_flags - drm_panthor_timestamp_info.flags + */ +enum drm_panthor_timestamp_info_flags { + /** @DRM_PANTHOR_TIMESTAMP_GPU: Query GPU time. */ + DRM_PANTHOR_TIMESTAMP_GPU = 1 << 0, + + /** @DRM_PANTHOR_TIMESTAMP_CPU_NONE: Don't query CPU time. */ + DRM_PANTHOR_TIMESTAMP_CPU_NONE = 0 << 1, + + /** @DRM_PANTHOR_TIMESTAMP_CPU_MONOTONIC: Query CPU time using CLOCK_MONOTONIC. */ + DRM_PANTHOR_TIMESTAMP_CPU_MONOTONIC = 1 << 1, + + /** @DRM_PANTHOR_TIMESTAMP_CPU_MONOTONIC_RAW: Query CPU time using CLOCK_MONOTONIC_RAW. */ + DRM_PANTHOR_TIMESTAMP_CPU_MONOTONIC_RAW = 2 << 1, + + /** @DRM_PANTHOR_TIMESTAMP_CPU_TYPE_MASK: Space reserved for CPU clock type. */ + DRM_PANTHOR_TIMESTAMP_CPU_TYPE_MASK = 7 << 1, + + /** @DRM_PANTHOR_TIMESTAMP_GPU_OFFSET: Query GPU offset. */ + DRM_PANTHOR_TIMESTAMP_GPU_OFFSET = 1 << 4, + + /** @DRM_PANTHOR_TIMESTAMP_GPU_CYCLE_COUNT: Query GPU cycle count. */ + DRM_PANTHOR_TIMESTAMP_GPU_CYCLE_COUNT = 1 << 5, + + /** @DRM_PANTHOR_TIMESTAMP_FREQ: Query timestamp frequency. */ + DRM_PANTHOR_TIMESTAMP_FREQ = 1 << 6, + + /** @DRM_PANTHOR_TIMESTAMP_DURATION: Return duration of time query. */ + DRM_PANTHOR_TIMESTAMP_DURATION = 1 << 7, +}; + /** * struct drm_panthor_timestamp_info - Timestamp information * @@ -378,11 +456,48 @@ struct drm_panthor_timestamp_info { */ __u64 timestamp_frequency; - /** @current_timestamp: The current timestamp. */ + /** @current_timestamp: The current GPU timestamp. */ __u64 current_timestamp; - /** @timestamp_offset: The offset of the timestamp timer. */ + /** @timestamp_offset: The offset of the GPU timestamp timer. */ __u64 timestamp_offset; + + /** + * @flags: Bitmask of drm_panthor_timestamp_info_flags. + * + * If set to 0, then it is interpreted as: + * DRM_PANTHOR_TIMESTAMP_GPU | + * DRM_PANTHOR_TIMESTAMP_GPU_OFFSET | + * DRM_PANTHOR_TIMESTAMP_FREQ + * + * Note: these flags are exclusive to each other (only one can be used): + * - DRM_PANTHOR_TIMESTAMP_CPU_NONE + * - DRM_PANTHOR_TIMESTAMP_CPU_MONOTONIC + * - DRM_PANTHOR_TIMESTAMP_CPU_MONOTONIC_RAW + */ + __u32 flags; + + /** @duration_nsec: Duration of time query. */ + __u32 duration_nsec; + + /** @cycle_count: Value of GPU_CYCLE_COUNT. */ + __u64 cycle_count; + + /** @cpu_timestamp_sec: Seconds part of CPU timestamp. */ + __u64 cpu_timestamp_sec; + + /** @cpu_timestamp_nsec: Nanseconds part of CPU timestamp. */ + __u64 cpu_timestamp_nsec; +}; + +/** + * struct drm_panthor_mmu_info - MMU information + * + * Structure grouping all queryable information relating to the MMU. + */ +struct drm_panthor_mmu_info { + /** @page_size_bitmap: Allowed page sizes */ + __u64 page_size_bitmap; }; /** @@ -499,6 +614,18 @@ enum drm_panthor_vm_bind_op_flags { */ DRM_PANTHOR_VM_BIND_OP_MAP_UNCACHED = 1 << 2, + /** + * @DRM_PANTHOR_VM_BIND_OP_MAP_SPARSE: Sparsely map a virtual memory range + * + * Only valid with DRM_PANTHOR_VM_BIND_OP_TYPE_MAP. + * + * When this flag is set, the whole vm_bind range is mapped over a dummy object in a cyclic + * fashion, and all GPU reads from addresses in the range return undefined values. This flag + * being set means drm_panthor_vm_bind_op::bo_offset and drm_panthor_vm_bind_op::bo_handle + * must both be set to 0. DRM_PANTHOR_VM_BIND_OP_MAP_NOEXEC must also be set. + */ + DRM_PANTHOR_VM_BIND_OP_MAP_SPARSE = 1 << 3, + /** * @DRM_PANTHOR_VM_BIND_OP_TYPE_MASK: Mask used to determine the type of operation. */ @@ -562,7 +689,6 @@ struct drm_panthor_vm_bind_op { * This array shall not be empty for sync-only operations. */ struct drm_panthor_obj_array syncs; - }; /** @@ -638,6 +764,15 @@ struct drm_panthor_vm_get_state { enum drm_panthor_bo_flags { /** @DRM_PANTHOR_BO_NO_MMAP: The buffer object will never be CPU-mapped in userspace. */ DRM_PANTHOR_BO_NO_MMAP = (1 << 0), + + /** + * @DRM_PANTHOR_BO_WB_MMAP: Force "Write-Back Cacheable" CPU mapping. + * + * CPU map the buffer object in userspace by forcing the "Write-Back + * Cacheable" cacheability attribute. The mapping otherwise uses the + * "Non-Cacheable" attribute if the GPU is not IO coherent. + */ + DRM_PANTHOR_BO_WB_MMAP = (1 << 1), }; /** @@ -1040,6 +1175,101 @@ struct drm_panthor_set_user_mmio_offset { __u64 offset; }; +/** + * enum drm_panthor_bo_sync_op_type - BO sync type + */ +enum drm_panthor_bo_sync_op_type { + /** @DRM_PANTHOR_BO_SYNC_CPU_CACHE_FLUSH: Flush CPU caches. */ + DRM_PANTHOR_BO_SYNC_CPU_CACHE_FLUSH = 0, + + /** @DRM_PANTHOR_BO_SYNC_CPU_CACHE_FLUSH_AND_INVALIDATE: Flush and invalidate CPU caches. */ + DRM_PANTHOR_BO_SYNC_CPU_CACHE_FLUSH_AND_INVALIDATE = 1, +}; + +/** + * struct drm_panthor_bo_sync_op - BO map sync op + */ +struct drm_panthor_bo_sync_op { + /** @handle: Handle of the buffer object to sync. */ + __u32 handle; + + /** @type: Type of operation. */ + __u32 type; + + /** + * @offset: Offset into the BO at which the sync range starts. + * + * This will be rounded down to the nearest cache line as needed. + */ + __u64 offset; + + /** + * @size: Size of the range to sync + * + * @size + @offset will be rounded up to the nearest cache line as + * needed. + */ + __u64 size; +}; + +/** + * struct drm_panthor_bo_sync - BO map sync request + */ +struct drm_panthor_bo_sync { + /** + * @ops: Array of struct drm_panthor_bo_sync_op sync operations. + */ + struct drm_panthor_obj_array ops; +}; + +/** + * enum drm_panthor_bo_extra_flags - Set of flags returned on a BO_QUERY_INFO request + * + * Those are flags reflecting BO properties that are not directly coming from the flags + * passed are creation time, or information on BOs that were imported from other drivers. + */ +enum drm_panthor_bo_extra_flags { + /** + * @DRM_PANTHOR_BO_IS_IMPORTED: BO has been imported from an external driver. + * + * Note that imported dma-buf handles are not flagged as imported if they + * where exported by panthor. Only buffers that are coming from other drivers + * (dma heaps, other GPUs, display controllers, V4L, ...). + * + * It's also important to note that all imported BOs are mapped cached and can't + * be considered IO-coherent even if the GPU is. This means they require explicit + * syncs that must go through the DRM_PANTHOR_BO_SYNC ioctl (userland cache + * maintenance is not allowed in that case, because extra operations might be + * needed to make changes visible to the CPU/device, like buffer migration when the + * exporter is a GPU with its own VRAM). + */ + DRM_PANTHOR_BO_IS_IMPORTED = (1 << 0), +}; + +/** + * struct drm_panthor_bo_query_info - Query BO info + */ +struct drm_panthor_bo_query_info { + /** @handle: Handle of the buffer object to query flags on. */ + __u32 handle; + + /** + * @extra_flags: Combination of enum drm_panthor_bo_extra_flags flags. + */ + __u32 extra_flags; + + /** + * @create_flags: Flags passed at creation time. + * + * Combination of enum drm_panthor_bo_flags flags. + * Will be zero if the buffer comes from a different driver. + */ + __u32 create_flags; + + /** @pad: Will be zero on return. */ + __u32 pad; +}; + /** * DRM_IOCTL_PANTHOR() - Build a Panthor IOCTL number * @__access: Access type. Must be R, W or RW. @@ -1086,6 +1316,10 @@ enum { DRM_IOCTL_PANTHOR(WR, BO_SET_LABEL, bo_set_label), DRM_IOCTL_PANTHOR_SET_USER_MMIO_OFFSET = DRM_IOCTL_PANTHOR(WR, SET_USER_MMIO_OFFSET, set_user_mmio_offset), + DRM_IOCTL_PANTHOR_BO_SYNC = + DRM_IOCTL_PANTHOR(WR, BO_SYNC, bo_sync), + DRM_IOCTL_PANTHOR_BO_QUERY_INFO = + DRM_IOCTL_PANTHOR(WR, BO_QUERY_INFO, bo_query_info), }; #if defined(__cplusplus) -- 2.53.0 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH v2 1/3] drm-uapi/panthor: sync with kernel 5731bca6a656 2026-05-08 17:25 ` [PATCH v2 1/3] drm-uapi/panthor: sync with kernel 5731bca6a656 Adrián Larumbe @ 2026-05-13 14:04 ` Kamil Konieczny 0 siblings, 0 replies; 12+ messages in thread From: Kamil Konieczny @ 2026-05-13 14:04 UTC (permalink / raw) To: Adrián Larumbe Cc: igt-dev, Petri Latvala, Arkadiusz Hiler, Juha-Pekka Heikkila, Bhanuprakash Modem, Boris Brezillon, Steven Price, Liviu Dudau, Daniel Almeida, kernel Hi Adrián, On 2026-05-08 at 18:25:33 +0100, Adrián Larumbe wrote: > Sync Panthor drm uapi with drm-next up to commit 5731bca6a656, this > will bring following changes: > > commit 5731bca6a656 ("drm/panthor: Support sparse mappings") > commit a07a79ff4b51 ("drm/panthor: Delete spurious whitespace from uAPI header") > commit 3844bb04f7e4 ("drm/panthor: Expose GPU page sizes to UM") Above commits are not in current drm-next, did you take them from drm-tip? > commit 1dfa2fd98f17 ("drm/panthor: extend timestamp query with flags") This is a first commit I found on drm-next with $ git lg -- include/uapi/drm/panthor_drm.h 1dfa2fd98f17 drm/panthor: extend timestamp query with flags So maybe split this into two commits, first with drm-next align, second with drm-tip? Or am I mising something? Regards, Kamil > commit 5c3c3e7b654d ("drm/panthor: Fix kerneldoc in uAPI header") > commit cd2c9c3015e6 ("drm/panthor: Add flag to map GEM object Write-Back Cacheable") > commit c146c82f862e ("drm/panthor: Add an ioctl to query BO flags") > commit e06177ec7a36 ("drm/panthor: Add a PANTHOR_BO_SYNC ioctl") > commit ea78ec982653 ("drm/panthor: Expose the selected coherency protocol to the UMD") > > Signed-off-by: Adrián Larumbe <adrian.larumbe@collabora.com> > --- > include/drm-uapi/panthor_drm.h | 246 ++++++++++++++++++++++++++++++++- > 1 file changed, 240 insertions(+), 6 deletions(-) > > diff --git a/include/drm-uapi/panthor_drm.h b/include/drm-uapi/panthor_drm.h > index 467d365ed7ba..a2ff0f4ec691 100644 > --- a/include/drm-uapi/panthor_drm.h > +++ b/include/drm-uapi/panthor_drm.h > @@ -144,6 +144,16 @@ enum drm_panthor_ioctl_id { > * pgoff_t size. > */ > DRM_PANTHOR_SET_USER_MMIO_OFFSET, > + > + /** @DRM_PANTHOR_BO_SYNC: Sync BO data to/from the device */ > + DRM_PANTHOR_BO_SYNC, > + > + /** > + * @DRM_PANTHOR_BO_QUERY_INFO: Query information about a BO. > + * > + * This is useful for imported BOs. > + */ > + DRM_PANTHOR_BO_QUERY_INFO, > }; > > /** > @@ -243,6 +253,29 @@ enum drm_panthor_dev_query_type { > * @DRM_PANTHOR_DEV_QUERY_GROUP_PRIORITIES_INFO: Query allowed group priorities information. > */ > DRM_PANTHOR_DEV_QUERY_GROUP_PRIORITIES_INFO, > + > + /** @DRM_PANTHOR_DEV_QUERY_MMU_INFO: Query MMU information. */ > + DRM_PANTHOR_DEV_QUERY_MMU_INFO, > +}; > + > +/** > + * enum drm_panthor_gpu_coherency: Type of GPU coherency > + */ > +enum drm_panthor_gpu_coherency { > + /** > + * @DRM_PANTHOR_GPU_COHERENCY_ACE_LITE: ACE Lite coherency. > + */ > + DRM_PANTHOR_GPU_COHERENCY_ACE_LITE = 0, > + > + /** > + * @DRM_PANTHOR_GPU_COHERENCY_ACE: ACE coherency. > + */ > + DRM_PANTHOR_GPU_COHERENCY_ACE = 1, > + > + /** > + * @DRM_PANTHOR_GPU_COHERENCY_NONE: No coherency. > + */ > + DRM_PANTHOR_GPU_COHERENCY_NONE = 31, > }; > > /** > @@ -301,7 +334,16 @@ struct drm_panthor_gpu_info { > */ > __u32 thread_max_barrier_size; > > - /** @coherency_features: Coherency features. */ > + /** > + * @coherency_features: Coherency features. > + * > + * Combination of drm_panthor_gpu_coherency flags. > + * > + * Note that this is just what the coherency protocols supported by the > + * GPU, but the actual coherency in place depends on the SoC > + * integration and is reflected by > + * drm_panthor_gpu_info::selected_coherency. > + */ > __u32 coherency_features; > > /** @texture_features: Texture features. */ > @@ -310,8 +352,12 @@ struct drm_panthor_gpu_info { > /** @as_present: Bitmask encoding the number of address-space exposed by the MMU. */ > __u32 as_present; > > - /** @pad0: MBZ. */ > - __u32 pad0; > + /** > + * @selected_coherency: Coherency selected for this device. > + * > + * One of drm_panthor_gpu_coherency. > + */ > + __u32 selected_coherency; > > /** @shader_present: Bitmask encoding the shader cores exposed by the GPU. */ > __u64 shader_present; > @@ -366,6 +412,38 @@ struct drm_panthor_csif_info { > __u32 pad; > }; > > +/** > + * enum drm_panthor_timestamp_info_flags - drm_panthor_timestamp_info.flags > + */ > +enum drm_panthor_timestamp_info_flags { > + /** @DRM_PANTHOR_TIMESTAMP_GPU: Query GPU time. */ > + DRM_PANTHOR_TIMESTAMP_GPU = 1 << 0, > + > + /** @DRM_PANTHOR_TIMESTAMP_CPU_NONE: Don't query CPU time. */ > + DRM_PANTHOR_TIMESTAMP_CPU_NONE = 0 << 1, > + > + /** @DRM_PANTHOR_TIMESTAMP_CPU_MONOTONIC: Query CPU time using CLOCK_MONOTONIC. */ > + DRM_PANTHOR_TIMESTAMP_CPU_MONOTONIC = 1 << 1, > + > + /** @DRM_PANTHOR_TIMESTAMP_CPU_MONOTONIC_RAW: Query CPU time using CLOCK_MONOTONIC_RAW. */ > + DRM_PANTHOR_TIMESTAMP_CPU_MONOTONIC_RAW = 2 << 1, > + > + /** @DRM_PANTHOR_TIMESTAMP_CPU_TYPE_MASK: Space reserved for CPU clock type. */ > + DRM_PANTHOR_TIMESTAMP_CPU_TYPE_MASK = 7 << 1, > + > + /** @DRM_PANTHOR_TIMESTAMP_GPU_OFFSET: Query GPU offset. */ > + DRM_PANTHOR_TIMESTAMP_GPU_OFFSET = 1 << 4, > + > + /** @DRM_PANTHOR_TIMESTAMP_GPU_CYCLE_COUNT: Query GPU cycle count. */ > + DRM_PANTHOR_TIMESTAMP_GPU_CYCLE_COUNT = 1 << 5, > + > + /** @DRM_PANTHOR_TIMESTAMP_FREQ: Query timestamp frequency. */ > + DRM_PANTHOR_TIMESTAMP_FREQ = 1 << 6, > + > + /** @DRM_PANTHOR_TIMESTAMP_DURATION: Return duration of time query. */ > + DRM_PANTHOR_TIMESTAMP_DURATION = 1 << 7, > +}; > + > /** > * struct drm_panthor_timestamp_info - Timestamp information > * > @@ -378,11 +456,48 @@ struct drm_panthor_timestamp_info { > */ > __u64 timestamp_frequency; > > - /** @current_timestamp: The current timestamp. */ > + /** @current_timestamp: The current GPU timestamp. */ > __u64 current_timestamp; > > - /** @timestamp_offset: The offset of the timestamp timer. */ > + /** @timestamp_offset: The offset of the GPU timestamp timer. */ > __u64 timestamp_offset; > + > + /** > + * @flags: Bitmask of drm_panthor_timestamp_info_flags. > + * > + * If set to 0, then it is interpreted as: > + * DRM_PANTHOR_TIMESTAMP_GPU | > + * DRM_PANTHOR_TIMESTAMP_GPU_OFFSET | > + * DRM_PANTHOR_TIMESTAMP_FREQ > + * > + * Note: these flags are exclusive to each other (only one can be used): > + * - DRM_PANTHOR_TIMESTAMP_CPU_NONE > + * - DRM_PANTHOR_TIMESTAMP_CPU_MONOTONIC > + * - DRM_PANTHOR_TIMESTAMP_CPU_MONOTONIC_RAW > + */ > + __u32 flags; > + > + /** @duration_nsec: Duration of time query. */ > + __u32 duration_nsec; > + > + /** @cycle_count: Value of GPU_CYCLE_COUNT. */ > + __u64 cycle_count; > + > + /** @cpu_timestamp_sec: Seconds part of CPU timestamp. */ > + __u64 cpu_timestamp_sec; > + > + /** @cpu_timestamp_nsec: Nanseconds part of CPU timestamp. */ > + __u64 cpu_timestamp_nsec; > +}; > + > +/** > + * struct drm_panthor_mmu_info - MMU information > + * > + * Structure grouping all queryable information relating to the MMU. > + */ > +struct drm_panthor_mmu_info { > + /** @page_size_bitmap: Allowed page sizes */ > + __u64 page_size_bitmap; > }; > > /** > @@ -499,6 +614,18 @@ enum drm_panthor_vm_bind_op_flags { > */ > DRM_PANTHOR_VM_BIND_OP_MAP_UNCACHED = 1 << 2, > > + /** > + * @DRM_PANTHOR_VM_BIND_OP_MAP_SPARSE: Sparsely map a virtual memory range > + * > + * Only valid with DRM_PANTHOR_VM_BIND_OP_TYPE_MAP. > + * > + * When this flag is set, the whole vm_bind range is mapped over a dummy object in a cyclic > + * fashion, and all GPU reads from addresses in the range return undefined values. This flag > + * being set means drm_panthor_vm_bind_op::bo_offset and drm_panthor_vm_bind_op::bo_handle > + * must both be set to 0. DRM_PANTHOR_VM_BIND_OP_MAP_NOEXEC must also be set. > + */ > + DRM_PANTHOR_VM_BIND_OP_MAP_SPARSE = 1 << 3, > + > /** > * @DRM_PANTHOR_VM_BIND_OP_TYPE_MASK: Mask used to determine the type of operation. > */ > @@ -562,7 +689,6 @@ struct drm_panthor_vm_bind_op { > * This array shall not be empty for sync-only operations. > */ > struct drm_panthor_obj_array syncs; > - > }; > > /** > @@ -638,6 +764,15 @@ struct drm_panthor_vm_get_state { > enum drm_panthor_bo_flags { > /** @DRM_PANTHOR_BO_NO_MMAP: The buffer object will never be CPU-mapped in userspace. */ > DRM_PANTHOR_BO_NO_MMAP = (1 << 0), > + > + /** > + * @DRM_PANTHOR_BO_WB_MMAP: Force "Write-Back Cacheable" CPU mapping. > + * > + * CPU map the buffer object in userspace by forcing the "Write-Back > + * Cacheable" cacheability attribute. The mapping otherwise uses the > + * "Non-Cacheable" attribute if the GPU is not IO coherent. > + */ > + DRM_PANTHOR_BO_WB_MMAP = (1 << 1), > }; > > /** > @@ -1040,6 +1175,101 @@ struct drm_panthor_set_user_mmio_offset { > __u64 offset; > }; > > +/** > + * enum drm_panthor_bo_sync_op_type - BO sync type > + */ > +enum drm_panthor_bo_sync_op_type { > + /** @DRM_PANTHOR_BO_SYNC_CPU_CACHE_FLUSH: Flush CPU caches. */ > + DRM_PANTHOR_BO_SYNC_CPU_CACHE_FLUSH = 0, > + > + /** @DRM_PANTHOR_BO_SYNC_CPU_CACHE_FLUSH_AND_INVALIDATE: Flush and invalidate CPU caches. */ > + DRM_PANTHOR_BO_SYNC_CPU_CACHE_FLUSH_AND_INVALIDATE = 1, > +}; > + > +/** > + * struct drm_panthor_bo_sync_op - BO map sync op > + */ > +struct drm_panthor_bo_sync_op { > + /** @handle: Handle of the buffer object to sync. */ > + __u32 handle; > + > + /** @type: Type of operation. */ > + __u32 type; > + > + /** > + * @offset: Offset into the BO at which the sync range starts. > + * > + * This will be rounded down to the nearest cache line as needed. > + */ > + __u64 offset; > + > + /** > + * @size: Size of the range to sync > + * > + * @size + @offset will be rounded up to the nearest cache line as > + * needed. > + */ > + __u64 size; > +}; > + > +/** > + * struct drm_panthor_bo_sync - BO map sync request > + */ > +struct drm_panthor_bo_sync { > + /** > + * @ops: Array of struct drm_panthor_bo_sync_op sync operations. > + */ > + struct drm_panthor_obj_array ops; > +}; > + > +/** > + * enum drm_panthor_bo_extra_flags - Set of flags returned on a BO_QUERY_INFO request > + * > + * Those are flags reflecting BO properties that are not directly coming from the flags > + * passed are creation time, or information on BOs that were imported from other drivers. > + */ > +enum drm_panthor_bo_extra_flags { > + /** > + * @DRM_PANTHOR_BO_IS_IMPORTED: BO has been imported from an external driver. > + * > + * Note that imported dma-buf handles are not flagged as imported if they > + * where exported by panthor. Only buffers that are coming from other drivers > + * (dma heaps, other GPUs, display controllers, V4L, ...). > + * > + * It's also important to note that all imported BOs are mapped cached and can't > + * be considered IO-coherent even if the GPU is. This means they require explicit > + * syncs that must go through the DRM_PANTHOR_BO_SYNC ioctl (userland cache > + * maintenance is not allowed in that case, because extra operations might be > + * needed to make changes visible to the CPU/device, like buffer migration when the > + * exporter is a GPU with its own VRAM). > + */ > + DRM_PANTHOR_BO_IS_IMPORTED = (1 << 0), > +}; > + > +/** > + * struct drm_panthor_bo_query_info - Query BO info > + */ > +struct drm_panthor_bo_query_info { > + /** @handle: Handle of the buffer object to query flags on. */ > + __u32 handle; > + > + /** > + * @extra_flags: Combination of enum drm_panthor_bo_extra_flags flags. > + */ > + __u32 extra_flags; > + > + /** > + * @create_flags: Flags passed at creation time. > + * > + * Combination of enum drm_panthor_bo_flags flags. > + * Will be zero if the buffer comes from a different driver. > + */ > + __u32 create_flags; > + > + /** @pad: Will be zero on return. */ > + __u32 pad; > +}; > + > /** > * DRM_IOCTL_PANTHOR() - Build a Panthor IOCTL number > * @__access: Access type. Must be R, W or RW. > @@ -1086,6 +1316,10 @@ enum { > DRM_IOCTL_PANTHOR(WR, BO_SET_LABEL, bo_set_label), > DRM_IOCTL_PANTHOR_SET_USER_MMIO_OFFSET = > DRM_IOCTL_PANTHOR(WR, SET_USER_MMIO_OFFSET, set_user_mmio_offset), > + DRM_IOCTL_PANTHOR_BO_SYNC = > + DRM_IOCTL_PANTHOR(WR, BO_SYNC, bo_sync), > + DRM_IOCTL_PANTHOR_BO_QUERY_INFO = > + DRM_IOCTL_PANTHOR(WR, BO_QUERY_INFO, bo_query_info), > }; > > #if defined(__cplusplus) > -- > 2.53.0 > ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v2 2/3] panthor: Add IGT library helper for Panthor sparse mappings 2026-05-08 17:25 [PATCH v2 0/3] Test panthor sparse mappings Adrián Larumbe 2026-05-08 17:25 ` [PATCH v2 1/3] drm-uapi/panthor: sync with kernel 5731bca6a656 Adrián Larumbe @ 2026-05-08 17:25 ` Adrián Larumbe 2026-05-13 14:00 ` Kamil Konieczny 2026-05-08 17:25 ` [PATCH v2 3/3] tests/panthor: Add Panthor sparse VM_BIND tests Adrián Larumbe ` (4 subsequent siblings) 6 siblings, 1 reply; 12+ messages in thread From: Adrián Larumbe @ 2026-05-08 17:25 UTC (permalink / raw) To: igt-dev, Petri Latvala, Arkadiusz Hiler, Kamil Konieczny, Juha-Pekka Heikkila, Bhanuprakash Modem Cc: Boris Brezillon, Steven Price, Liviu Dudau, Adrián Larumbe, Daniel Almeida, kernel Because Panthor sparse VM_BIND's require a specific set of flags, and also no BO handle shall be specified for them, this helper will help to reduce some noise in future sparse binding tests. Signed-off-by: Adrián Larumbe <adrian.larumbe@collabora.com> --- lib/igt_panthor.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/igt_panthor.h b/lib/igt_panthor.h index be8490840f3a..b9edbd320329 100644 --- a/lib/igt_panthor.h +++ b/lib/igt_panthor.h @@ -44,6 +44,15 @@ static inline void igt_panthor_vm_bind(int fd, uint32_t vm_id, uint32_t bo_handl igt_panthor_vm_bind_offset(fd, vm_id, bo_handle, va, size, 0, flags, err); } +static inline void igt_panthor_vm_bind_sparse(int fd, uint32_t vm_id, + uint64_t va, uint64_t size, int err) +{ + uint32_t flags = DRM_PANTHOR_VM_BIND_OP_TYPE_MAP | + DRM_PANTHOR_VM_BIND_OP_MAP_SPARSE | DRM_PANTHOR_VM_BIND_OP_MAP_NOEXEC; + + igt_panthor_vm_bind_offset(fd, vm_id, 0, va, size, 0, flags, err); +} + enum cs_opcode { CS_OPCODE_NOP = 0, CS_OPCODE_MOVE48 = 1, -- 2.53.0 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH v2 2/3] panthor: Add IGT library helper for Panthor sparse mappings 2026-05-08 17:25 ` [PATCH v2 2/3] panthor: Add IGT library helper for Panthor sparse mappings Adrián Larumbe @ 2026-05-13 14:00 ` Kamil Konieczny 0 siblings, 0 replies; 12+ messages in thread From: Kamil Konieczny @ 2026-05-13 14:00 UTC (permalink / raw) To: Adrián Larumbe Cc: igt-dev, Petri Latvala, Arkadiusz Hiler, Juha-Pekka Heikkila, Bhanuprakash Modem, Boris Brezillon, Steven Price, Liviu Dudau, Daniel Almeida, kernel Hi Adrián, On 2026-05-08 at 18:25:34 +0100, Adrián Larumbe wrote: > Because Panthor sparse VM_BIND's require a specific set of flags, and also > no BO handle shall be specified for them, this helper will help to reduce > some noise in future sparse binding tests. > > Signed-off-by: Adrián Larumbe <adrian.larumbe@collabora.com> > --- > lib/igt_panthor.h | 9 +++++++++ > 1 file changed, 9 insertions(+) > > diff --git a/lib/igt_panthor.h b/lib/igt_panthor.h > index be8490840f3a..b9edbd320329 100644 > --- a/lib/igt_panthor.h > +++ b/lib/igt_panthor.h > @@ -44,6 +44,15 @@ static inline void igt_panthor_vm_bind(int fd, uint32_t vm_id, uint32_t bo_handl > igt_panthor_vm_bind_offset(fd, vm_id, bo_handle, va, size, 0, flags, err); > } > > +static inline void igt_panthor_vm_bind_sparse(int fd, uint32_t vm_id, > + uint64_t va, uint64_t size, int err) > +{ > + uint32_t flags = DRM_PANTHOR_VM_BIND_OP_TYPE_MAP | > + DRM_PANTHOR_VM_BIND_OP_MAP_SPARSE | DRM_PANTHOR_VM_BIND_OP_MAP_NOEXEC; This would be imho better with all aligned: uint32_t flags = DRM_PANTHOR_VM_BIND_OP_TYPE_MAP | DRM_PANTHOR_VM_BIND_OP_MAP_SPARSE | DRM_PANTHOR_VM_BIND_OP_MAP_NOEXEC; LGTM Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Regards, Kamil > + > + igt_panthor_vm_bind_offset(fd, vm_id, 0, va, size, 0, flags, err); > +} > + > enum cs_opcode { > CS_OPCODE_NOP = 0, > CS_OPCODE_MOVE48 = 1, > -- > 2.53.0 > ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v2 3/3] tests/panthor: Add Panthor sparse VM_BIND tests 2026-05-08 17:25 [PATCH v2 0/3] Test panthor sparse mappings Adrián Larumbe 2026-05-08 17:25 ` [PATCH v2 1/3] drm-uapi/panthor: sync with kernel 5731bca6a656 Adrián Larumbe 2026-05-08 17:25 ` [PATCH v2 2/3] panthor: Add IGT library helper for Panthor sparse mappings Adrián Larumbe @ 2026-05-08 17:25 ` Adrián Larumbe 2026-05-13 13:54 ` Kamil Konieczny 2026-05-13 14:48 ` Kamil Konieczny 2026-05-09 0:55 ` ✓ i915.CI.BAT: success for Test panthor sparse mappings Patchwork ` (3 subsequent siblings) 6 siblings, 2 replies; 12+ messages in thread From: Adrián Larumbe @ 2026-05-08 17:25 UTC (permalink / raw) To: igt-dev, Petri Latvala, Arkadiusz Hiler, Kamil Konieczny, Juha-Pekka Heikkila, Bhanuprakash Modem Cc: Boris Brezillon, Steven Price, Liviu Dudau, Adrián Larumbe, Daniel Almeida, kernel In a separate file for the time being, but should eventually be incorporated into panthor_vm.c. Signed-off-by: Adrián Larumbe <adrian.larumbe@collabora.com> --- tests/panthor/meson.build | 1 + tests/panthor/panthor_vm_sparse.c | 316 ++++++++++++++++++++++++++++++ 2 files changed, 317 insertions(+) create mode 100644 tests/panthor/panthor_vm_sparse.c diff --git a/tests/panthor/meson.build b/tests/panthor/meson.build index 42a46e9934a9..f9509ecd8816 100644 --- a/tests/panthor/meson.build +++ b/tests/panthor/meson.build @@ -3,6 +3,7 @@ panthor_progs = [ 'panthor_group', 'panthor_query', 'panthor_vm', + 'panthor_vm_sparse', ] foreach prog : panthor_progs diff --git a/tests/panthor/panthor_vm_sparse.c b/tests/panthor/panthor_vm_sparse.c new file mode 100644 index 000000000000..fe7d25542f41 --- /dev/null +++ b/tests/panthor/panthor_vm_sparse.c @@ -0,0 +1,316 @@ +// SPDX-License-Identifier: MIT +// SPDX-FileCopyrightText: Copyright (C) 2025 Collabora Ltd. + +#include "igt.h" +#include "igt_core.h" +#include "igt_panthor.h" +#include "panthor_drm.h" + +int +igt_main() +{ + int fd; + + igt_fixture() { + fd = drm_open_driver(DRIVER_PANTHOR); + } + + igt_subtest("vm_bind_sparse") { + uint32_t vm_id; + uint64_t map_size = SZ_4K * 4; + + igt_panthor_vm_create(fd, &vm_id, 0); + igt_assert(vm_id != 0); + + igt_panthor_vm_bind_sparse(fd, vm_id, SZ_2M, map_size, 0); + igt_panthor_vm_destroy(fd, vm_id, 0); + } + + igt_subtest("vm_bind_sparse_partial_unmap_start_size_unaligned") { + uint32_t vm_id; + uint64_t map_size = SZ_2M * 3; + const int INITIAL_VA = SZ_4M; + + igt_panthor_vm_create(fd, &vm_id, 0); + igt_assert(vm_id != 0); + + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); + igt_panthor_vm_bind(fd, vm_id, 0, INITIAL_VA, SZ_4K * 2, + DRM_PANTHOR_VM_BIND_OP_TYPE_UNMAP, 0); + igt_panthor_vm_destroy(fd, vm_id, 0); + } + + igt_subtest("vm_bind_sparse_partial_unmap_start_size_aligned") { + uint32_t vm_id; + uint64_t map_size = SZ_2M * 3; + const int INITIAL_VA = SZ_4M; + + igt_panthor_vm_create(fd, &vm_id, 0); + igt_assert(vm_id != 0); + + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); + igt_panthor_vm_bind(fd, vm_id, 0, INITIAL_VA, SZ_2M, + DRM_PANTHOR_VM_BIND_OP_TYPE_UNMAP, 0); + igt_panthor_vm_destroy(fd, vm_id, 0); + } + + igt_subtest + ("vm_bind_sparse_partial_unmap_start_size_unaligned_no_gpupage_multiple") { + uint32_t vm_id; + uint64_t map_size = SZ_2M * 3; + const int INITIAL_VA = SZ_4M; + + igt_panthor_vm_create(fd, &vm_id, 0); + igt_assert(vm_id != 0); + + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); + igt_panthor_vm_bind(fd, vm_id, 0, INITIAL_VA, 4 * SZ_64K, + DRM_PANTHOR_VM_BIND_OP_TYPE_UNMAP, 0); + igt_panthor_vm_destroy(fd, vm_id, 0); + } + + igt_subtest("vm_bind_sparse_partial_unmap_below_start") { + uint32_t vm_id; + uint64_t map_size = SZ_2M * 3; + const int INITIAL_VA = SZ_4M; + + igt_panthor_vm_create(fd, &vm_id, 0); + igt_assert(vm_id != 0); + + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); + igt_panthor_vm_bind(fd, vm_id, 0, INITIAL_VA - SZ_2M, SZ_2M * 3, + DRM_PANTHOR_VM_BIND_OP_TYPE_UNMAP, 0); + igt_panthor_vm_destroy(fd, vm_id, 0); + } + + igt_subtest("vm_bind_sparse_partial_unmap_above_start") { + uint32_t vm_id; + uint64_t map_size = SZ_2M * 3; + const int INITIAL_VA = SZ_4M; + + igt_panthor_vm_create(fd, &vm_id, 0); + igt_assert(vm_id != 0); + + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); + igt_panthor_vm_bind(fd, vm_id, 0, INITIAL_VA + SZ_2M, SZ_2M, + DRM_PANTHOR_VM_BIND_OP_TYPE_UNMAP, 0); + igt_panthor_vm_destroy(fd, vm_id, 0); + } + + igt_subtest("vm_bind_sparse_remap") { + uint32_t vm_id; + struct panthor_bo bo; + uint64_t map_size = SZ_2M * 3; + const int INITIAL_VA = SZ_4M; + + igt_panthor_vm_create(fd, &vm_id, 0); + igt_assert(vm_id != 0); + + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); + + /* Now attempt normal VM_BIND's that intersect with the previous chunk */ + igt_panthor_bo_create(fd, &bo, SZ_8M, 0, 0); + igt_panthor_vm_bind(fd, vm_id, bo.handle, INITIAL_VA + SZ_2M, SZ_2M * 2, + DRM_PANTHOR_VM_BIND_OP_TYPE_MAP, 0); + + igt_panthor_vm_destroy(fd, vm_id, 0); + } + + igt_subtest("vm_bind_sparse_remap_start_unaligned") { + uint32_t vm_id; + struct panthor_bo bo; + uint64_t map_size = SZ_2M * 3; + const int INITIAL_VA = SZ_4M; + + igt_panthor_vm_create(fd, &vm_id, 0); + igt_assert(vm_id != 0); + + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); + + /* Now attempt normal VM_BIND's that intersect with the previous chunk */ + igt_panthor_bo_create(fd, &bo, SZ_8M, 0, 0); + igt_panthor_vm_bind(fd, vm_id, bo.handle, INITIAL_VA + map_size - SZ_1M, + SZ_4M, DRM_PANTHOR_VM_BIND_OP_TYPE_MAP, 0); + + igt_panthor_vm_destroy(fd, vm_id, 0); + } + + igt_subtest("vm_bind_sparse_remap_start_size_unaligned") { + uint32_t vm_id; + struct panthor_bo bo; + uint64_t map_size = SZ_2M * 3; + const int INITIAL_VA = SZ_4M; + + igt_panthor_vm_create(fd, &vm_id, 0); + igt_assert(vm_id != 0); + + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); + + /* Now attempt normal VM_BIND's that intersect with the previous chunk */ + igt_panthor_bo_create(fd, &bo, SZ_8M, 0, 0); + igt_panthor_vm_bind(fd, vm_id, bo.handle, INITIAL_VA + map_size - SZ_1M, + SZ_1M, DRM_PANTHOR_VM_BIND_OP_TYPE_MAP, 0); + + igt_panthor_vm_destroy(fd, vm_id, 0); + } + + igt_subtest("vm_bind_sparse_remap_start_size_aligned") { + uint32_t vm_id; + struct panthor_bo bo; + uint64_t map_size = SZ_2M * 3; + const int INITIAL_VA = SZ_4M; + + igt_panthor_vm_create(fd, &vm_id, 0); + igt_assert(vm_id != 0); + + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); + + /* Now attempt normal VM_BIND's that intersect with the previous chunk */ + igt_panthor_bo_create(fd, &bo, SZ_8M, 0, 0); + igt_panthor_vm_bind(fd, vm_id, bo.handle, + INITIAL_VA + map_size - SZ_2M, SZ_4M, + DRM_PANTHOR_VM_BIND_OP_TYPE_MAP, 0); + + igt_panthor_vm_destroy(fd, vm_id, 0); + } + + igt_subtest("vm_bind_sparse_remap_aligned_split_original_va") { + uint32_t vm_id; + struct panthor_bo bo; + uint64_t map_size = SZ_2M * 3; + const int INITIAL_VA = SZ_4M; + + igt_panthor_vm_create(fd, &vm_id, 0); + igt_assert(vm_id != 0); + + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); + + /* Now attempt normal VM_BIND's that intersect with the previous chunk */ + igt_panthor_bo_create(fd, &bo, SZ_8M, 0, 0); + igt_panthor_vm_bind(fd, vm_id, bo.handle, INITIAL_VA + SZ_2M, + SZ_2M, DRM_PANTHOR_VM_BIND_OP_TYPE_MAP, 0); + + igt_panthor_vm_destroy(fd, vm_id, 0); + } + + igt_subtest("vm_bind_sparse_remap_start_aligned_size_unaligned") { + uint32_t vm_id; + struct panthor_bo bo; + uint64_t map_size = SZ_2M * 3; + const int INITIAL_VA = SZ_4M; + + igt_panthor_vm_create(fd, &vm_id, 0); + igt_assert(vm_id != 0); + + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); + + /* Now attempt normal VM_BIND's that intersect with the previous chunk */ + igt_panthor_bo_create(fd, &bo, SZ_8M, 0, 0); + igt_panthor_vm_bind(fd, vm_id, bo.handle, INITIAL_VA + SZ_2M, + SZ_1M, DRM_PANTHOR_VM_BIND_OP_TYPE_MAP, 0); + + igt_panthor_vm_destroy(fd, vm_id, 0); + } + + igt_subtest("vm_bind_sparse_remap_aligned_intersect_left") { + uint32_t vm_id; + struct panthor_bo bo; + uint64_t map_size = SZ_2M * 3; + const int INITIAL_VA = SZ_4M; + + igt_panthor_vm_create(fd, &vm_id, 0); + igt_assert(vm_id != 0); + + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); + + /* Now attempt normal VM_BIND's that intersect with the previous chunk */ + igt_panthor_bo_create(fd, &bo, SZ_8M, 0, 0); + igt_panthor_vm_bind(fd, vm_id, bo.handle, + INITIAL_VA - SZ_2M, SZ_2M * 2, + DRM_PANTHOR_VM_BIND_OP_TYPE_MAP, 0); + + igt_panthor_vm_destroy(fd, vm_id, 0); + } + + igt_subtest("vm_bind_sparse_remap_size_unaligned_intersect_left") { + uint32_t vm_id; + struct panthor_bo bo; + uint64_t map_size = SZ_2M * 3; + const int INITIAL_VA = SZ_4M; + + igt_panthor_vm_create(fd, &vm_id, 0); + igt_assert(vm_id != 0); + + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); + + /* Now attempt normal VM_BIND's that intersect with the previous chunk */ + igt_panthor_bo_create(fd, &bo, SZ_8M, 0, 0); + igt_panthor_vm_bind(fd, vm_id, bo.handle, + INITIAL_VA - SZ_2M, SZ_1M * 2, + DRM_PANTHOR_VM_BIND_OP_TYPE_MAP, 0); + + igt_panthor_vm_destroy(fd, vm_id, 0); + } + + igt_subtest("vm_bind_sparse_remap_start_aligned_intersect_right") { + uint32_t vm_id; + struct panthor_bo bo; + uint64_t map_size = SZ_2M * 3; + const int INITIAL_VA = SZ_4M; + + igt_panthor_vm_create(fd, &vm_id, 0); + igt_assert(vm_id != 0); + + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); + + /* Now attempt normal VM_BIND's that intersect with the previous chunk */ + igt_panthor_bo_create(fd, &bo, SZ_8M, 0, 0); + igt_panthor_vm_bind(fd, vm_id, bo.handle, + INITIAL_VA + map_size - SZ_2M, SZ_2M + SZ_4K * 6, + DRM_PANTHOR_VM_BIND_OP_TYPE_MAP, 0); + + igt_panthor_vm_destroy(fd, vm_id, 0); + } + + igt_subtest("vm_bind_sparse_remap_wrap_around_va") { + uint32_t vm_id; + struct panthor_bo bo; + uint64_t map_size = SZ_2M * 3; + const int INITIAL_VA = SZ_4M; + + igt_panthor_vm_create(fd, &vm_id, 0); + igt_assert(vm_id != 0); + + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); + + /* Now attempt normal VM_BIND's that intersect with the previous chunk */ + igt_panthor_bo_create(fd, &bo, SZ_8M, 0, 0); + igt_panthor_vm_bind(fd, vm_id, bo.handle, INITIAL_VA - SZ_2M, + SZ_8M, DRM_PANTHOR_VM_BIND_OP_TYPE_MAP, 0); + + igt_panthor_vm_destroy(fd, vm_id, 0); + } + + igt_subtest("vm_bind_sparse_high_vas") { + uint32_t vm_id; + struct panthor_bo bo; + uint64_t map_size = 16 * SZ_4K; + const uint64_t INITIAL_VA = 0x7fffffff0000; + + igt_panthor_vm_create(fd, &vm_id, 0); + igt_assert(vm_id != 0); + + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); + + /* Now attempt normal VM_BIND's that intersect with the previous chunk */ + igt_panthor_bo_create(fd, &bo, map_size, 0, 0); + igt_panthor_vm_bind(fd, vm_id, bo.handle, INITIAL_VA, SZ_4K, + DRM_PANTHOR_VM_BIND_OP_TYPE_MAP, 0); + + igt_panthor_vm_destroy(fd, vm_id, 0); + } + + igt_fixture() { + drm_close_driver(fd); + } +} -- 2.53.0 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH v2 3/3] tests/panthor: Add Panthor sparse VM_BIND tests 2026-05-08 17:25 ` [PATCH v2 3/3] tests/panthor: Add Panthor sparse VM_BIND tests Adrián Larumbe @ 2026-05-13 13:54 ` Kamil Konieczny 2026-05-13 14:48 ` Kamil Konieczny 1 sibling, 0 replies; 12+ messages in thread From: Kamil Konieczny @ 2026-05-13 13:54 UTC (permalink / raw) To: Adrián Larumbe Cc: igt-dev, Petri Latvala, Arkadiusz Hiler, Juha-Pekka Heikkila, Bhanuprakash Modem, Boris Brezillon, Steven Price, Liviu Dudau, Daniel Almeida, kernel Hi Adrián, On 2026-05-08 at 18:25:35 +0100, Adrián Larumbe wrote: > In a separate file for the time being, but should eventually be > incorporated into panthor_vm.c. > > Signed-off-by: Adrián Larumbe <adrian.larumbe@collabora.com> > --- > tests/panthor/meson.build | 1 + > tests/panthor/panthor_vm_sparse.c | 316 ++++++++++++++++++++++++++++++ > 2 files changed, 317 insertions(+) > create mode 100644 tests/panthor/panthor_vm_sparse.c > > diff --git a/tests/panthor/meson.build b/tests/panthor/meson.build > index 42a46e9934a9..f9509ecd8816 100644 > --- a/tests/panthor/meson.build > +++ b/tests/panthor/meson.build > @@ -3,6 +3,7 @@ panthor_progs = [ > 'panthor_group', > 'panthor_query', > 'panthor_vm', > + 'panthor_vm_sparse', ---^ Use tab here, no spaces. > ] > > foreach prog : panthor_progs > diff --git a/tests/panthor/panthor_vm_sparse.c b/tests/panthor/panthor_vm_sparse.c > new file mode 100644 > index 000000000000..fe7d25542f41 > --- /dev/null > +++ b/tests/panthor/panthor_vm_sparse.c > @@ -0,0 +1,316 @@ > +// SPDX-License-Identifier: MIT > +// SPDX-FileCopyrightText: Copyright (C) 2025 Collabora Ltd. Year 2026 unless you sent this to igt-dev ML last year? Rest looks good, LGTM Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Regards, Kamil > + > +#include "igt.h" > +#include "igt_core.h" > +#include "igt_panthor.h" > +#include "panthor_drm.h" > + > +int > +igt_main() > +{ > + int fd; > + > + igt_fixture() { > + fd = drm_open_driver(DRIVER_PANTHOR); > + } > + > + igt_subtest("vm_bind_sparse") { > + uint32_t vm_id; > + uint64_t map_size = SZ_4K * 4; > + > + igt_panthor_vm_create(fd, &vm_id, 0); > + igt_assert(vm_id != 0); > + > + igt_panthor_vm_bind_sparse(fd, vm_id, SZ_2M, map_size, 0); > + igt_panthor_vm_destroy(fd, vm_id, 0); > + } > + > + igt_subtest("vm_bind_sparse_partial_unmap_start_size_unaligned") { > + uint32_t vm_id; > + uint64_t map_size = SZ_2M * 3; > + const int INITIAL_VA = SZ_4M; > + > + igt_panthor_vm_create(fd, &vm_id, 0); > + igt_assert(vm_id != 0); > + > + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); > + igt_panthor_vm_bind(fd, vm_id, 0, INITIAL_VA, SZ_4K * 2, > + DRM_PANTHOR_VM_BIND_OP_TYPE_UNMAP, 0); > + igt_panthor_vm_destroy(fd, vm_id, 0); > + } > + > + igt_subtest("vm_bind_sparse_partial_unmap_start_size_aligned") { > + uint32_t vm_id; > + uint64_t map_size = SZ_2M * 3; > + const int INITIAL_VA = SZ_4M; > + > + igt_panthor_vm_create(fd, &vm_id, 0); > + igt_assert(vm_id != 0); > + > + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); > + igt_panthor_vm_bind(fd, vm_id, 0, INITIAL_VA, SZ_2M, > + DRM_PANTHOR_VM_BIND_OP_TYPE_UNMAP, 0); > + igt_panthor_vm_destroy(fd, vm_id, 0); > + } > + > + igt_subtest > + ("vm_bind_sparse_partial_unmap_start_size_unaligned_no_gpupage_multiple") { > + uint32_t vm_id; > + uint64_t map_size = SZ_2M * 3; > + const int INITIAL_VA = SZ_4M; > + > + igt_panthor_vm_create(fd, &vm_id, 0); > + igt_assert(vm_id != 0); > + > + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); > + igt_panthor_vm_bind(fd, vm_id, 0, INITIAL_VA, 4 * SZ_64K, > + DRM_PANTHOR_VM_BIND_OP_TYPE_UNMAP, 0); > + igt_panthor_vm_destroy(fd, vm_id, 0); > + } > + > + igt_subtest("vm_bind_sparse_partial_unmap_below_start") { > + uint32_t vm_id; > + uint64_t map_size = SZ_2M * 3; > + const int INITIAL_VA = SZ_4M; > + > + igt_panthor_vm_create(fd, &vm_id, 0); > + igt_assert(vm_id != 0); > + > + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); > + igt_panthor_vm_bind(fd, vm_id, 0, INITIAL_VA - SZ_2M, SZ_2M * 3, > + DRM_PANTHOR_VM_BIND_OP_TYPE_UNMAP, 0); > + igt_panthor_vm_destroy(fd, vm_id, 0); > + } > + > + igt_subtest("vm_bind_sparse_partial_unmap_above_start") { > + uint32_t vm_id; > + uint64_t map_size = SZ_2M * 3; > + const int INITIAL_VA = SZ_4M; > + > + igt_panthor_vm_create(fd, &vm_id, 0); > + igt_assert(vm_id != 0); > + > + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); > + igt_panthor_vm_bind(fd, vm_id, 0, INITIAL_VA + SZ_2M, SZ_2M, > + DRM_PANTHOR_VM_BIND_OP_TYPE_UNMAP, 0); > + igt_panthor_vm_destroy(fd, vm_id, 0); > + } > + > + igt_subtest("vm_bind_sparse_remap") { > + uint32_t vm_id; > + struct panthor_bo bo; > + uint64_t map_size = SZ_2M * 3; > + const int INITIAL_VA = SZ_4M; > + > + igt_panthor_vm_create(fd, &vm_id, 0); > + igt_assert(vm_id != 0); > + > + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); > + > + /* Now attempt normal VM_BIND's that intersect with the previous chunk */ > + igt_panthor_bo_create(fd, &bo, SZ_8M, 0, 0); > + igt_panthor_vm_bind(fd, vm_id, bo.handle, INITIAL_VA + SZ_2M, SZ_2M * 2, > + DRM_PANTHOR_VM_BIND_OP_TYPE_MAP, 0); > + > + igt_panthor_vm_destroy(fd, vm_id, 0); > + } > + > + igt_subtest("vm_bind_sparse_remap_start_unaligned") { > + uint32_t vm_id; > + struct panthor_bo bo; > + uint64_t map_size = SZ_2M * 3; > + const int INITIAL_VA = SZ_4M; > + > + igt_panthor_vm_create(fd, &vm_id, 0); > + igt_assert(vm_id != 0); > + > + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); > + > + /* Now attempt normal VM_BIND's that intersect with the previous chunk */ > + igt_panthor_bo_create(fd, &bo, SZ_8M, 0, 0); > + igt_panthor_vm_bind(fd, vm_id, bo.handle, INITIAL_VA + map_size - SZ_1M, > + SZ_4M, DRM_PANTHOR_VM_BIND_OP_TYPE_MAP, 0); > + > + igt_panthor_vm_destroy(fd, vm_id, 0); > + } > + > + igt_subtest("vm_bind_sparse_remap_start_size_unaligned") { > + uint32_t vm_id; > + struct panthor_bo bo; > + uint64_t map_size = SZ_2M * 3; > + const int INITIAL_VA = SZ_4M; > + > + igt_panthor_vm_create(fd, &vm_id, 0); > + igt_assert(vm_id != 0); > + > + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); > + > + /* Now attempt normal VM_BIND's that intersect with the previous chunk */ > + igt_panthor_bo_create(fd, &bo, SZ_8M, 0, 0); > + igt_panthor_vm_bind(fd, vm_id, bo.handle, INITIAL_VA + map_size - SZ_1M, > + SZ_1M, DRM_PANTHOR_VM_BIND_OP_TYPE_MAP, 0); > + > + igt_panthor_vm_destroy(fd, vm_id, 0); > + } > + > + igt_subtest("vm_bind_sparse_remap_start_size_aligned") { > + uint32_t vm_id; > + struct panthor_bo bo; > + uint64_t map_size = SZ_2M * 3; > + const int INITIAL_VA = SZ_4M; > + > + igt_panthor_vm_create(fd, &vm_id, 0); > + igt_assert(vm_id != 0); > + > + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); > + > + /* Now attempt normal VM_BIND's that intersect with the previous chunk */ > + igt_panthor_bo_create(fd, &bo, SZ_8M, 0, 0); > + igt_panthor_vm_bind(fd, vm_id, bo.handle, > + INITIAL_VA + map_size - SZ_2M, SZ_4M, > + DRM_PANTHOR_VM_BIND_OP_TYPE_MAP, 0); > + > + igt_panthor_vm_destroy(fd, vm_id, 0); > + } > + > + igt_subtest("vm_bind_sparse_remap_aligned_split_original_va") { > + uint32_t vm_id; > + struct panthor_bo bo; > + uint64_t map_size = SZ_2M * 3; > + const int INITIAL_VA = SZ_4M; > + > + igt_panthor_vm_create(fd, &vm_id, 0); > + igt_assert(vm_id != 0); > + > + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); > + > + /* Now attempt normal VM_BIND's that intersect with the previous chunk */ > + igt_panthor_bo_create(fd, &bo, SZ_8M, 0, 0); > + igt_panthor_vm_bind(fd, vm_id, bo.handle, INITIAL_VA + SZ_2M, > + SZ_2M, DRM_PANTHOR_VM_BIND_OP_TYPE_MAP, 0); > + > + igt_panthor_vm_destroy(fd, vm_id, 0); > + } > + > + igt_subtest("vm_bind_sparse_remap_start_aligned_size_unaligned") { > + uint32_t vm_id; > + struct panthor_bo bo; > + uint64_t map_size = SZ_2M * 3; > + const int INITIAL_VA = SZ_4M; > + > + igt_panthor_vm_create(fd, &vm_id, 0); > + igt_assert(vm_id != 0); > + > + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); > + > + /* Now attempt normal VM_BIND's that intersect with the previous chunk */ > + igt_panthor_bo_create(fd, &bo, SZ_8M, 0, 0); > + igt_panthor_vm_bind(fd, vm_id, bo.handle, INITIAL_VA + SZ_2M, > + SZ_1M, DRM_PANTHOR_VM_BIND_OP_TYPE_MAP, 0); > + > + igt_panthor_vm_destroy(fd, vm_id, 0); > + } > + > + igt_subtest("vm_bind_sparse_remap_aligned_intersect_left") { > + uint32_t vm_id; > + struct panthor_bo bo; > + uint64_t map_size = SZ_2M * 3; > + const int INITIAL_VA = SZ_4M; > + > + igt_panthor_vm_create(fd, &vm_id, 0); > + igt_assert(vm_id != 0); > + > + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); > + > + /* Now attempt normal VM_BIND's that intersect with the previous chunk */ > + igt_panthor_bo_create(fd, &bo, SZ_8M, 0, 0); > + igt_panthor_vm_bind(fd, vm_id, bo.handle, > + INITIAL_VA - SZ_2M, SZ_2M * 2, > + DRM_PANTHOR_VM_BIND_OP_TYPE_MAP, 0); > + > + igt_panthor_vm_destroy(fd, vm_id, 0); > + } > + > + igt_subtest("vm_bind_sparse_remap_size_unaligned_intersect_left") { > + uint32_t vm_id; > + struct panthor_bo bo; > + uint64_t map_size = SZ_2M * 3; > + const int INITIAL_VA = SZ_4M; > + > + igt_panthor_vm_create(fd, &vm_id, 0); > + igt_assert(vm_id != 0); > + > + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); > + > + /* Now attempt normal VM_BIND's that intersect with the previous chunk */ > + igt_panthor_bo_create(fd, &bo, SZ_8M, 0, 0); > + igt_panthor_vm_bind(fd, vm_id, bo.handle, > + INITIAL_VA - SZ_2M, SZ_1M * 2, > + DRM_PANTHOR_VM_BIND_OP_TYPE_MAP, 0); > + > + igt_panthor_vm_destroy(fd, vm_id, 0); > + } > + > + igt_subtest("vm_bind_sparse_remap_start_aligned_intersect_right") { > + uint32_t vm_id; > + struct panthor_bo bo; > + uint64_t map_size = SZ_2M * 3; > + const int INITIAL_VA = SZ_4M; > + > + igt_panthor_vm_create(fd, &vm_id, 0); > + igt_assert(vm_id != 0); > + > + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); > + > + /* Now attempt normal VM_BIND's that intersect with the previous chunk */ > + igt_panthor_bo_create(fd, &bo, SZ_8M, 0, 0); > + igt_panthor_vm_bind(fd, vm_id, bo.handle, > + INITIAL_VA + map_size - SZ_2M, SZ_2M + SZ_4K * 6, > + DRM_PANTHOR_VM_BIND_OP_TYPE_MAP, 0); > + > + igt_panthor_vm_destroy(fd, vm_id, 0); > + } > + > + igt_subtest("vm_bind_sparse_remap_wrap_around_va") { > + uint32_t vm_id; > + struct panthor_bo bo; > + uint64_t map_size = SZ_2M * 3; > + const int INITIAL_VA = SZ_4M; > + > + igt_panthor_vm_create(fd, &vm_id, 0); > + igt_assert(vm_id != 0); > + > + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); > + > + /* Now attempt normal VM_BIND's that intersect with the previous chunk */ > + igt_panthor_bo_create(fd, &bo, SZ_8M, 0, 0); > + igt_panthor_vm_bind(fd, vm_id, bo.handle, INITIAL_VA - SZ_2M, > + SZ_8M, DRM_PANTHOR_VM_BIND_OP_TYPE_MAP, 0); > + > + igt_panthor_vm_destroy(fd, vm_id, 0); > + } > + > + igt_subtest("vm_bind_sparse_high_vas") { > + uint32_t vm_id; > + struct panthor_bo bo; > + uint64_t map_size = 16 * SZ_4K; > + const uint64_t INITIAL_VA = 0x7fffffff0000; > + > + igt_panthor_vm_create(fd, &vm_id, 0); > + igt_assert(vm_id != 0); > + > + igt_panthor_vm_bind_sparse(fd, vm_id, INITIAL_VA, map_size, 0); > + > + /* Now attempt normal VM_BIND's that intersect with the previous chunk */ > + igt_panthor_bo_create(fd, &bo, map_size, 0, 0); > + igt_panthor_vm_bind(fd, vm_id, bo.handle, INITIAL_VA, SZ_4K, > + DRM_PANTHOR_VM_BIND_OP_TYPE_MAP, 0); > + > + igt_panthor_vm_destroy(fd, vm_id, 0); > + } > + > + igt_fixture() { > + drm_close_driver(fd); > + } > +} > -- > 2.53.0 > ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 3/3] tests/panthor: Add Panthor sparse VM_BIND tests 2026-05-08 17:25 ` [PATCH v2 3/3] tests/panthor: Add Panthor sparse VM_BIND tests Adrián Larumbe 2026-05-13 13:54 ` Kamil Konieczny @ 2026-05-13 14:48 ` Kamil Konieczny 1 sibling, 0 replies; 12+ messages in thread From: Kamil Konieczny @ 2026-05-13 14:48 UTC (permalink / raw) To: Adrián Larumbe Cc: igt-dev, Petri Latvala, Arkadiusz Hiler, Juha-Pekka Heikkila, Bhanuprakash Modem, Boris Brezillon, Steven Price, Liviu Dudau, Daniel Almeida, kernel Hi Adrián, On 2026-05-08 at 18:25:35 +0100, Adrián Larumbe wrote: > In a separate file for the time being, but should eventually be > incorporated into panthor_vm.c. One more nit, there are missing igt_description(), see below. > > Signed-off-by: Adrián Larumbe <adrian.larumbe@collabora.com> > --- > tests/panthor/meson.build | 1 + > tests/panthor/panthor_vm_sparse.c | 316 ++++++++++++++++++++++++++++++ > 2 files changed, 317 insertions(+) > create mode 100644 tests/panthor/panthor_vm_sparse.c > > diff --git a/tests/panthor/meson.build b/tests/panthor/meson.build > index 42a46e9934a9..f9509ecd8816 100644 > --- a/tests/panthor/meson.build > +++ b/tests/panthor/meson.build > @@ -3,6 +3,7 @@ panthor_progs = [ > 'panthor_group', > 'panthor_query', > 'panthor_vm', > + 'panthor_vm_sparse', > ] > > foreach prog : panthor_progs > diff --git a/tests/panthor/panthor_vm_sparse.c b/tests/panthor/panthor_vm_sparse.c > new file mode 100644 > index 000000000000..fe7d25542f41 > --- /dev/null > +++ b/tests/panthor/panthor_vm_sparse.c > @@ -0,0 +1,316 @@ > +// SPDX-License-Identifier: MIT > +// SPDX-FileCopyrightText: Copyright (C) 2025 Collabora Ltd. > + > +#include "igt.h" > +#include "igt_core.h" > +#include "igt_panthor.h" > +#include "panthor_drm.h" > + > +int > +igt_main() > +{ > + int fd; > + > + igt_fixture() { > + fd = drm_open_driver(DRIVER_PANTHOR); > + } > + Add igt_describe("a subtest description here") here and in all places before new subtest. Regards, Kamil > + igt_subtest("vm_bind_sparse") { [cut] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ i915.CI.BAT: success for Test panthor sparse mappings 2026-05-08 17:25 [PATCH v2 0/3] Test panthor sparse mappings Adrián Larumbe ` (2 preceding siblings ...) 2026-05-08 17:25 ` [PATCH v2 3/3] tests/panthor: Add Panthor sparse VM_BIND tests Adrián Larumbe @ 2026-05-09 0:55 ` Patchwork 2026-05-09 1:14 ` ✓ Xe.CI.BAT: " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2026-05-09 0:55 UTC (permalink / raw) To: Adrián Larumbe; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6761 bytes --] == Series Details == Series: Test panthor sparse mappings URL : https://patchwork.freedesktop.org/series/166234/ State : success == Summary == CI Bug Log - changes from IGT_8901 -> IGTPW_15139 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/index.html Participating hosts (41 -> 40) ------------------------------ Additional (1): bat-adlp-9 Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_15139 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@dmabuf@all-tests: - bat-adlp-9: NOTRUN -> [SKIP][1] ([i915#15931]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/bat-adlp-9/igt@dmabuf@all-tests.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-adlp-9: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/bat-adlp-9/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic@basic: - bat-adlp-9: NOTRUN -> [SKIP][3] ([i915#15656]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/bat-adlp-9/igt@gem_tiled_pread_basic@basic.html * igt@i915_pm_rps@basic-api: - bat-adlp-9: NOTRUN -> [SKIP][4] ([i915#6621]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/bat-adlp-9/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8901/bat-arlh-3/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-mtlp-9: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061]) +1 other test dmesg-fail [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8901/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/bat-mtlp-9/igt@i915_selftest@live@workarounds.html * igt@intel_hwmon@hwmon-read: - bat-adlp-9: NOTRUN -> [SKIP][9] ([i915#7707]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/bat-adlp-9/igt@intel_hwmon@hwmon-read.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-adlp-9: NOTRUN -> [SKIP][10] ([i915#4103]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/bat-adlp-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-adlp-9: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#3840]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/bat-adlp-9/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-adlp-9: NOTRUN -> [SKIP][12] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/bat-adlp-9/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - bat-adlp-9: NOTRUN -> [SKIP][13] ([i915#9812]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/bat-adlp-9/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-page-flip: - bat-adlp-9: NOTRUN -> [SKIP][14] ([i915#1072] / [i915#9732]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/bat-adlp-9/igt@kms_psr@psr-primary-page-flip.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adlp-9: NOTRUN -> [SKIP][15] ([i915#3555]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/bat-adlp-9/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-adlp-9: NOTRUN -> [SKIP][16] ([i915#3291] / [i915#3708]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/bat-adlp-9/igt@prime_vgem@basic-fence-read.html #### Possible fixes #### * igt@fbdev@info: - fi-ivb-3770: [SKIP][17] ([i915#1849]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8901/fi-ivb-3770/igt@fbdev@info.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/fi-ivb-3770/igt@fbdev@info.html * igt@fbdev@read: - fi-ivb-3770: [SKIP][19] -> [PASS][20] +3 other tests pass [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8901/fi-ivb-3770/igt@fbdev@read.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/fi-ivb-3770/igt@fbdev@read.html * igt@i915_selftest@live: - bat-arlh-2: [DMESG-WARN][21] -> [PASS][22] +1 other test pass [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8901/bat-arlh-2/igt@i915_selftest@live.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/bat-arlh-2/igt@i915_selftest@live.html [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8901 -> IGTPW_15139 * Linux: CI_DRM_18460 -> CI_DRM_18461 CI-20190529: 20190529 CI_DRM_18460: bcbe7be7961edce8ffeb18a2d1e00d76e5e744cb @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18461: 11d2d2a0077bf9aef71906f0db84bdab357ac773 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15139: d8f600763107e138d31707ee5fd3bb64905bf8bc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8901: 0a391e6b79fd6c6c7a55f75ea4769f31529821c4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/index.html [-- Attachment #2: Type: text/html, Size: 7935 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Xe.CI.BAT: success for Test panthor sparse mappings 2026-05-08 17:25 [PATCH v2 0/3] Test panthor sparse mappings Adrián Larumbe ` (3 preceding siblings ...) 2026-05-09 0:55 ` ✓ i915.CI.BAT: success for Test panthor sparse mappings Patchwork @ 2026-05-09 1:14 ` Patchwork 2026-05-09 14:25 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-05-10 2:32 ` ✓ i915.CI.Full: success " Patchwork 6 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2026-05-09 1:14 UTC (permalink / raw) To: Adrián Larumbe; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1144 bytes --] == Series Details == Series: Test panthor sparse mappings URL : https://patchwork.freedesktop.org/series/166234/ State : success == Summary == CI Bug Log - changes from XEIGT_8901_BAT -> XEIGTPW_15139_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (13 -> 13) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8901 -> IGTPW_15139 * Linux: xe-5031-18d2011d95002966c64980ab06f36ee9211d496c -> xe-5033-bcbe7be7961edce8ffeb18a2d1e00d76e5e744cb IGTPW_15139: d8f600763107e138d31707ee5fd3bb64905bf8bc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8901: 0a391e6b79fd6c6c7a55f75ea4769f31529821c4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5031-18d2011d95002966c64980ab06f36ee9211d496c: 18d2011d95002966c64980ab06f36ee9211d496c xe-5033-bcbe7be7961edce8ffeb18a2d1e00d76e5e744cb: bcbe7be7961edce8ffeb18a2d1e00d76e5e744cb == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/index.html [-- Attachment #2: Type: text/html, Size: 1703 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Xe.CI.FULL: failure for Test panthor sparse mappings 2026-05-08 17:25 [PATCH v2 0/3] Test panthor sparse mappings Adrián Larumbe ` (4 preceding siblings ...) 2026-05-09 1:14 ` ✓ Xe.CI.BAT: " Patchwork @ 2026-05-09 14:25 ` Patchwork 2026-05-10 2:32 ` ✓ i915.CI.Full: success " Patchwork 6 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2026-05-09 14:25 UTC (permalink / raw) To: Adrián Larumbe; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 37982 bytes --] == Series Details == Series: Test panthor sparse mappings URL : https://patchwork.freedesktop.org/series/166234/ State : failure == Summary == CI Bug Log - changes from XEIGT_8901_FULL -> XEIGTPW_15139_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_15139_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_15139_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_15139_FULL: ### IGT changes ### #### Possible regressions #### * igt@xe_exec_system_allocator@many-large-mmap-file: - shard-bmg: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-3/igt@xe_exec_system_allocator@many-large-mmap-file.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-5/igt@xe_exec_system_allocator@many-large-mmap-file.html - shard-lnl: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-lnl-4/igt@xe_exec_system_allocator@many-large-mmap-file.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-lnl-5/igt@xe_exec_system_allocator@many-large-mmap-file.html Known issues ------------ Here are the changes found in XEIGTPW_15139_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@intel_hwmon@hwmon-write: - shard-bmg: [PASS][5] -> [FAIL][6] ([Intel XE#7445]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-9/igt@intel_hwmon@hwmon-write.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-3/igt@intel_hwmon@hwmon-write.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-10/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#607] / [Intel XE#7361]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-1/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#610] / [Intel XE#7387]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_bw@connected-linear-tiling-2-displays-target-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#7679]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-target-2160x1440p.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#2887]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-lnl-1/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2652]) +8 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2887]) +6 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#3432]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#3432]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2252]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-3/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@mei-interface: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#7642]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-3/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent-hdcp14: - shard-bmg: NOTRUN -> [FAIL][19] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-9/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2321] / [Intel XE#7355]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-10/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-128x42: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2320]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html * igt@kms_cursor_legacy@cursor-vs-flip-varying-size: - shard-bmg: [PASS][22] -> [SKIP][23] ([Intel XE#6703] / [Intel XE#7935]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-5/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-bmg: [PASS][24] -> [DMESG-WARN][25] ([Intel XE#5354]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-10/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#4422] / [Intel XE#7442]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#1138] / [Intel XE#7344]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-3/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][28] -> [SKIP][29] ([Intel XE#6703]) +61 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-2/igt@kms_flip@2x-nonexisting-fb.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@flip-vs-rmfb-interruptible: - shard-bmg: [PASS][30] -> [DMESG-FAIL][31] ([Intel XE#5545]) +1 other test dmesg-fail [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-9/igt@kms_flip@flip-vs-rmfb-interruptible.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@kms_flip@flip-vs-rmfb-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7178] / [Intel XE#7351]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7179]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#4141]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2311]) +22 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2313]) +25 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-abgr161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#7061]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#6703]) +7 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc.html * igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f: - shard-bmg: [PASS][40] -> [SKIP][41] ([Intel XE#7915]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-10/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-1/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#6901]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-9/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7283]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#7794]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-10/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@deep-pkgc: - shard-lnl: [PASS][46] -> [FAIL][47] ([Intel XE#2029] / [Intel XE#7395]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-lnl-1/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@dpms-lpsp: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-1/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#1489]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-6/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_setmode@basic: - shard-bmg: [PASS][51] -> [FAIL][52] ([Intel XE#6361]) +5 other tests fail [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-3/igt@kms_setmode@basic.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@kms_setmode@basic.html * igt@kms_sharpness_filter@invalid-plane-with-filter: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#6503]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-5/igt@kms_sharpness_filter@invalid-plane-with-filter.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][54] -> [INCOMPLETE][55] ([Intel XE#6321]) +1 other test incomplete [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-small-multi-queue-cm: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#7140]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-6/igt@xe_evict@evict-small-multi-queue-cm.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-1/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html * igt@xe_exec_fault_mode@many-multi-queue-invalid-userptr-fault: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#7136]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-lnl-1/igt@xe_exec_fault_mode@many-multi-queue-invalid-userptr-fault.html * igt@xe_exec_fault_mode@twice-multi-queue-imm: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#7136]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue-imm.html * igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-close-fd: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#6874]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-lnl-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-close-fd.html * igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd-smem: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#6874]) +11 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-9/igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd-smem.html * igt@xe_exec_sip_eudebug@breakpoint-writesip-nodebug: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#7636]) +5 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-9/igt@xe_exec_sip_eudebug@breakpoint-writesip-nodebug.html * igt@xe_exec_system_allocator@process-many-stride-mmap-shared-remap-dontunmap: - shard-bmg: [PASS][63] -> [SKIP][64] ([Intel XE#6557] / [Intel XE#6703]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-10/igt@xe_exec_system_allocator@process-many-stride-mmap-shared-remap-dontunmap.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@xe_exec_system_allocator@process-many-stride-mmap-shared-remap-dontunmap.html * igt@xe_exec_system_allocator@threads-many-malloc-prefetch-race: - shard-lnl: [PASS][65] -> [INCOMPLETE][66] ([Intel XE#2594]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-lnl-4/igt@xe_exec_system_allocator@threads-many-malloc-prefetch-race.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-lnl-3/igt@xe_exec_system_allocator@threads-many-malloc-prefetch-race.html * igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#7138]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind.html * igt@xe_multigpu_svm@mgpu-atomic-op-basic: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#6964]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-9/igt@xe_multigpu_svm@mgpu-atomic-op-basic.html * igt@xe_page_reclaim@random: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#7793]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-3/igt@xe_page_reclaim@random.html * igt@xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-6/igt@xe_pm@d3cold-mmap-system.html * igt@xe_query@multigpu-query-invalid-query: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#944]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-9/igt@xe_query@multigpu-query-invalid-query.html * igt@xe_sriov_flr@flr-twice: - shard-bmg: NOTRUN -> [FAIL][72] ([Intel XE#6569]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-10/igt@xe_sriov_flr@flr-twice.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-bmg: [PASS][73] -> [FAIL][74] ([Intel XE#6569]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-4/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-bmg: [PASS][75] -> [FAIL][76] ([Intel XE#5937]) +1 other test fail [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-3/igt@xe_sriov_flr@flr-vfs-parallel.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-5/igt@xe_sriov_flr@flr-vfs-parallel.html #### Possible fixes #### * igt@kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][77] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][78] [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-2: - shard-bmg: [FAIL][79] ([Intel XE#6078]) -> [PASS][80] [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-2.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-2.html * igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010: - shard-bmg: [SKIP][81] ([Intel XE#7915]) -> [PASS][82] +1 other test pass [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-1/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html * igt@kms_plane_lowres@tiling-none: - shard-bmg: [INCOMPLETE][83] ([Intel XE#5681]) -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-2/igt@kms_plane_lowres@tiling-none.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-1/igt@kms_plane_lowres@tiling-none.html * igt@kms_plane_lowres@tiling-none@pipe-b-dp-2: - shard-bmg: [DMESG-FAIL][85] ([Intel XE#1727]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-2/igt@kms_plane_lowres@tiling-none@pipe-b-dp-2.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-1/igt@kms_plane_lowres@tiling-none@pipe-b-dp-2.html * igt@xe_exec_basic@many-basic-defer-bind@bcs0: - shard-bmg: [FAIL][87] -> [PASS][88] +1 other test pass [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-1/igt@xe_exec_basic@many-basic-defer-bind@bcs0.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-3/igt@xe_exec_basic@many-basic-defer-bind@bcs0.html * igt@xe_sriov_admin@exec-quantum-write-readback-vfs-disabled@pf-eq_ms-10: - shard-bmg: [SKIP][89] -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-5/igt@xe_sriov_admin@exec-quantum-write-readback-vfs-disabled@pf-eq_ms-10.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-1/igt@xe_sriov_admin@exec-quantum-write-readback-vfs-disabled@pf-eq_ms-10.html * igt@xe_survivability@runtime-survivability: - shard-bmg: [DMESG-WARN][91] ([Intel XE#6627] / [Intel XE#7419]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-5/igt@xe_survivability@runtime-survivability.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-3/igt@xe_survivability@runtime-survivability.html #### Warnings #### * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-bmg: [SKIP][93] ([Intel XE#1124]) -> [SKIP][94] ([Intel XE#6703]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_bw@linear-tiling-2-displays-target-1920x1080p: - shard-bmg: [SKIP][95] ([Intel XE#367]) -> [SKIP][96] ([Intel XE#6703]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-target-1920x1080p.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@kms_bw@linear-tiling-2-displays-target-1920x1080p.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc: - shard-bmg: [SKIP][97] ([Intel XE#2887]) -> [SKIP][98] ([Intel XE#6703]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-6/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html * igt@kms_cdclk@plane-scaling: - shard-bmg: [SKIP][99] ([Intel XE#2724] / [Intel XE#7449]) -> [SKIP][100] ([Intel XE#6703]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-1/igt@kms_cdclk@plane-scaling.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-bmg: [SKIP][101] ([Intel XE#2252]) -> [SKIP][102] ([Intel XE#6703]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-2/igt@kms_chamelium_frames@hdmi-crc-multiple.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_content_protection@lic-type-0-hdcp14: - shard-bmg: [FAIL][103] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][104] ([Intel XE#6703]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-6/igt@kms_content_protection@lic-type-0-hdcp14.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@kms_content_protection@lic-type-0-hdcp14.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-bmg: [SKIP][105] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][106] ([Intel XE#6703]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][107] ([Intel XE#2311]) -> [SKIP][108] ([Intel XE#6703]) +4 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][109] ([Intel XE#4141]) -> [SKIP][110] ([Intel XE#6703]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-pri-shrfb-draw-render: - shard-lnl: [ABORT][111] -> [SKIP][112] ([Intel XE#7905]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-pri-shrfb-draw-render.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][113] ([Intel XE#2313]) -> [SKIP][114] ([Intel XE#6703]) +5 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-bmg: [SKIP][115] ([Intel XE#1489]) -> [SKIP][116] ([Intel XE#6703]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-9/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-bmg: [SKIP][117] ([Intel XE#3904] / [Intel XE#7342]) -> [SKIP][118] ([Intel XE#6703]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_sharpness_filter@filter-dpms: - shard-bmg: [SKIP][119] ([Intel XE#6503]) -> [SKIP][120] ([Intel XE#6703]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-3/igt@kms_sharpness_filter@filter-dpms.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@kms_sharpness_filter@filter-dpms.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][121] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][122] ([Intel XE#1729] / [Intel XE#7424]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html * igt@xe_eudebug@discovery-empty-clients: - shard-bmg: [SKIP][123] ([Intel XE#7636]) -> [SKIP][124] ([Intel XE#6703]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-6/igt@xe_eudebug@discovery-empty-clients.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@xe_eudebug@discovery-empty-clients.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr: - shard-bmg: [SKIP][125] ([Intel XE#7136]) -> [SKIP][126] ([Intel XE#6703]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-3/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html * igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-basic-smem: - shard-bmg: [SKIP][127] ([Intel XE#6874]) -> [SKIP][128] ([Intel XE#6703]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-basic-smem.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-basic-smem.html * igt@xe_exec_reset@cm-multi-queue-close-execqueues: - shard-bmg: [SKIP][129] ([Intel XE#7866]) -> [SKIP][130] ([Intel XE#6703]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-10/igt@xe_exec_reset@cm-multi-queue-close-execqueues.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@xe_exec_reset@cm-multi-queue-close-execqueues.html * igt@xe_exec_threads@threads-multi-queue-shared-vm-basic: - shard-bmg: [SKIP][131] ([Intel XE#7138]) -> [SKIP][132] ([Intel XE#6703]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8901/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-shared-vm-basic.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-shared-vm-basic.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5681 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627 [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383 [Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387 [Intel XE#7395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7395 [Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439 [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442 [Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445 [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449 [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7794 [Intel XE#7866]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7866 [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905 [Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915 [Intel XE#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8901 -> IGTPW_15139 * Linux: xe-5031-18d2011d95002966c64980ab06f36ee9211d496c -> xe-5033-bcbe7be7961edce8ffeb18a2d1e00d76e5e744cb IGTPW_15139: d8f600763107e138d31707ee5fd3bb64905bf8bc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8901: 0a391e6b79fd6c6c7a55f75ea4769f31529821c4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5031-18d2011d95002966c64980ab06f36ee9211d496c: 18d2011d95002966c64980ab06f36ee9211d496c xe-5033-bcbe7be7961edce8ffeb18a2d1e00d76e5e744cb: bcbe7be7961edce8ffeb18a2d1e00d76e5e744cb == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15139/index.html [-- Attachment #2: Type: text/html, Size: 43361 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ i915.CI.Full: success for Test panthor sparse mappings 2026-05-08 17:25 [PATCH v2 0/3] Test panthor sparse mappings Adrián Larumbe ` (5 preceding siblings ...) 2026-05-09 14:25 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-05-10 2:32 ` Patchwork 6 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2026-05-10 2:32 UTC (permalink / raw) To: Adrián Larumbe; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 144971 bytes --] == Series Details == Series: Test panthor sparse mappings URL : https://patchwork.freedesktop.org/series/166234/ State : success == Summary == CI Bug Log - changes from CI_DRM_18461_full -> IGTPW_15139_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_15139_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@cold-reset-bound: - shard-dg2: NOTRUN -> [SKIP][1] ([i915#11078]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-5/igt@device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][2] ([i915#11078]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-4/igt@device_reset@cold-reset-bound.html * igt@drm_buddy@drm_buddy: - shard-tglu: NOTRUN -> [SKIP][3] ([i915#15678]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-9/igt@drm_buddy@drm_buddy.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#7697]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-2/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#3555] / [i915#9323]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-2/igt@gem_ccs@block-multicopy-inplace.html - shard-dg1: NOTRUN -> [SKIP][6] ([i915#3555] / [i915#9323]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-13/igt@gem_ccs@block-multicopy-inplace.html - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#9323]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-5/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-4/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][10] ([i915#12392] / [i915#13356]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-1/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][11] ([i915#6335]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-7/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@engines-persistence: - shard-snb: NOTRUN -> [SKIP][12] ([i915#1099]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-snb4/igt@gem_ctx_persistence@engines-persistence.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8555]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-many.html - shard-dg1: NOTRUN -> [SKIP][14] ([i915#8555]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-many.html - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#8555]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_sseu@engines: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#280]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-13/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#280]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-8/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#280]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-3/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@kms: - shard-rkl: NOTRUN -> [DMESG-WARN][19] ([i915#13363]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-4/igt@gem_eio@kms.html - shard-tglu: [PASS][20] -> [DMESG-WARN][21] ([i915#13363]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-tglu-9/igt@gem_eio@kms.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-3/igt@gem_eio@kms.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#4771]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-8/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@parallel: - shard-tglu: NOTRUN -> [SKIP][23] ([i915#4525]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-4/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#4525]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-7/igt@gem_exec_balancer@parallel-out-fence.html - shard-tglu-1: NOTRUN -> [SKIP][25] ([i915#4525]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-tglu: NOTRUN -> [SKIP][26] ([i915#6334]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-7/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4812]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-3/igt@gem_exec_fence@submit67.html - shard-dg1: NOTRUN -> [SKIP][28] ([i915#4812]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-14/igt@gem_exec_fence@submit67.html - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4812]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-6/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-8/igt@gem_exec_flush@basic-uc-prw-default.html - shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-19/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-wb-pro-default: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539] / [i915#4852]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-8/igt@gem_exec_flush@basic-wb-pro-default.html * igt@gem_exec_reloc@basic-wc-cpu: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3281]) +5 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-6/igt@gem_exec_reloc@basic-wc-cpu.html - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3281]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-13/igt@gem_exec_reloc@basic-wc-cpu.html - shard-mtlp: NOTRUN -> [SKIP][35] ([i915#3281]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-7/igt@gem_exec_reloc@basic-wc-cpu.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#3281]) +6 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-4/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_suspend@basic-s3: - shard-glk: [PASS][37] -> [INCOMPLETE][38] ([i915#13196] / [i915#13356]) +1 other test incomplete [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-glk5/igt@gem_exec_suspend@basic-s3.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk1/igt@gem_exec_suspend@basic-s3.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4860]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-4/igt@gem_fence_thrash@bo-copy.html - shard-dg1: NOTRUN -> [SKIP][40] ([i915#4860]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-19/igt@gem_fence_thrash@bo-copy.html - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4860]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-5/igt@gem_fence_thrash@bo-copy.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#2190]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-4/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu-1: NOTRUN -> [SKIP][43] ([i915#4613]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#14544] / [i915#4613]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@random: - shard-glk: NOTRUN -> [SKIP][45] ([i915#4613]) +6 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk5/igt@gem_lmem_swapping@random.html - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613]) +5 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-4/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][47] ([i915#4613]) +4 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-3/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#12193]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-17/igt@gem_lmem_swapping@verify-random-ccs.html - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4613]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-5/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_lmem_swapping@verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4565]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-17/igt@gem_lmem_swapping@verify-random-ccs@lmem0.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4077]) +8 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-3/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_mmap_gtt@flink-race: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4077]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-18/igt@gem_mmap_gtt@flink-race.html * igt@gem_mmap_wc@write-read-distinct: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4083]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-3/igt@gem_mmap_wc@write-read-distinct.html * igt@gem_pread@exhaustion: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#3282]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-3/igt@gem_pread@exhaustion.html - shard-rkl: NOTRUN -> [SKIP][55] ([i915#3282]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-8/igt@gem_pread@exhaustion.html - shard-glk10: NOTRUN -> [WARN][56] ([i915#2658]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk10/igt@gem_pread@exhaustion.html * igt@gem_pxp@create-valid-protected-context: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4270]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-13/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4270]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-8/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_render_copy@x-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#8428]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-1/igt@gem_render_copy@x-tiled-to-vebox-y-tiled.html * igt@gem_render_copy@y-tiled-to-vebox-linear: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#5190] / [i915#8428]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-8/igt@gem_render_copy@y-tiled-to-vebox-linear.html * igt@gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4079]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-8/igt@gem_render_tiled_blits@basic.html - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4079]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-12/igt@gem_render_tiled_blits@basic.html - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4079]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-1/igt@gem_render_tiled_blits@basic.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4879]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-6/igt@gem_unfence_active_buffers.html - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4879]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-7/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#3297]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-8/igt@gem_userptr_blits@access-control.html - shard-dg2: NOTRUN -> [SKIP][67] ([i915#3297]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-3/igt@gem_userptr_blits@access-control.html - shard-dg1: NOTRUN -> [SKIP][68] ([i915#3297]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-19/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglu: NOTRUN -> [SKIP][69] ([i915#3297]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-10/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][70] ([i915#3323]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk4/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#3297]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-5/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3297] / [i915#4958]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-4/igt@gem_userptr_blits@sd-probe.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu-1: NOTRUN -> [SKIP][73] ([i915#2527] / [i915#2856]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-zero-length: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#2856]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-2/igt@gen9_exec_parse@batch-zero-length.html - shard-dg1: NOTRUN -> [SKIP][75] ([i915#2527]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-18/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#2856]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-6/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][77] ([i915#2527] / [i915#2856]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-5/igt@gen9_exec_parse@unaligned-jump.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#2527]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-7/igt@gen9_exec_parse@valid-registers.html * igt@i915_drm_fdinfo@most-busy-idle-check-all: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#14073]) +6 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-8/igt@i915_drm_fdinfo@most-busy-idle-check-all.html * igt@i915_drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#14073]) +5 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-19/igt@i915_drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@i915_drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#14073]) +7 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-3/igt@i915_drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-tglu: NOTRUN -> [ABORT][82] ([i915#15342]) +1 other test abort [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-6/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_module_load@fault-injection@uc_fw_rsa_data_create: - shard-tglu: NOTRUN -> [SKIP][83] ([i915#15479]) +4 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-6/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html * igt@i915_module_load@reload-no-display: - shard-dg2: NOTRUN -> [DMESG-WARN][84] ([i915#13029] / [i915#14545]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-8/igt@i915_module_load@reload-no-display.html - shard-tglu-1: NOTRUN -> [DMESG-WARN][85] ([i915#13029] / [i915#14545]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@i915_module_load@reload-no-display.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][86] ([i915#8399]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-2/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu-1: NOTRUN -> [WARN][87] ([i915#13790] / [i915#2681]) +1 other test warn [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#14498] / [i915#14544]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rpm@system-suspend: - shard-glk: [PASS][89] -> [INCOMPLETE][90] ([i915#13356]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-glk9/igt@i915_pm_rpm@system-suspend.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk5/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-glk: NOTRUN -> [INCOMPLETE][91] ([i915#13356] / [i915#15172]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk8/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#11681] / [i915#6621]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-6/igt@i915_pm_rps@basic-api.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#6245]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-5/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-known-pci-ids: - shard-tglu-1: NOTRUN -> [SKIP][94] +46 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_query@test-query-geometry-subslices: - shard-tglu: NOTRUN -> [SKIP][95] ([i915#5723]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-9/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#4077]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-1/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#14544] / [i915#7707]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4212]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-6/igt@kms_addfb_basic@clobberred-modifier.html - shard-dg1: NOTRUN -> [SKIP][99] ([i915#4212]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-13/igt@kms_addfb_basic@clobberred-modifier.html - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#4212]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-7/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-glk11: NOTRUN -> [INCOMPLETE][101] ([i915#12761]) +1 other test incomplete [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk11/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu: NOTRUN -> [SKIP][102] ([i915#9531]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#1769] / [i915#3555]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk: NOTRUN -> [SKIP][104] ([i915#1769]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][105] ([i915#1769] / [i915#3555]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][106] ([i915#1769] / [i915#3555]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-dg1: NOTRUN -> [SKIP][107] ([i915#1769] / [i915#3555]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-16/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-snb: NOTRUN -> [SKIP][108] ([i915#1769]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-snb4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-tglu: NOTRUN -> [SKIP][109] ([i915#1769] / [i915#3555]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [PASS][110] -> [FAIL][111] ([i915#15662]) +1 other test fail [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#5286]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#14544] / [i915#5286]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#5286]) +4 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-3/igt@kms_big_fb@4-tiled-addfb.html - shard-dg1: NOTRUN -> [SKIP][115] ([i915#5286]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-16/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#5286]) +2 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#3828]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-tglu: NOTRUN -> [SKIP][118] ([i915#3828]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#3638]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-2/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-mtlp: NOTRUN -> [SKIP][120] +3 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5190]) +7 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#10307] / [i915#6095]) +125 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-1/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#12313]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-13/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-tglu: NOTRUN -> [SKIP][125] ([i915#12313]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#12313]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-7/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#6095]) +180 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#6095]) +68 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][129] ([i915#6095]) +69 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-6/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs: - shard-snb: NOTRUN -> [SKIP][130] +131 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-snb4/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#12313]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][132] ([i915#12313]) +3 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#6095]) +39 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#6095]) +34 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-glk10: NOTRUN -> [SKIP][135] +90 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#12805]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#12805]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#6095]) +16 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][140] ([i915#15582]) +1 other test incomplete [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#14098] / [i915#6095]) +45 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#14544] / [i915#6095]) +10 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#14098] / [i915#14544] / [i915#6095]) +8 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][144] +11 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-3/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#11151] / [i915#7828]) +3 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-3/igt@kms_chamelium_frames@dp-crc-fast.html - shard-rkl: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-8/igt@kms_chamelium_frames@dp-crc-fast.html - shard-dg1: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-16/igt@kms_chamelium_frames@dp-crc-fast.html - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-8/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +4 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +7 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-2/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#12655] / [i915#3555]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-4/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][152] ([i915#15330] / [i915#3116] / [i915#3299]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-10/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#15330] / [i915#3299]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-4/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][154] ([i915#15330] / [i915#3299]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-15/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#15330] / [i915#3299]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-4/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-rkl: NOTRUN -> [SKIP][156] ([i915#15330] / [i915#3116]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-8/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#15330]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][158] ([i915#15330]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-8/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#15330]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html - shard-dg2: NOTRUN -> [SKIP][160] ([i915#15330]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-3/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][161] ([i915#15330]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-4/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][162] ([i915#15330]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-14/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@lic-type-0: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#15865]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-7/igt@kms_content_protection@lic-type-0.html - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#15865]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-8/igt@kms_content_protection@lic-type-0.html - shard-dg2: NOTRUN -> [SKIP][165] ([i915#15865]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-1/igt@kms_content_protection@lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][166] ([i915#15865]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-13/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#15865]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-2/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#15865]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [PASS][169] -> [FAIL][170] ([i915#13566]) +3 other tests fail [169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [PASS][171] -> [FAIL][172] ([i915#13566]) +7 other tests fail [171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#3555]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#3555]) +4 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#13049]) +2 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-10/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#3555]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-19/igt@kms_cursor_crc@cursor-random-max-size.html - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#8814]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#13049]) +2 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#13049]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][180] ([i915#13566]) +1 other test fail [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#3555]) +3 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][182] ([i915#12358] / [i915#14152] / [i915#7882]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk9/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][183] ([i915#12358] / [i915#14152]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk9/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][184] +45 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html - shard-dg1: NOTRUN -> [SKIP][185] +22 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-12/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#9809]) +2 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-8/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#4103] / [i915#4213]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-dg1: NOTRUN -> [SKIP][188] ([i915#4103] / [i915#4213]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-16/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-tglu: NOTRUN -> [SKIP][189] ([i915#4103]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#4213]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#13046] / [i915#5354]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][192] ([i915#15804]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#4103]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#9833]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#9723]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#3804]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#13749]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-10/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#13707]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#3840] / [i915#9688]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-4/igt@kms_dsc@dsc-fractional-bpp.html - shard-rkl: NOTRUN -> [SKIP][200] ([i915#3840]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][201] ([i915#3840]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-17/igt@kms_dsc@dsc-fractional-bpp.html - shard-tglu: NOTRUN -> [SKIP][202] ([i915#3840]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-5/igt@kms_dsc@dsc-fractional-bpp.html - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#3840] / [i915#9688]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-5/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-formats: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#3555] / [i915#3840]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-8/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-snb: NOTRUN -> [ABORT][205] ([i915#15840]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-snb4/igt@kms_fbcon_fbt@fbc-suspend.html - shard-glk: NOTRUN -> [INCOMPLETE][206] ([i915#9878]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk5/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#3955]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-2x: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#1839]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-3/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#658]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-1/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][210] ([i915#3637] / [i915#9934]) +7 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-tglu: NOTRUN -> [SKIP][211] ([i915#9934]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-4/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#9934]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#8381]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-12/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#8381]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-1/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#9934]) +5 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][216] ([i915#12745] / [i915#4839] / [i915#6113]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk1/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk10: NOTRUN -> [INCOMPLETE][217] ([i915#12745] / [i915#4839]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk10/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk10: NOTRUN -> [INCOMPLETE][218] ([i915#12745]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk10/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][219] ([i915#12745]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk1/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#9934]) +3 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-5/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html - shard-rkl: NOTRUN -> [SKIP][221] ([i915#14544] / [i915#9934]) +2 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#9934]) +2 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-19/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#3637] / [i915#9934]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-mtlp: [PASS][224] -> [FAIL][225] ([i915#13027]) +1 other test fail [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-mtlp-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-tglu: [PASS][226] -> [FAIL][227] ([i915#14600]) +1 other test fail [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3: - shard-dg2: [PASS][228] -> [FAIL][229] ([i915#14600]) +1 other test fail [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-dg2-7/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-5/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#15643]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-tglu: NOTRUN -> [SKIP][232] ([i915#15643]) +2 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-dg2: NOTRUN -> [SKIP][233] ([i915#15643] / [i915#5190]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][234] ([i915#15643]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#15643]) +2 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#15643]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html - shard-dg2: NOTRUN -> [SKIP][237] ([i915#15643]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_force_connector_basic@force-edid: - shard-mtlp: [PASS][238] -> [SKIP][239] ([i915#15672]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-mtlp-7/igt@kms_force_connector_basic@force-edid.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#15991] / [i915#5354]) +25 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#15990] / [i915#8708]) +7 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#14544] / [i915#1825]) +3 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][243] ([i915#10056]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk3/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#10055]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#15989]) +19 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#15990]) +11 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-3/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#15990]) +2 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-render: - shard-rkl: [PASS][248] -> [SKIP][249] ([i915#15989]) +4 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-1/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-render.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-tglu-1: NOTRUN -> [SKIP][250] ([i915#15102]) +20 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#15990] / [i915#8708]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#15102] / [i915#3458]) +6 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#15102] / [i915#3023]) +13 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#15990] / [i915#8708]) +3 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#1825]) +29 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#15991] / [i915#1825]) +8 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#15102] / [i915#3458]) +8 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#15102]) +16 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-cpu.html - shard-dg1: NOTRUN -> [SKIP][259] ([i915#15102]) +7 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-glk: NOTRUN -> [SKIP][260] +501 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk9/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-render: - shard-glk11: NOTRUN -> [SKIP][261] +97 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk11/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#15102]) +28 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-shrfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#15991]) +11 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-indfb-scaledprimary: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#15989]) +13 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#15989]) +4 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-19/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-blt.html - shard-tglu: NOTRUN -> [SKIP][266] ([i915#15989]) +20 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-7/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#15989]) +12 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#15989]) +12 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#15991]) +27 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-5/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][270] +100 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-5/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@hdr-farfromfence-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#15990]) +5 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-14/igt@kms_frontbuffer_tracking@hdr-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu: NOTRUN -> [SKIP][272] ([i915#9766]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-9/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][273] ([i915#15104] / [i915#15990]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#15104] / [i915#15990]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html - shard-dg2: NOTRUN -> [SKIP][275] ([i915#15104] / [i915#15990]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][276] ([i915#15102]) +48 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][277] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-slowdraw: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#10433] / [i915#15102] / [i915#3458]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-slowdraw.html * igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#14544] / [i915#15102]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#14544]) +9 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][281] ([i915#16012] / [i915#3555] / [i915#8228]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-5/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-1-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#16012]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-5/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-1-xrgb2101010.html * igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-2-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#16012]) +5 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-3/igt@kms_hdr@bpc-switch-dpms@pipe-a-hdmi-a-2-xrgb2101010.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#16012]) +5 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-1/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-3-xrgb2101010.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][285] ([i915#16012]) +5 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-17/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-4-xrgb2101010.html * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb16161616f: - shard-tglu: NOTRUN -> [SKIP][286] ([i915#16011]) +2 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-3/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-1-xrgb16161616f.html * igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-4-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][287] ([i915#16011]) +5 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-18/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-4-xrgb2101010.html * igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-2-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#16011]) +3 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-4/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-2-xrgb2101010.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#15458]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-7/igt@kms_joiner@basic-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][290] ([i915#15458]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-16/igt@kms_joiner@basic-force-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][291] ([i915#15458]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-5/igt@kms_joiner@basic-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#15458]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-2/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#15458]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][294] ([i915#6301]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-rkl: [PASS][295] -> [ABORT][296] ([i915#15132]) +1 other test abort [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-7/igt@kms_pipe_crc_basic@suspend-read-crc.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-1/igt@kms_pipe_crc_basic@suspend-read-crc.html - shard-glk10: NOTRUN -> [INCOMPLETE][297] ([i915#12756] / [i915#13409] / [i915#13476]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk10: NOTRUN -> [INCOMPLETE][298] ([i915#13409] / [i915#13476]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][299] ([i915#15709]) +4 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html - shard-mtlp: NOTRUN -> [SKIP][300] ([i915#15709]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-1/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html - shard-rkl: NOTRUN -> [SKIP][301] ([i915#14544] / [i915#15709]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#15709]) +2 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#15608]) +3 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-8/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7: - shard-tglu: NOTRUN -> [SKIP][304] ([i915#15608]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-4/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5: - shard-mtlp: NOTRUN -> [SKIP][305] ([i915#15608]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-4/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#15608]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-14/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#15709]) +3 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html - shard-dg1: NOTRUN -> [SKIP][308] ([i915#15709]) +1 other test skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-13/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#15608]) +5 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#15608]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][311] ([i915#15709]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-5/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-rkl: [PASS][312] -> [INCOMPLETE][313] ([i915#14412]) +1 other test incomplete [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][314] ([i915#10647] / [i915#12177]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk6/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][315] ([i915#10647]) +1 other test fail [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk6/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][316] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-2/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-none@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#11614] / [i915#3582]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-2/igt@kms_plane_lowres@tiling-none@pipe-d-edp-1.html * igt@kms_plane_multiple@2x-tiling-none: - shard-rkl: NOTRUN -> [SKIP][318] ([i915#13958]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#6953] / [i915#9423]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-1/igt@kms_plane_scaling@intel-max-src-size.html - shard-dg1: NOTRUN -> [SKIP][320] ([i915#6953]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size.html - shard-mtlp: NOTRUN -> [SKIP][321] ([i915#6953]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-8/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#15329]) +3 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html * igt@kms_pm_backlight@basic-brightness: - shard-tglu-1: NOTRUN -> [SKIP][323] ([i915#9812]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade: - shard-rkl: NOTRUN -> [SKIP][324] ([i915#14544] / [i915#5354]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_pm_backlight@fade.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#5354]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-3/igt@kms_pm_backlight@fade-with-dpms.html - shard-dg1: NOTRUN -> [SKIP][326] ([i915#5354]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-15/igt@kms_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][327] ([i915#9812]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-8/igt@kms_pm_backlight@fade-with-dpms.html - shard-dg2: NOTRUN -> [SKIP][328] ([i915#5354]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-6/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: NOTRUN -> [FAIL][329] ([i915#15752]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][330] ([i915#15948]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-4/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: [PASS][331] -> [SKIP][332] ([i915#9340]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#8430]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-5/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [PASS][334] -> [SKIP][335] ([i915#15073]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-1/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: [PASS][336] -> [SKIP][337] ([i915#15073]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][338] ([i915#15073]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-5/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg1: [PASS][339] -> [SKIP][340] ([i915#15073]) +1 other test skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-dg1-19/igt@kms_pm_rpm@modeset-non-lpsp.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@system-suspend-idle: - shard-rkl: [PASS][341] -> [INCOMPLETE][342] ([i915#14419]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-5/igt@kms_pm_rpm@system-suspend-idle.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-glk10: NOTRUN -> [INCOMPLETE][343] ([i915#10553]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk10/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][344] ([i915#6524] / [i915#6805]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-3/igt@kms_prime@basic-modeset-hybrid.html - shard-rkl: NOTRUN -> [SKIP][345] ([i915#6524]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-4/igt@kms_prime@basic-modeset-hybrid.html - shard-dg1: NOTRUN -> [SKIP][346] ([i915#6524]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-14/igt@kms_prime@basic-modeset-hybrid.html - shard-tglu: NOTRUN -> [SKIP][347] ([i915#6524]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-8/igt@kms_prime@basic-modeset-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][348] ([i915#6524]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-6/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][349] ([i915#11520] / [i915#14544]) +2 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-mtlp: NOTRUN -> [SKIP][350] ([i915#12316]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][351] ([i915#9808]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-glk10: NOTRUN -> [SKIP][352] ([i915#11520]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk10/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][353] ([i915#11520]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][354] ([i915#11520]) +7 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk5/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html - shard-dg2: NOTRUN -> [SKIP][355] ([i915#11520]) +4 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-5/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html - shard-rkl: NOTRUN -> [SKIP][356] ([i915#11520]) +6 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html - shard-snb: NOTRUN -> [SKIP][357] ([i915#11520]) +3 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-snb4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][358] ([i915#11520]) +2 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-14/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html - shard-tglu: NOTRUN -> [SKIP][359] ([i915#11520]) +6 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-glk11: NOTRUN -> [SKIP][360] ([i915#11520]) +2 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk11/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-tglu: NOTRUN -> [SKIP][361] ([i915#9683]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: NOTRUN -> [SKIP][362] ([i915#9683]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#9683]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-6/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-tglu-1: NOTRUN -> [SKIP][364] ([i915#9683]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-primary-blt: - shard-mtlp: NOTRUN -> [SKIP][365] ([i915#9688]) +4 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-6/igt@kms_psr@fbc-pr-primary-blt.html * igt@kms_psr@pr-sprite-plane-move: - shard-tglu: NOTRUN -> [SKIP][366] ([i915#9732]) +21 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-7/igt@kms_psr@pr-sprite-plane-move.html * igt@kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][367] ([i915#1072] / [i915#9732]) +17 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-6/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][368] ([i915#1072] / [i915#9732]) +5 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-15/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][369] ([i915#1072] / [i915#9732]) +17 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-5/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][370] ([i915#9732]) +7 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu-1: NOTRUN -> [SKIP][371] ([i915#15949]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-glk: NOTRUN -> [INCOMPLETE][372] ([i915#15500]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk8/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][373] ([i915#12755] / [i915#15867] / [i915#5190]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][374] ([i915#5289]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][375] ([i915#5289]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][376] ([i915#12755] / [i915#15867]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-8/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html - shard-mtlp: NOTRUN -> [SKIP][377] ([i915#12755] / [i915#15867]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][378] ([i915#3555]) +2 other tests skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-3/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_scaling_modes@scaling-mode-none: - shard-rkl: NOTRUN -> [SKIP][379] ([i915#14544] / [i915#3555]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_selftest@drm_framebuffer: - shard-snb: NOTRUN -> [ABORT][380] ([i915#13179]) +1 other test abort [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-snb1/igt@kms_selftest@drm_framebuffer.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][381] ([i915#10959]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk4/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][382] ([i915#8623]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-suspend: - shard-rkl: [PASS][383] -> [INCOMPLETE][384] ([i915#12276]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-8/igt@kms_vblank@ts-continuation-suspend.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][385] ([i915#12276]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html * igt@kms_vrr@flipline: - shard-rkl: NOTRUN -> [SKIP][386] ([i915#15243] / [i915#3555]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-4/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][387] ([i915#11920]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-1/igt@kms_vrr@lobf.html - shard-rkl: NOTRUN -> [SKIP][388] ([i915#11920]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-7/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][389] ([i915#3555] / [i915#9906]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-1/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-dg2: NOTRUN -> [SKIP][390] ([i915#9906]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-7/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-dg1: NOTRUN -> [SKIP][391] ([i915#9906]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-16/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-tglu: NOTRUN -> [SKIP][392] ([i915#9906]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-4/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-mtlp: NOTRUN -> [SKIP][393] ([i915#8808] / [i915#9906]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-2/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][394] ([i915#2434]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-6/igt@perf@mi-rpc.html - shard-rkl: NOTRUN -> [SKIP][395] ([i915#2434]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-3/igt@perf@mi-rpc.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][396] ([i915#12392] / [i915#13356]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-dg2-5/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-1/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html * igt@gem_exec_capture@pi: - shard-dg2: [FAIL][398] ([i915#15587]) -> [PASS][399] +1 other test pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-dg2-1/igt@gem_exec_capture@pi.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-3/igt@gem_exec_capture@pi.html * igt@gem_workarounds@suspend-resume-fd: - shard-rkl: [ABORT][400] ([i915#15152]) -> [PASS][401] [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-1/igt@gem_workarounds@suspend-resume-fd.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-4/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_pm_rpm@system-suspend: - shard-rkl: [INCOMPLETE][402] ([i915#13356]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-3/igt@i915_pm_rpm@system-suspend.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-7/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rps@reset: - shard-snb: [TIMEOUT][404] -> [PASS][405] [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-snb4/igt@i915_pm_rps@reset.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-snb6/igt@i915_pm_rps@reset.html * igt@i915_selftest@live@gem_contexts: - shard-dg2: [DMESG-FAIL][406] -> [PASS][407] [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-dg2-4/igt@i915_selftest@live@gem_contexts.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-6/igt@i915_selftest@live@gem_contexts.html * igt@i915_suspend@debugfs-reader: - shard-dg2: [INCOMPLETE][408] ([i915#4817]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-dg2-1/igt@i915_suspend@debugfs-reader.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-1/igt@i915_suspend@debugfs-reader.html - shard-rkl: [INCOMPLETE][410] ([i915#4817]) -> [PASS][411] [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@i915_suspend@debugfs-reader.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-7/igt@i915_suspend@debugfs-reader.html * igt@kms_async_flips@async-flip-with-page-flip-events-tiled: - shard-dg1: [DMESG-WARN][412] ([i915#4423]) -> [PASS][413] +2 other tests pass [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-dg1-19/igt@kms_async_flips@async-flip-with-page-flip-events-tiled.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-19/igt@kms_async_flips@async-flip-with-page-flip-events-tiled.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [FAIL][414] ([i915#15733] / [i915#5138]) -> [PASS][415] [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-mtlp: [FAIL][416] ([i915#12469] / [i915#15733]) -> [PASS][417] [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-mtlp-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-edp-1: - shard-mtlp: [FAIL][418] ([i915#15733]) -> [PASS][419] +3 other tests pass [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-mtlp-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-edp-1.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-edp-1.html * igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][420] ([i915#13566]) -> [PASS][421] +1 other test pass [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-64x21: - shard-rkl: [FAIL][422] ([i915#13566]) -> [PASS][423] +2 other tests pass [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-5/igt@kms_cursor_crc@cursor-random-64x21.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-8/igt@kms_cursor_crc@cursor-random-64x21.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2: - shard-rkl: [INCOMPLETE][424] ([i915#6113]) -> [PASS][425] +1 other test pass [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-render: - shard-rkl: [SKIP][426] ([i915#15989]) -> [PASS][427] +11 other tests pass [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-render.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-wc: - shard-glk: [SKIP][428] -> [PASS][429] +10 other tests pass [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-glk2/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-wc.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-glk8/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-wc.html * igt@kms_hdr@static-toggle-dpms: - shard-rkl: [SKIP][430] ([i915#16011] / [i915#3555] / [i915#8228]) -> [PASS][431] [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-4/igt@kms_hdr@static-toggle-dpms.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-2-xrgb2101010: - shard-rkl: [SKIP][432] ([i915#16011]) -> [PASS][433] +1 other test pass [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-4/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-2-xrgb2101010.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_hdr@static-toggle-dpms@pipe-a-hdmi-a-2-xrgb2101010.html * igt@kms_plane_cursor@viewport: - shard-rkl: [FAIL][434] ([i915#15912]) -> [PASS][435] [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-8/igt@kms_plane_cursor@viewport.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-7/igt@kms_plane_cursor@viewport.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg1: [SKIP][436] ([i915#15073]) -> [PASS][437] [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-13/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-rkl: [INCOMPLETE][438] ([i915#14419]) -> [PASS][439] [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-4/igt@kms_pm_rpm@system-suspend-modeset.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-8/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_vrr@negative-basic: - shard-mtlp: [FAIL][440] ([i915#15420]) -> [PASS][441] +1 other test pass [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-mtlp-7/igt@kms_vrr@negative-basic.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-8/igt@kms_vrr@negative-basic.html * igt@perf_pmu@busy-idle: - shard-mtlp: [FAIL][442] ([i915#4349]) -> [PASS][443] +2 other tests pass [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-mtlp-5/igt@perf_pmu@busy-idle.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-mtlp-1/igt@perf_pmu@busy-idle.html #### Warnings #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: [SKIP][444] ([i915#14544] / [i915#8411]) -> [SKIP][445] ([i915#8411]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-7/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@crc32: - shard-rkl: [SKIP][446] ([i915#6230]) -> [SKIP][447] ([i915#14544] / [i915#6230]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-4/igt@api_intel_bb@crc32.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@api_intel_bb@crc32.html * igt@gem_bad_reloc@negative-reloc: - shard-rkl: [SKIP][448] ([i915#14544] / [i915#3281]) -> [SKIP][449] ([i915#3281]) +2 other tests skip [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@gem_bad_reloc@negative-reloc.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-4/igt@gem_bad_reloc@negative-reloc.html * igt@gem_ctx_sseu@invalid-sseu: - shard-rkl: [SKIP][450] ([i915#14544] / [i915#280]) -> [SKIP][451] ([i915#280]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-5/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-rkl: [SKIP][452] ([i915#4525]) -> [SKIP][453] ([i915#14544] / [i915#4525]) [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-7/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-rkl: [SKIP][454] ([i915#3281]) -> [SKIP][455] ([i915#14544] / [i915#3281]) +3 other tests skip [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-cpu-active.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: [SKIP][456] ([i915#7276]) -> [SKIP][457] ([i915#14544] / [i915#7276]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-5/igt@gem_exec_schedule@semaphore-power.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html * igt@gem_lmem_swapping@heavy-multi: - shard-rkl: [SKIP][458] ([i915#4613]) -> [SKIP][459] ([i915#14544] / [i915#4613]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-8/igt@gem_lmem_swapping@heavy-multi.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_lmem_swapping@parallel-random: - shard-rkl: [SKIP][460] ([i915#14544] / [i915#4613]) -> [SKIP][461] ([i915#4613]) [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@gem_lmem_swapping@parallel-random.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-3/igt@gem_lmem_swapping@parallel-random.html * igt@gem_partial_pwrite_pread@write: - shard-rkl: [SKIP][462] ([i915#3282]) -> [SKIP][463] ([i915#14544] / [i915#3282]) +1 other test skip [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-4/igt@gem_partial_pwrite_pread@write.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@gem_partial_pwrite_pread@write.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: [SKIP][464] ([i915#13717] / [i915#14544]) -> [SKIP][465] ([i915#13717]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-3/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-rkl: [SKIP][466] ([i915#13717]) -> [SKIP][467] ([i915#13717] / [i915#14544]) [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-context.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_tiled_pread_basic@basic: - shard-rkl: [SKIP][468] ([i915#15656]) -> [SKIP][469] ([i915#14544] / [i915#15656]) [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-7/igt@gem_tiled_pread_basic@basic.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@gem_tiled_pread_basic@basic.html * igt@gem_userptr_blits@dmabuf-sync: - shard-rkl: [SKIP][470] ([i915#14544] / [i915#3297] / [i915#3323]) -> [SKIP][471] ([i915#3297] / [i915#3323]) [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-5/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: [SKIP][472] ([i915#14544] / [i915#3297]) -> [SKIP][473] ([i915#3297]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-cycles.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-rkl: [SKIP][474] ([i915#14544] / [i915#5286]) -> [SKIP][475] ([i915#5286]) +1 other test skip [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-7/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-rkl: [SKIP][476] ([i915#5286]) -> [SKIP][477] ([i915#14544] / [i915#5286]) +1 other test skip [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][478] ([i915#3638]) -> [SKIP][479] ([i915#14544] / [i915#3638]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-8/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-rkl: [SKIP][480] ([i915#14544] / [i915#3638]) -> [SKIP][481] ([i915#3638]) [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-rkl: [SKIP][482] ([i915#14098] / [i915#6095]) -> [SKIP][483] ([i915#14098] / [i915#14544] / [i915#6095]) +8 other tests skip [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-7/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-rkl: [SKIP][484] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][485] ([i915#14098] / [i915#6095]) +2 other tests skip [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-3/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][486] ([i915#14544] / [i915#6095]) -> [SKIP][487] ([i915#6095]) +1 other test skip [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-a-hdmi-a-2.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-3/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][488] ([i915#6095]) -> [SKIP][489] ([i915#14544] / [i915#6095]) +5 other tests skip [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-7/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-rkl: [SKIP][490] ([i915#11151] / [i915#7828]) -> [SKIP][491] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: [SKIP][492] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][493] ([i915#11151] / [i915#7828]) [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-5/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: [SKIP][494] ([i915#15865]) -> [SKIP][495] ([i915#14544] / [i915#15865]) [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-7/igt@kms_content_protection@atomic-dpms.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: [SKIP][496] ([i915#15330]) -> [SKIP][497] ([i915#14544] / [i915#15330]) [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-rkl: [SKIP][498] ([i915#13049]) -> [SKIP][499] ([i915#13049] / [i915#14544]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-rkl: [SKIP][500] ([i915#14544] / [i915#4103]) -> [SKIP][501] ([i915#4103]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: [SKIP][502] ([i915#9723]) -> [SKIP][503] ([i915#14544] / [i915#9723]) [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: [SKIP][504] ([i915#9337]) -> [SKIP][505] ([i915#14544] / [i915#9337]) [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-2/igt@kms_feature_discovery@dp-mst.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-rkl: [SKIP][506] ([i915#14544] / [i915#658]) -> [SKIP][507] ([i915#658]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@kms_feature_discovery@psr1.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-7/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@psr2: - shard-rkl: [SKIP][508] ([i915#658]) -> [SKIP][509] ([i915#14544] / [i915#658]) [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-5/igt@kms_feature_discovery@psr2.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-rkl: [SKIP][510] ([i915#9934]) -> [SKIP][511] ([i915#14544] / [i915#9934]) +2 other tests skip [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-1/igt@kms_flip@2x-blocking-wf_vblank.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-rkl: [SKIP][512] ([i915#14544] / [i915#9934]) -> [SKIP][513] ([i915#9934]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@kms_flip@2x-dpms-vs-vblank-race.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-7/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-rkl: [SKIP][514] ([i915#14544] / [i915#15643]) -> [SKIP][515] ([i915#15643]) [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][516] ([i915#1825]) -> [SKIP][517] ([i915#14544] / [i915#1825]) +12 other tests skip [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-blt: - shard-dg1: [SKIP][518] ([i915#15989]) -> [SKIP][519] ([i915#15989] / [i915#4423]) [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-dg1-19/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-blt.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-17/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-rkl: [SKIP][520] ([i915#15102] / [i915#3023]) -> [SKIP][521] ([i915#14544] / [i915#15102] / [i915#3023]) +6 other tests skip [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-dg2: [SKIP][522] ([i915#15102] / [i915#3458]) -> [SKIP][523] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt: - shard-rkl: [SKIP][524] ([i915#14544] / [i915#15102]) -> [SKIP][525] ([i915#15102]) +5 other tests skip [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu: - shard-rkl: [SKIP][526] ([i915#15102]) -> [SKIP][527] ([i915#14544] / [i915#15102]) +6 other tests skip [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-rgb101010-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-rkl: [SKIP][528] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][529] ([i915#15102] / [i915#3023]) +3 other tests skip [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-rte.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: [SKIP][530] ([i915#14544] / [i915#1825]) -> [SKIP][531] ([i915#1825]) +17 other tests skip [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][532] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][533] ([i915#15102] / [i915#3458]) +2 other tests skip [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-rkl: [SKIP][534] -> [SKIP][535] ([i915#14544]) +20 other tests skip [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-7/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-wc.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move: - shard-rkl: [SKIP][536] ([i915#14544]) -> [SKIP][537] +24 other tests skip [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-7/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-rkl: [SKIP][538] ([i915#15638] / [i915#15722]) -> [SKIP][539] ([i915#14544] / [i915#15638] / [i915#15722]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_plane@pixel-format-4-tiled-modifier: - shard-rkl: [SKIP][540] ([i915#14544] / [i915#15709]) -> [SKIP][541] ([i915#15709]) [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-modifier.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-rkl: [SKIP][542] ([i915#15709]) -> [SKIP][543] ([i915#14544] / [i915#15709]) [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: [SKIP][544] ([i915#14544] / [i915#15329] / [i915#3555]) -> [SKIP][545] ([i915#15329] / [i915#3555]) [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-rkl: [SKIP][546] ([i915#14544] / [i915#15329]) -> [SKIP][547] ([i915#15329]) +2 other tests skip [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: [SKIP][548] ([i915#5354]) -> [SKIP][549] ([i915#14544] / [i915#5354]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-7/igt@kms_pm_backlight@bad-brightness.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc6-psr: - shard-rkl: [SKIP][550] ([i915#14544] / [i915#15948]) -> [SKIP][551] ([i915#15948]) [550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-5/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][552] ([i915#9340]) -> [SKIP][553] ([i915#3828]) [552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-2/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_prime@d3hot: - shard-dg1: [SKIP][554] ([i915#4423] / [i915#6524]) -> [SKIP][555] ([i915#6524]) [554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-dg1-17/igt@kms_prime@d3hot.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-dg1-13/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-rkl: [SKIP][556] ([i915#11520]) -> [SKIP][557] ([i915#11520] / [i915#14544]) +2 other tests skip [556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-5/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-rkl: [SKIP][558] ([i915#11520] / [i915#14544]) -> [SKIP][559] ([i915#11520]) +1 other test skip [558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-7/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-rkl: [SKIP][560] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][561] ([i915#1072] / [i915#9732]) +6 other tests skip [560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-3/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@psr-sprite-plane-move: - shard-rkl: [SKIP][562] ([i915#1072] / [i915#9732]) -> [SKIP][563] ([i915#1072] / [i915#14544] / [i915#9732]) +9 other tests skip [562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-5/igt@kms_psr@psr-sprite-plane-move.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: [SKIP][564] ([i915#5289]) -> [SKIP][565] ([i915#14544] / [i915#5289]) [564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-rkl: [SKIP][566] ([i915#14544] / [i915#3555]) -> [SKIP][567] ([i915#3555]) +1 other test skip [566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: [SKIP][568] ([i915#2436]) -> [SKIP][569] ([i915#14544] / [i915#2436]) [568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18461/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12469 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152 [i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15152 [i915#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15587 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752 [i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804 [i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15912]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15912 [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948 [i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#16011]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16011 [i915#16012]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16012 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879 [i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8901 -> IGTPW_15139 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18461: 11d2d2a0077bf9aef71906f0db84bdab357ac773 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15139: d8f600763107e138d31707ee5fd3bb64905bf8bc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8901: 0a391e6b79fd6c6c7a55f75ea4769f31529821c4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15139/index.html [-- Attachment #2: Type: text/html, Size: 192495 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2026-05-13 14:48 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-05-08 17:25 [PATCH v2 0/3] Test panthor sparse mappings Adrián Larumbe 2026-05-08 17:25 ` [PATCH v2 1/3] drm-uapi/panthor: sync with kernel 5731bca6a656 Adrián Larumbe 2026-05-13 14:04 ` Kamil Konieczny 2026-05-08 17:25 ` [PATCH v2 2/3] panthor: Add IGT library helper for Panthor sparse mappings Adrián Larumbe 2026-05-13 14:00 ` Kamil Konieczny 2026-05-08 17:25 ` [PATCH v2 3/3] tests/panthor: Add Panthor sparse VM_BIND tests Adrián Larumbe 2026-05-13 13:54 ` Kamil Konieczny 2026-05-13 14:48 ` Kamil Konieczny 2026-05-09 0:55 ` ✓ i915.CI.BAT: success for Test panthor sparse mappings Patchwork 2026-05-09 1:14 ` ✓ Xe.CI.BAT: " Patchwork 2026-05-09 14:25 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-05-10 2:32 ` ✓ i915.CI.Full: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox