nvk: Disable large pages for now

Reviewed-by: Mary Guillemard <mary@mary.zone>
Fixes: cabfdb4404 ("nvk: Enable compression")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39364>
This commit is contained in:
Mel Henning 2026-01-16 17:32:02 -05:00 committed by Marge Bot
parent 4b1996b1c7
commit f3c53cf66b

View file

@ -101,8 +101,13 @@ nvkmd_nouveau_try_create_pdev(struct _drmDevice *drm_device,
.has_alloc_tiled = nouveau_ws_device_has_tiled_bo(ws_dev),
.has_map_fixed = true,
.has_overmap = true,
.has_compression = ws_dev->nouveau_version >= 0x01000401 &&
ws_dev->info.cls_eng3d >= TURING_A,
/*
* Disabled for now due to
* https://gitlab.freedesktop.org/mesa/mesa/-/issues/14610
* .has_compression = ws_dev->nouveau_version >= 0x01000401 &&
* ws_dev->info.cls_eng3d >= TURING_A,
*/
.has_compression = false,
};
/* We get this ourselves */