diff options
author | Seung-Woo Kim <sw0312.kim@samsung.com> | 2015-01-30 17:30:45 +0900 |
---|---|---|
committer | Inki Dae <inki.dae@samsung.com> | 2015-02-07 16:38:41 +0900 |
commit | 129046c6ecb662e902a241bbbcb1da4206986370 (patch) | |
tree | 5018e87538080e8df205a10e00445ba2d0c370a0 /drivers/gpu | |
parent | e2dc3f72eea7decdb56368f0de88bba343720828 (diff) | |
download | talos-op-linux-129046c6ecb662e902a241bbbcb1da4206986370.tar.gz talos-op-linux-129046c6ecb662e902a241bbbcb1da4206986370.zip |
drm/exynos: hdmi: replace fb size with mode size from win commit
For default graphic window, mixer_win_commit() sets display size
register as fb size. Calling setplane with smaller fb size than
mode size to default window causes distorted display result. So
this patch replaces fb size with mode size for display size from
the mixer_win_commit().
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
Acked-by: Joonyoung Shim <jy0922.shim@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_mixer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_mixer.c b/drivers/gpu/drm/exynos/exynos_mixer.c index 0aa6cf447e9f..496c861f1a61 100644 --- a/drivers/gpu/drm/exynos/exynos_mixer.c +++ b/drivers/gpu/drm/exynos/exynos_mixer.c @@ -583,8 +583,8 @@ static void mixer_graph_buffer(struct mixer_context *ctx, int win) /* setup display size */ if (ctx->mxr_ver == MXR_VER_128_0_0_184 && win == MIXER_DEFAULT_WIN) { - val = MXR_MXR_RES_HEIGHT(win_data->fb_height); - val |= MXR_MXR_RES_WIDTH(win_data->fb_width); + val = MXR_MXR_RES_HEIGHT(win_data->mode_height); + val |= MXR_MXR_RES_WIDTH(win_data->mode_width); mixer_reg_write(res, MXR_RESOLUTION, val); } |