AMD-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] drm/amd/display: Bring back dc_log for more debug prints
@ 2018-06-14 17:43 Harry Wentland
       [not found] ` <20180614174332.19159-1-harry.wentland-5C7GfCeVMHo@public.gmane.org>
  0 siblings, 1 reply; 2+ messages in thread
From: Harry Wentland @ 2018-06-14 17:43 UTC (permalink / raw)
  To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Harry Wentland

A bunch of log statements in DC don't yet go to DRM_DEBUG_KMS or the
dynamic debug prints so we still want to enable those logs when dc_log=1
to not miss out on things such as the link training logger.

Signed-off-by: Harry Wentland <harry.wentland@amd.com>
---
 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
index ed41d1e1f406..56ff7adc90d4 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
@@ -430,6 +430,9 @@ static int amdgpu_dm_init(struct amdgpu_device *adev)
 
 	init_data.dce_environment = DCE_ENV_PRODUCTION_DRV;
 
+	if (amdgpu_dc_log)
+		init_data.log_mask = DC_DEFAULT_LOG_MASK;
+
 	/*
 	 * TODO debug why this doesn't work on Raven
 	 */
-- 
2.17.1

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [PATCH 2/2] drm/amd/display: Retry link training at verify_link_cap stage
       [not found] ` <20180614174332.19159-1-harry.wentland-5C7GfCeVMHo@public.gmane.org>
@ 2018-06-14 17:43   ` Harry Wentland
  0 siblings, 0 replies; 2+ messages in thread
From: Harry Wentland @ 2018-06-14 17:43 UTC (permalink / raw)
  To: amd-gfx-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW; +Cc: Wenjing Liu, Harry Wentland

Some receivers seem to fail the first link training but are on good on
subsequent tries. Set a limit of 2 retries for each level before falling
back.

Signed-off-by: Harry Wentland <harry.wentland@amd.com>
CC: Wenjing Liu <Wenjing.Liu@amd.com>
---
 .../gpu/drm/amd/display/dc/core/dc_link_dp.c  | 28 +++++++++++++------
 1 file changed, 20 insertions(+), 8 deletions(-)

diff --git a/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c b/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c
index 72a8a55565c8..037d3bcfc2cc 100644
--- a/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c
+++ b/drivers/gpu/drm/amd/display/dc/core/dc_link_dp.c
@@ -31,7 +31,14 @@ enum {
 	/* to avoid infinite loop where-in the receiver
 	 * switches between different VS
 	 */
-	LINK_TRAINING_MAX_CR_RETRY = 100
+	LINK_TRAINING_MAX_CR_RETRY = 100,
+	/*
+	 * Some receivers fail to train on first try and are good
+	 * on subsequent tries. 2 retries should be plenty. If we
+	 * don't have a successful training then we don't expect to
+	 * ever get one.
+	 */
+	LINK_TRAINING_MAX_VERIFY_RETRY = 2
 };
 
 static bool decide_fallback_link_setting(
@@ -1142,15 +1149,20 @@ bool dp_hbr_verify_link_cap(
 				cur);
 
 
-		if (skip_link_training)
+		if (skip_link_training) {
 			success = true;
-		else {
-			status = dc_link_dp_perform_link_training(
-							link,
-							cur,
+		} else {
+			int i;
+
+			for (i = 0; i < LINK_TRAINING_MAX_VERIFY_RETRY; i++) {
+				status = dc_link_dp_perform_link_training(
+							link, cur,
 							skip_video_pattern);
-			if (status == LINK_TRAINING_SUCCESS)
-				success = true;
+				if (status == LINK_TRAINING_SUCCESS) {
+					success = true;
+					break;
+				}
+			}
 		}
 
 		if (success)
-- 
2.17.1

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-06-14 17:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-14 17:43 [PATCH 1/2] drm/amd/display: Bring back dc_log for more debug prints Harry Wentland
     [not found] ` <20180614174332.19159-1-harry.wentland-5C7GfCeVMHo@public.gmane.org>
2018-06-14 17:43   ` [PATCH 2/2] drm/amd/display: Retry link training at verify_link_cap stage Harry Wentland

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox