]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/i915/i915_gpu_error.c
Merge tag 'drm-intel-next-2014-10-24' of git://anongit.freedesktop.org/drm-intel...
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / i915 / i915_gpu_error.c
CommitLineData
84734a04
MK
1/*
2 * Copyright (c) 2008 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 * Keith Packard <keithp@keithp.com>
26 * Mika Kuoppala <mika.kuoppala@intel.com>
27 *
28 */
29
30#include <generated/utsrelease.h>
31#include "i915_drv.h"
32
33static const char *yesno(int v)
34{
35 return v ? "yes" : "no";
36}
37
38static const char *ring_str(int ring)
39{
40 switch (ring) {
41 case RCS: return "render";
42 case VCS: return "bsd";
43 case BCS: return "blt";
44 case VECS: return "vebox";
845f74a7 45 case VCS2: return "bsd2";
84734a04
MK
46 default: return "";
47 }
48}
49
50static const char *pin_flag(int pinned)
51{
52 if (pinned > 0)
53 return " P";
54 else if (pinned < 0)
55 return " p";
56 else
57 return "";
58}
59
60static const char *tiling_flag(int tiling)
61{
62 switch (tiling) {
63 default:
64 case I915_TILING_NONE: return "";
65 case I915_TILING_X: return " X";
66 case I915_TILING_Y: return " Y";
67 }
68}
69
70static const char *dirty_flag(int dirty)
71{
72 return dirty ? " dirty" : "";
73}
74
75static const char *purgeable_flag(int purgeable)
76{
77 return purgeable ? " purgeable" : "";
78}
79
80static bool __i915_error_ok(struct drm_i915_error_state_buf *e)
81{
82
83 if (!e->err && WARN(e->bytes > (e->size - 1), "overflow")) {
84 e->err = -ENOSPC;
85 return false;
86 }
87
88 if (e->bytes == e->size - 1 || e->err)
89 return false;
90
91 return true;
92}
93
94static bool __i915_error_seek(struct drm_i915_error_state_buf *e,
95 unsigned len)
96{
97 if (e->pos + len <= e->start) {
98 e->pos += len;
99 return false;
100 }
101
102 /* First vsnprintf needs to fit in its entirety for memmove */
103 if (len >= e->size) {
104 e->err = -EIO;
105 return false;
106 }
107
108 return true;
109}
110
111static void __i915_error_advance(struct drm_i915_error_state_buf *e,
112 unsigned len)
113{
114 /* If this is first printf in this window, adjust it so that
115 * start position matches start of the buffer
116 */
117
118 if (e->pos < e->start) {
119 const size_t off = e->start - e->pos;
120
121 /* Should not happen but be paranoid */
122 if (off > len || e->bytes) {
123 e->err = -EIO;
124 return;
125 }
126
127 memmove(e->buf, e->buf + off, len - off);
128 e->bytes = len - off;
129 e->pos = e->start;
130 return;
131 }
132
133 e->bytes += len;
134 e->pos += len;
135}
136
137static void i915_error_vprintf(struct drm_i915_error_state_buf *e,
138 const char *f, va_list args)
139{
140 unsigned len;
141
142 if (!__i915_error_ok(e))
143 return;
144
145 /* Seek the first printf which is hits start position */
146 if (e->pos < e->start) {
e29bb4eb
CW
147 va_list tmp;
148
149 va_copy(tmp, args);
1d2cb9a5
MK
150 len = vsnprintf(NULL, 0, f, tmp);
151 va_end(tmp);
152
153 if (!__i915_error_seek(e, len))
84734a04
MK
154 return;
155 }
156
157 len = vsnprintf(e->buf + e->bytes, e->size - e->bytes, f, args);
158 if (len >= e->size - e->bytes)
159 len = e->size - e->bytes - 1;
160
161 __i915_error_advance(e, len);
162}
163
164static void i915_error_puts(struct drm_i915_error_state_buf *e,
165 const char *str)
166{
167 unsigned len;
168
169 if (!__i915_error_ok(e))
170 return;
171
172 len = strlen(str);
173
174 /* Seek the first printf which is hits start position */
175 if (e->pos < e->start) {
176 if (!__i915_error_seek(e, len))
177 return;
178 }
179
180 if (len >= e->size - e->bytes)
181 len = e->size - e->bytes - 1;
182 memcpy(e->buf + e->bytes, str, len);
183
184 __i915_error_advance(e, len);
185}
186
187#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
188#define err_puts(e, s) i915_error_puts(e, s)
189
190static void print_error_buffers(struct drm_i915_error_state_buf *m,
191 const char *name,
192 struct drm_i915_error_buffer *err,
193 int count)
194{
3a448734 195 err_printf(m, " %s [%d]:\n", name, count);
84734a04
MK
196
197 while (count--) {
3a448734 198 err_printf(m, " %08x %8u %02x %02x %x %x",
84734a04
MK
199 err->gtt_offset,
200 err->size,
201 err->read_domains,
202 err->write_domain,
203 err->rseqno, err->wseqno);
204 err_puts(m, pin_flag(err->pinned));
205 err_puts(m, tiling_flag(err->tiling));
206 err_puts(m, dirty_flag(err->dirty));
207 err_puts(m, purgeable_flag(err->purgeable));
5cc9ed4b 208 err_puts(m, err->userptr ? " userptr" : "");
84734a04
MK
209 err_puts(m, err->ring != -1 ? " " : "");
210 err_puts(m, ring_str(err->ring));
0a4cd7c8 211 err_puts(m, i915_cache_level_str(m->i915, err->cache_level));
84734a04
MK
212
213 if (err->name)
214 err_printf(m, " (name: %d)", err->name);
215 if (err->fence_reg != I915_FENCE_REG_NONE)
216 err_printf(m, " (fence: %d)", err->fence_reg);
217
218 err_puts(m, "\n");
219 err++;
220 }
221}
222
da661464
MK
223static const char *hangcheck_action_to_str(enum intel_ring_hangcheck_action a)
224{
225 switch (a) {
226 case HANGCHECK_IDLE:
227 return "idle";
228 case HANGCHECK_WAIT:
229 return "wait";
230 case HANGCHECK_ACTIVE:
231 return "active";
f260fe7b
MK
232 case HANGCHECK_ACTIVE_LOOP:
233 return "active (loop)";
da661464
MK
234 case HANGCHECK_KICK:
235 return "kick";
236 case HANGCHECK_HUNG:
237 return "hung";
238 }
239
240 return "unknown";
241}
242
84734a04
MK
243static void i915_ring_error_state(struct drm_i915_error_state_buf *m,
244 struct drm_device *dev,
362b8af7 245 struct drm_i915_error_ring *ring)
84734a04 246{
362b8af7 247 if (!ring->valid)
372fbb8e
CW
248 return;
249
362b8af7
BW
250 err_printf(m, " HEAD: 0x%08x\n", ring->head);
251 err_printf(m, " TAIL: 0x%08x\n", ring->tail);
252 err_printf(m, " CTL: 0x%08x\n", ring->ctl);
253 err_printf(m, " HWS: 0x%08x\n", ring->hws);
e3243d16 254 err_printf(m, " ACTHD: 0x%08x %08x\n", (u32)(ring->acthd>>32), (u32)ring->acthd);
362b8af7
BW
255 err_printf(m, " IPEIR: 0x%08x\n", ring->ipeir);
256 err_printf(m, " IPEHR: 0x%08x\n", ring->ipehr);
257 err_printf(m, " INSTDONE: 0x%08x\n", ring->instdone);
3dda20a9 258 if (INTEL_INFO(dev)->gen >= 4) {
e3243d16 259 err_printf(m, " BBADDR: 0x%08x %08x\n", (u32)(ring->bbaddr>>32), (u32)ring->bbaddr);
362b8af7
BW
260 err_printf(m, " BB_STATE: 0x%08x\n", ring->bbstate);
261 err_printf(m, " INSTPS: 0x%08x\n", ring->instps);
3dda20a9 262 }
362b8af7 263 err_printf(m, " INSTPM: 0x%08x\n", ring->instpm);
13ffadd1
BW
264 err_printf(m, " FADDR: 0x%08x %08x\n", upper_32_bits(ring->faddr),
265 lower_32_bits(ring->faddr));
84734a04 266 if (INTEL_INFO(dev)->gen >= 6) {
362b8af7
BW
267 err_printf(m, " RC PSMI: 0x%08x\n", ring->rc_psmi);
268 err_printf(m, " FAULT_REG: 0x%08x\n", ring->fault_reg);
84734a04 269 err_printf(m, " SYNC_0: 0x%08x [last synced 0x%08x]\n",
362b8af7
BW
270 ring->semaphore_mboxes[0],
271 ring->semaphore_seqno[0]);
84734a04 272 err_printf(m, " SYNC_1: 0x%08x [last synced 0x%08x]\n",
362b8af7
BW
273 ring->semaphore_mboxes[1],
274 ring->semaphore_seqno[1]);
4e5aabfd
BW
275 if (HAS_VEBOX(dev)) {
276 err_printf(m, " SYNC_2: 0x%08x [last synced 0x%08x]\n",
362b8af7
BW
277 ring->semaphore_mboxes[2],
278 ring->semaphore_seqno[2]);
4e5aabfd 279 }
84734a04 280 }
6c7a01ec
BW
281 if (USES_PPGTT(dev)) {
282 err_printf(m, " GFX_MODE: 0x%08x\n", ring->vm_info.gfx_mode);
283
284 if (INTEL_INFO(dev)->gen >= 8) {
285 int i;
286 for (i = 0; i < 4; i++)
287 err_printf(m, " PDP%d: 0x%016llx\n",
288 i, ring->vm_info.pdp[i]);
289 } else {
290 err_printf(m, " PP_DIR_BASE: 0x%08x\n",
291 ring->vm_info.pp_dir_base);
292 }
293 }
362b8af7
BW
294 err_printf(m, " seqno: 0x%08x\n", ring->seqno);
295 err_printf(m, " waiting: %s\n", yesno(ring->waiting));
296 err_printf(m, " ring->head: 0x%08x\n", ring->cpu_ring_head);
297 err_printf(m, " ring->tail: 0x%08x\n", ring->cpu_ring_tail);
da661464 298 err_printf(m, " hangcheck: %s [%d]\n",
362b8af7
BW
299 hangcheck_action_to_str(ring->hangcheck_action),
300 ring->hangcheck_score);
84734a04
MK
301}
302
303void i915_error_printf(struct drm_i915_error_state_buf *e, const char *f, ...)
304{
305 va_list args;
306
307 va_start(args, f);
308 i915_error_vprintf(e, f, args);
309 va_end(args);
310}
311
ab0e7ff9
CW
312static void print_error_obj(struct drm_i915_error_state_buf *m,
313 struct drm_i915_error_object *obj)
314{
315 int page, offset, elt;
316
317 for (page = offset = 0; page < obj->page_count; page++) {
318 for (elt = 0; elt < PAGE_SIZE/4; elt++) {
319 err_printf(m, "%08x : %08x\n", offset,
320 obj->pages[page][elt]);
321 offset += 4;
322 }
323 }
324}
325
84734a04
MK
326int i915_error_state_to_str(struct drm_i915_error_state_buf *m,
327 const struct i915_error_state_file_priv *error_priv)
328{
329 struct drm_device *dev = error_priv->dev;
50227e1c 330 struct drm_i915_private *dev_priv = dev->dev_private;
84734a04 331 struct drm_i915_error_state *error = error_priv->error;
0ca36d78 332 struct drm_i915_error_object *obj;
ab0e7ff9
CW
333 int i, j, offset, elt;
334 int max_hangcheck_score;
84734a04
MK
335
336 if (!error) {
337 err_printf(m, "no error state collected\n");
338 goto out;
339 }
340
cb383002 341 err_printf(m, "%s\n", error->error_msg);
84734a04
MK
342 err_printf(m, "Time: %ld s %ld us\n", error->time.tv_sec,
343 error->time.tv_usec);
344 err_printf(m, "Kernel: " UTS_RELEASE "\n");
ab0e7ff9
CW
345 max_hangcheck_score = 0;
346 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
347 if (error->ring[i].hangcheck_score > max_hangcheck_score)
348 max_hangcheck_score = error->ring[i].hangcheck_score;
349 }
350 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
351 if (error->ring[i].hangcheck_score == max_hangcheck_score &&
352 error->ring[i].pid != -1) {
353 err_printf(m, "Active process (on ring %s): %s [%d]\n",
354 ring_str(i),
355 error->ring[i].comm,
356 error->ring[i].pid);
357 }
358 }
48b031e3 359 err_printf(m, "Reset count: %u\n", error->reset_count);
62d5d69b 360 err_printf(m, "Suspend count: %u\n", error->suspend_count);
ffbab09b 361 err_printf(m, "PCI ID: 0x%04x\n", dev->pdev->device);
84734a04
MK
362 err_printf(m, "EIR: 0x%08x\n", error->eir);
363 err_printf(m, "IER: 0x%08x\n", error->ier);
885ea5a8
RV
364 if (INTEL_INFO(dev)->gen >= 8) {
365 for (i = 0; i < 4; i++)
366 err_printf(m, "GTIER gt %d: 0x%08x\n", i,
367 error->gtier[i]);
368 } else if (HAS_PCH_SPLIT(dev) || IS_VALLEYVIEW(dev))
369 err_printf(m, "GTIER: 0x%08x\n", error->gtier[0]);
84734a04
MK
370 err_printf(m, "PGTBL_ER: 0x%08x\n", error->pgtbl_er);
371 err_printf(m, "FORCEWAKE: 0x%08x\n", error->forcewake);
372 err_printf(m, "DERRMR: 0x%08x\n", error->derrmr);
373 err_printf(m, "CCID: 0x%08x\n", error->ccid);
094f9a54 374 err_printf(m, "Missed interrupts: 0x%08lx\n", dev_priv->gpu_error.missed_irq_rings);
84734a04
MK
375
376 for (i = 0; i < dev_priv->num_fence_regs; i++)
377 err_printf(m, " fence[%d] = %08llx\n", i, error->fence[i]);
378
379 for (i = 0; i < ARRAY_SIZE(error->extra_instdone); i++)
380 err_printf(m, " INSTDONE_%d: 0x%08x\n", i,
381 error->extra_instdone[i]);
382
383 if (INTEL_INFO(dev)->gen >= 6) {
384 err_printf(m, "ERROR: 0x%08x\n", error->error);
385 err_printf(m, "DONE_REG: 0x%08x\n", error->done_reg);
386 }
387
388 if (INTEL_INFO(dev)->gen == 7)
389 err_printf(m, "ERR_INT: 0x%08x\n", error->err_int);
390
362b8af7
BW
391 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
392 err_printf(m, "%s command stream:\n", ring_str(i));
393 i915_ring_error_state(m, dev, &error->ring[i]);
394 }
84734a04 395
3a448734
CW
396 for (i = 0; i < error->vm_count; i++) {
397 err_printf(m, "vm[%d]\n", i);
398
84734a04 399 print_error_buffers(m, "Active",
3a448734
CW
400 error->active_bo[i],
401 error->active_bo_count[i]);
84734a04 402
84734a04 403 print_error_buffers(m, "Pinned",
3a448734
CW
404 error->pinned_bo[i],
405 error->pinned_bo_count[i]);
406 }
84734a04
MK
407
408 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
ab0e7ff9
CW
409 obj = error->ring[i].batchbuffer;
410 if (obj) {
411 err_puts(m, dev_priv->ring[i].name);
412 if (error->ring[i].pid != -1)
413 err_printf(m, " (submitted by %s [%d])",
414 error->ring[i].comm,
415 error->ring[i].pid);
416 err_printf(m, " --- gtt_offset = 0x%08x\n",
84734a04 417 obj->gtt_offset);
ab0e7ff9
CW
418 print_error_obj(m, obj);
419 }
420
421 obj = error->ring[i].wa_batchbuffer;
422 if (obj) {
423 err_printf(m, "%s (w/a) --- gtt_offset = 0x%08x\n",
424 dev_priv->ring[i].name, obj->gtt_offset);
425 print_error_obj(m, obj);
84734a04
MK
426 }
427
428 if (error->ring[i].num_requests) {
429 err_printf(m, "%s --- %d requests\n",
430 dev_priv->ring[i].name,
431 error->ring[i].num_requests);
432 for (j = 0; j < error->ring[i].num_requests; j++) {
433 err_printf(m, " seqno 0x%08x, emitted %ld, tail 0x%08x\n",
434 error->ring[i].requests[j].seqno,
435 error->ring[i].requests[j].jiffies,
436 error->ring[i].requests[j].tail);
437 }
438 }
439
440 if ((obj = error->ring[i].ringbuffer)) {
441 err_printf(m, "%s --- ringbuffer = 0x%08x\n",
442 dev_priv->ring[i].name,
443 obj->gtt_offset);
ab0e7ff9 444 print_error_obj(m, obj);
84734a04
MK
445 }
446
362b8af7 447 if ((obj = error->ring[i].hws_page)) {
f3ce3821
CW
448 err_printf(m, "%s --- HW Status = 0x%08x\n",
449 dev_priv->ring[i].name,
450 obj->gtt_offset);
451 offset = 0;
452 for (elt = 0; elt < PAGE_SIZE/16; elt += 4) {
453 err_printf(m, "[%04x] %08x %08x %08x %08x\n",
454 offset,
455 obj->pages[0][elt],
456 obj->pages[0][elt+1],
457 obj->pages[0][elt+2],
458 obj->pages[0][elt+3]);
459 offset += 16;
460 }
461 }
462
372fbb8e 463 if ((obj = error->ring[i].ctx)) {
84734a04
MK
464 err_printf(m, "%s --- HW Context = 0x%08x\n",
465 dev_priv->ring[i].name,
466 obj->gtt_offset);
17d36749 467 print_error_obj(m, obj);
84734a04
MK
468 }
469 }
470
0ca36d78
BW
471 if ((obj = error->semaphore_obj)) {
472 err_printf(m, "Semaphore page = 0x%08x\n", obj->gtt_offset);
473 for (elt = 0; elt < PAGE_SIZE/16; elt += 4) {
474 err_printf(m, "[%04x] %08x %08x %08x %08x\n",
475 elt * 4,
476 obj->pages[0][elt],
477 obj->pages[0][elt+1],
478 obj->pages[0][elt+2],
479 obj->pages[0][elt+3]);
480 }
481 }
482
84734a04
MK
483 if (error->overlay)
484 intel_overlay_print_error_state(m, error->overlay);
485
486 if (error->display)
487 intel_display_print_error_state(m, dev, error->display);
488
489out:
490 if (m->bytes == 0 && m->err)
491 return m->err;
492
493 return 0;
494}
495
496int i915_error_state_buf_init(struct drm_i915_error_state_buf *ebuf,
0a4cd7c8 497 struct drm_i915_private *i915,
84734a04
MK
498 size_t count, loff_t pos)
499{
500 memset(ebuf, 0, sizeof(*ebuf));
0a4cd7c8 501 ebuf->i915 = i915;
84734a04
MK
502
503 /* We need to have enough room to store any i915_error_state printf
504 * so that we can move it to start position.
505 */
506 ebuf->size = count + 1 > PAGE_SIZE ? count + 1 : PAGE_SIZE;
507 ebuf->buf = kmalloc(ebuf->size,
508 GFP_TEMPORARY | __GFP_NORETRY | __GFP_NOWARN);
509
510 if (ebuf->buf == NULL) {
511 ebuf->size = PAGE_SIZE;
512 ebuf->buf = kmalloc(ebuf->size, GFP_TEMPORARY);
513 }
514
515 if (ebuf->buf == NULL) {
516 ebuf->size = 128;
517 ebuf->buf = kmalloc(ebuf->size, GFP_TEMPORARY);
518 }
519
520 if (ebuf->buf == NULL)
521 return -ENOMEM;
522
523 ebuf->start = pos;
524
525 return 0;
526}
527
528static void i915_error_object_free(struct drm_i915_error_object *obj)
529{
530 int page;
531
532 if (obj == NULL)
533 return;
534
535 for (page = 0; page < obj->page_count; page++)
536 kfree(obj->pages[page]);
537
538 kfree(obj);
539}
540
541static void i915_error_state_free(struct kref *error_ref)
542{
543 struct drm_i915_error_state *error = container_of(error_ref,
544 typeof(*error), ref);
545 int i;
546
547 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
548 i915_error_object_free(error->ring[i].batchbuffer);
549 i915_error_object_free(error->ring[i].ringbuffer);
362b8af7 550 i915_error_object_free(error->ring[i].hws_page);
84734a04
MK
551 i915_error_object_free(error->ring[i].ctx);
552 kfree(error->ring[i].requests);
553 }
554
0ca36d78 555 i915_error_object_free(error->semaphore_obj);
84734a04
MK
556 kfree(error->active_bo);
557 kfree(error->overlay);
558 kfree(error->display);
559 kfree(error);
560}
561
562static struct drm_i915_error_object *
8ae62dc6
CW
563i915_error_object_create(struct drm_i915_private *dev_priv,
564 struct drm_i915_gem_object *src,
565 struct i915_address_space *vm)
84734a04
MK
566{
567 struct drm_i915_error_object *dst;
8ae62dc6 568 int num_pages;
b3c3f5e6
CW
569 bool use_ggtt;
570 int i = 0;
84734a04
MK
571 u32 reloc_offset;
572
573 if (src == NULL || src->pages == NULL)
574 return NULL;
575
8ae62dc6
CW
576 num_pages = src->base.size >> PAGE_SHIFT;
577
84734a04
MK
578 dst = kmalloc(sizeof(*dst) + num_pages * sizeof(u32 *), GFP_ATOMIC);
579 if (dst == NULL)
580 return NULL;
581
87a01e82
CW
582 if (i915_gem_obj_bound(src, vm))
583 dst->gtt_offset = i915_gem_obj_offset(src, vm);
584 else
585 dst->gtt_offset = -1;
b3c3f5e6
CW
586
587 reloc_offset = dst->gtt_offset;
588 use_ggtt = (src->cache_level == I915_CACHE_NONE &&
589 i915_is_ggtt(vm) &&
590 src->has_global_gtt_mapping &&
591 reloc_offset + num_pages * PAGE_SIZE <= dev_priv->gtt.mappable_end);
592
593 /* Cannot access stolen address directly, try to use the aperture */
594 if (src->stolen) {
595 use_ggtt = true;
596
597 if (!src->has_global_gtt_mapping)
598 goto unwind;
599
600 reloc_offset = i915_gem_obj_ggtt_offset(src);
601 if (reloc_offset + num_pages * PAGE_SIZE > dev_priv->gtt.mappable_end)
602 goto unwind;
603 }
604
605 /* Cannot access snooped pages through the aperture */
606 if (use_ggtt && src->cache_level != I915_CACHE_NONE && !HAS_LLC(dev_priv->dev))
607 goto unwind;
608
609 dst->page_count = num_pages;
610 while (num_pages--) {
84734a04
MK
611 unsigned long flags;
612 void *d;
613
614 d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
615 if (d == NULL)
616 goto unwind;
617
618 local_irq_save(flags);
b3c3f5e6 619 if (use_ggtt) {
84734a04
MK
620 void __iomem *s;
621
622 /* Simply ignore tiling or any overlapping fence.
623 * It's part of the error state, and this hopefully
624 * captures what the GPU read.
625 */
626
627 s = io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
628 reloc_offset);
629 memcpy_fromio(d, s, PAGE_SIZE);
630 io_mapping_unmap_atomic(s);
84734a04
MK
631 } else {
632 struct page *page;
633 void *s;
634
635 page = i915_gem_object_get_page(src, i);
636
637 drm_clflush_pages(&page, 1);
638
639 s = kmap_atomic(page);
640 memcpy(d, s, PAGE_SIZE);
641 kunmap_atomic(s);
642
643 drm_clflush_pages(&page, 1);
644 }
645 local_irq_restore(flags);
646
b3c3f5e6 647 dst->pages[i++] = d;
84734a04
MK
648 reloc_offset += PAGE_SIZE;
649 }
84734a04
MK
650
651 return dst;
652
653unwind:
654 while (i--)
655 kfree(dst->pages[i]);
656 kfree(dst);
657 return NULL;
658}
a7b91078 659#define i915_error_ggtt_object_create(dev_priv, src) \
8ae62dc6 660 i915_error_object_create((dev_priv), (src), &(dev_priv)->gtt.base)
84734a04
MK
661
662static void capture_bo(struct drm_i915_error_buffer *err,
3a448734 663 struct i915_vma *vma)
84734a04 664{
3a448734
CW
665 struct drm_i915_gem_object *obj = vma->obj;
666
84734a04
MK
667 err->size = obj->base.size;
668 err->name = obj->base.name;
669 err->rseqno = obj->last_read_seqno;
670 err->wseqno = obj->last_write_seqno;
3a448734 671 err->gtt_offset = vma->node.start;
84734a04
MK
672 err->read_domains = obj->base.read_domains;
673 err->write_domain = obj->base.write_domain;
674 err->fence_reg = obj->fence_reg;
675 err->pinned = 0;
d7f46fc4 676 if (i915_gem_obj_is_pinned(obj))
84734a04
MK
677 err->pinned = 1;
678 if (obj->user_pin_count > 0)
679 err->pinned = -1;
680 err->tiling = obj->tiling_mode;
681 err->dirty = obj->dirty;
682 err->purgeable = obj->madv != I915_MADV_WILLNEED;
5cc9ed4b 683 err->userptr = obj->userptr.mm != NULL;
84734a04
MK
684 err->ring = obj->ring ? obj->ring->id : -1;
685 err->cache_level = obj->cache_level;
686}
687
688static u32 capture_active_bo(struct drm_i915_error_buffer *err,
689 int count, struct list_head *head)
690{
ca191b13 691 struct i915_vma *vma;
84734a04
MK
692 int i = 0;
693
ca191b13 694 list_for_each_entry(vma, head, mm_list) {
3a448734 695 capture_bo(err++, vma);
84734a04
MK
696 if (++i == count)
697 break;
698 }
699
700 return i;
701}
702
703static u32 capture_pinned_bo(struct drm_i915_error_buffer *err,
3a448734
CW
704 int count, struct list_head *head,
705 struct i915_address_space *vm)
84734a04
MK
706{
707 struct drm_i915_gem_object *obj;
3a448734
CW
708 struct drm_i915_error_buffer * const first = err;
709 struct drm_i915_error_buffer * const last = err + count;
84734a04
MK
710
711 list_for_each_entry(obj, head, global_list) {
3a448734 712 struct i915_vma *vma;
84734a04 713
3a448734 714 if (err == last)
84734a04 715 break;
3a448734
CW
716
717 list_for_each_entry(vma, &obj->vma_list, vma_link)
718 if (vma->vm == vm && vma->pin_count > 0) {
719 capture_bo(err++, vma);
720 break;
721 }
84734a04
MK
722 }
723
3a448734 724 return err - first;
84734a04
MK
725}
726
011cf577
BW
727/* Generate a semi-unique error code. The code is not meant to have meaning, The
728 * code's only purpose is to try to prevent false duplicated bug reports by
729 * grossly estimating a GPU error state.
730 *
731 * TODO Ideally, hashing the batchbuffer would be a very nice way to determine
732 * the hang if we could strip the GTT offset information from it.
733 *
734 * It's only a small step better than a random number in its current form.
735 */
736static uint32_t i915_error_generate_code(struct drm_i915_private *dev_priv,
cb383002
MK
737 struct drm_i915_error_state *error,
738 int *ring_id)
011cf577
BW
739{
740 uint32_t error_code = 0;
741 int i;
742
743 /* IPEHR would be an ideal way to detect errors, as it's the gross
744 * measure of "the command that hung." However, has some very common
745 * synchronization commands which almost always appear in the case
746 * strictly a client bug. Use instdone to differentiate those some.
747 */
cb383002
MK
748 for (i = 0; i < I915_NUM_RINGS; i++) {
749 if (error->ring[i].hangcheck_action == HANGCHECK_HUNG) {
750 if (ring_id)
751 *ring_id = i;
752
011cf577 753 return error->ring[i].ipehr ^ error->ring[i].instdone;
cb383002
MK
754 }
755 }
011cf577
BW
756
757 return error_code;
758}
759
84734a04
MK
760static void i915_gem_record_fences(struct drm_device *dev,
761 struct drm_i915_error_state *error)
762{
763 struct drm_i915_private *dev_priv = dev->dev_private;
764 int i;
765
766 /* Fences */
767 switch (INTEL_INFO(dev)->gen) {
01209dd5 768 case 9:
5ab31333 769 case 8:
84734a04
MK
770 case 7:
771 case 6:
772 for (i = 0; i < dev_priv->num_fence_regs; i++)
773 error->fence[i] = I915_READ64(FENCE_REG_SANDYBRIDGE_0 + (i * 8));
774 break;
775 case 5:
776 case 4:
777 for (i = 0; i < 16; i++)
778 error->fence[i] = I915_READ64(FENCE_REG_965_0 + (i * 8));
779 break;
780 case 3:
781 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
782 for (i = 0; i < 8; i++)
783 error->fence[i+8] = I915_READ(FENCE_REG_945_8 + (i * 4));
784 case 2:
785 for (i = 0; i < 8; i++)
786 error->fence[i] = I915_READ(FENCE_REG_830_0 + (i * 4));
787 break;
788
789 default:
790 BUG();
791 }
792}
793
87f85ebc 794
0ca36d78
BW
795static void gen8_record_semaphore_state(struct drm_i915_private *dev_priv,
796 struct drm_i915_error_state *error,
797 struct intel_engine_cs *ring,
798 struct drm_i915_error_ring *ering)
799{
b4558b46 800 struct intel_engine_cs *to;
0ca36d78
BW
801 int i;
802
803 if (!i915_semaphore_is_enabled(dev_priv->dev))
804 return;
805
806 if (!error->semaphore_obj)
807 error->semaphore_obj =
808 i915_error_object_create(dev_priv,
809 dev_priv->semaphore_obj,
810 &dev_priv->gtt.base);
811
b4558b46
RV
812 for_each_ring(to, dev_priv, i) {
813 int idx;
814 u16 signal_offset;
815 u32 *tmp;
0ca36d78 816
b4558b46
RV
817 if (ring == to)
818 continue;
819
864c6181
RV
820 signal_offset = (GEN8_SIGNAL_OFFSET(ring, i) & (PAGE_SIZE - 1))
821 / 4;
b4558b46
RV
822 tmp = error->semaphore_obj->pages[0];
823 idx = intel_ring_sync_index(ring, to);
824
825 ering->semaphore_mboxes[idx] = tmp[signal_offset];
826 ering->semaphore_seqno[idx] = ring->semaphore.sync_seqno[idx];
0ca36d78
BW
827 }
828}
829
87f85ebc
BW
830static void gen6_record_semaphore_state(struct drm_i915_private *dev_priv,
831 struct intel_engine_cs *ring,
832 struct drm_i915_error_ring *ering)
833{
834 ering->semaphore_mboxes[0] = I915_READ(RING_SYNC_0(ring->mmio_base));
835 ering->semaphore_mboxes[1] = I915_READ(RING_SYNC_1(ring->mmio_base));
836 ering->semaphore_seqno[0] = ring->semaphore.sync_seqno[0];
837 ering->semaphore_seqno[1] = ring->semaphore.sync_seqno[1];
838
839 if (HAS_VEBOX(dev_priv->dev)) {
840 ering->semaphore_mboxes[2] =
841 I915_READ(RING_SYNC_2(ring->mmio_base));
842 ering->semaphore_seqno[2] = ring->semaphore.sync_seqno[2];
843 }
844}
845
84734a04 846static void i915_record_ring_state(struct drm_device *dev,
0ca36d78 847 struct drm_i915_error_state *error,
a4872ba6 848 struct intel_engine_cs *ring,
362b8af7 849 struct drm_i915_error_ring *ering)
84734a04
MK
850{
851 struct drm_i915_private *dev_priv = dev->dev_private;
852
853 if (INTEL_INFO(dev)->gen >= 6) {
362b8af7
BW
854 ering->rc_psmi = I915_READ(ring->mmio_base + 0x50);
855 ering->fault_reg = I915_READ(RING_FAULT_REG(ring));
0ca36d78
BW
856 if (INTEL_INFO(dev)->gen >= 8)
857 gen8_record_semaphore_state(dev_priv, error, ring, ering);
858 else
859 gen6_record_semaphore_state(dev_priv, ring, ering);
4e5aabfd
BW
860 }
861
84734a04 862 if (INTEL_INFO(dev)->gen >= 4) {
362b8af7
BW
863 ering->faddr = I915_READ(RING_DMA_FADD(ring->mmio_base));
864 ering->ipeir = I915_READ(RING_IPEIR(ring->mmio_base));
865 ering->ipehr = I915_READ(RING_IPEHR(ring->mmio_base));
866 ering->instdone = I915_READ(RING_INSTDONE(ring->mmio_base));
867 ering->instps = I915_READ(RING_INSTPS(ring->mmio_base));
868 ering->bbaddr = I915_READ(RING_BBADDR(ring->mmio_base));
13ffadd1
BW
869 if (INTEL_INFO(dev)->gen >= 8) {
870 ering->faddr |= (u64) I915_READ(RING_DMA_FADD_UDW(ring->mmio_base)) << 32;
362b8af7 871 ering->bbaddr |= (u64) I915_READ(RING_BBADDR_UDW(ring->mmio_base)) << 32;
13ffadd1 872 }
362b8af7 873 ering->bbstate = I915_READ(RING_BBSTATE(ring->mmio_base));
84734a04 874 } else {
362b8af7
BW
875 ering->faddr = I915_READ(DMA_FADD_I8XX);
876 ering->ipeir = I915_READ(IPEIR);
877 ering->ipehr = I915_READ(IPEHR);
878 ering->instdone = I915_READ(INSTDONE);
84734a04
MK
879 }
880
362b8af7
BW
881 ering->waiting = waitqueue_active(&ring->irq_queue);
882 ering->instpm = I915_READ(RING_INSTPM(ring->mmio_base));
883 ering->seqno = ring->get_seqno(ring, false);
884 ering->acthd = intel_ring_get_active_head(ring);
885 ering->head = I915_READ_HEAD(ring);
886 ering->tail = I915_READ_TAIL(ring);
887 ering->ctl = I915_READ_CTL(ring);
84734a04 888
f3ce3821
CW
889 if (I915_NEED_GFX_HWS(dev)) {
890 int mmio;
891
892 if (IS_GEN7(dev)) {
893 switch (ring->id) {
894 default:
895 case RCS:
896 mmio = RENDER_HWS_PGA_GEN7;
897 break;
898 case BCS:
899 mmio = BLT_HWS_PGA_GEN7;
900 break;
901 case VCS:
902 mmio = BSD_HWS_PGA_GEN7;
903 break;
904 case VECS:
905 mmio = VEBOX_HWS_PGA_GEN7;
906 break;
907 }
908 } else if (IS_GEN6(ring->dev)) {
909 mmio = RING_HWS_PGA_GEN6(ring->mmio_base);
910 } else {
911 /* XXX: gen8 returns to sanity */
912 mmio = RING_HWS_PGA(ring->mmio_base);
913 }
914
362b8af7 915 ering->hws = I915_READ(mmio);
f3ce3821
CW
916 }
917
362b8af7
BW
918 ering->hangcheck_score = ring->hangcheck.score;
919 ering->hangcheck_action = ring->hangcheck.action;
6c7a01ec
BW
920
921 if (USES_PPGTT(dev)) {
922 int i;
923
924 ering->vm_info.gfx_mode = I915_READ(RING_MODE_GEN7(ring));
925
926 switch (INTEL_INFO(dev)->gen) {
2a9b7539 927 case 9:
6c7a01ec
BW
928 case 8:
929 for (i = 0; i < 4; i++) {
930 ering->vm_info.pdp[i] =
931 I915_READ(GEN8_RING_PDP_UDW(ring, i));
932 ering->vm_info.pdp[i] <<= 32;
933 ering->vm_info.pdp[i] |=
934 I915_READ(GEN8_RING_PDP_LDW(ring, i));
935 }
936 break;
937 case 7:
ae89f44d
BW
938 ering->vm_info.pp_dir_base =
939 I915_READ(RING_PP_DIR_BASE(ring));
6c7a01ec
BW
940 break;
941 case 6:
ae89f44d
BW
942 ering->vm_info.pp_dir_base =
943 I915_READ(RING_PP_DIR_BASE_READ(ring));
6c7a01ec
BW
944 break;
945 }
946 }
84734a04
MK
947}
948
949
a4872ba6 950static void i915_gem_record_active_context(struct intel_engine_cs *ring,
84734a04
MK
951 struct drm_i915_error_state *error,
952 struct drm_i915_error_ring *ering)
953{
954 struct drm_i915_private *dev_priv = ring->dev->dev_private;
955 struct drm_i915_gem_object *obj;
956
957 /* Currently render ring is the only HW context user */
958 if (ring->id != RCS || !error->ccid)
959 return;
960
961 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
36362ad3
BW
962 if (!i915_gem_obj_ggtt_bound(obj))
963 continue;
964
84734a04 965 if ((error->ccid & PAGE_MASK) == i915_gem_obj_ggtt_offset(obj)) {
17d36749 966 ering->ctx = i915_error_ggtt_object_create(dev_priv, obj);
84734a04
MK
967 break;
968 }
969 }
970}
971
972static void i915_gem_record_rings(struct drm_device *dev,
973 struct drm_i915_error_state *error)
974{
975 struct drm_i915_private *dev_priv = dev->dev_private;
84734a04
MK
976 struct drm_i915_gem_request *request;
977 int i, count;
978
372fbb8e 979 for (i = 0; i < I915_NUM_RINGS; i++) {
a4872ba6 980 struct intel_engine_cs *ring = &dev_priv->ring[i];
9075e52f 981 struct intel_ringbuffer *rbuf;
372fbb8e 982
eee73b46
CW
983 error->ring[i].pid = -1;
984
372fbb8e
CW
985 if (ring->dev == NULL)
986 continue;
987
988 error->ring[i].valid = true;
989
0ca36d78 990 i915_record_ring_state(dev, error, ring, &error->ring[i]);
84734a04 991
ab0e7ff9
CW
992 request = i915_gem_find_active_request(ring);
993 if (request) {
ae6c4806
DV
994 struct i915_address_space *vm;
995
996 vm = request->ctx && request->ctx->ppgtt ?
997 &request->ctx->ppgtt->base :
998 &dev_priv->gtt.base;
999
ab0e7ff9
CW
1000 /* We need to copy these to an anonymous buffer
1001 * as the simplest method to avoid being overwritten
1002 * by userspace.
1003 */
1004 error->ring[i].batchbuffer =
1005 i915_error_object_create(dev_priv,
1006 request->batch_obj,
ae6c4806 1007 vm);
ab0e7ff9 1008
8ae62dc6 1009 if (HAS_BROKEN_CS_TLB(dev_priv->dev))
ab0e7ff9
CW
1010 error->ring[i].wa_batchbuffer =
1011 i915_error_ggtt_object_create(dev_priv,
1012 ring->scratch.obj);
1013
1014 if (request->file_priv) {
1015 struct task_struct *task;
1016
1017 rcu_read_lock();
1018 task = pid_task(request->file_priv->file->pid,
1019 PIDTYPE_PID);
1020 if (task) {
1021 strcpy(error->ring[i].comm, task->comm);
1022 error->ring[i].pid = task->pid;
1023 }
1024 rcu_read_unlock();
1025 }
1026 }
84734a04 1027
9075e52f
OM
1028 if (i915.enable_execlists) {
1029 /* TODO: This is only a small fix to keep basic error
1030 * capture working, but we need to add more information
1031 * for it to be useful (e.g. dump the context being
1032 * executed).
1033 */
1034 if (request)
1035 rbuf = request->ctx->engine[ring->id].ringbuf;
1036 else
1037 rbuf = ring->default_context->engine[ring->id].ringbuf;
1038 } else
1039 rbuf = ring->buffer;
1040
1041 error->ring[i].cpu_ring_head = rbuf->head;
1042 error->ring[i].cpu_ring_tail = rbuf->tail;
1043
84734a04 1044 error->ring[i].ringbuffer =
9075e52f 1045 i915_error_ggtt_object_create(dev_priv, rbuf->obj);
84734a04 1046
8ae62dc6
CW
1047 error->ring[i].hws_page =
1048 i915_error_ggtt_object_create(dev_priv, ring->status_page.obj);
84734a04
MK
1049
1050 i915_gem_record_active_context(ring, error, &error->ring[i]);
1051
1052 count = 0;
1053 list_for_each_entry(request, &ring->request_list, list)
1054 count++;
1055
1056 error->ring[i].num_requests = count;
1057 error->ring[i].requests =
a1e22653 1058 kcalloc(count, sizeof(*error->ring[i].requests),
84734a04
MK
1059 GFP_ATOMIC);
1060 if (error->ring[i].requests == NULL) {
1061 error->ring[i].num_requests = 0;
1062 continue;
1063 }
1064
1065 count = 0;
1066 list_for_each_entry(request, &ring->request_list, list) {
1067 struct drm_i915_error_request *erq;
1068
1069 erq = &error->ring[i].requests[count++];
1070 erq->seqno = request->seqno;
1071 erq->jiffies = request->emitted_jiffies;
1072 erq->tail = request->tail;
1073 }
1074 }
1075}
1076
95f5301d
BW
1077/* FIXME: Since pin count/bound list is global, we duplicate what we capture per
1078 * VM.
1079 */
1080static void i915_gem_capture_vm(struct drm_i915_private *dev_priv,
1081 struct drm_i915_error_state *error,
1082 struct i915_address_space *vm,
1083 const int ndx)
84734a04 1084{
95f5301d 1085 struct drm_i915_error_buffer *active_bo = NULL, *pinned_bo = NULL;
84734a04 1086 struct drm_i915_gem_object *obj;
95f5301d 1087 struct i915_vma *vma;
84734a04
MK
1088 int i;
1089
1090 i = 0;
ca191b13 1091 list_for_each_entry(vma, &vm->active_list, mm_list)
84734a04 1092 i++;
95f5301d 1093 error->active_bo_count[ndx] = i;
3a448734
CW
1094
1095 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
1096 list_for_each_entry(vma, &obj->vma_list, vma_link)
1097 if (vma->vm == vm && vma->pin_count > 0) {
1098 i++;
1099 break;
1100 }
1101 }
95f5301d 1102 error->pinned_bo_count[ndx] = i - error->active_bo_count[ndx];
84734a04
MK
1103
1104 if (i) {
a1e22653 1105 active_bo = kcalloc(i, sizeof(*active_bo), GFP_ATOMIC);
95f5301d
BW
1106 if (active_bo)
1107 pinned_bo = active_bo + error->active_bo_count[ndx];
84734a04
MK
1108 }
1109
95f5301d
BW
1110 if (active_bo)
1111 error->active_bo_count[ndx] =
1112 capture_active_bo(active_bo,
1113 error->active_bo_count[ndx],
5cef07e1 1114 &vm->active_list);
84734a04 1115
95f5301d
BW
1116 if (pinned_bo)
1117 error->pinned_bo_count[ndx] =
1118 capture_pinned_bo(pinned_bo,
1119 error->pinned_bo_count[ndx],
3a448734 1120 &dev_priv->mm.bound_list, vm);
95f5301d
BW
1121 error->active_bo[ndx] = active_bo;
1122 error->pinned_bo[ndx] = pinned_bo;
1123}
1124
1125static void i915_gem_capture_buffers(struct drm_i915_private *dev_priv,
1126 struct drm_i915_error_state *error)
1127{
1128 struct i915_address_space *vm;
1129 int cnt = 0, i = 0;
1130
1131 list_for_each_entry(vm, &dev_priv->vm_list, global_link)
1132 cnt++;
1133
95f5301d
BW
1134 error->active_bo = kcalloc(cnt, sizeof(*error->active_bo), GFP_ATOMIC);
1135 error->pinned_bo = kcalloc(cnt, sizeof(*error->pinned_bo), GFP_ATOMIC);
1136 error->active_bo_count = kcalloc(cnt, sizeof(*error->active_bo_count),
1137 GFP_ATOMIC);
1138 error->pinned_bo_count = kcalloc(cnt, sizeof(*error->pinned_bo_count),
1139 GFP_ATOMIC);
1140
3a448734
CW
1141 if (error->active_bo == NULL ||
1142 error->pinned_bo == NULL ||
1143 error->active_bo_count == NULL ||
1144 error->pinned_bo_count == NULL) {
1145 kfree(error->active_bo);
1146 kfree(error->active_bo_count);
1147 kfree(error->pinned_bo);
1148 kfree(error->pinned_bo_count);
1149
1150 error->active_bo = NULL;
1151 error->active_bo_count = NULL;
1152 error->pinned_bo = NULL;
1153 error->pinned_bo_count = NULL;
1154 } else {
1155 list_for_each_entry(vm, &dev_priv->vm_list, global_link)
1156 i915_gem_capture_vm(dev_priv, error, vm, i++);
1157
1158 error->vm_count = cnt;
1159 }
84734a04
MK
1160}
1161
1d762aad
BW
1162/* Capture all registers which don't fit into another category. */
1163static void i915_capture_reg_state(struct drm_i915_private *dev_priv,
1164 struct drm_i915_error_state *error)
84734a04 1165{
1d762aad 1166 struct drm_device *dev = dev_priv->dev;
885ea5a8 1167 int i;
84734a04 1168
654c90c6
BW
1169 /* General organization
1170 * 1. Registers specific to a single generation
1171 * 2. Registers which belong to multiple generations
1172 * 3. Feature specific registers.
1173 * 4. Everything else
1174 * Please try to follow the order.
1175 */
84734a04 1176
654c90c6
BW
1177 /* 1: Registers specific to a single generation */
1178 if (IS_VALLEYVIEW(dev)) {
885ea5a8 1179 error->gtier[0] = I915_READ(GTIER);
843db716 1180 error->ier = I915_READ(VLV_IER);
654c90c6
BW
1181 error->forcewake = I915_READ(FORCEWAKE_VLV);
1182 }
84734a04 1183
654c90c6
BW
1184 if (IS_GEN7(dev))
1185 error->err_int = I915_READ(GEN7_ERR_INT);
84734a04 1186
91ec5d11 1187 if (IS_GEN6(dev)) {
84734a04 1188 error->forcewake = I915_READ(FORCEWAKE);
91ec5d11
BW
1189 error->gab_ctl = I915_READ(GAB_CTL);
1190 error->gfx_mode = I915_READ(GFX_MODE);
1191 }
84734a04 1192
654c90c6
BW
1193 /* 2: Registers which belong to multiple generations */
1194 if (INTEL_INFO(dev)->gen >= 7)
1195 error->forcewake = I915_READ(FORCEWAKE_MT);
84734a04
MK
1196
1197 if (INTEL_INFO(dev)->gen >= 6) {
654c90c6 1198 error->derrmr = I915_READ(DERRMR);
84734a04
MK
1199 error->error = I915_READ(ERROR_GEN6);
1200 error->done_reg = I915_READ(DONE_REG);
1201 }
1202
654c90c6 1203 /* 3: Feature specific registers */
91ec5d11
BW
1204 if (IS_GEN6(dev) || IS_GEN7(dev)) {
1205 error->gam_ecochk = I915_READ(GAM_ECOCHK);
1206 error->gac_eco = I915_READ(GAC_ECO_BITS);
1207 }
1208
1209 /* 4: Everything else */
654c90c6
BW
1210 if (HAS_HW_CONTEXTS(dev))
1211 error->ccid = I915_READ(CCID);
1212
885ea5a8
RV
1213 if (INTEL_INFO(dev)->gen >= 8) {
1214 error->ier = I915_READ(GEN8_DE_MISC_IER);
1215 for (i = 0; i < 4; i++)
1216 error->gtier[i] = I915_READ(GEN8_GT_IER(i));
1217 } else if (HAS_PCH_SPLIT(dev)) {
843db716 1218 error->ier = I915_READ(DEIER);
885ea5a8 1219 error->gtier[0] = I915_READ(GTIER);
843db716
RV
1220 } else if (IS_GEN2(dev)) {
1221 error->ier = I915_READ16(IER);
1222 } else if (!IS_VALLEYVIEW(dev)) {
1223 error->ier = I915_READ(IER);
654c90c6 1224 }
654c90c6
BW
1225 error->eir = I915_READ(EIR);
1226 error->pgtbl_er = I915_READ(PGTBL_ER);
84734a04
MK
1227
1228 i915_get_extra_instdone(dev, error->extra_instdone);
1d762aad
BW
1229}
1230
cb383002 1231static void i915_error_capture_msg(struct drm_device *dev,
58174462
MK
1232 struct drm_i915_error_state *error,
1233 bool wedged,
1234 const char *error_msg)
cb383002
MK
1235{
1236 struct drm_i915_private *dev_priv = dev->dev_private;
1237 u32 ecode;
58174462 1238 int ring_id = -1, len;
cb383002
MK
1239
1240 ecode = i915_error_generate_code(dev_priv, error, &ring_id);
1241
58174462
MK
1242 len = scnprintf(error->error_msg, sizeof(error->error_msg),
1243 "GPU HANG: ecode %d:0x%08x", ring_id, ecode);
1244
1245 if (ring_id != -1 && error->ring[ring_id].pid != -1)
1246 len += scnprintf(error->error_msg + len,
1247 sizeof(error->error_msg) - len,
1248 ", in %s [%d]",
1249 error->ring[ring_id].comm,
1250 error->ring[ring_id].pid);
1251
1252 scnprintf(error->error_msg + len, sizeof(error->error_msg) - len,
1253 ", reason: %s, action: %s",
1254 error_msg,
1255 wedged ? "reset" : "continue");
cb383002
MK
1256}
1257
48b031e3
MK
1258static void i915_capture_gen_state(struct drm_i915_private *dev_priv,
1259 struct drm_i915_error_state *error)
1260{
1261 error->reset_count = i915_reset_count(&dev_priv->gpu_error);
62d5d69b 1262 error->suspend_count = dev_priv->suspend_count;
48b031e3
MK
1263}
1264
1d762aad
BW
1265/**
1266 * i915_capture_error_state - capture an error record for later analysis
1267 * @dev: drm device
1268 *
1269 * Should be called when an error is detected (either a hang or an error
1270 * interrupt) to capture error state from the time of the error. Fills
1271 * out a structure which becomes available in debugfs for user level tools
1272 * to pick up.
1273 */
58174462
MK
1274void i915_capture_error_state(struct drm_device *dev, bool wedged,
1275 const char *error_msg)
1d762aad 1276{
53a4c6b2 1277 static bool warned;
1d762aad
BW
1278 struct drm_i915_private *dev_priv = dev->dev_private;
1279 struct drm_i915_error_state *error;
1280 unsigned long flags;
1d762aad
BW
1281
1282 /* Account for pipe specific data like PIPE*STAT */
1283 error = kzalloc(sizeof(*error), GFP_ATOMIC);
1284 if (!error) {
1285 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
1286 return;
1287 }
1288
011cf577
BW
1289 kref_init(&error->ref);
1290
48b031e3 1291 i915_capture_gen_state(dev_priv, error);
011cf577
BW
1292 i915_capture_reg_state(dev_priv, error);
1293 i915_gem_capture_buffers(dev_priv, error);
1294 i915_gem_record_fences(dev, error);
1295 i915_gem_record_rings(dev, error);
1d762aad 1296
84734a04
MK
1297 do_gettimeofday(&error->time);
1298
1299 error->overlay = intel_overlay_capture_error_state(dev);
1300 error->display = intel_display_capture_error_state(dev);
1301
58174462 1302 i915_error_capture_msg(dev, error, wedged, error_msg);
cb383002
MK
1303 DRM_INFO("%s\n", error->error_msg);
1304
84734a04
MK
1305 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1306 if (dev_priv->gpu_error.first_error == NULL) {
1307 dev_priv->gpu_error.first_error = error;
1308 error = NULL;
1309 }
1310 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
1311
cb383002 1312 if (error) {
84734a04 1313 i915_error_state_free(&error->ref);
cb383002
MK
1314 return;
1315 }
1316
1317 if (!warned) {
1318 DRM_INFO("GPU hangs can indicate a bug anywhere in the entire gfx stack, including userspace.\n");
1319 DRM_INFO("Please file a _new_ bug report on bugs.freedesktop.org against DRI -> DRM/Intel\n");
1320 DRM_INFO("drm/i915 developers can then reassign to the right component if it's not a kernel issue.\n");
1321 DRM_INFO("The gpu crash dump is required to analyze gpu hangs, so please always attach it.\n");
1322 DRM_INFO("GPU crash dump saved to /sys/class/drm/card%d/error\n", dev->primary->index);
1323 warned = true;
1324 }
84734a04
MK
1325}
1326
1327void i915_error_state_get(struct drm_device *dev,
1328 struct i915_error_state_file_priv *error_priv)
1329{
1330 struct drm_i915_private *dev_priv = dev->dev_private;
84734a04 1331
5b254c59 1332 spin_lock_irq(&dev_priv->gpu_error.lock);
84734a04
MK
1333 error_priv->error = dev_priv->gpu_error.first_error;
1334 if (error_priv->error)
1335 kref_get(&error_priv->error->ref);
5b254c59 1336 spin_unlock_irq(&dev_priv->gpu_error.lock);
84734a04
MK
1337
1338}
1339
1340void i915_error_state_put(struct i915_error_state_file_priv *error_priv)
1341{
1342 if (error_priv->error)
1343 kref_put(&error_priv->error->ref, i915_error_state_free);
1344}
1345
1346void i915_destroy_error_state(struct drm_device *dev)
1347{
1348 struct drm_i915_private *dev_priv = dev->dev_private;
1349 struct drm_i915_error_state *error;
84734a04 1350
5b254c59 1351 spin_lock_irq(&dev_priv->gpu_error.lock);
84734a04
MK
1352 error = dev_priv->gpu_error.first_error;
1353 dev_priv->gpu_error.first_error = NULL;
5b254c59 1354 spin_unlock_irq(&dev_priv->gpu_error.lock);
84734a04
MK
1355
1356 if (error)
1357 kref_put(&error->ref, i915_error_state_free);
1358}
1359
0a4cd7c8 1360const char *i915_cache_level_str(struct drm_i915_private *i915, int type)
84734a04
MK
1361{
1362 switch (type) {
1363 case I915_CACHE_NONE: return " uncached";
0a4cd7c8 1364 case I915_CACHE_LLC: return HAS_LLC(i915) ? " LLC" : " snooped";
350ec881 1365 case I915_CACHE_L3_LLC: return " L3+LLC";
f56383cb 1366 case I915_CACHE_WT: return " WT";
84734a04
MK
1367 default: return "";
1368 }
1369}
1370
1371/* NB: please notice the memset */
1372void i915_get_extra_instdone(struct drm_device *dev, uint32_t *instdone)
1373{
1374 struct drm_i915_private *dev_priv = dev->dev_private;
1375 memset(instdone, 0, sizeof(*instdone) * I915_NUM_INSTDONE_REG);
1376
1377 switch (INTEL_INFO(dev)->gen) {
1378 case 2:
1379 case 3:
1380 instdone[0] = I915_READ(INSTDONE);
1381 break;
1382 case 4:
1383 case 5:
1384 case 6:
1385 instdone[0] = I915_READ(INSTDONE_I965);
1386 instdone[1] = I915_READ(INSTDONE1);
1387 break;
1388 default:
1389 WARN_ONCE(1, "Unsupported platform\n");
1390 case 7:
d0582ed2 1391 case 8:
2fcdcd8a 1392 case 9:
84734a04
MK
1393 instdone[0] = I915_READ(GEN7_INSTDONE_1);
1394 instdone[1] = I915_READ(GEN7_SC_INSTDONE);
1395 instdone[2] = I915_READ(GEN7_SAMPLER_INSTDONE);
1396 instdone[3] = I915_READ(GEN7_ROW_INSTDONE);
1397 break;
1398 }
1399}