i915_debugfs.c 78.6 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/circ_buf.h>
31
#include <linux/ctype.h>
32
#include <linux/debugfs.h>
33
#include <linux/slab.h>
34
#include <linux/export.h>
35
#include <linux/list_sort.h>
36
#include <asm/msr-index.h>
37
#include <drm/drmP.h>
38
#include "intel_drv.h"
39
#include "intel_ringbuffer.h"
40
#include <drm/i915_drm.h>
41 42 43 44
#include "i915_drv.h"

#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
static const char *yesno(int v)
{
	return v ? "yes" : "no";
}

56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
/* 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(*node), GFP_KERNEL);
	if (node == NULL) {
		debugfs_remove(ent);
		return -ENOMEM;
	}

	node->minor = minor;
	node->dent = ent;
	node->info_ent = (void *) key;

	mutex_lock(&minor->debugfs_lock);
	list_add(&node->list, &minor->debugfs_list);
	mutex_unlock(&minor->debugfs_lock);

	return 0;
}

82 83 84 85 86 87 88
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);
89
	seq_printf(m, "pch: %d\n", INTEL_PCH_TYPE(dev));
90 91 92 93 94
#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
95 96 97

	return 0;
}
98

99
static const char *get_pin_flag(struct drm_i915_gem_object *obj)
100
{
101
	if (obj->user_pin_count > 0)
102
		return "P";
103
	else if (obj->pin_count > 0)
104 105 106 107 108
		return "p";
	else
		return " ";
}

109
static const char *get_tiling_flag(struct drm_i915_gem_object *obj)
110
{
111 112 113 114 115 116
	switch (obj->tiling_mode) {
	default:
	case I915_TILING_NONE: return " ";
	case I915_TILING_X: return "X";
	case I915_TILING_Y: return "Y";
	}
117 118
}

B
Ben Widawsky 已提交
119 120 121 122 123
static inline const char *get_global_flag(struct drm_i915_gem_object *obj)
{
	return obj->has_global_gtt_mapping ? "g" : " ";
}

124 125 126
static void
describe_obj(struct seq_file *m, struct drm_i915_gem_object *obj)
{
B
Ben Widawsky 已提交
127
	struct i915_vma *vma;
128
	seq_printf(m, "%pK: %s%s%s %8zdKiB %02x %02x %u %u %u%s%s%s",
129 130 131
		   &obj->base,
		   get_pin_flag(obj),
		   get_tiling_flag(obj),
B
Ben Widawsky 已提交
132
		   get_global_flag(obj),
133
		   obj->base.size / 1024,
134 135
		   obj->base.read_domains,
		   obj->base.write_domain,
136 137
		   obj->last_read_seqno,
		   obj->last_write_seqno,
138
		   obj->last_fenced_seqno,
139
		   i915_cache_level_str(obj->cache_level),
140 141 142 143
		   obj->dirty ? " dirty" : "",
		   obj->madv == I915_MADV_DONTNEED ? " purgeable" : "");
	if (obj->base.name)
		seq_printf(m, " (name: %d)", obj->base.name);
144 145
	if (obj->pin_count)
		seq_printf(m, " (pinned x %d)", obj->pin_count);
146 147
	if (obj->pin_display)
		seq_printf(m, " (display)");
148 149
	if (obj->fence_reg != I915_FENCE_REG_NONE)
		seq_printf(m, " (fence: %d)", obj->fence_reg);
B
Ben Widawsky 已提交
150 151 152 153 154 155 156 157
	list_for_each_entry(vma, &obj->vma_list, vma_link) {
		if (!i915_is_ggtt(vma->vm))
			seq_puts(m, " (pp");
		else
			seq_puts(m, " (g");
		seq_printf(m, "gtt offset: %08lx, size: %08lx)",
			   vma->node.start, vma->node.size);
	}
158 159
	if (obj->stolen)
		seq_printf(m, " (stolen: %08lx)", obj->stolen->start);
160 161 162 163 164 165 166 167 168
	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);
	}
169 170
	if (obj->ring != NULL)
		seq_printf(m, " (%s)", obj->ring->name);
171 172
}

173 174 175 176 177 178 179
static void describe_ctx(struct seq_file *m, struct i915_hw_context *ctx)
{
	seq_putc(m, ctx->is_initialized ? 'I' : 'i');
	seq_putc(m, ctx->remap_slice ? 'R' : 'r');
	seq_putc(m, ' ');
}

180
static int i915_gem_object_list_info(struct seq_file *m, void *data)
181 182
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
183 184
	uintptr_t list = (uintptr_t) node->info_ent->data;
	struct list_head *head;
185
	struct drm_device *dev = node->minor->dev;
186 187
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct i915_address_space *vm = &dev_priv->gtt.base;
B
Ben Widawsky 已提交
188
	struct i915_vma *vma;
189 190
	size_t total_obj_size, total_gtt_size;
	int count, ret;
191 192 193 194

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

B
Ben Widawsky 已提交
196
	/* FIXME: the user of this interface might want more than just GGTT */
197 198
	switch (list) {
	case ACTIVE_LIST:
199
		seq_puts(m, "Active:\n");
200
		head = &vm->active_list;
201 202
		break;
	case INACTIVE_LIST:
203
		seq_puts(m, "Inactive:\n");
204
		head = &vm->inactive_list;
205 206
		break;
	default:
207 208
		mutex_unlock(&dev->struct_mutex);
		return -EINVAL;
209 210
	}

211
	total_obj_size = total_gtt_size = count = 0;
B
Ben Widawsky 已提交
212 213 214 215 216 217
	list_for_each_entry(vma, head, mm_list) {
		seq_printf(m, "   ");
		describe_obj(m, vma->obj);
		seq_printf(m, "\n");
		total_obj_size += vma->obj->base.size;
		total_gtt_size += vma->node.size;
218
		count++;
219
	}
220
	mutex_unlock(&dev->struct_mutex);
221

222 223
	seq_printf(m, "Total %d objects, %zu bytes, %zu GTT size\n",
		   count, total_obj_size, total_gtt_size);
224 225 226
	return 0;
}

227 228 229 230
static int obj_rank_by_stolen(void *priv,
			      struct list_head *A, struct list_head *B)
{
	struct drm_i915_gem_object *a =
231
		container_of(A, struct drm_i915_gem_object, obj_exec_link);
232
	struct drm_i915_gem_object *b =
233
		container_of(B, struct drm_i915_gem_object, obj_exec_link);
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256

	return a->stolen->start - b->stolen->start;
}

static int i915_gem_stolen_list_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 drm_i915_gem_object *obj;
	size_t total_obj_size, total_gtt_size;
	LIST_HEAD(stolen);
	int count, ret;

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

	total_obj_size = total_gtt_size = count = 0;
	list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
		if (obj->stolen == NULL)
			continue;

257
		list_add(&obj->obj_exec_link, &stolen);
258 259 260 261 262 263 264 265 266

		total_obj_size += obj->base.size;
		total_gtt_size += i915_gem_obj_ggtt_size(obj);
		count++;
	}
	list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
		if (obj->stolen == NULL)
			continue;

267
		list_add(&obj->obj_exec_link, &stolen);
268 269 270 271 272 273 274

		total_obj_size += obj->base.size;
		count++;
	}
	list_sort(NULL, &stolen, obj_rank_by_stolen);
	seq_puts(m, "Stolen:\n");
	while (!list_empty(&stolen)) {
275
		obj = list_first_entry(&stolen, typeof(*obj), obj_exec_link);
276 277 278
		seq_puts(m, "   ");
		describe_obj(m, obj);
		seq_putc(m, '\n');
279
		list_del_init(&obj->obj_exec_link);
280 281 282 283 284 285 286 287
	}
	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;
}

288 289
#define count_objects(list, member) do { \
	list_for_each_entry(obj, list, member) { \
290
		size += i915_gem_obj_ggtt_size(obj); \
291 292
		++count; \
		if (obj->map_and_fenceable) { \
293
			mappable_size += i915_gem_obj_ggtt_size(obj); \
294 295 296
			++mappable_count; \
		} \
	} \
297
} while (0)
298

299 300 301 302 303 304 305 306 307 308 309 310 311
struct file_stats {
	int count;
	size_t total, active, inactive, unbound;
};

static int per_file_stats(int id, void *ptr, void *data)
{
	struct drm_i915_gem_object *obj = ptr;
	struct file_stats *stats = data;

	stats->count++;
	stats->total += obj->base.size;

312
	if (i915_gem_obj_ggtt_bound(obj)) {
313 314 315 316 317 318 319 320 321 322 323 324
		if (!list_empty(&obj->ring_list))
			stats->active += obj->base.size;
		else
			stats->inactive += obj->base.size;
	} else {
		if (!list_empty(&obj->global_list))
			stats->unbound += obj->base.size;
	}

	return 0;
}

B
Ben Widawsky 已提交
325 326 327 328 329 330 331 332 333 334 335 336
#define count_vmas(list, member) do { \
	list_for_each_entry(vma, list, member) { \
		size += i915_gem_obj_ggtt_size(vma->obj); \
		++count; \
		if (vma->obj->map_and_fenceable) { \
			mappable_size += i915_gem_obj_ggtt_size(vma->obj); \
			++mappable_count; \
		} \
	} \
} while (0)

static int i915_gem_object_info(struct seq_file *m, void* data)
337 338 339 340
{
	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;
341 342
	u32 count, mappable_count, purgeable_count;
	size_t size, mappable_size, purgeable_size;
343
	struct drm_i915_gem_object *obj;
344
	struct i915_address_space *vm = &dev_priv->gtt.base;
345
	struct drm_file *file;
B
Ben Widawsky 已提交
346
	struct i915_vma *vma;
347 348 349 350 351 352
	int ret;

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

353 354 355 356 357
	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;
358
	count_objects(&dev_priv->mm.bound_list, global_list);
359 360 361 362
	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;
B
Ben Widawsky 已提交
363
	count_vmas(&vm->active_list, mm_list);
364 365 366 367
	seq_printf(m, "  %u [%u] active objects, %zu [%zu] bytes\n",
		   count, mappable_count, size, mappable_size);

	size = count = mappable_size = mappable_count = 0;
B
Ben Widawsky 已提交
368
	count_vmas(&vm->inactive_list, mm_list);
369 370 371
	seq_printf(m, "  %u [%u] inactive objects, %zu [%zu] bytes\n",
		   count, mappable_count, size, mappable_size);

372
	size = count = purgeable_size = purgeable_count = 0;
373
	list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
C
Chris Wilson 已提交
374
		size += obj->base.size, ++count;
375 376 377
		if (obj->madv == I915_MADV_DONTNEED)
			purgeable_size += obj->base.size, ++purgeable_count;
	}
C
Chris Wilson 已提交
378 379
	seq_printf(m, "%u unbound objects, %zu bytes\n", count, size);

380
	size = count = mappable_size = mappable_count = 0;
381
	list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
382
		if (obj->fault_mappable) {
383
			size += i915_gem_obj_ggtt_size(obj);
384 385 386
			++count;
		}
		if (obj->pin_mappable) {
387
			mappable_size += i915_gem_obj_ggtt_size(obj);
388 389
			++mappable_count;
		}
390 391 392 393
		if (obj->madv == I915_MADV_DONTNEED) {
			purgeable_size += obj->base.size;
			++purgeable_count;
		}
394
	}
395 396
	seq_printf(m, "%u purgeable objects, %zu bytes\n",
		   purgeable_count, purgeable_size);
397 398 399 400 401
	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);

402
	seq_printf(m, "%zu [%lu] gtt total\n",
403 404
		   dev_priv->gtt.base.total,
		   dev_priv->gtt.mappable_end - dev_priv->gtt.base.start);
405

406
	seq_putc(m, '\n');
407 408 409 410 411 412 413 414 415 416 417 418 419 420
	list_for_each_entry_reverse(file, &dev->filelist, lhead) {
		struct file_stats stats;

		memset(&stats, 0, sizeof(stats));
		idr_for_each(&file->object_idr, per_file_stats, &stats);
		seq_printf(m, "%s: %u objects, %zu bytes (%zu active, %zu inactive, %zu unbound)\n",
			   get_pid_task(file->pid, PIDTYPE_PID)->comm,
			   stats.count,
			   stats.total,
			   stats.active,
			   stats.inactive,
			   stats.unbound);
	}

421 422 423 424 425
	mutex_unlock(&dev->struct_mutex);

	return 0;
}

426
static int i915_gem_gtt_info(struct seq_file *m, void *data)
427 428 429
{
	struct drm_info_node *node = (struct drm_info_node *) m->private;
	struct drm_device *dev = node->minor->dev;
430
	uintptr_t list = (uintptr_t) node->info_ent->data;
431 432 433 434 435 436 437 438 439 440
	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;
441
	list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
442 443 444
		if (list == PINNED_LIST && obj->pin_count == 0)
			continue;

445
		seq_puts(m, "   ");
446
		describe_obj(m, obj);
447
		seq_putc(m, '\n');
448
		total_obj_size += obj->base.size;
449
		total_gtt_size += i915_gem_obj_ggtt_size(obj);
450 451 452 453 454 455 456 457 458 459 460
		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;
}

461 462 463 464 465 466 467 468
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) {
469 470
		const char pipe = pipe_name(crtc->pipe);
		const char plane = plane_name(crtc->plane);
471 472 473 474 475
		struct intel_unpin_work *work;

		spin_lock_irqsave(&dev->event_lock, flags);
		work = crtc->unpin_work;
		if (work == NULL) {
476
			seq_printf(m, "No flip due on pipe %c (plane %c)\n",
477 478
				   pipe, plane);
		} else {
479
			if (atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
480
				seq_printf(m, "Flip queued on pipe %c (plane %c)\n",
481 482
					   pipe, plane);
			} else {
483
				seq_printf(m, "Flip pending (waiting for vsync) on pipe %c (plane %c)\n",
484 485 486
					   pipe, plane);
			}
			if (work->enable_stall_check)
487
				seq_puts(m, "Stall check enabled, ");
488
			else
489
				seq_puts(m, "Stall check waiting for page flip ioctl, ");
490
			seq_printf(m, "%d prepares\n", atomic_read(&work->pending));
491 492

			if (work->old_fb_obj) {
493 494
				struct drm_i915_gem_object *obj = work->old_fb_obj;
				if (obj)
495 496
					seq_printf(m, "Old framebuffer gtt_offset 0x%08lx\n",
						   i915_gem_obj_ggtt_offset(obj));
497 498
			}
			if (work->pending_flip_obj) {
499 500
				struct drm_i915_gem_object *obj = work->pending_flip_obj;
				if (obj)
501 502
					seq_printf(m, "New framebuffer gtt_offset 0x%08lx\n",
						   i915_gem_obj_ggtt_offset(obj));
503 504 505 506 507 508 509 510
			}
		}
		spin_unlock_irqrestore(&dev->event_lock, flags);
	}

	return 0;
}

511 512 513 514 515
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;
516
	struct intel_ring_buffer *ring;
517
	struct drm_i915_gem_request *gem_request;
518
	int ret, count, i;
519 520 521 522

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

524
	count = 0;
525 526 527 528 529
	for_each_ring(ring, dev_priv, i) {
		if (list_empty(&ring->request_list))
			continue;

		seq_printf(m, "%s requests:\n", ring->name);
530
		list_for_each_entry(gem_request,
531
				    &ring->request_list,
532 533 534 535 536 537
				    list) {
			seq_printf(m, "    %d @ %d\n",
				   gem_request->seqno,
				   (int) (jiffies - gem_request->emitted_jiffies));
		}
		count++;
538
	}
539 540
	mutex_unlock(&dev->struct_mutex);

541
	if (count == 0)
542
		seq_puts(m, "No requests\n");
543

544 545 546
	return 0;
}

547 548 549 550
static void i915_ring_seqno_info(struct seq_file *m,
				 struct intel_ring_buffer *ring)
{
	if (ring->get_seqno) {
551
		seq_printf(m, "Current sequence (%s): %u\n",
552
			   ring->name, ring->get_seqno(ring, false));
553 554 555
	}
}

556 557 558 559 560
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;
561
	struct intel_ring_buffer *ring;
562
	int ret, i;
563 564 565 566

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

568 569
	for_each_ring(ring, dev_priv, i)
		i915_ring_seqno_info(m, ring);
570 571 572

	mutex_unlock(&dev->struct_mutex);

573 574 575 576 577 578 579 580 581
	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;
582
	struct intel_ring_buffer *ring;
583
	int ret, i, pipe;
584 585 586 587

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

J
Jesse Barnes 已提交
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627
	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)) {
628 629 630 631 632 633
		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));
634 635 636 637
		for_each_pipe(pipe)
			seq_printf(m, "Pipe %c stat:         %08x\n",
				   pipe_name(pipe),
				   I915_READ(PIPESTAT(pipe)));
638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657
	} 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));
	}
658 659
	seq_printf(m, "Interrupts received: %d\n",
		   atomic_read(&dev_priv->irq_received));
660
	for_each_ring(ring, dev_priv, i) {
661
		if (IS_GEN6(dev) || IS_GEN7(dev)) {
662 663 664
			seq_printf(m,
				   "Graphics Interrupt mask (%s):	%08x\n",
				   ring->name, I915_READ_IMR(ring));
665
		}
666
		i915_ring_seqno_info(m, ring);
667
	}
668 669
	mutex_unlock(&dev->struct_mutex);

670 671 672
	return 0;
}

673 674 675 676 677
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;
678 679 680 681 682
	int i, ret;

	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;
683 684 685 686

	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++) {
687
		struct drm_i915_gem_object *obj = dev_priv->fence_regs[i].obj;
688

C
Chris Wilson 已提交
689 690
		seq_printf(m, "Fence %d, pin count = %d, object = ",
			   i, dev_priv->fence_regs[i].pin_count);
691
		if (obj == NULL)
692
			seq_puts(m, "unused");
693
		else
694
			describe_obj(m, obj);
695
		seq_putc(m, '\n');
696 697
	}

698
	mutex_unlock(&dev->struct_mutex);
699 700 701
	return 0;
}

702 703 704 705 706
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;
707
	struct intel_ring_buffer *ring;
D
Daniel Vetter 已提交
708
	const u32 *hws;
709 710
	int i;

711
	ring = &dev_priv->ring[(uintptr_t)node->info_ent->data];
D
Daniel Vetter 已提交
712
	hws = ring->status_page.page_addr;
713 714 715 716 717 718 719 720 721 722 723
	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;
}

724 725 726 727 728 729
static ssize_t
i915_error_state_write(struct file *filp,
		       const char __user *ubuf,
		       size_t cnt,
		       loff_t *ppos)
{
730
	struct i915_error_state_file_priv *error_priv = filp->private_data;
731
	struct drm_device *dev = error_priv->dev;
732
	int ret;
733 734 735

	DRM_DEBUG_DRIVER("Resetting error state\n");

736 737 738 739
	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;

740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756
	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;
	struct i915_error_state_file_priv *error_priv;

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

	error_priv->dev = dev;

757
	i915_error_state_get(dev, error_priv);
758

759 760 761
	file->private_data = error_priv;

	return 0;
762 763 764 765
}

static int i915_error_state_release(struct inode *inode, struct file *file)
{
766
	struct i915_error_state_file_priv *error_priv = file->private_data;
767

768
	i915_error_state_put(error_priv);
769 770
	kfree(error_priv);

771 772 773
	return 0;
}

774 775 776 777 778 779 780 781 782 783 784 785
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;

	ret = i915_error_state_buf_init(&error_str, count, *pos);
	if (ret)
		return ret;
786

787
	ret = i915_error_state_to_str(&error_str, error_priv);
788 789 790 791 792 793 794 795 796 797 798 799
	if (ret)
		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:
800
	i915_error_state_buf_release(&error_str);
801
	return ret ?: ret_count;
802 803 804 805 806
}

static const struct file_operations i915_error_state_fops = {
	.owner = THIS_MODULE,
	.open = i915_error_state_open,
807
	.read = i915_error_state_read,
808 809 810 811 812
	.write = i915_error_state_write,
	.llseek = default_llseek,
	.release = i915_error_state_release,
};

813 814
static int
i915_next_seqno_get(void *data, u64 *val)
815
{
816
	struct drm_device *dev = data;
817 818 819 820 821 822 823
	drm_i915_private_t *dev_priv = dev->dev_private;
	int ret;

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

824
	*val = dev_priv->next_seqno;
825 826
	mutex_unlock(&dev->struct_mutex);

827
	return 0;
828 829
}

830 831 832 833
static int
i915_next_seqno_set(void *data, u64 val)
{
	struct drm_device *dev = data;
834 835 836 837 838 839
	int ret;

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

840
	ret = i915_gem_set_seqno(dev, val);
841 842
	mutex_unlock(&dev->struct_mutex);

843
	return ret;
844 845
}

846 847
DEFINE_SIMPLE_ATTRIBUTE(i915_next_seqno_fops,
			i915_next_seqno_get, i915_next_seqno_set,
848
			"0x%llx\n");
849

850 851 852 853 854
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;
855 856 857 858 859 860 861 862 863 864
	u16 crstanddelay;
	int ret;

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

	crstanddelay = I915_READ16(CRSTANDVID);

	mutex_unlock(&dev->struct_mutex);
865 866 867 868 869 870 871 872 873 874 875

	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;
876
	int ret;
877

878 879
	flush_delayed_work(&dev_priv->rps.delayed_resume_work);

880 881 882 883 884 885 886 887 888 889
	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);
890
	} else if ((IS_GEN6(dev) || IS_GEN7(dev)) && !IS_VALLEYVIEW(dev)) {
891 892 893
		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);
894
		u32 rpstat, cagf, reqf;
895 896
		u32 rpupei, rpcurup, rpprevup;
		u32 rpdownei, rpcurdown, rpprevdown;
897 898 899
		int max_freq;

		/* RPSTAT1 is in the GT power well */
900 901 902 903
		ret = mutex_lock_interruptible(&dev->struct_mutex);
		if (ret)
			return ret;

904
		gen6_gt_force_wake_get(dev_priv);
905

906 907 908 909 910 911 912 913
		reqf = I915_READ(GEN6_RPNSWREQ);
		reqf &= ~GEN6_TURBO_DISABLE;
		if (IS_HASWELL(dev))
			reqf >>= 24;
		else
			reqf >>= 25;
		reqf *= GT_FREQUENCY_MULTIPLIER;

914 915 916 917 918 919 920
		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 已提交
921 922 923 924 925
		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;
926

927 928 929
		gen6_gt_force_wake_put(dev_priv);
		mutex_unlock(&dev->struct_mutex);

930
		seq_printf(m, "GT_PERF_STATUS: 0x%08x\n", gt_perf_status);
931
		seq_printf(m, "RPSTAT1: 0x%08x\n", rpstat);
932 933 934 935 936 937
		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);
938
		seq_printf(m, "RPNSWREQ: %dMHz\n", reqf);
B
Ben Widawsky 已提交
939
		seq_printf(m, "CAGF: %dMHz\n", cagf);
940 941 942 943 944 945 946 947 948 949 950 951
		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);
952 953 954

		max_freq = (rp_state_cap & 0xff0000) >> 16;
		seq_printf(m, "Lowest (RPN) frequency: %dMHz\n",
955
			   max_freq * GT_FREQUENCY_MULTIPLIER);
956 957 958

		max_freq = (rp_state_cap & 0xff00) >> 8;
		seq_printf(m, "Nominal (RP1) frequency: %dMHz\n",
959
			   max_freq * GT_FREQUENCY_MULTIPLIER);
960 961 962

		max_freq = rp_state_cap & 0xff;
		seq_printf(m, "Max non-overclocked (RP0) frequency: %dMHz\n",
963
			   max_freq * GT_FREQUENCY_MULTIPLIER);
964 965 966

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

970
		mutex_lock(&dev_priv->rps.hw_lock);
971
		freq_sts = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
972 973 974
		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);

975
		val = valleyview_rps_max_freq(dev_priv);
976
		seq_printf(m, "max GPU freq: %d MHz\n",
977
			   vlv_gpu_freq(dev_priv, val));
978

979
		val = valleyview_rps_min_freq(dev_priv);
980
		seq_printf(m, "min GPU freq: %d MHz\n",
981
			   vlv_gpu_freq(dev_priv, val));
982 983

		seq_printf(m, "current GPU freq: %d MHz\n",
984
			   vlv_gpu_freq(dev_priv, (freq_sts >> 8) & 0xff));
985
		mutex_unlock(&dev_priv->rps.hw_lock);
986
	} else {
987
		seq_puts(m, "no P-state info available\n");
988
	}
989 990 991 992 993 994 995 996 997 998

	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;
999 1000 1001 1002 1003
	int ret, i;

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

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

1011 1012
	mutex_unlock(&dev->struct_mutex);

1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026
	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;
1027 1028 1029 1030 1031
	int ret, i;

	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;
1032 1033 1034 1035 1036 1037

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

1038 1039
	mutex_unlock(&dev->struct_mutex);

1040 1041 1042
	return 0;
}

1043
static int ironlake_drpc_info(struct seq_file *m)
1044 1045 1046 1047
{
	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;
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060
	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);
1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074

	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);
1075
	seq_printf(m, "Max P-state: P%d\n",
1076
		   (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT);
1077 1078 1079 1080 1081
	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");
1082
	seq_puts(m, "Current RS state: ");
1083 1084
	switch (rstdbyctl & RSX_STATUS_MASK) {
	case RSX_STATUS_ON:
1085
		seq_puts(m, "on\n");
1086 1087
		break;
	case RSX_STATUS_RC1:
1088
		seq_puts(m, "RC1\n");
1089 1090
		break;
	case RSX_STATUS_RC1E:
1091
		seq_puts(m, "RC1E\n");
1092 1093
		break;
	case RSX_STATUS_RS1:
1094
		seq_puts(m, "RS1\n");
1095 1096
		break;
	case RSX_STATUS_RS2:
1097
		seq_puts(m, "RS2 (RC6)\n");
1098 1099
		break;
	case RSX_STATUS_RS3:
1100
		seq_puts(m, "RC3 (RC6+)\n");
1101 1102
		break;
	default:
1103
		seq_puts(m, "unknown\n");
1104 1105
		break;
	}
1106 1107 1108 1109

	return 0;
}

1110 1111 1112 1113 1114 1115
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 已提交
1116
	u32 rpmodectl1, gt_core_status, rcctl1, rc6vids = 0;
1117
	unsigned forcewake_count;
1118
	int count = 0, ret;
1119 1120 1121 1122 1123

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

1124 1125 1126
	spin_lock_irq(&dev_priv->uncore.lock);
	forcewake_count = dev_priv->uncore.forcewake_count;
	spin_unlock_irq(&dev_priv->uncore.lock);
1127 1128

	if (forcewake_count) {
1129 1130
		seq_puts(m, "RC information inaccurate because somebody "
			    "holds a forcewake reference \n");
1131 1132 1133 1134 1135 1136 1137 1138
	} 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);
1139
	trace_i915_reg_rw(false, GEN6_GT_CORE_STATUS, gt_core_status, 4, true);
1140 1141 1142 1143

	rpmodectl1 = I915_READ(GEN6_RP_CONTROL);
	rcctl1 = I915_READ(GEN6_RC_CONTROL);
	mutex_unlock(&dev->struct_mutex);
1144 1145 1146
	mutex_lock(&dev_priv->rps.hw_lock);
	sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
	mutex_unlock(&dev_priv->rps.hw_lock);
1147 1148 1149 1150 1151 1152 1153 1154

	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));
1155
	seq_printf(m, "RC1e Enabled: %s\n",
1156 1157 1158 1159 1160 1161 1162
		   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));
1163
	seq_puts(m, "Current RC state: ");
1164 1165 1166
	switch (gt_core_status & GEN6_RCn_MASK) {
	case GEN6_RC0:
		if (gt_core_status & GEN6_CORE_CPD_STATE_MASK)
1167
			seq_puts(m, "Core Power Down\n");
1168
		else
1169
			seq_puts(m, "on\n");
1170 1171
		break;
	case GEN6_RC3:
1172
		seq_puts(m, "RC3\n");
1173 1174
		break;
	case GEN6_RC6:
1175
		seq_puts(m, "RC6\n");
1176 1177
		break;
	case GEN6_RC7:
1178
		seq_puts(m, "RC7\n");
1179 1180
		break;
	default:
1181
		seq_puts(m, "Unknown\n");
1182 1183 1184 1185 1186
		break;
	}

	seq_printf(m, "Core Power Down: %s\n",
		   yesno(gt_core_status & GEN6_CORE_CPD_STATE_MASK));
1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197

	/* 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 已提交
1198 1199 1200 1201 1202 1203
	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)));
1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217
	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);
}

1218 1219 1220 1221 1222 1223
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;

1224
	if (!I915_HAS_FBC(dev)) {
1225
		seq_puts(m, "FBC unsupported on this chipset\n");
1226 1227 1228
		return 0;
	}

1229
	if (intel_fbc_enabled(dev)) {
1230
		seq_puts(m, "FBC enabled\n");
1231
	} else {
1232
		seq_puts(m, "FBC disabled: ");
1233
		switch (dev_priv->fbc.no_fbc_reason) {
1234 1235 1236 1237 1238 1239
		case FBC_OK:
			seq_puts(m, "FBC actived, but currently disabled in hardware");
			break;
		case FBC_UNSUPPORTED:
			seq_puts(m, "unsupported by this chipset");
			break;
C
Chris Wilson 已提交
1240
		case FBC_NO_OUTPUT:
1241
			seq_puts(m, "no outputs");
C
Chris Wilson 已提交
1242
			break;
1243
		case FBC_STOLEN_TOO_SMALL:
1244
			seq_puts(m, "not enough stolen memory");
1245 1246
			break;
		case FBC_UNSUPPORTED_MODE:
1247
			seq_puts(m, "mode not supported");
1248 1249
			break;
		case FBC_MODE_TOO_LARGE:
1250
			seq_puts(m, "mode too large");
1251 1252
			break;
		case FBC_BAD_PLANE:
1253
			seq_puts(m, "FBC unsupported on plane");
1254 1255
			break;
		case FBC_NOT_TILED:
1256
			seq_puts(m, "scanout buffer not tiled");
1257
			break;
1258
		case FBC_MULTIPLE_PIPES:
1259
			seq_puts(m, "multiple pipes are enabled");
1260
			break;
1261
		case FBC_MODULE_PARAM:
1262
			seq_puts(m, "disabled per module param (default off)");
1263
			break;
1264
		case FBC_CHIP_DEFAULT:
1265
			seq_puts(m, "disabled per chip default");
1266
			break;
1267
		default:
1268
			seq_puts(m, "unknown reason");
1269
		}
1270
		seq_putc(m, '\n');
1271 1272 1273 1274
	}
	return 0;
}

1275 1276 1277 1278 1279 1280
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;

1281
	if (!HAS_IPS(dev)) {
1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293
		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;
}

1294 1295 1296 1297 1298 1299 1300
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;

1301
	if (HAS_PCH_SPLIT(dev))
1302
		sr_enabled = I915_READ(WM1_LP_ILK) & WM1_LP_SR_EN;
1303
	else if (IS_CRESTLINE(dev) || IS_I945G(dev) || IS_I945GM(dev))
1304 1305 1306 1307 1308 1309
		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;

1310 1311
	seq_printf(m, "self-refresh: %s\n",
		   sr_enabled ? "enabled" : "disabled");
1312 1313 1314 1315

	return 0;
}

1316 1317 1318 1319 1320 1321
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;
1322 1323
	int ret;

1324 1325 1326
	if (!IS_GEN5(dev))
		return -ENODEV;

1327 1328 1329
	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;
1330 1331 1332 1333

	temp = i915_mch_val(dev_priv);
	chipset = i915_chipset_val(dev_priv);
	gfx = i915_gfx_val(dev_priv);
1334
	mutex_unlock(&dev->struct_mutex);
1335 1336 1337 1338 1339 1340 1341 1342 1343

	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;
}

1344 1345 1346 1347 1348 1349 1350 1351
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;

1352
	if (!(IS_GEN6(dev) || IS_GEN7(dev))) {
1353
		seq_puts(m, "unsupported on this chipset\n");
1354 1355 1356
		return 0;
	}

1357 1358
	flush_delayed_work(&dev_priv->rps.delayed_resume_work);

1359
	ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
1360 1361 1362
	if (ret)
		return ret;

1363
	seq_puts(m, "GPU freq (MHz)\tEffective CPU freq (MHz)\tEffective Ring freq (MHz)\n");
1364

1365 1366
	for (gpu_freq = dev_priv->rps.min_delay;
	     gpu_freq <= dev_priv->rps.max_delay;
1367
	     gpu_freq++) {
B
Ben Widawsky 已提交
1368 1369 1370 1371
		ia_freq = gpu_freq;
		sandybridge_pcode_read(dev_priv,
				       GEN6_PCODE_READ_MIN_FREQ_TABLE,
				       &ia_freq);
1372 1373 1374 1375
		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);
1376 1377
	}

1378
	mutex_unlock(&dev_priv->rps.hw_lock);
1379 1380 1381 1382

	return 0;
}

1383 1384 1385 1386 1387
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;
1388 1389 1390 1391 1392
	int ret;

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

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

1396 1397
	mutex_unlock(&dev->struct_mutex);

1398 1399 1400
	return 0;
}

1401 1402 1403 1404 1405 1406
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;
1407
	void *data = kmalloc(OPREGION_SIZE, GFP_KERNEL);
1408 1409
	int ret;

1410 1411 1412
	if (data == NULL)
		return -ENOMEM;

1413 1414
	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
1415
		goto out;
1416

1417 1418 1419 1420
	if (opregion->header) {
		memcpy_fromio(data, opregion->header, OPREGION_SIZE);
		seq_write(m, data, OPREGION_SIZE);
	}
1421 1422 1423

	mutex_unlock(&dev->struct_mutex);

1424 1425
out:
	kfree(data);
1426 1427 1428
	return 0;
}

1429 1430 1431 1432
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;
1433
	struct intel_fbdev *ifbdev = NULL;
1434 1435
	struct intel_framebuffer *fb;

1436 1437 1438
#ifdef CONFIG_DRM_I915_FBDEV
	struct drm_i915_private *dev_priv = dev->dev_private;
	int ret = mutex_lock_interruptible(&dev->mode_config.mutex);
1439 1440 1441 1442 1443 1444
	if (ret)
		return ret;

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

1445
	seq_printf(m, "fbcon size: %d x %d, depth %d, %d bpp, refcount %d, obj ",
1446 1447 1448
		   fb->base.width,
		   fb->base.height,
		   fb->base.depth,
1449 1450
		   fb->base.bits_per_pixel,
		   atomic_read(&fb->base.refcount.refcount));
1451
	describe_obj(m, fb->obj);
1452
	seq_putc(m, '\n');
1453
	mutex_unlock(&dev->mode_config.mutex);
1454
#endif
1455

1456
	mutex_lock(&dev->mode_config.fb_lock);
1457
	list_for_each_entry(fb, &dev->mode_config.fb_list, base.head) {
1458
		if (ifbdev && &fb->base == ifbdev->helper.fb)
1459 1460
			continue;

1461
		seq_printf(m, "user size: %d x %d, depth %d, %d bpp, refcount %d, obj ",
1462 1463 1464
			   fb->base.width,
			   fb->base.height,
			   fb->base.depth,
1465 1466
			   fb->base.bits_per_pixel,
			   atomic_read(&fb->base.refcount.refcount));
1467
		describe_obj(m, fb->obj);
1468
		seq_putc(m, '\n');
1469
	}
1470
	mutex_unlock(&dev->mode_config.fb_lock);
1471 1472 1473 1474

	return 0;
}

1475 1476 1477 1478 1479
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;
1480
	struct intel_ring_buffer *ring;
1481
	struct i915_hw_context *ctx;
1482
	int ret, i;
1483 1484 1485 1486 1487

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

1488
	if (dev_priv->ips.pwrctx) {
1489
		seq_puts(m, "power context ");
1490
		describe_obj(m, dev_priv->ips.pwrctx);
1491
		seq_putc(m, '\n');
1492
	}
1493

1494
	if (dev_priv->ips.renderctx) {
1495
		seq_puts(m, "render context ");
1496
		describe_obj(m, dev_priv->ips.renderctx);
1497
		seq_putc(m, '\n');
1498
	}
1499

1500 1501
	list_for_each_entry(ctx, &dev_priv->context_list, link) {
		seq_puts(m, "HW context ");
1502
		describe_ctx(m, ctx);
1503 1504 1505 1506 1507 1508
		for_each_ring(ring, dev_priv, i)
			if (ring->default_context == ctx)
				seq_printf(m, "(default context %s) ", ring->name);

		describe_obj(m, ctx->obj);
		seq_putc(m, '\n');
1509 1510
	}

1511 1512 1513 1514 1515
	mutex_unlock(&dev->mode_config.mutex);

	return 0;
}

1516 1517 1518 1519 1520
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;
1521
	unsigned forcewake_count;
1522

1523 1524 1525
	spin_lock_irq(&dev_priv->uncore.lock);
	forcewake_count = dev_priv->uncore.forcewake_count;
	spin_unlock_irq(&dev_priv->uncore.lock);
1526

1527
	seq_printf(m, "forcewake count = %u\n", forcewake_count);
1528 1529 1530 1531

	return 0;
}

1532 1533
static const char *swizzle_string(unsigned swizzle)
{
1534
	switch (swizzle) {
1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549
	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:
1550
		return "unknown";
1551 1552 1553 1554 1555 1556 1557 1558 1559 1560
	}

	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;
1561 1562 1563 1564 1565
	int ret;

	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;
1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578

	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));
1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591
	} 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));
1592 1593 1594 1595 1596 1597
	}
	mutex_unlock(&dev->struct_mutex);

	return 0;
}

D
Daniel Vetter 已提交
1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612
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));

1613
	for_each_ring(ring, dev_priv, i) {
D
Daniel Vetter 已提交
1614 1615 1616 1617 1618 1619 1620 1621 1622 1623
		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;

1624
		seq_puts(m, "aliasing PPGTT:\n");
D
Daniel Vetter 已提交
1625 1626 1627 1628 1629 1630 1631 1632
		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 已提交
1633 1634 1635 1636 1637 1638 1639 1640 1641
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)) {
1642
		seq_puts(m, "unsupported\n");
J
Jesse Barnes 已提交
1643 1644 1645
		return 0;
	}

1646
	ret = mutex_lock_interruptible(&dev_priv->dpio_lock);
J
Jesse Barnes 已提交
1647 1648 1649 1650 1651
	if (ret)
		return ret;

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

1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670
	seq_printf(m, "DPIO PLL DW3 CH0 : 0x%08x\n",
		   vlv_dpio_read(dev_priv, PIPE_A, VLV_PLL_DW3(0)));
	seq_printf(m, "DPIO PLL DW3 CH1: 0x%08x\n",
		   vlv_dpio_read(dev_priv, PIPE_A, VLV_PLL_DW3(1)));

	seq_printf(m, "DPIO PLL DW5 CH0: 0x%08x\n",
		   vlv_dpio_read(dev_priv, PIPE_A, VLV_PLL_DW5(0)));
	seq_printf(m, "DPIO PLL DW5 CH1: 0x%08x\n",
		   vlv_dpio_read(dev_priv, PIPE_A, VLV_PLL_DW5(1)));

	seq_printf(m, "DPIO PLL DW7 CH0: 0x%08x\n",
		   vlv_dpio_read(dev_priv, PIPE_A, VLV_PLL_DW7(0)));
	seq_printf(m, "DPIO PLL DW7 CH1: 0x%08x\n",
		   vlv_dpio_read(dev_priv, PIPE_A, VLV_PLL_DW7(1)));

	seq_printf(m, "DPIO PLL DW10 CH0: 0x%08x\n",
		   vlv_dpio_read(dev_priv, PIPE_A, VLV_PLL_DW10(0)));
	seq_printf(m, "DPIO PLL DW10 CH1: 0x%08x\n",
		   vlv_dpio_read(dev_priv, PIPE_A, VLV_PLL_DW10(1)));
J
Jesse Barnes 已提交
1671 1672

	seq_printf(m, "DPIO_FASTCLK_DISABLE: 0x%08x\n",
1673
		   vlv_dpio_read(dev_priv, PIPE_A, VLV_CMN_DW0));
J
Jesse Barnes 已提交
1674

1675
	mutex_unlock(&dev_priv->dpio_lock);
J
Jesse Barnes 已提交
1676 1677 1678 1679

	return 0;
}

1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692
static int i915_llc(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;

	/* Size calculation for LLC is a bit of a pain. Ignore for now. */
	seq_printf(m, "LLC: %s\n", yesno(HAS_LLC(dev)));
	seq_printf(m, "eLLC: %zuMB\n", dev_priv->ellc_size);

	return 0;
}

1693 1694 1695 1696 1697
static int i915_edp_psr_status(struct seq_file *m, void *data)
{
	struct drm_info_node *node = m->private;
	struct drm_device *dev = node->minor->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
R
Rodrigo Vivi 已提交
1698 1699
	u32 psrperf = 0;
	bool enabled = false;
1700

R
Rodrigo Vivi 已提交
1701 1702
	seq_printf(m, "Sink_Support: %s\n", yesno(dev_priv->psr.sink_support));
	seq_printf(m, "Source_OK: %s\n", yesno(dev_priv->psr.source_ok));
1703

R
Rodrigo Vivi 已提交
1704 1705 1706
	enabled = HAS_PSR(dev) &&
		I915_READ(EDP_PSR_CTL(dev)) & EDP_PSR_ENABLE;
	seq_printf(m, "Enabled: %s\n", yesno(enabled));
1707

R
Rodrigo Vivi 已提交
1708 1709 1710 1711
	if (HAS_PSR(dev))
		psrperf = I915_READ(EDP_PSR_PERF_CNT(dev)) &
			EDP_PSR_PERF_CNT_MASK;
	seq_printf(m, "Performance_Counter: %u\n", psrperf);
1712 1713 1714 1715

	return 0;
}

1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733
static int i915_energy_uJ(struct seq_file *m, void *data)
{
	struct drm_info_node *node = m->private;
	struct drm_device *dev = node->minor->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	u64 power;
	u32 units;

	if (INTEL_INFO(dev)->gen < 6)
		return -ENODEV;

	rdmsrl(MSR_RAPL_POWER_UNIT, power);
	power = (power & 0x1f00) >> 8;
	units = 1000000 / (1 << power); /* convert to uJ */
	power = I915_READ(MCH_SECP_NRG_STTS);
	power *= units;

	seq_printf(m, "%llu", (long long unsigned)power);
1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758

	return 0;
}

static int i915_pc8_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_HASWELL(dev)) {
		seq_puts(m, "not supported\n");
		return 0;
	}

	mutex_lock(&dev_priv->pc8.lock);
	seq_printf(m, "Requirements met: %s\n",
		   yesno(dev_priv->pc8.requirements_met));
	seq_printf(m, "GPU idle: %s\n", yesno(dev_priv->pc8.gpu_idle));
	seq_printf(m, "Disable count: %d\n", dev_priv->pc8.disable_count);
	seq_printf(m, "IRQs disabled: %s\n",
		   yesno(dev_priv->pc8.irqs_disabled));
	seq_printf(m, "Enabled: %s\n", yesno(dev_priv->pc8.enabled));
	mutex_unlock(&dev_priv->pc8.lock);

1759 1760 1761
	return 0;
}

1762 1763 1764 1765 1766 1767 1768 1769
struct pipe_crc_info {
	const char *name;
	struct drm_device *dev;
	enum pipe pipe;
};

static int i915_pipe_crc_open(struct inode *inode, struct file *filep)
{
1770 1771 1772 1773
	struct pipe_crc_info *info = inode->i_private;
	struct drm_i915_private *dev_priv = info->dev->dev_private;
	struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe];

1774 1775 1776
	if (info->pipe >= INTEL_INFO(info->dev)->num_pipes)
		return -ENODEV;

1777 1778 1779 1780
	spin_lock_irq(&pipe_crc->lock);

	if (pipe_crc->opened) {
		spin_unlock_irq(&pipe_crc->lock);
1781 1782 1783
		return -EBUSY; /* already open */
	}

1784
	pipe_crc->opened = true;
1785 1786
	filep->private_data = inode->i_private;

1787 1788
	spin_unlock_irq(&pipe_crc->lock);

1789 1790 1791 1792 1793
	return 0;
}

static int i915_pipe_crc_release(struct inode *inode, struct file *filep)
{
1794 1795 1796 1797
	struct pipe_crc_info *info = inode->i_private;
	struct drm_i915_private *dev_priv = info->dev->dev_private;
	struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe];

1798 1799 1800
	spin_lock_irq(&pipe_crc->lock);
	pipe_crc->opened = false;
	spin_unlock_irq(&pipe_crc->lock);
1801

1802 1803 1804 1805 1806 1807 1808 1809 1810
	return 0;
}

/* (6 fields, 8 chars each, space separated (5) + '\n') */
#define PIPE_CRC_LINE_LEN	(6 * 8 + 5 + 1)
/* account for \'0' */
#define PIPE_CRC_BUFFER_LEN	(PIPE_CRC_LINE_LEN + 1)

static int pipe_crc_data_count(struct intel_pipe_crc *pipe_crc)
1811
{
1812 1813 1814
	assert_spin_locked(&pipe_crc->lock);
	return CIRC_CNT(pipe_crc->head, pipe_crc->tail,
			INTEL_PIPE_CRC_ENTRIES_NR);
1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836
}

static ssize_t
i915_pipe_crc_read(struct file *filep, char __user *user_buf, size_t count,
		   loff_t *pos)
{
	struct pipe_crc_info *info = filep->private_data;
	struct drm_device *dev = info->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe];
	char buf[PIPE_CRC_BUFFER_LEN];
	int head, tail, n_entries, n;
	ssize_t bytes_read;

	/*
	 * Don't allow user space to provide buffers not big enough to hold
	 * a line of data.
	 */
	if (count < PIPE_CRC_LINE_LEN)
		return -EINVAL;

	if (pipe_crc->source == INTEL_PIPE_CRC_SOURCE_NONE)
1837
		return 0;
1838 1839

	/* nothing to read */
1840
	spin_lock_irq(&pipe_crc->lock);
1841
	while (pipe_crc_data_count(pipe_crc) == 0) {
1842 1843 1844 1845
		int ret;

		if (filep->f_flags & O_NONBLOCK) {
			spin_unlock_irq(&pipe_crc->lock);
1846
			return -EAGAIN;
1847
		}
1848

1849 1850 1851 1852 1853 1854
		ret = wait_event_interruptible_lock_irq(pipe_crc->wq,
				pipe_crc_data_count(pipe_crc), pipe_crc->lock);
		if (ret) {
			spin_unlock_irq(&pipe_crc->lock);
			return ret;
		}
1855 1856
	}

1857
	/* We now have one or more entries to read */
1858 1859
	head = pipe_crc->head;
	tail = pipe_crc->tail;
1860 1861
	n_entries = min((size_t)CIRC_CNT(head, tail, INTEL_PIPE_CRC_ENTRIES_NR),
			count / PIPE_CRC_LINE_LEN);
1862 1863
	spin_unlock_irq(&pipe_crc->lock);

1864 1865 1866
	bytes_read = 0;
	n = 0;
	do {
1867
		struct intel_pipe_crc_entry *entry = &pipe_crc->entries[tail];
1868
		int ret;
1869

1870 1871 1872 1873 1874 1875 1876 1877 1878 1879
		bytes_read += snprintf(buf, PIPE_CRC_BUFFER_LEN,
				       "%8u %8x %8x %8x %8x %8x\n",
				       entry->frame, entry->crc[0],
				       entry->crc[1], entry->crc[2],
				       entry->crc[3], entry->crc[4]);

		ret = copy_to_user(user_buf + n * PIPE_CRC_LINE_LEN,
				   buf, PIPE_CRC_LINE_LEN);
		if (ret == PIPE_CRC_LINE_LEN)
			return -EFAULT;
1880 1881 1882

		BUILD_BUG_ON_NOT_POWER_OF_2(INTEL_PIPE_CRC_ENTRIES_NR);
		tail = (tail + 1) & (INTEL_PIPE_CRC_ENTRIES_NR - 1);
1883 1884
		n++;
	} while (--n_entries);
1885

1886 1887 1888 1889
	spin_lock_irq(&pipe_crc->lock);
	pipe_crc->tail = tail;
	spin_unlock_irq(&pipe_crc->lock);

1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928
	return bytes_read;
}

static const struct file_operations i915_pipe_crc_fops = {
	.owner = THIS_MODULE,
	.open = i915_pipe_crc_open,
	.read = i915_pipe_crc_read,
	.release = i915_pipe_crc_release,
};

static struct pipe_crc_info i915_pipe_crc_data[I915_MAX_PIPES] = {
	{
		.name = "i915_pipe_A_crc",
		.pipe = PIPE_A,
	},
	{
		.name = "i915_pipe_B_crc",
		.pipe = PIPE_B,
	},
	{
		.name = "i915_pipe_C_crc",
		.pipe = PIPE_C,
	},
};

static int i915_pipe_crc_create(struct dentry *root, struct drm_minor *minor,
				enum pipe pipe)
{
	struct drm_device *dev = minor->dev;
	struct dentry *ent;
	struct pipe_crc_info *info = &i915_pipe_crc_data[pipe];

	info->dev = dev;
	ent = debugfs_create_file(info->name, S_IRUGO, root, info,
				  &i915_pipe_crc_fops);
	if (IS_ERR(ent))
		return PTR_ERR(ent);

	return drm_add_fake_info_node(minor, ent, info);
1929 1930
}

D
Daniel Vetter 已提交
1931
static const char * const pipe_crc_sources[] = {
1932 1933 1934 1935
	"none",
	"plane1",
	"plane2",
	"pf",
1936
	"pipe",
D
Daniel Vetter 已提交
1937 1938 1939 1940
	"TV",
	"DP-B",
	"DP-C",
	"DP-D",
1941
	"auto",
1942 1943 1944 1945 1946 1947 1948 1949
};

static const char *pipe_crc_source_name(enum intel_pipe_crc_source source)
{
	BUILD_BUG_ON(ARRAY_SIZE(pipe_crc_sources) != INTEL_PIPE_CRC_SOURCE_MAX);
	return pipe_crc_sources[source];
}

1950
static int display_crc_ctl_show(struct seq_file *m, void *data)
1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962
{
	struct drm_device *dev = m->private;
	struct drm_i915_private *dev_priv = dev->dev_private;
	int i;

	for (i = 0; i < I915_MAX_PIPES; i++)
		seq_printf(m, "%c %s\n", pipe_name(i),
			   pipe_crc_source_name(dev_priv->pipe_crc[i].source));

	return 0;
}

1963
static int display_crc_ctl_open(struct inode *inode, struct file *file)
1964 1965 1966
{
	struct drm_device *dev = inode->i_private;

1967
	return single_open(file, display_crc_ctl_show, dev);
1968 1969
}

1970
static int i8xx_pipe_crc_ctl_reg(enum intel_pipe_crc_source *source,
D
Daniel Vetter 已提交
1971 1972
				 uint32_t *val)
{
1973 1974 1975 1976
	if (*source == INTEL_PIPE_CRC_SOURCE_AUTO)
		*source = INTEL_PIPE_CRC_SOURCE_PIPE;

	switch (*source) {
D
Daniel Vetter 已提交
1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989
	case INTEL_PIPE_CRC_SOURCE_PIPE:
		*val = PIPE_CRC_ENABLE | PIPE_CRC_INCLUDE_BORDER_I8XX;
		break;
	case INTEL_PIPE_CRC_SOURCE_NONE:
		*val = 0;
		break;
	default:
		return -EINVAL;
	}

	return 0;
}

1990 1991 1992 1993 1994
static int i9xx_pipe_crc_auto_source(struct drm_device *dev, enum pipe pipe,
				     enum intel_pipe_crc_source *source)
{
	struct intel_encoder *encoder;
	struct intel_crtc *crtc;
1995
	struct intel_digital_port *dig_port;
1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016
	int ret = 0;

	*source = INTEL_PIPE_CRC_SOURCE_PIPE;

	mutex_lock(&dev->mode_config.mutex);
	list_for_each_entry(encoder, &dev->mode_config.encoder_list,
			    base.head) {
		if (!encoder->base.crtc)
			continue;

		crtc = to_intel_crtc(encoder->base.crtc);

		if (crtc->pipe != pipe)
			continue;

		switch (encoder->type) {
		case INTEL_OUTPUT_TVOUT:
			*source = INTEL_PIPE_CRC_SOURCE_TV;
			break;
		case INTEL_OUTPUT_DISPLAYPORT:
		case INTEL_OUTPUT_EDP:
2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032
			dig_port = enc_to_dig_port(&encoder->base);
			switch (dig_port->port) {
			case PORT_B:
				*source = INTEL_PIPE_CRC_SOURCE_DP_B;
				break;
			case PORT_C:
				*source = INTEL_PIPE_CRC_SOURCE_DP_C;
				break;
			case PORT_D:
				*source = INTEL_PIPE_CRC_SOURCE_DP_D;
				break;
			default:
				WARN(1, "nonexisting DP port %c\n",
				     port_name(dig_port->port));
				break;
			}
2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043
			break;
		}
	}
	mutex_unlock(&dev->mode_config.mutex);

	return ret;
}

static int vlv_pipe_crc_ctl_reg(struct drm_device *dev,
				enum pipe pipe,
				enum intel_pipe_crc_source *source,
D
Daniel Vetter 已提交
2044 2045
				uint32_t *val)
{
2046 2047 2048
	struct drm_i915_private *dev_priv = dev->dev_private;
	bool need_stable_symbols = false;

2049 2050 2051 2052 2053 2054 2055
	if (*source == INTEL_PIPE_CRC_SOURCE_AUTO) {
		int ret = i9xx_pipe_crc_auto_source(dev, pipe, source);
		if (ret)
			return ret;
	}

	switch (*source) {
D
Daniel Vetter 已提交
2056 2057 2058 2059 2060
	case INTEL_PIPE_CRC_SOURCE_PIPE:
		*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PIPE_VLV;
		break;
	case INTEL_PIPE_CRC_SOURCE_DP_B:
		*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_B_VLV;
2061
		need_stable_symbols = true;
D
Daniel Vetter 已提交
2062 2063 2064
		break;
	case INTEL_PIPE_CRC_SOURCE_DP_C:
		*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_C_VLV;
2065
		need_stable_symbols = true;
D
Daniel Vetter 已提交
2066 2067 2068 2069 2070 2071 2072 2073
		break;
	case INTEL_PIPE_CRC_SOURCE_NONE:
		*val = 0;
		break;
	default:
		return -EINVAL;
	}

2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096
	/*
	 * When the pipe CRC tap point is after the transcoders we need
	 * to tweak symbol-level features to produce a deterministic series of
	 * symbols for a given frame. We need to reset those features only once
	 * a frame (instead of every nth symbol):
	 *   - DC-balance: used to ensure a better clock recovery from the data
	 *     link (SDVO)
	 *   - DisplayPort scrambling: used for EMI reduction
	 */
	if (need_stable_symbols) {
		uint32_t tmp = I915_READ(PORT_DFT2_G4X);

		WARN_ON(!IS_G4X(dev));

		tmp |= DC_BALANCE_RESET_VLV;
		if (pipe == PIPE_A)
			tmp |= PIPE_A_SCRAMBLE_RESET;
		else
			tmp |= PIPE_B_SCRAMBLE_RESET;

		I915_WRITE(PORT_DFT2_G4X, tmp);
	}

D
Daniel Vetter 已提交
2097 2098 2099
	return 0;
}

2100
static int i9xx_pipe_crc_ctl_reg(struct drm_device *dev,
2101 2102
				 enum pipe pipe,
				 enum intel_pipe_crc_source *source,
2103 2104
				 uint32_t *val)
{
2105 2106 2107
	struct drm_i915_private *dev_priv = dev->dev_private;
	bool need_stable_symbols = false;

2108 2109 2110 2111 2112 2113 2114
	if (*source == INTEL_PIPE_CRC_SOURCE_AUTO) {
		int ret = i9xx_pipe_crc_auto_source(dev, pipe, source);
		if (ret)
			return ret;
	}

	switch (*source) {
2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126
	case INTEL_PIPE_CRC_SOURCE_PIPE:
		*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PIPE_I9XX;
		break;
	case INTEL_PIPE_CRC_SOURCE_TV:
		if (!SUPPORTS_TV(dev))
			return -EINVAL;
		*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_TV_PRE;
		break;
	case INTEL_PIPE_CRC_SOURCE_DP_B:
		if (!IS_G4X(dev))
			return -EINVAL;
		*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_B_G4X;
2127
		need_stable_symbols = true;
2128 2129 2130 2131 2132
		break;
	case INTEL_PIPE_CRC_SOURCE_DP_C:
		if (!IS_G4X(dev))
			return -EINVAL;
		*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_C_G4X;
2133
		need_stable_symbols = true;
2134 2135 2136 2137 2138
		break;
	case INTEL_PIPE_CRC_SOURCE_DP_D:
		if (!IS_G4X(dev))
			return -EINVAL;
		*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_D_G4X;
2139
		need_stable_symbols = true;
2140 2141 2142 2143 2144 2145 2146 2147
		break;
	case INTEL_PIPE_CRC_SOURCE_NONE:
		*val = 0;
		break;
	default:
		return -EINVAL;
	}

2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172
	/*
	 * When the pipe CRC tap point is after the transcoders we need
	 * to tweak symbol-level features to produce a deterministic series of
	 * symbols for a given frame. We need to reset those features only once
	 * a frame (instead of every nth symbol):
	 *   - DC-balance: used to ensure a better clock recovery from the data
	 *     link (SDVO)
	 *   - DisplayPort scrambling: used for EMI reduction
	 */
	if (need_stable_symbols) {
		uint32_t tmp = I915_READ(PORT_DFT2_G4X);

		WARN_ON(!IS_G4X(dev));

		I915_WRITE(PORT_DFT_I9XX,
			   I915_READ(PORT_DFT_I9XX) | DC_BALANCE_RESET);

		if (pipe == PIPE_A)
			tmp |= PIPE_A_SCRAMBLE_RESET;
		else
			tmp |= PIPE_B_SCRAMBLE_RESET;

		I915_WRITE(PORT_DFT2_G4X, tmp);
	}

2173 2174 2175
	return 0;
}

2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191
static void vlv_undo_pipe_scramble_reset(struct drm_device *dev,
					 enum pipe pipe)
{
	struct drm_i915_private *dev_priv = dev->dev_private;
	uint32_t tmp = I915_READ(PORT_DFT2_G4X);

	if (pipe == PIPE_A)
		tmp &= ~PIPE_A_SCRAMBLE_RESET;
	else
		tmp &= ~PIPE_B_SCRAMBLE_RESET;
	if (!(tmp & PIPE_SCRAMBLE_RESET_MASK))
		tmp &= ~DC_BALANCE_RESET_VLV;
	I915_WRITE(PORT_DFT2_G4X, tmp);

}

2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209
static void g4x_undo_pipe_scramble_reset(struct drm_device *dev,
					 enum pipe pipe)
{
	struct drm_i915_private *dev_priv = dev->dev_private;
	uint32_t tmp = I915_READ(PORT_DFT2_G4X);

	if (pipe == PIPE_A)
		tmp &= ~PIPE_A_SCRAMBLE_RESET;
	else
		tmp &= ~PIPE_B_SCRAMBLE_RESET;
	I915_WRITE(PORT_DFT2_G4X, tmp);

	if (!(tmp & PIPE_SCRAMBLE_RESET_MASK)) {
		I915_WRITE(PORT_DFT_I9XX,
			   I915_READ(PORT_DFT_I9XX) & ~DC_BALANCE_RESET);
	}
}

2210
static int ilk_pipe_crc_ctl_reg(enum intel_pipe_crc_source *source,
2211 2212
				uint32_t *val)
{
2213 2214 2215 2216
	if (*source == INTEL_PIPE_CRC_SOURCE_AUTO)
		*source = INTEL_PIPE_CRC_SOURCE_PIPE;

	switch (*source) {
2217 2218 2219 2220 2221 2222 2223 2224 2225
	case INTEL_PIPE_CRC_SOURCE_PLANE1:
		*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PRIMARY_ILK;
		break;
	case INTEL_PIPE_CRC_SOURCE_PLANE2:
		*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_SPRITE_ILK;
		break;
	case INTEL_PIPE_CRC_SOURCE_PIPE:
		*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PIPE_ILK;
		break;
D
Daniel Vetter 已提交
2226
	case INTEL_PIPE_CRC_SOURCE_NONE:
2227 2228
		*val = 0;
		break;
D
Daniel Vetter 已提交
2229 2230
	default:
		return -EINVAL;
2231 2232 2233 2234 2235
	}

	return 0;
}

2236
static int ivb_pipe_crc_ctl_reg(enum intel_pipe_crc_source *source,
2237 2238
				uint32_t *val)
{
2239 2240 2241 2242
	if (*source == INTEL_PIPE_CRC_SOURCE_AUTO)
		*source = INTEL_PIPE_CRC_SOURCE_PF;

	switch (*source) {
2243 2244 2245 2246 2247 2248 2249 2250 2251
	case INTEL_PIPE_CRC_SOURCE_PLANE1:
		*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PRIMARY_IVB;
		break;
	case INTEL_PIPE_CRC_SOURCE_PLANE2:
		*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_SPRITE_IVB;
		break;
	case INTEL_PIPE_CRC_SOURCE_PF:
		*val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PF_IVB;
		break;
D
Daniel Vetter 已提交
2252
	case INTEL_PIPE_CRC_SOURCE_NONE:
2253 2254
		*val = 0;
		break;
D
Daniel Vetter 已提交
2255 2256
	default:
		return -EINVAL;
2257 2258 2259 2260 2261
	}

	return 0;
}

2262 2263 2264 2265
static int pipe_crc_set_source(struct drm_device *dev, enum pipe pipe,
			       enum intel_pipe_crc_source source)
{
	struct drm_i915_private *dev_priv = dev->dev_private;
2266
	struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe];
2267
	u32 val;
2268
	int ret;
2269

2270 2271 2272
	if (pipe_crc->source == source)
		return 0;

2273 2274 2275 2276
	/* forbid changing the source without going back to 'none' */
	if (pipe_crc->source && source)
		return -EINVAL;

D
Daniel Vetter 已提交
2277
	if (IS_GEN2(dev))
2278
		ret = i8xx_pipe_crc_ctl_reg(&source, &val);
D
Daniel Vetter 已提交
2279
	else if (INTEL_INFO(dev)->gen < 5)
2280
		ret = i9xx_pipe_crc_ctl_reg(dev, pipe, &source, &val);
D
Daniel Vetter 已提交
2281
	else if (IS_VALLEYVIEW(dev))
2282
		ret = vlv_pipe_crc_ctl_reg(dev,pipe, &source, &val);
2283
	else if (IS_GEN5(dev) || IS_GEN6(dev))
2284
		ret = ilk_pipe_crc_ctl_reg(&source, &val);
2285
	else
2286
		ret = ivb_pipe_crc_ctl_reg(&source, &val);
2287 2288 2289 2290

	if (ret != 0)
		return ret;

2291 2292
	/* none -> real source transition */
	if (source) {
2293 2294 2295
		DRM_DEBUG_DRIVER("collecting CRCs for pipe %c, %s\n",
				 pipe_name(pipe), pipe_crc_source_name(source));

2296 2297 2298 2299 2300 2301
		pipe_crc->entries = kzalloc(sizeof(*pipe_crc->entries) *
					    INTEL_PIPE_CRC_ENTRIES_NR,
					    GFP_KERNEL);
		if (!pipe_crc->entries)
			return -ENOMEM;

2302 2303 2304 2305
		spin_lock_irq(&pipe_crc->lock);
		pipe_crc->head = 0;
		pipe_crc->tail = 0;
		spin_unlock_irq(&pipe_crc->lock);
2306 2307
	}

2308
	pipe_crc->source = source;
2309 2310 2311 2312

	I915_WRITE(PIPE_CRC_CTL(pipe), val);
	POSTING_READ(PIPE_CRC_CTL(pipe));

2313 2314
	/* real source -> none transition */
	if (source == INTEL_PIPE_CRC_SOURCE_NONE) {
2315 2316
		struct intel_pipe_crc_entry *entries;

2317 2318 2319
		DRM_DEBUG_DRIVER("stopping CRCs for pipe %c\n",
				 pipe_name(pipe));

2320 2321
		intel_wait_for_vblank(dev, pipe);

2322 2323
		spin_lock_irq(&pipe_crc->lock);
		entries = pipe_crc->entries;
2324
		pipe_crc->entries = NULL;
2325 2326 2327
		spin_unlock_irq(&pipe_crc->lock);

		kfree(entries);
2328 2329 2330

		if (IS_G4X(dev))
			g4x_undo_pipe_scramble_reset(dev, pipe);
2331 2332
		else if (IS_VALLEYVIEW(dev))
			vlv_undo_pipe_scramble_reset(dev, pipe);
2333 2334
	}

2335 2336 2337 2338 2339
	return 0;
}

/*
 * Parse pipe CRC command strings:
2340 2341 2342
 *   command: wsp* object wsp+ name wsp+ source wsp*
 *   object: 'pipe'
 *   name: (A | B | C)
2343 2344 2345 2346
 *   source: (none | plane1 | plane2 | pf)
 *   wsp: (#0x20 | #0x9 | #0xA)+
 *
 * eg.:
2347 2348
 *  "pipe A plane1"  ->  Start CRC computations on plane1 of pipe A
 *  "pipe A none"    ->  Stop CRC
2349
 */
2350
static int display_crc_ctl_tokenize(char *buf, char *words[], int max_words)
2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380
{
	int n_words = 0;

	while (*buf) {
		char *end;

		/* skip leading white space */
		buf = skip_spaces(buf);
		if (!*buf)
			break;	/* end of buffer */

		/* find end of word */
		for (end = buf; *end && !isspace(*end); end++)
			;

		if (n_words == max_words) {
			DRM_DEBUG_DRIVER("too many words, allowed <= %d\n",
					 max_words);
			return -EINVAL;	/* ran out of words[] before bytes */
		}

		if (*end)
			*end++ = '\0';
		words[n_words++] = buf;
		buf = end;
	}

	return n_words;
}

2381 2382 2383 2384
enum intel_pipe_crc_object {
	PIPE_CRC_OBJECT_PIPE,
};

D
Daniel Vetter 已提交
2385
static const char * const pipe_crc_objects[] = {
2386 2387 2388 2389
	"pipe",
};

static int
2390
display_crc_ctl_parse_object(const char *buf, enum intel_pipe_crc_object *o)
2391 2392 2393 2394 2395
{
	int i;

	for (i = 0; i < ARRAY_SIZE(pipe_crc_objects); i++)
		if (!strcmp(buf, pipe_crc_objects[i])) {
2396
			*o = i;
2397 2398 2399 2400 2401 2402
			return 0;
		    }

	return -EINVAL;
}

2403
static int display_crc_ctl_parse_pipe(const char *buf, enum pipe *pipe)
2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415
{
	const char name = buf[0];

	if (name < 'A' || name >= pipe_name(I915_MAX_PIPES))
		return -EINVAL;

	*pipe = name - 'A';

	return 0;
}

static int
2416
display_crc_ctl_parse_source(const char *buf, enum intel_pipe_crc_source *s)
2417 2418 2419 2420 2421
{
	int i;

	for (i = 0; i < ARRAY_SIZE(pipe_crc_sources); i++)
		if (!strcmp(buf, pipe_crc_sources[i])) {
2422
			*s = i;
2423 2424 2425 2426 2427 2428
			return 0;
		    }

	return -EINVAL;
}

2429
static int display_crc_ctl_parse(struct drm_device *dev, char *buf, size_t len)
2430
{
2431
#define N_WORDS 3
2432
	int n_words;
2433
	char *words[N_WORDS];
2434
	enum pipe pipe;
2435
	enum intel_pipe_crc_object object;
2436 2437
	enum intel_pipe_crc_source source;

2438
	n_words = display_crc_ctl_tokenize(buf, words, N_WORDS);
2439 2440 2441 2442 2443 2444
	if (n_words != N_WORDS) {
		DRM_DEBUG_DRIVER("tokenize failed, a command is %d words\n",
				 N_WORDS);
		return -EINVAL;
	}

2445
	if (display_crc_ctl_parse_object(words[0], &object) < 0) {
2446
		DRM_DEBUG_DRIVER("unknown object %s\n", words[0]);
2447 2448 2449
		return -EINVAL;
	}

2450
	if (display_crc_ctl_parse_pipe(words[1], &pipe) < 0) {
2451
		DRM_DEBUG_DRIVER("unknown pipe %s\n", words[1]);
2452 2453 2454
		return -EINVAL;
	}

2455
	if (display_crc_ctl_parse_source(words[2], &source) < 0) {
2456
		DRM_DEBUG_DRIVER("unknown source %s\n", words[2]);
2457 2458 2459 2460 2461 2462
		return -EINVAL;
	}

	return pipe_crc_set_source(dev, pipe, source);
}

2463 2464
static ssize_t display_crc_ctl_write(struct file *file, const char __user *ubuf,
				     size_t len, loff_t *offp)
2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489
{
	struct seq_file *m = file->private_data;
	struct drm_device *dev = m->private;
	char *tmpbuf;
	int ret;

	if (len == 0)
		return 0;

	if (len > PAGE_SIZE - 1) {
		DRM_DEBUG_DRIVER("expected <%lu bytes into pipe crc control\n",
				 PAGE_SIZE);
		return -E2BIG;
	}

	tmpbuf = kmalloc(len + 1, GFP_KERNEL);
	if (!tmpbuf)
		return -ENOMEM;

	if (copy_from_user(tmpbuf, ubuf, len)) {
		ret = -EFAULT;
		goto out;
	}
	tmpbuf[len] = '\0';

2490
	ret = display_crc_ctl_parse(dev, tmpbuf, len);
2491 2492 2493 2494 2495 2496 2497 2498 2499 2500

out:
	kfree(tmpbuf);
	if (ret < 0)
		return ret;

	*offp += len;
	return len;
}

2501
static const struct file_operations i915_display_crc_ctl_fops = {
2502
	.owner = THIS_MODULE,
2503
	.open = display_crc_ctl_open,
2504 2505 2506
	.read = seq_read,
	.llseek = seq_lseek,
	.release = single_release,
2507
	.write = display_crc_ctl_write
2508 2509
};

2510 2511
static int
i915_wedged_get(void *data, u64 *val)
2512
{
2513
	struct drm_device *dev = data;
2514 2515
	drm_i915_private_t *dev_priv = dev->dev_private;

2516
	*val = atomic_read(&dev_priv->gpu_error.reset_counter);
2517

2518
	return 0;
2519 2520
}

2521 2522
static int
i915_wedged_set(void *data, u64 val)
2523
{
2524
	struct drm_device *dev = data;
2525

2526
	DRM_INFO("Manually setting wedged to %llu\n", val);
2527
	i915_handle_error(dev, val);
2528

2529
	return 0;
2530 2531
}

2532 2533
DEFINE_SIMPLE_ATTRIBUTE(i915_wedged_fops,
			i915_wedged_get, i915_wedged_set,
2534
			"%llu\n");
2535

2536 2537
static int
i915_ring_stop_get(void *data, u64 *val)
2538
{
2539
	struct drm_device *dev = data;
2540 2541
	drm_i915_private_t *dev_priv = dev->dev_private;

2542
	*val = dev_priv->gpu_error.stop_rings;
2543

2544
	return 0;
2545 2546
}

2547 2548
static int
i915_ring_stop_set(void *data, u64 val)
2549
{
2550
	struct drm_device *dev = data;
2551
	struct drm_i915_private *dev_priv = dev->dev_private;
2552
	int ret;
2553

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

2556 2557 2558 2559
	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;

2560
	dev_priv->gpu_error.stop_rings = val;
2561 2562
	mutex_unlock(&dev->struct_mutex);

2563
	return 0;
2564 2565
}

2566 2567 2568
DEFINE_SIMPLE_ATTRIBUTE(i915_ring_stop_fops,
			i915_ring_stop_get, i915_ring_stop_set,
			"0x%08llx\n");
2569

2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635
static int
i915_ring_missed_irq_get(void *data, u64 *val)
{
	struct drm_device *dev = data;
	struct drm_i915_private *dev_priv = dev->dev_private;

	*val = dev_priv->gpu_error.missed_irq_rings;
	return 0;
}

static int
i915_ring_missed_irq_set(void *data, u64 val)
{
	struct drm_device *dev = data;
	struct drm_i915_private *dev_priv = dev->dev_private;
	int ret;

	/* Lock against concurrent debugfs callers */
	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;
	dev_priv->gpu_error.missed_irq_rings = val;
	mutex_unlock(&dev->struct_mutex);

	return 0;
}

DEFINE_SIMPLE_ATTRIBUTE(i915_ring_missed_irq_fops,
			i915_ring_missed_irq_get, i915_ring_missed_irq_set,
			"0x%08llx\n");

static int
i915_ring_test_irq_get(void *data, u64 *val)
{
	struct drm_device *dev = data;
	struct drm_i915_private *dev_priv = dev->dev_private;

	*val = dev_priv->gpu_error.test_irq_rings;

	return 0;
}

static int
i915_ring_test_irq_set(void *data, u64 val)
{
	struct drm_device *dev = data;
	struct drm_i915_private *dev_priv = dev->dev_private;
	int ret;

	DRM_DEBUG_DRIVER("Masking interrupts on rings 0x%08llx\n", val);

	/* Lock against concurrent debugfs callers */
	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;

	dev_priv->gpu_error.test_irq_rings = val;
	mutex_unlock(&dev->struct_mutex);

	return 0;
}

DEFINE_SIMPLE_ATTRIBUTE(i915_ring_test_irq_fops,
			i915_ring_test_irq_get, i915_ring_test_irq_set,
			"0x%08llx\n");

2636 2637 2638 2639 2640 2641 2642 2643
#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)
2644 2645
static int
i915_drop_caches_get(void *data, u64 *val)
2646
{
2647
	*val = DROP_ALL;
2648

2649
	return 0;
2650 2651
}

2652 2653
static int
i915_drop_caches_set(void *data, u64 val)
2654
{
2655
	struct drm_device *dev = data;
2656 2657
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct drm_i915_gem_object *obj, *next;
B
Ben Widawsky 已提交
2658 2659
	struct i915_address_space *vm;
	struct i915_vma *vma, *x;
2660
	int ret;
2661

2662
	DRM_DEBUG_DRIVER("Dropping caches: 0x%08llx\n", val);
2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679

	/* 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) {
B
Ben Widawsky 已提交
2680 2681 2682 2683 2684 2685 2686 2687 2688 2689
		list_for_each_entry(vm, &dev_priv->vm_list, global_link) {
			list_for_each_entry_safe(vma, x, &vm->inactive_list,
						 mm_list) {
				if (vma->obj->pin_count)
					continue;

				ret = i915_vma_unbind(vma);
				if (ret)
					goto unlock;
			}
2690
		}
2691 2692 2693
	}

	if (val & DROP_UNBOUND) {
2694 2695
		list_for_each_entry_safe(obj, next, &dev_priv->mm.unbound_list,
					 global_list)
2696 2697 2698 2699 2700 2701 2702 2703 2704 2705
			if (obj->pages_pin_count == 0) {
				ret = i915_gem_object_put_pages(obj);
				if (ret)
					goto unlock;
			}
	}

unlock:
	mutex_unlock(&dev->struct_mutex);

2706
	return ret;
2707 2708
}

2709 2710 2711
DEFINE_SIMPLE_ATTRIBUTE(i915_drop_caches_fops,
			i915_drop_caches_get, i915_drop_caches_set,
			"0x%08llx\n");
2712

2713 2714
static int
i915_max_freq_get(void *data, u64 *val)
2715
{
2716
	struct drm_device *dev = data;
2717
	drm_i915_private_t *dev_priv = dev->dev_private;
2718
	int ret;
2719 2720 2721 2722

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

2723 2724
	flush_delayed_work(&dev_priv->rps.delayed_resume_work);

2725
	ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
2726 2727
	if (ret)
		return ret;
2728

2729
	if (IS_VALLEYVIEW(dev))
2730
		*val = vlv_gpu_freq(dev_priv, dev_priv->rps.max_delay);
2731 2732
	else
		*val = dev_priv->rps.max_delay * GT_FREQUENCY_MULTIPLIER;
2733
	mutex_unlock(&dev_priv->rps.hw_lock);
2734

2735
	return 0;
2736 2737
}

2738 2739
static int
i915_max_freq_set(void *data, u64 val)
2740
{
2741
	struct drm_device *dev = data;
2742
	struct drm_i915_private *dev_priv = dev->dev_private;
2743
	int ret;
2744 2745 2746

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

2748 2749
	flush_delayed_work(&dev_priv->rps.delayed_resume_work);

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

2752
	ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
2753 2754 2755
	if (ret)
		return ret;

2756 2757 2758
	/*
	 * Turbo will still be enabled, but won't go above the set value.
	 */
2759
	if (IS_VALLEYVIEW(dev)) {
2760
		val = vlv_freq_opcode(dev_priv, val);
2761
		dev_priv->rps.max_delay = val;
2762
		valleyview_set_rps(dev, val);
2763 2764 2765 2766 2767 2768
	} else {
		do_div(val, GT_FREQUENCY_MULTIPLIER);
		dev_priv->rps.max_delay = val;
		gen6_set_rps(dev, val);
	}

2769
	mutex_unlock(&dev_priv->rps.hw_lock);
2770

2771
	return 0;
2772 2773
}

2774 2775
DEFINE_SIMPLE_ATTRIBUTE(i915_max_freq_fops,
			i915_max_freq_get, i915_max_freq_set,
2776
			"%llu\n");
2777

2778 2779
static int
i915_min_freq_get(void *data, u64 *val)
2780
{
2781
	struct drm_device *dev = data;
2782
	drm_i915_private_t *dev_priv = dev->dev_private;
2783
	int ret;
2784 2785 2786 2787

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

2788 2789
	flush_delayed_work(&dev_priv->rps.delayed_resume_work);

2790
	ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
2791 2792
	if (ret)
		return ret;
2793

2794
	if (IS_VALLEYVIEW(dev))
2795
		*val = vlv_gpu_freq(dev_priv, dev_priv->rps.min_delay);
2796 2797
	else
		*val = dev_priv->rps.min_delay * GT_FREQUENCY_MULTIPLIER;
2798
	mutex_unlock(&dev_priv->rps.hw_lock);
2799

2800
	return 0;
2801 2802
}

2803 2804
static int
i915_min_freq_set(void *data, u64 val)
2805
{
2806
	struct drm_device *dev = data;
2807
	struct drm_i915_private *dev_priv = dev->dev_private;
2808
	int ret;
2809 2810 2811

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

2813 2814
	flush_delayed_work(&dev_priv->rps.delayed_resume_work);

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

2817
	ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
2818 2819 2820
	if (ret)
		return ret;

2821 2822 2823
	/*
	 * Turbo will still be enabled, but won't go below the set value.
	 */
2824
	if (IS_VALLEYVIEW(dev)) {
2825
		val = vlv_freq_opcode(dev_priv, val);
2826 2827 2828 2829 2830 2831 2832
		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);
	}
2833
	mutex_unlock(&dev_priv->rps.hw_lock);
2834

2835
	return 0;
2836 2837
}

2838 2839
DEFINE_SIMPLE_ATTRIBUTE(i915_min_freq_fops,
			i915_min_freq_get, i915_min_freq_set,
2840
			"%llu\n");
2841

2842 2843
static int
i915_cache_sharing_get(void *data, u64 *val)
2844
{
2845
	struct drm_device *dev = data;
2846 2847
	drm_i915_private_t *dev_priv = dev->dev_private;
	u32 snpcr;
2848
	int ret;
2849

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

2853 2854 2855 2856
	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;

2857 2858 2859
	snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
	mutex_unlock(&dev_priv->dev->struct_mutex);

2860
	*val = (snpcr & GEN6_MBC_SNPCR_MASK) >> GEN6_MBC_SNPCR_SHIFT;
2861

2862
	return 0;
2863 2864
}

2865 2866
static int
i915_cache_sharing_set(void *data, u64 val)
2867
{
2868
	struct drm_device *dev = data;
2869 2870 2871
	struct drm_i915_private *dev_priv = dev->dev_private;
	u32 snpcr;

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

2875
	if (val > 3)
2876 2877
		return -EINVAL;

2878
	DRM_DEBUG_DRIVER("Manually setting uncore sharing to %llu\n", val);
2879 2880 2881 2882 2883 2884 2885

	/* 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);

2886
	return 0;
2887 2888
}

2889 2890 2891
DEFINE_SIMPLE_ATTRIBUTE(i915_cache_sharing_fops,
			i915_cache_sharing_get, i915_cache_sharing_set,
			"%llu\n");
2892

2893 2894 2895 2896 2897
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;

2898
	if (INTEL_INFO(dev)->gen < 6)
2899 2900 2901 2902 2903 2904 2905
		return 0;

	gen6_gt_force_wake_get(dev_priv);

	return 0;
}

2906
static int i915_forcewake_release(struct inode *inode, struct file *file)
2907 2908 2909 2910
{
	struct drm_device *dev = inode->i_private;
	struct drm_i915_private *dev_priv = dev->dev_private;

2911
	if (INTEL_INFO(dev)->gen < 6)
2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930
		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 已提交
2931
				  S_IRUSR,
2932 2933 2934 2935 2936
				  root, dev,
				  &i915_forcewake_fops);
	if (IS_ERR(ent))
		return PTR_ERR(ent);

B
Ben Widawsky 已提交
2937
	return drm_add_fake_info_node(minor, ent, &i915_forcewake_fops);
2938 2939
}

2940 2941 2942 2943
static int i915_debugfs_create(struct dentry *root,
			       struct drm_minor *minor,
			       const char *name,
			       const struct file_operations *fops)
2944 2945 2946 2947
{
	struct drm_device *dev = minor->dev;
	struct dentry *ent;

2948
	ent = debugfs_create_file(name,
2949 2950
				  S_IRUGO | S_IWUSR,
				  root, dev,
2951
				  fops);
2952 2953 2954
	if (IS_ERR(ent))
		return PTR_ERR(ent);

2955
	return drm_add_fake_info_node(minor, ent, fops);
2956 2957
}

2958
static struct drm_info_list i915_debugfs_list[] = {
C
Chris Wilson 已提交
2959
	{"i915_capabilities", i915_capabilities, 0},
2960
	{"i915_gem_objects", i915_gem_object_info, 0},
2961
	{"i915_gem_gtt", i915_gem_gtt_info, 0},
2962
	{"i915_gem_pinned", i915_gem_gtt_info, 0, (void *) PINNED_LIST},
2963 2964
	{"i915_gem_active", i915_gem_object_list_info, 0, (void *) ACTIVE_LIST},
	{"i915_gem_inactive", i915_gem_object_list_info, 0, (void *) INACTIVE_LIST},
2965
	{"i915_gem_stolen", i915_gem_stolen_list_info },
2966
	{"i915_gem_pageflip", i915_gem_pageflip_info, 0},
2967 2968
	{"i915_gem_request", i915_gem_request_info, 0},
	{"i915_gem_seqno", i915_gem_seqno_info, 0},
2969
	{"i915_gem_fence_regs", i915_gem_fence_regs_info, 0},
2970
	{"i915_gem_interrupt", i915_interrupt_info, 0},
2971 2972 2973
	{"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 已提交
2974
	{"i915_gem_hws_vebox", i915_hws_info, 0, (void *)VECS},
2975 2976 2977 2978 2979
	{"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},
2980
	{"i915_emon_status", i915_emon_status, 0},
2981
	{"i915_ring_freq_table", i915_ring_freq_table, 0},
2982
	{"i915_gfxec", i915_gfxec, 0},
2983
	{"i915_fbc_status", i915_fbc_status, 0},
2984
	{"i915_ips_status", i915_ips_status, 0},
2985
	{"i915_sr_status", i915_sr_status, 0},
2986
	{"i915_opregion", i915_opregion, 0},
2987
	{"i915_gem_framebuffer", i915_gem_framebuffer_info, 0},
2988
	{"i915_context_status", i915_context_status, 0},
2989
	{"i915_gen6_forcewake_count", i915_gen6_forcewake_count_info, 0},
2990
	{"i915_swizzle_info", i915_swizzle_info, 0},
D
Daniel Vetter 已提交
2991
	{"i915_ppgtt_info", i915_ppgtt_info, 0},
J
Jesse Barnes 已提交
2992
	{"i915_dpio", i915_dpio_info, 0},
2993
	{"i915_llc", i915_llc, 0},
2994
	{"i915_edp_psr_status", i915_edp_psr_status, 0},
2995
	{"i915_energy_uJ", i915_energy_uJ, 0},
2996
	{"i915_pc8_status", i915_pc8_status, 0},
2997
};
2998
#define I915_DEBUGFS_ENTRIES ARRAY_SIZE(i915_debugfs_list)
2999

3000
static struct i915_debugfs_files {
3001 3002 3003 3004 3005 3006 3007 3008
	const char *name;
	const struct file_operations *fops;
} i915_debugfs_files[] = {
	{"i915_wedged", &i915_wedged_fops},
	{"i915_max_freq", &i915_max_freq_fops},
	{"i915_min_freq", &i915_min_freq_fops},
	{"i915_cache_sharing", &i915_cache_sharing_fops},
	{"i915_ring_stop", &i915_ring_stop_fops},
3009 3010
	{"i915_ring_missed_irq", &i915_ring_missed_irq_fops},
	{"i915_ring_test_irq", &i915_ring_test_irq_fops},
3011 3012 3013
	{"i915_gem_drop_caches", &i915_drop_caches_fops},
	{"i915_error_state", &i915_error_state_fops},
	{"i915_next_seqno", &i915_next_seqno_fops},
3014
	{"i915_display_crc_ctl", &i915_display_crc_ctl_fops},
3015 3016
};

3017 3018 3019
void intel_display_crc_init(struct drm_device *dev)
{
	struct drm_i915_private *dev_priv = dev->dev_private;
3020
	enum pipe pipe;
3021

3022 3023
	for_each_pipe(pipe) {
		struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe];
3024

3025 3026
		pipe_crc->opened = false;
		spin_lock_init(&pipe_crc->lock);
3027 3028 3029 3030
		init_waitqueue_head(&pipe_crc->wq);
	}
}

3031
int i915_debugfs_init(struct drm_minor *minor)
3032
{
3033
	int ret, i;
3034

3035
	ret = i915_forcewake_create(minor->debugfs_root, minor);
3036 3037
	if (ret)
		return ret;
3038

3039 3040 3041 3042 3043 3044
	for (i = 0; i < ARRAY_SIZE(i915_pipe_crc_data); i++) {
		ret = i915_pipe_crc_create(minor->debugfs_root, minor, i);
		if (ret)
			return ret;
	}

3045 3046 3047 3048 3049 3050 3051
	for (i = 0; i < ARRAY_SIZE(i915_debugfs_files); i++) {
		ret = i915_debugfs_create(minor->debugfs_root, minor,
					  i915_debugfs_files[i].name,
					  i915_debugfs_files[i].fops);
		if (ret)
			return ret;
	}
3052

3053 3054
	return drm_debugfs_create_files(i915_debugfs_list,
					I915_DEBUGFS_ENTRIES,
3055 3056 3057
					minor->debugfs_root, minor);
}

3058
void i915_debugfs_cleanup(struct drm_minor *minor)
3059
{
3060 3061
	int i;

3062 3063
	drm_debugfs_remove_files(i915_debugfs_list,
				 I915_DEBUGFS_ENTRIES, minor);
3064

3065 3066
	drm_debugfs_remove_files((struct drm_info_list *) &i915_forcewake_fops,
				 1, minor);
3067

D
Daniel Vetter 已提交
3068
	for (i = 0; i < ARRAY_SIZE(i915_pipe_crc_data); i++) {
3069 3070 3071 3072 3073 3074
		struct drm_info_list *info_list =
			(struct drm_info_list *)&i915_pipe_crc_data[i];

		drm_debugfs_remove_files(info_list, 1, minor);
	}

3075 3076 3077 3078 3079 3080
	for (i = 0; i < ARRAY_SIZE(i915_debugfs_files); i++) {
		struct drm_info_list *info_list =
			(struct drm_info_list *) i915_debugfs_files[i].fops;

		drm_debugfs_remove_files(info_list, 1, minor);
	}
3081 3082 3083
}

#endif /* CONFIG_DEBUG_FS */