i915: Remove most of the code under gen >= 4 checks.
[mesa.git] / src / mesa / drivers / dri / i965 / brw_state_dump.c
1 /*
2 * Copyright © 2007 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 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 *
26 */
27
28 #include "main/mtypes.h"
29 #include "intel_batchbuffer.h"
30
31 #include "brw_context.h"
32 #include "brw_defines.h"
33
34 static void
35 batch_out(struct brw_context *brw, const char *name, uint32_t offset,
36 int index, char *fmt, ...) PRINTFLIKE(5, 6);
37
38 static void
39 batch_out(struct brw_context *brw, const char *name, uint32_t offset,
40 int index, char *fmt, ...)
41 {
42 struct intel_context *intel = &brw->intel;
43 uint32_t *data = intel->batch.bo->virtual + offset;
44 va_list va;
45
46 fprintf(stderr, "0x%08x: 0x%08x: %8s: ",
47 offset + index * 4, data[index], name);
48 va_start(va, fmt);
49 vfprintf(stderr, fmt, va);
50 va_end(va);
51 }
52
53 static const char *
54 get_965_surfacetype(unsigned int surfacetype)
55 {
56 switch (surfacetype) {
57 case 0: return "1D";
58 case 1: return "2D";
59 case 2: return "3D";
60 case 3: return "CUBE";
61 case 4: return "BUFFER";
62 case 7: return "NULL";
63 default: return "unknown";
64 }
65 }
66
67 static const char *
68 get_965_surface_format(unsigned int surface_format)
69 {
70 switch (surface_format) {
71 case 0x000: return "r32g32b32a32_float";
72 case 0x0c1: return "b8g8r8a8_unorm";
73 case 0x100: return "b5g6r5_unorm";
74 case 0x102: return "b5g5r5a1_unorm";
75 case 0x104: return "b4g4r4a4_unorm";
76 default: return "unknown";
77 }
78 }
79
80 static void dump_vs_state(struct brw_context *brw, uint32_t offset)
81 {
82 struct intel_context *intel = &brw->intel;
83 const char *name = "VS_STATE";
84 struct brw_vs_unit_state *vs = intel->batch.bo->virtual + offset;
85
86 batch_out(brw, name, offset, 0, "thread0\n");
87 batch_out(brw, name, offset, 1, "thread1\n");
88 batch_out(brw, name, offset, 2, "thread2\n");
89 batch_out(brw, name, offset, 3, "thread3\n");
90 batch_out(brw, name, offset, 4, "thread4: %d threads\n",
91 vs->thread4.max_threads + 1);
92 batch_out(brw, name, offset, 5, "vs5\n");
93 batch_out(brw, name, offset, 6, "vs6\n");
94 }
95
96 static void dump_gs_state(struct brw_context *brw, uint32_t offset)
97 {
98 struct intel_context *intel = &brw->intel;
99 const char *name = "GS_STATE";
100 struct brw_gs_unit_state *gs = intel->batch.bo->virtual + offset;
101
102 batch_out(brw, name, offset, 0, "thread0\n");
103 batch_out(brw, name, offset, 1, "thread1\n");
104 batch_out(brw, name, offset, 2, "thread2\n");
105 batch_out(brw, name, offset, 3, "thread3\n");
106 batch_out(brw, name, offset, 4, "thread4: %d threads\n",
107 gs->thread4.max_threads + 1);
108 batch_out(brw, name, offset, 5, "vs5\n");
109 batch_out(brw, name, offset, 6, "vs6\n");
110 }
111
112 static void dump_clip_state(struct brw_context *brw, uint32_t offset)
113 {
114 struct intel_context *intel = &brw->intel;
115 const char *name = "CLIP_STATE";
116 struct brw_clip_unit_state *clip = intel->batch.bo->virtual + offset;
117
118 batch_out(brw, name, offset, 0, "thread0\n");
119 batch_out(brw, name, offset, 1, "thread1\n");
120 batch_out(brw, name, offset, 2, "thread2\n");
121 batch_out(brw, name, offset, 3, "thread3\n");
122 batch_out(brw, name, offset, 4, "thread4: %d threads\n",
123 clip->thread4.max_threads + 1);
124 batch_out(brw, name, offset, 5, "clip5\n");
125 batch_out(brw, name, offset, 6, "clip6\n");
126 batch_out(brw, name, offset, 7, "vp xmin %f\n", clip->viewport_xmin);
127 batch_out(brw, name, offset, 8, "vp xmax %f\n", clip->viewport_xmax);
128 batch_out(brw, name, offset, 9, "vp ymin %f\n", clip->viewport_ymin);
129 batch_out(brw, name, offset, 10, "vp ymax %f\n", clip->viewport_ymax);
130 }
131
132 static void dump_sf_state(struct brw_context *brw, uint32_t offset)
133 {
134 struct intel_context *intel = &brw->intel;
135 const char *name = "SF_STATE";
136 struct brw_sf_unit_state *sf = intel->batch.bo->virtual + offset;
137
138 batch_out(brw, name, offset, 0, "thread0\n");
139 batch_out(brw, name, offset, 1, "thread1\n");
140 batch_out(brw, name, offset, 2, "thread2\n");
141 batch_out(brw, name, offset, 3, "thread3\n");
142 batch_out(brw, name, offset, 4, "thread4: %d threads\n",
143 sf->thread4.max_threads + 1);
144 batch_out(brw, name, offset, 5, "sf5: viewport offset\n");
145 batch_out(brw, name, offset, 6, "sf6\n");
146 batch_out(brw, name, offset, 7, "sf7\n");
147 }
148
149 static void dump_wm_state(struct brw_context *brw, uint32_t offset)
150 {
151 struct intel_context *intel = &brw->intel;
152 const char *name = "WM_STATE";
153 struct brw_wm_unit_state *wm = intel->batch.bo->virtual + offset;
154
155 batch_out(brw, name, offset, 0, "thread0\n");
156 batch_out(brw, name, offset, 1, "thread1\n");
157 batch_out(brw, name, offset, 2, "thread2\n");
158 batch_out(brw, name, offset, 3, "thread3\n");
159 batch_out(brw, name, offset, 4, "wm4\n");
160 batch_out(brw, name, offset, 5, "wm5: %s%s%s%s%s%s, %d threads\n",
161 wm->wm5.enable_8_pix ? "8pix" : "",
162 wm->wm5.enable_16_pix ? "16pix" : "",
163 wm->wm5.program_uses_depth ? ", uses depth" : "",
164 wm->wm5.program_computes_depth ? ", computes depth" : "",
165 wm->wm5.program_uses_killpixel ? ", kills" : "",
166 wm->wm5.thread_dispatch_enable ? "" : ", no dispatch",
167 wm->wm5.max_threads + 1);
168 batch_out(brw, name, offset, 6, "depth offset constant %f\n",
169 wm->global_depth_offset_constant);
170 batch_out(brw, name, offset, 7, "depth offset scale %f\n",
171 wm->global_depth_offset_scale);
172 batch_out(brw, name, offset, 8, "wm8: kernel 1 (gen5+)\n");
173 batch_out(brw, name, offset, 9, "wm9: kernel 2 (gen5+)\n");
174 batch_out(brw, name, offset, 10, "wm10: kernel 3 (gen5+)\n");
175 }
176
177 static void dump_surface_state(struct brw_context *brw, uint32_t offset)
178 {
179 const char *name = "SURF";
180 uint32_t *surf = brw->intel.batch.bo->virtual + offset;
181
182 batch_out(brw, name, offset, 0, "%s %s\n",
183 get_965_surfacetype(GET_FIELD(surf[0], BRW_SURFACE_TYPE)),
184 get_965_surface_format(GET_FIELD(surf[0], BRW_SURFACE_FORMAT)));
185 batch_out(brw, name, offset, 1, "offset\n");
186 batch_out(brw, name, offset, 2, "%dx%d size, %d mips\n",
187 GET_FIELD(surf[2], BRW_SURFACE_WIDTH) + 1,
188 GET_FIELD(surf[2], BRW_SURFACE_HEIGHT) + 1,
189 GET_FIELD(surf[2], BRW_SURFACE_LOD));
190 batch_out(brw, name, offset, 3, "pitch %d, %s tiled\n",
191 GET_FIELD(surf[3], BRW_SURFACE_PITCH) + 1,
192 (surf[3] & BRW_SURFACE_TILED) ?
193 ((surf[3] & BRW_SURFACE_TILED_Y) ? "Y" : "X") : "not");
194 batch_out(brw, name, offset, 4, "mip base %d\n",
195 GET_FIELD(surf[4], BRW_SURFACE_MIN_LOD));
196 batch_out(brw, name, offset, 5, "x,y offset: %d,%d\n",
197 GET_FIELD(surf[5], BRW_SURFACE_X_OFFSET),
198 GET_FIELD(surf[5], BRW_SURFACE_Y_OFFSET));
199 }
200
201 static void dump_gen7_surface_state(struct brw_context *brw, uint32_t offset)
202 {
203 const char *name = "SURF";
204 uint32_t *surf = brw->intel.batch.bo->virtual + offset;
205
206 batch_out(brw, name, offset, 0, "%s %s\n",
207 get_965_surfacetype(GET_FIELD(surf[0], BRW_SURFACE_TYPE)),
208 get_965_surface_format(GET_FIELD(surf[0], BRW_SURFACE_FORMAT)));
209 batch_out(brw, name, offset, 1, "offset\n");
210 batch_out(brw, name, offset, 2, "%dx%d size, %d mips\n",
211 GET_FIELD(surf[2], GEN7_SURFACE_WIDTH) + 1,
212 GET_FIELD(surf[2], GEN7_SURFACE_HEIGHT) + 1,
213 surf[5] & INTEL_MASK(3, 0));
214 batch_out(brw, name, offset, 3, "pitch %d, %stiled\n",
215 (surf[3] & INTEL_MASK(17, 0)) + 1,
216 (surf[0] & (1 << 14)) ? "" : "not ");
217 batch_out(brw, name, offset, 4, "mip base %d\n",
218 GET_FIELD(surf[5], GEN7_SURFACE_MIN_LOD));
219 batch_out(brw, name, offset, 5, "x,y offset: %d,%d\n",
220 GET_FIELD(surf[5], BRW_SURFACE_X_OFFSET),
221 GET_FIELD(surf[5], BRW_SURFACE_Y_OFFSET));
222 }
223
224 static void
225 dump_sdc(struct brw_context *brw, uint32_t offset)
226 {
227 const char *name = "SDC";
228 struct intel_context *intel = &brw->intel;
229
230 if (intel->gen >= 5 && intel->gen <= 6) {
231 struct gen5_sampler_default_color *sdc = (intel->batch.bo->virtual +
232 offset);
233 batch_out(brw, name, offset, 0, "unorm rgba\n");
234 batch_out(brw, name, offset, 1, "r %f\n", sdc->f[0]);
235 batch_out(brw, name, offset, 2, "b %f\n", sdc->f[1]);
236 batch_out(brw, name, offset, 3, "g %f\n", sdc->f[2]);
237 batch_out(brw, name, offset, 4, "a %f\n", sdc->f[3]);
238 batch_out(brw, name, offset, 5, "half float rg\n");
239 batch_out(brw, name, offset, 6, "half float ba\n");
240 batch_out(brw, name, offset, 7, "u16 rg\n");
241 batch_out(brw, name, offset, 8, "u16 ba\n");
242 batch_out(brw, name, offset, 9, "s16 rg\n");
243 batch_out(brw, name, offset, 10, "s16 ba\n");
244 batch_out(brw, name, offset, 11, "s8 rgba\n");
245 } else {
246 struct brw_sampler_default_color *sdc = (intel->batch.bo->virtual +
247 offset);
248 batch_out(brw, name, offset, 0, "r %f\n", sdc->color[0]);
249 batch_out(brw, name, offset, 1, "g %f\n", sdc->color[1]);
250 batch_out(brw, name, offset, 2, "b %f\n", sdc->color[2]);
251 batch_out(brw, name, offset, 3, "a %f\n", sdc->color[3]);
252 }
253 }
254
255 static void dump_sampler_state(struct brw_context *brw,
256 uint32_t offset, uint32_t size)
257 {
258 struct intel_context *intel = &brw->intel;
259 int i;
260 struct brw_sampler_state *samp = intel->batch.bo->virtual + offset;
261
262 assert(intel->gen < 7);
263
264 for (i = 0; i < size / sizeof(*samp); i++) {
265 char name[20];
266
267 sprintf(name, "WM SAMP%d", i);
268 batch_out(brw, name, offset, 0, "filtering\n");
269 batch_out(brw, name, offset, 1, "wrapping, lod\n");
270 batch_out(brw, name, offset, 2, "default color pointer\n");
271 batch_out(brw, name, offset, 3, "chroma key, aniso\n");
272
273 samp++;
274 offset += sizeof(*samp);
275 }
276 }
277
278 static void dump_gen7_sampler_state(struct brw_context *brw,
279 uint32_t offset, uint32_t size)
280 {
281 struct intel_context *intel = &brw->intel;
282 struct gen7_sampler_state *samp = intel->batch.bo->virtual + offset;
283 int i;
284
285 assert(intel->gen >= 7);
286
287 for (i = 0; i < size / sizeof(*samp); i++) {
288 char name[20];
289
290 sprintf(name, "WM SAMP%d", i);
291 batch_out(brw, name, offset, 0, "filtering\n");
292 batch_out(brw, name, offset, 1, "wrapping, lod\n");
293 batch_out(brw, name, offset, 2, "default color pointer\n");
294 batch_out(brw, name, offset, 3, "chroma key, aniso\n");
295
296 samp++;
297 offset += sizeof(*samp);
298 }
299 }
300
301
302 static void dump_sf_viewport_state(struct brw_context *brw,
303 uint32_t offset)
304 {
305 struct intel_context *intel = &brw->intel;
306 const char *name = "SF VP";
307 struct brw_sf_viewport *vp = intel->batch.bo->virtual + offset;
308
309 assert(intel->gen < 7);
310
311 batch_out(brw, name, offset, 0, "m00 = %f\n", vp->viewport.m00);
312 batch_out(brw, name, offset, 1, "m11 = %f\n", vp->viewport.m11);
313 batch_out(brw, name, offset, 2, "m22 = %f\n", vp->viewport.m22);
314 batch_out(brw, name, offset, 3, "m30 = %f\n", vp->viewport.m30);
315 batch_out(brw, name, offset, 4, "m31 = %f\n", vp->viewport.m31);
316 batch_out(brw, name, offset, 5, "m32 = %f\n", vp->viewport.m32);
317
318 batch_out(brw, name, offset, 6, "top left = %d,%d\n",
319 vp->scissor.xmin, vp->scissor.ymin);
320 batch_out(brw, name, offset, 7, "bottom right = %d,%d\n",
321 vp->scissor.xmax, vp->scissor.ymax);
322 }
323
324 static void dump_clip_viewport_state(struct brw_context *brw,
325 uint32_t offset)
326 {
327 struct intel_context *intel = &brw->intel;
328 const char *name = "CLIP VP";
329 struct brw_clipper_viewport *vp = intel->batch.bo->virtual + offset;
330
331 assert(intel->gen < 7);
332
333 batch_out(brw, name, offset, 0, "xmin = %f\n", vp->xmin);
334 batch_out(brw, name, offset, 1, "xmax = %f\n", vp->xmax);
335 batch_out(brw, name, offset, 2, "ymin = %f\n", vp->ymin);
336 batch_out(brw, name, offset, 3, "ymax = %f\n", vp->ymax);
337 }
338
339 static void dump_sf_clip_viewport_state(struct brw_context *brw,
340 uint32_t offset)
341 {
342 struct intel_context *intel = &brw->intel;
343 const char *name = "SF_CLIP VP";
344 struct gen7_sf_clip_viewport *vp = intel->batch.bo->virtual + offset;
345
346 assert(intel->gen >= 7);
347
348 batch_out(brw, name, offset, 0, "m00 = %f\n", vp->viewport.m00);
349 batch_out(brw, name, offset, 1, "m11 = %f\n", vp->viewport.m11);
350 batch_out(brw, name, offset, 2, "m22 = %f\n", vp->viewport.m22);
351 batch_out(brw, name, offset, 3, "m30 = %f\n", vp->viewport.m30);
352 batch_out(brw, name, offset, 4, "m31 = %f\n", vp->viewport.m31);
353 batch_out(brw, name, offset, 5, "m32 = %f\n", vp->viewport.m32);
354 batch_out(brw, name, offset, 6, "guardband xmin = %f\n", vp->guardband.xmin);
355 batch_out(brw, name, offset, 7, "guardband xmax = %f\n", vp->guardband.xmax);
356 batch_out(brw, name, offset, 8, "guardband ymin = %f\n", vp->guardband.ymin);
357 batch_out(brw, name, offset, 9, "guardband ymax = %f\n", vp->guardband.ymax);
358 }
359
360
361 static void dump_cc_viewport_state(struct brw_context *brw, uint32_t offset)
362 {
363 const char *name = "CC VP";
364 struct brw_cc_viewport *vp = brw->intel.batch.bo->virtual + offset;
365
366 batch_out(brw, name, offset, 0, "min_depth = %f\n", vp->min_depth);
367 batch_out(brw, name, offset, 1, "max_depth = %f\n", vp->max_depth);
368 }
369
370 static void dump_depth_stencil_state(struct brw_context *brw, uint32_t offset)
371 {
372 const char *name = "D_S";
373 struct gen6_depth_stencil_state *ds = brw->intel.batch.bo->virtual + offset;
374
375 batch_out(brw, name, offset, 0,
376 "stencil %sable, func %d, write %sable\n",
377 ds->ds0.stencil_enable ? "en" : "dis",
378 ds->ds0.stencil_func,
379 ds->ds0.stencil_write_enable ? "en" : "dis");
380 batch_out(brw, name, offset, 1,
381 "stencil test mask 0x%x, write mask 0x%x\n",
382 ds->ds1.stencil_test_mask, ds->ds1.stencil_write_mask);
383 batch_out(brw, name, offset, 2,
384 "depth test %sable, func %d, write %sable\n",
385 ds->ds2.depth_test_enable ? "en" : "dis",
386 ds->ds2.depth_test_func,
387 ds->ds2.depth_write_enable ? "en" : "dis");
388 }
389
390 static void dump_cc_state_gen4(struct brw_context *brw, uint32_t offset)
391 {
392 const char *name = "CC";
393
394 batch_out(brw, name, offset, 0, "cc0\n");
395 batch_out(brw, name, offset, 1, "cc1\n");
396 batch_out(brw, name, offset, 2, "cc2\n");
397 batch_out(brw, name, offset, 3, "cc3\n");
398 batch_out(brw, name, offset, 4, "cc4: viewport offset\n");
399 batch_out(brw, name, offset, 5, "cc5\n");
400 batch_out(brw, name, offset, 6, "cc6\n");
401 batch_out(brw, name, offset, 7, "cc7\n");
402 }
403
404 static void dump_cc_state_gen6(struct brw_context *brw, uint32_t offset)
405 {
406 const char *name = "CC";
407 struct gen6_color_calc_state *cc = brw->intel.batch.bo->virtual + offset;
408
409 batch_out(brw, name, offset, 0,
410 "alpha test format %s, round disable %d, stencil ref %d, "
411 "bf stencil ref %d\n",
412 cc->cc0.alpha_test_format ? "FLOAT32" : "UNORM8",
413 cc->cc0.round_disable,
414 cc->cc0.stencil_ref,
415 cc->cc0.bf_stencil_ref);
416 batch_out(brw, name, offset, 1, "\n");
417 batch_out(brw, name, offset, 2, "constant red %f\n", cc->constant_r);
418 batch_out(brw, name, offset, 3, "constant green %f\n", cc->constant_g);
419 batch_out(brw, name, offset, 4, "constant blue %f\n", cc->constant_b);
420 batch_out(brw, name, offset, 5, "constant alpha %f\n", cc->constant_a);
421 }
422
423 static void dump_blend_state(struct brw_context *brw, uint32_t offset)
424 {
425 const char *name = "BLEND";
426
427 batch_out(brw, name, offset, 0, "\n");
428 batch_out(brw, name, offset, 1, "\n");
429 }
430
431 static void
432 dump_scissor(struct brw_context *brw, uint32_t offset)
433 {
434 const char *name = "SCISSOR";
435 struct intel_context *intel = &brw->intel;
436 struct gen6_scissor_rect *scissor = intel->batch.bo->virtual + offset;
437
438 batch_out(brw, name, offset, 0, "xmin %d, ymin %d\n",
439 scissor->xmin, scissor->ymin);
440 batch_out(brw, name, offset, 1, "xmax %d, ymax %d\n",
441 scissor->xmax, scissor->ymax);
442 }
443
444 static void
445 dump_vs_constants(struct brw_context *brw, uint32_t offset, uint32_t size)
446 {
447 const char *name = "VS_CONST";
448 struct intel_context *intel = &brw->intel;
449 uint32_t *as_uint = intel->batch.bo->virtual + offset;
450 float *as_float = intel->batch.bo->virtual + offset;
451 int i;
452
453 for (i = 0; i < size / 4; i += 4) {
454 batch_out(brw, name, offset, i, "%3d: (% f % f % f % f) (0x%08x 0x%08x 0x%08x 0x%08x)\n",
455 i / 4,
456 as_float[i], as_float[i + 1], as_float[i + 2], as_float[i + 3],
457 as_uint[i], as_uint[i + 1], as_uint[i + 2], as_uint[i + 3]);
458 }
459 }
460
461 static void
462 dump_wm_constants(struct brw_context *brw, uint32_t offset, uint32_t size)
463 {
464 const char *name = "WM_CONST";
465 struct intel_context *intel = &brw->intel;
466 uint32_t *as_uint = intel->batch.bo->virtual + offset;
467 float *as_float = intel->batch.bo->virtual + offset;
468 int i;
469
470 for (i = 0; i < size / 4; i += 4) {
471 batch_out(brw, name, offset, i, "%3d: (% f % f % f % f) (0x%08x 0x%08x 0x%08x 0x%08x)\n",
472 i / 4,
473 as_float[i], as_float[i + 1], as_float[i + 2], as_float[i + 3],
474 as_uint[i], as_uint[i + 1], as_uint[i + 2], as_uint[i + 3]);
475 }
476 }
477
478 static void dump_binding_table(struct brw_context *brw, uint32_t offset,
479 uint32_t size)
480 {
481 char name[20];
482 int i;
483 uint32_t *data = brw->intel.batch.bo->virtual + offset;
484
485 for (i = 0; i < size / 4; i++) {
486 if (data[i] == 0)
487 continue;
488
489 sprintf(name, "BIND%d", i);
490 batch_out(brw, name, offset, i, "surface state address\n");
491 }
492 }
493
494 static void
495 dump_prog_cache(struct brw_context *brw)
496 {
497 struct intel_context *intel = &brw->intel;
498 struct brw_cache *cache = &brw->cache;
499 unsigned int b, i;
500 uint32_t *data;
501
502 drm_intel_bo_map(brw->cache.bo, false);
503
504 for (b = 0; b < cache->size; b++) {
505 struct brw_cache_item *item;
506
507 for (item = cache->items[b]; item; item = item->next) {
508 const char *name;
509 uint32_t offset = item->offset;
510
511 data = brw->cache.bo->virtual + item->offset;
512
513 switch (item->cache_id) {
514 case BRW_VS_PROG:
515 name = "VS kernel";
516 break;
517 case BRW_GS_PROG:
518 name = "GS kernel";
519 break;
520 case BRW_CLIP_PROG:
521 name = "CLIP kernel";
522 break;
523 case BRW_SF_PROG:
524 name = "SF kernel";
525 break;
526 case BRW_WM_PROG:
527 name = "WM kernel";
528 break;
529 default:
530 name = "unknown";
531 break;
532 }
533
534 for (i = 0; i < item->size / 4 / 4; i++) {
535 fprintf(stderr, "0x%08x: %8s: 0x%08x 0x%08x 0x%08x 0x%08x ",
536 offset + i * 4 * 4,
537 name,
538 data[i * 4], data[i * 4 + 1], data[i * 4 + 2], data[i * 4 + 3]);
539
540 brw_disasm(stderr, (void *)(data + i * 4), intel->gen);
541 }
542 }
543 }
544
545 drm_intel_bo_unmap(brw->cache.bo);
546 }
547
548 static void
549 dump_state_batch(struct brw_context *brw)
550 {
551 struct intel_context *intel = &brw->intel;
552 int i;
553
554 for (i = 0; i < brw->state_batch_count; i++) {
555 uint32_t offset = brw->state_batch_list[i].offset;
556 uint32_t size = brw->state_batch_list[i].size;
557
558 switch (brw->state_batch_list[i].type) {
559 case AUB_TRACE_VS_STATE:
560 dump_vs_state(brw, offset);
561 break;
562 case AUB_TRACE_GS_STATE:
563 dump_gs_state(brw, offset);
564 break;
565 case AUB_TRACE_CLIP_STATE:
566 dump_clip_state(brw, offset);
567 break;
568 case AUB_TRACE_SF_STATE:
569 dump_sf_state(brw, offset);
570 break;
571 case AUB_TRACE_WM_STATE:
572 dump_wm_state(brw, offset);
573 break;
574 case AUB_TRACE_CLIP_VP_STATE:
575 dump_clip_viewport_state(brw, offset);
576 break;
577 case AUB_TRACE_SF_VP_STATE:
578 if (intel->gen >= 7) {
579 dump_sf_clip_viewport_state(brw, offset);
580 } else {
581 dump_sf_viewport_state(brw, offset);
582 }
583 break;
584 case AUB_TRACE_CC_VP_STATE:
585 dump_cc_viewport_state(brw, offset);
586 break;
587 case AUB_TRACE_DEPTH_STENCIL_STATE:
588 dump_depth_stencil_state(brw, offset);
589 break;
590 case AUB_TRACE_CC_STATE:
591 if (intel->gen >= 6)
592 dump_cc_state_gen6(brw, offset);
593 else
594 dump_cc_state_gen4(brw, offset);
595 break;
596 case AUB_TRACE_BLEND_STATE:
597 dump_blend_state(brw, offset);
598 break;
599 case AUB_TRACE_BINDING_TABLE:
600 dump_binding_table(brw, offset, size);
601 break;
602 case AUB_TRACE_SURFACE_STATE:
603 if (intel->gen < 7) {
604 dump_surface_state(brw, offset);
605 } else {
606 dump_gen7_surface_state(brw, offset);
607 }
608 break;
609 case AUB_TRACE_SAMPLER_STATE:
610 if (intel->gen < 7) {
611 dump_sampler_state(brw, offset, size);
612 } else {
613 dump_gen7_sampler_state(brw, offset, size);
614 }
615 break;
616 case AUB_TRACE_SAMPLER_DEFAULT_COLOR:
617 dump_sdc(brw, offset);
618 break;
619 case AUB_TRACE_SCISSOR_STATE:
620 dump_scissor(brw, offset);
621 break;
622 case AUB_TRACE_VS_CONSTANTS:
623 dump_vs_constants(brw, offset, size);
624 break;
625 case AUB_TRACE_WM_CONSTANTS:
626 dump_wm_constants(brw, offset, size);
627 break;
628 default:
629 break;
630 }
631 }
632 }
633
634 /**
635 * Print additional debug information associated with the batchbuffer
636 * when DEBUG_BATCH is set.
637 *
638 * For 965, this means mapping the state buffers that would have been referenced
639 * by the batchbuffer and dumping them.
640 *
641 * The buffer offsets printed rely on the buffer containing the last offset
642 * it was validated at.
643 */
644 void brw_debug_batch(struct intel_context *intel)
645 {
646 struct brw_context *brw = brw_context(&intel->ctx);
647
648 drm_intel_bo_map(intel->batch.bo, false);
649 dump_state_batch(brw);
650 drm_intel_bo_unmap(intel->batch.bo);
651
652 if (0)
653 dump_prog_cache(brw);
654 }