AMD-GFX Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Paneer Selvam, Arunpravin" <arunpravin.paneerselvam@amd.com>
To: Alex Deucher <alexander.deucher@amd.com>, amd-gfx@lists.freedesktop.org
Cc: "Christian König" <christian.koenig@amd.com>, mario.limonciello@amd.com
Subject: Re: [PATCH 2/2] drm/amdgpu/userq: prevent runtime pm when userqs are active
Date: Fri, 4 Apr 2025 16:20:12 +0530	[thread overview]
Message-ID: <75751513-150e-4ed4-8a99-34e01cf4e1b5@amd.com> (raw)
In-Reply-To: <20250320165249.1238463-2-alexander.deucher@amd.com>

[-- Attachment #1: Type: text/plain, Size: 2325 bytes --]

Hi Alex,

This patch didn't help to resolve the system hang issue during suspend 
that was introduced
by the series - https://patchwork.freedesktop.org/series/141717/

But as you mentioned, the runtime pm needs this change while user queues 
are running.
Reviewed-by: Arunpravin Paneer Selvam <Arunpravin.PaneerSelvam@amd.com>

Regards,
Arun.

On 3/20/2025 10:22 PM, Alex Deucher wrote:
> Similar to KFD, prevent runtime pm while user queues are active.
>
> Signed-off-by: Alex Deucher<alexander.deucher@amd.com>
> ---
>   drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | 30 +++++++++++++++++++++++++
>   1 file changed, 30 insertions(+)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
> index 7d49a0bede1e2..4ff2e423c50cb 100644
> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
> @@ -2705,6 +2705,29 @@ static int amdgpu_runtime_idle_check_display(struct device *dev)
>   	return 0;
>   }
>   
> +static int amdgpu_runtime_idle_check_userq(struct device *dev)
> +{
> +	struct pci_dev *pdev = to_pci_dev(dev);
> +	struct drm_device *drm_dev = pci_get_drvdata(pdev);
> +	struct amdgpu_device *adev = drm_to_adev(drm_dev);
> +	struct amdgpu_usermode_queue *queue;
> +	struct amdgpu_userq_mgr *uqm, *tmp;
> +	int queue_id;
> +	int ret = 0;
> +
> +	mutex_lock(&adev->userq_mutex);
> +	list_for_each_entry_safe(uqm, tmp, &adev->userq_mgr_list, list) {
> +		idr_for_each_entry(&uqm->userq_idr, queue, queue_id) {
> +			ret = -EBUSY;
> +			goto done;
> +		}
> +	}
> +done:
> +	mutex_unlock(&adev->userq_mutex);
> +
> +	return ret;
> +}
> +
>   static int amdgpu_pmops_runtime_suspend(struct device *dev)
>   {
>   	struct pci_dev *pdev = to_pci_dev(dev);
> @@ -2718,6 +2741,9 @@ static int amdgpu_pmops_runtime_suspend(struct device *dev)
>   	}
>   
>   	ret = amdgpu_runtime_idle_check_display(dev);
> +	if (ret)
> +		return ret;
> +	ret = amdgpu_runtime_idle_check_userq(dev);
>   	if (ret)
>   		return ret;
>   
> @@ -2841,7 +2867,11 @@ static int amdgpu_pmops_runtime_idle(struct device *dev)
>   	}
>   
>   	ret = amdgpu_runtime_idle_check_display(dev);
> +	if (ret)
> +		goto done;
>   
> +	ret = amdgpu_runtime_idle_check_userq(dev);
> +done:
>   	pm_runtime_mark_last_busy(dev);
>   	pm_runtime_autosuspend(dev);
>   	return ret;

[-- Attachment #2: Type: text/html, Size: 2925 bytes --]

  reply	other threads:[~2025-04-04 10:50 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-20 16:52 [PATCH 1/2] drm/amdgpu: store userq_managers in a list in adev Alex Deucher
2025-03-20 16:52 ` [PATCH 2/2] drm/amdgpu/userq: prevent runtime pm when userqs are active Alex Deucher
2025-04-04 10:50   ` Paneer Selvam, Arunpravin [this message]
2025-03-21 17:27 ` [PATCH 1/2] drm/amdgpu: store userq_managers in a list in adev Paneer Selvam, Arunpravin
2025-03-25  8:13 ` Liang, Prike
2025-03-25 15:34   ` Alex Deucher

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=75751513-150e-4ed4-8a99-34e01cf4e1b5@amd.com \
    --to=arunpravin.paneerselvam@amd.com \
    --cc=alexander.deucher@amd.com \
    --cc=amd-gfx@lists.freedesktop.org \
    --cc=christian.koenig@amd.com \
    --cc=mario.limonciello@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