From 7ccc786acf5f64bbd17fdccf6f5ddf98de92a703 Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Mon, 24 Feb 2025 16:55:21 -0800 Subject: [PATCH] intel/dev: Set minimum HS URB entries to 0. The documentation for 3DSTATE_URB_HS has 0 as the minimum number of HS URB entries for all platforms. See BSpecs 32162, 47137, 56271 for Gfx6-11, Xe, and Xe2-3, respectively. This should silence warnings about our device info field not matching the hwconfig tables. Notably, nothing in our drivers currently uses this value so it cannot have a functional impact. Fixes: 4064b5546bba ("intel/dev: reduce warning noise from urb settings") Reviewed-by: Lionel Landwerlin Part-of: --- src/intel/dev/intel_device_info.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/intel/dev/intel_device_info.c b/src/intel/dev/intel_device_info.c index 25748c61cf7..f9b045a8eb5 100644 --- a/src/intel/dev/intel_device_info.c +++ b/src/intel/dev/intel_device_info.c @@ -439,7 +439,6 @@ static const struct intel_device_info intel_device_info_hsw_gt3 = { #define GFX8_URB_MIN_ENTRIES \ .min_entries = { \ [MESA_SHADER_VERTEX] = 64, \ - [MESA_SHADER_TESS_CTRL] = 1, \ [MESA_SHADER_TESS_EVAL] = 34, \ [MESA_SHADER_GEOMETRY] = 2, \ }