]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drm: mali-dp: Add pitch alignment check for planes
authorBrian Starkey <brian.starkey@arm.com>
Tue, 11 Oct 2016 14:26:05 +0000 (15:26 +0100)
committerLiviu Dudau <Liviu.Dudau@arm.com>
Fri, 4 Nov 2016 17:08:38 +0000 (17:08 +0000)
Check that the framebuffer pitches are appropriately aligned when
checking planes.

Signed-off-by: Brian Starkey <brian.starkey@arm.com>
Signed-off-by: Liviu Dudau <Liviu.Dudau@arm.com>
drivers/gpu/drm/arm/malidp_planes.c

index abaca03b9d361b1d488c314e7d1bb3a475eb6ada..eaae81908de2f15d9cfdd3428dd0c9f8df08940a 100644 (file)
@@ -86,17 +86,30 @@ static int malidp_de_plane_check(struct drm_plane *plane,
 {
        struct malidp_plane *mp = to_malidp_plane(plane);
        struct malidp_plane_state *ms = to_malidp_plane_state(state);
+       struct drm_framebuffer *fb;
+       int n_planes, i;
        u8 format_id;
        u32 src_w, src_h;
 
        if (!state->crtc || !state->fb)
                return 0;
 
+       fb = state->fb;
+
        format_id = malidp_hw_get_format_id(&mp->hwdev->map, mp->layer->id,
-                                           state->fb->pixel_format);
+                                           fb->pixel_format);
        if (format_id == MALIDP_INVALID_FORMAT_ID)
                return -EINVAL;
 
+       n_planes = drm_format_num_planes(fb->pixel_format);
+       for (i = 0; i < n_planes; i++) {
+               if (!malidp_hw_pitch_valid(mp->hwdev, fb->pitches[i])) {
+                       DRM_DEBUG_KMS("Invalid pitch %u for plane %d\n",
+                                     fb->pitches[i], i);
+                       return -EINVAL;
+               }
+       }
+
        src_w = state->src_w >> 16;
        src_h = state->src_h >> 16;