Skip to content
Snippets Groups Projects
Commit 8f8c8423 authored by Ben Widawsky's avatar Ben Widawsky Committed by Emil Velikov
Browse files

i965/skl: Add production thread counts and URB size


This patch adjusts the SKL values to the best known values we have.

v2: Remove HS/DS/CS fields. Adding this makes most sense to add to the
GEN9_FEATURES macro, however, doing that would require updating BXT values, and
Jordan requested I not do that. Conveniently, this request makes a lot of sense
wrt to stable backport as HS, and DS do not even exist there.

Cc: mesa-stable@lists.freedesktop.org
Signed-off-by: Ben Widawsky's avatarBen Widawsky <ben@bwidawsk.net>
Reviewed-by: default avatarJordan Justen <jordan.l.justen@intel.com>
(cherry picked from commit 7eaacc16)
[Emil Velikov: .supports_simd16_3src is missing in 10.6]
Signed-off-by: default avatarEmil Velikov <emil.l.velikov@gmail.com>

Conflicts:
	src/mesa/drivers/dri/i965/brw_device_info.c
parent eddea78f
No related branches found
No related tags found
No related merge requests found
...@@ -304,13 +304,13 @@ static const struct brw_device_info brw_device_info_chv = { ...@@ -304,13 +304,13 @@ static const struct brw_device_info brw_device_info_chv = {
.must_use_separate_stencil = true, \ .must_use_separate_stencil = true, \
.has_llc = true, \ .has_llc = true, \
.has_pln = true, \ .has_pln = true, \
.max_vs_threads = 280, \ .max_vs_threads = 336, \
.max_gs_threads = 256, \ .max_gs_threads = 336, \
.max_wm_threads = 408, \ .max_wm_threads = 64 * 6, \
.urb = { \ .urb = { \
.size = 128, \ .size = 192, \
.min_vs_entries = 64, \ .min_vs_entries = 64, \
.max_vs_entries = 1664, \ .max_vs_entries = 1856, \
.max_gs_entries = 640, \ .max_gs_entries = 640, \
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment