From 5a28d2482f65209d376521be37e1ff0024fee4b1 Mon Sep 17 00:00:00 2001 From: Jordan Justen Date: Tue, 15 Feb 2022 10:43:23 -0800 Subject: [PATCH] anv: Align GENERAL_STATE_POOL_MIN_ADDRESS to 2MiB Fixes: c17e2216dd5 ("anv: Align buffer VMA to 2MiB for XeHP") Signed-off-by: Jordan Justen Reviewed-by: Lionel Landwerlin Reviewed-by: Jason Ekstrand Part-of: --- src/intel/vulkan/anv_private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h index 12694dc3b70..62b3a04fb68 100644 --- a/src/intel/vulkan/anv_private.h +++ b/src/intel/vulkan/anv_private.h @@ -140,7 +140,7 @@ struct intel_perf_query_result; * various reasons. This healthy margin prevents reads from wrapping around * 48-bit addresses. */ -#define GENERAL_STATE_POOL_MIN_ADDRESS 0x000000010000ULL /* 64 KiB */ +#define GENERAL_STATE_POOL_MIN_ADDRESS 0x000000200000ULL /* 2 MiB */ #define GENERAL_STATE_POOL_MAX_ADDRESS 0x00003fffffffULL #define LOW_HEAP_MIN_ADDRESS 0x000040000000ULL /* 1 GiB */ #define LOW_HEAP_MAX_ADDRESS 0x00007fffffffULL