From: "Lazar, Lijo" <lijo.lazar@amd.com>
To: Victor Skvortsov <victor.skvortsov@amd.com>,
amd-gfx@lists.freedesktop.org
Cc: "Christian König" <christian.koenig@amd.com>,
"Vignesh Chander" <vignesh.chander@amd.com>
Subject: Re: [PATCH 2/2] drm/amdgpu: abort KIQ waits when there is a pending reset
Date: Sat, 3 Aug 2024 20:42:27 +0530 [thread overview]
Message-ID: <df43ccef-651e-46c2-8d33-8867dc75a02e@amd.com> (raw)
In-Reply-To: <20240802183911.322102-1-victor.skvortsov@amd.com>
On 8/3/2024 12:09 AM, Victor Skvortsov wrote:
> Stop waiting for the KIQ to return back when there is a reset pending.
> It's quite likely that the KIQ will never response.
>
> Signed-off-by: Victor Skvortsov <victor.skvortsov@amd.com>
Copying Christian/Vignesh
The patch is originally from Christian. Please keep the author as
Christian and you may add Tested-By.
Thanks,
Lijo
> Suggested-by: Lazar Lijo <Lijo.Lazar@amd.com>
> ---
> drivers/gpu/drm/amd/amdgpu/amdgpu_gmc.c | 3 ++-
> drivers/gpu/drm/amd/amdgpu/amdgpu_reset.h | 5 +++++
> 2 files changed, 7 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gmc.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_gmc.c
> index c02659025656..8962be257942 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_gmc.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_gmc.c
> @@ -785,7 +785,8 @@ void amdgpu_gmc_fw_reg_write_reg_wait(struct amdgpu_device *adev,
> goto failed_kiq;
>
> might_sleep();
> - while (r < 1 && cnt++ < MAX_KIQ_REG_TRY) {
> + while (r < 1 && cnt++ < MAX_KIQ_REG_TRY&&
> + !amdgpu_reset_pending(adev->reset_domain)) {
>
> msleep(MAX_KIQ_REG_BAILOUT_INTERVAL);
> r = amdgpu_fence_wait_polling(ring, seq, MAX_KIQ_REG_WAIT);
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_reset.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_reset.h
> index 4ae581f3fcb5..f33a4e0ffba1 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_reset.h
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_reset.h
> @@ -136,6 +136,11 @@ static inline bool amdgpu_reset_domain_schedule(struct amdgpu_reset_domain *doma
> return queue_work(domain->wq, work);
> }
>
> +static inline bool amdgpu_reset_pending(struct amdgpu_reset_domain *domain) {
> + lockdep_assert_held(&domain->sem);
> + return rwsem_is_contended(&domain->sem);
> +}
> +
> void amdgpu_device_lock_reset_domain(struct amdgpu_reset_domain *reset_domain);
>
> void amdgpu_device_unlock_reset_domain(struct amdgpu_reset_domain *reset_domain);
next prev parent reply other threads:[~2024-08-03 15:12 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-02 18:39 [PATCH 2/2] drm/amdgpu: abort KIQ waits when there is a pending reset Victor Skvortsov
2024-08-03 15:12 ` Lazar, Lijo [this message]
2024-08-06 12:42 ` [PATCH v2 " Victor Skvortsov
2024-08-14 1:38 ` Zhang, Hawking
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=df43ccef-651e-46c2-8d33-8867dc75a02e@amd.com \
--to=lijo.lazar@amd.com \
--cc=amd-gfx@lists.freedesktop.org \
--cc=christian.koenig@amd.com \
--cc=victor.skvortsov@amd.com \
--cc=vignesh.chander@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox