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>
(cherry picked from commit f3c53cf66b)
This commit is contained in:
Mel Henning 2026-01-16 17:32:02 -05:00 committed by Eric Engestrom
parent 7e42c6e949
commit d20d30442c
2 changed files with 8 additions and 3 deletions

View file

@ -674,7 +674,7 @@
"description": "nvk: Disable large pages for now",
"nominated": true,
"nomination_type": 2,
"resolution": 0,
"resolution": 1,
"main_sha": null,
"because_sha": "cabfdb4404ad65b2a6a2a3b469e5e09d9b63f96a",
"notes": null

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 */