drm/rockchip: Use vop_win in vop_win_disable instead of vop_win_data
authorSean Paul <seanpaul@chromium.org>
Tue, 11 Jun 2019 16:08:23 +0000 (12:08 -0400)
committerSean Paul <seanpaul@chromium.org>
Fri, 26 Jul 2019 18:48:03 +0000 (14:48 -0400)
Change the argument to vop_win_disable to vop_win to accomodate future
changes to the function.

Changes in v4:
- Added to the patchset
Changes in v5:
- None

Link to v4: https://patchwork.freedesktop.org/patch/msgid/20190508160920.144739-10-sean@poorly.run

Tested-by: Heiko Stuebner <heiko@sntech.de>
Reviewed-by: Heiko Stuebner <heiko@sntech.de>
Signed-off-by: Sean Paul <seanpaul@chromium.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20190611160844.257498-10-sean@poorly.run
drivers/gpu/drm/rockchip/rockchip_drm_vop.c

index 90eb9a3bcf03fe58491c5cc1dab633d59c3a0d39..0657d769b19696b48f75bd77f022be8cfbecb775 100644 (file)
@@ -531,8 +531,10 @@ static void vop_core_clks_disable(struct vop *vop)
        clk_disable(vop->hclk);
 }
 
-static void vop_win_disable(struct vop *vop, const struct vop_win_data *win)
+static void vop_win_disable(struct vop *vop, const struct vop_win *vop_win)
 {
+       const struct vop_win_data *win = vop_win->data;
+
        if (win->phy->scl && win->phy->scl->ext) {
                VOP_SCL_SET_EXT(vop, win, yrgb_hor_scl_mode, SCALE_NONE);
                VOP_SCL_SET_EXT(vop, win, yrgb_ver_scl_mode, SCALE_NONE);
@@ -591,9 +593,8 @@ static int vop_enable(struct drm_crtc *crtc, struct drm_crtc_state *old_state)
        if (!old_state || !old_state->self_refresh_active) {
                for (i = 0; i < vop->data->win_size; i++) {
                        struct vop_win *vop_win = &vop->win[i];
-                       const struct vop_win_data *win = vop_win->data;
 
-                       vop_win_disable(vop, win);
+                       vop_win_disable(vop, vop_win);
                }
        }
        spin_unlock(&vop->reg_lock);
@@ -741,7 +742,6 @@ static void vop_plane_atomic_disable(struct drm_plane *plane,
                                     struct drm_plane_state *old_state)
 {
        struct vop_win *vop_win = to_vop_win(plane);
-       const struct vop_win_data *win = vop_win->data;
        struct vop *vop = to_vop(old_state->crtc);
 
        if (!old_state->crtc)
@@ -749,7 +749,7 @@ static void vop_plane_atomic_disable(struct drm_plane *plane,
 
        spin_lock(&vop->reg_lock);
 
-       vop_win_disable(vop, win);
+       vop_win_disable(vop, vop_win);
 
        spin_unlock(&vop->reg_lock);
 }
@@ -1582,7 +1582,6 @@ static void vop_destroy_crtc(struct vop *vop)
 
 static int vop_initial(struct vop *vop)
 {
-       const struct vop_data *vop_data = vop->data;
        struct reset_control *ahb_rst;
        int i, ret;
 
@@ -1649,12 +1648,13 @@ static int vop_initial(struct vop *vop)
        VOP_REG_SET(vop, misc, global_regdone_en, 1);
        VOP_REG_SET(vop, common, dsp_blank, 0);
 
-       for (i = 0; i < vop_data->win_size; i++) {
-               const struct vop_win_data *win = &vop_data->win[i];
+       for (i = 0; i < vop->data->win_size; i++) {
+               struct vop_win *vop_win = &vop->win[i];
+               const struct vop_win_data *win = vop_win->data;
                int channel = i * 2 + 1;
 
                VOP_WIN_SET(vop, win, channel, (channel + 1) << 4 | channel);
-               vop_win_disable(vop, win);
+               vop_win_disable(vop, vop_win);
                VOP_WIN_SET(vop, win, gate, 1);
        }