From: Thomas Zimmermann <tzimmermann@suse.de>
To: Gerd Hoffmann <kraxel@redhat.com>, dri-devel@lists.freedesktop.org
Cc: David Airlie <airlied@linux.ie>,
"open list:DRM DRIVER FOR QXL VIRTUAL GPU"
<spice-devel@lists.freedesktop.org>,
Dave Airlie <airlied@redhat.com>,
open list <linux-kernel@vger.kernel.org>,
"open list:DRM DRIVER FOR QXL VIRTUAL GPU"
<virtualization@lists.linux-foundation.org>
Subject: Re: [PATCH 09/10] drm/qxl: map/unmap framebuffers in prepare_fb+cleanup_fb callbacks.
Date: Tue, 16 Feb 2021 14:46:21 +0100 [thread overview]
Message-ID: <ab21d782-2627-7a68-8fab-0acfba416c86@suse.de> (raw)
In-Reply-To: <5baf096f-b1ee-46ba-5ee9-1c829b96e088@suse.de>
[-- Attachment #1.1: Type: text/plain, Size: 4603 bytes --]
Am 16.02.21 um 14:27 schrieb Thomas Zimmermann:
> Hi
>
> this is a shadow-buffered plane. Did you consider using the new helpers
> for shadow-buffered planes? They will map the user BO for you and
> provide the mapping in the plane state.
>
> From there, you should implement your own plane state on top of struct
> drm_shadow_plane_state, and also move all the other allocations and
> vmaps into prepare_fb and cleanup_fb. Most of this is not actually
> allowed in commit tails. All we'd have to do is to export the reset,
> duplicate and destroy code; similar to what
> __drm_atomic_helper_plane_reset() does.
AFAICT the cursor_bo is used to implement double buffering for the
cursor image.
Ideally, you can do what ast does: pre-allocate/vmap 2 BOs at the end of
the vram. Then pageflip between them in atomic_update(). Resolves all
the allocation and mapping headaches.
Best regards
Thomas
>
> Best regards
> Thomas
>
>
> Am 16.02.21 um 12:37 schrieb Gerd Hoffmann:
>> We don't have to map in atomic_update callback then,
>> making locking a bit less complicated.
>>
>> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
>> ---
>> drivers/gpu/drm/qxl/qxl_display.c | 14 +++++---------
>> 1 file changed, 5 insertions(+), 9 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/qxl/qxl_display.c
>> b/drivers/gpu/drm/qxl/qxl_display.c
>> index 7500560db8e4..39b8c5116d34 100644
>> --- a/drivers/gpu/drm/qxl/qxl_display.c
>> +++ b/drivers/gpu/drm/qxl/qxl_display.c
>> @@ -584,7 +584,6 @@ static void qxl_cursor_atomic_update(struct
>> drm_plane *plane,
>> struct drm_gem_object *obj;
>> struct qxl_bo *cursor_bo = NULL, *user_bo = NULL, *old_cursor_bo
>> = NULL;
>> int ret;
>> - struct dma_buf_map user_map;
>> struct dma_buf_map cursor_map;
>> void *user_ptr;
>> int size = 64*64*4;
>> @@ -599,11 +598,8 @@ static void qxl_cursor_atomic_update(struct
>> drm_plane *plane,
>> obj = fb->obj[0];
>> user_bo = gem_to_qxl_bo(obj);
>> - /* pinning is done in the prepare/cleanup framevbuffer */
>> - ret = qxl_bo_kmap_locked(user_bo, &user_map);
>> - if (ret)
>> - goto out_free_release;
>> - user_ptr = user_map.vaddr; /* TODO: Use mapping abstraction
>> properly */
>> + /* mapping is done in the prepare/cleanup framevbuffer */
>> + user_ptr = user_bo->map.vaddr; /* TODO: Use mapping
>> abstraction properly */
>> ret = qxl_alloc_bo_reserved(qdev, release,
>> sizeof(struct qxl_cursor) + size,
>> @@ -639,7 +635,6 @@ static void qxl_cursor_atomic_update(struct
>> drm_plane *plane,
>> cursor->chunk.data_size = size;
>> memcpy(cursor->chunk.data, user_ptr, size);
>> qxl_bo_kunmap_locked(cursor_bo);
>> - qxl_bo_kunmap_locked(user_bo);
>> cmd = (struct qxl_cursor_cmd *) qxl_release_map(qdev, release);
>> cmd->u.set.visible = 1;
>> @@ -778,6 +773,7 @@ static int qxl_plane_prepare_fb(struct drm_plane
>> *plane,
>> struct drm_gem_object *obj;
>> struct qxl_bo *user_bo;
>> struct qxl_surface surf;
>> + struct dma_buf_map unused;
>> if (!new_state->fb)
>> return 0;
>> @@ -815,7 +811,7 @@ static int qxl_plane_prepare_fb(struct drm_plane
>> *plane,
>> }
>> }
>> - return qxl_bo_pin(user_bo);
>> + return qxl_bo_kmap(user_bo, &unused);
>> }
>> static void qxl_plane_cleanup_fb(struct drm_plane *plane,
>> @@ -834,7 +830,7 @@ static void qxl_plane_cleanup_fb(struct drm_plane
>> *plane,
>> obj = old_state->fb->obj[0];
>> user_bo = gem_to_qxl_bo(obj);
>> - qxl_bo_unpin(user_bo);
>> + qxl_bo_kunmap(user_bo);
>> if (old_state->fb != plane->state->fb && user_bo->shadow) {
>> qxl_bo_unpin(user_bo->shadow);
>>
>
>
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel
>
--
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 #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: Thomas Zimmermann <tzimmermann@suse.de>
To: Gerd Hoffmann <kraxel@redhat.com>, dri-devel@lists.freedesktop.org
Cc: David Airlie <airlied@linux.ie>,
"open list:DRM DRIVER FOR QXL VIRTUAL GPU"
<spice-devel@lists.freedesktop.org>,
"open list:DRM DRIVER FOR QXL VIRTUAL GPU"
<virtualization@lists.linux-foundation.org>,
open list <linux-kernel@vger.kernel.org>,
Dave Airlie <airlied@redhat.com>
Subject: Re: [PATCH 09/10] drm/qxl: map/unmap framebuffers in prepare_fb+cleanup_fb callbacks.
Date: Tue, 16 Feb 2021 14:46:21 +0100 [thread overview]
Message-ID: <ab21d782-2627-7a68-8fab-0acfba416c86@suse.de> (raw)
In-Reply-To: <5baf096f-b1ee-46ba-5ee9-1c829b96e088@suse.de>
[-- Attachment #1.1.1: Type: text/plain, Size: 4603 bytes --]
Am 16.02.21 um 14:27 schrieb Thomas Zimmermann:
> Hi
>
> this is a shadow-buffered plane. Did you consider using the new helpers
> for shadow-buffered planes? They will map the user BO for you and
> provide the mapping in the plane state.
>
> From there, you should implement your own plane state on top of struct
> drm_shadow_plane_state, and also move all the other allocations and
> vmaps into prepare_fb and cleanup_fb. Most of this is not actually
> allowed in commit tails. All we'd have to do is to export the reset,
> duplicate and destroy code; similar to what
> __drm_atomic_helper_plane_reset() does.
AFAICT the cursor_bo is used to implement double buffering for the
cursor image.
Ideally, you can do what ast does: pre-allocate/vmap 2 BOs at the end of
the vram. Then pageflip between them in atomic_update(). Resolves all
the allocation and mapping headaches.
Best regards
Thomas
>
> Best regards
> Thomas
>
>
> Am 16.02.21 um 12:37 schrieb Gerd Hoffmann:
>> We don't have to map in atomic_update callback then,
>> making locking a bit less complicated.
>>
>> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
>> ---
>> drivers/gpu/drm/qxl/qxl_display.c | 14 +++++---------
>> 1 file changed, 5 insertions(+), 9 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/qxl/qxl_display.c
>> b/drivers/gpu/drm/qxl/qxl_display.c
>> index 7500560db8e4..39b8c5116d34 100644
>> --- a/drivers/gpu/drm/qxl/qxl_display.c
>> +++ b/drivers/gpu/drm/qxl/qxl_display.c
>> @@ -584,7 +584,6 @@ static void qxl_cursor_atomic_update(struct
>> drm_plane *plane,
>> struct drm_gem_object *obj;
>> struct qxl_bo *cursor_bo = NULL, *user_bo = NULL, *old_cursor_bo
>> = NULL;
>> int ret;
>> - struct dma_buf_map user_map;
>> struct dma_buf_map cursor_map;
>> void *user_ptr;
>> int size = 64*64*4;
>> @@ -599,11 +598,8 @@ static void qxl_cursor_atomic_update(struct
>> drm_plane *plane,
>> obj = fb->obj[0];
>> user_bo = gem_to_qxl_bo(obj);
>> - /* pinning is done in the prepare/cleanup framevbuffer */
>> - ret = qxl_bo_kmap_locked(user_bo, &user_map);
>> - if (ret)
>> - goto out_free_release;
>> - user_ptr = user_map.vaddr; /* TODO: Use mapping abstraction
>> properly */
>> + /* mapping is done in the prepare/cleanup framevbuffer */
>> + user_ptr = user_bo->map.vaddr; /* TODO: Use mapping
>> abstraction properly */
>> ret = qxl_alloc_bo_reserved(qdev, release,
>> sizeof(struct qxl_cursor) + size,
>> @@ -639,7 +635,6 @@ static void qxl_cursor_atomic_update(struct
>> drm_plane *plane,
>> cursor->chunk.data_size = size;
>> memcpy(cursor->chunk.data, user_ptr, size);
>> qxl_bo_kunmap_locked(cursor_bo);
>> - qxl_bo_kunmap_locked(user_bo);
>> cmd = (struct qxl_cursor_cmd *) qxl_release_map(qdev, release);
>> cmd->u.set.visible = 1;
>> @@ -778,6 +773,7 @@ static int qxl_plane_prepare_fb(struct drm_plane
>> *plane,
>> struct drm_gem_object *obj;
>> struct qxl_bo *user_bo;
>> struct qxl_surface surf;
>> + struct dma_buf_map unused;
>> if (!new_state->fb)
>> return 0;
>> @@ -815,7 +811,7 @@ static int qxl_plane_prepare_fb(struct drm_plane
>> *plane,
>> }
>> }
>> - return qxl_bo_pin(user_bo);
>> + return qxl_bo_kmap(user_bo, &unused);
>> }
>> static void qxl_plane_cleanup_fb(struct drm_plane *plane,
>> @@ -834,7 +830,7 @@ static void qxl_plane_cleanup_fb(struct drm_plane
>> *plane,
>> obj = old_state->fb->obj[0];
>> user_bo = gem_to_qxl_bo(obj);
>> - qxl_bo_unpin(user_bo);
>> + qxl_bo_kunmap(user_bo);
>> if (old_state->fb != plane->state->fb && user_bo->shadow) {
>> qxl_bo_unpin(user_bo->shadow);
>>
>
>
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel
>
--
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: 840 bytes --]
[-- Attachment #2: Type: text/plain, Size: 183 bytes --]
_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization
WARNING: multiple messages have this Message-ID (diff)
From: Thomas Zimmermann <tzimmermann@suse.de>
To: Gerd Hoffmann <kraxel@redhat.com>, dri-devel@lists.freedesktop.org
Cc: David Airlie <airlied@linux.ie>,
"open list:DRM DRIVER FOR QXL VIRTUAL GPU"
<spice-devel@lists.freedesktop.org>,
"open list:DRM DRIVER FOR QXL VIRTUAL GPU"
<virtualization@lists.linux-foundation.org>,
open list <linux-kernel@vger.kernel.org>,
Dave Airlie <airlied@redhat.com>
Subject: Re: [PATCH 09/10] drm/qxl: map/unmap framebuffers in prepare_fb+cleanup_fb callbacks.
Date: Tue, 16 Feb 2021 14:46:21 +0100 [thread overview]
Message-ID: <ab21d782-2627-7a68-8fab-0acfba416c86@suse.de> (raw)
In-Reply-To: <5baf096f-b1ee-46ba-5ee9-1c829b96e088@suse.de>
[-- Attachment #1.1.1: Type: text/plain, Size: 4603 bytes --]
Am 16.02.21 um 14:27 schrieb Thomas Zimmermann:
> Hi
>
> this is a shadow-buffered plane. Did you consider using the new helpers
> for shadow-buffered planes? They will map the user BO for you and
> provide the mapping in the plane state.
>
> From there, you should implement your own plane state on top of struct
> drm_shadow_plane_state, and also move all the other allocations and
> vmaps into prepare_fb and cleanup_fb. Most of this is not actually
> allowed in commit tails. All we'd have to do is to export the reset,
> duplicate and destroy code; similar to what
> __drm_atomic_helper_plane_reset() does.
AFAICT the cursor_bo is used to implement double buffering for the
cursor image.
Ideally, you can do what ast does: pre-allocate/vmap 2 BOs at the end of
the vram. Then pageflip between them in atomic_update(). Resolves all
the allocation and mapping headaches.
Best regards
Thomas
>
> Best regards
> Thomas
>
>
> Am 16.02.21 um 12:37 schrieb Gerd Hoffmann:
>> We don't have to map in atomic_update callback then,
>> making locking a bit less complicated.
>>
>> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
>> ---
>> drivers/gpu/drm/qxl/qxl_display.c | 14 +++++---------
>> 1 file changed, 5 insertions(+), 9 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/qxl/qxl_display.c
>> b/drivers/gpu/drm/qxl/qxl_display.c
>> index 7500560db8e4..39b8c5116d34 100644
>> --- a/drivers/gpu/drm/qxl/qxl_display.c
>> +++ b/drivers/gpu/drm/qxl/qxl_display.c
>> @@ -584,7 +584,6 @@ static void qxl_cursor_atomic_update(struct
>> drm_plane *plane,
>> struct drm_gem_object *obj;
>> struct qxl_bo *cursor_bo = NULL, *user_bo = NULL, *old_cursor_bo
>> = NULL;
>> int ret;
>> - struct dma_buf_map user_map;
>> struct dma_buf_map cursor_map;
>> void *user_ptr;
>> int size = 64*64*4;
>> @@ -599,11 +598,8 @@ static void qxl_cursor_atomic_update(struct
>> drm_plane *plane,
>> obj = fb->obj[0];
>> user_bo = gem_to_qxl_bo(obj);
>> - /* pinning is done in the prepare/cleanup framevbuffer */
>> - ret = qxl_bo_kmap_locked(user_bo, &user_map);
>> - if (ret)
>> - goto out_free_release;
>> - user_ptr = user_map.vaddr; /* TODO: Use mapping abstraction
>> properly */
>> + /* mapping is done in the prepare/cleanup framevbuffer */
>> + user_ptr = user_bo->map.vaddr; /* TODO: Use mapping
>> abstraction properly */
>> ret = qxl_alloc_bo_reserved(qdev, release,
>> sizeof(struct qxl_cursor) + size,
>> @@ -639,7 +635,6 @@ static void qxl_cursor_atomic_update(struct
>> drm_plane *plane,
>> cursor->chunk.data_size = size;
>> memcpy(cursor->chunk.data, user_ptr, size);
>> qxl_bo_kunmap_locked(cursor_bo);
>> - qxl_bo_kunmap_locked(user_bo);
>> cmd = (struct qxl_cursor_cmd *) qxl_release_map(qdev, release);
>> cmd->u.set.visible = 1;
>> @@ -778,6 +773,7 @@ static int qxl_plane_prepare_fb(struct drm_plane
>> *plane,
>> struct drm_gem_object *obj;
>> struct qxl_bo *user_bo;
>> struct qxl_surface surf;
>> + struct dma_buf_map unused;
>> if (!new_state->fb)
>> return 0;
>> @@ -815,7 +811,7 @@ static int qxl_plane_prepare_fb(struct drm_plane
>> *plane,
>> }
>> }
>> - return qxl_bo_pin(user_bo);
>> + return qxl_bo_kmap(user_bo, &unused);
>> }
>> static void qxl_plane_cleanup_fb(struct drm_plane *plane,
>> @@ -834,7 +830,7 @@ static void qxl_plane_cleanup_fb(struct drm_plane
>> *plane,
>> obj = old_state->fb->obj[0];
>> user_bo = gem_to_qxl_bo(obj);
>> - qxl_bo_unpin(user_bo);
>> + qxl_bo_kunmap(user_bo);
>> if (old_state->fb != plane->state->fb && user_bo->shadow) {
>> qxl_bo_unpin(user_bo->shadow);
>>
>
>
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel
>
--
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: 840 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
next prev parent reply other threads:[~2021-02-16 13:47 UTC|newest]
Thread overview: 61+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-16 11:37 [PATCH 00/10] drm/qxl: a collection of fixes Gerd Hoffmann
2021-02-16 11:37 ` [PATCH 01/10] drm/qxl: properly handle device init failures Gerd Hoffmann
2021-02-16 11:37 ` Gerd Hoffmann
2021-02-16 11:37 ` Gerd Hoffmann
2021-02-16 13:08 ` Thomas Zimmermann
2021-02-16 13:08 ` Thomas Zimmermann
2021-02-16 13:08 ` Thomas Zimmermann
2021-02-16 11:37 ` [PATCH 02/10] drm/qxl: more fence wait rework Gerd Hoffmann
2021-02-16 11:37 ` Gerd Hoffmann
2021-02-16 11:37 ` Gerd Hoffmann
2021-02-16 11:37 ` [PATCH 03/10] drm/qxl: use ttm bo priorities Gerd Hoffmann
2021-02-16 11:37 ` Gerd Hoffmann
2021-02-16 11:37 ` Gerd Hoffmann
2021-02-16 11:37 ` [PATCH 04/10] drm/qxl: fix lockdep issue in qxl_alloc_release_reserved Gerd Hoffmann
2021-02-16 11:37 ` Gerd Hoffmann
2021-02-16 11:37 ` Gerd Hoffmann
2021-02-16 11:37 ` [PATCH 05/10] drm/qxl: rename qxl_bo_kmap -> qxl_bo_kmap_locked Gerd Hoffmann
2021-02-16 11:37 ` Gerd Hoffmann
2021-02-16 11:37 ` Gerd Hoffmann
2021-02-16 13:14 ` Thomas Zimmermann
2021-02-16 13:14 ` Thomas Zimmermann
2021-02-16 13:14 ` Thomas Zimmermann
2021-02-16 11:37 ` [PATCH 06/10] drm/qxl: add qxl_bo_kmap/qxl_bo_kunmap Gerd Hoffmann
2021-02-16 11:37 ` Gerd Hoffmann
2021-02-16 11:37 ` Gerd Hoffmann
2021-02-16 13:17 ` Thomas Zimmermann
2021-02-16 13:17 ` Thomas Zimmermann
2021-02-16 13:17 ` Thomas Zimmermann
2021-02-16 11:37 ` [PATCH 07/10] drm/qxl: fix prime kmap Gerd Hoffmann
2021-02-16 11:37 ` Gerd Hoffmann
2021-02-16 11:37 ` Gerd Hoffmann
2021-02-16 13:16 ` Thomas Zimmermann
2021-02-16 13:16 ` Thomas Zimmermann
2021-02-16 13:16 ` Thomas Zimmermann
2021-02-16 11:37 ` [PATCH 08/10] drm/qxl: fix monitors object kmap Gerd Hoffmann
2021-02-16 11:37 ` Gerd Hoffmann
2021-02-16 11:37 ` Gerd Hoffmann
2021-02-16 13:18 ` Thomas Zimmermann
2021-02-16 13:18 ` Thomas Zimmermann
2021-02-16 13:18 ` Thomas Zimmermann
2021-02-16 11:37 ` [PATCH 09/10] drm/qxl: map/unmap framebuffers in prepare_fb+cleanup_fb callbacks Gerd Hoffmann
2021-02-16 11:37 ` Gerd Hoffmann
2021-02-16 11:37 ` Gerd Hoffmann
2021-02-16 13:27 ` Thomas Zimmermann
2021-02-16 13:27 ` Thomas Zimmermann
2021-02-16 13:27 ` Thomas Zimmermann
2021-02-16 13:46 ` Thomas Zimmermann [this message]
2021-02-16 13:46 ` Thomas Zimmermann
2021-02-16 13:46 ` Thomas Zimmermann
2021-02-17 10:02 ` Gerd Hoffmann
2021-02-17 10:02 ` Gerd Hoffmann
2021-02-17 10:02 ` Gerd Hoffmann
2021-02-17 10:23 ` Thomas Zimmermann
2021-02-17 10:23 ` Thomas Zimmermann
2021-02-17 10:23 ` Thomas Zimmermann
2021-02-16 11:37 ` [PATCH 10/10] drm/qxl: add lock asserts to qxl_bo_kmap_locked + qxl_bo_kunmap_locked Gerd Hoffmann
2021-02-16 11:37 ` Gerd Hoffmann
2021-02-16 11:37 ` Gerd Hoffmann
2021-02-16 13:30 ` Thomas Zimmermann
2021-02-16 13:30 ` Thomas Zimmermann
2021-02-16 13:30 ` Thomas Zimmermann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ab21d782-2627-7a68-8fab-0acfba416c86@suse.de \
--to=tzimmermann@suse.de \
--cc=airlied@linux.ie \
--cc=airlied@redhat.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=kraxel@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=spice-devel@lists.freedesktop.org \
--cc=virtualization@lists.linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.