[Intel-gfx] [PATCH 2/3] drm/i915: add syncobj timeline support

2020-08-03 Thread Lionel Landwerlin
Introduces a new parameters to execbuf so that we can specify syncobj handles as well as timeline points. v2: Reuse i915_user_extension_fn v3: Check that the chained extension is only present once (Chris) v4: Check that dma_fence_chain_find_seqno returns a non NULL fence (Lionel) v5: Use

[Intel-gfx] [PATCH 2/3] drm/i915: add syncobj timeline support

2020-08-03 Thread Lionel Landwerlin
Introduces a new parameters to execbuf so that we can specify syncobj handles as well as timeline points. v2: Reuse i915_user_extension_fn v3: Check that the chained extension is only present once (Chris) v4: Check that dma_fence_chain_find_seqno returns a non NULL fence (Lionel) v5: Use

Re: [Intel-gfx] [PATCH 2/3] drm/i915: add syncobj timeline support

2020-08-01 Thread Daniel Vetter
On Fri, Jul 31, 2020 at 9:07 PM Lionel Landwerlin wrote: > > On 31/07/2020 17:30, Chris Wilson wrote: > > Quoting Lionel Landwerlin (2020-07-31 14:45:52) > >> - drm_syncobj_replace_fence(syncobj, fence); > >> + if (eb->fences[n].chain_fence) { > >> +

Re: [Intel-gfx] [PATCH 2/3] drm/i915: add syncobj timeline support

2020-07-31 Thread Lionel Landwerlin
On 31/07/2020 17:32, Chris Wilson wrote: Quoting Lionel Landwerlin (2020-07-31 14:45:52) Introduces a new parameters to execbuf so that we can specify syncobj handles as well as timeline points. v2: Reuse i915_user_extension_fn v3: Check that the chained extension is only present once (Chris)

Re: [Intel-gfx] [PATCH 2/3] drm/i915: add syncobj timeline support

2020-07-31 Thread Lionel Landwerlin
On 31/07/2020 17:30, Chris Wilson wrote: Quoting Lionel Landwerlin (2020-07-31 14:45:52) - drm_syncobj_replace_fence(syncobj, fence); + if (eb->fences[n].chain_fence) { + drm_syncobj_add_point(syncobj, eb->fences[n].chain_fence, +

Re: [Intel-gfx] [PATCH 2/3] drm/i915: add syncobj timeline support

2020-07-31 Thread Chris Wilson
Quoting Lionel Landwerlin (2020-07-31 14:45:52) > Introduces a new parameters to execbuf so that we can specify syncobj > handles as well as timeline points. > > v2: Reuse i915_user_extension_fn > > v3: Check that the chained extension is only present once (Chris) > > v4: Check that

Re: [Intel-gfx] [PATCH 2/3] drm/i915: add syncobj timeline support

2020-07-31 Thread Chris Wilson
Quoting Lionel Landwerlin (2020-07-31 14:45:52) > - drm_syncobj_replace_fence(syncobj, fence); > + if (eb->fences[n].chain_fence) { > + drm_syncobj_add_point(syncobj, > eb->fences[n].chain_fence, > +

[Intel-gfx] [PATCH 2/3] drm/i915: add syncobj timeline support

2020-07-31 Thread Lionel Landwerlin
Introduces a new parameters to execbuf so that we can specify syncobj handles as well as timeline points. v2: Reuse i915_user_extension_fn v3: Check that the chained extension is only present once (Chris) v4: Check that dma_fence_chain_find_seqno returns a non NULL fence (Lionel) v5: Use

Re: [Intel-gfx] [PATCH 2/3] drm/i915: add syncobj timeline support

2020-04-08 Thread Lionel Landwerlin
On 06/04/2020 23:07, Venkata Sandeep Dhanalakota wrote: Introduces a new parameters to execbuf so that we can specify syncobj handles as well as timeline points. v2: Reuse i915_user_extension_fn v3: Check that the chained extension is only present once (Chris) v4: Check that

Re: [Intel-gfx] [PATCH 2/3] drm/i915: add syncobj timeline support

2020-04-08 Thread Venkata Sandeep Dhanalakota
On 20/04/08 07:29, Lionel Landwerlin wrote: > On 06/04/2020 23:07, Venkata Sandeep Dhanalakota wrote: > > Introduces a new parameters to execbuf so that we can specify syncobj > > handles as well as timeline points. > > > > v2: Reuse i915_user_extension_fn > > > > v3: Check that the chained

Re: [Intel-gfx] [PATCH 2/3] drm/i915: add syncobj timeline support

2020-04-08 Thread Lionel Landwerlin
On 06/04/2020 23:07, Venkata Sandeep Dhanalakota wrote: Introduces a new parameters to execbuf so that we can specify syncobj handles as well as timeline points. v2: Reuse i915_user_extension_fn v3: Check that the chained extension is only present once (Chris) v4: Check that

[Intel-gfx] [PATCH 2/3] drm/i915: add syncobj timeline support

2020-04-06 Thread Venkata Sandeep Dhanalakota
Introduces a new parameters to execbuf so that we can specify syncobj handles as well as timeline points. v2: Reuse i915_user_extension_fn v3: Check that the chained extension is only present once (Chris) v4: Check that dma_fence_chain_find_seqno returns a non NULL fence (Lionel) v5: Use