drm/amd/display: Fix missing irq refactor causing potential i2c race
authorJordan Lazare <Jordan.Lazare@amd.com>
Tue, 11 Apr 2017 15:40:18 +0000 (11:40 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 26 Sep 2017 21:23:40 +0000 (17:23 -0400)
Signed-off-by: Jordan Lazare <Jordan.Lazare@amd.com>
Reviewed-by: Harry Wentland <Harry.Wentland@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_types.c

index 58fda20..57560a8 100644 (file)
 #include <drm/drm_atomic.h>
 #include <drm/drm_edid.h>
 
+
 #include "amdgpu.h"
 #include "amdgpu_pm.h"
+#include "dm_helpers.h"
 #include "dm_services_types.h"
 
 // We need to #undef FRAME_SIZE and DEPRECATED because they conflict
@@ -3075,13 +3077,16 @@ static bool is_dp_capable_without_timing_msa(
 {
        uint8_t dpcd_data;
        bool capable = false;
+
        if (amdgpu_connector->dc_link &&
-               dc_read_aux_dpcd(
-                       dc,
-                       amdgpu_connector->dc_link->link_index,
-                       DP_DOWN_STREAM_PORT_COUNT,
-                       &dpcd_data, sizeof(dpcd_data)))
+               dm_helpers_dp_read_dpcd(
+                               NULL,
+                               amdgpu_connector->dc_link,
+                               DP_DOWN_STREAM_PORT_COUNT,
+                               &dpcd_data,
+                               sizeof(dpcd_data))) {
                capable = (dpcd_data & DP_MSA_TIMING_PAR_IGNORED) ? true:false;
+       }
 
        return capable;
 }