Commit 7f5c22d1 authored by Vitaly Prosyak's avatar Vitaly Prosyak Committed by Alex Deucher
Browse files

drm/amd/display: RV stereo support



HDMI frame pack and DP frame alternate in band

Signed-off-by: default avatarVitaly Prosyak <vitaly.prosyak@amd.com>
Reviewed-by: default avatarTony Cheng <Tony.Cheng@amd.com>
Acked-by: default avatarHarry Wentland <Harry.Wentland@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent aed8b319
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -972,9 +972,7 @@ bool dcn_validate_bandwidth(
			if (pipe->surface) {
				struct pipe_ctx *hsplit_pipe = pipe->bottom_pipe;

				if (v->dpp_per_plane[input_idx] == 2 ||
						(pipe->stream->public.timing.timing_3d_format == TIMING_3D_FORMAT_TOP_AND_BOTTOM ||
						 pipe->stream->public.timing.timing_3d_format == TIMING_3D_FORMAT_SIDE_BY_SIDE)) {
				if (v->dpp_per_plane[input_idx] == 2) {
					if (hsplit_pipe && hsplit_pipe->surface == pipe->surface) {
						/* update previously split pipe */
						hsplit_pipe->pipe_dlg_param.vupdate_width = v->v_update_width[input_idx];
+25 −0
Original line number Diff line number Diff line
@@ -832,6 +832,30 @@ static bool streams_changed(
	return false;
}

bool dc_enable_stereo(
	struct dc *dc,
	struct validate_context *context,
	const struct dc_stream *streams[],
	uint8_t stream_count)
{
	bool ret = true;
	int i, j;
	struct pipe_ctx *pipe;
	struct core_dc *core_dc = DC_TO_CORE(dc);
	for (i = 0; i < MAX_PIPES; i++) {
		if (context != NULL)
			pipe = &context->res_ctx.pipe_ctx[i];
		else
			pipe = &core_dc->current_context->res_ctx.pipe_ctx[i];
		for (j = 0 ; pipe && j < stream_count; j++)  {
			if (streams[j] && streams[j] == &pipe->stream->public &&
				core_dc->hwss.setup_stereo)
				core_dc->hwss.setup_stereo(pipe, core_dc);
		}
	}
	return ret;
}

bool dc_commit_streams(
	struct dc *dc,
	const struct dc_stream *streams[],
@@ -903,6 +927,7 @@ bool dc_commit_streams(
					DC_SURFACE_TO_CORE(context->stream_status[i].surfaces[j]);

			core_dc->hwss.apply_ctx_for_surface(core_dc, surface, context);
			dc_enable_stereo(dc, context, streams, stream_count);
		}

		CONN_MSG_MODE(sink->link, "{%dx%d, %dx%d@%dKhz}",
+7 −7
Original line number Diff line number Diff line
@@ -440,8 +440,8 @@ 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) {
	if (stream->view_format == VIEW_3D_FORMAT_SIDE_BY_SIDE ||
		stream->view_format == VIEW_3D_FORMAT_TOP_AND_BOTTOM) {
		pri_split = false;
		sec_split = false;
	}
@@ -568,8 +568,7 @@ static void calculate_recout(struct pipe_ctx *pipe_ctx, struct view *recout_skip
	/* 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) {
		if (stream->public.view_format == VIEW_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 */
@@ -581,8 +580,7 @@ static void calculate_recout(struct pipe_ctx *pipe_ctx, struct view *recout_skip
		}
	} 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)
		if (stream->public.view_format == VIEW_3D_FORMAT_TOP_AND_BOTTOM)
			pipe_ctx->scl_data.recout.height /= 2;
		else
			pipe_ctx->scl_data.recout.width /= 2;
@@ -626,7 +624,7 @@ static void calculate_scaling_ratios(struct pipe_ctx *pipe_ctx)
					surf_src.height,
					surface->dst_rect.height);

	if (surface->stereo_format == PLANE_STEREO_FORMAT_SIDE_BY_SIDE)
	if (stream->public.view_format == VIEW_3D_FORMAT_SIDE_BY_SIDE)
		pipe_ctx->scl_data.ratios.horz.value *= 2;
	else if (surface->stereo_format == PLANE_STEREO_FORMAT_TOP_AND_BOTTOM)
		pipe_ctx->scl_data.ratios.vert.value *= 2;
@@ -1772,6 +1770,8 @@ static void set_vendor_info_packet(
	enum dc_timing_3d_format format;

	format = stream->public.timing.timing_3d_format;
	if (stream->public.view_format == VIEW_3D_FORMAT_NONE)
		format = TIMING_3D_FORMAT_NONE;

	/* Can be different depending on packet content */
	length = 5;
+6 −0
Original line number Diff line number Diff line
@@ -2057,6 +2057,11 @@ void dce110_update_pending_status(struct pipe_ctx *pipe_ctx)
		pipe_ctx->mi->current_address = pipe_ctx->mi->request_address;

	surface->status.current_address = pipe_ctx->mi->current_address;
	if (pipe_ctx->mi->current_address.type == PLN_ADDR_TYPE_GRPH_STEREO &&
			pipe_ctx->tg->funcs->is_stereo_left_eye) {
		surface->status.is_right_eye =\
				!pipe_ctx->tg->funcs->is_stereo_left_eye(pipe_ctx->tg);
	}
}

void dce110_power_down(struct core_dc *dc)
@@ -2576,6 +2581,7 @@ static const struct hw_sequencer_funcs dce110_funcs = {
	.set_static_screen_control = set_static_screen_control,
	.reset_hw_ctx_wrap = reset_hw_ctx_wrap,
	.prog_pixclk_crtc_otg = dce110_prog_pixclk_crtc_otg,
	.setup_stereo = NULL
};

bool dce110_hw_sequencer_construct(struct core_dc *dc)
+66 −3
Original line number Diff line number Diff line
@@ -896,8 +896,9 @@ static void reset_hw_ctx_wrap(
	reset_hw_ctx(dc, context, reset_back_end_for_pipe);
}

static bool patch_address_for_sbs_tb_stereo(
		struct pipe_ctx *pipe_ctx, PHYSICAL_ADDRESS_LOC *addr)

static bool patch_address_for_sbs_tb_stereo(struct pipe_ctx *pipe_ctx,
											PHYSICAL_ADDRESS_LOC *addr)
{
	struct core_surface *surface = pipe_ctx->surface;
	bool sec_split = pipe_ctx->top_pipe &&
@@ -912,6 +913,7 @@ static bool patch_address_for_sbs_tb_stereo(
		surface->public.address.grph_stereo.right_addr;
		return true;
	}

	return false;
}

@@ -2061,6 +2063,66 @@ static void set_plane_config(
	program_gamut_remap(pipe_ctx);
}

static void dcn10_config_stereo_parameters(struct core_stream *stream,\
										   struct crtc_stereo_flags *flags)
{
	enum view_3d_format view_format = stream->public.view_format;
	enum dc_timing_3d_format timing_3d_format =\
			stream->public.timing.timing_3d_format;
	bool non_stereo_timing = false;

	if (timing_3d_format == TIMING_3D_FORMAT_NONE ||
		timing_3d_format == TIMING_3D_FORMAT_SIDE_BY_SIDE ||
		timing_3d_format == TIMING_3D_FORMAT_TOP_AND_BOTTOM)
		non_stereo_timing = true;

	if (non_stereo_timing == false &&
		view_format == VIEW_3D_FORMAT_FRAME_SEQUENTIAL) {

		flags->PROGRAM_STEREO         = 1;
		flags->PROGRAM_POLARITY       = 1;
		if (timing_3d_format == TIMING_3D_FORMAT_INBAND_FA ||
			timing_3d_format == TIMING_3D_FORMAT_DP_HDMI_INBAND_FA ||
			timing_3d_format == TIMING_3D_FORMAT_SIDEBAND_FA) {
			enum display_dongle_type dongle = \
					stream->sink->link->public.ddc->dongle_type;
			if (dongle == DISPLAY_DONGLE_DP_VGA_CONVERTER ||
				dongle == DISPLAY_DONGLE_DP_DVI_CONVERTER ||
				dongle == DISPLAY_DONGLE_DP_HDMI_CONVERTER)
				flags->DISABLE_STEREO_DP_SYNC = 1;
		}
		flags->RIGHT_EYE_POLARITY =\
				stream->public.timing.flags.RIGHT_EYE_3D_POLARITY;
		if (timing_3d_format == TIMING_3D_FORMAT_HW_FRAME_PACKING)
			flags->FRAME_PACKED = 1;
	}

	return;
}

static void dcn10_setup_stereo(struct pipe_ctx *pipe_ctx,
								struct core_dc *dc)
{
	struct crtc_stereo_flags flags = { 0 };
	struct core_stream *stream = pipe_ctx->stream;

	dcn10_config_stereo_parameters(stream, &flags);

	pipe_ctx->opp->funcs->opp_set_stereo_polarity(
		pipe_ctx->opp,
		flags.PROGRAM_STEREO == 1 ? true:false,
		stream->public.timing.flags.RIGHT_EYE_3D_POLARITY == 1 ? true:false);

	pipe_ctx->tg->funcs->program_stereo(
		pipe_ctx->tg,
		&stream->public.timing,
		&flags);



	return;
}

static const struct hw_sequencer_funcs dcn10_funcs = {
	.program_gamut_remap = program_gamut_remap,
	.init_hw = init_hw,
@@ -2088,7 +2150,8 @@ static const struct hw_sequencer_funcs dcn10_funcs = {
	.prog_pixclk_crtc_otg = dcn10_prog_pixclk_crtc_otg,
	.set_drr = set_drr,
	.get_position = get_position,
	.set_static_screen_control = set_static_screen_control
	.set_static_screen_control = set_static_screen_control,
	.setup_stereo = dcn10_setup_stereo
};


Loading