Commit d9e50239 authored by Yongqiang Sun's avatar Yongqiang Sun Committed by Alex Deucher

drm/amd/amdgpu: Fix asm/hypervisor.h build error.

Add CONFIG_X86 check to fix the build error.

Fixes: 49aa98ca ("drm/amd/amdgpu: Only reserve vram for firmware with vega9 MS_HYPERV host.")
Reported-by: default avatarkernel test robot <lkp@intel.com>
Signed-off-by: default avatarYongqiang Sun <yongqiang.sun@amd.com>
Acked-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent edd11922
...@@ -25,7 +25,9 @@ ...@@ -25,7 +25,9 @@
*/ */
#include <linux/io-64-nonatomic-lo-hi.h> #include <linux/io-64-nonatomic-lo-hi.h>
#ifdef CONFIG_X86
#include <asm/hypervisor.h> #include <asm/hypervisor.h>
#endif
#include "amdgpu.h" #include "amdgpu.h"
#include "amdgpu_gmc.h" #include "amdgpu_gmc.h"
...@@ -650,10 +652,12 @@ void amdgpu_gmc_get_vbios_allocations(struct amdgpu_device *adev) ...@@ -650,10 +652,12 @@ void amdgpu_gmc_get_vbios_allocations(struct amdgpu_device *adev)
/* /*
* VEGA10 SRIOV VF with MS_HYPERV host needs some firmware reserved area. * VEGA10 SRIOV VF with MS_HYPERV host needs some firmware reserved area.
*/ */
#ifdef CONFIG_X86
if (amdgpu_sriov_vf(adev) && hypervisor_is_type(X86_HYPER_MS_HYPERV)) { if (amdgpu_sriov_vf(adev) && hypervisor_is_type(X86_HYPER_MS_HYPERV)) {
adev->mman.stolen_reserved_offset = 0x500000; adev->mman.stolen_reserved_offset = 0x500000;
adev->mman.stolen_reserved_size = 0x200000; adev->mman.stolen_reserved_size = 0x200000;
} }
#endif
break; break;
case CHIP_RAVEN: case CHIP_RAVEN:
case CHIP_RENOIR: case CHIP_RENOIR:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment