[PATCH] drm/amdgpu: correct vmid_src -> vmhub_index mapping
Lang Yu
Lang.Yu at amd.com
Thu Jul 27 02:47:06 UTC 2023
On 07/27/ , Chai, Thomas wrote:
> [AMD Official Use Only - General]
>
> Yes, the patch title is " drm/amdgpu: fix incorrect vmhub index ".
>
> Hi lang:
> You can update this patch based on the above patch review results .
Ok. Thanks.
Regards,
Lang
>
> -----------------
> Best Regards,
> Thomas
>
> -----Original Message-----
> From: Zhang, Hawking <Hawking.Zhang at amd.com>
> Sent: Wednesday, July 26, 2023 8:03 PM
> To: Yu, Lang <Lang.Yu at amd.com>; amd-gfx at lists.freedesktop.org; Chai, Thomas <YiPeng.Chai at amd.com>
> Cc: Deucher, Alexander <Alexander.Deucher at amd.com>; Zhang, Yifan <Yifan1.Zhang at amd.com>
> Subject: RE: [PATCH] drm/amdgpu: correct vmid_src -> vmhub_index mapping
>
> [AMD Official Use Only - General]
>
> @Chai, Thomas sent the same fix for the review if I remember correctly. Might check with him to see when he push the fixes.
>
> Regards,
> Hawking
>
> -----Original Message-----
> From: Yu, Lang <Lang.Yu at amd.com>
> Sent: Wednesday, July 26, 2023 19:25
> To: amd-gfx at lists.freedesktop.org
> Cc: Deucher, Alexander <Alexander.Deucher at amd.com>; Zhang, Hawking <Hawking.Zhang at amd.com>; Zhang, Yifan <Yifan1.Zhang at amd.com>; Yu, Lang <Lang.Yu at amd.com>
> Subject: [PATCH] drm/amdgpu: correct vmid_src -> vmhub_index mapping
>
> Align with new vmhub definition.
> vmid_src 0 -> AMDGPU_GFXHUB(0).
> vmid_src 1 -> AMDGPU_MMHUB0(0).
>
> Signed-off-by: Lang Yu <Lang.Yu at amd.com>
> ---
> drivers/gpu/drm/amd/amdgpu/gmc_v10_0.c | 3 ++- drivers/gpu/drm/amd/amdgpu/gmc_v11_0.c | 3 ++-
> 2 files changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/gmc_v10_0.c b/drivers/gpu/drm/amd/amdgpu/gmc_v10_0.c
> index 6b430e10d38e..9c4e084da99a 100644
> --- a/drivers/gpu/drm/amd/amdgpu/gmc_v10_0.c
> +++ b/drivers/gpu/drm/amd/amdgpu/gmc_v10_0.c
> @@ -102,9 +102,10 @@ static int gmc_v10_0_process_interrupt(struct amdgpu_device *adev,
> struct amdgpu_irq_src *source,
> struct amdgpu_iv_entry *entry) {
> + struct amdgpu_vmhub *hub =
> + &adev->vmhub[entry->vmid_src ? AMDGPU_MMHUB0(0) : AMDGPU_GFXHUB(0)];
> bool retry_fault = !!(entry->src_data[1] & 0x80);
> bool write_fault = !!(entry->src_data[1] & 0x20);
> - struct amdgpu_vmhub *hub = &adev->vmhub[entry->vmid_src];
> struct amdgpu_task_info task_info;
> uint32_t status = 0;
> u64 addr;
> diff --git a/drivers/gpu/drm/amd/amdgpu/gmc_v11_0.c b/drivers/gpu/drm/amd/amdgpu/gmc_v11_0.c
> index 604522f70d03..47f5ced12ba2 100644
> --- a/drivers/gpu/drm/amd/amdgpu/gmc_v11_0.c
> +++ b/drivers/gpu/drm/amd/amdgpu/gmc_v11_0.c
> @@ -99,7 +99,8 @@ static int gmc_v11_0_process_interrupt(struct amdgpu_device *adev,
> struct amdgpu_irq_src *source,
> struct amdgpu_iv_entry *entry) {
> - struct amdgpu_vmhub *hub = &adev->vmhub[entry->vmid_src];
> + struct amdgpu_vmhub *hub =
> + &adev->vmhub[entry->vmid_src ? AMDGPU_MMHUB0(0) : AMDGPU_GFXHUB(0)];
> uint32_t status = 0;
> u64 addr;
>
> --
> 2.25.1
>
>
More information about the amd-gfx
mailing list