* [PATCH v2 i-g-t] lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format
@ 2026-04-16 18:48 Ashutosh Dixit
2026-04-17 0:52 ` ✓ i915.CI.BAT: success for lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format (rev2) Patchwork
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Ashutosh Dixit @ 2026-04-16 18:48 UTC (permalink / raw)
To: igt-dev; +Cc: Shekhar Chauhan
Support for CRI 192B_MPEC8LL_NOA16 OAM format was previously missed
out. Add it.
v2: Fix B/C counter accumulation (Shekhar C)
Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
---
lib/xe/oa-configs/oa-metricset-codegen.py | 13 +++++++++++-
lib/xe/xe_oa.c | 24 +++++++++++++++++++++++
2 files changed, 36 insertions(+), 1 deletion(-)
diff --git a/lib/xe/oa-configs/oa-metricset-codegen.py b/lib/xe/oa-configs/oa-metricset-codegen.py
index c5c7a2c8d4..b44d4d73af 100644
--- a/lib/xe/oa-configs/oa-metricset-codegen.py
+++ b/lib/xe/oa-configs/oa-metricset-codegen.py
@@ -139,7 +139,7 @@ def generate_metric_sets(args, gen):
metric_set->perfcnt_offset = metric_set->c_offset + 8;
"""))
elif gen.chipset == "lnl" or gen.chipset == "bmg" or gen.chipset == "ptl" or gen.chipset == "cri":
- # See intel_xe_perf_accumulate_reports for the offsets
+ # See intel_xe_perf_accumulate_reports for the offsets (value of idx variable)
if set.oa_format == "128B_MPEC8_NOA16" or set.oa_format == "128B_MERT_PEC8":
c(textwrap.dedent("""\
metric_set->perf_oa_format = XE_OAM_FORMAT_MPEC8u32_B8_C8;
@@ -151,6 +151,17 @@ def generate_metric_sets(args, gen):
metric_set->b_offset = metric_set->pec_offset + 8;
metric_set->c_offset = metric_set->b_offset + 8;
"""))
+ elif set.oa_format == "192B_MPEC8LL_NOA16":
+ c(textwrap.dedent("""\
+ metric_set->perf_oa_format = XE_OAM_FORMAT_MPEC8u64_B8_C8;
+
+ metric_set->perf_raw_size = 192;
+ metric_set->gpu_time_offset = 0;
+ metric_set->gpu_clock_offset = 1;
+ metric_set->pec_offset = 2;
+ metric_set->b_offset = metric_set->pec_offset + 8;
+ metric_set->c_offset = metric_set->b_offset + 8;
+ """))
else:
c(textwrap.dedent("""\
metric_set->perf_oa_format = XE_OA_FORMAT_PEC64u64;
diff --git a/lib/xe/xe_oa.c b/lib/xe/xe_oa.c
index b2f447c944..b7be64cc3f 100644
--- a/lib/xe/xe_oa.c
+++ b/lib/xe/xe_oa.c
@@ -875,6 +875,30 @@ void intel_xe_perf_accumulate_reports(struct intel_xe_perf_accumulator *acc,
break;
+ case XE_OAM_FORMAT_MPEC8u64_B8_C8:
+ /* 64 bit timestamp */
+ if (perf->devinfo.oa_timestamp_shift >= 0)
+ deltas[idx++] += (end64[1] - start64[1]) << perf->devinfo.oa_timestamp_shift;
+ else
+ deltas[idx++] += (end64[1] - start64[1]) >> (-perf->devinfo.oa_timestamp_shift);
+
+ /* 64 bit clock */
+ deltas[idx++] += end64[3] - start64[3];
+
+ /* 8x 64bit MPEC counters */
+ for (i = 0; i < 8; i++)
+ deltas[idx++] += end64[4 + i] - start64[4 + i];
+
+ /* 8x 32bit B counters */
+ for (i = 0; i < 8; i++)
+ accumulate_uint32(start + 24 + i, end + 24 + i, deltas + idx++);
+
+ /* 8x 32bit C counters */
+ for (i = 0; i < 8; i++)
+ accumulate_uint32(start + 32 + i, end + 32 + i, deltas + idx++);
+
+ break;
+
case XE_OA_FORMAT_PEC64u64:
/* 64 bit timestamp */
if (perf->devinfo.oa_timestamp_shift >= 0)
--
2.48.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* ✓ i915.CI.BAT: success for lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format (rev2)
2026-04-16 18:48 [PATCH v2 i-g-t] lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format Ashutosh Dixit
@ 2026-04-17 0:52 ` Patchwork
2026-04-17 1:03 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-04-17 0:52 UTC (permalink / raw)
To: Dixit, Ashutosh; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2841 bytes --]
== Series Details ==
Series: lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format (rev2)
URL : https://patchwork.freedesktop.org/series/164949/
State : success
== Summary ==
CI Bug Log - changes from IGT_8863 -> IGTPW_15003
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15003/index.html
Participating hosts (42 -> 40)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_15003 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- fi-skl-6600u: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15003/fi-skl-6600u/igt@dmabuf@all-tests.html
* igt@i915_selftest@live:
- bat-dg2-8: [PASS][2] -> [DMESG-FAIL][3] ([i915#12061]) +1 other test dmesg-fail
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8863/bat-dg2-8/igt@i915_selftest@live.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15003/bat-dg2-8/igt@i915_selftest@live.html
#### Possible fixes ####
* igt@i915_selftest@live:
- fi-skl-6600u: [INCOMPLETE][4] ([i915#15859]) -> [PASS][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8863/fi-skl-6600u/igt@i915_selftest@live.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15003/fi-skl-6600u/igt@i915_selftest@live.html
* igt@i915_selftest@live@gtt:
- fi-skl-6600u: [INCOMPLETE][6] -> [PASS][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8863/fi-skl-6600u/igt@i915_selftest@live@gtt.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15003/fi-skl-6600u/igt@i915_selftest@live@gtt.html
* igt@i915_selftest@live@workarounds:
- bat-arls-6: [DMESG-FAIL][8] ([i915#12061]) -> [PASS][9] +1 other test pass
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8863/bat-arls-6/igt@i915_selftest@live@workarounds.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15003/bat-arls-6/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#15859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15859
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8863 -> IGTPW_15003
CI-20190529: 20190529
CI_DRM_18347: 2a1c604bebed8cbbe6aea00f761777eed424dc55 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15003: 7a8aa37bb00ecab84cd82e97c42313075b63a0cc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8863: 5b279a8b71dc1672099205a1a9e8135c7c7fadb5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15003/index.html
[-- Attachment #2: Type: text/html, Size: 3639 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread* ✓ Xe.CI.BAT: success for lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format (rev2)
2026-04-16 18:48 [PATCH v2 i-g-t] lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format Ashutosh Dixit
2026-04-17 0:52 ` ✓ i915.CI.BAT: success for lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format (rev2) Patchwork
@ 2026-04-17 1:03 ` Patchwork
2026-04-17 2:09 ` [PATCH v2 i-g-t] lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format Shekhar Chauhan
2026-04-17 3:50 ` ✓ Xe.CI.FULL: success for lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format (rev2) Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-04-17 1:03 UTC (permalink / raw)
To: Dixit, Ashutosh; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1179 bytes --]
== Series Details ==
Series: lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format (rev2)
URL : https://patchwork.freedesktop.org/series/164949/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8863_BAT -> XEIGTPW_15003_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8863 -> IGTPW_15003
* Linux: xe-4917-ff84b38d86b994ebb03d940be1c73a63e231f454 -> xe-4918-2a1c604bebed8cbbe6aea00f761777eed424dc55
IGTPW_15003: 7a8aa37bb00ecab84cd82e97c42313075b63a0cc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8863: 5b279a8b71dc1672099205a1a9e8135c7c7fadb5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4917-ff84b38d86b994ebb03d940be1c73a63e231f454: ff84b38d86b994ebb03d940be1c73a63e231f454
xe-4918-2a1c604bebed8cbbe6aea00f761777eed424dc55: 2a1c604bebed8cbbe6aea00f761777eed424dc55
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/index.html
[-- Attachment #2: Type: text/html, Size: 1738 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v2 i-g-t] lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format
2026-04-16 18:48 [PATCH v2 i-g-t] lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format Ashutosh Dixit
2026-04-17 0:52 ` ✓ i915.CI.BAT: success for lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format (rev2) Patchwork
2026-04-17 1:03 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-17 2:09 ` Shekhar Chauhan
2026-04-17 3:35 ` Dixit, Ashutosh
2026-04-17 3:50 ` ✓ Xe.CI.FULL: success for lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format (rev2) Patchwork
3 siblings, 1 reply; 6+ messages in thread
From: Shekhar Chauhan @ 2026-04-17 2:09 UTC (permalink / raw)
To: Ashutosh Dixit, igt-dev
On 4/17/2026 0:18, Ashutosh Dixit wrote:
> Support for CRI 192B_MPEC8LL_NOA16 OAM format was previously missed
> out. Add it.
>
> v2: Fix B/C counter accumulation (Shekhar C)
>
> Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
> ---
> lib/xe/oa-configs/oa-metricset-codegen.py | 13 +++++++++++-
> lib/xe/xe_oa.c | 24 +++++++++++++++++++++++
> 2 files changed, 36 insertions(+), 1 deletion(-)
>
> diff --git a/lib/xe/oa-configs/oa-metricset-codegen.py b/lib/xe/oa-configs/oa-metricset-codegen.py
> index c5c7a2c8d4..b44d4d73af 100644
The patch itself makes sense now. But there's one change missing in 2
places. The function "intel_xe_perf_read_record_timestamp" and
"intel_xe_perf_read_record_timestamp_raw" both need this new format
recognised there else they'll still fallback to "assert(0)".
Other than that, this looks fine and we can merge it after that.
-shekhar
> --- a/lib/xe/oa-configs/oa-metricset-codegen.py
> +++ b/lib/xe/oa-configs/oa-metricset-codegen.py
> @@ -139,7 +139,7 @@ def generate_metric_sets(args, gen):
> metric_set->perfcnt_offset = metric_set->c_offset + 8;
> """))
> elif gen.chipset == "lnl" or gen.chipset == "bmg" or gen.chipset == "ptl" or gen.chipset == "cri":
> - # See intel_xe_perf_accumulate_reports for the offsets
> + # See intel_xe_perf_accumulate_reports for the offsets (value of idx variable)
> if set.oa_format == "128B_MPEC8_NOA16" or set.oa_format == "128B_MERT_PEC8":
> c(textwrap.dedent("""\
> metric_set->perf_oa_format = XE_OAM_FORMAT_MPEC8u32_B8_C8;
> @@ -151,6 +151,17 @@ def generate_metric_sets(args, gen):
> metric_set->b_offset = metric_set->pec_offset + 8;
> metric_set->c_offset = metric_set->b_offset + 8;
> """))
> + elif set.oa_format == "192B_MPEC8LL_NOA16":
> + c(textwrap.dedent("""\
> + metric_set->perf_oa_format = XE_OAM_FORMAT_MPEC8u64_B8_C8;
> +
> + metric_set->perf_raw_size = 192;
> + metric_set->gpu_time_offset = 0;
> + metric_set->gpu_clock_offset = 1;
> + metric_set->pec_offset = 2;
> + metric_set->b_offset = metric_set->pec_offset + 8;
> + metric_set->c_offset = metric_set->b_offset + 8;
> + """))
> else:
> c(textwrap.dedent("""\
> metric_set->perf_oa_format = XE_OA_FORMAT_PEC64u64;
> diff --git a/lib/xe/xe_oa.c b/lib/xe/xe_oa.c
> index b2f447c944..b7be64cc3f 100644
> --- a/lib/xe/xe_oa.c
> +++ b/lib/xe/xe_oa.c
> @@ -875,6 +875,30 @@ void intel_xe_perf_accumulate_reports(struct intel_xe_perf_accumulator *acc,
>
> break;
>
> + case XE_OAM_FORMAT_MPEC8u64_B8_C8:
> + /* 64 bit timestamp */
> + if (perf->devinfo.oa_timestamp_shift >= 0)
> + deltas[idx++] += (end64[1] - start64[1]) << perf->devinfo.oa_timestamp_shift;
> + else
> + deltas[idx++] += (end64[1] - start64[1]) >> (-perf->devinfo.oa_timestamp_shift);
> +
> + /* 64 bit clock */
> + deltas[idx++] += end64[3] - start64[3];
> +
> + /* 8x 64bit MPEC counters */
> + for (i = 0; i < 8; i++)
> + deltas[idx++] += end64[4 + i] - start64[4 + i];
> +
> + /* 8x 32bit B counters */
> + for (i = 0; i < 8; i++)
> + accumulate_uint32(start + 24 + i, end + 24 + i, deltas + idx++);
> +
> + /* 8x 32bit C counters */
> + for (i = 0; i < 8; i++)
> + accumulate_uint32(start + 32 + i, end + 32 + i, deltas + idx++);
> +
> + break;
> +
> case XE_OA_FORMAT_PEC64u64:
> /* 64 bit timestamp */
> if (perf->devinfo.oa_timestamp_shift >= 0)
--
Shekhar Chauhan
Linux Graphics Software Engineer
Intel Corporation
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH v2 i-g-t] lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format
2026-04-17 2:09 ` [PATCH v2 i-g-t] lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format Shekhar Chauhan
@ 2026-04-17 3:35 ` Dixit, Ashutosh
0 siblings, 0 replies; 6+ messages in thread
From: Dixit, Ashutosh @ 2026-04-17 3:35 UTC (permalink / raw)
To: Shekhar Chauhan; +Cc: igt-dev
On Thu, 16 Apr 2026 19:09:57 -0700, Shekhar Chauhan wrote:
>
> On 4/17/2026 0:18, Ashutosh Dixit wrote:
> > Support for CRI 192B_MPEC8LL_NOA16 OAM format was previously missed
> > out. Add it.
> >
> > v2: Fix B/C counter accumulation (Shekhar C)
> >
> > Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
> > ---
> > lib/xe/oa-configs/oa-metricset-codegen.py | 13 +++++++++++-
> > lib/xe/xe_oa.c | 24 +++++++++++++++++++++++
> > 2 files changed, 36 insertions(+), 1 deletion(-)
> >
> > diff --git a/lib/xe/oa-configs/oa-metricset-codegen.py b/lib/xe/oa-configs/oa-metricset-codegen.py
> > index c5c7a2c8d4..b44d4d73af 100644
>
> The patch itself makes sense now. But there's one change missing in 2
> places. The function "intel_xe_perf_read_record_timestamp" and
> "intel_xe_perf_read_record_timestamp_raw" both need this new format
> recognised there else they'll still fallback to "assert(0)".
>
> Other than that, this looks fine and we can merge it after that.
OK, thanks again, fixed in v3.
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Xe.CI.FULL: success for lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format (rev2)
2026-04-16 18:48 [PATCH v2 i-g-t] lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format Ashutosh Dixit
` (2 preceding siblings ...)
2026-04-17 2:09 ` [PATCH v2 i-g-t] lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format Shekhar Chauhan
@ 2026-04-17 3:50 ` Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-04-17 3:50 UTC (permalink / raw)
To: Dixit, Ashutosh; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 12496 bytes --]
== Series Details ==
Series: lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format (rev2)
URL : https://patchwork.freedesktop.org/series/164949/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8863_FULL -> XEIGTPW_15003_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between XEIGT_8863_FULL and XEIGTPW_15003_FULL:
### New IGT tests (6) ###
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb2101010:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb16161616f:
- Statuses : 1 pass(s)
- Exec time: [0.67] s
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010:
- Statuses : 1 pass(s)
- Exec time: [0.95] s
* igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f:
- Statuses : 1 pass(s)
- Exec time: [1.00] s
* igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb2101010:
- Statuses : 1 pass(s)
- Exec time: [1.34] s
Known issues
------------
Here are the changes found in XEIGTPW_15003_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2327])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-bmg-5/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#2887])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-bmg-4/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#6974])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-bmg-5/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [PASS][4] -> [FAIL][5] ([Intel XE#7571])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8863/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#7178] / [Intel XE#7351])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2311]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2234] / [Intel XE#2850])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-bmg-2/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_vrr@flip-dpms:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1499])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-bmg-9/igt@kms_vrr@flip-dpms.html
* igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race@rcs0:
- shard-bmg: [PASS][10] -> [ABORT][11] ([Intel XE#6652]) +1 other test abort
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8863/shard-bmg-3/igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race@rcs0.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-bmg-2/igt@xe_exec_basic@many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race@rcs0.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-dyn-priority:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#6874])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-bmg-9/igt@xe_exec_multi_queue@two-queues-preempt-mode-dyn-priority.html
* igt@xe_sriov_flr@flr-basic@numvfs-1:
- shard-bmg: [PASS][13] -> [FAIL][14] ([Intel XE#5937]) +1 other test fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8863/shard-bmg-6/igt@xe_sriov_flr@flr-basic@numvfs-1.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-bmg-10/igt@xe_sriov_flr@flr-basic@numvfs-1.html
#### Possible fixes ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [FAIL][15] ([Intel XE#7445]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8863/shard-bmg-10/igt@intel_hwmon@hwmon-write.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-bmg-2/igt@intel_hwmon@hwmon-write.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible@bc-dp2-hdmi-a3:
- shard-bmg: [FAIL][17] -> [PASS][18] +3 other tests pass
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8863/shard-bmg-3/igt@kms_flip@2x-absolute-wf_vblank-interruptible@bc-dp2-hdmi-a3.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-bmg-10/igt@kms_flip@2x-absolute-wf_vblank-interruptible@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3:
- shard-bmg: [FAIL][19] ([Intel XE#3321]) -> [PASS][20] +1 other test pass
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8863/shard-bmg-10/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][21] ([Intel XE#301]) -> [PASS][22] +3 other tests pass
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8863/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [SKIP][23] ([Intel XE#7308]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8863/shard-bmg-3/igt@kms_hdmi_inject@inject-audio.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-bmg-8/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_universal_plane@disable-primary-vs-flip:
- shard-bmg: [DMESG-WARN][25] ([Intel XE#7725]) -> [PASS][26] +1 other test pass
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8863/shard-bmg-3/igt@kms_universal_plane@disable-primary-vs-flip.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-bmg-5/igt@kms_universal_plane@disable-primary-vs-flip.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][27] ([Intel XE#4459]) -> [PASS][28] +1 other test pass
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8863/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@flipline:
- shard-lnl: [FAIL][29] ([Intel XE#4227] / [Intel XE#7397]) -> [PASS][30] +1 other test pass
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8863/shard-lnl-2/igt@kms_vrr@flipline.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-lnl-5/igt@kms_vrr@flipline.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [FAIL][31] ([Intel XE#2142]) -> [PASS][32] +1 other test pass
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8863/shard-lnl-5/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][33] ([Intel XE#6321]) -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8863/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-small.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [FAIL][35] ([Intel XE#5625]) -> [PASS][36] +1 other test pass
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8863/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt:
- shard-bmg: [SKIP][37] ([Intel XE#2312]) -> [SKIP][38] ([Intel XE#2311])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8863/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][39] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][40] ([Intel XE#3544])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8863/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7397
[Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7725
Build changes
-------------
* IGT: IGT_8863 -> IGTPW_15003
* Linux: xe-4917-ff84b38d86b994ebb03d940be1c73a63e231f454 -> xe-4918-2a1c604bebed8cbbe6aea00f761777eed424dc55
IGTPW_15003: 7a8aa37bb00ecab84cd82e97c42313075b63a0cc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8863: 5b279a8b71dc1672099205a1a9e8135c7c7fadb5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4917-ff84b38d86b994ebb03d940be1c73a63e231f454: ff84b38d86b994ebb03d940be1c73a63e231f454
xe-4918-2a1c604bebed8cbbe6aea00f761777eed424dc55: 2a1c604bebed8cbbe6aea00f761777eed424dc55
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15003/index.html
[-- Attachment #2: Type: text/html, Size: 13905 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-04-17 3:50 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-16 18:48 [PATCH v2 i-g-t] lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format Ashutosh Dixit
2026-04-17 0:52 ` ✓ i915.CI.BAT: success for lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format (rev2) Patchwork
2026-04-17 1:03 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-17 2:09 ` [PATCH v2 i-g-t] lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format Shekhar Chauhan
2026-04-17 3:35 ` Dixit, Ashutosh
2026-04-17 3:50 ` ✓ Xe.CI.FULL: success for lib/xe/oa: Add support for 192B_MPEC8LL_NOA16 OAM format (rev2) Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox