From: "Zbigniew Kempczyński" <zbigniew.kempczynski@intel.com>
To: Jason Ekstrand <jason@jlekstrand.net>
Cc: Intel GFX <intel-gfx@lists.freedesktop.org>,
Maling list - DRI developers <dri-devel@lists.freedesktop.org>
Subject: Re: [Intel-gfx] [PATCH] drm/i915/gem: Drop relocation support on all new hardware (v6)
Date: Wed, 17 Mar 2021 16:06:44 +0100 [thread overview]
Message-ID: <20210317150644.GA108495@zkempczy-mobl2> (raw)
In-Reply-To: <CAOFGe95-ziVPXC4t-SvDKpQ30kTtUiu6R0-uq6dGeeehfHcdBw@mail.gmail.com>
On Wed, Mar 17, 2021 at 09:41:46AM -0500, Jason Ekstrand wrote:
> I should probably have said that the reviews are on v5 and it's very
> different in v6 so they should probably be considered dropped until
> re-confirmed.
You're checking relocation_count early in do_execbuffer() so imo there's
no option to pass execbuf with relocations now.
I keep my r-b.
--
Zbigniew
>
> On Wed, Mar 17, 2021 at 9:39 AM Jason Ekstrand <jason@jlekstrand.net> wrote:
> >
> > The Vulkan driver in Mesa for Intel hardware never uses relocations if
> > it's running on a version of i915 that supports at least softpin which
> > all versions of i915 supporting Gen12 do. On the OpenGL side, Gen12+ is
> > only supported by iris which never uses relocations. The older i965
> > driver in Mesa does use relocations but it only supports Intel hardware
> > through Gen11 and has been deprecated for all hardware Gen9+. The
> > compute driver also never uses relocations. This only leaves the media
> > driver which is supposed to be switching to softpin going forward.
> > Making softpin a requirement for all future hardware seems reasonable.
> >
> > There is one piece of hardware enabled by default in i915: RKL which was
> > enabled by e22fa6f0a976 which has not yet landed in drm-next so this
> > almost but not really a userspace API change for RKL. If it becomes a
> > problem, we can always add !IS_ROCKETLAKE(eb->i915) to the condition.
> >
> > Rejecting relocations starting with newer Gen12 platforms has the
> > benefit that we don't have to bother supporting it on platforms with
> > local memory. Given how much CPU touching of memory is required for
> > relocations, not having to do so on platforms where not all memory is
> > directly CPU-accessible carries significant advantages.
> >
> > v2 (Jason Ekstrand):
> > - Allow TGL-LP platforms as they've already shipped
> >
> > v3 (Jason Ekstrand):
> > - WARN_ON platforms with LMEM support in case the check is wrong
> >
> > v4 (Jason Ekstrand):
> > - Call out Rocket Lake in the commit message
> >
> > v5 (Jason Ekstrand):
> > - Drop the HAS_LMEM check as it's already covered by the version check
> >
> > v6 (Jason Ekstrand):
> > - Move the check to eb_validate_vma() with all the other exec_object
> > validation checks.
> >
> > Signed-off-by: Jason Ekstrand <jason@jlekstrand.net>
> > Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
> > Reviewed-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
> > ---
> > drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c | 7 +++++++
> > 1 file changed, 7 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> > index 99772f37bff60..c082fb0bef330 100644
> > --- a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> > +++ b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> > @@ -483,6 +483,13 @@ eb_validate_vma(struct i915_execbuffer *eb,
> > struct drm_i915_gem_exec_object2 *entry,
> > struct i915_vma *vma)
> > {
> > + /* Relocations are disallowed for all platforms after TGL-LP. This
> > + * also covers all platforms with local memory.
> > + */
> > + if (entry->relocation_count &&
> > + INTEL_GEN(eb->i915) >= 12 && !IS_TIGERLAKE(eb->i915))
> > + return -EINVAL;
> > +
> > if (unlikely(entry->flags & eb->invalid_flags))
> > return -EINVAL;
> >
> > --
> > 2.29.2
> >
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2021-03-17 15:06 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-15 14:34 [Intel-gfx] [PATCH 0/3] drm/i915: Drop legacy IOCTLs on new HW Jason Ekstrand
2021-03-15 14:34 ` [Intel-gfx] [PATCH 1/3] drm/i915/gem: Drop legacy execbuffer support (v2) Jason Ekstrand
2021-03-15 14:34 ` [Intel-gfx] [PATCH 2/3] drm/i915/gem: Drop relocation support on all new hardware (v5) Jason Ekstrand
2021-03-17 14:39 ` [Intel-gfx] [PATCH] drm/i915/gem: Drop relocation support on all new hardware (v6) Jason Ekstrand
2021-03-17 14:41 ` Jason Ekstrand
2021-03-17 15:06 ` Zbigniew Kempczyński [this message]
2021-03-15 14:34 ` [Intel-gfx] [PATCH 3/3] drm/i915: Disable pread/pwrite ioctl's for future platforms (v3) Jason Ekstrand
2021-03-15 15:45 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Drop legacy IOCTLs on new HW Patchwork
2021-03-15 15:46 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2021-03-16 5:31 ` [Intel-gfx] [PATCH 0/3] " Dixit, Ashutosh
2021-03-17 23:40 ` [Intel-gfx] [PATCH 0/5] drm/i915: Clean up some of the i915 uAPI (v6) Jason Ekstrand
2021-03-17 23:40 ` [Intel-gfx] [PATCH 1/5] drm/i915/gem: Drop legacy execbuffer support (v2) Jason Ekstrand
2021-03-17 23:40 ` [Intel-gfx] [PATCH 2/5] drm/i915/gem: Drop relocation support on all new hardware (v6) Jason Ekstrand
2021-03-17 23:40 ` [Intel-gfx] [PATCH 3/5] drm/i915: Disable pread/pwrite ioctl's for future platforms (v3) Jason Ekstrand
2021-03-18 13:27 ` Daniel Vetter
2021-03-17 23:40 ` [Intel-gfx] [PATCH 4/5] drm/i915: Drop the CONTEXT_CLONE API Jason Ekstrand
2021-03-18 10:19 ` Tvrtko Ursulin
2021-03-17 23:40 ` [Intel-gfx] [PATCH 5/5] drm/i915: Drop I915_CONTEXT_PARAM_RINGSIZE Jason Ekstrand
2021-03-22 7:30 ` [Intel-gfx] [drm/i915] 3ef784da89: drm:add_taint_for_CI[i915]] kernel test robot
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=20210317150644.GA108495@zkempczy-mobl2 \
--to=zbigniew.kempczynski@intel.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=jason@jlekstrand.net \
/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