mirror of
https://gitee.com/openharmony/third_party_mesa3d
synced 2024-11-23 15:30:09 +00:00
ac/gpu_info: use the kernel-reported GFX IP version to set gfx_level
hopefully this won't break the world. 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:
parent
6504d7172c
commit
983223de5d
@ -798,22 +798,23 @@ bool ac_query_gpu_info(int fd, void *dev_p, struct radeon_info *info,
|
|||||||
for (unsigned i = 0; info->name[i] && i < ARRAY_SIZE(info->lowercase_name) - 1; i++)
|
for (unsigned i = 0; info->name[i] && i < ARRAY_SIZE(info->lowercase_name) - 1; i++)
|
||||||
info->lowercase_name[i] = tolower(info->name[i]);
|
info->lowercase_name[i] = tolower(info->name[i]);
|
||||||
|
|
||||||
if (info->family >= CHIP_GFX1100)
|
if (info->ip[AMD_IP_GFX].ver_major == 11)
|
||||||
info->gfx_level = GFX11;
|
info->gfx_level = GFX11;
|
||||||
else if (info->family >= CHIP_NAVI21)
|
else if (info->ip[AMD_IP_GFX].ver_major == 10 && info->ip[AMD_IP_GFX].ver_minor == 3)
|
||||||
info->gfx_level = GFX10_3;
|
info->gfx_level = GFX10_3;
|
||||||
else if (info->family >= CHIP_NAVI10)
|
else if (info->ip[AMD_IP_GFX].ver_major == 10 && info->ip[AMD_IP_GFX].ver_minor == 1)
|
||||||
info->gfx_level = GFX10;
|
info->gfx_level = GFX10;
|
||||||
else if (info->family >= CHIP_VEGA10)
|
else if (info->ip[AMD_IP_GFX].ver_major == 9)
|
||||||
info->gfx_level = GFX9;
|
info->gfx_level = GFX9;
|
||||||
else if (info->family >= CHIP_TONGA)
|
else if (info->ip[AMD_IP_GFX].ver_major == 8)
|
||||||
info->gfx_level = GFX8;
|
info->gfx_level = GFX8;
|
||||||
else if (info->family >= CHIP_BONAIRE)
|
else if (info->ip[AMD_IP_GFX].ver_major == 7)
|
||||||
info->gfx_level = GFX7;
|
info->gfx_level = GFX7;
|
||||||
else if (info->family >= CHIP_TAHITI)
|
else if (info->ip[AMD_IP_GFX].ver_major == 6)
|
||||||
info->gfx_level = GFX6;
|
info->gfx_level = GFX6;
|
||||||
else {
|
else {
|
||||||
fprintf(stderr, "amdgpu: Unknown family.\n");
|
fprintf(stderr, "amdgpu: Unknown gfx version: %u.%u\n",
|
||||||
|
info->ip[AMD_IP_GFX].ver_major, info->ip[AMD_IP_GFX].ver_minor);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user