Re: [Freedreno] [v1] drm/msm/dpu: Fix reservation failures in modeset

2020-08-10 Thread kalyan_t
On 2020-08-06 22:15, Rob Clark wrote: On Thu, Aug 6, 2020 at 7:46 AM wrote: On 2020-08-05 21:18, Rob Clark wrote: > On Wed, Aug 5, 2020 at 6:34 AM Kalyan Thota > wrote: >> >> In TEST_ONLY commit, rm global_state will duplicate the >> object and request for new reservations, once they pass >>

Re: [v1] drm/msm/dpu: Fix reservation failures in modeset

2020-08-07 Thread daniel
On Wed, Aug 05, 2020 at 08:48:34AM -0700, Rob Clark wrote: > On Wed, Aug 5, 2020 at 6:34 AM Kalyan Thota wrote: > > > > In TEST_ONLY commit, rm global_state will duplicate the > > object and request for new reservations, once they pass > > then the new state will be swapped with the old and will >

Re: [Freedreno] [v1] drm/msm/dpu: Fix reservation failures in modeset

2020-08-07 Thread kalyan_t
On 2020-08-05 21:18, Rob Clark wrote: On Wed, Aug 5, 2020 at 6:34 AM Kalyan Thota wrote: In TEST_ONLY commit, rm global_state will duplicate the object and request for new reservations, once they pass then the new state will be swapped with the old and will be available for the Atomic Commit.

Re: [Freedreno] [v1] drm/msm/dpu: Fix reservation failures in modeset

2020-08-06 Thread Rob Clark
On Thu, Aug 6, 2020 at 7:46 AM wrote: > > On 2020-08-05 21:18, Rob Clark wrote: > > On Wed, Aug 5, 2020 at 6:34 AM Kalyan Thota > > wrote: > >> > >> In TEST_ONLY commit, rm global_state will duplicate the > >> object and request for new reservations, once they pass > >> then the new state will be

[v1] drm/msm/dpu: Fix reservation failures in modeset

2020-08-06 Thread Kalyan Thota
In TEST_ONLY commit, rm global_state will duplicate the object and request for new reservations, once they pass then the new state will be swapped with the old and will be available for the Atomic Commit. This patch fixes some of missing links in the resource reservation sequence mentioned above.

Re: [v1] drm/msm/dpu: Fix reservation failures in modeset

2020-08-05 Thread Rob Clark
On Wed, Aug 5, 2020 at 6:34 AM Kalyan Thota wrote: > > In TEST_ONLY commit, rm global_state will duplicate the > object and request for new reservations, once they pass > then the new state will be swapped with the old and will > be available for the Atomic Commit. > > This patch fixes some of mis