* [PATCH v3 1/3] drm/amdgpu/mes_userqueue: refactor mqd_update into per-IP helpers
@ 2026-08-20 5:05 Jesse Zhang
2026-08-20 5:05 ` [PATCH v3 2/3] drm/amdgpu/mes_userqueue: add MODIFY support for SDMA user queues Jesse Zhang
2026-08-20 5:05 ` [PATCH v3 3/3] drm/amdgpu/mes_userqueue: add MODIFY support for GFX " Jesse Zhang
0 siblings, 2 replies; 3+ messages in thread
From: Jesse Zhang @ 2026-08-20 5:05 UTC (permalink / raw)
To: amd-gfx; +Cc: Alexander.Deucher, Christian Koenig, Jesse Zhang
mes_userq_mqd_update() inlined the compute path and rejected every other
queue type with -EINVAL. Extract the compute path into
mes_userq_compute_mqd_update() and turn mes_userq_mqd_update() into a
plain dispatcher that switches on queue_type, giving new IP types an
obvious place to hook in.
No functional change.
Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
---
drivers/gpu/drm/amd/amdgpu/mes_userqueue.c | 22 +++++++++++++++-------
1 file changed, 15 insertions(+), 7 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/mes_userqueue.c b/drivers/gpu/drm/amd/amdgpu/mes_userqueue.c
index ad72ced472dd..82bb4369451e 100644
--- a/drivers/gpu/drm/amd/amdgpu/mes_userqueue.c
+++ b/drivers/gpu/drm/amd/amdgpu/mes_userqueue.c
@@ -681,7 +681,8 @@ static int mes_userq_mqd_create(struct amdgpu_usermode_queue *queue,
return r;
}
-static int mes_userq_mqd_update(struct amdgpu_usermode_queue *queue, struct drm_amdgpu_userq_in *args_in)
+static int mes_userq_compute_mqd_update(struct amdgpu_usermode_queue *queue,
+ struct drm_amdgpu_userq_in *args_in)
{
int retval = 0;
struct amdgpu_device *adev = queue->userq_mgr->adev;
@@ -689,12 +690,6 @@ static int mes_userq_mqd_update(struct amdgpu_usermode_queue *queue, struct drm_
struct amdgpu_mqd *mqd_hw_default = &adev->mqds[queue->queue_type];
struct drm_amdgpu_userq_mqd_compute_gfx11 *compute_mqd_v11;
- if (!queue || !userq_props)
- return -EINVAL;
-
- if (queue->queue_type != AMDGPU_HW_IP_COMPUTE)
- return -EINVAL;
-
if (args_in->mqd_size != sizeof(*compute_mqd_v11)) {
DRM_ERROR("Invalid compute IP MQD size\n");
return -EINVAL;
@@ -720,6 +715,19 @@ static int mes_userq_mqd_update(struct amdgpu_usermode_queue *queue, struct drm_
return retval;
}
+static int mes_userq_mqd_update(struct amdgpu_usermode_queue *queue, struct drm_amdgpu_userq_in *args_in)
+{
+ if (!queue || !queue->userq_prop)
+ return -EINVAL;
+
+ switch (queue->queue_type) {
+ case AMDGPU_HW_IP_COMPUTE:
+ return mes_userq_compute_mqd_update(queue, args_in);
+ default:
+ return -EINVAL;
+ }
+}
+
static void mes_userq_mqd_destroy(struct amdgpu_usermode_queue *queue)
{
--
2.49.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH v3 2/3] drm/amdgpu/mes_userqueue: add MODIFY support for SDMA user queues
2026-08-20 5:05 [PATCH v3 1/3] drm/amdgpu/mes_userqueue: refactor mqd_update into per-IP helpers Jesse Zhang
@ 2026-08-20 5:05 ` Jesse Zhang
2026-08-20 5:05 ` [PATCH v3 3/3] drm/amdgpu/mes_userqueue: add MODIFY support for GFX " Jesse Zhang
1 sibling, 0 replies; 3+ messages in thread
From: Jesse Zhang @ 2026-08-20 5:05 UTC (permalink / raw)
To: amd-gfx; +Cc: Alexander.Deucher, Christian Koenig, Jesse Zhang
Add the SDMA case to the mqd_update dispatcher so an SDMA user queue can
be updated at runtime; until now it was rejected with -EINVAL.
mes_userq_sdma_mqd_update() reads a drm_amdgpu_userq_mqd_sdma_gfx11 from
user space, refreshes the queue props (csa address, queue size and ring
base) and re-inits the MQD, mirroring the compute path. This aligns KGD
user queues with KFD, which already supports updating SDMA queues via
update_mqd_sdma.
Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
---
drivers/gpu/drm/amd/amdgpu/mes_userqueue.c | 32 ++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/drivers/gpu/drm/amd/amdgpu/mes_userqueue.c b/drivers/gpu/drm/amd/amdgpu/mes_userqueue.c
index 82bb4369451e..4f6d92031838 100644
--- a/drivers/gpu/drm/amd/amdgpu/mes_userqueue.c
+++ b/drivers/gpu/drm/amd/amdgpu/mes_userqueue.c
@@ -681,6 +681,36 @@ static int mes_userq_mqd_create(struct amdgpu_usermode_queue *queue,
return r;
}
+static int mes_userq_sdma_mqd_update(struct amdgpu_usermode_queue *queue,
+ struct drm_amdgpu_userq_in *args_in)
+{
+ int retval = 0;
+ struct amdgpu_device *adev = queue->userq_mgr->adev;
+ struct amdgpu_mqd_prop *userq_props = queue->userq_prop;
+ struct amdgpu_mqd *mqd_hw_default = &adev->mqds[queue->queue_type];
+ struct drm_amdgpu_userq_mqd_sdma_gfx11 *sdma_mqd_v11;
+
+ if (args_in->mqd_size != sizeof(*sdma_mqd_v11)) {
+ DRM_ERROR("Invalid SDMA IP MQD size\n");
+ return -EINVAL;
+ }
+
+ sdma_mqd_v11 = memdup_user(u64_to_user_ptr(args_in->mqd), args_in->mqd_size);
+ if (IS_ERR(sdma_mqd_v11)) {
+ DRM_ERROR("Failed to read user MQD\n");
+ return -ENOMEM;
+ }
+
+ userq_props->csa_addr = sdma_mqd_v11->csa_va;
+ userq_props->queue_size = args_in->queue_size;
+ userq_props->hqd_base_gpu_addr = args_in->queue_va;
+
+ retval = mqd_hw_default->init_mqd(adev, (void *)queue->mqd.cpu_ptr, userq_props);
+
+ kfree(sdma_mqd_v11);
+ return retval;
+}
+
static int mes_userq_compute_mqd_update(struct amdgpu_usermode_queue *queue,
struct drm_amdgpu_userq_in *args_in)
{
@@ -723,6 +753,8 @@ static int mes_userq_mqd_update(struct amdgpu_usermode_queue *queue, struct drm_
switch (queue->queue_type) {
case AMDGPU_HW_IP_COMPUTE:
return mes_userq_compute_mqd_update(queue, args_in);
+ case AMDGPU_HW_IP_DMA:
+ return mes_userq_sdma_mqd_update(queue, args_in);
default:
return -EINVAL;
}
--
2.49.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH v3 3/3] drm/amdgpu/mes_userqueue: add MODIFY support for GFX user queues
2026-08-20 5:05 [PATCH v3 1/3] drm/amdgpu/mes_userqueue: refactor mqd_update into per-IP helpers Jesse Zhang
2026-08-20 5:05 ` [PATCH v3 2/3] drm/amdgpu/mes_userqueue: add MODIFY support for SDMA user queues Jesse Zhang
@ 2026-08-20 5:05 ` Jesse Zhang
1 sibling, 0 replies; 3+ messages in thread
From: Jesse Zhang @ 2026-08-20 5:05 UTC (permalink / raw)
To: amd-gfx; +Cc: Alexander.Deucher, Christian Koenig, Jesse Zhang
Add the GFX case to the mqd_update dispatcher so a GFX user queue can be
updated at runtime; until now it was rejected with -EINVAL.
mes_userq_gfx_mqd_update() reads a drm_amdgpu_userq_mqd_gfx11 from user
space, refreshes the queue props (shadow address, csa address, queue
size and ring base) and re-inits the MQD, mirroring the compute and SDMA
paths.
Suggested-by: Alexander Deucher <Alexander.Deucher@amd.com>
Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
---
drivers/gpu/drm/amd/amdgpu/mes_userqueue.c | 33 ++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/drivers/gpu/drm/amd/amdgpu/mes_userqueue.c b/drivers/gpu/drm/amd/amdgpu/mes_userqueue.c
index 4f6d92031838..6b5095efdfc5 100644
--- a/drivers/gpu/drm/amd/amdgpu/mes_userqueue.c
+++ b/drivers/gpu/drm/amd/amdgpu/mes_userqueue.c
@@ -711,6 +711,37 @@ static int mes_userq_sdma_mqd_update(struct amdgpu_usermode_queue *queue,
return retval;
}
+static int mes_userq_gfx_mqd_update(struct amdgpu_usermode_queue *queue,
+ struct drm_amdgpu_userq_in *args_in)
+{
+ int retval = 0;
+ struct amdgpu_device *adev = queue->userq_mgr->adev;
+ struct amdgpu_mqd_prop *userq_props = queue->userq_prop;
+ struct amdgpu_mqd *mqd_hw_default = &adev->mqds[queue->queue_type];
+ struct drm_amdgpu_userq_mqd_gfx11 *gfx_mqd_v11;
+
+ if (args_in->mqd_size != sizeof(*gfx_mqd_v11)) {
+ DRM_ERROR("Invalid GFX IP MQD size\n");
+ return -EINVAL;
+ }
+
+ gfx_mqd_v11 = memdup_user(u64_to_user_ptr(args_in->mqd), args_in->mqd_size);
+ if (IS_ERR(gfx_mqd_v11)) {
+ DRM_ERROR("Failed to read user MQD\n");
+ return -ENOMEM;
+ }
+
+ userq_props->shadow_addr = gfx_mqd_v11->shadow_va;
+ userq_props->csa_addr = gfx_mqd_v11->csa_va;
+ userq_props->queue_size = args_in->queue_size;
+ userq_props->hqd_base_gpu_addr = args_in->queue_va;
+
+ retval = mqd_hw_default->init_mqd(adev, (void *)queue->mqd.cpu_ptr, userq_props);
+
+ kfree(gfx_mqd_v11);
+ return retval;
+}
+
static int mes_userq_compute_mqd_update(struct amdgpu_usermode_queue *queue,
struct drm_amdgpu_userq_in *args_in)
{
@@ -753,6 +784,8 @@ static int mes_userq_mqd_update(struct amdgpu_usermode_queue *queue, struct drm_
switch (queue->queue_type) {
case AMDGPU_HW_IP_COMPUTE:
return mes_userq_compute_mqd_update(queue, args_in);
+ case AMDGPU_HW_IP_GFX:
+ return mes_userq_gfx_mqd_update(queue, args_in);
case AMDGPU_HW_IP_DMA:
return mes_userq_sdma_mqd_update(queue, args_in);
default:
--
2.49.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-08-20 5:06 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-20 5:05 [PATCH v3 1/3] drm/amdgpu/mes_userqueue: refactor mqd_update into per-IP helpers Jesse Zhang
2026-08-20 5:05 ` [PATCH v3 2/3] drm/amdgpu/mes_userqueue: add MODIFY support for SDMA user queues Jesse Zhang
2026-08-20 5:05 ` [PATCH v3 3/3] drm/amdgpu/mes_userqueue: add MODIFY support for GFX " Jesse Zhang
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.