提交 199e458a 编写于 作者: D Dmytro Laktyushkin 提交者: Alex Deucher

drm/amd/display: Set addressable region as active + border

This ensures that we do not draw the blank region onscreen, and that we
do underscan instead.
Signed-off-by: NAndrew Jiang <Andrew.Jiang@amd.com>
Reviewed-by: NTony Cheng <Tony.Cheng@amd.com>
Acked-by: NHarry Wentland <Harry.Wentland@amd.com>
Signed-off-by: NAlex Deucher <alexander.deucher@amd.com>
上级 215a6f05
......@@ -850,6 +850,20 @@ bool resource_build_scaling_params(struct pipe_ctx *pipe_ctx)
*/
pipe_ctx->plane_res.scl_data.lb_params.depth = LB_PIXEL_DEPTH_30BPP;
/**
* KMD sends us h and v_addressable without the borders, which causes us sometimes to draw
* the blank region on-screen. Correct for this by adding the borders back to their
* respective addressable values, and by shifting recout.
*/
timing->h_addressable += timing->h_border_left + timing->h_border_right;
timing->v_addressable += timing->v_border_top + timing->v_border_bottom;
pipe_ctx->plane_res.scl_data.recout.y += timing->v_border_top;
pipe_ctx->plane_res.scl_data.recout.x += timing->h_border_left;
timing->v_border_top = 0;
timing->v_border_bottom = 0;
timing->h_border_left = 0;
timing->h_border_right = 0;
pipe_ctx->plane_res.scl_data.h_active = timing->h_addressable;
pipe_ctx->plane_res.scl_data.v_active = timing->v_addressable;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册