ac/gpu_info: remove unused has_unaligned_shader_loads

Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17411>
This commit is contained in:
Marek Olšák 2022-07-11 00:38:43 -04:00 committed by Marge Bot
parent f3f00f77ad
commit 8426cf9132
3 changed files with 0 additions and 7 deletions

View File

@ -967,8 +967,6 @@ bool ac_query_gpu_info(int fd, void *dev_p, struct radeon_info *info)
info->si_TA_CS_BC_BASE_ADDR_allowed = true;
info->has_bo_metadata = true;
info->has_eqaa_surface_allocator = info->gfx_level < GFX11;
/* GFX6 doesn't support unaligned loads. */
info->has_unaligned_shader_loads = info->gfx_level != GFX6;
/* Disable sparse mappings on GFX6 due to VM faults in CP DMA. Enable them once
* these faults are mitigated in software.
*/
@ -1570,7 +1568,6 @@ void ac_print_gpu_info(struct radeon_info *info, FILE *f)
fprintf(f, " si_TA_CS_BC_BASE_ADDR_allowed = %u\n", info->si_TA_CS_BC_BASE_ADDR_allowed);
fprintf(f, " has_bo_metadata = %u\n", info->has_bo_metadata);
fprintf(f, " has_eqaa_surface_allocator = %u\n", info->has_eqaa_surface_allocator);
fprintf(f, " has_unaligned_shader_loads = %u\n", info->has_unaligned_shader_loads);
fprintf(f, " has_sparse_vm_mappings = %u\n", info->has_sparse_vm_mappings);
fprintf(f, " has_stable_pstate = %u\n", info->has_stable_pstate);
fprintf(f, " has_scheduled_fence_dependency = %u\n", info->has_scheduled_fence_dependency);

View File

@ -186,7 +186,6 @@ struct radeon_info {
bool si_TA_CS_BC_BASE_ADDR_allowed;
bool has_bo_metadata;
bool has_eqaa_surface_allocator;
bool has_unaligned_shader_loads;
bool has_sparse_vm_mappings;
bool has_scheduled_fence_dependency;
bool has_stable_pstate;

View File

@ -573,9 +573,6 @@ static bool do_winsys_init(struct radeon_drm_winsys *ws)
ws->info.si_TA_CS_BC_BASE_ADDR_allowed = ws->info.drm_minor >= 48;
ws->info.has_bo_metadata = false;
ws->info.has_eqaa_surface_allocator = false;
/* GFX6 doesn't support unaligned loads. */
ws->info.has_unaligned_shader_loads = ws->info.gfx_level == GFX7 &&
ws->info.drm_minor >= 50;
ws->info.has_sparse_vm_mappings = false;
ws->info.max_alignment = 1024*1024;
ws->info.has_graphics = true;