blob: 685f6ccbcc07933d790b08b11dbe1f4c2c251744 [file] [log] [blame]
Mika Kuoppala84734a02013-07-12 16:50:57 +03001/*
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) {
Chris Wilsone29bb4e2013-09-20 10:20:59 +0100146 va_list tmp;
147
148 va_copy(tmp, args);
149 if (!__i915_error_seek(e, vsnprintf(NULL, 0, f, tmp)))
Mika Kuoppala84734a02013-07-12 16:50:57 +0300150 return;
151 }
152
153 len = vsnprintf(e->buf + e->bytes, e->size - e->bytes, f, args);
154 if (len >= e->size - e->bytes)
155 len = e->size - e->bytes - 1;
156
157 __i915_error_advance(e, len);
158}
159
160static void i915_error_puts(struct drm_i915_error_state_buf *e,
161 const char *str)
162{
163 unsigned len;
164
165 if (!__i915_error_ok(e))
166 return;
167
168 len = strlen(str);
169
170 /* Seek the first printf which is hits start position */
171 if (e->pos < e->start) {
172 if (!__i915_error_seek(e, len))
173 return;
174 }
175
176 if (len >= e->size - e->bytes)
177 len = e->size - e->bytes - 1;
178 memcpy(e->buf + e->bytes, str, len);
179
180 __i915_error_advance(e, len);
181}
182
183#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
184#define err_puts(e, s) i915_error_puts(e, s)
185
186static void print_error_buffers(struct drm_i915_error_state_buf *m,
187 const char *name,
188 struct drm_i915_error_buffer *err,
189 int count)
190{
191 err_printf(m, "%s [%d]:\n", name, count);
192
193 while (count--) {
194 err_printf(m, " %08x %8u %02x %02x %x %x",
195 err->gtt_offset,
196 err->size,
197 err->read_domains,
198 err->write_domain,
199 err->rseqno, err->wseqno);
200 err_puts(m, pin_flag(err->pinned));
201 err_puts(m, tiling_flag(err->tiling));
202 err_puts(m, dirty_flag(err->dirty));
203 err_puts(m, purgeable_flag(err->purgeable));
204 err_puts(m, err->ring != -1 ? " " : "");
205 err_puts(m, ring_str(err->ring));
206 err_puts(m, i915_cache_level_str(err->cache_level));
207
208 if (err->name)
209 err_printf(m, " (name: %d)", err->name);
210 if (err->fence_reg != I915_FENCE_REG_NONE)
211 err_printf(m, " (fence: %d)", err->fence_reg);
212
213 err_puts(m, "\n");
214 err++;
215 }
216}
217
Mika Kuoppalada661462013-09-06 16:03:28 +0300218static const char *hangcheck_action_to_str(enum intel_ring_hangcheck_action a)
219{
220 switch (a) {
221 case HANGCHECK_IDLE:
222 return "idle";
223 case HANGCHECK_WAIT:
224 return "wait";
225 case HANGCHECK_ACTIVE:
226 return "active";
227 case HANGCHECK_KICK:
228 return "kick";
229 case HANGCHECK_HUNG:
230 return "hung";
231 }
232
233 return "unknown";
234}
235
Mika Kuoppala84734a02013-07-12 16:50:57 +0300236static void i915_ring_error_state(struct drm_i915_error_state_buf *m,
237 struct drm_device *dev,
238 struct drm_i915_error_state *error,
239 unsigned ring)
240{
241 BUG_ON(ring >= I915_NUM_RINGS); /* shut up confused gcc */
242 err_printf(m, "%s command stream:\n", ring_str(ring));
243 err_printf(m, " HEAD: 0x%08x\n", error->head[ring]);
244 err_printf(m, " TAIL: 0x%08x\n", error->tail[ring]);
245 err_printf(m, " CTL: 0x%08x\n", error->ctl[ring]);
Chris Wilsonf3ce3822014-01-23 22:40:36 +0000246 err_printf(m, " HWS: 0x%08x\n", error->hws[ring]);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300247 err_printf(m, " ACTHD: 0x%08x\n", error->acthd[ring]);
248 err_printf(m, " IPEIR: 0x%08x\n", error->ipeir[ring]);
249 err_printf(m, " IPEHR: 0x%08x\n", error->ipehr[ring]);
250 err_printf(m, " INSTDONE: 0x%08x\n", error->instdone[ring]);
Ville Syrjälä3dda20a2013-12-10 21:44:43 +0200251 if (INTEL_INFO(dev)->gen >= 4) {
252 err_printf(m, " BBADDR: 0x%08llx\n", error->bbaddr[ring]);
Chris Wilson94e39e22013-10-30 09:28:22 +0000253 err_printf(m, " BB_STATE: 0x%08x\n", error->bbstate[ring]);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300254 err_printf(m, " INSTPS: 0x%08x\n", error->instps[ring]);
Ville Syrjälä3dda20a2013-12-10 21:44:43 +0200255 }
Mika Kuoppala84734a02013-07-12 16:50:57 +0300256 err_printf(m, " INSTPM: 0x%08x\n", error->instpm[ring]);
257 err_printf(m, " FADDR: 0x%08x\n", error->faddr[ring]);
258 if (INTEL_INFO(dev)->gen >= 6) {
259 err_printf(m, " RC PSMI: 0x%08x\n", error->rc_psmi[ring]);
260 err_printf(m, " FAULT_REG: 0x%08x\n", error->fault_reg[ring]);
261 err_printf(m, " SYNC_0: 0x%08x [last synced 0x%08x]\n",
262 error->semaphore_mboxes[ring][0],
263 error->semaphore_seqno[ring][0]);
264 err_printf(m, " SYNC_1: 0x%08x [last synced 0x%08x]\n",
265 error->semaphore_mboxes[ring][1],
266 error->semaphore_seqno[ring][1]);
Ben Widawsky4e5aabf2013-08-12 16:53:04 -0700267 if (HAS_VEBOX(dev)) {
268 err_printf(m, " SYNC_2: 0x%08x [last synced 0x%08x]\n",
269 error->semaphore_mboxes[ring][2],
270 error->semaphore_seqno[ring][2]);
271 }
Mika Kuoppala84734a02013-07-12 16:50:57 +0300272 }
273 err_printf(m, " seqno: 0x%08x\n", error->seqno[ring]);
274 err_printf(m, " waiting: %s\n", yesno(error->waiting[ring]));
275 err_printf(m, " ring->head: 0x%08x\n", error->cpu_ring_head[ring]);
276 err_printf(m, " ring->tail: 0x%08x\n", error->cpu_ring_tail[ring]);
Mika Kuoppalada661462013-09-06 16:03:28 +0300277 err_printf(m, " hangcheck: %s [%d]\n",
278 hangcheck_action_to_str(error->hangcheck_action[ring]),
279 error->hangcheck_score[ring]);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300280}
281
282void i915_error_printf(struct drm_i915_error_state_buf *e, const char *f, ...)
283{
284 va_list args;
285
286 va_start(args, f);
287 i915_error_vprintf(e, f, args);
288 va_end(args);
289}
290
291int i915_error_state_to_str(struct drm_i915_error_state_buf *m,
292 const struct i915_error_state_file_priv *error_priv)
293{
294 struct drm_device *dev = error_priv->dev;
295 drm_i915_private_t *dev_priv = dev->dev_private;
296 struct drm_i915_error_state *error = error_priv->error;
297 struct intel_ring_buffer *ring;
298 int i, j, page, offset, elt;
299
300 if (!error) {
301 err_printf(m, "no error state collected\n");
302 goto out;
303 }
304
305 err_printf(m, "Time: %ld s %ld us\n", error->time.tv_sec,
306 error->time.tv_usec);
307 err_printf(m, "Kernel: " UTS_RELEASE "\n");
Ville Syrjäläffbab09b2013-10-04 14:53:40 +0300308 err_printf(m, "PCI ID: 0x%04x\n", dev->pdev->device);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300309 err_printf(m, "EIR: 0x%08x\n", error->eir);
310 err_printf(m, "IER: 0x%08x\n", error->ier);
311 err_printf(m, "PGTBL_ER: 0x%08x\n", error->pgtbl_er);
312 err_printf(m, "FORCEWAKE: 0x%08x\n", error->forcewake);
313 err_printf(m, "DERRMR: 0x%08x\n", error->derrmr);
314 err_printf(m, "CCID: 0x%08x\n", error->ccid);
Chris Wilson094f9a52013-09-25 17:34:55 +0100315 err_printf(m, "Missed interrupts: 0x%08lx\n", dev_priv->gpu_error.missed_irq_rings);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300316
317 for (i = 0; i < dev_priv->num_fence_regs; i++)
318 err_printf(m, " fence[%d] = %08llx\n", i, error->fence[i]);
319
320 for (i = 0; i < ARRAY_SIZE(error->extra_instdone); i++)
321 err_printf(m, " INSTDONE_%d: 0x%08x\n", i,
322 error->extra_instdone[i]);
323
324 if (INTEL_INFO(dev)->gen >= 6) {
325 err_printf(m, "ERROR: 0x%08x\n", error->error);
326 err_printf(m, "DONE_REG: 0x%08x\n", error->done_reg);
327 }
328
329 if (INTEL_INFO(dev)->gen == 7)
330 err_printf(m, "ERR_INT: 0x%08x\n", error->err_int);
331
332 for_each_ring(ring, dev_priv, i)
333 i915_ring_error_state(m, dev, error, i);
334
335 if (error->active_bo)
336 print_error_buffers(m, "Active",
Ben Widawsky95f53012013-07-31 17:00:15 -0700337 error->active_bo[0],
338 error->active_bo_count[0]);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300339
340 if (error->pinned_bo)
341 print_error_buffers(m, "Pinned",
Ben Widawsky95f53012013-07-31 17:00:15 -0700342 error->pinned_bo[0],
343 error->pinned_bo_count[0]);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300344
345 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
346 struct drm_i915_error_object *obj;
347
348 if ((obj = error->ring[i].batchbuffer)) {
349 err_printf(m, "%s --- gtt_offset = 0x%08x\n",
350 dev_priv->ring[i].name,
351 obj->gtt_offset);
352 offset = 0;
353 for (page = 0; page < obj->page_count; page++) {
354 for (elt = 0; elt < PAGE_SIZE/4; elt++) {
355 err_printf(m, "%08x : %08x\n", offset,
356 obj->pages[page][elt]);
357 offset += 4;
358 }
359 }
360 }
361
362 if (error->ring[i].num_requests) {
363 err_printf(m, "%s --- %d requests\n",
364 dev_priv->ring[i].name,
365 error->ring[i].num_requests);
366 for (j = 0; j < error->ring[i].num_requests; j++) {
367 err_printf(m, " seqno 0x%08x, emitted %ld, tail 0x%08x\n",
368 error->ring[i].requests[j].seqno,
369 error->ring[i].requests[j].jiffies,
370 error->ring[i].requests[j].tail);
371 }
372 }
373
374 if ((obj = error->ring[i].ringbuffer)) {
375 err_printf(m, "%s --- ringbuffer = 0x%08x\n",
376 dev_priv->ring[i].name,
377 obj->gtt_offset);
378 offset = 0;
379 for (page = 0; page < obj->page_count; page++) {
380 for (elt = 0; elt < PAGE_SIZE/4; elt++) {
381 err_printf(m, "%08x : %08x\n",
382 offset,
383 obj->pages[page][elt]);
384 offset += 4;
385 }
386 }
387 }
388
Chris Wilsonf3ce3822014-01-23 22:40:36 +0000389 if ((obj = error->ring[i].hws)) {
390 err_printf(m, "%s --- HW Status = 0x%08x\n",
391 dev_priv->ring[i].name,
392 obj->gtt_offset);
393 offset = 0;
394 for (elt = 0; elt < PAGE_SIZE/16; elt += 4) {
395 err_printf(m, "[%04x] %08x %08x %08x %08x\n",
396 offset,
397 obj->pages[0][elt],
398 obj->pages[0][elt+1],
399 obj->pages[0][elt+2],
400 obj->pages[0][elt+3]);
401 offset += 16;
402 }
403 }
404
Mika Kuoppala84734a02013-07-12 16:50:57 +0300405 obj = error->ring[i].ctx;
406 if (obj) {
407 err_printf(m, "%s --- HW Context = 0x%08x\n",
408 dev_priv->ring[i].name,
409 obj->gtt_offset);
410 offset = 0;
411 for (elt = 0; elt < PAGE_SIZE/16; elt += 4) {
412 err_printf(m, "[%04x] %08x %08x %08x %08x\n",
413 offset,
414 obj->pages[0][elt],
415 obj->pages[0][elt+1],
416 obj->pages[0][elt+2],
417 obj->pages[0][elt+3]);
418 offset += 16;
419 }
420 }
421 }
422
423 if (error->overlay)
424 intel_overlay_print_error_state(m, error->overlay);
425
426 if (error->display)
427 intel_display_print_error_state(m, dev, error->display);
428
429out:
430 if (m->bytes == 0 && m->err)
431 return m->err;
432
433 return 0;
434}
435
436int i915_error_state_buf_init(struct drm_i915_error_state_buf *ebuf,
437 size_t count, loff_t pos)
438{
439 memset(ebuf, 0, sizeof(*ebuf));
440
441 /* We need to have enough room to store any i915_error_state printf
442 * so that we can move it to start position.
443 */
444 ebuf->size = count + 1 > PAGE_SIZE ? count + 1 : PAGE_SIZE;
445 ebuf->buf = kmalloc(ebuf->size,
446 GFP_TEMPORARY | __GFP_NORETRY | __GFP_NOWARN);
447
448 if (ebuf->buf == NULL) {
449 ebuf->size = PAGE_SIZE;
450 ebuf->buf = kmalloc(ebuf->size, GFP_TEMPORARY);
451 }
452
453 if (ebuf->buf == NULL) {
454 ebuf->size = 128;
455 ebuf->buf = kmalloc(ebuf->size, GFP_TEMPORARY);
456 }
457
458 if (ebuf->buf == NULL)
459 return -ENOMEM;
460
461 ebuf->start = pos;
462
463 return 0;
464}
465
466static void i915_error_object_free(struct drm_i915_error_object *obj)
467{
468 int page;
469
470 if (obj == NULL)
471 return;
472
473 for (page = 0; page < obj->page_count; page++)
474 kfree(obj->pages[page]);
475
476 kfree(obj);
477}
478
479static void i915_error_state_free(struct kref *error_ref)
480{
481 struct drm_i915_error_state *error = container_of(error_ref,
482 typeof(*error), ref);
483 int i;
484
485 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
486 i915_error_object_free(error->ring[i].batchbuffer);
487 i915_error_object_free(error->ring[i].ringbuffer);
Chris Wilsonf3ce3822014-01-23 22:40:36 +0000488 i915_error_object_free(error->ring[i].hws);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300489 i915_error_object_free(error->ring[i].ctx);
490 kfree(error->ring[i].requests);
491 }
492
493 kfree(error->active_bo);
494 kfree(error->overlay);
495 kfree(error->display);
496 kfree(error);
497}
498
499static struct drm_i915_error_object *
500i915_error_object_create_sized(struct drm_i915_private *dev_priv,
501 struct drm_i915_gem_object *src,
Ben Widawskya7b91072013-12-06 14:10:52 -0800502 struct i915_address_space *vm,
Mika Kuoppala84734a02013-07-12 16:50:57 +0300503 const int num_pages)
504{
505 struct drm_i915_error_object *dst;
506 int i;
507 u32 reloc_offset;
508
509 if (src == NULL || src->pages == NULL)
510 return NULL;
511
512 dst = kmalloc(sizeof(*dst) + num_pages * sizeof(u32 *), GFP_ATOMIC);
513 if (dst == NULL)
514 return NULL;
515
Ben Widawskya7b91072013-12-06 14:10:52 -0800516 reloc_offset = dst->gtt_offset = i915_gem_obj_offset(src, vm);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300517 for (i = 0; i < num_pages; i++) {
518 unsigned long flags;
519 void *d;
520
521 d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
522 if (d == NULL)
523 goto unwind;
524
525 local_irq_save(flags);
526 if (reloc_offset < dev_priv->gtt.mappable_end &&
Ben Widawsky496bfcb2013-12-06 14:10:53 -0800527 src->has_global_gtt_mapping &&
528 i915_is_ggtt(vm)) {
Mika Kuoppala84734a02013-07-12 16:50:57 +0300529 void __iomem *s;
530
531 /* Simply ignore tiling or any overlapping fence.
532 * It's part of the error state, and this hopefully
533 * captures what the GPU read.
534 */
535
536 s = io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
537 reloc_offset);
538 memcpy_fromio(d, s, PAGE_SIZE);
539 io_mapping_unmap_atomic(s);
540 } else if (src->stolen) {
541 unsigned long offset;
542
543 offset = dev_priv->mm.stolen_base;
544 offset += src->stolen->start;
545 offset += i << PAGE_SHIFT;
546
547 memcpy_fromio(d, (void __iomem *) offset, PAGE_SIZE);
548 } else {
549 struct page *page;
550 void *s;
551
552 page = i915_gem_object_get_page(src, i);
553
554 drm_clflush_pages(&page, 1);
555
556 s = kmap_atomic(page);
557 memcpy(d, s, PAGE_SIZE);
558 kunmap_atomic(s);
559
560 drm_clflush_pages(&page, 1);
561 }
562 local_irq_restore(flags);
563
564 dst->pages[i] = d;
565
566 reloc_offset += PAGE_SIZE;
567 }
568 dst->page_count = num_pages;
569
570 return dst;
571
572unwind:
573 while (i--)
574 kfree(dst->pages[i]);
575 kfree(dst);
576 return NULL;
577}
Ben Widawskya7b91072013-12-06 14:10:52 -0800578#define i915_error_object_create(dev_priv, src, vm) \
579 i915_error_object_create_sized((dev_priv), (src), (vm), \
580 (src)->base.size>>PAGE_SHIFT)
581
582#define i915_error_ggtt_object_create(dev_priv, src) \
583 i915_error_object_create_sized((dev_priv), (src), &(dev_priv)->gtt.base, \
Mika Kuoppala84734a02013-07-12 16:50:57 +0300584 (src)->base.size>>PAGE_SHIFT)
585
586static void capture_bo(struct drm_i915_error_buffer *err,
587 struct drm_i915_gem_object *obj)
588{
589 err->size = obj->base.size;
590 err->name = obj->base.name;
591 err->rseqno = obj->last_read_seqno;
592 err->wseqno = obj->last_write_seqno;
593 err->gtt_offset = i915_gem_obj_ggtt_offset(obj);
594 err->read_domains = obj->base.read_domains;
595 err->write_domain = obj->base.write_domain;
596 err->fence_reg = obj->fence_reg;
597 err->pinned = 0;
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800598 if (i915_gem_obj_is_pinned(obj))
Mika Kuoppala84734a02013-07-12 16:50:57 +0300599 err->pinned = 1;
600 if (obj->user_pin_count > 0)
601 err->pinned = -1;
602 err->tiling = obj->tiling_mode;
603 err->dirty = obj->dirty;
604 err->purgeable = obj->madv != I915_MADV_WILLNEED;
605 err->ring = obj->ring ? obj->ring->id : -1;
606 err->cache_level = obj->cache_level;
607}
608
609static u32 capture_active_bo(struct drm_i915_error_buffer *err,
610 int count, struct list_head *head)
611{
Ben Widawskyca191b12013-07-31 17:00:14 -0700612 struct i915_vma *vma;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300613 int i = 0;
614
Ben Widawskyca191b12013-07-31 17:00:14 -0700615 list_for_each_entry(vma, head, mm_list) {
616 capture_bo(err++, vma->obj);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300617 if (++i == count)
618 break;
619 }
620
621 return i;
622}
623
624static u32 capture_pinned_bo(struct drm_i915_error_buffer *err,
625 int count, struct list_head *head)
626{
627 struct drm_i915_gem_object *obj;
628 int i = 0;
629
630 list_for_each_entry(obj, head, global_list) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800631 if (!i915_gem_obj_is_pinned(obj))
Mika Kuoppala84734a02013-07-12 16:50:57 +0300632 continue;
633
634 capture_bo(err++, obj);
635 if (++i == count)
636 break;
637 }
638
639 return i;
640}
641
642static void i915_gem_record_fences(struct drm_device *dev,
643 struct drm_i915_error_state *error)
644{
645 struct drm_i915_private *dev_priv = dev->dev_private;
646 int i;
647
648 /* Fences */
649 switch (INTEL_INFO(dev)->gen) {
Ben Widawsky5ab31332013-11-02 21:07:03 -0700650 case 8:
Mika Kuoppala84734a02013-07-12 16:50:57 +0300651 case 7:
652 case 6:
653 for (i = 0; i < dev_priv->num_fence_regs; i++)
654 error->fence[i] = I915_READ64(FENCE_REG_SANDYBRIDGE_0 + (i * 8));
655 break;
656 case 5:
657 case 4:
658 for (i = 0; i < 16; i++)
659 error->fence[i] = I915_READ64(FENCE_REG_965_0 + (i * 8));
660 break;
661 case 3:
662 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
663 for (i = 0; i < 8; i++)
664 error->fence[i+8] = I915_READ(FENCE_REG_945_8 + (i * 4));
665 case 2:
666 for (i = 0; i < 8; i++)
667 error->fence[i] = I915_READ(FENCE_REG_830_0 + (i * 4));
668 break;
669
670 default:
671 BUG();
672 }
673}
674
Ben Widawsky685987c2013-12-06 14:10:54 -0800675/* This assumes all batchbuffers are executed from the PPGTT. It might have to
676 * change in the future. */
677static bool is_active_vm(struct i915_address_space *vm,
678 struct intel_ring_buffer *ring)
679{
680 struct drm_device *dev = vm->dev;
681 struct drm_i915_private *dev_priv = dev->dev_private;
682 struct i915_hw_ppgtt *ppgtt;
683
684 if (INTEL_INFO(dev)->gen < 7)
685 return i915_is_ggtt(vm);
686
687 /* FIXME: This ignores that the global gtt vm is also on this list. */
688 ppgtt = container_of(vm, struct i915_hw_ppgtt, base);
689
690 if (INTEL_INFO(dev)->gen >= 8) {
691 u64 pdp0 = (u64)I915_READ(GEN8_RING_PDP_UDW(ring, 0)) << 32;
692 pdp0 |= I915_READ(GEN8_RING_PDP_LDW(ring, 0));
693 return pdp0 == ppgtt->pd_dma_addr[0];
694 } else {
695 u32 pp_db;
696 pp_db = I915_READ(RING_PP_DIR_BASE(ring));
697 return (pp_db >> 10) == ppgtt->pd_offset;
698 }
699}
700
Mika Kuoppala84734a02013-07-12 16:50:57 +0300701static struct drm_i915_error_object *
702i915_error_first_batchbuffer(struct drm_i915_private *dev_priv,
703 struct intel_ring_buffer *ring)
704{
Ben Widawskyca191b12013-07-31 17:00:14 -0700705 struct i915_address_space *vm;
706 struct i915_vma *vma;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300707 struct drm_i915_gem_object *obj;
Ben Widawsky685987c2013-12-06 14:10:54 -0800708 bool found_active = false;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300709 u32 seqno;
710
711 if (!ring->get_seqno)
712 return NULL;
713
714 if (HAS_BROKEN_CS_TLB(dev_priv->dev)) {
715 u32 acthd = I915_READ(ACTHD);
716
717 if (WARN_ON(ring->id != RCS))
718 return NULL;
719
Chris Wilson0d1aaca2013-08-26 20:58:11 +0100720 obj = ring->scratch.obj;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300721 if (acthd >= i915_gem_obj_ggtt_offset(obj) &&
722 acthd < i915_gem_obj_ggtt_offset(obj) + obj->base.size)
Ben Widawskya7b91072013-12-06 14:10:52 -0800723 return i915_error_ggtt_object_create(dev_priv, obj);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300724 }
725
726 seqno = ring->get_seqno(ring, false);
Ben Widawskyca191b12013-07-31 17:00:14 -0700727 list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
Ben Widawsky685987c2013-12-06 14:10:54 -0800728 if (!is_active_vm(vm, ring))
729 continue;
730
731 found_active = true;
732
Ben Widawskyca191b12013-07-31 17:00:14 -0700733 list_for_each_entry(vma, &vm->active_list, mm_list) {
734 obj = vma->obj;
735 if (obj->ring != ring)
736 continue;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300737
Ben Widawskyca191b12013-07-31 17:00:14 -0700738 if (i915_seqno_passed(seqno, obj->last_read_seqno))
739 continue;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300740
Ben Widawskyca191b12013-07-31 17:00:14 -0700741 if ((obj->base.read_domains & I915_GEM_DOMAIN_COMMAND) == 0)
742 continue;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300743
Ben Widawskyca191b12013-07-31 17:00:14 -0700744 /* We need to copy these to an anonymous buffer as the simplest
745 * method to avoid being overwritten by userspace.
746 */
Ben Widawskya7b91072013-12-06 14:10:52 -0800747 return i915_error_object_create(dev_priv, obj, vm);
Ben Widawskyca191b12013-07-31 17:00:14 -0700748 }
Mika Kuoppala84734a02013-07-12 16:50:57 +0300749 }
750
Ben Widawsky685987c2013-12-06 14:10:54 -0800751 WARN_ON(!found_active);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300752 return NULL;
753}
754
755static void i915_record_ring_state(struct drm_device *dev,
756 struct drm_i915_error_state *error,
757 struct intel_ring_buffer *ring)
758{
759 struct drm_i915_private *dev_priv = dev->dev_private;
760
761 if (INTEL_INFO(dev)->gen >= 6) {
762 error->rc_psmi[ring->id] = I915_READ(ring->mmio_base + 0x50);
763 error->fault_reg[ring->id] = I915_READ(RING_FAULT_REG(ring));
764 error->semaphore_mboxes[ring->id][0]
765 = I915_READ(RING_SYNC_0(ring->mmio_base));
766 error->semaphore_mboxes[ring->id][1]
767 = I915_READ(RING_SYNC_1(ring->mmio_base));
768 error->semaphore_seqno[ring->id][0] = ring->sync_seqno[0];
769 error->semaphore_seqno[ring->id][1] = ring->sync_seqno[1];
770 }
771
Ben Widawsky4e5aabf2013-08-12 16:53:04 -0700772 if (HAS_VEBOX(dev)) {
773 error->semaphore_mboxes[ring->id][2] =
774 I915_READ(RING_SYNC_2(ring->mmio_base));
775 error->semaphore_seqno[ring->id][2] = ring->sync_seqno[2];
776 }
777
Mika Kuoppala84734a02013-07-12 16:50:57 +0300778 if (INTEL_INFO(dev)->gen >= 4) {
779 error->faddr[ring->id] = I915_READ(RING_DMA_FADD(ring->mmio_base));
780 error->ipeir[ring->id] = I915_READ(RING_IPEIR(ring->mmio_base));
781 error->ipehr[ring->id] = I915_READ(RING_IPEHR(ring->mmio_base));
782 error->instdone[ring->id] = I915_READ(RING_INSTDONE(ring->mmio_base));
783 error->instps[ring->id] = I915_READ(RING_INSTPS(ring->mmio_base));
Ville Syrjälä3dda20a2013-12-10 21:44:43 +0200784 error->bbaddr[ring->id] = I915_READ(RING_BBADDR(ring->mmio_base));
785 if (INTEL_INFO(dev)->gen >= 8)
786 error->bbaddr[ring->id] |= (u64) I915_READ(RING_BBADDR_UDW(ring->mmio_base)) << 32;
Chris Wilson94e39e22013-10-30 09:28:22 +0000787 error->bbstate[ring->id] = I915_READ(RING_BBSTATE(ring->mmio_base));
Mika Kuoppala84734a02013-07-12 16:50:57 +0300788 } else {
789 error->faddr[ring->id] = I915_READ(DMA_FADD_I8XX);
790 error->ipeir[ring->id] = I915_READ(IPEIR);
791 error->ipehr[ring->id] = I915_READ(IPEHR);
792 error->instdone[ring->id] = I915_READ(INSTDONE);
793 }
794
795 error->waiting[ring->id] = waitqueue_active(&ring->irq_queue);
796 error->instpm[ring->id] = I915_READ(RING_INSTPM(ring->mmio_base));
797 error->seqno[ring->id] = ring->get_seqno(ring, false);
798 error->acthd[ring->id] = intel_ring_get_active_head(ring);
799 error->head[ring->id] = I915_READ_HEAD(ring);
800 error->tail[ring->id] = I915_READ_TAIL(ring);
801 error->ctl[ring->id] = I915_READ_CTL(ring);
802
Chris Wilsonf3ce3822014-01-23 22:40:36 +0000803 if (I915_NEED_GFX_HWS(dev)) {
804 int mmio;
805
806 if (IS_GEN7(dev)) {
807 switch (ring->id) {
808 default:
809 case RCS:
810 mmio = RENDER_HWS_PGA_GEN7;
811 break;
812 case BCS:
813 mmio = BLT_HWS_PGA_GEN7;
814 break;
815 case VCS:
816 mmio = BSD_HWS_PGA_GEN7;
817 break;
818 case VECS:
819 mmio = VEBOX_HWS_PGA_GEN7;
820 break;
821 }
822 } else if (IS_GEN6(ring->dev)) {
823 mmio = RING_HWS_PGA_GEN6(ring->mmio_base);
824 } else {
825 /* XXX: gen8 returns to sanity */
826 mmio = RING_HWS_PGA(ring->mmio_base);
827 }
828
829 error->hws[ring->id] = I915_READ(mmio);
830 }
831
Mika Kuoppala84734a02013-07-12 16:50:57 +0300832 error->cpu_ring_head[ring->id] = ring->head;
833 error->cpu_ring_tail[ring->id] = ring->tail;
Mika Kuoppalada661462013-09-06 16:03:28 +0300834
835 error->hangcheck_score[ring->id] = ring->hangcheck.score;
836 error->hangcheck_action[ring->id] = ring->hangcheck.action;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300837}
838
839
840static void i915_gem_record_active_context(struct intel_ring_buffer *ring,
841 struct drm_i915_error_state *error,
842 struct drm_i915_error_ring *ering)
843{
844 struct drm_i915_private *dev_priv = ring->dev->dev_private;
845 struct drm_i915_gem_object *obj;
846
847 /* Currently render ring is the only HW context user */
848 if (ring->id != RCS || !error->ccid)
849 return;
850
851 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
852 if ((error->ccid & PAGE_MASK) == i915_gem_obj_ggtt_offset(obj)) {
853 ering->ctx = i915_error_object_create_sized(dev_priv,
Ben Widawskya7b91072013-12-06 14:10:52 -0800854 obj,
855 &dev_priv->gtt.base,
856 1);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300857 break;
858 }
859 }
860}
861
862static void i915_gem_record_rings(struct drm_device *dev,
863 struct drm_i915_error_state *error)
864{
865 struct drm_i915_private *dev_priv = dev->dev_private;
866 struct intel_ring_buffer *ring;
867 struct drm_i915_gem_request *request;
868 int i, count;
869
870 for_each_ring(ring, dev_priv, i) {
871 i915_record_ring_state(dev, error, ring);
872
873 error->ring[i].batchbuffer =
874 i915_error_first_batchbuffer(dev_priv, ring);
875
876 error->ring[i].ringbuffer =
Ben Widawskya7b91072013-12-06 14:10:52 -0800877 i915_error_ggtt_object_create(dev_priv, ring->obj);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300878
Chris Wilsonf3ce3822014-01-23 22:40:36 +0000879 if (ring->status_page.obj)
880 error->ring[i].hws =
881 i915_error_ggtt_object_create(dev_priv, ring->status_page.obj);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300882
883 i915_gem_record_active_context(ring, error, &error->ring[i]);
884
885 count = 0;
886 list_for_each_entry(request, &ring->request_list, list)
887 count++;
888
889 error->ring[i].num_requests = count;
890 error->ring[i].requests =
Daniel Vettera1e22652013-09-21 00:35:38 +0200891 kcalloc(count, sizeof(*error->ring[i].requests),
Mika Kuoppala84734a02013-07-12 16:50:57 +0300892 GFP_ATOMIC);
893 if (error->ring[i].requests == NULL) {
894 error->ring[i].num_requests = 0;
895 continue;
896 }
897
898 count = 0;
899 list_for_each_entry(request, &ring->request_list, list) {
900 struct drm_i915_error_request *erq;
901
902 erq = &error->ring[i].requests[count++];
903 erq->seqno = request->seqno;
904 erq->jiffies = request->emitted_jiffies;
905 erq->tail = request->tail;
906 }
907 }
908}
909
Ben Widawsky95f53012013-07-31 17:00:15 -0700910/* FIXME: Since pin count/bound list is global, we duplicate what we capture per
911 * VM.
912 */
913static void i915_gem_capture_vm(struct drm_i915_private *dev_priv,
914 struct drm_i915_error_state *error,
915 struct i915_address_space *vm,
916 const int ndx)
Mika Kuoppala84734a02013-07-12 16:50:57 +0300917{
Ben Widawsky95f53012013-07-31 17:00:15 -0700918 struct drm_i915_error_buffer *active_bo = NULL, *pinned_bo = NULL;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300919 struct drm_i915_gem_object *obj;
Ben Widawsky95f53012013-07-31 17:00:15 -0700920 struct i915_vma *vma;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300921 int i;
922
923 i = 0;
Ben Widawskyca191b12013-07-31 17:00:14 -0700924 list_for_each_entry(vma, &vm->active_list, mm_list)
Mika Kuoppala84734a02013-07-12 16:50:57 +0300925 i++;
Ben Widawsky95f53012013-07-31 17:00:15 -0700926 error->active_bo_count[ndx] = i;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300927 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800928 if (i915_gem_obj_is_pinned(obj))
Mika Kuoppala84734a02013-07-12 16:50:57 +0300929 i++;
Ben Widawsky95f53012013-07-31 17:00:15 -0700930 error->pinned_bo_count[ndx] = i - error->active_bo_count[ndx];
Mika Kuoppala84734a02013-07-12 16:50:57 +0300931
932 if (i) {
Daniel Vettera1e22652013-09-21 00:35:38 +0200933 active_bo = kcalloc(i, sizeof(*active_bo), GFP_ATOMIC);
Ben Widawsky95f53012013-07-31 17:00:15 -0700934 if (active_bo)
935 pinned_bo = active_bo + error->active_bo_count[ndx];
Mika Kuoppala84734a02013-07-12 16:50:57 +0300936 }
937
Ben Widawsky95f53012013-07-31 17:00:15 -0700938 if (active_bo)
939 error->active_bo_count[ndx] =
940 capture_active_bo(active_bo,
941 error->active_bo_count[ndx],
Ben Widawsky5cef07e2013-07-16 16:50:08 -0700942 &vm->active_list);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300943
Ben Widawsky95f53012013-07-31 17:00:15 -0700944 if (pinned_bo)
945 error->pinned_bo_count[ndx] =
946 capture_pinned_bo(pinned_bo,
947 error->pinned_bo_count[ndx],
Mika Kuoppala84734a02013-07-12 16:50:57 +0300948 &dev_priv->mm.bound_list);
Ben Widawsky95f53012013-07-31 17:00:15 -0700949 error->active_bo[ndx] = active_bo;
950 error->pinned_bo[ndx] = pinned_bo;
951}
952
953static void i915_gem_capture_buffers(struct drm_i915_private *dev_priv,
954 struct drm_i915_error_state *error)
955{
956 struct i915_address_space *vm;
957 int cnt = 0, i = 0;
958
959 list_for_each_entry(vm, &dev_priv->vm_list, global_link)
960 cnt++;
961
Ben Widawsky95f53012013-07-31 17:00:15 -0700962 error->active_bo = kcalloc(cnt, sizeof(*error->active_bo), GFP_ATOMIC);
963 error->pinned_bo = kcalloc(cnt, sizeof(*error->pinned_bo), GFP_ATOMIC);
964 error->active_bo_count = kcalloc(cnt, sizeof(*error->active_bo_count),
965 GFP_ATOMIC);
966 error->pinned_bo_count = kcalloc(cnt, sizeof(*error->pinned_bo_count),
967 GFP_ATOMIC);
968
969 list_for_each_entry(vm, &dev_priv->vm_list, global_link)
970 i915_gem_capture_vm(dev_priv, error, vm, i++);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300971}
972
973/**
974 * i915_capture_error_state - capture an error record for later analysis
975 * @dev: drm device
976 *
977 * Should be called when an error is detected (either a hang or an error
978 * interrupt) to capture error state from the time of the error. Fills
979 * out a structure which becomes available in debugfs for user level tools
980 * to pick up.
981 */
982void i915_capture_error_state(struct drm_device *dev)
983{
984 struct drm_i915_private *dev_priv = dev->dev_private;
985 struct drm_i915_error_state *error;
986 unsigned long flags;
987 int pipe;
988
989 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
990 error = dev_priv->gpu_error.first_error;
991 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
992 if (error)
993 return;
994
995 /* Account for pipe specific data like PIPE*STAT */
996 error = kzalloc(sizeof(*error), GFP_ATOMIC);
997 if (!error) {
998 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
999 return;
1000 }
1001
Daniel Vetterf4689802013-10-09 19:22:22 +02001002 DRM_INFO("GPU crash dump saved to /sys/class/drm/card%d/error\n",
1003 dev->primary->index);
1004 DRM_INFO("GPU hangs can indicate a bug anywhere in the entire gfx stack, including userspace.\n");
1005 DRM_INFO("Please file a _new_ bug report on bugs.freedesktop.org against DRI -> DRM/Intel\n");
1006 DRM_INFO("drm/i915 developers can then reassign to the right component if it's not a kernel issue.\n");
1007 DRM_INFO("The gpu crash dump is required to analyze gpu hangs, so please always attach it.\n");
Mika Kuoppala84734a02013-07-12 16:50:57 +03001008
1009 kref_init(&error->ref);
1010 error->eir = I915_READ(EIR);
1011 error->pgtbl_er = I915_READ(PGTBL_ER);
1012 if (HAS_HW_CONTEXTS(dev))
1013 error->ccid = I915_READ(CCID);
1014
1015 if (HAS_PCH_SPLIT(dev))
1016 error->ier = I915_READ(DEIER) | I915_READ(GTIER);
1017 else if (IS_VALLEYVIEW(dev))
1018 error->ier = I915_READ(GTIER) | I915_READ(VLV_IER);
1019 else if (IS_GEN2(dev))
1020 error->ier = I915_READ16(IER);
1021 else
1022 error->ier = I915_READ(IER);
1023
1024 if (INTEL_INFO(dev)->gen >= 6)
1025 error->derrmr = I915_READ(DERRMR);
1026
1027 if (IS_VALLEYVIEW(dev))
1028 error->forcewake = I915_READ(FORCEWAKE_VLV);
1029 else if (INTEL_INFO(dev)->gen >= 7)
1030 error->forcewake = I915_READ(FORCEWAKE_MT);
1031 else if (INTEL_INFO(dev)->gen == 6)
1032 error->forcewake = I915_READ(FORCEWAKE);
1033
1034 if (!HAS_PCH_SPLIT(dev))
1035 for_each_pipe(pipe)
1036 error->pipestat[pipe] = I915_READ(PIPESTAT(pipe));
1037
1038 if (INTEL_INFO(dev)->gen >= 6) {
1039 error->error = I915_READ(ERROR_GEN6);
1040 error->done_reg = I915_READ(DONE_REG);
1041 }
1042
1043 if (INTEL_INFO(dev)->gen == 7)
1044 error->err_int = I915_READ(GEN7_ERR_INT);
1045
1046 i915_get_extra_instdone(dev, error->extra_instdone);
1047
1048 i915_gem_capture_buffers(dev_priv, error);
1049 i915_gem_record_fences(dev, error);
1050 i915_gem_record_rings(dev, error);
1051
1052 do_gettimeofday(&error->time);
1053
1054 error->overlay = intel_overlay_capture_error_state(dev);
1055 error->display = intel_display_capture_error_state(dev);
1056
1057 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1058 if (dev_priv->gpu_error.first_error == NULL) {
1059 dev_priv->gpu_error.first_error = error;
1060 error = NULL;
1061 }
1062 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
1063
1064 if (error)
1065 i915_error_state_free(&error->ref);
1066}
1067
1068void i915_error_state_get(struct drm_device *dev,
1069 struct i915_error_state_file_priv *error_priv)
1070{
1071 struct drm_i915_private *dev_priv = dev->dev_private;
1072 unsigned long flags;
1073
1074 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1075 error_priv->error = dev_priv->gpu_error.first_error;
1076 if (error_priv->error)
1077 kref_get(&error_priv->error->ref);
1078 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
1079
1080}
1081
1082void i915_error_state_put(struct i915_error_state_file_priv *error_priv)
1083{
1084 if (error_priv->error)
1085 kref_put(&error_priv->error->ref, i915_error_state_free);
1086}
1087
1088void i915_destroy_error_state(struct drm_device *dev)
1089{
1090 struct drm_i915_private *dev_priv = dev->dev_private;
1091 struct drm_i915_error_state *error;
1092 unsigned long flags;
1093
1094 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1095 error = dev_priv->gpu_error.first_error;
1096 dev_priv->gpu_error.first_error = NULL;
1097 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
1098
1099 if (error)
1100 kref_put(&error->ref, i915_error_state_free);
1101}
1102
1103const char *i915_cache_level_str(int type)
1104{
1105 switch (type) {
1106 case I915_CACHE_NONE: return " uncached";
Chris Wilson350ec882013-08-06 13:17:02 +01001107 case I915_CACHE_LLC: return " snooped or LLC";
1108 case I915_CACHE_L3_LLC: return " L3+LLC";
Chris Wilsonf56383c2013-09-25 10:23:19 +01001109 case I915_CACHE_WT: return " WT";
Mika Kuoppala84734a02013-07-12 16:50:57 +03001110 default: return "";
1111 }
1112}
1113
1114/* NB: please notice the memset */
1115void i915_get_extra_instdone(struct drm_device *dev, uint32_t *instdone)
1116{
1117 struct drm_i915_private *dev_priv = dev->dev_private;
1118 memset(instdone, 0, sizeof(*instdone) * I915_NUM_INSTDONE_REG);
1119
1120 switch (INTEL_INFO(dev)->gen) {
1121 case 2:
1122 case 3:
1123 instdone[0] = I915_READ(INSTDONE);
1124 break;
1125 case 4:
1126 case 5:
1127 case 6:
1128 instdone[0] = I915_READ(INSTDONE_I965);
1129 instdone[1] = I915_READ(INSTDONE1);
1130 break;
1131 default:
1132 WARN_ONCE(1, "Unsupported platform\n");
1133 case 7:
Ben Widawskyd0582ed2013-11-02 21:07:15 -07001134 case 8:
Mika Kuoppala84734a02013-07-12 16:50:57 +03001135 instdone[0] = I915_READ(GEN7_INSTDONE_1);
1136 instdone[1] = I915_READ(GEN7_SC_INSTDONE);
1137 instdone[2] = I915_READ(GEN7_SAMPLER_INSTDONE);
1138 instdone[3] = I915_READ(GEN7_ROW_INSTDONE);
1139 break;
1140 }
1141}