* [PATCH v5 0/3] drm/xe/oa: Wa_14026633728
@ 2026-04-25 0:14 Ashutosh Dixit
2026-04-25 0:14 ` [PATCH 1/3] drm/xe/oa: Use xe_map layer Ashutosh Dixit
` (5 more replies)
0 siblings, 6 replies; 16+ messages in thread
From: Ashutosh Dixit @ 2026-04-25 0:14 UTC (permalink / raw)
To: intel-xe; +Cc: Umesh Nerlige Ramappa
v5 though v2: Change to Patch 1 (see changelog in Patch 1)
Ashutosh Dixit (3):
drm/xe/oa: Use xe_map layer
drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap
drm/xe/oa: Implement Wa_14026633728
drivers/gpu/drm/xe/xe_oa.c | 123 ++++++++++++++++-------------
drivers/gpu/drm/xe/xe_oa_types.h | 4 +-
drivers/gpu/drm/xe/xe_wa_oob.rules | 1 +
3 files changed, 70 insertions(+), 58 deletions(-)
--
2.54.0
^ permalink raw reply [flat|nested] 16+ messages in thread* [PATCH 1/3] drm/xe/oa: Use xe_map layer 2026-04-25 0:14 [PATCH v5 0/3] drm/xe/oa: Wa_14026633728 Ashutosh Dixit @ 2026-04-25 0:14 ` Ashutosh Dixit 2026-04-27 19:23 ` Umesh Nerlige Ramappa 2026-04-25 0:14 ` [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap Ashutosh Dixit ` (4 subsequent siblings) 5 siblings, 1 reply; 16+ messages in thread From: Ashutosh Dixit @ 2026-04-25 0:14 UTC (permalink / raw) To: intel-xe; +Cc: Umesh Nerlige Ramappa OA code should have used xe_map layer to begin with. In CRI, the OA buffer can be located both in system and device memory. For these reasons, move OA code to use the xe_map layer when accessing the OA buffer. v2: Use xe_map layer and put_user in xe_oa_copy_to_user (Umesh) v3: To avoid performance impact in v2, revert to v1 but move xe_map_copy_to_user() to xe_map.h v4: Use bounce buffer and copy_to_user in xe_oa_copy_to_user v5: Fix offsets in oa_timestamp() and oa_timestamp_clear() (Umesh) Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> --- drivers/gpu/drm/xe/xe_oa.c | 95 +++++++++++++++++++------------- drivers/gpu/drm/xe/xe_oa_types.h | 4 +- 2 files changed, 58 insertions(+), 41 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_oa.c b/drivers/gpu/drm/xe/xe_oa.c index 6337e671c97ae..3ae30dc609bd7 100644 --- a/drivers/gpu/drm/xe/xe_oa.c +++ b/drivers/gpu/drm/xe/xe_oa.c @@ -213,32 +213,40 @@ static u32 xe_oa_hw_tail_read(struct xe_oa_stream *stream) #define oa_report_header_64bit(__s) \ ((__s)->oa_buffer.format->header == HDR_64_BIT) -static u64 oa_report_id(struct xe_oa_stream *stream, void *report) +static u64 oa_report_id(struct xe_oa_stream *stream, u32 tail) { - return oa_report_header_64bit(stream) ? *(u64 *)report : *(u32 *)report; + struct iosys_map *map = &stream->oa_buffer.bo->vmap; + + return oa_report_header_64bit(stream) ? + xe_map_rd(stream->oa->xe, map, tail, u64) : + xe_map_rd(stream->oa->xe, map, tail, u32); } -static void oa_report_id_clear(struct xe_oa_stream *stream, u32 *report) +static void oa_report_id_clear(struct xe_oa_stream *stream, u32 head) { - if (oa_report_header_64bit(stream)) - *(u64 *)report = 0; - else - *report = 0; + struct iosys_map *map = &stream->oa_buffer.bo->vmap; + + oa_report_header_64bit(stream) ? + xe_map_wr(stream->oa->xe, map, head, u64, 0) : + xe_map_wr(stream->oa->xe, map, head, u32, 0); } -static u64 oa_timestamp(struct xe_oa_stream *stream, void *report) +static u64 oa_timestamp(struct xe_oa_stream *stream, u32 tail) { + struct iosys_map *map = &stream->oa_buffer.bo->vmap; + return oa_report_header_64bit(stream) ? - *((u64 *)report + 1) : - *((u32 *)report + 1); + xe_map_rd(stream->oa->xe, map, tail + 8, u64) : + xe_map_rd(stream->oa->xe, map, tail + 4, u32); } -static void oa_timestamp_clear(struct xe_oa_stream *stream, u32 *report) +static void oa_timestamp_clear(struct xe_oa_stream *stream, u32 head) { - if (oa_report_header_64bit(stream)) - *(u64 *)&report[2] = 0; - else - report[1] = 0; + struct iosys_map *map = &stream->oa_buffer.bo->vmap; + + oa_report_header_64bit(stream) ? + xe_map_wr(stream->oa->xe, map, head + 8, u64, 0) : + xe_map_wr(stream->oa->xe, map, head + 4, u32, 0); } static bool xe_oa_buffer_check_unlocked(struct xe_oa_stream *stream) @@ -275,9 +283,7 @@ static bool xe_oa_buffer_check_unlocked(struct xe_oa_stream *stream) * they were written. If not : (╯°□°)╯︵ ┻━┻ */ while (xe_oa_circ_diff(stream, tail, stream->oa_buffer.tail) >= report_size) { - void *report = stream->oa_buffer.vaddr + tail; - - if (oa_report_id(stream, report) || oa_timestamp(stream, report)) + if (oa_report_id(stream, tail) || oa_timestamp(stream, tail)) break; tail = xe_oa_circ_diff(stream, tail, report_size); @@ -311,30 +317,35 @@ static enum hrtimer_restart xe_oa_poll_check_timer_cb(struct hrtimer *hrtimer) return HRTIMER_RESTART; } +static unsigned long +xe_oa_copy_to_user(struct xe_oa_stream *stream, void __user *dst, u32 head, u32 len) +{ + xe_map_memcpy_from(stream->oa->xe, stream->oa_buffer.bounce, + &stream->oa_buffer.bo->vmap, head, len); + return copy_to_user(dst, stream->oa_buffer.bounce, len); +} + static int xe_oa_append_report(struct xe_oa_stream *stream, char __user *buf, - size_t count, size_t *offset, const u8 *report) + size_t count, size_t *offset, u32 head) { int report_size = stream->oa_buffer.format->size; int report_size_partial; - u8 *oa_buf_end; if ((count - *offset) < report_size) return -ENOSPC; buf += *offset; - oa_buf_end = stream->oa_buffer.vaddr + stream->oa_buffer.circ_size; - report_size_partial = oa_buf_end - report; + report_size_partial = stream->oa_buffer.circ_size - head; if (report_size_partial < report_size) { - if (copy_to_user(buf, report, report_size_partial)) + if (xe_oa_copy_to_user(stream, buf, head, report_size_partial)) return -EFAULT; buf += report_size_partial; - if (copy_to_user(buf, stream->oa_buffer.vaddr, - report_size - report_size_partial)) + if (xe_oa_copy_to_user(stream, buf, 0, report_size - report_size_partial)) return -EFAULT; - } else if (copy_to_user(buf, report, report_size)) { + } else if (xe_oa_copy_to_user(stream, buf, head, report_size)) { return -EFAULT; } @@ -347,7 +358,6 @@ static int xe_oa_append_reports(struct xe_oa_stream *stream, char __user *buf, size_t count, size_t *offset) { int report_size = stream->oa_buffer.format->size; - u8 *oa_buf_base = stream->oa_buffer.vaddr; u32 gtt_offset = xe_bo_ggtt_addr(stream->oa_buffer.bo); size_t start_offset = *offset; unsigned long flags; @@ -364,26 +374,24 @@ static int xe_oa_append_reports(struct xe_oa_stream *stream, char __user *buf, for (; xe_oa_circ_diff(stream, tail, head); head = xe_oa_circ_incr(stream, head, report_size)) { - u8 *report = oa_buf_base + head; - - ret = xe_oa_append_report(stream, buf, count, offset, report); + ret = xe_oa_append_report(stream, buf, count, offset, head); if (ret) break; if (!(stream->oa_buffer.circ_size % report_size)) { /* Clear out report id and timestamp to detect unlanded reports */ - oa_report_id_clear(stream, (void *)report); - oa_timestamp_clear(stream, (void *)report); + oa_report_id_clear(stream, head); + oa_timestamp_clear(stream, head); } else { - u8 *oa_buf_end = stream->oa_buffer.vaddr + stream->oa_buffer.circ_size; - u32 part = oa_buf_end - report; + struct iosys_map *map = &stream->oa_buffer.bo->vmap; + u32 part = stream->oa_buffer.circ_size - head; /* Zero out the entire report */ if (report_size <= part) { - memset(report, 0, report_size); + xe_map_memset(stream->oa->xe, map, head, 0, report_size); } else { - memset(report, 0, part); - memset(oa_buf_base, 0, report_size - part); + xe_map_memset(stream->oa->xe, map, head, 0, part); + xe_map_memset(stream->oa->xe, map, 0, 0, report_size - part); } } } @@ -436,7 +444,8 @@ static void xe_oa_init_oa_buffer(struct xe_oa_stream *stream) spin_unlock_irqrestore(&stream->oa_buffer.ptr_lock, flags); /* Zero out the OA buffer since we rely on zero report id and timestamp fields */ - memset(stream->oa_buffer.vaddr, 0, xe_bo_size(stream->oa_buffer.bo)); + xe_map_memset(stream->oa->xe, &stream->oa_buffer.bo->vmap, 0, 0, + xe_bo_size(stream->oa_buffer.bo)); } static u32 __format_to_oactrl(const struct xe_oa_format *format, int counter_sel_mask) @@ -699,6 +708,7 @@ static int num_lri_dwords(int num_regs) static void xe_oa_free_oa_buffer(struct xe_oa_stream *stream) { xe_bo_unpin_map_no_vm(stream->oa_buffer.bo); + kfree(stream->oa_buffer.bounce); } static void xe_oa_free_configs(struct xe_oa_stream *stream) @@ -889,9 +899,16 @@ static int xe_oa_alloc_oa_buffer(struct xe_oa_stream *stream, size_t size) return PTR_ERR(bo); stream->oa_buffer.bo = bo; + /* mmap implementation requires OA buffer to be in system memory */ xe_assert(stream->oa->xe, bo->vmap.is_iomem == 0); - stream->oa_buffer.vaddr = bo->vmap.vaddr; + + stream->oa_buffer.bounce = kmalloc(stream->oa_buffer.format->size, GFP_KERNEL); + if (!stream->oa_buffer.bounce) { + xe_bo_unpin_map_no_vm(stream->oa_buffer.bo); + return -ENOMEM; + } + return 0; } diff --git a/drivers/gpu/drm/xe/xe_oa_types.h b/drivers/gpu/drm/xe/xe_oa_types.h index 8906c3084b5f8..3d9ec8490899c 100644 --- a/drivers/gpu/drm/xe/xe_oa_types.h +++ b/drivers/gpu/drm/xe/xe_oa_types.h @@ -164,8 +164,8 @@ struct xe_oa_buffer { /** @bo: xe_bo backing the OA buffer */ struct xe_bo *bo; - /** @vaddr: mapped vaddr of the OA buffer */ - u8 *vaddr; + /** @bounce: bounce buffer used with xe_map layer */ + void *bounce; /** @ptr_lock: Lock protecting reads/writes to head/tail pointers */ spinlock_t ptr_lock; -- 2.54.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH 1/3] drm/xe/oa: Use xe_map layer 2026-04-25 0:14 ` [PATCH 1/3] drm/xe/oa: Use xe_map layer Ashutosh Dixit @ 2026-04-27 19:23 ` Umesh Nerlige Ramappa 0 siblings, 0 replies; 16+ messages in thread From: Umesh Nerlige Ramappa @ 2026-04-27 19:23 UTC (permalink / raw) To: Ashutosh Dixit; +Cc: intel-xe On Fri, Apr 24, 2026 at 05:14:37PM -0700, Ashutosh Dixit wrote: >OA code should have used xe_map layer to begin with. In CRI, the OA buffer >can be located both in system and device memory. For these reasons, move OA >code to use the xe_map layer when accessing the OA buffer. (1) Please also add the description from the thread in v4 on why you are renaming some stuff. > >v2: Use xe_map layer and put_user in xe_oa_copy_to_user (Umesh) >v3: To avoid performance impact in v2, revert to v1 but move > xe_map_copy_to_user() to xe_map.h >v4: Use bounce buffer and copy_to_user in xe_oa_copy_to_user >v5: Fix offsets in oa_timestamp() and oa_timestamp_clear() (Umesh) > >Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> >--- > drivers/gpu/drm/xe/xe_oa.c | 95 +++++++++++++++++++------------- > drivers/gpu/drm/xe/xe_oa_types.h | 4 +- > 2 files changed, 58 insertions(+), 41 deletions(-) > >diff --git a/drivers/gpu/drm/xe/xe_oa.c b/drivers/gpu/drm/xe/xe_oa.c >index 6337e671c97ae..3ae30dc609bd7 100644 >--- a/drivers/gpu/drm/xe/xe_oa.c >+++ b/drivers/gpu/drm/xe/xe_oa.c >@@ -213,32 +213,40 @@ static u32 xe_oa_hw_tail_read(struct xe_oa_stream *stream) > #define oa_report_header_64bit(__s) \ > ((__s)->oa_buffer.format->header == HDR_64_BIT) > >-static u64 oa_report_id(struct xe_oa_stream *stream, void *report) >+static u64 oa_report_id(struct xe_oa_stream *stream, u32 tail) > { >- return oa_report_header_64bit(stream) ? *(u64 *)report : *(u32 *)report; >+ struct iosys_map *map = &stream->oa_buffer.bo->vmap; >+ >+ return oa_report_header_64bit(stream) ? >+ xe_map_rd(stream->oa->xe, map, tail, u64) : >+ xe_map_rd(stream->oa->xe, map, tail, u32); > } > >-static void oa_report_id_clear(struct xe_oa_stream *stream, u32 *report) >+static void oa_report_id_clear(struct xe_oa_stream *stream, u32 head) > { >- if (oa_report_header_64bit(stream)) >- *(u64 *)report = 0; >- else >- *report = 0; >+ struct iosys_map *map = &stream->oa_buffer.bo->vmap; >+ >+ oa_report_header_64bit(stream) ? >+ xe_map_wr(stream->oa->xe, map, head, u64, 0) : >+ xe_map_wr(stream->oa->xe, map, head, u32, 0); > } > >-static u64 oa_timestamp(struct xe_oa_stream *stream, void *report) >+static u64 oa_timestamp(struct xe_oa_stream *stream, u32 tail) > { >+ struct iosys_map *map = &stream->oa_buffer.bo->vmap; >+ > return oa_report_header_64bit(stream) ? >- *((u64 *)report + 1) : >- *((u32 *)report + 1); >+ xe_map_rd(stream->oa->xe, map, tail + 8, u64) : >+ xe_map_rd(stream->oa->xe, map, tail + 4, u32); > } > >-static void oa_timestamp_clear(struct xe_oa_stream *stream, u32 *report) >+static void oa_timestamp_clear(struct xe_oa_stream *stream, u32 head) > { >- if (oa_report_header_64bit(stream)) >- *(u64 *)&report[2] = 0; >- else >- report[1] = 0; >+ struct iosys_map *map = &stream->oa_buffer.bo->vmap; >+ >+ oa_report_header_64bit(stream) ? >+ xe_map_wr(stream->oa->xe, map, head + 8, u64, 0) : >+ xe_map_wr(stream->oa->xe, map, head + 4, u32, 0); > } Well, since this is cleared after the report is copied out, it's difficult to catch it. The only code this will affect is when we try to detect fully landed reports. I don't think existing tests can catch that. Can we plan to implement a test for this at some point? Something like - mmap OA buffer, read the data using read() call and then checked the mmapped location to ensure you zeroed out the timestamp and any other field we are clearing. > > static bool xe_oa_buffer_check_unlocked(struct xe_oa_stream *stream) >@@ -275,9 +283,7 @@ static bool xe_oa_buffer_check_unlocked(struct xe_oa_stream *stream) > * they were written. If not : (╯°□°)╯︵ ┻━┻ > */ > while (xe_oa_circ_diff(stream, tail, stream->oa_buffer.tail) >= report_size) { >- void *report = stream->oa_buffer.vaddr + tail; >- >- if (oa_report_id(stream, report) || oa_timestamp(stream, report)) >+ if (oa_report_id(stream, tail) || oa_timestamp(stream, tail)) > break; > > tail = xe_oa_circ_diff(stream, tail, report_size); >@@ -311,30 +317,35 @@ static enum hrtimer_restart xe_oa_poll_check_timer_cb(struct hrtimer *hrtimer) > return HRTIMER_RESTART; > } > >+static unsigned long >+xe_oa_copy_to_user(struct xe_oa_stream *stream, void __user *dst, u32 head, u32 len) >+{ (2) Check and fail if len is greater than report_size. I see callers right now are still within limits, so this should at least assert that the len is <= report_size because your bounce buffer can only hold that much data. With 1 and 2, this is Reviewed-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> Thanks, Umesh >+ xe_map_memcpy_from(stream->oa->xe, stream->oa_buffer.bounce, >+ &stream->oa_buffer.bo->vmap, head, len); >+ return copy_to_user(dst, stream->oa_buffer.bounce, len); >+} >+ > static int xe_oa_append_report(struct xe_oa_stream *stream, char __user *buf, >- size_t count, size_t *offset, const u8 *report) >+ size_t count, size_t *offset, u32 head) > { > int report_size = stream->oa_buffer.format->size; > int report_size_partial; >- u8 *oa_buf_end; > > if ((count - *offset) < report_size) > return -ENOSPC; > > buf += *offset; > >- oa_buf_end = stream->oa_buffer.vaddr + stream->oa_buffer.circ_size; >- report_size_partial = oa_buf_end - report; >+ report_size_partial = stream->oa_buffer.circ_size - head; > > if (report_size_partial < report_size) { >- if (copy_to_user(buf, report, report_size_partial)) >+ if (xe_oa_copy_to_user(stream, buf, head, report_size_partial)) > return -EFAULT; > buf += report_size_partial; > >- if (copy_to_user(buf, stream->oa_buffer.vaddr, >- report_size - report_size_partial)) >+ if (xe_oa_copy_to_user(stream, buf, 0, report_size - report_size_partial)) > return -EFAULT; >- } else if (copy_to_user(buf, report, report_size)) { >+ } else if (xe_oa_copy_to_user(stream, buf, head, report_size)) { > return -EFAULT; > } > >@@ -347,7 +358,6 @@ static int xe_oa_append_reports(struct xe_oa_stream *stream, char __user *buf, > size_t count, size_t *offset) > { > int report_size = stream->oa_buffer.format->size; >- u8 *oa_buf_base = stream->oa_buffer.vaddr; > u32 gtt_offset = xe_bo_ggtt_addr(stream->oa_buffer.bo); > size_t start_offset = *offset; > unsigned long flags; >@@ -364,26 +374,24 @@ static int xe_oa_append_reports(struct xe_oa_stream *stream, char __user *buf, > > for (; xe_oa_circ_diff(stream, tail, head); > head = xe_oa_circ_incr(stream, head, report_size)) { >- u8 *report = oa_buf_base + head; >- >- ret = xe_oa_append_report(stream, buf, count, offset, report); >+ ret = xe_oa_append_report(stream, buf, count, offset, head); > if (ret) > break; > > if (!(stream->oa_buffer.circ_size % report_size)) { > /* Clear out report id and timestamp to detect unlanded reports */ >- oa_report_id_clear(stream, (void *)report); >- oa_timestamp_clear(stream, (void *)report); >+ oa_report_id_clear(stream, head); >+ oa_timestamp_clear(stream, head); > } else { >- u8 *oa_buf_end = stream->oa_buffer.vaddr + stream->oa_buffer.circ_size; >- u32 part = oa_buf_end - report; >+ struct iosys_map *map = &stream->oa_buffer.bo->vmap; >+ u32 part = stream->oa_buffer.circ_size - head; > > /* Zero out the entire report */ > if (report_size <= part) { >- memset(report, 0, report_size); >+ xe_map_memset(stream->oa->xe, map, head, 0, report_size); > } else { >- memset(report, 0, part); >- memset(oa_buf_base, 0, report_size - part); >+ xe_map_memset(stream->oa->xe, map, head, 0, part); >+ xe_map_memset(stream->oa->xe, map, 0, 0, report_size - part); > } > } > } >@@ -436,7 +444,8 @@ static void xe_oa_init_oa_buffer(struct xe_oa_stream *stream) > spin_unlock_irqrestore(&stream->oa_buffer.ptr_lock, flags); > > /* Zero out the OA buffer since we rely on zero report id and timestamp fields */ >- memset(stream->oa_buffer.vaddr, 0, xe_bo_size(stream->oa_buffer.bo)); >+ xe_map_memset(stream->oa->xe, &stream->oa_buffer.bo->vmap, 0, 0, >+ xe_bo_size(stream->oa_buffer.bo)); > } > > static u32 __format_to_oactrl(const struct xe_oa_format *format, int counter_sel_mask) >@@ -699,6 +708,7 @@ static int num_lri_dwords(int num_regs) > static void xe_oa_free_oa_buffer(struct xe_oa_stream *stream) > { > xe_bo_unpin_map_no_vm(stream->oa_buffer.bo); >+ kfree(stream->oa_buffer.bounce); > } > > static void xe_oa_free_configs(struct xe_oa_stream *stream) >@@ -889,9 +899,16 @@ static int xe_oa_alloc_oa_buffer(struct xe_oa_stream *stream, size_t size) > return PTR_ERR(bo); > > stream->oa_buffer.bo = bo; >+ > /* mmap implementation requires OA buffer to be in system memory */ > xe_assert(stream->oa->xe, bo->vmap.is_iomem == 0); >- stream->oa_buffer.vaddr = bo->vmap.vaddr; >+ >+ stream->oa_buffer.bounce = kmalloc(stream->oa_buffer.format->size, GFP_KERNEL); >+ if (!stream->oa_buffer.bounce) { >+ xe_bo_unpin_map_no_vm(stream->oa_buffer.bo); >+ return -ENOMEM; >+ } >+ > return 0; > } > >diff --git a/drivers/gpu/drm/xe/xe_oa_types.h b/drivers/gpu/drm/xe/xe_oa_types.h >index 8906c3084b5f8..3d9ec8490899c 100644 >--- a/drivers/gpu/drm/xe/xe_oa_types.h >+++ b/drivers/gpu/drm/xe/xe_oa_types.h >@@ -164,8 +164,8 @@ struct xe_oa_buffer { > /** @bo: xe_bo backing the OA buffer */ > struct xe_bo *bo; > >- /** @vaddr: mapped vaddr of the OA buffer */ >- u8 *vaddr; >+ /** @bounce: bounce buffer used with xe_map layer */ >+ void *bounce; > > /** @ptr_lock: Lock protecting reads/writes to head/tail pointers */ > spinlock_t ptr_lock; >-- >2.54.0 > ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap 2026-04-25 0:14 [PATCH v5 0/3] drm/xe/oa: Wa_14026633728 Ashutosh Dixit 2026-04-25 0:14 ` [PATCH 1/3] drm/xe/oa: Use xe_map layer Ashutosh Dixit @ 2026-04-25 0:14 ` Ashutosh Dixit 2026-04-25 0:14 ` [PATCH 3/3] drm/xe/oa: Implement Wa_14026633728 Ashutosh Dixit ` (3 subsequent siblings) 5 siblings, 0 replies; 16+ messages in thread From: Ashutosh Dixit @ 2026-04-25 0:14 UTC (permalink / raw) To: intel-xe; +Cc: Umesh Nerlige Ramappa OA buffer mmap can currently only mmap OA buffer in system memory. CRI MERTOA buffer can be located in device memory. Switch OA buffer mmap to using drm_gem_mmap_obj, which can handle mmap's of both system and device memory buffers. Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> Reviewed-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> --- drivers/gpu/drm/xe/xe_oa.c | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_oa.c b/drivers/gpu/drm/xe/xe_oa.c index 3ae30dc609bd7..5ccf63c807920 100644 --- a/drivers/gpu/drm/xe/xe_oa.c +++ b/drivers/gpu/drm/xe/xe_oa.c @@ -9,6 +9,7 @@ #include <linux/poll.h> #include <drm/drm_drv.h> +#include <drm/drm_gem.h> #include <drm/drm_managed.h> #include <drm/drm_syncobj.h> #include <uapi/drm/xe_drm.h> @@ -900,9 +901,6 @@ static int xe_oa_alloc_oa_buffer(struct xe_oa_stream *stream, size_t size) stream->oa_buffer.bo = bo; - /* mmap implementation requires OA buffer to be in system memory */ - xe_assert(stream->oa->xe, bo->vmap.is_iomem == 0); - stream->oa_buffer.bounce = kmalloc(stream->oa_buffer.format->size, GFP_KERNEL); if (!stream->oa_buffer.bounce) { xe_bo_unpin_map_no_vm(stream->oa_buffer.bo); @@ -1690,8 +1688,6 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) { struct xe_oa_stream *stream = file->private_data; struct xe_bo *bo = stream->oa_buffer.bo; - unsigned long start = vma->vm_start; - int i, ret; if (xe_observation_paranoid && !perfmon_capable()) { drm_dbg(&stream->oa->xe->drm, "Insufficient privilege to map OA buffer\n"); @@ -1699,7 +1695,7 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) } /* Can mmap the entire OA buffer or nothing (no partial OA buffer mmaps) */ - if (vma->vm_end - vma->vm_start != xe_bo_size(stream->oa_buffer.bo)) { + if (vma->vm_end - vma->vm_start != xe_bo_size(bo)) { drm_dbg(&stream->oa->xe->drm, "Wrong mmap size, must be OA buffer size\n"); return -EINVAL; } @@ -1715,17 +1711,7 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) vm_flags_mod(vma, VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP | VM_DONTCOPY, VM_MAYWRITE | VM_MAYEXEC); - xe_assert(stream->oa->xe, bo->ttm.ttm->num_pages == vma_pages(vma)); - for (i = 0; i < bo->ttm.ttm->num_pages; i++) { - ret = remap_pfn_range(vma, start, page_to_pfn(bo->ttm.ttm->pages[i]), - PAGE_SIZE, vma->vm_page_prot); - if (ret) - break; - - start += PAGE_SIZE; - } - - return ret; + return drm_gem_mmap_obj(&bo->ttm.base, xe_bo_size(bo), vma); } static const struct file_operations xe_oa_fops = { -- 2.54.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH 3/3] drm/xe/oa: Implement Wa_14026633728 2026-04-25 0:14 [PATCH v5 0/3] drm/xe/oa: Wa_14026633728 Ashutosh Dixit 2026-04-25 0:14 ` [PATCH 1/3] drm/xe/oa: Use xe_map layer Ashutosh Dixit 2026-04-25 0:14 ` [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap Ashutosh Dixit @ 2026-04-25 0:14 ` Ashutosh Dixit 2026-04-25 0:21 ` ✓ CI.KUnit: success for drm/xe/oa: Wa_14026633728 (rev5) Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 16+ messages in thread From: Ashutosh Dixit @ 2026-04-25 0:14 UTC (permalink / raw) To: intel-xe; +Cc: Umesh Nerlige Ramappa CRI Wa_14026633728 requires MERTOA buffer to be allocated in device memory, not system memory (which is the default for OA buffers). Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> Reviewed-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> --- drivers/gpu/drm/xe/xe_oa.c | 10 +++++++++- drivers/gpu/drm/xe/xe_wa_oob.rules | 1 + 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/xe/xe_oa.c b/drivers/gpu/drm/xe/xe_oa.c index 5ccf63c807920..2a9b0d9884237 100644 --- a/drivers/gpu/drm/xe/xe_oa.c +++ b/drivers/gpu/drm/xe/xe_oa.c @@ -250,6 +250,11 @@ static void oa_timestamp_clear(struct xe_oa_stream *stream, u32 head) xe_map_wr(stream->oa->xe, map, head + 4, u32, 0); } +static bool mert_wa_14026633728(struct xe_oa_stream *s) +{ + return s->oa_unit->type == DRM_XE_OA_UNIT_TYPE_MERT && XE_GT_WA(s->gt, 14026633728); +} + static bool xe_oa_buffer_check_unlocked(struct xe_oa_stream *stream) { u32 gtt_offset = xe_bo_ggtt_addr(stream->oa_buffer.bo); @@ -891,11 +896,14 @@ static void xe_oa_stream_destroy(struct xe_oa_stream *stream) static int xe_oa_alloc_oa_buffer(struct xe_oa_stream *stream, size_t size) { + u32 vram = mert_wa_14026633728(stream) ? + XE_BO_FLAG_VRAM_IF_DGFX(xe_device_get_root_tile(stream->oa->xe)) : + XE_BO_FLAG_SYSTEM; struct xe_bo *bo; bo = xe_bo_create_pin_map_novm(stream->oa->xe, stream->gt->tile, size, ttm_bo_type_kernel, - XE_BO_FLAG_SYSTEM | XE_BO_FLAG_GGTT, false); + vram | XE_BO_FLAG_GGTT, false); if (IS_ERR(bo)) return PTR_ERR(bo); diff --git a/drivers/gpu/drm/xe/xe_wa_oob.rules b/drivers/gpu/drm/xe/xe_wa_oob.rules index f8a185103b805..a7c1bd9bcb943 100644 --- a/drivers/gpu/drm/xe/xe_wa_oob.rules +++ b/drivers/gpu/drm/xe/xe_wa_oob.rules @@ -65,3 +65,4 @@ 14025883347 MEDIA_VERSION_RANGE(1301, 3503) GRAPHICS_VERSION_RANGE(2004, 3005) +14026633728 PLATFORM(CRESCENTISLAND) -- 2.54.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* ✓ CI.KUnit: success for drm/xe/oa: Wa_14026633728 (rev5) 2026-04-25 0:14 [PATCH v5 0/3] drm/xe/oa: Wa_14026633728 Ashutosh Dixit ` (2 preceding siblings ...) 2026-04-25 0:14 ` [PATCH 3/3] drm/xe/oa: Implement Wa_14026633728 Ashutosh Dixit @ 2026-04-25 0:21 ` Patchwork 2026-04-25 1:14 ` ✓ Xe.CI.BAT: " Patchwork 2026-04-25 2:18 ` ✗ Xe.CI.FULL: failure " Patchwork 5 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2026-04-25 0:21 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: intel-xe == Series Details == Series: drm/xe/oa: Wa_14026633728 (rev5) URL : https://patchwork.freedesktop.org/series/164412/ State : success == Summary == + trap cleanup EXIT + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig [00:20:06] Configuring KUnit Kernel ... Generating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [00:20:10] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48 [00:20:41] Starting KUnit Kernel (1/1)... [00:20:41] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [00:20:41] ================== guc_buf (11 subtests) =================== [00:20:41] [PASSED] test_smallest [00:20:41] [PASSED] test_largest [00:20:41] [PASSED] test_granular [00:20:41] [PASSED] test_unique [00:20:41] [PASSED] test_overlap [00:20:41] [PASSED] test_reusable [00:20:41] [PASSED] test_too_big [00:20:41] [PASSED] test_flush [00:20:41] [PASSED] test_lookup [00:20:41] [PASSED] test_data [00:20:41] [PASSED] test_class [00:20:41] ===================== [PASSED] guc_buf ===================== [00:20:41] =================== guc_dbm (7 subtests) =================== [00:20:41] [PASSED] test_empty [00:20:41] [PASSED] test_default [00:20:41] ======================== test_size ======================== [00:20:41] [PASSED] 4 [00:20:41] [PASSED] 8 [00:20:41] [PASSED] 32 [00:20:41] [PASSED] 256 [00:20:41] ==================== [PASSED] test_size ==================== [00:20:41] ======================= test_reuse ======================== [00:20:41] [PASSED] 4 [00:20:41] [PASSED] 8 [00:20:41] [PASSED] 32 [00:20:41] [PASSED] 256 [00:20:41] =================== [PASSED] test_reuse ==================== [00:20:41] =================== test_range_overlap ==================== [00:20:41] [PASSED] 4 [00:20:41] [PASSED] 8 [00:20:41] [PASSED] 32 [00:20:41] [PASSED] 256 [00:20:41] =============== [PASSED] test_range_overlap ================ [00:20:41] =================== test_range_compact ==================== [00:20:41] [PASSED] 4 [00:20:41] [PASSED] 8 [00:20:41] [PASSED] 32 [00:20:41] [PASSED] 256 [00:20:41] =============== [PASSED] test_range_compact ================ [00:20:41] ==================== test_range_spare ===================== [00:20:41] [PASSED] 4 [00:20:41] [PASSED] 8 [00:20:41] [PASSED] 32 [00:20:41] [PASSED] 256 [00:20:41] ================ [PASSED] test_range_spare ================= [00:20:41] ===================== [PASSED] guc_dbm ===================== [00:20:41] =================== guc_idm (6 subtests) =================== [00:20:41] [PASSED] bad_init [00:20:41] [PASSED] no_init [00:20:41] [PASSED] init_fini [00:20:41] [PASSED] check_used [00:20:41] [PASSED] check_quota [00:20:41] [PASSED] check_all [00:20:41] ===================== [PASSED] guc_idm ===================== [00:20:41] ================== no_relay (3 subtests) =================== [00:20:41] [PASSED] xe_drops_guc2pf_if_not_ready [00:20:41] [PASSED] xe_drops_guc2vf_if_not_ready [00:20:41] [PASSED] xe_rejects_send_if_not_ready [00:20:41] ==================== [PASSED] no_relay ===================== [00:20:41] ================== pf_relay (14 subtests) ================== [00:20:41] [PASSED] pf_rejects_guc2pf_too_short [00:20:41] [PASSED] pf_rejects_guc2pf_too_long [00:20:41] [PASSED] pf_rejects_guc2pf_no_payload [00:20:41] [PASSED] pf_fails_no_payload [00:20:41] [PASSED] pf_fails_bad_origin [00:20:41] [PASSED] pf_fails_bad_type [00:20:41] [PASSED] pf_txn_reports_error [00:20:41] [PASSED] pf_txn_sends_pf2guc [00:20:41] [PASSED] pf_sends_pf2guc [00:20:41] [SKIPPED] pf_loopback_nop [00:20:41] [SKIPPED] pf_loopback_echo [00:20:41] [SKIPPED] pf_loopback_fail [00:20:41] [SKIPPED] pf_loopback_busy [00:20:41] [SKIPPED] pf_loopback_retry [00:20:41] ==================== [PASSED] pf_relay ===================== [00:20:41] ================== vf_relay (3 subtests) =================== [00:20:41] [PASSED] vf_rejects_guc2vf_too_short [00:20:41] [PASSED] vf_rejects_guc2vf_too_long [00:20:41] [PASSED] vf_rejects_guc2vf_no_payload [00:20:41] ==================== [PASSED] vf_relay ===================== [00:20:41] ================ pf_gt_config (9 subtests) ================= [00:20:41] [PASSED] fair_contexts_1vf [00:20:41] [PASSED] fair_doorbells_1vf [00:20:41] [PASSED] fair_ggtt_1vf [00:20:41] ====================== fair_vram_1vf ====================== [00:20:41] [PASSED] 3.50 GiB [00:20:41] [PASSED] 11.5 GiB [00:20:41] [PASSED] 15.5 GiB [00:20:41] [PASSED] 31.5 GiB [00:20:41] [PASSED] 63.5 GiB [00:20:41] [PASSED] 1.91 GiB [00:20:41] ================== [PASSED] fair_vram_1vf ================== [00:20:41] ================ fair_vram_1vf_admin_only ================= [00:20:41] [PASSED] 3.50 GiB [00:20:41] [PASSED] 11.5 GiB [00:20:41] [PASSED] 15.5 GiB [00:20:41] [PASSED] 31.5 GiB [00:20:41] [PASSED] 63.5 GiB [00:20:41] [PASSED] 1.91 GiB [00:20:41] ============ [PASSED] fair_vram_1vf_admin_only ============= [00:20:41] ====================== fair_contexts ====================== [00:20:41] [PASSED] 1 VF [00:20:41] [PASSED] 2 VFs [00:20:41] [PASSED] 3 VFs [00:20:41] [PASSED] 4 VFs [00:20:41] [PASSED] 5 VFs [00:20:41] [PASSED] 6 VFs [00:20:41] [PASSED] 7 VFs [00:20:41] [PASSED] 8 VFs [00:20:41] [PASSED] 9 VFs [00:20:41] [PASSED] 10 VFs [00:20:41] [PASSED] 11 VFs [00:20:41] [PASSED] 12 VFs [00:20:41] [PASSED] 13 VFs [00:20:41] [PASSED] 14 VFs [00:20:41] [PASSED] 15 VFs [00:20:41] [PASSED] 16 VFs [00:20:41] [PASSED] 17 VFs [00:20:41] [PASSED] 18 VFs [00:20:41] [PASSED] 19 VFs [00:20:41] [PASSED] 20 VFs [00:20:41] [PASSED] 21 VFs [00:20:41] [PASSED] 22 VFs [00:20:41] [PASSED] 23 VFs [00:20:41] [PASSED] 24 VFs [00:20:41] [PASSED] 25 VFs [00:20:41] [PASSED] 26 VFs [00:20:41] [PASSED] 27 VFs [00:20:41] [PASSED] 28 VFs [00:20:41] [PASSED] 29 VFs [00:20:41] [PASSED] 30 VFs [00:20:41] [PASSED] 31 VFs [00:20:41] [PASSED] 32 VFs [00:20:41] [PASSED] 33 VFs [00:20:41] [PASSED] 34 VFs [00:20:41] [PASSED] 35 VFs [00:20:41] [PASSED] 36 VFs [00:20:41] [PASSED] 37 VFs [00:20:41] [PASSED] 38 VFs [00:20:41] [PASSED] 39 VFs [00:20:41] [PASSED] 40 VFs [00:20:41] [PASSED] 41 VFs [00:20:41] [PASSED] 42 VFs [00:20:41] [PASSED] 43 VFs [00:20:41] [PASSED] 44 VFs [00:20:41] [PASSED] 45 VFs [00:20:41] [PASSED] 46 VFs [00:20:41] [PASSED] 47 VFs [00:20:41] [PASSED] 48 VFs [00:20:41] [PASSED] 49 VFs [00:20:41] [PASSED] 50 VFs [00:20:41] [PASSED] 51 VFs [00:20:41] [PASSED] 52 VFs [00:20:41] [PASSED] 53 VFs [00:20:41] [PASSED] 54 VFs [00:20:41] [PASSED] 55 VFs [00:20:41] [PASSED] 56 VFs [00:20:41] [PASSED] 57 VFs [00:20:41] [PASSED] 58 VFs [00:20:41] [PASSED] 59 VFs [00:20:41] [PASSED] 60 VFs [00:20:41] [PASSED] 61 VFs [00:20:41] [PASSED] 62 VFs [00:20:41] [PASSED] 63 VFs [00:20:41] ================== [PASSED] fair_contexts ================== [00:20:41] ===================== fair_doorbells ====================== [00:20:41] [PASSED] 1 VF [00:20:41] [PASSED] 2 VFs [00:20:41] [PASSED] 3 VFs [00:20:41] [PASSED] 4 VFs [00:20:41] [PASSED] 5 VFs [00:20:41] [PASSED] 6 VFs [00:20:41] [PASSED] 7 VFs [00:20:41] [PASSED] 8 VFs [00:20:41] [PASSED] 9 VFs [00:20:41] [PASSED] 10 VFs [00:20:41] [PASSED] 11 VFs [00:20:41] [PASSED] 12 VFs [00:20:41] [PASSED] 13 VFs [00:20:41] [PASSED] 14 VFs [00:20:41] [PASSED] 15 VFs [00:20:41] [PASSED] 16 VFs [00:20:41] [PASSED] 17 VFs [00:20:41] [PASSED] 18 VFs [00:20:41] [PASSED] 19 VFs [00:20:41] [PASSED] 20 VFs [00:20:41] [PASSED] 21 VFs [00:20:41] [PASSED] 22 VFs [00:20:41] [PASSED] 23 VFs [00:20:41] [PASSED] 24 VFs [00:20:41] [PASSED] 25 VFs [00:20:41] [PASSED] 26 VFs [00:20:41] [PASSED] 27 VFs [00:20:41] [PASSED] 28 VFs [00:20:41] [PASSED] 29 VFs [00:20:41] [PASSED] 30 VFs [00:20:41] [PASSED] 31 VFs [00:20:41] [PASSED] 32 VFs [00:20:41] [PASSED] 33 VFs [00:20:41] [PASSED] 34 VFs [00:20:41] [PASSED] 35 VFs [00:20:41] [PASSED] 36 VFs [00:20:41] [PASSED] 37 VFs [00:20:41] [PASSED] 38 VFs [00:20:41] [PASSED] 39 VFs [00:20:41] [PASSED] 40 VFs [00:20:41] [PASSED] 41 VFs [00:20:41] [PASSED] 42 VFs [00:20:41] [PASSED] 43 VFs [00:20:41] [PASSED] 44 VFs [00:20:41] [PASSED] 45 VFs [00:20:41] [PASSED] 46 VFs [00:20:41] [PASSED] 47 VFs [00:20:41] [PASSED] 48 VFs [00:20:41] [PASSED] 49 VFs [00:20:41] [PASSED] 50 VFs [00:20:41] [PASSED] 51 VFs [00:20:41] [PASSED] 52 VFs [00:20:41] [PASSED] 53 VFs [00:20:41] [PASSED] 54 VFs [00:20:41] [PASSED] 55 VFs [00:20:41] [PASSED] 56 VFs [00:20:41] [PASSED] 57 VFs [00:20:41] [PASSED] 58 VFs [00:20:41] [PASSED] 59 VFs [00:20:41] [PASSED] 60 VFs [00:20:41] [PASSED] 61 VFs [00:20:41] [PASSED] 62 VFs [00:20:41] [PASSED] 63 VFs [00:20:41] ================= [PASSED] fair_doorbells ================== [00:20:41] ======================== fair_ggtt ======================== [00:20:41] [PASSED] 1 VF [00:20:41] [PASSED] 2 VFs [00:20:41] [PASSED] 3 VFs [00:20:41] [PASSED] 4 VFs [00:20:41] [PASSED] 5 VFs [00:20:41] [PASSED] 6 VFs [00:20:41] [PASSED] 7 VFs [00:20:41] [PASSED] 8 VFs [00:20:41] [PASSED] 9 VFs [00:20:41] [PASSED] 10 VFs [00:20:41] [PASSED] 11 VFs [00:20:41] [PASSED] 12 VFs [00:20:41] [PASSED] 13 VFs [00:20:41] [PASSED] 14 VFs [00:20:41] [PASSED] 15 VFs [00:20:41] [PASSED] 16 VFs [00:20:41] [PASSED] 17 VFs [00:20:41] [PASSED] 18 VFs [00:20:41] [PASSED] 19 VFs [00:20:41] [PASSED] 20 VFs [00:20:41] [PASSED] 21 VFs [00:20:41] [PASSED] 22 VFs [00:20:41] [PASSED] 23 VFs [00:20:41] [PASSED] 24 VFs [00:20:41] [PASSED] 25 VFs [00:20:41] [PASSED] 26 VFs [00:20:41] [PASSED] 27 VFs [00:20:41] [PASSED] 28 VFs [00:20:41] [PASSED] 29 VFs [00:20:41] [PASSED] 30 VFs [00:20:41] [PASSED] 31 VFs [00:20:41] [PASSED] 32 VFs [00:20:41] [PASSED] 33 VFs [00:20:41] [PASSED] 34 VFs [00:20:41] [PASSED] 35 VFs [00:20:41] [PASSED] 36 VFs [00:20:41] [PASSED] 37 VFs [00:20:41] [PASSED] 38 VFs [00:20:41] [PASSED] 39 VFs [00:20:41] [PASSED] 40 VFs [00:20:41] [PASSED] 41 VFs [00:20:41] [PASSED] 42 VFs [00:20:41] [PASSED] 43 VFs [00:20:41] [PASSED] 44 VFs [00:20:41] [PASSED] 45 VFs [00:20:41] [PASSED] 46 VFs [00:20:41] [PASSED] 47 VFs [00:20:41] [PASSED] 48 VFs [00:20:41] [PASSED] 49 VFs [00:20:41] [PASSED] 50 VFs [00:20:41] [PASSED] 51 VFs [00:20:41] [PASSED] 52 VFs [00:20:41] [PASSED] 53 VFs [00:20:41] [PASSED] 54 VFs [00:20:41] [PASSED] 55 VFs [00:20:41] [PASSED] 56 VFs [00:20:41] [PASSED] 57 VFs [00:20:41] [PASSED] 58 VFs [00:20:41] [PASSED] 59 VFs [00:20:41] [PASSED] 60 VFs [00:20:41] [PASSED] 61 VFs [00:20:41] [PASSED] 62 VFs [00:20:41] [PASSED] 63 VFs [00:20:41] ==================== [PASSED] fair_ggtt ==================== [00:20:41] ======================== fair_vram ======================== [00:20:41] [PASSED] 1 VF [00:20:41] [PASSED] 2 VFs [00:20:41] [PASSED] 3 VFs [00:20:41] [PASSED] 4 VFs [00:20:41] [PASSED] 5 VFs [00:20:41] [PASSED] 6 VFs [00:20:41] [PASSED] 7 VFs [00:20:41] [PASSED] 8 VFs [00:20:41] [PASSED] 9 VFs [00:20:41] [PASSED] 10 VFs [00:20:41] [PASSED] 11 VFs [00:20:41] [PASSED] 12 VFs [00:20:41] [PASSED] 13 VFs [00:20:41] [PASSED] 14 VFs [00:20:41] [PASSED] 15 VFs [00:20:41] [PASSED] 16 VFs [00:20:41] [PASSED] 17 VFs [00:20:41] [PASSED] 18 VFs [00:20:41] [PASSED] 19 VFs [00:20:41] [PASSED] 20 VFs [00:20:41] [PASSED] 21 VFs [00:20:41] [PASSED] 22 VFs [00:20:41] [PASSED] 23 VFs [00:20:41] [PASSED] 24 VFs [00:20:41] [PASSED] 25 VFs [00:20:41] [PASSED] 26 VFs [00:20:41] [PASSED] 27 VFs [00:20:41] [PASSED] 28 VFs [00:20:41] [PASSED] 29 VFs [00:20:41] [PASSED] 30 VFs [00:20:41] [PASSED] 31 VFs [00:20:41] [PASSED] 32 VFs [00:20:41] [PASSED] 33 VFs [00:20:41] [PASSED] 34 VFs [00:20:41] [PASSED] 35 VFs [00:20:41] [PASSED] 36 VFs [00:20:41] [PASSED] 37 VFs [00:20:41] [PASSED] 38 VFs [00:20:41] [PASSED] 39 VFs [00:20:41] [PASSED] 40 VFs [00:20:41] [PASSED] 41 VFs [00:20:41] [PASSED] 42 VFs [00:20:41] [PASSED] 43 VFs [00:20:41] [PASSED] 44 VFs [00:20:41] [PASSED] 45 VFs [00:20:41] [PASSED] 46 VFs [00:20:41] [PASSED] 47 VFs [00:20:41] [PASSED] 48 VFs [00:20:41] [PASSED] 49 VFs [00:20:41] [PASSED] 50 VFs [00:20:41] [PASSED] 51 VFs [00:20:41] [PASSED] 52 VFs [00:20:41] [PASSED] 53 VFs [00:20:41] [PASSED] 54 VFs [00:20:41] [PASSED] 55 VFs [00:20:41] [PASSED] 56 VFs [00:20:41] [PASSED] 57 VFs [00:20:41] [PASSED] 58 VFs [00:20:41] [PASSED] 59 VFs [00:20:41] [PASSED] 60 VFs [00:20:41] [PASSED] 61 VFs [00:20:41] [PASSED] 62 VFs [00:20:41] [PASSED] 63 VFs [00:20:41] ==================== [PASSED] fair_vram ==================== [00:20:41] ================== [PASSED] pf_gt_config =================== [00:20:41] ===================== lmtt (1 subtest) ===================== [00:20:41] ======================== test_ops ========================= [00:20:41] [PASSED] 2-level [00:20:41] [PASSED] multi-level [00:20:41] ==================== [PASSED] test_ops ===================== [00:20:41] ====================== [PASSED] lmtt ======================= [00:20:41] ================= pf_service (11 subtests) ================= [00:20:41] [PASSED] pf_negotiate_any [00:20:41] [PASSED] pf_negotiate_base_match [00:20:41] [PASSED] pf_negotiate_base_newer [00:20:41] [PASSED] pf_negotiate_base_next [00:20:41] [SKIPPED] pf_negotiate_base_older [00:20:41] [PASSED] pf_negotiate_base_prev [00:20:41] [PASSED] pf_negotiate_latest_match [00:20:41] [PASSED] pf_negotiate_latest_newer [00:20:41] [PASSED] pf_negotiate_latest_next [00:20:41] [SKIPPED] pf_negotiate_latest_older [00:20:41] [SKIPPED] pf_negotiate_latest_prev [00:20:41] =================== [PASSED] pf_service ==================== [00:20:41] ================= xe_guc_g2g (2 subtests) ================== [00:20:41] ============== xe_live_guc_g2g_kunit_default ============== [00:20:41] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ========== [00:20:41] ============== xe_live_guc_g2g_kunit_allmem =============== [00:20:41] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ========== [00:20:41] =================== [SKIPPED] xe_guc_g2g =================== [00:20:41] =================== xe_mocs (2 subtests) =================== [00:20:41] ================ xe_live_mocs_kernel_kunit ================ [00:20:41] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============ [00:20:41] ================ xe_live_mocs_reset_kunit ================= [00:20:41] ============ [SKIPPED] xe_live_mocs_reset_kunit ============ [00:20:41] ==================== [SKIPPED] xe_mocs ===================== [00:20:41] ================= xe_migrate (2 subtests) ================== [00:20:41] ================= xe_migrate_sanity_kunit ================= [00:20:41] ============ [SKIPPED] xe_migrate_sanity_kunit ============= [00:20:41] ================== xe_validate_ccs_kunit ================== [00:20:41] ============= [SKIPPED] xe_validate_ccs_kunit ============== [00:20:41] =================== [SKIPPED] xe_migrate =================== [00:20:41] ================== xe_dma_buf (1 subtest) ================== [00:20:41] ==================== xe_dma_buf_kunit ===================== [00:20:41] ================ [SKIPPED] xe_dma_buf_kunit ================ [00:20:41] =================== [SKIPPED] xe_dma_buf =================== [00:20:42] ================= xe_bo_shrink (1 subtest) ================= [00:20:42] =================== xe_bo_shrink_kunit ==================== [00:20:42] =============== [SKIPPED] xe_bo_shrink_kunit =============== [00:20:42] ================== [SKIPPED] xe_bo_shrink ================== [00:20:42] ==================== xe_bo (2 subtests) ==================== [00:20:42] ================== xe_ccs_migrate_kunit =================== [00:20:42] ============== [SKIPPED] xe_ccs_migrate_kunit ============== [00:20:42] ==================== xe_bo_evict_kunit ==================== [00:20:42] =============== [SKIPPED] xe_bo_evict_kunit ================ [00:20:42] ===================== [SKIPPED] xe_bo ====================== [00:20:42] ==================== args (13 subtests) ==================== [00:20:42] [PASSED] count_args_test [00:20:42] [PASSED] call_args_example [00:20:42] [PASSED] call_args_test [00:20:42] [PASSED] drop_first_arg_example [00:20:42] [PASSED] drop_first_arg_test [00:20:42] [PASSED] first_arg_example [00:20:42] [PASSED] first_arg_test [00:20:42] [PASSED] last_arg_example [00:20:42] [PASSED] last_arg_test [00:20:42] [PASSED] pick_arg_example [00:20:42] [PASSED] if_args_example [00:20:42] [PASSED] if_args_test [00:20:42] [PASSED] sep_comma_example [00:20:42] ====================== [PASSED] args ======================= [00:20:42] =================== xe_pci (3 subtests) ==================== [00:20:42] ==================== check_graphics_ip ==================== [00:20:42] [PASSED] 12.00 Xe_LP [00:20:42] [PASSED] 12.10 Xe_LP+ [00:20:42] [PASSED] 12.55 Xe_HPG [00:20:42] [PASSED] 12.60 Xe_HPC [00:20:42] [PASSED] 12.70 Xe_LPG [00:20:42] [PASSED] 12.71 Xe_LPG [00:20:42] [PASSED] 12.74 Xe_LPG+ [00:20:42] [PASSED] 20.01 Xe2_HPG [00:20:42] [PASSED] 20.02 Xe2_HPG [00:20:42] [PASSED] 20.04 Xe2_LPG [00:20:42] [PASSED] 30.00 Xe3_LPG [00:20:42] [PASSED] 30.01 Xe3_LPG [00:20:42] [PASSED] 30.03 Xe3_LPG [00:20:42] [PASSED] 30.04 Xe3_LPG [00:20:42] [PASSED] 30.05 Xe3_LPG [00:20:42] [PASSED] 35.10 Xe3p_LPG [00:20:42] [PASSED] 35.11 Xe3p_XPC [00:20:42] ================ [PASSED] check_graphics_ip ================ [00:20:42] ===================== check_media_ip ====================== [00:20:42] [PASSED] 12.00 Xe_M [00:20:42] [PASSED] 12.55 Xe_HPM [00:20:42] [PASSED] 13.00 Xe_LPM+ [00:20:42] [PASSED] 13.01 Xe2_HPM [00:20:42] [PASSED] 20.00 Xe2_LPM [00:20:42] [PASSED] 30.00 Xe3_LPM [00:20:42] [PASSED] 30.02 Xe3_LPM [00:20:42] [PASSED] 35.00 Xe3p_LPM [00:20:42] [PASSED] 35.03 Xe3p_HPM [00:20:42] ================= [PASSED] check_media_ip ================== [00:20:42] =================== check_platform_desc =================== [00:20:42] [PASSED] 0x9A60 (TIGERLAKE) [00:20:42] [PASSED] 0x9A68 (TIGERLAKE) [00:20:42] [PASSED] 0x9A70 (TIGERLAKE) [00:20:42] [PASSED] 0x9A40 (TIGERLAKE) [00:20:42] [PASSED] 0x9A49 (TIGERLAKE) [00:20:42] [PASSED] 0x9A59 (TIGERLAKE) [00:20:42] [PASSED] 0x9A78 (TIGERLAKE) [00:20:42] [PASSED] 0x9AC0 (TIGERLAKE) [00:20:42] [PASSED] 0x9AC9 (TIGERLAKE) [00:20:42] [PASSED] 0x9AD9 (TIGERLAKE) [00:20:42] [PASSED] 0x9AF8 (TIGERLAKE) [00:20:42] [PASSED] 0x4C80 (ROCKETLAKE) [00:20:42] [PASSED] 0x4C8A (ROCKETLAKE) [00:20:42] [PASSED] 0x4C8B (ROCKETLAKE) [00:20:42] [PASSED] 0x4C8C (ROCKETLAKE) [00:20:42] [PASSED] 0x4C90 (ROCKETLAKE) [00:20:42] [PASSED] 0x4C9A (ROCKETLAKE) [00:20:42] [PASSED] 0x4680 (ALDERLAKE_S) [00:20:42] [PASSED] 0x4682 (ALDERLAKE_S) [00:20:42] [PASSED] 0x4688 (ALDERLAKE_S) [00:20:42] [PASSED] 0x468A (ALDERLAKE_S) [00:20:42] [PASSED] 0x468B (ALDERLAKE_S) [00:20:42] [PASSED] 0x4690 (ALDERLAKE_S) [00:20:42] [PASSED] 0x4692 (ALDERLAKE_S) [00:20:42] [PASSED] 0x4693 (ALDERLAKE_S) [00:20:42] [PASSED] 0x46A0 (ALDERLAKE_P) [00:20:42] [PASSED] 0x46A1 (ALDERLAKE_P) [00:20:42] [PASSED] 0x46A2 (ALDERLAKE_P) [00:20:42] [PASSED] 0x46A3 (ALDERLAKE_P) [00:20:42] [PASSED] 0x46A6 (ALDERLAKE_P) [00:20:42] [PASSED] 0x46A8 (ALDERLAKE_P) [00:20:42] [PASSED] 0x46AA (ALDERLAKE_P) [00:20:42] [PASSED] 0x462A (ALDERLAKE_P) [00:20:42] [PASSED] 0x4626 (ALDERLAKE_P) [00:20:42] [PASSED] 0x4628 (ALDERLAKE_P) [00:20:42] [PASSED] 0x46B0 (ALDERLAKE_P) [00:20:42] [PASSED] 0x46B1 (ALDERLAKE_P) [00:20:42] [PASSED] 0x46B2 (ALDERLAKE_P) [00:20:42] [PASSED] 0x46B3 (ALDERLAKE_P) [00:20:42] [PASSED] 0x46C0 (ALDERLAKE_P) [00:20:42] [PASSED] 0x46C1 (ALDERLAKE_P) [00:20:42] [PASSED] 0x46C2 (ALDERLAKE_P) [00:20:42] [PASSED] 0x46C3 (ALDERLAKE_P) [00:20:42] [PASSED] 0x46D0 (ALDERLAKE_N) [00:20:42] [PASSED] 0x46D1 (ALDERLAKE_N) [00:20:42] [PASSED] 0x46D2 (ALDERLAKE_N) [00:20:42] [PASSED] 0x46D3 (ALDERLAKE_N) [00:20:42] [PASSED] 0x46D4 (ALDERLAKE_N) [00:20:42] [PASSED] 0xA721 (ALDERLAKE_P) [00:20:42] [PASSED] 0xA7A1 (ALDERLAKE_P) [00:20:42] [PASSED] 0xA7A9 (ALDERLAKE_P) [00:20:42] [PASSED] 0xA7AC (ALDERLAKE_P) [00:20:42] [PASSED] 0xA7AD (ALDERLAKE_P) [00:20:42] [PASSED] 0xA720 (ALDERLAKE_P) [00:20:42] [PASSED] 0xA7A0 (ALDERLAKE_P) [00:20:42] [PASSED] 0xA7A8 (ALDERLAKE_P) [00:20:42] [PASSED] 0xA7AA (ALDERLAKE_P) [00:20:42] [PASSED] 0xA7AB (ALDERLAKE_P) [00:20:42] [PASSED] 0xA780 (ALDERLAKE_S) [00:20:42] [PASSED] 0xA781 (ALDERLAKE_S) [00:20:42] [PASSED] 0xA782 (ALDERLAKE_S) [00:20:42] [PASSED] 0xA783 (ALDERLAKE_S) [00:20:42] [PASSED] 0xA788 (ALDERLAKE_S) [00:20:42] [PASSED] 0xA789 (ALDERLAKE_S) [00:20:42] [PASSED] 0xA78A (ALDERLAKE_S) [00:20:42] [PASSED] 0xA78B (ALDERLAKE_S) [00:20:42] [PASSED] 0x4905 (DG1) [00:20:42] [PASSED] 0x4906 (DG1) [00:20:42] [PASSED] 0x4907 (DG1) [00:20:42] [PASSED] 0x4908 (DG1) [00:20:42] [PASSED] 0x4909 (DG1) [00:20:42] [PASSED] 0x56C0 (DG2) [00:20:42] [PASSED] 0x56C2 (DG2) [00:20:42] [PASSED] 0x56C1 (DG2) [00:20:42] [PASSED] 0x7D51 (METEORLAKE) [00:20:42] [PASSED] 0x7DD1 (METEORLAKE) [00:20:42] [PASSED] 0x7D41 (METEORLAKE) [00:20:42] [PASSED] 0x7D67 (METEORLAKE) [00:20:42] [PASSED] 0xB640 (METEORLAKE) [00:20:42] [PASSED] 0x56A0 (DG2) [00:20:42] [PASSED] 0x56A1 (DG2) [00:20:42] [PASSED] 0x56A2 (DG2) [00:20:42] [PASSED] 0x56BE (DG2) [00:20:42] [PASSED] 0x56BF (DG2) [00:20:42] [PASSED] 0x5690 (DG2) [00:20:42] [PASSED] 0x5691 (DG2) [00:20:42] [PASSED] 0x5692 (DG2) [00:20:42] [PASSED] 0x56A5 (DG2) [00:20:42] [PASSED] 0x56A6 (DG2) [00:20:42] [PASSED] 0x56B0 (DG2) [00:20:42] [PASSED] 0x56B1 (DG2) [00:20:42] [PASSED] 0x56BA (DG2) [00:20:42] [PASSED] 0x56BB (DG2) [00:20:42] [PASSED] 0x56BC (DG2) [00:20:42] [PASSED] 0x56BD (DG2) [00:20:42] [PASSED] 0x5693 (DG2) [00:20:42] [PASSED] 0x5694 (DG2) [00:20:42] [PASSED] 0x5695 (DG2) [00:20:42] [PASSED] 0x56A3 (DG2) [00:20:42] [PASSED] 0x56A4 (DG2) [00:20:42] [PASSED] 0x56B2 (DG2) [00:20:42] [PASSED] 0x56B3 (DG2) [00:20:42] [PASSED] 0x5696 (DG2) [00:20:42] [PASSED] 0x5697 (DG2) [00:20:42] [PASSED] 0xB69 (PVC) [00:20:42] [PASSED] 0xB6E (PVC) [00:20:42] [PASSED] 0xBD4 (PVC) [00:20:42] [PASSED] 0xBD5 (PVC) [00:20:42] [PASSED] 0xBD6 (PVC) [00:20:42] [PASSED] 0xBD7 (PVC) [00:20:42] [PASSED] 0xBD8 (PVC) [00:20:42] [PASSED] 0xBD9 (PVC) [00:20:42] [PASSED] 0xBDA (PVC) [00:20:42] [PASSED] 0xBDB (PVC) [00:20:42] [PASSED] 0xBE0 (PVC) [00:20:42] [PASSED] 0xBE1 (PVC) [00:20:42] [PASSED] 0xBE5 (PVC) [00:20:42] [PASSED] 0x7D40 (METEORLAKE) [00:20:42] [PASSED] 0x7D45 (METEORLAKE) [00:20:42] [PASSED] 0x7D55 (METEORLAKE) [00:20:42] [PASSED] 0x7D60 (METEORLAKE) [00:20:42] [PASSED] 0x7DD5 (METEORLAKE) [00:20:42] [PASSED] 0x6420 (LUNARLAKE) [00:20:42] [PASSED] 0x64A0 (LUNARLAKE) [00:20:42] [PASSED] 0x64B0 (LUNARLAKE) [00:20:42] [PASSED] 0xE202 (BATTLEMAGE) [00:20:42] [PASSED] 0xE209 (BATTLEMAGE) [00:20:42] [PASSED] 0xE20B (BATTLEMAGE) [00:20:42] [PASSED] 0xE20C (BATTLEMAGE) [00:20:42] [PASSED] 0xE20D (BATTLEMAGE) [00:20:42] [PASSED] 0xE210 (BATTLEMAGE) [00:20:42] [PASSED] 0xE211 (BATTLEMAGE) [00:20:42] [PASSED] 0xE212 (BATTLEMAGE) [00:20:42] [PASSED] 0xE216 (BATTLEMAGE) [00:20:42] [PASSED] 0xE220 (BATTLEMAGE) [00:20:42] [PASSED] 0xE221 (BATTLEMAGE) [00:20:42] [PASSED] 0xE222 (BATTLEMAGE) [00:20:42] [PASSED] 0xE223 (BATTLEMAGE) [00:20:42] [PASSED] 0xB080 (PANTHERLAKE) [00:20:42] [PASSED] 0xB081 (PANTHERLAKE) [00:20:42] [PASSED] 0xB082 (PANTHERLAKE) [00:20:42] [PASSED] 0xB083 (PANTHERLAKE) [00:20:42] [PASSED] 0xB084 (PANTHERLAKE) [00:20:42] [PASSED] 0xB085 (PANTHERLAKE) [00:20:42] [PASSED] 0xB086 (PANTHERLAKE) [00:20:42] [PASSED] 0xB087 (PANTHERLAKE) [00:20:42] [PASSED] 0xB08F (PANTHERLAKE) [00:20:42] [PASSED] 0xB090 (PANTHERLAKE) [00:20:42] [PASSED] 0xB0A0 (PANTHERLAKE) [00:20:42] [PASSED] 0xB0B0 (PANTHERLAKE) [00:20:42] [PASSED] 0xFD80 (PANTHERLAKE) [00:20:42] [PASSED] 0xFD81 (PANTHERLAKE) [00:20:42] [PASSED] 0xD740 (NOVALAKE_S) [00:20:42] [PASSED] 0xD741 (NOVALAKE_S) [00:20:42] [PASSED] 0xD742 (NOVALAKE_S) [00:20:42] [PASSED] 0xD743 (NOVALAKE_S) [00:20:42] [PASSED] 0xD744 (NOVALAKE_S) [00:20:42] [PASSED] 0xD745 (NOVALAKE_S) [00:20:42] [PASSED] 0x674C (CRESCENTISLAND) [00:20:42] [PASSED] 0xD750 (NOVALAKE_P) [00:20:42] [PASSED] 0xD751 (NOVALAKE_P) [00:20:42] [PASSED] 0xD752 (NOVALAKE_P) [00:20:42] [PASSED] 0xD753 (NOVALAKE_P) [00:20:42] [PASSED] 0xD754 (NOVALAKE_P) [00:20:42] [PASSED] 0xD755 (NOVALAKE_P) [00:20:42] [PASSED] 0xD756 (NOVALAKE_P) [00:20:42] [PASSED] 0xD757 (NOVALAKE_P) [00:20:42] [PASSED] 0xD75F (NOVALAKE_P) [00:20:42] =============== [PASSED] check_platform_desc =============== [00:20:42] ===================== [PASSED] xe_pci ====================== [00:20:42] =================== xe_rtp (2 subtests) ==================== [00:20:42] =============== xe_rtp_process_to_sr_tests ================ [00:20:42] [PASSED] coalesce-same-reg [00:20:42] [PASSED] no-match-no-add [00:20:42] [PASSED] match-or [00:20:42] [PASSED] match-or-xfail [00:20:42] [PASSED] no-match-no-add-multiple-rules [00:20:42] [PASSED] two-regs-two-entries [00:20:42] [PASSED] clr-one-set-other [00:20:42] [PASSED] set-field [00:20:42] [PASSED] conflict-duplicate stty: 'standard input': Inappropriate ioctl for device [00:20:42] [PASSED] conflict-not-disjoint [00:20:42] [PASSED] conflict-reg-type [00:20:42] =========== [PASSED] xe_rtp_process_to_sr_tests ============ [00:20:42] ================== xe_rtp_process_tests =================== [00:20:42] [PASSED] active1 [00:20:42] [PASSED] active2 [00:20:42] [PASSED] active-inactive [00:20:42] [PASSED] inactive-active [00:20:42] [PASSED] inactive-1st_or_active-inactive [00:20:42] [PASSED] inactive-2nd_or_active-inactive [00:20:42] [PASSED] inactive-last_or_active-inactive [00:20:42] [PASSED] inactive-no_or_active-inactive [00:20:42] ============== [PASSED] xe_rtp_process_tests =============== [00:20:42] ===================== [PASSED] xe_rtp ====================== [00:20:42] ==================== xe_wa (1 subtest) ===================== [00:20:42] ======================== xe_wa_gt ========================= [00:20:42] [PASSED] TIGERLAKE B0 [00:20:42] [PASSED] DG1 A0 [00:20:42] [PASSED] DG1 B0 [00:20:42] [PASSED] ALDERLAKE_S A0 [00:20:42] [PASSED] ALDERLAKE_S B0 [00:20:42] [PASSED] ALDERLAKE_S C0 [00:20:42] [PASSED] ALDERLAKE_S D0 [00:20:42] [PASSED] ALDERLAKE_P A0 [00:20:42] [PASSED] ALDERLAKE_P B0 [00:20:42] [PASSED] ALDERLAKE_P C0 [00:20:42] [PASSED] ALDERLAKE_S RPLS D0 [00:20:42] [PASSED] ALDERLAKE_P RPLU E0 [00:20:42] [PASSED] DG2 G10 C0 [00:20:42] [PASSED] DG2 G11 B1 [00:20:42] [PASSED] DG2 G12 A1 [00:20:42] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0 [00:20:42] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0 [00:20:42] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0 [00:20:42] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0 [00:20:42] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0 [00:20:42] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1 [00:20:42] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0 [00:20:42] ==================== [PASSED] xe_wa_gt ===================== [00:20:42] ====================== [PASSED] xe_wa ====================== [00:20:42] ============================================================ [00:20:42] Testing complete. Ran 597 tests: passed: 579, skipped: 18 [00:20:42] Elapsed time: 35.870s total, 4.325s configuring, 30.927s building, 0.607s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig [00:20:42] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [00:20:43] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48 [00:21:07] Starting KUnit Kernel (1/1)... [00:21:07] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [00:21:08] ============ drm_test_pick_cmdline (2 subtests) ============ [00:21:08] [PASSED] drm_test_pick_cmdline_res_1920_1080_60 [00:21:08] =============== drm_test_pick_cmdline_named =============== [00:21:08] [PASSED] NTSC [00:21:08] [PASSED] NTSC-J [00:21:08] [PASSED] PAL [00:21:08] [PASSED] PAL-M [00:21:08] =========== [PASSED] drm_test_pick_cmdline_named =========== [00:21:08] ============== [PASSED] drm_test_pick_cmdline ============== [00:21:08] == drm_test_atomic_get_connector_for_encoder (1 subtest) === [00:21:08] [PASSED] drm_test_drm_atomic_get_connector_for_encoder [00:21:08] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ==== [00:21:08] =========== drm_validate_clone_mode (2 subtests) =========== [00:21:08] ============== drm_test_check_in_clone_mode =============== [00:21:08] [PASSED] in_clone_mode [00:21:08] [PASSED] not_in_clone_mode [00:21:08] ========== [PASSED] drm_test_check_in_clone_mode =========== [00:21:08] =============== drm_test_check_valid_clones =============== [00:21:08] [PASSED] not_in_clone_mode [00:21:08] [PASSED] valid_clone [00:21:08] [PASSED] invalid_clone [00:21:08] =========== [PASSED] drm_test_check_valid_clones =========== [00:21:08] ============= [PASSED] drm_validate_clone_mode ============= [00:21:08] ============= drm_validate_modeset (1 subtest) ============= [00:21:08] [PASSED] drm_test_check_connector_changed_modeset [00:21:08] ============== [PASSED] drm_validate_modeset =============== [00:21:08] ====== drm_test_bridge_get_current_state (2 subtests) ====== [00:21:08] [PASSED] drm_test_drm_bridge_get_current_state_atomic [00:21:08] [PASSED] drm_test_drm_bridge_get_current_state_legacy [00:21:08] ======== [PASSED] drm_test_bridge_get_current_state ======== [00:21:08] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ====== [00:21:08] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic [00:21:08] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled [00:21:08] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy [00:21:08] ======== [PASSED] drm_test_bridge_helper_reset_crtc ======== [00:21:08] ============== drm_bridge_alloc (2 subtests) =============== [00:21:08] [PASSED] drm_test_drm_bridge_alloc_basic [00:21:08] [PASSED] drm_test_drm_bridge_alloc_get_put [00:21:08] ================ [PASSED] drm_bridge_alloc ================= [00:21:08] ============= drm_cmdline_parser (40 subtests) ============= [00:21:08] [PASSED] drm_test_cmdline_force_d_only [00:21:08] [PASSED] drm_test_cmdline_force_D_only_dvi [00:21:08] [PASSED] drm_test_cmdline_force_D_only_hdmi [00:21:08] [PASSED] drm_test_cmdline_force_D_only_not_digital [00:21:08] [PASSED] drm_test_cmdline_force_e_only [00:21:08] [PASSED] drm_test_cmdline_res [00:21:08] [PASSED] drm_test_cmdline_res_vesa [00:21:08] [PASSED] drm_test_cmdline_res_vesa_rblank [00:21:08] [PASSED] drm_test_cmdline_res_rblank [00:21:08] [PASSED] drm_test_cmdline_res_bpp [00:21:08] [PASSED] drm_test_cmdline_res_refresh [00:21:08] [PASSED] drm_test_cmdline_res_bpp_refresh [00:21:08] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced [00:21:08] [PASSED] drm_test_cmdline_res_bpp_refresh_margins [00:21:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off [00:21:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on [00:21:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog [00:21:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital [00:21:08] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on [00:21:08] [PASSED] drm_test_cmdline_res_margins_force_on [00:21:08] [PASSED] drm_test_cmdline_res_vesa_margins [00:21:08] [PASSED] drm_test_cmdline_name [00:21:08] [PASSED] drm_test_cmdline_name_bpp [00:21:08] [PASSED] drm_test_cmdline_name_option [00:21:08] [PASSED] drm_test_cmdline_name_bpp_option [00:21:08] [PASSED] drm_test_cmdline_rotate_0 [00:21:08] [PASSED] drm_test_cmdline_rotate_90 [00:21:08] [PASSED] drm_test_cmdline_rotate_180 [00:21:08] [PASSED] drm_test_cmdline_rotate_270 [00:21:08] [PASSED] drm_test_cmdline_hmirror [00:21:08] [PASSED] drm_test_cmdline_vmirror [00:21:08] [PASSED] drm_test_cmdline_margin_options [00:21:08] [PASSED] drm_test_cmdline_multiple_options [00:21:08] [PASSED] drm_test_cmdline_bpp_extra_and_option [00:21:08] [PASSED] drm_test_cmdline_extra_and_option [00:21:08] [PASSED] drm_test_cmdline_freestanding_options [00:21:08] [PASSED] drm_test_cmdline_freestanding_force_e_and_options [00:21:08] [PASSED] drm_test_cmdline_panel_orientation [00:21:08] ================ drm_test_cmdline_invalid ================= [00:21:08] [PASSED] margin_only [00:21:08] [PASSED] interlace_only [00:21:08] [PASSED] res_missing_x [00:21:08] [PASSED] res_missing_y [00:21:08] [PASSED] res_bad_y [00:21:08] [PASSED] res_missing_y_bpp [00:21:08] [PASSED] res_bad_bpp [00:21:08] [PASSED] res_bad_refresh [00:21:08] [PASSED] res_bpp_refresh_force_on_off [00:21:08] [PASSED] res_invalid_mode [00:21:08] [PASSED] res_bpp_wrong_place_mode [00:21:08] [PASSED] name_bpp_refresh [00:21:08] [PASSED] name_refresh [00:21:08] [PASSED] name_refresh_wrong_mode [00:21:08] [PASSED] name_refresh_invalid_mode [00:21:08] [PASSED] rotate_multiple [00:21:08] [PASSED] rotate_invalid_val [00:21:08] [PASSED] rotate_truncated [00:21:08] [PASSED] invalid_option [00:21:08] [PASSED] invalid_tv_option [00:21:08] [PASSED] truncated_tv_option [00:21:08] ============ [PASSED] drm_test_cmdline_invalid ============= [00:21:08] =============== drm_test_cmdline_tv_options =============== [00:21:08] [PASSED] NTSC [00:21:08] [PASSED] NTSC_443 [00:21:08] [PASSED] NTSC_J [00:21:08] [PASSED] PAL [00:21:08] [PASSED] PAL_M [00:21:08] [PASSED] PAL_N [00:21:08] [PASSED] SECAM [00:21:08] [PASSED] MONO_525 [00:21:08] [PASSED] MONO_625 [00:21:08] =========== [PASSED] drm_test_cmdline_tv_options =========== [00:21:08] =============== [PASSED] drm_cmdline_parser ================ [00:21:08] ========== drmm_connector_hdmi_init (20 subtests) ========== [00:21:08] [PASSED] drm_test_connector_hdmi_init_valid [00:21:08] [PASSED] drm_test_connector_hdmi_init_bpc_8 [00:21:08] [PASSED] drm_test_connector_hdmi_init_bpc_10 [00:21:08] [PASSED] drm_test_connector_hdmi_init_bpc_12 [00:21:08] [PASSED] drm_test_connector_hdmi_init_bpc_invalid [00:21:08] [PASSED] drm_test_connector_hdmi_init_bpc_null [00:21:08] [PASSED] drm_test_connector_hdmi_init_formats_empty [00:21:08] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb [00:21:08] === drm_test_connector_hdmi_init_formats_yuv420_allowed === [00:21:08] [PASSED] supported_formats=0x9 yuv420_allowed=1 [00:21:08] [PASSED] supported_formats=0x9 yuv420_allowed=0 [00:21:08] [PASSED] supported_formats=0x5 yuv420_allowed=1 [00:21:08] [PASSED] supported_formats=0x5 yuv420_allowed=0 [00:21:08] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed === [00:21:08] [PASSED] drm_test_connector_hdmi_init_null_ddc [00:21:08] [PASSED] drm_test_connector_hdmi_init_null_product [00:21:08] [PASSED] drm_test_connector_hdmi_init_null_vendor [00:21:08] [PASSED] drm_test_connector_hdmi_init_product_length_exact [00:21:08] [PASSED] drm_test_connector_hdmi_init_product_length_too_long [00:21:08] [PASSED] drm_test_connector_hdmi_init_product_valid [00:21:08] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact [00:21:08] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long [00:21:08] [PASSED] drm_test_connector_hdmi_init_vendor_valid [00:21:08] ========= drm_test_connector_hdmi_init_type_valid ========= [00:21:08] [PASSED] HDMI-A [00:21:08] [PASSED] HDMI-B [00:21:08] ===== [PASSED] drm_test_connector_hdmi_init_type_valid ===== [00:21:08] ======== drm_test_connector_hdmi_init_type_invalid ======== [00:21:08] [PASSED] Unknown [00:21:08] [PASSED] VGA [00:21:08] [PASSED] DVI-I [00:21:08] [PASSED] DVI-D [00:21:08] [PASSED] DVI-A [00:21:08] [PASSED] Composite [00:21:08] [PASSED] SVIDEO [00:21:08] [PASSED] LVDS [00:21:08] [PASSED] Component [00:21:08] [PASSED] DIN [00:21:08] [PASSED] DP [00:21:08] [PASSED] TV [00:21:08] [PASSED] eDP [00:21:08] [PASSED] Virtual [00:21:08] [PASSED] DSI [00:21:08] [PASSED] DPI [00:21:08] [PASSED] Writeback [00:21:08] [PASSED] SPI [00:21:08] [PASSED] USB [00:21:08] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ==== [00:21:08] ============ [PASSED] drmm_connector_hdmi_init ============= [00:21:08] ============= drmm_connector_init (3 subtests) ============= [00:21:08] [PASSED] drm_test_drmm_connector_init [00:21:08] [PASSED] drm_test_drmm_connector_init_null_ddc [00:21:08] ========= drm_test_drmm_connector_init_type_valid ========= [00:21:08] [PASSED] Unknown [00:21:08] [PASSED] VGA [00:21:08] [PASSED] DVI-I [00:21:08] [PASSED] DVI-D [00:21:08] [PASSED] DVI-A [00:21:08] [PASSED] Composite [00:21:08] [PASSED] SVIDEO [00:21:08] [PASSED] LVDS [00:21:08] [PASSED] Component [00:21:08] [PASSED] DIN [00:21:08] [PASSED] DP [00:21:08] [PASSED] HDMI-A [00:21:08] [PASSED] HDMI-B [00:21:08] [PASSED] TV [00:21:08] [PASSED] eDP [00:21:08] [PASSED] Virtual [00:21:08] [PASSED] DSI [00:21:08] [PASSED] DPI [00:21:08] [PASSED] Writeback [00:21:08] [PASSED] SPI [00:21:08] [PASSED] USB [00:21:08] ===== [PASSED] drm_test_drmm_connector_init_type_valid ===== [00:21:08] =============== [PASSED] drmm_connector_init =============== [00:21:08] ========= drm_connector_dynamic_init (6 subtests) ========== [00:21:08] [PASSED] drm_test_drm_connector_dynamic_init [00:21:08] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc [00:21:08] [PASSED] drm_test_drm_connector_dynamic_init_not_added [00:21:08] [PASSED] drm_test_drm_connector_dynamic_init_properties [00:21:08] ===== drm_test_drm_connector_dynamic_init_type_valid ====== [00:21:08] [PASSED] Unknown [00:21:08] [PASSED] VGA [00:21:08] [PASSED] DVI-I [00:21:08] [PASSED] DVI-D [00:21:08] [PASSED] DVI-A [00:21:08] [PASSED] Composite [00:21:08] [PASSED] SVIDEO [00:21:08] [PASSED] LVDS [00:21:08] [PASSED] Component [00:21:08] [PASSED] DIN [00:21:08] [PASSED] DP [00:21:08] [PASSED] HDMI-A [00:21:08] [PASSED] HDMI-B [00:21:08] [PASSED] TV [00:21:08] [PASSED] eDP [00:21:08] [PASSED] Virtual [00:21:08] [PASSED] DSI [00:21:08] [PASSED] DPI [00:21:08] [PASSED] Writeback [00:21:08] [PASSED] SPI [00:21:08] [PASSED] USB [00:21:08] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid == [00:21:08] ======== drm_test_drm_connector_dynamic_init_name ========= [00:21:08] [PASSED] Unknown [00:21:08] [PASSED] VGA [00:21:08] [PASSED] DVI-I [00:21:08] [PASSED] DVI-D [00:21:08] [PASSED] DVI-A [00:21:08] [PASSED] Composite [00:21:08] [PASSED] SVIDEO [00:21:08] [PASSED] LVDS [00:21:08] [PASSED] Component [00:21:08] [PASSED] DIN [00:21:08] [PASSED] DP [00:21:08] [PASSED] HDMI-A [00:21:08] [PASSED] HDMI-B [00:21:08] [PASSED] TV [00:21:08] [PASSED] eDP [00:21:08] [PASSED] Virtual [00:21:08] [PASSED] DSI [00:21:08] [PASSED] DPI [00:21:08] [PASSED] Writeback [00:21:08] [PASSED] SPI [00:21:08] [PASSED] USB [00:21:08] ==== [PASSED] drm_test_drm_connector_dynamic_init_name ===== [00:21:08] =========== [PASSED] drm_connector_dynamic_init ============ [00:21:08] ==== drm_connector_dynamic_register_early (4 subtests) ===== [00:21:08] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list [00:21:08] [PASSED] drm_test_drm_connector_dynamic_register_early_defer [00:21:08] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init [00:21:08] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object [00:21:08] ====== [PASSED] drm_connector_dynamic_register_early ======= [00:21:08] ======= drm_connector_dynamic_register (7 subtests) ======== [00:21:08] [PASSED] drm_test_drm_connector_dynamic_register_on_list [00:21:08] [PASSED] drm_test_drm_connector_dynamic_register_no_defer [00:21:08] [PASSED] drm_test_drm_connector_dynamic_register_no_init [00:21:08] [PASSED] drm_test_drm_connector_dynamic_register_mode_object [00:21:08] [PASSED] drm_test_drm_connector_dynamic_register_sysfs [00:21:08] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name [00:21:08] [PASSED] drm_test_drm_connector_dynamic_register_debugfs [00:21:08] ========= [PASSED] drm_connector_dynamic_register ========== [00:21:08] = drm_connector_attach_broadcast_rgb_property (2 subtests) = [00:21:08] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property [00:21:08] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector [00:21:08] === [PASSED] drm_connector_attach_broadcast_rgb_property === [00:21:08] ========== drm_get_tv_mode_from_name (2 subtests) ========== [00:21:08] ========== drm_test_get_tv_mode_from_name_valid =========== [00:21:08] [PASSED] NTSC [00:21:08] [PASSED] NTSC-443 [00:21:08] [PASSED] NTSC-J [00:21:08] [PASSED] PAL [00:21:08] [PASSED] PAL-M [00:21:08] [PASSED] PAL-N [00:21:08] [PASSED] SECAM [00:21:08] [PASSED] Mono [00:21:08] ====== [PASSED] drm_test_get_tv_mode_from_name_valid ======= [00:21:08] [PASSED] drm_test_get_tv_mode_from_name_truncated [00:21:08] ============ [PASSED] drm_get_tv_mode_from_name ============ [00:21:08] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) = [00:21:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb [00:21:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc [00:21:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1 [00:21:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc [00:21:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1 [00:21:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double [00:21:08] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid = [00:21:08] [PASSED] VIC 96 [00:21:08] [PASSED] VIC 97 [00:21:08] [PASSED] VIC 101 [00:21:08] [PASSED] VIC 102 [00:21:08] [PASSED] VIC 106 [00:21:08] [PASSED] VIC 107 [00:21:08] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid === [00:21:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc [00:21:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc [00:21:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc [00:21:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc [00:21:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc [00:21:08] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ==== [00:21:08] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) == [00:21:08] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ==== [00:21:08] [PASSED] Automatic [00:21:08] [PASSED] Full [00:21:08] [PASSED] Limited 16:235 [00:21:08] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name === [00:21:08] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid [00:21:08] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ==== [00:21:08] == drm_hdmi_connector_get_output_format_name (2 subtests) == [00:21:08] === drm_test_drm_hdmi_connector_get_output_format_name ==== [00:21:08] [PASSED] RGB [00:21:08] [PASSED] YUV 4:2:0 [00:21:08] [PASSED] YUV 4:2:2 [00:21:08] [PASSED] YUV 4:4:4 [00:21:08] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name === [00:21:08] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid [00:21:08] ==== [PASSED] drm_hdmi_connector_get_output_format_name ==== [00:21:08] ============= drm_damage_helper (21 subtests) ============== [00:21:08] [PASSED] drm_test_damage_iter_no_damage [00:21:08] [PASSED] drm_test_damage_iter_no_damage_fractional_src [00:21:08] [PASSED] drm_test_damage_iter_no_damage_src_moved [00:21:08] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved [00:21:08] [PASSED] drm_test_damage_iter_no_damage_not_visible [00:21:08] [PASSED] drm_test_damage_iter_no_damage_no_crtc [00:21:08] [PASSED] drm_test_damage_iter_no_damage_no_fb [00:21:08] [PASSED] drm_test_damage_iter_simple_damage [00:21:08] [PASSED] drm_test_damage_iter_single_damage [00:21:08] [PASSED] drm_test_damage_iter_single_damage_intersect_src [00:21:08] [PASSED] drm_test_damage_iter_single_damage_outside_src [00:21:08] [PASSED] drm_test_damage_iter_single_damage_fractional_src [00:21:08] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src [00:21:08] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src [00:21:08] [PASSED] drm_test_damage_iter_single_damage_src_moved [00:21:08] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved [00:21:08] [PASSED] drm_test_damage_iter_damage [00:21:08] [PASSED] drm_test_damage_iter_damage_one_intersect [00:21:08] [PASSED] drm_test_damage_iter_damage_one_outside [00:21:08] [PASSED] drm_test_damage_iter_damage_src_moved [00:21:08] [PASSED] drm_test_damage_iter_damage_not_visible [00:21:08] ================ [PASSED] drm_damage_helper ================ [00:21:08] ============== drm_dp_mst_helper (3 subtests) ============== [00:21:08] ============== drm_test_dp_mst_calc_pbn_mode ============== [00:21:08] [PASSED] Clock 154000 BPP 30 DSC disabled [00:21:08] [PASSED] Clock 234000 BPP 30 DSC disabled [00:21:08] [PASSED] Clock 297000 BPP 24 DSC disabled [00:21:08] [PASSED] Clock 332880 BPP 24 DSC enabled [00:21:08] [PASSED] Clock 324540 BPP 24 DSC enabled [00:21:08] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ========== [00:21:08] ============== drm_test_dp_mst_calc_pbn_div =============== [00:21:08] [PASSED] Link rate 2000000 lane count 4 [00:21:08] [PASSED] Link rate 2000000 lane count 2 [00:21:08] [PASSED] Link rate 2000000 lane count 1 [00:21:08] [PASSED] Link rate 1350000 lane count 4 [00:21:08] [PASSED] Link rate 1350000 lane count 2 [00:21:08] [PASSED] Link rate 1350000 lane count 1 [00:21:08] [PASSED] Link rate 1000000 lane count 4 [00:21:08] [PASSED] Link rate 1000000 lane count 2 [00:21:08] [PASSED] Link rate 1000000 lane count 1 [00:21:08] [PASSED] Link rate 810000 lane count 4 [00:21:08] [PASSED] Link rate 810000 lane count 2 [00:21:08] [PASSED] Link rate 810000 lane count 1 [00:21:08] [PASSED] Link rate 540000 lane count 4 [00:21:08] [PASSED] Link rate 540000 lane count 2 [00:21:08] [PASSED] Link rate 540000 lane count 1 [00:21:08] [PASSED] Link rate 270000 lane count 4 [00:21:08] [PASSED] Link rate 270000 lane count 2 [00:21:08] [PASSED] Link rate 270000 lane count 1 [00:21:08] [PASSED] Link rate 162000 lane count 4 [00:21:08] [PASSED] Link rate 162000 lane count 2 [00:21:08] [PASSED] Link rate 162000 lane count 1 [00:21:08] ========== [PASSED] drm_test_dp_mst_calc_pbn_div =========== [00:21:08] ========= drm_test_dp_mst_sideband_msg_req_decode ========= [00:21:08] [PASSED] DP_ENUM_PATH_RESOURCES with port number [00:21:08] [PASSED] DP_POWER_UP_PHY with port number [00:21:08] [PASSED] DP_POWER_DOWN_PHY with port number [00:21:08] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks [00:21:08] [PASSED] DP_ALLOCATE_PAYLOAD with port number [00:21:08] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI [00:21:08] [PASSED] DP_ALLOCATE_PAYLOAD with PBN [00:21:08] [PASSED] DP_QUERY_PAYLOAD with port number [00:21:08] [PASSED] DP_QUERY_PAYLOAD with VCPI [00:21:08] [PASSED] DP_REMOTE_DPCD_READ with port number [00:21:08] [PASSED] DP_REMOTE_DPCD_READ with DPCD address [00:21:08] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes [00:21:08] [PASSED] DP_REMOTE_DPCD_WRITE with port number [00:21:08] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address [00:21:08] [PASSED] DP_REMOTE_DPCD_WRITE with data array [00:21:08] [PASSED] DP_REMOTE_I2C_READ with port number [00:21:08] [PASSED] DP_REMOTE_I2C_READ with I2C device ID [00:21:08] [PASSED] DP_REMOTE_I2C_READ with transactions array [00:21:08] [PASSED] DP_REMOTE_I2C_WRITE with port number [00:21:08] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID [00:21:08] [PASSED] DP_REMOTE_I2C_WRITE with data array [00:21:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID [00:21:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID [00:21:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event [00:21:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event [00:21:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior [00:21:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior [00:21:08] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode ===== [00:21:08] ================ [PASSED] drm_dp_mst_helper ================ [00:21:08] ================== drm_exec (7 subtests) =================== [00:21:08] [PASSED] sanitycheck [00:21:08] [PASSED] test_lock [00:21:08] [PASSED] test_lock_unlock [00:21:08] [PASSED] test_duplicates [00:21:08] [PASSED] test_prepare [00:21:08] [PASSED] test_prepare_array [00:21:08] [PASSED] test_multiple_loops [00:21:08] ==================== [PASSED] drm_exec ===================== [00:21:08] =========== drm_format_helper_test (17 subtests) =========== [00:21:08] ============== drm_test_fb_xrgb8888_to_gray8 ============== [00:21:08] [PASSED] single_pixel_source_buffer [00:21:08] [PASSED] single_pixel_clip_rectangle [00:21:08] [PASSED] well_known_colors [00:21:08] [PASSED] destination_pitch [00:21:08] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ========== [00:21:08] ============= drm_test_fb_xrgb8888_to_rgb332 ============== [00:21:08] [PASSED] single_pixel_source_buffer [00:21:08] [PASSED] single_pixel_clip_rectangle [00:21:08] [PASSED] well_known_colors [00:21:08] [PASSED] destination_pitch [00:21:08] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ========== [00:21:08] ============= drm_test_fb_xrgb8888_to_rgb565 ============== [00:21:08] [PASSED] single_pixel_source_buffer [00:21:08] [PASSED] single_pixel_clip_rectangle [00:21:08] [PASSED] well_known_colors [00:21:08] [PASSED] destination_pitch [00:21:08] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ========== [00:21:08] ============ drm_test_fb_xrgb8888_to_xrgb1555 ============= [00:21:08] [PASSED] single_pixel_source_buffer [00:21:08] [PASSED] single_pixel_clip_rectangle [00:21:08] [PASSED] well_known_colors [00:21:08] [PASSED] destination_pitch [00:21:08] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 ========= [00:21:08] ============ drm_test_fb_xrgb8888_to_argb1555 ============= [00:21:08] [PASSED] single_pixel_source_buffer [00:21:08] [PASSED] single_pixel_clip_rectangle [00:21:08] [PASSED] well_known_colors [00:21:08] [PASSED] destination_pitch [00:21:08] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 ========= [00:21:08] ============ drm_test_fb_xrgb8888_to_rgba5551 ============= [00:21:08] [PASSED] single_pixel_source_buffer [00:21:08] [PASSED] single_pixel_clip_rectangle [00:21:08] [PASSED] well_known_colors [00:21:08] [PASSED] destination_pitch [00:21:08] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 ========= [00:21:08] ============= drm_test_fb_xrgb8888_to_rgb888 ============== [00:21:08] [PASSED] single_pixel_source_buffer [00:21:08] [PASSED] single_pixel_clip_rectangle [00:21:08] [PASSED] well_known_colors [00:21:08] [PASSED] destination_pitch [00:21:08] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ========== [00:21:08] ============= drm_test_fb_xrgb8888_to_bgr888 ============== [00:21:08] [PASSED] single_pixel_source_buffer [00:21:08] [PASSED] single_pixel_clip_rectangle [00:21:08] [PASSED] well_known_colors [00:21:08] [PASSED] destination_pitch [00:21:08] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ========== [00:21:08] ============ drm_test_fb_xrgb8888_to_argb8888 ============= [00:21:08] [PASSED] single_pixel_source_buffer [00:21:08] [PASSED] single_pixel_clip_rectangle [00:21:08] [PASSED] well_known_colors [00:21:08] [PASSED] destination_pitch [00:21:08] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 ========= [00:21:08] =========== drm_test_fb_xrgb8888_to_xrgb2101010 =========== [00:21:08] [PASSED] single_pixel_source_buffer [00:21:08] [PASSED] single_pixel_clip_rectangle [00:21:08] [PASSED] well_known_colors [00:21:08] [PASSED] destination_pitch [00:21:08] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 ======= [00:21:08] =========== drm_test_fb_xrgb8888_to_argb2101010 =========== [00:21:08] [PASSED] single_pixel_source_buffer [00:21:08] [PASSED] single_pixel_clip_rectangle [00:21:08] [PASSED] well_known_colors [00:21:08] [PASSED] destination_pitch [00:21:08] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 ======= [00:21:08] ============== drm_test_fb_xrgb8888_to_mono =============== [00:21:08] [PASSED] single_pixel_source_buffer [00:21:08] [PASSED] single_pixel_clip_rectangle [00:21:08] [PASSED] well_known_colors [00:21:08] [PASSED] destination_pitch [00:21:08] ========== [PASSED] drm_test_fb_xrgb8888_to_mono =========== [00:21:08] ==================== drm_test_fb_swab ===================== [00:21:08] [PASSED] single_pixel_source_buffer [00:21:08] [PASSED] single_pixel_clip_rectangle [00:21:08] [PASSED] well_known_colors [00:21:08] [PASSED] destination_pitch [00:21:08] ================ [PASSED] drm_test_fb_swab ================= [00:21:08] ============ drm_test_fb_xrgb8888_to_xbgr8888 ============= [00:21:08] [PASSED] single_pixel_source_buffer [00:21:08] [PASSED] single_pixel_clip_rectangle [00:21:08] [PASSED] well_known_colors [00:21:08] [PASSED] destination_pitch [00:21:08] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 ========= [00:21:08] ============ drm_test_fb_xrgb8888_to_abgr8888 ============= [00:21:08] [PASSED] single_pixel_source_buffer [00:21:08] [PASSED] single_pixel_clip_rectangle [00:21:08] [PASSED] well_known_colors [00:21:08] [PASSED] destination_pitch [00:21:08] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 ========= [00:21:08] ================= drm_test_fb_clip_offset ================= [00:21:08] [PASSED] pass through [00:21:08] [PASSED] horizontal offset [00:21:08] [PASSED] vertical offset [00:21:08] [PASSED] horizontal and vertical offset [00:21:08] [PASSED] horizontal offset (custom pitch) [00:21:08] [PASSED] vertical offset (custom pitch) [00:21:08] [PASSED] horizontal and vertical offset (custom pitch) [00:21:08] ============= [PASSED] drm_test_fb_clip_offset ============= [00:21:08] =================== drm_test_fb_memcpy ==================== [00:21:08] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258) [00:21:08] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258) [00:21:08] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559) [00:21:08] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258) [00:21:08] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258) [00:21:08] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559) [00:21:08] [PASSED] well_known_colors: XB24 little-endian (0x34324258) [00:21:08] [PASSED] well_known_colors: XRA8 little-endian (0x38415258) [00:21:08] [PASSED] well_known_colors: YU24 little-endian (0x34325559) [00:21:08] [PASSED] destination_pitch: XB24 little-endian (0x34324258) [00:21:08] [PASSED] destination_pitch: XRA8 little-endian (0x38415258) [00:21:08] [PASSED] destination_pitch: YU24 little-endian (0x34325559) [00:21:08] =============== [PASSED] drm_test_fb_memcpy ================ [00:21:08] ============= [PASSED] drm_format_helper_test ============== [00:21:08] ================= drm_format (18 subtests) ================= [00:21:08] [PASSED] drm_test_format_block_width_invalid [00:21:08] [PASSED] drm_test_format_block_width_one_plane [00:21:08] [PASSED] drm_test_format_block_width_two_plane [00:21:08] [PASSED] drm_test_format_block_width_three_plane [00:21:08] [PASSED] drm_test_format_block_width_tiled [00:21:08] [PASSED] drm_test_format_block_height_invalid [00:21:08] [PASSED] drm_test_format_block_height_one_plane [00:21:08] [PASSED] drm_test_format_block_height_two_plane [00:21:08] [PASSED] drm_test_format_block_height_three_plane [00:21:08] [PASSED] drm_test_format_block_height_tiled [00:21:08] [PASSED] drm_test_format_min_pitch_invalid [00:21:08] [PASSED] drm_test_format_min_pitch_one_plane_8bpp [00:21:08] [PASSED] drm_test_format_min_pitch_one_plane_16bpp [00:21:08] [PASSED] drm_test_format_min_pitch_one_plane_24bpp [00:21:08] [PASSED] drm_test_format_min_pitch_one_plane_32bpp [00:21:08] [PASSED] drm_test_format_min_pitch_two_plane [00:21:08] [PASSED] drm_test_format_min_pitch_three_plane_8bpp [00:21:08] [PASSED] drm_test_format_min_pitch_tiled [00:21:08] =================== [PASSED] drm_format ==================== [00:21:08] ============== drm_framebuffer (10 subtests) =============== [00:21:08] ========== drm_test_framebuffer_check_src_coords ========== [00:21:08] [PASSED] Success: source fits into fb [00:21:08] [PASSED] Fail: overflowing fb with x-axis coordinate [00:21:08] [PASSED] Fail: overflowing fb with y-axis coordinate [00:21:08] [PASSED] Fail: overflowing fb with source width [00:21:08] [PASSED] Fail: overflowing fb with source height [00:21:08] ====== [PASSED] drm_test_framebuffer_check_src_coords ====== [00:21:08] [PASSED] drm_test_framebuffer_cleanup [00:21:08] =============== drm_test_framebuffer_create =============== [00:21:08] [PASSED] ABGR8888 normal sizes [00:21:08] [PASSED] ABGR8888 max sizes [00:21:08] [PASSED] ABGR8888 pitch greater than min required [00:21:08] [PASSED] ABGR8888 pitch less than min required [00:21:08] [PASSED] ABGR8888 Invalid width [00:21:08] [PASSED] ABGR8888 Invalid buffer handle [00:21:08] [PASSED] No pixel format [00:21:08] [PASSED] ABGR8888 Width 0 [00:21:08] [PASSED] ABGR8888 Height 0 [00:21:08] [PASSED] ABGR8888 Out of bound height * pitch combination [00:21:08] [PASSED] ABGR8888 Large buffer offset [00:21:08] [PASSED] ABGR8888 Buffer offset for inexistent plane [00:21:08] [PASSED] ABGR8888 Invalid flag [00:21:08] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers [00:21:08] [PASSED] ABGR8888 Valid buffer modifier [00:21:08] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE) [00:21:08] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS [00:21:08] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS [00:21:08] [PASSED] NV12 Normal sizes [00:21:08] [PASSED] NV12 Max sizes [00:21:08] [PASSED] NV12 Invalid pitch [00:21:08] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag [00:21:08] [PASSED] NV12 different modifier per-plane [00:21:08] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE [00:21:08] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS [00:21:08] [PASSED] NV12 Modifier for inexistent plane [00:21:08] [PASSED] NV12 Handle for inexistent plane [00:21:08] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS [00:21:08] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier [00:21:08] [PASSED] YVU420 Normal sizes [00:21:08] [PASSED] YVU420 Max sizes [00:21:08] [PASSED] YVU420 Invalid pitch [00:21:08] [PASSED] YVU420 Different pitches [00:21:08] [PASSED] YVU420 Different buffer offsets/pitches [00:21:08] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS [00:21:08] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS [00:21:08] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS [00:21:08] [PASSED] YVU420 Valid modifier [00:21:08] [PASSED] YVU420 Different modifiers per plane [00:21:08] [PASSED] YVU420 Modifier for inexistent plane [00:21:08] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR) [00:21:08] [PASSED] X0L2 Normal sizes [00:21:08] [PASSED] X0L2 Max sizes [00:21:08] [PASSED] X0L2 Invalid pitch [00:21:08] [PASSED] X0L2 Pitch greater than minimum required [00:21:08] [PASSED] X0L2 Handle for inexistent plane [00:21:08] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set [00:21:08] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set [00:21:08] [PASSED] X0L2 Valid modifier [00:21:08] [PASSED] X0L2 Modifier for inexistent plane [00:21:08] =========== [PASSED] drm_test_framebuffer_create =========== [00:21:08] [PASSED] drm_test_framebuffer_free [00:21:08] [PASSED] drm_test_framebuffer_init [00:21:08] [PASSED] drm_test_framebuffer_init_bad_format [00:21:08] [PASSED] drm_test_framebuffer_init_dev_mismatch [00:21:08] [PASSED] drm_test_framebuffer_lookup [00:21:08] [PASSED] drm_test_framebuffer_lookup_inexistent [00:21:08] [PASSED] drm_test_framebuffer_modifiers_not_supported [00:21:08] ================= [PASSED] drm_framebuffer ================= [00:21:08] ================ drm_gem_shmem (8 subtests) ================ [00:21:08] [PASSED] drm_gem_shmem_test_obj_create [00:21:08] [PASSED] drm_gem_shmem_test_obj_create_private [00:21:08] [PASSED] drm_gem_shmem_test_pin_pages [00:21:08] [PASSED] drm_gem_shmem_test_vmap [00:21:08] [PASSED] drm_gem_shmem_test_get_sg_table [00:21:08] [PASSED] drm_gem_shmem_test_get_pages_sgt [00:21:08] [PASSED] drm_gem_shmem_test_madvise [00:21:08] [PASSED] drm_gem_shmem_test_purge [00:21:08] ================== [PASSED] drm_gem_shmem ================== [00:21:08] === drm_atomic_helper_connector_hdmi_check (27 subtests) === [00:21:08] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode [00:21:08] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1 [00:21:08] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode [00:21:08] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1 [00:21:08] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode [00:21:08] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1 [00:21:08] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 ======= [00:21:08] [PASSED] Automatic [00:21:08] [PASSED] Full [00:21:08] [PASSED] Limited 16:235 [00:21:08] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 === [00:21:08] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed [00:21:08] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed [00:21:08] [PASSED] drm_test_check_disable_connector [00:21:08] [PASSED] drm_test_check_hdmi_funcs_reject_rate [00:21:08] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb [00:21:08] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420 [00:21:08] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422 [00:21:08] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420 [00:21:08] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420 [00:21:08] [PASSED] drm_test_check_output_bpc_crtc_mode_changed [00:21:08] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed [00:21:08] [PASSED] drm_test_check_output_bpc_dvi [00:21:08] [PASSED] drm_test_check_output_bpc_format_vic_1 [00:21:08] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only [00:21:08] [PASSED] drm_test_check_output_bpc_format_display_rgb_only [00:21:08] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only [00:21:08] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only [00:21:08] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc [00:21:08] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc [00:21:08] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc [00:21:08] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ====== [00:21:08] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ==== [00:21:08] [PASSED] drm_test_check_broadcast_rgb_value [00:21:08] [PASSED] drm_test_check_bpc_8_value [00:21:08] [PASSED] drm_test_check_bpc_10_value [00:21:08] [PASSED] drm_test_check_bpc_12_value [00:21:08] [PASSED] drm_test_check_format_value [00:21:08] [PASSED] drm_test_check_tmds_char_value [00:21:08] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ====== [00:21:08] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) = [00:21:08] [PASSED] drm_test_check_mode_valid [00:21:08] [PASSED] drm_test_check_mode_valid_reject [00:21:08] [PASSED] drm_test_check_mode_valid_reject_rate [00:21:08] [PASSED] drm_test_check_mode_valid_reject_max_clock [00:21:08] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid === [00:21:08] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) = [00:21:08] [PASSED] drm_test_check_infoframes [00:21:08] [PASSED] drm_test_check_reject_avi_infoframe [00:21:08] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8 [00:21:08] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10 [00:21:08] [PASSED] drm_test_check_reject_audio_infoframe [00:21:08] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes === [00:21:08] ================= drm_managed (2 subtests) ================= [00:21:08] [PASSED] drm_test_managed_release_action [00:21:08] [PASSED] drm_test_managed_run_action [00:21:08] =================== [PASSED] drm_managed =================== [00:21:08] =================== drm_mm (6 subtests) ==================== [00:21:08] [PASSED] drm_test_mm_init [00:21:08] [PASSED] drm_test_mm_debug [00:21:08] [PASSED] drm_test_mm_align32 [00:21:08] [PASSED] drm_test_mm_align64 [00:21:08] [PASSED] drm_test_mm_lowest [00:21:08] [PASSED] drm_test_mm_highest [00:21:08] ===================== [PASSED] drm_mm ====================== [00:21:08] ============= drm_modes_analog_tv (5 subtests) ============= [00:21:08] [PASSED] drm_test_modes_analog_tv_mono_576i [00:21:08] [PASSED] drm_test_modes_analog_tv_ntsc_480i [00:21:08] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined [00:21:08] [PASSED] drm_test_modes_analog_tv_pal_576i [00:21:08] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined [00:21:08] =============== [PASSED] drm_modes_analog_tv =============== [00:21:08] ============== drm_plane_helper (2 subtests) =============== [00:21:08] =============== drm_test_check_plane_state ================ [00:21:08] [PASSED] clipping_simple [00:21:08] [PASSED] clipping_rotate_reflect [00:21:08] [PASSED] positioning_simple [00:21:08] [PASSED] upscaling [00:21:08] [PASSED] downscaling [00:21:08] [PASSED] rounding1 [00:21:08] [PASSED] rounding2 [00:21:08] [PASSED] rounding3 [00:21:08] [PASSED] rounding4 [00:21:08] =========== [PASSED] drm_test_check_plane_state ============ [00:21:08] =========== drm_test_check_invalid_plane_state ============ [00:21:08] [PASSED] positioning_invalid [00:21:08] [PASSED] upscaling_invalid [00:21:08] [PASSED] downscaling_invalid [00:21:08] ======= [PASSED] drm_test_check_invalid_plane_state ======== [00:21:08] ================ [PASSED] drm_plane_helper ================= [00:21:08] ====== drm_connector_helper_tv_get_modes (1 subtest) ======= [00:21:08] ====== drm_test_connector_helper_tv_get_modes_check ======= [00:21:08] [PASSED] None [00:21:08] [PASSED] PAL [00:21:08] [PASSED] NTSC [00:21:08] [PASSED] Both, NTSC Default [00:21:08] [PASSED] Both, PAL Default [00:21:08] [PASSED] Both, NTSC Default, with PAL on command-line [00:21:08] [PASSED] Both, PAL Default, with NTSC on command-line [00:21:08] == [PASSED] drm_test_connector_helper_tv_get_modes_check === [00:21:08] ======== [PASSED] drm_connector_helper_tv_get_modes ======== [00:21:08] ================== drm_rect (9 subtests) =================== [00:21:08] [PASSED] drm_test_rect_clip_scaled_div_by_zero [00:21:08] [PASSED] drm_test_rect_clip_scaled_not_clipped [00:21:08] [PASSED] drm_test_rect_clip_scaled_clipped [00:21:08] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned [00:21:08] ================= drm_test_rect_intersect ================= [00:21:08] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0 [00:21:08] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1 [00:21:08] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0 [00:21:08] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1 [00:21:08] [PASSED] right x left: 2x1+0+0 x 3x1+1+0 [00:21:08] [PASSED] left x right: 3x1+1+0 x 2x1+0+0 [00:21:08] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1 [00:21:08] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0 [00:21:08] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1 [00:21:08] [PASSED] touching side: 1x1+0+0 x 1x1+1+0 [00:21:08] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0 [00:21:08] [PASSED] inside another: 2x2+0+0 x 1x1+1+1 [00:21:08] [PASSED] far away: 1x1+0+0 x 1x1+3+6 [00:21:08] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10 [00:21:08] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10 [00:21:08] ============= [PASSED] drm_test_rect_intersect ============= [00:21:08] ================ drm_test_rect_calc_hscale ================ [00:21:08] [PASSED] normal use [00:21:08] [PASSED] out of max range [00:21:08] [PASSED] out of min range [00:21:08] [PASSED] zero dst [00:21:08] [PASSED] negative src [00:21:08] [PASSED] negative dst [00:21:08] ============ [PASSED] drm_test_rect_calc_hscale ============ [00:21:08] ================ drm_test_rect_calc_vscale ================ [00:21:08] [PASSED] normal use [00:21:08] [PASSED] out of max range [00:21:08] [PASSED] out of min range [00:21:08] [PASSED] zero dst [00:21:08] [PASSED] negative src [00:21:08] [PASSED] negative dst stty: 'standard input': Inappropriate ioctl for device [00:21:08] ============ [PASSED] drm_test_rect_calc_vscale ============ [00:21:08] ================== drm_test_rect_rotate =================== [00:21:08] [PASSED] reflect-x [00:21:08] [PASSED] reflect-y [00:21:08] [PASSED] rotate-0 [00:21:08] [PASSED] rotate-90 [00:21:08] [PASSED] rotate-180 [00:21:08] [PASSED] rotate-270 [00:21:08] ============== [PASSED] drm_test_rect_rotate =============== [00:21:08] ================ drm_test_rect_rotate_inv ================= [00:21:08] [PASSED] reflect-x [00:21:08] [PASSED] reflect-y [00:21:08] [PASSED] rotate-0 [00:21:08] [PASSED] rotate-90 [00:21:08] [PASSED] rotate-180 [00:21:08] [PASSED] rotate-270 [00:21:08] ============ [PASSED] drm_test_rect_rotate_inv ============= [00:21:08] ==================== [PASSED] drm_rect ===================== [00:21:08] ============ drm_sysfb_modeset_test (1 subtest) ============ [00:21:08] ============ drm_test_sysfb_build_fourcc_list ============= [00:21:08] [PASSED] no native formats [00:21:08] [PASSED] XRGB8888 as native format [00:21:08] [PASSED] remove duplicates [00:21:08] [PASSED] convert alpha formats [00:21:08] [PASSED] random formats [00:21:08] ======== [PASSED] drm_test_sysfb_build_fourcc_list ========= [00:21:08] ============= [PASSED] drm_sysfb_modeset_test ============== [00:21:08] ================== drm_fixp (2 subtests) =================== [00:21:08] [PASSED] drm_test_int2fixp [00:21:08] [PASSED] drm_test_sm2fixp [00:21:08] ==================== [PASSED] drm_fixp ===================== [00:21:08] ============================================================ [00:21:08] Testing complete. Ran 621 tests: passed: 621 [00:21:08] Elapsed time: 25.957s total, 1.761s configuring, 24.028s building, 0.165s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig [00:21:08] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [00:21:09] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48 [00:21:19] Starting KUnit Kernel (1/1)... [00:21:19] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [00:21:19] ================= ttm_device (5 subtests) ================== [00:21:19] [PASSED] ttm_device_init_basic [00:21:19] [PASSED] ttm_device_init_multiple [00:21:19] [PASSED] ttm_device_fini_basic [00:21:19] [PASSED] ttm_device_init_no_vma_man [00:21:19] ================== ttm_device_init_pools ================== [00:21:19] [PASSED] No DMA allocations, no DMA32 required [00:21:19] [PASSED] DMA allocations, DMA32 required [00:21:19] [PASSED] No DMA allocations, DMA32 required [00:21:19] [PASSED] DMA allocations, no DMA32 required [00:21:19] ============== [PASSED] ttm_device_init_pools ============== [00:21:19] =================== [PASSED] ttm_device ==================== [00:21:19] ================== ttm_pool (8 subtests) =================== [00:21:19] ================== ttm_pool_alloc_basic =================== [00:21:19] [PASSED] One page [00:21:19] [PASSED] More than one page [00:21:19] [PASSED] Above the allocation limit [00:21:19] [PASSED] One page, with coherent DMA mappings enabled [00:21:19] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [00:21:19] ============== [PASSED] ttm_pool_alloc_basic =============== [00:21:19] ============== ttm_pool_alloc_basic_dma_addr ============== [00:21:19] [PASSED] One page [00:21:19] [PASSED] More than one page [00:21:19] [PASSED] Above the allocation limit [00:21:19] [PASSED] One page, with coherent DMA mappings enabled [00:21:19] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [00:21:19] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ========== [00:21:19] [PASSED] ttm_pool_alloc_order_caching_match [00:21:19] [PASSED] ttm_pool_alloc_caching_mismatch [00:21:19] [PASSED] ttm_pool_alloc_order_mismatch [00:21:19] [PASSED] ttm_pool_free_dma_alloc [00:21:19] [PASSED] ttm_pool_free_no_dma_alloc [00:21:19] [PASSED] ttm_pool_fini_basic [00:21:19] ==================== [PASSED] ttm_pool ===================== [00:21:19] ================ ttm_resource (8 subtests) ================= [00:21:19] ================= ttm_resource_init_basic ================= [00:21:19] [PASSED] Init resource in TTM_PL_SYSTEM [00:21:19] [PASSED] Init resource in TTM_PL_VRAM [00:21:19] [PASSED] Init resource in a private placement [00:21:19] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags [00:21:19] ============= [PASSED] ttm_resource_init_basic ============= [00:21:19] [PASSED] ttm_resource_init_pinned [00:21:19] [PASSED] ttm_resource_fini_basic [00:21:19] [PASSED] ttm_resource_manager_init_basic [00:21:19] [PASSED] ttm_resource_manager_usage_basic [00:21:19] [PASSED] ttm_resource_manager_set_used_basic [00:21:19] [PASSED] ttm_sys_man_alloc_basic [00:21:19] [PASSED] ttm_sys_man_free_basic [00:21:19] ================== [PASSED] ttm_resource =================== [00:21:19] =================== ttm_tt (15 subtests) =================== [00:21:19] ==================== ttm_tt_init_basic ==================== [00:21:19] [PASSED] Page-aligned size [00:21:19] [PASSED] Extra pages requested [00:21:19] ================ [PASSED] ttm_tt_init_basic ================ [00:21:19] [PASSED] ttm_tt_init_misaligned [00:21:19] [PASSED] ttm_tt_fini_basic [00:21:19] [PASSED] ttm_tt_fini_sg [00:21:19] [PASSED] ttm_tt_fini_shmem [00:21:19] [PASSED] ttm_tt_create_basic [00:21:19] [PASSED] ttm_tt_create_invalid_bo_type [00:21:19] [PASSED] ttm_tt_create_ttm_exists [00:21:19] [PASSED] ttm_tt_create_failed [00:21:19] [PASSED] ttm_tt_destroy_basic [00:21:19] [PASSED] ttm_tt_populate_null_ttm [00:21:19] [PASSED] ttm_tt_populate_populated_ttm [00:21:19] [PASSED] ttm_tt_unpopulate_basic [00:21:19] [PASSED] ttm_tt_unpopulate_empty_ttm [00:21:19] [PASSED] ttm_tt_swapin_basic [00:21:19] ===================== [PASSED] ttm_tt ====================== [00:21:19] =================== ttm_bo (14 subtests) =================== [00:21:19] =========== ttm_bo_reserve_optimistic_no_ticket =========== [00:21:19] [PASSED] Cannot be interrupted and sleeps [00:21:19] [PASSED] Cannot be interrupted, locks straight away [00:21:19] [PASSED] Can be interrupted, sleeps [00:21:19] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket ======= [00:21:19] [PASSED] ttm_bo_reserve_locked_no_sleep [00:21:19] [PASSED] ttm_bo_reserve_no_wait_ticket [00:21:19] [PASSED] ttm_bo_reserve_double_resv [00:21:19] [PASSED] ttm_bo_reserve_interrupted [00:21:19] [PASSED] ttm_bo_reserve_deadlock [00:21:19] [PASSED] ttm_bo_unreserve_basic [00:21:19] [PASSED] ttm_bo_unreserve_pinned [00:21:19] [PASSED] ttm_bo_unreserve_bulk [00:21:19] [PASSED] ttm_bo_fini_basic [00:21:19] [PASSED] ttm_bo_fini_shared_resv [00:21:19] [PASSED] ttm_bo_pin_basic [00:21:19] [PASSED] ttm_bo_pin_unpin_resource [00:21:19] [PASSED] ttm_bo_multiple_pin_one_unpin [00:21:19] ===================== [PASSED] ttm_bo ====================== [00:21:19] ============== ttm_bo_validate (22 subtests) =============== [00:21:19] ============== ttm_bo_init_reserved_sys_man =============== [00:21:19] [PASSED] Buffer object for userspace [00:21:19] [PASSED] Kernel buffer object [00:21:19] [PASSED] Shared buffer object [00:21:19] ========== [PASSED] ttm_bo_init_reserved_sys_man =========== [00:21:19] ============== ttm_bo_init_reserved_mock_man ============== [00:21:19] [PASSED] Buffer object for userspace [00:21:19] [PASSED] Kernel buffer object [00:21:19] [PASSED] Shared buffer object [00:21:19] ========== [PASSED] ttm_bo_init_reserved_mock_man ========== [00:21:19] [PASSED] ttm_bo_init_reserved_resv [00:21:19] ================== ttm_bo_validate_basic ================== [00:21:19] [PASSED] Buffer object for userspace [00:21:19] [PASSED] Kernel buffer object [00:21:19] [PASSED] Shared buffer object [00:21:19] ============== [PASSED] ttm_bo_validate_basic ============== [00:21:19] [PASSED] ttm_bo_validate_invalid_placement [00:21:19] ============= ttm_bo_validate_same_placement ============== [00:21:19] [PASSED] System manager [00:21:19] [PASSED] VRAM manager [00:21:19] ========= [PASSED] ttm_bo_validate_same_placement ========== [00:21:19] [PASSED] ttm_bo_validate_failed_alloc [00:21:19] [PASSED] ttm_bo_validate_pinned [00:21:19] [PASSED] ttm_bo_validate_busy_placement [00:21:19] ================ ttm_bo_validate_multihop ================= [00:21:19] [PASSED] Buffer object for userspace [00:21:19] [PASSED] Kernel buffer object [00:21:19] [PASSED] Shared buffer object [00:21:19] ============ [PASSED] ttm_bo_validate_multihop ============= [00:21:19] ========== ttm_bo_validate_no_placement_signaled ========== [00:21:19] [PASSED] Buffer object in system domain, no page vector [00:21:19] [PASSED] Buffer object in system domain with an existing page vector [00:21:19] ====== [PASSED] ttm_bo_validate_no_placement_signaled ====== [00:21:19] ======== ttm_bo_validate_no_placement_not_signaled ======== [00:21:19] [PASSED] Buffer object for userspace [00:21:19] [PASSED] Kernel buffer object [00:21:19] [PASSED] Shared buffer object [00:21:19] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ==== [00:21:19] [PASSED] ttm_bo_validate_move_fence_signaled [00:21:19] ========= ttm_bo_validate_move_fence_not_signaled ========= [00:21:19] [PASSED] Waits for GPU [00:21:19] [PASSED] Tries to lock straight away [00:21:19] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled ===== [00:21:19] [PASSED] ttm_bo_validate_swapout [00:21:19] [PASSED] ttm_bo_validate_happy_evict [00:21:19] [PASSED] ttm_bo_validate_all_pinned_evict [00:21:19] [PASSED] ttm_bo_validate_allowed_only_evict [00:21:19] [PASSED] ttm_bo_validate_deleted_evict [00:21:19] [PASSED] ttm_bo_validate_busy_domain_evict [00:21:19] [PASSED] ttm_bo_validate_evict_gutting [00:21:19] [PASSED] ttm_bo_validate_recrusive_evict stty: 'standard input': Inappropriate ioctl for device [00:21:19] ================= [PASSED] ttm_bo_validate ================= [00:21:19] ============================================================ [00:21:19] Testing complete. Ran 102 tests: passed: 102 [00:21:19] Elapsed time: 11.389s total, 1.703s configuring, 9.470s building, 0.180s running + cleanup ++ stat -c %u:%g /kernel + chown -R 1003:1003 /kernel ^ permalink raw reply [flat|nested] 16+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe/oa: Wa_14026633728 (rev5) 2026-04-25 0:14 [PATCH v5 0/3] drm/xe/oa: Wa_14026633728 Ashutosh Dixit ` (3 preceding siblings ...) 2026-04-25 0:21 ` ✓ CI.KUnit: success for drm/xe/oa: Wa_14026633728 (rev5) Patchwork @ 2026-04-25 1:14 ` Patchwork 2026-04-25 2:18 ` ✗ Xe.CI.FULL: failure " Patchwork 5 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2026-04-25 1:14 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 1982 bytes --] == Series Details == Series: drm/xe/oa: Wa_14026633728 (rev5) URL : https://patchwork.freedesktop.org/series/164412/ State : success == Summary == CI Bug Log - changes from xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f_BAT -> xe-pw-164412v5_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (13 -> 13) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in xe-pw-164412v5_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1: - bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7483]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1: - bat-adlp-7: [DMESG-WARN][3] ([Intel XE#7483]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html [Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483 Build changes ------------- * Linux: xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f -> xe-pw-164412v5 IGT_8873: a5c5d655807ead8204e01754b6434f0ecae40b96 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f: 6784fa94a98ae6fceef9c2c171c3e9fb8be6585f xe-pw-164412v5: 164412v5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/index.html [-- Attachment #2: Type: text/html, Size: 2645 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* ✗ Xe.CI.FULL: failure for drm/xe/oa: Wa_14026633728 (rev5) 2026-04-25 0:14 [PATCH v5 0/3] drm/xe/oa: Wa_14026633728 Ashutosh Dixit ` (4 preceding siblings ...) 2026-04-25 1:14 ` ✓ Xe.CI.BAT: " Patchwork @ 2026-04-25 2:18 ` Patchwork 5 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2026-04-25 2:18 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 100885 bytes --] == Series Details == Series: drm/xe/oa: Wa_14026633728 (rev5) URL : https://patchwork.freedesktop.org/series/164412/ State : failure == Summary == CI Bug Log - changes from xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f_FULL -> xe-pw-164412v5_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with xe-pw-164412v5_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in xe-pw-164412v5_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 xe-pw-164412v5_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_color@degamma@pipe-a-dp-2: - shard-bmg: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-6/igt@kms_color@degamma@pipe-a-dp-2.html * igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-2: - shard-bmg: NOTRUN -> [TIMEOUT][2] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-6/igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-2.html * igt@testdisplay: - shard-bmg: [PASS][3] -> [ABORT][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-10/igt@testdisplay.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-1/igt@testdisplay.html * igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr: - shard-bmg: [PASS][5] -> [SKIP][6] +55 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr.html * igt@xe_exec_reset@cat-error: - shard-bmg: [PASS][7] -> [DMESG-WARN][8] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-5/igt@xe_exec_reset@cat-error.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@xe_exec_reset@cat-error.html * igt@xe_svm_usrptr_madvise@svm-userptr-copy-madvise: - shard-bmg: [PASS][9] -> [FAIL][10] +6 other tests fail [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@xe_svm_usrptr_madvise@svm-userptr-copy-madvise.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@xe_svm_usrptr_madvise@svm-userptr-copy-madvise.html #### Warnings #### * igt@kms_content_protection@atomic-hdcp14: - shard-bmg: [SKIP][11] ([Intel XE#7825]) -> [TIMEOUT][12] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_content_protection@atomic-hdcp14.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-6/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_fbcon_fbt@fbc: - shard-bmg: [SKIP][13] ([Intel XE#4156] / [Intel XE#7425]) -> [SKIP][14] [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@kms_fbcon_fbt@fbc.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_fbcon_fbt@fbc.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: [SKIP][15] ([Intel XE#6911] / [Intel XE#7466]) -> [SKIP][16] [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@xe_evict@evict-threads-small-multi-queue: - shard-bmg: [SKIP][17] ([Intel XE#7140]) -> [SKIP][18] [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@xe_evict@evict-threads-small-multi-queue.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@xe_evict@evict-threads-small-multi-queue.html * igt@xe_prefetch_fault@prefetch-fault-svm: - shard-bmg: [SKIP][19] ([Intel XE#7599]) -> [SKIP][20] [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@xe_prefetch_fault@prefetch-fault-svm.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@xe_prefetch_fault@prefetch-fault-svm.html New tests --------- New tests have been introduced between xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f_FULL and xe-pw-164412v5_FULL: ### New IGT tests (2) ### * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv: - Statuses : 2 pass(s) - Exec time: [9.52, 28.75] s * igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv: - Statuses : 2 pass(s) - Exec time: [17.39, 63.06] s Known issues ------------ Here are the changes found in xe-pw-164412v5_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@pan: - shard-bmg: [PASS][21] -> [SKIP][22] ([Intel XE#2134]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-8/igt@fbdev@pan.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@fbdev@pan.html * igt@intel_hwmon@hwmon-write: - shard-bmg: NOTRUN -> [FAIL][23] ([Intel XE#7445]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-2/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: [PASS][24] -> [SKIP][25] ([Intel XE#2233]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-10/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2370]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2327]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [PASS][28] -> [SKIP][29] ([Intel XE#7825]) +54 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#1124]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-2/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2887]) +4 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-2/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2652]) +15 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#3432]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2724] / [Intel XE#7449]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2325] / [Intel XE#7358]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2252]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-2/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_color@gamma: - shard-bmg: [PASS][37] -> [SKIP][38] ([Intel XE#3297]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-10/igt@kms_color@gamma.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_color@gamma.html * igt@kms_color_pipeline@plane-lut1d-lut1d: - shard-bmg: [PASS][39] -> [SKIP][40] ([Intel XE#7006]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-10/igt@kms_color_pipeline@plane-lut1d-lut1d.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_color_pipeline@plane-lut1d-lut1d.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][41] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2320]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-256x256: - shard-bmg: [PASS][43] -> [SKIP][44] ([Intel XE#2320]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-2/igt@kms_cursor_crc@cursor-random-256x256.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-6/igt@kms_cursor_crc@cursor-random-256x256.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2321] / [Intel XE#7355]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [PASS][46] -> [FAIL][47] ([Intel XE#7809]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#4422] / [Intel XE#7442]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html * igt@kms_flip@2x-absolute-wf_vblank@ac-dp2-hdmi-a3: - shard-bmg: [PASS][49] -> [FAIL][50] ([Intel XE#7705]) +4 other tests fail [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-2/igt@kms_flip@2x-absolute-wf_vblank@ac-dp2-hdmi-a3.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-absolute-wf_vblank@cd-dp2-hdmi-a3: - shard-bmg: [PASS][51] -> [FAIL][52] ([Intel XE#3149] / [Intel XE#7705]) +1 other test fail [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-2/igt@kms_flip@2x-absolute-wf_vblank@cd-dp2-hdmi-a3.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank@cd-dp2-hdmi-a3.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][53] -> [SKIP][54] ([Intel XE#2316]) +10 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-10/igt@kms_flip@2x-nonexisting-fb.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][55] -> [FAIL][56] ([Intel XE#5408] / [Intel XE#6266]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@2x-plain-flip-fb-recreate@ab-dp2-hdmi-a3: - shard-bmg: [PASS][57] -> [FAIL][58] ([Intel XE#6266]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate@ab-dp2-hdmi-a3.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate@ab-dp2-hdmi-a3.html * igt@kms_flip@blocking-absolute-wf_vblank@b-dp2: - shard-bmg: NOTRUN -> [FAIL][59] ([Intel XE#7705]) +6 other tests fail [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-6/igt@kms_flip@blocking-absolute-wf_vblank@b-dp2.html * igt@kms_flip@flip-vs-panning: - shard-bmg: [PASS][60] -> [SKIP][61] ([Intel XE#2482]) +7 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@kms_flip@flip-vs-panning.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_flip@flip-vs-panning.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-bmg: [PASS][62] -> [SKIP][63] ([Intel XE#7178]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#7178] / [Intel XE#7351]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_tiling@flip-change-tiling: - shard-bmg: [PASS][65] -> [SKIP][66] ([Intel XE#2682]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@kms_flip_tiling@flip-change-tiling.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_flip_tiling@flip-change-tiling.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2311]) +12 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#4141]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#7061] / [Intel XE#7356]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2313]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_invalid_mode@bad-hsync-end: - shard-bmg: [PASS][71] -> [SKIP][72] ([Intel XE#2568]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@kms_invalid_mode@bad-hsync-end.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_invalid_mode@bad-hsync-end.html * igt@kms_joiner@basic-max-non-joiner: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#4298] / [Intel XE#5873]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier: - shard-bmg: [PASS][74] -> [SKIP][75] ([Intel XE#7283]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-10/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#7130]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#7283]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html * igt@kms_plane@plane-position-hole-dpms: - shard-bmg: [PASS][78] -> [SKIP][79] ([Intel XE#7111]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-8/igt@kms_plane@plane-position-hole-dpms.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_plane@plane-position-hole-dpms.html * igt@kms_plane_alpha_blend@constant-alpha-mid: - shard-bmg: [PASS][80] -> [SKIP][81] ([Intel XE#7082]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-10/igt@kms_plane_alpha_blend@constant-alpha-mid.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_plane_alpha_blend@constant-alpha-mid.html * igt@kms_plane_multiple@tiling-y: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#5020] / [Intel XE#7348]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-1/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@invalid-parameters: - shard-bmg: [PASS][83] -> [SKIP][84] ([Intel XE#7687]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@kms_plane_scaling@invalid-parameters.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_plane_scaling@invalid-parameters.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation: - shard-bmg: [PASS][85] -> [SKIP][86] ([Intel XE#2763] / [Intel XE#6886]) +29 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-1/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-bmg: [PASS][89] -> [SKIP][90] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-8/igt@kms_pm_rpm@modeset-non-lpsp.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-bmg: [PASS][91] -> [SKIP][92] ([Intel XE#7079]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-5/igt@kms_pm_rpm@system-suspend-modeset.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_properties@colorop-properties-atomic: - shard-bmg: [PASS][93] -> [SKIP][94] ([Intel XE#7089]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@kms_properties@colorop-properties-atomic.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_properties@colorop-properties-atomic.html * igt@kms_properties@crtc-properties-atomic: - shard-bmg: [PASS][95] -> [SKIP][96] ([Intel XE#7112]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@kms_properties@crtc-properties-atomic.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_properties@crtc-properties-atomic.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#1489]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr@psr-primary-page-flip: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2234] / [Intel XE#2850]) +4 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@kms_psr@psr-primary-page-flip.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#7795]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-1/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_setmode@basic-clone-single-crtc: - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#1435]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [PASS][102] -> [FAIL][103] ([Intel XE#6361]) +2 other tests fail [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-lnl-1/igt@kms_setmode@basic@pipe-b-edp-1.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [PASS][104] -> [SKIP][105] ([Intel XE#1435]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-10/igt@kms_setmode@invalid-clone-single-crtc-stealing.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@xe_eu_stall@blocking-re-enable: - shard-bmg: [PASS][106] -> [SKIP][107] ([Intel XE#6568]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@xe_eu_stall@blocking-re-enable.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@xe_eu_stall@blocking-re-enable.html * igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#7636]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-2/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html * igt@xe_exec_balancer@no-exec-cm-parallel-userptr: - shard-bmg: [PASS][109] -> [SKIP][110] ([Intel XE#7827]) +5 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@xe_exec_balancer@no-exec-cm-parallel-userptr.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@xe_exec_balancer@no-exec-cm-parallel-userptr.html * igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2322] / [Intel XE#7372]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#7136]) +4 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html * igt@xe_exec_fault_mode@twice-userptr-rebind: - shard-bmg: [PASS][113] -> [SKIP][114] ([Intel XE#7826]) +31 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@xe_exec_fault_mode@twice-userptr-rebind.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@xe_exec_fault_mode@twice-userptr-rebind.html * igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#6874]) +5 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-1/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority.html * igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-race: - shard-bmg: [PASS][116] -> [SKIP][117] ([Intel XE#7824]) +385 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-race.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-race.html * igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#7138]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html * igt@xe_media_fill@media-fill: - shard-bmg: [PASS][119] -> [SKIP][120] ([Intel XE#2459] / [Intel XE#2596] / [Intel XE#7321] / [Intel XE#7453]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@xe_media_fill@media-fill.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@xe_media_fill@media-fill.html * igt@xe_multigpu_svm@mgpu-atomic-op-prefetch: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#6964]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-2/igt@xe_multigpu_svm@mgpu-atomic-op-prefetch.html * igt@xe_page_reclaim@prl-invalidate-full: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#7793]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-2/igt@xe_page_reclaim@prl-invalidate-full.html * igt@xe_pat@false-sharing: - shard-bmg: [PASS][123] -> [SKIP][124] ([Intel XE#7590]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@xe_pat@false-sharing.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@xe_pat@false-sharing.html * igt@xe_pat@pat-sw-hw-reset-compare: - shard-bmg: [PASS][125] -> [FAIL][126] ([Intel XE#7695]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@xe_pat@pat-sw-hw-reset-compare.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@xe_pat@pat-sw-hw-reset-compare.html * igt@xe_pxp@pxp-stale-queue-post-suspend: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#4733] / [Intel XE#7417]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@xe_pxp@pxp-stale-queue-post-suspend.html * igt@xe_query@multigpu-query-config: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#944]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-2/igt@xe_query@multigpu-query-config.html * igt@xe_wedged@wedged-at-any-timeout: - shard-bmg: [PASS][129] -> [DMESG-WARN][130] ([Intel XE#5545]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@xe_wedged@wedged-at-any-timeout.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@xe_wedged@wedged-at-any-timeout.html #### Possible fixes #### * igt@fbdev@unaligned-read: - shard-bmg: [SKIP][131] ([Intel XE#2134]) -> [PASS][132] +1 other test pass [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@fbdev@unaligned-read.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@fbdev@unaligned-read.html * igt@kms_big_fb@x-tiled-addfb: - shard-bmg: [SKIP][133] ([Intel XE#7825]) -> [PASS][134] +75 other tests pass [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_big_fb@x-tiled-addfb.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-5/igt@kms_big_fb@x-tiled-addfb.html * igt@kms_color@ctm-blue-to-red: - shard-bmg: [SKIP][135] ([Intel XE#3297]) -> [PASS][136] +2 other tests pass [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_color@ctm-blue-to-red.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-5/igt@kms_color@ctm-blue-to-red.html * igt@kms_color@deep-color: - shard-bmg: [SKIP][137] ([Intel XE#1511] / [Intel XE#3297]) -> [PASS][138] [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_color@deep-color.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@kms_color@deep-color.html * igt@kms_color_pipeline@plane-ctm3x4: - shard-bmg: [SKIP][139] ([Intel XE#7006]) -> [PASS][140] [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_color_pipeline@plane-ctm3x4.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-10/igt@kms_color_pipeline@plane-ctm3x4.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-bmg: [SKIP][141] ([Intel XE#2316]) -> [PASS][142] +8 other tests pass [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_flip@2x-blocking-wf_vblank.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ad-dp2-hdmi-a3: - shard-bmg: [FAIL][143] ([Intel XE#6266]) -> [PASS][144] +3 other tests pass [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ad-dp2-hdmi-a3.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ad-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank@cd-dp2-hdmi-a3: - shard-bmg: [FAIL][145] ([Intel XE#3149] / [Intel XE#6266]) -> [PASS][146] +1 other test pass [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@cd-dp2-hdmi-a3.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@cd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-bmg: [FAIL][147] ([Intel XE#3149] / [Intel XE#5408] / [Intel XE#6266]) -> [PASS][148] +1 other test pass [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible@ab-dp2-hdmi-a3: - shard-bmg: [FAIL][149] ([Intel XE#5408] / [Intel XE#6266]) -> [PASS][150] +2 other tests pass [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible@ab-dp2-hdmi-a3.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible@ab-dp2-hdmi-a3.html * igt@kms_flip@basic-flip-vs-modeset: - shard-bmg: [SKIP][151] ([Intel XE#2482]) -> [PASS][152] +7 other tests pass [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_flip@basic-flip-vs-modeset.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@kms_flip@basic-flip-vs-modeset.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-bmg: [SKIP][153] ([Intel XE#7178]) -> [PASS][154] +1 other test pass [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling: - shard-bmg: [SKIP][155] ([Intel XE#2380]) -> [PASS][156] +4 other tests pass [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html * igt@kms_frontbuffer_tracking@basic: - shard-bmg: [SKIP][157] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) -> [PASS][158] [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_frontbuffer_tracking@basic.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-5/igt@kms_frontbuffer_tracking@basic.html * igt@kms_invalid_mode@clock-too-high: - shard-bmg: [SKIP][159] ([Intel XE#2568]) -> [PASS][160] +2 other tests pass [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_invalid_mode@clock-too-high.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@kms_invalid_mode@clock-too-high.html * igt@kms_joiner@basic-force-big-joiner: - shard-bmg: [SKIP][161] ([Intel XE#7086]) -> [PASS][162] [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_joiner@basic-force-big-joiner.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-10/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping: - shard-bmg: [SKIP][163] ([Intel XE#7283]) -> [PASS][164] [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: [SKIP][165] ([Intel XE#7111]) -> [PASS][166] +1 other test pass [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_plane@plane-panning-bottom-right-suspend.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-10/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-bmg: [SKIP][167] ([Intel XE#7082]) -> [PASS][168] [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_plane_alpha_blend@alpha-transparent-fb.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][169] ([Intel XE#2571] / [Intel XE#7343]) -> [PASS][170] [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-10/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@planes-upscale-20x20@pipe-a: - shard-bmg: [SKIP][171] ([Intel XE#2763] / [Intel XE#6886]) -> [PASS][172] +34 other tests pass [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_plane_scaling@planes-upscale-20x20@pipe-a.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20@pipe-a.html * igt@kms_pm_dc@dc5-dpms: - shard-bmg: [FAIL][173] ([Intel XE#7340]) -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_pm_dc@dc5-dpms.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-6/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-bmg: [SKIP][175] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836]) -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@i2c: - shard-bmg: [SKIP][177] ([Intel XE#7079]) -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_pm_rpm@i2c.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-10/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@universal-planes: - shard-bmg: [SKIP][179] ([Intel XE#4886]) -> [PASS][180] +1 other test pass [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_pm_rpm@universal-planes.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-5/igt@kms_pm_rpm@universal-planes.html * igt@kms_setmode@basic: - shard-bmg: [FAIL][181] ([Intel XE#6361]) -> [PASS][182] +6 other tests pass [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-7/igt@kms_setmode@basic.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-5/igt@kms_setmode@basic.html * igt@kms_vrr@max-min@pipe-a-edp-1: - shard-lnl: [FAIL][183] ([Intel XE#4227]) -> [PASS][184] +1 other test pass [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-lnl-8/igt@kms_vrr@max-min@pipe-a-edp-1.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-lnl-6/igt@kms_vrr@max-min@pipe-a-edp-1.html * igt@xe_eu_stall@invalid-sampling-rate: - shard-bmg: [SKIP][185] ([Intel XE#6568]) -> [PASS][186] +1 other test pass [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@xe_eu_stall@invalid-sampling-rate.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@xe_eu_stall@invalid-sampling-rate.html * igt@xe_exec_balancer@many-parallel-userptr-invalidate: - shard-bmg: [SKIP][187] -> [PASS][188] +57 other tests pass [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@xe_exec_balancer@many-parallel-userptr-invalidate.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@xe_exec_balancer@many-parallel-userptr-invalidate.html * igt@xe_exec_balancer@twice-virtual-userptr-invalidate-race: - shard-bmg: [SKIP][189] ([Intel XE#7827]) -> [PASS][190] +3 other tests pass [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@xe_exec_balancer@twice-virtual-userptr-invalidate-race.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-5/igt@xe_exec_balancer@twice-virtual-userptr-invalidate-race.html * igt@xe_exec_fault_mode@twice-rebind-prefetch: - shard-bmg: [SKIP][191] ([Intel XE#7826]) -> [PASS][192] +35 other tests pass [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@xe_exec_fault_mode@twice-rebind-prefetch.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-10/igt@xe_exec_fault_mode@twice-rebind-prefetch.html * igt@xe_exec_sip@invalidinstr-disabled@drm_xe_engine_class_render0: - shard-bmg: [FAIL][193] -> [PASS][194] +8 other tests pass [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@xe_exec_sip@invalidinstr-disabled@drm_xe_engine_class_render0.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@xe_exec_sip@invalidinstr-disabled@drm_xe_engine_class_render0.html * igt@xe_exec_system_allocator@many-large-execqueues-new-race-nomemset: - shard-bmg: [SKIP][195] ([Intel XE#7824]) -> [PASS][196] +431 other tests pass [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@xe_exec_system_allocator@many-large-execqueues-new-race-nomemset.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@xe_exec_system_allocator@many-large-execqueues-new-race-nomemset.html * igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-fork-read: - shard-bmg: [DMESG-WARN][197] ([Intel XE#7725]) -> [PASS][198] +1 other test pass [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-6/igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-fork-read.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-1/igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-fork-read.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init: - shard-bmg: [ABORT][199] ([Intel XE#5545]) -> [PASS][200] [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html * igt@xe_mmap@pci-membarrier-bad-pagesize: - shard-bmg: [SKIP][201] ([Intel XE#5100]) -> [PASS][202] [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@xe_mmap@pci-membarrier-bad-pagesize.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-6/igt@xe_mmap@pci-membarrier-bad-pagesize.html * igt@xe_pat@display-vs-wb-transient: - shard-bmg: [SKIP][203] ([Intel XE#7590]) -> [PASS][204] [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@xe_pat@display-vs-wb-transient.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-10/igt@xe_pat@display-vs-wb-transient.html * igt@xe_sriov_scheduling@equal-throughput@numvfs-random: - shard-bmg: [DMESG-FAIL][205] -> [PASS][206] +1 other test pass [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@xe_sriov_scheduling@equal-throughput@numvfs-random.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-5/igt@xe_sriov_scheduling@equal-throughput@numvfs-random.html #### Warnings #### * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: [SKIP][207] ([Intel XE#2370]) -> [SKIP][208] ([Intel XE#7825]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-bmg: [SKIP][209] ([Intel XE#2327]) -> [SKIP][210] ([Intel XE#7825]) +3 other tests skip [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: [SKIP][211] ([Intel XE#7825]) -> [SKIP][212] ([Intel XE#2327]) +6 other tests skip [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_big_fb@linear-32bpp-rotate-270.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: [SKIP][213] ([Intel XE#7059] / [Intel XE#7085]) -> [SKIP][214] ([Intel XE#7825]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-16bpp-rotate-270: - shard-bmg: [SKIP][215] ([Intel XE#1124]) -> [SKIP][216] ([Intel XE#7825]) +12 other tests skip [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-8/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180: - shard-bmg: [SKIP][217] ([Intel XE#7825]) -> [SKIP][218] ([Intel XE#1124]) +14 other tests skip [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: [SKIP][219] ([Intel XE#607] / [Intel XE#7361]) -> [SKIP][220] ([Intel XE#7825]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][221] ([Intel XE#3432]) -> [SKIP][222] ([Intel XE#7825]) +3 other tests skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-bmg: [SKIP][223] ([Intel XE#7825]) -> [SKIP][224] ([Intel XE#2652]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs: - shard-bmg: [SKIP][225] ([Intel XE#7825]) -> [SKIP][226] ([Intel XE#3432]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][227] ([Intel XE#2887]) -> [SKIP][228] ([Intel XE#7825]) +17 other tests skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-10/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs: - shard-bmg: [SKIP][229] ([Intel XE#7825]) -> [SKIP][230] ([Intel XE#2887]) +18 other tests skip [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-bmg: [SKIP][231] ([Intel XE#2652]) -> [SKIP][232] ([Intel XE#7825]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-8/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition: - shard-bmg: [SKIP][233] -> [SKIP][234] ([Intel XE#2724] / [Intel XE#7449]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_cdclk@mode-transition.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-10/igt@kms_cdclk@mode-transition.html * igt@kms_content_protection@atomic: - shard-bmg: [FAIL][235] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][236] ([Intel XE#7825]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@kms_content_protection@atomic.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-type-0: - shard-bmg: [SKIP][237] ([Intel XE#2390] / [Intel XE#6974]) -> [SKIP][238] ([Intel XE#7825]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@kms_content_protection@dp-mst-type-0.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-bmg: [SKIP][239] ([Intel XE#6974]) -> [SKIP][240] ([Intel XE#7825]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-5/igt@kms_content_protection@dp-mst-type-0-hdcp14.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-1: - shard-bmg: [SKIP][241] ([Intel XE#7825]) -> [SKIP][242] ([Intel XE#2390] / [Intel XE#6974]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_content_protection@dp-mst-type-1.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy-hdcp14: - shard-bmg: [SKIP][243] ([Intel XE#7825]) -> [FAIL][244] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_content_protection@legacy-hdcp14.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-5/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: [SKIP][245] ([Intel XE#2320]) -> [SKIP][246] ([Intel XE#7825]) +7 other tests skip [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-10/igt@kms_cursor_crc@cursor-offscreen-128x42.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: [SKIP][247] ([Intel XE#7825]) -> [SKIP][248] ([Intel XE#2320]) +5 other tests skip [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_cursor_crc@cursor-offscreen-256x85.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-256x85.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-bmg: [SKIP][249] ([Intel XE#2321] / [Intel XE#7355]) -> [SKIP][250] ([Intel XE#7825]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: [SKIP][251] ([Intel XE#7825]) -> [SKIP][252] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_cursor_crc@cursor-offscreen-512x512.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-bmg: [SKIP][253] ([Intel XE#7825]) -> [SKIP][254] ([Intel XE#2286] / [Intel XE#6035]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-bmg: [SKIP][255] ([Intel XE#2286] / [Intel XE#6035]) -> [SKIP][256] ([Intel XE#7825]) [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: [SKIP][257] ([Intel XE#7825]) -> [SKIP][258] ([Intel XE#1508]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dp_link_training@uhbr-sst: - shard-bmg: [SKIP][259] ([Intel XE#7825]) -> [SKIP][260] ([Intel XE#4354] / [Intel XE#5870]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_dp_link_training@uhbr-sst.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dsc@dsc-with-bpc: - shard-bmg: [SKIP][261] ([Intel XE#2244]) -> [SKIP][262] ([Intel XE#7825]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-5/igt@kms_dsc@dsc-with-bpc.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-bmg: [SKIP][263] ([Intel XE#7825]) -> [SKIP][264] ([Intel XE#2244]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_dsc@dsc-with-output-formats.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests: - shard-bmg: [SKIP][265] ([Intel XE#4422] / [Intel XE#7442]) -> [SKIP][266] ([Intel XE#7825]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-10/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html * igt@kms_flip@blocking-absolute-wf_vblank: - shard-bmg: [SKIP][267] ([Intel XE#2482]) -> [FAIL][268] ([Intel XE#7705]) +1 other test fail [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_flip@blocking-absolute-wf_vblank.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-6/igt@kms_flip@blocking-absolute-wf_vblank.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][269] ([Intel XE#7178] / [Intel XE#7349]) -> [SKIP][270] ([Intel XE#7178]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-bmg: [SKIP][271] ([Intel XE#7178]) -> [SKIP][272] ([Intel XE#7178] / [Intel XE#7349]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-bmg: [SKIP][273] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][274] ([Intel XE#7178]) [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling: - shard-bmg: [SKIP][275] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][276] ([Intel XE#2380]) +2 other tests skip [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-bmg: [SKIP][277] ([Intel XE#2380]) -> [SKIP][278] ([Intel XE#7178] / [Intel XE#7351]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-bmg: [SKIP][279] ([Intel XE#7178]) -> [SKIP][280] ([Intel XE#7178] / [Intel XE#7351]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][281] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) -> [SKIP][282] ([Intel XE#2311]) +26 other tests skip [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][283] ([Intel XE#2311]) -> [SKIP][284] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) +26 other tests skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][285] ([Intel XE#2311]) -> [SKIP][286] ([Intel XE#2312]) [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc: - shard-bmg: [SKIP][287] ([Intel XE#6314]) -> [SKIP][288] ([Intel XE#7061] / [Intel XE#7356]) +9 other tests skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt: - shard-bmg: [SKIP][289] ([Intel XE#4141]) -> [SKIP][290] ([Intel XE#6314]) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][291] ([Intel XE#6314]) -> [SKIP][292] ([Intel XE#4141]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][293] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) -> [SKIP][294] ([Intel XE#4141]) +16 other tests skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][295] ([Intel XE#2312]) -> [SKIP][296] ([Intel XE#4141]) [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][297] ([Intel XE#4141]) -> [SKIP][298] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) +14 other tests skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-bmg: [SKIP][299] ([Intel XE#2548] / [Intel XE#6314]) -> [SKIP][300] ([Intel XE#4141]) [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-tiling-4.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - shard-bmg: [SKIP][301] ([Intel XE#4141]) -> [SKIP][302] ([Intel XE#2548] / [Intel XE#6314]) [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render: - shard-bmg: [SKIP][303] ([Intel XE#2311]) -> [SKIP][304] ([Intel XE#6314]) +2 other tests skip [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt: - shard-bmg: [SKIP][305] ([Intel XE#6314]) -> [SKIP][306] ([Intel XE#2311]) +3 other tests skip [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][307] ([Intel XE#2312]) -> [SKIP][308] ([Intel XE#2311]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-pgflip-blt.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][309] ([Intel XE#2548] / [Intel XE#6314]) -> [SKIP][310] ([Intel XE#2311]) +6 other tests skip [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][311] ([Intel XE#2311]) -> [SKIP][312] ([Intel XE#2548] / [Intel XE#6314]) +6 other tests skip [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render: - shard-bmg: [SKIP][313] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][314] ([Intel XE#6314]) +4 other tests skip [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff: - shard-bmg: [SKIP][315] ([Intel XE#2313]) -> [SKIP][316] ([Intel XE#2312]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][317] ([Intel XE#2313]) -> [SKIP][318] ([Intel XE#2548] / [Intel XE#6314]) +33 other tests skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: [SKIP][319] ([Intel XE#2350] / [Intel XE#7503]) -> [SKIP][320] ([Intel XE#2548] / [Intel XE#6314]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][321] ([Intel XE#2313]) -> [SKIP][322] ([Intel XE#6314]) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render: - shard-bmg: [SKIP][323] ([Intel XE#6314]) -> [SKIP][324] ([Intel XE#2313]) +2 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][325] ([Intel XE#2548] / [Intel XE#6314]) -> [SKIP][326] ([Intel XE#2313]) +35 other tests skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff: - shard-bmg: [SKIP][327] ([Intel XE#2548] / [Intel XE#6314]) -> [SKIP][328] ([Intel XE#2312]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][329] ([Intel XE#2312]) -> [SKIP][330] ([Intel XE#2313]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][331] ([Intel XE#7825]) -> [SKIP][332] ([Intel XE#3544]) [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][333] ([Intel XE#7825]) -> [SKIP][334] ([Intel XE#1503]) [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_hdr@invalid-hdr.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-10/igt@kms_hdr@invalid-hdr.html * igt@kms_panel_fitting@atomic-fastset: - shard-bmg: [SKIP][335] ([Intel XE#2486]) -> [SKIP][336] ([Intel XE#7825]) [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@kms_panel_fitting@atomic-fastset.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-bmg: [SKIP][337] ([Intel XE#7825]) -> [SKIP][338] ([Intel XE#6912] / [Intel XE#7375]) [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-10/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane_lowres@tiling-yf: - shard-bmg: [SKIP][339] ([Intel XE#7825]) -> [SKIP][340] ([Intel XE#2393]) [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_plane_lowres@tiling-yf.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-bmg: [SKIP][341] ([Intel XE#7825]) -> [SKIP][342] ([Intel XE#5020] / [Intel XE#7348]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_plane_multiple@tiling-yf.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@kms_plane_multiple@tiling-yf.html * igt@kms_pm_rpm@package-g7: - shard-bmg: [SKIP][343] ([Intel XE#6813]) -> [SKIP][344] ([Intel XE#6814] / [Intel XE#7428]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_pm_rpm@package-g7.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@kms_pm_rpm@package-g7.html * igt@kms_rotation_crc@bad-tiling: - shard-bmg: [SKIP][345] ([Intel XE#3904] / [Intel XE#7342]) -> [SKIP][346] ([Intel XE#7825]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-5/igt@kms_rotation_crc@bad-tiling.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: [SKIP][347] ([Intel XE#7825]) -> [SKIP][348] ([Intel XE#2330] / [Intel XE#5813]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: [SKIP][349] ([Intel XE#2330] / [Intel XE#5813]) -> [SKIP][350] ([Intel XE#7825]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-bmg: [SKIP][351] ([Intel XE#3904] / [Intel XE#7342]) -> [SKIP][352] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) [351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-bmg: [SKIP][353] ([Intel XE#7825]) -> [SKIP][354] ([Intel XE#3904] / [Intel XE#7342]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_rotation_crc@sprite-rotation-270.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_scaling_modes@scaling-mode-full: - shard-bmg: [SKIP][355] ([Intel XE#2413]) -> [SKIP][356] ([Intel XE#7825]) [355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-8/igt@kms_scaling_modes@scaling-mode-full.html [356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_sharpness_filter@filter-basic: - shard-bmg: [SKIP][357] ([Intel XE#6503]) -> [SKIP][358] ([Intel XE#7825]) +2 other tests skip [357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@kms_sharpness_filter@filter-basic.html [358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_sharpness_filter@filter-basic.html * igt@kms_sharpness_filter@invalid-filter-with-plane: - shard-bmg: [SKIP][359] ([Intel XE#7825]) -> [SKIP][360] ([Intel XE#6503]) +2 other tests skip [359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_sharpness_filter@invalid-filter-with-plane.html [360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@kms_sharpness_filter@invalid-filter-with-plane.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][361] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][362] ([Intel XE#7825]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html [362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@cmrr: - shard-bmg: [SKIP][363] ([Intel XE#7825]) -> [SKIP][364] ([Intel XE#2168] / [Intel XE#7444]) [363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_vrr@cmrr.html [364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-5/igt@kms_vrr@cmrr.html * igt@kms_vrr@flip-dpms: - shard-bmg: [SKIP][365] ([Intel XE#1499]) -> [SKIP][366] ([Intel XE#7825]) [365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-8/igt@kms_vrr@flip-dpms.html [366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@lobf: - shard-bmg: [SKIP][367] ([Intel XE#2168] / [Intel XE#7444]) -> [SKIP][368] ([Intel XE#7825]) [367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-1/igt@kms_vrr@lobf.html [368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-bmg: [SKIP][369] ([Intel XE#7825]) -> [SKIP][370] ([Intel XE#1499]) [369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@kms_vrr@seamless-rr-switch-virtual.html [370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-bmg: [SKIP][371] -> [INCOMPLETE][372] ([Intel XE#6321]) [371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@xe_evict@evict-beng-mixed-many-threads-small.html [372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-3/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-small-external-multi-queue-cm: - shard-bmg: [SKIP][373] -> [SKIP][374] ([Intel XE#7140]) +1 other test skip [373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@xe_evict@evict-small-external-multi-queue-cm.html [374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-5/igt@xe_evict@evict-small-external-multi-queue-cm.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr: - shard-bmg: [SKIP][375] ([Intel XE#7136]) -> [SKIP][376] ([Intel XE#7826]) +13 other tests skip [375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-5/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html [376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr.html * igt@xe_exec_fault_mode@many-multi-queue-userptr-rebind-prefetch: - shard-bmg: [SKIP][377] ([Intel XE#7826]) -> [SKIP][378] ([Intel XE#7136]) +15 other tests skip [377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@xe_exec_fault_mode@many-multi-queue-userptr-rebind-prefetch.html [378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-10/igt@xe_exec_fault_mode@many-multi-queue-userptr-rebind-prefetch.html * igt@xe_exec_system_allocator@many-stride-new-prefetch: - shard-bmg: [INCOMPLETE][379] ([Intel XE#7098]) -> [SKIP][380] ([Intel XE#7824]) [379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-10/igt@xe_exec_system_allocator@many-stride-new-prefetch.html [380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-9/igt@xe_exec_system_allocator@many-stride-new-prefetch.html * igt@xe_mmap@small-bar: - shard-bmg: [SKIP][381] ([Intel XE#7323] / [Intel XE#7384]) -> [SKIP][382] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384]) [381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f/shard-bmg-9/igt@xe_mmap@small-bar.html [382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/shard-bmg-7/igt@xe_mmap@small-bar.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [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#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1511]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1511 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548 [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2682]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2682 [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#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3297]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3297 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [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#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156 [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227 [Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4886 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100 [Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [Intel XE#5870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5870 [Intel XE#5873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5873 [Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266 [Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314 [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#6568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6568 [Intel XE#6813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6813 [Intel XE#6814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6814 [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#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7079]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7079 [Intel XE#7082]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7082 [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085 [Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086 [Intel XE#7089]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7089 [Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098 [Intel XE#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111 [Intel XE#7112]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7112 [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130 [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#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7321 [Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323 [Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348 [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349 [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#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361 [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#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375 [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383 [Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384 [Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425 [Intel XE#7428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7428 [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442 [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444 [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#7453]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7453 [Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466 [Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599 [Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7687 [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695 [Intel XE#7705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7705 [Intel XE#7725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7725 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795 [Intel XE#7809]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7809 [Intel XE#7824]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7824 [Intel XE#7825]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7825 [Intel XE#7826]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7826 [Intel XE#7827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7827 [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 ------------- * Linux: xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f -> xe-pw-164412v5 IGT_8873: a5c5d655807ead8204e01754b6434f0ecae40b96 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4935-6784fa94a98ae6fceef9c2c171c3e9fb8be6585f: 6784fa94a98ae6fceef9c2c171c3e9fb8be6585f xe-pw-164412v5: 164412v5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-164412v5/index.html [-- Attachment #2: Type: text/html, Size: 121935 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH v8 0/3] drm/xe/oa: Wa_14026633728 @ 2026-04-27 22:11 Ashutosh Dixit 2026-04-27 22:11 ` [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap Ashutosh Dixit 0 siblings, 1 reply; 16+ messages in thread From: Ashutosh Dixit @ 2026-04-27 22:11 UTC (permalink / raw) To: intel-xe v7 though v2: Change to Patch 1 (see changelog in Patch 1) v8: Change to Patch 3 (see changelog in Patch 3) Ashutosh Dixit (3): drm/xe/oa: Use xe_map layer drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap drm/xe/oa: Implement Wa_14026633728 drivers/gpu/drm/xe/xe_device_wa_oob.rules | 1 + drivers/gpu/drm/xe/xe_oa.c | 126 ++++++++++++---------- drivers/gpu/drm/xe/xe_oa_types.h | 4 +- 3 files changed, 73 insertions(+), 58 deletions(-) -- 2.54.0 ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap 2026-04-27 22:11 [PATCH v8 0/3] drm/xe/oa: Wa_14026633728 Ashutosh Dixit @ 2026-04-27 22:11 ` Ashutosh Dixit 0 siblings, 0 replies; 16+ messages in thread From: Ashutosh Dixit @ 2026-04-27 22:11 UTC (permalink / raw) To: intel-xe OA buffer mmap can currently only mmap OA buffer in system memory. CRI MERTOA buffer can be located in device memory. Switch OA buffer mmap to using drm_gem_mmap_obj, which can handle mmap's of both system and device memory buffers. Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> Reviewed-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> --- drivers/gpu/drm/xe/xe_oa.c | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_oa.c b/drivers/gpu/drm/xe/xe_oa.c index 6ded3c2fce34e..83797c9479f7c 100644 --- a/drivers/gpu/drm/xe/xe_oa.c +++ b/drivers/gpu/drm/xe/xe_oa.c @@ -9,6 +9,7 @@ #include <linux/poll.h> #include <drm/drm_drv.h> +#include <drm/drm_gem.h> #include <drm/drm_managed.h> #include <drm/drm_syncobj.h> #include <uapi/drm/xe_drm.h> @@ -902,9 +903,6 @@ static int xe_oa_alloc_oa_buffer(struct xe_oa_stream *stream, size_t size) stream->oa_buffer.bo = bo; - /* mmap implementation requires OA buffer to be in system memory */ - xe_assert(stream->oa->xe, bo->vmap.is_iomem == 0); - stream->oa_buffer.bounce = kmalloc(stream->oa_buffer.format->size, GFP_KERNEL); if (!stream->oa_buffer.bounce) { xe_bo_unpin_map_no_vm(stream->oa_buffer.bo); @@ -1692,8 +1690,6 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) { struct xe_oa_stream *stream = file->private_data; struct xe_bo *bo = stream->oa_buffer.bo; - unsigned long start = vma->vm_start; - int i, ret; if (xe_observation_paranoid && !perfmon_capable()) { drm_dbg(&stream->oa->xe->drm, "Insufficient privilege to map OA buffer\n"); @@ -1701,7 +1697,7 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) } /* Can mmap the entire OA buffer or nothing (no partial OA buffer mmaps) */ - if (vma->vm_end - vma->vm_start != xe_bo_size(stream->oa_buffer.bo)) { + if (vma->vm_end - vma->vm_start != xe_bo_size(bo)) { drm_dbg(&stream->oa->xe->drm, "Wrong mmap size, must be OA buffer size\n"); return -EINVAL; } @@ -1717,17 +1713,7 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) vm_flags_mod(vma, VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP | VM_DONTCOPY, VM_MAYWRITE | VM_MAYEXEC); - xe_assert(stream->oa->xe, bo->ttm.ttm->num_pages == vma_pages(vma)); - for (i = 0; i < bo->ttm.ttm->num_pages; i++) { - ret = remap_pfn_range(vma, start, page_to_pfn(bo->ttm.ttm->pages[i]), - PAGE_SIZE, vma->vm_page_prot); - if (ret) - break; - - start += PAGE_SIZE; - } - - return ret; + return drm_gem_mmap_obj(&bo->ttm.base, xe_bo_size(bo), vma); } static const struct file_operations xe_oa_fops = { -- 2.54.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH v7 0/3] drm/xe/oa: Wa_14026633728 @ 2026-04-27 20:26 Ashutosh Dixit 2026-04-27 20:26 ` [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap Ashutosh Dixit 0 siblings, 1 reply; 16+ messages in thread From: Ashutosh Dixit @ 2026-04-27 20:26 UTC (permalink / raw) To: intel-xe; +Cc: Umesh Nerlige Ramappa v7 though v2: Change to Patch 1 (see changelog in Patch 1) Ashutosh Dixit (3): drm/xe/oa: Use xe_map layer drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap drm/xe/oa: Implement Wa_14026633728 drivers/gpu/drm/xe/xe_oa.c | 125 ++++++++++++++++------------- drivers/gpu/drm/xe/xe_oa_types.h | 4 +- drivers/gpu/drm/xe/xe_wa_oob.rules | 1 + 3 files changed, 72 insertions(+), 58 deletions(-) -- 2.54.0 ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap 2026-04-27 20:26 [PATCH v7 0/3] drm/xe/oa: Wa_14026633728 Ashutosh Dixit @ 2026-04-27 20:26 ` Ashutosh Dixit 0 siblings, 0 replies; 16+ messages in thread From: Ashutosh Dixit @ 2026-04-27 20:26 UTC (permalink / raw) To: intel-xe; +Cc: Umesh Nerlige Ramappa OA buffer mmap can currently only mmap OA buffer in system memory. CRI MERTOA buffer can be located in device memory. Switch OA buffer mmap to using drm_gem_mmap_obj, which can handle mmap's of both system and device memory buffers. Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> Reviewed-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> --- drivers/gpu/drm/xe/xe_oa.c | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_oa.c b/drivers/gpu/drm/xe/xe_oa.c index 6ded3c2fce34e..83797c9479f7c 100644 --- a/drivers/gpu/drm/xe/xe_oa.c +++ b/drivers/gpu/drm/xe/xe_oa.c @@ -9,6 +9,7 @@ #include <linux/poll.h> #include <drm/drm_drv.h> +#include <drm/drm_gem.h> #include <drm/drm_managed.h> #include <drm/drm_syncobj.h> #include <uapi/drm/xe_drm.h> @@ -902,9 +903,6 @@ static int xe_oa_alloc_oa_buffer(struct xe_oa_stream *stream, size_t size) stream->oa_buffer.bo = bo; - /* mmap implementation requires OA buffer to be in system memory */ - xe_assert(stream->oa->xe, bo->vmap.is_iomem == 0); - stream->oa_buffer.bounce = kmalloc(stream->oa_buffer.format->size, GFP_KERNEL); if (!stream->oa_buffer.bounce) { xe_bo_unpin_map_no_vm(stream->oa_buffer.bo); @@ -1692,8 +1690,6 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) { struct xe_oa_stream *stream = file->private_data; struct xe_bo *bo = stream->oa_buffer.bo; - unsigned long start = vma->vm_start; - int i, ret; if (xe_observation_paranoid && !perfmon_capable()) { drm_dbg(&stream->oa->xe->drm, "Insufficient privilege to map OA buffer\n"); @@ -1701,7 +1697,7 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) } /* Can mmap the entire OA buffer or nothing (no partial OA buffer mmaps) */ - if (vma->vm_end - vma->vm_start != xe_bo_size(stream->oa_buffer.bo)) { + if (vma->vm_end - vma->vm_start != xe_bo_size(bo)) { drm_dbg(&stream->oa->xe->drm, "Wrong mmap size, must be OA buffer size\n"); return -EINVAL; } @@ -1717,17 +1713,7 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) vm_flags_mod(vma, VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP | VM_DONTCOPY, VM_MAYWRITE | VM_MAYEXEC); - xe_assert(stream->oa->xe, bo->ttm.ttm->num_pages == vma_pages(vma)); - for (i = 0; i < bo->ttm.ttm->num_pages; i++) { - ret = remap_pfn_range(vma, start, page_to_pfn(bo->ttm.ttm->pages[i]), - PAGE_SIZE, vma->vm_page_prot); - if (ret) - break; - - start += PAGE_SIZE; - } - - return ret; + return drm_gem_mmap_obj(&bo->ttm.base, xe_bo_size(bo), vma); } static const struct file_operations xe_oa_fops = { -- 2.54.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH v6 0/3] drm/xe/oa: Wa_14026633728 @ 2026-04-27 19:02 Ashutosh Dixit 2026-04-27 19:02 ` [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap Ashutosh Dixit 0 siblings, 1 reply; 16+ messages in thread From: Ashutosh Dixit @ 2026-04-27 19:02 UTC (permalink / raw) To: intel-xe; +Cc: Umesh Nerlige Ramappa v6 though v2: Change to Patch 1 (see changelog in Patch 1) Ashutosh Dixit (3): drm/xe/oa: Use xe_map layer drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap drm/xe/oa: Implement Wa_14026633728 drivers/gpu/drm/xe/xe_oa.c | 123 ++++++++++++++++------------- drivers/gpu/drm/xe/xe_oa_types.h | 4 +- drivers/gpu/drm/xe/xe_wa_oob.rules | 1 + 3 files changed, 70 insertions(+), 58 deletions(-) -- 2.54.0 ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap 2026-04-27 19:02 [PATCH v6 0/3] drm/xe/oa: Wa_14026633728 Ashutosh Dixit @ 2026-04-27 19:02 ` Ashutosh Dixit 0 siblings, 0 replies; 16+ messages in thread From: Ashutosh Dixit @ 2026-04-27 19:02 UTC (permalink / raw) To: intel-xe; +Cc: Umesh Nerlige Ramappa OA buffer mmap can currently only mmap OA buffer in system memory. CRI MERTOA buffer can be located in device memory. Switch OA buffer mmap to using drm_gem_mmap_obj, which can handle mmap's of both system and device memory buffers. Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> Reviewed-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> --- drivers/gpu/drm/xe/xe_oa.c | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_oa.c b/drivers/gpu/drm/xe/xe_oa.c index 1fff0e8e9e78e..d3994ae8bc82d 100644 --- a/drivers/gpu/drm/xe/xe_oa.c +++ b/drivers/gpu/drm/xe/xe_oa.c @@ -9,6 +9,7 @@ #include <linux/poll.h> #include <drm/drm_drv.h> +#include <drm/drm_gem.h> #include <drm/drm_managed.h> #include <drm/drm_syncobj.h> #include <uapi/drm/xe_drm.h> @@ -900,9 +901,6 @@ static int xe_oa_alloc_oa_buffer(struct xe_oa_stream *stream, size_t size) stream->oa_buffer.bo = bo; - /* mmap implementation requires OA buffer to be in system memory */ - xe_assert(stream->oa->xe, bo->vmap.is_iomem == 0); - stream->oa_buffer.bounce = kmalloc(stream->oa_buffer.format->size, GFP_KERNEL); if (!stream->oa_buffer.bounce) { xe_bo_unpin_map_no_vm(stream->oa_buffer.bo); @@ -1690,8 +1688,6 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) { struct xe_oa_stream *stream = file->private_data; struct xe_bo *bo = stream->oa_buffer.bo; - unsigned long start = vma->vm_start; - int i, ret; if (xe_observation_paranoid && !perfmon_capable()) { drm_dbg(&stream->oa->xe->drm, "Insufficient privilege to map OA buffer\n"); @@ -1699,7 +1695,7 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) } /* Can mmap the entire OA buffer or nothing (no partial OA buffer mmaps) */ - if (vma->vm_end - vma->vm_start != xe_bo_size(stream->oa_buffer.bo)) { + if (vma->vm_end - vma->vm_start != xe_bo_size(bo)) { drm_dbg(&stream->oa->xe->drm, "Wrong mmap size, must be OA buffer size\n"); return -EINVAL; } @@ -1715,17 +1711,7 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) vm_flags_mod(vma, VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP | VM_DONTCOPY, VM_MAYWRITE | VM_MAYEXEC); - xe_assert(stream->oa->xe, bo->ttm.ttm->num_pages == vma_pages(vma)); - for (i = 0; i < bo->ttm.ttm->num_pages; i++) { - ret = remap_pfn_range(vma, start, page_to_pfn(bo->ttm.ttm->pages[i]), - PAGE_SIZE, vma->vm_page_prot); - if (ret) - break; - - start += PAGE_SIZE; - } - - return ret; + return drm_gem_mmap_obj(&bo->ttm.base, xe_bo_size(bo), vma); } static const struct file_operations xe_oa_fops = { -- 2.54.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH v4 0/3] drm/xe/oa: Wa_14026633728 @ 2026-04-15 2:03 Ashutosh Dixit 2026-04-15 2:03 ` [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap Ashutosh Dixit 0 siblings, 1 reply; 16+ messages in thread From: Ashutosh Dixit @ 2026-04-15 2:03 UTC (permalink / raw) To: intel-xe; +Cc: Umesh Nerlige Ramappa v4: Change to Patch 1 again (see changelog in Patch 1) v3: Change to Patch 1 again (see changelog in Patch 1) v2: Change to Patch 1 Ashutosh Dixit (3): drm/xe/oa: Use xe_map layer drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap drm/xe/oa: Implement Wa_14026633728 drivers/gpu/drm/xe/xe_oa.c | 123 ++++++++++++++++------------- drivers/gpu/drm/xe/xe_oa_types.h | 4 +- drivers/gpu/drm/xe/xe_wa_oob.rules | 1 + 3 files changed, 70 insertions(+), 58 deletions(-) -- 2.48.1 ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap 2026-04-15 2:03 [PATCH v4 0/3] drm/xe/oa: Wa_14026633728 Ashutosh Dixit @ 2026-04-15 2:03 ` Ashutosh Dixit 0 siblings, 0 replies; 16+ messages in thread From: Ashutosh Dixit @ 2026-04-15 2:03 UTC (permalink / raw) To: intel-xe; +Cc: Umesh Nerlige Ramappa OA buffer mmap can currently only mmap OA buffer in system memory. CRI MERTOA buffer can be located in device memory. Switch OA buffer mmap to using drm_gem_mmap_obj, which can handle mmap's of both system and device memory buffers. Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> Reviewed-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> --- drivers/gpu/drm/xe/xe_oa.c | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_oa.c b/drivers/gpu/drm/xe/xe_oa.c index 4d13d8ef8103f..5b8a9bd26770c 100644 --- a/drivers/gpu/drm/xe/xe_oa.c +++ b/drivers/gpu/drm/xe/xe_oa.c @@ -9,6 +9,7 @@ #include <linux/poll.h> #include <drm/drm_drv.h> +#include <drm/drm_gem.h> #include <drm/drm_managed.h> #include <drm/drm_syncobj.h> #include <uapi/drm/xe_drm.h> @@ -900,9 +901,6 @@ static int xe_oa_alloc_oa_buffer(struct xe_oa_stream *stream, size_t size) stream->oa_buffer.bo = bo; - /* mmap implementation requires OA buffer to be in system memory */ - xe_assert(stream->oa->xe, bo->vmap.is_iomem == 0); - stream->oa_buffer.bounce = kmalloc(stream->oa_buffer.format->size, GFP_KERNEL); if (!stream->oa_buffer.bounce) { xe_bo_unpin_map_no_vm(stream->oa_buffer.bo); @@ -1690,8 +1688,6 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) { struct xe_oa_stream *stream = file->private_data; struct xe_bo *bo = stream->oa_buffer.bo; - unsigned long start = vma->vm_start; - int i, ret; if (xe_observation_paranoid && !perfmon_capable()) { drm_dbg(&stream->oa->xe->drm, "Insufficient privilege to map OA buffer\n"); @@ -1699,7 +1695,7 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) } /* Can mmap the entire OA buffer or nothing (no partial OA buffer mmaps) */ - if (vma->vm_end - vma->vm_start != xe_bo_size(stream->oa_buffer.bo)) { + if (vma->vm_end - vma->vm_start != xe_bo_size(bo)) { drm_dbg(&stream->oa->xe->drm, "Wrong mmap size, must be OA buffer size\n"); return -EINVAL; } @@ -1715,17 +1711,7 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) vm_flags_mod(vma, VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP | VM_DONTCOPY, VM_MAYWRITE | VM_MAYEXEC); - xe_assert(stream->oa->xe, bo->ttm.ttm->num_pages == vma_pages(vma)); - for (i = 0; i < bo->ttm.ttm->num_pages; i++) { - ret = remap_pfn_range(vma, start, page_to_pfn(bo->ttm.ttm->pages[i]), - PAGE_SIZE, vma->vm_page_prot); - if (ret) - break; - - start += PAGE_SIZE; - } - - return ret; + return drm_gem_mmap_obj(&bo->ttm.base, xe_bo_size(bo), vma); } static const struct file_operations xe_oa_fops = { -- 2.48.1 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH v3 0/3] drm/xe/oa: Wa_14026633728 @ 2026-04-11 0:48 Ashutosh Dixit 2026-04-11 0:48 ` [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap Ashutosh Dixit 0 siblings, 1 reply; 16+ messages in thread From: Ashutosh Dixit @ 2026-04-11 0:48 UTC (permalink / raw) To: intel-xe; +Cc: Umesh Nerlige Ramappa v3: Change to Patch 1 again (see changelog in Patch 1) v2: Change to Patch 1 Ashutosh Dixit (3): drm/xe/oa: Use xe_map layer drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap drm/xe/oa: Implement Wa_14026633728 drivers/gpu/drm/xe/xe_map.h | 14 ++++ drivers/gpu/drm/xe/xe_oa.c | 109 ++++++++++++++--------------- drivers/gpu/drm/xe/xe_oa_types.h | 3 - drivers/gpu/drm/xe/xe_wa_oob.rules | 1 + 4 files changed, 68 insertions(+), 59 deletions(-) -- 2.48.1 ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap 2026-04-11 0:48 [PATCH v3 0/3] drm/xe/oa: Wa_14026633728 Ashutosh Dixit @ 2026-04-11 0:48 ` Ashutosh Dixit 0 siblings, 0 replies; 16+ messages in thread From: Ashutosh Dixit @ 2026-04-11 0:48 UTC (permalink / raw) To: intel-xe; +Cc: Umesh Nerlige Ramappa OA buffer mmap can currently only mmap OA buffer in system memory. CRI MERTOA buffer can be located in device memory. Switch OA buffer mmap to using drm_gem_mmap_obj, which can handle mmap's of both system and device memory buffers. Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> Reviewed-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> --- drivers/gpu/drm/xe/xe_oa.c | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_oa.c b/drivers/gpu/drm/xe/xe_oa.c index d25beb6ac6040..7ada6e2a0d955 100644 --- a/drivers/gpu/drm/xe/xe_oa.c +++ b/drivers/gpu/drm/xe/xe_oa.c @@ -9,6 +9,7 @@ #include <linux/poll.h> #include <drm/drm_drv.h> +#include <drm/drm_gem.h> #include <drm/drm_managed.h> #include <drm/drm_syncobj.h> #include <uapi/drm/xe_drm.h> @@ -892,8 +893,6 @@ static int xe_oa_alloc_oa_buffer(struct xe_oa_stream *stream, size_t size) return PTR_ERR(bo); stream->oa_buffer.bo = bo; - /* mmap implementation requires OA buffer to be in system memory */ - xe_assert(stream->oa->xe, bo->vmap.is_iomem == 0); return 0; } @@ -1675,8 +1674,6 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) { struct xe_oa_stream *stream = file->private_data; struct xe_bo *bo = stream->oa_buffer.bo; - unsigned long start = vma->vm_start; - int i, ret; if (xe_observation_paranoid && !perfmon_capable()) { drm_dbg(&stream->oa->xe->drm, "Insufficient privilege to map OA buffer\n"); @@ -1684,7 +1681,7 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) } /* Can mmap the entire OA buffer or nothing (no partial OA buffer mmaps) */ - if (vma->vm_end - vma->vm_start != xe_bo_size(stream->oa_buffer.bo)) { + if (vma->vm_end - vma->vm_start != xe_bo_size(bo)) { drm_dbg(&stream->oa->xe->drm, "Wrong mmap size, must be OA buffer size\n"); return -EINVAL; } @@ -1700,17 +1697,7 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) vm_flags_mod(vma, VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP | VM_DONTCOPY, VM_MAYWRITE | VM_MAYEXEC); - xe_assert(stream->oa->xe, bo->ttm.ttm->num_pages == vma_pages(vma)); - for (i = 0; i < bo->ttm.ttm->num_pages; i++) { - ret = remap_pfn_range(vma, start, page_to_pfn(bo->ttm.ttm->pages[i]), - PAGE_SIZE, vma->vm_page_prot); - if (ret) - break; - - start += PAGE_SIZE; - } - - return ret; + return drm_gem_mmap_obj(&bo->ttm.base, xe_bo_size(bo), vma); } static const struct file_operations xe_oa_fops = { -- 2.48.1 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH v2 0/3] drm/xe/oa: Wa_14026633728 @ 2026-04-09 23:17 Ashutosh Dixit 2026-04-09 23:17 ` [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap Ashutosh Dixit 0 siblings, 1 reply; 16+ messages in thread From: Ashutosh Dixit @ 2026-04-09 23:17 UTC (permalink / raw) To: intel-xe; +Cc: Umesh Nerlige Ramappa v2: Change to Patch 1 Ashutosh Dixit (3): drm/xe/oa: Use xe_map layer drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap drm/xe/oa: Implement Wa_14026633728 drivers/gpu/drm/xe/xe_oa.c | 127 ++++++++++++++++------------- drivers/gpu/drm/xe/xe_oa_types.h | 3 - drivers/gpu/drm/xe/xe_wa_oob.rules | 1 + 3 files changed, 72 insertions(+), 59 deletions(-) -- 2.48.1 ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap 2026-04-09 23:17 [PATCH v2 0/3] drm/xe/oa: Wa_14026633728 Ashutosh Dixit @ 2026-04-09 23:17 ` Ashutosh Dixit 0 siblings, 0 replies; 16+ messages in thread From: Ashutosh Dixit @ 2026-04-09 23:17 UTC (permalink / raw) To: intel-xe; +Cc: Umesh Nerlige Ramappa OA buffer mmap can currently only mmap OA buffer in system memory. CRI MERTOA buffer can be located in device memory. Switch OA buffer mmap to using drm_gem_mmap_obj, which can handle mmap's of both system and device memory buffers. Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> Reviewed-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> --- drivers/gpu/drm/xe/xe_oa.c | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_oa.c b/drivers/gpu/drm/xe/xe_oa.c index ff2ddec8ffa65..b24aae055c7df 100644 --- a/drivers/gpu/drm/xe/xe_oa.c +++ b/drivers/gpu/drm/xe/xe_oa.c @@ -9,6 +9,7 @@ #include <linux/poll.h> #include <drm/drm_drv.h> +#include <drm/drm_gem.h> #include <drm/drm_managed.h> #include <drm/drm_syncobj.h> #include <uapi/drm/xe_drm.h> @@ -910,8 +911,6 @@ static int xe_oa_alloc_oa_buffer(struct xe_oa_stream *stream, size_t size) return PTR_ERR(bo); stream->oa_buffer.bo = bo; - /* mmap implementation requires OA buffer to be in system memory */ - xe_assert(stream->oa->xe, bo->vmap.is_iomem == 0); return 0; } @@ -1693,8 +1692,6 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) { struct xe_oa_stream *stream = file->private_data; struct xe_bo *bo = stream->oa_buffer.bo; - unsigned long start = vma->vm_start; - int i, ret; if (xe_observation_paranoid && !perfmon_capable()) { drm_dbg(&stream->oa->xe->drm, "Insufficient privilege to map OA buffer\n"); @@ -1702,7 +1699,7 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) } /* Can mmap the entire OA buffer or nothing (no partial OA buffer mmaps) */ - if (vma->vm_end - vma->vm_start != xe_bo_size(stream->oa_buffer.bo)) { + if (vma->vm_end - vma->vm_start != xe_bo_size(bo)) { drm_dbg(&stream->oa->xe->drm, "Wrong mmap size, must be OA buffer size\n"); return -EINVAL; } @@ -1718,17 +1715,7 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) vm_flags_mod(vma, VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP | VM_DONTCOPY, VM_MAYWRITE | VM_MAYEXEC); - xe_assert(stream->oa->xe, bo->ttm.ttm->num_pages == vma_pages(vma)); - for (i = 0; i < bo->ttm.ttm->num_pages; i++) { - ret = remap_pfn_range(vma, start, page_to_pfn(bo->ttm.ttm->pages[i]), - PAGE_SIZE, vma->vm_page_prot); - if (ret) - break; - - start += PAGE_SIZE; - } - - return ret; + return drm_gem_mmap_obj(&bo->ttm.base, xe_bo_size(bo), vma); } static const struct file_operations xe_oa_fops = { -- 2.48.1 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* [PATCH 0/3] drm/xe/oa: Wa_14026633728 @ 2026-04-07 3:02 Ashutosh Dixit 2026-04-07 3:02 ` [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap Ashutosh Dixit 0 siblings, 1 reply; 16+ messages in thread From: Ashutosh Dixit @ 2026-04-07 3:02 UTC (permalink / raw) To: intel-xe; +Cc: Umesh Nerlige Ramappa Ashutosh Dixit (3): drm/xe/oa: Use xe_map layer drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap drm/xe/oa: Implement Wa_14026633728 drivers/gpu/drm/xe/xe_oa.c | 117 +++++++++++++++-------------- drivers/gpu/drm/xe/xe_oa_types.h | 3 - drivers/gpu/drm/xe/xe_wa_oob.rules | 1 + 3 files changed, 62 insertions(+), 59 deletions(-) -- 2.48.1 ^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap 2026-04-07 3:02 [PATCH 0/3] drm/xe/oa: Wa_14026633728 Ashutosh Dixit @ 2026-04-07 3:02 ` Ashutosh Dixit 2026-04-07 22:52 ` Umesh Nerlige Ramappa 0 siblings, 1 reply; 16+ messages in thread From: Ashutosh Dixit @ 2026-04-07 3:02 UTC (permalink / raw) To: intel-xe; +Cc: Umesh Nerlige Ramappa OA buffer mmap can currently only mmap OA buffer in system memory. CRI MERTOA buffer can be located in device memory. Switch OA buffer mmap to using drm_gem_mmap_obj, which can handle mmap's of both system and device memory buffers. Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> --- drivers/gpu/drm/xe/xe_oa.c | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_oa.c b/drivers/gpu/drm/xe/xe_oa.c index dfd3b6a789cc3..0e65141e57ee8 100644 --- a/drivers/gpu/drm/xe/xe_oa.c +++ b/drivers/gpu/drm/xe/xe_oa.c @@ -9,6 +9,7 @@ #include <linux/poll.h> #include <drm/drm_drv.h> +#include <drm/drm_gem.h> #include <drm/drm_managed.h> #include <drm/drm_syncobj.h> #include <uapi/drm/xe_drm.h> @@ -900,8 +901,6 @@ static int xe_oa_alloc_oa_buffer(struct xe_oa_stream *stream, size_t size) return PTR_ERR(bo); stream->oa_buffer.bo = bo; - /* mmap implementation requires OA buffer to be in system memory */ - xe_assert(stream->oa->xe, bo->vmap.is_iomem == 0); return 0; } @@ -1683,8 +1682,6 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) { struct xe_oa_stream *stream = file->private_data; struct xe_bo *bo = stream->oa_buffer.bo; - unsigned long start = vma->vm_start; - int i, ret; if (xe_observation_paranoid && !perfmon_capable()) { drm_dbg(&stream->oa->xe->drm, "Insufficient privilege to map OA buffer\n"); @@ -1692,7 +1689,7 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) } /* Can mmap the entire OA buffer or nothing (no partial OA buffer mmaps) */ - if (vma->vm_end - vma->vm_start != xe_bo_size(stream->oa_buffer.bo)) { + if (vma->vm_end - vma->vm_start != xe_bo_size(bo)) { drm_dbg(&stream->oa->xe->drm, "Wrong mmap size, must be OA buffer size\n"); return -EINVAL; } @@ -1708,17 +1705,7 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) vm_flags_mod(vma, VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP | VM_DONTCOPY, VM_MAYWRITE | VM_MAYEXEC); - xe_assert(stream->oa->xe, bo->ttm.ttm->num_pages == vma_pages(vma)); - for (i = 0; i < bo->ttm.ttm->num_pages; i++) { - ret = remap_pfn_range(vma, start, page_to_pfn(bo->ttm.ttm->pages[i]), - PAGE_SIZE, vma->vm_page_prot); - if (ret) - break; - - start += PAGE_SIZE; - } - - return ret; + return drm_gem_mmap_obj(&bo->ttm.base, xe_bo_size(bo), vma); } static const struct file_operations xe_oa_fops = { -- 2.48.1 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap 2026-04-07 3:02 ` [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap Ashutosh Dixit @ 2026-04-07 22:52 ` Umesh Nerlige Ramappa 0 siblings, 0 replies; 16+ messages in thread From: Umesh Nerlige Ramappa @ 2026-04-07 22:52 UTC (permalink / raw) To: Ashutosh Dixit; +Cc: intel-xe On Mon, Apr 06, 2026 at 08:02:18PM -0700, Ashutosh Dixit wrote: >OA buffer mmap can currently only mmap OA buffer in system memory. CRI >MERTOA buffer can be located in device memory. Switch OA buffer mmap to >using drm_gem_mmap_obj, which can handle mmap's of both system and device >memory buffers. > >Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> If it works for both types of memory, then this looks better than before, Reviewed-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> Thanks, Umesh >--- > drivers/gpu/drm/xe/xe_oa.c | 19 +++---------------- > 1 file changed, 3 insertions(+), 16 deletions(-) > >diff --git a/drivers/gpu/drm/xe/xe_oa.c b/drivers/gpu/drm/xe/xe_oa.c >index dfd3b6a789cc3..0e65141e57ee8 100644 >--- a/drivers/gpu/drm/xe/xe_oa.c >+++ b/drivers/gpu/drm/xe/xe_oa.c >@@ -9,6 +9,7 @@ > #include <linux/poll.h> > > #include <drm/drm_drv.h> >+#include <drm/drm_gem.h> > #include <drm/drm_managed.h> > #include <drm/drm_syncobj.h> > #include <uapi/drm/xe_drm.h> >@@ -900,8 +901,6 @@ static int xe_oa_alloc_oa_buffer(struct xe_oa_stream *stream, size_t size) > return PTR_ERR(bo); > > stream->oa_buffer.bo = bo; >- /* mmap implementation requires OA buffer to be in system memory */ >- xe_assert(stream->oa->xe, bo->vmap.is_iomem == 0); > return 0; > } > >@@ -1683,8 +1682,6 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) > { > struct xe_oa_stream *stream = file->private_data; > struct xe_bo *bo = stream->oa_buffer.bo; >- unsigned long start = vma->vm_start; >- int i, ret; > > if (xe_observation_paranoid && !perfmon_capable()) { > drm_dbg(&stream->oa->xe->drm, "Insufficient privilege to map OA buffer\n"); >@@ -1692,7 +1689,7 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) > } > > /* Can mmap the entire OA buffer or nothing (no partial OA buffer mmaps) */ >- if (vma->vm_end - vma->vm_start != xe_bo_size(stream->oa_buffer.bo)) { >+ if (vma->vm_end - vma->vm_start != xe_bo_size(bo)) { > drm_dbg(&stream->oa->xe->drm, "Wrong mmap size, must be OA buffer size\n"); > return -EINVAL; > } >@@ -1708,17 +1705,7 @@ static int xe_oa_mmap(struct file *file, struct vm_area_struct *vma) > vm_flags_mod(vma, VM_PFNMAP | VM_DONTEXPAND | VM_DONTDUMP | VM_DONTCOPY, > VM_MAYWRITE | VM_MAYEXEC); > >- xe_assert(stream->oa->xe, bo->ttm.ttm->num_pages == vma_pages(vma)); >- for (i = 0; i < bo->ttm.ttm->num_pages; i++) { >- ret = remap_pfn_range(vma, start, page_to_pfn(bo->ttm.ttm->pages[i]), >- PAGE_SIZE, vma->vm_page_prot); >- if (ret) >- break; >- >- start += PAGE_SIZE; >- } >- >- return ret; >+ return drm_gem_mmap_obj(&bo->ttm.base, xe_bo_size(bo), vma); > } > > static const struct file_operations xe_oa_fops = { >-- >2.48.1 > ^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2026-04-27 22:11 UTC | newest] Thread overview: 16+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-04-25 0:14 [PATCH v5 0/3] drm/xe/oa: Wa_14026633728 Ashutosh Dixit 2026-04-25 0:14 ` [PATCH 1/3] drm/xe/oa: Use xe_map layer Ashutosh Dixit 2026-04-27 19:23 ` Umesh Nerlige Ramappa 2026-04-25 0:14 ` [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap Ashutosh Dixit 2026-04-25 0:14 ` [PATCH 3/3] drm/xe/oa: Implement Wa_14026633728 Ashutosh Dixit 2026-04-25 0:21 ` ✓ CI.KUnit: success for drm/xe/oa: Wa_14026633728 (rev5) Patchwork 2026-04-25 1:14 ` ✓ Xe.CI.BAT: " Patchwork 2026-04-25 2:18 ` ✗ Xe.CI.FULL: failure " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2026-04-27 22:11 [PATCH v8 0/3] drm/xe/oa: Wa_14026633728 Ashutosh Dixit 2026-04-27 22:11 ` [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap Ashutosh Dixit 2026-04-27 20:26 [PATCH v7 0/3] drm/xe/oa: Wa_14026633728 Ashutosh Dixit 2026-04-27 20:26 ` [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap Ashutosh Dixit 2026-04-27 19:02 [PATCH v6 0/3] drm/xe/oa: Wa_14026633728 Ashutosh Dixit 2026-04-27 19:02 ` [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap Ashutosh Dixit 2026-04-15 2:03 [PATCH v4 0/3] drm/xe/oa: Wa_14026633728 Ashutosh Dixit 2026-04-15 2:03 ` [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap Ashutosh Dixit 2026-04-11 0:48 [PATCH v3 0/3] drm/xe/oa: Wa_14026633728 Ashutosh Dixit 2026-04-11 0:48 ` [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap Ashutosh Dixit 2026-04-09 23:17 [PATCH v2 0/3] drm/xe/oa: Wa_14026633728 Ashutosh Dixit 2026-04-09 23:17 ` [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap Ashutosh Dixit 2026-04-07 3:02 [PATCH 0/3] drm/xe/oa: Wa_14026633728 Ashutosh Dixit 2026-04-07 3:02 ` [PATCH 2/3] drm/xe/oa: Use drm_gem_mmap_obj for OA buffer mmap Ashutosh Dixit 2026-04-07 22:52 ` Umesh Nerlige Ramappa
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox