summaryrefslogtreecommitdiff
path: root/tests/i915/kms_flip_scaled_crc.c
diff options
context:
space:
mode:
authorBhanuprakash Modem <bhanuprakash.modem@intel.com>2021-09-15 12:09:47 +0530
committerBhanuprakash Modem <bhanuprakash.modem@intel.com>2021-09-16 16:41:30 +0530
commitfd787fc30408b3c36e31bd6030eec681768a7a69 (patch)
tree7d08db54d61c56583041108d4db065a6d53102e4 /tests/i915/kms_flip_scaled_crc.c
parent6fecb640dd3d0fd8243992227a6cb09c8029ed01 (diff)
tests/kms: Move Intel specific kms tests to i915 directory
As KMS tests on IGT are officially supported on multiple SoCs and there is an active development on it. So, KMS tests are meant to be generic and if we need to test few things specific to Intel, we can use igt_require_intel(). But if the whole test is Intel specific, then the best place for the test would be tests/i915. This patch will * Move all Intel specific kms tests to tests/i915 directory. * Update the tests those are generic but still open the driver as 'drm_open_driver_master(DRIVER_INTEL);'. V2: * Few more tests V3: * Remove cleanups (will submit separate patch later) * Move few more tests to i915 dir (Karthik) V4: * Move kms_big_joiner.c to i915 dir (Karthik) Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> Cc: Mark Yacoub <markyacoub@chromium.org> Cc: Petri Latvala <petri.latvala@intel.com> Cc: Vidya Srinivas <vidya.srinivas@intel.com> Cc: Karthik B S <karthik.b.s@intel.com> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> Reviewed-by: Mark Yacoub <markyacoub@chromium.org> Reviewed-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com> Reviewed-by: Karthik B S <karthik.b.s@intel.com>
Diffstat (limited to 'tests/i915/kms_flip_scaled_crc.c')
-rw-r--r--tests/i915/kms_flip_scaled_crc.c358
1 files changed, 358 insertions, 0 deletions
diff --git a/tests/i915/kms_flip_scaled_crc.c b/tests/i915/kms_flip_scaled_crc.c
new file mode 100644
index 00000000..24ca1224
--- /dev/null
+++ b/tests/i915/kms_flip_scaled_crc.c
@@ -0,0 +1,358 @@
+/*
+ * Copyright © 2020 Intel Corporation
+ *
+ * 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 (including the next
+ * paragraph) 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.
+ *
+ */
+
+#include "igt.h"
+
+IGT_TEST_DESCRIPTION("Test flipping between scaled/nonscaled framebuffers");
+
+typedef struct {
+ int drm_fd;
+ igt_display_t display;
+ igt_output_t *output;
+ enum pipe pipe;
+ uint32_t gen;
+ struct igt_fb small_fb;
+ struct igt_fb big_fb;
+ igt_pipe_crc_t *pipe_crc;
+ uint32_t attemptmodewidth;
+ uint32_t attemptmodeheight;
+} data_t;
+
+const struct {
+ const char * const name;
+ const char * const describe;
+ const uint64_t firstmodifier;
+ const uint32_t firstformat;
+ const uint64_t secondmodifier;
+ const uint32_t secondformat;
+ const double firstmultiplier;
+ const double secondmultiplier;
+} flip_scenario_test[] = {
+ {
+ "flip-32bpp-ytile-to-64bpp-ytile",
+ "Flip from 32bpp non scaled fb to 64bpp downscaled fb to stress CD clock programming",
+ I915_FORMAT_MOD_Y_TILED, DRM_FORMAT_XRGB8888,
+ I915_FORMAT_MOD_Y_TILED, DRM_FORMAT_XRGB16161616F,
+ 1.0,
+ 2.0,
+ },
+ {
+ "flip-64bpp-ytile-to-32bpp-ytile",
+ "Flip from 64bpp non scaled fb to 32bpp downscaled fb to stress CD clock programming",
+ I915_FORMAT_MOD_Y_TILED, DRM_FORMAT_XRGB16161616F,
+ I915_FORMAT_MOD_Y_TILED, DRM_FORMAT_XRGB8888,
+ 1.0,
+ 2.0,
+ },
+ {
+ "flip-64bpp-ytile-to-16bpp-ytile",
+ "Flip from 64bpp non scaled fb to 16bpp downscaled fb to stress CD clock programming",
+ I915_FORMAT_MOD_Y_TILED, DRM_FORMAT_XRGB16161616F,
+ I915_FORMAT_MOD_Y_TILED, DRM_FORMAT_RGB565,
+ 1.0,
+ 2.0,
+ },
+ {
+ "flip-32bpp-ytileccs-to-64bpp-ytile",
+ "Flip from 32bpp non scaled fb to 64bpp downscaled fb to stress CD clock programming",
+ I915_FORMAT_MOD_Y_TILED_CCS, DRM_FORMAT_XRGB8888,
+ I915_FORMAT_MOD_Y_TILED, DRM_FORMAT_XRGB16161616F,
+ 1.0,
+ 2.0,
+ },
+ {
+ "flip-32bpp-ytile-to-32bpp-ytilegen12rcccs",
+ "Flip from 32bpp non scaled fb to 32bpp downscaled fb to stress CD clock programming",
+ I915_FORMAT_MOD_Y_TILED, DRM_FORMAT_XRGB8888,
+ I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS, DRM_FORMAT_XRGB8888,
+ 1.0,
+ 2.0,
+ },
+ {
+ "flip-32bpp-ytile-to-32bpp-ytileccs",
+ "Flip from 32bpp non scaled fb to 32bpp downscaled fb to stress CD clock programming",
+ I915_FORMAT_MOD_Y_TILED, DRM_FORMAT_XRGB8888,
+ I915_FORMAT_MOD_Y_TILED_CCS, DRM_FORMAT_XRGB8888,
+ 1.0,
+ 2.0,
+ },
+ {
+ "flip-64bpp-ytile-to-32bpp-ytilercccs",
+ "Flip from 64bpp non scaled fb to 32bpp downscaled fb to stress CD clock programming",
+ I915_FORMAT_MOD_Y_TILED, DRM_FORMAT_XRGB16161616F,
+ I915_FORMAT_MOD_Y_TILED_GEN12_RC_CCS, DRM_FORMAT_XRGB8888,
+ 1.0,
+ 2.0,
+ },
+};
+
+enum subrval {CONNECTORFAIL, CONNECTORSUCCESS, TESTSKIP, NOREQUESTEDFORMATONPIPE};
+
+static void setup_fb(data_t *data, struct igt_fb *newfb, uint32_t width,
+ uint32_t height, uint64_t format, uint64_t modifier)
+{
+ igt_require(igt_display_has_format_mod(&data->display, format,
+ modifier));
+
+ igt_create_color_fb(data->drm_fd, width, height,
+ format, modifier, 0, 1, 0, newfb);
+}
+
+static void free_fbs(data_t *data)
+{
+ igt_remove_fb(data->drm_fd, &data->small_fb);
+ igt_remove_fb(data->drm_fd, &data->big_fb);
+}
+
+static void set_lut(data_t *data, enum pipe pipe)
+{
+ igt_pipe_t *pipe_obj = &data->display.pipes[pipe];
+ struct drm_color_lut *lut;
+ drmModeCrtc *crtc;
+ int i, lut_size;
+
+ crtc = drmModeGetCrtc(data->drm_fd, pipe_obj->crtc_id);
+ lut_size = crtc->gamma_size;
+ drmModeFreeCrtc(crtc);
+
+ lut = malloc(sizeof(lut[0]) * lut_size);
+
+ /*
+ * The scaler may have lower internal precision than
+ * the rest of the pipe. Limit the output to 8bpc using
+ * the legacy LUT.
+ */
+ for (i = 0; i < lut_size; i++) {
+ uint16_t v = (i * 0xffff / (lut_size - 1)) & 0xff00;
+
+ lut[i].red = v;
+ lut[i].green = v;
+ lut[i].blue = v;
+ }
+
+ igt_pipe_obj_replace_prop_blob(pipe_obj, IGT_CRTC_GAMMA_LUT,
+ lut, sizeof(lut[0]) * lut_size);
+
+ free(lut);
+}
+
+static void clear_lut(data_t *data, enum pipe pipe)
+{
+ igt_pipe_t *pipe_obj = &data->display.pipes[pipe];
+
+ igt_pipe_obj_set_prop_value(pipe_obj, IGT_CRTC_GAMMA_LUT, 0);
+}
+
+static enum subrval test_flip_to_scaled(data_t *data, uint32_t index,
+ enum pipe pipe, igt_output_t *output)
+{
+ igt_plane_t *primary;
+ igt_crc_t small_crc, big_crc;
+ drmModeModeInfoPtr modetoset = NULL;
+ struct drm_event_vblank ev;
+ int ret;
+
+ igt_display_reset(&data->display);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ igt_debug("running on output %s pipe %s\n", output->name,
+ kmstest_pipe_name(pipe));
+
+ if (data->big_fb.fb_id == 0) {
+ setup_fb(data, &data->small_fb,
+ data->attemptmodewidth * flip_scenario_test[index].firstmultiplier,
+ data->attemptmodeheight * flip_scenario_test[index].firstmultiplier,
+ flip_scenario_test[index].firstformat,
+ flip_scenario_test[index].firstmodifier);
+
+ setup_fb(data, &data->big_fb,
+ data->attemptmodewidth * flip_scenario_test[index].secondmultiplier,
+ data->attemptmodeheight * flip_scenario_test[index].secondmultiplier,
+ flip_scenario_test[index].secondformat,
+ flip_scenario_test[index].secondmodifier);
+
+ igt_debug("small fb %dx%d\n", data->small_fb.width,
+ data->small_fb.height);
+ igt_debug("big fb %dx%d\n", data->big_fb.width,
+ data->big_fb.height);
+ }
+
+ igt_output_set_pipe(output, pipe);
+
+ primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY);
+ if (!igt_plane_has_format_mod(primary, data->small_fb.drm_format,
+ data->small_fb.modifier) ||
+ !igt_plane_has_format_mod(primary, data->big_fb.drm_format,
+ data->big_fb.modifier))
+ return NOREQUESTEDFORMATONPIPE;
+
+ set_lut(data, pipe);
+ igt_display_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET,
+ NULL);
+ if (data->pipe_crc) {
+ igt_pipe_crc_stop(data->pipe_crc);
+ igt_pipe_crc_free(data->pipe_crc);
+ }
+ data->pipe_crc = igt_pipe_crc_new(data->drm_fd, pipe,
+ INTEL_PIPE_CRC_SOURCE_AUTO);
+
+ for (int i = 0; i < output->config.connector->count_modes; i++) {
+ if (output->config.connector->modes[i].hdisplay == data->attemptmodewidth &&
+ output->config.connector->modes[i].vdisplay == data->attemptmodeheight) {
+ if (modetoset &&
+ modetoset->vrefresh < output->config.connector->modes[i].vrefresh)
+ continue;
+
+ modetoset = &output->config.connector->modes[i];
+ }
+ }
+
+ if (!modetoset)
+ igt_debug("%dp mode was not found from connector, will try with default. This may cause cdclk to fail this test on this connector.\n",
+ data->attemptmodeheight);
+ else
+ igt_output_override_mode(output, modetoset);
+
+ igt_plane_set_position(primary, 0, 0);
+ igt_plane_set_fb(primary, &data->small_fb);
+ igt_plane_set_size(primary, data->attemptmodewidth,
+ data->attemptmodeheight);
+ ret = igt_display_try_commit_atomic(&data->display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+ switch (ret) {
+ case -ERANGE:
+ igt_debug("Platform scaling limits exceeded, skipping.\n");
+ return TESTSKIP;
+ case -EINVAL:
+ if (!modetoset) {
+ igt_debug("No %dp and default mode too big, cdclk limits exceeded. Check next connector\n",
+ data->attemptmodeheight);
+ return CONNECTORFAIL;
+ }
+ /* fallthrough */
+ default:
+ igt_assert_eq(ret, 0);
+ }
+
+ igt_pipe_crc_start(data->pipe_crc);
+ igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &small_crc);
+
+ igt_plane_set_fb(primary, &data->big_fb);
+ igt_plane_set_size(primary, data->attemptmodewidth,
+ data->attemptmodeheight);
+ ret = igt_display_try_commit_atomic(&data->display,
+ DRM_MODE_ATOMIC_ALLOW_MODESET |
+ DRM_MODE_PAGE_FLIP_EVENT, NULL);
+
+ switch (ret) {
+ case -ERANGE:
+ igt_debug("Platform scaling limits exceeded, skipping.\n");
+ return TESTSKIP;
+ case -EINVAL:
+ if (!modetoset) {
+ igt_debug("No %dp and default mode too big, cdclk limits exceeded. Check next connector\n",
+ data->attemptmodeheight);
+ return CONNECTORFAIL;
+ }
+ /* fallthrough */
+ default:
+ igt_assert_eq(ret, 0);
+ }
+
+ igt_assert(read(data->drm_fd, &ev, sizeof(ev)) == sizeof(ev));
+
+ igt_pipe_crc_get_current(data->drm_fd, data->pipe_crc, &big_crc);
+ igt_assert_crc_equal(&small_crc, &big_crc);
+
+ igt_pipe_crc_stop(data->pipe_crc);
+ igt_pipe_crc_free(data->pipe_crc);
+ data->pipe_crc = NULL;
+
+ clear_lut(data, pipe);
+
+ igt_output_set_pipe(output, PIPE_NONE);
+ igt_plane_set_fb(primary, NULL);
+ igt_display_commit2(&data->display, COMMIT_ATOMIC);
+
+ return CONNECTORSUCCESS;
+}
+
+igt_main
+{
+ enum pipe pipe;
+ data_t data = {};
+ igt_output_t *output;
+
+ igt_fixture {
+ data.drm_fd = drm_open_driver_master(DRIVER_INTEL);
+ data.gen = intel_display_ver(intel_get_drm_devid(data.drm_fd));
+ igt_require(data.gen >= 9);
+ igt_display_require(&data.display, data.drm_fd);
+ igt_require(data.display.is_atomic);
+ igt_require_pipe_crc(data.drm_fd);
+ kmstest_set_vt_graphics_mode();
+
+ if (data.gen < 11) {
+ data.attemptmodewidth = 640;
+ data.attemptmodeheight = 480;
+ } else {
+ data.attemptmodewidth = 1920;
+ data.attemptmodeheight = 1080;
+ }
+ }
+
+ for (int index = 0; index < ARRAY_SIZE(flip_scenario_test); index++) {
+ igt_describe(flip_scenario_test[index].describe);
+ igt_subtest(flip_scenario_test[index].name) {
+ int validtests = 0;
+ free_fbs(&data);
+ for_each_pipe_static(pipe) {
+ enum subrval rval = CONNECTORSUCCESS;
+ for_each_valid_output_on_pipe(&data.display, pipe, output) {
+ rval = test_flip_to_scaled(&data, index, pipe, output);
+
+ igt_require(rval != TESTSKIP);
+
+ // break out to test next pipe
+ if (rval == CONNECTORSUCCESS) {
+ validtests++;
+ break;
+ }
+ }
+ if (rval == NOREQUESTEDFORMATONPIPE)
+ igt_debug("No requested format/modifier on pipe %s\n", kmstest_pipe_name(pipe));
+ }
+ igt_require_f(validtests > 0, "No valid pipe/connector/format/mod combination found");
+ }
+ }
+ igt_fixture {
+ free_fbs(&data);
+ if (data.pipe_crc) {
+ igt_pipe_crc_stop(data.pipe_crc);
+ igt_pipe_crc_free(data.pipe_crc);
+ data.pipe_crc = NULL;
+ }
+ kmstest_set_vt_text_mode();
+ igt_display_fini(&data.display);
+ }
+}