summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/amd
diff options
context:
space:
mode:
authorMukul Joshi <mukul.joshi@amd.com>2023-03-15 14:04:33 -0400
committerAlex Deucher <alexander.deucher@amd.com>2023-06-09 09:58:36 -0400
commit3697b9bd7c69910cb6543d8441211ecfb2f013ca (patch)
treea062a2ef465102af05ae88641742b15c06e61ef2 /drivers/gpu/drm/amd
parent9b337b7d628a5e97b4dd72bb1d75f1716567b416 (diff)
downloadlinux-3697b9bd7c69910cb6543d8441211ecfb2f013ca.tar.gz
linux-3697b9bd7c69910cb6543d8441211ecfb2f013ca.tar.bz2
linux-3697b9bd7c69910cb6543d8441211ecfb2f013ca.zip
drm/amdkfd: Increase queue number per process to 255 on GFX9.4.3
Increase the maximum number of queues that can be created per process to 255 on GFX 9.4.3. There is no HWS limitation restricting the number queues that can be created. Signed-off-by: Mukul Joshi <mukul.joshi@amd.com> Reviewed-by: Felix Kuehling <Felix.Kuehling@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd')
-rw-r--r--drivers/gpu/drm/amd/amdkfd/kfd_process_queue_manager.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_process_queue_manager.c b/drivers/gpu/drm/amd/amdkfd/kfd_process_queue_manager.c
index a3c23d07c7df..b100933340d2 100644
--- a/drivers/gpu/drm/amd/amdkfd/kfd_process_queue_manager.c
+++ b/drivers/gpu/drm/amd/amdkfd/kfd_process_queue_manager.c
@@ -242,6 +242,13 @@ int pqm_create_queue(struct process_queue_manager *pqm,
enum kfd_queue_type type = properties->type;
unsigned int max_queues = 127; /* HWS limit */
+ /*
+ * On GFX 9.4.3, increase the number of queues that
+ * can be created to 255. No HWS limit on GFX 9.4.3.
+ */
+ if (KFD_GC_VERSION(dev) == IP_VERSION(9, 4, 3))
+ max_queues = 255;
+
q = NULL;
kq = NULL;