diff options
author | Xiangliang Yu <Xiangliang.Yu@amd.com> | 2017-04-21 02:06:09 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2017-05-24 17:40:04 -0400 |
commit | ab276632ec62064fb94dbbd441a94062e8bcd37a (patch) | |
tree | 89ec70b688635991ba0f1a573ed76560493c0727 /drivers/gpu/drm/amd/amdgpu/vi.c | |
parent | 213cacefcd5c7815802281445ba503d26e794b77 (diff) |
drm/amdgpu/virt: change the place of virt_init_setting
Change place of virt_init_setting function so that can cover the
cg and pg flags configuration.
Signed-off-by: Xiangliang Yu <Xiangliang.Yu@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/vi.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/vi.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/vi.c b/drivers/gpu/drm/amd/amdgpu/vi.c index 5a275bc5459f..82175517c73c 100644 --- a/drivers/gpu/drm/amd/amdgpu/vi.c +++ b/drivers/gpu/drm/amd/amdgpu/vi.c | |||
@@ -894,11 +894,6 @@ static int vi_common_early_init(void *handle) | |||
894 | (amdgpu_ip_block_mask & (1 << AMD_IP_BLOCK_TYPE_SMC))) | 894 | (amdgpu_ip_block_mask & (1 << AMD_IP_BLOCK_TYPE_SMC))) |
895 | smc_enabled = true; | 895 | smc_enabled = true; |
896 | 896 | ||
897 | if (amdgpu_sriov_vf(adev)) { | ||
898 | amdgpu_virt_init_setting(adev); | ||
899 | xgpu_vi_mailbox_set_irq_funcs(adev); | ||
900 | } | ||
901 | |||
902 | adev->rev_id = vi_get_rev_id(adev); | 897 | adev->rev_id = vi_get_rev_id(adev); |
903 | adev->external_rev_id = 0xFF; | 898 | adev->external_rev_id = 0xFF; |
904 | switch (adev->asic_type) { | 899 | switch (adev->asic_type) { |
@@ -1071,6 +1066,11 @@ static int vi_common_early_init(void *handle) | |||
1071 | return -EINVAL; | 1066 | return -EINVAL; |
1072 | } | 1067 | } |
1073 | 1068 | ||
1069 | if (amdgpu_sriov_vf(adev)) { | ||
1070 | amdgpu_virt_init_setting(adev); | ||
1071 | xgpu_vi_mailbox_set_irq_funcs(adev); | ||
1072 | } | ||
1073 | |||
1074 | /* vi use smc load by default */ | 1074 | /* vi use smc load by default */ |
1075 | adev->firmware.load_type = amdgpu_ucode_get_load_type(adev, amdgpu_fw_load_type); | 1075 | adev->firmware.load_type = amdgpu_ucode_get_load_type(adev, amdgpu_fw_load_type); |
1076 | 1076 | ||