* [igt-dev] [PATCH i-g-t v3 0/3] Validate max source size
@ 2023-02-22 9:19 Swati Sharma
2023-02-22 9:19 ` [igt-dev] [PATCH i-g-t v3 1/3] tests/kms_plane_scaling: Prep work Swati Sharma
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Swati Sharma @ 2023-02-22 9:19 UTC (permalink / raw)
To: igt-dev
i915 specific test is added to validate max source size width.
Swati Sharma (3):
tests/kms_plane_scaling: Prep work
tests/kms_plane_scaling: Minor fixes
tests/kms_plane_scaling: Add test to validate max source size
tests/kms_plane_scaling.c | 139 +++++++++++++++++++++++++++++++++-----
1 file changed, 121 insertions(+), 18 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t v3 1/3] tests/kms_plane_scaling: Prep work
2023-02-22 9:19 [igt-dev] [PATCH i-g-t v3 0/3] Validate max source size Swati Sharma
@ 2023-02-22 9:19 ` Swati Sharma
2023-02-22 9:19 ` [igt-dev] [PATCH i-g-t v3 2/3] tests/kms_plane_scaling: Minor fixes Swati Sharma
` (3 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Swati Sharma @ 2023-02-22 9:19 UTC (permalink / raw)
To: igt-dev
struct can be reused to add more test cases.
v2: -don't declare list of lists[JP]
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/kms_plane_scaling.c | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 74554915..ecb4087f 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -43,6 +43,15 @@ typedef struct {
bool extended;
} data_t;
+struct invalid_paramtests {
+ const char *testname;
+ uint32_t planesize[2];
+ struct {
+ enum igt_atomic_plane_properties prop;
+ uint32_t value;
+ } params[8];
+};
+
const struct {
const char * const describe;
const char * const name;
@@ -901,14 +910,7 @@ static void invalid_parameter_tests(data_t *d)
igt_plane_t *plane;
int rval;
- const struct {
- const char *testname;
- uint32_t planesize[2];
- struct {
- enum igt_atomic_plane_properties prop;
- uint32_t value;
- } params[8];
- } paramtests[] = {
+ static const struct invalid_paramtests paramtests[] = {
{
.testname = "less-than-1-height-src",
.planesize = {256, 8},
--
2.25.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t v3 2/3] tests/kms_plane_scaling: Minor fixes
2023-02-22 9:19 [igt-dev] [PATCH i-g-t v3 0/3] Validate max source size Swati Sharma
2023-02-22 9:19 ` [igt-dev] [PATCH i-g-t v3 1/3] tests/kms_plane_scaling: Prep work Swati Sharma
@ 2023-02-22 9:19 ` Swati Sharma
2023-02-22 9:19 ` [igt-dev] [PATCH i-g-t v3 3/3] tests/kms_plane_scaling: Add test to validate max source size Swati Sharma
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Swati Sharma @ 2023-02-22 9:19 UTC (permalink / raw)
To: igt-dev
Minor fixes are done in the existing test.
v2: -indentation (JP)
-added invalid_parameter_tests() inside igt_subtest_group
macro (JP)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/kms_plane_scaling.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index ecb4087f..795e3daa 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -931,9 +931,9 @@ static void invalid_parameter_tests(data_t *d)
plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
igt_create_fb(d->drm_fd, 256, 256,
- DRM_FORMAT_XRGB8888,
- DRM_FORMAT_MOD_NONE,
- &fb);
+ DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_NONE,
+ &fb);
}
igt_describe("test parameters which should not be accepted");
@@ -943,14 +943,13 @@ static void invalid_parameter_tests(data_t *d)
igt_plane_set_position(plane, 0, 0);
igt_plane_set_fb(plane, &fb);
igt_plane_set_size(plane,
- paramtests[i].planesize[0],
- paramtests[i].planesize[1]);
-
+ paramtests[i].planesize[0],
+ paramtests[i].planesize[1]);
for (uint32_t j = 0; paramtests[i].params[j].prop != ~0; j++)
igt_plane_set_prop_value(plane,
- paramtests[i].params[j].prop,
- paramtests[i].params[j].value);
+ paramtests[i].params[j].prop,
+ paramtests[i].params[j].value);
rval = igt_display_try_commit2(&d->display, COMMIT_ATOMIC);
@@ -1128,7 +1127,8 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
igt_subtest_f("2x-scaler-multi-pipe")
test_scaler_with_multi_pipe_plane(&data);
- invalid_parameter_tests(&data);
+ igt_subtest_group
+ invalid_parameter_tests(&data);
igt_fixture {
igt_display_fini(&data.display);
--
2.25.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t v3 3/3] tests/kms_plane_scaling: Add test to validate max source size
2023-02-22 9:19 [igt-dev] [PATCH i-g-t v3 0/3] Validate max source size Swati Sharma
2023-02-22 9:19 ` [igt-dev] [PATCH i-g-t v3 1/3] tests/kms_plane_scaling: Prep work Swati Sharma
2023-02-22 9:19 ` [igt-dev] [PATCH i-g-t v3 2/3] tests/kms_plane_scaling: Minor fixes Swati Sharma
@ 2023-02-22 9:19 ` Swati Sharma
2023-02-24 12:46 ` Juha-Pekka Heikkila
2023-02-22 15:14 ` [igt-dev] ✓ Fi.CI.BAT: success for Validate max source size (rev4) Patchwork
2023-02-22 17:26 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
4 siblings, 1 reply; 7+ messages in thread
From: Swati Sharma @ 2023-02-22 9:19 UTC (permalink / raw)
To: igt-dev
i915 specific test is added to validate max source size. This
test is expected to return -EINVAL for platforms where we have
max source width 4096 whereas it will pass on platforms having
max source width 5120. We have created fb of size 5120x4320
(=size of source) and downscaled to 3840x2400(=size of dest).
On MTL(disp_ver=14), in dmesg we can see
[drm:skl_update_scaler [i915]] scaler_user index 0.0: src
5120x4320 dst 3840x2400 size is out of scaler range.
since max source width supported is 4096 whereas same test
will pass on ADLP(display_ver=13) since max source width
supported is 5120.
v2: -updated comment (JP)
-not declare list of tests (JP)
-fixed indentation (JP)
-added i915_max_source_size_test() inside
igt_subtest_group() (JP)
v3: -added restriction to run this test only when HDISPLAY=3840
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/kms_plane_scaling.c | 107 ++++++++++++++++++++++++++++++++++++--
1 file changed, 104 insertions(+), 3 deletions(-)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 795e3daa..dd2138a7 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -26,6 +26,8 @@
#include "igt_vec.h"
#include <math.h>
+#define HDISPLAY_4K 3840
+
IGT_TEST_DESCRIPTION("Test display plane scaling");
enum scaler_combo_test_type {
@@ -964,6 +966,102 @@ static void invalid_parameter_tests(data_t *d)
}
}
+/*
+ * Max source/destination width/height for i915 driver.
+ * These numbers are coming from
+ * drivers/gpu/drm/i915/display/skl_scaler.c in kernel sources.
+ *
+ * DISPLAY_VER < 11
+ * max_src_w = 4096
+ * max_src_h = 4096
+ * max_dst_w = 4096
+ * max_dst_h = 4096
+ *
+ * DISPLAY_VER = 11
+ * max_src_w = 5120
+ * max_src_h = 4096
+ * max_dst_w = 5120
+ * max_dst_h = 4096
+ *
+ * DISPLAY_VER = 12-13
+ * max_src_w = 5120
+ * max_src_h = 8192
+ * max_dst_w = 8192
+ * max_dst_h = 8192
+ *
+ * DISPLAY_VER = 14
+ * max_src_w = 4096
+ * max_src_h = 8192
+ * max_dst_w = 8192
+ * max_dst_h = 8192
+ */
+
+static void i915_max_source_size_test(data_t *d)
+{
+ enum pipe pipe = PIPE_A;
+ drmModeModeInfo *mode;
+ igt_output_t *output;
+ igt_fb_t fb;
+ igt_plane_t *plane;
+ int rval;
+
+ static const struct invalid_paramtests paramtests[] = {
+ {
+ .testname = "max-src-size",
+ .planesize = {3840, 2400},
+ .params = {{~0}}
+ },
+ };
+
+ igt_fixture {
+ igt_require_intel(d->drm_fd);
+
+ output = igt_get_single_output_for_pipe(&d->display, pipe);
+ igt_require(output);
+
+ mode = igt_output_get_mode(output);
+ igt_require(mode->hdisplay == HDISPLAY_4K);
+
+ igt_output_set_pipe(output, pipe);
+ plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
+
+ igt_create_fb(d->drm_fd, 5120, 4320,
+ DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_NONE,
+ &fb);
+ }
+
+ igt_describe("test for validating max source size.");
+ igt_subtest_with_dynamic("i915-max-source-size") {
+ for (uint32_t i = 0; i < ARRAY_SIZE(paramtests); i++) {
+ igt_dynamic(paramtests[i].testname) {
+ igt_plane_set_position(plane, 0, 0);
+ igt_plane_set_fb(plane, &fb);
+ igt_plane_set_size(plane,
+ paramtests[i].planesize[0],
+ paramtests[i].planesize[1]);
+
+ for (uint32_t j = 0; paramtests[i].params[j].prop != ~0; j++)
+ igt_plane_set_prop_value(plane,
+ paramtests[i].params[j].prop,
+ paramtests[i].params[j].value);
+
+ rval = igt_display_try_commit2(&d->display, COMMIT_ATOMIC);
+
+ if (intel_display_ver(d->devid) < 11 || intel_display_ver(d->devid) >= 14)
+ igt_assert(rval == -EINVAL || rval == -ERANGE);
+ else
+ igt_assert_eq(rval, 0);
+ }
+ }
+ }
+
+ igt_fixture {
+ igt_remove_fb(d->drm_fd, &fb);
+ igt_output_set_pipe(output, PIPE_NONE);
+ }
+}
+
static int opt_handler(int opt, int opt_index, void *_data)
{
data_t *data = _data;
@@ -1123,13 +1221,16 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
}
}
+ igt_subtest_group
+ invalid_parameter_tests(&data);
+
+ igt_subtest_group
+ i915_max_source_size_test(&data);
+
igt_describe("Tests scaling with multi-pipe.");
igt_subtest_f("2x-scaler-multi-pipe")
test_scaler_with_multi_pipe_plane(&data);
- igt_subtest_group
- invalid_parameter_tests(&data);
-
igt_fixture {
igt_display_fini(&data.display);
close(data.drm_fd);
--
2.25.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Validate max source size (rev4)
2023-02-22 9:19 [igt-dev] [PATCH i-g-t v3 0/3] Validate max source size Swati Sharma
` (2 preceding siblings ...)
2023-02-22 9:19 ` [igt-dev] [PATCH i-g-t v3 3/3] tests/kms_plane_scaling: Add test to validate max source size Swati Sharma
@ 2023-02-22 15:14 ` Patchwork
2023-02-22 17:26 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2023-02-22 15:14 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 11102 bytes --]
== Series Details ==
Series: Validate max source size (rev4)
URL : https://patchwork.freedesktop.org/series/114059/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12768 -> IGTPW_8515
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/index.html
Participating hosts (38 -> 37)
------------------------------
Additional (2): bat-atsm-1 bat-adls-5
Missing (3): fi-bsw-n3050 bat-dg1-6 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_8515 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-adls-5: NOTRUN -> [SKIP][1] ([i915#7456])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-adls-5/igt@debugfs_test@basic-hwmon.html
* igt@fbdev@eof:
- bat-atsm-1: NOTRUN -> [SKIP][2] ([i915#2582]) +4 similar issues
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-atsm-1/igt@fbdev@eof.html
* igt@gem_lmem_swapping@basic:
- fi-apl-guc: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#4613]) +3 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/fi-apl-guc/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@random-engines:
- bat-adls-5: NOTRUN -> [SKIP][4] ([i915#4613]) +3 similar issues
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-adls-5/igt@gem_lmem_swapping@random-engines.html
* igt@gem_mmap@basic:
- bat-atsm-1: NOTRUN -> [SKIP][5] ([i915#4083])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-atsm-1/igt@gem_mmap@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-atsm-1: NOTRUN -> [SKIP][6] ([i915#4077]) +2 similar issues
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-atsm-1/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-adls-5: NOTRUN -> [SKIP][7] ([i915#3282])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-adls-5/igt@gem_tiled_pread_basic.html
- bat-atsm-1: NOTRUN -> [SKIP][8] ([i915#4079]) +1 similar issue
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-atsm-1/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-atsm-1: NOTRUN -> [SKIP][9] ([i915#6621])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-atsm-1/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@hangcheck:
- fi-kbl-soraka: [PASS][10] -> [INCOMPLETE][11] ([i915#7913])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/fi-kbl-soraka/igt@i915_selftest@live@hangcheck.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/fi-kbl-soraka/igt@i915_selftest@live@hangcheck.html
- bat-rpls-2: NOTRUN -> [ABORT][12] ([i915#7677])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-rpls-2/igt@i915_selftest@live@hangcheck.html
- fi-skl-guc: [PASS][13] -> [DMESG-WARN][14] ([i915#8073])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/fi-skl-guc/igt@i915_selftest@live@hangcheck.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/fi-skl-guc/igt@i915_selftest@live@hangcheck.html
- bat-adls-5: NOTRUN -> [DMESG-WARN][15] ([i915#5591])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-adls-5/igt@i915_selftest@live@hangcheck.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-atsm-1: NOTRUN -> [SKIP][16] ([i915#6645])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-atsm-1/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@size-max:
- bat-atsm-1: NOTRUN -> [SKIP][17] ([i915#6077]) +36 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-atsm-1/igt@kms_addfb_basic@size-max.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- fi-apl-guc: NOTRUN -> [SKIP][18] ([fdo#109271])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/fi-apl-guc/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- bat-adls-5: NOTRUN -> [SKIP][19] ([i915#7828]) +8 similar issues
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-adls-5/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor:
- bat-adls-5: NOTRUN -> [SKIP][20] ([i915#4103])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-adls-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor.html
* igt@kms_cursor_legacy@basic-flip-after-cursor:
- bat-atsm-1: NOTRUN -> [SKIP][21] ([i915#6078]) +14 similar issues
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-atsm-1/igt@kms_cursor_legacy@basic-flip-after-cursor.html
* igt@kms_flip@basic-plain-flip:
- bat-atsm-1: NOTRUN -> [SKIP][22] ([i915#6166]) +3 similar issues
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-atsm-1/igt@kms_flip@basic-plain-flip.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-adls-5: NOTRUN -> [SKIP][23] ([fdo#109285])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-adls-5/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-atsm-1: NOTRUN -> [SKIP][24] ([i915#6093]) +3 similar issues
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-atsm-1/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pipe_crc_basic@hang-read-crc:
- bat-atsm-1: NOTRUN -> [SKIP][25] ([i915#1836]) +6 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-atsm-1/igt@kms_pipe_crc_basic@hang-read-crc.html
* igt@kms_prop_blob@basic:
- bat-atsm-1: NOTRUN -> [SKIP][26] ([i915#7357])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-atsm-1/igt@kms_prop_blob@basic.html
* igt@kms_psr@sprite_plane_onoff:
- bat-atsm-1: NOTRUN -> [SKIP][27] ([i915#1072]) +3 similar issues
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-atsm-1/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-adls-5: NOTRUN -> [SKIP][28] ([i915#3555])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-adls-5/igt@kms_setmode@basic-clone-single-crtc.html
- bat-atsm-1: NOTRUN -> [SKIP][29] ([i915#6094])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-atsm-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-atsm-1: NOTRUN -> [SKIP][30] ([fdo#109295] / [i915#6078])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-atsm-1/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-atsm-1: NOTRUN -> [SKIP][31] ([fdo#109295] / [i915#4077]) +1 similar issue
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-atsm-1/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-read:
- bat-adls-5: NOTRUN -> [SKIP][32] ([fdo#109295] / [i915#3291]) +2 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-adls-5/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-userptr:
- bat-adls-5: NOTRUN -> [SKIP][33] ([fdo#109295] / [i915#3301])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-adls-5/igt@prime_vgem@basic-userptr.html
* igt@prime_vgem@basic-write:
- bat-atsm-1: NOTRUN -> [SKIP][34] ([fdo#109295]) +3 similar issues
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-atsm-1/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- fi-apl-guc: [ABORT][35] -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/fi-apl-guc/igt@core_hotunplug@unbind-rebind.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/fi-apl-guc/igt@core_hotunplug@unbind-rebind.html
* igt@i915_selftest@live@reset:
- bat-rpls-2: [ABORT][37] ([i915#4983]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/bat-rpls-2/igt@i915_selftest@live@reset.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/bat-rpls-2/igt@i915_selftest@live@reset.html
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
[i915#6077]: https://gitlab.freedesktop.org/drm/intel/issues/6077
[i915#6078]: https://gitlab.freedesktop.org/drm/intel/issues/6078
[i915#6093]: https://gitlab.freedesktop.org/drm/intel/issues/6093
[i915#6094]: https://gitlab.freedesktop.org/drm/intel/issues/6094
[i915#6166]: https://gitlab.freedesktop.org/drm/intel/issues/6166
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#7357]: https://gitlab.freedesktop.org/drm/intel/issues/7357
[i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
[i915#7677]: https://gitlab.freedesktop.org/drm/intel/issues/7677
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#8073]: https://gitlab.freedesktop.org/drm/intel/issues/8073
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7168 -> IGTPW_8515
CI-20190529: 20190529
CI_DRM_12768: d9a0aa492e367314a1681974bf178363a4b5587a @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8515: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/index.html
IGT_7168: 165df656261863684067cd53f95c3a301e67fa24 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@kms_plane_scaling@i915-max-source-size
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/index.html
[-- Attachment #2: Type: text/html, Size: 13050 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Validate max source size (rev4)
2023-02-22 9:19 [igt-dev] [PATCH i-g-t v3 0/3] Validate max source size Swati Sharma
` (3 preceding siblings ...)
2023-02-22 15:14 ` [igt-dev] ✓ Fi.CI.BAT: success for Validate max source size (rev4) Patchwork
@ 2023-02-22 17:26 ` Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2023-02-22 17:26 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 38559 bytes --]
== Series Details ==
Series: Validate max source size (rev4)
URL : https://patchwork.freedesktop.org/series/114059/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12768_full -> IGTPW_8515_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/index.html
Participating hosts (10 -> 11)
------------------------------
Additional (1): shard-rkl0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_8515_full:
### IGT changes ###
#### Possible regressions ####
* {igt@kms_plane_scaling@i915-max-source-size} (NEW):
- {shard-rkl}: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-rkl-3/igt@kms_plane_scaling@i915-max-source-size.html
New tests
---------
New tests have been introduced between CI_DRM_12768_full and IGTPW_8515_full:
### New IGT tests (1) ###
* igt@kms_plane_scaling@i915-max-source-size:
- Statuses : 4 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_8515_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_buddy@all-tests:
- shard-tglu-10: NOTRUN -> [SKIP][2] ([i915#6433]) +1 similar issue
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@drm_buddy@all-tests.html
* igt@drm_read@invalid-buffer:
- shard-tglu-9: NOTRUN -> [SKIP][3] ([i915#1845]) +5 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-9/igt@drm_read@invalid-buffer.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu-9: NOTRUN -> [FAIL][4] ([i915#2842])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-9/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-tglu-10: NOTRUN -> [FAIL][5] ([i915#2842])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-pace@vcs0:
- shard-glk: [PASS][6] -> [FAIL][7] ([i915#2842]) +2 similar issues
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-glk3/igt@gem_exec_fair@basic-pace@vcs0.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-glk2/igt@gem_exec_fair@basic-pace@vcs0.html
* igt@gem_lmem_swapping@basic:
- shard-tglu-9: NOTRUN -> [SKIP][8] ([i915#4613])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-9/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@random-engines:
- shard-tglu-10: NOTRUN -> [SKIP][9] ([i915#4613]) +3 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@gem_lmem_swapping@random-engines.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu-10: NOTRUN -> [WARN][10] ([i915#2658])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-regular-buffer:
- shard-tglu-10: NOTRUN -> [SKIP][11] ([i915#4270]) +1 similar issue
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-tglu-9: NOTRUN -> [SKIP][12] ([i915#4270]) +1 similar issue
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-9/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_userptr_blits@coherency-sync:
- shard-tglu-10: NOTRUN -> [SKIP][13] ([fdo#110542])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu-10: NOTRUN -> [SKIP][14] ([i915#3323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-tglu-10: NOTRUN -> [SKIP][15] ([i915#3297])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen3_render_tiledy_blits:
- shard-tglu-10: NOTRUN -> [SKIP][16] ([fdo#109289]) +4 similar issues
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@gen3_render_tiledy_blits.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-tglu-9: NOTRUN -> [SKIP][17] ([i915#2527] / [i915#2856])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-9/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@secure-batches:
- shard-tglu-10: NOTRUN -> [SKIP][18] ([i915#2527] / [i915#2856])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@gen9_exec_parse@secure-batches.html
* igt@i915_pm_dc@dc6-psr:
- shard-tglu-9: NOTRUN -> [SKIP][19] ([i915#658])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-9/igt@i915_pm_dc@dc6-psr.html
* igt@i915_pm_dc@dc9-dpms:
- shard-apl: [PASS][20] -> [SKIP][21] ([fdo#109271])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-apl7/igt@i915_pm_dc@dc9-dpms.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-apl1/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_lpsp@screens-disabled:
- shard-tglu-10: NOTRUN -> [SKIP][22] ([i915#1902])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@i915_pm_lpsp@screens-disabled.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- shard-tglu-10: NOTRUN -> [SKIP][23] ([fdo#111644] / [i915#1397])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-tglu-10: NOTRUN -> [SKIP][24] ([i915#5286]) +5 similar issues
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-tglu-10: NOTRUN -> [SKIP][25] ([fdo#111614]) +2 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu-10: NOTRUN -> [SKIP][26] ([fdo#111615]) +5 similar issues
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_joiner@2x-modeset:
- shard-tglu-10: NOTRUN -> [SKIP][27] ([i915#2705])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_big_joiner@2x-modeset.html
* igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc:
- shard-tglu-10: NOTRUN -> [SKIP][28] ([i915#6095]) +4 similar issues
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs:
- shard-tglu-10: NOTRUN -> [SKIP][29] ([i915#3689] / [i915#6095]) +5 similar issues
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs:
- shard-tglu-10: NOTRUN -> [SKIP][30] ([fdo#111615] / [i915#3689])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
- shard-apl: NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#3886]) +1 similar issue
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-apl6/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs:
- shard-tglu-9: NOTRUN -> [SKIP][32] ([fdo#111615] / [i915#1845] / [i915#7651]) +3 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-9/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_rc_ccs_cc:
- shard-tglu-10: NOTRUN -> [SKIP][33] ([i915#3689]) +9 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-tglu-10: NOTRUN -> [SKIP][34] ([fdo#111827]) +2 similar issues
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-negative:
- shard-tglu-9: NOTRUN -> [SKIP][35] ([fdo#111827])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-9/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-tglu-9: NOTRUN -> [SKIP][36] ([i915#7828])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-9/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-tglu-10: NOTRUN -> [SKIP][37] ([i915#7828]) +4 similar issues
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_color@legacy-gamma:
- shard-tglu-9: NOTRUN -> [SKIP][38] ([i915#3546])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-9/igt@kms_color@legacy-gamma.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-tglu-10: NOTRUN -> [SKIP][39] ([i915#3116] / [i915#3299])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-tglu-10: NOTRUN -> [SKIP][40] ([i915#6944] / [i915#7116] / [i915#7118]) +1 similar issue
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_content_protection@uevent.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-tglu-10: NOTRUN -> [SKIP][41] ([fdo#109274]) +6 similar issues
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
- shard-apl: [PASS][42] -> [FAIL][43] ([i915#2346]) +1 similar issue
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu-10: NOTRUN -> [SKIP][44] ([i915#3804])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_fbcon_fbt@psr:
- shard-tglu-10: NOTRUN -> [SKIP][45] ([i915#3469])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-tglu-10: NOTRUN -> [SKIP][46] ([fdo#109274] / [i915#3637]) +5 similar issues
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-tglu-9: NOTRUN -> [SKIP][47] ([fdo#109274] / [i915#3637])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-9/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-snb: NOTRUN -> [SKIP][48] ([fdo#109271]) +25 similar issues
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-snb5/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu-10: NOTRUN -> [SKIP][49] ([i915#2587] / [i915#2672]) +2 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-tglu-9: NOTRUN -> [SKIP][50] ([i915#1849]) +20 similar issues
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-apl: NOTRUN -> [SKIP][51] ([fdo#109271]) +26 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-apl7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu-10: NOTRUN -> [SKIP][52] ([fdo#109280]) +25 similar issues
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu-10: NOTRUN -> [SKIP][53] ([i915#5439]) +1 similar issue
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt:
- shard-tglu-10: NOTRUN -> [SKIP][54] ([fdo#110189]) +18 similar issues
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html
* igt@kms_panel_fitting@legacy:
- shard-tglu-10: NOTRUN -> [SKIP][55] ([i915#6301])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-tglu-9: NOTRUN -> [SKIP][56] ([fdo#109289]) +2 similar issues
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-9/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_plane@plane-position-hole-dpms@pipe-a-planes:
- shard-tglu-9: NOTRUN -> [SKIP][57] ([i915#1849] / [i915#3558]) +1 similar issue
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-9/igt@kms_plane@plane-position-hole-dpms@pipe-a-planes.html
* {igt@kms_plane_scaling@i915-max-source-size} (NEW):
- shard-glk: NOTRUN -> [SKIP][58] ([fdo#109271])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-glk1/igt@kms_plane_scaling@i915-max-source-size.html
* igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5@pipe-b-hdmi-a-1:
- shard-tglu-10: NOTRUN -> [SKIP][59] ([i915#5176]) +3 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25:
- shard-tglu-9: NOTRUN -> [SKIP][60] ([i915#3555]) +2 similar issues
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-9/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-tglu-10: NOTRUN -> [SKIP][61] ([i915#5235]) +7 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_prime@d3hot:
- shard-tglu-10: NOTRUN -> [SKIP][62] ([i915#6524])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
- shard-tglu-10: NOTRUN -> [SKIP][63] ([fdo#111068] / [i915#658])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
- shard-tglu-10: NOTRUN -> [SKIP][64] ([i915#658]) +1 similar issue
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu-9: NOTRUN -> [SKIP][65] ([fdo#109642] / [fdo#111068] / [i915#658])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-9/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@psr2_primary_blt:
- shard-tglu-9: NOTRUN -> [SKIP][66] ([fdo#110189])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-9/igt@kms_psr@psr2_primary_blt.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu-10: NOTRUN -> [SKIP][67] ([i915#5289])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_sequence@get-idle:
- shard-tglu-9: NOTRUN -> [SKIP][68] ([i915#1845] / [i915#7651]) +20 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-9/igt@kms_sequence@get-idle.html
* igt@kms_setmode@basic@pipe-a-vga-1:
- shard-snb: NOTRUN -> [FAIL][69] ([i915#5465]) +1 similar issue
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-snb2/igt@kms_setmode@basic@pipe-a-vga-1.html
* igt@kms_vrr@flip-dpms:
- shard-tglu-10: NOTRUN -> [SKIP][70] ([i915#3555]) +4 similar issues
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@kms_vrr@flip-dpms.html
* igt@v3d/v3d_mmap@mmap-bo:
- shard-tglu-10: NOTRUN -> [SKIP][71] ([fdo#109315] / [i915#2575]) +2 similar issues
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@v3d/v3d_mmap@mmap-bo.html
* igt@v3d/v3d_perfmon@create-two-perfmon:
- shard-tglu-9: NOTRUN -> [SKIP][72] ([fdo#109315] / [i915#2575])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-9/igt@v3d/v3d_perfmon@create-two-perfmon.html
* igt@vc4/vc4_tiling@get-bad-handle:
- shard-tglu-9: NOTRUN -> [SKIP][73] ([i915#2575]) +1 similar issue
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-9/igt@vc4/vc4_tiling@get-bad-handle.html
* igt@vc4/vc4_wait_seqno@bad-seqno-0ns:
- shard-tglu-10: NOTRUN -> [SKIP][74] ([i915#2575]) +6 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-10/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html
#### Possible fixes ####
* igt@fbdev@read:
- {shard-rkl}: [SKIP][75] ([i915#2582]) -> [PASS][76]
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-rkl-4/igt@fbdev@read.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-rkl-6/igt@fbdev@read.html
* igt@fbdev@write:
- {shard-tglu}: [SKIP][77] ([i915#2582]) -> [PASS][78]
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-tglu-6/igt@fbdev@write.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-7/igt@fbdev@write.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][79] ([i915#2842]) -> [PASS][80] +1 similar issue
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
- {shard-rkl}: [FAIL][81] ([i915#2842]) -> [PASS][82]
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-rkl-5/igt@gem_exec_fair@basic-pace-share@rcs0.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-rkl-1/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-apl: [FAIL][83] ([i915#2842]) -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-apl6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-apl4/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_reloc@basic-gtt-read-noreloc:
- {shard-rkl}: [SKIP][85] ([i915#3281]) -> [PASS][86] +8 similar issues
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
* igt@gem_exec_suspend@basic-s0@smem:
- {shard-rkl}: [FAIL][87] ([fdo#103375]) -> [PASS][88] +1 similar issue
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-rkl-3/igt@gem_exec_suspend@basic-s0@smem.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-rkl-2/igt@gem_exec_suspend@basic-s0@smem.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- {shard-rkl}: [SKIP][89] ([i915#3282]) -> [PASS][90] +6 similar issues
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-rkl-2/igt@gem_tiled_partial_pwrite_pread@writes.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-rkl-5/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gen9_exec_parse@unaligned-access:
- {shard-rkl}: [SKIP][91] ([i915#2527]) -> [PASS][92] +1 similar issue
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-rkl-4/igt@gen9_exec_parse@unaligned-access.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-rkl-5/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_pm_rps@engine-order:
- shard-apl: [FAIL][93] ([i915#6537]) -> [PASS][94]
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-apl6/igt@i915_pm_rps@engine-order.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-apl1/igt@i915_pm_rps@engine-order.html
* igt@i915_selftest@live@gt_heartbeat:
- shard-apl: [DMESG-FAIL][95] ([i915#5334]) -> [PASS][96]
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-apl7/igt@i915_selftest@live@gt_heartbeat.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- {shard-rkl}: [SKIP][97] ([i915#1845] / [i915#4098]) -> [PASS][98] +10 similar issues
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-rkl-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-rkl-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-apl: [FAIL][99] ([i915#4767]) -> [PASS][100]
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-apl1/igt@kms_fbcon_fbt@fbc-suspend.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-apl6/igt@kms_fbcon_fbt@fbc-suspend.html
- {shard-rkl}: [SKIP][101] ([i915#4098]) -> [PASS][102]
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-rkl-4/igt@kms_fbcon_fbt@fbc-suspend.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-rkl-6/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr-suspend:
- {shard-rkl}: [SKIP][103] ([fdo#110189] / [i915#3955]) -> [PASS][104]
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
- shard-apl: [ABORT][105] -> [PASS][106]
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-apl3/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu:
- {shard-tglu}: [SKIP][107] ([i915#1849]) -> [PASS][108] +1 similar issue
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
- {shard-rkl}: [SKIP][109] ([i915#1849] / [i915#4098]) -> [PASS][110] +4 similar issues
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
- {shard-rkl}: [SKIP][111] ([i915#1849]) -> [PASS][112] +1 similar issue
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-rkl-4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
* igt@kms_psr@sprite_plane_move:
- {shard-rkl}: [SKIP][113] ([i915#1072]) -> [PASS][114] +1 similar issue
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-rkl-2/igt@kms_psr@sprite_plane_move.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-rkl-6/igt@kms_psr@sprite_plane_move.html
* igt@kms_universal_plane@universal-plane-pipe-b-sanity:
- {shard-tglu}: [SKIP][115] ([fdo#109274]) -> [PASS][116] +1 similar issue
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-tglu-6/igt@kms_universal_plane@universal-plane-pipe-b-sanity.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-4/igt@kms_universal_plane@universal-plane-pipe-b-sanity.html
* igt@kms_vblank@pipe-c-wait-forked:
- {shard-tglu}: [SKIP][117] ([i915#1845] / [i915#7651]) -> [PASS][118] +8 similar issues
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-tglu-6/igt@kms_vblank@pipe-c-wait-forked.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-tglu-1/igt@kms_vblank@pipe-c-wait-forked.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- {shard-rkl}: [SKIP][119] ([i915#2436]) -> [PASS][120]
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12768/shard-rkl-3/igt@perf@gen8-unprivileged-single-ctx-counters.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
[i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966
[i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
[i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
[i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247
[i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6333]: https://gitlab.freedesktop.org/drm/intel/issues/6333
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
[i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
[i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493
[i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#6537]: https://gitlab.freedesktop.org/drm/intel/issues/6537
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7811]: https://gitlab.freedesktop.org/drm/intel/issues/7811
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949
[i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957
[i915#8018]: https://gitlab.freedesktop.org/drm/intel/issues/8018
[i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7168 -> IGTPW_8515
CI-20190529: 20190529
CI_DRM_12768: d9a0aa492e367314a1681974bf178363a4b5587a @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8515: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/index.html
IGT_7168: 165df656261863684067cd53f95c3a301e67fa24 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8515/index.html
[-- Attachment #2: Type: text/html, Size: 38733 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v3 3/3] tests/kms_plane_scaling: Add test to validate max source size
2023-02-22 9:19 ` [igt-dev] [PATCH i-g-t v3 3/3] tests/kms_plane_scaling: Add test to validate max source size Swati Sharma
@ 2023-02-24 12:46 ` Juha-Pekka Heikkila
0 siblings, 0 replies; 7+ messages in thread
From: Juha-Pekka Heikkila @ 2023-02-24 12:46 UTC (permalink / raw)
To: Swati Sharma, igt-dev
On 22.2.2023 11.19, Swati Sharma wrote:
> i915 specific test is added to validate max source size. This
> test is expected to return -EINVAL for platforms where we have
> max source width 4096 whereas it will pass on platforms having
> max source width 5120. We have created fb of size 5120x4320
> (=size of source) and downscaled to 3840x2400(=size of dest).
>
> On MTL(disp_ver=14), in dmesg we can see
>
> [drm:skl_update_scaler [i915]] scaler_user index 0.0: src
> 5120x4320 dst 3840x2400 size is out of scaler range.
>
> since max source width supported is 4096 whereas same test
> will pass on ADLP(display_ver=13) since max source width
> supported is 5120.
>
> v2: -updated comment (JP)
> -not declare list of tests (JP)
> -fixed indentation (JP)
> -added i915_max_source_size_test() inside
> igt_subtest_group() (JP)
> v3: -added restriction to run this test only when HDISPLAY=3840
>
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
> ---
> tests/kms_plane_scaling.c | 107 ++++++++++++++++++++++++++++++++++++--
> 1 file changed, 104 insertions(+), 3 deletions(-)
>
> diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
> index 795e3daa..dd2138a7 100644
> --- a/tests/kms_plane_scaling.c
> +++ b/tests/kms_plane_scaling.c
> @@ -26,6 +26,8 @@
> #include "igt_vec.h"
> #include <math.h>
>
> +#define HDISPLAY_4K 3840
> +
> IGT_TEST_DESCRIPTION("Test display plane scaling");
>
> enum scaler_combo_test_type {
> @@ -964,6 +966,102 @@ static void invalid_parameter_tests(data_t *d)
> }
> }
>
> +/*
> + * Max source/destination width/height for i915 driver.
> + * These numbers are coming from
> + * drivers/gpu/drm/i915/display/skl_scaler.c in kernel sources.
> + *
> + * DISPLAY_VER < 11
> + * max_src_w = 4096
> + * max_src_h = 4096
> + * max_dst_w = 4096
> + * max_dst_h = 4096
> + *
> + * DISPLAY_VER = 11
> + * max_src_w = 5120
> + * max_src_h = 4096
> + * max_dst_w = 5120
> + * max_dst_h = 4096
> + *
> + * DISPLAY_VER = 12-13
> + * max_src_w = 5120
> + * max_src_h = 8192
> + * max_dst_w = 8192
> + * max_dst_h = 8192
> + *
> + * DISPLAY_VER = 14
> + * max_src_w = 4096
> + * max_src_h = 8192
> + * max_dst_w = 8192
> + * max_dst_h = 8192
> + */
> +
> +static void i915_max_source_size_test(data_t *d)
> +{
> + enum pipe pipe = PIPE_A;
> + drmModeModeInfo *mode;
> + igt_output_t *output;
> + igt_fb_t fb;
> + igt_plane_t *plane;
> + int rval;
> +
> + static const struct invalid_paramtests paramtests[] = {
> + {
> + .testname = "max-src-size",
> + .planesize = {3840, 2400},
> + .params = {{~0}}
> + },
> + };
> +
> + igt_fixture {
> + igt_require_intel(d->drm_fd);
> +
> + output = igt_get_single_output_for_pipe(&d->display, pipe);
> + igt_require(output);
> +
> + mode = igt_output_get_mode(output);
> + igt_require(mode->hdisplay == HDISPLAY_4K);
Would this be better with >= instead of == ?
> +
> + igt_output_set_pipe(output, pipe);
> + plane = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
> +
> + igt_create_fb(d->drm_fd, 5120, 4320,
> + DRM_FORMAT_XRGB8888,
> + DRM_FORMAT_MOD_NONE,
> + &fb);
> + }
> +
> + igt_describe("test for validating max source size.");
> + igt_subtest_with_dynamic("i915-max-source-size") {
> + for (uint32_t i = 0; i < ARRAY_SIZE(paramtests); i++) {
> + igt_dynamic(paramtests[i].testname) {
> + igt_plane_set_position(plane, 0, 0);
> + igt_plane_set_fb(plane, &fb);
> + igt_plane_set_size(plane,
> + paramtests[i].planesize[0],
> + paramtests[i].planesize[1]);
> +
> + for (uint32_t j = 0; paramtests[i].params[j].prop != ~0; j++)
> + igt_plane_set_prop_value(plane,
> + paramtests[i].params[j].prop,
> + paramtests[i].params[j].value);
These params are not being used, are there plans on this or would it be
better just to take this loop away along with .params from paramtests
structure?
> +
> + rval = igt_display_try_commit2(&d->display, COMMIT_ATOMIC);
> +
> + if (intel_display_ver(d->devid) < 11 || intel_display_ver(d->devid) >= 14)
> + igt_assert(rval == -EINVAL || rval == -ERANGE);
> + else
> + igt_assert_eq(rval, 0);
> + }
> + }
> + }
> +
> + igt_fixture {
> + igt_remove_fb(d->drm_fd, &fb);
> + igt_output_set_pipe(output, PIPE_NONE);
> + }
> +}
> +
> static int opt_handler(int opt, int opt_index, void *_data)
> {
> data_t *data = _data;
> @@ -1123,13 +1221,16 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
> }
> }
>
> + igt_subtest_group
> + invalid_parameter_tests(&data);
> +
> + igt_subtest_group
> + i915_max_source_size_test(&data);
> +
> igt_describe("Tests scaling with multi-pipe.");
> igt_subtest_f("2x-scaler-multi-pipe")
> test_scaler_with_multi_pipe_plane(&data);
>
> - igt_subtest_group
> - invalid_parameter_tests(&data);
> -
> igt_fixture {
> igt_display_fini(&data.display);
> close(data.drm_fd);
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2023-02-24 12:46 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-22 9:19 [igt-dev] [PATCH i-g-t v3 0/3] Validate max source size Swati Sharma
2023-02-22 9:19 ` [igt-dev] [PATCH i-g-t v3 1/3] tests/kms_plane_scaling: Prep work Swati Sharma
2023-02-22 9:19 ` [igt-dev] [PATCH i-g-t v3 2/3] tests/kms_plane_scaling: Minor fixes Swati Sharma
2023-02-22 9:19 ` [igt-dev] [PATCH i-g-t v3 3/3] tests/kms_plane_scaling: Add test to validate max source size Swati Sharma
2023-02-24 12:46 ` Juha-Pekka Heikkila
2023-02-22 15:14 ` [igt-dev] ✓ Fi.CI.BAT: success for Validate max source size (rev4) Patchwork
2023-02-22 17:26 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox