From: Alyssa Rosenzweig <alyssa@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>,
Boris Brezillon <boris.brezillon@collabora.com>,
Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>,
Robin Murphy <robin.murphy@arm.com>
Subject: Re: [PATCH v3 5/7] drm/panfrost: Add a new ioctl to submit batches
Date: Fri, 2 Jul 2021 11:34:01 -0400 [thread overview]
Message-ID: <YN8x6ZaBdI5Cahuv@maud> (raw)
In-Reply-To: <e8f60552-5e7a-199e-7642-cdadf8c9a1a1@arm.com>
> Better, but I was hoping we can mostly delete panfrost_ioctl_submit(),
> leaving something along the lines of:
>
> static int panfrost_ioctl_submit(struct drm_device *dev, void *data,
> struct drm_file *file)
> {
> struct panfrost_submitqueue *queue;
> struct drm_panfrost_submit *args = data;
> struct drm_panfrost_job submit_args = {
> .head = args->jc,
> .bos = args->bo_handles,
> .in_syncs = args->in_syncs,
> .out_syncs = &args->out_sync, // FIXME
> .in_sync_count = args->in_sync_count,
> .out_sync_count = args->out_sync > 0 ? 1 : 0,
> .bo_count = args->bo_handle_count,
> .requirements = args->requirements
> };
> int ret;
>
> queue = panfrost_submitqueue_get(file->driver_priv, 0);
>
> ret = panfrost_submit_job(dev, file, queue, &submit_args,
> sizeof(u32), ...);
>
> return ret;
> }
>
> But obviously the out_sync part needs special handling as we can't just
> pass a kernel pointer in like that ;)
This, a dozen times this.
next prev parent reply other threads:[~2021-07-02 15:34 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-07-02 14:32 [PATCH v3 0/7] drm/panfrost: drm/panfrost: Add a new submit ioctl Boris Brezillon
2021-07-02 14:32 ` [PATCH v3 1/7] drm/panfrost: Pass a job to panfrost_{acquire, attach}_object_fences() Boris Brezillon
2021-07-02 14:32 ` [PATCH v3 2/7] drm/panfrost: Move the mappings collection out of panfrost_lookup_bos() Boris Brezillon
2021-07-02 14:32 ` [PATCH v3 3/7] drm/panfrost: Add BO access flags to relax dependencies between jobs Boris Brezillon
2021-07-02 14:32 ` [PATCH v3 4/7] drm/panfrost: Add the ability to create submit queues Boris Brezillon
2021-07-02 15:05 ` Steven Price
2021-07-02 15:49 ` Boris Brezillon
2021-07-02 16:01 ` Boris Brezillon
2021-07-02 14:32 ` [PATCH v3 5/7] drm/panfrost: Add a new ioctl to submit batches Boris Brezillon
2021-07-02 15:13 ` Alyssa Rosenzweig
2021-07-02 15:38 ` Boris Brezillon
2021-07-02 16:49 ` Alyssa Rosenzweig
2021-07-02 17:54 ` Boris Brezillon
2021-07-02 18:11 ` Boris Brezillon
2021-07-05 8:22 ` Steven Price
2021-07-05 8:43 ` Boris Brezillon
2021-07-05 8:51 ` Steven Price
2021-07-06 12:48 ` Alyssa Rosenzweig
2021-07-07 9:09 ` Steven Price
2021-07-02 15:31 ` Steven Price
2021-07-02 15:34 ` Alyssa Rosenzweig [this message]
2021-07-02 14:32 ` [PATCH v3 6/7] drm/panfrost: Advertise the SYNCOBJ_TIMELINE feature Boris Brezillon
2021-07-02 14:32 ` [PATCH v3 7/7] drm/panfrost: Bump minor version to reflect the feature additions Boris Brezillon
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=YN8x6ZaBdI5Cahuv@maud \
--to=alyssa@collabora.com \
--cc=alyssa.rosenzweig@collabora.com \
--cc=boris.brezillon@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox