Re: [PATCH v9 11/14] drm/amdgpu: fix MES GFX mask

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 




On 02/05/2024 17:19, Christian König wrote:
Am 26.04.24 um 15:48 schrieb Shashank Sharma:
Current MES GFX mask prevents FW to enable oversubscription. This patch
does the following:
- Fixes the mask values and adds a description for the same.
- Removes the central mask setup and makes it IP specific, as it would
   be different when the number of pipes and queues are different.

V9: introduce this patch in the series

As far as I can see this is a bug fix for existing code and should be pushed completely independent of the other work to amd-staging-drm-next.

Agreed, I added it here for completion of series. I had pushed this as single patch as well last week, I will push it accordingly.

- Shashank

Regards,
Christian.


Cc: Christian König <Christian.Koenig@xxxxxxx>
Cc: Alex Deucher <alexander.deucher@xxxxxxx>
Signed-off-by: Shashank Sharma <shashank.sharma@xxxxxxx>
Signed-off-by: Arvind Yadav <arvind.yadav@xxxxxxx>
---
  drivers/gpu/drm/amd/amdgpu/amdgpu_mes.c | 3 ---
  drivers/gpu/drm/amd/amdgpu/amdgpu_mes.h | 1 -
  drivers/gpu/drm/amd/amdgpu/mes_v10_1.c  | 9 +++++++--
  drivers/gpu/drm/amd/amdgpu/mes_v11_0.c  | 9 +++++++--
  4 files changed, 14 insertions(+), 8 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.c
index a00cf4756ad0..b405fafc0b71 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.c
@@ -151,9 +151,6 @@ int amdgpu_mes_init(struct amdgpu_device *adev)
          adev->mes.compute_hqd_mask[i] = 0xc;
      }
  -    for (i = 0; i < AMDGPU_MES_MAX_GFX_PIPES; i++)
-        adev->mes.gfx_hqd_mask[i] = i ? 0 : 0xfffffffe;
-
      for (i = 0; i < AMDGPU_MES_MAX_SDMA_PIPES; i++) {
          if (amdgpu_ip_version(adev, SDMA0_HWIP, 0) <
              IP_VERSION(6, 0, 0))
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.h
index 4c8fc3117ef8..598556619337 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.h
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.h
@@ -110,7 +110,6 @@ struct amdgpu_mes {
      uint32_t                        vmid_mask_gfxhub;
      uint32_t                        vmid_mask_mmhub;
      uint32_t compute_hqd_mask[AMDGPU_MES_MAX_COMPUTE_PIPES];
-    uint32_t gfx_hqd_mask[AMDGPU_MES_MAX_GFX_PIPES];
      uint32_t sdma_hqd_mask[AMDGPU_MES_MAX_SDMA_PIPES];
      uint32_t aggregated_doorbells[AMDGPU_MES_PRIORITY_NUM_LEVELS];
      uint32_t                        sch_ctx_offs;
diff --git a/drivers/gpu/drm/amd/amdgpu/mes_v10_1.c b/drivers/gpu/drm/amd/amdgpu/mes_v10_1.c
index 1e5ad1e08d2a..4d1121d1a1e7 100644
--- a/drivers/gpu/drm/amd/amdgpu/mes_v10_1.c
+++ b/drivers/gpu/drm/amd/amdgpu/mes_v10_1.c
@@ -290,8 +290,13 @@ static int mes_v10_1_set_hw_resources(struct amdgpu_mes *mes)
          mes_set_hw_res_pkt.compute_hqd_mask[i] =
              mes->compute_hqd_mask[i];
  -    for (i = 0; i < MAX_GFX_PIPES; i++)
-        mes_set_hw_res_pkt.gfx_hqd_mask[i] = mes->gfx_hqd_mask[i];
+    /*
+     * GFX pipe 0 queue 0 is being used by kernel
+     * Set GFX pipe 0 queue 1 for MES scheduling
+     * GFX pipe 1 can't be used for MES due to HW limitation.
+     */
+    mes_set_hw_res_pkt.gfx_hqd_mask[0] = 0x2;
+    mes_set_hw_res_pkt.gfx_hqd_mask[1] = 0;
        for (i = 0; i < MAX_SDMA_PIPES; i++)
          mes_set_hw_res_pkt.sdma_hqd_mask[i] = mes->sdma_hqd_mask[i];
diff --git a/drivers/gpu/drm/amd/amdgpu/mes_v11_0.c b/drivers/gpu/drm/amd/amdgpu/mes_v11_0.c
index 63f281a9984d..feb7fa2c304c 100644
--- a/drivers/gpu/drm/amd/amdgpu/mes_v11_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/mes_v11_0.c
@@ -387,8 +387,13 @@ static int mes_v11_0_set_hw_resources(struct amdgpu_mes *mes)
          mes_set_hw_res_pkt.compute_hqd_mask[i] =
              mes->compute_hqd_mask[i];
  -    for (i = 0; i < MAX_GFX_PIPES; i++)
-        mes_set_hw_res_pkt.gfx_hqd_mask[i] = mes->gfx_hqd_mask[i];
+    /*
+     * GFX pipe 0 queue 0 is being used by kernel
+     * Set GFX pipe 0 queue 1 for MES scheduling
+     * GFX pipe 1 can't be used for MES due to HW limitation.
+     */
+    mes_set_hw_res_pkt.gfx_hqd_mask[0] = 0x2;
+    mes_set_hw_res_pkt.gfx_hqd_mask[1] = 0;
        for (i = 0; i < MAX_SDMA_PIPES; i++)
          mes_set_hw_res_pkt.sdma_hqd_mask[i] = mes->sdma_hqd_mask[i];




[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux