summaryrefslogtreecommitdiffstats
path: root/src/amd
diff options
context:
space:
mode:
authorDave Airlie <[email protected]>2017-02-14 08:01:39 +1000
committerDave Airlie <[email protected]>2017-02-14 08:01:39 +1000
commitf77d2871ac7073b81c45c54878c3234e51bcd017 (patch)
tree377153b1fde955aad110dfe9ef7100aa4815131a /src/amd
parent69fc7a2c828adbb454072d386a26b568e56dd886 (diff)
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 <[email protected]>
Diffstat (limited to 'src/amd')
-rw-r--r--src/amd/vulkan/radv_device.c3
1 files changed, 2 insertions, 1 deletions
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);