panfrost: Allow max effective tile size of 64x64 on v12+

This is supported since v12 and we fixed the last remaining issues
related to it.

Signed-off-by: Mary Guillemard <mary.guillemard@collabora.com>
Acked-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34674>
This commit is contained in:
Mary Guillemard 2025-04-23 14:15:18 +02:00 committed by Marge Bot
parent 943a59c8f9
commit 006f5c20bd

View file

@ -138,8 +138,8 @@ pan_arch(unsigned gpu_id)
static inline unsigned
panfrost_max_effective_tile_size(unsigned arch)
{
/* XXX: On v12+, the max effective tile size is 64x64 but it is possible to
* overrun the internal depth buffer for now */
if (arch >= 12)
return 64 * 64;
if (arch >= 10)
return 32 * 32;