Re: [PATCH 1/4] drm: Add helpers for locking an array of BO reservations.

2019-03-14 Thread Eric Anholt
Rob Herring writes: > On Tue, Mar 12, 2019 at 12:37 PM Eric Anholt wrote: >> >> Rob Herring writes: >> >> > On Fri, Mar 8, 2019 at 10:17 AM Eric Anholt wrote: >> >> >> >> Now that we have the reservation object in the GEM object, it's easy >> >> to provide a helper for this common case.

Re: [PATCH 1/4] drm: Add helpers for locking an array of BO reservations.

2019-03-12 Thread Rob Herring
On Tue, Mar 12, 2019 at 12:37 PM Eric Anholt wrote: > > Rob Herring writes: > > > On Fri, Mar 8, 2019 at 10:17 AM Eric Anholt wrote: > >> > >> Now that we have the reservation object in the GEM object, it's easy > >> to provide a helper for this common case. Noticed while reviewing > >>

Re: [PATCH 1/4] drm: Add helpers for locking an array of BO reservations.

2019-03-12 Thread Eric Anholt
Rob Herring writes: > On Fri, Mar 8, 2019 at 10:17 AM Eric Anholt wrote: >> >> Now that we have the reservation object in the GEM object, it's easy >> to provide a helper for this common case. Noticed while reviewing >> panfrost and lima drivers. This particular version came out of v3d, >>

Re: [PATCH 1/4] drm: Add helpers for locking an array of BO reservations.

2019-03-08 Thread Eric Anholt
Rob Herring writes: > On Fri, Mar 8, 2019 at 10:17 AM Eric Anholt wrote: >> >> Now that we have the reservation object in the GEM object, it's easy >> to provide a helper for this common case. Noticed while reviewing >> panfrost and lima drivers. This particular version came out of v3d, >>

Re: [PATCH 1/4] drm: Add helpers for locking an array of BO reservations.

2019-03-08 Thread Rob Herring
On Fri, Mar 8, 2019 at 10:17 AM Eric Anholt wrote: > > Now that we have the reservation object in the GEM object, it's easy > to provide a helper for this common case. Noticed while reviewing > panfrost and lima drivers. This particular version came out of v3d, > which in turn was a copy from

[PATCH 1/4] drm: Add helpers for locking an array of BO reservations.

2019-03-08 Thread Eric Anholt
Now that we have the reservation object in the GEM object, it's easy to provide a helper for this common case. Noticed while reviewing panfrost and lima drivers. This particular version came out of v3d, which in turn was a copy from vc4. Signed-off-by: Eric Anholt ---