All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 1/3] drm/amdgpu: Fetch MES scheduler/KIQ versions
@ 2022-06-10 17:13 Graham Sider
  2022-06-10 17:13 ` [PATCH v2 2/3] drm/amdkfd: Enable GFX11 usermode queue oversubscription Graham Sider
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Graham Sider @ 2022-06-10 17:13 UTC (permalink / raw)
  To: amd-gfx; +Cc: Mukul.Joshi, Felix.Kuehling, Graham Sider, Philip.Yang

Store MES scheduler and MES KIQ version numbers in amdgpu_mes for GFX11.

Signed-off-by: Graham Sider <Graham.Sider@amd.com>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu_mes.h |  3 +++
 drivers/gpu/drm/amd/amdgpu/mes_v11_0.c  | 12 ++++++++++++
 2 files changed, 15 insertions(+)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.h b/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.h
index 92ddee5e33db..aa06c8396ee0 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.h
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_mes.h
@@ -64,6 +64,9 @@ struct amdgpu_mes {
 
 	spinlock_t                      queue_id_lock;
 
+	uint32_t			sched_version;
+	uint32_t			kiq_version;
+
 	uint32_t                        total_max_queue;
 	uint32_t                        doorbell_id_offset;
 	uint32_t                        max_doorbell_slices;
diff --git a/drivers/gpu/drm/amd/amdgpu/mes_v11_0.c b/drivers/gpu/drm/amd/amdgpu/mes_v11_0.c
index e4eb87689f7f..2a9ef308e71c 100644
--- a/drivers/gpu/drm/amd/amdgpu/mes_v11_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/mes_v11_0.c
@@ -890,6 +890,18 @@ static int mes_v11_0_queue_init(struct amdgpu_device *adev,
 		mes_v11_0_queue_init_register(ring);
 	}
 
+	/* get MES scheduler/KIQ versions */
+	mutex_lock(&adev->srbm_mutex);
+	soc21_grbm_select(adev, 3, pipe, 0, 0);
+
+	if (pipe == AMDGPU_MES_SCHED_PIPE)
+		adev->mes.sched_version = RREG32_SOC15(GC, 0, regCP_MES_GP3_LO);
+	else if (pipe == AMDGPU_MES_KIQ_PIPE && adev->enable_mes_kiq)
+		adev->mes.kiq_version = RREG32_SOC15(GC, 0, regCP_MES_GP3_LO);
+
+	soc21_grbm_select(adev, 0, 0, 0, 0);
+	mutex_unlock(&adev->srbm_mutex);
+
 	return 0;
 }
 
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2022-06-13 13:35 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-10 17:13 [PATCH v2 1/3] drm/amdgpu: Fetch MES scheduler/KIQ versions Graham Sider
2022-06-10 17:13 ` [PATCH v2 2/3] drm/amdkfd: Enable GFX11 usermode queue oversubscription Graham Sider
2022-06-10 23:06   ` Felix Kuehling
2022-06-13 13:33     ` Sider, Graham
2022-06-11  2:37   ` Lang Yu
2022-06-13 13:35     ` Sider, Graham
2022-06-10 17:13 ` [PATCH v2 3/3] drm/amdgpu: Update mes_v11_api_def.h Graham Sider
2022-06-10 23:06   ` Felix Kuehling
2022-06-10 23:07 ` [PATCH v2 1/3] drm/amdgpu: Fetch MES scheduler/KIQ versions Felix Kuehling

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.