Linux Audio

Check our new training course

Loading...
v5.14.15
   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 <linux/ascii85.h>
  31#include <linux/nmi.h>
  32#include <linux/pagevec.h>
  33#include <linux/scatterlist.h>
  34#include <linux/utsname.h>
  35#include <linux/zlib.h>
  36
  37#include <drm/drm_print.h>
  38
  39#include "display/intel_dmc.h"
  40#include "display/intel_overlay.h"
  41
  42#include "gem/i915_gem_context.h"
  43#include "gem/i915_gem_lmem.h"
  44#include "gt/intel_gt.h"
  45#include "gt/intel_gt_pm.h"
  46
  47#include "i915_drv.h"
  48#include "i915_gpu_error.h"
  49#include "i915_memcpy.h"
  50#include "i915_scatterlist.h"
  51
  52#define ALLOW_FAIL (GFP_KERNEL | __GFP_RETRY_MAYFAIL | __GFP_NOWARN)
  53#define ATOMIC_MAYFAIL (GFP_ATOMIC | __GFP_NOWARN)
  54
  55static void __sg_set_buf(struct scatterlist *sg,
  56			 void *addr, unsigned int len, loff_t it)
  57{
  58	sg->page_link = (unsigned long)virt_to_page(addr);
  59	sg->offset = offset_in_page(addr);
  60	sg->length = len;
  61	sg->dma_address = it;
  62}
  63
  64static bool __i915_error_grow(struct drm_i915_error_state_buf *e, size_t len)
  65{
  66	if (!len)
  67		return false;
  68
  69	if (e->bytes + len + 1 <= e->size)
  70		return true;
  71
  72	if (e->bytes) {
  73		__sg_set_buf(e->cur++, e->buf, e->bytes, e->iter);
  74		e->iter += e->bytes;
  75		e->buf = NULL;
  76		e->bytes = 0;
  77	}
  78
  79	if (e->cur == e->end) {
  80		struct scatterlist *sgl;
  81
  82		sgl = (typeof(sgl))__get_free_page(ALLOW_FAIL);
  83		if (!sgl) {
  84			e->err = -ENOMEM;
  85			return false;
  86		}
  87
  88		if (e->cur) {
  89			e->cur->offset = 0;
  90			e->cur->length = 0;
  91			e->cur->page_link =
  92				(unsigned long)sgl | SG_CHAIN;
  93		} else {
  94			e->sgl = sgl;
  95		}
  96
  97		e->cur = sgl;
  98		e->end = sgl + SG_MAX_SINGLE_ALLOC - 1;
  99	}
 100
 101	e->size = ALIGN(len + 1, SZ_64K);
 102	e->buf = kmalloc(e->size, ALLOW_FAIL);
 103	if (!e->buf) {
 104		e->size = PAGE_ALIGN(len + 1);
 105		e->buf = kmalloc(e->size, GFP_KERNEL);
 106	}
 107	if (!e->buf) {
 108		e->err = -ENOMEM;
 109		return false;
 110	}
 111
 112	return true;
 113}
 114
 115__printf(2, 0)
 116static void i915_error_vprintf(struct drm_i915_error_state_buf *e,
 117			       const char *fmt, va_list args)
 118{
 119	va_list ap;
 120	int len;
 121
 122	if (e->err)
 123		return;
 124
 125	va_copy(ap, args);
 126	len = vsnprintf(NULL, 0, fmt, ap);
 127	va_end(ap);
 128	if (len <= 0) {
 129		e->err = len;
 130		return;
 131	}
 132
 133	if (!__i915_error_grow(e, len))
 134		return;
 135
 136	GEM_BUG_ON(e->bytes >= e->size);
 137	len = vscnprintf(e->buf + e->bytes, e->size - e->bytes, fmt, args);
 138	if (len < 0) {
 139		e->err = len;
 140		return;
 141	}
 142	e->bytes += len;
 143}
 144
 145static void i915_error_puts(struct drm_i915_error_state_buf *e, const char *str)
 146{
 147	unsigned len;
 148
 149	if (e->err || !str)
 150		return;
 151
 152	len = strlen(str);
 153	if (!__i915_error_grow(e, len))
 154		return;
 155
 156	GEM_BUG_ON(e->bytes + len > e->size);
 157	memcpy(e->buf + e->bytes, str, len);
 158	e->bytes += len;
 159}
 160
 161#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
 162#define err_puts(e, s) i915_error_puts(e, s)
 163
 164static void __i915_printfn_error(struct drm_printer *p, struct va_format *vaf)
 165{
 166	i915_error_vprintf(p->arg, vaf->fmt, *vaf->va);
 
 
 
 
 
 167}
 168
 169static inline struct drm_printer
 170i915_error_printer(struct drm_i915_error_state_buf *e)
 171{
 172	struct drm_printer p = {
 173		.printfn = __i915_printfn_error,
 174		.arg = e,
 175	};
 176	return p;
 177}
 178
 179/* single threaded page allocator with a reserved stash for emergencies */
 180static void pool_fini(struct pagevec *pv)
 181{
 182	pagevec_release(pv);
 183}
 184
 185static int pool_refill(struct pagevec *pv, gfp_t gfp)
 186{
 187	while (pagevec_space(pv)) {
 188		struct page *p;
 189
 190		p = alloc_page(gfp);
 191		if (!p)
 192			return -ENOMEM;
 193
 194		pagevec_add(pv, p);
 195	}
 196
 197	return 0;
 198}
 199
 200static int pool_init(struct pagevec *pv, gfp_t gfp)
 201{
 202	int err;
 203
 204	pagevec_init(pv);
 205
 206	err = pool_refill(pv, gfp);
 207	if (err)
 208		pool_fini(pv);
 209
 210	return err;
 211}
 212
 213static void *pool_alloc(struct pagevec *pv, gfp_t gfp)
 214{
 215	struct page *p;
 216
 217	p = alloc_page(gfp);
 218	if (!p && pagevec_count(pv))
 219		p = pv->pages[--pv->nr];
 220
 221	return p ? page_address(p) : NULL;
 222}
 223
 224static void pool_free(struct pagevec *pv, void *addr)
 
 225{
 226	struct page *p = virt_to_page(addr);
 227
 228	if (pagevec_space(pv))
 229		pagevec_add(pv, p);
 230	else
 231		__free_page(p);
 232}
 233
 234#ifdef CONFIG_DRM_I915_COMPRESS_ERROR
 235
 236struct i915_vma_compress {
 237	struct pagevec pool;
 238	struct z_stream_s zstream;
 239	void *tmp;
 240};
 241
 242static bool compress_init(struct i915_vma_compress *c)
 243{
 244	struct z_stream_s *zstream = &c->zstream;
 245
 246	if (pool_init(&c->pool, ALLOW_FAIL))
 247		return false;
 
 248
 249	zstream->workspace =
 250		kmalloc(zlib_deflate_workspacesize(MAX_WBITS, MAX_MEM_LEVEL),
 251			ALLOW_FAIL);
 252	if (!zstream->workspace) {
 253		pool_fini(&c->pool);
 254		return false;
 255	}
 256
 257	c->tmp = NULL;
 258	if (i915_has_memcpy_from_wc())
 259		c->tmp = pool_alloc(&c->pool, ALLOW_FAIL);
 260
 261	return true;
 262}
 263
 264static bool compress_start(struct i915_vma_compress *c)
 265{
 266	struct z_stream_s *zstream = &c->zstream;
 267	void *workspace = zstream->workspace;
 268
 269	memset(zstream, 0, sizeof(*zstream));
 270	zstream->workspace = workspace;
 271
 272	return zlib_deflateInit(zstream, Z_DEFAULT_COMPRESSION) == Z_OK;
 273}
 274
 275static void *compress_next_page(struct i915_vma_compress *c,
 276				struct i915_vma_coredump *dst)
 277{
 278	void *page;
 279
 280	if (dst->page_count >= dst->num_pages)
 281		return ERR_PTR(-ENOSPC);
 282
 283	page = pool_alloc(&c->pool, ALLOW_FAIL);
 284	if (!page)
 285		return ERR_PTR(-ENOMEM);
 286
 287	return dst->pages[dst->page_count++] = page;
 288}
 289
 290static int compress_page(struct i915_vma_compress *c,
 291			 void *src,
 292			 struct i915_vma_coredump *dst,
 293			 bool wc)
 294{
 295	struct z_stream_s *zstream = &c->zstream;
 296
 297	zstream->next_in = src;
 298	if (wc && c->tmp && i915_memcpy_from_wc(c->tmp, src, PAGE_SIZE))
 299		zstream->next_in = c->tmp;
 300	zstream->avail_in = PAGE_SIZE;
 301
 302	do {
 303		if (zstream->avail_out == 0) {
 304			zstream->next_out = compress_next_page(c, dst);
 305			if (IS_ERR(zstream->next_out))
 306				return PTR_ERR(zstream->next_out);
 307
 308			zstream->avail_out = PAGE_SIZE;
 309		}
 310
 311		if (zlib_deflate(zstream, Z_NO_FLUSH) != Z_OK)
 312			return -EIO;
 313
 314		cond_resched();
 315	} while (zstream->avail_in);
 316
 317	/* Fallback to uncompressed if we increase size? */
 318	if (0 && zstream->total_out > zstream->total_in)
 319		return -E2BIG;
 320
 321	return 0;
 322}
 323
 324static int compress_flush(struct i915_vma_compress *c,
 325			  struct i915_vma_coredump *dst)
 326{
 327	struct z_stream_s *zstream = &c->zstream;
 328
 329	do {
 330		switch (zlib_deflate(zstream, Z_FINISH)) {
 331		case Z_OK: /* more space requested */
 332			zstream->next_out = compress_next_page(c, dst);
 333			if (IS_ERR(zstream->next_out))
 334				return PTR_ERR(zstream->next_out);
 335
 336			zstream->avail_out = PAGE_SIZE;
 337			break;
 338
 339		case Z_STREAM_END:
 340			goto end;
 341
 342		default: /* any error */
 343			return -EIO;
 
 
 344		}
 345	} while (1);
 346
 347end:
 348	memset(zstream->next_out, 0, zstream->avail_out);
 349	dst->unused = zstream->avail_out;
 350	return 0;
 351}
 352
 353static void compress_finish(struct i915_vma_compress *c)
 354{
 355	zlib_deflateEnd(&c->zstream);
 356}
 357
 358static void compress_fini(struct i915_vma_compress *c)
 359{
 360	kfree(c->zstream.workspace);
 361	if (c->tmp)
 362		pool_free(&c->pool, c->tmp);
 363	pool_fini(&c->pool);
 364}
 365
 366static void err_compression_marker(struct drm_i915_error_state_buf *m)
 367{
 368	err_puts(m, ":");
 369}
 370
 371#else
 372
 373struct i915_vma_compress {
 374	struct pagevec pool;
 375};
 376
 377static bool compress_init(struct i915_vma_compress *c)
 378{
 379	return pool_init(&c->pool, ALLOW_FAIL) == 0;
 380}
 381
 382static bool compress_start(struct i915_vma_compress *c)
 383{
 384	return true;
 385}
 386
 387static int compress_page(struct i915_vma_compress *c,
 388			 void *src,
 389			 struct i915_vma_coredump *dst,
 390			 bool wc)
 391{
 392	void *ptr;
 393
 394	ptr = pool_alloc(&c->pool, ALLOW_FAIL);
 395	if (!ptr)
 396		return -ENOMEM;
 397
 398	if (!(wc && i915_memcpy_from_wc(ptr, src, PAGE_SIZE)))
 399		memcpy(ptr, src, PAGE_SIZE);
 400	dst->pages[dst->page_count++] = ptr;
 401	cond_resched();
 402
 403	return 0;
 404}
 
 405
 406static int compress_flush(struct i915_vma_compress *c,
 407			  struct i915_vma_coredump *dst)
 408{
 409	return 0;
 410}
 411
 412static void compress_finish(struct i915_vma_compress *c)
 413{
 414}
 415
 416static void compress_fini(struct i915_vma_compress *c)
 417{
 418	pool_fini(&c->pool);
 419}
 420
 421static void err_compression_marker(struct drm_i915_error_state_buf *m)
 422{
 423	err_puts(m, "~");
 424}
 425
 426#endif
 427
 428static void error_print_instdone(struct drm_i915_error_state_buf *m,
 429				 const struct intel_engine_coredump *ee)
 430{
 431	const struct sseu_dev_info *sseu = &ee->engine->gt->info.sseu;
 432	int slice;
 433	int subslice;
 434
 435	err_printf(m, "  INSTDONE: 0x%08x\n",
 436		   ee->instdone.instdone);
 437
 438	if (ee->engine->class != RENDER_CLASS || GRAPHICS_VER(m->i915) <= 3)
 439		return;
 440
 441	err_printf(m, "  SC_INSTDONE: 0x%08x\n",
 442		   ee->instdone.slice_common);
 443
 444	if (GRAPHICS_VER(m->i915) <= 6)
 445		return;
 446
 447	for_each_instdone_slice_subslice(m->i915, sseu, slice, subslice)
 448		err_printf(m, "  SAMPLER_INSTDONE[%d][%d]: 0x%08x\n",
 449			   slice, subslice,
 450			   ee->instdone.sampler[slice][subslice]);
 451
 452	for_each_instdone_slice_subslice(m->i915, sseu, slice, subslice)
 453		err_printf(m, "  ROW_INSTDONE[%d][%d]: 0x%08x\n",
 454			   slice, subslice,
 455			   ee->instdone.row[slice][subslice]);
 456
 457	if (GRAPHICS_VER(m->i915) < 12)
 458		return;
 
 459
 460	err_printf(m, "  SC_INSTDONE_EXTRA: 0x%08x\n",
 461		   ee->instdone.slice_common_extra[0]);
 462	err_printf(m, "  SC_INSTDONE_EXTRA2: 0x%08x\n",
 463		   ee->instdone.slice_common_extra[1]);
 464}
 465
 466static void error_print_request(struct drm_i915_error_state_buf *m,
 467				const char *prefix,
 468				const struct i915_request_coredump *erq)
 469{
 470	if (!erq->seqno)
 471		return;
 472
 473	err_printf(m, "%s pid %d, seqno %8x:%08x%s%s, prio %d, head %08x, tail %08x\n",
 474		   prefix, erq->pid, erq->context, erq->seqno,
 475		   test_bit(DMA_FENCE_FLAG_SIGNALED_BIT,
 476			    &erq->flags) ? "!" : "",
 477		   test_bit(DMA_FENCE_FLAG_ENABLE_SIGNAL_BIT,
 478			    &erq->flags) ? "+" : "",
 479		   erq->sched_attr.priority,
 480		   erq->head, erq->tail);
 481}
 482
 483static void error_print_context(struct drm_i915_error_state_buf *m,
 484				const char *header,
 485				const struct i915_gem_context_coredump *ctx)
 486{
 487	const u32 period = m->i915->gt.clock_period_ns;
 488
 489	err_printf(m, "%s%s[%d] prio %d, guilty %d active %d, runtime total %lluns, avg %lluns\n",
 490		   header, ctx->comm, ctx->pid, ctx->sched_attr.priority,
 491		   ctx->guilty, ctx->active,
 492		   ctx->total_runtime * period,
 493		   mul_u32_u32(ctx->avg_runtime, period));
 494}
 495
 496static struct i915_vma_coredump *
 497__find_vma(struct i915_vma_coredump *vma, const char *name)
 498{
 499	while (vma) {
 500		if (strcmp(vma->name, name) == 0)
 501			return vma;
 502		vma = vma->next;
 503	}
 504
 505	return NULL;
 506}
 507
 508static struct i915_vma_coredump *
 509find_batch(const struct intel_engine_coredump *ee)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 510{
 511	return __find_vma(ee->vma, "batch");
 512}
 513
 514static void error_print_engine(struct drm_i915_error_state_buf *m,
 515			       const struct intel_engine_coredump *ee)
 516{
 517	struct i915_vma_coredump *batch;
 518	int n;
 519
 520	err_printf(m, "%s command stream:\n", ee->engine->name);
 521	err_printf(m, "  CCID:  0x%08x\n", ee->ccid);
 522	err_printf(m, "  START: 0x%08x\n", ee->start);
 523	err_printf(m, "  HEAD:  0x%08x [0x%08x]\n", ee->head, ee->rq_head);
 524	err_printf(m, "  TAIL:  0x%08x [0x%08x, 0x%08x]\n",
 525		   ee->tail, ee->rq_post, ee->rq_tail);
 526	err_printf(m, "  CTL:   0x%08x\n", ee->ctl);
 527	err_printf(m, "  MODE:  0x%08x\n", ee->mode);
 528	err_printf(m, "  HWS:   0x%08x\n", ee->hws);
 529	err_printf(m, "  ACTHD: 0x%08x %08x\n",
 530		   (u32)(ee->acthd>>32), (u32)ee->acthd);
 531	err_printf(m, "  IPEIR: 0x%08x\n", ee->ipeir);
 532	err_printf(m, "  IPEHR: 0x%08x\n", ee->ipehr);
 533	err_printf(m, "  ESR:   0x%08x\n", ee->esr);
 534
 535	error_print_instdone(m, ee);
 536
 537	batch = find_batch(ee);
 538	if (batch) {
 539		u64 start = batch->gtt_offset;
 540		u64 end = start + batch->gtt_size;
 541
 542		err_printf(m, "  batch: [0x%08x_%08x, 0x%08x_%08x]\n",
 543			   upper_32_bits(start), lower_32_bits(start),
 544			   upper_32_bits(end), lower_32_bits(end));
 545	}
 546	if (GRAPHICS_VER(m->i915) >= 4) {
 547		err_printf(m, "  BBADDR: 0x%08x_%08x\n",
 548			   (u32)(ee->bbaddr>>32), (u32)ee->bbaddr);
 549		err_printf(m, "  BB_STATE: 0x%08x\n", ee->bbstate);
 550		err_printf(m, "  INSTPS: 0x%08x\n", ee->instps);
 551	}
 552	err_printf(m, "  INSTPM: 0x%08x\n", ee->instpm);
 553	err_printf(m, "  FADDR: 0x%08x %08x\n", upper_32_bits(ee->faddr),
 554		   lower_32_bits(ee->faddr));
 555	if (GRAPHICS_VER(m->i915) >= 6) {
 556		err_printf(m, "  RC PSMI: 0x%08x\n", ee->rc_psmi);
 557		err_printf(m, "  FAULT_REG: 0x%08x\n", ee->fault_reg);
 558	}
 559	if (HAS_PPGTT(m->i915)) {
 560		err_printf(m, "  GFX_MODE: 0x%08x\n", ee->vm_info.gfx_mode);
 561
 562		if (GRAPHICS_VER(m->i915) >= 8) {
 563			int i;
 564			for (i = 0; i < 4; i++)
 565				err_printf(m, "  PDP%d: 0x%016llx\n",
 566					   i, ee->vm_info.pdp[i]);
 567		} else {
 568			err_printf(m, "  PP_DIR_BASE: 0x%08x\n",
 569				   ee->vm_info.pp_dir_base);
 570		}
 571	}
 572	err_printf(m, "  hung: %u\n", ee->hung);
 573	err_printf(m, "  engine reset count: %u\n", ee->reset_count);
 574
 575	for (n = 0; n < ee->num_ports; n++) {
 576		err_printf(m, "  ELSP[%d]:", n);
 577		error_print_request(m, " ", &ee->execlist[n]);
 578	}
 579
 580	error_print_context(m, "  Active context: ", &ee->context);
 581}
 582
 583void i915_error_printf(struct drm_i915_error_state_buf *e, const char *f, ...)
 584{
 585	va_list args;
 586
 587	va_start(args, f);
 588	i915_error_vprintf(e, f, args);
 589	va_end(args);
 590}
 591
 592static void print_error_vma(struct drm_i915_error_state_buf *m,
 593			    const struct intel_engine_cs *engine,
 594			    const struct i915_vma_coredump *vma)
 595{
 596	char out[ASCII85_BUFSZ];
 597	int page;
 598
 599	if (!vma)
 600		return;
 601
 602	err_printf(m, "%s --- %s = 0x%08x %08x\n",
 603		   engine ? engine->name : "global", vma->name,
 604		   upper_32_bits(vma->gtt_offset),
 605		   lower_32_bits(vma->gtt_offset));
 606
 607	if (vma->gtt_page_sizes > I915_GTT_PAGE_SIZE_4K)
 608		err_printf(m, "gtt_page_sizes = 0x%08x\n", vma->gtt_page_sizes);
 609
 610	err_compression_marker(m);
 611	for (page = 0; page < vma->page_count; page++) {
 612		int i, len;
 613
 614		len = PAGE_SIZE;
 615		if (page == vma->page_count - 1)
 616			len -= vma->unused;
 617		len = ascii85_encode_len(len);
 618
 619		for (i = 0; i < len; i++)
 620			err_puts(m, ascii85_encode(vma->pages[page][i], out));
 621	}
 622	err_puts(m, "\n");
 623}
 624
 625static void err_print_capabilities(struct drm_i915_error_state_buf *m,
 626				   struct i915_gpu_coredump *error)
 627{
 628	struct drm_printer p = i915_error_printer(m);
 629
 630	intel_device_info_print_static(&error->device_info, &p);
 631	intel_device_info_print_runtime(&error->runtime_info, &p);
 632	intel_driver_caps_print(&error->driver_caps, &p);
 633}
 634
 635static void err_print_params(struct drm_i915_error_state_buf *m,
 636			     const struct i915_params *params)
 637{
 638	struct drm_printer p = i915_error_printer(m);
 639
 640	i915_params_dump(params, &p);
 641}
 642
 643static void err_print_pciid(struct drm_i915_error_state_buf *m,
 644			    struct drm_i915_private *i915)
 645{
 646	struct pci_dev *pdev = to_pci_dev(i915->drm.dev);
 647
 648	err_printf(m, "PCI ID: 0x%04x\n", pdev->device);
 649	err_printf(m, "PCI Revision: 0x%02x\n", pdev->revision);
 650	err_printf(m, "PCI Subsystem: %04x:%04x\n",
 651		   pdev->subsystem_vendor,
 652		   pdev->subsystem_device);
 653}
 654
 655static void err_print_uc(struct drm_i915_error_state_buf *m,
 656			 const struct intel_uc_coredump *error_uc)
 657{
 658	struct drm_printer p = i915_error_printer(m);
 659
 660	intel_uc_fw_dump(&error_uc->guc_fw, &p);
 661	intel_uc_fw_dump(&error_uc->huc_fw, &p);
 662	print_error_vma(m, NULL, error_uc->guc_log);
 663}
 664
 665static void err_free_sgl(struct scatterlist *sgl)
 666{
 667	while (sgl) {
 668		struct scatterlist *sg;
 669
 670		for (sg = sgl; !sg_is_chain(sg); sg++) {
 671			kfree(sg_virt(sg));
 672			if (sg_is_last(sg))
 673				break;
 
 674		}
 675
 676		sg = sg_is_last(sg) ? NULL : sg_chain_ptr(sg);
 677		free_page((unsigned long)sgl);
 678		sgl = sg;
 679	}
 680}
 681
 682static void err_print_gt_info(struct drm_i915_error_state_buf *m,
 683			      struct intel_gt_coredump *gt)
 684{
 685	struct drm_printer p = i915_error_printer(m);
 686
 687	intel_gt_info_print(&gt->info, &p);
 688	intel_sseu_print_topology(&gt->info.sseu, &p);
 689}
 690
 691static void err_print_gt(struct drm_i915_error_state_buf *m,
 692			 struct intel_gt_coredump *gt)
 693{
 694	const struct intel_engine_coredump *ee;
 695	int i;
 696
 697	err_printf(m, "GT awake: %s\n", yesno(gt->awake));
 698	err_printf(m, "EIR: 0x%08x\n", gt->eir);
 699	err_printf(m, "IER: 0x%08x\n", gt->ier);
 700	for (i = 0; i < gt->ngtier; i++)
 701		err_printf(m, "GTIER[%d]: 0x%08x\n", i, gt->gtier[i]);
 702	err_printf(m, "PGTBL_ER: 0x%08x\n", gt->pgtbl_er);
 703	err_printf(m, "FORCEWAKE: 0x%08x\n", gt->forcewake);
 704	err_printf(m, "DERRMR: 0x%08x\n", gt->derrmr);
 705
 706	for (i = 0; i < gt->nfence; i++)
 707		err_printf(m, "  fence[%d] = %08llx\n", i, gt->fence[i]);
 708
 709	if (IS_GRAPHICS_VER(m->i915, 6, 11)) {
 710		err_printf(m, "ERROR: 0x%08x\n", gt->error);
 711		err_printf(m, "DONE_REG: 0x%08x\n", gt->done_reg);
 712	}
 713
 714	if (GRAPHICS_VER(m->i915) >= 8)
 715		err_printf(m, "FAULT_TLB_DATA: 0x%08x 0x%08x\n",
 716			   gt->fault_data1, gt->fault_data0);
 717
 718	if (GRAPHICS_VER(m->i915) == 7)
 719		err_printf(m, "ERR_INT: 0x%08x\n", gt->err_int);
 720
 721	if (IS_GRAPHICS_VER(m->i915, 8, 11))
 722		err_printf(m, "GTT_CACHE_EN: 0x%08x\n", gt->gtt_cache);
 723
 724	if (GRAPHICS_VER(m->i915) == 12)
 725		err_printf(m, "AUX_ERR_DBG: 0x%08x\n", gt->aux_err);
 726
 727	if (GRAPHICS_VER(m->i915) >= 12) {
 728		int i;
 729
 730		for (i = 0; i < GEN12_SFC_DONE_MAX; i++) {
 731			/*
 732			 * SFC_DONE resides in the VD forcewake domain, so it
 733			 * only exists if the corresponding VCS engine is
 734			 * present.
 735			 */
 736			if (!HAS_ENGINE(gt->_gt, _VCS(i * 2)))
 737				continue;
 738
 739			err_printf(m, "  SFC_DONE[%d]: 0x%08x\n", i,
 740				   gt->sfc_done[i]);
 741		}
 742
 743		err_printf(m, "  GAM_DONE: 0x%08x\n", gt->gam_done);
 744	}
 745
 746	for (ee = gt->engine; ee; ee = ee->next) {
 747		const struct i915_vma_coredump *vma;
 748
 749		error_print_engine(m, ee);
 750		for (vma = ee->vma; vma; vma = vma->next)
 751			print_error_vma(m, ee->engine, vma);
 752	}
 753
 754	if (gt->uc)
 755		err_print_uc(m, gt->uc);
 756
 757	err_print_gt_info(m, gt);
 758}
 759
 760static void __err_print_to_sgl(struct drm_i915_error_state_buf *m,
 761			       struct i915_gpu_coredump *error)
 762{
 763	const struct intel_engine_coredump *ee;
 764	struct timespec64 ts;
 765
 766	if (*error->error_msg)
 767		err_printf(m, "%s\n", error->error_msg);
 768	err_printf(m, "Kernel: %s %s\n",
 769		   init_utsname()->release,
 770		   init_utsname()->machine);
 771	err_printf(m, "Driver: %s\n", DRIVER_DATE);
 772	ts = ktime_to_timespec64(error->time);
 773	err_printf(m, "Time: %lld s %ld us\n",
 774		   (s64)ts.tv_sec, ts.tv_nsec / NSEC_PER_USEC);
 775	ts = ktime_to_timespec64(error->boottime);
 776	err_printf(m, "Boottime: %lld s %ld us\n",
 777		   (s64)ts.tv_sec, ts.tv_nsec / NSEC_PER_USEC);
 778	ts = ktime_to_timespec64(error->uptime);
 779	err_printf(m, "Uptime: %lld s %ld us\n",
 780		   (s64)ts.tv_sec, ts.tv_nsec / NSEC_PER_USEC);
 781	err_printf(m, "Capture: %lu jiffies; %d ms ago\n",
 782		   error->capture, jiffies_to_msecs(jiffies - error->capture));
 783
 784	for (ee = error->gt ? error->gt->engine : NULL; ee; ee = ee->next)
 785		err_printf(m, "Active process (on ring %s): %s [%d]\n",
 786			   ee->engine->name,
 787			   ee->context.comm,
 788			   ee->context.pid);
 789
 790	err_printf(m, "Reset count: %u\n", error->reset_count);
 791	err_printf(m, "Suspend count: %u\n", error->suspend_count);
 792	err_printf(m, "Platform: %s\n", intel_platform_name(error->device_info.platform));
 793	err_printf(m, "Subplatform: 0x%x\n",
 794		   intel_subplatform(&error->runtime_info,
 795				     error->device_info.platform));
 796	err_print_pciid(m, m->i915);
 797
 798	err_printf(m, "IOMMU enabled?: %d\n", error->iommu);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 799
 800	if (HAS_DMC(m->i915)) {
 801		struct intel_dmc *dmc = &m->i915->dmc;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 802
 803		err_printf(m, "DMC loaded: %s\n",
 804			   yesno(intel_dmc_has_payload(m->i915) != 0));
 805		err_printf(m, "DMC fw version: %d.%d\n",
 806			   DMC_VERSION_MAJOR(dmc->version),
 807			   DMC_VERSION_MINOR(dmc->version));
 
 
 
 
 
 
 
 
 
 
 808	}
 809
 810	err_printf(m, "RPM wakelock: %s\n", yesno(error->wakelock));
 811	err_printf(m, "PM suspended: %s\n", yesno(error->suspended));
 812
 813	if (error->gt)
 814		err_print_gt(m, error->gt);
 815
 816	if (error->overlay)
 817		intel_overlay_print_error_state(m, error->overlay);
 818
 819	err_print_capabilities(m, error);
 820	err_print_params(m, &error->params);
 821}
 822
 823static int err_print_to_sgl(struct i915_gpu_coredump *error)
 824{
 825	struct drm_i915_error_state_buf m;
 826
 827	if (IS_ERR(error))
 828		return PTR_ERR(error);
 
 829
 830	if (READ_ONCE(error->sgl))
 831		return 0;
 832
 833	memset(&m, 0, sizeof(m));
 834	m.i915 = error->i915;
 
 
 835
 836	__err_print_to_sgl(&m, error);
 
 
 
 
 
 837
 838	if (m.buf) {
 839		__sg_set_buf(m.cur++, m.buf, m.bytes, m.iter);
 840		m.bytes = 0;
 841		m.buf = NULL;
 842	}
 843	if (m.cur) {
 844		GEM_BUG_ON(m.end < m.cur);
 845		sg_mark_end(m.cur - 1);
 846	}
 847	GEM_BUG_ON(m.sgl && !m.cur);
 848
 849	if (m.err) {
 850		err_free_sgl(m.sgl);
 851		return m.err;
 852	}
 853
 854	if (cmpxchg(&error->sgl, NULL, m.sgl))
 855		err_free_sgl(m.sgl);
 
 
 856
 857	return 0;
 858}
 859
 860ssize_t i915_gpu_coredump_copy_to_buffer(struct i915_gpu_coredump *error,
 861					 char *buf, loff_t off, size_t rem)
 862{
 863	struct scatterlist *sg;
 864	size_t count;
 865	loff_t pos;
 866	int err;
 867
 868	if (!error || !rem)
 869		return 0;
 870
 871	err = err_print_to_sgl(error);
 872	if (err)
 873		return err;
 874
 875	sg = READ_ONCE(error->fit);
 876	if (!sg || off < sg->dma_address)
 877		sg = error->sgl;
 878	if (!sg)
 879		return 0;
 880
 881	pos = sg->dma_address;
 882	count = 0;
 883	do {
 884		size_t len, start;
 885
 886		if (sg_is_chain(sg)) {
 887			sg = sg_chain_ptr(sg);
 888			GEM_BUG_ON(sg_is_chain(sg));
 889		}
 890
 891		len = sg->length;
 892		if (pos + len <= off) {
 893			pos += len;
 894			continue;
 895		}
 896
 897		start = sg->offset;
 898		if (pos < off) {
 899			GEM_BUG_ON(off - pos > len);
 900			len -= off - pos;
 901			start += off - pos;
 902			pos = off;
 903		}
 904
 905		len = min(len, rem);
 906		GEM_BUG_ON(!len || len > sg->length);
 907
 908		memcpy(buf, page_address(sg_page(sg)) + start, len);
 909
 910		count += len;
 911		pos += len;
 912
 913		buf += len;
 914		rem -= len;
 915		if (!rem) {
 916			WRITE_ONCE(error->fit, sg);
 917			break;
 918		}
 919	} while (!sg_is_last(sg++));
 920
 921	return count;
 922}
 923
 924static void i915_vma_coredump_free(struct i915_vma_coredump *vma)
 925{
 926	while (vma) {
 927		struct i915_vma_coredump *next = vma->next;
 928		int page;
 929
 930		for (page = 0; page < vma->page_count; page++)
 931			free_page((unsigned long)vma->pages[page]);
 932
 933		kfree(vma);
 934		vma = next;
 
 
 
 
 935	}
 936}
 937
 938static void cleanup_params(struct i915_gpu_coredump *error)
 939{
 940	i915_params_free(&error->params);
 
 941}
 942
 943static void cleanup_uc(struct intel_uc_coredump *uc)
 
 
 
 
 944{
 945	kfree(uc->guc_fw.path);
 946	kfree(uc->huc_fw.path);
 947	i915_vma_coredump_free(uc->guc_log);
 948
 949	kfree(uc);
 950}
 951
 952static void cleanup_gt(struct intel_gt_coredump *gt)
 953{
 954	while (gt->engine) {
 955		struct intel_engine_coredump *ee = gt->engine;
 956
 957		gt->engine = ee->next;
 
 
 958
 959		i915_vma_coredump_free(ee->vma);
 960		kfree(ee);
 961	}
 
 
 
 
 
 
 
 
 
 
 
 
 962
 963	if (gt->uc)
 964		cleanup_uc(gt->uc);
 
 
 965
 966	kfree(gt);
 967}
 
 
 
 
 
 
 
 
 968
 969void __i915_gpu_coredump_free(struct kref *error_ref)
 970{
 971	struct i915_gpu_coredump *error =
 972		container_of(error_ref, typeof(*error), ref);
 973
 974	while (error->gt) {
 975		struct intel_gt_coredump *gt = error->gt;
 976
 977		error->gt = gt->next;
 978		cleanup_gt(gt);
 979	}
 980
 981	kfree(error->overlay);
 
 
 982
 983	cleanup_params(error);
 
 
 984
 985	err_free_sgl(error->sgl);
 986	kfree(error);
 987}
 988
 989static struct i915_vma_coredump *
 990i915_vma_coredump_create(const struct intel_gt *gt,
 991			 const struct i915_vma *vma,
 992			 const char *name,
 993			 struct i915_vma_compress *compress)
 994{
 995	struct i915_ggtt *ggtt = gt->ggtt;
 996	const u64 slot = ggtt->error_capture.start;
 997	struct i915_vma_coredump *dst;
 998	unsigned long num_pages;
 999	struct sgt_iter iter;
1000	int ret;
1001
1002	might_sleep();
1003
1004	if (!vma || !vma->pages || !compress)
1005		return NULL;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1006
1007	num_pages = min_t(u64, vma->size, vma->obj->base.size) >> PAGE_SHIFT;
1008	num_pages = DIV_ROUND_UP(10 * num_pages, 8); /* worstcase zlib growth */
1009	dst = kmalloc(sizeof(*dst) + num_pages * sizeof(u32 *), ALLOW_FAIL);
1010	if (!dst)
1011		return NULL;
1012
1013	if (!compress_start(compress)) {
1014		kfree(dst);
1015		return NULL;
 
1016	}
1017
1018	strcpy(dst->name, name);
1019	dst->next = NULL;
1020
1021	dst->gtt_offset = vma->node.start;
1022	dst->gtt_size = vma->node.size;
1023	dst->gtt_page_sizes = vma->page_sizes.gtt;
1024	dst->num_pages = num_pages;
1025	dst->page_count = 0;
1026	dst->unused = 0;
1027
1028	ret = -EINVAL;
1029	if (drm_mm_node_allocated(&ggtt->error_capture)) {
1030		void __iomem *s;
1031		dma_addr_t dma;
1032
1033		for_each_sgt_daddr(dma, iter, vma->pages) {
1034			mutex_lock(&ggtt->error_mutex);
1035			ggtt->vm.insert_page(&ggtt->vm, dma, slot,
1036					     I915_CACHE_NONE, 0);
1037			mb();
1038
1039			s = io_mapping_map_wc(&ggtt->iomap, slot, PAGE_SIZE);
1040			ret = compress_page(compress,
1041					    (void  __force *)s, dst,
1042					    true);
1043			io_mapping_unmap(s);
1044
1045			mb();
1046			ggtt->vm.clear_range(&ggtt->vm, slot, PAGE_SIZE);
1047			mutex_unlock(&ggtt->error_mutex);
1048			if (ret)
1049				break;
1050		}
1051	} else if (i915_gem_object_is_lmem(vma->obj)) {
1052		struct intel_memory_region *mem = vma->obj->mm.region;
1053		dma_addr_t dma;
1054
1055		for_each_sgt_daddr(dma, iter, vma->pages) {
1056			void __iomem *s;
 
 
 
1057
1058			s = io_mapping_map_wc(&mem->iomap,
1059					      dma - mem->region.start,
1060					      PAGE_SIZE);
1061			ret = compress_page(compress,
1062					    (void __force *)s, dst,
1063					    true);
1064			io_mapping_unmap(s);
1065			if (ret)
1066				break;
1067		}
1068	} else {
1069		struct page *page;
1070
1071		for_each_sgt_page(page, iter, vma->pages) {
1072			void *s;
 
 
1073
1074			drm_clflush_pages(&page, 1);
 
1075
1076			s = kmap(page);
1077			ret = compress_page(compress, s, dst, false);
1078			kunmap(page);
 
 
 
 
 
 
 
 
 
 
 
 
1079
1080			drm_clflush_pages(&page, 1);
 
 
 
 
 
 
 
 
1081
1082			if (ret)
1083				break;
1084		}
1085	}
1086
1087	if (ret || compress_flush(compress, dst)) {
1088		while (dst->page_count--)
1089			pool_free(&compress->pool, dst->pages[dst->page_count]);
1090		kfree(dst);
1091		dst = NULL;
1092	}
1093	compress_finish(compress);
1094
1095	return dst;
1096}
1097
1098static void gt_record_fences(struct intel_gt_coredump *gt)
 
1099{
1100	struct i915_ggtt *ggtt = gt->_gt->ggtt;
1101	struct intel_uncore *uncore = gt->_gt->uncore;
1102	int i;
1103
1104	if (GRAPHICS_VER(uncore->i915) >= 6) {
1105		for (i = 0; i < ggtt->num_fences; i++)
1106			gt->fence[i] =
1107				intel_uncore_read64(uncore,
1108						    FENCE_REG_GEN6_LO(i));
1109	} else if (GRAPHICS_VER(uncore->i915) >= 4) {
1110		for (i = 0; i < ggtt->num_fences; i++)
1111			gt->fence[i] =
1112				intel_uncore_read64(uncore,
1113						    FENCE_REG_965_LO(i));
1114	} else {
1115		for (i = 0; i < ggtt->num_fences; i++)
1116			gt->fence[i] =
1117				intel_uncore_read(uncore, FENCE_REG(i));
1118	}
1119	gt->nfence = i;
1120}
1121
1122static void engine_record_registers(struct intel_engine_coredump *ee)
1123{
1124	const struct intel_engine_cs *engine = ee->engine;
1125	struct drm_i915_private *i915 = engine->i915;
1126
1127	if (GRAPHICS_VER(i915) >= 6) {
1128		ee->rc_psmi = ENGINE_READ(engine, RING_PSMI_CTL);
1129
1130		if (GRAPHICS_VER(i915) >= 12)
1131			ee->fault_reg = intel_uncore_read(engine->uncore,
1132							  GEN12_RING_FAULT_REG);
1133		else if (GRAPHICS_VER(i915) >= 8)
1134			ee->fault_reg = intel_uncore_read(engine->uncore,
1135							  GEN8_RING_FAULT_REG);
1136		else
1137			ee->fault_reg = GEN6_RING_FAULT_REG_READ(engine);
1138	}
1139
1140	if (GRAPHICS_VER(i915) >= 4) {
1141		ee->esr = ENGINE_READ(engine, RING_ESR);
1142		ee->faddr = ENGINE_READ(engine, RING_DMA_FADD);
1143		ee->ipeir = ENGINE_READ(engine, RING_IPEIR);
1144		ee->ipehr = ENGINE_READ(engine, RING_IPEHR);
1145		ee->instps = ENGINE_READ(engine, RING_INSTPS);
1146		ee->bbaddr = ENGINE_READ(engine, RING_BBADDR);
1147		ee->ccid = ENGINE_READ(engine, CCID);
1148		if (GRAPHICS_VER(i915) >= 8) {
1149			ee->faddr |= (u64)ENGINE_READ(engine, RING_DMA_FADD_UDW) << 32;
1150			ee->bbaddr |= (u64)ENGINE_READ(engine, RING_BBADDR_UDW) << 32;
1151		}
1152		ee->bbstate = ENGINE_READ(engine, RING_BBSTATE);
 
 
 
 
 
 
 
 
 
 
 
1153	} else {
1154		ee->faddr = ENGINE_READ(engine, DMA_FADD_I8XX);
1155		ee->ipeir = ENGINE_READ(engine, IPEIR);
1156		ee->ipehr = ENGINE_READ(engine, IPEHR);
1157	}
1158
1159	intel_engine_get_instdone(engine, &ee->instdone);
1160
1161	ee->instpm = ENGINE_READ(engine, RING_INSTPM);
1162	ee->acthd = intel_engine_get_active_head(engine);
1163	ee->start = ENGINE_READ(engine, RING_START);
1164	ee->head = ENGINE_READ(engine, RING_HEAD);
1165	ee->tail = ENGINE_READ(engine, RING_TAIL);
1166	ee->ctl = ENGINE_READ(engine, RING_CTL);
1167	if (GRAPHICS_VER(i915) > 2)
1168		ee->mode = ENGINE_READ(engine, RING_MI_MODE);
1169
1170	if (!HWS_NEEDS_PHYSICAL(i915)) {
1171		i915_reg_t mmio;
1172
1173		if (GRAPHICS_VER(i915) == 7) {
1174			switch (engine->id) {
1175			default:
1176				MISSING_CASE(engine->id);
1177				fallthrough;
1178			case RCS0:
1179				mmio = RENDER_HWS_PGA_GEN7;
1180				break;
1181			case BCS0:
1182				mmio = BLT_HWS_PGA_GEN7;
1183				break;
1184			case VCS0:
1185				mmio = BSD_HWS_PGA_GEN7;
1186				break;
1187			case VECS0:
1188				mmio = VEBOX_HWS_PGA_GEN7;
1189				break;
1190			}
1191		} else if (GRAPHICS_VER(engine->i915) == 6) {
1192			mmio = RING_HWS_PGA_GEN6(engine->mmio_base);
1193		} else {
1194			/* XXX: gen8 returns to sanity */
1195			mmio = RING_HWS_PGA(engine->mmio_base);
1196		}
1197
1198		ee->hws = intel_uncore_read(engine->uncore, mmio);
1199	}
1200
1201	ee->reset_count = i915_reset_engine_count(&i915->gpu_error, engine);
 
1202
1203	if (HAS_PPGTT(i915)) {
1204		int i;
1205
1206		ee->vm_info.gfx_mode = ENGINE_READ(engine, RING_MODE_GEN7);
 
1207
1208		if (GRAPHICS_VER(i915) == 6) {
1209			ee->vm_info.pp_dir_base =
1210				ENGINE_READ(engine, RING_PP_DIR_BASE_READ);
1211		} else if (GRAPHICS_VER(i915) == 7) {
1212			ee->vm_info.pp_dir_base =
1213				ENGINE_READ(engine, RING_PP_DIR_BASE);
1214		} else if (GRAPHICS_VER(i915) >= 8) {
1215			u32 base = engine->mmio_base;
1216
 
 
1217			for (i = 0; i < 4; i++) {
1218				ee->vm_info.pdp[i] =
1219					intel_uncore_read(engine->uncore,
1220							  GEN8_RING_PDP_UDW(base, i));
1221				ee->vm_info.pdp[i] <<= 32;
1222				ee->vm_info.pdp[i] |=
1223					intel_uncore_read(engine->uncore,
1224							  GEN8_RING_PDP_LDW(base, i));
1225			}
 
 
 
 
 
 
 
 
 
1226		}
1227	}
1228}
1229
1230static void record_request(const struct i915_request *request,
1231			   struct i915_request_coredump *erq)
1232{
1233	erq->flags = request->fence.flags;
1234	erq->context = request->fence.context;
1235	erq->seqno = request->fence.seqno;
1236	erq->sched_attr = request->sched.attr;
1237	erq->head = request->head;
1238	erq->tail = request->tail;
1239
1240	erq->pid = 0;
1241	rcu_read_lock();
1242	if (!intel_context_is_closed(request->context)) {
1243		const struct i915_gem_context *ctx;
1244
1245		ctx = rcu_dereference(request->context->gem_context);
1246		if (ctx)
1247			erq->pid = pid_nr(ctx->pid);
1248	}
1249	rcu_read_unlock();
1250}
1251
1252static void engine_record_execlists(struct intel_engine_coredump *ee)
1253{
1254	const struct intel_engine_execlists * const el = &ee->engine->execlists;
1255	struct i915_request * const *port = el->active;
1256	unsigned int n = 0;
1257
1258	while (*port)
1259		record_request(*port++, &ee->execlist[n++]);
1260
1261	ee->num_ports = n;
1262}
1263
1264static bool record_context(struct i915_gem_context_coredump *e,
1265			   const struct i915_request *rq)
1266{
1267	struct i915_gem_context *ctx;
1268	struct task_struct *task;
1269	bool simulated;
1270
1271	rcu_read_lock();
1272	ctx = rcu_dereference(rq->context->gem_context);
1273	if (ctx && !kref_get_unless_zero(&ctx->ref))
1274		ctx = NULL;
1275	rcu_read_unlock();
1276	if (!ctx)
1277		return true;
1278
1279	rcu_read_lock();
1280	task = pid_task(ctx->pid, PIDTYPE_PID);
1281	if (task) {
1282		strcpy(e->comm, task->comm);
1283		e->pid = task->pid;
1284	}
1285	rcu_read_unlock();
1286
1287	e->sched_attr = ctx->sched;
1288	e->guilty = atomic_read(&ctx->guilty_count);
1289	e->active = atomic_read(&ctx->active_count);
1290
1291	e->total_runtime = rq->context->runtime.total;
1292	e->avg_runtime = ewma_runtime_read(&rq->context->runtime.avg);
1293
1294	simulated = i915_gem_context_no_error_capture(ctx);
1295
1296	i915_gem_context_put(ctx);
1297	return simulated;
1298}
1299
1300struct intel_engine_capture_vma {
1301	struct intel_engine_capture_vma *next;
1302	struct i915_vma *vma;
1303	char name[16];
1304};
1305
1306static struct intel_engine_capture_vma *
1307capture_vma(struct intel_engine_capture_vma *next,
1308	    struct i915_vma *vma,
1309	    const char *name,
1310	    gfp_t gfp)
1311{
1312	struct intel_engine_capture_vma *c;
1313
1314	if (!vma)
1315		return next;
1316
1317	c = kmalloc(sizeof(*c), gfp);
1318	if (!c)
1319		return next;
1320
1321	if (!i915_active_acquire_if_busy(&vma->active)) {
1322		kfree(c);
1323		return next;
1324	}
1325
1326	strcpy(c->name, name);
1327	c->vma = vma; /* reference held while active */
1328
1329	c->next = next;
1330	return c;
1331}
1332
1333static struct intel_engine_capture_vma *
1334capture_user(struct intel_engine_capture_vma *capture,
1335	     const struct i915_request *rq,
1336	     gfp_t gfp)
1337{
1338	struct i915_capture_list *c;
 
1339
1340	for (c = rq->capture_list; c; c = c->next)
1341		capture = capture_vma(capture, c->vma, "user", gfp);
1342
1343	return capture;
1344}
1345
1346static void add_vma(struct intel_engine_coredump *ee,
1347		    struct i915_vma_coredump *vma)
1348{
1349	if (vma) {
1350		vma->next = ee->vma;
1351		ee->vma = vma;
 
 
1352	}
1353}
1354
1355struct intel_engine_coredump *
1356intel_engine_coredump_alloc(struct intel_engine_cs *engine, gfp_t gfp)
1357{
1358	struct intel_engine_coredump *ee;
1359
1360	ee = kzalloc(sizeof(*ee), gfp);
1361	if (!ee)
1362		return NULL;
1363
1364	ee->engine = engine;
1365
1366	engine_record_registers(ee);
1367	engine_record_execlists(ee);
1368
1369	return ee;
1370}
1371
1372struct intel_engine_capture_vma *
1373intel_engine_coredump_add_request(struct intel_engine_coredump *ee,
1374				  struct i915_request *rq,
1375				  gfp_t gfp)
1376{
1377	struct intel_engine_capture_vma *vma = NULL;
1378
1379	ee->simulated |= record_context(&ee->context, rq);
1380	if (ee->simulated)
1381		return NULL;
1382
1383	/*
1384	 * We need to copy these to an anonymous buffer
1385	 * as the simplest method to avoid being overwritten
1386	 * by userspace.
1387	 */
1388	vma = capture_vma(vma, rq->batch, "batch", gfp);
1389	vma = capture_user(vma, rq, gfp);
1390	vma = capture_vma(vma, rq->ring->vma, "ring", gfp);
1391	vma = capture_vma(vma, rq->context->state, "HW context", gfp);
1392
1393	ee->rq_head = rq->head;
1394	ee->rq_post = rq->postfix;
1395	ee->rq_tail = rq->tail;
1396
1397	return vma;
1398}
1399
1400void
1401intel_engine_coredump_add_vma(struct intel_engine_coredump *ee,
1402			      struct intel_engine_capture_vma *capture,
1403			      struct i915_vma_compress *compress)
1404{
1405	const struct intel_engine_cs *engine = ee->engine;
1406
1407	while (capture) {
1408		struct intel_engine_capture_vma *this = capture;
1409		struct i915_vma *vma = this->vma;
1410
1411		add_vma(ee,
1412			i915_vma_coredump_create(engine->gt,
1413						 vma, this->name,
1414						 compress));
1415
1416		i915_active_release(&vma->active);
1417
1418		capture = this->next;
1419		kfree(this);
1420	}
1421
1422	add_vma(ee,
1423		i915_vma_coredump_create(engine->gt,
1424					 engine->status_page.vma,
1425					 "HW Status",
1426					 compress));
1427
1428	add_vma(ee,
1429		i915_vma_coredump_create(engine->gt,
1430					 engine->wa_ctx.vma,
1431					 "WA context",
1432					 compress));
1433}
1434
1435static struct intel_engine_coredump *
1436capture_engine(struct intel_engine_cs *engine,
1437	       struct i915_vma_compress *compress)
1438{
1439	struct intel_engine_capture_vma *capture = NULL;
1440	struct intel_engine_coredump *ee;
1441	struct i915_request *rq;
1442	unsigned long flags;
1443
1444	ee = intel_engine_coredump_alloc(engine, GFP_KERNEL);
1445	if (!ee)
1446		return NULL;
1447
1448	spin_lock_irqsave(&engine->active.lock, flags);
1449	rq = intel_engine_find_active_request(engine);
1450	if (rq)
1451		capture = intel_engine_coredump_add_request(ee, rq,
1452							    ATOMIC_MAYFAIL);
1453	spin_unlock_irqrestore(&engine->active.lock, flags);
1454	if (!capture) {
1455		kfree(ee);
1456		return NULL;
1457	}
1458
1459	intel_engine_coredump_add_vma(ee, capture, compress);
1460
1461	return ee;
1462}
1463
1464static void
1465gt_record_engines(struct intel_gt_coredump *gt,
1466		  intel_engine_mask_t engine_mask,
1467		  struct i915_vma_compress *compress)
1468{
1469	struct intel_engine_cs *engine;
1470	enum intel_engine_id id;
1471
1472	for_each_engine(engine, gt->_gt, id) {
1473		struct intel_engine_coredump *ee;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1474
1475		/* Refill our page pool before entering atomic section */
1476		pool_refill(&compress->pool, ALLOW_FAIL);
1477
1478		ee = capture_engine(engine, compress);
1479		if (!ee)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1480			continue;
 
1481
1482		ee->hung = engine->mask & engine_mask;
 
 
1483
1484		gt->simulated |= ee->simulated;
1485		if (ee->simulated) {
1486			kfree(ee);
1487			continue;
1488		}
1489
1490		ee->next = gt->engine;
1491		gt->engine = ee;
1492	}
1493}
1494
1495static struct intel_uc_coredump *
1496gt_record_uc(struct intel_gt_coredump *gt,
1497	     struct i915_vma_compress *compress)
 
 
 
 
1498{
1499	const struct intel_uc *uc = &gt->_gt->uc;
1500	struct intel_uc_coredump *error_uc;
1501
1502	error_uc = kzalloc(sizeof(*error_uc), ALLOW_FAIL);
1503	if (!error_uc)
1504		return NULL;
1505
1506	memcpy(&error_uc->guc_fw, &uc->guc.fw, sizeof(uc->guc.fw));
1507	memcpy(&error_uc->huc_fw, &uc->huc.fw, sizeof(uc->huc.fw));
1508
1509	/* Non-default firmware paths will be specified by the modparam.
1510	 * As modparams are generally accesible from the userspace make
1511	 * explicit copies of the firmware paths.
1512	 */
1513	error_uc->guc_fw.path = kstrdup(uc->guc.fw.path, ALLOW_FAIL);
1514	error_uc->huc_fw.path = kstrdup(uc->huc.fw.path, ALLOW_FAIL);
1515	error_uc->guc_log =
1516		i915_vma_coredump_create(gt->_gt,
1517					 uc->guc.log.vma, "GuC log buffer",
1518					 compress);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1519
1520	return error_uc;
 
1521}
1522
1523/* Capture all registers which don't fit into another category. */
1524static void gt_record_regs(struct intel_gt_coredump *gt)
 
1525{
1526	struct intel_uncore *uncore = gt->_gt->uncore;
1527	struct drm_i915_private *i915 = uncore->i915;
1528	int i;
1529
1530	/*
1531	 * General organization
1532	 * 1. Registers specific to a single generation
1533	 * 2. Registers which belong to multiple generations
1534	 * 3. Feature specific registers.
1535	 * 4. Everything else
1536	 * Please try to follow the order.
1537	 */
1538
1539	/* 1: Registers specific to a single generation */
1540	if (IS_VALLEYVIEW(i915)) {
1541		gt->gtier[0] = intel_uncore_read(uncore, GTIER);
1542		gt->ier = intel_uncore_read(uncore, VLV_IER);
1543		gt->forcewake = intel_uncore_read_fw(uncore, FORCEWAKE_VLV);
1544	}
1545
1546	if (GRAPHICS_VER(i915) == 7)
1547		gt->err_int = intel_uncore_read(uncore, GEN7_ERR_INT);
1548
1549	if (GRAPHICS_VER(i915) >= 12) {
1550		gt->fault_data0 = intel_uncore_read(uncore,
1551						    GEN12_FAULT_TLB_DATA0);
1552		gt->fault_data1 = intel_uncore_read(uncore,
1553						    GEN12_FAULT_TLB_DATA1);
1554	} else if (GRAPHICS_VER(i915) >= 8) {
1555		gt->fault_data0 = intel_uncore_read(uncore,
1556						    GEN8_FAULT_TLB_DATA0);
1557		gt->fault_data1 = intel_uncore_read(uncore,
1558						    GEN8_FAULT_TLB_DATA1);
1559	}
1560
1561	if (GRAPHICS_VER(i915) == 6) {
1562		gt->forcewake = intel_uncore_read_fw(uncore, FORCEWAKE);
1563		gt->gab_ctl = intel_uncore_read(uncore, GAB_CTL);
1564		gt->gfx_mode = intel_uncore_read(uncore, GFX_MODE);
1565	}
1566
 
 
 
1567	/* 2: Registers which belong to multiple generations */
1568	if (GRAPHICS_VER(i915) >= 7)
1569		gt->forcewake = intel_uncore_read_fw(uncore, FORCEWAKE_MT);
1570
1571	if (GRAPHICS_VER(i915) >= 6) {
1572		gt->derrmr = intel_uncore_read(uncore, DERRMR);
1573		if (GRAPHICS_VER(i915) < 12) {
1574			gt->error = intel_uncore_read(uncore, ERROR_GEN6);
1575			gt->done_reg = intel_uncore_read(uncore, DONE_REG);
1576		}
1577	}
1578
1579	/* 3: Feature specific registers */
1580	if (IS_GRAPHICS_VER(i915, 6, 7)) {
1581		gt->gam_ecochk = intel_uncore_read(uncore, GAM_ECOCHK);
1582		gt->gac_eco = intel_uncore_read(uncore, GAC_ECO_BITS);
1583	}
1584
1585	if (IS_GRAPHICS_VER(i915, 8, 11))
1586		gt->gtt_cache = intel_uncore_read(uncore, HSW_GTT_CACHE_EN);
1587
1588	if (GRAPHICS_VER(i915) == 12)
1589		gt->aux_err = intel_uncore_read(uncore, GEN12_AUX_ERR_DBG);
1590
1591	if (GRAPHICS_VER(i915) >= 12) {
1592		for (i = 0; i < GEN12_SFC_DONE_MAX; i++) {
1593			/*
1594			 * SFC_DONE resides in the VD forcewake domain, so it
1595			 * only exists if the corresponding VCS engine is
1596			 * present.
1597			 */
1598			if (!HAS_ENGINE(gt->_gt, _VCS(i * 2)))
1599				continue;
1600
1601			gt->sfc_done[i] =
1602				intel_uncore_read(uncore, GEN12_SFC_DONE(i));
1603		}
1604
1605		gt->gam_done = intel_uncore_read(uncore, GEN12_GAM_DONE);
 
 
 
 
 
1606	}
1607
1608	/* 4: Everything else */
1609	if (GRAPHICS_VER(i915) >= 11) {
1610		gt->ier = intel_uncore_read(uncore, GEN8_DE_MISC_IER);
1611		gt->gtier[0] =
1612			intel_uncore_read(uncore,
1613					  GEN11_RENDER_COPY_INTR_ENABLE);
1614		gt->gtier[1] =
1615			intel_uncore_read(uncore, GEN11_VCS_VECS_INTR_ENABLE);
1616		gt->gtier[2] =
1617			intel_uncore_read(uncore, GEN11_GUC_SG_INTR_ENABLE);
1618		gt->gtier[3] =
1619			intel_uncore_read(uncore,
1620					  GEN11_GPM_WGBOXPERF_INTR_ENABLE);
1621		gt->gtier[4] =
1622			intel_uncore_read(uncore,
1623					  GEN11_CRYPTO_RSVD_INTR_ENABLE);
1624		gt->gtier[5] =
1625			intel_uncore_read(uncore,
1626					  GEN11_GUNIT_CSME_INTR_ENABLE);
1627		gt->ngtier = 6;
1628	} else if (GRAPHICS_VER(i915) >= 8) {
1629		gt->ier = intel_uncore_read(uncore, GEN8_DE_MISC_IER);
1630		for (i = 0; i < 4; i++)
1631			gt->gtier[i] =
1632				intel_uncore_read(uncore, GEN8_GT_IER(i));
1633		gt->ngtier = 4;
1634	} else if (HAS_PCH_SPLIT(i915)) {
1635		gt->ier = intel_uncore_read(uncore, DEIER);
1636		gt->gtier[0] = intel_uncore_read(uncore, GTIER);
1637		gt->ngtier = 1;
1638	} else if (GRAPHICS_VER(i915) == 2) {
1639		gt->ier = intel_uncore_read16(uncore, GEN2_IER);
1640	} else if (!IS_VALLEYVIEW(i915)) {
1641		gt->ier = intel_uncore_read(uncore, GEN2_IER);
1642	}
1643	gt->eir = intel_uncore_read(uncore, EIR);
1644	gt->pgtbl_er = intel_uncore_read(uncore, PGTBL_ER);
1645}
1646
1647static void gt_record_info(struct intel_gt_coredump *gt)
1648{
1649	memcpy(&gt->info, &gt->_gt->info, sizeof(struct intel_gt_info));
1650}
1651
1652/*
1653 * Generate a semi-unique error code. The code is not meant to have meaning, The
1654 * code's only purpose is to try to prevent false duplicated bug reports by
1655 * grossly estimating a GPU error state.
1656 *
1657 * TODO Ideally, hashing the batchbuffer would be a very nice way to determine
1658 * the hang if we could strip the GTT offset information from it.
1659 *
1660 * It's only a small step better than a random number in its current form.
1661 */
1662static u32 generate_ecode(const struct intel_engine_coredump *ee)
1663{
1664	/*
1665	 * IPEHR would be an ideal way to detect errors, as it's the gross
1666	 * measure of "the command that hung." However, has some very common
1667	 * synchronization commands which almost always appear in the case
1668	 * strictly a client bug. Use instdone to differentiate those some.
1669	 */
1670	return ee ? ee->ipehr ^ ee->instdone.instdone : 0;
1671}
1672
1673static const char *error_msg(struct i915_gpu_coredump *error)
 
 
 
1674{
1675	struct intel_engine_coredump *first = NULL;
1676	unsigned int hung_classes = 0;
1677	struct intel_gt_coredump *gt;
1678	int len;
1679
1680	for (gt = error->gt; gt; gt = gt->next) {
1681		struct intel_engine_coredump *cs;
1682
1683		for (cs = gt->engine; cs; cs = cs->next) {
1684			if (cs->hung) {
1685				hung_classes |= BIT(cs->engine->uabi_class);
1686				if (!first)
1687					first = cs;
1688			}
1689		}
1690	}
1691
1692	len = scnprintf(error->error_msg, sizeof(error->error_msg),
1693			"GPU HANG: ecode %d:%x:%08x",
1694			GRAPHICS_VER(error->i915), hung_classes,
1695			generate_ecode(first));
1696	if (first && first->context.pid) {
1697		/* Just show the first executing process, more is confusing */
1698		len += scnprintf(error->error_msg + len,
1699				 sizeof(error->error_msg) - len,
1700				 ", in %s [%d]",
1701				 first->context.comm, first->context.pid);
1702	}
1703
1704	return error->error_msg;
 
 
 
1705}
1706
1707static void capture_gen(struct i915_gpu_coredump *error)
 
1708{
1709	struct drm_i915_private *i915 = error->i915;
1710
1711	error->wakelock = atomic_read(&i915->runtime_pm.wakeref_count);
1712	error->suspended = i915->runtime_pm.suspended;
1713
1714	error->iommu = -1;
1715#ifdef CONFIG_INTEL_IOMMU
1716	error->iommu = intel_iommu_gfx_mapped;
1717#endif
1718	error->reset_count = i915_reset_count(&i915->gpu_error);
1719	error->suspend_count = i915->suspend_count;
1720
1721	i915_params_copy(&error->params, &i915->params);
1722	memcpy(&error->device_info,
1723	       INTEL_INFO(i915),
1724	       sizeof(error->device_info));
1725	memcpy(&error->runtime_info,
1726	       RUNTIME_INFO(i915),
1727	       sizeof(error->runtime_info));
1728	error->driver_caps = i915->caps;
1729}
1730
1731struct i915_gpu_coredump *
1732i915_gpu_coredump_alloc(struct drm_i915_private *i915, gfp_t gfp)
 
 
 
 
 
 
 
 
 
1733{
1734	struct i915_gpu_coredump *error;
1735
1736	if (!i915->params.error_capture)
1737		return NULL;
1738
1739	error = kzalloc(sizeof(*error), gfp);
1740	if (!error)
1741		return NULL;
 
 
 
1742
1743	kref_init(&error->ref);
1744	error->i915 = i915;
1745
1746	error->time = ktime_get_real();
1747	error->boottime = ktime_get_boottime();
1748	error->uptime = ktime_sub(ktime_get(), i915->gt.last_init_time);
1749	error->capture = jiffies;
1750
1751	capture_gen(error);
1752
1753	return error;
1754}
1755
1756#define DAY_AS_SECONDS(x) (24 * 60 * 60 * (x))
1757
1758struct intel_gt_coredump *
1759intel_gt_coredump_alloc(struct intel_gt *gt, gfp_t gfp)
1760{
1761	struct intel_gt_coredump *gc;
1762
1763	gc = kzalloc(sizeof(*gc), gfp);
1764	if (!gc)
1765		return NULL;
1766
1767	gc->_gt = gt;
1768	gc->awake = intel_gt_pm_is_awake(gt);
 
 
 
1769
1770	gt_record_regs(gc);
1771	gt_record_fences(gc);
1772
1773	return gc;
1774}
1775
1776struct i915_vma_compress *
1777i915_vma_capture_prepare(struct intel_gt_coredump *gt)
1778{
1779	struct i915_vma_compress *compress;
1780
1781	compress = kmalloc(sizeof(*compress), ALLOW_FAIL);
1782	if (!compress)
1783		return NULL;
1784
1785	if (!compress_init(compress)) {
1786		kfree(compress);
1787		return NULL;
 
1788	}
 
1789
1790	return compress;
1791}
1792
1793void i915_vma_capture_finish(struct intel_gt_coredump *gt,
1794			     struct i915_vma_compress *compress)
1795{
1796	if (!compress)
1797		return;
1798
1799	compress_fini(compress);
1800	kfree(compress);
1801}
1802
1803struct i915_gpu_coredump *
1804i915_gpu_coredump(struct intel_gt *gt, intel_engine_mask_t engine_mask)
1805{
1806	struct drm_i915_private *i915 = gt->i915;
1807	struct i915_gpu_coredump *error;
1808
1809	/* Check if GPU capture has been disabled */
1810	error = READ_ONCE(i915->gpu_error.first_error);
1811	if (IS_ERR(error))
1812		return error;
1813
1814	error = i915_gpu_coredump_alloc(i915, ALLOW_FAIL);
1815	if (!error)
1816		return ERR_PTR(-ENOMEM);
1817
1818	error->gt = intel_gt_coredump_alloc(gt, ALLOW_FAIL);
1819	if (error->gt) {
1820		struct i915_vma_compress *compress;
1821
1822		compress = i915_vma_capture_prepare(error->gt);
1823		if (!compress) {
1824			kfree(error->gt);
1825			kfree(error);
1826			return ERR_PTR(-ENOMEM);
1827		}
1828
1829		gt_record_info(error->gt);
1830		gt_record_engines(error->gt, engine_mask, compress);
1831
1832		if (INTEL_INFO(i915)->has_gt_uc)
1833			error->gt->uc = gt_record_uc(error->gt, compress);
1834
1835		i915_vma_capture_finish(error->gt, compress);
1836
1837		error->simulated |= error->gt->simulated;
1838	}
1839
1840	error->overlay = intel_overlay_capture_error_state(i915);
1841
1842	return error;
1843}
1844
1845void i915_error_state_store(struct i915_gpu_coredump *error)
1846{
1847	struct drm_i915_private *i915;
1848	static bool warned;
1849
1850	if (IS_ERR_OR_NULL(error))
1851		return;
1852
1853	i915 = error->i915;
1854	drm_info(&i915->drm, "%s\n", error_msg(error));
1855
1856	if (error->simulated ||
1857	    cmpxchg(&i915->gpu_error.first_error, NULL, error))
1858		return;
1859
1860	i915_gpu_coredump_get(error);
1861
1862	if (!xchg(&warned, true) &&
1863	    ktime_get_real_seconds() - DRIVER_TIMESTAMP < DAY_AS_SECONDS(180)) {
1864		pr_info("GPU hangs can indicate a bug anywhere in the entire gfx stack, including userspace.\n");
1865		pr_info("Please file a _new_ bug report at https://gitlab.freedesktop.org/drm/intel/issues/new.\n");
1866		pr_info("Please see https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs for details.\n");
1867		pr_info("drm/i915 developers can then reassign to the right component if it's not a kernel issue.\n");
1868		pr_info("The GPU crash dump is required to analyze GPU hangs, so please always attach it.\n");
1869		pr_info("GPU crash dump saved to /sys/class/drm/card%d/error\n",
1870			i915->drm.primary->index);
1871	}
1872}
1873
1874/**
1875 * i915_capture_error_state - capture an error record for later analysis
1876 * @gt: intel_gt which originated the hang
1877 * @engine_mask: hung engines
1878 *
1879 *
1880 * Should be called when an error is detected (either a hang or an error
1881 * interrupt) to capture error state from the time of the error.  Fills
1882 * out a structure which becomes available in debugfs for user level tools
1883 * to pick up.
1884 */
1885void i915_capture_error_state(struct intel_gt *gt,
1886			      intel_engine_mask_t engine_mask)
1887{
1888	struct i915_gpu_coredump *error;
 
1889
1890	error = i915_gpu_coredump(gt, engine_mask);
1891	if (IS_ERR(error)) {
1892		cmpxchg(&gt->i915->gpu_error.first_error, NULL, error);
1893		return;
1894	}
1895
1896	i915_error_state_store(error);
1897	i915_gpu_coredump_put(error);
1898}
1899
1900struct i915_gpu_coredump *
1901i915_first_error_state(struct drm_i915_private *i915)
1902{
1903	struct i915_gpu_coredump *error;
1904
1905	spin_lock_irq(&i915->gpu_error.lock);
1906	error = i915->gpu_error.first_error;
1907	if (!IS_ERR_OR_NULL(error))
1908		i915_gpu_coredump_get(error);
1909	spin_unlock_irq(&i915->gpu_error.lock);
1910
1911	return error;
1912}
1913
1914void i915_reset_error_state(struct drm_i915_private *i915)
1915{
1916	struct i915_gpu_coredump *error;
1917
1918	spin_lock_irq(&i915->gpu_error.lock);
1919	error = i915->gpu_error.first_error;
1920	if (error != ERR_PTR(-ENODEV)) /* if disabled, always disabled */
1921		i915->gpu_error.first_error = NULL;
1922	spin_unlock_irq(&i915->gpu_error.lock);
1923
1924	if (!IS_ERR_OR_NULL(error))
1925		i915_gpu_coredump_put(error);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1926}
1927
1928void i915_disable_error_state(struct drm_i915_private *i915, int err)
1929{
1930	spin_lock_irq(&i915->gpu_error.lock);
1931	if (!i915->gpu_error.first_error)
1932		i915->gpu_error.first_error = ERR_PTR(err);
1933	spin_unlock_irq(&i915->gpu_error.lock);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1934}
v3.15
   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";
  45	default: return "";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  46	}
 
 
  47}
  48
  49static const char *pin_flag(int pinned)
 
 
  50{
  51	if (pinned > 0)
  52		return " P";
  53	else if (pinned < 0)
  54		return " p";
  55	else
  56		return "";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  57}
  58
  59static const char *tiling_flag(int tiling)
 
 
 
  60{
  61	switch (tiling) {
  62	default:
  63	case I915_TILING_NONE: return "";
  64	case I915_TILING_X: return " X";
  65	case I915_TILING_Y: return " Y";
  66	}
  67}
  68
  69static const char *dirty_flag(int dirty)
 
  70{
  71	return dirty ? " dirty" : "";
 
 
 
 
  72}
  73
  74static const char *purgeable_flag(int purgeable)
 
  75{
  76	return purgeable ? " purgeable" : "";
  77}
  78
  79static bool __i915_error_ok(struct drm_i915_error_state_buf *e)
  80{
 
 
  81
  82	if (!e->err && WARN(e->bytes > (e->size - 1), "overflow")) {
  83		e->err = -ENOSPC;
  84		return false;
 
 
  85	}
  86
  87	if (e->bytes == e->size - 1 || e->err)
  88		return false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  89
  90	return true;
  91}
  92
  93static bool __i915_error_seek(struct drm_i915_error_state_buf *e,
  94			      unsigned len)
  95{
  96	if (e->pos + len <= e->start) {
  97		e->pos += len;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  98		return false;
  99	}
 100
 101	/* First vsnprintf needs to fit in its entirety for memmove */
 102	if (len >= e->size) {
 103		e->err = -EIO;
 
 
 104		return false;
 105	}
 106
 
 
 
 
 107	return true;
 108}
 109
 110static void __i915_error_advance(struct drm_i915_error_state_buf *e,
 111				 unsigned len)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 112{
 113	/* If this is first printf in this window, adjust it so that
 114	 * start position matches start of the buffer
 115	 */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 116
 117	if (e->pos < e->start) {
 118		const size_t off = e->start - e->pos;
 119
 120		/* Should not happen but be paranoid */
 121		if (off > len || e->bytes) {
 122			e->err = -EIO;
 123			return;
 124		}
 
 125
 126		memmove(e->buf, e->buf + off, len - off);
 127		e->bytes = len - off;
 128		e->pos = e->start;
 129		return;
 130	}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 131
 132	e->bytes += len;
 133	e->pos += len;
 
 134}
 135
 136static void i915_error_vprintf(struct drm_i915_error_state_buf *e,
 137			       const char *f, va_list args)
 
 
 138{
 139	unsigned len;
 
 
 
 
 140
 141	if (!__i915_error_ok(e))
 142		return;
 
 
 143
 144	/* Seek the first printf which is hits start position */
 145	if (e->pos < e->start) {
 146		va_list tmp;
 147
 148		va_copy(tmp, args);
 149		len = vsnprintf(NULL, 0, f, tmp);
 150		va_end(tmp);
 
 
 151
 152		if (!__i915_error_seek(e, len))
 153			return;
 154	}
 155
 156	len = vsnprintf(e->buf + e->bytes, e->size - e->bytes, f, args);
 157	if (len >= e->size - e->bytes)
 158		len = e->size - e->bytes - 1;
 
 159
 160	__i915_error_advance(e, len);
 
 
 161}
 162
 163static void i915_error_puts(struct drm_i915_error_state_buf *e,
 164			    const char *str)
 
 
 165{
 166	unsigned len;
 
 
 
 
 
 167
 168	if (!__i915_error_ok(e))
 169		return;
 170
 171	len = strlen(str);
 
 
 
 
 172
 173	/* Seek the first printf which is hits start position */
 174	if (e->pos < e->start) {
 175		if (!__i915_error_seek(e, len))
 176			return;
 177	}
 
 
 
 
 178
 179	if (len >= e->size - e->bytes)
 180		len = e->size - e->bytes - 1;
 181	memcpy(e->buf + e->bytes, str, len);
 182
 183	__i915_error_advance(e, len);
 
 
 
 184}
 185
 186#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
 187#define err_puts(e, s) i915_error_puts(e, s)
 
 
 
 
 188
 189static void print_error_buffers(struct drm_i915_error_state_buf *m,
 190				const char *name,
 191				struct drm_i915_error_buffer *err,
 192				int count)
 193{
 194	err_printf(m, "%s [%d]:\n", name, count);
 195
 196	while (count--) {
 197		err_printf(m, "  %08x %8u %02x %02x %x %x",
 198			   err->gtt_offset,
 199			   err->size,
 200			   err->read_domains,
 201			   err->write_domain,
 202			   err->rseqno, err->wseqno);
 203		err_puts(m, pin_flag(err->pinned));
 204		err_puts(m, tiling_flag(err->tiling));
 205		err_puts(m, dirty_flag(err->dirty));
 206		err_puts(m, purgeable_flag(err->purgeable));
 207		err_puts(m, err->ring != -1 ? " " : "");
 208		err_puts(m, ring_str(err->ring));
 209		err_puts(m, i915_cache_level_str(err->cache_level));
 210
 211		if (err->name)
 212			err_printf(m, " (name: %d)", err->name);
 213		if (err->fence_reg != I915_FENCE_REG_NONE)
 214			err_printf(m, " (fence: %d)", err->fence_reg);
 215
 216		err_puts(m, "\n");
 217		err++;
 
 218	}
 
 
 219}
 220
 221static const char *hangcheck_action_to_str(enum intel_ring_hangcheck_action a)
 222{
 223	switch (a) {
 224	case HANGCHECK_IDLE:
 225		return "idle";
 226	case HANGCHECK_WAIT:
 227		return "wait";
 228	case HANGCHECK_ACTIVE:
 229		return "active";
 230	case HANGCHECK_KICK:
 231		return "kick";
 232	case HANGCHECK_HUNG:
 233		return "hung";
 234	}
 235
 236	return "unknown";
 237}
 238
 239static void i915_ring_error_state(struct drm_i915_error_state_buf *m,
 240				  struct drm_device *dev,
 241				  struct drm_i915_error_ring *ring)
 242{
 243	if (!ring->valid)
 244		return;
 245
 246	err_printf(m, "  HEAD: 0x%08x\n", ring->head);
 247	err_printf(m, "  TAIL: 0x%08x\n", ring->tail);
 248	err_printf(m, "  CTL: 0x%08x\n", ring->ctl);
 249	err_printf(m, "  HWS: 0x%08x\n", ring->hws);
 250	err_printf(m, "  ACTHD: 0x%08x %08x\n", (u32)(ring->acthd>>32), (u32)ring->acthd);
 251	err_printf(m, "  IPEIR: 0x%08x\n", ring->ipeir);
 252	err_printf(m, "  IPEHR: 0x%08x\n", ring->ipehr);
 253	err_printf(m, "  INSTDONE: 0x%08x\n", ring->instdone);
 254	if (INTEL_INFO(dev)->gen >= 4) {
 255		err_printf(m, "  BBADDR: 0x%08x %08x\n", (u32)(ring->bbaddr>>32), (u32)ring->bbaddr);
 256		err_printf(m, "  BB_STATE: 0x%08x\n", ring->bbstate);
 257		err_printf(m, "  INSTPS: 0x%08x\n", ring->instps);
 258	}
 259	err_printf(m, "  INSTPM: 0x%08x\n", ring->instpm);
 260	err_printf(m, "  FADDR: 0x%08x\n", ring->faddr);
 261	if (INTEL_INFO(dev)->gen >= 6) {
 262		err_printf(m, "  RC PSMI: 0x%08x\n", ring->rc_psmi);
 263		err_printf(m, "  FAULT_REG: 0x%08x\n", ring->fault_reg);
 264		err_printf(m, "  SYNC_0: 0x%08x [last synced 0x%08x]\n",
 265			   ring->semaphore_mboxes[0],
 266			   ring->semaphore_seqno[0]);
 267		err_printf(m, "  SYNC_1: 0x%08x [last synced 0x%08x]\n",
 268			   ring->semaphore_mboxes[1],
 269			   ring->semaphore_seqno[1]);
 270		if (HAS_VEBOX(dev)) {
 271			err_printf(m, "  SYNC_2: 0x%08x [last synced 0x%08x]\n",
 272				   ring->semaphore_mboxes[2],
 273				   ring->semaphore_seqno[2]);
 274		}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 275	}
 276	if (USES_PPGTT(dev)) {
 277		err_printf(m, "  GFX_MODE: 0x%08x\n", ring->vm_info.gfx_mode);
 278
 279		if (INTEL_INFO(dev)->gen >= 8) {
 280			int i;
 281			for (i = 0; i < 4; i++)
 282				err_printf(m, "  PDP%d: 0x%016llx\n",
 283					   i, ring->vm_info.pdp[i]);
 284		} else {
 285			err_printf(m, "  PP_DIR_BASE: 0x%08x\n",
 286				   ring->vm_info.pp_dir_base);
 287		}
 288	}
 289	err_printf(m, "  seqno: 0x%08x\n", ring->seqno);
 290	err_printf(m, "  waiting: %s\n", yesno(ring->waiting));
 291	err_printf(m, "  ring->head: 0x%08x\n", ring->cpu_ring_head);
 292	err_printf(m, "  ring->tail: 0x%08x\n", ring->cpu_ring_tail);
 293	err_printf(m, "  hangcheck: %s [%d]\n",
 294		   hangcheck_action_to_str(ring->hangcheck_action),
 295		   ring->hangcheck_score);
 
 
 296}
 297
 298void i915_error_printf(struct drm_i915_error_state_buf *e, const char *f, ...)
 299{
 300	va_list args;
 301
 302	va_start(args, f);
 303	i915_error_vprintf(e, f, args);
 304	va_end(args);
 305}
 306
 307static void print_error_obj(struct drm_i915_error_state_buf *m,
 308			    struct drm_i915_error_object *obj)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 309{
 310	int page, offset, elt;
 
 311
 312	for (page = offset = 0; page < obj->page_count; page++) {
 313		for (elt = 0; elt < PAGE_SIZE/4; elt++) {
 314			err_printf(m, "%08x :  %08x\n", offset,
 315				   obj->pages[page][elt]);
 316			offset += 4;
 317		}
 
 
 
 
 318	}
 319}
 320
 321int i915_error_state_to_str(struct drm_i915_error_state_buf *m,
 322			    const struct i915_error_state_file_priv *error_priv)
 323{
 324	struct drm_device *dev = error_priv->dev;
 325	struct drm_i915_private *dev_priv = dev->dev_private;
 326	struct drm_i915_error_state *error = error_priv->error;
 327	int i, j, offset, elt;
 328	int max_hangcheck_score;
 329
 330	if (!error) {
 331		err_printf(m, "no error state collected\n");
 332		goto out;
 333	}
 334
 335	err_printf(m, "%s\n", error->error_msg);
 336	err_printf(m, "Time: %ld s %ld us\n", error->time.tv_sec,
 337		   error->time.tv_usec);
 338	err_printf(m, "Kernel: " UTS_RELEASE "\n");
 339	max_hangcheck_score = 0;
 340	for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
 341		if (error->ring[i].hangcheck_score > max_hangcheck_score)
 342			max_hangcheck_score = error->ring[i].hangcheck_score;
 343	}
 344	for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
 345		if (error->ring[i].hangcheck_score == max_hangcheck_score &&
 346		    error->ring[i].pid != -1) {
 347			err_printf(m, "Active process (on ring %s): %s [%d]\n",
 348				   ring_str(i),
 349				   error->ring[i].comm,
 350				   error->ring[i].pid);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 351		}
 
 
 352	}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 353	err_printf(m, "Reset count: %u\n", error->reset_count);
 354	err_printf(m, "Suspend count: %u\n", error->suspend_count);
 355	err_printf(m, "PCI ID: 0x%04x\n", dev->pdev->device);
 356	err_printf(m, "EIR: 0x%08x\n", error->eir);
 357	err_printf(m, "IER: 0x%08x\n", error->ier);
 358	err_printf(m, "PGTBL_ER: 0x%08x\n", error->pgtbl_er);
 359	err_printf(m, "FORCEWAKE: 0x%08x\n", error->forcewake);
 360	err_printf(m, "DERRMR: 0x%08x\n", error->derrmr);
 361	err_printf(m, "CCID: 0x%08x\n", error->ccid);
 362	err_printf(m, "Missed interrupts: 0x%08lx\n", dev_priv->gpu_error.missed_irq_rings);
 363
 364	for (i = 0; i < dev_priv->num_fence_regs; i++)
 365		err_printf(m, "  fence[%d] = %08llx\n", i, error->fence[i]);
 366
 367	for (i = 0; i < ARRAY_SIZE(error->extra_instdone); i++)
 368		err_printf(m, "  INSTDONE_%d: 0x%08x\n", i,
 369			   error->extra_instdone[i]);
 370
 371	if (INTEL_INFO(dev)->gen >= 6) {
 372		err_printf(m, "ERROR: 0x%08x\n", error->error);
 373		err_printf(m, "DONE_REG: 0x%08x\n", error->done_reg);
 374	}
 375
 376	if (INTEL_INFO(dev)->gen == 7)
 377		err_printf(m, "ERR_INT: 0x%08x\n", error->err_int);
 378
 379	for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
 380		err_printf(m, "%s command stream:\n", ring_str(i));
 381		i915_ring_error_state(m, dev, &error->ring[i]);
 382	}
 383
 384	if (error->active_bo)
 385		print_error_buffers(m, "Active",
 386				    error->active_bo[0],
 387				    error->active_bo_count[0]);
 388
 389	if (error->pinned_bo)
 390		print_error_buffers(m, "Pinned",
 391				    error->pinned_bo[0],
 392				    error->pinned_bo_count[0]);
 393
 394	for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
 395		struct drm_i915_error_object *obj;
 396
 397		obj = error->ring[i].batchbuffer;
 398		if (obj) {
 399			err_puts(m, dev_priv->ring[i].name);
 400			if (error->ring[i].pid != -1)
 401				err_printf(m, " (submitted by %s [%d])",
 402					   error->ring[i].comm,
 403					   error->ring[i].pid);
 404			err_printf(m, " --- gtt_offset = 0x%08x\n",
 405				   obj->gtt_offset);
 406			print_error_obj(m, obj);
 407		}
 408
 409		obj = error->ring[i].wa_batchbuffer;
 410		if (obj) {
 411			err_printf(m, "%s (w/a) --- gtt_offset = 0x%08x\n",
 412				   dev_priv->ring[i].name, obj->gtt_offset);
 413			print_error_obj(m, obj);
 414		}
 415
 416		if (error->ring[i].num_requests) {
 417			err_printf(m, "%s --- %d requests\n",
 418				   dev_priv->ring[i].name,
 419				   error->ring[i].num_requests);
 420			for (j = 0; j < error->ring[i].num_requests; j++) {
 421				err_printf(m, "  seqno 0x%08x, emitted %ld, tail 0x%08x\n",
 422					   error->ring[i].requests[j].seqno,
 423					   error->ring[i].requests[j].jiffies,
 424					   error->ring[i].requests[j].tail);
 425			}
 426		}
 427
 428		if ((obj = error->ring[i].ringbuffer)) {
 429			err_printf(m, "%s --- ringbuffer = 0x%08x\n",
 430				   dev_priv->ring[i].name,
 431				   obj->gtt_offset);
 432			print_error_obj(m, obj);
 433		}
 434
 435		if ((obj = error->ring[i].hws_page)) {
 436			err_printf(m, "%s --- HW Status = 0x%08x\n",
 437				   dev_priv->ring[i].name,
 438				   obj->gtt_offset);
 439			offset = 0;
 440			for (elt = 0; elt < PAGE_SIZE/16; elt += 4) {
 441				err_printf(m, "[%04x] %08x %08x %08x %08x\n",
 442					   offset,
 443					   obj->pages[0][elt],
 444					   obj->pages[0][elt+1],
 445					   obj->pages[0][elt+2],
 446					   obj->pages[0][elt+3]);
 447					offset += 16;
 448			}
 449		}
 450
 451		if ((obj = error->ring[i].ctx)) {
 452			err_printf(m, "%s --- HW Context = 0x%08x\n",
 453				   dev_priv->ring[i].name,
 454				   obj->gtt_offset);
 455			offset = 0;
 456			for (elt = 0; elt < PAGE_SIZE/16; elt += 4) {
 457				err_printf(m, "[%04x] %08x %08x %08x %08x\n",
 458					   offset,
 459					   obj->pages[0][elt],
 460					   obj->pages[0][elt+1],
 461					   obj->pages[0][elt+2],
 462					   obj->pages[0][elt+3]);
 463					offset += 16;
 464			}
 465		}
 466	}
 467
 
 
 
 
 
 
 468	if (error->overlay)
 469		intel_overlay_print_error_state(m, error->overlay);
 470
 471	if (error->display)
 472		intel_display_print_error_state(m, dev, error->display);
 
 
 
 
 
 473
 474out:
 475	if (m->bytes == 0 && m->err)
 476		return m->err;
 477
 478	return 0;
 479}
 480
 481int i915_error_state_buf_init(struct drm_i915_error_state_buf *ebuf,
 482			      size_t count, loff_t pos)
 483{
 484	memset(ebuf, 0, sizeof(*ebuf));
 485
 486	/* We need to have enough room to store any i915_error_state printf
 487	 * so that we can move it to start position.
 488	 */
 489	ebuf->size = count + 1 > PAGE_SIZE ? count + 1 : PAGE_SIZE;
 490	ebuf->buf = kmalloc(ebuf->size,
 491				GFP_TEMPORARY | __GFP_NORETRY | __GFP_NOWARN);
 492
 493	if (ebuf->buf == NULL) {
 494		ebuf->size = PAGE_SIZE;
 495		ebuf->buf = kmalloc(ebuf->size, GFP_TEMPORARY);
 
 496	}
 
 
 
 
 
 497
 498	if (ebuf->buf == NULL) {
 499		ebuf->size = 128;
 500		ebuf->buf = kmalloc(ebuf->size, GFP_TEMPORARY);
 501	}
 502
 503	if (ebuf->buf == NULL)
 504		return -ENOMEM;
 505
 506	ebuf->start = pos;
 507
 508	return 0;
 509}
 510
 511static void i915_error_object_free(struct drm_i915_error_object *obj)
 
 512{
 513	int page;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 514
 515	if (obj == NULL)
 516		return;
 517
 518	for (page = 0; page < obj->page_count; page++)
 519		kfree(obj->pages[page]);
 
 
 
 
 
 520
 521	kfree(obj);
 522}
 523
 524static void i915_error_state_free(struct kref *error_ref)
 525{
 526	struct drm_i915_error_state *error = container_of(error_ref,
 527							  typeof(*error), ref);
 528	int i;
 
 
 
 529
 530	for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
 531		i915_error_object_free(error->ring[i].batchbuffer);
 532		i915_error_object_free(error->ring[i].ringbuffer);
 533		i915_error_object_free(error->ring[i].hws_page);
 534		i915_error_object_free(error->ring[i].ctx);
 535		kfree(error->ring[i].requests);
 536	}
 
 537
 538	kfree(error->active_bo);
 539	kfree(error->overlay);
 540	kfree(error->display);
 541	kfree(error);
 542}
 543
 544static struct drm_i915_error_object *
 545i915_error_object_create_sized(struct drm_i915_private *dev_priv,
 546			       struct drm_i915_gem_object *src,
 547			       struct i915_address_space *vm,
 548			       const int num_pages)
 549{
 550	struct drm_i915_error_object *dst;
 551	int i;
 552	u32 reloc_offset;
 
 
 
 553
 554	if (src == NULL || src->pages == NULL)
 555		return NULL;
 
 
 556
 557	dst = kmalloc(sizeof(*dst) + num_pages * sizeof(u32 *), GFP_ATOMIC);
 558	if (dst == NULL)
 559		return NULL;
 560
 561	reloc_offset = dst->gtt_offset = i915_gem_obj_offset(src, vm);
 562	for (i = 0; i < num_pages; i++) {
 563		unsigned long flags;
 564		void *d;
 565
 566		d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
 567		if (d == NULL)
 568			goto unwind;
 569
 570		local_irq_save(flags);
 571		if (src->cache_level == I915_CACHE_NONE &&
 572		    reloc_offset < dev_priv->gtt.mappable_end &&
 573		    src->has_global_gtt_mapping &&
 574		    i915_is_ggtt(vm)) {
 575			void __iomem *s;
 576
 577			/* Simply ignore tiling or any overlapping fence.
 578			 * It's part of the error state, and this hopefully
 579			 * captures what the GPU read.
 580			 */
 581
 582			s = io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
 583						     reloc_offset);
 584			memcpy_fromio(d, s, PAGE_SIZE);
 585			io_mapping_unmap_atomic(s);
 586		} else if (src->stolen) {
 587			unsigned long offset;
 588
 589			offset = dev_priv->mm.stolen_base;
 590			offset += src->stolen->start;
 591			offset += i << PAGE_SHIFT;
 592
 593			memcpy_fromio(d, (void __iomem *) offset, PAGE_SIZE);
 594		} else {
 595			struct page *page;
 596			void *s;
 597
 598			page = i915_gem_object_get_page(src, i);
 
 599
 600			drm_clflush_pages(&page, 1);
 
 
 601
 602			s = kmap_atomic(page);
 603			memcpy(d, s, PAGE_SIZE);
 604			kunmap_atomic(s);
 605
 606			drm_clflush_pages(&page, 1);
 607		}
 608		local_irq_restore(flags);
 609
 610		dst->pages[i] = d;
 
 
 611
 612		reloc_offset += PAGE_SIZE;
 613	}
 614	dst->page_count = num_pages;
 
 
 
 
 
 
 
 
 
 615
 616	return dst;
 617
 618unwind:
 619	while (i--)
 620		kfree(dst->pages[i]);
 621	kfree(dst);
 622	return NULL;
 623}
 624#define i915_error_object_create(dev_priv, src, vm) \
 625	i915_error_object_create_sized((dev_priv), (src), (vm), \
 626				       (src)->base.size>>PAGE_SHIFT)
 627
 628#define i915_error_ggtt_object_create(dev_priv, src) \
 629	i915_error_object_create_sized((dev_priv), (src), &(dev_priv)->gtt.base, \
 630				       (src)->base.size>>PAGE_SHIFT)
 631
 632static void capture_bo(struct drm_i915_error_buffer *err,
 633		       struct drm_i915_gem_object *obj)
 634{
 635	err->size = obj->base.size;
 636	err->name = obj->base.name;
 637	err->rseqno = obj->last_read_seqno;
 638	err->wseqno = obj->last_write_seqno;
 639	err->gtt_offset = i915_gem_obj_ggtt_offset(obj);
 640	err->read_domains = obj->base.read_domains;
 641	err->write_domain = obj->base.write_domain;
 642	err->fence_reg = obj->fence_reg;
 643	err->pinned = 0;
 644	if (i915_gem_obj_is_pinned(obj))
 645		err->pinned = 1;
 646	if (obj->user_pin_count > 0)
 647		err->pinned = -1;
 648	err->tiling = obj->tiling_mode;
 649	err->dirty = obj->dirty;
 650	err->purgeable = obj->madv != I915_MADV_WILLNEED;
 651	err->ring = obj->ring ? obj->ring->id : -1;
 652	err->cache_level = obj->cache_level;
 653}
 654
 655static u32 capture_active_bo(struct drm_i915_error_buffer *err,
 656			     int count, struct list_head *head)
 657{
 658	struct i915_vma *vma;
 659	int i = 0;
 660
 661	list_for_each_entry(vma, head, mm_list) {
 662		capture_bo(err++, vma->obj);
 663		if (++i == count)
 664			break;
 665	}
 666
 667	return i;
 668}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 669
 670static u32 capture_pinned_bo(struct drm_i915_error_buffer *err,
 671			     int count, struct list_head *head)
 672{
 673	struct drm_i915_gem_object *obj;
 674	int i = 0;
 675
 676	list_for_each_entry(obj, head, global_list) {
 677		if (!i915_gem_obj_is_pinned(obj))
 678			continue;
 
 
 
 
 
 
 
 
 
 679
 680		capture_bo(err++, obj);
 681		if (++i == count)
 682			break;
 683	}
 684
 685	return i;
 686}
 687
 688/* Generate a semi-unique error code. The code is not meant to have meaning, The
 689 * code's only purpose is to try to prevent false duplicated bug reports by
 690 * grossly estimating a GPU error state.
 691 *
 692 * TODO Ideally, hashing the batchbuffer would be a very nice way to determine
 693 * the hang if we could strip the GTT offset information from it.
 694 *
 695 * It's only a small step better than a random number in its current form.
 696 */
 697static uint32_t i915_error_generate_code(struct drm_i915_private *dev_priv,
 698					 struct drm_i915_error_state *error,
 699					 int *ring_id)
 700{
 701	uint32_t error_code = 0;
 702	int i;
 703
 704	/* IPEHR would be an ideal way to detect errors, as it's the gross
 705	 * measure of "the command that hung." However, has some very common
 706	 * synchronization commands which almost always appear in the case
 707	 * strictly a client bug. Use instdone to differentiate those some.
 708	 */
 709	for (i = 0; i < I915_NUM_RINGS; i++) {
 710		if (error->ring[i].hangcheck_action == HANGCHECK_HUNG) {
 711			if (ring_id)
 712				*ring_id = i;
 713
 714			return error->ring[i].ipehr ^ error->ring[i].instdone;
 
 715		}
 716	}
 717
 718	return error_code;
 
 
 
 
 
 
 
 
 719}
 720
 721static void i915_gem_record_fences(struct drm_device *dev,
 722				   struct drm_i915_error_state *error)
 723{
 724	struct drm_i915_private *dev_priv = dev->dev_private;
 
 725	int i;
 726
 727	/* Fences */
 728	switch (INTEL_INFO(dev)->gen) {
 729	case 8:
 730	case 7:
 731	case 6:
 732		for (i = 0; i < dev_priv->num_fence_regs; i++)
 733			error->fence[i] = I915_READ64(FENCE_REG_SANDYBRIDGE_0 + (i * 8));
 734		break;
 735	case 5:
 736	case 4:
 737		for (i = 0; i < 16; i++)
 738			error->fence[i] = I915_READ64(FENCE_REG_965_0 + (i * 8));
 739		break;
 740	case 3:
 741		if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
 742			for (i = 0; i < 8; i++)
 743				error->fence[i+8] = I915_READ(FENCE_REG_945_8 + (i * 4));
 744	case 2:
 745		for (i = 0; i < 8; i++)
 746			error->fence[i] = I915_READ(FENCE_REG_830_0 + (i * 4));
 747		break;
 748
 749	default:
 750		BUG();
 751	}
 752}
 753
 754static void i915_record_ring_state(struct drm_device *dev,
 755				   struct intel_ring_buffer *ring,
 756				   struct drm_i915_error_ring *ering)
 757{
 758	struct drm_i915_private *dev_priv = dev->dev_private;
 759
 760	if (INTEL_INFO(dev)->gen >= 6) {
 761		ering->rc_psmi = I915_READ(ring->mmio_base + 0x50);
 762		ering->fault_reg = I915_READ(RING_FAULT_REG(ring));
 763		ering->semaphore_mboxes[0]
 764			= I915_READ(RING_SYNC_0(ring->mmio_base));
 765		ering->semaphore_mboxes[1]
 766			= I915_READ(RING_SYNC_1(ring->mmio_base));
 767		ering->semaphore_seqno[0] = ring->sync_seqno[0];
 768		ering->semaphore_seqno[1] = ring->sync_seqno[1];
 769	}
 770
 771	if (HAS_VEBOX(dev)) {
 772		ering->semaphore_mboxes[2] =
 773			I915_READ(RING_SYNC_2(ring->mmio_base));
 774		ering->semaphore_seqno[2] = ring->sync_seqno[2];
 775	}
 776
 777	if (INTEL_INFO(dev)->gen >= 4) {
 778		ering->faddr = I915_READ(RING_DMA_FADD(ring->mmio_base));
 779		ering->ipeir = I915_READ(RING_IPEIR(ring->mmio_base));
 780		ering->ipehr = I915_READ(RING_IPEHR(ring->mmio_base));
 781		ering->instdone = I915_READ(RING_INSTDONE(ring->mmio_base));
 782		ering->instps = I915_READ(RING_INSTPS(ring->mmio_base));
 783		ering->bbaddr = I915_READ(RING_BBADDR(ring->mmio_base));
 784		if (INTEL_INFO(dev)->gen >= 8)
 785			ering->bbaddr |= (u64) I915_READ(RING_BBADDR_UDW(ring->mmio_base)) << 32;
 786		ering->bbstate = I915_READ(RING_BBSTATE(ring->mmio_base));
 787	} else {
 788		ering->faddr = I915_READ(DMA_FADD_I8XX);
 789		ering->ipeir = I915_READ(IPEIR);
 790		ering->ipehr = I915_READ(IPEHR);
 791		ering->instdone = I915_READ(INSTDONE);
 792	}
 793
 794	ering->waiting = waitqueue_active(&ring->irq_queue);
 795	ering->instpm = I915_READ(RING_INSTPM(ring->mmio_base));
 796	ering->seqno = ring->get_seqno(ring, false);
 797	ering->acthd = intel_ring_get_active_head(ring);
 798	ering->head = I915_READ_HEAD(ring);
 799	ering->tail = I915_READ_TAIL(ring);
 800	ering->ctl = I915_READ_CTL(ring);
 
 
 801
 802	if (I915_NEED_GFX_HWS(dev)) {
 803		int mmio;
 804
 805		if (IS_GEN7(dev)) {
 806			switch (ring->id) {
 807			default:
 808			case RCS:
 
 
 809				mmio = RENDER_HWS_PGA_GEN7;
 810				break;
 811			case BCS:
 812				mmio = BLT_HWS_PGA_GEN7;
 813				break;
 814			case VCS:
 815				mmio = BSD_HWS_PGA_GEN7;
 816				break;
 817			case VECS:
 818				mmio = VEBOX_HWS_PGA_GEN7;
 819				break;
 820			}
 821		} else if (IS_GEN6(ring->dev)) {
 822			mmio = RING_HWS_PGA_GEN6(ring->mmio_base);
 823		} else {
 824			/* XXX: gen8 returns to sanity */
 825			mmio = RING_HWS_PGA(ring->mmio_base);
 826		}
 827
 828		ering->hws = I915_READ(mmio);
 829	}
 830
 831	ering->cpu_ring_head = ring->head;
 832	ering->cpu_ring_tail = ring->tail;
 833
 834	ering->hangcheck_score = ring->hangcheck.score;
 835	ering->hangcheck_action = ring->hangcheck.action;
 836
 837	if (USES_PPGTT(dev)) {
 838		int i;
 839
 840		ering->vm_info.gfx_mode = I915_READ(RING_MODE_GEN7(ring));
 
 
 
 
 
 
 
 841
 842		switch (INTEL_INFO(dev)->gen) {
 843		case 8:
 844			for (i = 0; i < 4; i++) {
 845				ering->vm_info.pdp[i] =
 846					I915_READ(GEN8_RING_PDP_UDW(ring, i));
 847				ering->vm_info.pdp[i] <<= 32;
 848				ering->vm_info.pdp[i] |=
 849					I915_READ(GEN8_RING_PDP_LDW(ring, i));
 
 
 850			}
 851			break;
 852		case 7:
 853			ering->vm_info.pp_dir_base =
 854				I915_READ(RING_PP_DIR_BASE(ring));
 855			break;
 856		case 6:
 857			ering->vm_info.pp_dir_base =
 858				I915_READ(RING_PP_DIR_BASE_READ(ring));
 859			break;
 860		}
 861	}
 862}
 863
 
 
 
 
 
 
 
 
 
 864
 865static void i915_gem_record_active_context(struct intel_ring_buffer *ring,
 866					   struct drm_i915_error_state *error,
 867					   struct drm_i915_error_ring *ering)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 868{
 869	struct drm_i915_private *dev_priv = ring->dev->dev_private;
 870	struct drm_i915_gem_object *obj;
 871
 872	/* Currently render ring is the only HW context user */
 873	if (ring->id != RCS || !error->ccid)
 874		return;
 
 
 875
 876	list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
 877		if ((error->ccid & PAGE_MASK) == i915_gem_obj_ggtt_offset(obj)) {
 878			ering->ctx = i915_error_object_create_sized(dev_priv,
 879								    obj,
 880								    &dev_priv->gtt.base,
 881								    1);
 882			break;
 883		}
 884	}
 885}
 886
 887static void i915_gem_record_rings(struct drm_device *dev,
 888				  struct drm_i915_error_state *error)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 889{
 890	struct drm_i915_private *dev_priv = dev->dev_private;
 891	struct drm_i915_gem_request *request;
 892	int i, count;
 
 
 
 
 
 
 
 
 
 893
 894	for (i = 0; i < I915_NUM_RINGS; i++) {
 895		struct intel_ring_buffer *ring = &dev_priv->ring[i];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 896
 897		if (ring->dev == NULL)
 898			continue;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 899
 900		error->ring[i].valid = true;
 
 901
 902		i915_record_ring_state(dev, ring, &error->ring[i]);
 
 
 
 
 
 
 903
 904		error->ring[i].pid = -1;
 905		request = i915_gem_find_active_request(ring);
 906		if (request) {
 907			/* We need to copy these to an anonymous buffer
 908			 * as the simplest method to avoid being overwritten
 909			 * by userspace.
 910			 */
 911			error->ring[i].batchbuffer =
 912				i915_error_object_create(dev_priv,
 913							 request->batch_obj,
 914							 request->ctx ?
 915							 request->ctx->vm :
 916							 &dev_priv->gtt.base);
 917
 918			if (HAS_BROKEN_CS_TLB(dev_priv->dev) &&
 919			    ring->scratch.obj)
 920				error->ring[i].wa_batchbuffer =
 921					i915_error_ggtt_object_create(dev_priv,
 922							     ring->scratch.obj);
 923
 924			if (request->file_priv) {
 925				struct task_struct *task;
 926
 927				rcu_read_lock();
 928				task = pid_task(request->file_priv->file->pid,
 929						PIDTYPE_PID);
 930				if (task) {
 931					strcpy(error->ring[i].comm, task->comm);
 932					error->ring[i].pid = task->pid;
 933				}
 934				rcu_read_unlock();
 935			}
 936		}
 937
 938		error->ring[i].ringbuffer =
 939			i915_error_ggtt_object_create(dev_priv, ring->obj);
 940
 941		if (ring->status_page.obj)
 942			error->ring[i].hws_page =
 943				i915_error_ggtt_object_create(dev_priv, ring->status_page.obj);
 944
 945		i915_gem_record_active_context(ring, error, &error->ring[i]);
 946
 947		count = 0;
 948		list_for_each_entry(request, &ring->request_list, list)
 949			count++;
 950
 951		error->ring[i].num_requests = count;
 952		error->ring[i].requests =
 953			kcalloc(count, sizeof(*error->ring[i].requests),
 954				GFP_ATOMIC);
 955		if (error->ring[i].requests == NULL) {
 956			error->ring[i].num_requests = 0;
 957			continue;
 958		}
 959
 960		count = 0;
 961		list_for_each_entry(request, &ring->request_list, list) {
 962			struct drm_i915_error_request *erq;
 963
 964			erq = &error->ring[i].requests[count++];
 965			erq->seqno = request->seqno;
 966			erq->jiffies = request->emitted_jiffies;
 967			erq->tail = request->tail;
 968		}
 
 
 
 969	}
 970}
 971
 972/* FIXME: Since pin count/bound list is global, we duplicate what we capture per
 973 * VM.
 974 */
 975static void i915_gem_capture_vm(struct drm_i915_private *dev_priv,
 976				struct drm_i915_error_state *error,
 977				struct i915_address_space *vm,
 978				const int ndx)
 979{
 980	struct drm_i915_error_buffer *active_bo = NULL, *pinned_bo = NULL;
 981	struct drm_i915_gem_object *obj;
 982	struct i915_vma *vma;
 983	int i;
 
 
 
 
 
 984
 985	i = 0;
 986	list_for_each_entry(vma, &vm->active_list, mm_list)
 987		i++;
 988	error->active_bo_count[ndx] = i;
 989	list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
 990		if (i915_gem_obj_is_pinned(obj))
 991			i++;
 992	error->pinned_bo_count[ndx] = i - error->active_bo_count[ndx];
 993
 994	if (i) {
 995		active_bo = kcalloc(i, sizeof(*active_bo), GFP_ATOMIC);
 996		if (active_bo)
 997			pinned_bo = active_bo + error->active_bo_count[ndx];
 998	}
 999
1000	if (active_bo)
1001		error->active_bo_count[ndx] =
1002			capture_active_bo(active_bo,
1003					  error->active_bo_count[ndx],
1004					  &vm->active_list);
1005
1006	if (pinned_bo)
1007		error->pinned_bo_count[ndx] =
1008			capture_pinned_bo(pinned_bo,
1009					  error->pinned_bo_count[ndx],
1010					  &dev_priv->mm.bound_list);
1011	error->active_bo[ndx] = active_bo;
1012	error->pinned_bo[ndx] = pinned_bo;
1013}
1014
1015static void i915_gem_capture_buffers(struct drm_i915_private *dev_priv,
1016				     struct drm_i915_error_state *error)
1017{
1018	struct i915_address_space *vm;
1019	int cnt = 0, i = 0;
1020
1021	list_for_each_entry(vm, &dev_priv->vm_list, global_link)
1022		cnt++;
1023
1024	error->active_bo = kcalloc(cnt, sizeof(*error->active_bo), GFP_ATOMIC);
1025	error->pinned_bo = kcalloc(cnt, sizeof(*error->pinned_bo), GFP_ATOMIC);
1026	error->active_bo_count = kcalloc(cnt, sizeof(*error->active_bo_count),
1027					 GFP_ATOMIC);
1028	error->pinned_bo_count = kcalloc(cnt, sizeof(*error->pinned_bo_count),
1029					 GFP_ATOMIC);
1030
1031	list_for_each_entry(vm, &dev_priv->vm_list, global_link)
1032		i915_gem_capture_vm(dev_priv, error, vm, i++);
1033}
1034
1035/* Capture all registers which don't fit into another category. */
1036static void i915_capture_reg_state(struct drm_i915_private *dev_priv,
1037				   struct drm_i915_error_state *error)
1038{
1039	struct drm_device *dev = dev_priv->dev;
1040	int pipe;
 
1041
1042	/* General organization
 
1043	 * 1. Registers specific to a single generation
1044	 * 2. Registers which belong to multiple generations
1045	 * 3. Feature specific registers.
1046	 * 4. Everything else
1047	 * Please try to follow the order.
1048	 */
1049
1050	/* 1: Registers specific to a single generation */
1051	if (IS_VALLEYVIEW(dev)) {
1052		error->ier = I915_READ(GTIER) | I915_READ(VLV_IER);
1053		error->forcewake = I915_READ(FORCEWAKE_VLV);
1054	}
1055
1056	if (IS_GEN7(dev))
1057		error->err_int = I915_READ(GEN7_ERR_INT);
1058
1059	if (IS_GEN6(dev)) {
1060		error->forcewake = I915_READ(FORCEWAKE);
1061		error->gab_ctl = I915_READ(GAB_CTL);
1062		error->gfx_mode = I915_READ(GFX_MODE);
 
 
 
 
 
 
 
 
 
 
 
 
 
1063	}
1064
1065	if (IS_GEN2(dev))
1066		error->ier = I915_READ16(IER);
1067
1068	/* 2: Registers which belong to multiple generations */
1069	if (INTEL_INFO(dev)->gen >= 7)
1070		error->forcewake = I915_READ(FORCEWAKE_MT);
1071
1072	if (INTEL_INFO(dev)->gen >= 6) {
1073		error->derrmr = I915_READ(DERRMR);
1074		error->error = I915_READ(ERROR_GEN6);
1075		error->done_reg = I915_READ(DONE_REG);
 
 
1076	}
1077
1078	/* 3: Feature specific registers */
1079	if (IS_GEN6(dev) || IS_GEN7(dev)) {
1080		error->gam_ecochk = I915_READ(GAM_ECOCHK);
1081		error->gac_eco = I915_READ(GAC_ECO_BITS);
1082	}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1083
1084	/* 4: Everything else */
1085	if (HAS_HW_CONTEXTS(dev))
1086		error->ccid = I915_READ(CCID);
1087
1088	if (HAS_PCH_SPLIT(dev))
1089		error->ier = I915_READ(DEIER) | I915_READ(GTIER);
1090	else {
1091		error->ier = I915_READ(IER);
1092		for_each_pipe(pipe)
1093			error->pipestat[pipe] = I915_READ(PIPESTAT(pipe));
1094	}
1095
1096	/* 4: Everything else */
1097	error->eir = I915_READ(EIR);
1098	error->pgtbl_er = I915_READ(PGTBL_ER);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1099
1100	i915_get_extra_instdone(dev, error->extra_instdone);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1101}
1102
1103static void i915_error_capture_msg(struct drm_device *dev,
1104				   struct drm_i915_error_state *error,
1105				   bool wedged,
1106				   const char *error_msg)
1107{
1108	struct drm_i915_private *dev_priv = dev->dev_private;
1109	u32 ecode;
1110	int ring_id = -1, len;
 
 
 
 
1111
1112	ecode = i915_error_generate_code(dev_priv, error, &ring_id);
 
 
 
 
 
 
 
1113
1114	len = scnprintf(error->error_msg, sizeof(error->error_msg),
1115			"GPU HANG: ecode %d:0x%08x", ring_id, ecode);
1116
1117	if (ring_id != -1 && error->ring[ring_id].pid != -1)
 
 
1118		len += scnprintf(error->error_msg + len,
1119				 sizeof(error->error_msg) - len,
1120				 ", in %s [%d]",
1121				 error->ring[ring_id].comm,
1122				 error->ring[ring_id].pid);
1123
1124	scnprintf(error->error_msg + len, sizeof(error->error_msg) - len,
1125		  ", reason: %s, action: %s",
1126		  error_msg,
1127		  wedged ? "reset" : "continue");
1128}
1129
1130static void i915_capture_gen_state(struct drm_i915_private *dev_priv,
1131				   struct drm_i915_error_state *error)
1132{
1133	error->reset_count = i915_reset_count(&dev_priv->gpu_error);
1134	error->suspend_count = dev_priv->suspend_count;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1135}
1136
1137/**
1138 * i915_capture_error_state - capture an error record for later analysis
1139 * @dev: drm device
1140 *
1141 * Should be called when an error is detected (either a hang or an error
1142 * interrupt) to capture error state from the time of the error.  Fills
1143 * out a structure which becomes available in debugfs for user level tools
1144 * to pick up.
1145 */
1146void i915_capture_error_state(struct drm_device *dev, bool wedged,
1147			      const char *error_msg)
1148{
1149	static bool warned;
1150	struct drm_i915_private *dev_priv = dev->dev_private;
1151	struct drm_i915_error_state *error;
1152	unsigned long flags;
1153
1154	/* Account for pipe specific data like PIPE*STAT */
1155	error = kzalloc(sizeof(*error), GFP_ATOMIC);
1156	if (!error) {
1157		DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
1158		return;
1159	}
1160
1161	kref_init(&error->ref);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1162
1163	i915_capture_gen_state(dev_priv, error);
1164	i915_capture_reg_state(dev_priv, error);
1165	i915_gem_capture_buffers(dev_priv, error);
1166	i915_gem_record_fences(dev, error);
1167	i915_gem_record_rings(dev, error);
1168
1169	do_gettimeofday(&error->time);
 
1170
1171	error->overlay = intel_overlay_capture_error_state(dev);
1172	error->display = intel_display_capture_error_state(dev);
 
 
 
 
 
1173
1174	i915_error_capture_msg(dev, error, wedged, error_msg);
1175	DRM_INFO("%s\n", error->error_msg);
 
1176
1177	spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1178	if (dev_priv->gpu_error.first_error == NULL) {
1179		dev_priv->gpu_error.first_error = error;
1180		error = NULL;
1181	}
1182	spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
1183
1184	if (error) {
1185		i915_error_state_free(&error->ref);
 
 
 
 
 
1186		return;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1187	}
1188
1189	if (!warned) {
1190		DRM_INFO("GPU hangs can indicate a bug anywhere in the entire gfx stack, including userspace.\n");
1191		DRM_INFO("Please file a _new_ bug report on bugs.freedesktop.org against DRI -> DRM/Intel\n");
1192		DRM_INFO("drm/i915 developers can then reassign to the right component if it's not a kernel issue.\n");
1193		DRM_INFO("The gpu crash dump is required to analyze gpu hangs, so please always attach it.\n");
1194		DRM_INFO("GPU crash dump saved to /sys/class/drm/card%d/error\n", dev->primary->index);
1195		warned = true;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1196	}
1197}
1198
1199void i915_error_state_get(struct drm_device *dev,
1200			  struct i915_error_state_file_priv *error_priv)
 
 
 
 
 
 
 
 
 
 
 
1201{
1202	struct drm_i915_private *dev_priv = dev->dev_private;
1203	unsigned long flags;
1204
1205	spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1206	error_priv->error = dev_priv->gpu_error.first_error;
1207	if (error_priv->error)
1208		kref_get(&error_priv->error->ref);
1209	spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
1210
 
 
1211}
1212
1213void i915_error_state_put(struct i915_error_state_file_priv *error_priv)
 
1214{
1215	if (error_priv->error)
1216		kref_put(&error_priv->error->ref, i915_error_state_free);
 
 
 
 
 
 
 
1217}
1218
1219void i915_destroy_error_state(struct drm_device *dev)
1220{
1221	struct drm_i915_private *dev_priv = dev->dev_private;
1222	struct drm_i915_error_state *error;
1223	unsigned long flags;
 
 
 
 
1224
1225	spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1226	error = dev_priv->gpu_error.first_error;
1227	dev_priv->gpu_error.first_error = NULL;
1228	spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
1229
1230	if (error)
1231		kref_put(&error->ref, i915_error_state_free);
1232}
1233
1234const char *i915_cache_level_str(int type)
1235{
1236	switch (type) {
1237	case I915_CACHE_NONE: return " uncached";
1238	case I915_CACHE_LLC: return " snooped or LLC";
1239	case I915_CACHE_L3_LLC: return " L3+LLC";
1240	case I915_CACHE_WT: return " WT";
1241	default: return "";
1242	}
1243}
1244
1245/* NB: please notice the memset */
1246void i915_get_extra_instdone(struct drm_device *dev, uint32_t *instdone)
1247{
1248	struct drm_i915_private *dev_priv = dev->dev_private;
1249	memset(instdone, 0, sizeof(*instdone) * I915_NUM_INSTDONE_REG);
1250
1251	switch (INTEL_INFO(dev)->gen) {
1252	case 2:
1253	case 3:
1254		instdone[0] = I915_READ(INSTDONE);
1255		break;
1256	case 4:
1257	case 5:
1258	case 6:
1259		instdone[0] = I915_READ(INSTDONE_I965);
1260		instdone[1] = I915_READ(INSTDONE1);
1261		break;
1262	default:
1263		WARN_ONCE(1, "Unsupported platform\n");
1264	case 7:
1265	case 8:
1266		instdone[0] = I915_READ(GEN7_INSTDONE_1);
1267		instdone[1] = I915_READ(GEN7_SC_INSTDONE);
1268		instdone[2] = I915_READ(GEN7_SAMPLER_INSTDONE);
1269		instdone[3] = I915_READ(GEN7_ROW_INSTDONE);
1270		break;
1271	}
1272}