From: Imre Deak Date: Wed, 8 May 2013 16:06:43 +0000 (+0300) Subject: kms_flip: set VT graphics mode X-Git-Tag: intel-gpu-tools-1.4~399 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0009a4af3d76ada8df86ec012736792d0543fb08;p=platform%2Fupstream%2Fintel-gpu-tools.git kms_flip: set VT graphics mode This is one reason for some of the sporadic kms_flip failures. One such is https://bugs.freedesktop.org/show_bug.cgi?id=59834. v2: - use unsigned long for KDSETMODE/KDGETMODE - fix passing the parameter to KDGETMODE as it should be by value - actually testing that it works.. v3: - don't do an explicit DPMS_ON, only switch to graphics mode. v4: - use the newly added drmtest_set_vt_graphics_mode(), which will also take care of restoring the original mode. (Daniel) Signed-off-by: Imre Deak Signed-off-by: Daniel Vetter --- diff --git a/tests/kms_flip.c b/tests/kms_flip.c index dc29e9d..85e5c11 100644 --- a/tests/kms_flip.c +++ b/tests/kms_flip.c @@ -36,6 +36,7 @@ #include #include #include +#include #include "i915_drm.h" #include "drmtest.h" @@ -1205,8 +1206,10 @@ int main(int argc, char **argv) drm_fd = drm_open_any(); - if (!drmtest_only_list_subtests()) + if (!drmtest_only_list_subtests()) { + do_or_die(drmtest_set_vt_graphics_mode()); get_timestamp_format(); + } bufmgr = drm_intel_bufmgr_gem_init(drm_fd, 4096); devid = intel_get_drm_devid(drm_fd);