Commit 194038fd authored by Rodrigo Siqueira's avatar Rodrigo Siqueira Committed by Alex Deucher

drm/amd/display: Document set RECOUT operation

During the investigation on how to add visual confirmation on top of the
planes used by DCN, it becomes evident that the lack of information in
the code makes this work unnecessarily complicated. This commit
introduces a set of documentation related to the RECOUT operation in
order to make it easy for developers to navigate this set of functions.
Signed-off-by: default avatarRodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Reviewed-by: default avatarHarry Wentland <Harry.Wentland@amd.com>
Acked-by: default avatarStylon Wang <stylon.wang@amd.com>
Tested-by: default avatarDaniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 568bb205
...@@ -653,19 +653,28 @@ static void dpp1_dscl_set_manual_ratio_init( ...@@ -653,19 +653,28 @@ static void dpp1_dscl_set_manual_ratio_init(
} }
} }
/**
* dpp1_dscl_set_recout - Set the first pixel of RECOUT in the OTG active area
static void dpp1_dscl_set_recout( *
struct dcn10_dpp *dpp, const struct rect *recout) * @dpp: DPP data struct
* @recount: Rectangle information
*
* This function sets the MPC RECOUT_START and RECOUT_SIZE registers based on
* the values specified in the recount parameter.
*
* Note: This function only have effect if AutoCal is disabled.
*/
static void dpp1_dscl_set_recout(struct dcn10_dpp *dpp,
const struct rect *recout)
{ {
int visual_confirm_on = 0; int visual_confirm_on = 0;
if (dpp->base.ctx->dc->debug.visual_confirm != VISUAL_CONFIRM_DISABLE) if (dpp->base.ctx->dc->debug.visual_confirm != VISUAL_CONFIRM_DISABLE)
visual_confirm_on = 1; visual_confirm_on = 1;
REG_SET_2(RECOUT_START, 0, REG_SET_2(RECOUT_START, 0,
/* First pixel of RECOUT */ /* First pixel of RECOUT in the active OTG area */
RECOUT_START_X, recout->x, RECOUT_START_X, recout->x,
/* First line of RECOUT */ /* First line of RECOUT in the active OTG area */
RECOUT_START_Y, recout->y); RECOUT_START_Y, recout->y);
REG_SET_2(RECOUT_SIZE, 0, REG_SET_2(RECOUT_SIZE, 0,
...@@ -676,9 +685,17 @@ static void dpp1_dscl_set_recout( ...@@ -676,9 +685,17 @@ static void dpp1_dscl_set_recout(
- visual_confirm_on * 2 * (dpp->base.inst + 1)); - visual_confirm_on * 2 * (dpp->base.inst + 1));
} }
/* Main function to program scaler and line buffer in manual scaling mode */ /**
void dpp1_dscl_set_scaler_manual_scale( * dpp1_dscl_set_scaler_manual_scale - Manually program scaler and line buffer
struct dpp *dpp_base, *
* @dpp_base: High level DPP struct
* @scl_data: scalaer_data info
*
* This is the primary function to program scaler and line buffer in manual
* scaling mode. To execute the required operations for manual scale, we need
* to disable AutoCal first.
*/
void dpp1_dscl_set_scaler_manual_scale(struct dpp *dpp_base,
const struct scaler_data *scl_data) const struct scaler_data *scl_data)
{ {
enum lb_memory_config lb_config; enum lb_memory_config lb_config;
......
...@@ -32,6 +32,12 @@ ...@@ -32,6 +32,12 @@
struct dpp { struct dpp {
const struct dpp_funcs *funcs; const struct dpp_funcs *funcs;
struct dc_context *ctx; struct dc_context *ctx;
/**
* @inst:
*
* inst stands for "instance," and it is an id number that references a
* specific DPP.
*/
int inst; int inst;
struct dpp_caps *caps; struct dpp_caps *caps;
struct pwl_params regamma_params; struct pwl_params regamma_params;
......
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