From: Lang Yu <Lang.Yu@amd.com>
To: "Christian König" <ckoenig.leichtzumerken@gmail.com>
Cc: Alex Deucher <alexander.deucher@amd.com>,
Huang Rui <ray.huang@amd.com>,
Christian Koenig <christian.koenig@amd.com>,
amd-gfx@lists.freedesktop.org
Subject: Re: [PATCH] drm/amdgpu: reject secure submission on rings which don't support it
Date: Mon, 14 Mar 2022 17:22:59 +0800 [thread overview]
Message-ID: <Yi8Jc5BRPe0bGZlW@lang-desktop> (raw)
In-Reply-To: <6b9a2eed-b6b8-f0ea-0254-dc07f39d62f6@gmail.com>
On 03/14/ , Christian König wrote:
> Am 14.03.22 um 03:46 schrieb Lang Yu:
> > Only ring GFX, SDMA and VCN_DEC support secure submission at the moment.
> >
> > Signed-off-by: Lang Yu <Lang.Yu@amd.com>
>
> it would be nicer if we have that as flag in ring->funcs, but that way works
> for now as well.
Okay. I will add a flag in ring->funcs and send another patch. Thanks!
Regards,
Lang
> Reviewed-by: Christian König <christian.koenig@amd.com>
>
> Thanks,
> Christian.
>
> > ---
> > drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c | 4 ++--
> > drivers/gpu/drm/amd/amdgpu/amdgpu_ring.h | 8 ++++++++
> > 2 files changed, 10 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c
> > index bc1297dcdf97..840304691b92 100644
> > --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c
> > +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ib.c
> > @@ -166,8 +166,8 @@ int amdgpu_ib_schedule(struct amdgpu_ring *ring, unsigned num_ibs,
> > }
> > if ((ib->flags & AMDGPU_IB_FLAGS_SECURE) &&
> > - (ring->funcs->type == AMDGPU_RING_TYPE_COMPUTE)) {
> > - dev_err(adev->dev, "secure submissions not supported on compute rings\n");
> > + !amdgpu_ring_secure_submission_supported(ring)) {
> > + dev_err(adev->dev, "secure submissions not supported on ring <%s>\n", ring->name);
> > return -EINVAL;
> > }
> > diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ring.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_ring.h
> > index a8bed1b47899..3afe3d60e194 100644
> > --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ring.h
> > +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ring.h
> > @@ -363,6 +363,14 @@ static inline void amdgpu_ring_write_multiple(struct amdgpu_ring *ring,
> > ring->count_dw -= count_dw;
> > }
> > +static inline
> > +bool amdgpu_ring_secure_submission_supported(struct amdgpu_ring *ring)
> > +{
> > + return (ring->funcs->type == AMDGPU_RING_TYPE_GFX ||
> > + ring->funcs->type == AMDGPU_RING_TYPE_SDMA ||
> > + ring->funcs->type == AMDGPU_RING_TYPE_VCN_DEC);
> > +}
> > +
> > int amdgpu_ring_test_helper(struct amdgpu_ring *ring);
> > void amdgpu_debugfs_ring_init(struct amdgpu_device *adev,
>
prev parent reply other threads:[~2022-03-14 9:23 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-14 2:46 [PATCH] drm/amdgpu: reject secure submission on rings which don't support it Lang Yu
2022-03-14 7:53 ` Christian König
2022-03-14 9:22 ` Lang Yu [this message]
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=Yi8Jc5BRPe0bGZlW@lang-desktop \
--to=lang.yu@amd.com \
--cc=alexander.deucher@amd.com \
--cc=amd-gfx@lists.freedesktop.org \
--cc=christian.koenig@amd.com \
--cc=ckoenig.leichtzumerken@gmail.com \
--cc=ray.huang@amd.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.