drm/amdgpu: set family for GC 11.5.4
authorAlex Deucher <alexander.deucher@amd.com>
Tue, 10 Feb 2026 21:53:08 +0000 (16:53 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 12 Feb 2026 20:23:09 +0000 (15:23 -0500)
Set the family for GC 11.5.4

Fixes: 47ae1f938d12 ("drm/amdgpu: add support for GC IP version 11.5.4")
Cc: Tim Huang <tim.huang@amd.com>
Cc: Pratik Vishwakarma <Pratik.Vishwakarma@amd.com>
Cc: Roman Li <Roman.Li@amd.com>
Reviewed-by: Tim Huang <tim.huang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_discovery.c
include/uapi/drm/amdgpu_drm.h

index 41e63c2..4143a25 100644 (file)
@@ -2988,9 +2988,11 @@ int amdgpu_discovery_set_ip_blocks(struct amdgpu_device *adev)
        case IP_VERSION(11, 5, 1):
        case IP_VERSION(11, 5, 2):
        case IP_VERSION(11, 5, 3):
-       case IP_VERSION(11, 5, 4):
                adev->family = AMDGPU_FAMILY_GC_11_5_0;
                break;
+       case IP_VERSION(11, 5, 4):
+               adev->family = AMDGPU_FAMILY_GC_11_5_4;
+               break;
        case IP_VERSION(12, 0, 0):
        case IP_VERSION(12, 0, 1):
        case IP_VERSION(12, 1, 0):
index 1d34daa..ebbd861 100644 (file)
@@ -1667,6 +1667,7 @@ struct drm_amdgpu_info_uq_metadata {
 #define AMDGPU_FAMILY_GC_10_3_6                        149 /* GC 10.3.6 */
 #define AMDGPU_FAMILY_GC_10_3_7                        151 /* GC 10.3.7 */
 #define AMDGPU_FAMILY_GC_11_5_0                        150 /* GC 11.5.0 */
+#define AMDGPU_FAMILY_GC_11_5_4                        154 /* GC 11.5.4 */
 #define AMDGPU_FAMILY_GC_12_0_0                        152 /* GC 12.0.0 */
 
 #if defined(__cplusplus)