2 * Copyright (c) 2008 Intel Corporation
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:
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
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
30 #include <generated/utsrelease.h>
31 #include <linux/stop_machine.h>
32 #include <linux/zlib.h>
33 #include <drm/drm_print.h>
35 #include "i915_gpu_error.h"
38 static inline const struct intel_engine_cs *
39 engine_lookup(const struct drm_i915_private *i915, unsigned int id)
41 if (id >= I915_NUM_ENGINES)
44 return i915->engine[id];
47 static inline const char *
48 __engine_name(const struct intel_engine_cs *engine)
50 return engine ? engine->name : "";
54 engine_name(const struct drm_i915_private *i915, unsigned int id)
56 return __engine_name(engine_lookup(i915, id));
59 static const char *tiling_flag(int tiling)
63 case I915_TILING_NONE: return "";
64 case I915_TILING_X: return " X";
65 case I915_TILING_Y: return " Y";
69 static const char *dirty_flag(int dirty)
71 return dirty ? " dirty" : "";
74 static const char *purgeable_flag(int purgeable)
76 return purgeable ? " purgeable" : "";
79 static bool __i915_error_ok(struct drm_i915_error_state_buf *e)
82 if (!e->err && WARN(e->bytes > (e->size - 1), "overflow")) {
87 if (e->bytes == e->size - 1 || e->err)
93 static bool __i915_error_seek(struct drm_i915_error_state_buf *e,
96 if (e->pos + len <= e->start) {
101 /* First vsnprintf needs to fit in its entirety for memmove */
102 if (len >= e->size) {
110 static void __i915_error_advance(struct drm_i915_error_state_buf *e,
113 /* If this is first printf in this window, adjust it so that
114 * start position matches start of the buffer
117 if (e->pos < e->start) {
118 const size_t off = e->start - e->pos;
120 /* Should not happen but be paranoid */
121 if (off > len || e->bytes) {
126 memmove(e->buf, e->buf + off, len - off);
127 e->bytes = len - off;
137 static void i915_error_vprintf(struct drm_i915_error_state_buf *e,
138 const char *f, va_list args)
142 if (!__i915_error_ok(e))
145 /* Seek the first printf which is hits start position */
146 if (e->pos < e->start) {
150 len = vsnprintf(NULL, 0, f, tmp);
153 if (!__i915_error_seek(e, len))
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;
161 __i915_error_advance(e, len);
164 static void i915_error_puts(struct drm_i915_error_state_buf *e,
169 if (!__i915_error_ok(e))
174 /* Seek the first printf which is hits start position */
175 if (e->pos < e->start) {
176 if (!__i915_error_seek(e, len))
180 if (len >= e->size - e->bytes)
181 len = e->size - e->bytes - 1;
182 memcpy(e->buf + e->bytes, str, len);
184 __i915_error_advance(e, len);
187 #define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
188 #define err_puts(e, s) i915_error_puts(e, s)
190 static void __i915_printfn_error(struct drm_printer *p, struct va_format *vaf)
192 i915_error_vprintf(p->arg, vaf->fmt, *vaf->va);
195 static inline struct drm_printer
196 i915_error_printer(struct drm_i915_error_state_buf *e)
198 struct drm_printer p = {
199 .printfn = __i915_printfn_error,
205 #ifdef CONFIG_DRM_I915_COMPRESS_ERROR
208 struct z_stream_s zstream;
212 static bool compress_init(struct compress *c)
214 struct z_stream_s *zstream = memset(&c->zstream, 0, sizeof(c->zstream));
217 kmalloc(zlib_deflate_workspacesize(MAX_WBITS, MAX_MEM_LEVEL),
218 GFP_ATOMIC | __GFP_NOWARN);
219 if (!zstream->workspace)
222 if (zlib_deflateInit(zstream, Z_DEFAULT_COMPRESSION) != Z_OK) {
223 kfree(zstream->workspace);
228 if (i915_has_memcpy_from_wc())
229 c->tmp = (void *)__get_free_page(GFP_ATOMIC | __GFP_NOWARN);
234 static int compress_page(struct compress *c,
236 struct drm_i915_error_object *dst)
238 struct z_stream_s *zstream = &c->zstream;
240 zstream->next_in = src;
241 if (c->tmp && i915_memcpy_from_wc(c->tmp, src, PAGE_SIZE))
242 zstream->next_in = c->tmp;
243 zstream->avail_in = PAGE_SIZE;
246 if (zstream->avail_out == 0) {
249 page = __get_free_page(GFP_ATOMIC | __GFP_NOWARN);
253 dst->pages[dst->page_count++] = (void *)page;
255 zstream->next_out = (void *)page;
256 zstream->avail_out = PAGE_SIZE;
259 if (zlib_deflate(zstream, Z_SYNC_FLUSH) != Z_OK)
261 } while (zstream->avail_in);
263 /* Fallback to uncompressed if we increase size? */
264 if (0 && zstream->total_out > zstream->total_in)
270 static void compress_fini(struct compress *c,
271 struct drm_i915_error_object *dst)
273 struct z_stream_s *zstream = &c->zstream;
276 zlib_deflate(zstream, Z_FINISH);
277 dst->unused = zstream->avail_out;
280 zlib_deflateEnd(zstream);
281 kfree(zstream->workspace);
284 free_page((unsigned long)c->tmp);
287 static void err_compression_marker(struct drm_i915_error_state_buf *m)
297 static bool compress_init(struct compress *c)
302 static int compress_page(struct compress *c,
304 struct drm_i915_error_object *dst)
309 page = __get_free_page(GFP_ATOMIC | __GFP_NOWARN);
314 if (!i915_memcpy_from_wc(ptr, src, PAGE_SIZE))
315 memcpy(ptr, src, PAGE_SIZE);
316 dst->pages[dst->page_count++] = ptr;
321 static void compress_fini(struct compress *c,
322 struct drm_i915_error_object *dst)
326 static void err_compression_marker(struct drm_i915_error_state_buf *m)
333 static void print_error_buffers(struct drm_i915_error_state_buf *m,
335 struct drm_i915_error_buffer *err,
340 err_printf(m, "%s [%d]:\n", name, count);
343 err_printf(m, " %08x_%08x %8u %02x %02x [ ",
344 upper_32_bits(err->gtt_offset),
345 lower_32_bits(err->gtt_offset),
349 for (i = 0; i < I915_NUM_ENGINES; i++)
350 err_printf(m, "%02x ", err->rseqno[i]);
352 err_printf(m, "] %02x", err->wseqno);
353 err_puts(m, tiling_flag(err->tiling));
354 err_puts(m, dirty_flag(err->dirty));
355 err_puts(m, purgeable_flag(err->purgeable));
356 err_puts(m, err->userptr ? " userptr" : "");
357 err_puts(m, err->engine != -1 ? " " : "");
358 err_puts(m, engine_name(m->i915, err->engine));
359 err_puts(m, i915_cache_level_str(m->i915, err->cache_level));
362 err_printf(m, " (name: %d)", err->name);
363 if (err->fence_reg != I915_FENCE_REG_NONE)
364 err_printf(m, " (fence: %d)", err->fence_reg);
371 static void error_print_instdone(struct drm_i915_error_state_buf *m,
372 const struct drm_i915_error_engine *ee)
377 err_printf(m, " INSTDONE: 0x%08x\n",
378 ee->instdone.instdone);
380 if (ee->engine_id != RCS || INTEL_GEN(m->i915) <= 3)
383 err_printf(m, " SC_INSTDONE: 0x%08x\n",
384 ee->instdone.slice_common);
386 if (INTEL_GEN(m->i915) <= 6)
389 for_each_instdone_slice_subslice(m->i915, slice, subslice)
390 err_printf(m, " SAMPLER_INSTDONE[%d][%d]: 0x%08x\n",
392 ee->instdone.sampler[slice][subslice]);
394 for_each_instdone_slice_subslice(m->i915, slice, subslice)
395 err_printf(m, " ROW_INSTDONE[%d][%d]: 0x%08x\n",
397 ee->instdone.row[slice][subslice]);
400 static const char *bannable(const struct drm_i915_error_context *ctx)
402 return ctx->bannable ? "" : " (unbannable)";
405 static void error_print_request(struct drm_i915_error_state_buf *m,
407 const struct drm_i915_error_request *erq,
408 const unsigned long epoch)
413 err_printf(m, "%s pid %d, ban score %d, seqno %8x:%08x, prio %d, emitted %dms, start %08x, head %08x, tail %08x\n",
414 prefix, erq->pid, erq->ban_score,
415 erq->context, erq->seqno, erq->sched_attr.priority,
416 jiffies_to_msecs(erq->jiffies - epoch),
417 erq->start, erq->head, erq->tail);
420 static void error_print_context(struct drm_i915_error_state_buf *m,
422 const struct drm_i915_error_context *ctx)
424 err_printf(m, "%s%s[%d] user_handle %d hw_id %d, prio %d, ban score %d%s guilty %d active %d\n",
425 header, ctx->comm, ctx->pid, ctx->handle, ctx->hw_id,
426 ctx->sched_attr.priority, ctx->ban_score, bannable(ctx),
427 ctx->guilty, ctx->active);
430 static void error_print_engine(struct drm_i915_error_state_buf *m,
431 const struct drm_i915_error_engine *ee,
432 const unsigned long epoch)
436 err_printf(m, "%s command stream:\n",
437 engine_name(m->i915, ee->engine_id));
438 err_printf(m, " IDLE?: %s\n", yesno(ee->idle));
439 err_printf(m, " START: 0x%08x\n", ee->start);
440 err_printf(m, " HEAD: 0x%08x [0x%08x]\n", ee->head, ee->rq_head);
441 err_printf(m, " TAIL: 0x%08x [0x%08x, 0x%08x]\n",
442 ee->tail, ee->rq_post, ee->rq_tail);
443 err_printf(m, " CTL: 0x%08x\n", ee->ctl);
444 err_printf(m, " MODE: 0x%08x\n", ee->mode);
445 err_printf(m, " HWS: 0x%08x\n", ee->hws);
446 err_printf(m, " ACTHD: 0x%08x %08x\n",
447 (u32)(ee->acthd>>32), (u32)ee->acthd);
448 err_printf(m, " IPEIR: 0x%08x\n", ee->ipeir);
449 err_printf(m, " IPEHR: 0x%08x\n", ee->ipehr);
451 error_print_instdone(m, ee);
453 if (ee->batchbuffer) {
454 u64 start = ee->batchbuffer->gtt_offset;
455 u64 end = start + ee->batchbuffer->gtt_size;
457 err_printf(m, " batch: [0x%08x_%08x, 0x%08x_%08x]\n",
458 upper_32_bits(start), lower_32_bits(start),
459 upper_32_bits(end), lower_32_bits(end));
461 if (INTEL_GEN(m->i915) >= 4) {
462 err_printf(m, " BBADDR: 0x%08x_%08x\n",
463 (u32)(ee->bbaddr>>32), (u32)ee->bbaddr);
464 err_printf(m, " BB_STATE: 0x%08x\n", ee->bbstate);
465 err_printf(m, " INSTPS: 0x%08x\n", ee->instps);
467 err_printf(m, " INSTPM: 0x%08x\n", ee->instpm);
468 err_printf(m, " FADDR: 0x%08x %08x\n", upper_32_bits(ee->faddr),
469 lower_32_bits(ee->faddr));
470 if (INTEL_GEN(m->i915) >= 6) {
471 err_printf(m, " RC PSMI: 0x%08x\n", ee->rc_psmi);
472 err_printf(m, " FAULT_REG: 0x%08x\n", ee->fault_reg);
473 err_printf(m, " SYNC_0: 0x%08x\n",
474 ee->semaphore_mboxes[0]);
475 err_printf(m, " SYNC_1: 0x%08x\n",
476 ee->semaphore_mboxes[1]);
477 if (HAS_VEBOX(m->i915))
478 err_printf(m, " SYNC_2: 0x%08x\n",
479 ee->semaphore_mboxes[2]);
481 if (USES_PPGTT(m->i915)) {
482 err_printf(m, " GFX_MODE: 0x%08x\n", ee->vm_info.gfx_mode);
484 if (INTEL_GEN(m->i915) >= 8) {
486 for (i = 0; i < 4; i++)
487 err_printf(m, " PDP%d: 0x%016llx\n",
488 i, ee->vm_info.pdp[i]);
490 err_printf(m, " PP_DIR_BASE: 0x%08x\n",
491 ee->vm_info.pp_dir_base);
494 err_printf(m, " seqno: 0x%08x\n", ee->seqno);
495 err_printf(m, " last_seqno: 0x%08x\n", ee->last_seqno);
496 err_printf(m, " waiting: %s\n", yesno(ee->waiting));
497 err_printf(m, " ring->head: 0x%08x\n", ee->cpu_ring_head);
498 err_printf(m, " ring->tail: 0x%08x\n", ee->cpu_ring_tail);
499 err_printf(m, " hangcheck stall: %s\n", yesno(ee->hangcheck_stalled));
500 err_printf(m, " hangcheck action: %s\n",
501 hangcheck_action_to_str(ee->hangcheck_action));
502 err_printf(m, " hangcheck action timestamp: %dms (%lu%s)\n",
503 jiffies_to_msecs(ee->hangcheck_timestamp - epoch),
504 ee->hangcheck_timestamp,
505 ee->hangcheck_timestamp == epoch ? "; epoch" : "");
506 err_printf(m, " engine reset count: %u\n", ee->reset_count);
508 for (n = 0; n < ee->num_ports; n++) {
509 err_printf(m, " ELSP[%d]:", n);
510 error_print_request(m, " ", &ee->execlist[n], epoch);
513 error_print_context(m, " Active context: ", &ee->context);
516 void i915_error_printf(struct drm_i915_error_state_buf *e, const char *f, ...)
521 i915_error_vprintf(e, f, args);
526 ascii85_encode_len(int len)
528 return DIV_ROUND_UP(len, 4);
532 ascii85_encode(u32 in, char *out)
541 out[i] = '!' + in % 85;
548 static void print_error_obj(struct drm_i915_error_state_buf *m,
549 struct intel_engine_cs *engine,
551 struct drm_i915_error_object *obj)
560 err_printf(m, "%s --- %s = 0x%08x %08x\n",
561 engine ? engine->name : "global", name,
562 upper_32_bits(obj->gtt_offset),
563 lower_32_bits(obj->gtt_offset));
566 err_compression_marker(m);
567 for (page = 0; page < obj->page_count; page++) {
571 if (page == obj->page_count - 1)
573 len = ascii85_encode_len(len);
575 for (i = 0; i < len; i++) {
576 if (ascii85_encode(obj->pages[page][i], out))
585 static void err_print_capabilities(struct drm_i915_error_state_buf *m,
586 const struct intel_device_info *info,
587 const struct intel_driver_caps *caps)
589 struct drm_printer p = i915_error_printer(m);
591 intel_device_info_dump_flags(info, &p);
592 intel_driver_caps_print(caps, &p);
593 intel_device_info_dump_topology(&info->sseu, &p);
596 static void err_print_params(struct drm_i915_error_state_buf *m,
597 const struct i915_params *params)
599 struct drm_printer p = i915_error_printer(m);
601 i915_params_dump(params, &p);
604 static void err_print_pciid(struct drm_i915_error_state_buf *m,
605 struct drm_i915_private *i915)
607 struct pci_dev *pdev = i915->drm.pdev;
609 err_printf(m, "PCI ID: 0x%04x\n", pdev->device);
610 err_printf(m, "PCI Revision: 0x%02x\n", pdev->revision);
611 err_printf(m, "PCI Subsystem: %04x:%04x\n",
612 pdev->subsystem_vendor,
613 pdev->subsystem_device);
616 static void err_print_uc(struct drm_i915_error_state_buf *m,
617 const struct i915_error_uc *error_uc)
619 struct drm_printer p = i915_error_printer(m);
620 const struct i915_gpu_state *error =
621 container_of(error_uc, typeof(*error), uc);
623 if (!error->device_info.has_guc)
626 intel_uc_fw_dump(&error_uc->guc_fw, &p);
627 intel_uc_fw_dump(&error_uc->huc_fw, &p);
628 print_error_obj(m, NULL, "GuC log buffer", error_uc->guc_log);
631 int i915_error_state_to_str(struct drm_i915_error_state_buf *m,
632 const struct i915_gpu_state *error)
634 struct drm_i915_private *dev_priv = m->i915;
635 struct drm_i915_error_object *obj;
636 struct timespec64 ts;
640 err_printf(m, "No error state collected\n");
644 if (*error->error_msg)
645 err_printf(m, "%s\n", error->error_msg);
646 err_printf(m, "Kernel: " UTS_RELEASE "\n");
647 ts = ktime_to_timespec64(error->time);
648 err_printf(m, "Time: %lld s %ld us\n",
649 (s64)ts.tv_sec, ts.tv_nsec / NSEC_PER_USEC);
650 ts = ktime_to_timespec64(error->boottime);
651 err_printf(m, "Boottime: %lld s %ld us\n",
652 (s64)ts.tv_sec, ts.tv_nsec / NSEC_PER_USEC);
653 ts = ktime_to_timespec64(error->uptime);
654 err_printf(m, "Uptime: %lld s %ld us\n",
655 (s64)ts.tv_sec, ts.tv_nsec / NSEC_PER_USEC);
656 err_printf(m, "Epoch: %lu jiffies (%u HZ)\n", error->epoch, HZ);
657 err_printf(m, "Capture: %lu jiffies; %d ms ago, %d ms after epoch\n",
659 jiffies_to_msecs(jiffies - error->capture),
660 jiffies_to_msecs(error->capture - error->epoch));
662 for (i = 0; i < ARRAY_SIZE(error->engine); i++) {
663 if (error->engine[i].hangcheck_stalled &&
664 error->engine[i].context.pid) {
665 err_printf(m, "Active process (on ring %s): %s [%d], score %d%s\n",
666 engine_name(m->i915, i),
667 error->engine[i].context.comm,
668 error->engine[i].context.pid,
669 error->engine[i].context.ban_score,
670 bannable(&error->engine[i].context));
673 err_printf(m, "Reset count: %u\n", error->reset_count);
674 err_printf(m, "Suspend count: %u\n", error->suspend_count);
675 err_printf(m, "Platform: %s\n", intel_platform_name(error->device_info.platform));
676 err_print_pciid(m, error->i915);
678 err_printf(m, "IOMMU enabled?: %d\n", error->iommu);
680 if (HAS_CSR(dev_priv)) {
681 struct intel_csr *csr = &dev_priv->csr;
683 err_printf(m, "DMC loaded: %s\n",
684 yesno(csr->dmc_payload != NULL));
685 err_printf(m, "DMC fw version: %d.%d\n",
686 CSR_VERSION_MAJOR(csr->version),
687 CSR_VERSION_MINOR(csr->version));
690 err_printf(m, "GT awake: %s\n", yesno(error->awake));
691 err_printf(m, "RPM wakelock: %s\n", yesno(error->wakelock));
692 err_printf(m, "PM suspended: %s\n", yesno(error->suspended));
693 err_printf(m, "EIR: 0x%08x\n", error->eir);
694 err_printf(m, "IER: 0x%08x\n", error->ier);
695 for (i = 0; i < error->ngtier; i++)
696 err_printf(m, "GTIER[%d]: 0x%08x\n", i, error->gtier[i]);
697 err_printf(m, "PGTBL_ER: 0x%08x\n", error->pgtbl_er);
698 err_printf(m, "FORCEWAKE: 0x%08x\n", error->forcewake);
699 err_printf(m, "DERRMR: 0x%08x\n", error->derrmr);
700 err_printf(m, "CCID: 0x%08x\n", error->ccid);
701 err_printf(m, "Missed interrupts: 0x%08lx\n", dev_priv->gpu_error.missed_irq_rings);
703 for (i = 0; i < error->nfence; i++)
704 err_printf(m, " fence[%d] = %08llx\n", i, error->fence[i]);
706 if (INTEL_GEN(dev_priv) >= 6) {
707 err_printf(m, "ERROR: 0x%08x\n", error->error);
709 if (INTEL_GEN(dev_priv) >= 8)
710 err_printf(m, "FAULT_TLB_DATA: 0x%08x 0x%08x\n",
711 error->fault_data1, error->fault_data0);
713 err_printf(m, "DONE_REG: 0x%08x\n", error->done_reg);
716 if (IS_GEN7(dev_priv))
717 err_printf(m, "ERR_INT: 0x%08x\n", error->err_int);
719 for (i = 0; i < ARRAY_SIZE(error->engine); i++) {
720 if (error->engine[i].engine_id != -1)
721 error_print_engine(m, &error->engine[i], error->epoch);
724 for (i = 0; i < ARRAY_SIZE(error->active_vm); i++) {
728 if (!error->active_vm[i])
731 len = scnprintf(buf, sizeof(buf), "Active (");
732 for (j = 0; j < ARRAY_SIZE(error->engine); j++) {
733 if (error->engine[j].vm != error->active_vm[i])
736 len += scnprintf(buf + len, sizeof(buf), "%s%s",
738 dev_priv->engine[j]->name);
741 scnprintf(buf + len, sizeof(buf), ")");
742 print_error_buffers(m, buf,
744 error->active_bo_count[i]);
747 print_error_buffers(m, "Pinned (global)",
749 error->pinned_bo_count);
751 for (i = 0; i < ARRAY_SIZE(error->engine); i++) {
752 const struct drm_i915_error_engine *ee = &error->engine[i];
754 obj = ee->batchbuffer;
756 err_puts(m, dev_priv->engine[i]->name);
758 err_printf(m, " (submitted by %s [%d], ctx %d [%d], score %d%s)",
763 ee->context.ban_score,
764 bannable(&ee->context));
765 err_printf(m, " --- gtt_offset = 0x%08x %08x\n",
766 upper_32_bits(obj->gtt_offset),
767 lower_32_bits(obj->gtt_offset));
768 print_error_obj(m, dev_priv->engine[i], NULL, obj);
771 for (j = 0; j < ee->user_bo_count; j++)
772 print_error_obj(m, dev_priv->engine[i],
773 "user", ee->user_bo[j]);
775 if (ee->num_requests) {
776 err_printf(m, "%s --- %d requests\n",
777 dev_priv->engine[i]->name,
779 for (j = 0; j < ee->num_requests; j++)
780 error_print_request(m, " ",
785 if (IS_ERR(ee->waiters)) {
786 err_printf(m, "%s --- ? waiters [unable to acquire spinlock]\n",
787 dev_priv->engine[i]->name);
788 } else if (ee->num_waiters) {
789 err_printf(m, "%s --- %d waiters\n",
790 dev_priv->engine[i]->name,
792 for (j = 0; j < ee->num_waiters; j++) {
793 err_printf(m, " seqno 0x%08x for %s [%d]\n",
794 ee->waiters[j].seqno,
800 print_error_obj(m, dev_priv->engine[i],
801 "ringbuffer", ee->ringbuffer);
803 print_error_obj(m, dev_priv->engine[i],
804 "HW Status", ee->hws_page);
806 print_error_obj(m, dev_priv->engine[i],
807 "HW context", ee->ctx);
809 print_error_obj(m, dev_priv->engine[i],
810 "WA context", ee->wa_ctx);
812 print_error_obj(m, dev_priv->engine[i],
813 "WA batchbuffer", ee->wa_batchbuffer);
815 print_error_obj(m, dev_priv->engine[i],
816 "NULL context", ee->default_state);
820 intel_overlay_print_error_state(m, error->overlay);
823 intel_display_print_error_state(m, error->display);
825 err_print_capabilities(m, &error->device_info, &error->driver_caps);
826 err_print_params(m, &error->params);
827 err_print_uc(m, &error->uc);
829 if (m->bytes == 0 && m->err)
835 int i915_error_state_buf_init(struct drm_i915_error_state_buf *ebuf,
836 struct drm_i915_private *i915,
837 size_t count, loff_t pos)
839 memset(ebuf, 0, sizeof(*ebuf));
842 /* We need to have enough room to store any i915_error_state printf
843 * so that we can move it to start position.
845 ebuf->size = count + 1 > PAGE_SIZE ? count + 1 : PAGE_SIZE;
846 ebuf->buf = kmalloc(ebuf->size,
847 GFP_KERNEL | __GFP_NORETRY | __GFP_NOWARN);
849 if (ebuf->buf == NULL) {
850 ebuf->size = PAGE_SIZE;
851 ebuf->buf = kmalloc(ebuf->size, GFP_KERNEL);
854 if (ebuf->buf == NULL) {
856 ebuf->buf = kmalloc(ebuf->size, GFP_KERNEL);
859 if (ebuf->buf == NULL)
867 static void i915_error_object_free(struct drm_i915_error_object *obj)
874 for (page = 0; page < obj->page_count; page++)
875 free_page((unsigned long)obj->pages[page]);
880 static __always_inline void free_param(const char *type, void *x)
882 if (!__builtin_strcmp(type, "char *"))
886 static void cleanup_params(struct i915_gpu_state *error)
888 #define FREE(T, x, ...) free_param(#T, &error->params.x);
889 I915_PARAMS_FOR_EACH(FREE);
893 static void cleanup_uc_state(struct i915_gpu_state *error)
895 struct i915_error_uc *error_uc = &error->uc;
897 kfree(error_uc->guc_fw.path);
898 kfree(error_uc->huc_fw.path);
899 i915_error_object_free(error_uc->guc_log);
902 void __i915_gpu_state_free(struct kref *error_ref)
904 struct i915_gpu_state *error =
905 container_of(error_ref, typeof(*error), ref);
908 for (i = 0; i < ARRAY_SIZE(error->engine); i++) {
909 struct drm_i915_error_engine *ee = &error->engine[i];
911 for (j = 0; j < ee->user_bo_count; j++)
912 i915_error_object_free(ee->user_bo[j]);
915 i915_error_object_free(ee->batchbuffer);
916 i915_error_object_free(ee->wa_batchbuffer);
917 i915_error_object_free(ee->ringbuffer);
918 i915_error_object_free(ee->hws_page);
919 i915_error_object_free(ee->ctx);
920 i915_error_object_free(ee->wa_ctx);
923 if (!IS_ERR_OR_NULL(ee->waiters))
927 for (i = 0; i < ARRAY_SIZE(error->active_bo); i++)
928 kfree(error->active_bo[i]);
929 kfree(error->pinned_bo);
931 kfree(error->overlay);
932 kfree(error->display);
934 cleanup_params(error);
935 cleanup_uc_state(error);
940 static struct drm_i915_error_object *
941 i915_error_object_create(struct drm_i915_private *i915,
942 struct i915_vma *vma)
944 struct i915_ggtt *ggtt = &i915->ggtt;
945 const u64 slot = ggtt->error_capture.start;
946 struct drm_i915_error_object *dst;
947 struct compress compress;
948 unsigned long num_pages;
949 struct sgt_iter iter;
955 num_pages = min_t(u64, vma->size, vma->obj->base.size) >> PAGE_SHIFT;
956 num_pages = DIV_ROUND_UP(10 * num_pages, 8); /* worstcase zlib growth */
957 dst = kmalloc(sizeof(*dst) + num_pages * sizeof(u32 *),
958 GFP_ATOMIC | __GFP_NOWARN);
962 dst->gtt_offset = vma->node.start;
963 dst->gtt_size = vma->node.size;
967 if (!compress_init(&compress)) {
972 for_each_sgt_dma(dma, iter, vma->pages) {
976 ggtt->base.insert_page(&ggtt->base, dma, slot,
979 s = io_mapping_map_atomic_wc(&ggtt->iomap, slot);
980 ret = compress_page(&compress, (void __force *)s, dst);
981 io_mapping_unmap_atomic(s);
989 while (dst->page_count--)
990 free_page((unsigned long)dst->pages[dst->page_count]);
995 compress_fini(&compress, dst);
996 ggtt->base.clear_range(&ggtt->base, slot, PAGE_SIZE);
1000 /* The error capture is special as tries to run underneath the normal
1001 * locking rules - so we use the raw version of the i915_gem_active lookup.
1003 static inline uint32_t
1004 __active_get_seqno(struct i915_gem_active *active)
1006 struct i915_request *request;
1008 request = __i915_gem_active_peek(active);
1009 return request ? request->global_seqno : 0;
1013 __active_get_engine_id(struct i915_gem_active *active)
1015 struct i915_request *request;
1017 request = __i915_gem_active_peek(active);
1018 return request ? request->engine->id : -1;
1021 static void capture_bo(struct drm_i915_error_buffer *err,
1022 struct i915_vma *vma)
1024 struct drm_i915_gem_object *obj = vma->obj;
1027 err->size = obj->base.size;
1028 err->name = obj->base.name;
1030 for (i = 0; i < I915_NUM_ENGINES; i++)
1031 err->rseqno[i] = __active_get_seqno(&vma->last_read[i]);
1032 err->wseqno = __active_get_seqno(&obj->frontbuffer_write);
1033 err->engine = __active_get_engine_id(&obj->frontbuffer_write);
1035 err->gtt_offset = vma->node.start;
1036 err->read_domains = obj->read_domains;
1037 err->write_domain = obj->write_domain;
1038 err->fence_reg = vma->fence ? vma->fence->id : -1;
1039 err->tiling = i915_gem_object_get_tiling(obj);
1040 err->dirty = obj->mm.dirty;
1041 err->purgeable = obj->mm.madv != I915_MADV_WILLNEED;
1042 err->userptr = obj->userptr.mm != NULL;
1043 err->cache_level = obj->cache_level;
1046 static u32 capture_error_bo(struct drm_i915_error_buffer *err,
1047 int count, struct list_head *head,
1050 struct i915_vma *vma;
1053 list_for_each_entry(vma, head, vm_link) {
1054 if (pinned_only && !i915_vma_is_pinned(vma))
1057 capture_bo(err++, vma);
1065 /* Generate a semi-unique error code. The code is not meant to have meaning, The
1066 * code's only purpose is to try to prevent false duplicated bug reports by
1067 * grossly estimating a GPU error state.
1069 * TODO Ideally, hashing the batchbuffer would be a very nice way to determine
1070 * the hang if we could strip the GTT offset information from it.
1072 * It's only a small step better than a random number in its current form.
1074 static uint32_t i915_error_generate_code(struct drm_i915_private *dev_priv,
1075 struct i915_gpu_state *error,
1078 uint32_t error_code = 0;
1081 /* IPEHR would be an ideal way to detect errors, as it's the gross
1082 * measure of "the command that hung." However, has some very common
1083 * synchronization commands which almost always appear in the case
1084 * strictly a client bug. Use instdone to differentiate those some.
1086 for (i = 0; i < I915_NUM_ENGINES; i++) {
1087 if (error->engine[i].hangcheck_stalled) {
1091 return error->engine[i].ipehr ^
1092 error->engine[i].instdone.instdone;
1099 static void gem_record_fences(struct i915_gpu_state *error)
1101 struct drm_i915_private *dev_priv = error->i915;
1104 if (INTEL_GEN(dev_priv) >= 6) {
1105 for (i = 0; i < dev_priv->num_fence_regs; i++)
1106 error->fence[i] = I915_READ64(FENCE_REG_GEN6_LO(i));
1107 } else if (INTEL_GEN(dev_priv) >= 4) {
1108 for (i = 0; i < dev_priv->num_fence_regs; i++)
1109 error->fence[i] = I915_READ64(FENCE_REG_965_LO(i));
1111 for (i = 0; i < dev_priv->num_fence_regs; i++)
1112 error->fence[i] = I915_READ(FENCE_REG(i));
1117 static void gen6_record_semaphore_state(struct intel_engine_cs *engine,
1118 struct drm_i915_error_engine *ee)
1120 struct drm_i915_private *dev_priv = engine->i915;
1122 ee->semaphore_mboxes[0] = I915_READ(RING_SYNC_0(engine->mmio_base));
1123 ee->semaphore_mboxes[1] = I915_READ(RING_SYNC_1(engine->mmio_base));
1124 if (HAS_VEBOX(dev_priv))
1125 ee->semaphore_mboxes[2] =
1126 I915_READ(RING_SYNC_2(engine->mmio_base));
1129 static void error_record_engine_waiters(struct intel_engine_cs *engine,
1130 struct drm_i915_error_engine *ee)
1132 struct intel_breadcrumbs *b = &engine->breadcrumbs;
1133 struct drm_i915_error_waiter *waiter;
1137 ee->num_waiters = 0;
1140 if (RB_EMPTY_ROOT(&b->waiters))
1143 if (!spin_trylock_irq(&b->rb_lock)) {
1144 ee->waiters = ERR_PTR(-EDEADLK);
1149 for (rb = rb_first(&b->waiters); rb != NULL; rb = rb_next(rb))
1151 spin_unlock_irq(&b->rb_lock);
1155 waiter = kmalloc_array(count,
1156 sizeof(struct drm_i915_error_waiter),
1161 if (!spin_trylock_irq(&b->rb_lock)) {
1163 ee->waiters = ERR_PTR(-EDEADLK);
1167 ee->waiters = waiter;
1168 for (rb = rb_first(&b->waiters); rb; rb = rb_next(rb)) {
1169 struct intel_wait *w = rb_entry(rb, typeof(*w), node);
1171 strcpy(waiter->comm, w->tsk->comm);
1172 waiter->pid = w->tsk->pid;
1173 waiter->seqno = w->seqno;
1176 if (++ee->num_waiters == count)
1179 spin_unlock_irq(&b->rb_lock);
1182 static void error_record_engine_registers(struct i915_gpu_state *error,
1183 struct intel_engine_cs *engine,
1184 struct drm_i915_error_engine *ee)
1186 struct drm_i915_private *dev_priv = engine->i915;
1188 if (INTEL_GEN(dev_priv) >= 6) {
1189 ee->rc_psmi = I915_READ(RING_PSMI_CTL(engine->mmio_base));
1190 if (INTEL_GEN(dev_priv) >= 8) {
1191 ee->fault_reg = I915_READ(GEN8_RING_FAULT_REG);
1193 gen6_record_semaphore_state(engine, ee);
1194 ee->fault_reg = I915_READ(RING_FAULT_REG(engine));
1198 if (INTEL_GEN(dev_priv) >= 4) {
1199 ee->faddr = I915_READ(RING_DMA_FADD(engine->mmio_base));
1200 ee->ipeir = I915_READ(RING_IPEIR(engine->mmio_base));
1201 ee->ipehr = I915_READ(RING_IPEHR(engine->mmio_base));
1202 ee->instps = I915_READ(RING_INSTPS(engine->mmio_base));
1203 ee->bbaddr = I915_READ(RING_BBADDR(engine->mmio_base));
1204 if (INTEL_GEN(dev_priv) >= 8) {
1205 ee->faddr |= (u64) I915_READ(RING_DMA_FADD_UDW(engine->mmio_base)) << 32;
1206 ee->bbaddr |= (u64) I915_READ(RING_BBADDR_UDW(engine->mmio_base)) << 32;
1208 ee->bbstate = I915_READ(RING_BBSTATE(engine->mmio_base));
1210 ee->faddr = I915_READ(DMA_FADD_I8XX);
1211 ee->ipeir = I915_READ(IPEIR);
1212 ee->ipehr = I915_READ(IPEHR);
1215 intel_engine_get_instdone(engine, &ee->instdone);
1217 ee->waiting = intel_engine_has_waiter(engine);
1218 ee->instpm = I915_READ(RING_INSTPM(engine->mmio_base));
1219 ee->acthd = intel_engine_get_active_head(engine);
1220 ee->seqno = intel_engine_get_seqno(engine);
1221 ee->last_seqno = intel_engine_last_submit(engine);
1222 ee->start = I915_READ_START(engine);
1223 ee->head = I915_READ_HEAD(engine);
1224 ee->tail = I915_READ_TAIL(engine);
1225 ee->ctl = I915_READ_CTL(engine);
1226 if (INTEL_GEN(dev_priv) > 2)
1227 ee->mode = I915_READ_MODE(engine);
1229 if (!HWS_NEEDS_PHYSICAL(dev_priv)) {
1232 if (IS_GEN7(dev_priv)) {
1233 switch (engine->id) {
1236 mmio = RENDER_HWS_PGA_GEN7;
1239 mmio = BLT_HWS_PGA_GEN7;
1242 mmio = BSD_HWS_PGA_GEN7;
1245 mmio = VEBOX_HWS_PGA_GEN7;
1248 } else if (IS_GEN6(engine->i915)) {
1249 mmio = RING_HWS_PGA_GEN6(engine->mmio_base);
1251 /* XXX: gen8 returns to sanity */
1252 mmio = RING_HWS_PGA(engine->mmio_base);
1255 ee->hws = I915_READ(mmio);
1258 ee->idle = intel_engine_is_idle(engine);
1259 ee->hangcheck_timestamp = engine->hangcheck.action_timestamp;
1260 ee->hangcheck_action = engine->hangcheck.action;
1261 ee->hangcheck_stalled = engine->hangcheck.stalled;
1262 ee->reset_count = i915_reset_engine_count(&dev_priv->gpu_error,
1265 if (USES_PPGTT(dev_priv)) {
1268 ee->vm_info.gfx_mode = I915_READ(RING_MODE_GEN7(engine));
1270 if (IS_GEN6(dev_priv))
1271 ee->vm_info.pp_dir_base =
1272 I915_READ(RING_PP_DIR_BASE_READ(engine));
1273 else if (IS_GEN7(dev_priv))
1274 ee->vm_info.pp_dir_base =
1275 I915_READ(RING_PP_DIR_BASE(engine));
1276 else if (INTEL_GEN(dev_priv) >= 8)
1277 for (i = 0; i < 4; i++) {
1278 ee->vm_info.pdp[i] =
1279 I915_READ(GEN8_RING_PDP_UDW(engine, i));
1280 ee->vm_info.pdp[i] <<= 32;
1281 ee->vm_info.pdp[i] |=
1282 I915_READ(GEN8_RING_PDP_LDW(engine, i));
1287 static void record_request(struct i915_request *request,
1288 struct drm_i915_error_request *erq)
1290 erq->context = request->ctx->hw_id;
1291 erq->sched_attr = request->sched.attr;
1292 erq->ban_score = atomic_read(&request->ctx->ban_score);
1293 erq->seqno = request->global_seqno;
1294 erq->jiffies = request->emitted_jiffies;
1295 erq->start = i915_ggtt_offset(request->ring->vma);
1296 erq->head = request->head;
1297 erq->tail = request->tail;
1300 erq->pid = request->ctx->pid ? pid_nr(request->ctx->pid) : 0;
1304 static void engine_record_requests(struct intel_engine_cs *engine,
1305 struct i915_request *first,
1306 struct drm_i915_error_engine *ee)
1308 struct i915_request *request;
1313 list_for_each_entry_from(request, &engine->timeline.requests, link)
1318 ee->requests = kcalloc(count, sizeof(*ee->requests), GFP_ATOMIC);
1322 ee->num_requests = count;
1326 list_for_each_entry_from(request, &engine->timeline.requests, link) {
1327 if (count >= ee->num_requests) {
1329 * If the ring request list was changed in
1330 * between the point where the error request
1331 * list was created and dimensioned and this
1332 * point then just exit early to avoid crashes.
1334 * We don't need to communicate that the
1335 * request list changed state during error
1336 * state capture and that the error state is
1337 * slightly incorrect as a consequence since we
1338 * are typically only interested in the request
1339 * list state at the point of error state
1340 * capture, not in any changes happening during
1346 record_request(request, &ee->requests[count++]);
1348 ee->num_requests = count;
1351 static void error_record_engine_execlists(struct intel_engine_cs *engine,
1352 struct drm_i915_error_engine *ee)
1354 const struct intel_engine_execlists * const execlists = &engine->execlists;
1357 for (n = 0; n < execlists_num_ports(execlists); n++) {
1358 struct i915_request *rq = port_request(&execlists->port[n]);
1363 record_request(rq, &ee->execlist[n]);
1369 static void record_context(struct drm_i915_error_context *e,
1370 struct i915_gem_context *ctx)
1373 struct task_struct *task;
1376 task = pid_task(ctx->pid, PIDTYPE_PID);
1378 strcpy(e->comm, task->comm);
1384 e->handle = ctx->user_handle;
1385 e->hw_id = ctx->hw_id;
1386 e->sched_attr = ctx->sched;
1387 e->ban_score = atomic_read(&ctx->ban_score);
1388 e->bannable = i915_gem_context_is_bannable(ctx);
1389 e->guilty = atomic_read(&ctx->guilty_count);
1390 e->active = atomic_read(&ctx->active_count);
1393 static void request_record_user_bo(struct i915_request *request,
1394 struct drm_i915_error_engine *ee)
1396 struct i915_capture_list *c;
1397 struct drm_i915_error_object **bo;
1401 for (c = request->capture_list; c; c = c->next)
1406 bo = kcalloc(count, sizeof(*bo), GFP_ATOMIC);
1411 for (c = request->capture_list; c; c = c->next) {
1412 bo[count] = i915_error_object_create(request->i915, c->vma);
1419 ee->user_bo_count = count;
1422 static struct drm_i915_error_object *
1423 capture_object(struct drm_i915_private *dev_priv,
1424 struct drm_i915_gem_object *obj)
1426 if (obj && i915_gem_object_has_pages(obj)) {
1427 struct i915_vma fake = {
1428 .node = { .start = U64_MAX, .size = obj->base.size },
1429 .size = obj->base.size,
1430 .pages = obj->mm.pages,
1434 return i915_error_object_create(dev_priv, &fake);
1440 static void gem_record_rings(struct i915_gpu_state *error)
1442 struct drm_i915_private *i915 = error->i915;
1443 struct i915_ggtt *ggtt = &i915->ggtt;
1446 for (i = 0; i < I915_NUM_ENGINES; i++) {
1447 struct intel_engine_cs *engine = i915->engine[i];
1448 struct drm_i915_error_engine *ee = &error->engine[i];
1449 struct i915_request *request;
1458 error_record_engine_registers(error, engine, ee);
1459 error_record_engine_waiters(engine, ee);
1460 error_record_engine_execlists(engine, ee);
1462 request = i915_gem_find_active_request(engine);
1464 struct intel_ring *ring;
1466 ee->vm = request->ctx->ppgtt ?
1467 &request->ctx->ppgtt->base : &ggtt->base;
1469 record_context(&ee->context, request->ctx);
1471 /* We need to copy these to an anonymous buffer
1472 * as the simplest method to avoid being overwritten
1476 i915_error_object_create(i915, request->batch);
1478 if (HAS_BROKEN_CS_TLB(i915))
1479 ee->wa_batchbuffer =
1480 i915_error_object_create(i915,
1482 request_record_user_bo(request, ee);
1485 i915_error_object_create(i915,
1486 to_intel_context(request->ctx,
1490 i915_gem_context_no_error_capture(request->ctx);
1492 ee->rq_head = request->head;
1493 ee->rq_post = request->postfix;
1494 ee->rq_tail = request->tail;
1496 ring = request->ring;
1497 ee->cpu_ring_head = ring->head;
1498 ee->cpu_ring_tail = ring->tail;
1500 i915_error_object_create(i915, ring->vma);
1502 engine_record_requests(engine, request, ee);
1506 i915_error_object_create(i915,
1507 engine->status_page.vma);
1509 ee->wa_ctx = i915_error_object_create(i915, engine->wa_ctx.vma);
1511 ee->default_state = capture_object(i915, engine->default_state);
1515 static void gem_capture_vm(struct i915_gpu_state *error,
1516 struct i915_address_space *vm,
1519 struct drm_i915_error_buffer *active_bo;
1520 struct i915_vma *vma;
1524 list_for_each_entry(vma, &vm->active_list, vm_link)
1529 active_bo = kcalloc(count, sizeof(*active_bo), GFP_ATOMIC);
1531 count = capture_error_bo(active_bo, count, &vm->active_list, false);
1535 error->active_vm[idx] = vm;
1536 error->active_bo[idx] = active_bo;
1537 error->active_bo_count[idx] = count;
1540 static void capture_active_buffers(struct i915_gpu_state *error)
1544 BUILD_BUG_ON(ARRAY_SIZE(error->engine) > ARRAY_SIZE(error->active_bo));
1545 BUILD_BUG_ON(ARRAY_SIZE(error->active_bo) != ARRAY_SIZE(error->active_vm));
1546 BUILD_BUG_ON(ARRAY_SIZE(error->active_bo) != ARRAY_SIZE(error->active_bo_count));
1548 /* Scan each engine looking for unique active contexts/vm */
1549 for (i = 0; i < ARRAY_SIZE(error->engine); i++) {
1550 struct drm_i915_error_engine *ee = &error->engine[i];
1557 for (j = 0; j < i && !found; j++)
1558 found = error->engine[j].vm == ee->vm;
1560 gem_capture_vm(error, ee->vm, cnt++);
1564 static void capture_pinned_buffers(struct i915_gpu_state *error)
1566 struct i915_address_space *vm = &error->i915->ggtt.base;
1567 struct drm_i915_error_buffer *bo;
1568 struct i915_vma *vma;
1569 int count_inactive, count_active;
1572 list_for_each_entry(vma, &vm->active_list, vm_link)
1576 list_for_each_entry(vma, &vm->inactive_list, vm_link)
1580 if (count_inactive + count_active)
1581 bo = kcalloc(count_inactive + count_active,
1582 sizeof(*bo), GFP_ATOMIC);
1586 count_inactive = capture_error_bo(bo, count_inactive,
1587 &vm->active_list, true);
1588 count_active = capture_error_bo(bo + count_inactive, count_active,
1589 &vm->inactive_list, true);
1590 error->pinned_bo_count = count_inactive + count_active;
1591 error->pinned_bo = bo;
1594 static void capture_uc_state(struct i915_gpu_state *error)
1596 struct drm_i915_private *i915 = error->i915;
1597 struct i915_error_uc *error_uc = &error->uc;
1599 /* Capturing uC state won't be useful if there is no GuC */
1600 if (!error->device_info.has_guc)
1603 error_uc->guc_fw = i915->guc.fw;
1604 error_uc->huc_fw = i915->huc.fw;
1606 /* Non-default firmware paths will be specified by the modparam.
1607 * As modparams are generally accesible from the userspace make
1608 * explicit copies of the firmware paths.
1610 error_uc->guc_fw.path = kstrdup(i915->guc.fw.path, GFP_ATOMIC);
1611 error_uc->huc_fw.path = kstrdup(i915->huc.fw.path, GFP_ATOMIC);
1612 error_uc->guc_log = i915_error_object_create(i915, i915->guc.log.vma);
1615 /* Capture all registers which don't fit into another category. */
1616 static void capture_reg_state(struct i915_gpu_state *error)
1618 struct drm_i915_private *dev_priv = error->i915;
1621 /* General organization
1622 * 1. Registers specific to a single generation
1623 * 2. Registers which belong to multiple generations
1624 * 3. Feature specific registers.
1625 * 4. Everything else
1626 * Please try to follow the order.
1629 /* 1: Registers specific to a single generation */
1630 if (IS_VALLEYVIEW(dev_priv)) {
1631 error->gtier[0] = I915_READ(GTIER);
1632 error->ier = I915_READ(VLV_IER);
1633 error->forcewake = I915_READ_FW(FORCEWAKE_VLV);
1636 if (IS_GEN7(dev_priv))
1637 error->err_int = I915_READ(GEN7_ERR_INT);
1639 if (INTEL_GEN(dev_priv) >= 8) {
1640 error->fault_data0 = I915_READ(GEN8_FAULT_TLB_DATA0);
1641 error->fault_data1 = I915_READ(GEN8_FAULT_TLB_DATA1);
1644 if (IS_GEN6(dev_priv)) {
1645 error->forcewake = I915_READ_FW(FORCEWAKE);
1646 error->gab_ctl = I915_READ(GAB_CTL);
1647 error->gfx_mode = I915_READ(GFX_MODE);
1650 /* 2: Registers which belong to multiple generations */
1651 if (INTEL_GEN(dev_priv) >= 7)
1652 error->forcewake = I915_READ_FW(FORCEWAKE_MT);
1654 if (INTEL_GEN(dev_priv) >= 6) {
1655 error->derrmr = I915_READ(DERRMR);
1656 error->error = I915_READ(ERROR_GEN6);
1657 error->done_reg = I915_READ(DONE_REG);
1660 if (INTEL_GEN(dev_priv) >= 5)
1661 error->ccid = I915_READ(CCID);
1663 /* 3: Feature specific registers */
1664 if (IS_GEN6(dev_priv) || IS_GEN7(dev_priv)) {
1665 error->gam_ecochk = I915_READ(GAM_ECOCHK);
1666 error->gac_eco = I915_READ(GAC_ECO_BITS);
1669 /* 4: Everything else */
1670 if (INTEL_GEN(dev_priv) >= 8) {
1671 error->ier = I915_READ(GEN8_DE_MISC_IER);
1672 for (i = 0; i < 4; i++)
1673 error->gtier[i] = I915_READ(GEN8_GT_IER(i));
1675 } else if (HAS_PCH_SPLIT(dev_priv)) {
1676 error->ier = I915_READ(DEIER);
1677 error->gtier[0] = I915_READ(GTIER);
1679 } else if (IS_GEN2(dev_priv)) {
1680 error->ier = I915_READ16(IER);
1681 } else if (!IS_VALLEYVIEW(dev_priv)) {
1682 error->ier = I915_READ(IER);
1684 error->eir = I915_READ(EIR);
1685 error->pgtbl_er = I915_READ(PGTBL_ER);
1688 static void i915_error_capture_msg(struct drm_i915_private *dev_priv,
1689 struct i915_gpu_state *error,
1691 const char *error_msg)
1694 int engine_id = -1, len;
1696 ecode = i915_error_generate_code(dev_priv, error, &engine_id);
1698 len = scnprintf(error->error_msg, sizeof(error->error_msg),
1699 "GPU HANG: ecode %d:%d:0x%08x",
1700 INTEL_GEN(dev_priv), engine_id, ecode);
1702 if (engine_id != -1 && error->engine[engine_id].context.pid)
1703 len += scnprintf(error->error_msg + len,
1704 sizeof(error->error_msg) - len,
1706 error->engine[engine_id].context.comm,
1707 error->engine[engine_id].context.pid);
1709 scnprintf(error->error_msg + len, sizeof(error->error_msg) - len,
1710 ", reason: %s, action: %s",
1712 engine_mask ? "reset" : "continue");
1715 static void capture_gen_state(struct i915_gpu_state *error)
1717 struct drm_i915_private *i915 = error->i915;
1719 error->awake = i915->gt.awake;
1720 error->wakelock = atomic_read(&i915->runtime_pm.wakeref_count);
1721 error->suspended = i915->runtime_pm.suspended;
1724 #ifdef CONFIG_INTEL_IOMMU
1725 error->iommu = intel_iommu_gfx_mapped;
1727 error->reset_count = i915_reset_count(&i915->gpu_error);
1728 error->suspend_count = i915->suspend_count;
1730 memcpy(&error->device_info,
1732 sizeof(error->device_info));
1733 error->driver_caps = i915->caps;
1736 static __always_inline void dup_param(const char *type, void *x)
1738 if (!__builtin_strcmp(type, "char *"))
1739 *(void **)x = kstrdup(*(void **)x, GFP_ATOMIC);
1742 static void capture_params(struct i915_gpu_state *error)
1744 error->params = i915_modparams;
1745 #define DUP(T, x, ...) dup_param(#T, &error->params.x);
1746 I915_PARAMS_FOR_EACH(DUP);
1750 static unsigned long capture_find_epoch(const struct i915_gpu_state *error)
1752 unsigned long epoch = error->capture;
1755 for (i = 0; i < ARRAY_SIZE(error->engine); i++) {
1756 const struct drm_i915_error_engine *ee = &error->engine[i];
1758 if (ee->hangcheck_stalled &&
1759 time_before(ee->hangcheck_timestamp, epoch))
1760 epoch = ee->hangcheck_timestamp;
1766 static int capture(void *data)
1768 struct i915_gpu_state *error = data;
1770 error->time = ktime_get_real();
1771 error->boottime = ktime_get_boottime();
1772 error->uptime = ktime_sub(ktime_get(),
1773 error->i915->gt.last_init_time);
1774 error->capture = jiffies;
1776 capture_params(error);
1777 capture_gen_state(error);
1778 capture_uc_state(error);
1779 capture_reg_state(error);
1780 gem_record_fences(error);
1781 gem_record_rings(error);
1782 capture_active_buffers(error);
1783 capture_pinned_buffers(error);
1785 error->overlay = intel_overlay_capture_error_state(error->i915);
1786 error->display = intel_display_capture_error_state(error->i915);
1788 error->epoch = capture_find_epoch(error);
1793 #define DAY_AS_SECONDS(x) (24 * 60 * 60 * (x))
1795 struct i915_gpu_state *
1796 i915_capture_gpu_state(struct drm_i915_private *i915)
1798 struct i915_gpu_state *error;
1800 error = kzalloc(sizeof(*error), GFP_ATOMIC);
1804 kref_init(&error->ref);
1807 stop_machine(capture, error, NULL);
1813 * i915_capture_error_state - capture an error record for later analysis
1814 * @i915: i915 device
1815 * @engine_mask: the mask of engines triggering the hang
1816 * @error_msg: a message to insert into the error capture header
1818 * Should be called when an error is detected (either a hang or an error
1819 * interrupt) to capture error state from the time of the error. Fills
1820 * out a structure which becomes available in debugfs for user level tools
1823 void i915_capture_error_state(struct drm_i915_private *i915,
1825 const char *error_msg)
1828 struct i915_gpu_state *error;
1829 unsigned long flags;
1831 if (!i915_modparams.error_capture)
1834 if (READ_ONCE(i915->gpu_error.first_error))
1837 error = i915_capture_gpu_state(i915);
1839 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
1843 i915_error_capture_msg(i915, error, engine_mask, error_msg);
1844 DRM_INFO("%s\n", error->error_msg);
1846 if (!error->simulated) {
1847 spin_lock_irqsave(&i915->gpu_error.lock, flags);
1848 if (!i915->gpu_error.first_error) {
1849 i915->gpu_error.first_error = error;
1852 spin_unlock_irqrestore(&i915->gpu_error.lock, flags);
1856 __i915_gpu_state_free(&error->ref);
1861 ktime_get_real_seconds() - DRIVER_TIMESTAMP < DAY_AS_SECONDS(180)) {
1862 DRM_INFO("GPU hangs can indicate a bug anywhere in the entire gfx stack, including userspace.\n");
1863 DRM_INFO("Please file a _new_ bug report on bugs.freedesktop.org against DRI -> DRM/Intel\n");
1864 DRM_INFO("drm/i915 developers can then reassign to the right component if it's not a kernel issue.\n");
1865 DRM_INFO("The gpu crash dump is required to analyze gpu hangs, so please always attach it.\n");
1866 DRM_INFO("GPU crash dump saved to /sys/class/drm/card%d/error\n",
1867 i915->drm.primary->index);
1872 struct i915_gpu_state *
1873 i915_first_error_state(struct drm_i915_private *i915)
1875 struct i915_gpu_state *error;
1877 spin_lock_irq(&i915->gpu_error.lock);
1878 error = i915->gpu_error.first_error;
1880 i915_gpu_state_get(error);
1881 spin_unlock_irq(&i915->gpu_error.lock);
1886 void i915_reset_error_state(struct drm_i915_private *i915)
1888 struct i915_gpu_state *error;
1890 spin_lock_irq(&i915->gpu_error.lock);
1891 error = i915->gpu_error.first_error;
1892 i915->gpu_error.first_error = NULL;
1893 spin_unlock_irq(&i915->gpu_error.lock);
1895 i915_gpu_state_put(error);