* [PATCH v2 0/2] Split out dma fence array and invalidate media_gt TLBs in PT code @ 2024-08-26 17:01 Matthew Brost 2024-08-26 17:01 ` [PATCH v2 1/2] dma-buf: Split out dma fence array create into alloc and arm functions Matthew Brost 2024-08-26 17:01 ` [PATCH v2 2/2] drm/xe: Invalidate media_gt TLBs in PT code Matthew Brost 0 siblings, 2 replies; 10+ messages in thread From: Matthew Brost @ 2024-08-26 17:01 UTC (permalink / raw) To: intel-xe, linux-media, dri-devel Cc: thomas.hellstrom, sumit.semwal, christian.koenig Respin of [1] [2] based on CI and review feedback. v2: - Send correct code Matt Matthew Brost (2): dma-buf: Split out dma fence array create into alloc and arm functions drm/xe: Invalidate media_gt TLBs in PT code drivers/dma-buf/dma-fence-array.c | 78 ++++++++++++++------ drivers/gpu/drm/xe/xe_pt.c | 117 ++++++++++++++++++++++++------ include/linux/dma-fence-array.h | 6 ++ 3 files changed, 159 insertions(+), 42 deletions(-) -- 2.34.1 ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v2 1/2] dma-buf: Split out dma fence array create into alloc and arm functions 2024-08-26 17:01 [PATCH v2 0/2] Split out dma fence array and invalidate media_gt TLBs in PT code Matthew Brost @ 2024-08-26 17:01 ` Matthew Brost 2024-08-26 17:57 ` Christian König 2024-08-26 17:01 ` [PATCH v2 2/2] drm/xe: Invalidate media_gt TLBs in PT code Matthew Brost 1 sibling, 1 reply; 10+ messages in thread From: Matthew Brost @ 2024-08-26 17:01 UTC (permalink / raw) To: intel-xe, linux-media, dri-devel Cc: thomas.hellstrom, sumit.semwal, christian.koenig Useful to preallocate dma fence array and then arm in path of reclaim or a dma fence. v2: - s/arm/init (Christian) - Drop !array warn (Christian) Cc: Sumit Semwal <sumit.semwal@linaro.org> Cc: Christian König <christian.koenig@amd.com> Signed-off-by: Matthew Brost <matthew.brost@intel.com> --- drivers/dma-buf/dma-fence-array.c | 78 ++++++++++++++++++++++--------- include/linux/dma-fence-array.h | 6 +++ 2 files changed, 63 insertions(+), 21 deletions(-) diff --git a/drivers/dma-buf/dma-fence-array.c b/drivers/dma-buf/dma-fence-array.c index c74ac197d5fe..0659e6b29b3c 100644 --- a/drivers/dma-buf/dma-fence-array.c +++ b/drivers/dma-buf/dma-fence-array.c @@ -144,37 +144,38 @@ const struct dma_fence_ops dma_fence_array_ops = { EXPORT_SYMBOL(dma_fence_array_ops); /** - * dma_fence_array_create - Create a custom fence array + * dma_fence_array_alloc - Allocate a custom fence array + * @num_fences: [in] number of fences to add in the array + * + * Return dma fence array on success, NULL on failure + */ +struct dma_fence_array *dma_fence_array_alloc(int num_fences) +{ + struct dma_fence_array *array; + + return kzalloc(struct_size(array, callbacks, num_fences), GFP_KERNEL); +} +EXPORT_SYMBOL(dma_fence_array_alloc); + +/** + * dma_fence_array_init - Arm a custom fence array + * @array: [in] dma fence array to arm * @num_fences: [in] number of fences to add in the array * @fences: [in] array containing the fences * @context: [in] fence context to use * @seqno: [in] sequence number to use * @signal_on_any: [in] signal on any fence in the array * - * Allocate a dma_fence_array object and initialize the base fence with - * dma_fence_init(). - * In case of error it returns NULL. - * - * The caller should allocate the fences array with num_fences size - * and fill it with the fences it wants to add to the object. Ownership of this - * array is taken and dma_fence_put() is used on each fence on release. - * - * If @signal_on_any is true the fence array signals if any fence in the array - * signals, otherwise it signals when all fences in the array signal. + * Implementation of @dma_fence_array_create without allocation. Useful to arm a + * preallocated dma fence fence in the path of reclaim or dma fence signaling. */ -struct dma_fence_array *dma_fence_array_create(int num_fences, - struct dma_fence **fences, - u64 context, unsigned seqno, - bool signal_on_any) +void dma_fence_array_init(struct dma_fence_array *array, + int num_fences, struct dma_fence **fences, + u64 context, unsigned seqno, + bool signal_on_any) { - struct dma_fence_array *array; - WARN_ON(!num_fences || !fences); - array = kzalloc(struct_size(array, callbacks, num_fences), GFP_KERNEL); - if (!array) - return NULL; - array->num_fences = num_fences; spin_lock_init(&array->lock); @@ -200,6 +201,41 @@ struct dma_fence_array *dma_fence_array_create(int num_fences, */ while (num_fences--) WARN_ON(dma_fence_is_container(fences[num_fences])); +} +EXPORT_SYMBOL(dma_fence_array_init); + +/** + * dma_fence_array_create - Create a custom fence array + * @num_fences: [in] number of fences to add in the array + * @fences: [in] array containing the fences + * @context: [in] fence context to use + * @seqno: [in] sequence number to use + * @signal_on_any: [in] signal on any fence in the array + * + * Allocate a dma_fence_array object and initialize the base fence with + * dma_fence_init(). + * In case of error it returns NULL. + * + * The caller should allocate the fences array with num_fences size + * and fill it with the fences it wants to add to the object. Ownership of this + * array is taken and dma_fence_put() is used on each fence on release. + * + * If @signal_on_any is true the fence array signals if any fence in the array + * signals, otherwise it signals when all fences in the array signal. + */ +struct dma_fence_array *dma_fence_array_create(int num_fences, + struct dma_fence **fences, + u64 context, unsigned seqno, + bool signal_on_any) +{ + struct dma_fence_array *array; + + array = dma_fence_array_alloc(num_fences); + if (!array) + return NULL; + + dma_fence_array_init(array, num_fences, fences, + context, seqno, signal_on_any); return array; } diff --git a/include/linux/dma-fence-array.h b/include/linux/dma-fence-array.h index 29c5650c1038..079b3dec0a16 100644 --- a/include/linux/dma-fence-array.h +++ b/include/linux/dma-fence-array.h @@ -79,6 +79,12 @@ to_dma_fence_array(struct dma_fence *fence) for (index = 0, fence = dma_fence_array_first(head); fence; \ ++(index), fence = dma_fence_array_next(head, index)) +struct dma_fence_array *dma_fence_array_alloc(int num_fences); +void dma_fence_array_init(struct dma_fence_array *array, + int num_fences, struct dma_fence **fences, + u64 context, unsigned seqno, + bool signal_on_any); + struct dma_fence_array *dma_fence_array_create(int num_fences, struct dma_fence **fences, u64 context, unsigned seqno, -- 2.34.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH v2 1/2] dma-buf: Split out dma fence array create into alloc and arm functions 2024-08-26 17:01 ` [PATCH v2 1/2] dma-buf: Split out dma fence array create into alloc and arm functions Matthew Brost @ 2024-08-26 17:57 ` Christian König 2024-08-26 19:23 ` Matthew Brost 0 siblings, 1 reply; 10+ messages in thread From: Christian König @ 2024-08-26 17:57 UTC (permalink / raw) To: Matthew Brost, intel-xe, linux-media, dri-devel Cc: thomas.hellstrom, sumit.semwal Am 26.08.24 um 19:01 schrieb Matthew Brost: > Useful to preallocate dma fence array and then arm in path of reclaim or > a dma fence. > > v2: > - s/arm/init (Christian) > - Drop !array warn (Christian) > > Cc: Sumit Semwal <sumit.semwal@linaro.org> > Cc: Christian König <christian.koenig@amd.com> > Signed-off-by: Matthew Brost <matthew.brost@intel.com> Reviewed-by: Christian König <christian.koenig@amd.com> > --- > drivers/dma-buf/dma-fence-array.c | 78 ++++++++++++++++++++++--------- > include/linux/dma-fence-array.h | 6 +++ > 2 files changed, 63 insertions(+), 21 deletions(-) > > diff --git a/drivers/dma-buf/dma-fence-array.c b/drivers/dma-buf/dma-fence-array.c > index c74ac197d5fe..0659e6b29b3c 100644 > --- a/drivers/dma-buf/dma-fence-array.c > +++ b/drivers/dma-buf/dma-fence-array.c > @@ -144,37 +144,38 @@ const struct dma_fence_ops dma_fence_array_ops = { > EXPORT_SYMBOL(dma_fence_array_ops); > > /** > - * dma_fence_array_create - Create a custom fence array > + * dma_fence_array_alloc - Allocate a custom fence array > + * @num_fences: [in] number of fences to add in the array > + * > + * Return dma fence array on success, NULL on failure > + */ > +struct dma_fence_array *dma_fence_array_alloc(int num_fences) > +{ > + struct dma_fence_array *array; > + > + return kzalloc(struct_size(array, callbacks, num_fences), GFP_KERNEL); > +} > +EXPORT_SYMBOL(dma_fence_array_alloc); > + > +/** > + * dma_fence_array_init - Arm a custom fence array > + * @array: [in] dma fence array to arm > * @num_fences: [in] number of fences to add in the array > * @fences: [in] array containing the fences > * @context: [in] fence context to use > * @seqno: [in] sequence number to use > * @signal_on_any: [in] signal on any fence in the array > * > - * Allocate a dma_fence_array object and initialize the base fence with > - * dma_fence_init(). > - * In case of error it returns NULL. > - * > - * The caller should allocate the fences array with num_fences size > - * and fill it with the fences it wants to add to the object. Ownership of this > - * array is taken and dma_fence_put() is used on each fence on release. > - * > - * If @signal_on_any is true the fence array signals if any fence in the array > - * signals, otherwise it signals when all fences in the array signal. > + * Implementation of @dma_fence_array_create without allocation. Useful to arm a > + * preallocated dma fence fence in the path of reclaim or dma fence signaling. > */ > -struct dma_fence_array *dma_fence_array_create(int num_fences, > - struct dma_fence **fences, > - u64 context, unsigned seqno, > - bool signal_on_any) > +void dma_fence_array_init(struct dma_fence_array *array, > + int num_fences, struct dma_fence **fences, > + u64 context, unsigned seqno, > + bool signal_on_any) > { > - struct dma_fence_array *array; > - > WARN_ON(!num_fences || !fences); > > - array = kzalloc(struct_size(array, callbacks, num_fences), GFP_KERNEL); > - if (!array) > - return NULL; > - > array->num_fences = num_fences; > > spin_lock_init(&array->lock); > @@ -200,6 +201,41 @@ struct dma_fence_array *dma_fence_array_create(int num_fences, > */ > while (num_fences--) > WARN_ON(dma_fence_is_container(fences[num_fences])); > +} > +EXPORT_SYMBOL(dma_fence_array_init); > + > +/** > + * dma_fence_array_create - Create a custom fence array > + * @num_fences: [in] number of fences to add in the array > + * @fences: [in] array containing the fences > + * @context: [in] fence context to use > + * @seqno: [in] sequence number to use > + * @signal_on_any: [in] signal on any fence in the array > + * > + * Allocate a dma_fence_array object and initialize the base fence with > + * dma_fence_init(). > + * In case of error it returns NULL. > + * > + * The caller should allocate the fences array with num_fences size > + * and fill it with the fences it wants to add to the object. Ownership of this > + * array is taken and dma_fence_put() is used on each fence on release. > + * > + * If @signal_on_any is true the fence array signals if any fence in the array > + * signals, otherwise it signals when all fences in the array signal. > + */ > +struct dma_fence_array *dma_fence_array_create(int num_fences, > + struct dma_fence **fences, > + u64 context, unsigned seqno, > + bool signal_on_any) > +{ > + struct dma_fence_array *array; > + > + array = dma_fence_array_alloc(num_fences); > + if (!array) > + return NULL; > + > + dma_fence_array_init(array, num_fences, fences, > + context, seqno, signal_on_any); > > return array; > } > diff --git a/include/linux/dma-fence-array.h b/include/linux/dma-fence-array.h > index 29c5650c1038..079b3dec0a16 100644 > --- a/include/linux/dma-fence-array.h > +++ b/include/linux/dma-fence-array.h > @@ -79,6 +79,12 @@ to_dma_fence_array(struct dma_fence *fence) > for (index = 0, fence = dma_fence_array_first(head); fence; \ > ++(index), fence = dma_fence_array_next(head, index)) > > +struct dma_fence_array *dma_fence_array_alloc(int num_fences); > +void dma_fence_array_init(struct dma_fence_array *array, > + int num_fences, struct dma_fence **fences, > + u64 context, unsigned seqno, > + bool signal_on_any); > + > struct dma_fence_array *dma_fence_array_create(int num_fences, > struct dma_fence **fences, > u64 context, unsigned seqno, ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 1/2] dma-buf: Split out dma fence array create into alloc and arm functions 2024-08-26 17:57 ` Christian König @ 2024-08-26 19:23 ` Matthew Brost 2024-08-27 6:37 ` Christian König 0 siblings, 1 reply; 10+ messages in thread From: Matthew Brost @ 2024-08-26 19:23 UTC (permalink / raw) To: Christian König Cc: intel-xe, linux-media, dri-devel, thomas.hellstrom, sumit.semwal On Mon, Aug 26, 2024 at 07:57:07PM +0200, Christian König wrote: > Am 26.08.24 um 19:01 schrieb Matthew Brost: > > Useful to preallocate dma fence array and then arm in path of reclaim or > > a dma fence. > > > > v2: > > - s/arm/init (Christian) > > - Drop !array warn (Christian) > > > > Cc: Sumit Semwal <sumit.semwal@linaro.org> > > Cc: Christian König <christian.koenig@amd.com> > > Signed-off-by: Matthew Brost <matthew.brost@intel.com> > > Reviewed-by: Christian König <christian.koenig@amd.com> Thanks for the review. Unfamilar with the merge flows to dma-buf subsystem. Do you merge this into a dma-buf branch that we can then pick up in 6.12? Matt > > > --- > > drivers/dma-buf/dma-fence-array.c | 78 ++++++++++++++++++++++--------- > > include/linux/dma-fence-array.h | 6 +++ > > 2 files changed, 63 insertions(+), 21 deletions(-) > > > > diff --git a/drivers/dma-buf/dma-fence-array.c b/drivers/dma-buf/dma-fence-array.c > > index c74ac197d5fe..0659e6b29b3c 100644 > > --- a/drivers/dma-buf/dma-fence-array.c > > +++ b/drivers/dma-buf/dma-fence-array.c > > @@ -144,37 +144,38 @@ const struct dma_fence_ops dma_fence_array_ops = { > > EXPORT_SYMBOL(dma_fence_array_ops); > > /** > > - * dma_fence_array_create - Create a custom fence array > > + * dma_fence_array_alloc - Allocate a custom fence array > > + * @num_fences: [in] number of fences to add in the array > > + * > > + * Return dma fence array on success, NULL on failure > > + */ > > +struct dma_fence_array *dma_fence_array_alloc(int num_fences) > > +{ > > + struct dma_fence_array *array; > > + > > + return kzalloc(struct_size(array, callbacks, num_fences), GFP_KERNEL); > > +} > > +EXPORT_SYMBOL(dma_fence_array_alloc); > > + > > +/** > > + * dma_fence_array_init - Arm a custom fence array > > + * @array: [in] dma fence array to arm > > * @num_fences: [in] number of fences to add in the array > > * @fences: [in] array containing the fences > > * @context: [in] fence context to use > > * @seqno: [in] sequence number to use > > * @signal_on_any: [in] signal on any fence in the array > > * > > - * Allocate a dma_fence_array object and initialize the base fence with > > - * dma_fence_init(). > > - * In case of error it returns NULL. > > - * > > - * The caller should allocate the fences array with num_fences size > > - * and fill it with the fences it wants to add to the object. Ownership of this > > - * array is taken and dma_fence_put() is used on each fence on release. > > - * > > - * If @signal_on_any is true the fence array signals if any fence in the array > > - * signals, otherwise it signals when all fences in the array signal. > > + * Implementation of @dma_fence_array_create without allocation. Useful to arm a > > + * preallocated dma fence fence in the path of reclaim or dma fence signaling. > > */ > > -struct dma_fence_array *dma_fence_array_create(int num_fences, > > - struct dma_fence **fences, > > - u64 context, unsigned seqno, > > - bool signal_on_any) > > +void dma_fence_array_init(struct dma_fence_array *array, > > + int num_fences, struct dma_fence **fences, > > + u64 context, unsigned seqno, > > + bool signal_on_any) > > { > > - struct dma_fence_array *array; > > - > > WARN_ON(!num_fences || !fences); > > - array = kzalloc(struct_size(array, callbacks, num_fences), GFP_KERNEL); > > - if (!array) > > - return NULL; > > - > > array->num_fences = num_fences; > > spin_lock_init(&array->lock); > > @@ -200,6 +201,41 @@ struct dma_fence_array *dma_fence_array_create(int num_fences, > > */ > > while (num_fences--) > > WARN_ON(dma_fence_is_container(fences[num_fences])); > > +} > > +EXPORT_SYMBOL(dma_fence_array_init); > > + > > +/** > > + * dma_fence_array_create - Create a custom fence array > > + * @num_fences: [in] number of fences to add in the array > > + * @fences: [in] array containing the fences > > + * @context: [in] fence context to use > > + * @seqno: [in] sequence number to use > > + * @signal_on_any: [in] signal on any fence in the array > > + * > > + * Allocate a dma_fence_array object and initialize the base fence with > > + * dma_fence_init(). > > + * In case of error it returns NULL. > > + * > > + * The caller should allocate the fences array with num_fences size > > + * and fill it with the fences it wants to add to the object. Ownership of this > > + * array is taken and dma_fence_put() is used on each fence on release. > > + * > > + * If @signal_on_any is true the fence array signals if any fence in the array > > + * signals, otherwise it signals when all fences in the array signal. > > + */ > > +struct dma_fence_array *dma_fence_array_create(int num_fences, > > + struct dma_fence **fences, > > + u64 context, unsigned seqno, > > + bool signal_on_any) > > +{ > > + struct dma_fence_array *array; > > + > > + array = dma_fence_array_alloc(num_fences); > > + if (!array) > > + return NULL; > > + > > + dma_fence_array_init(array, num_fences, fences, > > + context, seqno, signal_on_any); > > return array; > > } > > diff --git a/include/linux/dma-fence-array.h b/include/linux/dma-fence-array.h > > index 29c5650c1038..079b3dec0a16 100644 > > --- a/include/linux/dma-fence-array.h > > +++ b/include/linux/dma-fence-array.h > > @@ -79,6 +79,12 @@ to_dma_fence_array(struct dma_fence *fence) > > for (index = 0, fence = dma_fence_array_first(head); fence; \ > > ++(index), fence = dma_fence_array_next(head, index)) > > +struct dma_fence_array *dma_fence_array_alloc(int num_fences); > > +void dma_fence_array_init(struct dma_fence_array *array, > > + int num_fences, struct dma_fence **fences, > > + u64 context, unsigned seqno, > > + bool signal_on_any); > > + > > struct dma_fence_array *dma_fence_array_create(int num_fences, > > struct dma_fence **fences, > > u64 context, unsigned seqno, > ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 1/2] dma-buf: Split out dma fence array create into alloc and arm functions 2024-08-26 19:23 ` Matthew Brost @ 2024-08-27 6:37 ` Christian König 2024-08-27 16:10 ` Matthew Brost 0 siblings, 1 reply; 10+ messages in thread From: Christian König @ 2024-08-27 6:37 UTC (permalink / raw) To: Matthew Brost Cc: intel-xe, linux-media, dri-devel, thomas.hellstrom, sumit.semwal Am 26.08.24 um 21:23 schrieb Matthew Brost: > On Mon, Aug 26, 2024 at 07:57:07PM +0200, Christian König wrote: >> Am 26.08.24 um 19:01 schrieb Matthew Brost: >>> Useful to preallocate dma fence array and then arm in path of reclaim or >>> a dma fence. >>> >>> v2: >>> - s/arm/init (Christian) >>> - Drop !array warn (Christian) >>> >>> Cc: Sumit Semwal <sumit.semwal@linaro.org> >>> Cc: Christian König <christian.koenig@amd.com> >>> Signed-off-by: Matthew Brost <matthew.brost@intel.com> >> Reviewed-by: Christian König <christian.koenig@amd.com> > Thanks for the review. > > Unfamilar with the merge flows to dma-buf subsystem. Do you merge this > into a dma-buf branch that we can then pick up in 6.12? I can push the patches into drm-misc-next or alternatively you pick them up through an XE branch. The change to the dma_fence_array is small enough that it probably won't cause any conflict, so both approaches works for me. Christian. > > Matt > >>> --- >>> drivers/dma-buf/dma-fence-array.c | 78 ++++++++++++++++++++++--------- >>> include/linux/dma-fence-array.h | 6 +++ >>> 2 files changed, 63 insertions(+), 21 deletions(-) >>> >>> diff --git a/drivers/dma-buf/dma-fence-array.c b/drivers/dma-buf/dma-fence-array.c >>> index c74ac197d5fe..0659e6b29b3c 100644 >>> --- a/drivers/dma-buf/dma-fence-array.c >>> +++ b/drivers/dma-buf/dma-fence-array.c >>> @@ -144,37 +144,38 @@ const struct dma_fence_ops dma_fence_array_ops = { >>> EXPORT_SYMBOL(dma_fence_array_ops); >>> /** >>> - * dma_fence_array_create - Create a custom fence array >>> + * dma_fence_array_alloc - Allocate a custom fence array >>> + * @num_fences: [in] number of fences to add in the array >>> + * >>> + * Return dma fence array on success, NULL on failure >>> + */ >>> +struct dma_fence_array *dma_fence_array_alloc(int num_fences) >>> +{ >>> + struct dma_fence_array *array; >>> + >>> + return kzalloc(struct_size(array, callbacks, num_fences), GFP_KERNEL); >>> +} >>> +EXPORT_SYMBOL(dma_fence_array_alloc); >>> + >>> +/** >>> + * dma_fence_array_init - Arm a custom fence array >>> + * @array: [in] dma fence array to arm >>> * @num_fences: [in] number of fences to add in the array >>> * @fences: [in] array containing the fences >>> * @context: [in] fence context to use >>> * @seqno: [in] sequence number to use >>> * @signal_on_any: [in] signal on any fence in the array >>> * >>> - * Allocate a dma_fence_array object and initialize the base fence with >>> - * dma_fence_init(). >>> - * In case of error it returns NULL. >>> - * >>> - * The caller should allocate the fences array with num_fences size >>> - * and fill it with the fences it wants to add to the object. Ownership of this >>> - * array is taken and dma_fence_put() is used on each fence on release. >>> - * >>> - * If @signal_on_any is true the fence array signals if any fence in the array >>> - * signals, otherwise it signals when all fences in the array signal. >>> + * Implementation of @dma_fence_array_create without allocation. Useful to arm a >>> + * preallocated dma fence fence in the path of reclaim or dma fence signaling. >>> */ >>> -struct dma_fence_array *dma_fence_array_create(int num_fences, >>> - struct dma_fence **fences, >>> - u64 context, unsigned seqno, >>> - bool signal_on_any) >>> +void dma_fence_array_init(struct dma_fence_array *array, >>> + int num_fences, struct dma_fence **fences, >>> + u64 context, unsigned seqno, >>> + bool signal_on_any) >>> { >>> - struct dma_fence_array *array; >>> - >>> WARN_ON(!num_fences || !fences); >>> - array = kzalloc(struct_size(array, callbacks, num_fences), GFP_KERNEL); >>> - if (!array) >>> - return NULL; >>> - >>> array->num_fences = num_fences; >>> spin_lock_init(&array->lock); >>> @@ -200,6 +201,41 @@ struct dma_fence_array *dma_fence_array_create(int num_fences, >>> */ >>> while (num_fences--) >>> WARN_ON(dma_fence_is_container(fences[num_fences])); >>> +} >>> +EXPORT_SYMBOL(dma_fence_array_init); >>> + >>> +/** >>> + * dma_fence_array_create - Create a custom fence array >>> + * @num_fences: [in] number of fences to add in the array >>> + * @fences: [in] array containing the fences >>> + * @context: [in] fence context to use >>> + * @seqno: [in] sequence number to use >>> + * @signal_on_any: [in] signal on any fence in the array >>> + * >>> + * Allocate a dma_fence_array object and initialize the base fence with >>> + * dma_fence_init(). >>> + * In case of error it returns NULL. >>> + * >>> + * The caller should allocate the fences array with num_fences size >>> + * and fill it with the fences it wants to add to the object. Ownership of this >>> + * array is taken and dma_fence_put() is used on each fence on release. >>> + * >>> + * If @signal_on_any is true the fence array signals if any fence in the array >>> + * signals, otherwise it signals when all fences in the array signal. >>> + */ >>> +struct dma_fence_array *dma_fence_array_create(int num_fences, >>> + struct dma_fence **fences, >>> + u64 context, unsigned seqno, >>> + bool signal_on_any) >>> +{ >>> + struct dma_fence_array *array; >>> + >>> + array = dma_fence_array_alloc(num_fences); >>> + if (!array) >>> + return NULL; >>> + >>> + dma_fence_array_init(array, num_fences, fences, >>> + context, seqno, signal_on_any); >>> return array; >>> } >>> diff --git a/include/linux/dma-fence-array.h b/include/linux/dma-fence-array.h >>> index 29c5650c1038..079b3dec0a16 100644 >>> --- a/include/linux/dma-fence-array.h >>> +++ b/include/linux/dma-fence-array.h >>> @@ -79,6 +79,12 @@ to_dma_fence_array(struct dma_fence *fence) >>> for (index = 0, fence = dma_fence_array_first(head); fence; \ >>> ++(index), fence = dma_fence_array_next(head, index)) >>> +struct dma_fence_array *dma_fence_array_alloc(int num_fences); >>> +void dma_fence_array_init(struct dma_fence_array *array, >>> + int num_fences, struct dma_fence **fences, >>> + u64 context, unsigned seqno, >>> + bool signal_on_any); >>> + >>> struct dma_fence_array *dma_fence_array_create(int num_fences, >>> struct dma_fence **fences, >>> u64 context, unsigned seqno, ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 1/2] dma-buf: Split out dma fence array create into alloc and arm functions 2024-08-27 6:37 ` Christian König @ 2024-08-27 16:10 ` Matthew Brost 2024-08-30 18:42 ` Matthew Brost 0 siblings, 1 reply; 10+ messages in thread From: Matthew Brost @ 2024-08-27 16:10 UTC (permalink / raw) To: Christian König Cc: intel-xe, linux-media, dri-devel, thomas.hellstrom, sumit.semwal On Tue, Aug 27, 2024 at 08:37:56AM +0200, Christian König wrote: > Am 26.08.24 um 21:23 schrieb Matthew Brost: > > On Mon, Aug 26, 2024 at 07:57:07PM +0200, Christian König wrote: > > > Am 26.08.24 um 19:01 schrieb Matthew Brost: > > > > Useful to preallocate dma fence array and then arm in path of reclaim or > > > > a dma fence. > > > > > > > > v2: > > > > - s/arm/init (Christian) > > > > - Drop !array warn (Christian) > > > > > > > > Cc: Sumit Semwal <sumit.semwal@linaro.org> > > > > Cc: Christian König <christian.koenig@amd.com> > > > > Signed-off-by: Matthew Brost <matthew.brost@intel.com> > > > Reviewed-by: Christian König <christian.koenig@amd.com> > > Thanks for the review. > > > > Unfamilar with the merge flows to dma-buf subsystem. Do you merge this > > into a dma-buf branch that we can then pick up in 6.12? > > I can push the patches into drm-misc-next or alternatively you pick them up > through an XE branch. > > The change to the dma_fence_array is small enough that it probably won't > cause any conflict, so both approaches works for me. > Once I have a review on patch number 2, I'll go ahead and merge to drm-xe-next. Will also reply here once that has happened. Matt > Christian. > > > > > Matt > > > > > > --- > > > > drivers/dma-buf/dma-fence-array.c | 78 ++++++++++++++++++++++--------- > > > > include/linux/dma-fence-array.h | 6 +++ > > > > 2 files changed, 63 insertions(+), 21 deletions(-) > > > > > > > > diff --git a/drivers/dma-buf/dma-fence-array.c b/drivers/dma-buf/dma-fence-array.c > > > > index c74ac197d5fe..0659e6b29b3c 100644 > > > > --- a/drivers/dma-buf/dma-fence-array.c > > > > +++ b/drivers/dma-buf/dma-fence-array.c > > > > @@ -144,37 +144,38 @@ const struct dma_fence_ops dma_fence_array_ops = { > > > > EXPORT_SYMBOL(dma_fence_array_ops); > > > > /** > > > > - * dma_fence_array_create - Create a custom fence array > > > > + * dma_fence_array_alloc - Allocate a custom fence array > > > > + * @num_fences: [in] number of fences to add in the array > > > > + * > > > > + * Return dma fence array on success, NULL on failure > > > > + */ > > > > +struct dma_fence_array *dma_fence_array_alloc(int num_fences) > > > > +{ > > > > + struct dma_fence_array *array; > > > > + > > > > + return kzalloc(struct_size(array, callbacks, num_fences), GFP_KERNEL); > > > > +} > > > > +EXPORT_SYMBOL(dma_fence_array_alloc); > > > > + > > > > +/** > > > > + * dma_fence_array_init - Arm a custom fence array > > > > + * @array: [in] dma fence array to arm > > > > * @num_fences: [in] number of fences to add in the array > > > > * @fences: [in] array containing the fences > > > > * @context: [in] fence context to use > > > > * @seqno: [in] sequence number to use > > > > * @signal_on_any: [in] signal on any fence in the array > > > > * > > > > - * Allocate a dma_fence_array object and initialize the base fence with > > > > - * dma_fence_init(). > > > > - * In case of error it returns NULL. > > > > - * > > > > - * The caller should allocate the fences array with num_fences size > > > > - * and fill it with the fences it wants to add to the object. Ownership of this > > > > - * array is taken and dma_fence_put() is used on each fence on release. > > > > - * > > > > - * If @signal_on_any is true the fence array signals if any fence in the array > > > > - * signals, otherwise it signals when all fences in the array signal. > > > > + * Implementation of @dma_fence_array_create without allocation. Useful to arm a > > > > + * preallocated dma fence fence in the path of reclaim or dma fence signaling. > > > > */ > > > > -struct dma_fence_array *dma_fence_array_create(int num_fences, > > > > - struct dma_fence **fences, > > > > - u64 context, unsigned seqno, > > > > - bool signal_on_any) > > > > +void dma_fence_array_init(struct dma_fence_array *array, > > > > + int num_fences, struct dma_fence **fences, > > > > + u64 context, unsigned seqno, > > > > + bool signal_on_any) > > > > { > > > > - struct dma_fence_array *array; > > > > - > > > > WARN_ON(!num_fences || !fences); > > > > - array = kzalloc(struct_size(array, callbacks, num_fences), GFP_KERNEL); > > > > - if (!array) > > > > - return NULL; > > > > - > > > > array->num_fences = num_fences; > > > > spin_lock_init(&array->lock); > > > > @@ -200,6 +201,41 @@ struct dma_fence_array *dma_fence_array_create(int num_fences, > > > > */ > > > > while (num_fences--) > > > > WARN_ON(dma_fence_is_container(fences[num_fences])); > > > > +} > > > > +EXPORT_SYMBOL(dma_fence_array_init); > > > > + > > > > +/** > > > > + * dma_fence_array_create - Create a custom fence array > > > > + * @num_fences: [in] number of fences to add in the array > > > > + * @fences: [in] array containing the fences > > > > + * @context: [in] fence context to use > > > > + * @seqno: [in] sequence number to use > > > > + * @signal_on_any: [in] signal on any fence in the array > > > > + * > > > > + * Allocate a dma_fence_array object and initialize the base fence with > > > > + * dma_fence_init(). > > > > + * In case of error it returns NULL. > > > > + * > > > > + * The caller should allocate the fences array with num_fences size > > > > + * and fill it with the fences it wants to add to the object. Ownership of this > > > > + * array is taken and dma_fence_put() is used on each fence on release. > > > > + * > > > > + * If @signal_on_any is true the fence array signals if any fence in the array > > > > + * signals, otherwise it signals when all fences in the array signal. > > > > + */ > > > > +struct dma_fence_array *dma_fence_array_create(int num_fences, > > > > + struct dma_fence **fences, > > > > + u64 context, unsigned seqno, > > > > + bool signal_on_any) > > > > +{ > > > > + struct dma_fence_array *array; > > > > + > > > > + array = dma_fence_array_alloc(num_fences); > > > > + if (!array) > > > > + return NULL; > > > > + > > > > + dma_fence_array_init(array, num_fences, fences, > > > > + context, seqno, signal_on_any); > > > > return array; > > > > } > > > > diff --git a/include/linux/dma-fence-array.h b/include/linux/dma-fence-array.h > > > > index 29c5650c1038..079b3dec0a16 100644 > > > > --- a/include/linux/dma-fence-array.h > > > > +++ b/include/linux/dma-fence-array.h > > > > @@ -79,6 +79,12 @@ to_dma_fence_array(struct dma_fence *fence) > > > > for (index = 0, fence = dma_fence_array_first(head); fence; \ > > > > ++(index), fence = dma_fence_array_next(head, index)) > > > > +struct dma_fence_array *dma_fence_array_alloc(int num_fences); > > > > +void dma_fence_array_init(struct dma_fence_array *array, > > > > + int num_fences, struct dma_fence **fences, > > > > + u64 context, unsigned seqno, > > > > + bool signal_on_any); > > > > + > > > > struct dma_fence_array *dma_fence_array_create(int num_fences, > > > > struct dma_fence **fences, > > > > u64 context, unsigned seqno, > ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 1/2] dma-buf: Split out dma fence array create into alloc and arm functions 2024-08-27 16:10 ` Matthew Brost @ 2024-08-30 18:42 ` Matthew Brost 0 siblings, 0 replies; 10+ messages in thread From: Matthew Brost @ 2024-08-30 18:42 UTC (permalink / raw) To: Christian König Cc: intel-xe, linux-media, dri-devel, thomas.hellstrom, sumit.semwal On Tue, Aug 27, 2024 at 04:10:31PM +0000, Matthew Brost wrote: > On Tue, Aug 27, 2024 at 08:37:56AM +0200, Christian König wrote: > > Am 26.08.24 um 21:23 schrieb Matthew Brost: > > > On Mon, Aug 26, 2024 at 07:57:07PM +0200, Christian König wrote: > > > > Am 26.08.24 um 19:01 schrieb Matthew Brost: > > > > > Useful to preallocate dma fence array and then arm in path of reclaim or > > > > > a dma fence. > > > > > > > > > > v2: > > > > > - s/arm/init (Christian) > > > > > - Drop !array warn (Christian) > > > > > > > > > > Cc: Sumit Semwal <sumit.semwal@linaro.org> > > > > > Cc: Christian König <christian.koenig@amd.com> > > > > > Signed-off-by: Matthew Brost <matthew.brost@intel.com> > > > > Reviewed-by: Christian König <christian.koenig@amd.com> > > > Thanks for the review. > > > > > > Unfamilar with the merge flows to dma-buf subsystem. Do you merge this > > > into a dma-buf branch that we can then pick up in 6.12? > > > > I can push the patches into drm-misc-next or alternatively you pick them up > > through an XE branch. > > > > The change to the dma_fence_array is small enough that it probably won't > > cause any conflict, so both approaches works for me. > > > > Once I have a review on patch number 2, I'll go ahead and merge to > drm-xe-next. Will also reply here once that has happened. > Merged to drm-xe-next. Matt > Matt > > > Christian. > > > > > > > > Matt > > > > > > > > --- > > > > > drivers/dma-buf/dma-fence-array.c | 78 ++++++++++++++++++++++--------- > > > > > include/linux/dma-fence-array.h | 6 +++ > > > > > 2 files changed, 63 insertions(+), 21 deletions(-) > > > > > > > > > > diff --git a/drivers/dma-buf/dma-fence-array.c b/drivers/dma-buf/dma-fence-array.c > > > > > index c74ac197d5fe..0659e6b29b3c 100644 > > > > > --- a/drivers/dma-buf/dma-fence-array.c > > > > > +++ b/drivers/dma-buf/dma-fence-array.c > > > > > @@ -144,37 +144,38 @@ const struct dma_fence_ops dma_fence_array_ops = { > > > > > EXPORT_SYMBOL(dma_fence_array_ops); > > > > > /** > > > > > - * dma_fence_array_create - Create a custom fence array > > > > > + * dma_fence_array_alloc - Allocate a custom fence array > > > > > + * @num_fences: [in] number of fences to add in the array > > > > > + * > > > > > + * Return dma fence array on success, NULL on failure > > > > > + */ > > > > > +struct dma_fence_array *dma_fence_array_alloc(int num_fences) > > > > > +{ > > > > > + struct dma_fence_array *array; > > > > > + > > > > > + return kzalloc(struct_size(array, callbacks, num_fences), GFP_KERNEL); > > > > > +} > > > > > +EXPORT_SYMBOL(dma_fence_array_alloc); > > > > > + > > > > > +/** > > > > > + * dma_fence_array_init - Arm a custom fence array > > > > > + * @array: [in] dma fence array to arm > > > > > * @num_fences: [in] number of fences to add in the array > > > > > * @fences: [in] array containing the fences > > > > > * @context: [in] fence context to use > > > > > * @seqno: [in] sequence number to use > > > > > * @signal_on_any: [in] signal on any fence in the array > > > > > * > > > > > - * Allocate a dma_fence_array object and initialize the base fence with > > > > > - * dma_fence_init(). > > > > > - * In case of error it returns NULL. > > > > > - * > > > > > - * The caller should allocate the fences array with num_fences size > > > > > - * and fill it with the fences it wants to add to the object. Ownership of this > > > > > - * array is taken and dma_fence_put() is used on each fence on release. > > > > > - * > > > > > - * If @signal_on_any is true the fence array signals if any fence in the array > > > > > - * signals, otherwise it signals when all fences in the array signal. > > > > > + * Implementation of @dma_fence_array_create without allocation. Useful to arm a > > > > > + * preallocated dma fence fence in the path of reclaim or dma fence signaling. > > > > > */ > > > > > -struct dma_fence_array *dma_fence_array_create(int num_fences, > > > > > - struct dma_fence **fences, > > > > > - u64 context, unsigned seqno, > > > > > - bool signal_on_any) > > > > > +void dma_fence_array_init(struct dma_fence_array *array, > > > > > + int num_fences, struct dma_fence **fences, > > > > > + u64 context, unsigned seqno, > > > > > + bool signal_on_any) > > > > > { > > > > > - struct dma_fence_array *array; > > > > > - > > > > > WARN_ON(!num_fences || !fences); > > > > > - array = kzalloc(struct_size(array, callbacks, num_fences), GFP_KERNEL); > > > > > - if (!array) > > > > > - return NULL; > > > > > - > > > > > array->num_fences = num_fences; > > > > > spin_lock_init(&array->lock); > > > > > @@ -200,6 +201,41 @@ struct dma_fence_array *dma_fence_array_create(int num_fences, > > > > > */ > > > > > while (num_fences--) > > > > > WARN_ON(dma_fence_is_container(fences[num_fences])); > > > > > +} > > > > > +EXPORT_SYMBOL(dma_fence_array_init); > > > > > + > > > > > +/** > > > > > + * dma_fence_array_create - Create a custom fence array > > > > > + * @num_fences: [in] number of fences to add in the array > > > > > + * @fences: [in] array containing the fences > > > > > + * @context: [in] fence context to use > > > > > + * @seqno: [in] sequence number to use > > > > > + * @signal_on_any: [in] signal on any fence in the array > > > > > + * > > > > > + * Allocate a dma_fence_array object and initialize the base fence with > > > > > + * dma_fence_init(). > > > > > + * In case of error it returns NULL. > > > > > + * > > > > > + * The caller should allocate the fences array with num_fences size > > > > > + * and fill it with the fences it wants to add to the object. Ownership of this > > > > > + * array is taken and dma_fence_put() is used on each fence on release. > > > > > + * > > > > > + * If @signal_on_any is true the fence array signals if any fence in the array > > > > > + * signals, otherwise it signals when all fences in the array signal. > > > > > + */ > > > > > +struct dma_fence_array *dma_fence_array_create(int num_fences, > > > > > + struct dma_fence **fences, > > > > > + u64 context, unsigned seqno, > > > > > + bool signal_on_any) > > > > > +{ > > > > > + struct dma_fence_array *array; > > > > > + > > > > > + array = dma_fence_array_alloc(num_fences); > > > > > + if (!array) > > > > > + return NULL; > > > > > + > > > > > + dma_fence_array_init(array, num_fences, fences, > > > > > + context, seqno, signal_on_any); > > > > > return array; > > > > > } > > > > > diff --git a/include/linux/dma-fence-array.h b/include/linux/dma-fence-array.h > > > > > index 29c5650c1038..079b3dec0a16 100644 > > > > > --- a/include/linux/dma-fence-array.h > > > > > +++ b/include/linux/dma-fence-array.h > > > > > @@ -79,6 +79,12 @@ to_dma_fence_array(struct dma_fence *fence) > > > > > for (index = 0, fence = dma_fence_array_first(head); fence; \ > > > > > ++(index), fence = dma_fence_array_next(head, index)) > > > > > +struct dma_fence_array *dma_fence_array_alloc(int num_fences); > > > > > +void dma_fence_array_init(struct dma_fence_array *array, > > > > > + int num_fences, struct dma_fence **fences, > > > > > + u64 context, unsigned seqno, > > > > > + bool signal_on_any); > > > > > + > > > > > struct dma_fence_array *dma_fence_array_create(int num_fences, > > > > > struct dma_fence **fences, > > > > > u64 context, unsigned seqno, > > ^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v2 2/2] drm/xe: Invalidate media_gt TLBs in PT code 2024-08-26 17:01 [PATCH v2 0/2] Split out dma fence array and invalidate media_gt TLBs in PT code Matthew Brost 2024-08-26 17:01 ` [PATCH v2 1/2] dma-buf: Split out dma fence array create into alloc and arm functions Matthew Brost @ 2024-08-26 17:01 ` Matthew Brost 2024-08-26 17:57 ` Christian König 2024-08-30 10:09 ` Matthew Auld 1 sibling, 2 replies; 10+ messages in thread From: Matthew Brost @ 2024-08-26 17:01 UTC (permalink / raw) To: intel-xe, linux-media, dri-devel Cc: thomas.hellstrom, sumit.semwal, christian.koenig Testing on LNL has shown media GT's TLBs need to be invalidated via the GuC, update PT code appropriately. v2: - Do dma_fence_get before first call of invalidation_fence_init (Himal) - No need to check for valid chain fence (Himal) v3: - Use dma-fence-array Fixes: 3330361543fc ("drm/xe/lnl: Add LNL platform definition") Signed-off-by: Matthew Brost <matthew.brost@intel.com> --- drivers/gpu/drm/xe/xe_pt.c | 117 ++++++++++++++++++++++++++++++------- 1 file changed, 96 insertions(+), 21 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_pt.c b/drivers/gpu/drm/xe/xe_pt.c index 579ed31b46db..d6353e8969f0 100644 --- a/drivers/gpu/drm/xe/xe_pt.c +++ b/drivers/gpu/drm/xe/xe_pt.c @@ -3,6 +3,8 @@ * Copyright © 2022 Intel Corporation */ +#include <linux/dma-fence-array.h> + #include "xe_pt.h" #include "regs/xe_gtt_defs.h" @@ -1627,9 +1629,11 @@ xe_pt_update_ops_rfence_interval(struct xe_vm_pgtable_update_ops *pt_update_ops, static int vma_reserve_fences(struct xe_device *xe, struct xe_vma *vma) { + int shift = xe_device_get_root_tile(xe)->media_gt ? 1 : 0; + if (!xe_vma_has_no_bo(vma) && !xe_vma_bo(vma)->vm) return dma_resv_reserve_fences(xe_vma_bo(vma)->ttm.base.resv, - xe->info.tile_count); + xe->info.tile_count << shift); return 0; } @@ -1816,6 +1820,7 @@ int xe_pt_update_ops_prepare(struct xe_tile *tile, struct xe_vma_ops *vops) struct xe_vm_pgtable_update_ops *pt_update_ops = &vops->pt_update_ops[tile->id]; struct xe_vma_op *op; + int shift = tile->media_gt ? 1 : 0; int err; lockdep_assert_held(&vops->vm->lock); @@ -1824,7 +1829,7 @@ int xe_pt_update_ops_prepare(struct xe_tile *tile, struct xe_vma_ops *vops) xe_pt_update_ops_init(pt_update_ops); err = dma_resv_reserve_fences(xe_vm_resv(vops->vm), - tile_to_xe(tile)->info.tile_count); + tile_to_xe(tile)->info.tile_count << shift); if (err) return err; @@ -1849,13 +1854,20 @@ int xe_pt_update_ops_prepare(struct xe_tile *tile, struct xe_vma_ops *vops) static void bind_op_commit(struct xe_vm *vm, struct xe_tile *tile, struct xe_vm_pgtable_update_ops *pt_update_ops, - struct xe_vma *vma, struct dma_fence *fence) + struct xe_vma *vma, struct dma_fence *fence, + struct dma_fence *fence2) { - if (!xe_vma_has_no_bo(vma) && !xe_vma_bo(vma)->vm) + if (!xe_vma_has_no_bo(vma) && !xe_vma_bo(vma)->vm) { dma_resv_add_fence(xe_vma_bo(vma)->ttm.base.resv, fence, pt_update_ops->wait_vm_bookkeep ? DMA_RESV_USAGE_KERNEL : DMA_RESV_USAGE_BOOKKEEP); + if (fence2) + dma_resv_add_fence(xe_vma_bo(vma)->ttm.base.resv, fence2, + pt_update_ops->wait_vm_bookkeep ? + DMA_RESV_USAGE_KERNEL : + DMA_RESV_USAGE_BOOKKEEP); + } vma->tile_present |= BIT(tile->id); vma->tile_staged &= ~BIT(tile->id); if (xe_vma_is_userptr(vma)) { @@ -1875,13 +1887,20 @@ static void bind_op_commit(struct xe_vm *vm, struct xe_tile *tile, static void unbind_op_commit(struct xe_vm *vm, struct xe_tile *tile, struct xe_vm_pgtable_update_ops *pt_update_ops, - struct xe_vma *vma, struct dma_fence *fence) + struct xe_vma *vma, struct dma_fence *fence, + struct dma_fence *fence2) { - if (!xe_vma_has_no_bo(vma) && !xe_vma_bo(vma)->vm) + if (!xe_vma_has_no_bo(vma) && !xe_vma_bo(vma)->vm) { dma_resv_add_fence(xe_vma_bo(vma)->ttm.base.resv, fence, pt_update_ops->wait_vm_bookkeep ? DMA_RESV_USAGE_KERNEL : DMA_RESV_USAGE_BOOKKEEP); + if (fence2) + dma_resv_add_fence(xe_vma_bo(vma)->ttm.base.resv, fence2, + pt_update_ops->wait_vm_bookkeep ? + DMA_RESV_USAGE_KERNEL : + DMA_RESV_USAGE_BOOKKEEP); + } vma->tile_present &= ~BIT(tile->id); if (!vma->tile_present) { list_del_init(&vma->combined_links.rebind); @@ -1898,7 +1917,8 @@ static void unbind_op_commit(struct xe_vm *vm, struct xe_tile *tile, static void op_commit(struct xe_vm *vm, struct xe_tile *tile, struct xe_vm_pgtable_update_ops *pt_update_ops, - struct xe_vma_op *op, struct dma_fence *fence) + struct xe_vma_op *op, struct dma_fence *fence, + struct dma_fence *fence2) { xe_vm_assert_held(vm); @@ -1907,26 +1927,28 @@ static void op_commit(struct xe_vm *vm, if (!op->map.immediate && xe_vm_in_fault_mode(vm)) break; - bind_op_commit(vm, tile, pt_update_ops, op->map.vma, fence); + bind_op_commit(vm, tile, pt_update_ops, op->map.vma, fence, + fence2); break; case DRM_GPUVA_OP_REMAP: unbind_op_commit(vm, tile, pt_update_ops, - gpuva_to_vma(op->base.remap.unmap->va), fence); + gpuva_to_vma(op->base.remap.unmap->va), fence, + fence2); if (op->remap.prev) bind_op_commit(vm, tile, pt_update_ops, op->remap.prev, - fence); + fence, fence2); if (op->remap.next) bind_op_commit(vm, tile, pt_update_ops, op->remap.next, - fence); + fence, fence2); break; case DRM_GPUVA_OP_UNMAP: unbind_op_commit(vm, tile, pt_update_ops, - gpuva_to_vma(op->base.unmap.va), fence); + gpuva_to_vma(op->base.unmap.va), fence, fence2); break; case DRM_GPUVA_OP_PREFETCH: bind_op_commit(vm, tile, pt_update_ops, - gpuva_to_vma(op->base.prefetch.va), fence); + gpuva_to_vma(op->base.prefetch.va), fence, fence2); break; default: drm_warn(&vm->xe->drm, "NOT POSSIBLE"); @@ -1963,7 +1985,9 @@ xe_pt_update_ops_run(struct xe_tile *tile, struct xe_vma_ops *vops) struct xe_vm_pgtable_update_ops *pt_update_ops = &vops->pt_update_ops[tile->id]; struct dma_fence *fence; - struct invalidation_fence *ifence = NULL; + struct invalidation_fence *ifence = NULL, *mfence = NULL; + struct dma_fence **fences = NULL; + struct dma_fence_array *cf = NULL; struct xe_range_fence *rfence; struct xe_vma_op *op; int err = 0, i; @@ -1996,6 +2020,23 @@ xe_pt_update_ops_run(struct xe_tile *tile, struct xe_vma_ops *vops) err = -ENOMEM; goto kill_vm_tile1; } + if (tile->media_gt) { + mfence = kzalloc(sizeof(*ifence), GFP_KERNEL); + if (!mfence) { + err = -ENOMEM; + goto free_ifence; + } + fences = kmalloc_array(2, sizeof(*fences), GFP_KERNEL); + if (!fences) { + err = -ENOMEM; + goto free_ifence; + } + cf = dma_fence_array_alloc(2); + if (!cf) { + err = -ENOMEM; + goto free_ifence; + } + } } rfence = kzalloc(sizeof(*rfence), GFP_KERNEL); @@ -2027,19 +2068,50 @@ xe_pt_update_ops_run(struct xe_tile *tile, struct xe_vma_ops *vops) /* tlb invalidation must be done before signaling rebind */ if (ifence) { + if (mfence) + dma_fence_get(fence); invalidation_fence_init(tile->primary_gt, ifence, fence, pt_update_ops->start, pt_update_ops->last, vm->usm.asid); - fence = &ifence->base.base; + if (mfence) { + invalidation_fence_init(tile->media_gt, mfence, fence, + pt_update_ops->start, + pt_update_ops->last, vm->usm.asid); + fences[0] = &ifence->base.base; + fences[1] = &mfence->base.base; + dma_fence_array_init(cf, 2, fences, + vm->composite_fence_ctx, + vm->composite_fence_seqno++, + false); + fence = &cf->base; + } else { + fence = &ifence->base.base; + } } - dma_resv_add_fence(xe_vm_resv(vm), fence, - pt_update_ops->wait_vm_bookkeep ? - DMA_RESV_USAGE_KERNEL : - DMA_RESV_USAGE_BOOKKEEP); + if (!mfence) { + dma_resv_add_fence(xe_vm_resv(vm), fence, + pt_update_ops->wait_vm_bookkeep ? + DMA_RESV_USAGE_KERNEL : + DMA_RESV_USAGE_BOOKKEEP); - list_for_each_entry(op, &vops->list, link) - op_commit(vops->vm, tile, pt_update_ops, op, fence); + list_for_each_entry(op, &vops->list, link) + op_commit(vops->vm, tile, pt_update_ops, op, fence, NULL); + } else { + dma_resv_add_fence(xe_vm_resv(vm), &ifence->base.base, + pt_update_ops->wait_vm_bookkeep ? + DMA_RESV_USAGE_KERNEL : + DMA_RESV_USAGE_BOOKKEEP); + + dma_resv_add_fence(xe_vm_resv(vm), &mfence->base.base, + pt_update_ops->wait_vm_bookkeep ? + DMA_RESV_USAGE_KERNEL : + DMA_RESV_USAGE_BOOKKEEP); + + list_for_each_entry(op, &vops->list, link) + op_commit(vops->vm, tile, pt_update_ops, op, + &ifence->base.base, &mfence->base.base); + } if (pt_update_ops->needs_userptr_lock) up_read(&vm->userptr.notifier_lock); @@ -2049,6 +2121,9 @@ xe_pt_update_ops_run(struct xe_tile *tile, struct xe_vma_ops *vops) free_rfence: kfree(rfence); free_ifence: + kfree(cf); + kfree(fences); + kfree(mfence); kfree(ifence); kill_vm_tile1: if (err != -EAGAIN && tile->id) -- 2.34.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH v2 2/2] drm/xe: Invalidate media_gt TLBs in PT code 2024-08-26 17:01 ` [PATCH v2 2/2] drm/xe: Invalidate media_gt TLBs in PT code Matthew Brost @ 2024-08-26 17:57 ` Christian König 2024-08-30 10:09 ` Matthew Auld 1 sibling, 0 replies; 10+ messages in thread From: Christian König @ 2024-08-26 17:57 UTC (permalink / raw) To: Matthew Brost, intel-xe, linux-media, dri-devel Cc: thomas.hellstrom, sumit.semwal Am 26.08.24 um 19:01 schrieb Matthew Brost: > Testing on LNL has shown media GT's TLBs need to be invalidated via the > GuC, update PT code appropriately. > > v2: > - Do dma_fence_get before first call of invalidation_fence_init (Himal) > - No need to check for valid chain fence (Himal) > v3: > - Use dma-fence-array > > Fixes: 3330361543fc ("drm/xe/lnl: Add LNL platform definition") > Signed-off-by: Matthew Brost <matthew.brost@intel.com> Acked-by: Christian König <christian.koenig@amd.com> > --- > drivers/gpu/drm/xe/xe_pt.c | 117 ++++++++++++++++++++++++++++++------- > 1 file changed, 96 insertions(+), 21 deletions(-) > > diff --git a/drivers/gpu/drm/xe/xe_pt.c b/drivers/gpu/drm/xe/xe_pt.c > index 579ed31b46db..d6353e8969f0 100644 > --- a/drivers/gpu/drm/xe/xe_pt.c > +++ b/drivers/gpu/drm/xe/xe_pt.c > @@ -3,6 +3,8 @@ > * Copyright © 2022 Intel Corporation > */ > > +#include <linux/dma-fence-array.h> > + > #include "xe_pt.h" > > #include "regs/xe_gtt_defs.h" > @@ -1627,9 +1629,11 @@ xe_pt_update_ops_rfence_interval(struct xe_vm_pgtable_update_ops *pt_update_ops, > > static int vma_reserve_fences(struct xe_device *xe, struct xe_vma *vma) > { > + int shift = xe_device_get_root_tile(xe)->media_gt ? 1 : 0; > + > if (!xe_vma_has_no_bo(vma) && !xe_vma_bo(vma)->vm) > return dma_resv_reserve_fences(xe_vma_bo(vma)->ttm.base.resv, > - xe->info.tile_count); > + xe->info.tile_count << shift); > > return 0; > } > @@ -1816,6 +1820,7 @@ int xe_pt_update_ops_prepare(struct xe_tile *tile, struct xe_vma_ops *vops) > struct xe_vm_pgtable_update_ops *pt_update_ops = > &vops->pt_update_ops[tile->id]; > struct xe_vma_op *op; > + int shift = tile->media_gt ? 1 : 0; > int err; > > lockdep_assert_held(&vops->vm->lock); > @@ -1824,7 +1829,7 @@ int xe_pt_update_ops_prepare(struct xe_tile *tile, struct xe_vma_ops *vops) > xe_pt_update_ops_init(pt_update_ops); > > err = dma_resv_reserve_fences(xe_vm_resv(vops->vm), > - tile_to_xe(tile)->info.tile_count); > + tile_to_xe(tile)->info.tile_count << shift); > if (err) > return err; > > @@ -1849,13 +1854,20 @@ int xe_pt_update_ops_prepare(struct xe_tile *tile, struct xe_vma_ops *vops) > > static void bind_op_commit(struct xe_vm *vm, struct xe_tile *tile, > struct xe_vm_pgtable_update_ops *pt_update_ops, > - struct xe_vma *vma, struct dma_fence *fence) > + struct xe_vma *vma, struct dma_fence *fence, > + struct dma_fence *fence2) > { > - if (!xe_vma_has_no_bo(vma) && !xe_vma_bo(vma)->vm) > + if (!xe_vma_has_no_bo(vma) && !xe_vma_bo(vma)->vm) { > dma_resv_add_fence(xe_vma_bo(vma)->ttm.base.resv, fence, > pt_update_ops->wait_vm_bookkeep ? > DMA_RESV_USAGE_KERNEL : > DMA_RESV_USAGE_BOOKKEEP); > + if (fence2) > + dma_resv_add_fence(xe_vma_bo(vma)->ttm.base.resv, fence2, > + pt_update_ops->wait_vm_bookkeep ? > + DMA_RESV_USAGE_KERNEL : > + DMA_RESV_USAGE_BOOKKEEP); > + } > vma->tile_present |= BIT(tile->id); > vma->tile_staged &= ~BIT(tile->id); > if (xe_vma_is_userptr(vma)) { > @@ -1875,13 +1887,20 @@ static void bind_op_commit(struct xe_vm *vm, struct xe_tile *tile, > > static void unbind_op_commit(struct xe_vm *vm, struct xe_tile *tile, > struct xe_vm_pgtable_update_ops *pt_update_ops, > - struct xe_vma *vma, struct dma_fence *fence) > + struct xe_vma *vma, struct dma_fence *fence, > + struct dma_fence *fence2) > { > - if (!xe_vma_has_no_bo(vma) && !xe_vma_bo(vma)->vm) > + if (!xe_vma_has_no_bo(vma) && !xe_vma_bo(vma)->vm) { > dma_resv_add_fence(xe_vma_bo(vma)->ttm.base.resv, fence, > pt_update_ops->wait_vm_bookkeep ? > DMA_RESV_USAGE_KERNEL : > DMA_RESV_USAGE_BOOKKEEP); > + if (fence2) > + dma_resv_add_fence(xe_vma_bo(vma)->ttm.base.resv, fence2, > + pt_update_ops->wait_vm_bookkeep ? > + DMA_RESV_USAGE_KERNEL : > + DMA_RESV_USAGE_BOOKKEEP); > + } > vma->tile_present &= ~BIT(tile->id); > if (!vma->tile_present) { > list_del_init(&vma->combined_links.rebind); > @@ -1898,7 +1917,8 @@ static void unbind_op_commit(struct xe_vm *vm, struct xe_tile *tile, > static void op_commit(struct xe_vm *vm, > struct xe_tile *tile, > struct xe_vm_pgtable_update_ops *pt_update_ops, > - struct xe_vma_op *op, struct dma_fence *fence) > + struct xe_vma_op *op, struct dma_fence *fence, > + struct dma_fence *fence2) > { > xe_vm_assert_held(vm); > > @@ -1907,26 +1927,28 @@ static void op_commit(struct xe_vm *vm, > if (!op->map.immediate && xe_vm_in_fault_mode(vm)) > break; > > - bind_op_commit(vm, tile, pt_update_ops, op->map.vma, fence); > + bind_op_commit(vm, tile, pt_update_ops, op->map.vma, fence, > + fence2); > break; > case DRM_GPUVA_OP_REMAP: > unbind_op_commit(vm, tile, pt_update_ops, > - gpuva_to_vma(op->base.remap.unmap->va), fence); > + gpuva_to_vma(op->base.remap.unmap->va), fence, > + fence2); > > if (op->remap.prev) > bind_op_commit(vm, tile, pt_update_ops, op->remap.prev, > - fence); > + fence, fence2); > if (op->remap.next) > bind_op_commit(vm, tile, pt_update_ops, op->remap.next, > - fence); > + fence, fence2); > break; > case DRM_GPUVA_OP_UNMAP: > unbind_op_commit(vm, tile, pt_update_ops, > - gpuva_to_vma(op->base.unmap.va), fence); > + gpuva_to_vma(op->base.unmap.va), fence, fence2); > break; > case DRM_GPUVA_OP_PREFETCH: > bind_op_commit(vm, tile, pt_update_ops, > - gpuva_to_vma(op->base.prefetch.va), fence); > + gpuva_to_vma(op->base.prefetch.va), fence, fence2); > break; > default: > drm_warn(&vm->xe->drm, "NOT POSSIBLE"); > @@ -1963,7 +1985,9 @@ xe_pt_update_ops_run(struct xe_tile *tile, struct xe_vma_ops *vops) > struct xe_vm_pgtable_update_ops *pt_update_ops = > &vops->pt_update_ops[tile->id]; > struct dma_fence *fence; > - struct invalidation_fence *ifence = NULL; > + struct invalidation_fence *ifence = NULL, *mfence = NULL; > + struct dma_fence **fences = NULL; > + struct dma_fence_array *cf = NULL; > struct xe_range_fence *rfence; > struct xe_vma_op *op; > int err = 0, i; > @@ -1996,6 +2020,23 @@ xe_pt_update_ops_run(struct xe_tile *tile, struct xe_vma_ops *vops) > err = -ENOMEM; > goto kill_vm_tile1; > } > + if (tile->media_gt) { > + mfence = kzalloc(sizeof(*ifence), GFP_KERNEL); > + if (!mfence) { > + err = -ENOMEM; > + goto free_ifence; > + } > + fences = kmalloc_array(2, sizeof(*fences), GFP_KERNEL); > + if (!fences) { > + err = -ENOMEM; > + goto free_ifence; > + } > + cf = dma_fence_array_alloc(2); > + if (!cf) { > + err = -ENOMEM; > + goto free_ifence; > + } > + } > } > > rfence = kzalloc(sizeof(*rfence), GFP_KERNEL); > @@ -2027,19 +2068,50 @@ xe_pt_update_ops_run(struct xe_tile *tile, struct xe_vma_ops *vops) > > /* tlb invalidation must be done before signaling rebind */ > if (ifence) { > + if (mfence) > + dma_fence_get(fence); > invalidation_fence_init(tile->primary_gt, ifence, fence, > pt_update_ops->start, > pt_update_ops->last, vm->usm.asid); > - fence = &ifence->base.base; > + if (mfence) { > + invalidation_fence_init(tile->media_gt, mfence, fence, > + pt_update_ops->start, > + pt_update_ops->last, vm->usm.asid); > + fences[0] = &ifence->base.base; > + fences[1] = &mfence->base.base; > + dma_fence_array_init(cf, 2, fences, > + vm->composite_fence_ctx, > + vm->composite_fence_seqno++, > + false); > + fence = &cf->base; > + } else { > + fence = &ifence->base.base; > + } > } > > - dma_resv_add_fence(xe_vm_resv(vm), fence, > - pt_update_ops->wait_vm_bookkeep ? > - DMA_RESV_USAGE_KERNEL : > - DMA_RESV_USAGE_BOOKKEEP); > + if (!mfence) { > + dma_resv_add_fence(xe_vm_resv(vm), fence, > + pt_update_ops->wait_vm_bookkeep ? > + DMA_RESV_USAGE_KERNEL : > + DMA_RESV_USAGE_BOOKKEEP); > > - list_for_each_entry(op, &vops->list, link) > - op_commit(vops->vm, tile, pt_update_ops, op, fence); > + list_for_each_entry(op, &vops->list, link) > + op_commit(vops->vm, tile, pt_update_ops, op, fence, NULL); > + } else { > + dma_resv_add_fence(xe_vm_resv(vm), &ifence->base.base, > + pt_update_ops->wait_vm_bookkeep ? > + DMA_RESV_USAGE_KERNEL : > + DMA_RESV_USAGE_BOOKKEEP); > + > + dma_resv_add_fence(xe_vm_resv(vm), &mfence->base.base, > + pt_update_ops->wait_vm_bookkeep ? > + DMA_RESV_USAGE_KERNEL : > + DMA_RESV_USAGE_BOOKKEEP); > + > + list_for_each_entry(op, &vops->list, link) > + op_commit(vops->vm, tile, pt_update_ops, op, > + &ifence->base.base, &mfence->base.base); > + } > > if (pt_update_ops->needs_userptr_lock) > up_read(&vm->userptr.notifier_lock); > @@ -2049,6 +2121,9 @@ xe_pt_update_ops_run(struct xe_tile *tile, struct xe_vma_ops *vops) > free_rfence: > kfree(rfence); > free_ifence: > + kfree(cf); > + kfree(fences); > + kfree(mfence); > kfree(ifence); > kill_vm_tile1: > if (err != -EAGAIN && tile->id) ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 2/2] drm/xe: Invalidate media_gt TLBs in PT code 2024-08-26 17:01 ` [PATCH v2 2/2] drm/xe: Invalidate media_gt TLBs in PT code Matthew Brost 2024-08-26 17:57 ` Christian König @ 2024-08-30 10:09 ` Matthew Auld 1 sibling, 0 replies; 10+ messages in thread From: Matthew Auld @ 2024-08-30 10:09 UTC (permalink / raw) To: Matthew Brost, intel-xe, linux-media, dri-devel Cc: thomas.hellstrom, sumit.semwal, christian.koenig On 26/08/2024 18:01, Matthew Brost wrote: > Testing on LNL has shown media GT's TLBs need to be invalidated via the > GuC, update PT code appropriately. > > v2: > - Do dma_fence_get before first call of invalidation_fence_init (Himal) > - No need to check for valid chain fence (Himal) > v3: > - Use dma-fence-array > > Fixes: 3330361543fc ("drm/xe/lnl: Add LNL platform definition") > Signed-off-by: Matthew Brost <matthew.brost@intel.com> Reviewed-by: Matthew Auld <matthew.auld@intel.com> ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-08-30 18:44 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-08-26 17:01 [PATCH v2 0/2] Split out dma fence array and invalidate media_gt TLBs in PT code Matthew Brost 2024-08-26 17:01 ` [PATCH v2 1/2] dma-buf: Split out dma fence array create into alloc and arm functions Matthew Brost 2024-08-26 17:57 ` Christian König 2024-08-26 19:23 ` Matthew Brost 2024-08-27 6:37 ` Christian König 2024-08-27 16:10 ` Matthew Brost 2024-08-30 18:42 ` Matthew Brost 2024-08-26 17:01 ` [PATCH v2 2/2] drm/xe: Invalidate media_gt TLBs in PT code Matthew Brost 2024-08-26 17:57 ` Christian König 2024-08-30 10:09 ` Matthew Auld
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox