drm/armada: pass plane state into armada_drm_plane_calc_addrs()
authorRussell King <rmk+kernel@armlinux.org.uk>
Mon, 30 Jul 2018 10:52:34 +0000 (11:52 +0100)
committerRussell King <rmk+kernel@armlinux.org.uk>
Mon, 30 Jul 2018 10:52:34 +0000 (11:52 +0100)
armada_drm_plane_calc_addrs() gets all its information from the plane
state, so it makes sense to pass the plane state pointer down into this
function, rather than extracting the information in identical ways,
sometimes a couple of layers up.

Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
drivers/gpu/drm/armada/armada_overlay.c
drivers/gpu/drm/armada/armada_plane.c
drivers/gpu/drm/armada/armada_plane.h

index bc1b5b8..e8c3bcc 100644 (file)
@@ -130,11 +130,10 @@ static void armada_drm_overlay_plane_atomic_update(struct drm_plane *plane,
            old_state->src.y1 != state->src.y1 ||
            old_state->fb != state->fb) {
                const struct drm_format_info *format;
-               u16 src_x = state->src.x1 >> 16;
-               u16 src_y = state->src.y1 >> 16;
+               u16 src_x;
                u32 addrs[3];
 
-               armada_drm_plane_calc_addrs(addrs, state->fb, src_x, src_y);
+               armada_drm_plane_calc_addrs(state, addrs);
 
                armada_reg_queue_set(regs, idx, addrs[0],
                                     LCD_SPU_DMA_START_ADDR_Y0);
@@ -166,6 +165,7 @@ static void armada_drm_overlay_plane_atomic_update(struct drm_plane *plane,
                 * the UV swap.
                 */
                format = state->fb->format;
+               src_x = state->src.x1 >> 16;
                if (format->num_planes == 1 && src_x & (format->hsub - 1))
                        cfg ^= CFG_DMA_MOD(CFG_SWAPUV);
                cfg_mask = CFG_CBSH_ENA | CFG_DMAFORMAT |
index 1cb6a60..c426c92 100644 (file)
@@ -35,14 +35,19 @@ static const uint32_t armada_primary_formats[] = {
        DRM_FORMAT_BGR565,
 };
 
-void armada_drm_plane_calc_addrs(u32 *addrs, struct drm_framebuffer *fb,
-       int x, int y)
+void armada_drm_plane_calc_addrs(struct drm_plane_state *state, u32 addrs[3])
 {
+       struct drm_framebuffer *fb = state->fb;
        const struct drm_format_info *format = fb->format;
        unsigned int num_planes = format->num_planes;
+       unsigned int x = state->src.x1 >> 16;
+       unsigned int y = state->src.y1 >> 16;
        u32 addr = drm_fb_obj(fb)->dev_addr;
        int i;
 
+       DRM_DEBUG_KMS("pitch %u x %d y %d bpp %d\n",
+                     fb->pitches[0], x, y, format->cpp[0] * 8);
+
        if (num_planes > 3)
                num_planes = 3;
 
@@ -59,17 +64,14 @@ void armada_drm_plane_calc_addrs(u32 *addrs, struct drm_framebuffer *fb,
                addrs[i] = 0;
 }
 
-static unsigned armada_drm_crtc_calc_fb(struct drm_framebuffer *fb,
-       int x, int y, struct armada_regs *regs, bool interlaced)
+static unsigned armada_drm_crtc_calc_fb(struct drm_plane_state *state,
+       struct armada_regs *regs, bool interlaced)
 {
-       unsigned pitch = fb->pitches[0];
+       unsigned pitch = state->fb->pitches[0];
        u32 addrs[3], addr_odd, addr_even;
        unsigned i = 0;
 
-       DRM_DEBUG_DRIVER("pitch %u x %d y %d bpp %d\n",
-               pitch, x, y, fb->format->cpp[0] * 8);
-
-       armada_drm_plane_calc_addrs(addrs, fb, x, y);
+       armada_drm_plane_calc_addrs(state, addrs);
 
        addr_odd = addr_even = addrs[0];
 
@@ -175,10 +177,7 @@ static void armada_drm_primary_plane_atomic_update(struct drm_plane *plane,
        if (old_state->src.x1 != state->src.x1 ||
            old_state->src.y1 != state->src.y1 ||
            old_state->fb != state->fb) {
-               idx += armada_drm_crtc_calc_fb(state->fb,
-                                              state->src.x1 >> 16,
-                                              state->src.y1 >> 16,
-                                              regs + idx,
+               idx += armada_drm_crtc_calc_fb(state, regs + idx,
                                               dcrtc->interlaced);
        }
        if (old_state->fb != state->fb) {
index 3c83160..999a0bd 100644 (file)
@@ -1,8 +1,7 @@
 #ifndef ARMADA_PLANE_H
 #define ARMADA_PLANE_H
 
-void armada_drm_plane_calc_addrs(u32 *addrs, struct drm_framebuffer *fb,
-       int x, int y);
+void armada_drm_plane_calc_addrs(struct drm_plane_state *state, u32 addrs[3]);
 int armada_drm_plane_prepare_fb(struct drm_plane *plane,
        struct drm_plane_state *state);
 void armada_drm_plane_cleanup_fb(struct drm_plane *plane,