Commit 54d2b1f4 authored by Alex Deucher's avatar Alex Deucher
Browse files

drm/amdgpu: fill in IP versions from IP discovery table



Prerequisite for using IP versions in the driver rather
than asic type.

v2: Use IP_VERSION() macro instead of new function

Reviewed-by: Christian König <christian.koenig@amd.com> (v1)
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 5f52e9a7
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -336,8 +336,9 @@ int amdgpu_discovery_reg_base_init(struct amdgpu_device *adev)
							hw_id_names[le16_to_cpu(ip->hw_id)]);
					adev->reg_offset[hw_ip][ip->number_instance] =
						ip->base_address;
					adev->ip_versions[hw_ip] =
						IP_VERSION(ip->major, ip->minor, ip->revision);
				}

			}

next_ip: