[PATCH] drm/amd/amdgpu: Not request init data for MS_HYPERV with vega10
Wong, Alice
Shiwei.Wong at amd.com
Tue Apr 12 13:59:25 UTC 2022
[AMD Official Use Only]
-----Original Message-----
From: Sun, Yongqiang <Yongqiang.Sun at amd.com>
Sent: April 12, 2022 9:16 AM
To: amd-gfx at lists.freedesktop.org; Wong, Alice <Shiwei.Wong at amd.com>
Cc: Yao, Yiqing(James) <YiQing.Yao at amd.com>; Sun, Yongqiang <Yongqiang.Sun at amd.com>
Subject: [PATCH] drm/amd/amdgpu: Not request init data for MS_HYPERV with vega10
MS_HYPERV with vega10 doesn't have the interface to process request init data msg.
Check hypervisor type to not send the request for MS_HYPERV.
Signed-off-by: Yongqiang Sun <yongqiang.sun at amd.com>
Reviewed-by: Alice Wong <shiwei.wong at amd.com>
---
drivers/gpu/drm/amd/amdgpu/amdgpu_virt.c | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_virt.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_virt.c
index 933c41f77c92..d5eea031c3e3 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_virt.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_virt.c
@@ -23,6 +23,10 @@
#include <linux/module.h>
+#ifdef CONFIG_X86
+#include <asm/hypervisor.h>
+#endif
+
#include <drm/drm_drv.h>
#include "amdgpu.h"
@@ -721,8 +725,12 @@ void amdgpu_detect_virtualization(struct amdgpu_device *adev)
break;
case CHIP_VEGA10:
soc15_set_virt_ops(adev);
- /* send a dummy GPU_INIT_DATA request to host on vega10 */
- amdgpu_virt_request_init_data(adev);
+#ifdef CONFIG_X86
+ /* not send GPU_INIT_DATA with MS_HYPERV*/
+ if (!hypervisor_is_type(X86_HYPER_MS_HYPERV))
+#endif
+ /* send a dummy GPU_INIT_DATA request to host on vega10 */
+ amdgpu_virt_request_init_data(adev);
break;
case CHIP_VEGA20:
case CHIP_ARCTURUS:
--
2.25.1
More information about the amd-gfx
mailing list