radv: mark AMD CDNA as unsupported

No access to the hw and likely broken.

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33113>
This commit is contained in:
Samuel Pitoiset
2025-01-15 12:11:08 +01:00
committed by Marge Bot
parent 01df20446e
commit 9999791582

View File

@@ -24,6 +24,10 @@
static bool
radv_is_gpu_supported(const struct radeon_info *info)
{
/* AMD CDNA isn't supported. */
if (info->gfx_level == GFX9 && !info->has_graphics)
return false;
/* GFX12 isn't supported. */
if (info->gfx_level >= GFX12)
return false;