diff options
author | Ben Widawsky <[email protected]> | 2016-05-26 08:08:29 -0700 |
---|---|---|
committer | Ben Widawsky <[email protected]> | 2016-05-26 14:06:43 -0700 |
commit | f1fa8b4a1ca73fac4400e13b9aaca8c6b2955d2c (patch) | |
tree | b1d8983ac9e63bd958e60b5cbfc5a2c67c48fb98 /src | |
parent | 43d7305a405c82e81c9b7b3cc4958169b13777bb (diff) |
i965/bxt: Add 2x6 variant
Cc: [email protected]
Signed-off-by: Ben Widawsky <[email protected]>
Reviewed-by: Kristian Høgsberg <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_device_info.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_device_info.c b/src/mesa/drivers/dri/i965/brw_device_info.c index 3666190fc36..77bbe785580 100644 --- a/src/mesa/drivers/dri/i965/brw_device_info.c +++ b/src/mesa/drivers/dri/i965/brw_device_info.c @@ -401,6 +401,28 @@ static const struct brw_device_info brw_device_info_bxt = { } }; +static const struct brw_device_info brw_device_info_bxt_2x6 = { + GEN9_FEATURES, + .is_broxton = 1, + .gt = 1, + .has_llc = false, + + .num_slices = 1, + .max_vs_threads = 56, /* XXX: guess */ + .max_hs_threads = 56, /* XXX: guess */ + .max_ds_threads = 56, + .max_gs_threads = 56, + .max_wm_threads = 64 * 2, + .max_cs_threads = 6 * 6, + .urb = { + .size = 128, + .min_vs_entries = 34, + .max_vs_entries = 352, + .max_hs_entries = 128, + .max_ds_entries = 208, + .max_gs_entries = 128, + } +}; /* * Note: for all KBL SKUs, the PRM says SKL for GS entries, not SKL+. * There's no KBL entry. Using the default SKL (GEN9) GS entries value. |