summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMika Kahola <mika.kahola@intel.com>2019-04-08 13:52:50 +0300
committerMika Kahola <mika.kahola@intel.com>2019-04-08 16:46:43 +0300
commitfef5706e11dcfc72cc759242842d36e7c8dc5e31 (patch)
tree829d57dde173c64f2ddb4d953350cc6a5b088b25
parent08cf63a8fac11e3594b57580331fb319241a0d69 (diff)
tests/kms_plane_scaling: Check supported format for rotation
Let's check if 90/270 rotation is supported for the format that we are trying to test. Currently, if we try to test unsupported format the kernel complains with the following message. "[drm:skl_plane_check [i915]] Unsupported pixel format Y210 little-endian (0x30313259) for 90/270!" v2: Use igt_plane_has_format_mod() function to select formats that are capable of 90/270 rotation (Ville) Suggested-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Mika Kahola <mika.kahola@intel.com> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
-rw-r--r--tests/kms_plane_scaling.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/kms_plane_scaling.c b/tests/kms_plane_scaling.c
index 3364073c..bb14b2cd 100644
--- a/tests/kms_plane_scaling.c
+++ b/tests/kms_plane_scaling.c
@@ -144,9 +144,6 @@ static void check_scaling_pipe_plane_rot(data_t *d, igt_plane_t *plane,
igt_output_set_pipe(output, pipe);
mode = igt_output_get_mode(output);
- igt_skip_on(!igt_plane_has_format_mod(plane, pixel_format,
- tiling));
-
/* create buffer in the range of min and max source side limit.*/
width = height = 8;
if (is_i915_device(d->drm_fd) && is_planar_yuv_format(pixel_format))
@@ -201,6 +198,7 @@ static void test_scaler_with_rotation_pipe(data_t *d, enum pipe pipe,
for (int j = 0; j < plane->drm_plane->count_formats; j++) {
unsigned format = plane->drm_plane->formats[j];
if (igt_fb_supported_format(format) &&
+ igt_plane_has_format_mod(plane, format, tiling) &&
can_rotate(d, format))
check_scaling_pipe_plane_rot(d, plane, format,
tiling, pipe,