blob: 3a81500f745a6a5b5556acf12cace80fc98600c6 [file] [log] [blame]
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001/*
2 * Copyright © 2009-2011 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
Maarten Lankhorst07fead42014-07-31 15:07:27 +020024#ifdef HAVE_CONFIG_H
25#include "config.h"
26#endif
27
Eric Anholt9695eee2012-01-04 12:00:59 -080028#include <assert.h>
Eric Anholt8c4a2c82011-12-20 11:25:20 -080029#include <stdint.h>
Eric Anholt71066ab2011-12-20 13:06:16 -080030#include <stdlib.h>
Eric Anholt8c4a2c82011-12-20 11:25:20 -080031#include <stdio.h>
Eric Anholt71066ab2011-12-20 13:06:16 -080032#include <stdbool.h>
Eric Anholt8c4a2c82011-12-20 11:25:20 -080033#include <stdarg.h>
34#include <string.h>
35
Emil Velikov42465fe2015-04-05 15:51:59 +010036#include "libdrm_macros.h"
Thierry Reding44b08c02014-01-22 12:06:51 +010037#include "xf86drm.h"
Eric Anholt8c4a2c82011-12-20 11:25:20 -080038#include "intel_chipset.h"
Eric Anholt71066ab2011-12-20 13:06:16 -080039#include "intel_bufmgr.h"
40
Emil Velikov23667f52015-08-23 14:20:17 +010041
Eric Anholt71066ab2011-12-20 13:06:16 -080042/* Struct for tracking drm_intel_decode state. */
43struct drm_intel_decode {
Eric Anholtea33a232012-01-03 13:05:57 -080044 /** stdio file where the output should land. Defaults to stdout. */
45 FILE *out;
46
Eric Anholt71066ab2011-12-20 13:06:16 -080047 /** PCI device ID. */
48 uint32_t devid;
49
Eric Anholt9695eee2012-01-04 12:00:59 -080050 /**
51 * Shorthand device identifier: 3 is 915, 4 is 965, 5 is
52 * Ironlake, etc.
53 */
54 int gen;
55
Eric Anholt8fb66a72011-12-20 14:59:38 -080056 /** GPU address of the start of the current packet. */
Eric Anholt71066ab2011-12-20 13:06:16 -080057 uint32_t hw_offset;
Eric Anholt8fb66a72011-12-20 14:59:38 -080058 /** CPU virtual address of the start of the current packet. */
Eric Anholt71066ab2011-12-20 13:06:16 -080059 uint32_t *data;
Eric Anholt8fb66a72011-12-20 14:59:38 -080060 /** DWORDs of remaining batchbuffer data starting from the packet. */
Eric Anholt71066ab2011-12-20 13:06:16 -080061 uint32_t count;
62
Eric Anholt8fb66a72011-12-20 14:59:38 -080063 /** GPU address of the start of the batchbuffer data. */
64 uint32_t base_hw_offset;
65 /** CPU Virtual address of the start of the batchbuffer data. */
66 uint32_t *base_data;
67 /** Number of DWORDs of batchbuffer data. */
68 uint32_t base_count;
69
Eric Anholt71066ab2011-12-20 13:06:16 -080070 /** @{
71 * GPU head and tail pointers, which will be noted in the dump, or ~0.
72 */
73 uint32_t head, tail;
74 /** @} */
75
76 /**
77 * Whether to dump the dwords after MI_BATCHBUFFER_END.
78 *
79 * This sometimes provides clues in corrupted batchbuffers,
80 * and is used by the intel-gpu-tools.
81 */
82 bool dump_past_end;
Eric Anholt028715e2012-01-04 12:31:40 -080083
84 bool overflowed;
Eric Anholt71066ab2011-12-20 13:06:16 -080085};
Eric Anholt8c4a2c82011-12-20 11:25:20 -080086
87static FILE *out;
88static uint32_t saved_s2 = 0, saved_s4 = 0;
89static char saved_s2_set = 0, saved_s4_set = 0;
Eric Anholt193fa132011-12-20 11:36:07 -080090static uint32_t head_offset = 0xffffffff; /* undefined */
91static uint32_t tail_offset = 0xffffffff; /* undefined */
Eric Anholt8c4a2c82011-12-20 11:25:20 -080092
93#ifndef ARRAY_SIZE
94#define ARRAY_SIZE(A) (sizeof(A)/sizeof(A[0]))
95#endif
96
97#define BUFFER_FAIL(_count, _len, _name) do { \
98 fprintf(out, "Buffer size too small in %s (%d < %d)\n", \
99 (_name), (_count), (_len)); \
Eric Anholtc1d29462011-12-20 15:29:03 -0800100 return _count; \
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800101} while (0)
102
Eric Anholt193fa132011-12-20 11:36:07 -0800103static float int_as_float(uint32_t intval)
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800104{
Eric Anholt193fa132011-12-20 11:36:07 -0800105 union intfloat {
106 uint32_t i;
107 float f;
108 } uval;
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800109
Eric Anholt193fa132011-12-20 11:36:07 -0800110 uval.i = intval;
111 return uval.f;
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800112}
113
Thierry Reding44b08c02014-01-22 12:06:51 +0100114static void DRM_PRINTFLIKE(3, 4)
Eric Anholtc1d29462011-12-20 15:29:03 -0800115instr_out(struct drm_intel_decode *ctx, unsigned int index,
Eric Anholt1db55a82011-12-20 12:00:28 -0800116 const char *fmt, ...)
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800117{
Eric Anholt193fa132011-12-20 11:36:07 -0800118 va_list va;
Eric Anholt1db55a82011-12-20 12:00:28 -0800119 const char *parseinfo;
Eric Anholtc1d29462011-12-20 15:29:03 -0800120 uint32_t offset = ctx->hw_offset + index * 4;
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800121
Eric Anholt028715e2012-01-04 12:31:40 -0800122 if (index > ctx->count) {
123 if (!ctx->overflowed) {
124 fprintf(out, "ERROR: Decode attempted to continue beyond end of batchbuffer\n");
125 ctx->overflowed = true;
126 }
127 return;
128 }
129
Eric Anholt193fa132011-12-20 11:36:07 -0800130 if (offset == head_offset)
131 parseinfo = "HEAD";
132 else if (offset == tail_offset)
133 parseinfo = "TAIL";
134 else
135 parseinfo = " ";
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800136
Eric Anholt193fa132011-12-20 11:36:07 -0800137 fprintf(out, "0x%08x: %s 0x%08x: %s", offset, parseinfo,
Eric Anholtc1d29462011-12-20 15:29:03 -0800138 ctx->data[index], index == 0 ? "" : " ");
Eric Anholt193fa132011-12-20 11:36:07 -0800139 va_start(va, fmt);
140 vfprintf(out, fmt, va);
141 va_end(va);
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800142}
143
144static int
Ben Widawskyee2be4f2012-05-27 16:10:51 -0700145decode_MI_SET_CONTEXT(struct drm_intel_decode *ctx)
146{
147 uint32_t data = ctx->data[1];
148 if (ctx->gen > 7)
149 return 1;
150
151 instr_out(ctx, 0, "MI_SET_CONTEXT\n");
152 instr_out(ctx, 1, "gtt offset = 0x%x%s%s\n",
153 data & ~0xfff,
154 data & (1<<1)? ", Force Restore": "",
155 data & (1<<0)? ", Restore Inhibit": "");
156
157 return 2;
158}
159
160static int
Daniel Vetter43704252012-04-02 13:08:09 +0200161decode_MI_WAIT_FOR_EVENT(struct drm_intel_decode *ctx)
162{
163 const char *cc_wait;
164 int cc_shift = 0;
165 uint32_t data = ctx->data[0];
166
167 if (ctx->gen <= 5)
168 cc_shift = 9;
169 else
170 cc_shift = 16;
171
172 switch ((data >> cc_shift) & 0x1f) {
173 case 1:
174 cc_wait = ", cc wait 1";
175 break;
176 case 2:
177 cc_wait = ", cc wait 2";
178 break;
179 case 3:
180 cc_wait = ", cc wait 3";
181 break;
182 case 4:
183 cc_wait = ", cc wait 4";
184 break;
185 case 5:
186 cc_wait = ", cc wait 4";
187 break;
188 default:
189 cc_wait = "";
190 break;
191 }
192
193 if (ctx->gen <= 5) {
194 instr_out(ctx, 0, "MI_WAIT_FOR_EVENT%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n",
195 data & (1<<18)? ", pipe B start vblank wait": "",
196 data & (1<<17)? ", pipe A start vblank wait": "",
197 data & (1<<16)? ", overlay flip pending wait": "",
198 data & (1<<14)? ", pipe B hblank wait": "",
199 data & (1<<13)? ", pipe A hblank wait": "",
200 cc_wait,
201 data & (1<<8)? ", plane C pending flip wait": "",
202 data & (1<<7)? ", pipe B vblank wait": "",
203 data & (1<<6)? ", plane B pending flip wait": "",
204 data & (1<<5)? ", pipe B scan line wait": "",
205 data & (1<<4)? ", fbc idle wait": "",
206 data & (1<<3)? ", pipe A vblank wait": "",
207 data & (1<<2)? ", plane A pending flip wait": "",
208 data & (1<<1)? ", plane A scan line wait": "");
209 } else {
210 instr_out(ctx, 0, "MI_WAIT_FOR_EVENT%s%s%s%s%s%s%s%s%s%s%s%s\n",
211 data & (1<<20)? ", sprite C pending flip wait": "", /* ivb */
212 cc_wait,
213 data & (1<<13)? ", pipe B hblank wait": "",
214 data & (1<<11)? ", pipe B vblank wait": "",
215 data & (1<<10)? ", sprite B pending flip wait": "",
216 data & (1<<9)? ", plane B pending flip wait": "",
217 data & (1<<8)? ", plane B scan line wait": "",
218 data & (1<<5)? ", pipe A hblank wait": "",
219 data & (1<<3)? ", pipe A vblank wait": "",
220 data & (1<<2)? ", sprite A pending flip wait": "",
221 data & (1<<1)? ", plane A pending flip wait": "",
222 data & (1<<0)? ", plane A scan line wait": "");
223 }
224
225 return 1;
226}
227
228static int
Eric Anholtde49fd42011-12-20 15:15:21 -0800229decode_mi(struct drm_intel_decode *ctx)
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800230{
Eric Anholt193fa132011-12-20 11:36:07 -0800231 unsigned int opcode, len = -1;
Eric Anholt1db55a82011-12-20 12:00:28 -0800232 const char *post_sync_op = "";
Eric Anholtde49fd42011-12-20 15:15:21 -0800233 uint32_t *data = ctx->data;
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800234
Eric Anholt193fa132011-12-20 11:36:07 -0800235 struct {
236 uint32_t opcode;
237 int len_mask;
Eric Anholt07768ba2011-12-20 13:46:23 -0800238 unsigned int min_len;
239 unsigned int max_len;
Eric Anholt1db55a82011-12-20 12:00:28 -0800240 const char *name;
Daniel Vetter43704252012-04-02 13:08:09 +0200241 int (*func)(struct drm_intel_decode *ctx);
Eric Anholt193fa132011-12-20 11:36:07 -0800242 } opcodes_mi[] = {
Eric Anholtbbdda922011-12-20 11:44:36 -0800243 { 0x08, 0, 1, 1, "MI_ARB_ON_OFF" },
244 { 0x0a, 0, 1, 1, "MI_BATCH_BUFFER_END" },
245 { 0x30, 0x3f, 3, 3, "MI_BATCH_BUFFER" },
246 { 0x31, 0x3f, 2, 2, "MI_BATCH_BUFFER_START" },
247 { 0x14, 0x3f, 3, 3, "MI_DISPLAY_BUFFER_INFO" },
248 { 0x04, 0, 1, 1, "MI_FLUSH" },
249 { 0x22, 0x1f, 3, 3, "MI_LOAD_REGISTER_IMM" },
250 { 0x13, 0x3f, 2, 2, "MI_LOAD_SCAN_LINES_EXCL" },
251 { 0x12, 0x3f, 2, 2, "MI_LOAD_SCAN_LINES_INCL" },
252 { 0x00, 0, 1, 1, "MI_NOOP" },
253 { 0x11, 0x3f, 2, 2, "MI_OVERLAY_FLIP" },
254 { 0x07, 0, 1, 1, "MI_REPORT_HEAD" },
Ben Widawskyee2be4f2012-05-27 16:10:51 -0700255 { 0x18, 0x3f, 2, 2, "MI_SET_CONTEXT", decode_MI_SET_CONTEXT },
Eric Anholtbbdda922011-12-20 11:44:36 -0800256 { 0x20, 0x3f, 3, 4, "MI_STORE_DATA_IMM" },
257 { 0x21, 0x3f, 3, 4, "MI_STORE_DATA_INDEX" },
258 { 0x24, 0x3f, 3, 3, "MI_STORE_REGISTER_MEM" },
259 { 0x02, 0, 1, 1, "MI_USER_INTERRUPT" },
Daniel Vetter43704252012-04-02 13:08:09 +0200260 { 0x03, 0, 1, 1, "MI_WAIT_FOR_EVENT", decode_MI_WAIT_FOR_EVENT },
Eric Anholtbbdda922011-12-20 11:44:36 -0800261 { 0x16, 0x7f, 3, 3, "MI_SEMAPHORE_MBOX" },
262 { 0x26, 0x1f, 3, 4, "MI_FLUSH_DW" },
Kenneth Graunke551aac42013-10-29 19:30:45 -0700263 { 0x28, 0x3f, 3, 3, "MI_REPORT_PERF_COUNT" },
Kenneth Graunke45810d32013-10-29 20:41:16 -0700264 { 0x29, 0xff, 3, 3, "MI_LOAD_REGISTER_MEM" },
Eric Anholtbbdda922011-12-20 11:44:36 -0800265 { 0x0b, 0, 1, 1, "MI_SUSPEND_FLUSH"},
Daniel Vetter43704252012-04-02 13:08:09 +0200266 }, *opcode_mi = NULL;
Eric Anholt193fa132011-12-20 11:36:07 -0800267
268 /* check instruction length */
269 for (opcode = 0; opcode < sizeof(opcodes_mi) / sizeof(opcodes_mi[0]);
270 opcode++) {
271 if ((data[0] & 0x1f800000) >> 23 == opcodes_mi[opcode].opcode) {
272 len = 1;
273 if (opcodes_mi[opcode].max_len > 1) {
274 len =
275 (data[0] & opcodes_mi[opcode].len_mask) + 2;
276 if (len < opcodes_mi[opcode].min_len
277 || len > opcodes_mi[opcode].max_len) {
278 fprintf(out,
279 "Bad length (%d) in %s, [%d, %d]\n",
280 len, opcodes_mi[opcode].name,
281 opcodes_mi[opcode].min_len,
282 opcodes_mi[opcode].max_len);
283 }
284 }
Daniel Vetter43704252012-04-02 13:08:09 +0200285 opcode_mi = &opcodes_mi[opcode];
Eric Anholt193fa132011-12-20 11:36:07 -0800286 break;
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800287 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800288 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800289
Daniel Vetter43704252012-04-02 13:08:09 +0200290 if (opcode_mi && opcode_mi->func)
291 return opcode_mi->func(ctx);
292
Eric Anholt193fa132011-12-20 11:36:07 -0800293 switch ((data[0] & 0x1f800000) >> 23) {
294 case 0x0a:
Eric Anholtc1d29462011-12-20 15:29:03 -0800295 instr_out(ctx, 0, "MI_BATCH_BUFFER_END\n");
Eric Anholt193fa132011-12-20 11:36:07 -0800296 return -1;
297 case 0x16:
Eric Anholtc1d29462011-12-20 15:29:03 -0800298 instr_out(ctx, 0, "MI_SEMAPHORE_MBOX%s%s%s%s %u\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800299 data[0] & (1 << 22) ? " global gtt," : "",
300 data[0] & (1 << 21) ? " update semaphore," : "",
301 data[0] & (1 << 20) ? " compare semaphore," : "",
302 data[0] & (1 << 18) ? " use compare reg" : "",
303 (data[0] & (0x3 << 16)) >> 16);
Eric Anholtc1d29462011-12-20 15:29:03 -0800304 instr_out(ctx, 1, "value\n");
305 instr_out(ctx, 2, "address\n");
Eric Anholt193fa132011-12-20 11:36:07 -0800306 return len;
307 case 0x21:
Eric Anholtc1d29462011-12-20 15:29:03 -0800308 instr_out(ctx, 0, "MI_STORE_DATA_INDEX%s\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800309 data[0] & (1 << 21) ? " use per-process HWS," : "");
Eric Anholtc1d29462011-12-20 15:29:03 -0800310 instr_out(ctx, 1, "index\n");
311 instr_out(ctx, 2, "dword\n");
Eric Anholt193fa132011-12-20 11:36:07 -0800312 if (len == 4)
Eric Anholtc1d29462011-12-20 15:29:03 -0800313 instr_out(ctx, 3, "upper dword\n");
Eric Anholt193fa132011-12-20 11:36:07 -0800314 return len;
315 case 0x00:
316 if (data[0] & (1 << 22))
Eric Anholtc1d29462011-12-20 15:29:03 -0800317 instr_out(ctx, 0,
Eric Anholt193fa132011-12-20 11:36:07 -0800318 "MI_NOOP write NOPID reg, val=0x%x\n",
319 data[0] & ((1 << 22) - 1));
320 else
Eric Anholtc1d29462011-12-20 15:29:03 -0800321 instr_out(ctx, 0, "MI_NOOP\n");
Eric Anholt193fa132011-12-20 11:36:07 -0800322 return len;
323 case 0x26:
324 switch (data[0] & (0x3 << 14)) {
325 case (0 << 14):
326 post_sync_op = "no write";
327 break;
328 case (1 << 14):
329 post_sync_op = "write data";
330 break;
331 case (2 << 14):
332 post_sync_op = "reserved";
333 break;
334 case (3 << 14):
335 post_sync_op = "write TIMESTAMP";
336 break;
337 }
Eric Anholtc1d29462011-12-20 15:29:03 -0800338 instr_out(ctx, 0,
Eric Anholt193fa132011-12-20 11:36:07 -0800339 "MI_FLUSH_DW%s%s%s%s post_sync_op='%s' %s%s\n",
340 data[0] & (1 << 22) ?
341 " enable protected mem (BCS-only)," : "",
342 data[0] & (1 << 21) ? " store in hws," : "",
343 data[0] & (1 << 18) ? " invalidate tlb," : "",
344 data[0] & (1 << 17) ? " flush gfdt," : "",
345 post_sync_op,
346 data[0] & (1 << 8) ? " enable notify interrupt," : "",
347 data[0] & (1 << 7) ?
348 " invalidate video state (BCS-only)," : "");
349 if (data[0] & (1 << 21))
Eric Anholtc1d29462011-12-20 15:29:03 -0800350 instr_out(ctx, 1, "hws index\n");
Eric Anholt193fa132011-12-20 11:36:07 -0800351 else
Eric Anholtc1d29462011-12-20 15:29:03 -0800352 instr_out(ctx, 1, "address\n");
353 instr_out(ctx, 2, "dword\n");
Eric Anholt193fa132011-12-20 11:36:07 -0800354 if (len == 4)
Eric Anholtc1d29462011-12-20 15:29:03 -0800355 instr_out(ctx, 3, "upper dword\n");
Eric Anholt193fa132011-12-20 11:36:07 -0800356 return len;
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800357 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800358
Eric Anholt193fa132011-12-20 11:36:07 -0800359 for (opcode = 0; opcode < sizeof(opcodes_mi) / sizeof(opcodes_mi[0]);
360 opcode++) {
361 if ((data[0] & 0x1f800000) >> 23 == opcodes_mi[opcode].opcode) {
Eric Anholt07768ba2011-12-20 13:46:23 -0800362 unsigned int i;
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800363
Eric Anholtc1d29462011-12-20 15:29:03 -0800364 instr_out(ctx, 0, "%s\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800365 opcodes_mi[opcode].name);
Eric Anholt07768ba2011-12-20 13:46:23 -0800366 for (i = 1; i < len; i++) {
Eric Anholtc1d29462011-12-20 15:29:03 -0800367 instr_out(ctx, i, "dword %d\n", i);
Eric Anholt193fa132011-12-20 11:36:07 -0800368 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800369
Eric Anholt193fa132011-12-20 11:36:07 -0800370 return len;
371 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800372 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800373
Eric Anholtc1d29462011-12-20 15:29:03 -0800374 instr_out(ctx, 0, "MI UNKNOWN\n");
Eric Anholt193fa132011-12-20 11:36:07 -0800375 return 1;
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800376}
377
378static void
Eric Anholt62b41032011-12-20 15:17:24 -0800379decode_2d_br00(struct drm_intel_decode *ctx, const char *cmd)
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800380{
Eric Anholtc1d29462011-12-20 15:29:03 -0800381 instr_out(ctx, 0,
Eric Anholt193fa132011-12-20 11:36:07 -0800382 "%s (rgb %sabled, alpha %sabled, src tile %d, dst tile %d)\n",
383 cmd,
Eric Anholt62b41032011-12-20 15:17:24 -0800384 (ctx->data[0] & (1 << 20)) ? "en" : "dis",
385 (ctx->data[0] & (1 << 21)) ? "en" : "dis",
386 (ctx->data[0] >> 15) & 1,
387 (ctx->data[0] >> 11) & 1);
Eric Anholt193fa132011-12-20 11:36:07 -0800388}
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800389
Eric Anholtb0371612011-12-20 15:19:24 -0800390static void
391decode_2d_br01(struct drm_intel_decode *ctx)
Eric Anholt193fa132011-12-20 11:36:07 -0800392{
Eric Anholt1db55a82011-12-20 12:00:28 -0800393 const char *format;
Eric Anholtb0371612011-12-20 15:19:24 -0800394 switch ((ctx->data[1] >> 24) & 0x3) {
Eric Anholt193fa132011-12-20 11:36:07 -0800395 case 0:
396 format = "8";
397 break;
398 case 1:
399 format = "565";
400 break;
401 case 2:
402 format = "1555";
403 break;
404 case 3:
405 format = "8888";
406 break;
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800407 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800408
Eric Anholtc1d29462011-12-20 15:29:03 -0800409 instr_out(ctx, 1,
Eric Anholtb0371612011-12-20 15:19:24 -0800410 "format %s, pitch %d, rop 0x%02x, "
Eric Anholt193fa132011-12-20 11:36:07 -0800411 "clipping %sabled, %s%s \n",
412 format,
Eric Anholtb0371612011-12-20 15:19:24 -0800413 (short)(ctx->data[1] & 0xffff),
414 (ctx->data[1] >> 16) & 0xff,
415 ctx->data[1] & (1 << 30) ? "en" : "dis",
416 ctx->data[1] & (1 << 31) ? "solid pattern enabled, " : "",
417 ctx->data[1] & (1 << 31) ?
Eric Anholt193fa132011-12-20 11:36:07 -0800418 "mono pattern transparency enabled, " : "");
419
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800420}
421
422static int
Eric Anholtde49fd42011-12-20 15:15:21 -0800423decode_2d(struct drm_intel_decode *ctx)
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800424{
Eric Anholt193fa132011-12-20 11:36:07 -0800425 unsigned int opcode, len;
Eric Anholtde49fd42011-12-20 15:15:21 -0800426 uint32_t *data = ctx->data;
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800427
Eric Anholt193fa132011-12-20 11:36:07 -0800428 struct {
429 uint32_t opcode;
Eric Anholt07768ba2011-12-20 13:46:23 -0800430 unsigned int min_len;
431 unsigned int max_len;
Eric Anholt1db55a82011-12-20 12:00:28 -0800432 const char *name;
Eric Anholt193fa132011-12-20 11:36:07 -0800433 } opcodes_2d[] = {
Eric Anholtbbdda922011-12-20 11:44:36 -0800434 { 0x40, 5, 5, "COLOR_BLT" },
435 { 0x43, 6, 6, "SRC_COPY_BLT" },
436 { 0x01, 8, 8, "XY_SETUP_BLT" },
437 { 0x11, 9, 9, "XY_SETUP_MONO_PATTERN_SL_BLT" },
438 { 0x03, 3, 3, "XY_SETUP_CLIP_BLT" },
439 { 0x24, 2, 2, "XY_PIXEL_BLT" },
440 { 0x25, 3, 3, "XY_SCANLINES_BLT" },
441 { 0x26, 4, 4, "Y_TEXT_BLT" },
442 { 0x31, 5, 134, "XY_TEXT_IMMEDIATE_BLT" },
443 { 0x50, 6, 6, "XY_COLOR_BLT" },
444 { 0x51, 6, 6, "XY_PAT_BLT" },
445 { 0x76, 8, 8, "XY_PAT_CHROMA_BLT" },
446 { 0x72, 7, 135, "XY_PAT_BLT_IMMEDIATE" },
447 { 0x77, 9, 137, "XY_PAT_CHROMA_BLT_IMMEDIATE" },
448 { 0x52, 9, 9, "XY_MONO_PAT_BLT" },
449 { 0x59, 7, 7, "XY_MONO_PAT_FIXED_BLT" },
450 { 0x53, 8, 8, "XY_SRC_COPY_BLT" },
451 { 0x54, 8, 8, "XY_MONO_SRC_COPY_BLT" },
452 { 0x71, 9, 137, "XY_MONO_SRC_COPY_IMMEDIATE_BLT" },
453 { 0x55, 9, 9, "XY_FULL_BLT" },
454 { 0x55, 9, 137, "XY_FULL_IMMEDIATE_PATTERN_BLT" },
455 { 0x56, 9, 9, "XY_FULL_MONO_SRC_BLT" },
456 { 0x75, 10, 138, "XY_FULL_MONO_SRC_IMMEDIATE_PATTERN_BLT" },
457 { 0x57, 12, 12, "XY_FULL_MONO_PATTERN_BLT" },
458 { 0x58, 12, 12, "XY_FULL_MONO_PATTERN_MONO_SRC_BLT"},
459 };
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800460
Eric Anholt193fa132011-12-20 11:36:07 -0800461 switch ((data[0] & 0x1fc00000) >> 22) {
462 case 0x25:
Eric Anholtc1d29462011-12-20 15:29:03 -0800463 instr_out(ctx, 0,
Eric Anholt193fa132011-12-20 11:36:07 -0800464 "XY_SCANLINES_BLT (pattern seed (%d, %d), dst tile %d)\n",
465 (data[0] >> 12) & 0x8,
466 (data[0] >> 8) & 0x8, (data[0] >> 11) & 1);
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800467
Eric Anholt193fa132011-12-20 11:36:07 -0800468 len = (data[0] & 0x000000ff) + 2;
469 if (len != 3)
470 fprintf(out, "Bad count in XY_SCANLINES_BLT\n");
Eric Anholt193fa132011-12-20 11:36:07 -0800471
Eric Anholtc1d29462011-12-20 15:29:03 -0800472 instr_out(ctx, 1, "dest (%d,%d)\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800473 data[1] & 0xffff, data[1] >> 16);
Eric Anholtc1d29462011-12-20 15:29:03 -0800474 instr_out(ctx, 2, "dest (%d,%d)\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800475 data[2] & 0xffff, data[2] >> 16);
476 return len;
477 case 0x01:
Eric Anholt62b41032011-12-20 15:17:24 -0800478 decode_2d_br00(ctx, "XY_SETUP_BLT");
Eric Anholt193fa132011-12-20 11:36:07 -0800479
480 len = (data[0] & 0x000000ff) + 2;
481 if (len != 8)
482 fprintf(out, "Bad count in XY_SETUP_BLT\n");
Eric Anholt193fa132011-12-20 11:36:07 -0800483
Eric Anholtb0371612011-12-20 15:19:24 -0800484 decode_2d_br01(ctx);
Eric Anholtc1d29462011-12-20 15:29:03 -0800485 instr_out(ctx, 2, "cliprect (%d,%d)\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800486 data[2] & 0xffff, data[2] >> 16);
Eric Anholtc1d29462011-12-20 15:29:03 -0800487 instr_out(ctx, 3, "cliprect (%d,%d)\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800488 data[3] & 0xffff, data[3] >> 16);
Eric Anholtc1d29462011-12-20 15:29:03 -0800489 instr_out(ctx, 4, "setup dst offset 0x%08x\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800490 data[4]);
Eric Anholtc1d29462011-12-20 15:29:03 -0800491 instr_out(ctx, 5, "setup background color\n");
492 instr_out(ctx, 6, "setup foreground color\n");
493 instr_out(ctx, 7, "color pattern offset\n");
Eric Anholt193fa132011-12-20 11:36:07 -0800494 return len;
495 case 0x03:
Eric Anholt62b41032011-12-20 15:17:24 -0800496 decode_2d_br00(ctx, "XY_SETUP_CLIP_BLT");
Eric Anholt193fa132011-12-20 11:36:07 -0800497
498 len = (data[0] & 0x000000ff) + 2;
499 if (len != 3)
500 fprintf(out, "Bad count in XY_SETUP_CLIP_BLT\n");
Eric Anholt193fa132011-12-20 11:36:07 -0800501
Eric Anholtc1d29462011-12-20 15:29:03 -0800502 instr_out(ctx, 1, "cliprect (%d,%d)\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800503 data[1] & 0xffff, data[2] >> 16);
Eric Anholtc1d29462011-12-20 15:29:03 -0800504 instr_out(ctx, 2, "cliprect (%d,%d)\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800505 data[2] & 0xffff, data[3] >> 16);
506 return len;
507 case 0x11:
Eric Anholt62b41032011-12-20 15:17:24 -0800508 decode_2d_br00(ctx, "XY_SETUP_MONO_PATTERN_SL_BLT");
Eric Anholt193fa132011-12-20 11:36:07 -0800509
510 len = (data[0] & 0x000000ff) + 2;
511 if (len != 9)
512 fprintf(out,
513 "Bad count in XY_SETUP_MONO_PATTERN_SL_BLT\n");
Eric Anholt193fa132011-12-20 11:36:07 -0800514
Eric Anholtb0371612011-12-20 15:19:24 -0800515 decode_2d_br01(ctx);
Eric Anholtc1d29462011-12-20 15:29:03 -0800516 instr_out(ctx, 2, "cliprect (%d,%d)\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800517 data[2] & 0xffff, data[2] >> 16);
Eric Anholtc1d29462011-12-20 15:29:03 -0800518 instr_out(ctx, 3, "cliprect (%d,%d)\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800519 data[3] & 0xffff, data[3] >> 16);
Eric Anholtc1d29462011-12-20 15:29:03 -0800520 instr_out(ctx, 4, "setup dst offset 0x%08x\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800521 data[4]);
Eric Anholtc1d29462011-12-20 15:29:03 -0800522 instr_out(ctx, 5, "setup background color\n");
523 instr_out(ctx, 6, "setup foreground color\n");
524 instr_out(ctx, 7, "mono pattern dw0\n");
525 instr_out(ctx, 8, "mono pattern dw1\n");
Eric Anholt193fa132011-12-20 11:36:07 -0800526 return len;
527 case 0x50:
Eric Anholt62b41032011-12-20 15:17:24 -0800528 decode_2d_br00(ctx, "XY_COLOR_BLT");
Eric Anholt193fa132011-12-20 11:36:07 -0800529
530 len = (data[0] & 0x000000ff) + 2;
531 if (len != 6)
532 fprintf(out, "Bad count in XY_COLOR_BLT\n");
Eric Anholt193fa132011-12-20 11:36:07 -0800533
Eric Anholtb0371612011-12-20 15:19:24 -0800534 decode_2d_br01(ctx);
Eric Anholtc1d29462011-12-20 15:29:03 -0800535 instr_out(ctx, 2, "(%d,%d)\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800536 data[2] & 0xffff, data[2] >> 16);
Eric Anholtc1d29462011-12-20 15:29:03 -0800537 instr_out(ctx, 3, "(%d,%d)\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800538 data[3] & 0xffff, data[3] >> 16);
Eric Anholtc1d29462011-12-20 15:29:03 -0800539 instr_out(ctx, 4, "offset 0x%08x\n", data[4]);
540 instr_out(ctx, 5, "color\n");
Eric Anholt193fa132011-12-20 11:36:07 -0800541 return len;
542 case 0x53:
Eric Anholt62b41032011-12-20 15:17:24 -0800543 decode_2d_br00(ctx, "XY_SRC_COPY_BLT");
Eric Anholt193fa132011-12-20 11:36:07 -0800544
545 len = (data[0] & 0x000000ff) + 2;
546 if (len != 8)
547 fprintf(out, "Bad count in XY_SRC_COPY_BLT\n");
Eric Anholt193fa132011-12-20 11:36:07 -0800548
Eric Anholtb0371612011-12-20 15:19:24 -0800549 decode_2d_br01(ctx);
Eric Anholtc1d29462011-12-20 15:29:03 -0800550 instr_out(ctx, 2, "dst (%d,%d)\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800551 data[2] & 0xffff, data[2] >> 16);
Eric Anholtc1d29462011-12-20 15:29:03 -0800552 instr_out(ctx, 3, "dst (%d,%d)\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800553 data[3] & 0xffff, data[3] >> 16);
Eric Anholtc1d29462011-12-20 15:29:03 -0800554 instr_out(ctx, 4, "dst offset 0x%08x\n", data[4]);
555 instr_out(ctx, 5, "src (%d,%d)\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800556 data[5] & 0xffff, data[5] >> 16);
Eric Anholtc1d29462011-12-20 15:29:03 -0800557 instr_out(ctx, 6, "src pitch %d\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800558 (short)(data[6] & 0xffff));
Eric Anholtc1d29462011-12-20 15:29:03 -0800559 instr_out(ctx, 7, "src offset 0x%08x\n", data[7]);
Eric Anholt193fa132011-12-20 11:36:07 -0800560 return len;
561 }
562
563 for (opcode = 0; opcode < sizeof(opcodes_2d) / sizeof(opcodes_2d[0]);
564 opcode++) {
565 if ((data[0] & 0x1fc00000) >> 22 == opcodes_2d[opcode].opcode) {
566 unsigned int i;
567
568 len = 1;
Eric Anholtc1d29462011-12-20 15:29:03 -0800569 instr_out(ctx, 0, "%s\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800570 opcodes_2d[opcode].name);
571 if (opcodes_2d[opcode].max_len > 1) {
572 len = (data[0] & 0x000000ff) + 2;
573 if (len < opcodes_2d[opcode].min_len ||
574 len > opcodes_2d[opcode].max_len) {
575 fprintf(out, "Bad count in %s\n",
576 opcodes_2d[opcode].name);
577 }
578 }
579
580 for (i = 1; i < len; i++) {
Eric Anholtc1d29462011-12-20 15:29:03 -0800581 instr_out(ctx, i, "dword %d\n", i);
Eric Anholt193fa132011-12-20 11:36:07 -0800582 }
583
584 return len;
585 }
586 }
587
Eric Anholtc1d29462011-12-20 15:29:03 -0800588 instr_out(ctx, 0, "2D UNKNOWN\n");
Eric Anholt193fa132011-12-20 11:36:07 -0800589 return 1;
590}
591
592static int
Eric Anholtde49fd42011-12-20 15:15:21 -0800593decode_3d_1c(struct drm_intel_decode *ctx)
Eric Anholt193fa132011-12-20 11:36:07 -0800594{
Eric Anholtde49fd42011-12-20 15:15:21 -0800595 uint32_t *data = ctx->data;
Eric Anholt193fa132011-12-20 11:36:07 -0800596 uint32_t opcode;
597
598 opcode = (data[0] & 0x00f80000) >> 19;
599
600 switch (opcode) {
601 case 0x11:
Eric Anholtc1d29462011-12-20 15:29:03 -0800602 instr_out(ctx, 0,
Eric Anholt193fa132011-12-20 11:36:07 -0800603 "3DSTATE_DEPTH_SUBRECTANGLE_DISABLE\n");
604 return 1;
605 case 0x10:
Eric Anholtc1d29462011-12-20 15:29:03 -0800606 instr_out(ctx, 0, "3DSTATE_SCISSOR_ENABLE %s\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800607 data[0] & 1 ? "enabled" : "disabled");
608 return 1;
609 case 0x01:
Eric Anholtc1d29462011-12-20 15:29:03 -0800610 instr_out(ctx, 0, "3DSTATE_MAP_COORD_SET_I830\n");
Eric Anholt193fa132011-12-20 11:36:07 -0800611 return 1;
612 case 0x0a:
Eric Anholtc1d29462011-12-20 15:29:03 -0800613 instr_out(ctx, 0, "3DSTATE_MAP_CUBE_I830\n");
Eric Anholt193fa132011-12-20 11:36:07 -0800614 return 1;
615 case 0x05:
Eric Anholtc1d29462011-12-20 15:29:03 -0800616 instr_out(ctx, 0, "3DSTATE_MAP_TEX_STREAM_I830\n");
Eric Anholt193fa132011-12-20 11:36:07 -0800617 return 1;
618 }
619
Eric Anholtc1d29462011-12-20 15:29:03 -0800620 instr_out(ctx, 0, "3D UNKNOWN: 3d_1c opcode = 0x%x\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800621 opcode);
Eric Anholt193fa132011-12-20 11:36:07 -0800622 return 1;
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800623}
624
625/** Sets the string dstname to describe the destination of the PS instruction */
626static void
Eric Anholtbbdda922011-12-20 11:44:36 -0800627i915_get_instruction_dst(uint32_t *data, int i, char *dstname, int do_mask)
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800628{
Eric Anholt193fa132011-12-20 11:36:07 -0800629 uint32_t a0 = data[i];
630 int dst_nr = (a0 >> 14) & 0xf;
631 char dstmask[8];
Eric Anholt1db55a82011-12-20 12:00:28 -0800632 const char *sat;
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800633
Eric Anholt193fa132011-12-20 11:36:07 -0800634 if (do_mask) {
635 if (((a0 >> 10) & 0xf) == 0xf) {
636 dstmask[0] = 0;
637 } else {
638 int dstmask_index = 0;
639
640 dstmask[dstmask_index++] = '.';
641 if (a0 & (1 << 10))
642 dstmask[dstmask_index++] = 'x';
643 if (a0 & (1 << 11))
644 dstmask[dstmask_index++] = 'y';
645 if (a0 & (1 << 12))
646 dstmask[dstmask_index++] = 'z';
647 if (a0 & (1 << 13))
648 dstmask[dstmask_index++] = 'w';
649 dstmask[dstmask_index++] = 0;
650 }
651
652 if (a0 & (1 << 22))
653 sat = ".sat";
654 else
655 sat = "";
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800656 } else {
Eric Anholt193fa132011-12-20 11:36:07 -0800657 dstmask[0] = 0;
658 sat = "";
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800659 }
660
Eric Anholt193fa132011-12-20 11:36:07 -0800661 switch ((a0 >> 19) & 0x7) {
662 case 0:
663 if (dst_nr > 15)
664 fprintf(out, "bad destination reg R%d\n", dst_nr);
665 sprintf(dstname, "R%d%s%s", dst_nr, dstmask, sat);
666 break;
667 case 4:
668 if (dst_nr > 0)
669 fprintf(out, "bad destination reg oC%d\n", dst_nr);
670 sprintf(dstname, "oC%s%s", dstmask, sat);
671 break;
672 case 5:
673 if (dst_nr > 0)
674 fprintf(out, "bad destination reg oD%d\n", dst_nr);
675 sprintf(dstname, "oD%s%s", dstmask, sat);
676 break;
677 case 6:
678 if (dst_nr > 3)
679 fprintf(out, "bad destination reg U%d\n", dst_nr);
680 sprintf(dstname, "U%d%s%s", dst_nr, dstmask, sat);
681 break;
682 default:
683 sprintf(dstname, "RESERVED");
684 break;
685 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800686}
687
Eric Anholt1db55a82011-12-20 12:00:28 -0800688static const char *
689i915_get_channel_swizzle(uint32_t select)
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800690{
Eric Anholt193fa132011-12-20 11:36:07 -0800691 switch (select & 0x7) {
692 case 0:
693 return (select & 8) ? "-x" : "x";
694 case 1:
695 return (select & 8) ? "-y" : "y";
696 case 2:
697 return (select & 8) ? "-z" : "z";
698 case 3:
699 return (select & 8) ? "-w" : "w";
700 case 4:
701 return (select & 8) ? "-0" : "0";
702 case 5:
703 return (select & 8) ? "-1" : "1";
704 default:
705 return (select & 8) ? "-bad" : "bad";
706 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800707}
708
709static void
710i915_get_instruction_src_name(uint32_t src_type, uint32_t src_nr, char *name)
711{
Eric Anholt193fa132011-12-20 11:36:07 -0800712 switch (src_type) {
713 case 0:
714 sprintf(name, "R%d", src_nr);
715 if (src_nr > 15)
716 fprintf(out, "bad src reg %s\n", name);
717 break;
718 case 1:
719 if (src_nr < 8)
720 sprintf(name, "T%d", src_nr);
721 else if (src_nr == 8)
722 sprintf(name, "DIFFUSE");
723 else if (src_nr == 9)
724 sprintf(name, "SPECULAR");
725 else if (src_nr == 10)
726 sprintf(name, "FOG");
727 else {
728 fprintf(out, "bad src reg T%d\n", src_nr);
729 sprintf(name, "RESERVED");
730 }
731 break;
732 case 2:
733 sprintf(name, "C%d", src_nr);
734 if (src_nr > 31)
735 fprintf(out, "bad src reg %s\n", name);
736 break;
737 case 4:
738 sprintf(name, "oC");
739 if (src_nr > 0)
740 fprintf(out, "bad src reg oC%d\n", src_nr);
741 break;
742 case 5:
743 sprintf(name, "oD");
744 if (src_nr > 0)
745 fprintf(out, "bad src reg oD%d\n", src_nr);
746 break;
747 case 6:
748 sprintf(name, "U%d", src_nr);
749 if (src_nr > 3)
750 fprintf(out, "bad src reg %s\n", name);
751 break;
752 default:
753 fprintf(out, "bad src reg type %d\n", src_type);
754 sprintf(name, "RESERVED");
755 break;
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800756 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800757}
758
Eric Anholtbbdda922011-12-20 11:44:36 -0800759static void i915_get_instruction_src0(uint32_t *data, int i, char *srcname)
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800760{
Eric Anholt193fa132011-12-20 11:36:07 -0800761 uint32_t a0 = data[i];
762 uint32_t a1 = data[i + 1];
763 int src_nr = (a0 >> 2) & 0x1f;
Eric Anholt1db55a82011-12-20 12:00:28 -0800764 const char *swizzle_x = i915_get_channel_swizzle((a1 >> 28) & 0xf);
765 const char *swizzle_y = i915_get_channel_swizzle((a1 >> 24) & 0xf);
766 const char *swizzle_z = i915_get_channel_swizzle((a1 >> 20) & 0xf);
767 const char *swizzle_w = i915_get_channel_swizzle((a1 >> 16) & 0xf);
Eric Anholt193fa132011-12-20 11:36:07 -0800768 char swizzle[100];
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800769
Eric Anholt193fa132011-12-20 11:36:07 -0800770 i915_get_instruction_src_name((a0 >> 7) & 0x7, src_nr, srcname);
771 sprintf(swizzle, ".%s%s%s%s", swizzle_x, swizzle_y, swizzle_z,
772 swizzle_w);
773 if (strcmp(swizzle, ".xyzw") != 0)
774 strcat(srcname, swizzle);
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800775}
776
Eric Anholtbbdda922011-12-20 11:44:36 -0800777static void i915_get_instruction_src1(uint32_t *data, int i, char *srcname)
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800778{
Eric Anholt193fa132011-12-20 11:36:07 -0800779 uint32_t a1 = data[i + 1];
780 uint32_t a2 = data[i + 2];
781 int src_nr = (a1 >> 8) & 0x1f;
Eric Anholt1db55a82011-12-20 12:00:28 -0800782 const char *swizzle_x = i915_get_channel_swizzle((a1 >> 4) & 0xf);
783 const char *swizzle_y = i915_get_channel_swizzle((a1 >> 0) & 0xf);
784 const char *swizzle_z = i915_get_channel_swizzle((a2 >> 28) & 0xf);
785 const char *swizzle_w = i915_get_channel_swizzle((a2 >> 24) & 0xf);
Eric Anholt193fa132011-12-20 11:36:07 -0800786 char swizzle[100];
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800787
Eric Anholt193fa132011-12-20 11:36:07 -0800788 i915_get_instruction_src_name((a1 >> 13) & 0x7, src_nr, srcname);
789 sprintf(swizzle, ".%s%s%s%s", swizzle_x, swizzle_y, swizzle_z,
790 swizzle_w);
791 if (strcmp(swizzle, ".xyzw") != 0)
792 strcat(srcname, swizzle);
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800793}
794
Eric Anholtbbdda922011-12-20 11:44:36 -0800795static void i915_get_instruction_src2(uint32_t *data, int i, char *srcname)
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800796{
Eric Anholt193fa132011-12-20 11:36:07 -0800797 uint32_t a2 = data[i + 2];
798 int src_nr = (a2 >> 16) & 0x1f;
Eric Anholt1db55a82011-12-20 12:00:28 -0800799 const char *swizzle_x = i915_get_channel_swizzle((a2 >> 12) & 0xf);
800 const char *swizzle_y = i915_get_channel_swizzle((a2 >> 8) & 0xf);
801 const char *swizzle_z = i915_get_channel_swizzle((a2 >> 4) & 0xf);
802 const char *swizzle_w = i915_get_channel_swizzle((a2 >> 0) & 0xf);
Eric Anholt193fa132011-12-20 11:36:07 -0800803 char swizzle[100];
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800804
Eric Anholt193fa132011-12-20 11:36:07 -0800805 i915_get_instruction_src_name((a2 >> 21) & 0x7, src_nr, srcname);
806 sprintf(swizzle, ".%s%s%s%s", swizzle_x, swizzle_y, swizzle_z,
807 swizzle_w);
808 if (strcmp(swizzle, ".xyzw") != 0)
809 strcat(srcname, swizzle);
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800810}
811
812static void
813i915_get_instruction_addr(uint32_t src_type, uint32_t src_nr, char *name)
814{
Eric Anholt193fa132011-12-20 11:36:07 -0800815 switch (src_type) {
816 case 0:
817 sprintf(name, "R%d", src_nr);
818 if (src_nr > 15)
819 fprintf(out, "bad src reg %s\n", name);
820 break;
821 case 1:
822 if (src_nr < 8)
823 sprintf(name, "T%d", src_nr);
824 else if (src_nr == 8)
825 sprintf(name, "DIFFUSE");
826 else if (src_nr == 9)
827 sprintf(name, "SPECULAR");
828 else if (src_nr == 10)
829 sprintf(name, "FOG");
830 else {
831 fprintf(out, "bad src reg T%d\n", src_nr);
832 sprintf(name, "RESERVED");
833 }
834 break;
835 case 4:
836 sprintf(name, "oC");
837 if (src_nr > 0)
838 fprintf(out, "bad src reg oC%d\n", src_nr);
839 break;
840 case 5:
841 sprintf(name, "oD");
842 if (src_nr > 0)
843 fprintf(out, "bad src reg oD%d\n", src_nr);
844 break;
845 default:
846 fprintf(out, "bad src reg type %d\n", src_type);
847 sprintf(name, "RESERVED");
848 break;
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800849 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800850}
851
852static void
Eric Anholtc1d29462011-12-20 15:29:03 -0800853i915_decode_alu1(struct drm_intel_decode *ctx,
Eric Anholt1db55a82011-12-20 12:00:28 -0800854 int i, char *instr_prefix, const char *op_name)
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800855{
Eric Anholt193fa132011-12-20 11:36:07 -0800856 char dst[100], src0[100];
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800857
Eric Anholtc1d29462011-12-20 15:29:03 -0800858 i915_get_instruction_dst(ctx->data, i, dst, 1);
859 i915_get_instruction_src0(ctx->data, i, src0);
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800860
Eric Anholtc1d29462011-12-20 15:29:03 -0800861 instr_out(ctx, i++, "%s: %s %s, %s\n", instr_prefix,
Eric Anholt193fa132011-12-20 11:36:07 -0800862 op_name, dst, src0);
Eric Anholtc1d29462011-12-20 15:29:03 -0800863 instr_out(ctx, i++, "%s\n", instr_prefix);
864 instr_out(ctx, i++, "%s\n", instr_prefix);
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800865}
866
867static void
Eric Anholtc1d29462011-12-20 15:29:03 -0800868i915_decode_alu2(struct drm_intel_decode *ctx,
Eric Anholt1db55a82011-12-20 12:00:28 -0800869 int i, char *instr_prefix, const char *op_name)
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800870{
Eric Anholt193fa132011-12-20 11:36:07 -0800871 char dst[100], src0[100], src1[100];
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800872
Eric Anholtc1d29462011-12-20 15:29:03 -0800873 i915_get_instruction_dst(ctx->data, i, dst, 1);
874 i915_get_instruction_src0(ctx->data, i, src0);
875 i915_get_instruction_src1(ctx->data, i, src1);
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800876
Eric Anholtc1d29462011-12-20 15:29:03 -0800877 instr_out(ctx, i++, "%s: %s %s, %s, %s\n", instr_prefix,
Eric Anholt193fa132011-12-20 11:36:07 -0800878 op_name, dst, src0, src1);
Eric Anholtc1d29462011-12-20 15:29:03 -0800879 instr_out(ctx, i++, "%s\n", instr_prefix);
880 instr_out(ctx, i++, "%s\n", instr_prefix);
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800881}
882
883static void
Eric Anholtc1d29462011-12-20 15:29:03 -0800884i915_decode_alu3(struct drm_intel_decode *ctx,
Eric Anholt1db55a82011-12-20 12:00:28 -0800885 int i, char *instr_prefix, const char *op_name)
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800886{
Eric Anholt193fa132011-12-20 11:36:07 -0800887 char dst[100], src0[100], src1[100], src2[100];
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800888
Eric Anholtc1d29462011-12-20 15:29:03 -0800889 i915_get_instruction_dst(ctx->data, i, dst, 1);
890 i915_get_instruction_src0(ctx->data, i, src0);
891 i915_get_instruction_src1(ctx->data, i, src1);
892 i915_get_instruction_src2(ctx->data, i, src2);
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800893
Eric Anholtc1d29462011-12-20 15:29:03 -0800894 instr_out(ctx, i++, "%s: %s %s, %s, %s, %s\n", instr_prefix,
Eric Anholt193fa132011-12-20 11:36:07 -0800895 op_name, dst, src0, src1, src2);
Eric Anholtc1d29462011-12-20 15:29:03 -0800896 instr_out(ctx, i++, "%s\n", instr_prefix);
897 instr_out(ctx, i++, "%s\n", instr_prefix);
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800898}
899
900static void
Eric Anholtc1d29462011-12-20 15:29:03 -0800901i915_decode_tex(struct drm_intel_decode *ctx, int i,
Eric Anholt1db55a82011-12-20 12:00:28 -0800902 const char *instr_prefix, const char *tex_name)
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800903{
Eric Anholtc1d29462011-12-20 15:29:03 -0800904 uint32_t t0 = ctx->data[i];
905 uint32_t t1 = ctx->data[i + 1];
Eric Anholt193fa132011-12-20 11:36:07 -0800906 char dst_name[100];
907 char addr_name[100];
908 int sampler_nr;
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800909
Eric Anholtc1d29462011-12-20 15:29:03 -0800910 i915_get_instruction_dst(ctx->data, i, dst_name, 0);
Eric Anholt193fa132011-12-20 11:36:07 -0800911 i915_get_instruction_addr((t1 >> 24) & 0x7,
912 (t1 >> 17) & 0xf, addr_name);
913 sampler_nr = t0 & 0xf;
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800914
Eric Anholtc1d29462011-12-20 15:29:03 -0800915 instr_out(ctx, i++, "%s: %s %s, S%d, %s\n", instr_prefix,
Eric Anholt193fa132011-12-20 11:36:07 -0800916 tex_name, dst_name, sampler_nr, addr_name);
Eric Anholtc1d29462011-12-20 15:29:03 -0800917 instr_out(ctx, i++, "%s\n", instr_prefix);
918 instr_out(ctx, i++, "%s\n", instr_prefix);
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800919}
920
921static void
Eric Anholtc1d29462011-12-20 15:29:03 -0800922i915_decode_dcl(struct drm_intel_decode *ctx, int i, char *instr_prefix)
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800923{
Eric Anholtc1d29462011-12-20 15:29:03 -0800924 uint32_t d0 = ctx->data[i];
Eric Anholt1db55a82011-12-20 12:00:28 -0800925 const char *sampletype;
Eric Anholt193fa132011-12-20 11:36:07 -0800926 int dcl_nr = (d0 >> 14) & 0xf;
Eric Anholt1db55a82011-12-20 12:00:28 -0800927 const char *dcl_x = d0 & (1 << 10) ? "x" : "";
928 const char *dcl_y = d0 & (1 << 11) ? "y" : "";
929 const char *dcl_z = d0 & (1 << 12) ? "z" : "";
930 const char *dcl_w = d0 & (1 << 13) ? "w" : "";
Eric Anholt193fa132011-12-20 11:36:07 -0800931 char dcl_mask[10];
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800932
Eric Anholt193fa132011-12-20 11:36:07 -0800933 switch ((d0 >> 19) & 0x3) {
Eric Anholt8c4a2c82011-12-20 11:25:20 -0800934 case 1:
Eric Anholt193fa132011-12-20 11:36:07 -0800935 sprintf(dcl_mask, ".%s%s%s%s", dcl_x, dcl_y, dcl_z, dcl_w);
936 if (strcmp(dcl_mask, ".") == 0)
937 fprintf(out, "bad (empty) dcl mask\n");
938
939 if (dcl_nr > 10)
940 fprintf(out, "bad T%d dcl register number\n", dcl_nr);
941 if (dcl_nr < 8) {
942 if (strcmp(dcl_mask, ".x") != 0 &&
943 strcmp(dcl_mask, ".xy") != 0 &&
944 strcmp(dcl_mask, ".xz") != 0 &&
945 strcmp(dcl_mask, ".w") != 0 &&
946 strcmp(dcl_mask, ".xyzw") != 0) {
947 fprintf(out, "bad T%d.%s dcl mask\n", dcl_nr,
948 dcl_mask);
949 }
Eric Anholtc1d29462011-12-20 15:29:03 -0800950 instr_out(ctx, i++, "%s: DCL T%d%s\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800951 instr_prefix, dcl_nr, dcl_mask);
952 } else {
953 if (strcmp(dcl_mask, ".xz") == 0)
954 fprintf(out, "errataed bad dcl mask %s\n",
955 dcl_mask);
956 else if (strcmp(dcl_mask, ".xw") == 0)
957 fprintf(out, "errataed bad dcl mask %s\n",
958 dcl_mask);
959 else if (strcmp(dcl_mask, ".xzw") == 0)
960 fprintf(out, "errataed bad dcl mask %s\n",
961 dcl_mask);
962
963 if (dcl_nr == 8) {
Eric Anholtc1d29462011-12-20 15:29:03 -0800964 instr_out(ctx, i++,
Eric Anholt193fa132011-12-20 11:36:07 -0800965 "%s: DCL DIFFUSE%s\n", instr_prefix,
966 dcl_mask);
967 } else if (dcl_nr == 9) {
Eric Anholtc1d29462011-12-20 15:29:03 -0800968 instr_out(ctx, i++,
Eric Anholt193fa132011-12-20 11:36:07 -0800969 "%s: DCL SPECULAR%s\n", instr_prefix,
970 dcl_mask);
971 } else if (dcl_nr == 10) {
Eric Anholtc1d29462011-12-20 15:29:03 -0800972 instr_out(ctx, i++,
Eric Anholt193fa132011-12-20 11:36:07 -0800973 "%s: DCL FOG%s\n", instr_prefix,
974 dcl_mask);
975 }
976 }
Eric Anholtc1d29462011-12-20 15:29:03 -0800977 instr_out(ctx, i++, "%s\n", instr_prefix);
978 instr_out(ctx, i++, "%s\n", instr_prefix);
Eric Anholt193fa132011-12-20 11:36:07 -0800979 break;
980 case 3:
981 switch ((d0 >> 22) & 0x3) {
982 case 0:
983 sampletype = "2D";
984 break;
985 case 1:
986 sampletype = "CUBE";
987 break;
988 case 2:
989 sampletype = "3D";
990 break;
991 default:
992 sampletype = "RESERVED";
993 break;
994 }
995 if (dcl_nr > 15)
996 fprintf(out, "bad S%d dcl register number\n", dcl_nr);
Eric Anholtc1d29462011-12-20 15:29:03 -0800997 instr_out(ctx, i++, "%s: DCL S%d %s\n",
Eric Anholt193fa132011-12-20 11:36:07 -0800998 instr_prefix, dcl_nr, sampletype);
Eric Anholtc1d29462011-12-20 15:29:03 -0800999 instr_out(ctx, i++, "%s\n", instr_prefix);
1000 instr_out(ctx, i++, "%s\n", instr_prefix);
Eric Anholt193fa132011-12-20 11:36:07 -08001001 break;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001002 default:
Eric Anholtc1d29462011-12-20 15:29:03 -08001003 instr_out(ctx, i++, "%s: DCL RESERVED%d\n",
Eric Anholt193fa132011-12-20 11:36:07 -08001004 instr_prefix, dcl_nr);
Eric Anholtc1d29462011-12-20 15:29:03 -08001005 instr_out(ctx, i++, "%s\n", instr_prefix);
1006 instr_out(ctx, i++, "%s\n", instr_prefix);
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001007 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001008}
1009
1010static void
Eric Anholtc1d29462011-12-20 15:29:03 -08001011i915_decode_instruction(struct drm_intel_decode *ctx,
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001012 int i, char *instr_prefix)
1013{
Eric Anholtc1d29462011-12-20 15:29:03 -08001014 switch ((ctx->data[i] >> 24) & 0x1f) {
Eric Anholt193fa132011-12-20 11:36:07 -08001015 case 0x0:
Eric Anholtc1d29462011-12-20 15:29:03 -08001016 instr_out(ctx, i++, "%s: NOP\n", instr_prefix);
1017 instr_out(ctx, i++, "%s\n", instr_prefix);
1018 instr_out(ctx, i++, "%s\n", instr_prefix);
Eric Anholt193fa132011-12-20 11:36:07 -08001019 break;
1020 case 0x01:
Eric Anholtc1d29462011-12-20 15:29:03 -08001021 i915_decode_alu2(ctx, i, instr_prefix, "ADD");
Eric Anholt193fa132011-12-20 11:36:07 -08001022 break;
1023 case 0x02:
Eric Anholtc1d29462011-12-20 15:29:03 -08001024 i915_decode_alu1(ctx, i, instr_prefix, "MOV");
Eric Anholt193fa132011-12-20 11:36:07 -08001025 break;
1026 case 0x03:
Eric Anholtc1d29462011-12-20 15:29:03 -08001027 i915_decode_alu2(ctx, i, instr_prefix, "MUL");
Eric Anholt193fa132011-12-20 11:36:07 -08001028 break;
1029 case 0x04:
Eric Anholtc1d29462011-12-20 15:29:03 -08001030 i915_decode_alu3(ctx, i, instr_prefix, "MAD");
Eric Anholt193fa132011-12-20 11:36:07 -08001031 break;
1032 case 0x05:
Eric Anholtc1d29462011-12-20 15:29:03 -08001033 i915_decode_alu3(ctx, i, instr_prefix, "DP2ADD");
Eric Anholt193fa132011-12-20 11:36:07 -08001034 break;
1035 case 0x06:
Eric Anholtc1d29462011-12-20 15:29:03 -08001036 i915_decode_alu2(ctx, i, instr_prefix, "DP3");
Eric Anholt193fa132011-12-20 11:36:07 -08001037 break;
1038 case 0x07:
Eric Anholtc1d29462011-12-20 15:29:03 -08001039 i915_decode_alu2(ctx, i, instr_prefix, "DP4");
Eric Anholt193fa132011-12-20 11:36:07 -08001040 break;
1041 case 0x08:
Eric Anholtc1d29462011-12-20 15:29:03 -08001042 i915_decode_alu1(ctx, i, instr_prefix, "FRC");
Eric Anholt193fa132011-12-20 11:36:07 -08001043 break;
1044 case 0x09:
Eric Anholtc1d29462011-12-20 15:29:03 -08001045 i915_decode_alu1(ctx, i, instr_prefix, "RCP");
Eric Anholt193fa132011-12-20 11:36:07 -08001046 break;
1047 case 0x0a:
Eric Anholtc1d29462011-12-20 15:29:03 -08001048 i915_decode_alu1(ctx, i, instr_prefix, "RSQ");
Eric Anholt193fa132011-12-20 11:36:07 -08001049 break;
1050 case 0x0b:
Eric Anholtc1d29462011-12-20 15:29:03 -08001051 i915_decode_alu1(ctx, i, instr_prefix, "EXP");
Eric Anholt193fa132011-12-20 11:36:07 -08001052 break;
1053 case 0x0c:
Eric Anholtc1d29462011-12-20 15:29:03 -08001054 i915_decode_alu1(ctx, i, instr_prefix, "LOG");
Eric Anholt193fa132011-12-20 11:36:07 -08001055 break;
1056 case 0x0d:
Eric Anholtc1d29462011-12-20 15:29:03 -08001057 i915_decode_alu2(ctx, i, instr_prefix, "CMP");
Eric Anholt193fa132011-12-20 11:36:07 -08001058 break;
1059 case 0x0e:
Eric Anholtc1d29462011-12-20 15:29:03 -08001060 i915_decode_alu2(ctx, i, instr_prefix, "MIN");
Eric Anholt193fa132011-12-20 11:36:07 -08001061 break;
1062 case 0x0f:
Eric Anholtc1d29462011-12-20 15:29:03 -08001063 i915_decode_alu2(ctx, i, instr_prefix, "MAX");
Eric Anholt193fa132011-12-20 11:36:07 -08001064 break;
1065 case 0x10:
Eric Anholtc1d29462011-12-20 15:29:03 -08001066 i915_decode_alu1(ctx, i, instr_prefix, "FLR");
Eric Anholt193fa132011-12-20 11:36:07 -08001067 break;
1068 case 0x11:
Eric Anholtc1d29462011-12-20 15:29:03 -08001069 i915_decode_alu1(ctx, i, instr_prefix, "MOD");
Eric Anholt193fa132011-12-20 11:36:07 -08001070 break;
1071 case 0x12:
Eric Anholtc1d29462011-12-20 15:29:03 -08001072 i915_decode_alu1(ctx, i, instr_prefix, "TRC");
Eric Anholt193fa132011-12-20 11:36:07 -08001073 break;
1074 case 0x13:
Eric Anholtc1d29462011-12-20 15:29:03 -08001075 i915_decode_alu2(ctx, i, instr_prefix, "SGE");
Eric Anholt193fa132011-12-20 11:36:07 -08001076 break;
1077 case 0x14:
Eric Anholtc1d29462011-12-20 15:29:03 -08001078 i915_decode_alu2(ctx, i, instr_prefix, "SLT");
Eric Anholt193fa132011-12-20 11:36:07 -08001079 break;
1080 case 0x15:
Eric Anholtc1d29462011-12-20 15:29:03 -08001081 i915_decode_tex(ctx, i, instr_prefix, "TEXLD");
Eric Anholt193fa132011-12-20 11:36:07 -08001082 break;
1083 case 0x16:
Eric Anholtc1d29462011-12-20 15:29:03 -08001084 i915_decode_tex(ctx, i, instr_prefix, "TEXLDP");
Eric Anholt193fa132011-12-20 11:36:07 -08001085 break;
1086 case 0x17:
Eric Anholtc1d29462011-12-20 15:29:03 -08001087 i915_decode_tex(ctx, i, instr_prefix, "TEXLDB");
Eric Anholt193fa132011-12-20 11:36:07 -08001088 break;
1089 case 0x19:
Eric Anholtc1d29462011-12-20 15:29:03 -08001090 i915_decode_dcl(ctx, i, instr_prefix);
Eric Anholt193fa132011-12-20 11:36:07 -08001091 break;
1092 default:
Eric Anholtc1d29462011-12-20 15:29:03 -08001093 instr_out(ctx, i++, "%s: unknown\n", instr_prefix);
1094 instr_out(ctx, i++, "%s\n", instr_prefix);
1095 instr_out(ctx, i++, "%s\n", instr_prefix);
Eric Anholt193fa132011-12-20 11:36:07 -08001096 break;
1097 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001098}
1099
Eric Anholt1db55a82011-12-20 12:00:28 -08001100static const char *
1101decode_compare_func(uint32_t op)
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001102{
Eric Anholt193fa132011-12-20 11:36:07 -08001103 switch (op & 0x7) {
1104 case 0:
1105 return "always";
1106 case 1:
1107 return "never";
1108 case 2:
1109 return "less";
1110 case 3:
1111 return "equal";
1112 case 4:
1113 return "lequal";
1114 case 5:
1115 return "greater";
1116 case 6:
1117 return "notequal";
1118 case 7:
1119 return "gequal";
1120 }
1121 return "";
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001122}
1123
Eric Anholt1db55a82011-12-20 12:00:28 -08001124static const char *
1125decode_stencil_op(uint32_t op)
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001126{
Eric Anholt193fa132011-12-20 11:36:07 -08001127 switch (op & 0x7) {
1128 case 0:
1129 return "keep";
1130 case 1:
1131 return "zero";
1132 case 2:
1133 return "replace";
1134 case 3:
1135 return "incr_sat";
1136 case 4:
1137 return "decr_sat";
1138 case 5:
1139 return "greater";
1140 case 6:
1141 return "incr";
1142 case 7:
1143 return "decr";
1144 }
1145 return "";
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001146}
1147
Eric Anholt4149faf2011-12-20 14:32:27 -08001148#if 0
Eric Anholt1db55a82011-12-20 12:00:28 -08001149static const char *
1150decode_logic_op(uint32_t op)
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001151{
Eric Anholt193fa132011-12-20 11:36:07 -08001152 switch (op & 0xf) {
1153 case 0:
1154 return "clear";
1155 case 1:
1156 return "nor";
1157 case 2:
1158 return "and_inv";
1159 case 3:
1160 return "copy_inv";
1161 case 4:
1162 return "and_rvrse";
1163 case 5:
1164 return "inv";
1165 case 6:
1166 return "xor";
1167 case 7:
1168 return "nand";
1169 case 8:
1170 return "and";
1171 case 9:
1172 return "equiv";
1173 case 10:
1174 return "noop";
1175 case 11:
1176 return "or_inv";
1177 case 12:
1178 return "copy";
1179 case 13:
1180 return "or_rvrse";
1181 case 14:
1182 return "or";
1183 case 15:
1184 return "set";
1185 }
1186 return "";
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001187}
Eric Anholt4149faf2011-12-20 14:32:27 -08001188#endif
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001189
Eric Anholt1db55a82011-12-20 12:00:28 -08001190static const char *
1191decode_blend_fact(uint32_t op)
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001192{
Eric Anholt193fa132011-12-20 11:36:07 -08001193 switch (op & 0xf) {
1194 case 1:
1195 return "zero";
1196 case 2:
1197 return "one";
1198 case 3:
1199 return "src_colr";
1200 case 4:
1201 return "inv_src_colr";
1202 case 5:
1203 return "src_alpha";
1204 case 6:
1205 return "inv_src_alpha";
1206 case 7:
1207 return "dst_alpha";
1208 case 8:
1209 return "inv_dst_alpha";
1210 case 9:
1211 return "dst_colr";
1212 case 10:
1213 return "inv_dst_colr";
1214 case 11:
1215 return "src_alpha_sat";
1216 case 12:
1217 return "cnst_colr";
1218 case 13:
1219 return "inv_cnst_colr";
1220 case 14:
1221 return "cnst_alpha";
1222 case 15:
1223 return "inv_const_alpha";
1224 }
1225 return "";
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001226}
1227
Eric Anholt1db55a82011-12-20 12:00:28 -08001228static const char *
1229decode_tex_coord_mode(uint32_t mode)
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001230{
Eric Anholt193fa132011-12-20 11:36:07 -08001231 switch (mode & 0x7) {
1232 case 0:
1233 return "wrap";
1234 case 1:
1235 return "mirror";
1236 case 2:
1237 return "clamp_edge";
1238 case 3:
1239 return "cube";
1240 case 4:
1241 return "clamp_border";
1242 case 5:
1243 return "mirror_once";
1244 }
1245 return "";
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001246}
1247
Eric Anholt1db55a82011-12-20 12:00:28 -08001248static const char *
1249decode_sample_filter(uint32_t mode)
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001250{
Eric Anholt193fa132011-12-20 11:36:07 -08001251 switch (mode & 0x7) {
1252 case 0:
1253 return "nearest";
1254 case 1:
1255 return "linear";
1256 case 2:
1257 return "anisotropic";
1258 case 3:
1259 return "4x4_1";
1260 case 4:
1261 return "4x4_2";
1262 case 5:
1263 return "4x4_flat";
1264 case 6:
1265 return "6x5_mono";
1266 }
1267 return "";
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001268}
1269
1270static int
Eric Anholtde49fd42011-12-20 15:15:21 -08001271decode_3d_1d(struct drm_intel_decode *ctx)
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001272{
Eric Anholt193fa132011-12-20 11:36:07 -08001273 unsigned int len, i, c, idx, word, map, sampler, instr;
Eric Anholt1db55a82011-12-20 12:00:28 -08001274 const char *format, *zformat, *type;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001275 uint32_t opcode;
Eric Anholtde49fd42011-12-20 15:15:21 -08001276 uint32_t *data = ctx->data;
Eric Anholtde49fd42011-12-20 15:15:21 -08001277 uint32_t devid = ctx->devid;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001278
Eric Anholt193fa132011-12-20 11:36:07 -08001279 struct {
1280 uint32_t opcode;
1281 int i830_only;
Eric Anholt07768ba2011-12-20 13:46:23 -08001282 unsigned int min_len;
1283 unsigned int max_len;
Eric Anholt1db55a82011-12-20 12:00:28 -08001284 const char *name;
Eric Anholt193fa132011-12-20 11:36:07 -08001285 } opcodes_3d_1d[] = {
Eric Anholtbbdda922011-12-20 11:44:36 -08001286 { 0x86, 0, 4, 4, "3DSTATE_CHROMA_KEY" },
1287 { 0x88, 0, 2, 2, "3DSTATE_CONSTANT_BLEND_COLOR" },
1288 { 0x99, 0, 2, 2, "3DSTATE_DEFAULT_DIFFUSE" },
1289 { 0x9a, 0, 2, 2, "3DSTATE_DEFAULT_SPECULAR" },
1290 { 0x98, 0, 2, 2, "3DSTATE_DEFAULT_Z" },
1291 { 0x97, 0, 2, 2, "3DSTATE_DEPTH_OFFSET_SCALE" },
1292 { 0x9d, 0, 65, 65, "3DSTATE_FILTER_COEFFICIENTS_4X4" },
1293 { 0x9e, 0, 4, 4, "3DSTATE_MONO_FILTER" },
1294 { 0x89, 0, 4, 4, "3DSTATE_FOG_MODE" },
1295 { 0x8f, 0, 2, 16, "3DSTATE_MAP_PALLETE_LOAD_32" },
1296 { 0x83, 0, 2, 2, "3DSTATE_SPAN_STIPPLE" },
1297 { 0x8c, 1, 2, 2, "3DSTATE_MAP_COORD_TRANSFORM_I830" },
1298 { 0x8b, 1, 2, 2, "3DSTATE_MAP_VERTEX_TRANSFORM_I830" },
1299 { 0x8d, 1, 3, 3, "3DSTATE_W_STATE_I830" },
1300 { 0x01, 1, 2, 2, "3DSTATE_COLOR_FACTOR_I830" },
1301 { 0x02, 1, 2, 2, "3DSTATE_MAP_COORD_SETBIND_I830"},
1302 }, *opcode_3d_1d;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001303
Eric Anholt193fa132011-12-20 11:36:07 -08001304 opcode = (data[0] & 0x00ff0000) >> 16;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001305
Eric Anholt193fa132011-12-20 11:36:07 -08001306 switch (opcode) {
1307 case 0x07:
Eric Anholtbbdda922011-12-20 11:44:36 -08001308 /* This instruction is unusual. A 0 length means just
1309 * 1 DWORD instead of 2. The 0 length is specified in
1310 * one place to be unsupported, but stated to be
1311 * required in another, and 0 length LOAD_INDIRECTs
1312 * appear to cause no harm at least.
Eric Anholt193fa132011-12-20 11:36:07 -08001313 */
Eric Anholtc1d29462011-12-20 15:29:03 -08001314 instr_out(ctx, 0, "3DSTATE_LOAD_INDIRECT\n");
Eric Anholt193fa132011-12-20 11:36:07 -08001315 len = (data[0] & 0x000000ff) + 1;
1316 i = 1;
1317 if (data[0] & (0x01 << 8)) {
Eric Anholtc1d29462011-12-20 15:29:03 -08001318 instr_out(ctx, i++, "SIS.0\n");
1319 instr_out(ctx, i++, "SIS.1\n");
Eric Anholt193fa132011-12-20 11:36:07 -08001320 }
1321 if (data[0] & (0x02 << 8)) {
Eric Anholtc1d29462011-12-20 15:29:03 -08001322 instr_out(ctx, i++, "DIS.0\n");
Eric Anholt193fa132011-12-20 11:36:07 -08001323 }
1324 if (data[0] & (0x04 << 8)) {
Eric Anholtc1d29462011-12-20 15:29:03 -08001325 instr_out(ctx, i++, "SSB.0\n");
1326 instr_out(ctx, i++, "SSB.1\n");
Eric Anholt193fa132011-12-20 11:36:07 -08001327 }
1328 if (data[0] & (0x08 << 8)) {
Eric Anholtc1d29462011-12-20 15:29:03 -08001329 instr_out(ctx, i++, "MSB.0\n");
1330 instr_out(ctx, i++, "MSB.1\n");
Eric Anholt193fa132011-12-20 11:36:07 -08001331 }
1332 if (data[0] & (0x10 << 8)) {
Eric Anholtc1d29462011-12-20 15:29:03 -08001333 instr_out(ctx, i++, "PSP.0\n");
1334 instr_out(ctx, i++, "PSP.1\n");
Eric Anholt193fa132011-12-20 11:36:07 -08001335 }
1336 if (data[0] & (0x20 << 8)) {
Eric Anholtc1d29462011-12-20 15:29:03 -08001337 instr_out(ctx, i++, "PSC.0\n");
1338 instr_out(ctx, i++, "PSC.1\n");
Eric Anholt193fa132011-12-20 11:36:07 -08001339 }
1340 if (len != i) {
1341 fprintf(out, "Bad count in 3DSTATE_LOAD_INDIRECT\n");
Eric Anholt193fa132011-12-20 11:36:07 -08001342 return len;
1343 }
1344 return len;
1345 case 0x04:
Eric Anholtc1d29462011-12-20 15:29:03 -08001346 instr_out(ctx, 0,
Eric Anholt193fa132011-12-20 11:36:07 -08001347 "3DSTATE_LOAD_STATE_IMMEDIATE_1\n");
1348 len = (data[0] & 0x0000000f) + 2;
1349 i = 1;
1350 for (word = 0; word <= 8; word++) {
1351 if (data[0] & (1 << (4 + word))) {
Eric Anholt193fa132011-12-20 11:36:07 -08001352 /* save vertex state for decode */
1353 if (!IS_GEN2(devid)) {
Eric Anholt7b483182011-12-20 14:27:17 -08001354 int tex_num;
1355
Eric Anholt193fa132011-12-20 11:36:07 -08001356 if (word == 2) {
1357 saved_s2_set = 1;
1358 saved_s2 = data[i];
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001359 }
Eric Anholt193fa132011-12-20 11:36:07 -08001360 if (word == 4) {
1361 saved_s4_set = 1;
1362 saved_s4 = data[i];
1363 }
1364
1365 switch (word) {
1366 case 0:
Eric Anholtc1d29462011-12-20 15:29:03 -08001367 instr_out(ctx, i,
Eric Anholt193fa132011-12-20 11:36:07 -08001368 "S0: vbo offset: 0x%08x%s\n",
1369 data[i] & (~1),
1370 data[i] & 1 ?
1371 ", auto cache invalidate disabled"
1372 : "");
1373 break;
1374 case 1:
Eric Anholtc1d29462011-12-20 15:29:03 -08001375 instr_out(ctx, i,
Eric Anholt193fa132011-12-20 11:36:07 -08001376 "S1: vertex width: %i, vertex pitch: %i\n",
1377 (data[i] >> 24) &
1378 0x3f,
1379 (data[i] >> 16) &
1380 0x3f);
1381 break;
1382 case 2:
Eric Anholtc1d29462011-12-20 15:29:03 -08001383 instr_out(ctx, i,
Eric Anholt193fa132011-12-20 11:36:07 -08001384 "S2: texcoord formats: ");
Eric Anholt7b483182011-12-20 14:27:17 -08001385 for (tex_num = 0;
Eric Anholt193fa132011-12-20 11:36:07 -08001386 tex_num < 8; tex_num++) {
1387 switch ((data[i] >>
1388 tex_num *
1389 4) & 0xf) {
1390 case 0:
1391 fprintf(out,
1392 "%i=2D ",
1393 tex_num);
1394 break;
1395 case 1:
1396 fprintf(out,
1397 "%i=3D ",
1398 tex_num);
1399 break;
1400 case 2:
1401 fprintf(out,
1402 "%i=4D ",
1403 tex_num);
1404 break;
1405 case 3:
1406 fprintf(out,
1407 "%i=1D ",
1408 tex_num);
1409 break;
1410 case 4:
1411 fprintf(out,
1412 "%i=2D_16 ",
1413 tex_num);
1414 break;
1415 case 5:
1416 fprintf(out,
1417 "%i=4D_16 ",
1418 tex_num);
1419 break;
1420 case 0xf:
1421 fprintf(out,
1422 "%i=NP ",
1423 tex_num);
1424 break;
1425 }
1426 }
1427 fprintf(out, "\n");
1428
1429 break;
1430 case 3:
Eric Anholtc1d29462011-12-20 15:29:03 -08001431 instr_out(ctx, i,
Eric Anholt0c46f022011-12-20 14:23:15 -08001432 "S3: not documented\n");
Eric Anholt193fa132011-12-20 11:36:07 -08001433 break;
1434 case 4:
1435 {
Eric Anholt1db55a82011-12-20 12:00:28 -08001436 const char *cullmode = "";
1437 const char *vfmt_xyzw = "";
Eric Anholt193fa132011-12-20 11:36:07 -08001438 switch ((data[i] >> 13)
1439 & 0x3) {
1440 case 0:
1441 cullmode =
1442 "both";
1443 break;
1444 case 1:
1445 cullmode =
1446 "none";
1447 break;
1448 case 2:
1449 cullmode = "cw";
1450 break;
1451 case 3:
1452 cullmode =
1453 "ccw";
1454 break;
1455 }
1456 switch (data[i] &
1457 (7 << 6 | 1 <<
1458 2)) {
1459 case 1 << 6:
1460 vfmt_xyzw =
1461 "XYZ,";
1462 break;
1463 case 2 << 6:
1464 vfmt_xyzw =
1465 "XYZW,";
1466 break;
1467 case 3 << 6:
1468 vfmt_xyzw =
1469 "XY,";
1470 break;
1471 case 4 << 6:
1472 vfmt_xyzw =
1473 "XYW,";
1474 break;
1475 case 1 << 6 | 1 << 2:
1476 vfmt_xyzw =
1477 "XYZF,";
1478 break;
1479 case 2 << 6 | 1 << 2:
1480 vfmt_xyzw =
1481 "XYZWF,";
1482 break;
1483 case 3 << 6 | 1 << 2:
1484 vfmt_xyzw =
1485 "XYF,";
1486 break;
1487 case 4 << 6 | 1 << 2:
1488 vfmt_xyzw =
1489 "XYWF,";
1490 break;
1491 }
Eric Anholtc1d29462011-12-20 15:29:03 -08001492 instr_out(ctx, i,
Eric Anholt193fa132011-12-20 11:36:07 -08001493 "S4: point_width=%i, line_width=%.1f,"
1494 "%s%s%s%s%s cullmode=%s, vfmt=%s%s%s%s%s%s "
Eric Anholt0c46f022011-12-20 14:23:15 -08001495 "%s%s%s%s%s\n",
Eric Anholt193fa132011-12-20 11:36:07 -08001496 (data[i] >>
1497 23) & 0x1ff,
1498 ((data[i] >>
1499 19) & 0xf) /
1500 2.0,
1501 data[i] & (0xf
1502 <<
1503 15)
1504 ?
1505 " flatshade="
1506 : "",
1507 data[i] & (1
1508 <<
1509 18)
1510 ? "Alpha," :
1511 "",
1512 data[i] & (1
1513 <<
1514 17)
1515 ? "Fog," : "",
1516 data[i] & (1
1517 <<
1518 16)
1519 ? "Specular,"
1520 : "",
1521 data[i] & (1
1522 <<
1523 15)
1524 ? "Color," :
1525 "", cullmode,
1526 data[i] & (1
1527 <<
1528 12)
1529 ?
1530 "PointWidth,"
1531 : "",
1532 data[i] & (1
1533 <<
1534 11)
1535 ? "SpecFog," :
1536 "",
1537 data[i] & (1
1538 <<
1539 10)
1540 ? "Color," :
1541 "",
1542 data[i] & (1
1543 <<
1544 9)
1545 ? "DepthOfs,"
1546 : "",
1547 vfmt_xyzw,
1548 data[i] & (1
1549 <<
1550 9)
1551 ? "FogParam,"
1552 : "",
1553 data[i] & (1
1554 <<
1555 5)
1556 ?
1557 "force default diffuse, "
1558 : "",
1559 data[i] & (1
1560 <<
1561 4)
1562 ?
1563 "force default specular, "
1564 : "",
1565 data[i] & (1
1566 <<
1567 3)
1568 ?
1569 "local depth ofs enable, "
1570 : "",
1571 data[i] & (1
1572 <<
1573 1)
1574 ?
1575 "point sprite enable, "
1576 : "",
1577 data[i] & (1
1578 <<
1579 0)
1580 ?
1581 "line AA enable, "
1582 : "");
1583 break;
1584 }
1585 case 5:
1586 {
Eric Anholtc1d29462011-12-20 15:29:03 -08001587 instr_out(ctx, i,
Eric Anholt193fa132011-12-20 11:36:07 -08001588 "S5:%s%s%s%s%s"
1589 "%s%s%s%s stencil_ref=0x%x, stencil_test=%s, "
1590 "stencil_fail=%s, stencil_pass_z_fail=%s, "
1591 "stencil_pass_z_pass=%s, %s%s%s%s\n",
1592 data[i] & (0xf
1593 <<
1594 28)
1595 ?
1596 " write_disable="
1597 : "",
1598 data[i] & (1
1599 <<
1600 31)
1601 ? "Alpha," :
1602 "",
1603 data[i] & (1
1604 <<
1605 30)
1606 ? "Red," : "",
1607 data[i] & (1
1608 <<
1609 29)
1610 ? "Green," :
1611 "",
1612 data[i] & (1
1613 <<
1614 28)
1615 ? "Blue," :
1616 "",
1617 data[i] & (1
1618 <<
1619 27)
1620 ?
1621 " force default point size,"
1622 : "",
1623 data[i] & (1
1624 <<
1625 26)
1626 ?
1627 " last pixel enable,"
1628 : "",
1629 data[i] & (1
1630 <<
1631 25)
1632 ?
1633 " global depth ofs enable,"
1634 : "",
1635 data[i] & (1
1636 <<
1637 24)
1638 ?
1639 " fog enable,"
1640 : "",
1641 (data[i] >>
1642 16) & 0xff,
1643 decode_compare_func
1644 (data[i] >>
1645 13),
1646 decode_stencil_op
1647 (data[i] >>
1648 10),
1649 decode_stencil_op
1650 (data[i] >>
1651 7),
1652 decode_stencil_op
1653 (data[i] >>
1654 4),
1655 data[i] & (1
1656 <<
1657 3)
1658 ?
1659 "stencil write enable, "
1660 : "",
1661 data[i] & (1
1662 <<
1663 2)
1664 ?
1665 "stencil test enable, "
1666 : "",
1667 data[i] & (1
1668 <<
1669 1)
1670 ?
1671 "color dither enable, "
1672 : "",
1673 data[i] & (1
1674 <<
1675 0)
1676 ?
1677 "logicop enable, "
1678 : "");
1679 }
1680 break;
1681 case 6:
Eric Anholtc1d29462011-12-20 15:29:03 -08001682 instr_out(ctx, i,
Eric Anholt193fa132011-12-20 11:36:07 -08001683 "S6: %salpha_test=%s, alpha_ref=0x%x, "
1684 "depth_test=%s, %ssrc_blnd_fct=%s, dst_blnd_fct=%s, "
1685 "%s%stristrip_provoking_vertex=%i\n",
1686 data[i] & (1 << 31) ?
1687 "alpha test enable, "
1688 : "",
1689 decode_compare_func
1690 (data[i] >> 28),
1691 data[i] & (0xff <<
1692 20),
1693 decode_compare_func
1694 (data[i] >> 16),
1695 data[i] & (1 << 15) ?
1696 "cbuf blend enable, "
1697 : "",
1698 decode_blend_fact(data
1699 [i]
1700 >>
1701 8),
1702 decode_blend_fact(data
1703 [i]
1704 >>
1705 4),
1706 data[i] & (1 << 3) ?
1707 "depth write enable, "
1708 : "",
1709 data[i] & (1 << 2) ?
1710 "cbuf write enable, "
1711 : "",
1712 data[i] & (0x3));
1713 break;
1714 case 7:
Eric Anholtc1d29462011-12-20 15:29:03 -08001715 instr_out(ctx, i,
Eric Anholt193fa132011-12-20 11:36:07 -08001716 "S7: depth offset constant: 0x%08x\n",
1717 data[i]);
1718 break;
1719 }
1720 } else {
Eric Anholtc1d29462011-12-20 15:29:03 -08001721 instr_out(ctx, i,
Chris Wilson8cf34752012-10-07 10:07:23 +01001722 "S%d: 0x%08x\n", word, data[i]);
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001723 }
Eric Anholt193fa132011-12-20 11:36:07 -08001724 i++;
1725 }
1726 }
1727 if (len != i) {
1728 fprintf(out,
1729 "Bad count in 3DSTATE_LOAD_STATE_IMMEDIATE_1\n");
Eric Anholt193fa132011-12-20 11:36:07 -08001730 }
1731 return len;
1732 case 0x03:
Eric Anholtc1d29462011-12-20 15:29:03 -08001733 instr_out(ctx, 0,
Eric Anholt193fa132011-12-20 11:36:07 -08001734 "3DSTATE_LOAD_STATE_IMMEDIATE_2\n");
1735 len = (data[0] & 0x0000000f) + 2;
1736 i = 1;
1737 for (word = 6; word <= 14; word++) {
1738 if (data[0] & (1 << word)) {
Eric Anholt193fa132011-12-20 11:36:07 -08001739 if (word == 6)
Eric Anholtc1d29462011-12-20 15:29:03 -08001740 instr_out(ctx, i++,
Eric Anholt193fa132011-12-20 11:36:07 -08001741 "TBCF\n");
1742 else if (word >= 7 && word <= 10) {
Eric Anholtc1d29462011-12-20 15:29:03 -08001743 instr_out(ctx, i++,
Eric Anholt193fa132011-12-20 11:36:07 -08001744 "TB%dC\n", word - 7);
Eric Anholtc1d29462011-12-20 15:29:03 -08001745 instr_out(ctx, i++,
Eric Anholt193fa132011-12-20 11:36:07 -08001746 "TB%dA\n", word - 7);
1747 } else if (word >= 11 && word <= 14) {
Eric Anholtc1d29462011-12-20 15:29:03 -08001748 instr_out(ctx, i,
Eric Anholt193fa132011-12-20 11:36:07 -08001749 "TM%dS0: offset=0x%08x, %s\n",
1750 word - 11,
1751 data[i] & 0xfffffffe,
1752 data[i] & 1 ? "use fence" :
1753 "");
1754 i++;
Eric Anholtc1d29462011-12-20 15:29:03 -08001755 instr_out(ctx, i,
Eric Anholt193fa132011-12-20 11:36:07 -08001756 "TM%dS1: height=%i, width=%i, %s\n",
1757 word - 11, data[i] >> 21,
1758 (data[i] >> 10) & 0x3ff,
1759 data[i] & 2 ? (data[i] & 1 ?
1760 "y-tiled" :
1761 "x-tiled") :
1762 "");
1763 i++;
Eric Anholtc1d29462011-12-20 15:29:03 -08001764 instr_out(ctx, i,
Eric Anholt193fa132011-12-20 11:36:07 -08001765 "TM%dS2: pitch=%i, \n",
1766 word - 11,
1767 ((data[i] >> 21) + 1) * 4);
1768 i++;
Eric Anholtc1d29462011-12-20 15:29:03 -08001769 instr_out(ctx, i++,
Eric Anholt193fa132011-12-20 11:36:07 -08001770 "TM%dS3\n", word - 11);
Eric Anholtc1d29462011-12-20 15:29:03 -08001771 instr_out(ctx, i++,
Eric Anholt193fa132011-12-20 11:36:07 -08001772 "TM%dS4: dflt color\n",
1773 word - 11);
1774 }
1775 }
1776 }
1777 if (len != i) {
1778 fprintf(out,
1779 "Bad count in 3DSTATE_LOAD_STATE_IMMEDIATE_2\n");
Eric Anholt193fa132011-12-20 11:36:07 -08001780 }
1781 return len;
1782 case 0x00:
Eric Anholtc1d29462011-12-20 15:29:03 -08001783 instr_out(ctx, 0, "3DSTATE_MAP_STATE\n");
Eric Anholt193fa132011-12-20 11:36:07 -08001784 len = (data[0] & 0x0000003f) + 2;
Eric Anholtc1d29462011-12-20 15:29:03 -08001785 instr_out(ctx, 1, "mask\n");
Eric Anholt193fa132011-12-20 11:36:07 -08001786
1787 i = 2;
1788 for (map = 0; map <= 15; map++) {
1789 if (data[1] & (1 << map)) {
1790 int width, height, pitch, dword;
1791 const char *tiling;
1792
Eric Anholt193fa132011-12-20 11:36:07 -08001793 dword = data[i];
Eric Anholtc1d29462011-12-20 15:29:03 -08001794 instr_out(ctx, i++,
Eric Anholt193fa132011-12-20 11:36:07 -08001795 "map %d MS2 %s%s%s\n", map,
1796 dword & (1 << 31) ?
1797 "untrusted surface, " : "",
1798 dword & (1 << 1) ?
1799 "vertical line stride enable, " : "",
1800 dword & (1 << 0) ?
1801 "vertical ofs enable, " : "");
1802
1803 dword = data[i];
1804 width = ((dword >> 10) & ((1 << 11) - 1)) + 1;
1805 height = ((dword >> 21) & ((1 << 11) - 1)) + 1;
1806
1807 tiling = "none";
1808 if (dword & (1 << 2))
1809 tiling = "fenced";
1810 else if (dword & (1 << 1))
1811 tiling = dword & (1 << 0) ? "Y" : "X";
1812 type = " BAD";
1813 format = "BAD";
1814 switch ((dword >> 7) & 0x7) {
1815 case 1:
1816 type = "8b";
1817 switch ((dword >> 3) & 0xf) {
1818 case 0:
1819 format = "I";
1820 break;
1821 case 1:
1822 format = "L";
1823 break;
1824 case 4:
1825 format = "A";
1826 break;
1827 case 5:
1828 format = " mono";
1829 break;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001830 }
Eric Anholt193fa132011-12-20 11:36:07 -08001831 break;
1832 case 2:
1833 type = "16b";
1834 switch ((dword >> 3) & 0xf) {
1835 case 0:
1836 format = " rgb565";
1837 break;
1838 case 1:
1839 format = " argb1555";
1840 break;
1841 case 2:
1842 format = " argb4444";
1843 break;
1844 case 5:
1845 format = " ay88";
1846 break;
1847 case 6:
1848 format = " bump655";
1849 break;
1850 case 7:
1851 format = "I";
1852 break;
1853 case 8:
1854 format = "L";
1855 break;
1856 case 9:
1857 format = "A";
1858 break;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001859 }
Eric Anholt193fa132011-12-20 11:36:07 -08001860 break;
1861 case 3:
1862 type = "32b";
1863 switch ((dword >> 3) & 0xf) {
1864 case 0:
1865 format = " argb8888";
1866 break;
1867 case 1:
1868 format = " abgr8888";
1869 break;
1870 case 2:
1871 format = " xrgb8888";
1872 break;
1873 case 3:
1874 format = " xbgr8888";
1875 break;
1876 case 4:
1877 format = " qwvu8888";
1878 break;
1879 case 5:
1880 format = " axvu8888";
1881 break;
1882 case 6:
1883 format = " lxvu8888";
1884 break;
1885 case 7:
1886 format = " xlvu8888";
1887 break;
1888 case 8:
1889 format = " argb2101010";
1890 break;
1891 case 9:
1892 format = " abgr2101010";
1893 break;
1894 case 10:
1895 format = " awvu2101010";
1896 break;
1897 case 11:
1898 format = " gr1616";
1899 break;
1900 case 12:
1901 format = " vu1616";
1902 break;
1903 case 13:
1904 format = " xI824";
1905 break;
1906 case 14:
1907 format = " xA824";
1908 break;
1909 case 15:
1910 format = " xL824";
1911 break;
1912 }
1913 break;
1914 case 5:
1915 type = "422";
1916 switch ((dword >> 3) & 0xf) {
1917 case 0:
1918 format = " yuv_swapy";
1919 break;
1920 case 1:
1921 format = " yuv";
1922 break;
1923 case 2:
1924 format = " yuv_swapuv";
1925 break;
1926 case 3:
1927 format = " yuv_swapuvy";
1928 break;
1929 }
1930 break;
1931 case 6:
1932 type = "compressed";
1933 switch ((dword >> 3) & 0x7) {
1934 case 0:
1935 format = " dxt1";
1936 break;
1937 case 1:
1938 format = " dxt2_3";
1939 break;
1940 case 2:
1941 format = " dxt4_5";
1942 break;
1943 case 3:
1944 format = " fxt1";
1945 break;
1946 case 4:
1947 format = " dxt1_rb";
1948 break;
1949 }
1950 break;
1951 case 7:
1952 type = "4b indexed";
1953 switch ((dword >> 3) & 0xf) {
1954 case 7:
1955 format = " argb8888";
1956 break;
1957 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -08001958 break;
1959 }
Eric Anholt193fa132011-12-20 11:36:07 -08001960 dword = data[i];
Eric Anholtc1d29462011-12-20 15:29:03 -08001961 instr_out(ctx, i++,
Eric Anholt193fa132011-12-20 11:36:07 -08001962 "map %d MS3 [width=%d, height=%d, format=%s%s, tiling=%s%s]\n",
1963 map, width, height, type, format,
1964 tiling,
1965 dword & (1 << 9) ? " palette select" :
1966 "");
1967
1968 dword = data[i];
1969 pitch =
1970 4 * (((dword >> 21) & ((1 << 11) - 1)) + 1);
Eric Anholtc1d29462011-12-20 15:29:03 -08001971 instr_out(ctx, i++,
Eric Anholt193fa132011-12-20 11:36:07 -08001972 "map %d MS4 [pitch=%d, max_lod=%i, vol_depth=%i, cube_face_ena=%x, %s]\n",
1973 map, pitch, (dword >> 9) & 0x3f,
1974 dword & 0xff, (dword >> 15) & 0x3f,
1975 dword & (1 << 8) ? "miplayout legacy"
1976 : "miplayout right");
1977 }
1978 }
1979 if (len != i) {
1980 fprintf(out, "Bad count in 3DSTATE_MAP_STATE\n");
Eric Anholt193fa132011-12-20 11:36:07 -08001981 return len;
1982 }
1983 return len;
1984 case 0x06:
Eric Anholtc1d29462011-12-20 15:29:03 -08001985 instr_out(ctx, 0,
Eric Anholt193fa132011-12-20 11:36:07 -08001986 "3DSTATE_PIXEL_SHADER_CONSTANTS\n");
1987 len = (data[0] & 0x000000ff) + 2;
1988
1989 i = 2;
1990 for (c = 0; c <= 31; c++) {
1991 if (data[1] & (1 << c)) {
Eric Anholtc1d29462011-12-20 15:29:03 -08001992 instr_out(ctx, i, "C%d.X = %f\n", c,
Eric Anholt193fa132011-12-20 11:36:07 -08001993 int_as_float(data[i]));
1994 i++;
Eric Anholtc1d29462011-12-20 15:29:03 -08001995 instr_out(ctx, i, "C%d.Y = %f\n",
Eric Anholt193fa132011-12-20 11:36:07 -08001996 c, int_as_float(data[i]));
1997 i++;
Eric Anholtc1d29462011-12-20 15:29:03 -08001998 instr_out(ctx, i, "C%d.Z = %f\n",
Eric Anholt193fa132011-12-20 11:36:07 -08001999 c, int_as_float(data[i]));
2000 i++;
Eric Anholtc1d29462011-12-20 15:29:03 -08002001 instr_out(ctx, i, "C%d.W = %f\n",
Eric Anholt193fa132011-12-20 11:36:07 -08002002 c, int_as_float(data[i]));
2003 i++;
2004 }
2005 }
2006 if (len != i) {
2007 fprintf(out,
2008 "Bad count in 3DSTATE_PIXEL_SHADER_CONSTANTS\n");
Eric Anholt193fa132011-12-20 11:36:07 -08002009 }
2010 return len;
2011 case 0x05:
Eric Anholtc1d29462011-12-20 15:29:03 -08002012 instr_out(ctx, 0, "3DSTATE_PIXEL_SHADER_PROGRAM\n");
Eric Anholt193fa132011-12-20 11:36:07 -08002013 len = (data[0] & 0x000000ff) + 2;
2014 if ((len - 1) % 3 != 0 || len > 370) {
2015 fprintf(out,
2016 "Bad count in 3DSTATE_PIXEL_SHADER_PROGRAM\n");
Eric Anholt193fa132011-12-20 11:36:07 -08002017 }
2018 i = 1;
2019 for (instr = 0; instr < (len - 1) / 3; instr++) {
2020 char instr_prefix[10];
2021
Eric Anholt193fa132011-12-20 11:36:07 -08002022 sprintf(instr_prefix, "PS%03d", instr);
Eric Anholtc1d29462011-12-20 15:29:03 -08002023 i915_decode_instruction(ctx, i,
Eric Anholt193fa132011-12-20 11:36:07 -08002024 instr_prefix);
2025 i += 3;
2026 }
2027 return len;
2028 case 0x01:
2029 if (IS_GEN2(devid))
2030 break;
Eric Anholtc1d29462011-12-20 15:29:03 -08002031 instr_out(ctx, 0, "3DSTATE_SAMPLER_STATE\n");
2032 instr_out(ctx, 1, "mask\n");
Eric Anholt193fa132011-12-20 11:36:07 -08002033 len = (data[0] & 0x0000003f) + 2;
2034 i = 2;
2035 for (sampler = 0; sampler <= 15; sampler++) {
2036 if (data[1] & (1 << sampler)) {
2037 uint32_t dword;
Eric Anholt1db55a82011-12-20 12:00:28 -08002038 const char *mip_filter = "";
Eric Anholt028715e2012-01-04 12:31:40 -08002039
Eric Anholt193fa132011-12-20 11:36:07 -08002040 dword = data[i];
2041 switch ((dword >> 20) & 0x3) {
2042 case 0:
2043 mip_filter = "none";
2044 break;
2045 case 1:
2046 mip_filter = "nearest";
2047 break;
2048 case 3:
2049 mip_filter = "linear";
2050 break;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002051 }
Eric Anholtc1d29462011-12-20 15:29:03 -08002052 instr_out(ctx, i++,
Eric Anholt193fa132011-12-20 11:36:07 -08002053 "sampler %d SS2:%s%s%s "
2054 "base_mip_level=%i, mip_filter=%s, mag_filter=%s, min_filter=%s "
2055 "lod_bias=%.2f,%s max_aniso=%i, shadow_func=%s\n",
2056 sampler,
2057 dword & (1 << 31) ? " reverse gamma,"
2058 : "",
2059 dword & (1 << 30) ? " packed2planar,"
2060 : "",
2061 dword & (1 << 29) ?
2062 " colorspace conversion," : "",
2063 (dword >> 22) & 0x1f, mip_filter,
2064 decode_sample_filter(dword >> 17),
2065 decode_sample_filter(dword >> 14),
2066 ((dword >> 5) & 0x1ff) / (0x10 * 1.0),
2067 dword & (1 << 4) ? " shadow," : "",
2068 dword & (1 << 3) ? 4 : 2,
2069 decode_compare_func(dword));
2070 dword = data[i];
Eric Anholtc1d29462011-12-20 15:29:03 -08002071 instr_out(ctx, i++,
Eric Anholt193fa132011-12-20 11:36:07 -08002072 "sampler %d SS3: min_lod=%.2f,%s "
2073 "tcmode_x=%s, tcmode_y=%s, tcmode_z=%s,%s texmap_idx=%i,%s\n",
2074 sampler,
2075 ((dword >> 24) & 0xff) / (0x10 * 1.0),
2076 dword & (1 << 17) ?
2077 " kill pixel enable," : "",
2078 decode_tex_coord_mode(dword >> 12),
2079 decode_tex_coord_mode(dword >> 9),
2080 decode_tex_coord_mode(dword >> 6),
2081 dword & (1 << 5) ?
2082 " normalized coords," : "",
2083 (dword >> 1) & 0xf,
2084 dword & (1 << 0) ? " deinterlacer," :
2085 "");
2086 dword = data[i];
Eric Anholtc1d29462011-12-20 15:29:03 -08002087 instr_out(ctx, i++,
Eric Anholt193fa132011-12-20 11:36:07 -08002088 "sampler %d SS4: border color\n",
Eric Anholt0c46f022011-12-20 14:23:15 -08002089 sampler);
Eric Anholt193fa132011-12-20 11:36:07 -08002090 }
2091 }
2092 if (len != i) {
2093 fprintf(out, "Bad count in 3DSTATE_SAMPLER_STATE\n");
Eric Anholt193fa132011-12-20 11:36:07 -08002094 }
2095 return len;
2096 case 0x85:
2097 len = (data[0] & 0x0000000f) + 2;
2098
2099 if (len != 2)
2100 fprintf(out,
2101 "Bad count in 3DSTATE_DEST_BUFFER_VARIABLES\n");
Eric Anholt193fa132011-12-20 11:36:07 -08002102
Eric Anholtc1d29462011-12-20 15:29:03 -08002103 instr_out(ctx, 0,
Eric Anholt193fa132011-12-20 11:36:07 -08002104 "3DSTATE_DEST_BUFFER_VARIABLES\n");
2105
2106 switch ((data[1] >> 8) & 0xf) {
2107 case 0x0:
2108 format = "g8";
2109 break;
2110 case 0x1:
2111 format = "x1r5g5b5";
2112 break;
2113 case 0x2:
2114 format = "r5g6b5";
2115 break;
2116 case 0x3:
2117 format = "a8r8g8b8";
2118 break;
2119 case 0x4:
2120 format = "ycrcb_swapy";
2121 break;
2122 case 0x5:
2123 format = "ycrcb_normal";
2124 break;
2125 case 0x6:
2126 format = "ycrcb_swapuv";
2127 break;
2128 case 0x7:
2129 format = "ycrcb_swapuvy";
2130 break;
2131 case 0x8:
2132 format = "a4r4g4b4";
2133 break;
2134 case 0x9:
2135 format = "a1r5g5b5";
2136 break;
2137 case 0xa:
2138 format = "a2r10g10b10";
2139 break;
2140 default:
2141 format = "BAD";
2142 break;
2143 }
2144 switch ((data[1] >> 2) & 0x3) {
2145 case 0x0:
2146 zformat = "u16";
2147 break;
2148 case 0x1:
2149 zformat = "f16";
2150 break;
2151 case 0x2:
2152 zformat = "u24x8";
2153 break;
2154 default:
2155 zformat = "BAD";
2156 break;
2157 }
Eric Anholtc1d29462011-12-20 15:29:03 -08002158 instr_out(ctx, 1,
Eric Anholt193fa132011-12-20 11:36:07 -08002159 "%s format, %s depth format, early Z %sabled\n",
2160 format, zformat,
2161 (data[1] & (1 << 31)) ? "en" : "dis");
2162 return len;
2163
2164 case 0x8e:
2165 {
2166 const char *name, *tiling;
2167
2168 len = (data[0] & 0x0000000f) + 2;
2169 if (len != 3)
2170 fprintf(out,
2171 "Bad count in 3DSTATE_BUFFER_INFO\n");
Eric Anholt193fa132011-12-20 11:36:07 -08002172
2173 switch ((data[1] >> 24) & 0x7) {
2174 case 0x3:
2175 name = "color";
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002176 break;
Eric Anholt193fa132011-12-20 11:36:07 -08002177 case 0x7:
2178 name = "depth";
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002179 break;
Eric Anholt193fa132011-12-20 11:36:07 -08002180 default:
2181 name = "unknown";
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002182 break;
2183 }
Eric Anholt193fa132011-12-20 11:36:07 -08002184
2185 tiling = "none";
2186 if (data[1] & (1 << 23))
2187 tiling = "fenced";
2188 else if (data[1] & (1 << 22))
2189 tiling = data[1] & (1 << 21) ? "Y" : "X";
2190
Eric Anholtc1d29462011-12-20 15:29:03 -08002191 instr_out(ctx, 0, "3DSTATE_BUFFER_INFO\n");
2192 instr_out(ctx, 1,
Eric Anholt193fa132011-12-20 11:36:07 -08002193 "%s, tiling = %s, pitch=%d\n", name, tiling,
2194 data[1] & 0xffff);
2195
Eric Anholtc1d29462011-12-20 15:29:03 -08002196 instr_out(ctx, 2, "address\n");
Eric Anholt193fa132011-12-20 11:36:07 -08002197 return len;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002198 }
Eric Anholt193fa132011-12-20 11:36:07 -08002199 case 0x81:
2200 len = (data[0] & 0x0000000f) + 2;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002201
Eric Anholt193fa132011-12-20 11:36:07 -08002202 if (len != 3)
2203 fprintf(out,
2204 "Bad count in 3DSTATE_SCISSOR_RECTANGLE\n");
Eric Anholt193fa132011-12-20 11:36:07 -08002205
Eric Anholtc1d29462011-12-20 15:29:03 -08002206 instr_out(ctx, 0, "3DSTATE_SCISSOR_RECTANGLE\n");
2207 instr_out(ctx, 1, "(%d,%d)\n",
Eric Anholt193fa132011-12-20 11:36:07 -08002208 data[1] & 0xffff, data[1] >> 16);
Eric Anholtc1d29462011-12-20 15:29:03 -08002209 instr_out(ctx, 2, "(%d,%d)\n",
Eric Anholt193fa132011-12-20 11:36:07 -08002210 data[2] & 0xffff, data[2] >> 16);
2211
2212 return len;
2213 case 0x80:
2214 len = (data[0] & 0x0000000f) + 2;
2215
2216 if (len != 5)
2217 fprintf(out,
2218 "Bad count in 3DSTATE_DRAWING_RECTANGLE\n");
Eric Anholt193fa132011-12-20 11:36:07 -08002219
Eric Anholtc1d29462011-12-20 15:29:03 -08002220 instr_out(ctx, 0, "3DSTATE_DRAWING_RECTANGLE\n");
2221 instr_out(ctx, 1, "%s\n",
Eric Anholt193fa132011-12-20 11:36:07 -08002222 data[1] & (1 << 30) ? "depth ofs disabled " : "");
Eric Anholtc1d29462011-12-20 15:29:03 -08002223 instr_out(ctx, 2, "(%d,%d)\n",
Eric Anholt193fa132011-12-20 11:36:07 -08002224 data[2] & 0xffff, data[2] >> 16);
Eric Anholtc1d29462011-12-20 15:29:03 -08002225 instr_out(ctx, 3, "(%d,%d)\n",
Eric Anholt193fa132011-12-20 11:36:07 -08002226 data[3] & 0xffff, data[3] >> 16);
Eric Anholtc1d29462011-12-20 15:29:03 -08002227 instr_out(ctx, 4, "(%d,%d)\n",
Eric Anholt193fa132011-12-20 11:36:07 -08002228 data[4] & 0xffff, data[4] >> 16);
2229
2230 return len;
2231 case 0x9c:
2232 len = (data[0] & 0x0000000f) + 2;
2233
2234 if (len != 7)
2235 fprintf(out, "Bad count in 3DSTATE_CLEAR_PARAMETERS\n");
Eric Anholt193fa132011-12-20 11:36:07 -08002236
Eric Anholtc1d29462011-12-20 15:29:03 -08002237 instr_out(ctx, 0, "3DSTATE_CLEAR_PARAMETERS\n");
2238 instr_out(ctx, 1, "prim_type=%s, clear=%s%s%s\n",
Eric Anholt193fa132011-12-20 11:36:07 -08002239 data[1] & (1 << 16) ? "CLEAR_RECT" : "ZONE_INIT",
2240 data[1] & (1 << 2) ? "color," : "",
2241 data[1] & (1 << 1) ? "depth," : "",
2242 data[1] & (1 << 0) ? "stencil," : "");
Eric Anholtc1d29462011-12-20 15:29:03 -08002243 instr_out(ctx, 2, "clear color\n");
2244 instr_out(ctx, 3, "clear depth/stencil\n");
2245 instr_out(ctx, 4, "color value (rgba8888)\n");
2246 instr_out(ctx, 5, "depth value %f\n",
Eric Anholt193fa132011-12-20 11:36:07 -08002247 int_as_float(data[5]));
Eric Anholtc1d29462011-12-20 15:29:03 -08002248 instr_out(ctx, 6, "clear stencil\n");
Eric Anholt193fa132011-12-20 11:36:07 -08002249 return len;
2250 }
2251
2252 for (idx = 0; idx < ARRAY_SIZE(opcodes_3d_1d); idx++) {
2253 opcode_3d_1d = &opcodes_3d_1d[idx];
2254 if (opcode_3d_1d->i830_only && !IS_GEN2(devid))
2255 continue;
2256
2257 if (((data[0] & 0x00ff0000) >> 16) == opcode_3d_1d->opcode) {
2258 len = 1;
2259
Eric Anholtc1d29462011-12-20 15:29:03 -08002260 instr_out(ctx, 0, "%s\n",
Eric Anholt193fa132011-12-20 11:36:07 -08002261 opcode_3d_1d->name);
2262 if (opcode_3d_1d->max_len > 1) {
2263 len = (data[0] & 0x0000ffff) + 2;
2264 if (len < opcode_3d_1d->min_len ||
2265 len > opcode_3d_1d->max_len) {
2266 fprintf(out, "Bad count in %s\n",
2267 opcode_3d_1d->name);
Eric Anholt193fa132011-12-20 11:36:07 -08002268 }
2269 }
2270
2271 for (i = 1; i < len; i++) {
Eric Anholtc1d29462011-12-20 15:29:03 -08002272 instr_out(ctx, i, "dword %d\n", i);
Eric Anholt193fa132011-12-20 11:36:07 -08002273 }
2274
2275 return len;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002276 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002277 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002278
Eric Anholtc1d29462011-12-20 15:29:03 -08002279 instr_out(ctx, 0, "3D UNKNOWN: 3d_1d opcode = 0x%x\n",
Eric Anholt193fa132011-12-20 11:36:07 -08002280 opcode);
Eric Anholt193fa132011-12-20 11:36:07 -08002281 return 1;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002282}
2283
2284static int
Eric Anholtde49fd42011-12-20 15:15:21 -08002285decode_3d_primitive(struct drm_intel_decode *ctx)
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002286{
Eric Anholtde49fd42011-12-20 15:15:21 -08002287 uint32_t *data = ctx->data;
Eric Anholtde49fd42011-12-20 15:15:21 -08002288 uint32_t count = ctx->count;
Eric Anholt193fa132011-12-20 11:36:07 -08002289 char immediate = (data[0] & (1 << 23)) == 0;
2290 unsigned int len, i, j, ret;
Eric Anholt1db55a82011-12-20 12:00:28 -08002291 const char *primtype;
Eric Anholt193fa132011-12-20 11:36:07 -08002292 int original_s2 = saved_s2;
2293 int original_s4 = saved_s4;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002294
Eric Anholt193fa132011-12-20 11:36:07 -08002295 switch ((data[0] >> 18) & 0xf) {
2296 case 0x0:
2297 primtype = "TRILIST";
2298 break;
2299 case 0x1:
2300 primtype = "TRISTRIP";
2301 break;
2302 case 0x2:
2303 primtype = "TRISTRIP_REVERSE";
2304 break;
2305 case 0x3:
2306 primtype = "TRIFAN";
2307 break;
2308 case 0x4:
2309 primtype = "POLYGON";
2310 break;
2311 case 0x5:
2312 primtype = "LINELIST";
2313 break;
2314 case 0x6:
2315 primtype = "LINESTRIP";
2316 break;
2317 case 0x7:
2318 primtype = "RECTLIST";
2319 break;
2320 case 0x8:
2321 primtype = "POINTLIST";
2322 break;
2323 case 0x9:
2324 primtype = "DIB";
2325 break;
2326 case 0xa:
2327 primtype = "CLEAR_RECT";
2328 saved_s4 = 3 << 6;
2329 saved_s2 = ~0;
2330 break;
2331 default:
2332 primtype = "unknown";
2333 break;
2334 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002335
Eric Anholt193fa132011-12-20 11:36:07 -08002336 /* XXX: 3DPRIM_DIB not supported */
2337 if (immediate) {
2338 len = (data[0] & 0x0003ffff) + 2;
Eric Anholtc1d29462011-12-20 15:29:03 -08002339 instr_out(ctx, 0, "3DPRIMITIVE inline %s\n",
Eric Anholt193fa132011-12-20 11:36:07 -08002340 primtype);
2341 if (count < len)
2342 BUFFER_FAIL(count, len, "3DPRIMITIVE inline");
2343 if (!saved_s2_set || !saved_s4_set) {
2344 fprintf(out, "unknown vertex format\n");
2345 for (i = 1; i < len; i++) {
Eric Anholtc1d29462011-12-20 15:29:03 -08002346 instr_out(ctx, i,
Eric Anholt193fa132011-12-20 11:36:07 -08002347 " vertex data (%f float)\n",
2348 int_as_float(data[i]));
2349 }
2350 } else {
2351 unsigned int vertex = 0;
2352 for (i = 1; i < len;) {
2353 unsigned int tc;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002354
2355#define VERTEX_OUT(fmt, ...) do { \
2356 if (i < len) \
Eric Anholtc1d29462011-12-20 15:29:03 -08002357 instr_out(ctx, i, " V%d."fmt"\n", vertex, __VA_ARGS__); \
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002358 else \
2359 fprintf(out, " missing data in V%d\n", vertex); \
2360 i++; \
2361} while (0)
2362
Eric Anholt193fa132011-12-20 11:36:07 -08002363 VERTEX_OUT("X = %f", int_as_float(data[i]));
2364 VERTEX_OUT("Y = %f", int_as_float(data[i]));
2365 switch (saved_s4 >> 6 & 0x7) {
2366 case 0x1:
2367 VERTEX_OUT("Z = %f",
2368 int_as_float(data[i]));
2369 break;
2370 case 0x2:
2371 VERTEX_OUT("Z = %f",
2372 int_as_float(data[i]));
2373 VERTEX_OUT("W = %f",
2374 int_as_float(data[i]));
2375 break;
2376 case 0x3:
2377 break;
2378 case 0x4:
2379 VERTEX_OUT("W = %f",
2380 int_as_float(data[i]));
2381 break;
2382 default:
2383 fprintf(out, "bad S4 position mask\n");
2384 }
2385
2386 if (saved_s4 & (1 << 10)) {
2387 VERTEX_OUT
2388 ("color = (A=0x%02x, R=0x%02x, G=0x%02x, "
2389 "B=0x%02x)", data[i] >> 24,
2390 (data[i] >> 16) & 0xff,
2391 (data[i] >> 8) & 0xff,
2392 data[i] & 0xff);
2393 }
2394 if (saved_s4 & (1 << 11)) {
2395 VERTEX_OUT
2396 ("spec = (A=0x%02x, R=0x%02x, G=0x%02x, "
2397 "B=0x%02x)", data[i] >> 24,
2398 (data[i] >> 16) & 0xff,
2399 (data[i] >> 8) & 0xff,
2400 data[i] & 0xff);
2401 }
2402 if (saved_s4 & (1 << 12))
2403 VERTEX_OUT("width = 0x%08x)", data[i]);
2404
2405 for (tc = 0; tc <= 7; tc++) {
2406 switch ((saved_s2 >> (tc * 4)) & 0xf) {
2407 case 0x0:
2408 VERTEX_OUT("T%d.X = %f", tc,
2409 int_as_float(data
2410 [i]));
2411 VERTEX_OUT("T%d.Y = %f", tc,
2412 int_as_float(data
2413 [i]));
2414 break;
2415 case 0x1:
2416 VERTEX_OUT("T%d.X = %f", tc,
2417 int_as_float(data
2418 [i]));
2419 VERTEX_OUT("T%d.Y = %f", tc,
2420 int_as_float(data
2421 [i]));
2422 VERTEX_OUT("T%d.Z = %f", tc,
2423 int_as_float(data
2424 [i]));
2425 break;
2426 case 0x2:
2427 VERTEX_OUT("T%d.X = %f", tc,
2428 int_as_float(data
2429 [i]));
2430 VERTEX_OUT("T%d.Y = %f", tc,
2431 int_as_float(data
2432 [i]));
2433 VERTEX_OUT("T%d.Z = %f", tc,
2434 int_as_float(data
2435 [i]));
2436 VERTEX_OUT("T%d.W = %f", tc,
2437 int_as_float(data
2438 [i]));
2439 break;
2440 case 0x3:
2441 VERTEX_OUT("T%d.X = %f", tc,
2442 int_as_float(data
2443 [i]));
2444 break;
2445 case 0x4:
2446 VERTEX_OUT
2447 ("T%d.XY = 0x%08x half-float",
2448 tc, data[i]);
2449 break;
2450 case 0x5:
2451 VERTEX_OUT
2452 ("T%d.XY = 0x%08x half-float",
2453 tc, data[i]);
2454 VERTEX_OUT
2455 ("T%d.ZW = 0x%08x half-float",
2456 tc, data[i]);
2457 break;
2458 case 0xf:
2459 break;
2460 default:
2461 fprintf(out,
2462 "bad S2.T%d format\n",
2463 tc);
2464 }
2465 }
2466 vertex++;
2467 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002468 }
2469
Eric Anholt193fa132011-12-20 11:36:07 -08002470 ret = len;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002471 } else {
Eric Anholt193fa132011-12-20 11:36:07 -08002472 /* indirect vertices */
2473 len = data[0] & 0x0000ffff; /* index count */
2474 if (data[0] & (1 << 17)) {
2475 /* random vertex access */
2476 if (count < (len + 1) / 2 + 1) {
2477 BUFFER_FAIL(count, (len + 1) / 2 + 1,
2478 "3DPRIMITIVE random indirect");
2479 }
Eric Anholtc1d29462011-12-20 15:29:03 -08002480 instr_out(ctx, 0,
Eric Anholt193fa132011-12-20 11:36:07 -08002481 "3DPRIMITIVE random indirect %s (%d)\n",
2482 primtype, len);
2483 if (len == 0) {
Eric Anholtbbdda922011-12-20 11:44:36 -08002484 /* vertex indices continue until 0xffff is
2485 * found
2486 */
Eric Anholt193fa132011-12-20 11:36:07 -08002487 for (i = 1; i < count; i++) {
2488 if ((data[i] & 0xffff) == 0xffff) {
Eric Anholtc1d29462011-12-20 15:29:03 -08002489 instr_out(ctx, i,
Eric Anholt193fa132011-12-20 11:36:07 -08002490 " indices: (terminator)\n");
2491 ret = i;
2492 goto out;
2493 } else if ((data[i] >> 16) == 0xffff) {
Eric Anholtc1d29462011-12-20 15:29:03 -08002494 instr_out(ctx, i,
Eric Anholt193fa132011-12-20 11:36:07 -08002495 " indices: 0x%04x, (terminator)\n",
2496 data[i] & 0xffff);
2497 ret = i;
2498 goto out;
2499 } else {
Eric Anholtc1d29462011-12-20 15:29:03 -08002500 instr_out(ctx, i,
Eric Anholt193fa132011-12-20 11:36:07 -08002501 " indices: 0x%04x, 0x%04x\n",
2502 data[i] & 0xffff,
2503 data[i] >> 16);
2504 }
2505 }
2506 fprintf(out,
2507 "3DPRIMITIVE: no terminator found in index buffer\n");
Eric Anholt193fa132011-12-20 11:36:07 -08002508 ret = count;
2509 goto out;
2510 } else {
2511 /* fixed size vertex index buffer */
2512 for (j = 1, i = 0; i < len; i += 2, j++) {
2513 if (i * 2 == len - 1) {
Eric Anholtc1d29462011-12-20 15:29:03 -08002514 instr_out(ctx, j,
Eric Anholt193fa132011-12-20 11:36:07 -08002515 " indices: 0x%04x\n",
2516 data[j] & 0xffff);
2517 } else {
Eric Anholtc1d29462011-12-20 15:29:03 -08002518 instr_out(ctx, j,
Eric Anholt193fa132011-12-20 11:36:07 -08002519 " indices: 0x%04x, 0x%04x\n",
2520 data[j] & 0xffff,
2521 data[j] >> 16);
2522 }
2523 }
2524 }
2525 ret = (len + 1) / 2 + 1;
2526 goto out;
2527 } else {
2528 /* sequential vertex access */
Eric Anholtc1d29462011-12-20 15:29:03 -08002529 instr_out(ctx, 0,
Eric Anholt193fa132011-12-20 11:36:07 -08002530 "3DPRIMITIVE sequential indirect %s, %d starting from "
2531 "%d\n", primtype, len, data[1] & 0xffff);
Eric Anholtc1d29462011-12-20 15:29:03 -08002532 instr_out(ctx, 1, " start\n");
Eric Anholt193fa132011-12-20 11:36:07 -08002533 ret = 2;
2534 goto out;
2535 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002536 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002537
2538out:
Eric Anholt193fa132011-12-20 11:36:07 -08002539 saved_s2 = original_s2;
2540 saved_s4 = original_s4;
2541 return ret;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002542}
2543
2544static int
Eric Anholtde49fd42011-12-20 15:15:21 -08002545decode_3d(struct drm_intel_decode *ctx)
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002546{
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002547 uint32_t opcode;
Eric Anholt193fa132011-12-20 11:36:07 -08002548 unsigned int idx;
Eric Anholtde49fd42011-12-20 15:15:21 -08002549 uint32_t *data = ctx->data;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002550
Eric Anholt193fa132011-12-20 11:36:07 -08002551 struct {
2552 uint32_t opcode;
Eric Anholt07768ba2011-12-20 13:46:23 -08002553 unsigned int min_len;
2554 unsigned int max_len;
Eric Anholt1db55a82011-12-20 12:00:28 -08002555 const char *name;
Eric Anholt193fa132011-12-20 11:36:07 -08002556 } opcodes_3d[] = {
Eric Anholtbbdda922011-12-20 11:44:36 -08002557 { 0x06, 1, 1, "3DSTATE_ANTI_ALIASING" },
2558 { 0x08, 1, 1, "3DSTATE_BACKFACE_STENCIL_OPS" },
2559 { 0x09, 1, 1, "3DSTATE_BACKFACE_STENCIL_MASKS" },
2560 { 0x16, 1, 1, "3DSTATE_COORD_SET_BINDINGS" },
2561 { 0x15, 1, 1, "3DSTATE_FOG_COLOR" },
2562 { 0x0b, 1, 1, "3DSTATE_INDEPENDENT_ALPHA_BLEND" },
2563 { 0x0d, 1, 1, "3DSTATE_MODES_4" },
2564 { 0x0c, 1, 1, "3DSTATE_MODES_5" },
2565 { 0x07, 1, 1, "3DSTATE_RASTERIZATION_RULES"},
2566 }, *opcode_3d;
Eric Anholt193fa132011-12-20 11:36:07 -08002567
2568 opcode = (data[0] & 0x1f000000) >> 24;
2569
2570 switch (opcode) {
2571 case 0x1f:
Eric Anholtde49fd42011-12-20 15:15:21 -08002572 return decode_3d_primitive(ctx);
Eric Anholt193fa132011-12-20 11:36:07 -08002573 case 0x1d:
Eric Anholtde49fd42011-12-20 15:15:21 -08002574 return decode_3d_1d(ctx);
Eric Anholt193fa132011-12-20 11:36:07 -08002575 case 0x1c:
Eric Anholtde49fd42011-12-20 15:15:21 -08002576 return decode_3d_1c(ctx);
Eric Anholt193fa132011-12-20 11:36:07 -08002577 }
2578
2579 for (idx = 0; idx < ARRAY_SIZE(opcodes_3d); idx++) {
2580 opcode_3d = &opcodes_3d[idx];
2581 if (opcode == opcode_3d->opcode) {
2582 unsigned int len = 1, i;
2583
Eric Anholtc1d29462011-12-20 15:29:03 -08002584 instr_out(ctx, 0, "%s\n", opcode_3d->name);
Eric Anholt193fa132011-12-20 11:36:07 -08002585 if (opcode_3d->max_len > 1) {
2586 len = (data[0] & 0xff) + 2;
2587 if (len < opcode_3d->min_len ||
2588 len > opcode_3d->max_len) {
2589 fprintf(out, "Bad count in %s\n",
2590 opcode_3d->name);
2591 }
2592 }
2593
2594 for (i = 1; i < len; i++) {
Eric Anholtc1d29462011-12-20 15:29:03 -08002595 instr_out(ctx, i, "dword %d\n", i);
Eric Anholt193fa132011-12-20 11:36:07 -08002596 }
2597 return len;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002598 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002599 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002600
Eric Anholtc1d29462011-12-20 15:29:03 -08002601 instr_out(ctx, 0, "3D UNKNOWN: 3d opcode = 0x%x\n", opcode);
Eric Anholt193fa132011-12-20 11:36:07 -08002602 return 1;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002603}
2604
Eric Anholt193fa132011-12-20 11:36:07 -08002605static const char *get_965_surfacetype(unsigned int surfacetype)
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002606{
Eric Anholt193fa132011-12-20 11:36:07 -08002607 switch (surfacetype) {
2608 case 0:
2609 return "1D";
2610 case 1:
2611 return "2D";
2612 case 2:
2613 return "3D";
2614 case 3:
2615 return "CUBE";
2616 case 4:
2617 return "BUFFER";
2618 case 7:
2619 return "NULL";
2620 default:
2621 return "unknown";
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002622 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002623}
2624
Eric Anholt193fa132011-12-20 11:36:07 -08002625static const char *get_965_depthformat(unsigned int depthformat)
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002626{
Eric Anholt193fa132011-12-20 11:36:07 -08002627 switch (depthformat) {
2628 case 0:
2629 return "s8_z24float";
2630 case 1:
2631 return "z32float";
2632 case 2:
2633 return "z24s8";
2634 case 5:
2635 return "z16";
2636 default:
2637 return "unknown";
2638 }
2639}
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002640
Eric Anholt193fa132011-12-20 11:36:07 -08002641static const char *get_965_element_component(uint32_t data, int component)
2642{
2643 uint32_t component_control = (data >> (16 + (3 - component) * 4)) & 0x7;
2644
2645 switch (component_control) {
2646 case 0:
2647 return "nostore";
2648 case 1:
2649 switch (component) {
2650 case 0:
2651 return "X";
2652 case 1:
2653 return "Y";
2654 case 2:
2655 return "Z";
2656 case 3:
2657 return "W";
2658 default:
2659 return "fail";
2660 }
2661 case 2:
2662 return "0.0";
2663 case 3:
2664 return "1.0";
2665 case 4:
2666 return "0x1";
2667 case 5:
2668 return "VID";
2669 default:
2670 return "fail";
2671 }
2672}
2673
Eric Anholt9d18ad22012-03-02 10:27:55 -08002674static const char *get_965_prim_type(uint32_t primtype)
Eric Anholt193fa132011-12-20 11:36:07 -08002675{
Eric Anholt193fa132011-12-20 11:36:07 -08002676 switch (primtype) {
2677 case 0x01:
2678 return "point list";
2679 case 0x02:
2680 return "line list";
2681 case 0x03:
2682 return "line strip";
2683 case 0x04:
2684 return "tri list";
2685 case 0x05:
2686 return "tri strip";
2687 case 0x06:
2688 return "tri fan";
2689 case 0x07:
2690 return "quad list";
2691 case 0x08:
2692 return "quad strip";
2693 case 0x09:
2694 return "line list adj";
2695 case 0x0a:
2696 return "line strip adj";
2697 case 0x0b:
2698 return "tri list adj";
2699 case 0x0c:
2700 return "tri strip adj";
2701 case 0x0d:
2702 return "tri strip reverse";
2703 case 0x0e:
2704 return "polygon";
2705 case 0x0f:
2706 return "rect list";
2707 case 0x10:
2708 return "line loop";
2709 case 0x11:
2710 return "point list bf";
2711 case 0x12:
2712 return "line strip cont";
2713 case 0x13:
2714 return "line strip bf";
2715 case 0x14:
2716 return "line strip cont bf";
2717 case 0x15:
2718 return "tri fan no stipple";
2719 default:
2720 return "fail";
2721 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002722}
2723
2724static int
Eric Anholtc1d29462011-12-20 15:29:03 -08002725i965_decode_urb_fence(struct drm_intel_decode *ctx, int len)
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002726{
2727 uint32_t vs_fence, clip_fence, gs_fence, sf_fence, vfe_fence, cs_fence;
Eric Anholtc1d29462011-12-20 15:29:03 -08002728 uint32_t *data = ctx->data;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002729
2730 if (len != 3)
Eric Anholt193fa132011-12-20 11:36:07 -08002731 fprintf(out, "Bad count in URB_FENCE\n");
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002732
2733 vs_fence = data[1] & 0x3ff;
2734 gs_fence = (data[1] >> 10) & 0x3ff;
2735 clip_fence = (data[1] >> 20) & 0x3ff;
2736 sf_fence = data[2] & 0x3ff;
2737 vfe_fence = (data[2] >> 10) & 0x3ff;
2738 cs_fence = (data[2] >> 20) & 0x7ff;
2739
Eric Anholtc1d29462011-12-20 15:29:03 -08002740 instr_out(ctx, 0, "URB_FENCE: %s%s%s%s%s%s\n",
Eric Anholt193fa132011-12-20 11:36:07 -08002741 (data[0] >> 13) & 1 ? "cs " : "",
2742 (data[0] >> 12) & 1 ? "vfe " : "",
2743 (data[0] >> 11) & 1 ? "sf " : "",
2744 (data[0] >> 10) & 1 ? "clip " : "",
2745 (data[0] >> 9) & 1 ? "gs " : "",
2746 (data[0] >> 8) & 1 ? "vs " : "");
Eric Anholtc1d29462011-12-20 15:29:03 -08002747 instr_out(ctx, 1,
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002748 "vs fence: %d, clip_fence: %d, gs_fence: %d\n",
2749 vs_fence, clip_fence, gs_fence);
Eric Anholtc1d29462011-12-20 15:29:03 -08002750 instr_out(ctx, 2,
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002751 "sf fence: %d, vfe_fence: %d, cs_fence: %d\n",
2752 sf_fence, vfe_fence, cs_fence);
2753 if (gs_fence < vs_fence)
Eric Anholt193fa132011-12-20 11:36:07 -08002754 fprintf(out, "gs fence < vs fence!\n");
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002755 if (clip_fence < gs_fence)
Eric Anholt193fa132011-12-20 11:36:07 -08002756 fprintf(out, "clip fence < gs fence!\n");
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002757 if (sf_fence < clip_fence)
Eric Anholt193fa132011-12-20 11:36:07 -08002758 fprintf(out, "sf fence < clip fence!\n");
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002759 if (cs_fence < sf_fence)
Eric Anholt193fa132011-12-20 11:36:07 -08002760 fprintf(out, "cs fence < sf fence!\n");
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002761
2762 return len;
2763}
2764
2765static void
Eric Anholtc1d29462011-12-20 15:29:03 -08002766state_base_out(struct drm_intel_decode *ctx, unsigned int index,
Eric Anholt1db55a82011-12-20 12:00:28 -08002767 const char *name)
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002768{
Eric Anholtc1d29462011-12-20 15:29:03 -08002769 if (ctx->data[index] & 1) {
2770 instr_out(ctx, index,
Eric Anholt193fa132011-12-20 11:36:07 -08002771 "%s state base address 0x%08x\n", name,
Eric Anholtc1d29462011-12-20 15:29:03 -08002772 ctx->data[index] & ~1);
Eric Anholt193fa132011-12-20 11:36:07 -08002773 } else {
Eric Anholtc1d29462011-12-20 15:29:03 -08002774 instr_out(ctx, index, "%s state base not updated\n",
Eric Anholt193fa132011-12-20 11:36:07 -08002775 name);
2776 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002777}
2778
2779static void
Eric Anholtc1d29462011-12-20 15:29:03 -08002780state_max_out(struct drm_intel_decode *ctx, unsigned int index,
Eric Anholt1db55a82011-12-20 12:00:28 -08002781 const char *name)
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002782{
Eric Anholtc1d29462011-12-20 15:29:03 -08002783 if (ctx->data[index] & 1) {
2784 if (ctx->data[index] == 1) {
2785 instr_out(ctx, index,
Eric Anholt193fa132011-12-20 11:36:07 -08002786 "%s state upper bound disabled\n", name);
2787 } else {
Eric Anholtc1d29462011-12-20 15:29:03 -08002788 instr_out(ctx, index,
Eric Anholt193fa132011-12-20 11:36:07 -08002789 "%s state upper bound 0x%08x\n", name,
Eric Anholtc1d29462011-12-20 15:29:03 -08002790 ctx->data[index] & ~1);
Eric Anholt193fa132011-12-20 11:36:07 -08002791 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002792 } else {
Eric Anholtc1d29462011-12-20 15:29:03 -08002793 instr_out(ctx, index,
Eric Anholt193fa132011-12-20 11:36:07 -08002794 "%s state upper bound not updated\n", name);
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002795 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -08002796}
2797
2798static int
Eric Anholt938df6b2012-01-04 12:23:42 -08002799gen7_3DSTATE_VIEWPORT_STATE_POINTERS_CC(struct drm_intel_decode *ctx)
2800{
2801 instr_out(ctx, 0, "3DSTATE_VIEWPORT_STATE_POINTERS_CC\n");
2802 instr_out(ctx, 1, "pointer to CC viewport\n");
2803
2804 return 2;
2805}
2806
2807static int
2808gen7_3DSTATE_VIEWPORT_STATE_POINTERS_SF_CLIP(struct drm_intel_decode *ctx)
2809{
2810 instr_out(ctx, 0, "3DSTATE_VIEWPORT_STATE_POINTERS_SF_CLIP\n");
2811 instr_out(ctx, 1, "pointer to SF_CLIP viewport\n");
2812
2813 return 2;
2814}
2815
2816static int
2817gen7_3DSTATE_BLEND_STATE_POINTERS(struct drm_intel_decode *ctx)
2818{
2819 instr_out(ctx, 0, "3DSTATE_BLEND_STATE_POINTERS\n");
2820 instr_out(ctx, 1, "pointer to BLEND_STATE at 0x%08x (%s)\n",
2821 ctx->data[1] & ~1,
2822 (ctx->data[1] & 1) ? "changed" : "unchanged");
2823
2824 return 2;
2825}
2826
2827static int
2828gen7_3DSTATE_DEPTH_STENCIL_STATE_POINTERS(struct drm_intel_decode *ctx)
2829{
2830 instr_out(ctx, 0, "3DSTATE_DEPTH_STENCIL_STATE_POINTERS\n");
2831 instr_out(ctx, 1,
2832 "pointer to DEPTH_STENCIL_STATE at 0x%08x (%s)\n",
2833 ctx->data[1] & ~1,
2834 (ctx->data[1] & 1) ? "changed" : "unchanged");
2835
2836 return 2;
2837}
2838
2839static int
Eric Anholtb395af02012-01-30 15:13:32 -08002840gen7_3DSTATE_HIER_DEPTH_BUFFER(struct drm_intel_decode *ctx)
2841{
2842 instr_out(ctx, 0, "3DSTATE_HIER_DEPTH_BUFFER\n");
2843 instr_out(ctx, 1, "pitch %db\n",
2844 (ctx->data[1] & 0x1ffff) + 1);
2845 instr_out(ctx, 2, "pointer to HiZ buffer\n");
2846
2847 return 3;
2848}
2849
2850static int
Eric Anholt938df6b2012-01-04 12:23:42 -08002851gen6_3DSTATE_CC_STATE_POINTERS(struct drm_intel_decode *ctx)
2852{
2853 instr_out(ctx, 0, "3DSTATE_CC_STATE_POINTERS\n");
2854 instr_out(ctx, 1, "blend change %d\n", ctx->data[1] & 1);
2855 instr_out(ctx, 2, "depth stencil change %d\n",
2856 ctx->data[2] & 1);
2857 instr_out(ctx, 3, "cc change %d\n", ctx->data[3] & 1);
2858
2859 return 4;
2860}
2861
2862static int
2863gen7_3DSTATE_CC_STATE_POINTERS(struct drm_intel_decode *ctx)
2864{
2865 instr_out(ctx, 0, "3DSTATE_CC_STATE_POINTERS\n");
2866 instr_out(ctx, 1, "pointer to COLOR_CALC_STATE at 0x%08x "
2867 "(%s)\n",
2868 ctx->data[1] & ~1,
2869 (ctx->data[1] & 1) ? "changed" : "unchanged");
2870
2871 return 2;
2872}
2873
2874static int
Eric Anholt6a0b25e2012-01-04 12:12:41 -08002875gen7_3DSTATE_URB_unit(struct drm_intel_decode *ctx, const char *unit)
2876{
2877 int start_kb = ((ctx->data[1] >> 25) & 0x3f) * 8;
2878 /* the field is # of 512-bit rows - 1, we print bytes */
2879 int entry_size = (((ctx->data[1] >> 16) & 0x1ff) + 1);
2880 int nr_entries = ctx->data[1] & 0xffff;
2881
2882 instr_out(ctx, 0, "3DSTATE_URB_%s\n", unit);
2883 instr_out(ctx, 1,
2884 "%dKB start, size=%d 64B rows, nr_entries=%d, total size %dB\n",
2885 start_kb, entry_size, nr_entries, nr_entries * 64 * entry_size);
2886
2887 return 2;
2888}
2889
2890static int
2891gen7_3DSTATE_URB_VS(struct drm_intel_decode *ctx)
2892{
2893 return gen7_3DSTATE_URB_unit(ctx, "VS");
2894}
2895
2896static int
2897gen7_3DSTATE_URB_HS(struct drm_intel_decode *ctx)
2898{
2899 return gen7_3DSTATE_URB_unit(ctx, "HS");
2900}
2901
2902static int
2903gen7_3DSTATE_URB_DS(struct drm_intel_decode *ctx)
2904{
2905 return gen7_3DSTATE_URB_unit(ctx, "DS");
2906}
2907
2908static int
2909gen7_3DSTATE_URB_GS(struct drm_intel_decode *ctx)
2910{
2911 return gen7_3DSTATE_URB_unit(ctx, "GS");
2912}
2913
2914static int
Eric Anholt54b12a02012-01-04 13:41:55 -08002915gen7_3DSTATE_CONSTANT(struct drm_intel_decode *ctx, const char *unit)
2916{
2917 int rlen[4];
2918
2919 rlen[0] = (ctx->data[1] >> 0) & 0xffff;
2920 rlen[1] = (ctx->data[1] >> 16) & 0xffff;
2921 rlen[2] = (ctx->data[2] >> 0) & 0xffff;
2922 rlen[3] = (ctx->data[2] >> 16) & 0xffff;
2923
2924 instr_out(ctx, 0, "3DSTATE_CONSTANT_%s\n", unit);
2925 instr_out(ctx, 1, "len 0 = %d, len 1 = %d\n", rlen[0], rlen[1]);
2926 instr_out(ctx, 2, "len 2 = %d, len 3 = %d\n", rlen[2], rlen[3]);
2927 instr_out(ctx, 3, "pointer to constbuf 0\n");
2928 instr_out(ctx, 4, "pointer to constbuf 1\n");
2929 instr_out(ctx, 5, "pointer to constbuf 2\n");
2930 instr_out(ctx, 6, "pointer to constbuf 3\n");
2931
2932 return 7;
2933}
2934
2935static int
2936gen7_3DSTATE_CONSTANT_VS(struct drm_intel_decode *ctx)
2937{
2938 return gen7_3DSTATE_CONSTANT(ctx, "VS");
2939}
2940
2941static int
2942gen7_3DSTATE_CONSTANT_GS(struct drm_intel_decode *ctx)
2943{
2944 return gen7_3DSTATE_CONSTANT(ctx, "GS");
2945}
2946
2947static int
2948gen7_3DSTATE_CONSTANT_PS(struct drm_intel_decode *ctx)
2949{
2950 return gen7_3DSTATE_CONSTANT(ctx, "PS");
2951}
2952
2953static int
2954gen7_3DSTATE_CONSTANT_DS(struct drm_intel_decode *ctx)
2955{
2956 return gen7_3DSTATE_CONSTANT(ctx, "DS");
2957}
2958
2959static int
2960gen7_3DSTATE_CONSTANT_HS(struct drm_intel_decode *ctx)
2961{
2962 return gen7_3DSTATE_CONSTANT(ctx, "HS");
2963}
2964
Eric Anholte6beaf82012-01-30 15:04:10 -08002965
2966static int
2967gen6_3DSTATE_WM(struct drm_intel_decode *ctx)
2968{
2969 instr_out(ctx, 0, "3DSTATE_WM\n");
2970 instr_out(ctx, 1, "kernel start pointer 0\n");
2971 instr_out(ctx, 2,
2972 "SPF=%d, VME=%d, Sampler Count %d, "
2973 "Binding table count %d\n",
2974 (ctx->data[2] >> 31) & 1,
2975 (ctx->data[2] >> 30) & 1,
2976 (ctx->data[2] >> 27) & 7,
2977 (ctx->data[2] >> 18) & 0xff);
2978 instr_out(ctx, 3, "scratch offset\n");
2979 instr_out(ctx, 4,
2980 "Depth Clear %d, Depth Resolve %d, HiZ Resolve %d, "
2981 "Dispatch GRF start[0] %d, start[1] %d, start[2] %d\n",
2982 (ctx->data[4] & (1 << 30)) != 0,
2983 (ctx->data[4] & (1 << 28)) != 0,
2984 (ctx->data[4] & (1 << 27)) != 0,
2985 (ctx->data[4] >> 16) & 0x7f,
2986 (ctx->data[4] >> 8) & 0x7f,
2987 (ctx->data[4] & 0x7f));
2988 instr_out(ctx, 5,
2989 "MaxThreads %d, PS KillPixel %d, PS computed Z %d, "
2990 "PS use sourceZ %d, Thread Dispatch %d, PS use sourceW %d, "
2991 "Dispatch32 %d, Dispatch16 %d, Dispatch8 %d\n",
2992 ((ctx->data[5] >> 25) & 0x7f) + 1,
2993 (ctx->data[5] & (1 << 22)) != 0,
2994 (ctx->data[5] & (1 << 21)) != 0,
2995 (ctx->data[5] & (1 << 20)) != 0,
2996 (ctx->data[5] & (1 << 19)) != 0,
2997 (ctx->data[5] & (1 << 8)) != 0,
2998 (ctx->data[5] & (1 << 2)) != 0,
2999 (ctx->data[5] & (1 << 1)) != 0,
3000 (ctx->data[5] & (1 << 0)) != 0);
3001 instr_out(ctx, 6,
3002 "Num SF output %d, Pos XY offset %d, ZW interp mode %d , "
3003 "Barycentric interp mode 0x%x, Point raster rule %d, "
3004 "Multisample mode %d, "
3005 "Multisample Dispatch mode %d\n",
3006 (ctx->data[6] >> 20) & 0x3f,
3007 (ctx->data[6] >> 18) & 3,
3008 (ctx->data[6] >> 16) & 3,
3009 (ctx->data[6] >> 10) & 0x3f,
3010 (ctx->data[6] & (1 << 9)) != 0,
3011 (ctx->data[6] >> 1) & 3,
3012 (ctx->data[6] & 1));
3013 instr_out(ctx, 7, "kernel start pointer 1\n");
3014 instr_out(ctx, 8, "kernel start pointer 2\n");
3015
3016 return 9;
3017}
3018
3019static int
3020gen7_3DSTATE_WM(struct drm_intel_decode *ctx)
3021{
3022 const char *computed_depth = "";
3023 const char *early_depth = "";
3024 const char *zw_interp = "";
3025
3026 switch ((ctx->data[1] >> 23) & 0x3) {
3027 case 0:
3028 computed_depth = "";
3029 break;
3030 case 1:
3031 computed_depth = "computed depth";
3032 break;
3033 case 2:
3034 computed_depth = "computed depth >=";
3035 break;
3036 case 3:
3037 computed_depth = "computed depth <=";
3038 break;
3039 }
3040
3041 switch ((ctx->data[1] >> 21) & 0x3) {
3042 case 0:
3043 early_depth = "";
3044 break;
3045 case 1:
3046 early_depth = ", EDSC_PSEXEC";
3047 break;
3048 case 2:
3049 early_depth = ", EDSC_PREPS";
3050 break;
3051 case 3:
3052 early_depth = ", BAD EDSC";
3053 break;
3054 }
3055
3056 switch ((ctx->data[1] >> 17) & 0x3) {
3057 case 0:
3058 early_depth = "";
3059 break;
3060 case 1:
3061 early_depth = ", BAD ZW interp";
3062 break;
3063 case 2:
3064 early_depth = ", ZW centroid";
3065 break;
3066 case 3:
3067 early_depth = ", ZW sample";
3068 break;
3069 }
3070
3071 instr_out(ctx, 0, "3DSTATE_WM\n");
3072 instr_out(ctx, 1, "(%s%s%s%s%s%s)%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n",
3073 (ctx->data[1] & (1 << 11)) ? "PP " : "",
3074 (ctx->data[1] & (1 << 12)) ? "PC " : "",
3075 (ctx->data[1] & (1 << 13)) ? "PS " : "",
3076 (ctx->data[1] & (1 << 14)) ? "NPP " : "",
3077 (ctx->data[1] & (1 << 15)) ? "NPC " : "",
3078 (ctx->data[1] & (1 << 16)) ? "NPS " : "",
3079 (ctx->data[1] & (1 << 30)) ? ", depth clear" : "",
3080 (ctx->data[1] & (1 << 29)) ? "" : ", disabled",
3081 (ctx->data[1] & (1 << 28)) ? ", depth resolve" : "",
3082 (ctx->data[1] & (1 << 27)) ? ", hiz resolve" : "",
3083 (ctx->data[1] & (1 << 25)) ? ", kill" : "",
3084 computed_depth,
3085 early_depth,
3086 zw_interp,
3087 (ctx->data[1] & (1 << 20)) ? ", source depth" : "",
3088 (ctx->data[1] & (1 << 19)) ? ", source W" : "",
3089 (ctx->data[1] & (1 << 10)) ? ", coverage" : "",
3090 (ctx->data[1] & (1 << 4)) ? ", poly stipple" : "",
3091 (ctx->data[1] & (1 << 3)) ? ", line stipple" : "",
3092 (ctx->data[1] & (1 << 2)) ? ", point UL" : ", point UR"
3093 );
3094 instr_out(ctx, 2, "MS\n");
3095
3096 return 3;
3097}
3098
Eric Anholt54b12a02012-01-04 13:41:55 -08003099static int
Eric Anholt9b87fd92012-03-02 10:18:51 -08003100gen4_3DPRIMITIVE(struct drm_intel_decode *ctx)
3101{
3102 instr_out(ctx, 0,
3103 "3DPRIMITIVE: %s %s\n",
Eric Anholt9d18ad22012-03-02 10:27:55 -08003104 get_965_prim_type((ctx->data[0] >> 10) & 0x1f),
Eric Anholt9b87fd92012-03-02 10:18:51 -08003105 (ctx->data[0] & (1 << 15)) ? "random" : "sequential");
3106 instr_out(ctx, 1, "vertex count\n");
3107 instr_out(ctx, 2, "start vertex\n");
3108 instr_out(ctx, 3, "instance count\n");
3109 instr_out(ctx, 4, "start instance\n");
3110 instr_out(ctx, 5, "index bias\n");
3111
3112 return 6;
3113}
3114
3115static int
Eric Anholt9d18ad22012-03-02 10:27:55 -08003116gen7_3DPRIMITIVE(struct drm_intel_decode *ctx)
3117{
3118 bool indirect = !!(ctx->data[0] & (1 << 10));
3119
3120 instr_out(ctx, 0,
3121 "3DPRIMITIVE: %s%s\n",
3122 indirect ? " indirect" : "",
3123 (ctx->data[0] & (1 << 8)) ? " predicated" : "");
3124 instr_out(ctx, 1, "%s %s\n",
3125 get_965_prim_type(ctx->data[1] & 0x3f),
3126 (ctx->data[1] & (1 << 8)) ? "random" : "sequential");
3127 instr_out(ctx, 2, indirect ? "ignored" : "vertex count\n");
3128 instr_out(ctx, 3, indirect ? "ignored" : "start vertex\n");
3129 instr_out(ctx, 4, indirect ? "ignored" : "instance count\n");
3130 instr_out(ctx, 5, indirect ? "ignored" : "start instance\n");
3131 instr_out(ctx, 6, indirect ? "ignored" : "index bias\n");
3132
3133 return 7;
3134}
3135
3136static int
Eric Anholtde49fd42011-12-20 15:15:21 -08003137decode_3d_965(struct drm_intel_decode *ctx)
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003138{
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003139 uint32_t opcode;
Eric Anholtb129e102012-01-04 13:00:29 -08003140 unsigned int len;
Eric Anholt7b483182011-12-20 14:27:17 -08003141 unsigned int i, j, sba_len;
Eric Anholt1db55a82011-12-20 12:00:28 -08003142 const char *desc1 = NULL;
Eric Anholtde49fd42011-12-20 15:15:21 -08003143 uint32_t *data = ctx->data;
Eric Anholtde49fd42011-12-20 15:15:21 -08003144 uint32_t devid = ctx->devid;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003145
Eric Anholt193fa132011-12-20 11:36:07 -08003146 struct {
3147 uint32_t opcode;
Eric Anholtb129e102012-01-04 13:00:29 -08003148 uint32_t len_mask;
Eric Anholt07768ba2011-12-20 13:46:23 -08003149 int unsigned min_len;
3150 int unsigned max_len;
Eric Anholt1db55a82011-12-20 12:00:28 -08003151 const char *name;
Eric Anholt9695eee2012-01-04 12:00:59 -08003152 int gen;
Eric Anholt3dcb2d42012-01-04 12:06:44 -08003153 int (*func)(struct drm_intel_decode *ctx);
Eric Anholt193fa132011-12-20 11:36:07 -08003154 } opcodes_3d[] = {
Eric Anholtb129e102012-01-04 13:00:29 -08003155 { 0x6000, 0x00ff, 3, 3, "URB_FENCE" },
3156 { 0x6001, 0xffff, 2, 2, "CS_URB_STATE" },
3157 { 0x6002, 0x00ff, 2, 2, "CONSTANT_BUFFER" },
Eric Anholtba8ce2d2012-01-04 13:18:42 -08003158 { 0x6101, 0xffff, 6, 10, "STATE_BASE_ADDRESS" },
Eric Anholtb129e102012-01-04 13:00:29 -08003159 { 0x6102, 0xffff, 2, 2, "STATE_SIP" },
3160 { 0x6104, 0xffff, 1, 1, "3DSTATE_PIPELINE_SELECT" },
3161 { 0x680b, 0xffff, 1, 1, "3DSTATE_VF_STATISTICS" },
3162 { 0x6904, 0xffff, 1, 1, "3DSTATE_PIPELINE_SELECT" },
3163 { 0x7800, 0xffff, 7, 7, "3DSTATE_PIPELINED_POINTERS" },
Eric Anholtba8ce2d2012-01-04 13:18:42 -08003164 { 0x7801, 0x00ff, 4, 6, "3DSTATE_BINDING_TABLE_POINTERS" },
Eric Anholtb129e102012-01-04 13:00:29 -08003165 { 0x7802, 0x00ff, 4, 4, "3DSTATE_SAMPLER_STATE_POINTERS" },
Eric Anholtb643b072012-01-04 14:36:13 -08003166 { 0x7805, 0x00ff, 7, 7, "3DSTATE_DEPTH_BUFFER", 7 },
Eric Anholtb129e102012-01-04 13:00:29 -08003167 { 0x7805, 0x00ff, 3, 3, "3DSTATE_URB" },
Eric Anholtb643b072012-01-04 14:36:13 -08003168 { 0x7804, 0x00ff, 3, 3, "3DSTATE_CLEAR_PARAMS" },
3169 { 0x7806, 0x00ff, 3, 3, "3DSTATE_STENCIL_BUFFER" },
Daniel Vetterb7bb9e92013-04-03 18:25:12 +02003170 { 0x790f, 0x00ff, 3, 3, "3DSTATE_HIER_DEPTH_BUFFER", 6 },
Eric Anholtb395af02012-01-30 15:13:32 -08003171 { 0x7807, 0x00ff, 3, 3, "3DSTATE_HIER_DEPTH_BUFFER", 7, gen7_3DSTATE_HIER_DEPTH_BUFFER },
Eric Anholtb129e102012-01-04 13:00:29 -08003172 { 0x7808, 0x00ff, 5, 257, "3DSTATE_VERTEX_BUFFERS" },
3173 { 0x7809, 0x00ff, 3, 256, "3DSTATE_VERTEX_ELEMENTS" },
3174 { 0x780a, 0x00ff, 3, 3, "3DSTATE_INDEX_BUFFER" },
3175 { 0x780b, 0xffff, 1, 1, "3DSTATE_VF_STATISTICS" },
3176 { 0x780d, 0x00ff, 4, 4, "3DSTATE_VIEWPORT_STATE_POINTERS" },
Eric Anholt938df6b2012-01-04 12:23:42 -08003177 { 0x780e, 0xffff, 4, 4, NULL, 6, gen6_3DSTATE_CC_STATE_POINTERS },
3178 { 0x780e, 0x00ff, 2, 2, NULL, 7, gen7_3DSTATE_CC_STATE_POINTERS },
Eric Anholtb129e102012-01-04 13:00:29 -08003179 { 0x780f, 0x00ff, 2, 2, "3DSTATE_SCISSOR_POINTERS" },
3180 { 0x7810, 0x00ff, 6, 6, "3DSTATE_VS" },
3181 { 0x7811, 0x00ff, 7, 7, "3DSTATE_GS" },
3182 { 0x7812, 0x00ff, 4, 4, "3DSTATE_CLIP" },
Eric Anholtb643b072012-01-04 14:36:13 -08003183 { 0x7813, 0x00ff, 20, 20, "3DSTATE_SF", 6 },
3184 { 0x7813, 0x00ff, 7, 7, "3DSTATE_SF", 7 },
Eric Anholte6beaf82012-01-30 15:04:10 -08003185 { 0x7814, 0x00ff, 3, 3, "3DSTATE_WM", 7, gen7_3DSTATE_WM },
3186 { 0x7814, 0x00ff, 9, 9, "3DSTATE_WM", 6, gen6_3DSTATE_WM },
Eric Anholt54b12a02012-01-04 13:41:55 -08003187 { 0x7815, 0x00ff, 5, 5, "3DSTATE_CONSTANT_VS_STATE", 6 },
3188 { 0x7815, 0x00ff, 7, 7, "3DSTATE_CONSTANT_VS", 7, gen7_3DSTATE_CONSTANT_VS },
3189 { 0x7816, 0x00ff, 5, 5, "3DSTATE_CONSTANT_GS_STATE", 6 },
3190 { 0x7816, 0x00ff, 7, 7, "3DSTATE_CONSTANT_GS", 7, gen7_3DSTATE_CONSTANT_GS },
3191 { 0x7817, 0x00ff, 5, 5, "3DSTATE_CONSTANT_PS_STATE", 6 },
3192 { 0x7817, 0x00ff, 7, 7, "3DSTATE_CONSTANT_PS", 7, gen7_3DSTATE_CONSTANT_PS },
Eric Anholtb129e102012-01-04 13:00:29 -08003193 { 0x7818, 0xffff, 2, 2, "3DSTATE_SAMPLE_MASK" },
Eric Anholt54b12a02012-01-04 13:41:55 -08003194 { 0x7819, 0x00ff, 7, 7, "3DSTATE_CONSTANT_HS", 7, gen7_3DSTATE_CONSTANT_HS },
3195 { 0x781a, 0x00ff, 7, 7, "3DSTATE_CONSTANT_DS", 7, gen7_3DSTATE_CONSTANT_DS },
Eric Anholtb643b072012-01-04 14:36:13 -08003196 { 0x781b, 0x00ff, 7, 7, "3DSTATE_HS" },
3197 { 0x781c, 0x00ff, 4, 4, "3DSTATE_TE" },
3198 { 0x781d, 0x00ff, 6, 6, "3DSTATE_DS" },
3199 { 0x781e, 0x00ff, 3, 3, "3DSTATE_STREAMOUT" },
3200 { 0x781f, 0x00ff, 14, 14, "3DSTATE_SBE" },
3201 { 0x7820, 0x00ff, 8, 8, "3DSTATE_PS" },
Eric Anholt938df6b2012-01-04 12:23:42 -08003202 { 0x7821, 0x00ff, 2, 2, NULL, 7, gen7_3DSTATE_VIEWPORT_STATE_POINTERS_SF_CLIP },
3203 { 0x7823, 0x00ff, 2, 2, NULL, 7, gen7_3DSTATE_VIEWPORT_STATE_POINTERS_CC },
3204 { 0x7824, 0x00ff, 2, 2, NULL, 7, gen7_3DSTATE_BLEND_STATE_POINTERS },
3205 { 0x7825, 0x00ff, 2, 2, NULL, 7, gen7_3DSTATE_DEPTH_STENCIL_STATE_POINTERS },
Eric Anholtb643b072012-01-04 14:36:13 -08003206 { 0x7826, 0x00ff, 2, 2, "3DSTATE_BINDING_TABLE_POINTERS_VS" },
3207 { 0x7827, 0x00ff, 2, 2, "3DSTATE_BINDING_TABLE_POINTERS_HS" },
3208 { 0x7828, 0x00ff, 2, 2, "3DSTATE_BINDING_TABLE_POINTERS_DS" },
3209 { 0x7829, 0x00ff, 2, 2, "3DSTATE_BINDING_TABLE_POINTERS_GS" },
3210 { 0x782a, 0x00ff, 2, 2, "3DSTATE_BINDING_TABLE_POINTERS_PS" },
3211 { 0x782b, 0x00ff, 2, 2, "3DSTATE_SAMPLER_STATE_POINTERS_VS" },
Ben Widawskyeeedb0d2012-06-24 21:53:50 -07003212 { 0x782c, 0x00ff, 2, 2, "3DSTATE_SAMPLER_STATE_POINTERS_HS" },
3213 { 0x782d, 0x00ff, 2, 2, "3DSTATE_SAMPLER_STATE_POINTERS_DS" },
Eric Anholtb643b072012-01-04 14:36:13 -08003214 { 0x782e, 0x00ff, 2, 2, "3DSTATE_SAMPLER_STATE_POINTERS_GS" },
3215 { 0x782f, 0x00ff, 2, 2, "3DSTATE_SAMPLER_STATE_POINTERS_PS" },
Eric Anholt6a0b25e2012-01-04 12:12:41 -08003216 { 0x7830, 0x00ff, 2, 2, NULL, 7, gen7_3DSTATE_URB_VS },
3217 { 0x7831, 0x00ff, 2, 2, NULL, 7, gen7_3DSTATE_URB_HS },
3218 { 0x7832, 0x00ff, 2, 2, NULL, 7, gen7_3DSTATE_URB_DS },
3219 { 0x7833, 0x00ff, 2, 2, NULL, 7, gen7_3DSTATE_URB_GS },
Eric Anholtb129e102012-01-04 13:00:29 -08003220 { 0x7900, 0xffff, 4, 4, "3DSTATE_DRAWING_RECTANGLE" },
3221 { 0x7901, 0xffff, 5, 5, "3DSTATE_CONSTANT_COLOR" },
3222 { 0x7905, 0xffff, 5, 7, "3DSTATE_DEPTH_BUFFER" },
3223 { 0x7906, 0xffff, 2, 2, "3DSTATE_POLY_STIPPLE_OFFSET" },
3224 { 0x7907, 0xffff, 33, 33, "3DSTATE_POLY_STIPPLE_PATTERN" },
3225 { 0x7908, 0xffff, 3, 3, "3DSTATE_LINE_STIPPLE" },
3226 { 0x7909, 0xffff, 2, 2, "3DSTATE_GLOBAL_DEPTH_OFFSET_CLAMP" },
3227 { 0x7909, 0xffff, 2, 2, "3DSTATE_CLEAR_PARAMS" },
3228 { 0x790a, 0xffff, 3, 3, "3DSTATE_AA_LINE_PARAMETERS" },
3229 { 0x790b, 0xffff, 4, 4, "3DSTATE_GS_SVB_INDEX" },
3230 { 0x790d, 0xffff, 3, 3, "3DSTATE_MULTISAMPLE", 6 },
3231 { 0x790d, 0xffff, 4, 4, "3DSTATE_MULTISAMPLE", 7 },
Chris Forbes20c56072013-01-28 08:01:18 +00003232 { 0x7910, 0x00ff, 2, 2, "3DSTATE_CLEAR_PARAMS" },
Eric Anholtb643b072012-01-04 14:36:13 -08003233 { 0x7912, 0x00ff, 2, 2, "3DSTATE_PUSH_CONSTANT_ALLOC_VS" },
Ben Widawskyae137f42012-06-24 17:12:24 -07003234 { 0x7913, 0x00ff, 2, 2, "3DSTATE_PUSH_CONSTANT_ALLOC_HS" },
3235 { 0x7914, 0x00ff, 2, 2, "3DSTATE_PUSH_CONSTANT_ALLOC_DS" },
3236 { 0x7915, 0x00ff, 2, 2, "3DSTATE_PUSH_CONSTANT_ALLOC_GS" },
Eric Anholtb643b072012-01-04 14:36:13 -08003237 { 0x7916, 0x00ff, 2, 2, "3DSTATE_PUSH_CONSTANT_ALLOC_PS" },
3238 { 0x7917, 0x00ff, 2, 2+128*2, "3DSTATE_SO_DECL_LIST" },
3239 { 0x7918, 0x00ff, 4, 4, "3DSTATE_SO_BUFFER" },
Eric Anholtb129e102012-01-04 13:00:29 -08003240 { 0x7a00, 0x00ff, 4, 6, "PIPE_CONTROL" },
Eric Anholt9d18ad22012-03-02 10:27:55 -08003241 { 0x7b00, 0x00ff, 7, 7, NULL, 7, gen7_3DPRIMITIVE },
Eric Anholt9b87fd92012-03-02 10:18:51 -08003242 { 0x7b00, 0x00ff, 6, 6, NULL, 0, gen4_3DPRIMITIVE },
Eric Anholtb129e102012-01-04 13:00:29 -08003243 }, *opcode_3d = NULL;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003244
Eric Anholt193fa132011-12-20 11:36:07 -08003245 opcode = (data[0] & 0xffff0000) >> 16;
Eric Anholtb129e102012-01-04 13:00:29 -08003246
3247 for (i = 0; i < ARRAY_SIZE(opcodes_3d); i++) {
3248 if (opcode != opcodes_3d[i].opcode)
3249 continue;
3250
3251 /* If it's marked as not our gen, skip. */
3252 if (opcodes_3d[i].gen && opcodes_3d[i].gen != ctx->gen)
3253 continue;
3254
3255 opcode_3d = &opcodes_3d[i];
3256 break;
3257 }
3258
3259 if (opcode_3d) {
3260 if (opcode_3d->max_len == 1)
3261 len = 1;
3262 else
3263 len = (data[0] & opcode_3d->len_mask) + 2;
Eric Anholtba8ce2d2012-01-04 13:18:42 -08003264
3265 if (len < opcode_3d->min_len ||
3266 len > opcode_3d->max_len) {
Eric Anholt259e7b62012-01-27 13:27:56 -08003267 fprintf(out, "Bad length %d in %s, expected %d-%d\n",
Eric Anholtba8ce2d2012-01-04 13:18:42 -08003268 len, opcode_3d->name,
3269 opcode_3d->min_len, opcode_3d->max_len);
3270 }
Eric Anholtb129e102012-01-04 13:00:29 -08003271 } else {
3272 len = (data[0] & 0x0000ffff) + 2;
3273 }
3274
Eric Anholt193fa132011-12-20 11:36:07 -08003275 switch (opcode) {
3276 case 0x6000:
Eric Anholtc1d29462011-12-20 15:29:03 -08003277 return i965_decode_urb_fence(ctx, len);
Eric Anholt193fa132011-12-20 11:36:07 -08003278 case 0x6001:
Eric Anholtc1d29462011-12-20 15:29:03 -08003279 instr_out(ctx, 0, "CS_URB_STATE\n");
3280 instr_out(ctx, 1,
Eric Anholt193fa132011-12-20 11:36:07 -08003281 "entry_size: %d [%d bytes], n_entries: %d\n",
3282 (data[1] >> 4) & 0x1f,
3283 (((data[1] >> 4) & 0x1f) + 1) * 64, data[1] & 0x7);
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003284 return len;
Eric Anholt193fa132011-12-20 11:36:07 -08003285 case 0x6002:
Eric Anholtc1d29462011-12-20 15:29:03 -08003286 instr_out(ctx, 0, "CONSTANT_BUFFER: %s\n",
Eric Anholt193fa132011-12-20 11:36:07 -08003287 (data[0] >> 8) & 1 ? "valid" : "invalid");
Eric Anholtc1d29462011-12-20 15:29:03 -08003288 instr_out(ctx, 1,
Eric Anholt193fa132011-12-20 11:36:07 -08003289 "offset: 0x%08x, length: %d bytes\n", data[1] & ~0x3f,
3290 ((data[1] & 0x3f) + 1) * 64);
3291 return len;
3292 case 0x6101:
3293 i = 0;
Eric Anholtc1d29462011-12-20 15:29:03 -08003294 instr_out(ctx, 0, "STATE_BASE_ADDRESS\n");
Eric Anholt193fa132011-12-20 11:36:07 -08003295 i++;
3296
3297 if (IS_GEN6(devid) || IS_GEN7(devid))
3298 sba_len = 10;
3299 else if (IS_GEN5(devid))
3300 sba_len = 8;
3301 else
3302 sba_len = 6;
3303 if (len != sba_len)
3304 fprintf(out, "Bad count in STATE_BASE_ADDRESS\n");
Eric Anholt193fa132011-12-20 11:36:07 -08003305
Eric Anholtc1d29462011-12-20 15:29:03 -08003306 state_base_out(ctx, i++, "general");
3307 state_base_out(ctx, i++, "surface");
Eric Anholt193fa132011-12-20 11:36:07 -08003308 if (IS_GEN6(devid) || IS_GEN7(devid))
Eric Anholtc1d29462011-12-20 15:29:03 -08003309 state_base_out(ctx, i++, "dynamic");
3310 state_base_out(ctx, i++, "indirect");
Eric Anholt193fa132011-12-20 11:36:07 -08003311 if (IS_GEN5(devid) || IS_GEN6(devid) || IS_GEN7(devid))
Eric Anholtc1d29462011-12-20 15:29:03 -08003312 state_base_out(ctx, i++, "instruction");
Eric Anholt193fa132011-12-20 11:36:07 -08003313
Eric Anholtc1d29462011-12-20 15:29:03 -08003314 state_max_out(ctx, i++, "general");
Eric Anholt193fa132011-12-20 11:36:07 -08003315 if (IS_GEN6(devid) || IS_GEN7(devid))
Eric Anholtc1d29462011-12-20 15:29:03 -08003316 state_max_out(ctx, i++, "dynamic");
3317 state_max_out(ctx, i++, "indirect");
Eric Anholt193fa132011-12-20 11:36:07 -08003318 if (IS_GEN5(devid) || IS_GEN6(devid) || IS_GEN7(devid))
Eric Anholtc1d29462011-12-20 15:29:03 -08003319 state_max_out(ctx, i++, "instruction");
Eric Anholt193fa132011-12-20 11:36:07 -08003320
3321 return len;
3322 case 0x7800:
Eric Anholtc1d29462011-12-20 15:29:03 -08003323 instr_out(ctx, 0, "3DSTATE_PIPELINED_POINTERS\n");
3324 instr_out(ctx, 1, "VS state\n");
3325 instr_out(ctx, 2, "GS state\n");
3326 instr_out(ctx, 3, "Clip state\n");
3327 instr_out(ctx, 4, "SF state\n");
3328 instr_out(ctx, 5, "WM state\n");
3329 instr_out(ctx, 6, "CC state\n");
Eric Anholt193fa132011-12-20 11:36:07 -08003330 return len;
3331 case 0x7801:
Eric Anholt193fa132011-12-20 11:36:07 -08003332 if (len != 6 && len != 4)
3333 fprintf(out,
3334 "Bad count in 3DSTATE_BINDING_TABLE_POINTERS\n");
3335 if (len == 6) {
Eric Anholtc1d29462011-12-20 15:29:03 -08003336 instr_out(ctx, 0,
Eric Anholt193fa132011-12-20 11:36:07 -08003337 "3DSTATE_BINDING_TABLE_POINTERS\n");
Eric Anholtc1d29462011-12-20 15:29:03 -08003338 instr_out(ctx, 1, "VS binding table\n");
3339 instr_out(ctx, 2, "GS binding table\n");
3340 instr_out(ctx, 3, "Clip binding table\n");
3341 instr_out(ctx, 4, "SF binding table\n");
3342 instr_out(ctx, 5, "WM binding table\n");
Eric Anholt193fa132011-12-20 11:36:07 -08003343 } else {
Eric Anholtc1d29462011-12-20 15:29:03 -08003344 instr_out(ctx, 0,
Eric Anholt193fa132011-12-20 11:36:07 -08003345 "3DSTATE_BINDING_TABLE_POINTERS: VS mod %d, "
3346 "GS mod %d, PS mod %d\n",
3347 (data[0] & (1 << 8)) != 0,
3348 (data[0] & (1 << 9)) != 0,
3349 (data[0] & (1 << 12)) != 0);
Eric Anholtc1d29462011-12-20 15:29:03 -08003350 instr_out(ctx, 1, "VS binding table\n");
3351 instr_out(ctx, 2, "GS binding table\n");
3352 instr_out(ctx, 3, "WM binding table\n");
Eric Anholt193fa132011-12-20 11:36:07 -08003353 }
3354
3355 return len;
3356 case 0x7802:
Eric Anholtc1d29462011-12-20 15:29:03 -08003357 instr_out(ctx, 0,
Eric Anholt193fa132011-12-20 11:36:07 -08003358 "3DSTATE_SAMPLER_STATE_POINTERS: VS mod %d, "
3359 "GS mod %d, PS mod %d\n", (data[0] & (1 << 8)) != 0,
3360 (data[0] & (1 << 9)) != 0,
3361 (data[0] & (1 << 12)) != 0);
Eric Anholtc1d29462011-12-20 15:29:03 -08003362 instr_out(ctx, 1, "VS sampler state\n");
3363 instr_out(ctx, 2, "GS sampler state\n");
3364 instr_out(ctx, 3, "WM sampler state\n");
Eric Anholt193fa132011-12-20 11:36:07 -08003365 return len;
3366 case 0x7805:
Eric Anholtb643b072012-01-04 14:36:13 -08003367 /* Actually 3DSTATE_DEPTH_BUFFER on gen7. */
3368 if (ctx->gen == 7)
3369 break;
3370
Eric Anholtc1d29462011-12-20 15:29:03 -08003371 instr_out(ctx, 0, "3DSTATE_URB\n");
3372 instr_out(ctx, 1,
Eric Anholt193fa132011-12-20 11:36:07 -08003373 "VS entries %d, alloc size %d (1024bit row)\n",
3374 data[1] & 0xffff, ((data[1] >> 16) & 0x07f) + 1);
Eric Anholtc1d29462011-12-20 15:29:03 -08003375 instr_out(ctx, 2,
Eric Anholt193fa132011-12-20 11:36:07 -08003376 "GS entries %d, alloc size %d (1024bit row)\n",
3377 (data[2] >> 8) & 0x3ff, (data[2] & 7) + 1);
3378 return len;
3379
3380 case 0x7808:
Eric Anholt193fa132011-12-20 11:36:07 -08003381 if ((len - 1) % 4 != 0)
3382 fprintf(out, "Bad count in 3DSTATE_VERTEX_BUFFERS\n");
Eric Anholtc1d29462011-12-20 15:29:03 -08003383 instr_out(ctx, 0, "3DSTATE_VERTEX_BUFFERS\n");
Eric Anholt193fa132011-12-20 11:36:07 -08003384
3385 for (i = 1; i < len;) {
3386 int idx, access;
3387 if (IS_GEN6(devid)) {
3388 idx = 26;
3389 access = 20;
3390 } else {
3391 idx = 27;
3392 access = 26;
3393 }
Eric Anholtc1d29462011-12-20 15:29:03 -08003394 instr_out(ctx, i,
Eric Anholt193fa132011-12-20 11:36:07 -08003395 "buffer %d: %s, pitch %db\n", data[i] >> idx,
3396 data[i] & (1 << access) ? "random" :
3397 "sequential", data[i] & 0x07ff);
3398 i++;
Eric Anholtc1d29462011-12-20 15:29:03 -08003399 instr_out(ctx, i++, "buffer address\n");
3400 instr_out(ctx, i++, "max index\n");
3401 instr_out(ctx, i++, "mbz\n");
Eric Anholt193fa132011-12-20 11:36:07 -08003402 }
3403 return len;
3404
3405 case 0x7809:
Eric Anholt193fa132011-12-20 11:36:07 -08003406 if ((len + 1) % 2 != 0)
3407 fprintf(out, "Bad count in 3DSTATE_VERTEX_ELEMENTS\n");
Eric Anholtc1d29462011-12-20 15:29:03 -08003408 instr_out(ctx, 0, "3DSTATE_VERTEX_ELEMENTS\n");
Eric Anholt193fa132011-12-20 11:36:07 -08003409
3410 for (i = 1; i < len;) {
Eric Anholtc1d29462011-12-20 15:29:03 -08003411 instr_out(ctx, i,
Eric Anholt193fa132011-12-20 11:36:07 -08003412 "buffer %d: %svalid, type 0x%04x, "
3413 "src offset 0x%04x bytes\n",
Ben Widawskya7805192012-06-27 10:10:53 -07003414 data[i] >> ((IS_GEN6(devid) || IS_GEN7(devid)) ? 26 : 27),
3415 data[i] & (1 << ((IS_GEN6(devid) || IS_GEN7(devid)) ? 25 : 26)) ?
Ben Widawskydf5cc692012-06-27 10:19:49 -07003416 "" : "in", (data[i] >> 16) & 0x1ff,
Eric Anholt193fa132011-12-20 11:36:07 -08003417 data[i] & 0x07ff);
3418 i++;
Eric Anholtc1d29462011-12-20 15:29:03 -08003419 instr_out(ctx, i, "(%s, %s, %s, %s), "
Eric Anholt193fa132011-12-20 11:36:07 -08003420 "dst offset 0x%02x bytes\n",
3421 get_965_element_component(data[i], 0),
3422 get_965_element_component(data[i], 1),
3423 get_965_element_component(data[i], 2),
3424 get_965_element_component(data[i], 3),
3425 (data[i] & 0xff) * 4);
3426 i++;
3427 }
3428 return len;
3429
3430 case 0x780d:
Eric Anholtc1d29462011-12-20 15:29:03 -08003431 instr_out(ctx, 0,
Eric Anholt193fa132011-12-20 11:36:07 -08003432 "3DSTATE_VIEWPORT_STATE_POINTERS\n");
Eric Anholtc1d29462011-12-20 15:29:03 -08003433 instr_out(ctx, 1, "clip\n");
3434 instr_out(ctx, 2, "sf\n");
3435 instr_out(ctx, 3, "cc\n");
Eric Anholt193fa132011-12-20 11:36:07 -08003436 return len;
3437
3438 case 0x780a:
Eric Anholtc1d29462011-12-20 15:29:03 -08003439 instr_out(ctx, 0, "3DSTATE_INDEX_BUFFER\n");
3440 instr_out(ctx, 1, "beginning buffer address\n");
3441 instr_out(ctx, 2, "ending buffer address\n");
Eric Anholt193fa132011-12-20 11:36:07 -08003442 return len;
3443
Eric Anholt193fa132011-12-20 11:36:07 -08003444 case 0x780f:
Eric Anholtc1d29462011-12-20 15:29:03 -08003445 instr_out(ctx, 0, "3DSTATE_SCISSOR_POINTERS\n");
3446 instr_out(ctx, 1, "scissor rect offset\n");
Eric Anholt193fa132011-12-20 11:36:07 -08003447 return len;
3448
3449 case 0x7810:
Eric Anholtc1d29462011-12-20 15:29:03 -08003450 instr_out(ctx, 0, "3DSTATE_VS\n");
3451 instr_out(ctx, 1, "kernel pointer\n");
3452 instr_out(ctx, 2,
Eric Anholt193fa132011-12-20 11:36:07 -08003453 "SPF=%d, VME=%d, Sampler Count %d, "
3454 "Binding table count %d\n", (data[2] >> 31) & 1,
3455 (data[2] >> 30) & 1, (data[2] >> 27) & 7,
3456 (data[2] >> 18) & 0xff);
Eric Anholtc1d29462011-12-20 15:29:03 -08003457 instr_out(ctx, 3, "scratch offset\n");
3458 instr_out(ctx, 4,
Eric Anholt193fa132011-12-20 11:36:07 -08003459 "Dispatch GRF start %d, VUE read length %d, "
3460 "VUE read offset %d\n", (data[4] >> 20) & 0x1f,
3461 (data[4] >> 11) & 0x3f, (data[4] >> 4) & 0x3f);
Eric Anholtc1d29462011-12-20 15:29:03 -08003462 instr_out(ctx, 5,
Eric Anholt193fa132011-12-20 11:36:07 -08003463 "Max Threads %d, Vertex Cache %sable, "
3464 "VS func %sable\n", ((data[5] >> 25) & 0x7f) + 1,
3465 (data[5] & (1 << 1)) != 0 ? "dis" : "en",
3466 (data[5] & 1) != 0 ? "en" : "dis");
3467 return len;
3468
3469 case 0x7811:
Eric Anholtc1d29462011-12-20 15:29:03 -08003470 instr_out(ctx, 0, "3DSTATE_GS\n");
3471 instr_out(ctx, 1, "kernel pointer\n");
3472 instr_out(ctx, 2,
Eric Anholt193fa132011-12-20 11:36:07 -08003473 "SPF=%d, VME=%d, Sampler Count %d, "
3474 "Binding table count %d\n", (data[2] >> 31) & 1,
3475 (data[2] >> 30) & 1, (data[2] >> 27) & 7,
3476 (data[2] >> 18) & 0xff);
Eric Anholtc1d29462011-12-20 15:29:03 -08003477 instr_out(ctx, 3, "scratch offset\n");
3478 instr_out(ctx, 4,
Eric Anholt193fa132011-12-20 11:36:07 -08003479 "Dispatch GRF start %d, VUE read length %d, "
3480 "VUE read offset %d\n", (data[4] & 0xf),
3481 (data[4] >> 11) & 0x3f, (data[4] >> 4) & 0x3f);
Eric Anholtc1d29462011-12-20 15:29:03 -08003482 instr_out(ctx, 5,
Eric Anholt193fa132011-12-20 11:36:07 -08003483 "Max Threads %d, Rendering %sable\n",
3484 ((data[5] >> 25) & 0x7f) + 1,
3485 (data[5] & (1 << 8)) != 0 ? "en" : "dis");
Eric Anholtc1d29462011-12-20 15:29:03 -08003486 instr_out(ctx, 6,
Eric Anholt193fa132011-12-20 11:36:07 -08003487 "Reorder %sable, Discard Adjaceny %sable, "
3488 "GS %sable\n",
3489 (data[6] & (1 << 30)) != 0 ? "en" : "dis",
3490 (data[6] & (1 << 29)) != 0 ? "en" : "dis",
3491 (data[6] & (1 << 15)) != 0 ? "en" : "dis");
3492 return len;
3493
3494 case 0x7812:
Eric Anholtc1d29462011-12-20 15:29:03 -08003495 instr_out(ctx, 0, "3DSTATE_CLIP\n");
3496 instr_out(ctx, 1,
Eric Anholt193fa132011-12-20 11:36:07 -08003497 "UserClip distance cull test mask 0x%x\n",
3498 data[1] & 0xff);
Eric Anholtc1d29462011-12-20 15:29:03 -08003499 instr_out(ctx, 2,
Eric Anholt193fa132011-12-20 11:36:07 -08003500 "Clip %sable, API mode %s, Viewport XY test %sable, "
3501 "Viewport Z test %sable, Guardband test %sable, Clip mode %d, "
3502 "Perspective Divide %sable, Non-Perspective Barycentric %sable, "
3503 "Tri Provoking %d, Line Provoking %d, Trifan Provoking %d\n",
3504 (data[2] & (1 << 31)) != 0 ? "en" : "dis",
3505 (data[2] & (1 << 30)) != 0 ? "D3D" : "OGL",
3506 (data[2] & (1 << 28)) != 0 ? "en" : "dis",
3507 (data[2] & (1 << 27)) != 0 ? "en" : "dis",
3508 (data[2] & (1 << 26)) != 0 ? "en" : "dis",
3509 (data[2] >> 13) & 7,
3510 (data[2] & (1 << 9)) != 0 ? "dis" : "en",
3511 (data[2] & (1 << 8)) != 0 ? "en" : "dis",
3512 (data[2] >> 4) & 3, (data[2] >> 2) & 3,
3513 (data[2] & 3));
Eric Anholtc1d29462011-12-20 15:29:03 -08003514 instr_out(ctx, 3,
Eric Anholt193fa132011-12-20 11:36:07 -08003515 "Min PointWidth %d, Max PointWidth %d, "
3516 "Force Zero RTAIndex %sable, Max VPIndex %d\n",
3517 (data[3] >> 17) & 0x7ff, (data[3] >> 6) & 0x7ff,
3518 (data[3] & (1 << 5)) != 0 ? "en" : "dis",
3519 (data[3] & 0xf));
3520 return len;
3521
3522 case 0x7813:
Eric Anholtb643b072012-01-04 14:36:13 -08003523 if (ctx->gen == 7)
3524 break;
3525
Eric Anholtc1d29462011-12-20 15:29:03 -08003526 instr_out(ctx, 0, "3DSTATE_SF\n");
3527 instr_out(ctx, 1,
Eric Anholt193fa132011-12-20 11:36:07 -08003528 "Attrib Out %d, Attrib Swizzle %sable, VUE read length %d, "
3529 "VUE read offset %d\n", (data[1] >> 22) & 0x3f,
3530 (data[1] & (1 << 21)) != 0 ? "en" : "dis",
3531 (data[1] >> 11) & 0x1f, (data[1] >> 4) & 0x3f);
Eric Anholtc1d29462011-12-20 15:29:03 -08003532 instr_out(ctx, 2,
Eric Anholt193fa132011-12-20 11:36:07 -08003533 "Legacy Global DepthBias %sable, FrontFace fill %d, BF fill %d, "
3534 "VP transform %sable, FrontWinding_%s\n",
3535 (data[2] & (1 << 11)) != 0 ? "en" : "dis",
3536 (data[2] >> 5) & 3, (data[2] >> 3) & 3,
3537 (data[2] & (1 << 1)) != 0 ? "en" : "dis",
3538 (data[2] & 1) != 0 ? "CCW" : "CW");
Eric Anholtc1d29462011-12-20 15:29:03 -08003539 instr_out(ctx, 3,
Eric Anholt193fa132011-12-20 11:36:07 -08003540 "AA %sable, CullMode %d, Scissor %sable, Multisample m ode %d\n",
3541 (data[3] & (1 << 31)) != 0 ? "en" : "dis",
3542 (data[3] >> 29) & 3,
3543 (data[3] & (1 << 11)) != 0 ? "en" : "dis",
3544 (data[3] >> 8) & 3);
Eric Anholtc1d29462011-12-20 15:29:03 -08003545 instr_out(ctx, 4,
Eric Anholt193fa132011-12-20 11:36:07 -08003546 "Last Pixel %sable, SubPixel Precision %d, Use PixelWidth %d\n",
3547 (data[4] & (1 << 31)) != 0 ? "en" : "dis",
3548 (data[4] & (1 << 12)) != 0 ? 4 : 8,
3549 (data[4] & (1 << 11)) != 0);
Eric Anholtc1d29462011-12-20 15:29:03 -08003550 instr_out(ctx, 5,
Eric Anholt0c46f022011-12-20 14:23:15 -08003551 "Global Depth Offset Constant %f\n",
3552 *(float *)(&data[5]));
Eric Anholtc1d29462011-12-20 15:29:03 -08003553 instr_out(ctx, 6, "Global Depth Offset Scale %f\n",
Eric Anholt0c46f022011-12-20 14:23:15 -08003554 *(float *)(&data[6]));
Eric Anholtc1d29462011-12-20 15:29:03 -08003555 instr_out(ctx, 7, "Global Depth Offset Clamp %f\n",
Eric Anholt0c46f022011-12-20 14:23:15 -08003556 *(float *)(&data[7]));
Eric Anholt7b483182011-12-20 14:27:17 -08003557
Eric Anholt193fa132011-12-20 11:36:07 -08003558 for (i = 0, j = 0; i < 8; i++, j += 2)
Eric Anholtc1d29462011-12-20 15:29:03 -08003559 instr_out(ctx, i + 8,
Eric Anholt193fa132011-12-20 11:36:07 -08003560 "Attrib %d (Override %s%s%s%s, Const Source %d, Swizzle Select %d, "
3561 "Source %d); Attrib %d (Override %s%s%s%s, Const Source %d, Swizzle Select %d, Source %d)\n",
3562 j + 1,
3563 (data[8 + i] & (1 << 31)) != 0 ? "W" : "",
3564 (data[8 + i] & (1 << 30)) != 0 ? "Z" : "",
3565 (data[8 + i] & (1 << 29)) != 0 ? "Y" : "",
3566 (data[8 + i] & (1 << 28)) != 0 ? "X" : "",
3567 (data[8 + i] >> 25) & 3,
3568 (data[8 + i] >> 22) & 3,
3569 (data[8 + i] >> 16) & 0x1f, j,
3570 (data[8 + i] & (1 << 15)) != 0 ? "W" : "",
3571 (data[8 + i] & (1 << 14)) != 0 ? "Z" : "",
3572 (data[8 + i] & (1 << 13)) != 0 ? "Y" : "",
3573 (data[8 + i] & (1 << 12)) != 0 ? "X" : "",
3574 (data[8 + i] >> 9) & 3,
3575 (data[8 + i] >> 6) & 3, (data[8 + i] & 0x1f));
Eric Anholtc1d29462011-12-20 15:29:03 -08003576 instr_out(ctx, 16,
Eric Anholt193fa132011-12-20 11:36:07 -08003577 "Point Sprite TexCoord Enable\n");
Eric Anholtc1d29462011-12-20 15:29:03 -08003578 instr_out(ctx, 17, "Const Interp Enable\n");
3579 instr_out(ctx, 18,
Eric Anholt193fa132011-12-20 11:36:07 -08003580 "Attrib 7-0 WrapShortest Enable\n");
Eric Anholtc1d29462011-12-20 15:29:03 -08003581 instr_out(ctx, 19,
Eric Anholt193fa132011-12-20 11:36:07 -08003582 "Attrib 15-8 WrapShortest Enable\n");
3583
3584 return len;
3585
Eric Anholt193fa132011-12-20 11:36:07 -08003586 case 0x7900:
Eric Anholtc1d29462011-12-20 15:29:03 -08003587 instr_out(ctx, 0, "3DSTATE_DRAWING_RECTANGLE\n");
3588 instr_out(ctx, 1, "top left: %d,%d\n",
Eric Anholt193fa132011-12-20 11:36:07 -08003589 data[1] & 0xffff, (data[1] >> 16) & 0xffff);
Eric Anholtc1d29462011-12-20 15:29:03 -08003590 instr_out(ctx, 2, "bottom right: %d,%d\n",
Eric Anholt193fa132011-12-20 11:36:07 -08003591 data[2] & 0xffff, (data[2] >> 16) & 0xffff);
Eric Anholtc1d29462011-12-20 15:29:03 -08003592 instr_out(ctx, 3, "origin: %d,%d\n",
Eric Anholt193fa132011-12-20 11:36:07 -08003593 (int)data[3] & 0xffff, ((int)data[3] >> 16) & 0xffff);
3594
3595 return len;
3596
3597 case 0x7905:
Eric Anholtc1d29462011-12-20 15:29:03 -08003598 instr_out(ctx, 0, "3DSTATE_DEPTH_BUFFER\n");
Eric Anholt193fa132011-12-20 11:36:07 -08003599 if (IS_GEN5(devid) || IS_GEN6(devid))
Eric Anholtc1d29462011-12-20 15:29:03 -08003600 instr_out(ctx, 1,
Eric Engestrom723a6942016-04-03 19:48:09 +01003601 "%s, %s, pitch = %d bytes, %stiled, HiZ %d, Separate Stencil %d\n",
Eric Anholt193fa132011-12-20 11:36:07 -08003602 get_965_surfacetype(data[1] >> 29),
3603 get_965_depthformat((data[1] >> 18) & 0x7),
3604 (data[1] & 0x0001ffff) + 1,
3605 data[1] & (1 << 27) ? "" : "not ",
3606 (data[1] & (1 << 22)) != 0,
3607 (data[1] & (1 << 21)) != 0);
3608 else
Eric Anholtc1d29462011-12-20 15:29:03 -08003609 instr_out(ctx, 1,
Eric Anholt193fa132011-12-20 11:36:07 -08003610 "%s, %s, pitch = %d bytes, %stiled\n",
3611 get_965_surfacetype(data[1] >> 29),
3612 get_965_depthformat((data[1] >> 18) & 0x7),
3613 (data[1] & 0x0001ffff) + 1,
3614 data[1] & (1 << 27) ? "" : "not ");
Eric Anholtc1d29462011-12-20 15:29:03 -08003615 instr_out(ctx, 2, "depth offset\n");
3616 instr_out(ctx, 3, "%dx%d\n",
Eric Anholt193fa132011-12-20 11:36:07 -08003617 ((data[3] & 0x0007ffc0) >> 6) + 1,
3618 ((data[3] & 0xfff80000) >> 19) + 1);
Eric Anholtc1d29462011-12-20 15:29:03 -08003619 instr_out(ctx, 4, "volume depth\n");
Eric Anholt193fa132011-12-20 11:36:07 -08003620 if (len >= 6)
Eric Anholtc1d29462011-12-20 15:29:03 -08003621 instr_out(ctx, 5, "\n");
Eric Anholt193fa132011-12-20 11:36:07 -08003622 if (len >= 7) {
3623 if (IS_GEN6(devid))
Eric Anholtc1d29462011-12-20 15:29:03 -08003624 instr_out(ctx, 6, "\n");
Eric Anholt193fa132011-12-20 11:36:07 -08003625 else
Eric Anholtc1d29462011-12-20 15:29:03 -08003626 instr_out(ctx, 6,
Eric Anholt193fa132011-12-20 11:36:07 -08003627 "render target view extent\n");
3628 }
3629
3630 return len;
3631
3632 case 0x7a00:
Eric Anholt71066ab2011-12-20 13:06:16 -08003633 if (IS_GEN6(devid) || IS_GEN7(devid)) {
Eric Anholt193fa132011-12-20 11:36:07 -08003634 if (len != 4 && len != 5)
3635 fprintf(out, "Bad count in PIPE_CONTROL\n");
Eric Anholt193fa132011-12-20 11:36:07 -08003636
3637 switch ((data[1] >> 14) & 0x3) {
3638 case 0:
3639 desc1 = "no write";
3640 break;
3641 case 1:
3642 desc1 = "qword write";
3643 break;
3644 case 2:
3645 desc1 = "PS_DEPTH_COUNT write";
3646 break;
3647 case 3:
3648 desc1 = "TIMESTAMP write";
3649 break;
3650 }
Eric Anholtc1d29462011-12-20 15:29:03 -08003651 instr_out(ctx, 0, "PIPE_CONTROL\n");
3652 instr_out(ctx, 1,
Eric Anholt193fa132011-12-20 11:36:07 -08003653 "%s, %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n",
3654 desc1,
3655 data[1] & (1 << 20) ? "cs stall, " : "",
3656 data[1] & (1 << 19) ?
3657 "global snapshot count reset, " : "",
3658 data[1] & (1 << 18) ? "tlb invalidate, " : "",
3659 data[1] & (1 << 17) ? "gfdt flush, " : "",
3660 data[1] & (1 << 17) ? "media state clear, " :
3661 "",
3662 data[1] & (1 << 13) ? "depth stall, " : "",
3663 data[1] & (1 << 12) ?
3664 "render target cache flush, " : "",
3665 data[1] & (1 << 11) ?
3666 "instruction cache invalidate, " : "",
3667 data[1] & (1 << 10) ?
3668 "texture cache invalidate, " : "",
3669 data[1] & (1 << 9) ?
3670 "indirect state invalidate, " : "",
3671 data[1] & (1 << 8) ? "notify irq, " : "",
3672 data[1] & (1 << 7) ? "PIPE_CONTROL flush, " :
3673 "",
3674 data[1] & (1 << 6) ? "protect mem app_id, " :
3675 "", data[1] & (1 << 5) ? "DC flush, " : "",
3676 data[1] & (1 << 4) ? "vf fetch invalidate, " :
3677 "",
3678 data[1] & (1 << 3) ?
3679 "constant cache invalidate, " : "",
3680 data[1] & (1 << 2) ?
3681 "state cache invalidate, " : "",
3682 data[1] & (1 << 1) ? "stall at scoreboard, " :
3683 "",
3684 data[1] & (1 << 0) ? "depth cache flush, " :
3685 "");
3686 if (len == 5) {
Eric Anholtc1d29462011-12-20 15:29:03 -08003687 instr_out(ctx, 2,
Eric Anholt193fa132011-12-20 11:36:07 -08003688 "destination address\n");
Eric Anholtc1d29462011-12-20 15:29:03 -08003689 instr_out(ctx, 3,
Eric Anholt193fa132011-12-20 11:36:07 -08003690 "immediate dword low\n");
Eric Anholtc1d29462011-12-20 15:29:03 -08003691 instr_out(ctx, 4,
Eric Anholt193fa132011-12-20 11:36:07 -08003692 "immediate dword high\n");
3693 } else {
3694 for (i = 2; i < len; i++) {
Eric Anholtc1d29462011-12-20 15:29:03 -08003695 instr_out(ctx, i, "\n");
Eric Anholt193fa132011-12-20 11:36:07 -08003696 }
3697 }
3698 return len;
3699 } else {
Eric Anholt193fa132011-12-20 11:36:07 -08003700 if (len != 4)
3701 fprintf(out, "Bad count in PIPE_CONTROL\n");
Eric Anholt193fa132011-12-20 11:36:07 -08003702
3703 switch ((data[0] >> 14) & 0x3) {
3704 case 0:
3705 desc1 = "no write";
3706 break;
3707 case 1:
3708 desc1 = "qword write";
3709 break;
3710 case 2:
3711 desc1 = "PS_DEPTH_COUNT write";
3712 break;
3713 case 3:
3714 desc1 = "TIMESTAMP write";
3715 break;
3716 }
Eric Anholtc1d29462011-12-20 15:29:03 -08003717 instr_out(ctx, 0,
Eric Anholt193fa132011-12-20 11:36:07 -08003718 "PIPE_CONTROL: %s, %sdepth stall, %sRC write flush, "
3719 "%sinst flush\n",
3720 desc1,
3721 data[0] & (1 << 13) ? "" : "no ",
3722 data[0] & (1 << 12) ? "" : "no ",
3723 data[0] & (1 << 11) ? "" : "no ");
Eric Anholtc1d29462011-12-20 15:29:03 -08003724 instr_out(ctx, 1, "destination address\n");
3725 instr_out(ctx, 2, "immediate dword low\n");
3726 instr_out(ctx, 3, "immediate dword high\n");
Eric Anholt193fa132011-12-20 11:36:07 -08003727 return len;
3728 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003729 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003730
Eric Anholtb129e102012-01-04 13:00:29 -08003731 if (opcode_3d) {
Eric Anholt3dcb2d42012-01-04 12:06:44 -08003732 if (opcode_3d->func) {
3733 return opcode_3d->func(ctx);
3734 } else {
Eric Anholtc1d29462011-12-20 15:29:03 -08003735 instr_out(ctx, 0, "%s\n", opcode_3d->name);
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003736
Eric Anholt193fa132011-12-20 11:36:07 -08003737 for (i = 1; i < len; i++) {
Eric Anholtc1d29462011-12-20 15:29:03 -08003738 instr_out(ctx, i, "dword %d\n", i);
Eric Anholt193fa132011-12-20 11:36:07 -08003739 }
3740 return len;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003741 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003742 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003743
Eric Anholtc1d29462011-12-20 15:29:03 -08003744 instr_out(ctx, 0, "3D UNKNOWN: 3d_965 opcode = 0x%x\n",
Eric Anholt193fa132011-12-20 11:36:07 -08003745 opcode);
Eric Anholt193fa132011-12-20 11:36:07 -08003746 return 1;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003747}
3748
3749static int
Eric Anholtde49fd42011-12-20 15:15:21 -08003750decode_3d_i830(struct drm_intel_decode *ctx)
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003751{
Eric Anholt193fa132011-12-20 11:36:07 -08003752 unsigned int idx;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003753 uint32_t opcode;
Eric Anholtde49fd42011-12-20 15:15:21 -08003754 uint32_t *data = ctx->data;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003755
Eric Anholt193fa132011-12-20 11:36:07 -08003756 struct {
3757 uint32_t opcode;
Eric Anholt07768ba2011-12-20 13:46:23 -08003758 unsigned int min_len;
3759 unsigned int max_len;
Eric Anholt1db55a82011-12-20 12:00:28 -08003760 const char *name;
Eric Anholt193fa132011-12-20 11:36:07 -08003761 } opcodes_3d[] = {
Eric Anholtbbdda922011-12-20 11:44:36 -08003762 { 0x02, 1, 1, "3DSTATE_MODES_3" },
3763 { 0x03, 1, 1, "3DSTATE_ENABLES_1" },
3764 { 0x04, 1, 1, "3DSTATE_ENABLES_2" },
3765 { 0x05, 1, 1, "3DSTATE_VFT0" },
3766 { 0x06, 1, 1, "3DSTATE_AA" },
3767 { 0x07, 1, 1, "3DSTATE_RASTERIZATION_RULES" },
3768 { 0x08, 1, 1, "3DSTATE_MODES_1" },
3769 { 0x09, 1, 1, "3DSTATE_STENCIL_TEST" },
3770 { 0x0a, 1, 1, "3DSTATE_VFT1" },
3771 { 0x0b, 1, 1, "3DSTATE_INDPT_ALPHA_BLEND" },
3772 { 0x0c, 1, 1, "3DSTATE_MODES_5" },
3773 { 0x0d, 1, 1, "3DSTATE_MAP_BLEND_OP" },
3774 { 0x0e, 1, 1, "3DSTATE_MAP_BLEND_ARG" },
3775 { 0x0f, 1, 1, "3DSTATE_MODES_2" },
3776 { 0x15, 1, 1, "3DSTATE_FOG_COLOR" },
3777 { 0x16, 1, 1, "3DSTATE_MODES_4"},
3778 }, *opcode_3d;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003779
Eric Anholt193fa132011-12-20 11:36:07 -08003780 opcode = (data[0] & 0x1f000000) >> 24;
3781
3782 switch (opcode) {
3783 case 0x1f:
Eric Anholtde49fd42011-12-20 15:15:21 -08003784 return decode_3d_primitive(ctx);
Eric Anholt193fa132011-12-20 11:36:07 -08003785 case 0x1d:
Eric Anholtde49fd42011-12-20 15:15:21 -08003786 return decode_3d_1d(ctx);
Eric Anholt193fa132011-12-20 11:36:07 -08003787 case 0x1c:
Eric Anholtde49fd42011-12-20 15:15:21 -08003788 return decode_3d_1c(ctx);
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003789 }
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003790
Eric Anholt193fa132011-12-20 11:36:07 -08003791 for (idx = 0; idx < ARRAY_SIZE(opcodes_3d); idx++) {
3792 opcode_3d = &opcodes_3d[idx];
3793 if ((data[0] & 0x1f000000) >> 24 == opcode_3d->opcode) {
3794 unsigned int len = 1, i;
3795
Eric Anholtc1d29462011-12-20 15:29:03 -08003796 instr_out(ctx, 0, "%s\n", opcode_3d->name);
Eric Anholt193fa132011-12-20 11:36:07 -08003797 if (opcode_3d->max_len > 1) {
3798 len = (data[0] & 0xff) + 2;
3799 if (len < opcode_3d->min_len ||
3800 len > opcode_3d->max_len) {
3801 fprintf(out, "Bad count in %s\n",
3802 opcode_3d->name);
3803 }
3804 }
3805
3806 for (i = 1; i < len; i++) {
Eric Anholtc1d29462011-12-20 15:29:03 -08003807 instr_out(ctx, i, "dword %d\n", i);
Eric Anholt193fa132011-12-20 11:36:07 -08003808 }
3809 return len;
3810 }
3811 }
3812
Eric Anholtc1d29462011-12-20 15:29:03 -08003813 instr_out(ctx, 0, "3D UNKNOWN: 3d_i830 opcode = 0x%x\n",
Eric Anholt193fa132011-12-20 11:36:07 -08003814 opcode);
Eric Anholt193fa132011-12-20 11:36:07 -08003815 return 1;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003816}
3817
Emil Velikov0f8da822015-03-31 22:32:11 +01003818struct drm_intel_decode *
Eric Anholt71066ab2011-12-20 13:06:16 -08003819drm_intel_decode_context_alloc(uint32_t devid)
3820{
3821 struct drm_intel_decode *ctx;
3822
3823 ctx = calloc(1, sizeof(struct drm_intel_decode));
3824 if (!ctx)
3825 return NULL;
3826
3827 ctx->devid = devid;
Eric Anholtea33a232012-01-03 13:05:57 -08003828 ctx->out = stdout;
Eric Anholt71066ab2011-12-20 13:06:16 -08003829
Ben Widawsky5c490bd2016-08-24 14:51:43 -07003830 if (IS_GEN10(devid))
3831 ctx->gen = 10;
3832 else if (IS_GEN9(devid))
Damien Lespiau00847fa2013-02-13 16:09:38 +00003833 ctx->gen = 9;
3834 else if (IS_GEN8(devid))
Damien Lespiau946f8472013-02-13 16:09:34 +00003835 ctx->gen = 8;
3836 else if (IS_GEN7(devid))
Eric Anholt9695eee2012-01-04 12:00:59 -08003837 ctx->gen = 7;
3838 else if (IS_GEN6(devid))
3839 ctx->gen = 6;
3840 else if (IS_GEN5(devid))
3841 ctx->gen = 5;
3842 else if (IS_GEN4(devid))
3843 ctx->gen = 4;
3844 else if (IS_9XX(devid))
3845 ctx->gen = 3;
3846 else {
3847 assert(IS_GEN2(devid));
3848 ctx->gen = 2;
3849 }
3850
Eric Anholt71066ab2011-12-20 13:06:16 -08003851 return ctx;
3852}
3853
Emil Velikov0f8da822015-03-31 22:32:11 +01003854void
Eric Anholt71066ab2011-12-20 13:06:16 -08003855drm_intel_decode_context_free(struct drm_intel_decode *ctx)
3856{
3857 free(ctx);
3858}
3859
Emil Velikov0f8da822015-03-31 22:32:11 +01003860void
Eric Anholt71066ab2011-12-20 13:06:16 -08003861drm_intel_decode_set_dump_past_end(struct drm_intel_decode *ctx,
3862 int dump_past_end)
3863{
3864 ctx->dump_past_end = !!dump_past_end;
3865}
3866
Emil Velikov0f8da822015-03-31 22:32:11 +01003867void
Eric Anholt71066ab2011-12-20 13:06:16 -08003868drm_intel_decode_set_batch_pointer(struct drm_intel_decode *ctx,
3869 void *data, uint32_t hw_offset, int count)
3870{
Eric Anholt8fb66a72011-12-20 14:59:38 -08003871 ctx->base_data = data;
3872 ctx->base_hw_offset = hw_offset;
3873 ctx->base_count = count;
Eric Anholt71066ab2011-12-20 13:06:16 -08003874}
3875
Emil Velikov0f8da822015-03-31 22:32:11 +01003876void
Eric Anholt71066ab2011-12-20 13:06:16 -08003877drm_intel_decode_set_head_tail(struct drm_intel_decode *ctx,
3878 uint32_t head, uint32_t tail)
3879{
3880 ctx->head = head;
3881 ctx->tail = tail;
3882}
3883
Emil Velikov0f8da822015-03-31 22:32:11 +01003884void
Eric Anholtea33a232012-01-03 13:05:57 -08003885drm_intel_decode_set_output_file(struct drm_intel_decode *ctx,
Emil Velikovcf7e32b2015-08-15 15:42:34 +01003886 FILE *output)
Eric Anholtea33a232012-01-03 13:05:57 -08003887{
Emil Velikovcf7e32b2015-08-15 15:42:34 +01003888 ctx->out = output;
Eric Anholtea33a232012-01-03 13:05:57 -08003889}
3890
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003891/**
3892 * Decodes an i830-i915 batch buffer, writing the output to stdout.
3893 *
3894 * \param data batch buffer contents
3895 * \param count number of DWORDs to decode in the batch buffer
3896 * \param hw_offset hardware address for the buffer
3897 */
Emil Velikov0f8da822015-03-31 22:32:11 +01003898void
Eric Anholt71066ab2011-12-20 13:06:16 -08003899drm_intel_decode(struct drm_intel_decode *ctx)
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003900{
Eric Anholt193fa132011-12-20 11:36:07 -08003901 int ret;
Eric Anholt07768ba2011-12-20 13:46:23 -08003902 unsigned int index = 0;
Eric Anholt71066ab2011-12-20 13:06:16 -08003903 uint32_t devid;
Thomas Hindoe Paaboel Andersen5ee9cb42017-02-02 23:57:29 +01003904 int size;
Eric Anholt028715e2012-01-04 12:31:40 -08003905 void *temp;
Eric Anholt71066ab2011-12-20 13:06:16 -08003906
3907 if (!ctx)
3908 return;
3909
Eric Anholt028715e2012-01-04 12:31:40 -08003910 /* Put a scratch page full of obviously undefined data after
3911 * the batchbuffer. This lets us avoid a bunch of length
3912 * checking in statically sized packets.
3913 */
Thomas Hindoe Paaboel Andersen5ee9cb42017-02-02 23:57:29 +01003914 size = ctx->base_count * 4;
Eric Anholt028715e2012-01-04 12:31:40 -08003915 temp = malloc(size + 4096);
3916 memcpy(temp, ctx->base_data, size);
3917 memset((char *)temp + size, 0xd0, 4096);
3918 ctx->data = temp;
3919
Eric Anholt8fb66a72011-12-20 14:59:38 -08003920 ctx->hw_offset = ctx->base_hw_offset;
3921 ctx->count = ctx->base_count;
3922
Eric Anholt71066ab2011-12-20 13:06:16 -08003923 devid = ctx->devid;
3924 head_offset = ctx->head;
3925 tail_offset = ctx->tail;
Eric Anholtea33a232012-01-03 13:05:57 -08003926 out = ctx->out;
Eric Anholt71066ab2011-12-20 13:06:16 -08003927
3928 saved_s2_set = 0;
3929 saved_s4_set = 1;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003930
Eric Anholt8fb66a72011-12-20 14:59:38 -08003931 while (ctx->count > 0) {
3932 index = 0;
3933
3934 switch ((ctx->data[index] & 0xe0000000) >> 29) {
Eric Anholt193fa132011-12-20 11:36:07 -08003935 case 0x0:
Eric Anholtde49fd42011-12-20 15:15:21 -08003936 ret = decode_mi(ctx);
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003937
Eric Anholtbbdda922011-12-20 11:44:36 -08003938 /* If MI_BATCHBUFFER_END happened, then dump
3939 * the rest of the output in case we some day
3940 * want it in debugging, but don't decode it
3941 * since it'll just confuse in the common
3942 * case.
Eric Anholt193fa132011-12-20 11:36:07 -08003943 */
3944 if (ret == -1) {
Eric Anholt71066ab2011-12-20 13:06:16 -08003945 if (ctx->dump_past_end) {
Eric Anholt193fa132011-12-20 11:36:07 -08003946 index++;
3947 } else {
Eric Anholt8fb66a72011-12-20 14:59:38 -08003948 for (index = index + 1; index < ctx->count;
Eric Anholt193fa132011-12-20 11:36:07 -08003949 index++) {
Eric Anholtc1d29462011-12-20 15:29:03 -08003950 instr_out(ctx, index, "\n");
Eric Anholt193fa132011-12-20 11:36:07 -08003951 }
3952 }
3953 } else
3954 index += ret;
3955 break;
3956 case 0x2:
Eric Anholtde49fd42011-12-20 15:15:21 -08003957 index += decode_2d(ctx);
Eric Anholt193fa132011-12-20 11:36:07 -08003958 break;
3959 case 0x3:
Eric Anholt71066ab2011-12-20 13:06:16 -08003960 if (IS_9XX(devid) && !IS_GEN3(devid)) {
Eric Anholt193fa132011-12-20 11:36:07 -08003961 index +=
Eric Anholtde49fd42011-12-20 15:15:21 -08003962 decode_3d_965(ctx);
Eric Anholt193fa132011-12-20 11:36:07 -08003963 } else if (IS_GEN3(devid)) {
Eric Anholtde49fd42011-12-20 15:15:21 -08003964 index += decode_3d(ctx);
Eric Anholt193fa132011-12-20 11:36:07 -08003965 } else {
3966 index +=
Eric Anholtde49fd42011-12-20 15:15:21 -08003967 decode_3d_i830(ctx);
Eric Anholt193fa132011-12-20 11:36:07 -08003968 }
3969 break;
3970 default:
Eric Anholtc1d29462011-12-20 15:29:03 -08003971 instr_out(ctx, index, "UNKNOWN\n");
Eric Anholt193fa132011-12-20 11:36:07 -08003972 index++;
3973 break;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003974 }
Eric Anholt193fa132011-12-20 11:36:07 -08003975 fflush(out);
Eric Anholt8fb66a72011-12-20 14:59:38 -08003976
3977 if (ctx->count < index)
3978 break;
3979
3980 ctx->count -= index;
3981 ctx->data += index;
3982 ctx->hw_offset += 4 * index;
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003983 }
Eric Anholt028715e2012-01-04 12:31:40 -08003984
3985 free(temp);
Eric Anholt8c4a2c82011-12-20 11:25:20 -08003986}