/* * Copyright © 2016 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" #include "drmtest.h" #include #include #include #include #include IGT_TEST_DESCRIPTION("Test atomic mode setting with a plane by switching between high and low resolutions"); #define MAX_CRCS 1 #define SIZE 256 #define LOOP_FOREVER -1 typedef struct { int drm_fd; igt_display_t display; struct igt_fb *fb; } data_t; static drmModeModeInfo get_lowres_mode(int drmfd, drmModeModeInfo *mode_default) { drmModeRes *mode_resources = drmModeGetResources(drmfd); drmModeModeInfo mode; drmModeModeInfo std_1024_mode = { .clock = 65000, .hdisplay = 1024, .hsync_start = 1048, .hsync_end = 1184, .htotal = 1344, .hskew = 0, .vdisplay = 768, .vsync_start = 771, .vsync_end = 777, .vtotal = 806, .vscan = 0, .vrefresh = 60, .flags = 0xA, .type = 0x40, .name = "Custom 1024x768", }; bool found; int limit = mode_default->vdisplay-SIZE; int i, j; if (!mode_resources) { igt_warn("drmModeGetResources failed: %s\n", strerror(errno)); return std_1024_mode; } found = false; for (i = 0; i < mode_resources->count_connectors; i++) { drmModeConnector *connector; connector = drmModeGetConnectorCurrent(drmfd, mode_resources->connectors[i]); if (!connector) { igt_warn("could not get connector %i: %s\n", mode_resources->connectors[i], strerror(errno)); continue; } if (!connector->count_modes) continue; for (j = 0; j < connector->count_modes; j++) { mode = connector->modes[j]; if (mode.vdisplay < limit) { found = true; break; } } drmModeFreeConnector(connector); } drmModeFreeResources(mode_resources); if (!found) return std_1024_mode; return mode; } static void test_fini(data_t *data, igt_output_t *output, enum pipe pipe) { igt_plane_t *plane; /* restore original mode */ igt_output_override_mode(output, NULL); for_each_plane_on_pipe(&data->display, pipe, plane) igt_plane_set_fb(plane, NULL); /* reset the constraint on the pipe */ igt_output_set_pipe(output, PIPE_ANY); free(data->fb); data->fb = NULL; } static void display_commit_mode(igt_display_t *display, igt_pipe_crc_t *pipe_crc, enum pipe pipe, int flags, igt_crc_t *out_crc) { char buf[256]; int ret; ret = igt_display_try_commit_atomic(display, flags, NULL); igt_skip_on(ret != 0); igt_set_timeout(1, "Stuck on page flip"); ret = read(display->drm_fd, buf, sizeof(buf)); igt_assert(ret >= 0); igt_pipe_crc_collect_crc(pipe_crc, out_crc); } static void check_mode(drmModeModeInfo *mode1, drmModeModeInfo *mode2) { igt_assert_eq(mode1->hdisplay, mode2->hdisplay); igt_assert_eq(mode1->vdisplay, mode2->vdisplay); igt_assert_eq(mode1->vrefresh, mode2->vrefresh); } static drmModeModeInfo * test_setup(data_t *data, enum pipe pipe, uint64_t modifier, int flags, igt_output_t *output) { drmModeModeInfo *mode; int size; int i = 1, x, y; igt_plane_t *plane; igt_output_set_pipe(output, pipe); mode = igt_output_get_mode(output); data->fb = calloc(data->display.pipes[pipe].n_planes, sizeof(struct igt_fb)); igt_assert_f(data->fb, "Failed to allocate memory for %d FBs\n", data->display.pipes[pipe].n_planes); igt_create_color_fb(data->drm_fd, mode->hdisplay, mode->vdisplay, DRM_FORMAT_XRGB8888, modifier, 0.0, 0.0, 1.0, &data->fb[0]); /* yellow sprite plane in lower left corner */ for_each_plane_on_pipe(&data->display, pipe, plane) { if (plane->type == DRM_PLANE_TYPE_PRIMARY) { igt_plane_set_fb(plane, &data->fb[0]); continue; } if (plane->type == DRM_PLANE_TYPE_CURSOR) size = 64; else size = SIZE; x = 0; y = mode->vdisplay - size; igt_create_color_fb(data->drm_fd, size, size, plane->type == DRM_PLANE_TYPE_CURSOR ? DRM_FORMAT_ARGB8888 : DRM_FORMAT_XRGB8888, plane->type == DRM_PLANE_TYPE_CURSOR ? LOCAL_DRM_FORMAT_MOD_NONE : modifier, 1.0, 1.0, 0.0, &data->fb[i]); igt_plane_set_position(plane, x, y); igt_plane_set_fb(plane, &data->fb[i++]); } return mode; } static void test_plane_position_with_output(data_t *data, enum pipe pipe, igt_output_t *output, uint64_t modifier) { igt_crc_t crc_hires1, crc_hires2; igt_crc_t crc_lowres; drmModeModeInfo mode_lowres; drmModeModeInfo *mode1, *mode2, *mode3; int ret; int flags = DRM_MODE_PAGE_FLIP_EVENT | DRM_MODE_ATOMIC_ALLOW_MODESET; igt_pipe_crc_t *pipe_crc; igt_info("Testing connector %s using pipe %s\n", igt_output_name(output), kmstest_pipe_name(pipe)); mode1 = test_setup(data, pipe, modifier, flags, output); mode_lowres = get_lowres_mode(data->drm_fd, mode1); ret = igt_display_try_commit2(&data->display, COMMIT_ATOMIC); igt_skip_on(ret != 0); pipe_crc = igt_pipe_crc_new(data->drm_fd, pipe, INTEL_PIPE_CRC_SOURCE_AUTO); igt_pipe_crc_collect_crc(pipe_crc, &crc_hires1); igt_assert_plane_visible(data->drm_fd, pipe, true); /* switch to lower resolution */ igt_output_override_mode(output, &mode_lowres); igt_output_set_pipe(output, pipe); mode2 = igt_output_get_mode(output); check_mode(&mode_lowres, mode2); display_commit_mode(&data->display, pipe_crc, pipe, flags, &crc_lowres); igt_assert_plane_visible(data->drm_fd, pipe, false); /* switch back to higher resolution */ igt_output_override_mode(output, NULL); igt_output_set_pipe(output, pipe); mode3 = igt_output_get_mode(output); check_mode(mode1, mode3); display_commit_mode(&data->display, pipe_crc, pipe, flags, &crc_hires2); igt_assert_plane_visible(data->drm_fd, pipe, true); igt_assert_crc_equal(&crc_hires1, &crc_hires2); igt_pipe_crc_stop(pipe_crc); igt_pipe_crc_free(pipe_crc); test_fini(data, output, pipe); } static void test_plane_position(data_t *data, enum pipe pipe, uint64_t modifier) { igt_output_t *output; const int gen = intel_gen(intel_get_drm_devid(data->drm_fd)); if (modifier == LOCAL_I915_FORMAT_MOD_Y_TILED || modifier == LOCAL_I915_FORMAT_MOD_Yf_TILED) igt_skip_on(gen < 9); for_each_valid_output_on_pipe(&data->display, pipe, output) test_plane_position_with_output(data, pipe, output, modifier); } static void run_tests_for_pipe(data_t *data, enum pipe pipe) { igt_fixture { igt_skip_on(pipe >= data->display.n_pipes); igt_display_require_output_on_pipe(&data->display, pipe); } igt_subtest_f("pipe-%s-tiling-none", kmstest_pipe_name(pipe)) test_plane_position(data, pipe, LOCAL_DRM_FORMAT_MOD_NONE); igt_subtest_f("pipe-%s-tiling-x", kmstest_pipe_name(pipe)) test_plane_position(data, pipe, LOCAL_I915_FORMAT_MOD_X_TILED); igt_subtest_f("pipe-%s-tiling-y", kmstest_pipe_name(pipe)) test_plane_position(data, pipe, LOCAL_I915_FORMAT_MOD_Y_TILED); igt_subtest_f("pipe-%s-tiling-yf", kmstest_pipe_name(pipe)) test_plane_position(data, pipe, LOCAL_I915_FORMAT_MOD_Yf_TILED); } static data_t data; igt_main { enum pipe pipe; igt_skip_on_simulation(); igt_fixture { data.drm_fd = drm_open_driver_master(DRIVER_ANY); kmstest_set_vt_graphics_mode(); igt_require_pipe_crc(data.drm_fd); igt_display_init(&data.display, data.drm_fd); igt_require(data.display.is_atomic); } for_each_pipe_static(pipe) igt_subtest_group run_tests_for_pipe(&data, pipe); igt_fixture { igt_display_fini(&data.display); } igt_exit(); }