blob: c710212703073d5e4b61475b0ba9da923e8d7a10 [file] [log] [blame]
Chris Wilson9eb4de12010-02-12 13:28:40 +00001/*
2 * Copyright © 2007 Intel Corporation
3 * Copyright © 2009 Intel Corporation
4 * Copyright © 2010 Intel Corporation
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
23 * IN THE SOFTWARE.
24 *
25 * Authors:
26 * Eric Anholt <eric@anholt.net>
27 * Carl Worth <cworth@cworth.org>
28 * Chris Wilson <chris@chris-wilson.co.uk>
29 *
30 */
31
32/** @file intel_decode.c
33 * This file contains code to print out batchbuffer contents in a
34 * human-readable format.
35 *
36 * The current version only supports i915 packets, and only pretty-prints a
37 * subset of them. The intention is for it to make just a best attempt to
38 * decode, but never crash in the process.
39 */
40
41#define _GNU_SOURCE
Damien Lespiau1d2ef952013-12-16 11:28:39 +000042#include <stdbool.h>
Chris Wilson9eb4de12010-02-12 13:28:40 +000043#include <stdio.h>
44#include <stdlib.h>
45#include <stdarg.h>
46#include <string.h>
Chris Wilsona3a78632010-12-01 21:51:59 +000047#include <unistd.h>
Chris Wilson9eb4de12010-02-12 13:28:40 +000048#include <inttypes.h>
49#include <errno.h>
50#include <sys/stat.h>
51#include <err.h>
Imre Deak5efd3d32012-10-10 16:04:39 +030052#include <assert.h>
Daniel Vetter7ee9f162012-01-09 23:38:17 +010053#include <intel_bufmgr.h>
Chris Wilson9eb4de12010-02-12 13:28:40 +000054
Chris Wilson9eb4de12010-02-12 13:28:40 +000055#include "intel_chipset.h"
Daniel Vetterc03c6ce2014-03-22 21:34:29 +010056#include "intel_io.h"
Chris Wilson9eb4de12010-02-12 13:28:40 +000057#include "instdone.h"
Daniel Vetter6cfcd712014-03-22 20:07:35 +010058#include "intel_reg.h"
Zhao Yakuif04bf002014-01-22 09:37:20 +080059#include "drmtest.h"
Chris Wilson9eb4de12010-02-12 13:28:40 +000060
Ben Widawskyafeb4312013-04-22 11:36:03 -070061static uint32_t
62print_head(unsigned int reg)
63{
64 printf(" head = 0x%08x, wraps = %d\n", reg & (0x7ffff<<2), reg >> 21);
65 return reg & (0x7ffff<<2);
66}
67
Mika Kuoppalaedee9522013-07-12 17:02:04 +030068static uint32_t
69print_ctl(unsigned int reg)
70{
71 uint32_t ring_length = (((reg & (0x1ff << 12)) >> 12) + 1) * 4096;
72
73#define BIT_STR(reg, x, on, off) ((1 << (x)) & reg) ? on : off
74
75 printf(" len=%d%s%s%s\n", ring_length,
76 BIT_STR(reg, 0, ", enabled", ", disabled"),
77 BIT_STR(reg, 10, ", semaphore wait ", ""),
78 BIT_STR(reg, 11, ", rb wait ", "")
79 );
80#undef BIT_STR
81 return ring_length;
82}
83
84static void
85print_acthd(unsigned int reg, unsigned int ring_length)
86{
87 if ((reg & (0x7ffff << 2)) < ring_length)
88 printf(" at ring: 0x%08x\n", reg & (0x7ffff << 2));
89 else
90 printf(" at batch: 0x%08x\n", reg);
91}
92
Chris Wilson9eb4de12010-02-12 13:28:40 +000093static void
Ben Widawsky155aa1e2013-04-22 11:07:35 -070094print_instdone(uint32_t devid, unsigned int instdone, unsigned int instdone1)
Chris Wilson9eb4de12010-02-12 13:28:40 +000095{
Ben Widawsky155aa1e2013-04-22 11:07:35 -070096 int i;
97 static int once;
Chris Wilson95374222010-04-08 11:56:57 +010098
Ben Widawsky155aa1e2013-04-22 11:07:35 -070099 if (!once) {
100 init_instdone_definitions(devid);
101 once = 1;
Chris Wilson9eb4de12010-02-12 13:28:40 +0000102 }
103
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700104 for (i = 0; i < num_instdone_bits; i++) {
105 int busy = 0;
106
Damien Lespiaud8b1dee2013-06-04 05:41:36 +0100107 if (instdone_bits[i].reg == INSTDONE_1) {
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700108 if (!(instdone1 & instdone_bits[i].bit))
109 busy = 1;
110 } else {
111 if (!(instdone & instdone_bits[i].bit))
112 busy = 1;
113 }
114
115 if (busy)
116 printf(" busy: %s\n", instdone_bits[i].name);
117 }
Chris Wilson9eb4de12010-02-12 13:28:40 +0000118}
119
120static void
Chris Wilsonbfc2b532010-03-04 21:56:04 +0000121print_i830_pgtbl_err(unsigned int reg)
122{
123 const char *str;
124
125 switch((reg >> 3) & 0xf) {
126 case 0x1: str = "Overlay TLB"; break;
127 case 0x2: str = "Display A TLB"; break;
128 case 0x3: str = "Host TLB"; break;
129 case 0x4: str = "Render TLB"; break;
130 case 0x5: str = "Display C TLB"; break;
131 case 0x6: str = "Mapping TLB"; break;
132 case 0x7: str = "Command Stream TLB"; break;
133 case 0x8: str = "Vertex Buffer TLB"; break;
134 case 0x9: str = "Display B TLB"; break;
135 case 0xa: str = "Reserved System Memory"; break;
136 case 0xb: str = "Compressor TLB"; break;
137 case 0xc: str = "Binner TLB"; break;
138 default: str = "unknown"; break;
139 }
140
141 if (str)
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700142 printf(" source = %s\n", str);
Chris Wilsonbfc2b532010-03-04 21:56:04 +0000143
144 switch(reg & 0x7) {
145 case 0x0: str = "Invalid GTT"; break;
146 case 0x1: str = "Invalid GTT PTE"; break;
147 case 0x2: str = "Invalid Memory"; break;
148 case 0x3: str = "Invalid TLB miss"; break;
149 case 0x4: str = "Invalid PTE data"; break;
150 case 0x5: str = "Invalid LocalMemory not present"; break;
151 case 0x6: str = "Invalid Tiling"; break;
152 case 0x7: str = "Host to CAM"; break;
153 }
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700154 printf(" error = %s\n", str);
Chris Wilsonbfc2b532010-03-04 21:56:04 +0000155}
156
157static void
Chris Wilson2d1ad952010-07-15 19:18:39 +0100158print_i915_pgtbl_err(unsigned int reg)
159{
160 if (reg & (1 << 29))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700161 printf(" Cursor A: Invalid GTT PTE\n");
Chris Wilson2d1ad952010-07-15 19:18:39 +0100162 if (reg & (1 << 28))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700163 printf(" Cursor B: Invalid GTT PTE\n");
Chris Wilson2d1ad952010-07-15 19:18:39 +0100164 if (reg & (1 << 27))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700165 printf(" MT: Invalid tiling\n");
Chris Wilson2d1ad952010-07-15 19:18:39 +0100166 if (reg & (1 << 26))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700167 printf(" MT: Invalid GTT PTE\n");
Chris Wilson2d1ad952010-07-15 19:18:39 +0100168 if (reg & (1 << 25))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700169 printf(" LC: Invalid tiling\n");
Chris Wilson2d1ad952010-07-15 19:18:39 +0100170 if (reg & (1 << 24))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700171 printf(" LC: Invalid GTT PTE\n");
Chris Wilson2d1ad952010-07-15 19:18:39 +0100172 if (reg & (1 << 23))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700173 printf(" BIN VertexData: Invalid GTT PTE\n");
Chris Wilson2d1ad952010-07-15 19:18:39 +0100174 if (reg & (1 << 22))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700175 printf(" BIN Instruction: Invalid GTT PTE\n");
Chris Wilson2d1ad952010-07-15 19:18:39 +0100176 if (reg & (1 << 21))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700177 printf(" CS VertexData: Invalid GTT PTE\n");
Chris Wilson2d1ad952010-07-15 19:18:39 +0100178 if (reg & (1 << 20))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700179 printf(" CS Instruction: Invalid GTT PTE\n");
Chris Wilson2d1ad952010-07-15 19:18:39 +0100180 if (reg & (1 << 19))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700181 printf(" CS: Invalid GTT\n");
Chris Wilson2d1ad952010-07-15 19:18:39 +0100182 if (reg & (1 << 18))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700183 printf(" Overlay: Invalid tiling\n");
Chris Wilson2d1ad952010-07-15 19:18:39 +0100184 if (reg & (1 << 16))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700185 printf(" Overlay: Invalid GTT PTE\n");
Chris Wilson2d1ad952010-07-15 19:18:39 +0100186 if (reg & (1 << 14))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700187 printf(" Display C: Invalid tiling\n");
Chris Wilson2d1ad952010-07-15 19:18:39 +0100188 if (reg & (1 << 12))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700189 printf(" Display C: Invalid GTT PTE\n");
Chris Wilson2d1ad952010-07-15 19:18:39 +0100190 if (reg & (1 << 10))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700191 printf(" Display B: Invalid tiling\n");
Chris Wilson2d1ad952010-07-15 19:18:39 +0100192 if (reg & (1 << 8))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700193 printf(" Display B: Invalid GTT PTE\n");
Chris Wilson2d1ad952010-07-15 19:18:39 +0100194 if (reg & (1 << 6))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700195 printf(" Display A: Invalid tiling\n");
Chris Wilson2d1ad952010-07-15 19:18:39 +0100196 if (reg & (1 << 4))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700197 printf(" Display A: Invalid GTT PTE\n");
Chris Wilson2d1ad952010-07-15 19:18:39 +0100198 if (reg & (1 << 1))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700199 printf(" Host Invalid PTE data\n");
Chris Wilson2d1ad952010-07-15 19:18:39 +0100200 if (reg & (1 << 0))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700201 printf(" Host Invalid GTT PTE\n");
Chris Wilson2d1ad952010-07-15 19:18:39 +0100202}
203
204static void
Chris Wilson89343952010-10-22 11:33:08 +0100205print_i965_pgtbl_err(unsigned int reg)
206{
207 if (reg & (1 << 26))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700208 printf(" Invalid Sampler Cache GTT entry\n");
Chris Wilson89343952010-10-22 11:33:08 +0100209 if (reg & (1 << 24))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700210 printf(" Invalid Render Cache GTT entry\n");
Chris Wilson89343952010-10-22 11:33:08 +0100211 if (reg & (1 << 23))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700212 printf(" Invalid Instruction/State Cache GTT entry\n");
Chris Wilson89343952010-10-22 11:33:08 +0100213 if (reg & (1 << 22))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700214 printf(" There is no ROC, this cannot occur!\n");
Chris Wilson89343952010-10-22 11:33:08 +0100215 if (reg & (1 << 21))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700216 printf(" Invalid GTT entry during Vertex Fetch\n");
Chris Wilson89343952010-10-22 11:33:08 +0100217 if (reg & (1 << 20))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700218 printf(" Invalid GTT entry during Command Fetch\n");
Chris Wilson89343952010-10-22 11:33:08 +0100219 if (reg & (1 << 19))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700220 printf(" Invalid GTT entry during CS\n");
Chris Wilson89343952010-10-22 11:33:08 +0100221 if (reg & (1 << 18))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700222 printf(" Invalid GTT entry during Cursor Fetch\n");
Chris Wilson89343952010-10-22 11:33:08 +0100223 if (reg & (1 << 17))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700224 printf(" Invalid GTT entry during Overlay Fetch\n");
Chris Wilson89343952010-10-22 11:33:08 +0100225 if (reg & (1 << 8))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700226 printf(" Invalid GTT entry during Display B Fetch\n");
Chris Wilson89343952010-10-22 11:33:08 +0100227 if (reg & (1 << 4))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700228 printf(" Invalid GTT entry during Display A Fetch\n");
Chris Wilson89343952010-10-22 11:33:08 +0100229 if (reg & (1 << 1))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700230 printf(" Valid PTE references illegal memory\n");
Chris Wilson89343952010-10-22 11:33:08 +0100231 if (reg & (1 << 0))
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700232 printf(" Invalid GTT entry during fetch for host\n");
Chris Wilson89343952010-10-22 11:33:08 +0100233}
234
235static void
Chris Wilsonbfc2b532010-03-04 21:56:04 +0000236print_pgtbl_err(unsigned int reg, unsigned int devid)
237{
238 if (IS_965(devid)) {
Chris Wilson89343952010-10-22 11:33:08 +0100239 return print_i965_pgtbl_err(reg);
Chris Wilson41570d92011-02-14 15:56:14 +0000240 } else if (IS_GEN3(devid)) {
Chris Wilson2d1ad952010-07-15 19:18:39 +0100241 return print_i915_pgtbl_err(reg);
Chris Wilsonbfc2b532010-03-04 21:56:04 +0000242 } else {
243 return print_i830_pgtbl_err(reg);
244 }
245}
246
Chris Wilsonb6470462014-12-05 11:04:42 +0000247static void print_ivb_error(unsigned int reg, unsigned int devid)
248{
249 if (reg & (1 << 0))
250 printf(" TLB page fault error (GTT entry not valid)\n");
251 if (reg & (1 << 1))
252 printf(" Invalid physical address in RSTRM interface (PAVP)\n");
253 if (reg & (1 << 2))
254 printf(" Invalid page directory entry error\n");
255 if (reg & (1 << 3))
256 printf(" Invalid physical address in ROSTRM interface (PAVP)\n");
257 if (reg & (1 << 4))
258 printf(" TLB page VTD translation generated an error\n");
259 if (reg & (1 << 5))
260 printf(" Invalid physical address in WRITE interface (PAVP)\n");
261 if (reg & (1 << 6))
262 printf(" Page directory VTD translation generated error\n");
263 if (reg & (1 << 8))
264 printf(" Cacheline containing a PD was marked as invalid\n");
265 if (IS_HASWELL(devid) && (reg >> 10) & 0x1f)
266 printf(" %d pending page faults\n", (reg >> 10) & 0x1f);
267}
268
269static void print_snb_error(unsigned int reg)
270{
271 if (reg & (1 << 0))
272 printf(" TLB page fault error (GTT entry not valid)\n");
273 if (reg & (1 << 1))
274 printf(" Context page GTT translation generated a fault (GTT entry not valid)\n");
275 if (reg & (1 << 2))
276 printf(" Invalid page directory entry error\n");
277 if (reg & (1 << 3))
278 printf(" HWS page GTT translation generated a page fault (GTT entry not valid)\n");
279 if (reg & (1 << 4))
280 printf(" TLB page VTD translation generated an error\n");
281 if (reg & (1 << 5))
282 printf(" Context page VTD translation generated an error\n");
283 if (reg & (1 << 6))
284 printf(" Page directory VTD translation generated error\n");
285 if (reg & (1 << 7))
286 printf(" HWS page VTD translation generated an error\n");
287 if (reg & (1 << 8))
288 printf(" Cacheline containing a PD was marked as invalid\n");
289}
290
Mika Kuoppala0a2ef9c2015-03-23 11:35:14 +0200291static void print_bdw_error(unsigned int reg, unsigned int devid)
292{
293 print_ivb_error(reg, devid);
294
295 if (reg & (1 << 10))
296 printf(" Non WB memory type for Advanced Context\n");
297 if (reg & (1 << 11))
298 printf(" PASID not enabled\n");
299 if (reg & (1 << 12))
300 printf(" PASID boundary violation\n");
301 if (reg & (1 << 13))
302 printf(" PASID not valid\n");
303 if (reg & (1 << 14))
304 printf(" PASID was zero for untranslated request\n");
305 if (reg & (1 << 15))
306 printf(" Context was not marked as present when doing DMA\n");
307}
308
Chris Wilsonb6470462014-12-05 11:04:42 +0000309static void
310print_error(unsigned int reg, unsigned int devid)
311{
312 switch (intel_gen(devid)) {
Mika Kuoppala0a2ef9c2015-03-23 11:35:14 +0200313 case 8: return print_bdw_error(reg, devid);
Chris Wilsonb6470462014-12-05 11:04:42 +0000314 case 7: return print_ivb_error(reg, devid);
315 case 6: return print_snb_error(reg);
316 }
317}
318
Chris Wilsonbfc2b532010-03-04 21:56:04 +0000319static void
Daniel Vetterd5109532011-10-21 19:06:08 +0200320print_snb_fence(unsigned int devid, uint64_t fence)
321{
322 printf(" %svalid, %c-tiled, pitch: %i, start: 0x%08x, size: %u\n",
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700323 fence & 1 ? "" : "in",
324 fence & (1<<1) ? 'y' : 'x',
325 (int)(((fence>>32)&0xfff)+1)*128,
326 (uint32_t)fence & 0xfffff000,
327 (uint32_t)(((fence>>32)&0xfffff000) - (fence&0xfffff000) + 4096));
Daniel Vetterd5109532011-10-21 19:06:08 +0200328}
329
330static void
331print_i965_fence(unsigned int devid, uint64_t fence)
332{
333 printf(" %svalid, %c-tiled, pitch: %i, start: 0x%08x, size: %u\n",
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700334 fence & 1 ? "" : "in",
335 fence & (1<<1) ? 'y' : 'x',
336 (int)(((fence>>2)&0x1ff)+1)*128,
337 (uint32_t)fence & 0xfffff000,
338 (uint32_t)(((fence>>32)&0xfffff000) - (fence&0xfffff000) + 4096));
Daniel Vetterd5109532011-10-21 19:06:08 +0200339}
340
341static void
Daniel Vettercf5db112011-03-14 11:20:17 +0100342print_i915_fence(unsigned int devid, uint64_t fence)
343{
344 unsigned tile_width;
345 if ((fence & 12) && !IS_915(devid))
346 tile_width = 128;
347 else
348 tile_width = 512;
349
350 printf(" %svalid, %c-tiled, pitch: %i, start: 0x%08x, size: %i\n",
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700351 fence & 1 ? "" : "in",
Chris Wilson58ac17d2013-10-21 09:31:18 +0100352 fence & (1<<12) ? 'y' : 'x',
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700353 (1<<((fence>>4)&0xf))*tile_width,
354 (uint32_t)fence & 0xff00000,
355 1<<(20 + ((fence>>8)&0xf)));
Daniel Vettercf5db112011-03-14 11:20:17 +0100356}
357
358static void
359print_i830_fence(unsigned int devid, uint64_t fence)
360{
361 printf(" %svalid, %c-tiled, pitch: %i, start: 0x%08x, size: %i\n",
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700362 fence & 1 ? "" : "in",
Chris Wilson58ac17d2013-10-21 09:31:18 +0100363 fence & (1<<12) ? 'y' : 'x',
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700364 (1<<((fence>>4)&0xf))*128,
365 (uint32_t)fence & 0x7f80000,
366 1<<(19 + ((fence>>8)&0xf)));
Daniel Vettercf5db112011-03-14 11:20:17 +0100367}
368
369static void
370print_fence(unsigned int devid, uint64_t fence)
371{
Daniel Vetterd5109532011-10-21 19:06:08 +0200372 if (IS_GEN6(devid) || IS_GEN7(devid)) {
373 return print_snb_fence(devid, fence);
374 } else if (IS_GEN4(devid) || IS_GEN5(devid)) {
375 return print_i965_fence(devid, fence);
Daniel Vettercf5db112011-03-14 11:20:17 +0100376 } else if (IS_GEN3(devid)) {
377 return print_i915_fence(devid, fence);
378 } else {
379 return print_i830_fence(devid, fence);
380 }
381}
382
Mika Kuoppalaf96bfb82015-03-23 11:33:37 +0200383static void
384print_fault_reg(unsigned devid, uint32_t reg)
385{
386 const char *gen7_types[] = { "Page",
387 "Invalid PD",
388 "Unloaded PD",
389 "Invalid and Unloaded PD" };
390
391 const char *gen8_types[] = { "PTE",
392 "PDE",
393 "PDPE",
394 "PML4E" };
395
396 const char *engine[] = { "GFX", "MFX0", "MFX1", "VEBX",
397 "BLT", "Unknown", "Unknown", "Unknown" };
398
399 if (intel_gen(devid) < 7)
400 return;
401
402 if (reg & (1 << 0))
403 printf(" Valid\n");
404 else
405 return;
406
407 if (intel_gen(devid) < 8)
408 printf(" %s Fault (%s)\n", gen7_types[reg >> 1 & 0x3],
409 reg & (1 << 11) ? "GGTT" : "PPGTT");
410 else
411 printf(" Invalid %s Fault\n", gen8_types[reg >> 1 & 0x3]);
412
413 if (intel_gen(devid) < 8)
414 printf(" Address 0x%08x\n", reg & ~((1 << 12)-1));
415 else
416 printf(" Engine %s\n", engine[reg >> 12 & 0x7]);
417
418 printf(" Source ID %d\n", reg >> 3 & 0xff);
419}
420
Mika Kuoppala559987f2015-03-24 13:03:26 +0200421static void
422print_fault_data(unsigned devid, uint32_t data1, uint32_t data0)
423{
424 uint64_t address;
425
426 if (intel_gen(devid) < 8)
427 return;
428
429 address = ((uint64_t)(data0) << 12) | ((uint64_t)data1 & 0xf) << 44;
430 printf(" Address 0x%016" PRIx64 " %s\n", address,
431 data1 & (1 << 4) ? "GGTT" : "PPGTT");
432}
433
Ben Widawskyafeb4312013-04-22 11:36:03 -0700434#define MAX_RINGS 10 /* I really hope this never... */
435uint32_t head[MAX_RINGS];
436int head_ndx = 0;
Chris Wilsonb5109e62014-01-23 21:50:36 +0000437int num_rings = 0;
Ben Widawskyafeb4312013-04-22 11:36:03 -0700438static void print_batch(int is_batch, const char *ring_name, uint32_t gtt_offset)
439{
440 const char *buffer_type[2] = { "ringbuffer", "batchbuffer" };
Chris Wilsonb5109e62014-01-23 21:50:36 +0000441 if (is_batch || !num_rings)
Ben Widawskyafeb4312013-04-22 11:36:03 -0700442 printf("%s (%s) at 0x%08x\n", buffer_type[is_batch], ring_name, gtt_offset);
Chris Wilsonb5109e62014-01-23 21:50:36 +0000443 else
Ben Widawskyafeb4312013-04-22 11:36:03 -0700444 printf("%s (%s) at 0x%08x; HEAD points to: 0x%08x\n", buffer_type[is_batch], ring_name, gtt_offset, head[head_ndx++ % num_rings] + gtt_offset);
Ben Widawskyafeb4312013-04-22 11:36:03 -0700445}
446
Damien Lespiau1d2ef952013-12-16 11:28:39 +0000447static void decode(struct drm_intel_decode *ctx, bool is_batch,
448 const char *ring_name, uint32_t gtt_offset, uint32_t *data,
449 int *count)
450{
451 if (!*count)
452 return;
453
454 print_batch(is_batch, ring_name, gtt_offset);
455 drm_intel_decode_set_batch_pointer(ctx, data, gtt_offset, *count);
456 drm_intel_decode(ctx);
457 *count = 0;
458}
459
Daniel Vettercf5db112011-03-14 11:20:17 +0100460static void
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700461read_data_file(FILE *file)
Chris Wilson9eb4de12010-02-12 13:28:40 +0000462{
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700463 struct drm_intel_decode *decode_ctx = NULL;
464 uint32_t devid = PCI_CHIP_I855_GM;
465 uint32_t *data = NULL;
466 long long unsigned fence;
467 int data_size = 0, count = 0, line_number = 0, matched;
468 char *line = NULL;
469 size_t line_size;
Mika Kuoppalaedee9522013-07-12 17:02:04 +0300470 uint32_t offset, value, ring_length = 0;
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700471 uint32_t gtt_offset = 0, new_gtt_offset;
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700472 char *ring_name = NULL;
473 int is_batch = 1;
Chris Wilson9eb4de12010-02-12 13:28:40 +0000474
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700475 while (getline(&line, &line_size, file) > 0) {
476 char *dashes;
477 line_number++;
Chris Wilson9eb4de12010-02-12 13:28:40 +0000478
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700479 dashes = strstr(line, "---");
480 if (dashes) {
481 char *new_ring_name = malloc(dashes - line);
482 strncpy(new_ring_name, line, dashes - line);
483 new_ring_name[dashes - line - 1] = '\0';
Daniel Vetter73c21042011-10-11 13:14:02 +0200484
Ben Widawskyafeb4312013-04-22 11:36:03 -0700485 if (num_rings == -1)
486 num_rings = head_ndx;
487
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700488 matched = sscanf(dashes, "--- gtt_offset = 0x%08x\n",
489 &new_gtt_offset);
490 if (matched == 1) {
Damien Lespiau1d2ef952013-12-16 11:28:39 +0000491 decode(decode_ctx, is_batch, ring_name,
492 gtt_offset, data, &count);
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700493 gtt_offset = new_gtt_offset;
494 is_batch = 1;
495 free(ring_name);
496 ring_name = new_ring_name;
497 continue;
498 }
499
500 matched = sscanf(dashes, "--- ringbuffer = 0x%08x\n",
501 &new_gtt_offset);
502 if (matched == 1) {
Damien Lespiau1d2ef952013-12-16 11:28:39 +0000503 decode(decode_ctx, is_batch, ring_name,
504 gtt_offset, data, &count);
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700505 gtt_offset = new_gtt_offset;
506 is_batch = 0;
507 free(ring_name);
508 ring_name = new_ring_name;
509 continue;
510 }
511 }
512
513 matched = sscanf(line, "%08x : %08x", &offset, &value);
514 if (matched != 2) {
Mika Kuoppala559987f2015-03-24 13:03:26 +0200515 unsigned int reg, reg2;
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700516
517 /* display reg section is after the ringbuffers, don't mix them */
Damien Lespiau1d2ef952013-12-16 11:28:39 +0000518 decode(decode_ctx, is_batch, ring_name, gtt_offset,
519 data, &count);
Chris Wilson9eb4de12010-02-12 13:28:40 +0000520
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700521 printf("%s", line);
522
523 matched = sscanf(line, "PCI ID: 0x%04x\n", &reg);
524 if (matched == 0)
525 matched = sscanf(line, " PCI ID: 0x%04x\n", &reg);
526 if (matched == 0) {
527 const char *pci_id_start = strstr(line, "PCI ID");
528 if (pci_id_start)
529 matched = sscanf(pci_id_start, "PCI ID: 0x%04x\n", &reg);
Chris Wilson98eb5a52011-01-09 13:26:50 +0000530 }
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700531 if (matched == 1) {
532 devid = reg;
533 printf("Detected GEN%i chipset\n",
534 intel_gen(devid));
535
536 decode_ctx = drm_intel_decode_context_alloc(devid);
537 }
538
Mika Kuoppalaedee9522013-07-12 17:02:04 +0300539 matched = sscanf(line, " CTL: 0x%08x\n", &reg);
540 if (matched == 1)
541 ring_length = print_ctl(reg);
542
Ben Widawskyafeb4312013-04-22 11:36:03 -0700543 matched = sscanf(line, " HEAD: 0x%08x\n", &reg);
544 if (matched == 1) {
Chris Wilsonb5109e62014-01-23 21:50:36 +0000545 head[num_rings++] = print_head(reg);
Ben Widawskyafeb4312013-04-22 11:36:03 -0700546 }
547
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700548 matched = sscanf(line, " ACTHD: 0x%08x\n", &reg);
Mika Kuoppalaedee9522013-07-12 17:02:04 +0300549 if (matched == 1) {
550 print_acthd(reg, ring_length);
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700551 drm_intel_decode_set_head_tail(decode_ctx, reg, 0xffffffff);
Mika Kuoppalaedee9522013-07-12 17:02:04 +0300552 }
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700553
554 matched = sscanf(line, " PGTBL_ER: 0x%08x\n", &reg);
555 if (matched == 1 && reg)
556 print_pgtbl_err(reg, devid);
557
Chris Wilsonb6470462014-12-05 11:04:42 +0000558 matched = sscanf(line, " ERROR: 0x%08x\n", &reg);
559 if (matched == 1 && reg)
560 print_error(reg, devid);
561
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700562 matched = sscanf(line, " INSTDONE: 0x%08x\n", &reg);
563 if (matched == 1)
564 print_instdone(devid, reg, -1);
565
566 matched = sscanf(line, " INSTDONE1: 0x%08x\n", &reg);
567 if (matched == 1)
568 print_instdone(devid, -1, reg);
569
570 matched = sscanf(line, " fence[%i] = %Lx\n", &reg, &fence);
571 if (matched == 2)
572 print_fence(devid, fence);
573
Mika Kuoppalaf96bfb82015-03-23 11:33:37 +0200574 matched = sscanf(line, " FAULT_REG: 0x%08x\n", &reg);
575 if (matched == 1 && reg)
576 print_fault_reg(devid, reg);
577
Mika Kuoppala559987f2015-03-24 13:03:26 +0200578 matched = sscanf(line, " FAULT_TLB_DATA: 0x%08x 0x%08x\n", &reg, &reg2);
579 if (matched == 2)
580 print_fault_data(devid, reg, reg2);
581
Chris Wilson98eb5a52011-01-09 13:26:50 +0000582 continue;
583 }
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700584
585 count++;
586
587 if (count > data_size) {
588 data_size = data_size ? data_size * 2 : 1024;
589 data = realloc(data, data_size * sizeof (uint32_t));
590 if (data == NULL) {
591 fprintf(stderr, "Out of memory.\n");
592 exit(1);
593 }
594 }
595
596 data[count-1] = value;
Chris Wilson9eb4de12010-02-12 13:28:40 +0000597 }
598
Damien Lespiau1d2ef952013-12-16 11:28:39 +0000599 decode(decode_ctx, is_batch, ring_name, gtt_offset, data, &count);
Chris Wilson9eb4de12010-02-12 13:28:40 +0000600
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700601 free(data);
602 free(line);
603 free(ring_name);
Chris Wilson9eb4de12010-02-12 13:28:40 +0000604}
605
606int
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700607main(int argc, char *argv[])
Chris Wilson9eb4de12010-02-12 13:28:40 +0000608{
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700609 FILE *file;
610 const char *path;
611 char *filename = NULL;
612 struct stat st;
613 int error;
Chris Wilson9eb4de12010-02-12 13:28:40 +0000614
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700615 if (argc > 2) {
616 fprintf(stderr,
617 "intel_gpu_decode: Parse an Intel GPU i915_error_state\n"
618 "Usage:\n"
619 "\t%s [<file>]\n"
620 "\n"
621 "With no arguments, debugfs-dri-directory is probed for in "
622 "/debug and \n"
623 "/sys/kernel/debug. Otherwise, it may be "
624 "specified. If a file is given,\n"
625 "it is parsed as an GPU dump in the format of "
626 "/debug/dri/0/i915_error_state.\n",
627 argv[0]);
628 return 1;
629 }
Chris Wilson9eb4de12010-02-12 13:28:40 +0000630
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700631 if (argc == 1) {
632 if (isatty(0)) {
Chris Wilsondbbf2e92013-08-07 23:41:54 +0100633 path = "/sys/class/drm/card0/error";
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700634 error = stat(path, &st);
635 if (error != 0) {
Chris Wilsondbbf2e92013-08-07 23:41:54 +0100636 path = "/debug/dri";
637 error = stat(path, &st);
638 }
639 if (error != 0) {
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700640 path = "/sys/kernel/debug/dri";
641 error = stat(path, &st);
Chris Wilsondbbf2e92013-08-07 23:41:54 +0100642 }
643 if (error != 0) {
644 errx(1,
645 "Couldn't find i915 debugfs directory.\n\n"
646 "Is debugfs mounted? You might try mounting it with a command such as:\n\n"
647 "\tsudo mount -t debugfs debugfs /sys/kernel/debug\n");
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700648 }
649 } else {
650 read_data_file(stdin);
651 exit(0);
Chris Wilsona3a78632010-12-01 21:51:59 +0000652 }
Chris Wilsona3a78632010-12-01 21:51:59 +0000653 } else {
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700654 path = argv[1];
655 error = stat(path, &st);
656 if (error != 0) {
657 fprintf(stderr, "Error opening %s: %s\n",
658 path, strerror(errno));
659 exit(1);
660 }
Chris Wilson9eb4de12010-02-12 13:28:40 +0000661 }
Chris Wilson9eb4de12010-02-12 13:28:40 +0000662
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700663 if (S_ISDIR(st.st_mode)) {
664 int ret;
Imre Deak5efd3d32012-10-10 16:04:39 +0300665
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700666 ret = asprintf(&filename, "%s/i915_error_state", path);
Imre Deak5efd3d32012-10-10 16:04:39 +0300667 assert(ret > 0);
Chris Wilson68a95f02011-01-25 16:34:08 +0000668 file = fopen(filename, "r");
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700669 if (!file) {
670 int minor;
671 for (minor = 0; minor < 64; minor++) {
672 free(filename);
673 ret = asprintf(&filename, "%s/%d/i915_error_state", path, minor);
674 assert(ret > 0);
Chris Wilson9eb4de12010-02-12 13:28:40 +0000675
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700676 file = fopen(filename, "r");
677 if (file)
678 break;
679 }
680 }
681 if (!file) {
682 fprintf(stderr, "Failed to find i915_error_state beneath %s\n",
683 path);
684 exit (1);
685 }
686 } else {
687 file = fopen(path, "r");
688 if (!file) {
689 fprintf(stderr, "Failed to open %s: %s\n",
690 path, strerror(errno));
691 exit (1);
692 }
693 }
Chris Wilson68a95f02011-01-25 16:34:08 +0000694
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700695 read_data_file(file);
696 fclose(file);
Chris Wilsona3a78632010-12-01 21:51:59 +0000697
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700698 if (filename != path)
699 free(filename);
700
701 return 0;
Chris Wilson9eb4de12010-02-12 13:28:40 +0000702}
Ben Widawsky155aa1e2013-04-22 11:07:35 -0700703
704/* vim: set ts=8 sw=8 tw=0 noet :*/