[AMD Public Use]

Reviewed-by: Chen, Horace [email protected]<mailto:[email protected]>

From: Deucher, Alexander <[email protected]>
Sent: Thursday, May 13, 2021 10:12 PM
To: Wang, YuBiao <[email protected]>; [email protected]
Cc: Grodzovsky, Andrey <[email protected]>; Quan, Evan 
<[email protected]>; Chen, Horace <[email protected]>; Tuikov, Luben 
<[email protected]>; Koenig, Christian <[email protected]>; Xiao, 
Jack <[email protected]>; Zhang, Hawking <[email protected]>; Liu, Monk 
<[email protected]>; Xu, Feifei <[email protected]>; Wang, Kevin(Yang) 
<[email protected]>; Xiaojie Yuan <[email protected]>
Subject: Re: [PATCH] drm/amd/amdgpu: psp program IH_RB_CTRL on sienna_cichlid


[AMD Public Use]

Acked-by: Alex Deucher 
<[email protected]<mailto:[email protected]>>
________________________________
From: YuBiao Wang <[email protected]<mailto:[email protected]>>
Sent: Thursday, May 13, 2021 6:33 AM
To: [email protected]<mailto:[email protected]> 
<[email protected]<mailto:[email protected]>>
Cc: Grodzovsky, Andrey 
<[email protected]<mailto:[email protected]>>; Quan, Evan 
<[email protected]<mailto:[email protected]>>; Chen, Horace 
<[email protected]<mailto:[email protected]>>; Tuikov, Luben 
<[email protected]<mailto:[email protected]>>; Koenig, Christian 
<[email protected]<mailto:[email protected]>>; Deucher, Alexander 
<[email protected]<mailto:[email protected]>>; Xiao, Jack 
<[email protected]<mailto:[email protected]>>; Zhang, Hawking 
<[email protected]<mailto:[email protected]>>; Liu, Monk 
<[email protected]<mailto:[email protected]>>; Xu, Feifei 
<[email protected]<mailto:[email protected]>>; Wang, Kevin(Yang) 
<[email protected]<mailto:[email protected]>>; Xiaojie Yuan 
<[email protected]<mailto:[email protected]>>; Wang, YuBiao 
<[email protected]<mailto:[email protected]>>
Subject: [PATCH] drm/amd/amdgpu: psp program IH_RB_CTRL on sienna_cichlid

[Why]
IH_RB_CNTL is blocked by PSP so we need to ask psp to help config it.

[How]
Move psp ip block before ih, and use psp to program IH_RB_CNTL under sriov.

Signed-off-by: YuBiao Wang <[email protected]<mailto:[email protected]>>
---
 drivers/gpu/drm/amd/amdgpu/navi10_ih.c | 20 ++++++++++++++++++--
 drivers/gpu/drm/amd/amdgpu/nv.c        | 12 +++++++++---
 2 files changed, 27 insertions(+), 5 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/navi10_ih.c 
b/drivers/gpu/drm/amd/amdgpu/navi10_ih.c
index f4e4040bbd25..5ee923ccdeb3 100644
--- a/drivers/gpu/drm/amd/amdgpu/navi10_ih.c
+++ b/drivers/gpu/drm/amd/amdgpu/navi10_ih.c
@@ -151,7 +151,15 @@ static int navi10_ih_toggle_ring_interrupts(struct 
amdgpu_device *adev,
         /* enable_intr field is only valid in ring0 */
         if (ih == &adev->irq.ih)
                 tmp = REG_SET_FIELD(tmp, IH_RB_CNTL, ENABLE_INTR, (enable ? 1 
: 0));
-       WREG32(ih_regs->ih_rb_cntl, tmp);
+
+       if (amdgpu_sriov_vf(adev) && amdgpu_sriov_reg_indirect_ih(adev)) {
+               if (psp_reg_program(&adev->psp, ih_regs->psp_reg_id, tmp)) {
+                       DRM_ERROR("PSP program IH_RB_CNTL failed!\n");
+                       return -ETIMEDOUT;
+               }
+       } else {
+               WREG32(ih_regs->ih_rb_cntl, tmp);
+       }

         if (enable) {
                 ih->enabled = true;
@@ -261,7 +269,15 @@ static int navi10_ih_enable_ring(struct amdgpu_device 
*adev,
                 tmp = REG_SET_FIELD(tmp, IH_RB_CNTL, WPTR_OVERFLOW_ENABLE, 0);
                 tmp = REG_SET_FIELD(tmp, IH_RB_CNTL, RB_FULL_DRAIN_ENABLE, 1);
         }
-       WREG32(ih_regs->ih_rb_cntl, tmp);
+
+       if (amdgpu_sriov_vf(adev) && amdgpu_sriov_reg_indirect_ih(adev)) {
+               if (psp_reg_program(&adev->psp, ih_regs->psp_reg_id, tmp)) {
+                       DRM_ERROR("PSP program IH_RB_CNTL failed!\n");
+                       return -ETIMEDOUT;
+               }
+       } else {
+               WREG32(ih_regs->ih_rb_cntl, tmp);
+       }

         if (ih == &adev->irq.ih) {
                 /* set the ih ring 0 writeback address whether it's enabled or 
not */
diff --git a/drivers/gpu/drm/amd/amdgpu/nv.c b/drivers/gpu/drm/amd/amdgpu/nv.c
index 75d1f9b939b2..2ec5d4e1f363 100644
--- a/drivers/gpu/drm/amd/amdgpu/nv.c
+++ b/drivers/gpu/drm/amd/amdgpu/nv.c
@@ -764,9 +764,15 @@ int nv_set_ip_blocks(struct amdgpu_device *adev)
         case CHIP_SIENNA_CICHLID:
                 amdgpu_device_ip_block_add(adev, &nv_common_ip_block);
                 amdgpu_device_ip_block_add(adev, &gmc_v10_0_ip_block);
-               amdgpu_device_ip_block_add(adev, &navi10_ih_ip_block);
-               if (likely(adev->firmware.load_type == AMDGPU_FW_LOAD_PSP))
-                       amdgpu_device_ip_block_add(adev, &psp_v11_0_ip_block);
+               if (!amdgpu_sriov_vf(adev)) {
+                       amdgpu_device_ip_block_add(adev, &navi10_ih_ip_block);
+                       if (likely(adev->firmware.load_type == 
AMDGPU_FW_LOAD_PSP))
+                               amdgpu_device_ip_block_add(adev, 
&psp_v11_0_ip_block);
+               } else {
+                       if (likely(adev->firmware.load_type == 
AMDGPU_FW_LOAD_PSP))
+                               amdgpu_device_ip_block_add(adev, 
&psp_v11_0_ip_block);
+                       amdgpu_device_ip_block_add(adev, &navi10_ih_ip_block);
+               }
                 if (adev->firmware.load_type == AMDGPU_FW_LOAD_PSP &&
                     is_support_sw_smu(adev))
                         amdgpu_device_ip_block_add(adev, &smu_v11_0_ip_block);
--
2.25.1
_______________________________________________
amd-gfx mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

Reply via email to