]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
drm/amd/display: fix ASSERT() caused by missing registers.
authorKen Chalmers <ken.chalmers@amd.com>
Wed, 20 Sep 2017 15:48:47 +0000 (11:48 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Sat, 21 Oct 2017 20:42:12 +0000 (16:42 -0400)
Signed-off-by: Ken Chalmers <ken.chalmers@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/dcn10/dcn10_hw_sequencer.c

index bf5c9243ba7ab2142dd4b63dafd54e7736320dac..cdaed0c0a70c421ead7a77e5d881c8a6111c6cee 100644 (file)
@@ -771,14 +771,16 @@ static void power_on_plane(
        struct dce_hwseq *hws,
        int plane_id)
 {
-       REG_SET(DC_IP_REQUEST_CNTL, 0,
-                       IP_REQUEST_EN, 1);
-       dpp_pg_control(hws, plane_id, true);
-       hubp_pg_control(hws, plane_id, true);
-       REG_SET(DC_IP_REQUEST_CNTL, 0,
-                       IP_REQUEST_EN, 0);
-       dm_logger_write(hws->ctx->logger, LOG_DEBUG,
-                       "Un-gated front end for pipe %d\n", plane_id);
+       if (REG(DC_IP_REQUEST_CNTL)) {
+               REG_SET(DC_IP_REQUEST_CNTL, 0,
+                               IP_REQUEST_EN, 1);
+               dpp_pg_control(hws, plane_id, true);
+               hubp_pg_control(hws, plane_id, true);
+               REG_SET(DC_IP_REQUEST_CNTL, 0,
+                               IP_REQUEST_EN, 0);
+               dm_logger_write(hws->ctx->logger, LOG_DEBUG,
+                               "Un-gated front end for pipe %d\n", plane_id);
+       }
 }
 
 static void undo_DEGVIDCN10_253_wa(struct dc *dc)
@@ -1130,18 +1132,20 @@ static void plane_atomic_power_down(struct dc *dc, int fe_idx)
        struct dce_hwseq *hws = dc->hwseq;
        struct transform *xfm = dc->res_pool->transforms[fe_idx];
 
-       REG_SET(DC_IP_REQUEST_CNTL, 0,
-                       IP_REQUEST_EN, 1);
-       dpp_pg_control(hws, fe_idx, false);
-       hubp_pg_control(hws, fe_idx, false);
-       xfm->funcs->transform_reset(xfm);
-       REG_SET(DC_IP_REQUEST_CNTL, 0,
-                       IP_REQUEST_EN, 0);
-       dm_logger_write(dc->ctx->logger, LOG_DEBUG,
-                       "Power gated front end %d\n", fe_idx);
+       if (REG(DC_IP_REQUEST_CNTL)) {
+               REG_SET(DC_IP_REQUEST_CNTL, 0,
+                               IP_REQUEST_EN, 1);
+               dpp_pg_control(hws, fe_idx, false);
+               hubp_pg_control(hws, fe_idx, false);
+               xfm->funcs->transform_reset(xfm);
+               REG_SET(DC_IP_REQUEST_CNTL, 0,
+                               IP_REQUEST_EN, 0);
+               dm_logger_write(dc->ctx->logger, LOG_DEBUG,
+                               "Power gated front end %d\n", fe_idx);
 
-       if (dc->debug.sanity_checks)
-               verify_allow_pstate_change_high(dc->hwseq);
+               if (dc->debug.sanity_checks)
+                       verify_allow_pstate_change_high(dc->hwseq);
+       }
 }