[igt-dev] [v4 3/9] tests/kms_plane_scaling: Upscaling each plane
Swati Sharma
swati2.sharma at intel.com
Tue Feb 15 12:23:38 UTC 2022
Subtest for testing upscaling for each plane
individually (checked 1 plane per "class" like
we do in other tests)
v2: -set modifier as LINEAR (Ville)
-shared code for upscaling and downscaling tests (Ville)
-removed num_scaler() check and added try_commit() (Ville)
Signed-off-by: Swati Sharma <swati2.sharma at intel.com>
---
tests/kms_plane_scaling.c | 71 +++++++++++++++++++++++++++++++++++++++
1 file changed, 71 insertions(+)
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 1cf62841..39f2de3c 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -29,6 +29,11 @@
IGT_TEST_DESCRIPTION("Test display plane scaling");
+/* Test flags. */
+enum {
+ TEST_UPSCALING = 1 << 0,
+};
+
typedef struct {
uint32_t devid;
int drm_fd;
@@ -230,6 +235,65 @@ static bool test_format(data_t *data,
return true;
}
+static void
+__test_plane_upscaling(data_t *d, igt_plane_t *plane,
+ enum pipe pipe, igt_output_t *output)
+{
+ igt_display_t *display = &d->display;
+ int width, height, ret;
+ drmModeModeInfo *mode;
+
+ cleanup_crtc(d);
+
+ igt_output_set_pipe(output, pipe);
+ mode = igt_output_get_mode(output);
+ width = height = 20;
+
+ igt_create_color_pattern_fb(display->drm_fd,
+ width, height,
+ DRM_FORMAT_XRGB8888,
+ I915_TILING_NONE,
+ 1.0, 0.0, 0.0, &d->fb[0]);
+
+ igt_plane_set_fb(plane, &d->fb[0]);
+ igt_plane_set_size(plane, mode->hdisplay, mode->vdisplay);
+ ret = igt_display_try_commit_atomic(display, DRM_MODE_ATOMIC_ALLOW_MODESET, NULL);
+ igt_display_commit2(display, COMMIT_ATOMIC);
+
+ igt_plane_set_fb(plane, NULL);
+ igt_remove_fb(display->drm_fd, &d->fb[0]);
+
+ igt_skip_on_f(ret == -EINVAL, "Scaling op not supported\n");
+}
+
+static void
+test_plane_scaling(data_t *d, enum pipe pipe, igt_output_t *output, uint32_t flags)
+{
+ igt_display_t *display = &d->display;
+ uint64_t modifier = DRM_FORMAT_MOD_LINEAR;
+ igt_plane_t *plane;
+
+ for_each_plane_on_pipe(display, pipe, plane) {
+ struct igt_vec tested_formats;
+
+ if (plane->type == DRM_PLANE_TYPE_CURSOR)
+ continue;
+
+ igt_vec_init(&tested_formats, sizeof(uint32_t));
+
+ for (int j = 0; j < plane->drm_plane->count_formats; j++) {
+ uint32_t format = plane->drm_plane->formats[j];
+ if (test_format(d, &tested_formats, format) &&
+ igt_plane_has_format_mod(plane, format, modifier) &&
+ can_scale(d, format))
+ if (flags & TEST_UPSCALING)
+ __test_plane_upscaling(d, plane, pipe, output);
+ }
+
+ igt_vec_fini(&tested_formats);
+ }
+}
+
static bool test_pipe_iteration(data_t *data, enum pipe pipe, int iteration)
{
if (!is_i915_device(data->drm_fd) ||
@@ -547,6 +611,13 @@ igt_main_args("", long_opts, help_str, opt_handler, &data)
igt_subtest_group {
igt_output_t *output;
+ igt_describe("Tests plane upscaling.");
+ igt_subtest_with_dynamic("plane-upscaling") {
+ for_each_pipe_with_single_output(&data.display, pipe, output)
+ igt_dynamic_f("pipe-%s-%s-upscaling", kmstest_pipe_name(pipe), igt_output_name(output))
+ test_plane_scaling(&data, pipe, output, TEST_UPSCALING);
+ }
+
igt_describe("Tests scaling with pixel formats.");
igt_subtest_with_dynamic("scaler-with-pixel-format") {
for_each_pipe_with_single_output(&data.display, pipe, output)
--
2.25.1
More information about the igt-dev
mailing list