Simple change, makes sense
Change is Reviewed-by: David Francis <[email protected]> ________________________________________ From: amd-gfx <[email protected]> on behalf of Kent Russell <[email protected]> Sent: Wednesday, June 3, 2026 9:27 AM To: [email protected] Cc: Russell, Kent Subject: [PATCH 2/3] drm/amdkfd: Extend MQDs in HBM to gfx942 This has proven stable and performant on gfx943 and gfx950, so extend it to the Aldebaran/gfx942 series Signed-off-by: Kent Russell <[email protected]> --- drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager.c b/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager.c index 02b52f907f80..5970a1694286 100644 --- a/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager.c +++ b/drivers/gpu/drm/amd/amdkfd/kfd_mqd_manager.c @@ -322,6 +322,7 @@ bool mqd_on_vram(struct amdgpu_device *adev) return false; switch (amdgpu_ip_version(adev, GC_HWIP, 0)) { + case IP_VERSION(9, 4, 2): case IP_VERSION(9, 4, 3): case IP_VERSION(9, 5, 0): return true; -- 2.43.0
