Commit 20875141 authored by Perry Yuan's avatar Perry Yuan Committed by Alex Deucher
Browse files

drm/amd/display: change GPU match with IP version for Vangogh



Use ip versions (10,3,1) to match the GPU after Vangogh switched to use IP
discovery path.

Reviewed-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarPerry Yuan <Perry.Yuan@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 5e0f4c04
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -10263,8 +10263,8 @@ int amdgpu_dm_process_dmub_aux_transfer_sync(bool is_cmd_aux, struct dc_context
 */
bool check_seamless_boot_capability(struct amdgpu_device *adev)
{
	switch (adev->asic_type) {
	case CHIP_VANGOGH:
	switch (adev->ip_versions[DCE_HWIP][0]) {
	case IP_VERSION(3, 0, 1):
		if (!adev->mman.keep_stolen_vga_memory)
			return true;
		break;