aboutsummaryrefslogtreecommitdiffstats
path: root/meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.19.8/2127-Revert-drm-amd-display-Copy-stream-updates-onto-stre.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.19.8/2127-Revert-drm-amd-display-Copy-stream-updates-onto-stre.patch')
-rw-r--r--meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.19.8/2127-Revert-drm-amd-display-Copy-stream-updates-onto-stre.patch103
1 files changed, 103 insertions, 0 deletions
diff --git a/meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.19.8/2127-Revert-drm-amd-display-Copy-stream-updates-onto-stre.patch b/meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.19.8/2127-Revert-drm-amd-display-Copy-stream-updates-onto-stre.patch
new file mode 100644
index 00000000..0a616160
--- /dev/null
+++ b/meta-amd-bsp/recipes-kernel/linux/linux-yocto-4.19.8/2127-Revert-drm-amd-display-Copy-stream-updates-onto-stre.patch
@@ -0,0 +1,103 @@
+From df5a4fde3ee7c6c0740c3cedd83ee78d7f4f2010 Mon Sep 17 00:00:00 2001
+From: Alex Deucher <alexander.deucher@amd.com>
+Date: Mon, 17 Jun 2019 13:10:48 -0500
+Subject: [PATCH 2127/2940] Revert "drm/amd/display: Copy stream updates onto
+ streams"
+
+This reverts commit eee5d2cebaaea3cc42a1334a963502b8aece10de.
+
+Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
+---
+ drivers/gpu/drm/amd/display/dc/core/dc.c | 69 ------------------------
+ 1 file changed, 69 deletions(-)
+
+diff --git a/drivers/gpu/drm/amd/display/dc/core/dc.c b/drivers/gpu/drm/amd/display/dc/core/dc.c
+index d14927c91de2..877565e12f14 100644
+--- a/drivers/gpu/drm/amd/display/dc/core/dc.c
++++ b/drivers/gpu/drm/amd/display/dc/core/dc.c
+@@ -1619,73 +1619,6 @@ static void copy_surface_update_to_plane(
+ *srf_update->coeff_reduction_factor;
+ }
+
+-static void copy_stream_update_to_stream(struct dc *dc,
+- struct dc_state *context,
+- struct dc_stream_state *stream,
+- const struct dc_stream_update *update)
+-{
+- if (update == NULL || stream == NULL)
+- return;
+-
+- if (update->src.height && update->src.width)
+- stream->src = update->src;
+-
+- if (update->dst.height && update->dst.width)
+- stream->dst = update->dst;
+-
+- if (update->out_transfer_func &&
+- stream->out_transfer_func != update->out_transfer_func) {
+- stream->out_transfer_func->sdr_ref_white_level =
+- update->out_transfer_func->sdr_ref_white_level;
+- stream->out_transfer_func->tf = update->out_transfer_func->tf;
+- stream->out_transfer_func->type =
+- update->out_transfer_func->type;
+- memcpy(&stream->out_transfer_func->tf_pts,
+- &update->out_transfer_func->tf_pts,
+- sizeof(struct dc_transfer_func_distributed_points));
+- }
+-
+- if (update->hdr_static_metadata)
+- stream->hdr_static_metadata = *update->hdr_static_metadata;
+-
+- if (update->abm_level)
+- stream->abm_level = *update->abm_level;
+-
+- if (update->periodic_interrupt0)
+- stream->periodic_interrupt0 = *update->periodic_interrupt0;
+-
+- if (update->periodic_interrupt1)
+- stream->periodic_interrupt1 = *update->periodic_interrupt1;
+-
+- if (update->gamut_remap)
+- stream->gamut_remap_matrix = *update->gamut_remap;
+-
+- /* Note: this being updated after mode set is currently not a use case
+- * however if it arises OCSC would need to be reprogrammed at the
+- * minimum
+- */
+- if (update->output_color_space)
+- stream->output_color_space = *update->output_color_space;
+-
+- if (update->output_csc_transform)
+- stream->csc_color_matrix = *update->output_csc_transform;
+-
+- if (update->vrr_infopacket)
+- stream->vrr_infopacket = *update->vrr_infopacket;
+-
+- if (update->dpms_off)
+- stream->dpms_off = *update->dpms_off;
+-
+- if (update->vsc_infopacket)
+- stream->vsc_infopacket = *update->vsc_infopacket;
+-
+- if (update->vsp_infopacket)
+- stream->vsp_infopacket = *update->vsp_infopacket;
+-
+- if (update->dither_option)
+- stream->dither_option = *update->dither_option;
+-}
+-
+ static void commit_planes_do_stream_update(struct dc *dc,
+ struct dc_stream_state *stream,
+ struct dc_stream_update *stream_update,
+@@ -1935,8 +1868,6 @@ void dc_commit_updates_for_stream(struct dc *dc,
+ }
+ }
+
+- copy_stream_update_to_stream(dc, context, stream, stream_update);
+-
+ commit_planes_for_stream(
+ dc,
+ srf_updates,
+--
+2.17.1
+