aboutsummaryrefslogtreecommitdiffstats
path: root/common/recipes-kernel/linux/linux-yocto-4.14.71/0099-drm-amd-display-Fixed-crash-caused-by-unnecessary-cl.patch
diff options
context:
space:
mode:
Diffstat (limited to 'common/recipes-kernel/linux/linux-yocto-4.14.71/0099-drm-amd-display-Fixed-crash-caused-by-unnecessary-cl.patch')
-rw-r--r--common/recipes-kernel/linux/linux-yocto-4.14.71/0099-drm-amd-display-Fixed-crash-caused-by-unnecessary-cl.patch115
1 files changed, 115 insertions, 0 deletions
diff --git a/common/recipes-kernel/linux/linux-yocto-4.14.71/0099-drm-amd-display-Fixed-crash-caused-by-unnecessary-cl.patch b/common/recipes-kernel/linux/linux-yocto-4.14.71/0099-drm-amd-display-Fixed-crash-caused-by-unnecessary-cl.patch
new file mode 100644
index 00000000..98d00a5f
--- /dev/null
+++ b/common/recipes-kernel/linux/linux-yocto-4.14.71/0099-drm-amd-display-Fixed-crash-caused-by-unnecessary-cl.patch
@@ -0,0 +1,115 @@
+From 2f41c3795ac4fc461a11fa3804e83552fbc8bba1 Mon Sep 17 00:00:00 2001
+From: Yongqiang Sun <yongqiang.sun@amd.com>
+Date: Thu, 22 Dec 2016 13:07:11 -0500
+Subject: [PATCH 0099/4131] drm/amd/display: Fixed crash caused by unnecessary
+ clock source in split pipe.
+
+Signed-off-by: Yongqiang Sun <yongqiang.sun@amd.com>
+Reviewed-by: Tony Cheng <Tony.Cheng@amd.com>
+Acked-by: Harry Wentland <Harry.Wentland@amd.com>
+Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
+---
+ drivers/gpu/drm/amd/display/dc/core/dc_resource.c | 20 ++++++++++----------
+ .../drm/amd/display/dc/dce110/dce110_hw_sequencer.c | 4 ++--
+ drivers/gpu/drm/amd/display/dc/inc/resource.h | 2 +-
+ 3 files changed, 13 insertions(+), 13 deletions(-)
+
+diff --git a/drivers/gpu/drm/amd/display/dc/core/dc_resource.c b/drivers/gpu/drm/amd/display/dc/core/dc_resource.c
+index eac597d..386b3cc 100644
+--- a/drivers/gpu/drm/amd/display/dc/core/dc_resource.c
++++ b/drivers/gpu/drm/amd/display/dc/core/dc_resource.c
+@@ -211,27 +211,28 @@ bool resource_construct(
+
+ void resource_unreference_clock_source(
+ struct resource_context *res_ctx,
+- struct clock_source *clock_source)
++ struct clock_source **clock_source)
+ {
+ int i;
+ for (i = 0; i < res_ctx->pool->clk_src_count; i++) {
+- if (res_ctx->pool->clock_sources[i] != clock_source)
++ if (res_ctx->pool->clock_sources[i] != *clock_source)
+ continue;
+
+ res_ctx->clock_source_ref_count[i]--;
+
+ if (res_ctx->clock_source_ref_count[i] == 0)
+- clock_source->funcs->cs_power_down(clock_source);
++ (*clock_source)->funcs->cs_power_down(*clock_source);
+
+ break;
+ }
+
+- if (res_ctx->pool->dp_clock_source == clock_source) {
++ if (res_ctx->pool->dp_clock_source == *clock_source) {
+ res_ctx->dp_clock_source_ref_count--;
+
+ if (res_ctx->dp_clock_source_ref_count == 0)
+- clock_source->funcs->cs_power_down(clock_source);
++ (*clock_source)->funcs->cs_power_down(*clock_source);
+ }
++ *clock_source = NULL;
+ }
+
+ void resource_reference_clock_source(
+@@ -288,11 +289,6 @@ static bool is_sharable_clk_src(
+ if (pipe_with_clk_src->clock_source == NULL)
+ return false;
+
+- if (pipe_with_clk_src->stream == NULL) {
+- ASSERT(0);
+- return false;
+- }
+-
+ if (pipe_with_clk_src->stream->signal == SIGNAL_TYPE_VIRTUAL)
+ return false;
+
+@@ -1148,6 +1144,10 @@ enum dc_status resource_map_pool_resources(
+ pipe_ctx->stream = stream;
+ copy_pipe_ctx(old_pipe_ctx, pipe_ctx);
+
++ /* Split pipe resource, do not acquire back end */
++ if (!pipe_ctx->stream_enc)
++ continue;
++
+ set_stream_engine_in_use(
+ &context->res_ctx,
+ pipe_ctx->stream_enc);
+diff --git a/drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c b/drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c
+index e4cef9d..6a7cb3e 100644
+--- a/drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c
++++ b/drivers/gpu/drm/amd/display/dc/dce110/dce110_hw_sequencer.c
+@@ -1028,7 +1028,7 @@ static void switch_dp_clock_sources(
+ if (clk_src &&
+ clk_src != pipe_ctx->clock_source) {
+ resource_unreference_clock_source(
+- res_ctx, pipe_ctx->clock_source);
++ res_ctx, &pipe_ctx->clock_source);
+ pipe_ctx->clock_source = clk_src;
+ resource_reference_clock_source(res_ctx, clk_src);
+
+@@ -1056,7 +1056,7 @@ static void reset_single_pipe_hw_ctx(
+ pipe_ctx->mi->funcs->free_mem_input(
+ pipe_ctx->mi, context->target_count);
+ resource_unreference_clock_source(
+- &context->res_ctx, pipe_ctx->clock_source);
++ &context->res_ctx, &pipe_ctx->clock_source);
+
+ dc->hwss.power_down_front_end((struct core_dc *)dc, pipe_ctx);
+
+diff --git a/drivers/gpu/drm/amd/display/dc/inc/resource.h b/drivers/gpu/drm/amd/display/dc/inc/resource.h
+index 8dd676d..adf297e 100644
+--- a/drivers/gpu/drm/amd/display/dc/inc/resource.h
++++ b/drivers/gpu/drm/amd/display/dc/inc/resource.h
+@@ -94,7 +94,7 @@ void resource_build_info_frame(struct pipe_ctx *pipe_ctx);
+
+ void resource_unreference_clock_source(
+ struct resource_context *res_ctx,
+- struct clock_source *clock_source);
++ struct clock_source **clock_source);
+
+ void resource_reference_clock_source(
+ struct resource_context *res_ctx,
+--
+2.7.4
+