From f77d2871ac7073b81c45c54878c3234e51bcd017 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Tue, 14 Feb 2017 08:01:39 +1000 Subject: [PATCH] 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 --- 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 7a84f5cc7da..c1c22411f94 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); -- 2.30.2