Commit ce9c0880 authored by Dmytro Laktyushkin's avatar Dmytro Laktyushkin Committed by Alex Deucher

drm/amd/display: move visual confirm recout adjustment to scaler

Signed-off-by: default avatarDmytro Laktyushkin <Dmytro.Laktyushkin@amd.com>
Acked-by: default avatarHarry Wentland <Harry.Wentland@amd.com>
Reviewed-by: default avatarTony Cheng <Tony.Cheng@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent cf437593
......@@ -980,11 +980,6 @@ bool dc_pre_update_surfaces_to_stream(
resource_build_scaling_params(
new_surfaces[i], &context->res_ctx.pipe_ctx[j]);
if (dc->debug.surface_visual_confirm) {
context->res_ctx.pipe_ctx[j].scl_data.recout.height -= 2;
context->res_ctx.pipe_ctx[j].scl_data.recout.width -= 2;
}
}
if (!core_dc->res_pool->funcs->validate_bandwidth(core_dc, context)) {
......@@ -1267,10 +1262,6 @@ void dc_update_surfaces_for_stream(struct dc *dc,
continue;
resource_build_scaling_params(updates[i].surface, pipe_ctx);
if (dc->debug.surface_visual_confirm) {
pipe_ctx->scl_data.recout.height -= 2;
pipe_ctx->scl_data.recout.width -= 2;
}
}
}
......
......@@ -27,6 +27,7 @@
#include "reg_helper.h"
#include "opp.h"
#include "basics/conversion.h"
#include "dc.h"
#define REG(reg) \
(xfm_dce->regs->reg)
......@@ -121,6 +122,11 @@ static void program_overscan(
int overscan_bottom = data->v_active
- data->recout.y - data->recout.height;
if (xfm_dce->base.ctx->dc->debug.surface_visual_confirm) {
overscan_bottom += 2;
overscan_right += 2;
}
if (overscan_right < 0) {
BREAK_TO_DEBUGGER();
overscan_right = 0;
......
......@@ -25,6 +25,7 @@
#include "dce110_transform_v.h"
#include "dm_services.h"
#include "dc.h"
#include "dce/dce_11_0_d.h"
#include "dce/dce_11_0_sh_mask.h"
......@@ -232,6 +233,11 @@ static void program_overscan(
int overscan_right = data->h_active - data->recout.x - data->recout.width;
int overscan_bottom = data->v_active - data->recout.y - data->recout.height;
if (xfm_dce->base.ctx->dc->debug.surface_visual_confirm) {
overscan_bottom += 2;
overscan_right += 2;
}
if (overscan_right < 0) {
BREAK_TO_DEBUGGER();
overscan_right = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment