dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] drm/vram-helpers: Set plane fence for display update
@ 2020-03-31  8:11 Thomas Zimmermann
  2020-03-31  8:47 ` Gerd Hoffmann
  2020-03-31  8:50 ` Daniel Vetter
  0 siblings, 2 replies; 4+ messages in thread
From: Thomas Zimmermann @ 2020-03-31  8:11 UTC (permalink / raw)
  To: daniel, airlied, mripard, maarten.lankhorst, sam, kraxel
  Cc: Thomas Zimmermann, dri-devel

Calling the VRAM helper's prepare_fb() helper now sets the plane's
fence object. The helper still has to synchronize with other users
of the GEM object. Leave a related TODO comment in the code.

This will be useful for PRIME support. VRAM helpers don't support
buffer sharing ATM, so there are no drivers requiring this change.

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
---
 drivers/gpu/drm/drm_gem_vram_helper.c | 18 +++++++++++++++---
 1 file changed, 15 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/drm_gem_vram_helper.c b/drivers/gpu/drm/drm_gem_vram_helper.c
index b3201a70cbfcb..d4e4f80d3a6c1 100644
--- a/drivers/gpu/drm/drm_gem_vram_helper.c
+++ b/drivers/gpu/drm/drm_gem_vram_helper.c
@@ -5,6 +5,7 @@
 #include <drm/drm_drv.h>
 #include <drm/drm_file.h>
 #include <drm/drm_framebuffer.h>
+#include <drm/drm_gem_framebuffer_helper.h>
 #include <drm/drm_gem_ttm_helper.h>
 #include <drm/drm_gem_vram_helper.h>
 #include <drm/drm_mode.h>
@@ -670,9 +671,9 @@ EXPORT_SYMBOL(drm_gem_vram_driver_dumb_mmap_offset);
  * @plane:	a DRM plane
  * @new_state:	the plane's new state
  *
- * During plane updates, this function pins the GEM VRAM
- * objects of the plane's new framebuffer to VRAM. Call
- * drm_gem_vram_plane_helper_cleanup_fb() to unpin them.
+ * During plane updates, this function sets the plane's fence and
+ * pins the GEM VRAM objects of the plane's new framebuffer to VRAM.
+ * Call drm_gem_vram_plane_helper_cleanup_fb() to unpin them.
  *
  * Returns:
  *	0 on success, or
@@ -689,6 +690,13 @@ drm_gem_vram_plane_helper_prepare_fb(struct drm_plane *plane,
 	if (!new_state->fb)
 		return 0;
 
+	/*
+	 * TODO: Synchronize with other users of the buffer. Buffers
+	 *       cannot be pinned to VRAM while they are in use by other
+	 *       drivers for DMA. We should probably wait for each GEM
+	 *       object's fence before attempting to pin the buffer.
+	 *       There are currently no users of this functionality.
+	 */
 	for (i = 0; i < ARRAY_SIZE(new_state->fb->obj); ++i) {
 		if (!new_state->fb->obj[i])
 			continue;
@@ -698,6 +706,10 @@ drm_gem_vram_plane_helper_prepare_fb(struct drm_plane *plane,
 			goto err_drm_gem_vram_unpin;
 	}
 
+	ret = drm_gem_fb_prepare_fb(plane, new_state);
+	if (ret)
+		goto err_drm_gem_vram_unpin;
+
 	return 0;
 
 err_drm_gem_vram_unpin:
-- 
2.26.0

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] drm/vram-helpers: Set plane fence for display update
  2020-03-31  8:11 [PATCH] drm/vram-helpers: Set plane fence for display update Thomas Zimmermann
@ 2020-03-31  8:47 ` Gerd Hoffmann
  2020-03-31  8:50 ` Daniel Vetter
  1 sibling, 0 replies; 4+ messages in thread
From: Gerd Hoffmann @ 2020-03-31  8:47 UTC (permalink / raw)
  To: Thomas Zimmermann; +Cc: airlied, dri-devel, sam

  Hi,

> +	 * TODO: Synchronize with other users of the buffer. Buffers
> +	 *       cannot be pinned to VRAM while they are in use by other
> +	 *       drivers for DMA. We should probably wait for each GEM
> +	 *       object's fence before attempting to pin the buffer.

The other option is p2p (Documentation/driver-api/pci/p2pdma.rst).

cheers,
  Gerd

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] drm/vram-helpers: Set plane fence for display update
  2020-03-31  8:11 [PATCH] drm/vram-helpers: Set plane fence for display update Thomas Zimmermann
  2020-03-31  8:47 ` Gerd Hoffmann
@ 2020-03-31  8:50 ` Daniel Vetter
  2020-03-31  9:23   ` Thomas Zimmermann
  1 sibling, 1 reply; 4+ messages in thread
From: Daniel Vetter @ 2020-03-31  8:50 UTC (permalink / raw)
  To: Thomas Zimmermann; +Cc: airlied, dri-devel, kraxel, sam

On Tue, Mar 31, 2020 at 10:11:30AM +0200, Thomas Zimmermann wrote:
> Calling the VRAM helper's prepare_fb() helper now sets the plane's
> fence object. The helper still has to synchronize with other users
> of the GEM object. Leave a related TODO comment in the code.
> 
> This will be useful for PRIME support. VRAM helpers don't support
> buffer sharing ATM, so there are no drivers requiring this change.
> 
> Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
> ---
>  drivers/gpu/drm/drm_gem_vram_helper.c | 18 +++++++++++++++---
>  1 file changed, 15 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/gpu/drm/drm_gem_vram_helper.c b/drivers/gpu/drm/drm_gem_vram_helper.c
> index b3201a70cbfcb..d4e4f80d3a6c1 100644
> --- a/drivers/gpu/drm/drm_gem_vram_helper.c
> +++ b/drivers/gpu/drm/drm_gem_vram_helper.c
> @@ -5,6 +5,7 @@
>  #include <drm/drm_drv.h>
>  #include <drm/drm_file.h>
>  #include <drm/drm_framebuffer.h>
> +#include <drm/drm_gem_framebuffer_helper.h>
>  #include <drm/drm_gem_ttm_helper.h>
>  #include <drm/drm_gem_vram_helper.h>
>  #include <drm/drm_mode.h>
> @@ -670,9 +671,9 @@ EXPORT_SYMBOL(drm_gem_vram_driver_dumb_mmap_offset);
>   * @plane:	a DRM plane
>   * @new_state:	the plane's new state
>   *
> - * During plane updates, this function pins the GEM VRAM
> - * objects of the plane's new framebuffer to VRAM. Call
> - * drm_gem_vram_plane_helper_cleanup_fb() to unpin them.
> + * During plane updates, this function sets the plane's fence and
> + * pins the GEM VRAM objects of the plane's new framebuffer to VRAM.
> + * Call drm_gem_vram_plane_helper_cleanup_fb() to unpin them.
>   *
>   * Returns:
>   *	0 on success, or
> @@ -689,6 +690,13 @@ drm_gem_vram_plane_helper_prepare_fb(struct drm_plane *plane,
>  	if (!new_state->fb)
>  		return 0;
>  
> +	/*
> +	 * TODO: Synchronize with other users of the buffer. Buffers
> +	 *       cannot be pinned to VRAM while they are in use by other
> +	 *       drivers for DMA. We should probably wait for each GEM
> +	 *       object's fence before attempting to pin the buffer.
> +	 *       There are currently no users of this functionality.
> +	 */

Not sure this is warranted, we have lots of drivers with these kind of
restrictions ... It's a big can of worms, I'd just leave this all out.

>  	for (i = 0; i < ARRAY_SIZE(new_state->fb->obj); ++i) {
>  		if (!new_state->fb->obj[i])
>  			continue;
> @@ -698,6 +706,10 @@ drm_gem_vram_plane_helper_prepare_fb(struct drm_plane *plane,
>  			goto err_drm_gem_vram_unpin;
>  	}
>  
> +	ret = drm_gem_fb_prepare_fb(plane, new_state);
> +	if (ret)
> +		goto err_drm_gem_vram_unpin;

Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>

> +
>  	return 0;
>  
>  err_drm_gem_vram_unpin:
> -- 
> 2.26.0
> 

-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] drm/vram-helpers: Set plane fence for display update
  2020-03-31  8:50 ` Daniel Vetter
@ 2020-03-31  9:23   ` Thomas Zimmermann
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Zimmermann @ 2020-03-31  9:23 UTC (permalink / raw)
  To: Daniel Vetter; +Cc: airlied, sam, kraxel, dri-devel


[-- Attachment #1.1.1: Type: text/plain, Size: 3254 bytes --]

Hi

Am 31.03.20 um 10:50 schrieb Daniel Vetter:
> On Tue, Mar 31, 2020 at 10:11:30AM +0200, Thomas Zimmermann wrote:
>> Calling the VRAM helper's prepare_fb() helper now sets the plane's
>> fence object. The helper still has to synchronize with other users
>> of the GEM object. Leave a related TODO comment in the code.
>>
>> This will be useful for PRIME support. VRAM helpers don't support
>> buffer sharing ATM, so there are no drivers requiring this change.
>>
>> Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
>> ---
>>  drivers/gpu/drm/drm_gem_vram_helper.c | 18 +++++++++++++++---
>>  1 file changed, 15 insertions(+), 3 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/drm_gem_vram_helper.c b/drivers/gpu/drm/drm_gem_vram_helper.c
>> index b3201a70cbfcb..d4e4f80d3a6c1 100644
>> --- a/drivers/gpu/drm/drm_gem_vram_helper.c
>> +++ b/drivers/gpu/drm/drm_gem_vram_helper.c
>> @@ -5,6 +5,7 @@
>>  #include <drm/drm_drv.h>
>>  #include <drm/drm_file.h>
>>  #include <drm/drm_framebuffer.h>
>> +#include <drm/drm_gem_framebuffer_helper.h>
>>  #include <drm/drm_gem_ttm_helper.h>
>>  #include <drm/drm_gem_vram_helper.h>
>>  #include <drm/drm_mode.h>
>> @@ -670,9 +671,9 @@ EXPORT_SYMBOL(drm_gem_vram_driver_dumb_mmap_offset);
>>   * @plane:	a DRM plane
>>   * @new_state:	the plane's new state
>>   *
>> - * During plane updates, this function pins the GEM VRAM
>> - * objects of the plane's new framebuffer to VRAM. Call
>> - * drm_gem_vram_plane_helper_cleanup_fb() to unpin them.
>> + * During plane updates, this function sets the plane's fence and
>> + * pins the GEM VRAM objects of the plane's new framebuffer to VRAM.
>> + * Call drm_gem_vram_plane_helper_cleanup_fb() to unpin them.
>>   *
>>   * Returns:
>>   *	0 on success, or
>> @@ -689,6 +690,13 @@ drm_gem_vram_plane_helper_prepare_fb(struct drm_plane *plane,
>>  	if (!new_state->fb)
>>  		return 0;
>>  
>> +	/*
>> +	 * TODO: Synchronize with other users of the buffer. Buffers
>> +	 *       cannot be pinned to VRAM while they are in use by other
>> +	 *       drivers for DMA. We should probably wait for each GEM
>> +	 *       object's fence before attempting to pin the buffer.
>> +	 *       There are currently no users of this functionality.
>> +	 */
> 
> Not sure this is warranted, we have lots of drivers with these kind of
> restrictions ... It's a big can of worms, I'd just leave this all out.

Well, OK. Adding PRIME support would require a rework of these helpers
anyway.

Best regards
Thomas

> 
>>  	for (i = 0; i < ARRAY_SIZE(new_state->fb->obj); ++i) {
>>  		if (!new_state->fb->obj[i])
>>  			continue;
>> @@ -698,6 +706,10 @@ drm_gem_vram_plane_helper_prepare_fb(struct drm_plane *plane,
>>  			goto err_drm_gem_vram_unpin;
>>  	}
>>  
>> +	ret = drm_gem_fb_prepare_fb(plane, new_state);
>> +	if (ret)
>> +		goto err_drm_gem_vram_unpin;
> 
> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
> 
>> +
>>  	return 0;
>>  
>>  err_drm_gem_vram_unpin:
>> -- 
>> 2.26.0
>>
> 

-- 
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Maxfeldstr. 5, 90409 Nürnberg, Germany
(HRB 36809, AG Nürnberg)
Geschäftsführer: Felix Imendörffer


[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-03-31  9:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-31  8:11 [PATCH] drm/vram-helpers: Set plane fence for display update Thomas Zimmermann
2020-03-31  8:47 ` Gerd Hoffmann
2020-03-31  8:50 ` Daniel Vetter
2020-03-31  9:23   ` Thomas Zimmermann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).