OSDN Git Service

drm/amd/display: Temporary disable BTR FreeSync support for now
authorAnthony Koo <Anthony.Koo@amd.com>
Tue, 6 Jun 2017 20:30:51 +0000 (16:30 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 26 Sep 2017 22:07:54 +0000 (18:07 -0400)
Reduce timer tick interval for the static screen

Signed-off-by: Anthony Koo <anthony.koo@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/modules/freesync/freesync.c

index f79c479..7109742 100644 (file)
@@ -436,11 +436,14 @@ static void calc_freesync_range(struct core_freesync *core_freesync,
        }
 
        /* Determine whether BTR can be supported */
-       if (max_frame_duration_in_ns >=
-                       2 * min_frame_duration_in_ns)
-               core_freesync->map[index].caps->btr_supported = true;
-       else
-               core_freesync->map[index].caps->btr_supported = false;
+       //if (max_frame_duration_in_ns >=
+       //              2 * min_frame_duration_in_ns)
+       //      core_freesync->map[index].caps->btr_supported = true;
+       //else
+       //      core_freesync->map[index].caps->btr_supported = false;
+
+       /* Temp, keep btr disabled */
+       core_freesync->map[index].caps->btr_supported = false;
 
        /* Cache the time variables */
        state->time.max_render_time_in_us =