[Mesa-dev] [PATCH 11/27] radeonsi: add basic memory object support v2

Marek Olšák maraeo at gmail.com
Fri Jul 14 20:09:28 UTC 2017


On Thu, Jul 13, 2017 at 12:45 AM, Andres Rodriguez <andresx7 at gmail.com> wrote:
> From: Dave Airlie <airlied at redhat.com>
>
> v2: also consider gfx9 metadata
>
> Signed-off-by: Andres Rodriguez <andresx7 at gmail.com>
> ---
>  src/gallium/drivers/radeon/r600_pipe_common.h |   7 ++
>  src/gallium/drivers/radeon/r600_texture.c     | 102 ++++++++++++++++++++++++++
>  2 files changed, 109 insertions(+)
>
> diff --git a/src/gallium/drivers/radeon/r600_pipe_common.h b/src/gallium/drivers/radeon/r600_pipe_common.h
> index 5c761f3..c619b60 100644
> --- a/src/gallium/drivers/radeon/r600_pipe_common.h
> +++ b/src/gallium/drivers/radeon/r600_pipe_common.h
> @@ -377,6 +377,13 @@ union r600_mmio_counters {
>         unsigned array[0];
>  };
>
> +struct r600_memory_object {
> +       struct pipe_memory_object       b;
> +       struct pb_buffer                *buf;
> +       uint32_t                        stride;
> +       uint32_t                        offset;
> +};
> +
>  struct r600_common_screen {
>         struct pipe_screen              b;
>         struct radeon_winsys            *ws;
> diff --git a/src/gallium/drivers/radeon/r600_texture.c b/src/gallium/drivers/radeon/r600_texture.c
> index c633141..ab83467 100644
> --- a/src/gallium/drivers/radeon/r600_texture.c
> +++ b/src/gallium/drivers/radeon/r600_texture.c
> @@ -2831,10 +2831,112 @@ void evergreen_do_fast_color_clear(struct r600_common_context *rctx,
>         }
>  }
>
> +static struct pipe_memory_object *
> +r600_memobj_from_handle(struct pipe_screen *screen,
> +                       struct winsys_handle *whandle,
> +                       bool dedicated)
> +{
> +       struct r600_common_screen *rscreen = (struct r600_common_screen*)screen;
> +       struct r600_memory_object *memobj = CALLOC_STRUCT(r600_memory_object);
> +       struct pb_buffer *buf = NULL;
> +       uint32_t stride, offset;
> +
> +       if (!memobj)
> +               return NULL;
> +
> +       buf = rscreen->ws->buffer_from_handle(rscreen->ws, whandle,
> +                                             &stride, &offset);
> +       if (!buf)

memobj is leaked here

> +               return NULL;
> +
> +       memobj->b.dedicated = dedicated;
> +       memobj->buf = buf;
> +       memobj->stride = stride;
> +       memobj->offset = offset;
> +
> +       return (struct pipe_memory_object *)memobj;
> +}
> +
> +static void
> +r600_memobj_destroy(struct pipe_screen *screen,
> +                   struct pipe_memory_object *memobj)
> +{

r600_memory_object::buf should be unreferenced here.

> +       free(memobj);
> +}
> +
> +static struct pipe_resource *
> +r600_texture_from_memobj(struct pipe_screen *screen,
> +                        const struct pipe_resource *templ,
> +                        struct pipe_memory_object *_memobj,
> +                        uint64_t offset)
> +{
> +       int r;
> +       struct r600_common_screen *rscreen = (struct r600_common_screen*)screen;
> +       struct r600_memory_object *memobj = (struct r600_memory_object *)_memobj;
> +       struct r600_texture *rtex;
> +       struct radeon_surf surface;
> +       struct radeon_bo_metadata metadata = {};
> +       enum radeon_surf_mode array_mode;
> +       bool is_scanout;
> +
> +       if (memobj->b.dedicated) {
> +               rscreen->ws->buffer_get_metadata(memobj->buf, &metadata);
> +               r600_surface_import_metadata(rscreen, &surface, &metadata,
> +                                    &array_mode, &is_scanout);
> +       } else {
> +               /**
> +                * The bo metadata is unset for un-dedicated images. So we fall
> +                * back to linear. See answer to question 5 of the
> +                * VK_KHX_external_memory spec for some details.
> +                *
> +                * It is possible that this case isn't going to work if the
> +                * surface pitch isn't correctly aligned by default.
> +                *
> +                * In order to support it correctly we require multi-image
> +                * metadata to be syncrhonized between radv and radeonsi. The
> +                * semantics of associating multiple image metadata to a memory
> +                * object on the vulkan export side are not concretely defined
> +                * either.
> +                *
> +                * All the use cases we are aware of at the moment for memory
> +                * objects use dedicated allocations. So lets keep the initial
> +                * implementation simple.
> +                *
> +                * A possible alternative is to attempt to reconstruct the
> +                * tiling information when the TexParameter TEXTURE_TILING_EXT
> +                * is set.
> +                */
> +               array_mode = RADEON_SURF_MODE_LINEAR_ALIGNED;
> +               is_scanout = false;
> +
> +       }
> +
> +       r = r600_init_surface(rscreen, &surface, templ,
> +                             array_mode, memobj->stride,
> +                             offset, true, is_scanout,
> +                             false, false);
> +       if (r)
> +               return NULL;
> +

r600_texture_create_object doesn't increment the reference counter of
memobj->buf, so we have to do it here.

struct pb_buffer *buf = NULL;
pb_reference(&buf, memobj->buf);

> +       rtex = r600_texture_create_object(screen, templ, memobj->buf, &surface);
> +       if (!rtex)

{
       pb_reference(&buf, NULL);

> +               return NULL;

}

> +
> +       rtex->resource.b.is_shared = true;

external_usage should be set too:

rtex->resource.external_usage = PIPE_HANDLE_USAGE_READ_WRITE;

Marek


More information about the mesa-dev mailing list