i915_debugfs.c 62.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/*
 * Copyright © 2008 Intel Corporation
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 * IN THE SOFTWARE.
 *
 * Authors:
 *    Eric Anholt <eric@anholt.net>
 *    Keith Packard <keithp@keithp.com>
 *
 */

#include <linux/seq_file.h>
30
#include <linux/debugfs.h>
31
#include <linux/slab.h>
32
#include <linux/export.h>
33
#include <generated/utsrelease.h>
34
#include <drm/drmP.h>
35
#include "intel_drv.h"
36
#include "intel_ringbuffer.h"
37
#include <drm/i915_drm.h>
38 39 40 41 42 43 44
#include "i915_drv.h"

#define DRM_I915_RING_DEBUG 1


#if defined(CONFIG_DEBUG_FS)

C
Chris Wilson 已提交
45
enum {
46
	ACTIVE_LIST,
C
Chris Wilson 已提交
47
	INACTIVE_LIST,
48
	PINNED_LIST,
C
Chris Wilson 已提交
49
};
50

51 52 53 54 55 56 57 58 59 60 61 62
static const char *yesno(int v)
{
	return v ? "yes" : "no";
}

static int i915_capabilities(struct seq_file *m, void *data)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	const struct intel_device_info *info = INTEL_INFO(dev);

	seq_printf(m, "gen: %d\n", info->gen);
63
	seq_printf(m, "pch: %d\n", INTEL_PCH_TYPE(dev));
64 65 66 67 68
#define PRINT_FLAG(x)  seq_printf(m, #x ": %s\n", yesno(info->x))
#define SEP_SEMICOLON ;
	DEV_INFO_FOR_EACH_FLAG(PRINT_FLAG, SEP_SEMICOLON);
#undef PRINT_FLAG
#undef SEP_SEMICOLON
69 70 71

	return 0;
}
72

73
static const char *get_pin_flag(struct drm_i915_gem_object *obj)
74
{
75
	if (obj->user_pin_count > 0)
76
		return "P";
77
	else if (obj->pin_count > 0)
78 79 80 81 82
		return "p";
	else
		return " ";
}

83
static const char *get_tiling_flag(struct drm_i915_gem_object *obj)
84
{
85 86 87 88 89 90
	switch (obj->tiling_mode) {
	default:
	case I915_TILING_NONE: return " ";
	case I915_TILING_X: return "X";
	case I915_TILING_Y: return "Y";
	}
91 92
}

93
static const char *cache_level_str(int type)
94 95
{
	switch (type) {
96 97 98
	case I915_CACHE_NONE: return " uncached";
	case I915_CACHE_LLC: return " snooped (LLC)";
	case I915_CACHE_LLC_MLC: return " snooped (LLC+MLC)";
99 100 101 102
	default: return "";
	}
}

103 104 105
static void
describe_obj(struct seq_file *m, struct drm_i915_gem_object *obj)
{
106
	seq_printf(m, "%pK: %s%s %8zdKiB %02x %02x %d %d %d%s%s%s",
107 108 109
		   &obj->base,
		   get_pin_flag(obj),
		   get_tiling_flag(obj),
110
		   obj->base.size / 1024,
111 112
		   obj->base.read_domains,
		   obj->base.write_domain,
113 114
		   obj->last_read_seqno,
		   obj->last_write_seqno,
115
		   obj->last_fenced_seqno,
116
		   cache_level_str(obj->cache_level),
117 118 119 120
		   obj->dirty ? " dirty" : "",
		   obj->madv == I915_MADV_DONTNEED ? " purgeable" : "");
	if (obj->base.name)
		seq_printf(m, " (name: %d)", obj->base.name);
121 122
	if (obj->pin_count)
		seq_printf(m, " (pinned x %d)", obj->pin_count);
123 124 125
	if (obj->fence_reg != I915_FENCE_REG_NONE)
		seq_printf(m, " (fence: %d)", obj->fence_reg);
	if (obj->gtt_space != NULL)
126 127
		seq_printf(m, " (gtt offset: %08x, size: %08x)",
			   obj->gtt_offset, (unsigned int)obj->gtt_space->size);
128 129
	if (obj->stolen)
		seq_printf(m, " (stolen: %08lx)", obj->stolen->start);
130 131 132 133 134 135 136 137 138
	if (obj->pin_mappable || obj->fault_mappable) {
		char s[3], *t = s;
		if (obj->pin_mappable)
			*t++ = 'p';
		if (obj->fault_mappable)
			*t++ = 'f';
		*t = '\0';
		seq_printf(m, " (%s mappable)", s);
	}
139 140
	if (obj->ring != NULL)
		seq_printf(m, " (%s)", obj->ring->name);
141 142
}

143
static int i915_gem_object_list_info(struct seq_file *m, void *data)
144 145
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
146 147
	uintptr_t list = (uintptr_t) node->info_ent->data;
	struct list_head *head;
148 149
	struct drm_device *dev = node->minor->dev;
	drm_i915_private_t *dev_priv = dev->dev_private;
150
	struct drm_i915_gem_object *obj;
151 152
	size_t total_obj_size, total_gtt_size;
	int count, ret;
153 154 155 156

	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;
157

158 159 160
	switch (list) {
	case ACTIVE_LIST:
		seq_printf(m, "Active:\n");
161
		head = &dev_priv->mm.active_list;
162 163
		break;
	case INACTIVE_LIST:
164
		seq_printf(m, "Inactive:\n");
165 166 167
		head = &dev_priv->mm.inactive_list;
		break;
	default:
168 169
		mutex_unlock(&dev->struct_mutex);
		return -EINVAL;
170 171
	}

172
	total_obj_size = total_gtt_size = count = 0;
173
	list_for_each_entry(obj, head, mm_list) {
174
		seq_printf(m, "   ");
175
		describe_obj(m, obj);
176
		seq_printf(m, "\n");
177 178
		total_obj_size += obj->base.size;
		total_gtt_size += obj->gtt_space->size;
179
		count++;
180
	}
181
	mutex_unlock(&dev->struct_mutex);
182

183 184
	seq_printf(m, "Total %d objects, %zu bytes, %zu GTT size\n",
		   count, total_obj_size, total_gtt_size);
185 186 187
	return 0;
}

188 189 190 191 192 193 194 195 196
#define count_objects(list, member) do { \
	list_for_each_entry(obj, list, member) { \
		size += obj->gtt_space->size; \
		++count; \
		if (obj->map_and_fenceable) { \
			mappable_size += obj->gtt_space->size; \
			++mappable_count; \
		} \
	} \
197
} while (0)
198

199 200 201 202 203
static int i915_gem_object_info(struct seq_file *m, void* data)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
204 205
	u32 count, mappable_count, purgeable_count;
	size_t size, mappable_size, purgeable_size;
206
	struct drm_i915_gem_object *obj;
207 208 209 210 211 212
	int ret;

	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;

213 214 215 216 217
	seq_printf(m, "%u objects, %zu bytes\n",
		   dev_priv->mm.object_count,
		   dev_priv->mm.object_memory);

	size = count = mappable_size = mappable_count = 0;
218
	count_objects(&dev_priv->mm.bound_list, global_list);
219 220 221 222 223 224 225 226 227 228 229 230 231
	seq_printf(m, "%u [%u] objects, %zu [%zu] bytes in gtt\n",
		   count, mappable_count, size, mappable_size);

	size = count = mappable_size = mappable_count = 0;
	count_objects(&dev_priv->mm.active_list, mm_list);
	seq_printf(m, "  %u [%u] active objects, %zu [%zu] bytes\n",
		   count, mappable_count, size, mappable_size);

	size = count = mappable_size = mappable_count = 0;
	count_objects(&dev_priv->mm.inactive_list, mm_list);
	seq_printf(m, "  %u [%u] inactive objects, %zu [%zu] bytes\n",
		   count, mappable_count, size, mappable_size);

232
	size = count = purgeable_size = purgeable_count = 0;
233
	list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
C
Chris Wilson 已提交
234
		size += obj->base.size, ++count;
235 236 237
		if (obj->madv == I915_MADV_DONTNEED)
			purgeable_size += obj->base.size, ++purgeable_count;
	}
C
Chris Wilson 已提交
238 239
	seq_printf(m, "%u unbound objects, %zu bytes\n", count, size);

240
	size = count = mappable_size = mappable_count = 0;
241
	list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
242 243 244 245 246 247 248 249
		if (obj->fault_mappable) {
			size += obj->gtt_space->size;
			++count;
		}
		if (obj->pin_mappable) {
			mappable_size += obj->gtt_space->size;
			++mappable_count;
		}
250 251 252 253
		if (obj->madv == I915_MADV_DONTNEED) {
			purgeable_size += obj->base.size;
			++purgeable_count;
		}
254
	}
255 256
	seq_printf(m, "%u purgeable objects, %zu bytes\n",
		   purgeable_count, purgeable_size);
257 258 259 260 261
	seq_printf(m, "%u pinned mappable objects, %zu bytes\n",
		   mappable_count, mappable_size);
	seq_printf(m, "%u fault mappable objects, %zu bytes\n",
		   count, size);

262
	seq_printf(m, "%zu [%lu] gtt total\n",
B
Ben Widawsky 已提交
263 264
		   dev_priv->gtt.total,
		   dev_priv->gtt.mappable_end - dev_priv->gtt.start);
265 266 267 268 269 270

	mutex_unlock(&dev->struct_mutex);

	return 0;
}

271 272 273 274
static int i915_gem_gtt_info(struct seq_file *m, void* data)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
275
	uintptr_t list = (uintptr_t) node->info_ent->data;
276 277 278 279 280 281 282 283 284 285
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct drm_i915_gem_object *obj;
	size_t total_obj_size, total_gtt_size;
	int count, ret;

	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;

	total_obj_size = total_gtt_size = count = 0;
286
	list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
287 288 289
		if (list == PINNED_LIST && obj->pin_count == 0)
			continue;

290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
		seq_printf(m, "   ");
		describe_obj(m, obj);
		seq_printf(m, "\n");
		total_obj_size += obj->base.size;
		total_gtt_size += obj->gtt_space->size;
		count++;
	}

	mutex_unlock(&dev->struct_mutex);

	seq_printf(m, "Total %d objects, %zu bytes, %zu GTT size\n",
		   count, total_obj_size, total_gtt_size);

	return 0;
}

306 307 308 309 310 311 312 313
static int i915_gem_pageflip_info(struct seq_file *m, void *data)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	unsigned long flags;
	struct intel_crtc *crtc;

	list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) {
314 315
		const char pipe = pipe_name(crtc->pipe);
		const char plane = plane_name(crtc->plane);
316 317 318 319 320
		struct intel_unpin_work *work;

		spin_lock_irqsave(&dev->event_lock, flags);
		work = crtc->unpin_work;
		if (work == NULL) {
321
			seq_printf(m, "No flip due on pipe %c (plane %c)\n",
322 323
				   pipe, plane);
		} else {
324
			if (atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
325
				seq_printf(m, "Flip queued on pipe %c (plane %c)\n",
326 327
					   pipe, plane);
			} else {
328
				seq_printf(m, "Flip pending (waiting for vsync) on pipe %c (plane %c)\n",
329 330 331 332 333 334
					   pipe, plane);
			}
			if (work->enable_stall_check)
				seq_printf(m, "Stall check enabled, ");
			else
				seq_printf(m, "Stall check waiting for page flip ioctl, ");
335
			seq_printf(m, "%d prepares\n", atomic_read(&work->pending));
336 337

			if (work->old_fb_obj) {
338 339 340
				struct drm_i915_gem_object *obj = work->old_fb_obj;
				if (obj)
					seq_printf(m, "Old framebuffer gtt_offset 0x%08x\n", obj->gtt_offset);
341 342
			}
			if (work->pending_flip_obj) {
343 344 345
				struct drm_i915_gem_object *obj = work->pending_flip_obj;
				if (obj)
					seq_printf(m, "New framebuffer gtt_offset 0x%08x\n", obj->gtt_offset);
346 347 348 349 350 351 352 353
			}
		}
		spin_unlock_irqrestore(&dev->event_lock, flags);
	}

	return 0;
}

354 355 356 357 358
static int i915_gem_request_info(struct seq_file *m, void *data)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	drm_i915_private_t *dev_priv = dev->dev_private;
359
	struct intel_ring_buffer *ring;
360
	struct drm_i915_gem_request *gem_request;
361
	int ret, count, i;
362 363 364 365

	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;
366

367
	count = 0;
368 369 370 371 372
	for_each_ring(ring, dev_priv, i) {
		if (list_empty(&ring->request_list))
			continue;

		seq_printf(m, "%s requests:\n", ring->name);
373
		list_for_each_entry(gem_request,
374
				    &ring->request_list,
375 376 377 378 379 380
				    list) {
			seq_printf(m, "    %d @ %d\n",
				   gem_request->seqno,
				   (int) (jiffies - gem_request->emitted_jiffies));
		}
		count++;
381
	}
382 383
	mutex_unlock(&dev->struct_mutex);

384 385 386
	if (count == 0)
		seq_printf(m, "No requests\n");

387 388 389
	return 0;
}

390 391 392 393
static void i915_ring_seqno_info(struct seq_file *m,
				 struct intel_ring_buffer *ring)
{
	if (ring->get_seqno) {
394
		seq_printf(m, "Current sequence (%s): %u\n",
395
			   ring->name, ring->get_seqno(ring, false));
396 397 398
	}
}

399 400 401 402 403
static int i915_gem_seqno_info(struct seq_file *m, void *data)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	drm_i915_private_t *dev_priv = dev->dev_private;
404
	struct intel_ring_buffer *ring;
405
	int ret, i;
406 407 408 409

	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;
410

411 412
	for_each_ring(ring, dev_priv, i)
		i915_ring_seqno_info(m, ring);
413 414 415

	mutex_unlock(&dev->struct_mutex);

416 417 418 419 420 421 422 423 424
	return 0;
}


static int i915_interrupt_info(struct seq_file *m, void *data)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	drm_i915_private_t *dev_priv = dev->dev_private;
425
	struct intel_ring_buffer *ring;
426
	int ret, i, pipe;
427 428 429 430

	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;
431

J
Jesse Barnes 已提交
432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
	if (IS_VALLEYVIEW(dev)) {
		seq_printf(m, "Display IER:\t%08x\n",
			   I915_READ(VLV_IER));
		seq_printf(m, "Display IIR:\t%08x\n",
			   I915_READ(VLV_IIR));
		seq_printf(m, "Display IIR_RW:\t%08x\n",
			   I915_READ(VLV_IIR_RW));
		seq_printf(m, "Display IMR:\t%08x\n",
			   I915_READ(VLV_IMR));
		for_each_pipe(pipe)
			seq_printf(m, "Pipe %c stat:\t%08x\n",
				   pipe_name(pipe),
				   I915_READ(PIPESTAT(pipe)));

		seq_printf(m, "Master IER:\t%08x\n",
			   I915_READ(VLV_MASTER_IER));

		seq_printf(m, "Render IER:\t%08x\n",
			   I915_READ(GTIER));
		seq_printf(m, "Render IIR:\t%08x\n",
			   I915_READ(GTIIR));
		seq_printf(m, "Render IMR:\t%08x\n",
			   I915_READ(GTIMR));

		seq_printf(m, "PM IER:\t\t%08x\n",
			   I915_READ(GEN6_PMIER));
		seq_printf(m, "PM IIR:\t\t%08x\n",
			   I915_READ(GEN6_PMIIR));
		seq_printf(m, "PM IMR:\t\t%08x\n",
			   I915_READ(GEN6_PMIMR));

		seq_printf(m, "Port hotplug:\t%08x\n",
			   I915_READ(PORT_HOTPLUG_EN));
		seq_printf(m, "DPFLIPSTAT:\t%08x\n",
			   I915_READ(VLV_DPFLIPSTAT));
		seq_printf(m, "DPINVGTT:\t%08x\n",
			   I915_READ(DPINVGTT));

	} else if (!HAS_PCH_SPLIT(dev)) {
471 472 473 474 475 476
		seq_printf(m, "Interrupt enable:    %08x\n",
			   I915_READ(IER));
		seq_printf(m, "Interrupt identity:  %08x\n",
			   I915_READ(IIR));
		seq_printf(m, "Interrupt mask:      %08x\n",
			   I915_READ(IMR));
477 478 479 480
		for_each_pipe(pipe)
			seq_printf(m, "Pipe %c stat:         %08x\n",
				   pipe_name(pipe),
				   I915_READ(PIPESTAT(pipe)));
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
	} else {
		seq_printf(m, "North Display Interrupt enable:		%08x\n",
			   I915_READ(DEIER));
		seq_printf(m, "North Display Interrupt identity:	%08x\n",
			   I915_READ(DEIIR));
		seq_printf(m, "North Display Interrupt mask:		%08x\n",
			   I915_READ(DEIMR));
		seq_printf(m, "South Display Interrupt enable:		%08x\n",
			   I915_READ(SDEIER));
		seq_printf(m, "South Display Interrupt identity:	%08x\n",
			   I915_READ(SDEIIR));
		seq_printf(m, "South Display Interrupt mask:		%08x\n",
			   I915_READ(SDEIMR));
		seq_printf(m, "Graphics Interrupt enable:		%08x\n",
			   I915_READ(GTIER));
		seq_printf(m, "Graphics Interrupt identity:		%08x\n",
			   I915_READ(GTIIR));
		seq_printf(m, "Graphics Interrupt mask:		%08x\n",
			   I915_READ(GTIMR));
	}
501 502
	seq_printf(m, "Interrupts received: %d\n",
		   atomic_read(&dev_priv->irq_received));
503
	for_each_ring(ring, dev_priv, i) {
504
		if (IS_GEN6(dev) || IS_GEN7(dev)) {
505 506 507
			seq_printf(m,
				   "Graphics Interrupt mask (%s):	%08x\n",
				   ring->name, I915_READ_IMR(ring));
508
		}
509
		i915_ring_seqno_info(m, ring);
510
	}
511 512
	mutex_unlock(&dev->struct_mutex);

513 514 515
	return 0;
}

516 517 518 519 520
static int i915_gem_fence_regs_info(struct seq_file *m, void *data)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	drm_i915_private_t *dev_priv = dev->dev_private;
521 522 523 524 525
	int i, ret;

	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;
526 527 528 529

	seq_printf(m, "Reserved fences = %d\n", dev_priv->fence_reg_start);
	seq_printf(m, "Total fences = %d\n", dev_priv->num_fence_regs);
	for (i = 0; i < dev_priv->num_fence_regs; i++) {
530
		struct drm_i915_gem_object *obj = dev_priv->fence_regs[i].obj;
531

C
Chris Wilson 已提交
532 533
		seq_printf(m, "Fence %d, pin count = %d, object = ",
			   i, dev_priv->fence_regs[i].pin_count);
534 535 536
		if (obj == NULL)
			seq_printf(m, "unused");
		else
537
			describe_obj(m, obj);
538
		seq_printf(m, "\n");
539 540
	}

541
	mutex_unlock(&dev->struct_mutex);
542 543 544
	return 0;
}

545 546 547 548 549
static int i915_hws_info(struct seq_file *m, void *data)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	drm_i915_private_t *dev_priv = dev->dev_private;
550
	struct intel_ring_buffer *ring;
D
Daniel Vetter 已提交
551
	const u32 *hws;
552 553
	int i;

554
	ring = &dev_priv->ring[(uintptr_t)node->info_ent->data];
D
Daniel Vetter 已提交
555
	hws = ring->status_page.page_addr;
556 557 558 559 560 561 562 563 564 565 566
	if (hws == NULL)
		return 0;

	for (i = 0; i < 4096 / sizeof(u32) / 4; i += 4) {
		seq_printf(m, "0x%08x: 0x%08x 0x%08x 0x%08x 0x%08x\n",
			   i * 4,
			   hws[i], hws[i + 1], hws[i + 2], hws[i + 3]);
	}
	return 0;
}

567 568 569
static const char *ring_str(int ring)
{
	switch (ring) {
570 571 572
	case RCS: return "render";
	case VCS: return "bsd";
	case BCS: return "blt";
X
Xiang, Haihao 已提交
573
	case VECS: return "vebox";
574 575 576 577
	default: return "";
	}
}

578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607
static const char *pin_flag(int pinned)
{
	if (pinned > 0)
		return " P";
	else if (pinned < 0)
		return " p";
	else
		return "";
}

static const char *tiling_flag(int tiling)
{
	switch (tiling) {
	default:
	case I915_TILING_NONE: return "";
	case I915_TILING_X: return " X";
	case I915_TILING_Y: return " Y";
	}
}

static const char *dirty_flag(int dirty)
{
	return dirty ? " dirty" : "";
}

static const char *purgeable_flag(int purgeable)
{
	return purgeable ? " purgeable" : "";
}

608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673
static void i915_error_vprintf(struct drm_i915_error_state_buf *e,
			       const char *f, va_list args)
{
	unsigned len;

	if (!e->err && WARN(e->bytes > (e->size - 1), "overflow")) {
		e->err = -ENOSPC;
		return;
	}

	if (e->bytes == e->size - 1 || e->err)
		return;

	/* Seek the first printf which is hits start position */
	if (e->pos < e->start) {
		len = vsnprintf(NULL, 0, f, args);
		if (e->pos + len <= e->start) {
			e->pos += len;
			return;
		}

		/* First vsnprintf needs to fit in full for memmove*/
		if (len >= e->size) {
			e->err = -EIO;
			return;
		}
	}

	len = vsnprintf(e->buf + e->bytes, e->size - e->bytes, f, args);
	if (len >= e->size - e->bytes)
		len = e->size - e->bytes - 1;

	/* If this is first printf in this window, adjust it so that
	 * start position matches start of the buffer
	 */
	if (e->pos < e->start) {
		const size_t off = e->start - e->pos;

		/* Should not happen but be paranoid */
		if (off > len || e->bytes) {
			e->err = -EIO;
			return;
		}

		memmove(e->buf, e->buf + off, len - off);
		e->bytes = len - off;
		e->pos = e->start;
		return;
	}

	e->bytes += len;
	e->pos += len;
}

void i915_error_printf(struct drm_i915_error_state_buf *e, const char *f, ...)
{
	va_list args;

	va_start(args, f);
	i915_error_vprintf(e, f, args);
	va_end(args);
}

#define err_printf(e, ...) i915_error_printf(e, __VA_ARGS__)

static void print_error_buffers(struct drm_i915_error_state_buf *m,
674 675 676 677
				const char *name,
				struct drm_i915_error_buffer *err,
				int count)
{
678
	err_printf(m, "%s [%d]:\n", name, count);
679 680

	while (count--) {
681
		err_printf(m, "  %08x %8u %02x %02x %x %x%s%s%s%s%s%s%s",
682 683 684 685
			   err->gtt_offset,
			   err->size,
			   err->read_domains,
			   err->write_domain,
686
			   err->rseqno, err->wseqno,
687 688 689 690
			   pin_flag(err->pinned),
			   tiling_flag(err->tiling),
			   dirty_flag(err->dirty),
			   purgeable_flag(err->purgeable),
691
			   err->ring != -1 ? " " : "",
692
			   ring_str(err->ring),
693
			   cache_level_str(err->cache_level));
694 695

		if (err->name)
696
			err_printf(m, " (name: %d)", err->name);
697
		if (err->fence_reg != I915_FENCE_REG_NONE)
698
			err_printf(m, " (fence: %d)", err->fence_reg);
699

700
		err_printf(m, "\n");
701 702 703 704
		err++;
	}
}

705
static void i915_ring_error_state(struct drm_i915_error_state_buf *m,
706 707 708 709
				  struct drm_device *dev,
				  struct drm_i915_error_state *error,
				  unsigned ring)
{
710
	BUG_ON(ring >= I915_NUM_RINGS); /* shut up confused gcc */
711 712 713 714 715 716 717 718
	err_printf(m, "%s command stream:\n", ring_str(ring));
	err_printf(m, "  HEAD: 0x%08x\n", error->head[ring]);
	err_printf(m, "  TAIL: 0x%08x\n", error->tail[ring]);
	err_printf(m, "  CTL: 0x%08x\n", error->ctl[ring]);
	err_printf(m, "  ACTHD: 0x%08x\n", error->acthd[ring]);
	err_printf(m, "  IPEIR: 0x%08x\n", error->ipeir[ring]);
	err_printf(m, "  IPEHR: 0x%08x\n", error->ipehr[ring]);
	err_printf(m, "  INSTDONE: 0x%08x\n", error->instdone[ring]);
719
	if (ring == RCS && INTEL_INFO(dev)->gen >= 4)
720
		err_printf(m, "  BBADDR: 0x%08llx\n", error->bbaddr);
721

722
	if (INTEL_INFO(dev)->gen >= 4)
723 724 725
		err_printf(m, "  INSTPS: 0x%08x\n", error->instps[ring]);
	err_printf(m, "  INSTPM: 0x%08x\n", error->instpm[ring]);
	err_printf(m, "  FADDR: 0x%08x\n", error->faddr[ring]);
726
	if (INTEL_INFO(dev)->gen >= 6) {
727 728 729
		err_printf(m, "  RC PSMI: 0x%08x\n", error->rc_psmi[ring]);
		err_printf(m, "  FAULT_REG: 0x%08x\n", error->fault_reg[ring]);
		err_printf(m, "  SYNC_0: 0x%08x [last synced 0x%08x]\n",
730 731
			   error->semaphore_mboxes[ring][0],
			   error->semaphore_seqno[ring][0]);
732
		err_printf(m, "  SYNC_1: 0x%08x [last synced 0x%08x]\n",
733 734
			   error->semaphore_mboxes[ring][1],
			   error->semaphore_seqno[ring][1]);
735
	}
736 737 738 739
	err_printf(m, "  seqno: 0x%08x\n", error->seqno[ring]);
	err_printf(m, "  waiting: %s\n", yesno(error->waiting[ring]));
	err_printf(m, "  ring->head: 0x%08x\n", error->cpu_ring_head[ring]);
	err_printf(m, "  ring->tail: 0x%08x\n", error->cpu_ring_tail[ring]);
740 741
}

742 743 744 745 746
struct i915_error_state_file_priv {
	struct drm_device *dev;
	struct drm_i915_error_state *error;
};

747 748 749 750

static int i915_error_state(struct i915_error_state_file_priv *error_priv,
			    struct drm_i915_error_state_buf *m)

751
{
752
	struct drm_device *dev = error_priv->dev;
753
	drm_i915_private_t *dev_priv = dev->dev_private;
754
	struct drm_i915_error_state *error = error_priv->error;
755
	struct intel_ring_buffer *ring;
756
	int i, j, page, offset, elt;
757

758
	if (!error) {
759
		err_printf(m, "no error state collected\n");
760
		return 0;
761 762
	}

763
	err_printf(m, "Time: %ld s %ld us\n", error->time.tv_sec,
764
		   error->time.tv_usec);
765 766 767 768 769 770 771 772
	err_printf(m, "Kernel: " UTS_RELEASE "\n");
	err_printf(m, "PCI ID: 0x%04x\n", dev->pci_device);
	err_printf(m, "EIR: 0x%08x\n", error->eir);
	err_printf(m, "IER: 0x%08x\n", error->ier);
	err_printf(m, "PGTBL_ER: 0x%08x\n", error->pgtbl_er);
	err_printf(m, "FORCEWAKE: 0x%08x\n", error->forcewake);
	err_printf(m, "DERRMR: 0x%08x\n", error->derrmr);
	err_printf(m, "CCID: 0x%08x\n", error->ccid);
773

774
	for (i = 0; i < dev_priv->num_fence_regs; i++)
775
		err_printf(m, "  fence[%d] = %08llx\n", i, error->fence[i]);
776

777
	for (i = 0; i < ARRAY_SIZE(error->extra_instdone); i++)
778 779
		err_printf(m, "  INSTDONE_%d: 0x%08x\n", i,
			   error->extra_instdone[i]);
780

781
	if (INTEL_INFO(dev)->gen >= 6) {
782 783
		err_printf(m, "ERROR: 0x%08x\n", error->error);
		err_printf(m, "DONE_REG: 0x%08x\n", error->done_reg);
784
	}
785

786
	if (INTEL_INFO(dev)->gen == 7)
787
		err_printf(m, "ERR_INT: 0x%08x\n", error->err_int);
788

789 790
	for_each_ring(ring, dev_priv, i)
		i915_ring_error_state(m, dev, error, i);
791

792 793 794 795 796 797 798 799 800
	if (error->active_bo)
		print_error_buffers(m, "Active",
				    error->active_bo,
				    error->active_bo_count);

	if (error->pinned_bo)
		print_error_buffers(m, "Pinned",
				    error->pinned_bo,
				    error->pinned_bo_count);
801

802 803
	for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
		struct drm_i915_error_object *obj;
804

805
		if ((obj = error->ring[i].batchbuffer)) {
806
			err_printf(m, "%s --- gtt_offset = 0x%08x\n",
807 808
				   dev_priv->ring[i].name,
				   obj->gtt_offset);
809 810 811
			offset = 0;
			for (page = 0; page < obj->page_count; page++) {
				for (elt = 0; elt < PAGE_SIZE/4; elt++) {
812 813
					err_printf(m, "%08x :  %08x\n", offset,
						   obj->pages[page][elt]);
814 815 816 817 818
					offset += 4;
				}
			}
		}

819
		if (error->ring[i].num_requests) {
820
			err_printf(m, "%s --- %d requests\n",
821 822 823
				   dev_priv->ring[i].name,
				   error->ring[i].num_requests);
			for (j = 0; j < error->ring[i].num_requests; j++) {
824
				err_printf(m, "  seqno 0x%08x, emitted %ld, tail 0x%08x\n",
825
					   error->ring[i].requests[j].seqno,
826 827
					   error->ring[i].requests[j].jiffies,
					   error->ring[i].requests[j].tail);
828 829 830 831
			}
		}

		if ((obj = error->ring[i].ringbuffer)) {
832
			err_printf(m, "%s --- ringbuffer = 0x%08x\n",
833 834 835 836 837
				   dev_priv->ring[i].name,
				   obj->gtt_offset);
			offset = 0;
			for (page = 0; page < obj->page_count; page++) {
				for (elt = 0; elt < PAGE_SIZE/4; elt++) {
838
					err_printf(m, "%08x :  %08x\n",
839 840 841 842
						   offset,
						   obj->pages[page][elt]);
					offset += 4;
				}
843 844
			}
		}
845 846 847

		obj = error->ring[i].ctx;
		if (obj) {
848
			err_printf(m, "%s --- HW Context = 0x%08x\n",
849 850 851 852
				   dev_priv->ring[i].name,
				   obj->gtt_offset);
			offset = 0;
			for (elt = 0; elt < PAGE_SIZE/16; elt += 4) {
853
				err_printf(m, "[%04x] %08x %08x %08x %08x\n",
854 855 856 857 858 859 860 861
					   offset,
					   obj->pages[0][elt],
					   obj->pages[0][elt+1],
					   obj->pages[0][elt+2],
					   obj->pages[0][elt+3]);
					offset += 16;
			}
		}
862
	}
863

864 865 866
	if (error->overlay)
		intel_overlay_print_error_state(m, error->overlay);

867 868 869
	if (error->display)
		intel_display_print_error_state(m, dev, error->display);

870 871
	return 0;
}
872

873 874 875 876 877 878
static ssize_t
i915_error_state_write(struct file *filp,
		       const char __user *ubuf,
		       size_t cnt,
		       loff_t *ppos)
{
879
	struct i915_error_state_file_priv *error_priv = filp->private_data;
880
	struct drm_device *dev = error_priv->dev;
881
	int ret;
882 883 884

	DRM_DEBUG_DRIVER("Resetting error state\n");

885 886 887 888
	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;

889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907
	i915_destroy_error_state(dev);
	mutex_unlock(&dev->struct_mutex);

	return cnt;
}

static int i915_error_state_open(struct inode *inode, struct file *file)
{
	struct drm_device *dev = inode->i_private;
	drm_i915_private_t *dev_priv = dev->dev_private;
	struct i915_error_state_file_priv *error_priv;
	unsigned long flags;

	error_priv = kzalloc(sizeof(*error_priv), GFP_KERNEL);
	if (!error_priv)
		return -ENOMEM;

	error_priv->dev = dev;

908 909
	spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
	error_priv->error = dev_priv->gpu_error.first_error;
910 911
	if (error_priv->error)
		kref_get(&error_priv->error->ref);
912
	spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
913

914 915 916
	file->private_data = error_priv;

	return 0;
917 918 919 920
}

static int i915_error_state_release(struct inode *inode, struct file *file)
{
921
	struct i915_error_state_file_priv *error_priv = file->private_data;
922 923 924 925 926

	if (error_priv->error)
		kref_put(&error_priv->error->ref, i915_error_state_free);
	kfree(error_priv);

927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982
	return 0;
}

static ssize_t i915_error_state_read(struct file *file, char __user *userbuf,
				     size_t count, loff_t *pos)
{
	struct i915_error_state_file_priv *error_priv = file->private_data;
	struct drm_i915_error_state_buf error_str;
	loff_t tmp_pos = 0;
	ssize_t ret_count = 0;
	int ret = 0;

	memset(&error_str, 0, sizeof(error_str));

	/* We need to have enough room to store any i915_error_state printf
	 * so that we can move it to start position.
	 */
	error_str.size = count + 1 > PAGE_SIZE ? count + 1 : PAGE_SIZE;
	error_str.buf = kmalloc(error_str.size,
				GFP_TEMPORARY | __GFP_NORETRY | __GFP_NOWARN);

	if (error_str.buf == NULL) {
		error_str.size = PAGE_SIZE;
		error_str.buf = kmalloc(error_str.size, GFP_TEMPORARY);
	}

	if (error_str.buf == NULL) {
		error_str.size = 128;
		error_str.buf = kmalloc(error_str.size, GFP_TEMPORARY);
	}

	if (error_str.buf == NULL)
		return -ENOMEM;

	error_str.start = *pos;

	ret = i915_error_state(error_priv, &error_str);
	if (ret)
		goto out;

	if (error_str.bytes == 0 && error_str.err) {
		ret = error_str.err;
		goto out;
	}

	ret_count = simple_read_from_buffer(userbuf, count, &tmp_pos,
					    error_str.buf,
					    error_str.bytes);

	if (ret_count < 0)
		ret = ret_count;
	else
		*pos = error_str.start + ret_count;
out:
	kfree(error_str.buf);
	return ret ?: ret_count;
983 984 985 986 987
}

static const struct file_operations i915_error_state_fops = {
	.owner = THIS_MODULE,
	.open = i915_error_state_open,
988
	.read = i915_error_state_read,
989 990 991 992 993
	.write = i915_error_state_write,
	.llseek = default_llseek,
	.release = i915_error_state_release,
};

994 995
static int
i915_next_seqno_get(void *data, u64 *val)
996
{
997
	struct drm_device *dev = data;
998 999 1000 1001 1002 1003 1004
	drm_i915_private_t *dev_priv = dev->dev_private;
	int ret;

	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;

1005
	*val = dev_priv->next_seqno;
1006 1007
	mutex_unlock(&dev->struct_mutex);

1008
	return 0;
1009 1010
}

1011 1012 1013 1014
static int
i915_next_seqno_set(void *data, u64 val)
{
	struct drm_device *dev = data;
1015 1016 1017 1018 1019 1020
	int ret;

	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;

1021
	ret = i915_gem_set_seqno(dev, val);
1022 1023
	mutex_unlock(&dev->struct_mutex);

1024
	return ret;
1025 1026
}

1027 1028
DEFINE_SIMPLE_ATTRIBUTE(i915_next_seqno_fops,
			i915_next_seqno_get, i915_next_seqno_set,
1029
			"0x%llx\n");
1030

1031 1032 1033 1034 1035
static int i915_rstdby_delays(struct seq_file *m, void *unused)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	drm_i915_private_t *dev_priv = dev->dev_private;
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045
	u16 crstanddelay;
	int ret;

	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;

	crstanddelay = I915_READ16(CRSTANDVID);

	mutex_unlock(&dev->struct_mutex);
1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056

	seq_printf(m, "w/ctx: %d, w/o ctx: %d\n", (crstanddelay >> 8) & 0x3f, (crstanddelay & 0x3f));

	return 0;
}

static int i915_cur_delayinfo(struct seq_file *m, void *unused)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	drm_i915_private_t *dev_priv = dev->dev_private;
1057
	int ret;
1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068

	if (IS_GEN5(dev)) {
		u16 rgvswctl = I915_READ16(MEMSWCTL);
		u16 rgvstat = I915_READ16(MEMSTAT_ILK);

		seq_printf(m, "Requested P-state: %d\n", (rgvswctl >> 8) & 0xf);
		seq_printf(m, "Requested VID: %d\n", rgvswctl & 0x3f);
		seq_printf(m, "Current VID: %d\n", (rgvstat & MEMSTAT_VID_MASK) >>
			   MEMSTAT_VID_SHIFT);
		seq_printf(m, "Current P-state: %d\n",
			   (rgvstat & MEMSTAT_PSTATE_MASK) >> MEMSTAT_PSTATE_SHIFT);
1069
	} else if ((IS_GEN6(dev) || IS_GEN7(dev)) && !IS_VALLEYVIEW(dev)) {
1070 1071 1072
		u32 gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS);
		u32 rp_state_limits = I915_READ(GEN6_RP_STATE_LIMITS);
		u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
B
Ben Widawsky 已提交
1073
		u32 rpstat, cagf;
1074 1075
		u32 rpupei, rpcurup, rpprevup;
		u32 rpdownei, rpcurdown, rpprevdown;
1076 1077 1078
		int max_freq;

		/* RPSTAT1 is in the GT power well */
1079 1080 1081 1082
		ret = mutex_lock_interruptible(&dev->struct_mutex);
		if (ret)
			return ret;

1083
		gen6_gt_force_wake_get(dev_priv);
1084

1085 1086 1087 1088 1089 1090 1091
		rpstat = I915_READ(GEN6_RPSTAT1);
		rpupei = I915_READ(GEN6_RP_CUR_UP_EI);
		rpcurup = I915_READ(GEN6_RP_CUR_UP);
		rpprevup = I915_READ(GEN6_RP_PREV_UP);
		rpdownei = I915_READ(GEN6_RP_CUR_DOWN_EI);
		rpcurdown = I915_READ(GEN6_RP_CUR_DOWN);
		rpprevdown = I915_READ(GEN6_RP_PREV_DOWN);
B
Ben Widawsky 已提交
1092 1093 1094 1095 1096
		if (IS_HASWELL(dev))
			cagf = (rpstat & HSW_CAGF_MASK) >> HSW_CAGF_SHIFT;
		else
			cagf = (rpstat & GEN6_CAGF_MASK) >> GEN6_CAGF_SHIFT;
		cagf *= GT_FREQUENCY_MULTIPLIER;
1097

1098 1099 1100
		gen6_gt_force_wake_put(dev_priv);
		mutex_unlock(&dev->struct_mutex);

1101
		seq_printf(m, "GT_PERF_STATUS: 0x%08x\n", gt_perf_status);
1102
		seq_printf(m, "RPSTAT1: 0x%08x\n", rpstat);
1103 1104 1105 1106 1107 1108
		seq_printf(m, "Render p-state ratio: %d\n",
			   (gt_perf_status & 0xff00) >> 8);
		seq_printf(m, "Render p-state VID: %d\n",
			   gt_perf_status & 0xff);
		seq_printf(m, "Render p-state limit: %d\n",
			   rp_state_limits & 0xff);
B
Ben Widawsky 已提交
1109
		seq_printf(m, "CAGF: %dMHz\n", cagf);
1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121
		seq_printf(m, "RP CUR UP EI: %dus\n", rpupei &
			   GEN6_CURICONT_MASK);
		seq_printf(m, "RP CUR UP: %dus\n", rpcurup &
			   GEN6_CURBSYTAVG_MASK);
		seq_printf(m, "RP PREV UP: %dus\n", rpprevup &
			   GEN6_CURBSYTAVG_MASK);
		seq_printf(m, "RP CUR DOWN EI: %dus\n", rpdownei &
			   GEN6_CURIAVG_MASK);
		seq_printf(m, "RP CUR DOWN: %dus\n", rpcurdown &
			   GEN6_CURBSYTAVG_MASK);
		seq_printf(m, "RP PREV DOWN: %dus\n", rpprevdown &
			   GEN6_CURBSYTAVG_MASK);
1122 1123 1124

		max_freq = (rp_state_cap & 0xff0000) >> 16;
		seq_printf(m, "Lowest (RPN) frequency: %dMHz\n",
1125
			   max_freq * GT_FREQUENCY_MULTIPLIER);
1126 1127 1128

		max_freq = (rp_state_cap & 0xff00) >> 8;
		seq_printf(m, "Nominal (RP1) frequency: %dMHz\n",
1129
			   max_freq * GT_FREQUENCY_MULTIPLIER);
1130 1131 1132

		max_freq = rp_state_cap & 0xff;
		seq_printf(m, "Max non-overclocked (RP0) frequency: %dMHz\n",
1133
			   max_freq * GT_FREQUENCY_MULTIPLIER);
1134 1135 1136

		seq_printf(m, "Max overclocked frequency: %dMHz\n",
			   dev_priv->rps.hw_max * GT_FREQUENCY_MULTIPLIER);
1137 1138 1139
	} else if (IS_VALLEYVIEW(dev)) {
		u32 freq_sts, val;

1140
		mutex_lock(&dev_priv->rps.hw_lock);
1141
		freq_sts = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
1142 1143 1144
		seq_printf(m, "PUNIT_REG_GPU_FREQ_STS: 0x%08x\n", freq_sts);
		seq_printf(m, "DDR freq: %d MHz\n", dev_priv->mem_freq);

1145
		val = vlv_punit_read(dev_priv, PUNIT_FUSE_BUS1);
1146 1147 1148
		seq_printf(m, "max GPU freq: %d MHz\n",
			   vlv_gpu_freq(dev_priv->mem_freq, val));

1149
		val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM);
1150 1151 1152 1153 1154 1155
		seq_printf(m, "min GPU freq: %d MHz\n",
			   vlv_gpu_freq(dev_priv->mem_freq, val));

		seq_printf(m, "current GPU freq: %d MHz\n",
			   vlv_gpu_freq(dev_priv->mem_freq,
					(freq_sts >> 8) & 0xff));
1156
		mutex_unlock(&dev_priv->rps.hw_lock);
1157 1158 1159
	} else {
		seq_printf(m, "no P-state info available\n");
	}
1160 1161 1162 1163 1164 1165 1166 1167 1168 1169

	return 0;
}

static int i915_delayfreq_table(struct seq_file *m, void *unused)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	drm_i915_private_t *dev_priv = dev->dev_private;
	u32 delayfreq;
1170 1171 1172 1173 1174
	int ret, i;

	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;
1175 1176 1177

	for (i = 0; i < 16; i++) {
		delayfreq = I915_READ(PXVFREQ_BASE + i * 4);
1178 1179
		seq_printf(m, "P%02dVIDFREQ: 0x%08x (VID: %d)\n", i, delayfreq,
			   (delayfreq & PXVFREQ_PX_MASK) >> PXVFREQ_PX_SHIFT);
1180 1181
	}

1182 1183
	mutex_unlock(&dev->struct_mutex);

1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197
	return 0;
}

static inline int MAP_TO_MV(int map)
{
	return 1250 - (map * 25);
}

static int i915_inttoext_table(struct seq_file *m, void *unused)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	drm_i915_private_t *dev_priv = dev->dev_private;
	u32 inttoext;
1198 1199 1200 1201 1202
	int ret, i;

	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;
1203 1204 1205 1206 1207 1208

	for (i = 1; i <= 32; i++) {
		inttoext = I915_READ(INTTOEXT_BASE_ILK + i * 4);
		seq_printf(m, "INTTOEXT%02d: 0x%08x\n", i, inttoext);
	}

1209 1210
	mutex_unlock(&dev->struct_mutex);

1211 1212 1213
	return 0;
}

1214
static int ironlake_drpc_info(struct seq_file *m)
1215 1216 1217 1218
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	drm_i915_private_t *dev_priv = dev->dev_private;
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231
	u32 rgvmodectl, rstdbyctl;
	u16 crstandvid;
	int ret;

	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;

	rgvmodectl = I915_READ(MEMMODECTL);
	rstdbyctl = I915_READ(RSTDBYCTL);
	crstandvid = I915_READ16(CRSTANDVID);

	mutex_unlock(&dev->struct_mutex);
1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245

	seq_printf(m, "HD boost: %s\n", (rgvmodectl & MEMMODE_BOOST_EN) ?
		   "yes" : "no");
	seq_printf(m, "Boost freq: %d\n",
		   (rgvmodectl & MEMMODE_BOOST_FREQ_MASK) >>
		   MEMMODE_BOOST_FREQ_SHIFT);
	seq_printf(m, "HW control enabled: %s\n",
		   rgvmodectl & MEMMODE_HWIDLE_EN ? "yes" : "no");
	seq_printf(m, "SW control enabled: %s\n",
		   rgvmodectl & MEMMODE_SWMODE_EN ? "yes" : "no");
	seq_printf(m, "Gated voltage change: %s\n",
		   rgvmodectl & MEMMODE_RCLK_GATE ? "yes" : "no");
	seq_printf(m, "Starting frequency: P%d\n",
		   (rgvmodectl & MEMMODE_FSTART_MASK) >> MEMMODE_FSTART_SHIFT);
1246
	seq_printf(m, "Max P-state: P%d\n",
1247
		   (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT);
1248 1249 1250 1251 1252
	seq_printf(m, "Min P-state: P%d\n", (rgvmodectl & MEMMODE_FMIN_MASK));
	seq_printf(m, "RS1 VID: %d\n", (crstandvid & 0x3f));
	seq_printf(m, "RS2 VID: %d\n", ((crstandvid >> 8) & 0x3f));
	seq_printf(m, "Render standby enabled: %s\n",
		   (rstdbyctl & RCX_SW_EXIT) ? "no" : "yes");
1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276
	seq_printf(m, "Current RS state: ");
	switch (rstdbyctl & RSX_STATUS_MASK) {
	case RSX_STATUS_ON:
		seq_printf(m, "on\n");
		break;
	case RSX_STATUS_RC1:
		seq_printf(m, "RC1\n");
		break;
	case RSX_STATUS_RC1E:
		seq_printf(m, "RC1E\n");
		break;
	case RSX_STATUS_RS1:
		seq_printf(m, "RS1\n");
		break;
	case RSX_STATUS_RS2:
		seq_printf(m, "RS2 (RC6)\n");
		break;
	case RSX_STATUS_RS3:
		seq_printf(m, "RC3 (RC6+)\n");
		break;
	default:
		seq_printf(m, "unknown\n");
		break;
	}
1277 1278 1279 1280

	return 0;
}

1281 1282 1283 1284 1285 1286
static int gen6_drpc_info(struct seq_file *m)
{

	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
B
Ben Widawsky 已提交
1287
	u32 rpmodectl1, gt_core_status, rcctl1, rc6vids = 0;
1288
	unsigned forcewake_count;
1289 1290 1291 1292 1293 1294 1295
	int count=0, ret;


	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;

1296 1297 1298 1299 1300 1301 1302
	spin_lock_irq(&dev_priv->gt_lock);
	forcewake_count = dev_priv->forcewake_count;
	spin_unlock_irq(&dev_priv->gt_lock);

	if (forcewake_count) {
		seq_printf(m, "RC information inaccurate because somebody "
			      "holds a forcewake reference \n");
1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315
	} else {
		/* NB: we cannot use forcewake, else we read the wrong values */
		while (count++ < 50 && (I915_READ_NOTRACE(FORCEWAKE_ACK) & 1))
			udelay(10);
		seq_printf(m, "RC information accurate: %s\n", yesno(count < 51));
	}

	gt_core_status = readl(dev_priv->regs + GEN6_GT_CORE_STATUS);
	trace_i915_reg_rw(false, GEN6_GT_CORE_STATUS, gt_core_status, 4);

	rpmodectl1 = I915_READ(GEN6_RP_CONTROL);
	rcctl1 = I915_READ(GEN6_RC_CONTROL);
	mutex_unlock(&dev->struct_mutex);
1316 1317 1318
	mutex_lock(&dev_priv->rps.hw_lock);
	sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
	mutex_unlock(&dev_priv->rps.hw_lock);
1319 1320 1321 1322 1323 1324 1325 1326

	seq_printf(m, "Video Turbo Mode: %s\n",
		   yesno(rpmodectl1 & GEN6_RP_MEDIA_TURBO));
	seq_printf(m, "HW control enabled: %s\n",
		   yesno(rpmodectl1 & GEN6_RP_ENABLE));
	seq_printf(m, "SW control enabled: %s\n",
		   yesno((rpmodectl1 & GEN6_RP_MEDIA_MODE_MASK) ==
			  GEN6_RP_MEDIA_SW_MODE));
1327
	seq_printf(m, "RC1e Enabled: %s\n",
1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358
		   yesno(rcctl1 & GEN6_RC_CTL_RC1e_ENABLE));
	seq_printf(m, "RC6 Enabled: %s\n",
		   yesno(rcctl1 & GEN6_RC_CTL_RC6_ENABLE));
	seq_printf(m, "Deep RC6 Enabled: %s\n",
		   yesno(rcctl1 & GEN6_RC_CTL_RC6p_ENABLE));
	seq_printf(m, "Deepest RC6 Enabled: %s\n",
		   yesno(rcctl1 & GEN6_RC_CTL_RC6pp_ENABLE));
	seq_printf(m, "Current RC state: ");
	switch (gt_core_status & GEN6_RCn_MASK) {
	case GEN6_RC0:
		if (gt_core_status & GEN6_CORE_CPD_STATE_MASK)
			seq_printf(m, "Core Power Down\n");
		else
			seq_printf(m, "on\n");
		break;
	case GEN6_RC3:
		seq_printf(m, "RC3\n");
		break;
	case GEN6_RC6:
		seq_printf(m, "RC6\n");
		break;
	case GEN6_RC7:
		seq_printf(m, "RC7\n");
		break;
	default:
		seq_printf(m, "Unknown\n");
		break;
	}

	seq_printf(m, "Core Power Down: %s\n",
		   yesno(gt_core_status & GEN6_CORE_CPD_STATE_MASK));
1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369

	/* Not exactly sure what this is */
	seq_printf(m, "RC6 \"Locked to RPn\" residency since boot: %u\n",
		   I915_READ(GEN6_GT_GFX_RC6_LOCKED));
	seq_printf(m, "RC6 residency since boot: %u\n",
		   I915_READ(GEN6_GT_GFX_RC6));
	seq_printf(m, "RC6+ residency since boot: %u\n",
		   I915_READ(GEN6_GT_GFX_RC6p));
	seq_printf(m, "RC6++ residency since boot: %u\n",
		   I915_READ(GEN6_GT_GFX_RC6pp));

B
Ben Widawsky 已提交
1370 1371 1372 1373 1374 1375
	seq_printf(m, "RC6   voltage: %dmV\n",
		   GEN6_DECODE_RC6_VID(((rc6vids >> 0) & 0xff)));
	seq_printf(m, "RC6+  voltage: %dmV\n",
		   GEN6_DECODE_RC6_VID(((rc6vids >> 8) & 0xff)));
	seq_printf(m, "RC6++ voltage: %dmV\n",
		   GEN6_DECODE_RC6_VID(((rc6vids >> 16) & 0xff)));
1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389
	return 0;
}

static int i915_drpc_info(struct seq_file *m, void *unused)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;

	if (IS_GEN6(dev) || IS_GEN7(dev))
		return gen6_drpc_info(m);
	else
		return ironlake_drpc_info(m);
}

1390 1391 1392 1393 1394 1395
static int i915_fbc_status(struct seq_file *m, void *unused)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	drm_i915_private_t *dev_priv = dev->dev_private;

1396
	if (!I915_HAS_FBC(dev)) {
1397 1398 1399 1400
		seq_printf(m, "FBC unsupported on this chipset\n");
		return 0;
	}

1401
	if (intel_fbc_enabled(dev)) {
1402 1403 1404 1405
		seq_printf(m, "FBC enabled\n");
	} else {
		seq_printf(m, "FBC disabled: ");
		switch (dev_priv->no_fbc_reason) {
C
Chris Wilson 已提交
1406 1407 1408
		case FBC_NO_OUTPUT:
			seq_printf(m, "no outputs");
			break;
1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423
		case FBC_STOLEN_TOO_SMALL:
			seq_printf(m, "not enough stolen memory");
			break;
		case FBC_UNSUPPORTED_MODE:
			seq_printf(m, "mode not supported");
			break;
		case FBC_MODE_TOO_LARGE:
			seq_printf(m, "mode too large");
			break;
		case FBC_BAD_PLANE:
			seq_printf(m, "FBC unsupported on plane");
			break;
		case FBC_NOT_TILED:
			seq_printf(m, "scanout buffer not tiled");
			break;
1424 1425 1426
		case FBC_MULTIPLE_PIPES:
			seq_printf(m, "multiple pipes are enabled");
			break;
1427 1428 1429
		case FBC_MODULE_PARAM:
			seq_printf(m, "disabled per module param (default off)");
			break;
1430 1431 1432 1433 1434 1435 1436 1437
		default:
			seq_printf(m, "unknown reason");
		}
		seq_printf(m, "\n");
	}
	return 0;
}

1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456
static int i915_ips_status(struct seq_file *m, void *unused)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;

	if (!IS_ULT(dev)) {
		seq_puts(m, "not supported\n");
		return 0;
	}

	if (I915_READ(IPS_CTL) & IPS_ENABLE)
		seq_puts(m, "enabled\n");
	else
		seq_puts(m, "disabled\n");

	return 0;
}

1457 1458 1459 1460 1461 1462 1463
static int i915_sr_status(struct seq_file *m, void *unused)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	drm_i915_private_t *dev_priv = dev->dev_private;
	bool sr_enabled = false;

1464
	if (HAS_PCH_SPLIT(dev))
1465
		sr_enabled = I915_READ(WM1_LP_ILK) & WM1_LP_SR_EN;
1466
	else if (IS_CRESTLINE(dev) || IS_I945G(dev) || IS_I945GM(dev))
1467 1468 1469 1470 1471 1472
		sr_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
	else if (IS_I915GM(dev))
		sr_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN;
	else if (IS_PINEVIEW(dev))
		sr_enabled = I915_READ(DSPFW3) & PINEVIEW_SELF_REFRESH_EN;

1473 1474
	seq_printf(m, "self-refresh: %s\n",
		   sr_enabled ? "enabled" : "disabled");
1475 1476 1477 1478

	return 0;
}

1479 1480 1481 1482 1483 1484
static int i915_emon_status(struct seq_file *m, void *unused)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	drm_i915_private_t *dev_priv = dev->dev_private;
	unsigned long temp, chipset, gfx;
1485 1486
	int ret;

1487 1488 1489
	if (!IS_GEN5(dev))
		return -ENODEV;

1490 1491 1492
	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;
1493 1494 1495 1496

	temp = i915_mch_val(dev_priv);
	chipset = i915_chipset_val(dev_priv);
	gfx = i915_gfx_val(dev_priv);
1497
	mutex_unlock(&dev->struct_mutex);
1498 1499 1500 1501 1502 1503 1504 1505 1506

	seq_printf(m, "GMCH temp: %ld\n", temp);
	seq_printf(m, "Chipset power: %ld\n", chipset);
	seq_printf(m, "GFX power: %ld\n", gfx);
	seq_printf(m, "Total power: %ld\n", chipset + gfx);

	return 0;
}

1507 1508 1509 1510 1511 1512 1513 1514
static int i915_ring_freq_table(struct seq_file *m, void *unused)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	drm_i915_private_t *dev_priv = dev->dev_private;
	int ret;
	int gpu_freq, ia_freq;

1515
	if (!(IS_GEN6(dev) || IS_GEN7(dev))) {
1516 1517 1518 1519
		seq_printf(m, "unsupported on this chipset\n");
		return 0;
	}

1520
	ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
1521 1522 1523
	if (ret)
		return ret;

1524
	seq_printf(m, "GPU freq (MHz)\tEffective CPU freq (MHz)\tEffective Ring freq (MHz)\n");
1525

1526 1527
	for (gpu_freq = dev_priv->rps.min_delay;
	     gpu_freq <= dev_priv->rps.max_delay;
1528
	     gpu_freq++) {
B
Ben Widawsky 已提交
1529 1530 1531 1532
		ia_freq = gpu_freq;
		sandybridge_pcode_read(dev_priv,
				       GEN6_PCODE_READ_MIN_FREQ_TABLE,
				       &ia_freq);
1533 1534 1535 1536
		seq_printf(m, "%d\t\t%d\t\t\t\t%d\n",
			   gpu_freq * GT_FREQUENCY_MULTIPLIER,
			   ((ia_freq >> 0) & 0xff) * 100,
			   ((ia_freq >> 8) & 0xff) * 100);
1537 1538
	}

1539
	mutex_unlock(&dev_priv->rps.hw_lock);
1540 1541 1542 1543

	return 0;
}

1544 1545 1546 1547 1548
static int i915_gfxec(struct seq_file *m, void *unused)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	drm_i915_private_t *dev_priv = dev->dev_private;
1549 1550 1551 1552 1553
	int ret;

	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;
1554 1555 1556

	seq_printf(m, "GFXEC: %ld\n", (unsigned long)I915_READ(0x112f4));

1557 1558
	mutex_unlock(&dev->struct_mutex);

1559 1560 1561
	return 0;
}

1562 1563 1564 1565 1566 1567
static int i915_opregion(struct seq_file *m, void *unused)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	drm_i915_private_t *dev_priv = dev->dev_private;
	struct intel_opregion *opregion = &dev_priv->opregion;
1568
	void *data = kmalloc(OPREGION_SIZE, GFP_KERNEL);
1569 1570
	int ret;

1571 1572 1573
	if (data == NULL)
		return -ENOMEM;

1574 1575
	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
1576
		goto out;
1577

1578 1579 1580 1581
	if (opregion->header) {
		memcpy_fromio(data, opregion->header, OPREGION_SIZE);
		seq_write(m, data, OPREGION_SIZE);
	}
1582 1583 1584

	mutex_unlock(&dev->struct_mutex);

1585 1586
out:
	kfree(data);
1587 1588 1589
	return 0;
}

1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605
static int i915_gem_framebuffer_info(struct seq_file *m, void *data)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	drm_i915_private_t *dev_priv = dev->dev_private;
	struct intel_fbdev *ifbdev;
	struct intel_framebuffer *fb;
	int ret;

	ret = mutex_lock_interruptible(&dev->mode_config.mutex);
	if (ret)
		return ret;

	ifbdev = dev_priv->fbdev;
	fb = to_intel_framebuffer(ifbdev->helper.fb);

1606
	seq_printf(m, "fbcon size: %d x %d, depth %d, %d bpp, refcount %d, obj ",
1607 1608 1609
		   fb->base.width,
		   fb->base.height,
		   fb->base.depth,
1610 1611
		   fb->base.bits_per_pixel,
		   atomic_read(&fb->base.refcount.refcount));
1612
	describe_obj(m, fb->obj);
1613
	seq_printf(m, "\n");
1614
	mutex_unlock(&dev->mode_config.mutex);
1615

1616
	mutex_lock(&dev->mode_config.fb_lock);
1617 1618 1619 1620
	list_for_each_entry(fb, &dev->mode_config.fb_list, base.head) {
		if (&fb->base == ifbdev->helper.fb)
			continue;

1621
		seq_printf(m, "user size: %d x %d, depth %d, %d bpp, refcount %d, obj ",
1622 1623 1624
			   fb->base.width,
			   fb->base.height,
			   fb->base.depth,
1625 1626
			   fb->base.bits_per_pixel,
			   atomic_read(&fb->base.refcount.refcount));
1627
		describe_obj(m, fb->obj);
1628 1629
		seq_printf(m, "\n");
	}
1630
	mutex_unlock(&dev->mode_config.fb_lock);
1631 1632 1633 1634

	return 0;
}

1635 1636 1637 1638 1639
static int i915_context_status(struct seq_file *m, void *unused)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	drm_i915_private_t *dev_priv = dev->dev_private;
1640 1641
	struct intel_ring_buffer *ring;
	int ret, i;
1642 1643 1644 1645 1646

	ret = mutex_lock_interruptible(&dev->mode_config.mutex);
	if (ret)
		return ret;

1647
	if (dev_priv->ips.pwrctx) {
1648
		seq_printf(m, "power context ");
1649
		describe_obj(m, dev_priv->ips.pwrctx);
1650 1651
		seq_printf(m, "\n");
	}
1652

1653
	if (dev_priv->ips.renderctx) {
1654
		seq_printf(m, "render context ");
1655
		describe_obj(m, dev_priv->ips.renderctx);
1656 1657
		seq_printf(m, "\n");
	}
1658

1659 1660 1661 1662 1663 1664 1665 1666
	for_each_ring(ring, dev_priv, i) {
		if (ring->default_context) {
			seq_printf(m, "HW default context %s ring ", ring->name);
			describe_obj(m, ring->default_context->obj);
			seq_printf(m, "\n");
		}
	}

1667 1668 1669 1670 1671
	mutex_unlock(&dev->mode_config.mutex);

	return 0;
}

1672 1673 1674 1675 1676
static int i915_gen6_forcewake_count_info(struct seq_file *m, void *data)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
1677
	unsigned forcewake_count;
1678

1679 1680 1681
	spin_lock_irq(&dev_priv->gt_lock);
	forcewake_count = dev_priv->forcewake_count;
	spin_unlock_irq(&dev_priv->gt_lock);
1682

1683
	seq_printf(m, "forcewake count = %u\n", forcewake_count);
1684 1685 1686 1687

	return 0;
}

1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705
static const char *swizzle_string(unsigned swizzle)
{
	switch(swizzle) {
	case I915_BIT_6_SWIZZLE_NONE:
		return "none";
	case I915_BIT_6_SWIZZLE_9:
		return "bit9";
	case I915_BIT_6_SWIZZLE_9_10:
		return "bit9/bit10";
	case I915_BIT_6_SWIZZLE_9_11:
		return "bit9/bit11";
	case I915_BIT_6_SWIZZLE_9_10_11:
		return "bit9/bit10/bit11";
	case I915_BIT_6_SWIZZLE_9_17:
		return "bit9/bit17";
	case I915_BIT_6_SWIZZLE_9_10_17:
		return "bit9/bit10/bit17";
	case I915_BIT_6_SWIZZLE_UNKNOWN:
1706
		return "unknown";
1707 1708 1709 1710 1711 1712 1713 1714 1715 1716
	}

	return "bug";
}

static int i915_swizzle_info(struct seq_file *m, void *data)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
1717 1718 1719 1720 1721
	int ret;

	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;
1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734

	seq_printf(m, "bit6 swizzle for X-tiling = %s\n",
		   swizzle_string(dev_priv->mm.bit_6_swizzle_x));
	seq_printf(m, "bit6 swizzle for Y-tiling = %s\n",
		   swizzle_string(dev_priv->mm.bit_6_swizzle_y));

	if (IS_GEN3(dev) || IS_GEN4(dev)) {
		seq_printf(m, "DDC = 0x%08x\n",
			   I915_READ(DCC));
		seq_printf(m, "C0DRB3 = 0x%04x\n",
			   I915_READ16(C0DRB3));
		seq_printf(m, "C1DRB3 = 0x%04x\n",
			   I915_READ16(C1DRB3));
1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747
	} else if (IS_GEN6(dev) || IS_GEN7(dev)) {
		seq_printf(m, "MAD_DIMM_C0 = 0x%08x\n",
			   I915_READ(MAD_DIMM_C0));
		seq_printf(m, "MAD_DIMM_C1 = 0x%08x\n",
			   I915_READ(MAD_DIMM_C1));
		seq_printf(m, "MAD_DIMM_C2 = 0x%08x\n",
			   I915_READ(MAD_DIMM_C2));
		seq_printf(m, "TILECTL = 0x%08x\n",
			   I915_READ(TILECTL));
		seq_printf(m, "ARB_MODE = 0x%08x\n",
			   I915_READ(ARB_MODE));
		seq_printf(m, "DISP_ARB_CTL = 0x%08x\n",
			   I915_READ(DISP_ARB_CTL));
1748 1749 1750 1751 1752 1753
	}
	mutex_unlock(&dev->struct_mutex);

	return 0;
}

D
Daniel Vetter 已提交
1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768
static int i915_ppgtt_info(struct seq_file *m, void *data)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct intel_ring_buffer *ring;
	int i, ret;


	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;
	if (INTEL_INFO(dev)->gen == 6)
		seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(GFX_MODE));

1769
	for_each_ring(ring, dev_priv, i) {
D
Daniel Vetter 已提交
1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788
		seq_printf(m, "%s\n", ring->name);
		if (INTEL_INFO(dev)->gen == 7)
			seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(RING_MODE_GEN7(ring)));
		seq_printf(m, "PP_DIR_BASE: 0x%08x\n", I915_READ(RING_PP_DIR_BASE(ring)));
		seq_printf(m, "PP_DIR_BASE_READ: 0x%08x\n", I915_READ(RING_PP_DIR_BASE_READ(ring)));
		seq_printf(m, "PP_DIR_DCLV: 0x%08x\n", I915_READ(RING_PP_DIR_DCLV(ring)));
	}
	if (dev_priv->mm.aliasing_ppgtt) {
		struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;

		seq_printf(m, "aliasing PPGTT:\n");
		seq_printf(m, "pd gtt offset: 0x%08x\n", ppgtt->pd_offset);
	}
	seq_printf(m, "ECOCHK: 0x%08x\n", I915_READ(GAM_ECOCHK));
	mutex_unlock(&dev->struct_mutex);

	return 0;
}

J
Jesse Barnes 已提交
1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801
static int i915_dpio_info(struct seq_file *m, void *data)
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	int ret;


	if (!IS_VALLEYVIEW(dev)) {
		seq_printf(m, "unsupported\n");
		return 0;
	}

1802
	ret = mutex_lock_interruptible(&dev_priv->dpio_lock);
J
Jesse Barnes 已提交
1803 1804 1805 1806 1807 1808
	if (ret)
		return ret;

	seq_printf(m, "DPIO_CTL: 0x%08x\n", I915_READ(DPIO_CTL));

	seq_printf(m, "DPIO_DIV_A: 0x%08x\n",
1809
		   vlv_dpio_read(dev_priv, _DPIO_DIV_A));
J
Jesse Barnes 已提交
1810
	seq_printf(m, "DPIO_DIV_B: 0x%08x\n",
1811
		   vlv_dpio_read(dev_priv, _DPIO_DIV_B));
J
Jesse Barnes 已提交
1812 1813

	seq_printf(m, "DPIO_REFSFR_A: 0x%08x\n",
1814
		   vlv_dpio_read(dev_priv, _DPIO_REFSFR_A));
J
Jesse Barnes 已提交
1815
	seq_printf(m, "DPIO_REFSFR_B: 0x%08x\n",
1816
		   vlv_dpio_read(dev_priv, _DPIO_REFSFR_B));
J
Jesse Barnes 已提交
1817 1818

	seq_printf(m, "DPIO_CORE_CLK_A: 0x%08x\n",
1819
		   vlv_dpio_read(dev_priv, _DPIO_CORE_CLK_A));
J
Jesse Barnes 已提交
1820
	seq_printf(m, "DPIO_CORE_CLK_B: 0x%08x\n",
1821
		   vlv_dpio_read(dev_priv, _DPIO_CORE_CLK_B));
J
Jesse Barnes 已提交
1822 1823

	seq_printf(m, "DPIO_LFP_COEFF_A: 0x%08x\n",
1824
		   vlv_dpio_read(dev_priv, _DPIO_LFP_COEFF_A));
J
Jesse Barnes 已提交
1825
	seq_printf(m, "DPIO_LFP_COEFF_B: 0x%08x\n",
1826
		   vlv_dpio_read(dev_priv, _DPIO_LFP_COEFF_B));
J
Jesse Barnes 已提交
1827 1828

	seq_printf(m, "DPIO_FASTCLK_DISABLE: 0x%08x\n",
1829
		   vlv_dpio_read(dev_priv, DPIO_FASTCLK_DISABLE));
J
Jesse Barnes 已提交
1830

1831
	mutex_unlock(&dev_priv->dpio_lock);
J
Jesse Barnes 已提交
1832 1833 1834 1835

	return 0;
}

1836 1837
static int
i915_wedged_get(void *data, u64 *val)
1838
{
1839
	struct drm_device *dev = data;
1840 1841
	drm_i915_private_t *dev_priv = dev->dev_private;

1842
	*val = atomic_read(&dev_priv->gpu_error.reset_counter);
1843

1844
	return 0;
1845 1846
}

1847 1848
static int
i915_wedged_set(void *data, u64 val)
1849
{
1850
	struct drm_device *dev = data;
1851

1852
	DRM_INFO("Manually setting wedged to %llu\n", val);
1853
	i915_handle_error(dev, val);
1854

1855
	return 0;
1856 1857
}

1858 1859
DEFINE_SIMPLE_ATTRIBUTE(i915_wedged_fops,
			i915_wedged_get, i915_wedged_set,
1860
			"%llu\n");
1861

1862 1863
static int
i915_ring_stop_get(void *data, u64 *val)
1864
{
1865
	struct drm_device *dev = data;
1866 1867
	drm_i915_private_t *dev_priv = dev->dev_private;

1868
	*val = dev_priv->gpu_error.stop_rings;
1869

1870
	return 0;
1871 1872
}

1873 1874
static int
i915_ring_stop_set(void *data, u64 val)
1875
{
1876
	struct drm_device *dev = data;
1877
	struct drm_i915_private *dev_priv = dev->dev_private;
1878
	int ret;
1879

1880
	DRM_DEBUG_DRIVER("Stopping rings 0x%08llx\n", val);
1881

1882 1883 1884 1885
	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;

1886
	dev_priv->gpu_error.stop_rings = val;
1887 1888
	mutex_unlock(&dev->struct_mutex);

1889
	return 0;
1890 1891
}

1892 1893 1894
DEFINE_SIMPLE_ATTRIBUTE(i915_ring_stop_fops,
			i915_ring_stop_get, i915_ring_stop_set,
			"0x%08llx\n");
1895

1896 1897 1898 1899 1900 1901 1902 1903
#define DROP_UNBOUND 0x1
#define DROP_BOUND 0x2
#define DROP_RETIRE 0x4
#define DROP_ACTIVE 0x8
#define DROP_ALL (DROP_UNBOUND | \
		  DROP_BOUND | \
		  DROP_RETIRE | \
		  DROP_ACTIVE)
1904 1905
static int
i915_drop_caches_get(void *data, u64 *val)
1906
{
1907
	*val = DROP_ALL;
1908

1909
	return 0;
1910 1911
}

1912 1913
static int
i915_drop_caches_set(void *data, u64 val)
1914
{
1915
	struct drm_device *dev = data;
1916 1917
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct drm_i915_gem_object *obj, *next;
1918
	int ret;
1919

1920
	DRM_DEBUG_DRIVER("Dropping caches: 0x%08llx\n", val);
1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946

	/* No need to check and wait for gpu resets, only libdrm auto-restarts
	 * on ioctls on -EAGAIN. */
	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;

	if (val & DROP_ACTIVE) {
		ret = i915_gpu_idle(dev);
		if (ret)
			goto unlock;
	}

	if (val & (DROP_RETIRE | DROP_ACTIVE))
		i915_gem_retire_requests(dev);

	if (val & DROP_BOUND) {
		list_for_each_entry_safe(obj, next, &dev_priv->mm.inactive_list, mm_list)
			if (obj->pin_count == 0) {
				ret = i915_gem_object_unbind(obj);
				if (ret)
					goto unlock;
			}
	}

	if (val & DROP_UNBOUND) {
1947 1948
		list_for_each_entry_safe(obj, next, &dev_priv->mm.unbound_list,
					 global_list)
1949 1950 1951 1952 1953 1954 1955 1956 1957 1958
			if (obj->pages_pin_count == 0) {
				ret = i915_gem_object_put_pages(obj);
				if (ret)
					goto unlock;
			}
	}

unlock:
	mutex_unlock(&dev->struct_mutex);

1959
	return ret;
1960 1961
}

1962 1963 1964
DEFINE_SIMPLE_ATTRIBUTE(i915_drop_caches_fops,
			i915_drop_caches_get, i915_drop_caches_set,
			"0x%08llx\n");
1965

1966 1967
static int
i915_max_freq_get(void *data, u64 *val)
1968
{
1969
	struct drm_device *dev = data;
1970
	drm_i915_private_t *dev_priv = dev->dev_private;
1971
	int ret;
1972 1973 1974 1975

	if (!(IS_GEN6(dev) || IS_GEN7(dev)))
		return -ENODEV;

1976
	ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
1977 1978
	if (ret)
		return ret;
1979

1980 1981 1982 1983 1984
	if (IS_VALLEYVIEW(dev))
		*val = vlv_gpu_freq(dev_priv->mem_freq,
				    dev_priv->rps.max_delay);
	else
		*val = dev_priv->rps.max_delay * GT_FREQUENCY_MULTIPLIER;
1985
	mutex_unlock(&dev_priv->rps.hw_lock);
1986

1987
	return 0;
1988 1989
}

1990 1991
static int
i915_max_freq_set(void *data, u64 val)
1992
{
1993
	struct drm_device *dev = data;
1994
	struct drm_i915_private *dev_priv = dev->dev_private;
1995
	int ret;
1996 1997 1998

	if (!(IS_GEN6(dev) || IS_GEN7(dev)))
		return -ENODEV;
1999

2000
	DRM_DEBUG_DRIVER("Manually setting max freq to %llu\n", val);
2001

2002
	ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
2003 2004 2005
	if (ret)
		return ret;

2006 2007 2008
	/*
	 * Turbo will still be enabled, but won't go above the set value.
	 */
2009 2010 2011 2012 2013 2014 2015 2016 2017 2018
	if (IS_VALLEYVIEW(dev)) {
		val = vlv_freq_opcode(dev_priv->mem_freq, val);
		dev_priv->rps.max_delay = val;
		gen6_set_rps(dev, val);
	} else {
		do_div(val, GT_FREQUENCY_MULTIPLIER);
		dev_priv->rps.max_delay = val;
		gen6_set_rps(dev, val);
	}

2019
	mutex_unlock(&dev_priv->rps.hw_lock);
2020

2021
	return 0;
2022 2023
}

2024 2025
DEFINE_SIMPLE_ATTRIBUTE(i915_max_freq_fops,
			i915_max_freq_get, i915_max_freq_set,
2026
			"%llu\n");
2027

2028 2029
static int
i915_min_freq_get(void *data, u64 *val)
2030
{
2031
	struct drm_device *dev = data;
2032
	drm_i915_private_t *dev_priv = dev->dev_private;
2033
	int ret;
2034 2035 2036 2037

	if (!(IS_GEN6(dev) || IS_GEN7(dev)))
		return -ENODEV;

2038
	ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
2039 2040
	if (ret)
		return ret;
2041

2042 2043 2044 2045 2046
	if (IS_VALLEYVIEW(dev))
		*val = vlv_gpu_freq(dev_priv->mem_freq,
				    dev_priv->rps.min_delay);
	else
		*val = dev_priv->rps.min_delay * GT_FREQUENCY_MULTIPLIER;
2047
	mutex_unlock(&dev_priv->rps.hw_lock);
2048

2049
	return 0;
2050 2051
}

2052 2053
static int
i915_min_freq_set(void *data, u64 val)
2054
{
2055
	struct drm_device *dev = data;
2056
	struct drm_i915_private *dev_priv = dev->dev_private;
2057
	int ret;
2058 2059 2060

	if (!(IS_GEN6(dev) || IS_GEN7(dev)))
		return -ENODEV;
2061

2062
	DRM_DEBUG_DRIVER("Manually setting min freq to %llu\n", val);
2063

2064
	ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
2065 2066 2067
	if (ret)
		return ret;

2068 2069 2070
	/*
	 * Turbo will still be enabled, but won't go below the set value.
	 */
2071 2072 2073 2074 2075 2076 2077 2078 2079
	if (IS_VALLEYVIEW(dev)) {
		val = vlv_freq_opcode(dev_priv->mem_freq, val);
		dev_priv->rps.min_delay = val;
		valleyview_set_rps(dev, val);
	} else {
		do_div(val, GT_FREQUENCY_MULTIPLIER);
		dev_priv->rps.min_delay = val;
		gen6_set_rps(dev, val);
	}
2080
	mutex_unlock(&dev_priv->rps.hw_lock);
2081

2082
	return 0;
2083 2084
}

2085 2086
DEFINE_SIMPLE_ATTRIBUTE(i915_min_freq_fops,
			i915_min_freq_get, i915_min_freq_set,
2087
			"%llu\n");
2088

2089 2090
static int
i915_cache_sharing_get(void *data, u64 *val)
2091
{
2092
	struct drm_device *dev = data;
2093 2094
	drm_i915_private_t *dev_priv = dev->dev_private;
	u32 snpcr;
2095
	int ret;
2096

2097 2098 2099
	if (!(IS_GEN6(dev) || IS_GEN7(dev)))
		return -ENODEV;

2100 2101 2102 2103
	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;

2104 2105 2106
	snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
	mutex_unlock(&dev_priv->dev->struct_mutex);

2107
	*val = (snpcr & GEN6_MBC_SNPCR_MASK) >> GEN6_MBC_SNPCR_SHIFT;
2108

2109
	return 0;
2110 2111
}

2112 2113
static int
i915_cache_sharing_set(void *data, u64 val)
2114
{
2115
	struct drm_device *dev = data;
2116 2117 2118
	struct drm_i915_private *dev_priv = dev->dev_private;
	u32 snpcr;

2119 2120 2121
	if (!(IS_GEN6(dev) || IS_GEN7(dev)))
		return -ENODEV;

2122
	if (val > 3)
2123 2124
		return -EINVAL;

2125
	DRM_DEBUG_DRIVER("Manually setting uncore sharing to %llu\n", val);
2126 2127 2128 2129 2130 2131 2132

	/* Update the cache sharing policy here as well */
	snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
	snpcr &= ~GEN6_MBC_SNPCR_MASK;
	snpcr |= (val << GEN6_MBC_SNPCR_SHIFT);
	I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);

2133
	return 0;
2134 2135
}

2136 2137 2138
DEFINE_SIMPLE_ATTRIBUTE(i915_cache_sharing_fops,
			i915_cache_sharing_get, i915_cache_sharing_set,
			"%llu\n");
2139

2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157
/* As the drm_debugfs_init() routines are called before dev->dev_private is
 * allocated we need to hook into the minor for release. */
static int
drm_add_fake_info_node(struct drm_minor *minor,
		       struct dentry *ent,
		       const void *key)
{
	struct drm_info_node *node;

	node = kmalloc(sizeof(struct drm_info_node), GFP_KERNEL);
	if (node == NULL) {
		debugfs_remove(ent);
		return -ENOMEM;
	}

	node->minor = minor;
	node->dent = ent;
	node->info_ent = (void *) key;
2158 2159 2160 2161

	mutex_lock(&minor->debugfs_lock);
	list_add(&node->list, &minor->debugfs_list);
	mutex_unlock(&minor->debugfs_lock);
2162 2163 2164 2165

	return 0;
}

2166 2167 2168 2169 2170
static int i915_forcewake_open(struct inode *inode, struct file *file)
{
	struct drm_device *dev = inode->i_private;
	struct drm_i915_private *dev_priv = dev->dev_private;

2171
	if (INTEL_INFO(dev)->gen < 6)
2172 2173 2174 2175 2176 2177 2178
		return 0;

	gen6_gt_force_wake_get(dev_priv);

	return 0;
}

2179
static int i915_forcewake_release(struct inode *inode, struct file *file)
2180 2181 2182 2183
{
	struct drm_device *dev = inode->i_private;
	struct drm_i915_private *dev_priv = dev->dev_private;

2184
	if (INTEL_INFO(dev)->gen < 6)
2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203
		return 0;

	gen6_gt_force_wake_put(dev_priv);

	return 0;
}

static const struct file_operations i915_forcewake_fops = {
	.owner = THIS_MODULE,
	.open = i915_forcewake_open,
	.release = i915_forcewake_release,
};

static int i915_forcewake_create(struct dentry *root, struct drm_minor *minor)
{
	struct drm_device *dev = minor->dev;
	struct dentry *ent;

	ent = debugfs_create_file("i915_forcewake_user",
B
Ben Widawsky 已提交
2204
				  S_IRUSR,
2205 2206 2207 2208 2209
				  root, dev,
				  &i915_forcewake_fops);
	if (IS_ERR(ent))
		return PTR_ERR(ent);

B
Ben Widawsky 已提交
2210
	return drm_add_fake_info_node(minor, ent, &i915_forcewake_fops);
2211 2212
}

2213 2214 2215 2216
static int i915_debugfs_create(struct dentry *root,
			       struct drm_minor *minor,
			       const char *name,
			       const struct file_operations *fops)
2217 2218 2219 2220
{
	struct drm_device *dev = minor->dev;
	struct dentry *ent;

2221
	ent = debugfs_create_file(name,
2222 2223
				  S_IRUGO | S_IWUSR,
				  root, dev,
2224
				  fops);
2225 2226 2227
	if (IS_ERR(ent))
		return PTR_ERR(ent);

2228
	return drm_add_fake_info_node(minor, ent, fops);
2229 2230
}

2231
static struct drm_info_list i915_debugfs_list[] = {
C
Chris Wilson 已提交
2232
	{"i915_capabilities", i915_capabilities, 0},
2233
	{"i915_gem_objects", i915_gem_object_info, 0},
2234
	{"i915_gem_gtt", i915_gem_gtt_info, 0},
2235
	{"i915_gem_pinned", i915_gem_gtt_info, 0, (void *) PINNED_LIST},
2236 2237
	{"i915_gem_active", i915_gem_object_list_info, 0, (void *) ACTIVE_LIST},
	{"i915_gem_inactive", i915_gem_object_list_info, 0, (void *) INACTIVE_LIST},
2238
	{"i915_gem_pageflip", i915_gem_pageflip_info, 0},
2239 2240
	{"i915_gem_request", i915_gem_request_info, 0},
	{"i915_gem_seqno", i915_gem_seqno_info, 0},
2241
	{"i915_gem_fence_regs", i915_gem_fence_regs_info, 0},
2242
	{"i915_gem_interrupt", i915_interrupt_info, 0},
2243 2244 2245
	{"i915_gem_hws", i915_hws_info, 0, (void *)RCS},
	{"i915_gem_hws_blt", i915_hws_info, 0, (void *)BCS},
	{"i915_gem_hws_bsd", i915_hws_info, 0, (void *)VCS},
X
Xiang, Haihao 已提交
2246
	{"i915_gem_hws_vebox", i915_hws_info, 0, (void *)VECS},
2247 2248 2249 2250 2251
	{"i915_rstdby_delays", i915_rstdby_delays, 0},
	{"i915_cur_delayinfo", i915_cur_delayinfo, 0},
	{"i915_delayfreq_table", i915_delayfreq_table, 0},
	{"i915_inttoext_table", i915_inttoext_table, 0},
	{"i915_drpc_info", i915_drpc_info, 0},
2252
	{"i915_emon_status", i915_emon_status, 0},
2253
	{"i915_ring_freq_table", i915_ring_freq_table, 0},
2254
	{"i915_gfxec", i915_gfxec, 0},
2255
	{"i915_fbc_status", i915_fbc_status, 0},
2256
	{"i915_ips_status", i915_ips_status, 0},
2257
	{"i915_sr_status", i915_sr_status, 0},
2258
	{"i915_opregion", i915_opregion, 0},
2259
	{"i915_gem_framebuffer", i915_gem_framebuffer_info, 0},
2260
	{"i915_context_status", i915_context_status, 0},
2261
	{"i915_gen6_forcewake_count", i915_gen6_forcewake_count_info, 0},
2262
	{"i915_swizzle_info", i915_swizzle_info, 0},
D
Daniel Vetter 已提交
2263
	{"i915_ppgtt_info", i915_ppgtt_info, 0},
J
Jesse Barnes 已提交
2264
	{"i915_dpio", i915_dpio_info, 0},
2265
};
2266
#define I915_DEBUGFS_ENTRIES ARRAY_SIZE(i915_debugfs_list)
2267

2268
int i915_debugfs_init(struct drm_minor *minor)
2269
{
2270 2271
	int ret;

2272 2273 2274
	ret = i915_debugfs_create(minor->debugfs_root, minor,
				  "i915_wedged",
				  &i915_wedged_fops);
2275 2276 2277
	if (ret)
		return ret;

2278
	ret = i915_forcewake_create(minor->debugfs_root, minor);
2279 2280
	if (ret)
		return ret;
2281 2282 2283 2284

	ret = i915_debugfs_create(minor->debugfs_root, minor,
				  "i915_max_freq",
				  &i915_max_freq_fops);
2285 2286
	if (ret)
		return ret;
2287

2288 2289 2290 2291 2292 2293
	ret = i915_debugfs_create(minor->debugfs_root, minor,
				  "i915_min_freq",
				  &i915_min_freq_fops);
	if (ret)
		return ret;

2294 2295 2296
	ret = i915_debugfs_create(minor->debugfs_root, minor,
				  "i915_cache_sharing",
				  &i915_cache_sharing_fops);
2297 2298
	if (ret)
		return ret;
2299

2300 2301 2302 2303 2304
	ret = i915_debugfs_create(minor->debugfs_root, minor,
				  "i915_ring_stop",
				  &i915_ring_stop_fops);
	if (ret)
		return ret;
2305

2306 2307 2308 2309 2310 2311
	ret = i915_debugfs_create(minor->debugfs_root, minor,
				  "i915_gem_drop_caches",
				  &i915_drop_caches_fops);
	if (ret)
		return ret;

2312 2313 2314 2315 2316 2317
	ret = i915_debugfs_create(minor->debugfs_root, minor,
				  "i915_error_state",
				  &i915_error_state_fops);
	if (ret)
		return ret;

2318 2319 2320 2321 2322 2323
	ret = i915_debugfs_create(minor->debugfs_root, minor,
				 "i915_next_seqno",
				 &i915_next_seqno_fops);
	if (ret)
		return ret;

2324 2325
	return drm_debugfs_create_files(i915_debugfs_list,
					I915_DEBUGFS_ENTRIES,
2326 2327 2328
					minor->debugfs_root, minor);
}

2329
void i915_debugfs_cleanup(struct drm_minor *minor)
2330
{
2331 2332
	drm_debugfs_remove_files(i915_debugfs_list,
				 I915_DEBUGFS_ENTRIES, minor);
2333 2334
	drm_debugfs_remove_files((struct drm_info_list *) &i915_forcewake_fops,
				 1, minor);
2335 2336
	drm_debugfs_remove_files((struct drm_info_list *) &i915_wedged_fops,
				 1, minor);
2337 2338
	drm_debugfs_remove_files((struct drm_info_list *) &i915_max_freq_fops,
				 1, minor);
2339 2340
	drm_debugfs_remove_files((struct drm_info_list *) &i915_min_freq_fops,
				 1, minor);
2341 2342
	drm_debugfs_remove_files((struct drm_info_list *) &i915_cache_sharing_fops,
				 1, minor);
2343 2344
	drm_debugfs_remove_files((struct drm_info_list *) &i915_drop_caches_fops,
				 1, minor);
2345 2346
	drm_debugfs_remove_files((struct drm_info_list *) &i915_ring_stop_fops,
				 1, minor);
2347 2348
	drm_debugfs_remove_files((struct drm_info_list *) &i915_error_state_fops,
				 1, minor);
2349 2350
	drm_debugfs_remove_files((struct drm_info_list *) &i915_next_seqno_fops,
				 1, minor);
2351 2352 2353
}

#endif /* CONFIG_DEBUG_FS */