[go: nahoru, domu]

i915_gpu_error.c revision 350ec881d966453bdcf1d3299071e90da4e507b4
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		len = vsnprintf(NULL, 0, f, args);
147		if (!__i915_error_seek(e, len))
148			return;
149	}
150
151	len = vsnprintf(e->buf + e->bytes, e->size - e->bytes, f, args);
152	if (len >= e->size - e->bytes)
153		len = e->size - e->bytes - 1;
154
155	__i915_error_advance(e, len);
156}
157
158static void i915_error_puts(struct drm_i915_error_state_buf *e,
159			    const char *str)
160{
161	unsigned len;
162
163	if (!__i915_error_ok(e))
164		return;
165
166	len = strlen(str);
167
168	/* Seek the first printf which is hits start position */
169	if (e->pos < e->start) {
170		if (!__i915_error_seek(e, len))
171			return;
172	}
173
174	if (len >= e->size - e->bytes)
175		len = e->size - e->bytes - 1;
176	memcpy(e->buf + e->bytes, str, len);
177
178	__i915_error_advance(e, len);
179}
180
181#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
182#define err_puts(e, s) i915_error_puts(e, s)
183
184static void print_error_buffers(struct drm_i915_error_state_buf *m,
185				const char *name,
186				struct drm_i915_error_buffer *err,
187				int count)
188{
189	err_printf(m, "%s [%d]:\n", name, count);
190
191	while (count--) {
192		err_printf(m, "  %08x %8u %02x %02x %x %x",
193			   err->gtt_offset,
194			   err->size,
195			   err->read_domains,
196			   err->write_domain,
197			   err->rseqno, err->wseqno);
198		err_puts(m, pin_flag(err->pinned));
199		err_puts(m, tiling_flag(err->tiling));
200		err_puts(m, dirty_flag(err->dirty));
201		err_puts(m, purgeable_flag(err->purgeable));
202		err_puts(m, err->ring != -1 ? " " : "");
203		err_puts(m, ring_str(err->ring));
204		err_puts(m, i915_cache_level_str(err->cache_level));
205
206		if (err->name)
207			err_printf(m, " (name: %d)", err->name);
208		if (err->fence_reg != I915_FENCE_REG_NONE)
209			err_printf(m, " (fence: %d)", err->fence_reg);
210
211		err_puts(m, "\n");
212		err++;
213	}
214}
215
216static void i915_ring_error_state(struct drm_i915_error_state_buf *m,
217				  struct drm_device *dev,
218				  struct drm_i915_error_state *error,
219				  unsigned ring)
220{
221	BUG_ON(ring >= I915_NUM_RINGS); /* shut up confused gcc */
222	err_printf(m, "%s command stream:\n", ring_str(ring));
223	err_printf(m, "  HEAD: 0x%08x\n", error->head[ring]);
224	err_printf(m, "  TAIL: 0x%08x\n", error->tail[ring]);
225	err_printf(m, "  CTL: 0x%08x\n", error->ctl[ring]);
226	err_printf(m, "  ACTHD: 0x%08x\n", error->acthd[ring]);
227	err_printf(m, "  IPEIR: 0x%08x\n", error->ipeir[ring]);
228	err_printf(m, "  IPEHR: 0x%08x\n", error->ipehr[ring]);
229	err_printf(m, "  INSTDONE: 0x%08x\n", error->instdone[ring]);
230	if (ring == RCS && INTEL_INFO(dev)->gen >= 4)
231		err_printf(m, "  BBADDR: 0x%08llx\n", error->bbaddr);
232
233	if (INTEL_INFO(dev)->gen >= 4)
234		err_printf(m, "  INSTPS: 0x%08x\n", error->instps[ring]);
235	err_printf(m, "  INSTPM: 0x%08x\n", error->instpm[ring]);
236	err_printf(m, "  FADDR: 0x%08x\n", error->faddr[ring]);
237	if (INTEL_INFO(dev)->gen >= 6) {
238		err_printf(m, "  RC PSMI: 0x%08x\n", error->rc_psmi[ring]);
239		err_printf(m, "  FAULT_REG: 0x%08x\n", error->fault_reg[ring]);
240		err_printf(m, "  SYNC_0: 0x%08x [last synced 0x%08x]\n",
241			   error->semaphore_mboxes[ring][0],
242			   error->semaphore_seqno[ring][0]);
243		err_printf(m, "  SYNC_1: 0x%08x [last synced 0x%08x]\n",
244			   error->semaphore_mboxes[ring][1],
245			   error->semaphore_seqno[ring][1]);
246	}
247	err_printf(m, "  seqno: 0x%08x\n", error->seqno[ring]);
248	err_printf(m, "  waiting: %s\n", yesno(error->waiting[ring]));
249	err_printf(m, "  ring->head: 0x%08x\n", error->cpu_ring_head[ring]);
250	err_printf(m, "  ring->tail: 0x%08x\n", error->cpu_ring_tail[ring]);
251}
252
253void i915_error_printf(struct drm_i915_error_state_buf *e, const char *f, ...)
254{
255	va_list args;
256
257	va_start(args, f);
258	i915_error_vprintf(e, f, args);
259	va_end(args);
260}
261
262int i915_error_state_to_str(struct drm_i915_error_state_buf *m,
263			    const struct i915_error_state_file_priv *error_priv)
264{
265	struct drm_device *dev = error_priv->dev;
266	drm_i915_private_t *dev_priv = dev->dev_private;
267	struct drm_i915_error_state *error = error_priv->error;
268	struct intel_ring_buffer *ring;
269	int i, j, page, offset, elt;
270
271	if (!error) {
272		err_printf(m, "no error state collected\n");
273		goto out;
274	}
275
276	err_printf(m, "Time: %ld s %ld us\n", error->time.tv_sec,
277		   error->time.tv_usec);
278	err_printf(m, "Kernel: " UTS_RELEASE "\n");
279	err_printf(m, "PCI ID: 0x%04x\n", dev->pci_device);
280	err_printf(m, "EIR: 0x%08x\n", error->eir);
281	err_printf(m, "IER: 0x%08x\n", error->ier);
282	err_printf(m, "PGTBL_ER: 0x%08x\n", error->pgtbl_er);
283	err_printf(m, "FORCEWAKE: 0x%08x\n", error->forcewake);
284	err_printf(m, "DERRMR: 0x%08x\n", error->derrmr);
285	err_printf(m, "CCID: 0x%08x\n", error->ccid);
286
287	for (i = 0; i < dev_priv->num_fence_regs; i++)
288		err_printf(m, "  fence[%d] = %08llx\n", i, error->fence[i]);
289
290	for (i = 0; i < ARRAY_SIZE(error->extra_instdone); i++)
291		err_printf(m, "  INSTDONE_%d: 0x%08x\n", i,
292			   error->extra_instdone[i]);
293
294	if (INTEL_INFO(dev)->gen >= 6) {
295		err_printf(m, "ERROR: 0x%08x\n", error->error);
296		err_printf(m, "DONE_REG: 0x%08x\n", error->done_reg);
297	}
298
299	if (INTEL_INFO(dev)->gen == 7)
300		err_printf(m, "ERR_INT: 0x%08x\n", error->err_int);
301
302	for_each_ring(ring, dev_priv, i)
303		i915_ring_error_state(m, dev, error, i);
304
305	if (error->active_bo)
306		print_error_buffers(m, "Active",
307				    error->active_bo,
308				    error->active_bo_count);
309
310	if (error->pinned_bo)
311		print_error_buffers(m, "Pinned",
312				    error->pinned_bo,
313				    error->pinned_bo_count);
314
315	for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
316		struct drm_i915_error_object *obj;
317
318		if ((obj = error->ring[i].batchbuffer)) {
319			err_printf(m, "%s --- gtt_offset = 0x%08x\n",
320				   dev_priv->ring[i].name,
321				   obj->gtt_offset);
322			offset = 0;
323			for (page = 0; page < obj->page_count; page++) {
324				for (elt = 0; elt < PAGE_SIZE/4; elt++) {
325					err_printf(m, "%08x :  %08x\n", offset,
326						   obj->pages[page][elt]);
327					offset += 4;
328				}
329			}
330		}
331
332		if (error->ring[i].num_requests) {
333			err_printf(m, "%s --- %d requests\n",
334				   dev_priv->ring[i].name,
335				   error->ring[i].num_requests);
336			for (j = 0; j < error->ring[i].num_requests; j++) {
337				err_printf(m, "  seqno 0x%08x, emitted %ld, tail 0x%08x\n",
338					   error->ring[i].requests[j].seqno,
339					   error->ring[i].requests[j].jiffies,
340					   error->ring[i].requests[j].tail);
341			}
342		}
343
344		if ((obj = error->ring[i].ringbuffer)) {
345			err_printf(m, "%s --- ringbuffer = 0x%08x\n",
346				   dev_priv->ring[i].name,
347				   obj->gtt_offset);
348			offset = 0;
349			for (page = 0; page < obj->page_count; page++) {
350				for (elt = 0; elt < PAGE_SIZE/4; elt++) {
351					err_printf(m, "%08x :  %08x\n",
352						   offset,
353						   obj->pages[page][elt]);
354					offset += 4;
355				}
356			}
357		}
358
359		obj = error->ring[i].ctx;
360		if (obj) {
361			err_printf(m, "%s --- HW Context = 0x%08x\n",
362				   dev_priv->ring[i].name,
363				   obj->gtt_offset);
364			offset = 0;
365			for (elt = 0; elt < PAGE_SIZE/16; elt += 4) {
366				err_printf(m, "[%04x] %08x %08x %08x %08x\n",
367					   offset,
368					   obj->pages[0][elt],
369					   obj->pages[0][elt+1],
370					   obj->pages[0][elt+2],
371					   obj->pages[0][elt+3]);
372					offset += 16;
373			}
374		}
375	}
376
377	if (error->overlay)
378		intel_overlay_print_error_state(m, error->overlay);
379
380	if (error->display)
381		intel_display_print_error_state(m, dev, error->display);
382
383out:
384	if (m->bytes == 0 && m->err)
385		return m->err;
386
387	return 0;
388}
389
390int i915_error_state_buf_init(struct drm_i915_error_state_buf *ebuf,
391			      size_t count, loff_t pos)
392{
393	memset(ebuf, 0, sizeof(*ebuf));
394
395	/* We need to have enough room to store any i915_error_state printf
396	 * so that we can move it to start position.
397	 */
398	ebuf->size = count + 1 > PAGE_SIZE ? count + 1 : PAGE_SIZE;
399	ebuf->buf = kmalloc(ebuf->size,
400				GFP_TEMPORARY | __GFP_NORETRY | __GFP_NOWARN);
401
402	if (ebuf->buf == NULL) {
403		ebuf->size = PAGE_SIZE;
404		ebuf->buf = kmalloc(ebuf->size, GFP_TEMPORARY);
405	}
406
407	if (ebuf->buf == NULL) {
408		ebuf->size = 128;
409		ebuf->buf = kmalloc(ebuf->size, GFP_TEMPORARY);
410	}
411
412	if (ebuf->buf == NULL)
413		return -ENOMEM;
414
415	ebuf->start = pos;
416
417	return 0;
418}
419
420static void i915_error_object_free(struct drm_i915_error_object *obj)
421{
422	int page;
423
424	if (obj == NULL)
425		return;
426
427	for (page = 0; page < obj->page_count; page++)
428		kfree(obj->pages[page]);
429
430	kfree(obj);
431}
432
433static void i915_error_state_free(struct kref *error_ref)
434{
435	struct drm_i915_error_state *error = container_of(error_ref,
436							  typeof(*error), ref);
437	int i;
438
439	for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
440		i915_error_object_free(error->ring[i].batchbuffer);
441		i915_error_object_free(error->ring[i].ringbuffer);
442		i915_error_object_free(error->ring[i].ctx);
443		kfree(error->ring[i].requests);
444	}
445
446	kfree(error->active_bo);
447	kfree(error->overlay);
448	kfree(error->display);
449	kfree(error);
450}
451
452static struct drm_i915_error_object *
453i915_error_object_create_sized(struct drm_i915_private *dev_priv,
454			       struct drm_i915_gem_object *src,
455			       const int num_pages)
456{
457	struct drm_i915_error_object *dst;
458	int i;
459	u32 reloc_offset;
460
461	if (src == NULL || src->pages == NULL)
462		return NULL;
463
464	dst = kmalloc(sizeof(*dst) + num_pages * sizeof(u32 *), GFP_ATOMIC);
465	if (dst == NULL)
466		return NULL;
467
468	reloc_offset = dst->gtt_offset = i915_gem_obj_ggtt_offset(src);
469	for (i = 0; i < num_pages; i++) {
470		unsigned long flags;
471		void *d;
472
473		d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
474		if (d == NULL)
475			goto unwind;
476
477		local_irq_save(flags);
478		if (reloc_offset < dev_priv->gtt.mappable_end &&
479		    src->has_global_gtt_mapping) {
480			void __iomem *s;
481
482			/* Simply ignore tiling or any overlapping fence.
483			 * It's part of the error state, and this hopefully
484			 * captures what the GPU read.
485			 */
486
487			s = io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
488						     reloc_offset);
489			memcpy_fromio(d, s, PAGE_SIZE);
490			io_mapping_unmap_atomic(s);
491		} else if (src->stolen) {
492			unsigned long offset;
493
494			offset = dev_priv->mm.stolen_base;
495			offset += src->stolen->start;
496			offset += i << PAGE_SHIFT;
497
498			memcpy_fromio(d, (void __iomem *) offset, PAGE_SIZE);
499		} else {
500			struct page *page;
501			void *s;
502
503			page = i915_gem_object_get_page(src, i);
504
505			drm_clflush_pages(&page, 1);
506
507			s = kmap_atomic(page);
508			memcpy(d, s, PAGE_SIZE);
509			kunmap_atomic(s);
510
511			drm_clflush_pages(&page, 1);
512		}
513		local_irq_restore(flags);
514
515		dst->pages[i] = d;
516
517		reloc_offset += PAGE_SIZE;
518	}
519	dst->page_count = num_pages;
520
521	return dst;
522
523unwind:
524	while (i--)
525		kfree(dst->pages[i]);
526	kfree(dst);
527	return NULL;
528}
529#define i915_error_object_create(dev_priv, src) \
530	i915_error_object_create_sized((dev_priv), (src), \
531				       (src)->base.size>>PAGE_SHIFT)
532
533static void capture_bo(struct drm_i915_error_buffer *err,
534		       struct drm_i915_gem_object *obj)
535{
536	err->size = obj->base.size;
537	err->name = obj->base.name;
538	err->rseqno = obj->last_read_seqno;
539	err->wseqno = obj->last_write_seqno;
540	err->gtt_offset = i915_gem_obj_ggtt_offset(obj);
541	err->read_domains = obj->base.read_domains;
542	err->write_domain = obj->base.write_domain;
543	err->fence_reg = obj->fence_reg;
544	err->pinned = 0;
545	if (obj->pin_count > 0)
546		err->pinned = 1;
547	if (obj->user_pin_count > 0)
548		err->pinned = -1;
549	err->tiling = obj->tiling_mode;
550	err->dirty = obj->dirty;
551	err->purgeable = obj->madv != I915_MADV_WILLNEED;
552	err->ring = obj->ring ? obj->ring->id : -1;
553	err->cache_level = obj->cache_level;
554}
555
556static u32 capture_active_bo(struct drm_i915_error_buffer *err,
557			     int count, struct list_head *head)
558{
559	struct drm_i915_gem_object *obj;
560	int i = 0;
561
562	list_for_each_entry(obj, head, mm_list) {
563		capture_bo(err++, obj);
564		if (++i == count)
565			break;
566	}
567
568	return i;
569}
570
571static u32 capture_pinned_bo(struct drm_i915_error_buffer *err,
572			     int count, struct list_head *head)
573{
574	struct drm_i915_gem_object *obj;
575	int i = 0;
576
577	list_for_each_entry(obj, head, global_list) {
578		if (obj->pin_count == 0)
579			continue;
580
581		capture_bo(err++, obj);
582		if (++i == count)
583			break;
584	}
585
586	return i;
587}
588
589static void i915_gem_record_fences(struct drm_device *dev,
590				   struct drm_i915_error_state *error)
591{
592	struct drm_i915_private *dev_priv = dev->dev_private;
593	int i;
594
595	/* Fences */
596	switch (INTEL_INFO(dev)->gen) {
597	case 7:
598	case 6:
599		for (i = 0; i < dev_priv->num_fence_regs; i++)
600			error->fence[i] = I915_READ64(FENCE_REG_SANDYBRIDGE_0 + (i * 8));
601		break;
602	case 5:
603	case 4:
604		for (i = 0; i < 16; i++)
605			error->fence[i] = I915_READ64(FENCE_REG_965_0 + (i * 8));
606		break;
607	case 3:
608		if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
609			for (i = 0; i < 8; i++)
610				error->fence[i+8] = I915_READ(FENCE_REG_945_8 + (i * 4));
611	case 2:
612		for (i = 0; i < 8; i++)
613			error->fence[i] = I915_READ(FENCE_REG_830_0 + (i * 4));
614		break;
615
616	default:
617		BUG();
618	}
619}
620
621static struct drm_i915_error_object *
622i915_error_first_batchbuffer(struct drm_i915_private *dev_priv,
623			     struct intel_ring_buffer *ring)
624{
625	struct i915_address_space *vm = &dev_priv->gtt.base;
626	struct drm_i915_gem_object *obj;
627	u32 seqno;
628
629	if (!ring->get_seqno)
630		return NULL;
631
632	if (HAS_BROKEN_CS_TLB(dev_priv->dev)) {
633		u32 acthd = I915_READ(ACTHD);
634
635		if (WARN_ON(ring->id != RCS))
636			return NULL;
637
638		obj = ring->private;
639		if (acthd >= i915_gem_obj_ggtt_offset(obj) &&
640		    acthd < i915_gem_obj_ggtt_offset(obj) + obj->base.size)
641			return i915_error_object_create(dev_priv, obj);
642	}
643
644	seqno = ring->get_seqno(ring, false);
645	list_for_each_entry(obj, &vm->active_list, mm_list) {
646		if (obj->ring != ring)
647			continue;
648
649		if (i915_seqno_passed(seqno, obj->last_read_seqno))
650			continue;
651
652		if ((obj->base.read_domains & I915_GEM_DOMAIN_COMMAND) == 0)
653			continue;
654
655		/* We need to copy these to an anonymous buffer as the simplest
656		 * method to avoid being overwritten by userspace.
657		 */
658		return i915_error_object_create(dev_priv, obj);
659	}
660
661	return NULL;
662}
663
664static void i915_record_ring_state(struct drm_device *dev,
665				   struct drm_i915_error_state *error,
666				   struct intel_ring_buffer *ring)
667{
668	struct drm_i915_private *dev_priv = dev->dev_private;
669
670	if (INTEL_INFO(dev)->gen >= 6) {
671		error->rc_psmi[ring->id] = I915_READ(ring->mmio_base + 0x50);
672		error->fault_reg[ring->id] = I915_READ(RING_FAULT_REG(ring));
673		error->semaphore_mboxes[ring->id][0]
674			= I915_READ(RING_SYNC_0(ring->mmio_base));
675		error->semaphore_mboxes[ring->id][1]
676			= I915_READ(RING_SYNC_1(ring->mmio_base));
677		error->semaphore_seqno[ring->id][0] = ring->sync_seqno[0];
678		error->semaphore_seqno[ring->id][1] = ring->sync_seqno[1];
679	}
680
681	if (INTEL_INFO(dev)->gen >= 4) {
682		error->faddr[ring->id] = I915_READ(RING_DMA_FADD(ring->mmio_base));
683		error->ipeir[ring->id] = I915_READ(RING_IPEIR(ring->mmio_base));
684		error->ipehr[ring->id] = I915_READ(RING_IPEHR(ring->mmio_base));
685		error->instdone[ring->id] = I915_READ(RING_INSTDONE(ring->mmio_base));
686		error->instps[ring->id] = I915_READ(RING_INSTPS(ring->mmio_base));
687		if (ring->id == RCS)
688			error->bbaddr = I915_READ64(BB_ADDR);
689	} else {
690		error->faddr[ring->id] = I915_READ(DMA_FADD_I8XX);
691		error->ipeir[ring->id] = I915_READ(IPEIR);
692		error->ipehr[ring->id] = I915_READ(IPEHR);
693		error->instdone[ring->id] = I915_READ(INSTDONE);
694	}
695
696	error->waiting[ring->id] = waitqueue_active(&ring->irq_queue);
697	error->instpm[ring->id] = I915_READ(RING_INSTPM(ring->mmio_base));
698	error->seqno[ring->id] = ring->get_seqno(ring, false);
699	error->acthd[ring->id] = intel_ring_get_active_head(ring);
700	error->head[ring->id] = I915_READ_HEAD(ring);
701	error->tail[ring->id] = I915_READ_TAIL(ring);
702	error->ctl[ring->id] = I915_READ_CTL(ring);
703
704	error->cpu_ring_head[ring->id] = ring->head;
705	error->cpu_ring_tail[ring->id] = ring->tail;
706}
707
708
709static void i915_gem_record_active_context(struct intel_ring_buffer *ring,
710					   struct drm_i915_error_state *error,
711					   struct drm_i915_error_ring *ering)
712{
713	struct drm_i915_private *dev_priv = ring->dev->dev_private;
714	struct drm_i915_gem_object *obj;
715
716	/* Currently render ring is the only HW context user */
717	if (ring->id != RCS || !error->ccid)
718		return;
719
720	list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
721		if ((error->ccid & PAGE_MASK) == i915_gem_obj_ggtt_offset(obj)) {
722			ering->ctx = i915_error_object_create_sized(dev_priv,
723								    obj, 1);
724			break;
725		}
726	}
727}
728
729static void i915_gem_record_rings(struct drm_device *dev,
730				  struct drm_i915_error_state *error)
731{
732	struct drm_i915_private *dev_priv = dev->dev_private;
733	struct intel_ring_buffer *ring;
734	struct drm_i915_gem_request *request;
735	int i, count;
736
737	for_each_ring(ring, dev_priv, i) {
738		i915_record_ring_state(dev, error, ring);
739
740		error->ring[i].batchbuffer =
741			i915_error_first_batchbuffer(dev_priv, ring);
742
743		error->ring[i].ringbuffer =
744			i915_error_object_create(dev_priv, ring->obj);
745
746
747		i915_gem_record_active_context(ring, error, &error->ring[i]);
748
749		count = 0;
750		list_for_each_entry(request, &ring->request_list, list)
751			count++;
752
753		error->ring[i].num_requests = count;
754		error->ring[i].requests =
755			kmalloc(count*sizeof(struct drm_i915_error_request),
756				GFP_ATOMIC);
757		if (error->ring[i].requests == NULL) {
758			error->ring[i].num_requests = 0;
759			continue;
760		}
761
762		count = 0;
763		list_for_each_entry(request, &ring->request_list, list) {
764			struct drm_i915_error_request *erq;
765
766			erq = &error->ring[i].requests[count++];
767			erq->seqno = request->seqno;
768			erq->jiffies = request->emitted_jiffies;
769			erq->tail = request->tail;
770		}
771	}
772}
773
774static void i915_gem_capture_buffers(struct drm_i915_private *dev_priv,
775				     struct drm_i915_error_state *error)
776{
777	struct i915_address_space *vm = &dev_priv->gtt.base;
778	struct drm_i915_gem_object *obj;
779	int i;
780
781	i = 0;
782	list_for_each_entry(obj, &vm->active_list, mm_list)
783		i++;
784	error->active_bo_count = i;
785	list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
786		if (obj->pin_count)
787			i++;
788	error->pinned_bo_count = i - error->active_bo_count;
789
790	if (i) {
791		error->active_bo = kmalloc(sizeof(*error->active_bo)*i,
792					   GFP_ATOMIC);
793		if (error->active_bo)
794			error->pinned_bo =
795				error->active_bo + error->active_bo_count;
796	}
797
798	if (error->active_bo)
799		error->active_bo_count =
800			capture_active_bo(error->active_bo,
801					  error->active_bo_count,
802					  &vm->active_list);
803
804	if (error->pinned_bo)
805		error->pinned_bo_count =
806			capture_pinned_bo(error->pinned_bo,
807					  error->pinned_bo_count,
808					  &dev_priv->mm.bound_list);
809}
810
811/**
812 * i915_capture_error_state - capture an error record for later analysis
813 * @dev: drm device
814 *
815 * Should be called when an error is detected (either a hang or an error
816 * interrupt) to capture error state from the time of the error.  Fills
817 * out a structure which becomes available in debugfs for user level tools
818 * to pick up.
819 */
820void i915_capture_error_state(struct drm_device *dev)
821{
822	struct drm_i915_private *dev_priv = dev->dev_private;
823	struct drm_i915_error_state *error;
824	unsigned long flags;
825	int pipe;
826
827	spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
828	error = dev_priv->gpu_error.first_error;
829	spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
830	if (error)
831		return;
832
833	/* Account for pipe specific data like PIPE*STAT */
834	error = kzalloc(sizeof(*error), GFP_ATOMIC);
835	if (!error) {
836		DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
837		return;
838	}
839
840	DRM_INFO("capturing error event; look for more information in "
841		 "/sys/class/drm/card%d/error\n", dev->primary->index);
842
843	kref_init(&error->ref);
844	error->eir = I915_READ(EIR);
845	error->pgtbl_er = I915_READ(PGTBL_ER);
846	if (HAS_HW_CONTEXTS(dev))
847		error->ccid = I915_READ(CCID);
848
849	if (HAS_PCH_SPLIT(dev))
850		error->ier = I915_READ(DEIER) | I915_READ(GTIER);
851	else if (IS_VALLEYVIEW(dev))
852		error->ier = I915_READ(GTIER) | I915_READ(VLV_IER);
853	else if (IS_GEN2(dev))
854		error->ier = I915_READ16(IER);
855	else
856		error->ier = I915_READ(IER);
857
858	if (INTEL_INFO(dev)->gen >= 6)
859		error->derrmr = I915_READ(DERRMR);
860
861	if (IS_VALLEYVIEW(dev))
862		error->forcewake = I915_READ(FORCEWAKE_VLV);
863	else if (INTEL_INFO(dev)->gen >= 7)
864		error->forcewake = I915_READ(FORCEWAKE_MT);
865	else if (INTEL_INFO(dev)->gen == 6)
866		error->forcewake = I915_READ(FORCEWAKE);
867
868	if (!HAS_PCH_SPLIT(dev))
869		for_each_pipe(pipe)
870			error->pipestat[pipe] = I915_READ(PIPESTAT(pipe));
871
872	if (INTEL_INFO(dev)->gen >= 6) {
873		error->error = I915_READ(ERROR_GEN6);
874		error->done_reg = I915_READ(DONE_REG);
875	}
876
877	if (INTEL_INFO(dev)->gen == 7)
878		error->err_int = I915_READ(GEN7_ERR_INT);
879
880	i915_get_extra_instdone(dev, error->extra_instdone);
881
882	i915_gem_capture_buffers(dev_priv, error);
883	i915_gem_record_fences(dev, error);
884	i915_gem_record_rings(dev, error);
885
886	do_gettimeofday(&error->time);
887
888	error->overlay = intel_overlay_capture_error_state(dev);
889	error->display = intel_display_capture_error_state(dev);
890
891	spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
892	if (dev_priv->gpu_error.first_error == NULL) {
893		dev_priv->gpu_error.first_error = error;
894		error = NULL;
895	}
896	spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
897
898	if (error)
899		i915_error_state_free(&error->ref);
900}
901
902void i915_error_state_get(struct drm_device *dev,
903			  struct i915_error_state_file_priv *error_priv)
904{
905	struct drm_i915_private *dev_priv = dev->dev_private;
906	unsigned long flags;
907
908	spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
909	error_priv->error = dev_priv->gpu_error.first_error;
910	if (error_priv->error)
911		kref_get(&error_priv->error->ref);
912	spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
913
914}
915
916void i915_error_state_put(struct i915_error_state_file_priv *error_priv)
917{
918	if (error_priv->error)
919		kref_put(&error_priv->error->ref, i915_error_state_free);
920}
921
922void i915_destroy_error_state(struct drm_device *dev)
923{
924	struct drm_i915_private *dev_priv = dev->dev_private;
925	struct drm_i915_error_state *error;
926	unsigned long flags;
927
928	spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
929	error = dev_priv->gpu_error.first_error;
930	dev_priv->gpu_error.first_error = NULL;
931	spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
932
933	if (error)
934		kref_put(&error->ref, i915_error_state_free);
935}
936
937const char *i915_cache_level_str(int type)
938{
939	switch (type) {
940	case I915_CACHE_NONE: return " uncached";
941	case I915_CACHE_LLC: return " snooped or LLC";
942	case I915_CACHE_L3_LLC: return " L3+LLC";
943	default: return "";
944	}
945}
946
947/* NB: please notice the memset */
948void i915_get_extra_instdone(struct drm_device *dev, uint32_t *instdone)
949{
950	struct drm_i915_private *dev_priv = dev->dev_private;
951	memset(instdone, 0, sizeof(*instdone) * I915_NUM_INSTDONE_REG);
952
953	switch (INTEL_INFO(dev)->gen) {
954	case 2:
955	case 3:
956		instdone[0] = I915_READ(INSTDONE);
957		break;
958	case 4:
959	case 5:
960	case 6:
961		instdone[0] = I915_READ(INSTDONE_I965);
962		instdone[1] = I915_READ(INSTDONE1);
963		break;
964	default:
965		WARN_ONCE(1, "Unsupported platform\n");
966	case 7:
967		instdone[0] = I915_READ(GEN7_INSTDONE_1);
968		instdone[1] = I915_READ(GEN7_SC_INSTDONE);
969		instdone[2] = I915_READ(GEN7_SAMPLER_INSTDONE);
970		instdone[3] = I915_READ(GEN7_ROW_INSTDONE);
971		break;
972	}
973}
974