Mesa (master): radv: disable gfx init on CIK for now

Dave Airlie airlied at kemper.freedesktop.org
Mon Feb 13 22:02:19 UTC 2017


Module: Mesa
Branch: master
Commit: f77d2871ac7073b81c45c54878c3234e51bcd017
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=f77d2871ac7073b81c45c54878c3234e51bcd017

Author: Dave Airlie <airlied at redhat.com>
Date:   Tue Feb 14 08:01:39 2017 +1000

radv: disable gfx init on CIK for now

Luzipher on irc report this hangs his Hawaii, disable for now
until I get time to debug.

Signed-off-by: Dave Airlie <airlied at redhat.com>

---

 src/amd/vulkan/radv_device.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c
index 7a84f5c..c1c2241 100644
--- a/src/amd/vulkan/radv_device.c
+++ b/src/amd/vulkan/radv_device.c
@@ -949,7 +949,8 @@ VkResult radv_CreateDevice(
 			goto fail;
 	}
 
-	if (device->physical_device->rad_info.chip_class >= CIK)
+	/* temporarily disabled on CIK */
+	if (device->physical_device->rad_info.chip_class > CIK)
 		cik_create_gfx_config(device);
 
 	*pDevice = radv_device_to_handle(device);




More information about the mesa-commit mailing list