* [igt-dev] [v3] tests/kms_plane_scaling: Add downscaling+upscaling tests
@ 2023-02-15 7:27 Swati Sharma
2023-02-15 8:07 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_scaling: Add downscaling+upscaling tests (rev3) Patchwork
2023-02-15 20:40 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
0 siblings, 2 replies; 6+ messages in thread
From: Swati Sharma @ 2023-02-15 7:27 UTC (permalink / raw)
To: igt-dev
In newer hardware versions (i.e. display version >= 14), the second
scaler doesn't support downscaling. Current driver design in the
case of 2 plane scaling scenario is if plane1-US and plane2-DS,
it's reject for now. That's why new tests are added for plane1-DS
and plane2-US, so that different DS+US combinations can be validated.
v2: -minor fix
v3: -change to if-else ladder to switch (JP)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/kms_plane_scaling.c | 108 ++++++++++++++++++++++++++++++++------
1 file changed, 91 insertions(+), 17 deletions(-)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 4a04f42a0..8b93a424c 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -31,7 +31,8 @@ IGT_TEST_DESCRIPTION("Test display plane scaling");
enum scaler_combo_test_type {
TEST_PLANES_UPSCALE = 0,
TEST_PLANES_DOWNSCALE,
- TEST_PLANES_UPSCALE_DOWNSCALE
+ TEST_PLANES_UPSCALE_DOWNSCALE,
+ TEST_PLANES_DOWNSCALE_UPSCALE
};
typedef struct {
@@ -286,6 +287,69 @@ const struct {
0.75,
TEST_PLANES_UPSCALE_DOWNSCALE,
},
+ {
+ "Tests downscaling (scaling factor 0.25) and upscaling (20x20) of 2 planes.",
+ "planes-downscale-factor-0-25-upscale-20x20",
+ 0.25,
+ 0.0,
+ TEST_PLANES_DOWNSCALE_UPSCALE,
+ },
+ {
+ "Tests downscaling (scaling factor 0.25) and upscaling (scaling factor 0.25) of 2 planes.",
+ "planes-downscale-factor-0-25-upscale-0-25",
+ 0.25,
+ 0.25,
+ TEST_PLANES_DOWNSCALE_UPSCALE,
+ },
+ {
+ "Tests downscaling (scaling factor 0.25) and scaling (unity) of 2 planes.",
+ "planes-downscale-factor-0-25-unity-scaling",
+ 0.25,
+ 1.0,
+ TEST_PLANES_DOWNSCALE_UPSCALE,
+ },
+ {
+ "Tests downscaling (scaling factor 0.5) and upscaling (20x20) of 2 planes.",
+ "planes-downscale-factor-0-5-upscale-20x20",
+ 0.5,
+ 0.0,
+ TEST_PLANES_DOWNSCALE_UPSCALE,
+ },
+ {
+ "Tests downscaling (scaling factor 0.5) and upscaling (scaling factor 0.25) of 2 planes.",
+ "planes-downscale-factor-0-5-upscale-0-25",
+ 0.5,
+ 0.25,
+ TEST_PLANES_DOWNSCALE_UPSCALE,
+ },
+ {
+ "Tests downscaling (scaling factor 0.5) and scaling (unity) of 2 planes.",
+ "planes-downscale-factor-0-5-unity-scaling",
+ 0.5,
+ 1.0,
+ TEST_PLANES_DOWNSCALE_UPSCALE,
+ },
+ {
+ "Tests downscaling (scaling factor 0.75) and upscaling (20x20) of 2 planes.",
+ "planes-downscale-factor-0-75-upscale-20x20",
+ 0.75,
+ 0.0,
+ TEST_PLANES_DOWNSCALE_UPSCALE,
+ },
+ {
+ "Tests downscaling (scaling factor 0.75) and upscaling (scaling factor 0.25) of 2 planes.",
+ "planes-downscale-factor-0-75-upscale-0-25",
+ 0.75,
+ 0.25,
+ TEST_PLANES_DOWNSCALE_UPSCALE,
+ },
+ {
+ "Tests downscaling (scaling factor 0.75) and scaling (unity) of 2 planes.",
+ "planes-downscale-factor-0-75-unity-scaling",
+ 0.75,
+ 1.0,
+ TEST_PLANES_DOWNSCALE_UPSCALE,
+ },
};
static int get_width(drmModeModeInfo *mode, double scaling_factor)
@@ -589,23 +653,25 @@ __test_planes_scaling_combo(data_t *d, int w1, int h1, int w2, int h2,
igt_plane_set_fb(p1, fb1);
igt_plane_set_fb(p2, fb2);
- if (test_type == TEST_PLANES_UPSCALE) {
- /* first plane upscaling */
+ switch (test_type) {
+ case TEST_PLANES_UPSCALE:
igt_plane_set_size(p1, mode->hdisplay, mode->vdisplay);
- /* second plane upscaling */
igt_plane_set_size(p2, mode->hdisplay - 20, mode->vdisplay - 20);
- }
- if (test_type == TEST_PLANES_DOWNSCALE) {
- /* first plane downscaling */
+ break;
+ case TEST_PLANES_DOWNSCALE:
igt_plane_set_size(p1, w1, h1);
- /* second plane downscaling */
igt_plane_set_size(p2, w2, h2);
- }
- if (test_type == TEST_PLANES_UPSCALE_DOWNSCALE) {
- /* first plane upscaling */
+ break;
+ case TEST_PLANES_UPSCALE_DOWNSCALE:
igt_plane_set_size(p1, mode->hdisplay, mode->vdisplay);
- /* second plane downscaling */
igt_plane_set_size(p2, w2, h2);
+ break;
+ case TEST_PLANES_DOWNSCALE_UPSCALE:
+ igt_plane_set_size(p1, w1, h1);
+ igt_plane_set_size(p2, mode->hdisplay, mode->vdisplay);
+ break;
+ default:
+ igt_assert(0);
}
ret = igt_display_try_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
@@ -641,17 +707,25 @@ test_planes_scaling_combo(data_t *d, int w1, int h1, int w2, int h2,
igt_output_set_pipe(output, pipe);
mode = igt_output_get_mode(output);
- if (test_type == TEST_PLANES_UPSCALE) {
+ switch (test_type) {
+ case TEST_PLANES_UPSCALE:
setup_fb(display->drm_fd, w1, h1, 1.0, 0.0, 0.0, &d->fb[1]);
setup_fb(display->drm_fd, w2, h2, 0.0, 1.0, 0.0, &d->fb[2]);
- }
- if (test_type == TEST_PLANES_DOWNSCALE) {
+ break;
+ case TEST_PLANES_DOWNSCALE:
setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay, 1.0, 0.0, 0.0, &d->fb[1]);
setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay, 0.0, 1.0, 0.0, &d->fb[2]);
- }
- if (test_type == TEST_PLANES_UPSCALE_DOWNSCALE) {
+ break;
+ case TEST_PLANES_UPSCALE_DOWNSCALE:
setup_fb(display->drm_fd, w1, h1, 1.0, 0.0, 0.0, &d->fb[1]);
setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay, 0.0, 1.0, 0.0, &d->fb[2]);
+ break;
+ case TEST_PLANES_DOWNSCALE_UPSCALE:
+ setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay, 0.0, 1.0, 0.0, &d->fb[1]);
+ setup_fb(display->drm_fd, w1, h1, 1.0, 0.0, 0.0, &d->fb[2]);
+ break;
+ default:
+ igt_assert(0);
}
for (int k = 0; k < display->pipes[pipe].n_planes; k++) {
--
2.25.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] [v3] tests/kms_plane_scaling: Add downscaling+upscaling tests
@ 2023-02-15 7:36 Swati Sharma
2023-02-16 15:29 ` Juha-Pekka Heikkila
0 siblings, 1 reply; 6+ messages in thread
From: Swati Sharma @ 2023-02-15 7:36 UTC (permalink / raw)
To: igt-dev
In newer hardware versions (i.e. display version >= 14), the second
scaler doesn't support downscaling. Current driver design in the
case of 2 plane scaling scenario is if plane1-US and plane2-DS,
it's reject for now. That's why new tests are added for plane1-DS
and plane2-US, so that different DS+US combinations can be validated.
v2: -minor fix
v3: -change to if-else ladder to switch (JP)
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
tests/kms_plane_scaling.c | 108 ++++++++++++++++++++++++++++++++------
1 file changed, 91 insertions(+), 17 deletions(-)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 4a04f42a0..1f132bae1 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -31,7 +31,8 @@ IGT_TEST_DESCRIPTION("Test display plane scaling");
enum scaler_combo_test_type {
TEST_PLANES_UPSCALE = 0,
TEST_PLANES_DOWNSCALE,
- TEST_PLANES_UPSCALE_DOWNSCALE
+ TEST_PLANES_UPSCALE_DOWNSCALE,
+ TEST_PLANES_DOWNSCALE_UPSCALE,
};
typedef struct {
@@ -286,6 +287,69 @@ const struct {
0.75,
TEST_PLANES_UPSCALE_DOWNSCALE,
},
+ {
+ "Tests downscaling (scaling factor 0.25) and upscaling (20x20) of 2 planes.",
+ "planes-downscale-factor-0-25-upscale-20x20",
+ 0.25,
+ 0.0,
+ TEST_PLANES_DOWNSCALE_UPSCALE,
+ },
+ {
+ "Tests downscaling (scaling factor 0.25) and upscaling (scaling factor 0.25) of 2 planes.",
+ "planes-downscale-factor-0-25-upscale-0-25",
+ 0.25,
+ 0.25,
+ TEST_PLANES_DOWNSCALE_UPSCALE,
+ },
+ {
+ "Tests downscaling (scaling factor 0.25) and scaling (unity) of 2 planes.",
+ "planes-downscale-factor-0-25-unity-scaling",
+ 0.25,
+ 1.0,
+ TEST_PLANES_DOWNSCALE_UPSCALE,
+ },
+ {
+ "Tests downscaling (scaling factor 0.5) and upscaling (20x20) of 2 planes.",
+ "planes-downscale-factor-0-5-upscale-20x20",
+ 0.5,
+ 0.0,
+ TEST_PLANES_DOWNSCALE_UPSCALE,
+ },
+ {
+ "Tests downscaling (scaling factor 0.5) and upscaling (scaling factor 0.25) of 2 planes.",
+ "planes-downscale-factor-0-5-upscale-0-25",
+ 0.5,
+ 0.25,
+ TEST_PLANES_DOWNSCALE_UPSCALE,
+ },
+ {
+ "Tests downscaling (scaling factor 0.5) and scaling (unity) of 2 planes.",
+ "planes-downscale-factor-0-5-unity-scaling",
+ 0.5,
+ 1.0,
+ TEST_PLANES_DOWNSCALE_UPSCALE,
+ },
+ {
+ "Tests downscaling (scaling factor 0.75) and upscaling (20x20) of 2 planes.",
+ "planes-downscale-factor-0-75-upscale-20x20",
+ 0.75,
+ 0.0,
+ TEST_PLANES_DOWNSCALE_UPSCALE,
+ },
+ {
+ "Tests downscaling (scaling factor 0.75) and upscaling (scaling factor 0.25) of 2 planes.",
+ "planes-downscale-factor-0-75-upscale-0-25",
+ 0.75,
+ 0.25,
+ TEST_PLANES_DOWNSCALE_UPSCALE,
+ },
+ {
+ "Tests downscaling (scaling factor 0.75) and scaling (unity) of 2 planes.",
+ "planes-downscale-factor-0-75-unity-scaling",
+ 0.75,
+ 1.0,
+ TEST_PLANES_DOWNSCALE_UPSCALE,
+ },
};
static int get_width(drmModeModeInfo *mode, double scaling_factor)
@@ -589,23 +653,25 @@ __test_planes_scaling_combo(data_t *d, int w1, int h1, int w2, int h2,
igt_plane_set_fb(p1, fb1);
igt_plane_set_fb(p2, fb2);
- if (test_type == TEST_PLANES_UPSCALE) {
- /* first plane upscaling */
+ switch (test_type) {
+ case TEST_PLANES_UPSCALE:
igt_plane_set_size(p1, mode->hdisplay, mode->vdisplay);
- /* second plane upscaling */
igt_plane_set_size(p2, mode->hdisplay - 20, mode->vdisplay - 20);
- }
- if (test_type == TEST_PLANES_DOWNSCALE) {
- /* first plane downscaling */
+ break;
+ case TEST_PLANES_DOWNSCALE:
igt_plane_set_size(p1, w1, h1);
- /* second plane downscaling */
igt_plane_set_size(p2, w2, h2);
- }
- if (test_type == TEST_PLANES_UPSCALE_DOWNSCALE) {
- /* first plane upscaling */
+ break;
+ case TEST_PLANES_UPSCALE_DOWNSCALE:
igt_plane_set_size(p1, mode->hdisplay, mode->vdisplay);
- /* second plane downscaling */
igt_plane_set_size(p2, w2, h2);
+ break;
+ case TEST_PLANES_DOWNSCALE_UPSCALE:
+ igt_plane_set_size(p1, w1, h1);
+ igt_plane_set_size(p2, mode->hdisplay, mode->vdisplay);
+ break;
+ default:
+ igt_assert(0);
}
ret = igt_display_try_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
@@ -641,17 +707,25 @@ test_planes_scaling_combo(data_t *d, int w1, int h1, int w2, int h2,
igt_output_set_pipe(output, pipe);
mode = igt_output_get_mode(output);
- if (test_type == TEST_PLANES_UPSCALE) {
+ switch (test_type) {
+ case TEST_PLANES_UPSCALE:
setup_fb(display->drm_fd, w1, h1, 1.0, 0.0, 0.0, &d->fb[1]);
setup_fb(display->drm_fd, w2, h2, 0.0, 1.0, 0.0, &d->fb[2]);
- }
- if (test_type == TEST_PLANES_DOWNSCALE) {
+ break;
+ case TEST_PLANES_DOWNSCALE:
setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay, 1.0, 0.0, 0.0, &d->fb[1]);
setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay, 0.0, 1.0, 0.0, &d->fb[2]);
- }
- if (test_type == TEST_PLANES_UPSCALE_DOWNSCALE) {
+ break;
+ case TEST_PLANES_UPSCALE_DOWNSCALE:
setup_fb(display->drm_fd, w1, h1, 1.0, 0.0, 0.0, &d->fb[1]);
setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay, 0.0, 1.0, 0.0, &d->fb[2]);
+ break;
+ case TEST_PLANES_DOWNSCALE_UPSCALE:
+ setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay, 0.0, 1.0, 0.0, &d->fb[1]);
+ setup_fb(display->drm_fd, w2, h2, 1.0, 0.0, 0.0, &d->fb[2]);
+ break;
+ default:
+ igt_assert(0);
}
for (int k = 0; k < display->pipes[pipe].n_planes; k++) {
--
2.25.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_scaling: Add downscaling+upscaling tests (rev3)
2023-02-15 7:27 [igt-dev] [v3] tests/kms_plane_scaling: Add downscaling+upscaling tests Swati Sharma
@ 2023-02-15 8:07 ` Patchwork
2023-02-15 20:40 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
1 sibling, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-02-15 8:07 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5696 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Add downscaling+upscaling tests (rev3)
URL : https://patchwork.freedesktop.org/series/113692/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12741 -> IGTPW_8499
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/index.html
Participating hosts (38 -> 37)
------------------------------
Additional (2): fi-kbl-soraka fi-pnv-d510
Missing (3): bat-rpls-2 bat-kbl-2 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_8499:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_suspend@basic-s2idle-without-i915:
- {bat-rpls-1}: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/bat-rpls-1/igt@i915_suspend@basic-s2idle-without-i915.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/bat-rpls-1/igt@i915_suspend@basic-s2idle-without-i915.html
Known issues
------------
Here are the changes found in IGTPW_8499 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_huc_copy@huc-copy:
- fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#2190])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613]) +3 similar issues
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
* igt@i915_module_load@reload:
- fi-kbl-soraka: NOTRUN -> [DMESG-WARN][5] ([i915#1982]) +1 similar issue
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/fi-kbl-soraka/igt@i915_module_load@reload.html
* igt@i915_selftest@live@execlists:
- fi-kbl-soraka: NOTRUN -> [INCOMPLETE][6] ([i915#7913])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/fi-kbl-soraka/igt@i915_selftest@live@execlists.html
* igt@i915_selftest@live@gt_heartbeat:
- fi-apl-guc: [PASS][7] -> [DMESG-FAIL][8] ([i915#5334])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
* igt@i915_selftest@live@gt_pm:
- fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][9] ([i915#1886])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- fi-kbl-soraka: NOTRUN -> [SKIP][10] ([fdo#109271]) +15 similar issues
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/fi-kbl-soraka/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_psr@primary_page_flip:
- fi-pnv-d510: NOTRUN -> [SKIP][11] ([fdo#109271]) +44 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/fi-pnv-d510/igt@kms_psr@primary_page_flip.html
#### Possible fixes ####
* igt@i915_selftest@live@gt_heartbeat:
- fi-glk-j4005: [DMESG-FAIL][12] ([i915#5334]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7160 -> IGTPW_8499
CI-20190529: 20190529
CI_DRM_12741: 67545af096c3c8dee1d48662a3f4830cd84b1105 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8499: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/index.html
IGT_7160: 45da871dd2684227e93a2fc002b87dfc58bd5fd9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling
+igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling
+igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20
+igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling
+igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-0-25
+igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20
-igt@perf@gen12-gt-concurrent-oa-buffer-read
-igt@perf@gen12-gt-exclusive-stream-ctx-handle
-igt@perf@gen12-gt-exclusive-stream-sample-oa
-igt@perf@gen12-invalid-class-instance
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/index.html
[-- Attachment #2: Type: text/html, Size: 6746 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_plane_scaling: Add downscaling+upscaling tests (rev3)
2023-02-15 7:27 [igt-dev] [v3] tests/kms_plane_scaling: Add downscaling+upscaling tests Swati Sharma
2023-02-15 8:07 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_scaling: Add downscaling+upscaling tests (rev3) Patchwork
@ 2023-02-15 20:40 ` Patchwork
1 sibling, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-02-15 20:40 UTC (permalink / raw)
To: Swati Sharma; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 38587 bytes --]
== Series Details ==
Series: tests/kms_plane_scaling: Add downscaling+upscaling tests (rev3)
URL : https://patchwork.freedesktop.org/series/113692/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12741_full -> IGTPW_8499_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_8499_full:
### IGT changes ###
#### Possible regressions ####
* {igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-0-25@pipe-b-edp-1} (NEW):
- {shard-rkl}: NOTRUN -> [SKIP][1] +9 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-0-25@pipe-b-edp-1.html
* {igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling} (NEW):
- {shard-tglu-9}: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-tglu-9/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_plane_scaling@invalid-parameters}:
- {shard-rkl}: [SKIP][3] ([i915#8152]) -> [SKIP][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-rkl-5/igt@kms_plane_scaling@invalid-parameters.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-rkl-1/igt@kms_plane_scaling@invalid-parameters.html
New tests
---------
New tests have been introduced between CI_DRM_12741_full and IGTPW_8499_full:
### New IGT tests (102) ###
* igt@drm_fdinfo@busy-hang@vcs1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-dp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-hdmi-a-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a-vga-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-dp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-vga-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-dp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-0-25:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-0-25@pipe-a-dp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-0-25@pipe-a-hdmi-a-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-0-25@pipe-a-vga-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-0-25@pipe-b-dp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-0-25@pipe-b-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-0-25@pipe-b-vga-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-0-25@pipe-c-dp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-0-25@pipe-c-hdmi-a-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-dp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-1:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-dp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-dp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-vga-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-c-dp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-c-hdmi-a-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-0-25:
- Statuses :
- Exec time: [None] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-0-25@pipe-a-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-0-25@pipe-a-edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-0-25@pipe-a-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-0-25@pipe-a-vga-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-0-25@pipe-b-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-0-25@pipe-b-edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-0-25@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-0-25@pipe-b-vga-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-0-25@pipe-c-dp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-0-25@pipe-c-hdmi-a-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a-vga-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-vga-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-c-dp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling:
- Statuses : 2 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-a-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-a-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-a-vga-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-b-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-b-vga-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-c-dp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-c-hdmi-a-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-0-25:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-0-25@pipe-a-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-0-25@pipe-a-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-0-25@pipe-a-vga-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-0-25@pipe-b-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-0-25@pipe-b-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-0-25@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-0-25@pipe-b-vga-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-0-25@pipe-c-dp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-0-25@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-0-25@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-a-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-a-hdmi-a-1:
- Statuses : 2 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-a-vga-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b-dp-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-b-vga-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-c-dp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-c-hdmi-a-1:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-c-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@prime_mmap@test_forked_cpu_write@test_forked_cpu_write-lmem0:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_8499_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-glk: [PASS][5] -> [FAIL][6] ([i915#2842]) +4 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-glk3/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@i915_pm_rps@engine-order:
- shard-apl: [PASS][7] -> [FAIL][8] ([i915#6537])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-apl7/igt@i915_pm_rps@engine-order.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-apl4/igt@i915_pm_rps@engine-order.html
* igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
- shard-apl: [PASS][9] -> [FAIL][10] ([i915#2346])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
* igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][11] -> [FAIL][12] ([i915#2122])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-glk8/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-glk2/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][13] ([fdo#109271]) +19 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-glk4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* {igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1} (NEW):
- shard-snb: NOTRUN -> [SKIP][14] ([fdo#109271]) +42 similar issues
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-snb2/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html
* {igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-0-25@pipe-c-dp-1} (NEW):
- shard-apl: NOTRUN -> [SKIP][15] ([fdo#109271]) +14 similar issues
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-apl1/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-0-25@pipe-c-dp-1.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#658])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-glk2/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- {shard-rkl}: [FAIL][17] ([i915#7742]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@fbdev@unaligned-read:
- {shard-rkl}: [SKIP][19] ([i915#2582]) -> [PASS][20] +1 similar issue
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-rkl-3/igt@fbdev@unaligned-read.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-rkl-4/igt@fbdev@unaligned-read.html
* igt@gem_eio@in-flight-suspend:
- {shard-rkl}: [FAIL][21] ([i915#5115] / [i915#7052]) -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-rkl-3/igt@gem_eio@in-flight-suspend.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-rkl-2/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_fair@basic-deadline:
- {shard-rkl}: [FAIL][23] ([i915#2846]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-rkl-1/igt@gem_exec_fair@basic-deadline.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][25] ([i915#2842]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-apl: [FAIL][27] ([i915#2842]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-apl7/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_reloc@basic-write-read:
- {shard-rkl}: [SKIP][29] ([i915#3281]) -> [PASS][30] +8 similar issues
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-rkl-4/igt@gem_exec_reloc@basic-write-read.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-rkl-5/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_mmap_gtt@coherency:
- {shard-rkl}: [SKIP][31] ([fdo#111656]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-rkl-6/igt@gem_mmap_gtt@coherency.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-rkl-5/igt@gem_mmap_gtt@coherency.html
* igt@gem_pwrite_snooped:
- {shard-rkl}: [SKIP][33] ([i915#3282]) -> [PASS][34] +3 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-rkl-2/igt@gem_pwrite_snooped.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-rkl-5/igt@gem_pwrite_snooped.html
* igt@gen9_exec_parse@bb-chained:
- {shard-rkl}: [SKIP][35] ([i915#2527]) -> [PASS][36] +2 similar issues
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-rkl-3/igt@gen9_exec_parse@bb-chained.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html
* igt@i915_pm_rpm@dpms-mode-unset-lpsp:
- {shard-tglu}: [SKIP][37] ([i915#1397]) -> [PASS][38] +1 similar issue
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-tglu-6/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-tglu-1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs_cc:
- {shard-tglu}: [SKIP][39] ([i915#1845] / [i915#7651]) -> [PASS][40] +2 similar issues
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-tglu-6/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-tglu-2/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions:
- shard-apl: [FAIL][41] ([i915#2346]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
- shard-glk: [FAIL][43] ([i915#2346]) -> [PASS][44]
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt:
- {shard-tglu}: [SKIP][45] ([i915#1849]) -> [PASS][46]
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render:
- {shard-rkl}: [SKIP][47] ([i915#1849] / [i915#4098]) -> [PASS][48] +10 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_plane@plane-panning-bottom-right@pipe-a-planes:
- {shard-rkl}: [SKIP][49] ([i915#1849]) -> [PASS][50] +1 similar issue
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-rkl-5/igt@kms_plane@plane-panning-bottom-right@pipe-a-planes.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right@pipe-a-planes.html
* igt@kms_psr@cursor_plane_onoff:
- {shard-rkl}: [SKIP][51] ([i915#1072]) -> [PASS][52]
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-rkl-2/igt@kms_psr@cursor_plane_onoff.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-rkl-6/igt@kms_psr@cursor_plane_onoff.html
* igt@kms_vblank@pipe-b-query-forked:
- {shard-rkl}: [SKIP][53] ([i915#1845] / [i915#4098]) -> [PASS][54] +14 similar issues
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-rkl-1/igt@kms_vblank@pipe-b-query-forked.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-rkl-6/igt@kms_vblank@pipe-b-query-forked.html
* igt@perf@polling-small-buf:
- {shard-rkl}: [FAIL][55] ([i915#1722]) -> [PASS][56]
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-rkl-3/igt@perf@polling-small-buf.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-rkl-5/igt@perf@polling-small-buf.html
* igt@perf@stress-open-close:
- shard-glk: [ABORT][57] ([i915#5213]) -> [PASS][58]
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-glk1/igt@perf@stress-open-close.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-glk6/igt@perf@stress-open-close.html
* igt@prime_vgem@basic-fence-read:
- {shard-rkl}: [SKIP][59] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][60]
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-rkl-4/igt@prime_vgem@basic-fence-read.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-rkl-5/igt@prime_vgem@basic-fence-read.html
* igt@sysfs_timeslice_duration@timeout@vcs1:
- {shard-dg1}: [FAIL][61] ([i915#1755]) -> [PASS][62] +3 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12741/shard-dg1-18/igt@sysfs_timeslice_duration@timeout@vcs1.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/shard-dg1-13/igt@sysfs_timeslice_duration@timeout@vcs1.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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[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
[fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[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#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
[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#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2532]: https://gitlab.freedesktop.org/drm/intel/issues/2532
[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#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[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#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[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#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030
[i915#5115]: https://gitlab.freedesktop.org/drm/intel/issues/5115
[i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
[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#5431]: https://gitlab.freedesktop.org/drm/intel/issues/5431
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
[i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[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#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[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#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[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#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7052]: https://gitlab.freedesktop.org/drm/intel/issues/7052
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128
[i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276
[i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294
[i915#7330]: https://gitlab.freedesktop.org/drm/intel/issues/7330
[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#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[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#8151]: https://gitlab.freedesktop.org/drm/intel/issues/8151
[i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7160 -> IGTPW_8499
CI-20190529: 20190529
CI_DRM_12741: 67545af096c3c8dee1d48662a3f4830cd84b1105 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8499: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/index.html
IGT_7160: 45da871dd2684227e93a2fc002b87dfc58bd5fd9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8499/index.html
[-- Attachment #2: Type: text/html, Size: 34676 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [v3] tests/kms_plane_scaling: Add downscaling+upscaling tests
2023-02-15 7:36 [igt-dev] [v3] tests/kms_plane_scaling: Add downscaling+upscaling tests Swati Sharma
@ 2023-02-16 15:29 ` Juha-Pekka Heikkila
2023-02-17 7:03 ` Swati Sharma
0 siblings, 1 reply; 6+ messages in thread
From: Juha-Pekka Heikkila @ 2023-02-16 15:29 UTC (permalink / raw)
To: Swati Sharma, igt-dev
Look ok to me.
Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
On 15.2.2023 9.36, Swati Sharma wrote:
> In newer hardware versions (i.e. display version >= 14), the second
> scaler doesn't support downscaling. Current driver design in the
> case of 2 plane scaling scenario is if plane1-US and plane2-DS,
> it's reject for now. That's why new tests are added for plane1-DS
> and plane2-US, so that different DS+US combinations can be validated.
>
> v2: -minor fix
> v3: -change to if-else ladder to switch (JP)
>
> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
> ---
> tests/kms_plane_scaling.c | 108 ++++++++++++++++++++++++++++++++------
> 1 file changed, 91 insertions(+), 17 deletions(-)
>
> diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
> index 4a04f42a0..1f132bae1 100644
> --- a/tests/kms_plane_scaling.c
> +++ b/tests/kms_plane_scaling.c
> @@ -31,7 +31,8 @@ IGT_TEST_DESCRIPTION("Test display plane scaling");
> enum scaler_combo_test_type {
> TEST_PLANES_UPSCALE = 0,
> TEST_PLANES_DOWNSCALE,
> - TEST_PLANES_UPSCALE_DOWNSCALE
> + TEST_PLANES_UPSCALE_DOWNSCALE,
> + TEST_PLANES_DOWNSCALE_UPSCALE,
> };
>
> typedef struct {
> @@ -286,6 +287,69 @@ const struct {
> 0.75,
> TEST_PLANES_UPSCALE_DOWNSCALE,
> },
> + {
> + "Tests downscaling (scaling factor 0.25) and upscaling (20x20) of 2 planes.",
> + "planes-downscale-factor-0-25-upscale-20x20",
> + 0.25,
> + 0.0,
> + TEST_PLANES_DOWNSCALE_UPSCALE,
> + },
> + {
> + "Tests downscaling (scaling factor 0.25) and upscaling (scaling factor 0.25) of 2 planes.",
> + "planes-downscale-factor-0-25-upscale-0-25",
> + 0.25,
> + 0.25,
> + TEST_PLANES_DOWNSCALE_UPSCALE,
> + },
> + {
> + "Tests downscaling (scaling factor 0.25) and scaling (unity) of 2 planes.",
> + "planes-downscale-factor-0-25-unity-scaling",
> + 0.25,
> + 1.0,
> + TEST_PLANES_DOWNSCALE_UPSCALE,
> + },
> + {
> + "Tests downscaling (scaling factor 0.5) and upscaling (20x20) of 2 planes.",
> + "planes-downscale-factor-0-5-upscale-20x20",
> + 0.5,
> + 0.0,
> + TEST_PLANES_DOWNSCALE_UPSCALE,
> + },
> + {
> + "Tests downscaling (scaling factor 0.5) and upscaling (scaling factor 0.25) of 2 planes.",
> + "planes-downscale-factor-0-5-upscale-0-25",
> + 0.5,
> + 0.25,
> + TEST_PLANES_DOWNSCALE_UPSCALE,
> + },
> + {
> + "Tests downscaling (scaling factor 0.5) and scaling (unity) of 2 planes.",
> + "planes-downscale-factor-0-5-unity-scaling",
> + 0.5,
> + 1.0,
> + TEST_PLANES_DOWNSCALE_UPSCALE,
> + },
> + {
> + "Tests downscaling (scaling factor 0.75) and upscaling (20x20) of 2 planes.",
> + "planes-downscale-factor-0-75-upscale-20x20",
> + 0.75,
> + 0.0,
> + TEST_PLANES_DOWNSCALE_UPSCALE,
> + },
> + {
> + "Tests downscaling (scaling factor 0.75) and upscaling (scaling factor 0.25) of 2 planes.",
> + "planes-downscale-factor-0-75-upscale-0-25",
> + 0.75,
> + 0.25,
> + TEST_PLANES_DOWNSCALE_UPSCALE,
> + },
> + {
> + "Tests downscaling (scaling factor 0.75) and scaling (unity) of 2 planes.",
> + "planes-downscale-factor-0-75-unity-scaling",
> + 0.75,
> + 1.0,
> + TEST_PLANES_DOWNSCALE_UPSCALE,
> + },
> };
>
> static int get_width(drmModeModeInfo *mode, double scaling_factor)
> @@ -589,23 +653,25 @@ __test_planes_scaling_combo(data_t *d, int w1, int h1, int w2, int h2,
> igt_plane_set_fb(p1, fb1);
> igt_plane_set_fb(p2, fb2);
>
> - if (test_type == TEST_PLANES_UPSCALE) {
> - /* first plane upscaling */
> + switch (test_type) {
> + case TEST_PLANES_UPSCALE:
> igt_plane_set_size(p1, mode->hdisplay, mode->vdisplay);
> - /* second plane upscaling */
> igt_plane_set_size(p2, mode->hdisplay - 20, mode->vdisplay - 20);
> - }
> - if (test_type == TEST_PLANES_DOWNSCALE) {
> - /* first plane downscaling */
> + break;
> + case TEST_PLANES_DOWNSCALE:
> igt_plane_set_size(p1, w1, h1);
> - /* second plane downscaling */
> igt_plane_set_size(p2, w2, h2);
> - }
> - if (test_type == TEST_PLANES_UPSCALE_DOWNSCALE) {
> - /* first plane upscaling */
> + break;
> + case TEST_PLANES_UPSCALE_DOWNSCALE:
> igt_plane_set_size(p1, mode->hdisplay, mode->vdisplay);
> - /* second plane downscaling */
> igt_plane_set_size(p2, w2, h2);
> + break;
> + case TEST_PLANES_DOWNSCALE_UPSCALE:
> + igt_plane_set_size(p1, w1, h1);
> + igt_plane_set_size(p2, mode->hdisplay, mode->vdisplay);
> + break;
> + default:
> + igt_assert(0);
> }
>
> ret = igt_display_try_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
> @@ -641,17 +707,25 @@ test_planes_scaling_combo(data_t *d, int w1, int h1, int w2, int h2,
> igt_output_set_pipe(output, pipe);
> mode = igt_output_get_mode(output);
>
> - if (test_type == TEST_PLANES_UPSCALE) {
> + switch (test_type) {
> + case TEST_PLANES_UPSCALE:
> setup_fb(display->drm_fd, w1, h1, 1.0, 0.0, 0.0, &d->fb[1]);
> setup_fb(display->drm_fd, w2, h2, 0.0, 1.0, 0.0, &d->fb[2]);
> - }
> - if (test_type == TEST_PLANES_DOWNSCALE) {
> + break;
> + case TEST_PLANES_DOWNSCALE:
> setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay, 1.0, 0.0, 0.0, &d->fb[1]);
> setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay, 0.0, 1.0, 0.0, &d->fb[2]);
> - }
> - if (test_type == TEST_PLANES_UPSCALE_DOWNSCALE) {
> + break;
> + case TEST_PLANES_UPSCALE_DOWNSCALE:
> setup_fb(display->drm_fd, w1, h1, 1.0, 0.0, 0.0, &d->fb[1]);
> setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay, 0.0, 1.0, 0.0, &d->fb[2]);
> + break;
> + case TEST_PLANES_DOWNSCALE_UPSCALE:
> + setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay, 0.0, 1.0, 0.0, &d->fb[1]);
> + setup_fb(display->drm_fd, w2, h2, 1.0, 0.0, 0.0, &d->fb[2]);
> + break;
> + default:
> + igt_assert(0);
> }
>
> for (int k = 0; k < display->pipes[pipe].n_planes; k++) {
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [v3] tests/kms_plane_scaling: Add downscaling+upscaling tests
2023-02-16 15:29 ` Juha-Pekka Heikkila
@ 2023-02-17 7:03 ` Swati Sharma
0 siblings, 0 replies; 6+ messages in thread
From: Swati Sharma @ 2023-02-17 7:03 UTC (permalink / raw)
To: juhapekka.heikkila, igt-dev
Thanks for the reviews. Pushed.
On 16-Feb-23 8:59 PM, Juha-Pekka Heikkila wrote:
> Look ok to me.
>
> Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
>
> On 15.2.2023 9.36, Swati Sharma wrote:
>> In newer hardware versions (i.e. display version >= 14), the second
>> scaler doesn't support downscaling. Current driver design in the
>> case of 2 plane scaling scenario is if plane1-US and plane2-DS,
>> it's reject for now. That's why new tests are added for plane1-DS
>> and plane2-US, so that different DS+US combinations can be validated.
>>
>> v2: -minor fix
>> v3: -change to if-else ladder to switch (JP)
>>
>> Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
>> ---
>> tests/kms_plane_scaling.c | 108 ++++++++++++++++++++++++++++++++------
>> 1 file changed, 91 insertions(+), 17 deletions(-)
>>
>> diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
>> index 4a04f42a0..1f132bae1 100644
>> --- a/tests/kms_plane_scaling.c
>> +++ b/tests/kms_plane_scaling.c
>> @@ -31,7 +31,8 @@ IGT_TEST_DESCRIPTION("Test display plane scaling");
>> enum scaler_combo_test_type {
>> TEST_PLANES_UPSCALE = 0,
>> TEST_PLANES_DOWNSCALE,
>> - TEST_PLANES_UPSCALE_DOWNSCALE
>> + TEST_PLANES_UPSCALE_DOWNSCALE,
>> + TEST_PLANES_DOWNSCALE_UPSCALE,
>> };
>> typedef struct {
>> @@ -286,6 +287,69 @@ const struct {
>> 0.75,
>> TEST_PLANES_UPSCALE_DOWNSCALE,
>> },
>> + {
>> + "Tests downscaling (scaling factor 0.25) and upscaling
>> (20x20) of 2 planes.",
>> + "planes-downscale-factor-0-25-upscale-20x20",
>> + 0.25,
>> + 0.0,
>> + TEST_PLANES_DOWNSCALE_UPSCALE,
>> + },
>> + {
>> + "Tests downscaling (scaling factor 0.25) and upscaling
>> (scaling factor 0.25) of 2 planes.",
>> + "planes-downscale-factor-0-25-upscale-0-25",
>> + 0.25,
>> + 0.25,
>> + TEST_PLANES_DOWNSCALE_UPSCALE,
>> + },
>> + {
>> + "Tests downscaling (scaling factor 0.25) and scaling (unity)
>> of 2 planes.",
>> + "planes-downscale-factor-0-25-unity-scaling",
>> + 0.25,
>> + 1.0,
>> + TEST_PLANES_DOWNSCALE_UPSCALE,
>> + },
>> + {
>> + "Tests downscaling (scaling factor 0.5) and upscaling (20x20)
>> of 2 planes.",
>> + "planes-downscale-factor-0-5-upscale-20x20",
>> + 0.5,
>> + 0.0,
>> + TEST_PLANES_DOWNSCALE_UPSCALE,
>> + },
>> + {
>> + "Tests downscaling (scaling factor 0.5) and upscaling
>> (scaling factor 0.25) of 2 planes.",
>> + "planes-downscale-factor-0-5-upscale-0-25",
>> + 0.5,
>> + 0.25,
>> + TEST_PLANES_DOWNSCALE_UPSCALE,
>> + },
>> + {
>> + "Tests downscaling (scaling factor 0.5) and scaling (unity)
>> of 2 planes.",
>> + "planes-downscale-factor-0-5-unity-scaling",
>> + 0.5,
>> + 1.0,
>> + TEST_PLANES_DOWNSCALE_UPSCALE,
>> + },
>> + {
>> + "Tests downscaling (scaling factor 0.75) and upscaling
>> (20x20) of 2 planes.",
>> + "planes-downscale-factor-0-75-upscale-20x20",
>> + 0.75,
>> + 0.0,
>> + TEST_PLANES_DOWNSCALE_UPSCALE,
>> + },
>> + {
>> + "Tests downscaling (scaling factor 0.75) and upscaling
>> (scaling factor 0.25) of 2 planes.",
>> + "planes-downscale-factor-0-75-upscale-0-25",
>> + 0.75,
>> + 0.25,
>> + TEST_PLANES_DOWNSCALE_UPSCALE,
>> + },
>> + {
>> + "Tests downscaling (scaling factor 0.75) and scaling (unity)
>> of 2 planes.",
>> + "planes-downscale-factor-0-75-unity-scaling",
>> + 0.75,
>> + 1.0,
>> + TEST_PLANES_DOWNSCALE_UPSCALE,
>> + },
>> };
>> static int get_width(drmModeModeInfo *mode, double scaling_factor)
>> @@ -589,23 +653,25 @@ __test_planes_scaling_combo(data_t *d, int w1,
>> int h1, int w2, int h2,
>> igt_plane_set_fb(p1, fb1);
>> igt_plane_set_fb(p2, fb2);
>> - if (test_type == TEST_PLANES_UPSCALE) {
>> - /* first plane upscaling */
>> + switch (test_type) {
>> + case TEST_PLANES_UPSCALE:
>> igt_plane_set_size(p1, mode->hdisplay, mode->vdisplay);
>> - /* second plane upscaling */
>> igt_plane_set_size(p2, mode->hdisplay - 20, mode->vdisplay -
>> 20);
>> - }
>> - if (test_type == TEST_PLANES_DOWNSCALE) {
>> - /* first plane downscaling */
>> + break;
>> + case TEST_PLANES_DOWNSCALE:
>> igt_plane_set_size(p1, w1, h1);
>> - /* second plane downscaling */
>> igt_plane_set_size(p2, w2, h2);
>> - }
>> - if (test_type == TEST_PLANES_UPSCALE_DOWNSCALE) {
>> - /* first plane upscaling */
>> + break;
>> + case TEST_PLANES_UPSCALE_DOWNSCALE:
>> igt_plane_set_size(p1, mode->hdisplay, mode->vdisplay);
>> - /* second plane downscaling */
>> igt_plane_set_size(p2, w2, h2);
>> + break;
>> + case TEST_PLANES_DOWNSCALE_UPSCALE:
>> + igt_plane_set_size(p1, w1, h1);
>> + igt_plane_set_size(p2, mode->hdisplay, mode->vdisplay);
>> + break;
>> + default:
>> + igt_assert(0);
>> }
>> ret = igt_display_try_commit_atomic(display,
>> DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
>> @@ -641,17 +707,25 @@ test_planes_scaling_combo(data_t *d, int w1, int
>> h1, int w2, int h2,
>> igt_output_set_pipe(output, pipe);
>> mode = igt_output_get_mode(output);
>> - if (test_type == TEST_PLANES_UPSCALE) {
>> + switch (test_type) {
>> + case TEST_PLANES_UPSCALE:
>> setup_fb(display->drm_fd, w1, h1, 1.0, 0.0, 0.0, &d->fb[1]);
>> setup_fb(display->drm_fd, w2, h2, 0.0, 1.0, 0.0, &d->fb[2]);
>> - }
>> - if (test_type == TEST_PLANES_DOWNSCALE) {
>> + break;
>> + case TEST_PLANES_DOWNSCALE:
>> setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay,
>> 1.0, 0.0, 0.0, &d->fb[1]);
>> setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay,
>> 0.0, 1.0, 0.0, &d->fb[2]);
>> - }
>> - if (test_type == TEST_PLANES_UPSCALE_DOWNSCALE) {
>> + break;
>> + case TEST_PLANES_UPSCALE_DOWNSCALE:
>> setup_fb(display->drm_fd, w1, h1, 1.0, 0.0, 0.0, &d->fb[1]);
>> setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay,
>> 0.0, 1.0, 0.0, &d->fb[2]);
>> + break;
>> + case TEST_PLANES_DOWNSCALE_UPSCALE:
>> + setup_fb(display->drm_fd, mode->hdisplay, mode->vdisplay,
>> 0.0, 1.0, 0.0, &d->fb[1]);
>> + setup_fb(display->drm_fd, w2, h2, 1.0, 0.0, 0.0, &d->fb[2]);
>> + break;
>> + default:
>> + igt_assert(0);
>> }
>> for (int k = 0; k < display->pipes[pipe].n_planes; k++) {
>
--
~Swati Sharma
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-02-17 7:03 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-15 7:27 [igt-dev] [v3] tests/kms_plane_scaling: Add downscaling+upscaling tests Swati Sharma
2023-02-15 8:07 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_scaling: Add downscaling+upscaling tests (rev3) Patchwork
2023-02-15 20:40 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2023-02-15 7:36 [igt-dev] [v3] tests/kms_plane_scaling: Add downscaling+upscaling tests Swati Sharma
2023-02-16 15:29 ` Juha-Pekka Heikkila
2023-02-17 7:03 ` Swati Sharma
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox