* [igt-dev] [PATCH i-g-t] tests/kms_extended: Add test for extended mode
@ 2022-02-09 15:07 Jeevan B
2022-02-09 15:49 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
0 siblings, 1 reply; 2+ messages in thread
From: Jeevan B @ 2022-02-09 15:07 UTC (permalink / raw)
To: igt-dev
Add test for validation of extended mode.
Signed-off-by: Jeevan B <jeevan.b@intel.com>
---
tests/kms_extended.c | 244 +++++++++++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
2 files changed, 245 insertions(+)
create mode 100644 tests/kms_extended.c
diff --git a/tests/kms_extended.c b/tests/kms_extended.c
new file mode 100644
index 00000000..7d8cd85d
--- /dev/null
+++ b/tests/kms_extended.c
@@ -0,0 +1,244 @@
+/*
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ *
+ * Authors:
+ * Jeevan B <jeevan.b@intel.com>
+ */
+#include "config.h"
+
+#include "igt.h"
+#include <cairo.h>
+#include <errno.h>
+#include <stdint.h>
+#include <unistd.h>
+#include <string.h>
+#include <sys/time.h>
+#include <math.h>
+
+static int drm_fd;
+static drmModeRes *resources;
+
+struct test_output {
+ int mode_valid;
+ drmModeModeInfo kmode[4];
+ drmModeEncoder *kencoder[4];
+ drmModeConnector *kconnector[4];
+ uint32_t _connector[4];
+ uint32_t _crtc[4];
+ int _pipe[4];
+ int count; /* 1:1 mapping between crtc:connector */
+ int pipe; /* primary pipe for vblank */
+ unsigned int fb_width;
+ unsigned int fb_height;
+ unsigned int fb_ids[3];
+ struct igt_fb fb_info[3];
+};
+
+static void free_test_output(struct test_output *o)
+{
+ int i;
+
+ for (i = 0; i < o->count; i++) {
+ drmModeFreeEncoder(o->kencoder[i]);
+ drmModeFreeConnector(o->kconnector[i]);
+ }
+}
+
+static bool mode_compatible(const drmModeModeInfo *a, const drmModeModeInfo *b)
+{
+ int d_refresh;
+
+ if (a->hdisplay != b->hdisplay)
+ return false;
+
+ if (a->vdisplay != b->vdisplay)
+ return false;
+
+ d_refresh = a->vrefresh - b->vrefresh;
+ if (d_refresh < -1 || d_refresh > 1)
+ return false;
+
+ return true;
+}
+
+static void connector_find_compatible_mode(int crtc_idx0, int crtc_idx1,
+ struct test_output *o)
+{
+ struct kmstest_connector_config config[2];
+ drmModeModeInfo *mode[2];
+ int n, m;
+
+ if (!kmstest_get_connector_config(drm_fd, o->_connector[0],
+ 1 << crtc_idx0, &config[0]))
+ return;
+
+ if (!kmstest_get_connector_config(drm_fd, o->_connector[1],
+ 1 << crtc_idx1, &config[1])) {
+ kmstest_free_connector_config(&config[0]);
+ return;
+ }
+
+ mode[0] = &config[0].default_mode;
+ mode[1] = &config[1].default_mode;
+ if (!mode_compatible(mode[0], mode[1])) {
+ for (n = 0; n < config[0].connector->count_modes; n++) {
+ mode[0] = &config[0].connector->modes[n];
+ for (m = 0; m < config[1].connector->count_modes; m++) {
+ mode[1] = &config[1].connector->modes[m];
+ if (mode_compatible(mode[0], mode[1]))
+ goto found;
+ }
+ }
+
+ mode[1] = mode[0] = &config[0].default_mode;
+ }
+
+found:
+ o->pipe = config[0].pipe;
+ o->fb_width = mode[0]->hdisplay;
+ o->fb_height = mode[0]->vdisplay;
+ o->mode_valid = 1;
+
+ o->kconnector[0] = config[0].connector;
+ o->kencoder[0] = config[0].encoder;
+ o->_crtc[0] = config[0].crtc->crtc_id;
+ o->_pipe[0] = config[0].pipe;
+ o->kmode[0] = *mode[0];
+
+ o->kconnector[1] = config[1].connector;
+ o->kencoder[1] = config[1].encoder;
+ o->_crtc[1] = config[1].crtc->crtc_id;
+ o->_pipe[1] = config[1].pipe;
+ o->kmode[1] = *mode[1];
+
+ drmModeFreeCrtc(config[0].crtc);
+ drmModeFreeCrtc(config[1].crtc);
+}
+
+
+static int run_extendedmode_basic(void)
+{
+ int i, j, m, n, modes = 0, ret = 0;
+ struct test_output o;
+
+ resources = drmModeGetResources(drm_fd);
+ igt_require(resources);
+
+ /* Find a pair of connected displays*/
+ for (i = 0; i < resources->count_connectors; i++) {
+ for (n = 0; n < resources->count_crtcs; n++) {
+ for (j = i + 1; j < resources->count_connectors; j++) {
+ for (m = n + 1; m < resources->count_crtcs; m++) {
+ memset(&o, 0, sizeof(o));
+ o.count = 2;
+ o._connector[0] = resources->connectors[i];
+ o._connector[1] = resources->connectors[j];
+
+ connector_find_compatible_mode(n, m, &o);
+ if (o.mode_valid)
+ modes++;
+
+ free_test_output(&o);
+
+ }
+ }
+ }
+ }
+
+ /* If we have fewer than 2 connected outputs then we won't have any
+ * configuration at all. So skip in that case. */
+ igt_require_f(modes, "At least two displays required\n");
+
+ /* Find a pair of connected displays */
+ for (i = 0; i < resources->count_connectors; i++) {
+ for (n = 0; n < resources->count_crtcs; n++) {
+ for (j = i + 1; j < resources->count_connectors; j++) {
+ for (m = n + 1; m < resources->count_crtcs; m++) {
+ int crtc_idxs[2];
+
+ memset(&o, 0, sizeof(o));
+ o.count = 2;
+ o._connector[0] = resources->connectors[i];
+ o._connector[1] = resources->connectors[j];
+
+ crtc_idxs[0] = n;
+ crtc_idxs[1] = m;
+
+ connector_find_compatible_mode(crtc_idxs[0], crtc_idxs[1], &o);
+ if (!o.mode_valid)
+ return 1;
+ igt_assert_eq(o.count, 2);
+
+ igt_debug("Running Extended Mode on Pipe %s & %s Connector-%s%d-%s%d\n",
+ kmstest_pipe_name(o._pipe[0]), kmstest_pipe_name(o._pipe[1]),
+ kmstest_connector_type_str(o.kconnector[0]->connector_type),
+ o.kconnector[0]->connector_type_id,
+ kmstest_connector_type_str(o.kconnector[1]->connector_type),
+ o.kconnector[1]->connector_type_id);
+
+ o.fb_ids[0] = igt_create_color_pattern_fb(drm_fd,
+ o.fb_width, o.fb_height, DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR, 0, 0, 1, &o.fb_info[0]);
+ igt_assert(o.fb_ids[0]);
+
+ o.fb_ids[1] = igt_create_color_pattern_fb(drm_fd,
+ o.fb_width, o.fb_height, DRM_FORMAT_XRGB8888,
+ DRM_FORMAT_MOD_LINEAR, 0, 0, 1, &o.fb_info[1]);
+ igt_assert(o.fb_ids[1]);
+
+ ret = drmModePageFlip(drm_fd, o._crtc[0], o.fb_ids[0], DRM_MODE_PAGE_FLIP_EVENT, NULL);
+ igt_assert_eq(ret, 0);
+
+ ret = drmModePageFlip(drm_fd, o._crtc[1], o.fb_ids[1], DRM_MODE_PAGE_FLIP_EVENT, NULL);
+ igt_assert_eq(ret, 0);
+
+ igt_remove_fb(drm_fd, &o.fb_info[1]);
+ igt_remove_fb(drm_fd, &o.fb_info[0]);
+
+ free_test_output(&o);
+
+ return 0;
+ }
+ }
+ }
+ }
+
+ drmModeFreeResources(resources);
+ return 1;
+}
+
+igt_main
+{
+
+ igt_fixture {
+ drm_fd = drm_open_driver_master(DRIVER_ANY);
+ igt_enable_connectors(drm_fd);
+ kmstest_set_vt_graphics_mode();
+ }
+
+ igt_describe("This test is to validate pageflip on extended mode");
+ igt_subtest("extended-mode-basic") {
+ run_extendedmode_basic();
+ }
+
+ igt_fixture {
+ drmModeFreeResources(resources);
+ close(drm_fd);
+ }
+}
diff --git a/tests/meson.build b/tests/meson.build
index 7003d064..15825a4a 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -28,6 +28,7 @@ test_progs = [
'kms_dither',
'kms_dp_aux_dev',
'kms_dp_tiled_display',
+ 'kms_extended',
'kms_flip',
'kms_flip_event_leak',
'kms_force_connector_basic',
--
2.17.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for tests/kms_extended: Add test for extended mode
2022-02-09 15:07 [igt-dev] [PATCH i-g-t] tests/kms_extended: Add test for extended mode Jeevan B
@ 2022-02-09 15:49 ` Patchwork
0 siblings, 0 replies; 2+ messages in thread
From: Patchwork @ 2022-02-09 15:49 UTC (permalink / raw)
To: Jeevan B; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5822 bytes --]
== Series Details ==
Series: tests/kms_extended: Add test for extended mode
URL : https://patchwork.freedesktop.org/series/99904/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_11207 -> IGTPW_6608
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_6608 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_6608, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6608/index.html
Participating hosts (45 -> 43)
------------------------------
Additional (1): bat-rpls-1
Missing (3): fi-bsw-cyan fi-icl-u2 shard-tglu
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_6608:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@workarounds:
- fi-rkl-guc: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11207/fi-rkl-guc/igt@i915_selftest@live@workarounds.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6608/fi-rkl-guc/igt@i915_selftest@live@workarounds.html
Known issues
------------
Here are the changes found in IGTPW_6608 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_suspend@basic-s3@smem:
- fi-bdw-5557u: [PASS][3] -> [INCOMPLETE][4] ([i915#146])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11207/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3@smem.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6608/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3@smem.html
* igt@i915_selftest@live@hangcheck:
- bat-dg1-6: [PASS][5] -> [DMESG-FAIL][6] ([i915#4494] / [i915#4957])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11207/bat-dg1-6/igt@i915_selftest@live@hangcheck.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6608/bat-dg1-6/igt@i915_selftest@live@hangcheck.html
* igt@i915_selftest@live@requests:
- fi-blb-e6850: [PASS][7] -> [DMESG-FAIL][8] ([i915#5026])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11207/fi-blb-e6850/igt@i915_selftest@live@requests.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6608/fi-blb-e6850/igt@i915_selftest@live@requests.html
* igt@kms_frontbuffer_tracking@basic:
- fi-cml-u2: [PASS][9] -> [DMESG-WARN][10] ([i915#4269])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11207/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6608/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html
* igt@prime_vgem@basic-userptr:
- fi-skl-6600u: NOTRUN -> [SKIP][11] ([fdo#109271]) +18 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6608/fi-skl-6600u/igt@prime_vgem@basic-userptr.html
* igt@runner@aborted:
- fi-blb-e6850: NOTRUN -> [FAIL][12] ([fdo#109271] / [i915#2403] / [i915#2426] / [i915#4312])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6608/fi-blb-e6850/igt@runner@aborted.html
#### Possible fixes ####
* igt@i915_selftest@live@hangcheck:
- bat-dg1-5: [DMESG-FAIL][13] ([i915#4494] / [i915#4957]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11207/bat-dg1-5/igt@i915_selftest@live@hangcheck.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6608/bat-dg1-5/igt@i915_selftest@live@hangcheck.html
* igt@i915_selftest@live@requests:
- fi-kbl-soraka: [INCOMPLETE][15] -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11207/fi-kbl-soraka/igt@i915_selftest@live@requests.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6608/fi-kbl-soraka/igt@i915_selftest@live@requests.html
* igt@kms_psr@primary_page_flip:
- fi-skl-6600u: [FAIL][17] ([i915#4547]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11207/fi-skl-6600u/igt@kms_psr@primary_page_flip.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6608/fi-skl-6600u/igt@kms_psr@primary_page_flip.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#146]: https://gitlab.freedesktop.org/drm/intel/issues/146
[i915#2403]: https://gitlab.freedesktop.org/drm/intel/issues/2403
[i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#4269]: https://gitlab.freedesktop.org/drm/intel/issues/4269
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4494]: https://gitlab.freedesktop.org/drm/intel/issues/4494
[i915#4547]: https://gitlab.freedesktop.org/drm/intel/issues/4547
[i915#4898]: https://gitlab.freedesktop.org/drm/intel/issues/4898
[i915#4957]: https://gitlab.freedesktop.org/drm/intel/issues/4957
[i915#5026]: https://gitlab.freedesktop.org/drm/intel/issues/5026
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6342 -> IGTPW_6608
CI-20190529: 20190529
CI_DRM_11207: 0d650d738ee924dc0c367ff1f33c61237a635933 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_6608: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6608/index.html
IGT_6342: 1bd167a3af9e8f6168ac89c64c64b929694d9be7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Testlist changes ==
+igt@kms_extended@extended-mode-basic
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6608/index.html
[-- Attachment #2: Type: text/html, Size: 6756 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-02-09 15:49 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-09 15:07 [igt-dev] [PATCH i-g-t] tests/kms_extended: Add test for extended mode Jeevan B
2022-02-09 15:49 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.