mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-07-14 21:29:37 +02:00
drm/mediatek: Add missing plane settings when async update
[ Upstream commit86b89dc669
] Fix an issue that plane coordinate was not saved when calling async update. Fixes:920fffcc89
("drm/mediatek: update cursors by using async atomic update") Reviewed-by: CK Hu <ck.hu@mediatek.com> Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com> Fixes:119f517362
("drm/mediatek: Add DRM Driver for Mediatek SoC MT8173.") Signed-off-by: Hsiao Chien Sung <shawn.sung@mediatek.com> Link: https://patchwork.kernel.org/project/dri-devel/patch/20240620-igt-v3-1-a9d62d2e2c7e@mediatek.com/ Signed-off-by: Chun-Kuang Hu <chunkuang.hu@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
74e622f307
commit
df55acaac4
|
@ -227,6 +227,8 @@ static void mtk_plane_atomic_async_update(struct drm_plane *plane,
|
||||||
plane->state->src_y = new_state->src_y;
|
plane->state->src_y = new_state->src_y;
|
||||||
plane->state->src_h = new_state->src_h;
|
plane->state->src_h = new_state->src_h;
|
||||||
plane->state->src_w = new_state->src_w;
|
plane->state->src_w = new_state->src_w;
|
||||||
|
plane->state->dst.x1 = new_state->dst.x1;
|
||||||
|
plane->state->dst.y1 = new_state->dst.y1;
|
||||||
|
|
||||||
mtk_plane_update_new_state(new_state, new_plane_state);
|
mtk_plane_update_new_state(new_state, new_plane_state);
|
||||||
swap(plane->state->fb, new_state->fb);
|
swap(plane->state->fb, new_state->fb);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user