Commit 7b779c99 authored by Vitaly Prosyak's avatar Vitaly Prosyak Committed by Alex Deucher

drm/amd/display: stereo support

Frame sequential, top-bottom and side-by-side support.
Signed-off-by: default avatarVitaly Prosyak <vitaly.prosyak@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 fcbb5ad3
......@@ -422,6 +422,11 @@ static void calculate_viewport(struct pipe_ctx *pipe_ctx)
bool sec_split = pipe_ctx->top_pipe &&
pipe_ctx->top_pipe->surface == pipe_ctx->surface;
if (stream->timing.timing_3d_format == TIMING_3D_FORMAT_SIDE_BY_SIDE ||
stream->timing.timing_3d_format == TIMING_3D_FORMAT_TOP_AND_BOTTOM) {
pri_split = false;
sec_split = false;
}
/* The actual clip is an intersection between stream
* source and surface clip
*/
......@@ -532,13 +537,26 @@ static void calculate_recout(struct pipe_ctx *pipe_ctx, struct view *recout_skip
stream->public.dst.y + stream->public.dst.height
- pipe_ctx->scl_data.recout.y;
/* Handle hsplit */
if (pipe_ctx->top_pipe && pipe_ctx->top_pipe->surface == pipe_ctx->surface) {
/* Handle h & vsplit */
if (pipe_ctx->top_pipe && pipe_ctx->top_pipe->surface ==
pipe_ctx->surface) {
if (stream->public.timing.timing_3d_format ==
TIMING_3D_FORMAT_TOP_AND_BOTTOM) {
pipe_ctx->scl_data.recout.height /= 2;
pipe_ctx->scl_data.recout.y += pipe_ctx->scl_data.recout.height;
/* Floor primary pipe, ceil 2ndary pipe */
pipe_ctx->scl_data.recout.height += pipe_ctx->scl_data.recout.height % 2;
} else {
pipe_ctx->scl_data.recout.width /= 2;
pipe_ctx->scl_data.recout.x += pipe_ctx->scl_data.recout.width;
/* Floor primary pipe, ceil 2ndary pipe */
pipe_ctx->scl_data.recout.width += pipe_ctx->scl_data.recout.width % 2;
} else if (pipe_ctx->bottom_pipe && pipe_ctx->bottom_pipe->surface == pipe_ctx->surface) {
}
} else if (pipe_ctx->bottom_pipe &&
pipe_ctx->bottom_pipe->surface == pipe_ctx->surface) {
if (stream->public.timing.timing_3d_format ==
TIMING_3D_FORMAT_TOP_AND_BOTTOM)
pipe_ctx->scl_data.recout.height /= 2;
else
pipe_ctx->scl_data.recout.width /= 2;
}
......
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