aboutsummaryrefslogtreecommitdiffstats
path: root/common/recipes-kernel/linux/files/0595-drm-amd-dal-do-not-remove-MST-sinks-in-DC.patch
blob: db0bf660721cb44ab2d6bda5b708b687edb52cb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
From d906352dfc34ffcd1459b21b6f1f2de61c5ac85d Mon Sep 17 00:00:00 2001
From: Mykola Lysenko <Mykola.Lysenko@amd.com>
Date: Wed, 9 Dec 2015 19:57:21 +0800
Subject: [PATCH 0595/1110] drm/amd/dal: do not remove MST sinks in DC

They will be removed by appropriate code in DM, as
they were created in DM

Signed-off-by: Harry Wentland <harry.wentland@amd.com>
Acked-by: Harry Wentland<harry.wentland@amd.com>
---
 drivers/gpu/drm/amd/dal/dc/core/dc_link.c | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/amd/dal/dc/core/dc_link.c b/drivers/gpu/drm/amd/dal/dc/core/dc_link.c
index fe36786..2f2800f 100644
--- a/drivers/gpu/drm/amd/dal/dc/core/dc_link.c
+++ b/drivers/gpu/drm/amd/dal/dc/core/dc_link.c
@@ -639,11 +639,27 @@ void dc_link_detect(const struct dc_link *dc_link)
 		switch (link->public.connector_signal) {
 		case SIGNAL_TYPE_DISPLAY_PORT:
 			dc_helpers_dp_mst_stop_top_mgr(link->ctx, &link->public);
+			/*
+			 * in this case sinks would be removed in outer level
+			 */
+
+			/*
+			 * TODO: this is the only way to understand that link
+			 * was in mst mode. Proposal for future to add
+			 * additional field to link that will show actual state.
+			 *
+			 * For the change: for mst we create sink outside, and
+			 * should remove them in the same place
+			 */
+			if (link->public.sink_count == 1 &&
+				link->public.sink[0]->sink_signal !=
+					SIGNAL_TYPE_DISPLAY_PORT_MST)
+				link_disconnect_all_sinks(link);
 			break;
 		default:
+			link_disconnect_all_sinks(link);
 			break;
 		}
-		link_disconnect_all_sinks(link);
 	}
 
 	LINK_INFO("link=%d, dc_sink_in=%p is now %s\n",
-- 
2.7.4