struct dc_context *dc_ctx = dc->ctx;
        int i, j;
 
+       stream_status = dc_stream_get_status(stream);
+       context = dc->current_state;
+
+       update_type = dc_check_update_surfaces_for_stream(
+                               dc, srf_updates, surface_count, stream_update, stream_status);
+
        /* TODO: Since change commit sequence can have a huge impact,
         * we decided to only enable it for DCN3x. However, as soon as
         * we get more confident about this change we'll need to enable
         * the new sequence for all ASICs.
         */
        if (dc->ctx->dce_version >= DCN_VERSION_3_2) {
+               /*
+                * Previous frame finished and HW is ready for optimization.
+                */
+               if (update_type == UPDATE_TYPE_FAST)
+                       dc_post_update_surfaces_to_stream(dc);
+
                dc_update_planes_and_stream(dc, srf_updates,
                                            surface_count, stream,
                                            stream_update);
                return;
        }
 
-       stream_status = dc_stream_get_status(stream);
-       context = dc->current_state;
-
-       update_type = dc_check_update_surfaces_for_stream(
-                               dc, srf_updates, surface_count, stream_update, stream_status);
-
        if (update_type >= update_surface_trace_level)
                update_surface_trace(dc, srf_updates, surface_count);