From d66182b215296cffd37b38f351da6ce8f1ad0c04 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Mon, 20 Mar 2023 09:41:38 +1000 Subject: [PATCH] nvk/nil: don't ask for compressed image kind These need special kernel handling around the mmu, avoid asking for them, nvidia don't seem to use them with gsp either yet. Part-of: --- src/nouveau/nil/nil_image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nouveau/nil/nil_image.c b/src/nouveau/nil/nil_image.c index b674760a678..8adba0899e0 100644 --- a/src/nouveau/nil/nil_image.c +++ b/src/nouveau/nil/nil_image.c @@ -438,7 +438,7 @@ nil_image_init(struct nv_device_info *dev, if (!(info->usage & NIL_IMAGE_USAGE_LINEAR_BIT)) { image->pte_kind = nil_choose_pte_kind(dev, info->format, info->samples, - true /* TODO: compressed */); + false /* TODO: compressed */); } image->align_B = MAX2(image->align_B, 4096);