goto fail;
        }
 
-
-       res = dc_validate_global_state(dc, context, false);
-
-       if (res != DC_OK) {
-               DRM_ERROR("%s:resource validation failed, dc_status:%d\n", __func__, res);
-               goto fail;
-       }
-
        res = dc_commit_state(dc, context);
 
 fail:
                                        = 0xffffffff;
                        }
                }
-#if defined(CONFIG_DRM_AMD_DC_DCN)
-               /*
-                * Resource allocation happens for link encoders for newer ASIC in
-                * dc_validate_global_state, so we need to revalidate it.
-                *
-                * This shouldn't fail (it passed once before), so warn if it does.
-                */
-               WARN_ON(dc_validate_global_state(dm->dc, dc_state, false) != DC_OK);
-#endif
 
                WARN_ON(!dc_commit_state(dm->dc, dc_state));
 
                        DRM_DEBUG_DRIVER("drm_dp_mst_atomic_check() failed\n");
                        goto fail;
                }
-               status = dc_validate_global_state(dc, dm_state->context, false);
+               status = dc_validate_global_state(dc, dm_state->context, true);
                if (status != DC_OK) {
                        DRM_DEBUG_DRIVER("DC global validation failure: %s (%d)",
                                       dc_status_to_str(status), status);
 
                dc_stream_log(dc, stream);
        }
 
+       /*
+        * Previous validation was perfomred with fast_validation = true and
+        * the full DML state required for hardware programming was skipped.
+        *
+        * Re-validate here to calculate these parameters / watermarks.
+        */
+       result = dc_validate_global_state(dc, context, false);
+       if (result != DC_OK) {
+               DC_LOG_ERROR("DC commit global validation failure: %s (%d)",
+                            dc_status_to_str(result), result);
+               return result;
+       }
+
        result = dc_commit_state_no_check(dc, context);
 
        return (result == DC_OK);