From: Boris Brezillon <boris.brezillon@collabora.com>
To: Steven Price <steven.price@arm.com>
Cc: Jason Ekstrand <jason@jlekstrand.net>,
Tomeu Vizoso <tomeu.vizoso@collabora.com>,
dri-devel@lists.freedesktop.org, Rob Herring <robh+dt@kernel.org>,
Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>,
Robin Murphy <robin.murphy@arm.com>
Subject: Re: [PATCH v2 4/7] drm/panfrost: Add the ability to create submit queues
Date: Fri, 2 Jul 2021 12:43:20 +0200 [thread overview]
Message-ID: <20210702124320.1bd0f228@collabora.com> (raw)
In-Reply-To: <b277ce22-f2d2-35e5-30cd-c851a7896b44@arm.com>
On Fri, 2 Jul 2021 10:56:29 +0100
Steven Price <steven.price@arm.com> wrote:
> On 01/07/2021 10:12, Boris Brezillon wrote:
> > Needed to keep VkQueues isolated from each other.
> >
> > Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com>
>
> My Vulkan knowledge is limited so I'm not sure whether this is the right
> approach or not. In particular is it correct that an application can
> create a high priority queue which could affect other (normal priority)
> applications?
That's what msm does (with no extra CAPS check AFAICT), and the
freedreno driver can already create high priority queues if
PIPE_CONTEXT_HIGH_PRIORITY is passed. Not saying that's okay to allow
userspace to tweak the priority, but if that's a problem, other drivers
are in trouble too ;-).
>
> Also does it really make sense to allow user space to create an
> unlimited number of queues? It feels like an ideal way for an malicious
> application to waste kernel memory.
Same here, I see no limit on the number of queues the msm driver can
create. I can definitely pick an arbitrary limit of 2^16 (or 2^8 if
2^16 is too high) if you prefer, but I feel like there's plenty of ways
to force kernel allocations already, like allocating a gazillion of 4k
GEM buffers (cgroup can probably limit the total amount of memory
allocated, but you'd still have all gem-buf meta data in kernel memory).
>
> In terms of implementation it looks correct, but one comment below
>
> > ---
> > drivers/gpu/drm/panfrost/Makefile | 3 +-
> > drivers/gpu/drm/panfrost/panfrost_device.h | 2 +-
> > drivers/gpu/drm/panfrost/panfrost_drv.c | 69 ++++++++--
> > drivers/gpu/drm/panfrost/panfrost_job.c | 47 ++-----
> > drivers/gpu/drm/panfrost/panfrost_job.h | 9 +-
> > .../gpu/drm/panfrost/panfrost_submitqueue.c | 130 ++++++++++++++++++
> > .../gpu/drm/panfrost/panfrost_submitqueue.h | 27 ++++
> > include/uapi/drm/panfrost_drm.h | 17 +++
> > 8 files changed, 258 insertions(+), 46 deletions(-)
> > create mode 100644 drivers/gpu/drm/panfrost/panfrost_submitqueue.c
> > create mode 100644 drivers/gpu/drm/panfrost/panfrost_submitqueue.h
> >
> [...]
> > diff --git a/drivers/gpu/drm/panfrost/panfrost_submitqueue.c b/drivers/gpu/drm/panfrost/panfrost_submitqueue.c
> > new file mode 100644
> > index 000000000000..98050f7690df
> > --- /dev/null
> > +++ b/drivers/gpu/drm/panfrost/panfrost_submitqueue.c
> > @@ -0,0 +1,130 @@
> > +// SPDX-License-Identifier: GPL-2.0
> > +/* Copyright 2021 Collabora ltd. */
> > +
> > +#include <linux/idr.h>
> > +
> > +#include "panfrost_device.h"
> > +#include "panfrost_job.h"
> > +#include "panfrost_submitqueue.h"
> > +
> > +static enum drm_sched_priority
> > +to_sched_prio(enum panfrost_submitqueue_priority priority)
> > +{
> > + switch (priority) {
> > + case PANFROST_SUBMITQUEUE_PRIORITY_LOW:
> > + return DRM_SCHED_PRIORITY_MIN;
> > + case PANFROST_SUBMITQUEUE_PRIORITY_MEDIUM:
> > + return DRM_SCHED_PRIORITY_NORMAL;
> > + case PANFROST_SUBMITQUEUE_PRIORITY_HIGH:
> > + return DRM_SCHED_PRIORITY_HIGH;
> > + default:
> > + break;
> > + }
> > +
> > + return DRM_SCHED_PRIORITY_UNSET;
> > +}
> > +
> > +static void
> > +panfrost_submitqueue_cleanup(struct kref *ref)
> > +{
> > + struct panfrost_submitqueue *queue;
> > + unsigned int i;
> > +
> > + queue = container_of(ref, struct panfrost_submitqueue, refcount);
> > +
> > + for (i = 0; i < NUM_JOB_SLOTS; i++)
> > + drm_sched_entity_destroy(&queue->sched_entity[i]);
> > +
> > + /* Kill in-flight jobs */
> > + panfrost_job_kill_queue(queue);
> > +
> > + kfree(queue);
> > +}
> > +
> > +void panfrost_submitqueue_put(struct panfrost_submitqueue *queue)
> > +{
> > + if (!IS_ERR_OR_NULL(queue))
> > + kref_put(&queue->refcount, panfrost_submitqueue_cleanup);
> > +}
> > +
> > +struct panfrost_submitqueue *
> > +panfrost_submitqueue_create(struct panfrost_file_priv *ctx,
> > + enum panfrost_submitqueue_priority priority,
> > + u32 flags)
>
> If this function returned an 'int' we could simplify some code. So
> instead of returning the struct panfrost_submitqueue just return the ID
> (or negative error). The only caller (panfrost_ioctl_create_submitqueue)
> doesn't actually want the object just the ID and we can ditch the 'id'
> field from panfrost_submitqueue.
Sure, I can do that.
next prev parent reply other threads:[~2021-07-02 10:43 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-01 9:12 [PATCH v2 0/7] drm/panfrost: drm/panfrost: Add a new submit ioctl Boris Brezillon
2021-07-01 9:12 ` [PATCH v2 1/7] drm/panfrost: Pass a job to panfrost_{acquire, attach_object_fences}() Boris Brezillon
2021-07-02 9:42 ` [PATCH v2 1/7] drm/panfrost: Pass a job to panfrost_{acquire,attach_object_fences}() Steven Price
2021-07-01 9:12 ` [PATCH v2 2/7] drm/panfrost: Move the mappings collection out of panfrost_lookup_bos() Boris Brezillon
2021-07-02 9:43 ` Steven Price
2021-07-01 9:12 ` [PATCH v2 3/7] drm/panfrost: Add BO access flags to relax dependencies between jobs Boris Brezillon
2021-07-02 9:45 ` Steven Price
2021-07-01 9:12 ` [PATCH v2 4/7] drm/panfrost: Add the ability to create submit queues Boris Brezillon
2021-07-02 9:56 ` Steven Price
2021-07-02 10:43 ` Boris Brezillon [this message]
2021-07-02 10:55 ` Steven Price
2021-07-02 11:02 ` Daniel Stone
2021-07-02 13:58 ` Alyssa Rosenzweig
2021-07-02 14:09 ` Boris Brezillon
2021-07-02 10:08 ` Steven Price
2021-07-02 10:52 ` Boris Brezillon
2021-07-02 10:58 ` Steven Price
2021-07-02 11:01 ` Boris Brezillon
2021-07-01 9:12 ` [PATCH v2 5/7] drm/panfrost: Add a new ioctl to submit batches Boris Brezillon
2021-07-02 10:08 ` Steven Price
2021-07-01 9:12 ` [PATCH v2 6/7] drm/panfrost: Advertise the SYNCOBJ_TIMELINE feature Boris Brezillon
2021-07-02 10:08 ` Steven Price
2021-07-01 9:12 ` [PATCH v2 7/7] drm/panfrost: Bump minor version to reflect the feature additions Boris Brezillon
2021-07-02 10:08 ` Steven Price
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=20210702124320.1bd0f228@collabora.com \
--to=boris.brezillon@collabora.com \
--cc=alyssa.rosenzweig@collabora.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=jason@jlekstrand.net \
--cc=robh+dt@kernel.org \
--cc=robin.murphy@arm.com \
--cc=steven.price@arm.com \
--cc=tomeu.vizoso@collabora.com \
/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.