diff mbox series

drm/i915/gem: Drop relocation support on all new hardware (v4)

Message ID 20210311181733.1048640-1-jason@jlekstrand.net (mailing list archive)
State New, archived
Headers show
Series drm/i915/gem: Drop relocation support on all new hardware (v4) | expand

Commit Message

Jason Ekstrand March 11, 2021, 6:17 p.m. UTC
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

Signed-off-by: Jason Ekstrand <jason@jlekstrand.net>
Acked-by: Keith Packard <keithp@keithp.com>
Cc: Dave Airlie <airlied@redhat.com>
Cc: Daniel Vetter <daniel.vetter@intel.com>
---
 drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

Comments

Zbigniew Kempczyński March 12, 2021, 9:28 a.m. UTC | #1
On Thu, Mar 11, 2021 at 12:17:33PM -0600, Jason Ekstrand 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
> 
> Signed-off-by: Jason Ekstrand <jason@jlekstrand.net>
> Acked-by: Keith Packard <keithp@keithp.com>
> Cc: Dave Airlie <airlied@redhat.com>
> Cc: Daniel Vetter <daniel.vetter@intel.com>
> ---
>  drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c | 15 ++++++++++++---
>  1 file changed, 12 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> index 99772f37bff60..b02dbd16bfa03 100644
> --- a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> +++ b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> @@ -1764,7 +1764,8 @@ eb_relocate_vma_slow(struct i915_execbuffer *eb, struct eb_vma *ev)
>  	return err;
>  }
>  
> -static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
> +static int check_relocations(const struct i915_execbuffer *eb,
> +			     const struct drm_i915_gem_exec_object2 *entry)
>  {
>  	const char __user *addr, *end;
>  	unsigned long size;
> @@ -1774,6 +1775,14 @@ static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
>  	if (size == 0)
>  		return 0;
>  
> +	/* Relocations are disallowed for all platforms after TGL-LP */
> +	if (INTEL_GEN(eb->i915) >= 12 && !IS_TIGERLAKE(eb->i915))
> +		return -EINVAL;
> +
> +	/* All discrete memory platforms are Gen12 or above */
> +	if (WARN_ON(HAS_LMEM(eb->i915)))
> +		return -EINVAL;
> +

Looks good IMO, I've tested it with upcoming gem_has_relocation() IGT check.

Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>

--
Zbigniew


>  	if (size > N_RELOC(ULONG_MAX))
>  		return -EINVAL;
>  
> @@ -1807,7 +1816,7 @@ static int eb_copy_relocations(const struct i915_execbuffer *eb)
>  		if (nreloc == 0)
>  			continue;
>  
> -		err = check_relocations(&eb->exec[i]);
> +		err = check_relocations(eb, &eb->exec[i]);
>  		if (err)
>  			goto err;
>  
> @@ -1880,7 +1889,7 @@ static int eb_prefault_relocations(const struct i915_execbuffer *eb)
>  	for (i = 0; i < count; i++) {
>  		int err;
>  
> -		err = check_relocations(&eb->exec[i]);
> +		err = check_relocations(eb, &eb->exec[i]);
>  		if (err)
>  			return err;
>  	}
> -- 
> 2.29.2
> 
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx
Tvrtko Ursulin March 12, 2021, 9:50 a.m. UTC | #2
On 11/03/2021 18:17, Jason Ekstrand 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
> 
> Signed-off-by: Jason Ekstrand <jason@jlekstrand.net>
> Acked-by: Keith Packard <keithp@keithp.com>
> Cc: Dave Airlie <airlied@redhat.com>
> Cc: Daniel Vetter <daniel.vetter@intel.com>
> ---
>   drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c | 15 ++++++++++++---
>   1 file changed, 12 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> index 99772f37bff60..b02dbd16bfa03 100644
> --- a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> +++ b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> @@ -1764,7 +1764,8 @@ eb_relocate_vma_slow(struct i915_execbuffer *eb, struct eb_vma *ev)
>   	return err;
>   }
>   
> -static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
> +static int check_relocations(const struct i915_execbuffer *eb,
> +			     const struct drm_i915_gem_exec_object2 *entry)
>   {
>   	const char __user *addr, *end;
>   	unsigned long size;
> @@ -1774,6 +1775,14 @@ static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
>   	if (size == 0)
>   		return 0;
>   
> +	/* Relocations are disallowed for all platforms after TGL-LP */
> +	if (INTEL_GEN(eb->i915) >= 12 && !IS_TIGERLAKE(eb->i915))
> +		return -EINVAL;

I still recommend ENODEV as more inline with our established error 
codes. (Platform does not support vs dear userspace you messed up your 
flags, modes, whatever.)

> +
> +	/* All discrete memory platforms are Gen12 or above */
> +	if (WARN_ON(HAS_LMEM(eb->i915)))
> +		return -EINVAL;

What was the conclusion on value of supporting fake lmem?

Regards,

Tvrtko

> +
>   	if (size > N_RELOC(ULONG_MAX))
>   		return -EINVAL;
>   
> @@ -1807,7 +1816,7 @@ static int eb_copy_relocations(const struct i915_execbuffer *eb)
>   		if (nreloc == 0)
>   			continue;
>   
> -		err = check_relocations(&eb->exec[i]);
> +		err = check_relocations(eb, &eb->exec[i]);
>   		if (err)
>   			goto err;
>   
> @@ -1880,7 +1889,7 @@ static int eb_prefault_relocations(const struct i915_execbuffer *eb)
>   	for (i = 0; i < count; i++) {
>   		int err;
>   
> -		err = check_relocations(&eb->exec[i]);
> +		err = check_relocations(eb, &eb->exec[i]);
>   		if (err)
>   			return err;
>   	}
>
Matthew Auld March 12, 2021, 10:56 a.m. UTC | #3
On Fri, 12 Mar 2021 at 09:50, Tvrtko Ursulin
<tvrtko.ursulin@linux.intel.com> wrote:
>
>
> On 11/03/2021 18:17, Jason Ekstrand 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
> >
> > Signed-off-by: Jason Ekstrand <jason@jlekstrand.net>
> > Acked-by: Keith Packard <keithp@keithp.com>
> > Cc: Dave Airlie <airlied@redhat.com>
> > Cc: Daniel Vetter <daniel.vetter@intel.com>
> > ---
> >   drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c | 15 ++++++++++++---
> >   1 file changed, 12 insertions(+), 3 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> > index 99772f37bff60..b02dbd16bfa03 100644
> > --- a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> > +++ b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> > @@ -1764,7 +1764,8 @@ eb_relocate_vma_slow(struct i915_execbuffer *eb, struct eb_vma *ev)
> >       return err;
> >   }
> >
> > -static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
> > +static int check_relocations(const struct i915_execbuffer *eb,
> > +                          const struct drm_i915_gem_exec_object2 *entry)
> >   {
> >       const char __user *addr, *end;
> >       unsigned long size;
> > @@ -1774,6 +1775,14 @@ static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
> >       if (size == 0)
> >               return 0;
> >
> > +     /* Relocations are disallowed for all platforms after TGL-LP */
> > +     if (INTEL_GEN(eb->i915) >= 12 && !IS_TIGERLAKE(eb->i915))
> > +             return -EINVAL;
>
> I still recommend ENODEV as more inline with our established error
> codes. (Platform does not support vs dear userspace you messed up your
> flags, modes, whatever.)
>
> > +
> > +     /* All discrete memory platforms are Gen12 or above */
> > +     if (WARN_ON(HAS_LMEM(eb->i915)))
> > +             return -EINVAL;
>
> What was the conclusion on value of supporting fake lmem?

From the previous thread, nothing is currently using it, we did have a
dedicated machine in CI but that has been gone for some months it
seems, so it might already be broken. Also its use was limited only to
the live selftests, which can't even hit this path. The plan was to
eventually remove it, since supporting both real and fake lmem in the
same tree is likely more effort than it's worth.

>
> Regards,
>
> Tvrtko
>
> > +
> >       if (size > N_RELOC(ULONG_MAX))
> >               return -EINVAL;
> >
> > @@ -1807,7 +1816,7 @@ static int eb_copy_relocations(const struct i915_execbuffer *eb)
> >               if (nreloc == 0)
> >                       continue;
> >
> > -             err = check_relocations(&eb->exec[i]);
> > +             err = check_relocations(eb, &eb->exec[i]);
> >               if (err)
> >                       goto err;
> >
> > @@ -1880,7 +1889,7 @@ static int eb_prefault_relocations(const struct i915_execbuffer *eb)
> >       for (i = 0; i < count; i++) {
> >               int err;
> >
> > -             err = check_relocations(&eb->exec[i]);
> > +             err = check_relocations(eb, &eb->exec[i]);
> >               if (err)
> >                       return err;
> >       }
> >
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx
Maarten Lankhorst March 12, 2021, 11:33 a.m. UTC | #4
Op 2021-03-12 om 11:56 schreef Matthew Auld:
> On Fri, 12 Mar 2021 at 09:50, Tvrtko Ursulin
> <tvrtko.ursulin@linux.intel.com> wrote:
>>
>> On 11/03/2021 18:17, Jason Ekstrand 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
>>>
>>> Signed-off-by: Jason Ekstrand <jason@jlekstrand.net>
>>> Acked-by: Keith Packard <keithp@keithp.com>
>>> Cc: Dave Airlie <airlied@redhat.com>
>>> Cc: Daniel Vetter <daniel.vetter@intel.com>
>>> ---
>>>   drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c | 15 ++++++++++++---
>>>   1 file changed, 12 insertions(+), 3 deletions(-)
>>>
>>> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
>>> index 99772f37bff60..b02dbd16bfa03 100644
>>> --- a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
>>> +++ b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
>>> @@ -1764,7 +1764,8 @@ eb_relocate_vma_slow(struct i915_execbuffer *eb, struct eb_vma *ev)
>>>       return err;
>>>   }
>>>
>>> -static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
>>> +static int check_relocations(const struct i915_execbuffer *eb,
>>> +                          const struct drm_i915_gem_exec_object2 *entry)
>>>   {
>>>       const char __user *addr, *end;
>>>       unsigned long size;
>>> @@ -1774,6 +1775,14 @@ static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
>>>       if (size == 0)
>>>               return 0;
>>>
>>> +     /* Relocations are disallowed for all platforms after TGL-LP */
>>> +     if (INTEL_GEN(eb->i915) >= 12 && !IS_TIGERLAKE(eb->i915))
>>> +             return -EINVAL;
>> I still recommend ENODEV as more inline with our established error
>> codes. (Platform does not support vs dear userspace you messed up your
>> flags, modes, whatever.)
>>
>>> +
>>> +     /* All discrete memory platforms are Gen12 or above */
>>> +     if (WARN_ON(HAS_LMEM(eb->i915)))
>>> +             return -EINVAL;
>> What was the conclusion on value of supporting fake lmem?
> >From the previous thread, nothing is currently using it, we did have a
> dedicated machine in CI but that has been gone for some months it
> seems, so it might already be broken. Also its use was limited only to
> the live selftests, which can't even hit this path. The plan was to
> eventually remove it, since supporting both real and fake lmem in the
> same tree is likely more effort than it's worth.

I think -EINVAL is fine, but not against -ENODEV either, up to author imo.

Reviewed-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Tvrtko Ursulin March 12, 2021, 11:47 a.m. UTC | #5
On 12/03/2021 10:56, Matthew Auld wrote:
> On Fri, 12 Mar 2021 at 09:50, Tvrtko Ursulin
> <tvrtko.ursulin@linux.intel.com> wrote:
>>
>>
>> On 11/03/2021 18:17, Jason Ekstrand 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
>>>
>>> Signed-off-by: Jason Ekstrand <jason@jlekstrand.net>
>>> Acked-by: Keith Packard <keithp@keithp.com>
>>> Cc: Dave Airlie <airlied@redhat.com>
>>> Cc: Daniel Vetter <daniel.vetter@intel.com>
>>> ---
>>>    drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c | 15 ++++++++++++---
>>>    1 file changed, 12 insertions(+), 3 deletions(-)
>>>
>>> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
>>> index 99772f37bff60..b02dbd16bfa03 100644
>>> --- a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
>>> +++ b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
>>> @@ -1764,7 +1764,8 @@ eb_relocate_vma_slow(struct i915_execbuffer *eb, struct eb_vma *ev)
>>>        return err;
>>>    }
>>>
>>> -static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
>>> +static int check_relocations(const struct i915_execbuffer *eb,
>>> +                          const struct drm_i915_gem_exec_object2 *entry)
>>>    {
>>>        const char __user *addr, *end;
>>>        unsigned long size;
>>> @@ -1774,6 +1775,14 @@ static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
>>>        if (size == 0)
>>>                return 0;
>>>
>>> +     /* Relocations are disallowed for all platforms after TGL-LP */
>>> +     if (INTEL_GEN(eb->i915) >= 12 && !IS_TIGERLAKE(eb->i915))
>>> +             return -EINVAL;
>>
>> I still recommend ENODEV as more inline with our established error
>> codes. (Platform does not support vs dear userspace you messed up your
>> flags, modes, whatever.)
>>
>>> +
>>> +     /* All discrete memory platforms are Gen12 or above */
>>> +     if (WARN_ON(HAS_LMEM(eb->i915)))
>>> +             return -EINVAL;
>>
>> What was the conclusion on value of supporting fake lmem?
> 
>>From the previous thread, nothing is currently using it, we did have a
> dedicated machine in CI but that has been gone for some months it
> seems, so it might already be broken. Also its use was limited only to
> the live selftests, which can't even hit this path. The plan was to
> eventually remove it, since supporting both real and fake lmem in the
> same tree is likely more effort than it's worth.

If I understand correctly you are saying it is safe to not have this 
check even if fake lmem is removed later? Presumably since there is no 
way to place an object into lmem in upstream from userspace, hence 
execbuf cannot use any?

Regards,

Tvrtko
Tvrtko Ursulin March 12, 2021, 11:52 a.m. UTC | #6
On 12/03/2021 11:33, Maarten Lankhorst wrote:
> Op 2021-03-12 om 11:56 schreef Matthew Auld:
>> On Fri, 12 Mar 2021 at 09:50, Tvrtko Ursulin
>> <tvrtko.ursulin@linux.intel.com> wrote:
>>>
>>> On 11/03/2021 18:17, Jason Ekstrand 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
>>>>
>>>> Signed-off-by: Jason Ekstrand <jason@jlekstrand.net>
>>>> Acked-by: Keith Packard <keithp@keithp.com>
>>>> Cc: Dave Airlie <airlied@redhat.com>
>>>> Cc: Daniel Vetter <daniel.vetter@intel.com>
>>>> ---
>>>>    drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c | 15 ++++++++++++---
>>>>    1 file changed, 12 insertions(+), 3 deletions(-)
>>>>
>>>> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
>>>> index 99772f37bff60..b02dbd16bfa03 100644
>>>> --- a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
>>>> +++ b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
>>>> @@ -1764,7 +1764,8 @@ eb_relocate_vma_slow(struct i915_execbuffer *eb, struct eb_vma *ev)
>>>>        return err;
>>>>    }
>>>>
>>>> -static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
>>>> +static int check_relocations(const struct i915_execbuffer *eb,
>>>> +                          const struct drm_i915_gem_exec_object2 *entry)
>>>>    {
>>>>        const char __user *addr, *end;
>>>>        unsigned long size;
>>>> @@ -1774,6 +1775,14 @@ static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
>>>>        if (size == 0)
>>>>                return 0;
>>>>
>>>> +     /* Relocations are disallowed for all platforms after TGL-LP */
>>>> +     if (INTEL_GEN(eb->i915) >= 12 && !IS_TIGERLAKE(eb->i915))
>>>> +             return -EINVAL;
>>> I still recommend ENODEV as more inline with our established error
>>> codes. (Platform does not support vs dear userspace you messed up your
>>> flags, modes, whatever.)
>>>
>>>> +
>>>> +     /* All discrete memory platforms are Gen12 or above */
>>>> +     if (WARN_ON(HAS_LMEM(eb->i915)))
>>>> +             return -EINVAL;
>>> What was the conclusion on value of supporting fake lmem?
>> >From the previous thread, nothing is currently using it, we did have a
>> dedicated machine in CI but that has been gone for some months it
>> seems, so it might already be broken. Also its use was limited only to
>> the live selftests, which can't even hit this path. The plan was to
>> eventually remove it, since supporting both real and fake lmem in the
>> same tree is likely more effort than it's worth.
> 
> I think -EINVAL is fine, but not against -ENODEV either, up to author imo.

It's pretty well established in our code that ENODEV is used when API is 
used on a platform which does not support or implement it.

Arguably relocations are a grey area since they can be supported but we 
don't want to. So perhaps ENOTSUPP would also work. I just don't see yet 
another overload of EINVAL is the ideal choice.

Regards,

Tvrtko
Matthew Auld March 12, 2021, 12:16 p.m. UTC | #7
On Fri, 12 Mar 2021 at 11:47, Tvrtko Ursulin
<tvrtko.ursulin@linux.intel.com> wrote:
>
>
> On 12/03/2021 10:56, Matthew Auld wrote:
> > On Fri, 12 Mar 2021 at 09:50, Tvrtko Ursulin
> > <tvrtko.ursulin@linux.intel.com> wrote:
> >>
> >>
> >> On 11/03/2021 18:17, Jason Ekstrand 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
> >>>
> >>> Signed-off-by: Jason Ekstrand <jason@jlekstrand.net>
> >>> Acked-by: Keith Packard <keithp@keithp.com>
> >>> Cc: Dave Airlie <airlied@redhat.com>
> >>> Cc: Daniel Vetter <daniel.vetter@intel.com>
> >>> ---
> >>>    drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c | 15 ++++++++++++---
> >>>    1 file changed, 12 insertions(+), 3 deletions(-)
> >>>
> >>> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> >>> index 99772f37bff60..b02dbd16bfa03 100644
> >>> --- a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> >>> +++ b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> >>> @@ -1764,7 +1764,8 @@ eb_relocate_vma_slow(struct i915_execbuffer *eb, struct eb_vma *ev)
> >>>        return err;
> >>>    }
> >>>
> >>> -static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
> >>> +static int check_relocations(const struct i915_execbuffer *eb,
> >>> +                          const struct drm_i915_gem_exec_object2 *entry)
> >>>    {
> >>>        const char __user *addr, *end;
> >>>        unsigned long size;
> >>> @@ -1774,6 +1775,14 @@ static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
> >>>        if (size == 0)
> >>>                return 0;
> >>>
> >>> +     /* Relocations are disallowed for all platforms after TGL-LP */
> >>> +     if (INTEL_GEN(eb->i915) >= 12 && !IS_TIGERLAKE(eb->i915))
> >>> +             return -EINVAL;
> >>
> >> I still recommend ENODEV as more inline with our established error
> >> codes. (Platform does not support vs dear userspace you messed up your
> >> flags, modes, whatever.)
> >>
> >>> +
> >>> +     /* All discrete memory platforms are Gen12 or above */
> >>> +     if (WARN_ON(HAS_LMEM(eb->i915)))
> >>> +             return -EINVAL;
> >>
> >> What was the conclusion on value of supporting fake lmem?
> >
> >>From the previous thread, nothing is currently using it, we did have a
> > dedicated machine in CI but that has been gone for some months it
> > seems, so it might already be broken. Also its use was limited only to
> > the live selftests, which can't even hit this path. The plan was to
> > eventually remove it, since supporting both real and fake lmem in the
> > same tree is likely more effort than it's worth.
>
> If I understand correctly you are saying it is safe to not have this
> check even if fake lmem is removed later? Presumably since there is no
> way to place an object into lmem in upstream from userspace, hence
> execbuf cannot use any?

The current usage is gated behind setting i915_selftest.live < 0 (when
loading the driver, run the live selfests and then exit module probe).
So for this and pread/pwrite, or any uAPI stuff we shouldn't have to
worry about fake lmem.

>
> Regards,
>
> Tvrtko
Jason Ekstrand March 12, 2021, 2:52 p.m. UTC | #8
On Fri, Mar 12, 2021 at 6:17 AM Matthew Auld
<matthew.william.auld@gmail.com> wrote:
>
> On Fri, 12 Mar 2021 at 11:47, Tvrtko Ursulin
> <tvrtko.ursulin@linux.intel.com> wrote:
> >
> >
> > On 12/03/2021 10:56, Matthew Auld wrote:
> > > On Fri, 12 Mar 2021 at 09:50, Tvrtko Ursulin
> > > <tvrtko.ursulin@linux.intel.com> wrote:
> > >>
> > >>
> > >> On 11/03/2021 18:17, Jason Ekstrand 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
> > >>>
> > >>> Signed-off-by: Jason Ekstrand <jason@jlekstrand.net>
> > >>> Acked-by: Keith Packard <keithp@keithp.com>
> > >>> Cc: Dave Airlie <airlied@redhat.com>
> > >>> Cc: Daniel Vetter <daniel.vetter@intel.com>
> > >>> ---
> > >>>    drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c | 15 ++++++++++++---
> > >>>    1 file changed, 12 insertions(+), 3 deletions(-)
> > >>>
> > >>> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> > >>> index 99772f37bff60..b02dbd16bfa03 100644
> > >>> --- a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> > >>> +++ b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
> > >>> @@ -1764,7 +1764,8 @@ eb_relocate_vma_slow(struct i915_execbuffer *eb, struct eb_vma *ev)
> > >>>        return err;
> > >>>    }
> > >>>
> > >>> -static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
> > >>> +static int check_relocations(const struct i915_execbuffer *eb,
> > >>> +                          const struct drm_i915_gem_exec_object2 *entry)
> > >>>    {
> > >>>        const char __user *addr, *end;
> > >>>        unsigned long size;
> > >>> @@ -1774,6 +1775,14 @@ static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
> > >>>        if (size == 0)
> > >>>                return 0;
> > >>>
> > >>> +     /* Relocations are disallowed for all platforms after TGL-LP */
> > >>> +     if (INTEL_GEN(eb->i915) >= 12 && !IS_TIGERLAKE(eb->i915))
> > >>> +             return -EINVAL;
> > >>
> > >> I still recommend ENODEV as more inline with our established error
> > >> codes. (Platform does not support vs dear userspace you messed up your
> > >> flags, modes, whatever.)

I don't know that I care that much what color we paint this shed.  I
just want it decided so we can all move on.  Here's a few comments:

 -ENODEV, at least based on the DRM error code docs doesn't make much
sense to me because the device is very much still there, you just did
something wrong.

 -EOPNOTSUPP I could see but the operation of execbuf is very much
supported, just not with this set of parameters.  This makes sense to
me for the removal of pread/pwrite but not here.

 -EINVAL is always a correct choice but tells you nothing.  On the
other hand, this is what's returned by drm_invalid_op which is what we
use when we entirely delete a feature.

As someone who has spent way too much of their life trying to figure
out why execbuffer is returning -EINVAL, I really don't think one more
makes it any worse.  If anything, -EINVAL has the advantage that you
can smash some #defines at the top of the file and get dmesg stuff
which can be pretty useful.

In any case, could we please pick a color so I can send a, hopefully
final, new version. :-)

> > >>> +
> > >>> +     /* All discrete memory platforms are Gen12 or above */
> > >>> +     if (WARN_ON(HAS_LMEM(eb->i915)))
> > >>> +             return -EINVAL;
> > >>
> > >> What was the conclusion on value of supporting fake lmem?
> > >
> > >>From the previous thread, nothing is currently using it, we did have a
> > > dedicated machine in CI but that has been gone for some months it
> > > seems, so it might already be broken. Also its use was limited only to
> > > the live selftests, which can't even hit this path. The plan was to
> > > eventually remove it, since supporting both real and fake lmem in the
> > > same tree is likely more effort than it's worth.
> >
> > If I understand correctly you are saying it is safe to not have this
> > check even if fake lmem is removed later? Presumably since there is no
> > way to place an object into lmem in upstream from userspace, hence
> > execbuf cannot use any?
>
> The current usage is gated behind setting i915_selftest.live < 0 (when
> loading the driver, run the live selfests and then exit module probe).
> So for this and pread/pwrite, or any uAPI stuff we shouldn't have to
> worry about fake lmem.

Ok, I'll drop all my WARN_ON(HAS_LMEM()).  I thought it was a nice bit
of extra documentation and safety but others seem to think it's just
clutter.  Fine with me.  I'll just update the comment on the first
check to point out that it also covers all LMEM platforms.

--Jason
Tvrtko Ursulin March 12, 2021, 3:20 p.m. UTC | #9
On 12/03/2021 14:52, Jason Ekstrand wrote:
> On Fri, Mar 12, 2021 at 6:17 AM Matthew Auld
> <matthew.william.auld@gmail.com> wrote:
>>
>> On Fri, 12 Mar 2021 at 11:47, Tvrtko Ursulin
>> <tvrtko.ursulin@linux.intel.com> wrote:
>>>
>>>
>>> On 12/03/2021 10:56, Matthew Auld wrote:
>>>> On Fri, 12 Mar 2021 at 09:50, Tvrtko Ursulin
>>>> <tvrtko.ursulin@linux.intel.com> wrote:
>>>>>
>>>>>
>>>>> On 11/03/2021 18:17, Jason Ekstrand 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
>>>>>>
>>>>>> Signed-off-by: Jason Ekstrand <jason@jlekstrand.net>
>>>>>> Acked-by: Keith Packard <keithp@keithp.com>
>>>>>> Cc: Dave Airlie <airlied@redhat.com>
>>>>>> Cc: Daniel Vetter <daniel.vetter@intel.com>
>>>>>> ---
>>>>>>     drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c | 15 ++++++++++++---
>>>>>>     1 file changed, 12 insertions(+), 3 deletions(-)
>>>>>>
>>>>>> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
>>>>>> index 99772f37bff60..b02dbd16bfa03 100644
>>>>>> --- a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
>>>>>> +++ b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
>>>>>> @@ -1764,7 +1764,8 @@ eb_relocate_vma_slow(struct i915_execbuffer *eb, struct eb_vma *ev)
>>>>>>         return err;
>>>>>>     }
>>>>>>
>>>>>> -static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
>>>>>> +static int check_relocations(const struct i915_execbuffer *eb,
>>>>>> +                          const struct drm_i915_gem_exec_object2 *entry)
>>>>>>     {
>>>>>>         const char __user *addr, *end;
>>>>>>         unsigned long size;
>>>>>> @@ -1774,6 +1775,14 @@ static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
>>>>>>         if (size == 0)
>>>>>>                 return 0;
>>>>>>
>>>>>> +     /* Relocations are disallowed for all platforms after TGL-LP */
>>>>>> +     if (INTEL_GEN(eb->i915) >= 12 && !IS_TIGERLAKE(eb->i915))
>>>>>> +             return -EINVAL;
>>>>>
>>>>> I still recommend ENODEV as more inline with our established error
>>>>> codes. (Platform does not support vs dear userspace you messed up your
>>>>> flags, modes, whatever.)
> 
> I don't know that I care that much what color we paint this shed.  I
> just want it decided so we can all move on.  Here's a few comments:
> 
>   -ENODEV, at least based on the DRM error code docs doesn't make much
> sense to me because the device is very much still there, you just did
> something wrong.
> 
>   -EOPNOTSUPP I could see but the operation of execbuf is very much
> supported, just not with this set of parameters.  This makes sense to
> me for the removal of pread/pwrite but not here.
> 
>   -EINVAL is always a correct choice but tells you nothing.  On the
> other hand, this is what's returned by drm_invalid_op which is what we
> use when we entirely delete a feature.
> 
> As someone who has spent way too much of their life trying to figure
> out why execbuffer is returning -EINVAL, I really don't think one more
> makes it any worse.  If anything, -EINVAL has the advantage that you
> can smash some #defines at the top of the file and get dmesg stuff
> which can be pretty useful.
> 
> In any case, could we please pick a color so I can send a, hopefully
> final, new version. :-)

EINVAL is not the end of the world for me and you have some r-bs and 
acks already so your call.

I was simply pointing our how to stay consistent with the other ioctls 
in i915. Because to me consistency trumps a lot of other things. So if 
we go along the route of ENODEV makes no sense argument, then I wouldn't 
be far from suggesting to evaluate all of the existing ones as well.

Regards,

Tvrtko
diff mbox series

Patch

diff --git a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
index 99772f37bff60..b02dbd16bfa03 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
@@ -1764,7 +1764,8 @@  eb_relocate_vma_slow(struct i915_execbuffer *eb, struct eb_vma *ev)
 	return err;
 }
 
-static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
+static int check_relocations(const struct i915_execbuffer *eb,
+			     const struct drm_i915_gem_exec_object2 *entry)
 {
 	const char __user *addr, *end;
 	unsigned long size;
@@ -1774,6 +1775,14 @@  static int check_relocations(const struct drm_i915_gem_exec_object2 *entry)
 	if (size == 0)
 		return 0;
 
+	/* Relocations are disallowed for all platforms after TGL-LP */
+	if (INTEL_GEN(eb->i915) >= 12 && !IS_TIGERLAKE(eb->i915))
+		return -EINVAL;
+
+	/* All discrete memory platforms are Gen12 or above */
+	if (WARN_ON(HAS_LMEM(eb->i915)))
+		return -EINVAL;
+
 	if (size > N_RELOC(ULONG_MAX))
 		return -EINVAL;
 
@@ -1807,7 +1816,7 @@  static int eb_copy_relocations(const struct i915_execbuffer *eb)
 		if (nreloc == 0)
 			continue;
 
-		err = check_relocations(&eb->exec[i]);
+		err = check_relocations(eb, &eb->exec[i]);
 		if (err)
 			goto err;
 
@@ -1880,7 +1889,7 @@  static int eb_prefault_relocations(const struct i915_execbuffer *eb)
 	for (i = 0; i < count; i++) {
 		int err;
 
-		err = check_relocations(&eb->exec[i]);
+		err = check_relocations(eb, &eb->exec[i]);
 		if (err)
 			return err;
 	}