blob: 1d4e60df88836761098e8a2ce391382d2b7d867d [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";
Zhao Yakui845f74a2014-04-17 10:37:37 +080045 case VCS2: return "bsd2";
Mika Kuoppala84734a02013-07-12 16:50:57 +030046 default: return "";
47 }
48}
49
50static const char *pin_flag(int pinned)
51{
52 if (pinned > 0)
53 return " P";
54 else if (pinned < 0)
55 return " p";
56 else
57 return "";
58}
59
60static const char *tiling_flag(int tiling)
61{
62 switch (tiling) {
63 default:
64 case I915_TILING_NONE: return "";
65 case I915_TILING_X: return " X";
66 case I915_TILING_Y: return " Y";
67 }
68}
69
70static const char *dirty_flag(int dirty)
71{
72 return dirty ? " dirty" : "";
73}
74
75static const char *purgeable_flag(int purgeable)
76{
77 return purgeable ? " purgeable" : "";
78}
79
80static bool __i915_error_ok(struct drm_i915_error_state_buf *e)
81{
82
83 if (!e->err && WARN(e->bytes > (e->size - 1), "overflow")) {
84 e->err = -ENOSPC;
85 return false;
86 }
87
88 if (e->bytes == e->size - 1 || e->err)
89 return false;
90
91 return true;
92}
93
94static bool __i915_error_seek(struct drm_i915_error_state_buf *e,
95 unsigned len)
96{
97 if (e->pos + len <= e->start) {
98 e->pos += len;
99 return false;
100 }
101
102 /* First vsnprintf needs to fit in its entirety for memmove */
103 if (len >= e->size) {
104 e->err = -EIO;
105 return false;
106 }
107
108 return true;
109}
110
111static void __i915_error_advance(struct drm_i915_error_state_buf *e,
112 unsigned len)
113{
114 /* If this is first printf in this window, adjust it so that
115 * start position matches start of the buffer
116 */
117
118 if (e->pos < e->start) {
119 const size_t off = e->start - e->pos;
120
121 /* Should not happen but be paranoid */
122 if (off > len || e->bytes) {
123 e->err = -EIO;
124 return;
125 }
126
127 memmove(e->buf, e->buf + off, len - off);
128 e->bytes = len - off;
129 e->pos = e->start;
130 return;
131 }
132
133 e->bytes += len;
134 e->pos += len;
135}
136
137static void i915_error_vprintf(struct drm_i915_error_state_buf *e,
138 const char *f, va_list args)
139{
140 unsigned len;
141
142 if (!__i915_error_ok(e))
143 return;
144
145 /* Seek the first printf which is hits start position */
146 if (e->pos < e->start) {
Chris Wilsone29bb4e2013-09-20 10:20:59 +0100147 va_list tmp;
148
149 va_copy(tmp, args);
Mika Kuoppala1d2cb9a2014-02-07 17:40:50 +0200150 len = vsnprintf(NULL, 0, f, tmp);
151 va_end(tmp);
152
153 if (!__i915_error_seek(e, len))
Mika Kuoppala84734a02013-07-12 16:50:57 +0300154 return;
155 }
156
157 len = vsnprintf(e->buf + e->bytes, e->size - e->bytes, f, args);
158 if (len >= e->size - e->bytes)
159 len = e->size - e->bytes - 1;
160
161 __i915_error_advance(e, len);
162}
163
164static void i915_error_puts(struct drm_i915_error_state_buf *e,
165 const char *str)
166{
167 unsigned len;
168
169 if (!__i915_error_ok(e))
170 return;
171
172 len = strlen(str);
173
174 /* Seek the first printf which is hits start position */
175 if (e->pos < e->start) {
176 if (!__i915_error_seek(e, len))
177 return;
178 }
179
180 if (len >= e->size - e->bytes)
181 len = e->size - e->bytes - 1;
182 memcpy(e->buf + e->bytes, str, len);
183
184 __i915_error_advance(e, len);
185}
186
187#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)
188#define err_puts(e, s) i915_error_puts(e, s)
189
190static void print_error_buffers(struct drm_i915_error_state_buf *m,
191 const char *name,
192 struct drm_i915_error_buffer *err,
193 int count)
194{
Chris Wilson3a448732014-08-12 20:05:47 +0100195 err_printf(m, " %s [%d]:\n", name, count);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300196
197 while (count--) {
Chris Wilson3a448732014-08-12 20:05:47 +0100198 err_printf(m, " %08x %8u %02x %02x %x %x",
Mika Kuoppala84734a02013-07-12 16:50:57 +0300199 err->gtt_offset,
200 err->size,
201 err->read_domains,
202 err->write_domain,
203 err->rseqno, err->wseqno);
204 err_puts(m, pin_flag(err->pinned));
205 err_puts(m, tiling_flag(err->tiling));
206 err_puts(m, dirty_flag(err->dirty));
207 err_puts(m, purgeable_flag(err->purgeable));
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100208 err_puts(m, err->userptr ? " userptr" : "");
Mika Kuoppala84734a02013-07-12 16:50:57 +0300209 err_puts(m, err->ring != -1 ? " " : "");
210 err_puts(m, ring_str(err->ring));
Chris Wilson0a4cd7c2014-08-22 14:41:39 +0100211 err_puts(m, i915_cache_level_str(m->i915, err->cache_level));
Mika Kuoppala84734a02013-07-12 16:50:57 +0300212
213 if (err->name)
214 err_printf(m, " (name: %d)", err->name);
215 if (err->fence_reg != I915_FENCE_REG_NONE)
216 err_printf(m, " (fence: %d)", err->fence_reg);
217
218 err_puts(m, "\n");
219 err++;
220 }
221}
222
Mika Kuoppalada661462013-09-06 16:03:28 +0300223static const char *hangcheck_action_to_str(enum intel_ring_hangcheck_action a)
224{
225 switch (a) {
226 case HANGCHECK_IDLE:
227 return "idle";
228 case HANGCHECK_WAIT:
229 return "wait";
230 case HANGCHECK_ACTIVE:
231 return "active";
Mika Kuoppalaf260fe72014-08-05 17:16:26 +0300232 case HANGCHECK_ACTIVE_LOOP:
233 return "active (loop)";
Mika Kuoppalada661462013-09-06 16:03:28 +0300234 case HANGCHECK_KICK:
235 return "kick";
236 case HANGCHECK_HUNG:
237 return "hung";
238 }
239
240 return "unknown";
241}
242
Mika Kuoppala84734a02013-07-12 16:50:57 +0300243static void i915_ring_error_state(struct drm_i915_error_state_buf *m,
244 struct drm_device *dev,
Daniel Vetter77c1aa82014-11-18 13:27:07 +0100245 struct drm_i915_error_state *error,
246 int ring_idx)
Mika Kuoppala84734a02013-07-12 16:50:57 +0300247{
Daniel Vetter77c1aa82014-11-18 13:27:07 +0100248 struct drm_i915_error_ring *ring = &error->ring[ring_idx];
249
Ben Widawsky362b8af2014-01-30 00:19:38 -0800250 if (!ring->valid)
Chris Wilson372fbb82014-01-27 13:52:34 +0000251 return;
252
Daniel Vetter77c1aa82014-11-18 13:27:07 +0100253 err_printf(m, "%s command stream:\n", ring_str(ring_idx));
Ben Widawsky362b8af2014-01-30 00:19:38 -0800254 err_printf(m, " HEAD: 0x%08x\n", ring->head);
255 err_printf(m, " TAIL: 0x%08x\n", ring->tail);
256 err_printf(m, " CTL: 0x%08x\n", ring->ctl);
257 err_printf(m, " HWS: 0x%08x\n", ring->hws);
Chris Wilsone3243d12014-03-21 12:05:47 +0000258 err_printf(m, " ACTHD: 0x%08x %08x\n", (u32)(ring->acthd>>32), (u32)ring->acthd);
Ben Widawsky362b8af2014-01-30 00:19:38 -0800259 err_printf(m, " IPEIR: 0x%08x\n", ring->ipeir);
260 err_printf(m, " IPEHR: 0x%08x\n", ring->ipehr);
261 err_printf(m, " INSTDONE: 0x%08x\n", ring->instdone);
Ville Syrjälä3dda20a2013-12-10 21:44:43 +0200262 if (INTEL_INFO(dev)->gen >= 4) {
Chris Wilsone3243d12014-03-21 12:05:47 +0000263 err_printf(m, " BBADDR: 0x%08x %08x\n", (u32)(ring->bbaddr>>32), (u32)ring->bbaddr);
Ben Widawsky362b8af2014-01-30 00:19:38 -0800264 err_printf(m, " BB_STATE: 0x%08x\n", ring->bbstate);
265 err_printf(m, " INSTPS: 0x%08x\n", ring->instps);
Ville Syrjälä3dda20a2013-12-10 21:44:43 +0200266 }
Ben Widawsky362b8af2014-01-30 00:19:38 -0800267 err_printf(m, " INSTPM: 0x%08x\n", ring->instpm);
Ben Widawsky13ffadd2014-04-01 16:31:07 -0700268 err_printf(m, " FADDR: 0x%08x %08x\n", upper_32_bits(ring->faddr),
269 lower_32_bits(ring->faddr));
Mika Kuoppala84734a02013-07-12 16:50:57 +0300270 if (INTEL_INFO(dev)->gen >= 6) {
Ben Widawsky362b8af2014-01-30 00:19:38 -0800271 err_printf(m, " RC PSMI: 0x%08x\n", ring->rc_psmi);
272 err_printf(m, " FAULT_REG: 0x%08x\n", ring->fault_reg);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300273 err_printf(m, " SYNC_0: 0x%08x [last synced 0x%08x]\n",
Ben Widawsky362b8af2014-01-30 00:19:38 -0800274 ring->semaphore_mboxes[0],
275 ring->semaphore_seqno[0]);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300276 err_printf(m, " SYNC_1: 0x%08x [last synced 0x%08x]\n",
Ben Widawsky362b8af2014-01-30 00:19:38 -0800277 ring->semaphore_mboxes[1],
278 ring->semaphore_seqno[1]);
Ben Widawsky4e5aabf2013-08-12 16:53:04 -0700279 if (HAS_VEBOX(dev)) {
280 err_printf(m, " SYNC_2: 0x%08x [last synced 0x%08x]\n",
Ben Widawsky362b8af2014-01-30 00:19:38 -0800281 ring->semaphore_mboxes[2],
282 ring->semaphore_seqno[2]);
Ben Widawsky4e5aabf2013-08-12 16:53:04 -0700283 }
Mika Kuoppala84734a02013-07-12 16:50:57 +0300284 }
Ben Widawsky6c7a01e2014-01-30 00:19:40 -0800285 if (USES_PPGTT(dev)) {
286 err_printf(m, " GFX_MODE: 0x%08x\n", ring->vm_info.gfx_mode);
287
288 if (INTEL_INFO(dev)->gen >= 8) {
289 int i;
290 for (i = 0; i < 4; i++)
291 err_printf(m, " PDP%d: 0x%016llx\n",
292 i, ring->vm_info.pdp[i]);
293 } else {
294 err_printf(m, " PP_DIR_BASE: 0x%08x\n",
295 ring->vm_info.pp_dir_base);
296 }
297 }
Ben Widawsky362b8af2014-01-30 00:19:38 -0800298 err_printf(m, " seqno: 0x%08x\n", ring->seqno);
299 err_printf(m, " waiting: %s\n", yesno(ring->waiting));
300 err_printf(m, " ring->head: 0x%08x\n", ring->cpu_ring_head);
301 err_printf(m, " ring->tail: 0x%08x\n", ring->cpu_ring_tail);
Mika Kuoppalada661462013-09-06 16:03:28 +0300302 err_printf(m, " hangcheck: %s [%d]\n",
Ben Widawsky362b8af2014-01-30 00:19:38 -0800303 hangcheck_action_to_str(ring->hangcheck_action),
304 ring->hangcheck_score);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300305}
306
307void i915_error_printf(struct drm_i915_error_state_buf *e, const char *f, ...)
308{
309 va_list args;
310
311 va_start(args, f);
312 i915_error_vprintf(e, f, args);
313 va_end(args);
314}
315
Chris Wilsonab0e7ff2014-02-25 17:11:24 +0200316static void print_error_obj(struct drm_i915_error_state_buf *m,
317 struct drm_i915_error_object *obj)
318{
319 int page, offset, elt;
320
321 for (page = offset = 0; page < obj->page_count; page++) {
322 for (elt = 0; elt < PAGE_SIZE/4; elt++) {
323 err_printf(m, "%08x : %08x\n", offset,
324 obj->pages[page][elt]);
325 offset += 4;
326 }
327 }
328}
329
Mika Kuoppala84734a02013-07-12 16:50:57 +0300330int i915_error_state_to_str(struct drm_i915_error_state_buf *m,
331 const struct i915_error_state_file_priv *error_priv)
332{
333 struct drm_device *dev = error_priv->dev;
Jani Nikula50227e12014-03-31 14:27:21 +0300334 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300335 struct drm_i915_error_state *error = error_priv->error;
Ben Widawsky0ca36d72014-06-30 09:53:41 -0700336 struct drm_i915_error_object *obj;
Chris Wilsonab0e7ff2014-02-25 17:11:24 +0200337 int i, j, offset, elt;
338 int max_hangcheck_score;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300339
340 if (!error) {
341 err_printf(m, "no error state collected\n");
342 goto out;
343 }
344
Mika Kuoppalacb383002014-02-25 17:11:25 +0200345 err_printf(m, "%s\n", error->error_msg);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300346 err_printf(m, "Time: %ld s %ld us\n", error->time.tv_sec,
347 error->time.tv_usec);
348 err_printf(m, "Kernel: " UTS_RELEASE "\n");
Chris Wilsonab0e7ff2014-02-25 17:11:24 +0200349 max_hangcheck_score = 0;
350 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
351 if (error->ring[i].hangcheck_score > max_hangcheck_score)
352 max_hangcheck_score = error->ring[i].hangcheck_score;
353 }
354 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
355 if (error->ring[i].hangcheck_score == max_hangcheck_score &&
356 error->ring[i].pid != -1) {
357 err_printf(m, "Active process (on ring %s): %s [%d]\n",
358 ring_str(i),
359 error->ring[i].comm,
360 error->ring[i].pid);
361 }
362 }
Mika Kuoppala48b031e2014-02-25 17:11:27 +0200363 err_printf(m, "Reset count: %u\n", error->reset_count);
Mika Kuoppala62d5d692014-02-25 17:11:28 +0200364 err_printf(m, "Suspend count: %u\n", error->suspend_count);
Ville Syrjäläffbab09b2013-10-04 14:53:40 +0300365 err_printf(m, "PCI ID: 0x%04x\n", dev->pdev->device);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300366 err_printf(m, "EIR: 0x%08x\n", error->eir);
367 err_printf(m, "IER: 0x%08x\n", error->ier);
Rodrigo Vivi885ea5a2014-08-05 10:07:13 -0700368 if (INTEL_INFO(dev)->gen >= 8) {
369 for (i = 0; i < 4; i++)
370 err_printf(m, "GTIER gt %d: 0x%08x\n", i,
371 error->gtier[i]);
372 } else if (HAS_PCH_SPLIT(dev) || IS_VALLEYVIEW(dev))
373 err_printf(m, "GTIER: 0x%08x\n", error->gtier[0]);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300374 err_printf(m, "PGTBL_ER: 0x%08x\n", error->pgtbl_er);
375 err_printf(m, "FORCEWAKE: 0x%08x\n", error->forcewake);
376 err_printf(m, "DERRMR: 0x%08x\n", error->derrmr);
377 err_printf(m, "CCID: 0x%08x\n", error->ccid);
Chris Wilson094f9a52013-09-25 17:34:55 +0100378 err_printf(m, "Missed interrupts: 0x%08lx\n", dev_priv->gpu_error.missed_irq_rings);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300379
380 for (i = 0; i < dev_priv->num_fence_regs; i++)
381 err_printf(m, " fence[%d] = %08llx\n", i, error->fence[i]);
382
383 for (i = 0; i < ARRAY_SIZE(error->extra_instdone); i++)
384 err_printf(m, " INSTDONE_%d: 0x%08x\n", i,
385 error->extra_instdone[i]);
386
387 if (INTEL_INFO(dev)->gen >= 6) {
388 err_printf(m, "ERROR: 0x%08x\n", error->error);
Mika Kuoppala6c826f32015-03-24 14:54:19 +0200389
390 if (INTEL_INFO(dev)->gen >= 8)
391 err_printf(m, "FAULT_TLB_DATA: 0x%08x 0x%08x\n",
392 error->fault_data1, error->fault_data0);
393
Mika Kuoppala84734a02013-07-12 16:50:57 +0300394 err_printf(m, "DONE_REG: 0x%08x\n", error->done_reg);
395 }
396
397 if (INTEL_INFO(dev)->gen == 7)
398 err_printf(m, "ERR_INT: 0x%08x\n", error->err_int);
399
Daniel Vetter77c1aa82014-11-18 13:27:07 +0100400 for (i = 0; i < ARRAY_SIZE(error->ring); i++)
401 i915_ring_error_state(m, dev, error, i);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300402
Chris Wilson3a448732014-08-12 20:05:47 +0100403 for (i = 0; i < error->vm_count; i++) {
404 err_printf(m, "vm[%d]\n", i);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300405
Chris Wilson3a448732014-08-12 20:05:47 +0100406 print_error_buffers(m, "Active",
407 error->active_bo[i],
408 error->active_bo_count[i]);
409
Mika Kuoppala84734a02013-07-12 16:50:57 +0300410 print_error_buffers(m, "Pinned",
Chris Wilson3a448732014-08-12 20:05:47 +0100411 error->pinned_bo[i],
412 error->pinned_bo_count[i]);
413 }
Mika Kuoppala84734a02013-07-12 16:50:57 +0300414
415 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
Chris Wilsonab0e7ff2014-02-25 17:11:24 +0200416 obj = error->ring[i].batchbuffer;
417 if (obj) {
418 err_puts(m, dev_priv->ring[i].name);
419 if (error->ring[i].pid != -1)
420 err_printf(m, " (submitted by %s [%d])",
421 error->ring[i].comm,
422 error->ring[i].pid);
423 err_printf(m, " --- gtt_offset = 0x%08x\n",
Mika Kuoppala84734a02013-07-12 16:50:57 +0300424 obj->gtt_offset);
Chris Wilsonab0e7ff2014-02-25 17:11:24 +0200425 print_error_obj(m, obj);
426 }
427
428 obj = error->ring[i].wa_batchbuffer;
429 if (obj) {
430 err_printf(m, "%s (w/a) --- gtt_offset = 0x%08x\n",
431 dev_priv->ring[i].name, obj->gtt_offset);
432 print_error_obj(m, obj);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300433 }
434
435 if (error->ring[i].num_requests) {
436 err_printf(m, "%s --- %d requests\n",
437 dev_priv->ring[i].name,
438 error->ring[i].num_requests);
439 for (j = 0; j < error->ring[i].num_requests; j++) {
440 err_printf(m, " seqno 0x%08x, emitted %ld, tail 0x%08x\n",
441 error->ring[i].requests[j].seqno,
442 error->ring[i].requests[j].jiffies,
443 error->ring[i].requests[j].tail);
444 }
445 }
446
447 if ((obj = error->ring[i].ringbuffer)) {
448 err_printf(m, "%s --- ringbuffer = 0x%08x\n",
449 dev_priv->ring[i].name,
450 obj->gtt_offset);
Chris Wilsonab0e7ff2014-02-25 17:11:24 +0200451 print_error_obj(m, obj);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300452 }
453
Ben Widawsky362b8af2014-01-30 00:19:38 -0800454 if ((obj = error->ring[i].hws_page)) {
Chris Wilsonf3ce3822014-01-23 22:40:36 +0000455 err_printf(m, "%s --- HW Status = 0x%08x\n",
456 dev_priv->ring[i].name,
457 obj->gtt_offset);
458 offset = 0;
459 for (elt = 0; elt < PAGE_SIZE/16; elt += 4) {
460 err_printf(m, "[%04x] %08x %08x %08x %08x\n",
461 offset,
462 obj->pages[0][elt],
463 obj->pages[0][elt+1],
464 obj->pages[0][elt+2],
465 obj->pages[0][elt+3]);
466 offset += 16;
467 }
468 }
469
Chris Wilson372fbb82014-01-27 13:52:34 +0000470 if ((obj = error->ring[i].ctx)) {
Mika Kuoppala84734a02013-07-12 16:50:57 +0300471 err_printf(m, "%s --- HW Context = 0x%08x\n",
472 dev_priv->ring[i].name,
473 obj->gtt_offset);
Ben Widawsky17d36742014-04-05 14:55:53 -0700474 print_error_obj(m, obj);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300475 }
476 }
477
Ben Widawsky0ca36d72014-06-30 09:53:41 -0700478 if ((obj = error->semaphore_obj)) {
479 err_printf(m, "Semaphore page = 0x%08x\n", obj->gtt_offset);
480 for (elt = 0; elt < PAGE_SIZE/16; elt += 4) {
481 err_printf(m, "[%04x] %08x %08x %08x %08x\n",
482 elt * 4,
483 obj->pages[0][elt],
484 obj->pages[0][elt+1],
485 obj->pages[0][elt+2],
486 obj->pages[0][elt+3]);
487 }
488 }
489
Mika Kuoppala84734a02013-07-12 16:50:57 +0300490 if (error->overlay)
491 intel_overlay_print_error_state(m, error->overlay);
492
493 if (error->display)
494 intel_display_print_error_state(m, dev, error->display);
495
496out:
497 if (m->bytes == 0 && m->err)
498 return m->err;
499
500 return 0;
501}
502
503int i915_error_state_buf_init(struct drm_i915_error_state_buf *ebuf,
Chris Wilson0a4cd7c2014-08-22 14:41:39 +0100504 struct drm_i915_private *i915,
Mika Kuoppala84734a02013-07-12 16:50:57 +0300505 size_t count, loff_t pos)
506{
507 memset(ebuf, 0, sizeof(*ebuf));
Chris Wilson0a4cd7c2014-08-22 14:41:39 +0100508 ebuf->i915 = i915;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300509
510 /* We need to have enough room to store any i915_error_state printf
511 * so that we can move it to start position.
512 */
513 ebuf->size = count + 1 > PAGE_SIZE ? count + 1 : PAGE_SIZE;
514 ebuf->buf = kmalloc(ebuf->size,
515 GFP_TEMPORARY | __GFP_NORETRY | __GFP_NOWARN);
516
517 if (ebuf->buf == NULL) {
518 ebuf->size = PAGE_SIZE;
519 ebuf->buf = kmalloc(ebuf->size, GFP_TEMPORARY);
520 }
521
522 if (ebuf->buf == NULL) {
523 ebuf->size = 128;
524 ebuf->buf = kmalloc(ebuf->size, GFP_TEMPORARY);
525 }
526
527 if (ebuf->buf == NULL)
528 return -ENOMEM;
529
530 ebuf->start = pos;
531
532 return 0;
533}
534
535static void i915_error_object_free(struct drm_i915_error_object *obj)
536{
537 int page;
538
539 if (obj == NULL)
540 return;
541
542 for (page = 0; page < obj->page_count; page++)
543 kfree(obj->pages[page]);
544
545 kfree(obj);
546}
547
548static void i915_error_state_free(struct kref *error_ref)
549{
550 struct drm_i915_error_state *error = container_of(error_ref,
551 typeof(*error), ref);
552 int i;
553
554 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
555 i915_error_object_free(error->ring[i].batchbuffer);
556 i915_error_object_free(error->ring[i].ringbuffer);
Ben Widawsky362b8af2014-01-30 00:19:38 -0800557 i915_error_object_free(error->ring[i].hws_page);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300558 i915_error_object_free(error->ring[i].ctx);
559 kfree(error->ring[i].requests);
560 }
561
Ben Widawsky0ca36d72014-06-30 09:53:41 -0700562 i915_error_object_free(error->semaphore_obj);
Michel Thierry0b37a9a2015-03-20 09:41:03 +0000563
564 for (i = 0; i < error->vm_count; i++)
565 kfree(error->active_bo[i]);
566
Mika Kuoppala84734a02013-07-12 16:50:57 +0300567 kfree(error->active_bo);
Michel Thierry0b37a9a2015-03-20 09:41:03 +0000568 kfree(error->active_bo_count);
569 kfree(error->pinned_bo);
570 kfree(error->pinned_bo_count);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300571 kfree(error->overlay);
572 kfree(error->display);
573 kfree(error);
574}
575
576static struct drm_i915_error_object *
Chris Wilson8ae62dc2014-08-12 20:05:49 +0100577i915_error_object_create(struct drm_i915_private *dev_priv,
578 struct drm_i915_gem_object *src,
579 struct i915_address_space *vm)
Mika Kuoppala84734a02013-07-12 16:50:57 +0300580{
581 struct drm_i915_error_object *dst;
Tvrtko Ursulinaff43762014-10-24 12:42:33 +0100582 struct i915_vma *vma = NULL;
Chris Wilson8ae62dc2014-08-12 20:05:49 +0100583 int num_pages;
Chris Wilsonb3c3f5e2014-08-12 20:05:48 +0100584 bool use_ggtt;
585 int i = 0;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300586 u32 reloc_offset;
587
588 if (src == NULL || src->pages == NULL)
589 return NULL;
590
Chris Wilson8ae62dc2014-08-12 20:05:49 +0100591 num_pages = src->base.size >> PAGE_SHIFT;
592
Mika Kuoppala84734a02013-07-12 16:50:57 +0300593 dst = kmalloc(sizeof(*dst) + num_pages * sizeof(u32 *), GFP_ATOMIC);
594 if (dst == NULL)
595 return NULL;
596
Chris Wilson87a01e82014-08-12 20:05:50 +0100597 if (i915_gem_obj_bound(src, vm))
598 dst->gtt_offset = i915_gem_obj_offset(src, vm);
599 else
600 dst->gtt_offset = -1;
Chris Wilsonb3c3f5e2014-08-12 20:05:48 +0100601
602 reloc_offset = dst->gtt_offset;
Tvrtko Ursulinaff43762014-10-24 12:42:33 +0100603 if (i915_is_ggtt(vm))
604 vma = i915_gem_obj_to_ggtt(src);
Chris Wilsonb3c3f5e2014-08-12 20:05:48 +0100605 use_ggtt = (src->cache_level == I915_CACHE_NONE &&
Tvrtko Ursulinaff43762014-10-24 12:42:33 +0100606 vma && (vma->bound & GLOBAL_BIND) &&
607 reloc_offset + num_pages * PAGE_SIZE <= dev_priv->gtt.mappable_end);
Chris Wilsonb3c3f5e2014-08-12 20:05:48 +0100608
609 /* Cannot access stolen address directly, try to use the aperture */
610 if (src->stolen) {
611 use_ggtt = true;
612
Tvrtko Ursulinaff43762014-10-24 12:42:33 +0100613 if (!(vma && vma->bound & GLOBAL_BIND))
Chris Wilsonb3c3f5e2014-08-12 20:05:48 +0100614 goto unwind;
615
616 reloc_offset = i915_gem_obj_ggtt_offset(src);
617 if (reloc_offset + num_pages * PAGE_SIZE > dev_priv->gtt.mappable_end)
618 goto unwind;
619 }
620
621 /* Cannot access snooped pages through the aperture */
622 if (use_ggtt && src->cache_level != I915_CACHE_NONE && !HAS_LLC(dev_priv->dev))
623 goto unwind;
624
625 dst->page_count = num_pages;
626 while (num_pages--) {
Mika Kuoppala84734a02013-07-12 16:50:57 +0300627 unsigned long flags;
628 void *d;
629
630 d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
631 if (d == NULL)
632 goto unwind;
633
634 local_irq_save(flags);
Chris Wilsonb3c3f5e2014-08-12 20:05:48 +0100635 if (use_ggtt) {
Mika Kuoppala84734a02013-07-12 16:50:57 +0300636 void __iomem *s;
637
638 /* Simply ignore tiling or any overlapping fence.
639 * It's part of the error state, and this hopefully
640 * captures what the GPU read.
641 */
642
643 s = io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
644 reloc_offset);
645 memcpy_fromio(d, s, PAGE_SIZE);
646 io_mapping_unmap_atomic(s);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300647 } else {
648 struct page *page;
649 void *s;
650
651 page = i915_gem_object_get_page(src, i);
652
653 drm_clflush_pages(&page, 1);
654
655 s = kmap_atomic(page);
656 memcpy(d, s, PAGE_SIZE);
657 kunmap_atomic(s);
658
659 drm_clflush_pages(&page, 1);
660 }
661 local_irq_restore(flags);
662
Chris Wilsonb3c3f5e2014-08-12 20:05:48 +0100663 dst->pages[i++] = d;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300664 reloc_offset += PAGE_SIZE;
665 }
Mika Kuoppala84734a02013-07-12 16:50:57 +0300666
667 return dst;
668
669unwind:
670 while (i--)
671 kfree(dst->pages[i]);
672 kfree(dst);
673 return NULL;
674}
Ben Widawskya7b91072013-12-06 14:10:52 -0800675#define i915_error_ggtt_object_create(dev_priv, src) \
Chris Wilson8ae62dc2014-08-12 20:05:49 +0100676 i915_error_object_create((dev_priv), (src), &(dev_priv)->gtt.base)
Mika Kuoppala84734a02013-07-12 16:50:57 +0300677
678static void capture_bo(struct drm_i915_error_buffer *err,
Chris Wilson3a448732014-08-12 20:05:47 +0100679 struct i915_vma *vma)
Mika Kuoppala84734a02013-07-12 16:50:57 +0300680{
Chris Wilson3a448732014-08-12 20:05:47 +0100681 struct drm_i915_gem_object *obj = vma->obj;
682
Mika Kuoppala84734a02013-07-12 16:50:57 +0300683 err->size = obj->base.size;
684 err->name = obj->base.name;
John Harrison97b2a6a2014-11-24 18:49:26 +0000685 err->rseqno = i915_gem_request_get_seqno(obj->last_read_req);
686 err->wseqno = i915_gem_request_get_seqno(obj->last_write_req);
Chris Wilson3a448732014-08-12 20:05:47 +0100687 err->gtt_offset = vma->node.start;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300688 err->read_domains = obj->base.read_domains;
689 err->write_domain = obj->base.write_domain;
690 err->fence_reg = obj->fence_reg;
691 err->pinned = 0;
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800692 if (i915_gem_obj_is_pinned(obj))
Mika Kuoppala84734a02013-07-12 16:50:57 +0300693 err->pinned = 1;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300694 err->tiling = obj->tiling_mode;
695 err->dirty = obj->dirty;
696 err->purgeable = obj->madv != I915_MADV_WILLNEED;
Chris Wilson5cc9ed42014-05-16 14:22:37 +0100697 err->userptr = obj->userptr.mm != NULL;
John Harrison41c52412014-11-24 18:49:43 +0000698 err->ring = obj->last_read_req ?
699 i915_gem_request_get_ring(obj->last_read_req)->id : -1;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300700 err->cache_level = obj->cache_level;
701}
702
703static u32 capture_active_bo(struct drm_i915_error_buffer *err,
704 int count, struct list_head *head)
705{
Ben Widawskyca191b12013-07-31 17:00:14 -0700706 struct i915_vma *vma;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300707 int i = 0;
708
Ben Widawskyca191b12013-07-31 17:00:14 -0700709 list_for_each_entry(vma, head, mm_list) {
Chris Wilson3a448732014-08-12 20:05:47 +0100710 capture_bo(err++, vma);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300711 if (++i == count)
712 break;
713 }
714
715 return i;
716}
717
718static u32 capture_pinned_bo(struct drm_i915_error_buffer *err,
Chris Wilson3a448732014-08-12 20:05:47 +0100719 int count, struct list_head *head,
720 struct i915_address_space *vm)
Mika Kuoppala84734a02013-07-12 16:50:57 +0300721{
722 struct drm_i915_gem_object *obj;
Chris Wilson3a448732014-08-12 20:05:47 +0100723 struct drm_i915_error_buffer * const first = err;
724 struct drm_i915_error_buffer * const last = err + count;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300725
726 list_for_each_entry(obj, head, global_list) {
Chris Wilson3a448732014-08-12 20:05:47 +0100727 struct i915_vma *vma;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300728
Chris Wilson3a448732014-08-12 20:05:47 +0100729 if (err == last)
Mika Kuoppala84734a02013-07-12 16:50:57 +0300730 break;
Chris Wilson3a448732014-08-12 20:05:47 +0100731
732 list_for_each_entry(vma, &obj->vma_list, vma_link)
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +0000733 if (vma->vm == vm && vma->pin_count > 0)
Chris Wilson3a448732014-08-12 20:05:47 +0100734 capture_bo(err++, vma);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300735 }
736
Chris Wilson3a448732014-08-12 20:05:47 +0100737 return err - first;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300738}
739
Ben Widawsky011cf572014-02-04 12:18:55 +0000740/* Generate a semi-unique error code. The code is not meant to have meaning, The
741 * code's only purpose is to try to prevent false duplicated bug reports by
742 * grossly estimating a GPU error state.
743 *
744 * TODO Ideally, hashing the batchbuffer would be a very nice way to determine
745 * the hang if we could strip the GTT offset information from it.
746 *
747 * It's only a small step better than a random number in its current form.
748 */
749static uint32_t i915_error_generate_code(struct drm_i915_private *dev_priv,
Mika Kuoppalacb383002014-02-25 17:11:25 +0200750 struct drm_i915_error_state *error,
751 int *ring_id)
Ben Widawsky011cf572014-02-04 12:18:55 +0000752{
753 uint32_t error_code = 0;
754 int i;
755
756 /* IPEHR would be an ideal way to detect errors, as it's the gross
757 * measure of "the command that hung." However, has some very common
758 * synchronization commands which almost always appear in the case
759 * strictly a client bug. Use instdone to differentiate those some.
760 */
Mika Kuoppalacb383002014-02-25 17:11:25 +0200761 for (i = 0; i < I915_NUM_RINGS; i++) {
762 if (error->ring[i].hangcheck_action == HANGCHECK_HUNG) {
763 if (ring_id)
764 *ring_id = i;
765
Ben Widawsky011cf572014-02-04 12:18:55 +0000766 return error->ring[i].ipehr ^ error->ring[i].instdone;
Mika Kuoppalacb383002014-02-25 17:11:25 +0200767 }
768 }
Ben Widawsky011cf572014-02-04 12:18:55 +0000769
770 return error_code;
771}
772
Mika Kuoppala84734a02013-07-12 16:50:57 +0300773static void i915_gem_record_fences(struct drm_device *dev,
774 struct drm_i915_error_state *error)
775{
776 struct drm_i915_private *dev_priv = dev->dev_private;
777 int i;
778
Rodrigo Vivice38ab02014-12-04 06:48:10 -0800779 if (IS_GEN3(dev) || IS_GEN2(dev)) {
Mika Kuoppala84734a02013-07-12 16:50:57 +0300780 for (i = 0; i < 8; i++)
781 error->fence[i] = I915_READ(FENCE_REG_830_0 + (i * 4));
Rodrigo Vivice38ab02014-12-04 06:48:10 -0800782 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
783 for (i = 0; i < 8; i++)
784 error->fence[i+8] = I915_READ(FENCE_REG_945_8 +
785 (i * 4));
786 } else if (IS_GEN5(dev) || IS_GEN4(dev))
787 for (i = 0; i < 16; i++)
788 error->fence[i] = I915_READ64(FENCE_REG_965_0 +
789 (i * 8));
790 else if (INTEL_INFO(dev)->gen >= 6)
791 for (i = 0; i < dev_priv->num_fence_regs; i++)
792 error->fence[i] = I915_READ64(FENCE_REG_SANDYBRIDGE_0 +
793 (i * 8));
Mika Kuoppala84734a02013-07-12 16:50:57 +0300794}
795
Ben Widawsky87f85eb2014-06-30 09:53:40 -0700796
Ben Widawsky0ca36d72014-06-30 09:53:41 -0700797static void gen8_record_semaphore_state(struct drm_i915_private *dev_priv,
798 struct drm_i915_error_state *error,
799 struct intel_engine_cs *ring,
800 struct drm_i915_error_ring *ering)
801{
Rodrigo Vivib4558b42014-07-18 02:19:40 -0700802 struct intel_engine_cs *to;
Ben Widawsky0ca36d72014-06-30 09:53:41 -0700803 int i;
804
805 if (!i915_semaphore_is_enabled(dev_priv->dev))
806 return;
807
808 if (!error->semaphore_obj)
809 error->semaphore_obj =
Daniel Vettercc1df8a2014-11-19 18:38:39 +0100810 i915_error_ggtt_object_create(dev_priv,
811 dev_priv->semaphore_obj);
Ben Widawsky0ca36d72014-06-30 09:53:41 -0700812
Rodrigo Vivib4558b42014-07-18 02:19:40 -0700813 for_each_ring(to, dev_priv, i) {
814 int idx;
815 u16 signal_offset;
816 u32 *tmp;
Ben Widawsky0ca36d72014-06-30 09:53:41 -0700817
Rodrigo Vivib4558b42014-07-18 02:19:40 -0700818 if (ring == to)
819 continue;
820
Rodrigo Vivi864c6182014-08-01 04:51:30 -0700821 signal_offset = (GEN8_SIGNAL_OFFSET(ring, i) & (PAGE_SIZE - 1))
822 / 4;
Rodrigo Vivib4558b42014-07-18 02:19:40 -0700823 tmp = error->semaphore_obj->pages[0];
824 idx = intel_ring_sync_index(ring, to);
825
826 ering->semaphore_mboxes[idx] = tmp[signal_offset];
827 ering->semaphore_seqno[idx] = ring->semaphore.sync_seqno[idx];
Ben Widawsky0ca36d72014-06-30 09:53:41 -0700828 }
829}
830
Ben Widawsky87f85eb2014-06-30 09:53:40 -0700831static void gen6_record_semaphore_state(struct drm_i915_private *dev_priv,
832 struct intel_engine_cs *ring,
833 struct drm_i915_error_ring *ering)
834{
835 ering->semaphore_mboxes[0] = I915_READ(RING_SYNC_0(ring->mmio_base));
836 ering->semaphore_mboxes[1] = I915_READ(RING_SYNC_1(ring->mmio_base));
837 ering->semaphore_seqno[0] = ring->semaphore.sync_seqno[0];
838 ering->semaphore_seqno[1] = ring->semaphore.sync_seqno[1];
839
840 if (HAS_VEBOX(dev_priv->dev)) {
841 ering->semaphore_mboxes[2] =
842 I915_READ(RING_SYNC_2(ring->mmio_base));
843 ering->semaphore_seqno[2] = ring->semaphore.sync_seqno[2];
844 }
845}
846
Mika Kuoppala84734a02013-07-12 16:50:57 +0300847static void i915_record_ring_state(struct drm_device *dev,
Ben Widawsky0ca36d72014-06-30 09:53:41 -0700848 struct drm_i915_error_state *error,
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100849 struct intel_engine_cs *ring,
Ben Widawsky362b8af2014-01-30 00:19:38 -0800850 struct drm_i915_error_ring *ering)
Mika Kuoppala84734a02013-07-12 16:50:57 +0300851{
852 struct drm_i915_private *dev_priv = dev->dev_private;
853
854 if (INTEL_INFO(dev)->gen >= 6) {
Ben Widawsky362b8af2014-01-30 00:19:38 -0800855 ering->rc_psmi = I915_READ(ring->mmio_base + 0x50);
856 ering->fault_reg = I915_READ(RING_FAULT_REG(ring));
Ben Widawsky0ca36d72014-06-30 09:53:41 -0700857 if (INTEL_INFO(dev)->gen >= 8)
858 gen8_record_semaphore_state(dev_priv, error, ring, ering);
859 else
860 gen6_record_semaphore_state(dev_priv, ring, ering);
Ben Widawsky4e5aabf2013-08-12 16:53:04 -0700861 }
862
Mika Kuoppala84734a02013-07-12 16:50:57 +0300863 if (INTEL_INFO(dev)->gen >= 4) {
Ben Widawsky362b8af2014-01-30 00:19:38 -0800864 ering->faddr = I915_READ(RING_DMA_FADD(ring->mmio_base));
865 ering->ipeir = I915_READ(RING_IPEIR(ring->mmio_base));
866 ering->ipehr = I915_READ(RING_IPEHR(ring->mmio_base));
867 ering->instdone = I915_READ(RING_INSTDONE(ring->mmio_base));
868 ering->instps = I915_READ(RING_INSTPS(ring->mmio_base));
869 ering->bbaddr = I915_READ(RING_BBADDR(ring->mmio_base));
Ben Widawsky13ffadd2014-04-01 16:31:07 -0700870 if (INTEL_INFO(dev)->gen >= 8) {
871 ering->faddr |= (u64) I915_READ(RING_DMA_FADD_UDW(ring->mmio_base)) << 32;
Ben Widawsky362b8af2014-01-30 00:19:38 -0800872 ering->bbaddr |= (u64) I915_READ(RING_BBADDR_UDW(ring->mmio_base)) << 32;
Ben Widawsky13ffadd2014-04-01 16:31:07 -0700873 }
Ben Widawsky362b8af2014-01-30 00:19:38 -0800874 ering->bbstate = I915_READ(RING_BBSTATE(ring->mmio_base));
Mika Kuoppala84734a02013-07-12 16:50:57 +0300875 } else {
Ben Widawsky362b8af2014-01-30 00:19:38 -0800876 ering->faddr = I915_READ(DMA_FADD_I8XX);
877 ering->ipeir = I915_READ(IPEIR);
878 ering->ipehr = I915_READ(IPEHR);
879 ering->instdone = I915_READ(INSTDONE);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300880 }
881
Ben Widawsky362b8af2014-01-30 00:19:38 -0800882 ering->waiting = waitqueue_active(&ring->irq_queue);
883 ering->instpm = I915_READ(RING_INSTPM(ring->mmio_base));
884 ering->seqno = ring->get_seqno(ring, false);
885 ering->acthd = intel_ring_get_active_head(ring);
886 ering->head = I915_READ_HEAD(ring);
887 ering->tail = I915_READ_TAIL(ring);
888 ering->ctl = I915_READ_CTL(ring);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300889
Chris Wilsonf3ce3822014-01-23 22:40:36 +0000890 if (I915_NEED_GFX_HWS(dev)) {
891 int mmio;
892
893 if (IS_GEN7(dev)) {
894 switch (ring->id) {
895 default:
896 case RCS:
897 mmio = RENDER_HWS_PGA_GEN7;
898 break;
899 case BCS:
900 mmio = BLT_HWS_PGA_GEN7;
901 break;
902 case VCS:
903 mmio = BSD_HWS_PGA_GEN7;
904 break;
905 case VECS:
906 mmio = VEBOX_HWS_PGA_GEN7;
907 break;
908 }
909 } else if (IS_GEN6(ring->dev)) {
910 mmio = RING_HWS_PGA_GEN6(ring->mmio_base);
911 } else {
912 /* XXX: gen8 returns to sanity */
913 mmio = RING_HWS_PGA(ring->mmio_base);
914 }
915
Ben Widawsky362b8af2014-01-30 00:19:38 -0800916 ering->hws = I915_READ(mmio);
Chris Wilsonf3ce3822014-01-23 22:40:36 +0000917 }
918
Ben Widawsky362b8af2014-01-30 00:19:38 -0800919 ering->hangcheck_score = ring->hangcheck.score;
920 ering->hangcheck_action = ring->hangcheck.action;
Ben Widawsky6c7a01e2014-01-30 00:19:40 -0800921
922 if (USES_PPGTT(dev)) {
923 int i;
924
925 ering->vm_info.gfx_mode = I915_READ(RING_MODE_GEN7(ring));
926
Rodrigo Vivi74745b02014-12-03 04:55:27 -0800927 if (IS_GEN6(dev))
928 ering->vm_info.pp_dir_base =
929 I915_READ(RING_PP_DIR_BASE_READ(ring));
930 else if (IS_GEN7(dev))
931 ering->vm_info.pp_dir_base =
932 I915_READ(RING_PP_DIR_BASE(ring));
933 else if (INTEL_INFO(dev)->gen >= 8)
Ben Widawsky6c7a01e2014-01-30 00:19:40 -0800934 for (i = 0; i < 4; i++) {
935 ering->vm_info.pdp[i] =
936 I915_READ(GEN8_RING_PDP_UDW(ring, i));
937 ering->vm_info.pdp[i] <<= 32;
938 ering->vm_info.pdp[i] |=
939 I915_READ(GEN8_RING_PDP_LDW(ring, i));
940 }
Ben Widawsky6c7a01e2014-01-30 00:19:40 -0800941 }
Mika Kuoppala84734a02013-07-12 16:50:57 +0300942}
943
944
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100945static void i915_gem_record_active_context(struct intel_engine_cs *ring,
Mika Kuoppala84734a02013-07-12 16:50:57 +0300946 struct drm_i915_error_state *error,
947 struct drm_i915_error_ring *ering)
948{
949 struct drm_i915_private *dev_priv = ring->dev->dev_private;
950 struct drm_i915_gem_object *obj;
951
952 /* Currently render ring is the only HW context user */
953 if (ring->id != RCS || !error->ccid)
954 return;
955
956 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Ben Widawsky36362ad2014-07-01 11:17:41 -0700957 if (!i915_gem_obj_ggtt_bound(obj))
958 continue;
959
Mika Kuoppala84734a02013-07-12 16:50:57 +0300960 if ((error->ccid & PAGE_MASK) == i915_gem_obj_ggtt_offset(obj)) {
Ben Widawsky17d36742014-04-05 14:55:53 -0700961 ering->ctx = i915_error_ggtt_object_create(dev_priv, obj);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300962 break;
963 }
964 }
965}
966
967static void i915_gem_record_rings(struct drm_device *dev,
968 struct drm_i915_error_state *error)
969{
970 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala84734a02013-07-12 16:50:57 +0300971 struct drm_i915_gem_request *request;
972 int i, count;
973
Chris Wilson372fbb82014-01-27 13:52:34 +0000974 for (i = 0; i < I915_NUM_RINGS; i++) {
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100975 struct intel_engine_cs *ring = &dev_priv->ring[i];
Oscar Mateo9075e522014-07-24 17:04:43 +0100976 struct intel_ringbuffer *rbuf;
Chris Wilson372fbb82014-01-27 13:52:34 +0000977
Chris Wilsoneee73b42014-06-10 12:09:29 +0100978 error->ring[i].pid = -1;
979
Chris Wilson372fbb82014-01-27 13:52:34 +0000980 if (ring->dev == NULL)
981 continue;
982
983 error->ring[i].valid = true;
984
Ben Widawsky0ca36d72014-06-30 09:53:41 -0700985 i915_record_ring_state(dev, error, ring, &error->ring[i]);
Mika Kuoppala84734a02013-07-12 16:50:57 +0300986
Chris Wilsonab0e7ff2014-02-25 17:11:24 +0200987 request = i915_gem_find_active_request(ring);
988 if (request) {
Daniel Vetterae6c4802014-08-06 15:04:53 +0200989 struct i915_address_space *vm;
990
991 vm = request->ctx && request->ctx->ppgtt ?
992 &request->ctx->ppgtt->base :
993 &dev_priv->gtt.base;
994
Chris Wilsonab0e7ff2014-02-25 17:11:24 +0200995 /* We need to copy these to an anonymous buffer
996 * as the simplest method to avoid being overwritten
997 * by userspace.
998 */
999 error->ring[i].batchbuffer =
1000 i915_error_object_create(dev_priv,
1001 request->batch_obj,
Daniel Vetterae6c4802014-08-06 15:04:53 +02001002 vm);
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02001003
Chris Wilson8ae62dc2014-08-12 20:05:49 +01001004 if (HAS_BROKEN_CS_TLB(dev_priv->dev))
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02001005 error->ring[i].wa_batchbuffer =
1006 i915_error_ggtt_object_create(dev_priv,
1007 ring->scratch.obj);
1008
Mika Kuoppala071c92d2015-02-12 10:26:02 +02001009 if (request->pid) {
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02001010 struct task_struct *task;
1011
1012 rcu_read_lock();
Mika Kuoppala071c92d2015-02-12 10:26:02 +02001013 task = pid_task(request->pid, PIDTYPE_PID);
Chris Wilsonab0e7ff2014-02-25 17:11:24 +02001014 if (task) {
1015 strcpy(error->ring[i].comm, task->comm);
1016 error->ring[i].pid = task->pid;
1017 }
1018 rcu_read_unlock();
1019 }
1020 }
Mika Kuoppala84734a02013-07-12 16:50:57 +03001021
Oscar Mateo9075e522014-07-24 17:04:43 +01001022 if (i915.enable_execlists) {
1023 /* TODO: This is only a small fix to keep basic error
1024 * capture working, but we need to add more information
1025 * for it to be useful (e.g. dump the context being
1026 * executed).
1027 */
1028 if (request)
1029 rbuf = request->ctx->engine[ring->id].ringbuf;
1030 else
1031 rbuf = ring->default_context->engine[ring->id].ringbuf;
1032 } else
1033 rbuf = ring->buffer;
1034
1035 error->ring[i].cpu_ring_head = rbuf->head;
1036 error->ring[i].cpu_ring_tail = rbuf->tail;
1037
Mika Kuoppala84734a02013-07-12 16:50:57 +03001038 error->ring[i].ringbuffer =
Oscar Mateo9075e522014-07-24 17:04:43 +01001039 i915_error_ggtt_object_create(dev_priv, rbuf->obj);
Mika Kuoppala84734a02013-07-12 16:50:57 +03001040
Chris Wilson8ae62dc2014-08-12 20:05:49 +01001041 error->ring[i].hws_page =
1042 i915_error_ggtt_object_create(dev_priv, ring->status_page.obj);
Mika Kuoppala84734a02013-07-12 16:50:57 +03001043
1044 i915_gem_record_active_context(ring, error, &error->ring[i]);
1045
1046 count = 0;
1047 list_for_each_entry(request, &ring->request_list, list)
1048 count++;
1049
1050 error->ring[i].num_requests = count;
1051 error->ring[i].requests =
Daniel Vettera1e22652013-09-21 00:35:38 +02001052 kcalloc(count, sizeof(*error->ring[i].requests),
Mika Kuoppala84734a02013-07-12 16:50:57 +03001053 GFP_ATOMIC);
1054 if (error->ring[i].requests == NULL) {
1055 error->ring[i].num_requests = 0;
1056 continue;
1057 }
1058
1059 count = 0;
1060 list_for_each_entry(request, &ring->request_list, list) {
1061 struct drm_i915_error_request *erq;
1062
1063 erq = &error->ring[i].requests[count++];
1064 erq->seqno = request->seqno;
1065 erq->jiffies = request->emitted_jiffies;
Nick Hoath72f95af2015-01-15 13:10:37 +00001066 erq->tail = request->postfix;
Mika Kuoppala84734a02013-07-12 16:50:57 +03001067 }
1068 }
1069}
1070
Ben Widawsky95f53012013-07-31 17:00:15 -07001071/* FIXME: Since pin count/bound list is global, we duplicate what we capture per
1072 * VM.
1073 */
1074static void i915_gem_capture_vm(struct drm_i915_private *dev_priv,
1075 struct drm_i915_error_state *error,
1076 struct i915_address_space *vm,
1077 const int ndx)
Mika Kuoppala84734a02013-07-12 16:50:57 +03001078{
Ben Widawsky95f53012013-07-31 17:00:15 -07001079 struct drm_i915_error_buffer *active_bo = NULL, *pinned_bo = NULL;
Mika Kuoppala84734a02013-07-12 16:50:57 +03001080 struct drm_i915_gem_object *obj;
Ben Widawsky95f53012013-07-31 17:00:15 -07001081 struct i915_vma *vma;
Mika Kuoppala84734a02013-07-12 16:50:57 +03001082 int i;
1083
1084 i = 0;
Ben Widawskyca191b12013-07-31 17:00:14 -07001085 list_for_each_entry(vma, &vm->active_list, mm_list)
Mika Kuoppala84734a02013-07-12 16:50:57 +03001086 i++;
Ben Widawsky95f53012013-07-31 17:00:15 -07001087 error->active_bo_count[ndx] = i;
Chris Wilson3a448732014-08-12 20:05:47 +01001088
1089 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
1090 list_for_each_entry(vma, &obj->vma_list, vma_link)
Tvrtko Ursulinfe14d5f2014-12-10 17:27:58 +00001091 if (vma->vm == vm && vma->pin_count > 0)
Chris Wilson3a448732014-08-12 20:05:47 +01001092 i++;
Chris Wilson3a448732014-08-12 20:05:47 +01001093 }
Ben Widawsky95f53012013-07-31 17:00:15 -07001094 error->pinned_bo_count[ndx] = i - error->active_bo_count[ndx];
Mika Kuoppala84734a02013-07-12 16:50:57 +03001095
1096 if (i) {
Daniel Vettera1e22652013-09-21 00:35:38 +02001097 active_bo = kcalloc(i, sizeof(*active_bo), GFP_ATOMIC);
Ben Widawsky95f53012013-07-31 17:00:15 -07001098 if (active_bo)
1099 pinned_bo = active_bo + error->active_bo_count[ndx];
Mika Kuoppala84734a02013-07-12 16:50:57 +03001100 }
1101
Ben Widawsky95f53012013-07-31 17:00:15 -07001102 if (active_bo)
1103 error->active_bo_count[ndx] =
1104 capture_active_bo(active_bo,
1105 error->active_bo_count[ndx],
Ben Widawsky5cef07e2013-07-16 16:50:08 -07001106 &vm->active_list);
Mika Kuoppala84734a02013-07-12 16:50:57 +03001107
Ben Widawsky95f53012013-07-31 17:00:15 -07001108 if (pinned_bo)
1109 error->pinned_bo_count[ndx] =
1110 capture_pinned_bo(pinned_bo,
1111 error->pinned_bo_count[ndx],
Chris Wilson3a448732014-08-12 20:05:47 +01001112 &dev_priv->mm.bound_list, vm);
Ben Widawsky95f53012013-07-31 17:00:15 -07001113 error->active_bo[ndx] = active_bo;
1114 error->pinned_bo[ndx] = pinned_bo;
1115}
1116
1117static void i915_gem_capture_buffers(struct drm_i915_private *dev_priv,
1118 struct drm_i915_error_state *error)
1119{
1120 struct i915_address_space *vm;
1121 int cnt = 0, i = 0;
1122
1123 list_for_each_entry(vm, &dev_priv->vm_list, global_link)
1124 cnt++;
1125
Ben Widawsky95f53012013-07-31 17:00:15 -07001126 error->active_bo = kcalloc(cnt, sizeof(*error->active_bo), GFP_ATOMIC);
1127 error->pinned_bo = kcalloc(cnt, sizeof(*error->pinned_bo), GFP_ATOMIC);
1128 error->active_bo_count = kcalloc(cnt, sizeof(*error->active_bo_count),
1129 GFP_ATOMIC);
1130 error->pinned_bo_count = kcalloc(cnt, sizeof(*error->pinned_bo_count),
1131 GFP_ATOMIC);
1132
Chris Wilson3a448732014-08-12 20:05:47 +01001133 if (error->active_bo == NULL ||
1134 error->pinned_bo == NULL ||
1135 error->active_bo_count == NULL ||
1136 error->pinned_bo_count == NULL) {
1137 kfree(error->active_bo);
1138 kfree(error->active_bo_count);
1139 kfree(error->pinned_bo);
1140 kfree(error->pinned_bo_count);
1141
1142 error->active_bo = NULL;
1143 error->active_bo_count = NULL;
1144 error->pinned_bo = NULL;
1145 error->pinned_bo_count = NULL;
1146 } else {
1147 list_for_each_entry(vm, &dev_priv->vm_list, global_link)
1148 i915_gem_capture_vm(dev_priv, error, vm, i++);
1149
1150 error->vm_count = cnt;
1151 }
Mika Kuoppala84734a02013-07-12 16:50:57 +03001152}
1153
Ben Widawsky1d762aa2014-01-30 00:19:35 -08001154/* Capture all registers which don't fit into another category. */
1155static void i915_capture_reg_state(struct drm_i915_private *dev_priv,
1156 struct drm_i915_error_state *error)
Mika Kuoppala84734a02013-07-12 16:50:57 +03001157{
Ben Widawsky1d762aa2014-01-30 00:19:35 -08001158 struct drm_device *dev = dev_priv->dev;
Rodrigo Vivi885ea5a2014-08-05 10:07:13 -07001159 int i;
Mika Kuoppala84734a02013-07-12 16:50:57 +03001160
Ben Widawsky654c90c2014-01-30 00:19:36 -08001161 /* General organization
1162 * 1. Registers specific to a single generation
1163 * 2. Registers which belong to multiple generations
1164 * 3. Feature specific registers.
1165 * 4. Everything else
1166 * Please try to follow the order.
1167 */
1168
1169 /* 1: Registers specific to a single generation */
1170 if (IS_VALLEYVIEW(dev)) {
Rodrigo Vivi885ea5a2014-08-05 10:07:13 -07001171 error->gtier[0] = I915_READ(GTIER);
Rodrigo Vivi843db712014-08-01 09:12:27 -07001172 error->ier = I915_READ(VLV_IER);
Ben Widawsky654c90c2014-01-30 00:19:36 -08001173 error->forcewake = I915_READ(FORCEWAKE_VLV);
1174 }
1175
1176 if (IS_GEN7(dev))
1177 error->err_int = I915_READ(GEN7_ERR_INT);
1178
Mika Kuoppala6c826f32015-03-24 14:54:19 +02001179 if (INTEL_INFO(dev)->gen >= 8) {
1180 error->fault_data0 = I915_READ(GEN8_FAULT_TLB_DATA0);
1181 error->fault_data1 = I915_READ(GEN8_FAULT_TLB_DATA1);
1182 }
1183
Ben Widawsky91ec5d12014-01-30 00:19:39 -08001184 if (IS_GEN6(dev)) {
Ben Widawsky654c90c2014-01-30 00:19:36 -08001185 error->forcewake = I915_READ(FORCEWAKE);
Ben Widawsky91ec5d12014-01-30 00:19:39 -08001186 error->gab_ctl = I915_READ(GAB_CTL);
1187 error->gfx_mode = I915_READ(GFX_MODE);
1188 }
Ben Widawsky654c90c2014-01-30 00:19:36 -08001189
Ben Widawsky654c90c2014-01-30 00:19:36 -08001190 /* 2: Registers which belong to multiple generations */
1191 if (INTEL_INFO(dev)->gen >= 7)
1192 error->forcewake = I915_READ(FORCEWAKE_MT);
1193
1194 if (INTEL_INFO(dev)->gen >= 6) {
1195 error->derrmr = I915_READ(DERRMR);
1196 error->error = I915_READ(ERROR_GEN6);
1197 error->done_reg = I915_READ(DONE_REG);
1198 }
1199
1200 /* 3: Feature specific registers */
Ben Widawsky91ec5d12014-01-30 00:19:39 -08001201 if (IS_GEN6(dev) || IS_GEN7(dev)) {
1202 error->gam_ecochk = I915_READ(GAM_ECOCHK);
1203 error->gac_eco = I915_READ(GAC_ECO_BITS);
1204 }
1205
1206 /* 4: Everything else */
Mika Kuoppala84734a02013-07-12 16:50:57 +03001207 if (HAS_HW_CONTEXTS(dev))
1208 error->ccid = I915_READ(CCID);
1209
Rodrigo Vivi885ea5a2014-08-05 10:07:13 -07001210 if (INTEL_INFO(dev)->gen >= 8) {
1211 error->ier = I915_READ(GEN8_DE_MISC_IER);
1212 for (i = 0; i < 4; i++)
1213 error->gtier[i] = I915_READ(GEN8_GT_IER(i));
1214 } else if (HAS_PCH_SPLIT(dev)) {
Rodrigo Vivi843db712014-08-01 09:12:27 -07001215 error->ier = I915_READ(DEIER);
Rodrigo Vivi885ea5a2014-08-05 10:07:13 -07001216 error->gtier[0] = I915_READ(GTIER);
Rodrigo Vivi843db712014-08-01 09:12:27 -07001217 } else if (IS_GEN2(dev)) {
1218 error->ier = I915_READ16(IER);
1219 } else if (!IS_VALLEYVIEW(dev)) {
1220 error->ier = I915_READ(IER);
Mika Kuoppala84734a02013-07-12 16:50:57 +03001221 }
Ben Widawsky654c90c2014-01-30 00:19:36 -08001222 error->eir = I915_READ(EIR);
1223 error->pgtbl_er = I915_READ(PGTBL_ER);
Mika Kuoppala84734a02013-07-12 16:50:57 +03001224
1225 i915_get_extra_instdone(dev, error->extra_instdone);
Ben Widawsky1d762aa2014-01-30 00:19:35 -08001226}
Mika Kuoppala84734a02013-07-12 16:50:57 +03001227
Mika Kuoppalacb383002014-02-25 17:11:25 +02001228static void i915_error_capture_msg(struct drm_device *dev,
Mika Kuoppala58174462014-02-25 17:11:26 +02001229 struct drm_i915_error_state *error,
1230 bool wedged,
1231 const char *error_msg)
Mika Kuoppalacb383002014-02-25 17:11:25 +02001232{
1233 struct drm_i915_private *dev_priv = dev->dev_private;
1234 u32 ecode;
Mika Kuoppala58174462014-02-25 17:11:26 +02001235 int ring_id = -1, len;
Mika Kuoppalacb383002014-02-25 17:11:25 +02001236
1237 ecode = i915_error_generate_code(dev_priv, error, &ring_id);
1238
Mika Kuoppala58174462014-02-25 17:11:26 +02001239 len = scnprintf(error->error_msg, sizeof(error->error_msg),
Mika Kuoppala0b5492d2014-11-06 13:03:46 +02001240 "GPU HANG: ecode %d:%d:0x%08x",
1241 INTEL_INFO(dev)->gen, ring_id, ecode);
Mika Kuoppala58174462014-02-25 17:11:26 +02001242
1243 if (ring_id != -1 && error->ring[ring_id].pid != -1)
1244 len += scnprintf(error->error_msg + len,
1245 sizeof(error->error_msg) - len,
1246 ", in %s [%d]",
1247 error->ring[ring_id].comm,
1248 error->ring[ring_id].pid);
1249
1250 scnprintf(error->error_msg + len, sizeof(error->error_msg) - len,
1251 ", reason: %s, action: %s",
1252 error_msg,
1253 wedged ? "reset" : "continue");
Mika Kuoppalacb383002014-02-25 17:11:25 +02001254}
1255
Mika Kuoppala48b031e2014-02-25 17:11:27 +02001256static void i915_capture_gen_state(struct drm_i915_private *dev_priv,
1257 struct drm_i915_error_state *error)
1258{
1259 error->reset_count = i915_reset_count(&dev_priv->gpu_error);
Mika Kuoppala62d5d692014-02-25 17:11:28 +02001260 error->suspend_count = dev_priv->suspend_count;
Mika Kuoppala48b031e2014-02-25 17:11:27 +02001261}
1262
Ben Widawsky1d762aa2014-01-30 00:19:35 -08001263/**
1264 * i915_capture_error_state - capture an error record for later analysis
1265 * @dev: drm device
1266 *
1267 * Should be called when an error is detected (either a hang or an error
1268 * interrupt) to capture error state from the time of the error. Fills
1269 * out a structure which becomes available in debugfs for user level tools
1270 * to pick up.
1271 */
Mika Kuoppala58174462014-02-25 17:11:26 +02001272void i915_capture_error_state(struct drm_device *dev, bool wedged,
1273 const char *error_msg)
Ben Widawsky1d762aa2014-01-30 00:19:35 -08001274{
Chris Wilson53a4c6b2014-01-30 14:38:15 +00001275 static bool warned;
Ben Widawsky1d762aa2014-01-30 00:19:35 -08001276 struct drm_i915_private *dev_priv = dev->dev_private;
1277 struct drm_i915_error_state *error;
1278 unsigned long flags;
Ben Widawsky1d762aa2014-01-30 00:19:35 -08001279
1280 /* Account for pipe specific data like PIPE*STAT */
1281 error = kzalloc(sizeof(*error), GFP_ATOMIC);
1282 if (!error) {
1283 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
1284 return;
1285 }
1286
Ben Widawsky1d762aa2014-01-30 00:19:35 -08001287 kref_init(&error->ref);
1288
Mika Kuoppala48b031e2014-02-25 17:11:27 +02001289 i915_capture_gen_state(dev_priv, error);
Ben Widawsky1d762aa2014-01-30 00:19:35 -08001290 i915_capture_reg_state(dev_priv, error);
Mika Kuoppala84734a02013-07-12 16:50:57 +03001291 i915_gem_capture_buffers(dev_priv, error);
1292 i915_gem_record_fences(dev, error);
1293 i915_gem_record_rings(dev, error);
1294
1295 do_gettimeofday(&error->time);
1296
1297 error->overlay = intel_overlay_capture_error_state(dev);
1298 error->display = intel_display_capture_error_state(dev);
1299
Mika Kuoppala58174462014-02-25 17:11:26 +02001300 i915_error_capture_msg(dev, error, wedged, error_msg);
Mika Kuoppalacb383002014-02-25 17:11:25 +02001301 DRM_INFO("%s\n", error->error_msg);
1302
Mika Kuoppala84734a02013-07-12 16:50:57 +03001303 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1304 if (dev_priv->gpu_error.first_error == NULL) {
1305 dev_priv->gpu_error.first_error = error;
1306 error = NULL;
1307 }
1308 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
1309
Mika Kuoppalacb383002014-02-25 17:11:25 +02001310 if (error) {
Mika Kuoppala84734a02013-07-12 16:50:57 +03001311 i915_error_state_free(&error->ref);
Mika Kuoppalacb383002014-02-25 17:11:25 +02001312 return;
1313 }
1314
1315 if (!warned) {
1316 DRM_INFO("GPU hangs can indicate a bug anywhere in the entire gfx stack, including userspace.\n");
1317 DRM_INFO("Please file a _new_ bug report on bugs.freedesktop.org against DRI -> DRM/Intel\n");
1318 DRM_INFO("drm/i915 developers can then reassign to the right component if it's not a kernel issue.\n");
1319 DRM_INFO("The gpu crash dump is required to analyze gpu hangs, so please always attach it.\n");
1320 DRM_INFO("GPU crash dump saved to /sys/class/drm/card%d/error\n", dev->primary->index);
1321 warned = true;
1322 }
Mika Kuoppala84734a02013-07-12 16:50:57 +03001323}
1324
1325void i915_error_state_get(struct drm_device *dev,
1326 struct i915_error_state_file_priv *error_priv)
1327{
1328 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala84734a02013-07-12 16:50:57 +03001329
Daniel Vetter5b254c52014-09-15 14:55:24 +02001330 spin_lock_irq(&dev_priv->gpu_error.lock);
Mika Kuoppala84734a02013-07-12 16:50:57 +03001331 error_priv->error = dev_priv->gpu_error.first_error;
1332 if (error_priv->error)
1333 kref_get(&error_priv->error->ref);
Daniel Vetter5b254c52014-09-15 14:55:24 +02001334 spin_unlock_irq(&dev_priv->gpu_error.lock);
Mika Kuoppala84734a02013-07-12 16:50:57 +03001335
1336}
1337
1338void i915_error_state_put(struct i915_error_state_file_priv *error_priv)
1339{
1340 if (error_priv->error)
1341 kref_put(&error_priv->error->ref, i915_error_state_free);
1342}
1343
1344void i915_destroy_error_state(struct drm_device *dev)
1345{
1346 struct drm_i915_private *dev_priv = dev->dev_private;
1347 struct drm_i915_error_state *error;
Mika Kuoppala84734a02013-07-12 16:50:57 +03001348
Daniel Vetter5b254c52014-09-15 14:55:24 +02001349 spin_lock_irq(&dev_priv->gpu_error.lock);
Mika Kuoppala84734a02013-07-12 16:50:57 +03001350 error = dev_priv->gpu_error.first_error;
1351 dev_priv->gpu_error.first_error = NULL;
Daniel Vetter5b254c52014-09-15 14:55:24 +02001352 spin_unlock_irq(&dev_priv->gpu_error.lock);
Mika Kuoppala84734a02013-07-12 16:50:57 +03001353
1354 if (error)
1355 kref_put(&error->ref, i915_error_state_free);
1356}
1357
Chris Wilson0a4cd7c2014-08-22 14:41:39 +01001358const char *i915_cache_level_str(struct drm_i915_private *i915, int type)
Mika Kuoppala84734a02013-07-12 16:50:57 +03001359{
1360 switch (type) {
1361 case I915_CACHE_NONE: return " uncached";
Chris Wilson0a4cd7c2014-08-22 14:41:39 +01001362 case I915_CACHE_LLC: return HAS_LLC(i915) ? " LLC" : " snooped";
Chris Wilson350ec882013-08-06 13:17:02 +01001363 case I915_CACHE_L3_LLC: return " L3+LLC";
Chris Wilsonf56383c2013-09-25 10:23:19 +01001364 case I915_CACHE_WT: return " WT";
Mika Kuoppala84734a02013-07-12 16:50:57 +03001365 default: return "";
1366 }
1367}
1368
1369/* NB: please notice the memset */
1370void i915_get_extra_instdone(struct drm_device *dev, uint32_t *instdone)
1371{
1372 struct drm_i915_private *dev_priv = dev->dev_private;
1373 memset(instdone, 0, sizeof(*instdone) * I915_NUM_INSTDONE_REG);
1374
Rodrigo Vivi563f94f2014-12-03 04:55:28 -08001375 if (IS_GEN2(dev) || IS_GEN3(dev))
Mika Kuoppala84734a02013-07-12 16:50:57 +03001376 instdone[0] = I915_READ(INSTDONE);
Rodrigo Vivi563f94f2014-12-03 04:55:28 -08001377 else if (IS_GEN4(dev) || IS_GEN5(dev) || IS_GEN6(dev)) {
Mika Kuoppala84734a02013-07-12 16:50:57 +03001378 instdone[0] = I915_READ(INSTDONE_I965);
1379 instdone[1] = I915_READ(INSTDONE1);
Rodrigo Vivi563f94f2014-12-03 04:55:28 -08001380 } else if (INTEL_INFO(dev)->gen >= 7) {
Mika Kuoppala84734a02013-07-12 16:50:57 +03001381 instdone[0] = I915_READ(GEN7_INSTDONE_1);
1382 instdone[1] = I915_READ(GEN7_SC_INSTDONE);
1383 instdone[2] = I915_READ(GEN7_SAMPLER_INSTDONE);
1384 instdone[3] = I915_READ(GEN7_ROW_INSTDONE);
Mika Kuoppala84734a02013-07-12 16:50:57 +03001385 }
1386}