AMD-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Christian König" <ckoenig.leichtzumerken@gmail.com>
To: Darren Salt <devspam@moreofthesa.me.uk>, amd-gfx@lists.freedesktop.org
Subject: Re: [PATCH] amdgpu: don't treat BAR resize failure due to unsupported requested size as an error
Date: Thu, 10 Dec 2020 11:04:47 +0100	[thread overview]
Message-ID: <3199abbb-e5d0-dff2-d444-c10f10d957d8@gmail.com> (raw)
In-Reply-To: <20201209185540.2032-1-devspam@moreofthesa.me.uk>

Am 09.12.20 um 19:55 schrieb Darren Salt:
> On the resize attempt failing with -EINVAL, instead report an informational
> message indicating that the requested BAR size is not listed as supported by
> the VBIOS.
>
> Without this, as I have an RX 5600 XT which lists only 256MB, 512MB and
> 1024MB as supported, I see
>      [drm:amdgpu_device_resize_fb_bar] *ERROR* Problem resizing BAR0 (-22).

Well NAK, we just recently discussed that internally and the key point 
is that we should not have tried to resize things in the first place 
since that means a lot of churn for the PCIe subsystem.

So this is really an error and we should try to avoid it.

But the fact that you run into this in the first place is really 
interesting, I thought we haven't sold hardware with that configuration yet.

Regards,
Christian.

>
> Signed-off-by: Darren Salt <devspam@moreofthesa.me.uk>
> ---
>   drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 2 ++
>   1 file changed, 2 insertions(+)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> index 355fa0057c26..d80ba03913a7 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
> @@ -1136,6 +1136,8 @@ int amdgpu_device_resize_fb_bar(struct amdgpu_device *adev)
>   	r = pci_resize_resource(adev->pdev, 0, rbar_size);
>   	if (r == -ENOSPC)
>   		DRM_INFO("Not enough PCI address space for a large BAR.");
> +	else if (r == -EINVAL)
> +		DRM_INFO("VBIOS does not support exposing all VRAM via a large BAR.");
>   	else if (r && r != -ENOTSUPP)
>   		DRM_ERROR("Problem resizing BAR0 (%d).", r);
>   

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

      reply	other threads:[~2020-12-10 10:04 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-09 18:55 [PATCH] amdgpu: don't treat BAR resize failure due to unsupported requested size as an error Darren Salt
2020-12-10 10:04 ` Christian König [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=3199abbb-e5d0-dff2-d444-c10f10d957d8@gmail.com \
    --to=ckoenig.leichtzumerken@gmail.com \
    --cc=amd-gfx@lists.freedesktop.org \
    --cc=christian.koenig@amd.com \
    --cc=devspam@moreofthesa.me.uk \
    /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