i965: Fix URB size for CHV
[mesa.git] / src / mesa / drivers / dri / i965 / brw_device_info.c
1 /*
2 * Copyright © 2013 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include "brw_device_info.h"
27
28 static const struct brw_device_info brw_device_info_i965 = {
29 .gen = 4,
30 .has_negative_rhw_bug = true,
31 .max_vs_threads = 16,
32 .max_gs_threads = 2,
33 .max_wm_threads = 8 * 4,
34 .urb = {
35 .size = 256,
36 },
37 };
38
39 static const struct brw_device_info brw_device_info_g4x = {
40 .gen = 4,
41 .has_pln = true,
42 .has_compr4 = true,
43 .has_surface_tile_offset = true,
44 .is_g4x = true,
45 .max_vs_threads = 32,
46 .max_gs_threads = 2,
47 .max_wm_threads = 10 * 5,
48 .urb = {
49 .size = 384,
50 },
51 };
52
53 static const struct brw_device_info brw_device_info_ilk = {
54 .gen = 5,
55 .has_pln = true,
56 .has_compr4 = true,
57 .has_surface_tile_offset = true,
58 .max_vs_threads = 72,
59 .max_gs_threads = 32,
60 .max_wm_threads = 12 * 6,
61 .urb = {
62 .size = 1024,
63 },
64 };
65
66 static const struct brw_device_info brw_device_info_snb_gt1 = {
67 .gen = 6,
68 .gt = 1,
69 .has_hiz_and_separate_stencil = true,
70 .has_llc = true,
71 .has_pln = true,
72 .has_surface_tile_offset = true,
73 .needs_unlit_centroid_workaround = true,
74 .max_vs_threads = 24,
75 .max_gs_threads = 21, /* conservative; 24 if rendering disabled. */
76 .max_wm_threads = 40,
77 .urb = {
78 .size = 32,
79 .min_vs_entries = 24,
80 .max_vs_entries = 256,
81 .max_gs_entries = 256,
82 },
83 };
84
85 static const struct brw_device_info brw_device_info_snb_gt2 = {
86 .gen = 6,
87 .gt = 2,
88 .has_hiz_and_separate_stencil = true,
89 .has_llc = true,
90 .has_pln = true,
91 .has_surface_tile_offset = true,
92 .needs_unlit_centroid_workaround = true,
93 .max_vs_threads = 60,
94 .max_gs_threads = 60,
95 .max_wm_threads = 80,
96 .urb = {
97 .size = 64,
98 .min_vs_entries = 24,
99 .max_vs_entries = 256,
100 .max_gs_entries = 256,
101 },
102 };
103
104 #define GEN7_FEATURES \
105 .gen = 7, \
106 .has_hiz_and_separate_stencil = true, \
107 .must_use_separate_stencil = true, \
108 .has_llc = true, \
109 .has_pln = true, \
110 .has_surface_tile_offset = true
111
112 static const struct brw_device_info brw_device_info_ivb_gt1 = {
113 GEN7_FEATURES, .is_ivybridge = true, .gt = 1,
114 .needs_unlit_centroid_workaround = true,
115 .max_vs_threads = 36,
116 .max_hs_threads = 36,
117 .max_ds_threads = 36,
118 .max_gs_threads = 36,
119 .max_wm_threads = 48,
120 .urb = {
121 .size = 128,
122 .min_vs_entries = 32,
123 .max_vs_entries = 512,
124 .max_hs_entries = 32,
125 .max_ds_entries = 288,
126 .max_gs_entries = 192,
127 },
128 };
129
130 static const struct brw_device_info brw_device_info_ivb_gt2 = {
131 GEN7_FEATURES, .is_ivybridge = true, .gt = 2,
132 .needs_unlit_centroid_workaround = true,
133 .max_vs_threads = 128,
134 .max_hs_threads = 128,
135 .max_ds_threads = 128,
136 .max_gs_threads = 128,
137 .max_wm_threads = 172,
138 .urb = {
139 .size = 256,
140 .min_vs_entries = 32,
141 .max_vs_entries = 704,
142 .max_hs_entries = 64,
143 .max_ds_entries = 448,
144 .max_gs_entries = 320,
145 },
146 };
147
148 static const struct brw_device_info brw_device_info_byt = {
149 GEN7_FEATURES, .is_baytrail = true, .gt = 1,
150 .needs_unlit_centroid_workaround = true,
151 .has_llc = false,
152 .max_vs_threads = 36,
153 .max_hs_threads = 36,
154 .max_ds_threads = 36,
155 .max_gs_threads = 36,
156 .max_wm_threads = 48,
157 .urb = {
158 .size = 128,
159 .min_vs_entries = 32,
160 .max_vs_entries = 512,
161 .max_hs_entries = 32,
162 .max_ds_entries = 288,
163 .max_gs_entries = 192,
164 },
165 };
166
167 static const struct brw_device_info brw_device_info_hsw_gt1 = {
168 GEN7_FEATURES, .is_haswell = true, .gt = 1,
169 .max_vs_threads = 70,
170 .max_hs_threads = 70,
171 .max_ds_threads = 70,
172 .max_gs_threads = 70,
173 .max_wm_threads = 102,
174 .urb = {
175 .size = 128,
176 .min_vs_entries = 32,
177 .max_vs_entries = 640,
178 .max_hs_entries = 64,
179 .max_ds_entries = 384,
180 .max_gs_entries = 256,
181 },
182 };
183
184 static const struct brw_device_info brw_device_info_hsw_gt2 = {
185 GEN7_FEATURES, .is_haswell = true, .gt = 2,
186 .max_vs_threads = 280,
187 .max_hs_threads = 256,
188 .max_ds_threads = 280,
189 .max_gs_threads = 256,
190 .max_wm_threads = 204,
191 .urb = {
192 .size = 256,
193 .min_vs_entries = 64,
194 .max_vs_entries = 1664,
195 .max_hs_entries = 128,
196 .max_ds_entries = 960,
197 .max_gs_entries = 640,
198 },
199 };
200
201 static const struct brw_device_info brw_device_info_hsw_gt3 = {
202 GEN7_FEATURES, .is_haswell = true, .gt = 3,
203 .max_vs_threads = 280,
204 .max_hs_threads = 256,
205 .max_ds_threads = 280,
206 .max_gs_threads = 256,
207 .max_wm_threads = 408,
208 .urb = {
209 .size = 512,
210 .min_vs_entries = 64,
211 .max_vs_entries = 1664,
212 .max_hs_entries = 128,
213 .max_ds_entries = 960,
214 .max_gs_entries = 640,
215 },
216 };
217
218 #define GEN8_FEATURES \
219 .gen = 8, \
220 .has_hiz_and_separate_stencil = true, \
221 .must_use_separate_stencil = true, \
222 .has_llc = true, \
223 .has_pln = true, \
224 .max_vs_threads = 504, \
225 .max_hs_threads = 504, \
226 .max_ds_threads = 504, \
227 .max_gs_threads = 504, \
228 .max_wm_threads = 384 \
229
230 static const struct brw_device_info brw_device_info_bdw_gt1 = {
231 GEN8_FEATURES, .gt = 1,
232 .urb = {
233 .size = 192,
234 .min_vs_entries = 64,
235 .max_vs_entries = 2560,
236 .max_hs_entries = 504,
237 .max_ds_entries = 1536,
238 .max_gs_entries = 960,
239 }
240 };
241
242 static const struct brw_device_info brw_device_info_bdw_gt2 = {
243 GEN8_FEATURES, .gt = 2,
244 .urb = {
245 .size = 384,
246 .min_vs_entries = 64,
247 .max_vs_entries = 2560,
248 .max_hs_entries = 504,
249 .max_ds_entries = 1536,
250 .max_gs_entries = 960,
251 }
252 };
253
254 static const struct brw_device_info brw_device_info_bdw_gt3 = {
255 GEN8_FEATURES, .gt = 3,
256 .urb = {
257 .size = 384,
258 .min_vs_entries = 64,
259 .max_vs_entries = 2560,
260 .max_hs_entries = 504,
261 .max_ds_entries = 1536,
262 .max_gs_entries = 960,
263 }
264 };
265
266 /* Thread counts and URB limits are placeholders, and may not be accurate.
267 * These were copied from Haswell GT1, above.
268 */
269 static const struct brw_device_info brw_device_info_chv = {
270 GEN8_FEATURES, .is_cherryview = 1, .gt = 1,
271 .has_llc = false,
272 .max_vs_threads = 80,
273 .max_hs_threads = 80,
274 .max_ds_threads = 80,
275 .max_gs_threads = 80,
276 .max_wm_threads = 128,
277 .urb = {
278 .size = 192,
279 .min_vs_entries = 34,
280 .max_vs_entries = 640,
281 .max_hs_entries = 80,
282 .max_ds_entries = 384,
283 .max_gs_entries = 256,
284 }
285 };
286
287 /* Thread counts and URB limits are placeholders, and may not be accurate. */
288 #define GEN9_FEATURES \
289 .gen = 9, \
290 .has_hiz_and_separate_stencil = true, \
291 .must_use_separate_stencil = true, \
292 .has_llc = true, \
293 .has_pln = true, \
294 .max_vs_threads = 280, \
295 .max_gs_threads = 256, \
296 .max_wm_threads = 408, \
297 .urb = { \
298 .size = 128, \
299 .min_vs_entries = 64, \
300 .max_vs_entries = 1664, \
301 .max_gs_entries = 640, \
302 }
303
304 static const struct brw_device_info brw_device_info_skl_gt1 = {
305 GEN9_FEATURES, .gt = 1
306 };
307
308 static const struct brw_device_info brw_device_info_skl_gt2 = {
309 GEN9_FEATURES, .gt = 2
310 };
311
312 static const struct brw_device_info brw_device_info_skl_gt3 = {
313 GEN9_FEATURES, .gt = 3
314 };
315
316 const struct brw_device_info *
317 brw_get_device_info(int devid)
318 {
319 switch (devid) {
320 #undef CHIPSET
321 #define CHIPSET(id, family, name) case id: return &brw_device_info_##family;
322 #include "pci_ids/i965_pci_ids.h"
323 default:
324 fprintf(stderr, "i965_dri.so does not support the 0x%x PCI ID.\n", devid);
325 return NULL;
326 }
327 }