From a3b785be4d095ca4d37b7d6cfe6f680352ba3089 Mon Sep 17 00:00:00 2001 From: Marek Olšák Date: Tue, 27 Mar 2018 20:46:18 -0400 Subject: winsys/amdgpu: allow local BOs on APUs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Local BOs ignore BO priorities, and we don't need those on APUs. Reviewed-by: Samuel Pitoiset Tested-by: Dieter Nützel --- src/amd/common/ac_gpu_info.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/amd') diff --git a/src/amd/common/ac_gpu_info.c b/src/amd/common/ac_gpu_info.c index 0c131d0ed0c..ef0364b0534 100644 --- a/src/amd/common/ac_gpu_info.c +++ b/src/amd/common/ac_gpu_info.c @@ -314,7 +314,8 @@ bool ac_query_gpu_info(int fd, amdgpu_device_handle dev, info->has_fence_to_handle = info->has_syncobj && info->drm_minor >= 21; info->has_ctx_priority = info->drm_minor >= 22; /* TODO: Enable this once the kernel handles it efficiently. */ - /*info->has_local_buffers = ws->info.drm_minor >= 20;*/ + info->has_local_buffers = info->drm_minor >= 20 && + !info->has_dedicated_vram; info->num_render_backends = amdinfo->rb_pipes; info->clock_crystal_freq = amdinfo->gpu_counter_freq; if (!info->clock_crystal_freq) { -- cgit v1.2.3