i915_debugfs.c 132.8 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
/*
 * 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>
 *
 */

29
#include <linux/debugfs.h>
30
#include <linux/sort.h>
31
#include <linux/sched/mm.h>
32
#include "intel_drv.h"
33
#include "intel_guc_submission.h"
34

35 36 37 38 39
static inline struct drm_i915_private *node_to_i915(struct drm_info_node *node)
{
	return to_i915(node->minor->dev);
}

40 41 42 43 44 45 46 47 48 49 50
static __always_inline void seq_print_param(struct seq_file *m,
					    const char *name,
					    const char *type,
					    const void *x)
{
	if (!__builtin_strcmp(type, "bool"))
		seq_printf(m, "i915.%s=%s\n", name, yesno(*(const bool *)x));
	else if (!__builtin_strcmp(type, "int"))
		seq_printf(m, "i915.%s=%d\n", name, *(const int *)x);
	else if (!__builtin_strcmp(type, "unsigned int"))
		seq_printf(m, "i915.%s=%u\n", name, *(const unsigned int *)x);
51 52
	else if (!__builtin_strcmp(type, "char *"))
		seq_printf(m, "i915.%s=%s\n", name, *(const char **)x);
53 54 55 56
	else
		BUILD_BUG();
}

57 58
static int i915_capabilities(struct seq_file *m, void *data)
{
59 60
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	const struct intel_device_info *info = INTEL_INFO(dev_priv);
61

62
	seq_printf(m, "gen: %d\n", INTEL_GEN(dev_priv));
63
	seq_printf(m, "platform: %s\n", intel_platform_name(info->platform));
64
	seq_printf(m, "pch: %d\n", INTEL_PCH_TYPE(dev_priv));
65

66
#define PRINT_FLAG(x)  seq_printf(m, #x ": %s\n", yesno(info->x))
67
	DEV_INFO_FOR_EACH_FLAG(PRINT_FLAG);
68
#undef PRINT_FLAG
69

70
	kernel_param_lock(THIS_MODULE);
71
#define PRINT_PARAM(T, x, ...) seq_print_param(m, #x, #T, &i915_modparams.x);
72 73 74 75
	I915_PARAMS_FOR_EACH(PRINT_PARAM);
#undef PRINT_PARAM
	kernel_param_unlock(THIS_MODULE);

76 77
	return 0;
}
78

79
static char get_active_flag(struct drm_i915_gem_object *obj)
80
{
81
	return i915_gem_object_is_active(obj) ? '*' : ' ';
82 83
}

84
static char get_pin_flag(struct drm_i915_gem_object *obj)
85
{
86
	return obj->pin_global ? 'p' : ' ';
87 88
}

89
static char get_tiling_flag(struct drm_i915_gem_object *obj)
90
{
91
	switch (i915_gem_object_get_tiling(obj)) {
92
	default:
93 94 95
	case I915_TILING_NONE: return ' ';
	case I915_TILING_X: return 'X';
	case I915_TILING_Y: return 'Y';
96
	}
97 98
}

99
static char get_global_flag(struct drm_i915_gem_object *obj)
100
{
101
	return obj->userfault_count ? 'g' : ' ';
102 103
}

104
static char get_pin_mapped_flag(struct drm_i915_gem_object *obj)
B
Ben Widawsky 已提交
105
{
C
Chris Wilson 已提交
106
	return obj->mm.mapping ? 'M' : ' ';
B
Ben Widawsky 已提交
107 108
}

109 110 111 112 113
static u64 i915_gem_obj_total_ggtt_size(struct drm_i915_gem_object *obj)
{
	u64 size = 0;
	struct i915_vma *vma;

114 115
	for_each_ggtt_vma(vma, obj) {
		if (drm_mm_node_allocated(&vma->node))
116 117 118 119 120 121
			size += vma->node.size;
	}

	return size;
}

122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
static const char *
stringify_page_sizes(unsigned int page_sizes, char *buf, size_t len)
{
	size_t x = 0;

	switch (page_sizes) {
	case 0:
		return "";
	case I915_GTT_PAGE_SIZE_4K:
		return "4K";
	case I915_GTT_PAGE_SIZE_64K:
		return "64K";
	case I915_GTT_PAGE_SIZE_2M:
		return "2M";
	default:
		if (!buf)
			return "M";

		if (page_sizes & I915_GTT_PAGE_SIZE_2M)
			x += snprintf(buf + x, len - x, "2M, ");
		if (page_sizes & I915_GTT_PAGE_SIZE_64K)
			x += snprintf(buf + x, len - x, "64K, ");
		if (page_sizes & I915_GTT_PAGE_SIZE_4K)
			x += snprintf(buf + x, len - x, "4K, ");
		buf[x-2] = '\0';

		return buf;
	}
}

152 153 154
static void
describe_obj(struct seq_file *m, struct drm_i915_gem_object *obj)
{
155
	struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
156
	struct intel_engine_cs *engine;
B
Ben Widawsky 已提交
157
	struct i915_vma *vma;
158
	unsigned int frontbuffer_bits;
B
Ben Widawsky 已提交
159 160
	int pin_count = 0;

161 162
	lockdep_assert_held(&obj->base.dev->struct_mutex);

163
	seq_printf(m, "%pK: %c%c%c%c%c %8zdKiB %02x %02x %s%s%s",
164
		   &obj->base,
165
		   get_active_flag(obj),
166 167
		   get_pin_flag(obj),
		   get_tiling_flag(obj),
B
Ben Widawsky 已提交
168
		   get_global_flag(obj),
169
		   get_pin_mapped_flag(obj),
170
		   obj->base.size / 1024,
171
		   obj->base.read_domains,
172
		   obj->base.write_domain,
173
		   i915_cache_level_str(dev_priv, obj->cache_level),
C
Chris Wilson 已提交
174 175
		   obj->mm.dirty ? " dirty" : "",
		   obj->mm.madv == I915_MADV_DONTNEED ? " purgeable" : "");
176 177
	if (obj->base.name)
		seq_printf(m, " (name: %d)", obj->base.name);
178
	list_for_each_entry(vma, &obj->vma_list, obj_link) {
179
		if (i915_vma_is_pinned(vma))
B
Ben Widawsky 已提交
180
			pin_count++;
D
Dan Carpenter 已提交
181 182
	}
	seq_printf(m, " (pinned x %d)", pin_count);
183 184
	if (obj->pin_global)
		seq_printf(m, " (global)");
185
	list_for_each_entry(vma, &obj->vma_list, obj_link) {
186 187 188
		if (!drm_mm_node_allocated(&vma->node))
			continue;

189
		seq_printf(m, " (%sgtt offset: %08llx, size: %08llx, pages: %s",
190
			   i915_vma_is_ggtt(vma) ? "g" : "pp",
191 192
			   vma->node.start, vma->node.size,
			   stringify_page_sizes(vma->page_sizes.gtt, NULL, 0));
193 194 195 196 197 198 199 200
		if (i915_vma_is_ggtt(vma)) {
			switch (vma->ggtt_view.type) {
			case I915_GGTT_VIEW_NORMAL:
				seq_puts(m, ", normal");
				break;

			case I915_GGTT_VIEW_PARTIAL:
				seq_printf(m, ", partial [%08llx+%x]",
201 202
					   vma->ggtt_view.partial.offset << PAGE_SHIFT,
					   vma->ggtt_view.partial.size << PAGE_SHIFT);
203 204 205 206
				break;

			case I915_GGTT_VIEW_ROTATED:
				seq_printf(m, ", rotated [(%ux%u, stride=%u, offset=%u), (%ux%u, stride=%u, offset=%u)]",
207 208 209 210 211 212 213 214
					   vma->ggtt_view.rotated.plane[0].width,
					   vma->ggtt_view.rotated.plane[0].height,
					   vma->ggtt_view.rotated.plane[0].stride,
					   vma->ggtt_view.rotated.plane[0].offset,
					   vma->ggtt_view.rotated.plane[1].width,
					   vma->ggtt_view.rotated.plane[1].height,
					   vma->ggtt_view.rotated.plane[1].stride,
					   vma->ggtt_view.rotated.plane[1].offset);
215 216 217 218 219 220 221
				break;

			default:
				MISSING_CASE(vma->ggtt_view.type);
				break;
			}
		}
222 223 224 225
		if (vma->fence)
			seq_printf(m, " , fence: %d%s",
				   vma->fence->id,
				   i915_gem_active_isset(&vma->last_fence) ? "*" : "");
226
		seq_puts(m, ")");
B
Ben Widawsky 已提交
227
	}
228
	if (obj->stolen)
229
		seq_printf(m, " (stolen: %08llx)", obj->stolen->start);
230

231
	engine = i915_gem_object_last_write_engine(obj);
232 233 234
	if (engine)
		seq_printf(m, " (%s)", engine->name);

235 236 237
	frontbuffer_bits = atomic_read(&obj->frontbuffer_bits);
	if (frontbuffer_bits)
		seq_printf(m, " (frontbuffer: 0x%03x)", frontbuffer_bits);
238 239
}

240
static int obj_rank_by_stolen(const void *A, const void *B)
241
{
242 243 244 245
	const struct drm_i915_gem_object *a =
		*(const struct drm_i915_gem_object **)A;
	const struct drm_i915_gem_object *b =
		*(const struct drm_i915_gem_object **)B;
246

R
Rasmus Villemoes 已提交
247 248 249 250 251
	if (a->stolen->start < b->stolen->start)
		return -1;
	if (a->stolen->start > b->stolen->start)
		return 1;
	return 0;
252 253 254 255
}

static int i915_gem_stolen_list_info(struct seq_file *m, void *data)
{
256 257
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	struct drm_device *dev = &dev_priv->drm;
258
	struct drm_i915_gem_object **objects;
259
	struct drm_i915_gem_object *obj;
260
	u64 total_obj_size, total_gtt_size;
261 262 263 264
	unsigned long total, count, n;
	int ret;

	total = READ_ONCE(dev_priv->mm.object_count);
M
Michal Hocko 已提交
265
	objects = kvmalloc_array(total, sizeof(*objects), GFP_KERNEL);
266 267
	if (!objects)
		return -ENOMEM;
268 269 270

	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
271
		goto out;
272 273

	total_obj_size = total_gtt_size = count = 0;
274 275 276

	spin_lock(&dev_priv->mm.obj_lock);
	list_for_each_entry(obj, &dev_priv->mm.bound_list, mm.link) {
277 278 279
		if (count == total)
			break;

280 281 282
		if (obj->stolen == NULL)
			continue;

283
		objects[count++] = obj;
284
		total_obj_size += obj->base.size;
285
		total_gtt_size += i915_gem_obj_total_ggtt_size(obj);
286

287
	}
288
	list_for_each_entry(obj, &dev_priv->mm.unbound_list, mm.link) {
289 290 291
		if (count == total)
			break;

292 293 294
		if (obj->stolen == NULL)
			continue;

295
		objects[count++] = obj;
296 297
		total_obj_size += obj->base.size;
	}
298
	spin_unlock(&dev_priv->mm.obj_lock);
299 300 301

	sort(objects, count, sizeof(*objects), obj_rank_by_stolen, NULL);

302
	seq_puts(m, "Stolen:\n");
303
	for (n = 0; n < count; n++) {
304
		seq_puts(m, "   ");
305
		describe_obj(m, objects[n]);
306 307
		seq_putc(m, '\n');
	}
308
	seq_printf(m, "Total %lu objects, %llu bytes, %llu GTT size\n",
309
		   count, total_obj_size, total_gtt_size);
310 311 312

	mutex_unlock(&dev->struct_mutex);
out:
M
Michal Hocko 已提交
313
	kvfree(objects);
314
	return ret;
315 316
}

317
struct file_stats {
318
	struct drm_i915_file_private *file_priv;
319 320 321 322
	unsigned long count;
	u64 total, unbound;
	u64 global, shared;
	u64 active, inactive;
323 324 325 326 327 328
};

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

331 332
	lockdep_assert_held(&obj->base.dev->struct_mutex);

333 334
	stats->count++;
	stats->total += obj->base.size;
335 336
	if (!obj->bind_count)
		stats->unbound += obj->base.size;
337 338 339
	if (obj->base.name || obj->base.dma_buf)
		stats->shared += obj->base.size;

340 341 342
	list_for_each_entry(vma, &obj->vma_list, obj_link) {
		if (!drm_mm_node_allocated(&vma->node))
			continue;
343

344
		if (i915_vma_is_ggtt(vma)) {
345 346 347
			stats->global += vma->node.size;
		} else {
			struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vma->vm);
348

349
			if (ppgtt->base.file != stats->file_priv)
350 351
				continue;
		}
352

353
		if (i915_vma_is_active(vma))
354 355 356
			stats->active += vma->node.size;
		else
			stats->inactive += vma->node.size;
357 358 359 360 361
	}

	return 0;
}

362 363
#define print_file_stats(m, name, stats) do { \
	if (stats.count) \
364
		seq_printf(m, "%s: %lu objects, %llu bytes (%llu active, %llu inactive, %llu global, %llu shared, %llu unbound)\n", \
365 366 367 368 369 370 371 372 373
			   name, \
			   stats.count, \
			   stats.total, \
			   stats.active, \
			   stats.inactive, \
			   stats.global, \
			   stats.shared, \
			   stats.unbound); \
} while (0)
374 375 376 377 378 379

static void print_batch_pool_stats(struct seq_file *m,
				   struct drm_i915_private *dev_priv)
{
	struct drm_i915_gem_object *obj;
	struct file_stats stats;
380
	struct intel_engine_cs *engine;
381
	enum intel_engine_id id;
382
	int j;
383 384 385

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

386
	for_each_engine(engine, dev_priv, id) {
387
		for (j = 0; j < ARRAY_SIZE(engine->batch_pool.cache_list); j++) {
388
			list_for_each_entry(obj,
389
					    &engine->batch_pool.cache_list[j],
390 391 392
					    batch_pool_link)
				per_file_stats(0, obj, &stats);
		}
393
	}
394

395
	print_file_stats(m, "[k]batch pool", stats);
396 397
}

398 399 400 401 402 403 404
static int per_file_ctx_stats(int id, void *ptr, void *data)
{
	struct i915_gem_context *ctx = ptr;
	int n;

	for (n = 0; n < ARRAY_SIZE(ctx->engine); n++) {
		if (ctx->engine[n].state)
405
			per_file_stats(0, ctx->engine[n].state->obj, data);
406
		if (ctx->engine[n].ring)
407
			per_file_stats(0, ctx->engine[n].ring->vma->obj, data);
408 409 410 411 412 413 414 415
	}

	return 0;
}

static void print_context_stats(struct seq_file *m,
				struct drm_i915_private *dev_priv)
{
416
	struct drm_device *dev = &dev_priv->drm;
417 418 419 420 421
	struct file_stats stats;
	struct drm_file *file;

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

422
	mutex_lock(&dev->struct_mutex);
423 424 425
	if (dev_priv->kernel_context)
		per_file_ctx_stats(0, dev_priv->kernel_context, &stats);

426
	list_for_each_entry(file, &dev->filelist, lhead) {
427 428 429
		struct drm_i915_file_private *fpriv = file->driver_priv;
		idr_for_each(&fpriv->context_idr, per_file_ctx_stats, &stats);
	}
430
	mutex_unlock(&dev->struct_mutex);
431 432 433 434

	print_file_stats(m, "[k]contexts", stats);
}

435
static int i915_gem_object_info(struct seq_file *m, void *data)
436
{
437 438
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	struct drm_device *dev = &dev_priv->drm;
439
	struct i915_ggtt *ggtt = &dev_priv->ggtt;
440 441
	u32 count, mapped_count, purgeable_count, dpy_count, huge_count;
	u64 size, mapped_size, purgeable_size, dpy_size, huge_size;
442
	struct drm_i915_gem_object *obj;
443
	unsigned int page_sizes = 0;
444
	struct drm_file *file;
445
	char buf[80];
446 447 448 449 450 451
	int ret;

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

452
	seq_printf(m, "%u objects, %llu bytes\n",
453 454 455
		   dev_priv->mm.object_count,
		   dev_priv->mm.object_memory);

456 457 458
	size = count = 0;
	mapped_size = mapped_count = 0;
	purgeable_size = purgeable_count = 0;
459
	huge_size = huge_count = 0;
460 461 462

	spin_lock(&dev_priv->mm.obj_lock);
	list_for_each_entry(obj, &dev_priv->mm.unbound_list, mm.link) {
463 464 465
		size += obj->base.size;
		++count;

C
Chris Wilson 已提交
466
		if (obj->mm.madv == I915_MADV_DONTNEED) {
467 468 469 470
			purgeable_size += obj->base.size;
			++purgeable_count;
		}

C
Chris Wilson 已提交
471
		if (obj->mm.mapping) {
472 473
			mapped_count++;
			mapped_size += obj->base.size;
474
		}
475 476 477 478 479 480

		if (obj->mm.page_sizes.sg > I915_GTT_PAGE_SIZE) {
			huge_count++;
			huge_size += obj->base.size;
			page_sizes |= obj->mm.page_sizes.sg;
		}
481
	}
482
	seq_printf(m, "%u unbound objects, %llu bytes\n", count, size);
C
Chris Wilson 已提交
483

484
	size = count = dpy_size = dpy_count = 0;
485
	list_for_each_entry(obj, &dev_priv->mm.bound_list, mm.link) {
486 487 488
		size += obj->base.size;
		++count;

489
		if (obj->pin_global) {
490 491
			dpy_size += obj->base.size;
			++dpy_count;
492
		}
493

C
Chris Wilson 已提交
494
		if (obj->mm.madv == I915_MADV_DONTNEED) {
495 496 497
			purgeable_size += obj->base.size;
			++purgeable_count;
		}
498

C
Chris Wilson 已提交
499
		if (obj->mm.mapping) {
500 501
			mapped_count++;
			mapped_size += obj->base.size;
502
		}
503 504 505 506 507 508

		if (obj->mm.page_sizes.sg > I915_GTT_PAGE_SIZE) {
			huge_count++;
			huge_size += obj->base.size;
			page_sizes |= obj->mm.page_sizes.sg;
		}
509
	}
510 511
	spin_unlock(&dev_priv->mm.obj_lock);

512 513
	seq_printf(m, "%u bound objects, %llu bytes\n",
		   count, size);
514
	seq_printf(m, "%u purgeable objects, %llu bytes\n",
515
		   purgeable_count, purgeable_size);
516 517
	seq_printf(m, "%u mapped objects, %llu bytes\n",
		   mapped_count, mapped_size);
518 519 520 521
	seq_printf(m, "%u huge-paged objects (%s) %llu bytes\n",
		   huge_count,
		   stringify_page_sizes(page_sizes, buf, sizeof(buf)),
		   huge_size);
522
	seq_printf(m, "%u display objects (globally pinned), %llu bytes\n",
523
		   dpy_count, dpy_size);
524

525 526
	seq_printf(m, "%llu [%pa] gtt total\n",
		   ggtt->base.total, &ggtt->mappable_end);
527 528 529
	seq_printf(m, "Supported page sizes: %s\n",
		   stringify_page_sizes(INTEL_INFO(dev_priv)->page_sizes,
					buf, sizeof(buf)));
530

531 532
	seq_putc(m, '\n');
	print_batch_pool_stats(m, dev_priv);
533 534 535
	mutex_unlock(&dev->struct_mutex);

	mutex_lock(&dev->filelist_mutex);
536
	print_context_stats(m, dev_priv);
537 538
	list_for_each_entry_reverse(file, &dev->filelist, lhead) {
		struct file_stats stats;
539 540
		struct drm_i915_file_private *file_priv = file->driver_priv;
		struct drm_i915_gem_request *request;
541
		struct task_struct *task;
542

543 544
		mutex_lock(&dev->struct_mutex);

545
		memset(&stats, 0, sizeof(stats));
546
		stats.file_priv = file->driver_priv;
547
		spin_lock(&file->table_lock);
548
		idr_for_each(&file->object_idr, per_file_stats, &stats);
549
		spin_unlock(&file->table_lock);
550 551 552 553 554 555
		/*
		 * Although we have a valid reference on file->pid, that does
		 * not guarantee that the task_struct who called get_pid() is
		 * still alive (e.g. get_pid(current) => fork() => exit()).
		 * Therefore, we need to protect this ->comm access using RCU.
		 */
556 557
		request = list_first_entry_or_null(&file_priv->mm.request_list,
						   struct drm_i915_gem_request,
558
						   client_link);
559
		rcu_read_lock();
560 561 562
		task = pid_task(request && request->ctx->pid ?
				request->ctx->pid : file->pid,
				PIDTYPE_PID);
563
		print_file_stats(m, task ? task->comm : "<unknown>", stats);
564
		rcu_read_unlock();
565

566
		mutex_unlock(&dev->struct_mutex);
567
	}
568
	mutex_unlock(&dev->filelist_mutex);
569 570 571 572

	return 0;
}

573
static int i915_gem_gtt_info(struct seq_file *m, void *data)
574
{
575
	struct drm_info_node *node = m->private;
576 577
	struct drm_i915_private *dev_priv = node_to_i915(node);
	struct drm_device *dev = &dev_priv->drm;
578
	struct drm_i915_gem_object **objects;
579
	struct drm_i915_gem_object *obj;
580
	u64 total_obj_size, total_gtt_size;
581
	unsigned long nobject, n;
582 583
	int count, ret;

584 585 586 587 588
	nobject = READ_ONCE(dev_priv->mm.object_count);
	objects = kvmalloc_array(nobject, sizeof(*objects), GFP_KERNEL);
	if (!objects)
		return -ENOMEM;

589 590 591 592
	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;

593 594 595 596 597 598 599 600 601 602 603 604 605
	count = 0;
	spin_lock(&dev_priv->mm.obj_lock);
	list_for_each_entry(obj, &dev_priv->mm.bound_list, mm.link) {
		objects[count++] = obj;
		if (count == nobject)
			break;
	}
	spin_unlock(&dev_priv->mm.obj_lock);

	total_obj_size = total_gtt_size = 0;
	for (n = 0;  n < count; n++) {
		obj = objects[n];

606
		seq_puts(m, "   ");
607
		describe_obj(m, obj);
608
		seq_putc(m, '\n');
609
		total_obj_size += obj->base.size;
610
		total_gtt_size += i915_gem_obj_total_ggtt_size(obj);
611 612 613 614
	}

	mutex_unlock(&dev->struct_mutex);

615
	seq_printf(m, "Total %d objects, %llu bytes, %llu GTT size\n",
616
		   count, total_obj_size, total_gtt_size);
617
	kvfree(objects);
618 619 620 621

	return 0;
}

622 623
static int i915_gem_batch_pool_info(struct seq_file *m, void *data)
{
624 625
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	struct drm_device *dev = &dev_priv->drm;
626
	struct drm_i915_gem_object *obj;
627
	struct intel_engine_cs *engine;
628
	enum intel_engine_id id;
629
	int total = 0;
630
	int ret, j;
631 632 633 634 635

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

636
	for_each_engine(engine, dev_priv, id) {
637
		for (j = 0; j < ARRAY_SIZE(engine->batch_pool.cache_list); j++) {
638 639 640 641
			int count;

			count = 0;
			list_for_each_entry(obj,
642
					    &engine->batch_pool.cache_list[j],
643 644 645
					    batch_pool_link)
				count++;
			seq_printf(m, "%s cache[%d]: %d objects\n",
646
				   engine->name, j, count);
647 648

			list_for_each_entry(obj,
649
					    &engine->batch_pool.cache_list[j],
650 651 652 653 654 655 656
					    batch_pool_link) {
				seq_puts(m, "   ");
				describe_obj(m, obj);
				seq_putc(m, '\n');
			}

			total += count;
657
		}
658 659
	}

660
	seq_printf(m, "total: %d\n", total);
661 662 663 664 665 666

	mutex_unlock(&dev->struct_mutex);

	return 0;
}

667 668
static int i915_interrupt_info(struct seq_file *m, void *data)
{
669
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
670
	struct intel_engine_cs *engine;
671
	enum intel_engine_id id;
672
	int i, pipe;
673

674
	intel_runtime_pm_get(dev_priv);
675

676
	if (IS_CHERRYVIEW(dev_priv)) {
677 678 679 680 681 682 683 684 685 686 687
		seq_printf(m, "Master Interrupt Control:\t%08x\n",
			   I915_READ(GEN8_MASTER_IRQ));

		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));
688 689 690 691 692 693 694 695 696 697 698
		for_each_pipe(dev_priv, pipe) {
			enum intel_display_power_domain power_domain;

			power_domain = POWER_DOMAIN_PIPE(pipe);
			if (!intel_display_power_get_if_enabled(dev_priv,
								power_domain)) {
				seq_printf(m, "Pipe %c power disabled\n",
					   pipe_name(pipe));
				continue;
			}

699 700 701 702
			seq_printf(m, "Pipe %c stat:\t%08x\n",
				   pipe_name(pipe),
				   I915_READ(PIPESTAT(pipe)));

703 704 705 706
			intel_display_power_put(dev_priv, power_domain);
		}

		intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
707 708 709 710 711 712
		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));
713
		intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729

		for (i = 0; i < 4; i++) {
			seq_printf(m, "GT Interrupt IMR %d:\t%08x\n",
				   i, I915_READ(GEN8_GT_IMR(i)));
			seq_printf(m, "GT Interrupt IIR %d:\t%08x\n",
				   i, I915_READ(GEN8_GT_IIR(i)));
			seq_printf(m, "GT Interrupt IER %d:\t%08x\n",
				   i, I915_READ(GEN8_GT_IER(i)));
		}

		seq_printf(m, "PCU interrupt mask:\t%08x\n",
			   I915_READ(GEN8_PCU_IMR));
		seq_printf(m, "PCU interrupt identity:\t%08x\n",
			   I915_READ(GEN8_PCU_IIR));
		seq_printf(m, "PCU interrupt enable:\t%08x\n",
			   I915_READ(GEN8_PCU_IER));
730
	} else if (INTEL_GEN(dev_priv) >= 8) {
731 732 733 734 735 736 737 738 739 740 741 742
		seq_printf(m, "Master Interrupt Control:\t%08x\n",
			   I915_READ(GEN8_MASTER_IRQ));

		for (i = 0; i < 4; i++) {
			seq_printf(m, "GT Interrupt IMR %d:\t%08x\n",
				   i, I915_READ(GEN8_GT_IMR(i)));
			seq_printf(m, "GT Interrupt IIR %d:\t%08x\n",
				   i, I915_READ(GEN8_GT_IIR(i)));
			seq_printf(m, "GT Interrupt IER %d:\t%08x\n",
				   i, I915_READ(GEN8_GT_IER(i)));
		}

743
		for_each_pipe(dev_priv, pipe) {
744 745 746 747 748
			enum intel_display_power_domain power_domain;

			power_domain = POWER_DOMAIN_PIPE(pipe);
			if (!intel_display_power_get_if_enabled(dev_priv,
								power_domain)) {
749 750 751 752
				seq_printf(m, "Pipe %c power disabled\n",
					   pipe_name(pipe));
				continue;
			}
753
			seq_printf(m, "Pipe %c IMR:\t%08x\n",
754 755
				   pipe_name(pipe),
				   I915_READ(GEN8_DE_PIPE_IMR(pipe)));
756
			seq_printf(m, "Pipe %c IIR:\t%08x\n",
757 758
				   pipe_name(pipe),
				   I915_READ(GEN8_DE_PIPE_IIR(pipe)));
759
			seq_printf(m, "Pipe %c IER:\t%08x\n",
760 761
				   pipe_name(pipe),
				   I915_READ(GEN8_DE_PIPE_IER(pipe)));
762 763

			intel_display_power_put(dev_priv, power_domain);
764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785
		}

		seq_printf(m, "Display Engine port interrupt mask:\t%08x\n",
			   I915_READ(GEN8_DE_PORT_IMR));
		seq_printf(m, "Display Engine port interrupt identity:\t%08x\n",
			   I915_READ(GEN8_DE_PORT_IIR));
		seq_printf(m, "Display Engine port interrupt enable:\t%08x\n",
			   I915_READ(GEN8_DE_PORT_IER));

		seq_printf(m, "Display Engine misc interrupt mask:\t%08x\n",
			   I915_READ(GEN8_DE_MISC_IMR));
		seq_printf(m, "Display Engine misc interrupt identity:\t%08x\n",
			   I915_READ(GEN8_DE_MISC_IIR));
		seq_printf(m, "Display Engine misc interrupt enable:\t%08x\n",
			   I915_READ(GEN8_DE_MISC_IER));

		seq_printf(m, "PCU interrupt mask:\t%08x\n",
			   I915_READ(GEN8_PCU_IMR));
		seq_printf(m, "PCU interrupt identity:\t%08x\n",
			   I915_READ(GEN8_PCU_IIR));
		seq_printf(m, "PCU interrupt enable:\t%08x\n",
			   I915_READ(GEN8_PCU_IER));
786
	} else if (IS_VALLEYVIEW(dev_priv)) {
J
Jesse Barnes 已提交
787 788 789 790 791 792 793 794
		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));
795 796 797 798 799 800 801 802 803 804 805
		for_each_pipe(dev_priv, pipe) {
			enum intel_display_power_domain power_domain;

			power_domain = POWER_DOMAIN_PIPE(pipe);
			if (!intel_display_power_get_if_enabled(dev_priv,
								power_domain)) {
				seq_printf(m, "Pipe %c power disabled\n",
					   pipe_name(pipe));
				continue;
			}

J
Jesse Barnes 已提交
806 807 808
			seq_printf(m, "Pipe %c stat:\t%08x\n",
				   pipe_name(pipe),
				   I915_READ(PIPESTAT(pipe)));
809 810
			intel_display_power_put(dev_priv, power_domain);
		}
J
Jesse Barnes 已提交
811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835

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

836
	} else if (!HAS_PCH_SPLIT(dev_priv)) {
837 838 839 840 841 842
		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));
843
		for_each_pipe(dev_priv, pipe)
844 845 846
			seq_printf(m, "Pipe %c stat:         %08x\n",
				   pipe_name(pipe),
				   I915_READ(PIPESTAT(pipe)));
847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866
	} 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));
	}
867 868
	if (INTEL_GEN(dev_priv) >= 6) {
		for_each_engine(engine, dev_priv, id) {
869 870
			seq_printf(m,
				   "Graphics Interrupt mask (%s):	%08x\n",
871
				   engine->name, I915_READ_IMR(engine));
872 873
		}
	}
874
	intel_runtime_pm_put(dev_priv);
875

876 877 878
	return 0;
}

879 880
static int i915_gem_fence_regs_info(struct seq_file *m, void *data)
{
881 882
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	struct drm_device *dev = &dev_priv->drm;
883 884 885 886 887
	int i, ret;

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

	seq_printf(m, "Total fences = %d\n", dev_priv->num_fence_regs);
	for (i = 0; i < dev_priv->num_fence_regs; i++) {
891
		struct i915_vma *vma = dev_priv->fence_regs[i].vma;
892

C
Chris Wilson 已提交
893 894
		seq_printf(m, "Fence %d, pin count = %d, object = ",
			   i, dev_priv->fence_regs[i].pin_count);
895
		if (!vma)
896
			seq_puts(m, "unused");
897
		else
898
			describe_obj(m, vma->obj);
899
		seq_putc(m, '\n');
900 901
	}

902
	mutex_unlock(&dev->struct_mutex);
903 904 905
	return 0;
}

906
#if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
907 908
static ssize_t gpu_state_read(struct file *file, char __user *ubuf,
			      size_t count, loff_t *pos)
909
{
910 911 912 913
	struct i915_gpu_state *error = file->private_data;
	struct drm_i915_error_state_buf str;
	ssize_t ret;
	loff_t tmp;
914

915 916
	if (!error)
		return 0;
917

918 919 920
	ret = i915_error_state_buf_init(&str, error->i915, count, *pos);
	if (ret)
		return ret;
921

922 923 924
	ret = i915_error_state_to_str(&str, error);
	if (ret)
		goto out;
925

926 927 928 929
	tmp = 0;
	ret = simple_read_from_buffer(ubuf, count, &tmp, str.buf, str.bytes);
	if (ret < 0)
		goto out;
930

931 932 933 934 935
	*pos = str.start + ret;
out:
	i915_error_state_buf_release(&str);
	return ret;
}
936

937 938 939
static int gpu_state_release(struct inode *inode, struct file *file)
{
	i915_gpu_state_put(file->private_data);
940
	return 0;
941 942
}

943
static int i915_gpu_info_open(struct inode *inode, struct file *file)
944
{
945
	struct drm_i915_private *i915 = inode->i_private;
946
	struct i915_gpu_state *gpu;
947

948 949 950
	intel_runtime_pm_get(i915);
	gpu = i915_capture_gpu_state(i915);
	intel_runtime_pm_put(i915);
951 952
	if (!gpu)
		return -ENOMEM;
953

954
	file->private_data = gpu;
955 956 957
	return 0;
}

958 959 960 961 962 963 964 965 966 967 968 969 970
static const struct file_operations i915_gpu_info_fops = {
	.owner = THIS_MODULE,
	.open = i915_gpu_info_open,
	.read = gpu_state_read,
	.llseek = default_llseek,
	.release = gpu_state_release,
};

static ssize_t
i915_error_state_write(struct file *filp,
		       const char __user *ubuf,
		       size_t cnt,
		       loff_t *ppos)
971
{
972
	struct i915_gpu_state *error = filp->private_data;
973

974 975
	if (!error)
		return 0;
976

977 978
	DRM_DEBUG_DRIVER("Resetting error state\n");
	i915_reset_error_state(error->i915);
979

980 981
	return cnt;
}
982

983 984 985 986
static int i915_error_state_open(struct inode *inode, struct file *file)
{
	file->private_data = i915_first_error_state(inode->i_private);
	return 0;
987 988 989 990 991
}

static const struct file_operations i915_error_state_fops = {
	.owner = THIS_MODULE,
	.open = i915_error_state_open,
992
	.read = gpu_state_read,
993 994
	.write = i915_error_state_write,
	.llseek = default_llseek,
995
	.release = gpu_state_release,
996
};
997 998
#endif

999 1000 1001
static int
i915_next_seqno_set(void *data, u64 val)
{
1002 1003
	struct drm_i915_private *dev_priv = data;
	struct drm_device *dev = &dev_priv->drm;
1004 1005 1006 1007 1008 1009
	int ret;

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

1010
	ret = i915_gem_set_global_seqno(dev, val);
1011 1012
	mutex_unlock(&dev->struct_mutex);

1013
	return ret;
1014 1015
}

1016
DEFINE_SIMPLE_ATTRIBUTE(i915_next_seqno_fops,
1017
			NULL, i915_next_seqno_set,
1018
			"0x%llx\n");
1019

1020
static int i915_frequency_info(struct seq_file *m, void *unused)
1021
{
1022
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
1023
	struct intel_rps *rps = &dev_priv->gt_pm.rps;
1024 1025 1026
	int ret = 0;

	intel_runtime_pm_get(dev_priv);
1027

1028
	if (IS_GEN5(dev_priv)) {
1029 1030 1031 1032 1033 1034 1035 1036 1037
		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);
1038
	} else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
1039
		u32 rpmodectl, freq_sts;
1040

1041
		mutex_lock(&dev_priv->pcu_lock);
1042 1043 1044 1045 1046 1047 1048 1049 1050 1051

		rpmodectl = I915_READ(GEN6_RP_CONTROL);
		seq_printf(m, "Video Turbo Mode: %s\n",
			   yesno(rpmodectl & GEN6_RP_MEDIA_TURBO));
		seq_printf(m, "HW control enabled: %s\n",
			   yesno(rpmodectl & GEN6_RP_ENABLE));
		seq_printf(m, "SW control enabled: %s\n",
			   yesno((rpmodectl & GEN6_RP_MEDIA_MODE_MASK) ==
				  GEN6_RP_MEDIA_SW_MODE));

1052 1053 1054 1055 1056 1057 1058 1059
		freq_sts = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
		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);

		seq_printf(m, "actual GPU freq: %d MHz\n",
			   intel_gpu_freq(dev_priv, (freq_sts >> 8) & 0xff));

		seq_printf(m, "current GPU freq: %d MHz\n",
1060
			   intel_gpu_freq(dev_priv, rps->cur_freq));
1061 1062

		seq_printf(m, "max GPU freq: %d MHz\n",
1063
			   intel_gpu_freq(dev_priv, rps->max_freq));
1064 1065

		seq_printf(m, "min GPU freq: %d MHz\n",
1066
			   intel_gpu_freq(dev_priv, rps->min_freq));
1067 1068

		seq_printf(m, "idle GPU freq: %d MHz\n",
1069
			   intel_gpu_freq(dev_priv, rps->idle_freq));
1070 1071 1072

		seq_printf(m,
			   "efficient (RPe) frequency: %d MHz\n",
1073
			   intel_gpu_freq(dev_priv, rps->efficient_freq));
1074
		mutex_unlock(&dev_priv->pcu_lock);
1075
	} else if (INTEL_GEN(dev_priv) >= 6) {
1076 1077 1078
		u32 rp_state_limits;
		u32 gt_perf_status;
		u32 rp_state_cap;
1079
		u32 rpmodectl, rpinclimit, rpdeclimit;
1080
		u32 rpstat, cagf, reqf;
1081 1082
		u32 rpupei, rpcurup, rpprevup;
		u32 rpdownei, rpcurdown, rpprevdown;
1083
		u32 pm_ier, pm_imr, pm_isr, pm_iir, pm_mask;
1084 1085
		int max_freq;

1086
		rp_state_limits = I915_READ(GEN6_RP_STATE_LIMITS);
1087
		if (IS_GEN9_LP(dev_priv)) {
1088 1089 1090 1091 1092 1093 1094
			rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
			gt_perf_status = I915_READ(BXT_GT_PERF_STATUS);
		} else {
			rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
			gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS);
		}

1095
		/* RPSTAT1 is in the GT power well */
1096
		intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
1097

1098
		reqf = I915_READ(GEN6_RPNSWREQ);
1099
		if (INTEL_GEN(dev_priv) >= 9)
1100 1101 1102
			reqf >>= 23;
		else {
			reqf &= ~GEN6_TURBO_DISABLE;
1103
			if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
1104 1105 1106 1107
				reqf >>= 24;
			else
				reqf >>= 25;
		}
1108
		reqf = intel_gpu_freq(dev_priv, reqf);
1109

1110 1111 1112 1113
		rpmodectl = I915_READ(GEN6_RP_CONTROL);
		rpinclimit = I915_READ(GEN6_RP_UP_THRESHOLD);
		rpdeclimit = I915_READ(GEN6_RP_DOWN_THRESHOLD);

1114
		rpstat = I915_READ(GEN6_RPSTAT1);
1115 1116 1117 1118 1119 1120
		rpupei = I915_READ(GEN6_RP_CUR_UP_EI) & GEN6_CURICONT_MASK;
		rpcurup = I915_READ(GEN6_RP_CUR_UP) & GEN6_CURBSYTAVG_MASK;
		rpprevup = I915_READ(GEN6_RP_PREV_UP) & GEN6_CURBSYTAVG_MASK;
		rpdownei = I915_READ(GEN6_RP_CUR_DOWN_EI) & GEN6_CURIAVG_MASK;
		rpcurdown = I915_READ(GEN6_RP_CUR_DOWN) & GEN6_CURBSYTAVG_MASK;
		rpprevdown = I915_READ(GEN6_RP_PREV_DOWN) & GEN6_CURBSYTAVG_MASK;
T
Tvrtko Ursulin 已提交
1121 1122
		cagf = intel_gpu_freq(dev_priv,
				      intel_get_cagf(dev_priv, rpstat));
1123

1124
		intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
1125

1126
		if (IS_GEN6(dev_priv) || IS_GEN7(dev_priv)) {
1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138
			pm_ier = I915_READ(GEN6_PMIER);
			pm_imr = I915_READ(GEN6_PMIMR);
			pm_isr = I915_READ(GEN6_PMISR);
			pm_iir = I915_READ(GEN6_PMIIR);
			pm_mask = I915_READ(GEN6_PMINTRMSK);
		} else {
			pm_ier = I915_READ(GEN8_GT_IER(2));
			pm_imr = I915_READ(GEN8_GT_IMR(2));
			pm_isr = I915_READ(GEN8_GT_ISR(2));
			pm_iir = I915_READ(GEN8_GT_IIR(2));
			pm_mask = I915_READ(GEN6_PMINTRMSK);
		}
1139 1140 1141 1142 1143 1144 1145
		seq_printf(m, "Video Turbo Mode: %s\n",
			   yesno(rpmodectl & GEN6_RP_MEDIA_TURBO));
		seq_printf(m, "HW control enabled: %s\n",
			   yesno(rpmodectl & GEN6_RP_ENABLE));
		seq_printf(m, "SW control enabled: %s\n",
			   yesno((rpmodectl & GEN6_RP_MEDIA_MODE_MASK) ==
				  GEN6_RP_MEDIA_SW_MODE));
1146
		seq_printf(m, "PM IER=0x%08x IMR=0x%08x ISR=0x%08x IIR=0x%08x, MASK=0x%08x\n",
1147
			   pm_ier, pm_imr, pm_isr, pm_iir, pm_mask);
1148
		seq_printf(m, "pm_intrmsk_mbz: 0x%08x\n",
1149
			   rps->pm_intrmsk_mbz);
1150 1151
		seq_printf(m, "GT_PERF_STATUS: 0x%08x\n", gt_perf_status);
		seq_printf(m, "Render p-state ratio: %d\n",
1152
			   (gt_perf_status & (INTEL_GEN(dev_priv) >= 9 ? 0x1ff00 : 0xff00)) >> 8);
1153 1154 1155 1156
		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);
1157 1158 1159 1160
		seq_printf(m, "RPSTAT1: 0x%08x\n", rpstat);
		seq_printf(m, "RPMODECTL: 0x%08x\n", rpmodectl);
		seq_printf(m, "RPINCLIMIT: 0x%08x\n", rpinclimit);
		seq_printf(m, "RPDECLIMIT: 0x%08x\n", rpdeclimit);
1161
		seq_printf(m, "RPNSWREQ: %dMHz\n", reqf);
B
Ben Widawsky 已提交
1162
		seq_printf(m, "CAGF: %dMHz\n", cagf);
1163 1164 1165 1166 1167 1168
		seq_printf(m, "RP CUR UP EI: %d (%dus)\n",
			   rpupei, GT_PM_INTERVAL_TO_US(dev_priv, rpupei));
		seq_printf(m, "RP CUR UP: %d (%dus)\n",
			   rpcurup, GT_PM_INTERVAL_TO_US(dev_priv, rpcurup));
		seq_printf(m, "RP PREV UP: %d (%dus)\n",
			   rpprevup, GT_PM_INTERVAL_TO_US(dev_priv, rpprevup));
1169
		seq_printf(m, "Up threshold: %d%%\n", rps->up_threshold);
1170

1171 1172 1173 1174 1175 1176
		seq_printf(m, "RP CUR DOWN EI: %d (%dus)\n",
			   rpdownei, GT_PM_INTERVAL_TO_US(dev_priv, rpdownei));
		seq_printf(m, "RP CUR DOWN: %d (%dus)\n",
			   rpcurdown, GT_PM_INTERVAL_TO_US(dev_priv, rpcurdown));
		seq_printf(m, "RP PREV DOWN: %d (%dus)\n",
			   rpprevdown, GT_PM_INTERVAL_TO_US(dev_priv, rpprevdown));
1177
		seq_printf(m, "Down threshold: %d%%\n", rps->down_threshold);
1178

1179
		max_freq = (IS_GEN9_LP(dev_priv) ? rp_state_cap >> 0 :
1180
			    rp_state_cap >> 16) & 0xff;
1181 1182
		max_freq *= (IS_GEN9_BC(dev_priv) ||
			     IS_CANNONLAKE(dev_priv) ? GEN9_FREQ_SCALER : 1);
1183
		seq_printf(m, "Lowest (RPN) frequency: %dMHz\n",
1184
			   intel_gpu_freq(dev_priv, max_freq));
1185 1186

		max_freq = (rp_state_cap & 0xff00) >> 8;
1187 1188
		max_freq *= (IS_GEN9_BC(dev_priv) ||
			     IS_CANNONLAKE(dev_priv) ? GEN9_FREQ_SCALER : 1);
1189
		seq_printf(m, "Nominal (RP1) frequency: %dMHz\n",
1190
			   intel_gpu_freq(dev_priv, max_freq));
1191

1192
		max_freq = (IS_GEN9_LP(dev_priv) ? rp_state_cap >> 16 :
1193
			    rp_state_cap >> 0) & 0xff;
1194 1195
		max_freq *= (IS_GEN9_BC(dev_priv) ||
			     IS_CANNONLAKE(dev_priv) ? GEN9_FREQ_SCALER : 1);
1196
		seq_printf(m, "Max non-overclocked (RP0) frequency: %dMHz\n",
1197
			   intel_gpu_freq(dev_priv, max_freq));
1198
		seq_printf(m, "Max overclocked frequency: %dMHz\n",
1199
			   intel_gpu_freq(dev_priv, rps->max_freq));
1200

1201
		seq_printf(m, "Current freq: %d MHz\n",
1202
			   intel_gpu_freq(dev_priv, rps->cur_freq));
1203
		seq_printf(m, "Actual freq: %d MHz\n", cagf);
1204
		seq_printf(m, "Idle freq: %d MHz\n",
1205
			   intel_gpu_freq(dev_priv, rps->idle_freq));
1206
		seq_printf(m, "Min freq: %d MHz\n",
1207
			   intel_gpu_freq(dev_priv, rps->min_freq));
1208
		seq_printf(m, "Boost freq: %d MHz\n",
1209
			   intel_gpu_freq(dev_priv, rps->boost_freq));
1210
		seq_printf(m, "Max freq: %d MHz\n",
1211
			   intel_gpu_freq(dev_priv, rps->max_freq));
1212 1213
		seq_printf(m,
			   "efficient (RPe) frequency: %d MHz\n",
1214
			   intel_gpu_freq(dev_priv, rps->efficient_freq));
1215
	} else {
1216
		seq_puts(m, "no P-state info available\n");
1217
	}
1218

1219
	seq_printf(m, "Current CD clock frequency: %d kHz\n", dev_priv->cdclk.hw.cdclk);
1220 1221 1222
	seq_printf(m, "Max CD clock frequency: %d kHz\n", dev_priv->max_cdclk_freq);
	seq_printf(m, "Max pixel clock frequency: %d kHz\n", dev_priv->max_dotclk_freq);

1223 1224
	intel_runtime_pm_put(dev_priv);
	return ret;
1225 1226
}

1227 1228 1229 1230
static void i915_instdone_info(struct drm_i915_private *dev_priv,
			       struct seq_file *m,
			       struct intel_instdone *instdone)
{
1231 1232 1233
	int slice;
	int subslice;

1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245
	seq_printf(m, "\t\tINSTDONE: 0x%08x\n",
		   instdone->instdone);

	if (INTEL_GEN(dev_priv) <= 3)
		return;

	seq_printf(m, "\t\tSC_INSTDONE: 0x%08x\n",
		   instdone->slice_common);

	if (INTEL_GEN(dev_priv) <= 6)
		return;

1246 1247 1248 1249 1250 1251 1252
	for_each_instdone_slice_subslice(dev_priv, slice, subslice)
		seq_printf(m, "\t\tSAMPLER_INSTDONE[%d][%d]: 0x%08x\n",
			   slice, subslice, instdone->sampler[slice][subslice]);

	for_each_instdone_slice_subslice(dev_priv, slice, subslice)
		seq_printf(m, "\t\tROW_INSTDONE[%d][%d]: 0x%08x\n",
			   slice, subslice, instdone->row[slice][subslice]);
1253 1254
}

1255 1256
static int i915_hangcheck_info(struct seq_file *m, void *unused)
{
1257
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
1258
	struct intel_engine_cs *engine;
1259 1260
	u64 acthd[I915_NUM_ENGINES];
	u32 seqno[I915_NUM_ENGINES];
1261
	struct intel_instdone instdone;
1262
	enum intel_engine_id id;
1263

1264
	if (test_bit(I915_WEDGED, &dev_priv->gpu_error.flags))
1265 1266 1267 1268 1269
		seq_puts(m, "Wedged\n");
	if (test_bit(I915_RESET_BACKOFF, &dev_priv->gpu_error.flags))
		seq_puts(m, "Reset in progress: struct_mutex backoff\n");
	if (test_bit(I915_RESET_HANDOFF, &dev_priv->gpu_error.flags))
		seq_puts(m, "Reset in progress: reset handoff to waiter\n");
1270
	if (waitqueue_active(&dev_priv->gpu_error.wait_queue))
1271
		seq_puts(m, "Waiter holding struct mutex\n");
1272
	if (waitqueue_active(&dev_priv->gpu_error.reset_queue))
1273
		seq_puts(m, "struct_mutex blocked for reset\n");
1274

1275
	if (!i915_modparams.enable_hangcheck) {
1276
		seq_puts(m, "Hangcheck disabled\n");
1277 1278 1279
		return 0;
	}

1280 1281
	intel_runtime_pm_get(dev_priv);

1282
	for_each_engine(engine, dev_priv, id) {
1283
		acthd[id] = intel_engine_get_active_head(engine);
1284
		seqno[id] = intel_engine_get_seqno(engine);
1285 1286
	}

1287
	intel_engine_get_instdone(dev_priv->engine[RCS], &instdone);
1288

1289 1290
	intel_runtime_pm_put(dev_priv);

1291 1292
	if (timer_pending(&dev_priv->gpu_error.hangcheck_work.timer))
		seq_printf(m, "Hangcheck active, timer fires in %dms\n",
1293 1294
			   jiffies_to_msecs(dev_priv->gpu_error.hangcheck_work.timer.expires -
					    jiffies));
1295 1296 1297 1298
	else if (delayed_work_pending(&dev_priv->gpu_error.hangcheck_work))
		seq_puts(m, "Hangcheck active, work pending\n");
	else
		seq_puts(m, "Hangcheck inactive\n");
1299

1300 1301
	seq_printf(m, "GT active? %s\n", yesno(dev_priv->gt.awake));

1302
	for_each_engine(engine, dev_priv, id) {
1303 1304 1305
		struct intel_breadcrumbs *b = &engine->breadcrumbs;
		struct rb_node *rb;

1306
		seq_printf(m, "%s:\n", engine->name);
1307
		seq_printf(m, "\tseqno = %x [current %x, last %x], inflight %d\n",
1308
			   engine->hangcheck.seqno, seqno[id],
1309 1310
			   intel_engine_last_submit(engine),
			   engine->timeline->inflight_seqnos);
1311
		seq_printf(m, "\twaiters? %s, fake irq active? %s, stalled? %s\n",
1312 1313
			   yesno(intel_engine_has_waiter(engine)),
			   yesno(test_bit(engine->id,
1314 1315 1316
					  &dev_priv->gpu_error.missed_irq_rings)),
			   yesno(engine->hangcheck.stalled));

1317
		spin_lock_irq(&b->rb_lock);
1318
		for (rb = rb_first(&b->waiters); rb; rb = rb_next(rb)) {
G
Geliang Tang 已提交
1319
			struct intel_wait *w = rb_entry(rb, typeof(*w), node);
1320 1321 1322 1323

			seq_printf(m, "\t%s [%d] waiting for %x\n",
				   w->tsk->comm, w->tsk->pid, w->seqno);
		}
1324
		spin_unlock_irq(&b->rb_lock);
1325

1326
		seq_printf(m, "\tACTHD = 0x%08llx [current 0x%08llx]\n",
1327
			   (long long)engine->hangcheck.acthd,
1328
			   (long long)acthd[id]);
1329 1330 1331 1332 1333
		seq_printf(m, "\taction = %s(%d) %d ms ago\n",
			   hangcheck_action_to_str(engine->hangcheck.action),
			   engine->hangcheck.action,
			   jiffies_to_msecs(jiffies -
					    engine->hangcheck.action_timestamp));
1334

1335
		if (engine->id == RCS) {
1336
			seq_puts(m, "\tinstdone read =\n");
1337

1338
			i915_instdone_info(dev_priv, m, &instdone);
1339

1340
			seq_puts(m, "\tinstdone accu =\n");
1341

1342 1343
			i915_instdone_info(dev_priv, m,
					   &engine->hangcheck.instdone);
1344
		}
1345 1346 1347 1348 1349
	}

	return 0;
}

1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366
static int i915_reset_info(struct seq_file *m, void *unused)
{
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	struct i915_gpu_error *error = &dev_priv->gpu_error;
	struct intel_engine_cs *engine;
	enum intel_engine_id id;

	seq_printf(m, "full gpu reset = %u\n", i915_reset_count(error));

	for_each_engine(engine, dev_priv, id) {
		seq_printf(m, "%s = %u\n", engine->name,
			   i915_reset_engine_count(error, engine));
	}

	return 0;
}

1367
static int ironlake_drpc_info(struct seq_file *m)
1368
{
1369
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
1370 1371 1372 1373 1374 1375 1376
	u32 rgvmodectl, rstdbyctl;
	u16 crstandvid;

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

1377
	seq_printf(m, "HD boost: %s\n", yesno(rgvmodectl & MEMMODE_BOOST_EN));
1378 1379 1380 1381
	seq_printf(m, "Boost freq: %d\n",
		   (rgvmodectl & MEMMODE_BOOST_FREQ_MASK) >>
		   MEMMODE_BOOST_FREQ_SHIFT);
	seq_printf(m, "HW control enabled: %s\n",
1382
		   yesno(rgvmodectl & MEMMODE_HWIDLE_EN));
1383
	seq_printf(m, "SW control enabled: %s\n",
1384
		   yesno(rgvmodectl & MEMMODE_SWMODE_EN));
1385
	seq_printf(m, "Gated voltage change: %s\n",
1386
		   yesno(rgvmodectl & MEMMODE_RCLK_GATE));
1387 1388
	seq_printf(m, "Starting frequency: P%d\n",
		   (rgvmodectl & MEMMODE_FSTART_MASK) >> MEMMODE_FSTART_SHIFT);
1389
	seq_printf(m, "Max P-state: P%d\n",
1390
		   (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT);
1391 1392 1393 1394
	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",
1395
		   yesno(!(rstdbyctl & RCX_SW_EXIT)));
1396
	seq_puts(m, "Current RS state: ");
1397 1398
	switch (rstdbyctl & RSX_STATUS_MASK) {
	case RSX_STATUS_ON:
1399
		seq_puts(m, "on\n");
1400 1401
		break;
	case RSX_STATUS_RC1:
1402
		seq_puts(m, "RC1\n");
1403 1404
		break;
	case RSX_STATUS_RC1E:
1405
		seq_puts(m, "RC1E\n");
1406 1407
		break;
	case RSX_STATUS_RS1:
1408
		seq_puts(m, "RS1\n");
1409 1410
		break;
	case RSX_STATUS_RS2:
1411
		seq_puts(m, "RS2 (RC6)\n");
1412 1413
		break;
	case RSX_STATUS_RS3:
1414
		seq_puts(m, "RC3 (RC6+)\n");
1415 1416
		break;
	default:
1417
		seq_puts(m, "unknown\n");
1418 1419
		break;
	}
1420 1421 1422 1423

	return 0;
}

1424
static int i915_forcewake_domains(struct seq_file *m, void *data)
1425
{
1426
	struct drm_i915_private *i915 = node_to_i915(m->private);
1427
	struct intel_uncore_forcewake_domain *fw_domain;
C
Chris Wilson 已提交
1428
	unsigned int tmp;
1429

1430 1431 1432
	seq_printf(m, "user.bypass_count = %u\n",
		   i915->uncore.user_forcewake.count);

1433
	for_each_fw_domain(fw_domain, i915, tmp)
1434
		seq_printf(m, "%s.wake_count = %u\n",
1435
			   intel_uncore_forcewake_domain_to_str(fw_domain->id),
1436
			   READ_ONCE(fw_domain->wake_count));
1437

1438 1439 1440
	return 0;
}

1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451
static void print_rc6_res(struct seq_file *m,
			  const char *title,
			  const i915_reg_t reg)
{
	struct drm_i915_private *dev_priv = node_to_i915(m->private);

	seq_printf(m, "%s %u (%llu us)\n",
		   title, I915_READ(reg),
		   intel_rc6_residency_us(dev_priv, reg));
}

1452 1453
static int vlv_drpc_info(struct seq_file *m)
{
1454
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
1455
	u32 rcctl1, pw_status;
1456

1457
	pw_status = I915_READ(VLV_GTLC_PW_STATUS);
1458 1459 1460 1461 1462 1463
	rcctl1 = I915_READ(GEN6_RC_CONTROL);

	seq_printf(m, "RC6 Enabled: %s\n",
		   yesno(rcctl1 & (GEN7_RC_CTL_TO_MODE |
					GEN6_RC_CTL_EI_MODE(1))));
	seq_printf(m, "Render Power Well: %s\n",
1464
		   (pw_status & VLV_GTLC_PW_RENDER_STATUS_MASK) ? "Up" : "Down");
1465
	seq_printf(m, "Media Power Well: %s\n",
1466
		   (pw_status & VLV_GTLC_PW_MEDIA_STATUS_MASK) ? "Up" : "Down");
1467

1468 1469
	print_rc6_res(m, "Render RC6 residency since boot:", VLV_GT_RENDER_RC6);
	print_rc6_res(m, "Media RC6 residency since boot:", VLV_GT_MEDIA_RC6);
1470

1471
	return i915_forcewake_domains(m, NULL);
1472 1473
}

1474 1475
static int gen6_drpc_info(struct seq_file *m)
{
1476
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
1477
	u32 gt_core_status, rcctl1, rc6vids = 0;
1478
	u32 gen9_powergate_enable = 0, gen9_powergate_status = 0;
1479
	unsigned forcewake_count;
1480
	int count = 0;
1481

1482
	forcewake_count = READ_ONCE(dev_priv->uncore.fw_domain[FW_DOMAIN_ID_RENDER].wake_count);
1483
	if (forcewake_count) {
1484 1485
		seq_puts(m, "RC information inaccurate because somebody "
			    "holds a forcewake reference \n");
1486 1487 1488 1489 1490 1491 1492
	} 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));
	}

1493
	gt_core_status = I915_READ_FW(GEN6_GT_CORE_STATUS);
1494
	trace_i915_reg_rw(false, GEN6_GT_CORE_STATUS, gt_core_status, 4, true);
1495 1496

	rcctl1 = I915_READ(GEN6_RC_CONTROL);
1497
	if (INTEL_GEN(dev_priv) >= 9) {
1498 1499 1500
		gen9_powergate_enable = I915_READ(GEN9_PG_ENABLE);
		gen9_powergate_status = I915_READ(GEN9_PWRGT_DOMAIN_STATUS);
	}
1501

1502
	mutex_lock(&dev_priv->pcu_lock);
1503
	sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
1504
	mutex_unlock(&dev_priv->pcu_lock);
1505

1506
	seq_printf(m, "RC1e Enabled: %s\n",
1507 1508 1509
		   yesno(rcctl1 & GEN6_RC_CTL_RC1e_ENABLE));
	seq_printf(m, "RC6 Enabled: %s\n",
		   yesno(rcctl1 & GEN6_RC_CTL_RC6_ENABLE));
1510
	if (INTEL_GEN(dev_priv) >= 9) {
1511 1512 1513 1514 1515
		seq_printf(m, "Render Well Gating Enabled: %s\n",
			yesno(gen9_powergate_enable & GEN9_RENDER_PG_ENABLE));
		seq_printf(m, "Media Well Gating Enabled: %s\n",
			yesno(gen9_powergate_enable & GEN9_MEDIA_PG_ENABLE));
	}
1516 1517 1518 1519
	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));
1520
	seq_puts(m, "Current RC state: ");
1521 1522 1523
	switch (gt_core_status & GEN6_RCn_MASK) {
	case GEN6_RC0:
		if (gt_core_status & GEN6_CORE_CPD_STATE_MASK)
1524
			seq_puts(m, "Core Power Down\n");
1525
		else
1526
			seq_puts(m, "on\n");
1527 1528
		break;
	case GEN6_RC3:
1529
		seq_puts(m, "RC3\n");
1530 1531
		break;
	case GEN6_RC6:
1532
		seq_puts(m, "RC6\n");
1533 1534
		break;
	case GEN6_RC7:
1535
		seq_puts(m, "RC7\n");
1536 1537
		break;
	default:
1538
		seq_puts(m, "Unknown\n");
1539 1540 1541 1542 1543
		break;
	}

	seq_printf(m, "Core Power Down: %s\n",
		   yesno(gt_core_status & GEN6_CORE_CPD_STATE_MASK));
1544
	if (INTEL_GEN(dev_priv) >= 9) {
1545 1546 1547 1548 1549 1550 1551
		seq_printf(m, "Render Power Well: %s\n",
			(gen9_powergate_status &
			 GEN9_PWRGT_RENDER_STATUS_MASK) ? "Up" : "Down");
		seq_printf(m, "Media Power Well: %s\n",
			(gen9_powergate_status &
			 GEN9_PWRGT_MEDIA_STATUS_MASK) ? "Up" : "Down");
	}
1552 1553

	/* Not exactly sure what this is */
1554 1555 1556 1557 1558
	print_rc6_res(m, "RC6 \"Locked to RPn\" residency since boot:",
		      GEN6_GT_GFX_RC6_LOCKED);
	print_rc6_res(m, "RC6 residency since boot:", GEN6_GT_GFX_RC6);
	print_rc6_res(m, "RC6+ residency since boot:", GEN6_GT_GFX_RC6p);
	print_rc6_res(m, "RC6++ residency since boot:", GEN6_GT_GFX_RC6pp);
1559

B
Ben Widawsky 已提交
1560 1561 1562 1563 1564 1565
	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)));
1566
	return i915_forcewake_domains(m, NULL);
1567 1568 1569 1570
}

static int i915_drpc_info(struct seq_file *m, void *unused)
{
1571
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
1572 1573 1574
	int err;

	intel_runtime_pm_get(dev_priv);
1575

1576
	if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
1577
		err = vlv_drpc_info(m);
1578
	else if (INTEL_GEN(dev_priv) >= 6)
1579
		err = gen6_drpc_info(m);
1580
	else
1581 1582 1583 1584 1585
		err = ironlake_drpc_info(m);

	intel_runtime_pm_put(dev_priv);

	return err;
1586 1587
}

1588 1589
static int i915_frontbuffer_tracking(struct seq_file *m, void *unused)
{
1590
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
1591 1592 1593 1594 1595 1596 1597 1598 1599 1600

	seq_printf(m, "FB tracking busy bits: 0x%08x\n",
		   dev_priv->fb_tracking.busy_bits);

	seq_printf(m, "FB tracking flip bits: 0x%08x\n",
		   dev_priv->fb_tracking.flip_bits);

	return 0;
}

1601 1602
static int i915_fbc_status(struct seq_file *m, void *unused)
{
1603
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
1604

1605 1606
	if (!HAS_FBC(dev_priv))
		return -ENODEV;
1607

1608
	intel_runtime_pm_get(dev_priv);
P
Paulo Zanoni 已提交
1609
	mutex_lock(&dev_priv->fbc.lock);
1610

1611
	if (intel_fbc_is_active(dev_priv))
1612
		seq_puts(m, "FBC enabled\n");
1613 1614
	else
		seq_printf(m, "FBC disabled: %s\n",
1615
			   dev_priv->fbc.no_fbc_reason);
1616

1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632
	if (intel_fbc_is_active(dev_priv)) {
		u32 mask;

		if (INTEL_GEN(dev_priv) >= 8)
			mask = I915_READ(IVB_FBC_STATUS2) & BDW_FBC_COMP_SEG_MASK;
		else if (INTEL_GEN(dev_priv) >= 7)
			mask = I915_READ(IVB_FBC_STATUS2) & IVB_FBC_COMP_SEG_MASK;
		else if (INTEL_GEN(dev_priv) >= 5)
			mask = I915_READ(ILK_DPFC_STATUS) & ILK_DPFC_COMP_SEG_MASK;
		else if (IS_G4X(dev_priv))
			mask = I915_READ(DPFC_STATUS) & DPFC_COMP_SEG_MASK;
		else
			mask = I915_READ(FBC_STATUS) & (FBC_STAT_COMPRESSING |
							FBC_STAT_COMPRESSED);

		seq_printf(m, "Compressing: %s\n", yesno(mask));
1633
	}
1634

P
Paulo Zanoni 已提交
1635
	mutex_unlock(&dev_priv->fbc.lock);
1636 1637
	intel_runtime_pm_put(dev_priv);

1638 1639 1640
	return 0;
}

1641
static int i915_fbc_false_color_get(void *data, u64 *val)
1642
{
1643
	struct drm_i915_private *dev_priv = data;
1644

1645
	if (INTEL_GEN(dev_priv) < 7 || !HAS_FBC(dev_priv))
1646 1647 1648 1649 1650 1651 1652
		return -ENODEV;

	*val = dev_priv->fbc.false_color;

	return 0;
}

1653
static int i915_fbc_false_color_set(void *data, u64 val)
1654
{
1655
	struct drm_i915_private *dev_priv = data;
1656 1657
	u32 reg;

1658
	if (INTEL_GEN(dev_priv) < 7 || !HAS_FBC(dev_priv))
1659 1660
		return -ENODEV;

P
Paulo Zanoni 已提交
1661
	mutex_lock(&dev_priv->fbc.lock);
1662 1663 1664 1665 1666 1667 1668 1669

	reg = I915_READ(ILK_DPFC_CONTROL);
	dev_priv->fbc.false_color = val;

	I915_WRITE(ILK_DPFC_CONTROL, val ?
		   (reg | FBC_CTL_FALSE_COLOR) :
		   (reg & ~FBC_CTL_FALSE_COLOR));

P
Paulo Zanoni 已提交
1670
	mutex_unlock(&dev_priv->fbc.lock);
1671 1672 1673
	return 0;
}

1674 1675
DEFINE_SIMPLE_ATTRIBUTE(i915_fbc_false_color_fops,
			i915_fbc_false_color_get, i915_fbc_false_color_set,
1676 1677
			"%llu\n");

1678 1679
static int i915_ips_status(struct seq_file *m, void *unused)
{
1680
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
1681

1682 1683
	if (!HAS_IPS(dev_priv))
		return -ENODEV;
1684

1685 1686
	intel_runtime_pm_get(dev_priv);

1687
	seq_printf(m, "Enabled by kernel parameter: %s\n",
1688
		   yesno(i915_modparams.enable_ips));
1689

1690
	if (INTEL_GEN(dev_priv) >= 8) {
1691 1692 1693 1694 1695 1696 1697
		seq_puts(m, "Currently: unknown\n");
	} else {
		if (I915_READ(IPS_CTL) & IPS_ENABLE)
			seq_puts(m, "Currently: enabled\n");
		else
			seq_puts(m, "Currently: disabled\n");
	}
1698

1699 1700
	intel_runtime_pm_put(dev_priv);

1701 1702 1703
	return 0;
}

1704 1705
static int i915_sr_status(struct seq_file *m, void *unused)
{
1706
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
1707 1708
	bool sr_enabled = false;

1709
	intel_runtime_pm_get(dev_priv);
1710
	intel_display_power_get(dev_priv, POWER_DOMAIN_INIT);
1711

1712 1713 1714
	if (INTEL_GEN(dev_priv) >= 9)
		/* no global SR status; inspect per-plane WM */;
	else if (HAS_PCH_SPLIT(dev_priv))
1715
		sr_enabled = I915_READ(WM1_LP_ILK) & WM1_LP_SR_EN;
1716
	else if (IS_I965GM(dev_priv) || IS_G4X(dev_priv) ||
1717
		 IS_I945G(dev_priv) || IS_I945GM(dev_priv))
1718
		sr_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
1719
	else if (IS_I915GM(dev_priv))
1720
		sr_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN;
1721
	else if (IS_PINEVIEW(dev_priv))
1722
		sr_enabled = I915_READ(DSPFW3) & PINEVIEW_SELF_REFRESH_EN;
1723
	else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
1724
		sr_enabled = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
1725

1726
	intel_display_power_put(dev_priv, POWER_DOMAIN_INIT);
1727 1728
	intel_runtime_pm_put(dev_priv);

1729
	seq_printf(m, "self-refresh: %s\n", enableddisabled(sr_enabled));
1730 1731 1732 1733

	return 0;
}

1734 1735
static int i915_emon_status(struct seq_file *m, void *unused)
{
1736 1737
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	struct drm_device *dev = &dev_priv->drm;
1738
	unsigned long temp, chipset, gfx;
1739 1740
	int ret;

1741
	if (!IS_GEN5(dev_priv))
1742 1743
		return -ENODEV;

1744 1745 1746
	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
		return ret;
1747 1748 1749 1750

	temp = i915_mch_val(dev_priv);
	chipset = i915_chipset_val(dev_priv);
	gfx = i915_gfx_val(dev_priv);
1751
	mutex_unlock(&dev->struct_mutex);
1752 1753 1754 1755 1756 1757 1758 1759 1760

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

1761 1762
static int i915_ring_freq_table(struct seq_file *m, void *unused)
{
1763
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
1764
	struct intel_rps *rps = &dev_priv->gt_pm.rps;
1765
	int ret = 0;
1766
	int gpu_freq, ia_freq;
1767
	unsigned int max_gpu_freq, min_gpu_freq;
1768

1769 1770
	if (!HAS_LLC(dev_priv))
		return -ENODEV;
1771

1772 1773
	intel_runtime_pm_get(dev_priv);

1774
	ret = mutex_lock_interruptible(&dev_priv->pcu_lock);
1775
	if (ret)
1776
		goto out;
1777

1778
	if (IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) {
1779
		/* Convert GT frequency to 50 HZ units */
1780 1781
		min_gpu_freq = rps->min_freq_softlimit / GEN9_FREQ_SCALER;
		max_gpu_freq = rps->max_freq_softlimit / GEN9_FREQ_SCALER;
1782
	} else {
1783 1784
		min_gpu_freq = rps->min_freq_softlimit;
		max_gpu_freq = rps->max_freq_softlimit;
1785 1786
	}

1787
	seq_puts(m, "GPU freq (MHz)\tEffective CPU freq (MHz)\tEffective Ring freq (MHz)\n");
1788

1789
	for (gpu_freq = min_gpu_freq; gpu_freq <= max_gpu_freq; gpu_freq++) {
B
Ben Widawsky 已提交
1790 1791 1792 1793
		ia_freq = gpu_freq;
		sandybridge_pcode_read(dev_priv,
				       GEN6_PCODE_READ_MIN_FREQ_TABLE,
				       &ia_freq);
1794
		seq_printf(m, "%d\t\t%d\t\t\t\t%d\n",
1795
			   intel_gpu_freq(dev_priv, (gpu_freq *
1796 1797
						     (IS_GEN9_BC(dev_priv) ||
						      IS_CANNONLAKE(dev_priv) ?
1798
						      GEN9_FREQ_SCALER : 1))),
1799 1800
			   ((ia_freq >> 0) & 0xff) * 100,
			   ((ia_freq >> 8) & 0xff) * 100);
1801 1802
	}

1803
	mutex_unlock(&dev_priv->pcu_lock);
1804

1805 1806 1807
out:
	intel_runtime_pm_put(dev_priv);
	return ret;
1808 1809
}

1810 1811
static int i915_opregion(struct seq_file *m, void *unused)
{
1812 1813
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	struct drm_device *dev = &dev_priv->drm;
1814 1815 1816 1817 1818
	struct intel_opregion *opregion = &dev_priv->opregion;
	int ret;

	ret = mutex_lock_interruptible(&dev->struct_mutex);
	if (ret)
1819
		goto out;
1820

1821 1822
	if (opregion->header)
		seq_write(m, opregion->header, OPREGION_SIZE);
1823 1824 1825

	mutex_unlock(&dev->struct_mutex);

1826
out:
1827 1828 1829
	return 0;
}

1830 1831
static int i915_vbt(struct seq_file *m, void *unused)
{
1832
	struct intel_opregion *opregion = &node_to_i915(m->private)->opregion;
1833 1834 1835 1836 1837 1838 1839

	if (opregion->vbt)
		seq_write(m, opregion->vbt, opregion->vbt_size);

	return 0;
}

1840 1841
static int i915_gem_framebuffer_info(struct seq_file *m, void *data)
{
1842 1843
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	struct drm_device *dev = &dev_priv->drm;
1844
	struct intel_framebuffer *fbdev_fb = NULL;
1845
	struct drm_framebuffer *drm_fb;
1846 1847 1848 1849 1850
	int ret;

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

1852
#ifdef CONFIG_DRM_FBDEV_EMULATION
1853
	if (dev_priv->fbdev && dev_priv->fbdev->helper.fb) {
1854
		fbdev_fb = to_intel_framebuffer(dev_priv->fbdev->helper.fb);
1855 1856 1857 1858

		seq_printf(m, "fbcon size: %d x %d, depth %d, %d bpp, modifier 0x%llx, refcount %d, obj ",
			   fbdev_fb->base.width,
			   fbdev_fb->base.height,
V
Ville Syrjälä 已提交
1859
			   fbdev_fb->base.format->depth,
V
Ville Syrjälä 已提交
1860
			   fbdev_fb->base.format->cpp[0] * 8,
V
Ville Syrjälä 已提交
1861
			   fbdev_fb->base.modifier,
1862 1863 1864 1865
			   drm_framebuffer_read_refcount(&fbdev_fb->base));
		describe_obj(m, fbdev_fb->obj);
		seq_putc(m, '\n');
	}
1866
#endif
1867

1868
	mutex_lock(&dev->mode_config.fb_lock);
1869
	drm_for_each_fb(drm_fb, dev) {
1870 1871
		struct intel_framebuffer *fb = to_intel_framebuffer(drm_fb);
		if (fb == fbdev_fb)
1872 1873
			continue;

1874
		seq_printf(m, "user size: %d x %d, depth %d, %d bpp, modifier 0x%llx, refcount %d, obj ",
1875 1876
			   fb->base.width,
			   fb->base.height,
V
Ville Syrjälä 已提交
1877
			   fb->base.format->depth,
V
Ville Syrjälä 已提交
1878
			   fb->base.format->cpp[0] * 8,
V
Ville Syrjälä 已提交
1879
			   fb->base.modifier,
1880
			   drm_framebuffer_read_refcount(&fb->base));
1881
		describe_obj(m, fb->obj);
1882
		seq_putc(m, '\n');
1883
	}
1884
	mutex_unlock(&dev->mode_config.fb_lock);
1885
	mutex_unlock(&dev->struct_mutex);
1886 1887 1888 1889

	return 0;
}

1890
static void describe_ctx_ring(struct seq_file *m, struct intel_ring *ring)
1891
{
1892 1893
	seq_printf(m, " (ringbuffer, space: %d, head: %u, tail: %u)",
		   ring->space, ring->head, ring->tail);
1894 1895
}

1896 1897
static int i915_context_status(struct seq_file *m, void *unused)
{
1898 1899
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	struct drm_device *dev = &dev_priv->drm;
1900
	struct intel_engine_cs *engine;
1901
	struct i915_gem_context *ctx;
1902
	enum intel_engine_id id;
1903
	int ret;
1904

1905
	ret = mutex_lock_interruptible(&dev->struct_mutex);
1906 1907 1908
	if (ret)
		return ret;

1909
	list_for_each_entry(ctx, &dev_priv->contexts.list, link) {
1910
		seq_printf(m, "HW context %u ", ctx->hw_id);
1911
		if (ctx->pid) {
1912 1913
			struct task_struct *task;

1914
			task = get_pid_task(ctx->pid, PIDTYPE_PID);
1915 1916 1917 1918 1919
			if (task) {
				seq_printf(m, "(%s [%d]) ",
					   task->comm, task->pid);
				put_task_struct(task);
			}
1920 1921
		} else if (IS_ERR(ctx->file_priv)) {
			seq_puts(m, "(deleted) ");
1922 1923 1924 1925
		} else {
			seq_puts(m, "(kernel) ");
		}

1926 1927
		seq_putc(m, ctx->remap_slice ? 'R' : 'r');
		seq_putc(m, '\n');
1928

1929
		for_each_engine(engine, dev_priv, id) {
1930 1931 1932 1933
			struct intel_context *ce = &ctx->engine[engine->id];

			seq_printf(m, "%s: ", engine->name);
			if (ce->state)
1934
				describe_obj(m, ce->state->obj);
1935
			if (ce->ring)
1936
				describe_ctx_ring(m, ce->ring);
1937 1938
			seq_putc(m, '\n');
		}
1939 1940

		seq_putc(m, '\n');
1941 1942
	}

1943
	mutex_unlock(&dev->struct_mutex);
1944 1945 1946 1947

	return 0;
}

1948 1949
static const char *swizzle_string(unsigned swizzle)
{
1950
	switch (swizzle) {
1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965
	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:
1966
		return "unknown";
1967 1968 1969 1970 1971 1972 1973
	}

	return "bug";
}

static int i915_swizzle_info(struct seq_file *m, void *data)
{
1974
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
1975

1976
	intel_runtime_pm_get(dev_priv);
1977 1978 1979 1980 1981 1982

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

1983
	if (IS_GEN3(dev_priv) || IS_GEN4(dev_priv)) {
1984 1985
		seq_printf(m, "DDC = 0x%08x\n",
			   I915_READ(DCC));
1986 1987
		seq_printf(m, "DDC2 = 0x%08x\n",
			   I915_READ(DCC2));
1988 1989 1990 1991
		seq_printf(m, "C0DRB3 = 0x%04x\n",
			   I915_READ16(C0DRB3));
		seq_printf(m, "C1DRB3 = 0x%04x\n",
			   I915_READ16(C1DRB3));
1992
	} else if (INTEL_GEN(dev_priv) >= 6) {
1993 1994 1995 1996 1997 1998 1999 2000
		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));
2001
		if (INTEL_GEN(dev_priv) >= 8)
B
Ben Widawsky 已提交
2002 2003 2004 2005 2006
			seq_printf(m, "GAMTARBMODE = 0x%08x\n",
				   I915_READ(GAMTARBMODE));
		else
			seq_printf(m, "ARB_MODE = 0x%08x\n",
				   I915_READ(ARB_MODE));
2007 2008
		seq_printf(m, "DISP_ARB_CTL = 0x%08x\n",
			   I915_READ(DISP_ARB_CTL));
2009
	}
2010 2011 2012 2013

	if (dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES)
		seq_puts(m, "L-shaped memory detected\n");

2014
	intel_runtime_pm_put(dev_priv);
2015 2016 2017 2018

	return 0;
}

B
Ben Widawsky 已提交
2019 2020
static int per_file_ctx(int id, void *ptr, void *data)
{
2021
	struct i915_gem_context *ctx = ptr;
B
Ben Widawsky 已提交
2022
	struct seq_file *m = data;
2023 2024 2025 2026 2027 2028 2029
	struct i915_hw_ppgtt *ppgtt = ctx->ppgtt;

	if (!ppgtt) {
		seq_printf(m, "  no ppgtt for context %d\n",
			   ctx->user_handle);
		return 0;
	}
B
Ben Widawsky 已提交
2030

2031 2032 2033
	if (i915_gem_context_is_default(ctx))
		seq_puts(m, "  default context:\n");
	else
2034
		seq_printf(m, "  context %d:\n", ctx->user_handle);
B
Ben Widawsky 已提交
2035 2036 2037 2038 2039
	ppgtt->debug_dump(ppgtt, m);

	return 0;
}

2040 2041
static void gen8_ppgtt_info(struct seq_file *m,
			    struct drm_i915_private *dev_priv)
D
Daniel Vetter 已提交
2042
{
B
Ben Widawsky 已提交
2043
	struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
2044 2045
	struct intel_engine_cs *engine;
	enum intel_engine_id id;
2046
	int i;
D
Daniel Vetter 已提交
2047

B
Ben Widawsky 已提交
2048 2049 2050
	if (!ppgtt)
		return;

2051
	for_each_engine(engine, dev_priv, id) {
2052
		seq_printf(m, "%s\n", engine->name);
B
Ben Widawsky 已提交
2053
		for (i = 0; i < 4; i++) {
2054
			u64 pdp = I915_READ(GEN8_RING_PDP_UDW(engine, i));
B
Ben Widawsky 已提交
2055
			pdp <<= 32;
2056
			pdp |= I915_READ(GEN8_RING_PDP_LDW(engine, i));
2057
			seq_printf(m, "\tPDP%d 0x%016llx\n", i, pdp);
B
Ben Widawsky 已提交
2058 2059 2060 2061
		}
	}
}

2062 2063
static void gen6_ppgtt_info(struct seq_file *m,
			    struct drm_i915_private *dev_priv)
B
Ben Widawsky 已提交
2064
{
2065
	struct intel_engine_cs *engine;
2066
	enum intel_engine_id id;
D
Daniel Vetter 已提交
2067

2068
	if (IS_GEN6(dev_priv))
D
Daniel Vetter 已提交
2069 2070
		seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(GFX_MODE));

2071
	for_each_engine(engine, dev_priv, id) {
2072
		seq_printf(m, "%s\n", engine->name);
2073
		if (IS_GEN7(dev_priv))
2074 2075 2076 2077 2078 2079 2080 2081
			seq_printf(m, "GFX_MODE: 0x%08x\n",
				   I915_READ(RING_MODE_GEN7(engine)));
		seq_printf(m, "PP_DIR_BASE: 0x%08x\n",
			   I915_READ(RING_PP_DIR_BASE(engine)));
		seq_printf(m, "PP_DIR_BASE_READ: 0x%08x\n",
			   I915_READ(RING_PP_DIR_BASE_READ(engine)));
		seq_printf(m, "PP_DIR_DCLV: 0x%08x\n",
			   I915_READ(RING_PP_DIR_DCLV(engine)));
D
Daniel Vetter 已提交
2082 2083 2084 2085
	}
	if (dev_priv->mm.aliasing_ppgtt) {
		struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;

2086
		seq_puts(m, "aliasing PPGTT:\n");
2087
		seq_printf(m, "pd gtt offset: 0x%08x\n", ppgtt->pd.base.ggtt_offset);
B
Ben Widawsky 已提交
2088

B
Ben Widawsky 已提交
2089
		ppgtt->debug_dump(ppgtt, m);
2090
	}
B
Ben Widawsky 已提交
2091

D
Daniel Vetter 已提交
2092
	seq_printf(m, "ECOCHK: 0x%08x\n", I915_READ(GAM_ECOCHK));
B
Ben Widawsky 已提交
2093 2094 2095 2096
}

static int i915_ppgtt_info(struct seq_file *m, void *data)
{
2097 2098
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	struct drm_device *dev = &dev_priv->drm;
2099
	struct drm_file *file;
2100
	int ret;
B
Ben Widawsky 已提交
2101

2102 2103
	mutex_lock(&dev->filelist_mutex);
	ret = mutex_lock_interruptible(&dev->struct_mutex);
B
Ben Widawsky 已提交
2104
	if (ret)
2105 2106
		goto out_unlock;

2107
	intel_runtime_pm_get(dev_priv);
B
Ben Widawsky 已提交
2108

2109 2110 2111 2112
	if (INTEL_GEN(dev_priv) >= 8)
		gen8_ppgtt_info(m, dev_priv);
	else if (INTEL_GEN(dev_priv) >= 6)
		gen6_ppgtt_info(m, dev_priv);
B
Ben Widawsky 已提交
2113

2114 2115
	list_for_each_entry_reverse(file, &dev->filelist, lhead) {
		struct drm_i915_file_private *file_priv = file->driver_priv;
2116
		struct task_struct *task;
2117

2118
		task = get_pid_task(file->pid, PIDTYPE_PID);
2119 2120
		if (!task) {
			ret = -ESRCH;
2121
			goto out_rpm;
2122
		}
2123 2124
		seq_printf(m, "\nproc: %s\n", task->comm);
		put_task_struct(task);
2125 2126 2127 2128
		idr_for_each(&file_priv->context_idr, per_file_ctx,
			     (void *)(unsigned long)m);
	}

2129
out_rpm:
2130
	intel_runtime_pm_put(dev_priv);
D
Daniel Vetter 已提交
2131
	mutex_unlock(&dev->struct_mutex);
2132 2133
out_unlock:
	mutex_unlock(&dev->filelist_mutex);
2134
	return ret;
D
Daniel Vetter 已提交
2135 2136
}

2137 2138
static int count_irq_waiters(struct drm_i915_private *i915)
{
2139
	struct intel_engine_cs *engine;
2140
	enum intel_engine_id id;
2141 2142
	int count = 0;

2143
	for_each_engine(engine, i915, id)
2144
		count += intel_engine_has_waiter(engine);
2145 2146 2147 2148

	return count;
}

2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162
static const char *rps_power_to_str(unsigned int power)
{
	static const char * const strings[] = {
		[LOW_POWER] = "low power",
		[BETWEEN] = "mixed",
		[HIGH_POWER] = "high power",
	};

	if (power >= ARRAY_SIZE(strings) || !strings[power])
		return "unknown";

	return strings[power];
}

2163 2164
static int i915_rps_boost_info(struct seq_file *m, void *data)
{
2165 2166
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	struct drm_device *dev = &dev_priv->drm;
2167
	struct intel_rps *rps = &dev_priv->gt_pm.rps;
2168 2169
	struct drm_file *file;

2170
	seq_printf(m, "RPS enabled? %d\n", rps->enabled);
2171 2172
	seq_printf(m, "GPU busy? %s [%d requests]\n",
		   yesno(dev_priv->gt.awake), dev_priv->gt.active_requests);
2173
	seq_printf(m, "CPU waiting? %d\n", count_irq_waiters(dev_priv));
2174
	seq_printf(m, "Boosts outstanding? %d\n",
2175
		   atomic_read(&rps->num_waiters));
2176
	seq_printf(m, "Frequency requested %d\n",
2177
		   intel_gpu_freq(dev_priv, rps->cur_freq));
2178
	seq_printf(m, "  min hard:%d, soft:%d; max soft:%d, hard:%d\n",
2179 2180 2181 2182
		   intel_gpu_freq(dev_priv, rps->min_freq),
		   intel_gpu_freq(dev_priv, rps->min_freq_softlimit),
		   intel_gpu_freq(dev_priv, rps->max_freq_softlimit),
		   intel_gpu_freq(dev_priv, rps->max_freq));
2183
	seq_printf(m, "  idle:%d, efficient:%d, boost:%d\n",
2184 2185 2186
		   intel_gpu_freq(dev_priv, rps->idle_freq),
		   intel_gpu_freq(dev_priv, rps->efficient_freq),
		   intel_gpu_freq(dev_priv, rps->boost_freq));
2187 2188

	mutex_lock(&dev->filelist_mutex);
2189 2190 2191 2192 2193 2194
	list_for_each_entry_reverse(file, &dev->filelist, lhead) {
		struct drm_i915_file_private *file_priv = file->driver_priv;
		struct task_struct *task;

		rcu_read_lock();
		task = pid_task(file->pid, PIDTYPE_PID);
2195
		seq_printf(m, "%s [%d]: %d boosts\n",
2196 2197
			   task ? task->comm : "<unknown>",
			   task ? task->pid : -1,
2198
			   atomic_read(&file_priv->rps_client.boosts));
2199 2200
		rcu_read_unlock();
	}
2201
	seq_printf(m, "Kernel (anonymous) boosts: %d\n",
2202
		   atomic_read(&rps->boosts));
2203
	mutex_unlock(&dev->filelist_mutex);
2204

2205
	if (INTEL_GEN(dev_priv) >= 6 &&
2206
	    rps->enabled &&
2207
	    dev_priv->gt.active_requests) {
2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218
		u32 rpup, rpupei;
		u32 rpdown, rpdownei;

		intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
		rpup = I915_READ_FW(GEN6_RP_CUR_UP) & GEN6_RP_EI_MASK;
		rpupei = I915_READ_FW(GEN6_RP_CUR_UP_EI) & GEN6_RP_EI_MASK;
		rpdown = I915_READ_FW(GEN6_RP_CUR_DOWN) & GEN6_RP_EI_MASK;
		rpdownei = I915_READ_FW(GEN6_RP_CUR_DOWN_EI) & GEN6_RP_EI_MASK;
		intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);

		seq_printf(m, "\nRPS Autotuning (current \"%s\" window):\n",
2219
			   rps_power_to_str(rps->power));
2220
		seq_printf(m, "  Avg. up: %d%% [above threshold? %d%%]\n",
2221
			   rpup && rpupei ? 100 * rpup / rpupei : 0,
2222
			   rps->up_threshold);
2223
		seq_printf(m, "  Avg. down: %d%% [below threshold? %d%%]\n",
2224
			   rpdown && rpdownei ? 100 * rpdown / rpdownei : 0,
2225
			   rps->down_threshold);
2226 2227 2228 2229
	} else {
		seq_puts(m, "\nRPS Autotuning inactive\n");
	}

2230
	return 0;
2231 2232
}

2233 2234
static int i915_llc(struct seq_file *m, void *data)
{
2235
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
2236
	const bool edram = INTEL_GEN(dev_priv) > 8;
2237

2238
	seq_printf(m, "LLC: %s\n", yesno(HAS_LLC(dev_priv)));
2239 2240
	seq_printf(m, "%s: %lluMB\n", edram ? "eDRAM" : "eLLC",
		   intel_uncore_edram_size(dev_priv)/1024/1024);
2241 2242 2243 2244

	return 0;
}

2245 2246 2247
static int i915_huc_load_status_info(struct seq_file *m, void *data)
{
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
2248
	struct drm_printer p;
2249

2250 2251
	if (!HAS_HUC(dev_priv))
		return -ENODEV;
2252

2253 2254
	p = drm_seq_file_printer(m);
	intel_uc_fw_dump(&dev_priv->huc.fw, &p);
2255

2256
	intel_runtime_pm_get(dev_priv);
2257
	seq_printf(m, "\nHuC status 0x%08x:\n", I915_READ(HUC_STATUS2));
2258
	intel_runtime_pm_put(dev_priv);
2259 2260 2261 2262

	return 0;
}

2263 2264
static int i915_guc_load_status_info(struct seq_file *m, void *data)
{
2265
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
2266
	struct drm_printer p;
2267 2268
	u32 tmp, i;

2269 2270
	if (!HAS_GUC(dev_priv))
		return -ENODEV;
2271

2272 2273
	p = drm_seq_file_printer(m);
	intel_uc_fw_dump(&dev_priv->guc.fw, &p);
2274

2275 2276
	intel_runtime_pm_get(dev_priv);

2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289
	tmp = I915_READ(GUC_STATUS);

	seq_printf(m, "\nGuC status 0x%08x:\n", tmp);
	seq_printf(m, "\tBootrom status = 0x%x\n",
		(tmp & GS_BOOTROM_MASK) >> GS_BOOTROM_SHIFT);
	seq_printf(m, "\tuKernel status = 0x%x\n",
		(tmp & GS_UKERNEL_MASK) >> GS_UKERNEL_SHIFT);
	seq_printf(m, "\tMIA Core status = 0x%x\n",
		(tmp & GS_MIA_MASK) >> GS_MIA_SHIFT);
	seq_puts(m, "\nScratch registers:\n");
	for (i = 0; i < 16; i++)
		seq_printf(m, "\t%2d: \t0x%x\n", i, I915_READ(SOFT_SCRATCH(i)));

2290 2291
	intel_runtime_pm_put(dev_priv);

2292 2293 2294
	return 0;
}

2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320
static void i915_guc_log_info(struct seq_file *m,
			      struct drm_i915_private *dev_priv)
{
	struct intel_guc *guc = &dev_priv->guc;

	seq_puts(m, "\nGuC logging stats:\n");

	seq_printf(m, "\tISR:   flush count %10u, overflow count %10u\n",
		   guc->log.flush_count[GUC_ISR_LOG_BUFFER],
		   guc->log.total_overflow_count[GUC_ISR_LOG_BUFFER]);

	seq_printf(m, "\tDPC:   flush count %10u, overflow count %10u\n",
		   guc->log.flush_count[GUC_DPC_LOG_BUFFER],
		   guc->log.total_overflow_count[GUC_DPC_LOG_BUFFER]);

	seq_printf(m, "\tCRASH: flush count %10u, overflow count %10u\n",
		   guc->log.flush_count[GUC_CRASH_DUMP_LOG_BUFFER],
		   guc->log.total_overflow_count[GUC_CRASH_DUMP_LOG_BUFFER]);

	seq_printf(m, "\tTotal flush interrupt count: %u\n",
		   guc->log.flush_interrupt_count);

	seq_printf(m, "\tCapture miss count: %u\n",
		   guc->log.capture_miss_count);
}

2321 2322
static void i915_guc_client_info(struct seq_file *m,
				 struct drm_i915_private *dev_priv,
2323
				 struct intel_guc_client *client)
2324
{
2325
	struct intel_engine_cs *engine;
2326
	enum intel_engine_id id;
2327 2328
	uint64_t tot = 0;

2329 2330
	seq_printf(m, "\tPriority %d, GuC stage index: %u, PD offset 0x%x\n",
		client->priority, client->stage_id, client->proc_desc_offset);
2331 2332
	seq_printf(m, "\tDoorbell id %d, offset: 0x%lx\n",
		client->doorbell_id, client->doorbell_offset);
2333

2334
	for_each_engine(engine, dev_priv, id) {
2335 2336
		u64 submissions = client->submissions[id];
		tot += submissions;
2337
		seq_printf(m, "\tSubmissions: %llu %s\n",
2338
				submissions, engine->name);
2339 2340 2341 2342
	}
	seq_printf(m, "\tTotal: %llu\n", tot);
}

2343 2344 2345 2346 2347
static int i915_guc_info(struct seq_file *m, void *data)
{
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	const struct intel_guc *guc = &dev_priv->guc;

2348 2349 2350 2351 2352
	if (!USES_GUC_SUBMISSION(dev_priv))
		return -ENODEV;

	GEM_BUG_ON(!guc->execbuf_client);
	GEM_BUG_ON(!guc->preempt_client);
2353

2354
	seq_printf(m, "Doorbell map:\n");
2355
	seq_printf(m, "\t%*pb\n", GUC_NUM_DOORBELLS, guc->doorbell_bitmap);
2356
	seq_printf(m, "Doorbell next cacheline: 0x%x\n\n", guc->db_cacheline);
2357

2358 2359
	seq_printf(m, "\nGuC execbuf client @ %p:\n", guc->execbuf_client);
	i915_guc_client_info(m, dev_priv, guc->execbuf_client);
2360 2361
	seq_printf(m, "\nGuC preempt client @ %p:\n", guc->preempt_client);
	i915_guc_client_info(m, dev_priv, guc->preempt_client);
2362

2363 2364
	i915_guc_log_info(m, dev_priv);

2365 2366 2367 2368 2369
	/* Add more as required ... */

	return 0;
}

2370
static int i915_guc_stage_pool(struct seq_file *m, void *data)
A
Alex Dai 已提交
2371
{
2372
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
2373 2374
	const struct intel_guc *guc = &dev_priv->guc;
	struct guc_stage_desc *desc = guc->stage_desc_pool_vaddr;
2375
	struct intel_guc_client *client = guc->execbuf_client;
2376 2377
	unsigned int tmp;
	int index;
A
Alex Dai 已提交
2378

2379 2380
	if (!USES_GUC_SUBMISSION(dev_priv))
		return -ENODEV;
A
Alex Dai 已提交
2381

2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400
	for (index = 0; index < GUC_MAX_STAGE_DESCRIPTORS; index++, desc++) {
		struct intel_engine_cs *engine;

		if (!(desc->attribute & GUC_STAGE_DESC_ATTR_ACTIVE))
			continue;

		seq_printf(m, "GuC stage descriptor %u:\n", index);
		seq_printf(m, "\tIndex: %u\n", desc->stage_id);
		seq_printf(m, "\tAttribute: 0x%x\n", desc->attribute);
		seq_printf(m, "\tPriority: %d\n", desc->priority);
		seq_printf(m, "\tDoorbell id: %d\n", desc->db_id);
		seq_printf(m, "\tEngines used: 0x%x\n",
			   desc->engines_used);
		seq_printf(m, "\tDoorbell trigger phy: 0x%llx, cpu: 0x%llx, uK: 0x%x\n",
			   desc->db_trigger_phy,
			   desc->db_trigger_cpu,
			   desc->db_trigger_uk);
		seq_printf(m, "\tProcess descriptor: 0x%x\n",
			   desc->process_desc);
2401
		seq_printf(m, "\tWorkqueue address: 0x%x, size: 0x%x\n",
2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423
			   desc->wq_addr, desc->wq_size);
		seq_putc(m, '\n');

		for_each_engine_masked(engine, dev_priv, client->engines, tmp) {
			u32 guc_engine_id = engine->guc_id;
			struct guc_execlist_context *lrc =
						&desc->lrc[guc_engine_id];

			seq_printf(m, "\t%s LRC:\n", engine->name);
			seq_printf(m, "\t\tContext desc: 0x%x\n",
				   lrc->context_desc);
			seq_printf(m, "\t\tContext id: 0x%x\n", lrc->context_id);
			seq_printf(m, "\t\tLRCA: 0x%x\n", lrc->ring_lrca);
			seq_printf(m, "\t\tRing begin: 0x%x\n", lrc->ring_begin);
			seq_printf(m, "\t\tRing end: 0x%x\n", lrc->ring_end);
			seq_putc(m, '\n');
		}
	}

	return 0;
}

A
Alex Dai 已提交
2424 2425
static int i915_guc_log_dump(struct seq_file *m, void *data)
{
2426 2427 2428 2429 2430 2431
	struct drm_info_node *node = m->private;
	struct drm_i915_private *dev_priv = node_to_i915(node);
	bool dump_load_err = !!node->info_ent->data;
	struct drm_i915_gem_object *obj = NULL;
	u32 *log;
	int i = 0;
A
Alex Dai 已提交
2432

2433 2434 2435
	if (!HAS_GUC(dev_priv))
		return -ENODEV;

2436 2437 2438 2439
	if (dump_load_err)
		obj = dev_priv->guc.load_err_log;
	else if (dev_priv->guc.log.vma)
		obj = dev_priv->guc.log.vma->obj;
A
Alex Dai 已提交
2440

2441 2442
	if (!obj)
		return 0;
A
Alex Dai 已提交
2443

2444 2445 2446 2447 2448
	log = i915_gem_object_pin_map(obj, I915_MAP_WC);
	if (IS_ERR(log)) {
		DRM_DEBUG("Failed to pin object\n");
		seq_puts(m, "(log data unaccessible)\n");
		return PTR_ERR(log);
A
Alex Dai 已提交
2449 2450
	}

2451 2452 2453 2454 2455
	for (i = 0; i < obj->base.size / sizeof(u32); i += 4)
		seq_printf(m, "0x%08x 0x%08x 0x%08x 0x%08x\n",
			   *(log + i), *(log + i + 1),
			   *(log + i + 2), *(log + i + 3));

A
Alex Dai 已提交
2456 2457
	seq_putc(m, '\n');

2458 2459
	i915_gem_object_unpin_map(obj);

A
Alex Dai 已提交
2460 2461 2462
	return 0;
}

2463 2464
static int i915_guc_log_control_get(void *data, u64 *val)
{
2465
	struct drm_i915_private *dev_priv = data;
2466

2467 2468 2469
	if (!HAS_GUC(dev_priv))
		return -ENODEV;

2470 2471 2472
	if (!dev_priv->guc.log.vma)
		return -EINVAL;

2473
	*val = i915_modparams.guc_log_level;
2474 2475 2476 2477 2478 2479

	return 0;
}

static int i915_guc_log_control_set(void *data, u64 val)
{
2480
	struct drm_i915_private *dev_priv = data;
2481 2482
	int ret;

2483 2484 2485
	if (!HAS_GUC(dev_priv))
		return -ENODEV;

2486 2487 2488
	if (!dev_priv->guc.log.vma)
		return -EINVAL;

2489
	ret = mutex_lock_interruptible(&dev_priv->drm.struct_mutex);
2490 2491 2492 2493 2494 2495 2496
	if (ret)
		return ret;

	intel_runtime_pm_get(dev_priv);
	ret = i915_guc_log_control(dev_priv, val);
	intel_runtime_pm_put(dev_priv);

2497
	mutex_unlock(&dev_priv->drm.struct_mutex);
2498 2499 2500 2501 2502 2503 2504
	return ret;
}

DEFINE_SIMPLE_ATTRIBUTE(i915_guc_log_control_fops,
			i915_guc_log_control_get, i915_guc_log_control_set,
			"%lld\n");

2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527
static const char *psr2_live_status(u32 val)
{
	static const char * const live_status[] = {
		"IDLE",
		"CAPTURE",
		"CAPTURE_FS",
		"SLEEP",
		"BUFON_FW",
		"ML_UP",
		"SU_STANDBY",
		"FAST_SLEEP",
		"DEEP_SLEEP",
		"BUF_ON",
		"TG_ON"
	};

	val = (val & EDP_PSR2_STATUS_STATE_MASK) >> EDP_PSR2_STATUS_STATE_SHIFT;
	if (val < ARRAY_SIZE(live_status))
		return live_status[val];

	return "unknown";
}

2528 2529
static int i915_edp_psr_status(struct seq_file *m, void *data)
{
2530
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
R
Rodrigo Vivi 已提交
2531
	u32 psrperf = 0;
R
Rodrigo Vivi 已提交
2532 2533
	u32 stat[3];
	enum pipe pipe;
R
Rodrigo Vivi 已提交
2534
	bool enabled = false;
2535

2536 2537
	if (!HAS_PSR(dev_priv))
		return -ENODEV;
2538

2539 2540
	intel_runtime_pm_get(dev_priv);

2541
	mutex_lock(&dev_priv->psr.lock);
R
Rodrigo Vivi 已提交
2542 2543
	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));
2544
	seq_printf(m, "Enabled: %s\n", yesno((bool)dev_priv->psr.enabled));
2545
	seq_printf(m, "Active: %s\n", yesno(dev_priv->psr.active));
2546 2547 2548 2549
	seq_printf(m, "Busy frontbuffer bits: 0x%03x\n",
		   dev_priv->psr.busy_frontbuffer_bits);
	seq_printf(m, "Re-enable work scheduled: %s\n",
		   yesno(work_busy(&dev_priv->psr.work.work)));
2550

2551 2552 2553 2554 2555 2556
	if (HAS_DDI(dev_priv)) {
		if (dev_priv->psr.psr2_support)
			enabled = I915_READ(EDP_PSR2_CTL) & EDP_PSR2_ENABLE;
		else
			enabled = I915_READ(EDP_PSR_CTL) & EDP_PSR_ENABLE;
	} else {
2557
		for_each_pipe(dev_priv, pipe) {
2558 2559 2560 2561 2562 2563 2564 2565 2566
			enum transcoder cpu_transcoder =
				intel_pipe_to_cpu_transcoder(dev_priv, pipe);
			enum intel_display_power_domain power_domain;

			power_domain = POWER_DOMAIN_TRANSCODER(cpu_transcoder);
			if (!intel_display_power_get_if_enabled(dev_priv,
								power_domain))
				continue;

2567 2568 2569 2570 2571
			stat[pipe] = I915_READ(VLV_PSRSTAT(pipe)) &
				VLV_EDP_PSR_CURR_STATE_MASK;
			if ((stat[pipe] == VLV_EDP_PSR_ACTIVE_NORFB_UP) ||
			    (stat[pipe] == VLV_EDP_PSR_ACTIVE_SF_UPDATE))
				enabled = true;
2572 2573

			intel_display_power_put(dev_priv, power_domain);
R
Rodrigo Vivi 已提交
2574 2575
		}
	}
2576 2577 2578 2579

	seq_printf(m, "Main link in standby mode: %s\n",
		   yesno(dev_priv->psr.link_standby));

R
Rodrigo Vivi 已提交
2580 2581
	seq_printf(m, "HW Enabled & Active bit: %s", yesno(enabled));

2582
	if (!HAS_DDI(dev_priv))
R
Rodrigo Vivi 已提交
2583 2584 2585 2586 2587 2588
		for_each_pipe(dev_priv, pipe) {
			if ((stat[pipe] == VLV_EDP_PSR_ACTIVE_NORFB_UP) ||
			    (stat[pipe] == VLV_EDP_PSR_ACTIVE_SF_UPDATE))
				seq_printf(m, " pipe %c", pipe_name(pipe));
		}
	seq_puts(m, "\n");
2589

2590 2591 2592 2593
	/*
	 * VLV/CHV PSR has no kind of performance counter
	 * SKL+ Perf counter is reset to 0 everytime DC state is entered
	 */
2594
	if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
2595
		psrperf = I915_READ(EDP_PSR_PERF_CNT) &
R
Rodrigo Vivi 已提交
2596
			EDP_PSR_PERF_CNT_MASK;
R
Rodrigo Vivi 已提交
2597 2598 2599

		seq_printf(m, "Performance_Counter: %u\n", psrperf);
	}
2600
	if (dev_priv->psr.psr2_support) {
2601 2602 2603 2604
		u32 psr2 = I915_READ(EDP_PSR2_STATUS_CTL);

		seq_printf(m, "EDP_PSR2_STATUS_CTL: %x [%s]\n",
			   psr2, psr2_live_status(psr2));
2605
	}
2606
	mutex_unlock(&dev_priv->psr.lock);
2607

2608
	intel_runtime_pm_put(dev_priv);
2609 2610 2611
	return 0;
}

2612 2613
static int i915_sink_crc(struct seq_file *m, void *data)
{
2614 2615
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	struct drm_device *dev = &dev_priv->drm;
2616
	struct intel_connector *connector;
2617
	struct drm_connector_list_iter conn_iter;
2618
	struct intel_dp *intel_dp = NULL;
2619
	struct drm_modeset_acquire_ctx ctx;
2620 2621 2622
	int ret;
	u8 crc[6];

2623 2624
	drm_modeset_acquire_init(&ctx, DRM_MODESET_ACQUIRE_INTERRUPTIBLE);

2625
	drm_connector_list_iter_begin(dev, &conn_iter);
2626

2627
	for_each_intel_connector_iter(connector, &conn_iter) {
2628
		struct drm_crtc *crtc;
2629
		struct drm_connector_state *state;
2630
		struct intel_crtc_state *crtc_state;
2631

2632
		if (connector->base.connector_type != DRM_MODE_CONNECTOR_eDP)
2633 2634
			continue;

2635 2636 2637 2638 2639 2640 2641
retry:
		ret = drm_modeset_lock(&dev->mode_config.connection_mutex, &ctx);
		if (ret)
			goto err;

		state = connector->base.state;
		if (!state->best_encoder)
2642 2643
			continue;

2644 2645 2646 2647 2648
		crtc = state->crtc;
		ret = drm_modeset_lock(&crtc->mutex, &ctx);
		if (ret)
			goto err;

2649 2650
		crtc_state = to_intel_crtc_state(crtc->state);
		if (!crtc_state->base.active)
2651 2652
			continue;

2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663
		/*
		 * We need to wait for all crtc updates to complete, to make
		 * sure any pending modesets and plane updates are completed.
		 */
		if (crtc_state->base.commit) {
			ret = wait_for_completion_interruptible(&crtc_state->base.commit->hw_done);

			if (ret)
				goto err;
		}

2664
		intel_dp = enc_to_intel_dp(state->best_encoder);
2665

2666
		ret = intel_dp_sink_crc(intel_dp, crtc_state, crc);
2667
		if (ret)
2668
			goto err;
2669 2670 2671 2672 2673

		seq_printf(m, "%02x%02x%02x%02x%02x%02x\n",
			   crc[0], crc[1], crc[2],
			   crc[3], crc[4], crc[5]);
		goto out;
2674 2675 2676 2677 2678 2679 2680 2681

err:
		if (ret == -EDEADLK) {
			ret = drm_modeset_backoff(&ctx);
			if (!ret)
				goto retry;
		}
		goto out;
2682 2683 2684
	}
	ret = -ENODEV;
out:
2685
	drm_connector_list_iter_end(&conn_iter);
2686 2687 2688
	drm_modeset_drop_locks(&ctx);
	drm_modeset_acquire_fini(&ctx);

2689 2690 2691
	return ret;
}

2692 2693
static int i915_energy_uJ(struct seq_file *m, void *data)
{
2694
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
2695
	unsigned long long power;
2696 2697
	u32 units;

2698
	if (INTEL_GEN(dev_priv) < 6)
2699 2700
		return -ENODEV;

2701 2702
	intel_runtime_pm_get(dev_priv);

2703 2704 2705 2706 2707 2708
	if (rdmsrl_safe(MSR_RAPL_POWER_UNIT, &power)) {
		intel_runtime_pm_put(dev_priv);
		return -ENODEV;
	}

	units = (power & 0x1f00) >> 8;
2709
	power = I915_READ(MCH_SECP_NRG_STTS);
2710
	power = (1000000 * power) >> units; /* convert to uJ */
2711

2712 2713
	intel_runtime_pm_put(dev_priv);

2714
	seq_printf(m, "%llu", power);
2715 2716 2717 2718

	return 0;
}

2719
static int i915_runtime_pm_status(struct seq_file *m, void *unused)
2720
{
2721
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
D
David Weinehall 已提交
2722
	struct pci_dev *pdev = dev_priv->drm.pdev;
2723

2724 2725
	if (!HAS_RUNTIME_PM(dev_priv))
		seq_puts(m, "Runtime power management not supported\n");
2726

2727
	seq_printf(m, "GPU idle: %s\n", yesno(!dev_priv->gt.awake));
2728
	seq_printf(m, "IRQs disabled: %s\n",
2729
		   yesno(!intel_irqs_enabled(dev_priv)));
2730
#ifdef CONFIG_PM
2731
	seq_printf(m, "Usage count: %d\n",
2732
		   atomic_read(&dev_priv->drm.dev->power.usage_count));
2733 2734 2735
#else
	seq_printf(m, "Device Power Management (CONFIG_PM) disabled\n");
#endif
2736
	seq_printf(m, "PCI device power state: %s [%d]\n",
D
David Weinehall 已提交
2737 2738
		   pci_power_name(pdev->current_state),
		   pdev->current_state);
2739

2740 2741 2742
	return 0;
}

2743 2744
static int i915_power_domain_info(struct seq_file *m, void *unused)
{
2745
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759
	struct i915_power_domains *power_domains = &dev_priv->power_domains;
	int i;

	mutex_lock(&power_domains->lock);

	seq_printf(m, "%-25s %s\n", "Power well/domain", "Use count");
	for (i = 0; i < power_domains->power_well_count; i++) {
		struct i915_power_well *power_well;
		enum intel_display_power_domain power_domain;

		power_well = &power_domains->power_wells[i];
		seq_printf(m, "%-25s %d\n", power_well->name,
			   power_well->count);

2760
		for_each_power_domain(power_domain, power_well->domains)
2761
			seq_printf(m, "  %-23s %d\n",
2762
				 intel_display_power_domain_str(power_domain),
2763 2764 2765 2766 2767 2768 2769 2770
				 power_domains->domain_use_count[power_domain]);
	}

	mutex_unlock(&power_domains->lock);

	return 0;
}

2771 2772
static int i915_dmc_info(struct seq_file *m, void *unused)
{
2773
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
2774 2775
	struct intel_csr *csr;

2776 2777
	if (!HAS_CSR(dev_priv))
		return -ENODEV;
2778 2779 2780

	csr = &dev_priv->csr;

2781 2782
	intel_runtime_pm_get(dev_priv);

2783 2784 2785 2786
	seq_printf(m, "fw loaded: %s\n", yesno(csr->dmc_payload != NULL));
	seq_printf(m, "path: %s\n", csr->fw_path);

	if (!csr->dmc_payload)
2787
		goto out;
2788 2789 2790 2791

	seq_printf(m, "version: %d.%d\n", CSR_VERSION_MAJOR(csr->version),
		   CSR_VERSION_MINOR(csr->version));

2792 2793
	if (IS_KABYLAKE(dev_priv) ||
	    (IS_SKYLAKE(dev_priv) && csr->version >= CSR_VERSION(1, 6))) {
2794 2795 2796 2797
		seq_printf(m, "DC3 -> DC5 count: %d\n",
			   I915_READ(SKL_CSR_DC3_DC5_COUNT));
		seq_printf(m, "DC5 -> DC6 count: %d\n",
			   I915_READ(SKL_CSR_DC5_DC6_COUNT));
2798
	} else if (IS_BROXTON(dev_priv) && csr->version >= CSR_VERSION(1, 4)) {
2799 2800
		seq_printf(m, "DC3 -> DC5 count: %d\n",
			   I915_READ(BXT_CSR_DC3_DC5_COUNT));
2801 2802
	}

2803 2804 2805 2806 2807
out:
	seq_printf(m, "program base: 0x%08x\n", I915_READ(CSR_PROGRAM(0)));
	seq_printf(m, "ssp base: 0x%08x\n", I915_READ(CSR_SSP_BASE));
	seq_printf(m, "htp: 0x%08x\n", I915_READ(CSR_HTP_SKL));

2808 2809
	intel_runtime_pm_put(dev_priv);

2810 2811 2812
	return 0;
}

2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834
static void intel_seq_print_mode(struct seq_file *m, int tabs,
				 struct drm_display_mode *mode)
{
	int i;

	for (i = 0; i < tabs; i++)
		seq_putc(m, '\t');

	seq_printf(m, "id %d:\"%s\" freq %d clock %d hdisp %d hss %d hse %d htot %d vdisp %d vss %d vse %d vtot %d type 0x%x flags 0x%x\n",
		   mode->base.id, mode->name,
		   mode->vrefresh, mode->clock,
		   mode->hdisplay, mode->hsync_start,
		   mode->hsync_end, mode->htotal,
		   mode->vdisplay, mode->vsync_start,
		   mode->vsync_end, mode->vtotal,
		   mode->type, mode->flags);
}

static void intel_encoder_info(struct seq_file *m,
			       struct intel_crtc *intel_crtc,
			       struct intel_encoder *intel_encoder)
{
2835 2836
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	struct drm_device *dev = &dev_priv->drm;
2837 2838 2839 2840 2841 2842
	struct drm_crtc *crtc = &intel_crtc->base;
	struct intel_connector *intel_connector;
	struct drm_encoder *encoder;

	encoder = &intel_encoder->base;
	seq_printf(m, "\tencoder %d: type: %s, connectors:\n",
2843
		   encoder->base.id, encoder->name);
2844 2845 2846 2847
	for_each_connector_on_encoder(dev, encoder, intel_connector) {
		struct drm_connector *connector = &intel_connector->base;
		seq_printf(m, "\t\tconnector %d: type: %s, status: %s",
			   connector->base.id,
2848
			   connector->name,
2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861
			   drm_get_connector_status_name(connector->status));
		if (connector->status == connector_status_connected) {
			struct drm_display_mode *mode = &crtc->mode;
			seq_printf(m, ", mode:\n");
			intel_seq_print_mode(m, 2, mode);
		} else {
			seq_putc(m, '\n');
		}
	}
}

static void intel_crtc_info(struct seq_file *m, struct intel_crtc *intel_crtc)
{
2862 2863
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	struct drm_device *dev = &dev_priv->drm;
2864 2865
	struct drm_crtc *crtc = &intel_crtc->base;
	struct intel_encoder *intel_encoder;
2866 2867
	struct drm_plane_state *plane_state = crtc->primary->state;
	struct drm_framebuffer *fb = plane_state->fb;
2868

2869
	if (fb)
2870
		seq_printf(m, "\tfb: %d, pos: %dx%d, size: %dx%d\n",
2871 2872
			   fb->base.id, plane_state->src_x >> 16,
			   plane_state->src_y >> 16, fb->width, fb->height);
2873 2874
	else
		seq_puts(m, "\tprimary plane disabled\n");
2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893
	for_each_encoder_on_crtc(dev, crtc, intel_encoder)
		intel_encoder_info(m, intel_crtc, intel_encoder);
}

static void intel_panel_info(struct seq_file *m, struct intel_panel *panel)
{
	struct drm_display_mode *mode = panel->fixed_mode;

	seq_printf(m, "\tfixed mode:\n");
	intel_seq_print_mode(m, 2, mode);
}

static void intel_dp_info(struct seq_file *m,
			  struct intel_connector *intel_connector)
{
	struct intel_encoder *intel_encoder = intel_connector->encoder;
	struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);

	seq_printf(m, "\tDPCD rev: %x\n", intel_dp->dpcd[DP_DPCD_REV]);
2894
	seq_printf(m, "\taudio support: %s\n", yesno(intel_dp->has_audio));
2895
	if (intel_connector->base.connector_type == DRM_MODE_CONNECTOR_eDP)
2896
		intel_panel_info(m, &intel_connector->panel);
2897 2898 2899

	drm_dp_downstream_debug(m, intel_dp->dpcd, intel_dp->downstream_ports,
				&intel_dp->aux);
2900 2901
}

L
Libin Yang 已提交
2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915
static void intel_dp_mst_info(struct seq_file *m,
			  struct intel_connector *intel_connector)
{
	struct intel_encoder *intel_encoder = intel_connector->encoder;
	struct intel_dp_mst_encoder *intel_mst =
		enc_to_mst(&intel_encoder->base);
	struct intel_digital_port *intel_dig_port = intel_mst->primary;
	struct intel_dp *intel_dp = &intel_dig_port->dp;
	bool has_audio = drm_dp_mst_port_has_audio(&intel_dp->mst_mgr,
					intel_connector->port);

	seq_printf(m, "\taudio support: %s\n", yesno(has_audio));
}

2916 2917 2918 2919 2920 2921
static void intel_hdmi_info(struct seq_file *m,
			    struct intel_connector *intel_connector)
{
	struct intel_encoder *intel_encoder = intel_connector->encoder;
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&intel_encoder->base);

2922
	seq_printf(m, "\taudio support: %s\n", yesno(intel_hdmi->has_audio));
2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935
}

static void intel_lvds_info(struct seq_file *m,
			    struct intel_connector *intel_connector)
{
	intel_panel_info(m, &intel_connector->panel);
}

static void intel_connector_info(struct seq_file *m,
				 struct drm_connector *connector)
{
	struct intel_connector *intel_connector = to_intel_connector(connector);
	struct intel_encoder *intel_encoder = intel_connector->encoder;
2936
	struct drm_display_mode *mode;
2937 2938

	seq_printf(m, "connector %d: type %s, status: %s\n",
2939
		   connector->base.id, connector->name,
2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950
		   drm_get_connector_status_name(connector->status));
	if (connector->status == connector_status_connected) {
		seq_printf(m, "\tname: %s\n", connector->display_info.name);
		seq_printf(m, "\tphysical dimensions: %dx%dmm\n",
			   connector->display_info.width_mm,
			   connector->display_info.height_mm);
		seq_printf(m, "\tsubpixel order: %s\n",
			   drm_get_subpixel_order_name(connector->display_info.subpixel_order));
		seq_printf(m, "\tCEA rev: %d\n",
			   connector->display_info.cea_rev);
	}
2951

2952
	if (!intel_encoder)
2953 2954 2955 2956 2957
		return;

	switch (connector->connector_type) {
	case DRM_MODE_CONNECTOR_DisplayPort:
	case DRM_MODE_CONNECTOR_eDP:
L
Libin Yang 已提交
2958 2959 2960 2961
		if (intel_encoder->type == INTEL_OUTPUT_DP_MST)
			intel_dp_mst_info(m, intel_connector);
		else
			intel_dp_info(m, intel_connector);
2962 2963 2964
		break;
	case DRM_MODE_CONNECTOR_LVDS:
		if (intel_encoder->type == INTEL_OUTPUT_LVDS)
2965
			intel_lvds_info(m, intel_connector);
2966 2967 2968
		break;
	case DRM_MODE_CONNECTOR_HDMIA:
		if (intel_encoder->type == INTEL_OUTPUT_HDMI ||
2969
		    intel_encoder->type == INTEL_OUTPUT_DDI)
2970 2971 2972 2973
			intel_hdmi_info(m, intel_connector);
		break;
	default:
		break;
2974
	}
2975

2976 2977 2978
	seq_printf(m, "\tmodes:\n");
	list_for_each_entry(mode, &connector->modes, head)
		intel_seq_print_mode(m, 2, mode);
2979 2980
}

2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002
static const char *plane_type(enum drm_plane_type type)
{
	switch (type) {
	case DRM_PLANE_TYPE_OVERLAY:
		return "OVL";
	case DRM_PLANE_TYPE_PRIMARY:
		return "PRI";
	case DRM_PLANE_TYPE_CURSOR:
		return "CUR";
	/*
	 * Deliberately omitting default: to generate compiler warnings
	 * when a new drm_plane_type gets added.
	 */
	}

	return "unknown";
}

static const char *plane_rotation(unsigned int rotation)
{
	static char buf[48];
	/*
3003
	 * According to doc only one DRM_MODE_ROTATE_ is allowed but this
3004 3005 3006 3007
	 * will print them all to visualize if the values are misused
	 */
	snprintf(buf, sizeof(buf),
		 "%s%s%s%s%s%s(0x%08x)",
3008 3009 3010 3011 3012 3013
		 (rotation & DRM_MODE_ROTATE_0) ? "0 " : "",
		 (rotation & DRM_MODE_ROTATE_90) ? "90 " : "",
		 (rotation & DRM_MODE_ROTATE_180) ? "180 " : "",
		 (rotation & DRM_MODE_ROTATE_270) ? "270 " : "",
		 (rotation & DRM_MODE_REFLECT_X) ? "FLIPX " : "",
		 (rotation & DRM_MODE_REFLECT_Y) ? "FLIPY " : "",
3014 3015 3016 3017 3018 3019 3020
		 rotation);

	return buf;
}

static void intel_plane_info(struct seq_file *m, struct intel_crtc *intel_crtc)
{
3021 3022
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	struct drm_device *dev = &dev_priv->drm;
3023 3024 3025 3026 3027
	struct intel_plane *intel_plane;

	for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
		struct drm_plane_state *state;
		struct drm_plane *plane = &intel_plane->base;
3028
		struct drm_format_name_buf format_name;
3029 3030 3031 3032 3033 3034 3035 3036

		if (!plane->state) {
			seq_puts(m, "plane->state is NULL!\n");
			continue;
		}

		state = plane->state;

3037
		if (state->fb) {
V
Ville Syrjälä 已提交
3038 3039
			drm_get_format_name(state->fb->format->format,
					    &format_name);
3040
		} else {
3041
			sprintf(format_name.str, "N/A");
3042 3043
		}

3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056
		seq_printf(m, "\t--Plane id %d: type=%s, crtc_pos=%4dx%4d, crtc_size=%4dx%4d, src_pos=%d.%04ux%d.%04u, src_size=%d.%04ux%d.%04u, format=%s, rotation=%s\n",
			   plane->base.id,
			   plane_type(intel_plane->base.type),
			   state->crtc_x, state->crtc_y,
			   state->crtc_w, state->crtc_h,
			   (state->src_x >> 16),
			   ((state->src_x & 0xffff) * 15625) >> 10,
			   (state->src_y >> 16),
			   ((state->src_y & 0xffff) * 15625) >> 10,
			   (state->src_w >> 16),
			   ((state->src_w & 0xffff) * 15625) >> 10,
			   (state->src_h >> 16),
			   ((state->src_h & 0xffff) * 15625) >> 10,
3057
			   format_name.str,
3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076
			   plane_rotation(state->rotation));
	}
}

static void intel_scaler_info(struct seq_file *m, struct intel_crtc *intel_crtc)
{
	struct intel_crtc_state *pipe_config;
	int num_scalers = intel_crtc->num_scalers;
	int i;

	pipe_config = to_intel_crtc_state(intel_crtc->base.state);

	/* Not all platformas have a scaler */
	if (num_scalers) {
		seq_printf(m, "\tnum_scalers=%d, scaler_users=%x scaler_id=%d",
			   num_scalers,
			   pipe_config->scaler_state.scaler_users,
			   pipe_config->scaler_state.scaler_id);

3077
		for (i = 0; i < num_scalers; i++) {
3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089
			struct intel_scaler *sc =
					&pipe_config->scaler_state.scalers[i];

			seq_printf(m, ", scalers[%d]: use=%s, mode=%x",
				   i, yesno(sc->in_use), sc->mode);
		}
		seq_puts(m, "\n");
	} else {
		seq_puts(m, "\tNo scalers available on this platform\n");
	}
}

3090 3091
static int i915_display_info(struct seq_file *m, void *unused)
{
3092 3093
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	struct drm_device *dev = &dev_priv->drm;
3094
	struct intel_crtc *crtc;
3095
	struct drm_connector *connector;
3096
	struct drm_connector_list_iter conn_iter;
3097

3098
	intel_runtime_pm_get(dev_priv);
3099 3100
	seq_printf(m, "CRTC info\n");
	seq_printf(m, "---------\n");
3101
	for_each_intel_crtc(dev, crtc) {
3102
		struct intel_crtc_state *pipe_config;
3103

3104
		drm_modeset_lock(&crtc->base.mutex, NULL);
3105 3106
		pipe_config = to_intel_crtc_state(crtc->base.state);

3107
		seq_printf(m, "CRTC %d: pipe: %c, active=%s, (size=%dx%d), dither=%s, bpp=%d\n",
3108
			   crtc->base.base.id, pipe_name(crtc->pipe),
3109
			   yesno(pipe_config->base.active),
3110 3111 3112
			   pipe_config->pipe_src_w, pipe_config->pipe_src_h,
			   yesno(pipe_config->dither), pipe_config->pipe_bpp);

3113
		if (pipe_config->base.active) {
3114 3115 3116
			struct intel_plane *cursor =
				to_intel_plane(crtc->base.cursor);

3117 3118
			intel_crtc_info(m, crtc);

3119 3120 3121 3122 3123 3124 3125
			seq_printf(m, "\tcursor visible? %s, position (%d, %d), size %dx%d, addr 0x%08x\n",
				   yesno(cursor->base.state->visible),
				   cursor->base.state->crtc_x,
				   cursor->base.state->crtc_y,
				   cursor->base.state->crtc_w,
				   cursor->base.state->crtc_h,
				   cursor->cursor.base);
3126 3127
			intel_scaler_info(m, crtc);
			intel_plane_info(m, crtc);
3128
		}
3129 3130 3131 3132

		seq_printf(m, "\tunderrun reporting: cpu=%s pch=%s \n",
			   yesno(!crtc->cpu_fifo_underrun_disabled),
			   yesno(!crtc->pch_fifo_underrun_disabled));
3133
		drm_modeset_unlock(&crtc->base.mutex);
3134 3135 3136 3137 3138
	}

	seq_printf(m, "\n");
	seq_printf(m, "Connector info\n");
	seq_printf(m, "--------------\n");
3139 3140 3141
	mutex_lock(&dev->mode_config.mutex);
	drm_connector_list_iter_begin(dev, &conn_iter);
	drm_for_each_connector_iter(connector, &conn_iter)
3142
		intel_connector_info(m, connector);
3143 3144 3145
	drm_connector_list_iter_end(&conn_iter);
	mutex_unlock(&dev->mode_config.mutex);

3146
	intel_runtime_pm_put(dev_priv);
3147 3148 3149 3150

	return 0;
}

3151 3152 3153 3154
static int i915_engine_info(struct seq_file *m, void *unused)
{
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	struct intel_engine_cs *engine;
3155
	enum intel_engine_id id;
3156
	struct drm_printer p;
3157

3158 3159
	intel_runtime_pm_get(dev_priv);

3160 3161 3162 3163
	seq_printf(m, "GT awake? %s\n",
		   yesno(dev_priv->gt.awake));
	seq_printf(m, "Global active requests: %d\n",
		   dev_priv->gt.active_requests);
L
Lionel Landwerlin 已提交
3164 3165
	seq_printf(m, "CS timestamp frequency: %u kHz\n",
		   dev_priv->info.cs_timestamp_frequency_khz);
3166

3167 3168
	p = drm_seq_file_printer(m);
	for_each_engine(engine, dev_priv, id)
3169
		intel_engine_dump(engine, &p, "%s\n", engine->name);
3170

3171 3172
	intel_runtime_pm_put(dev_priv);

3173 3174 3175
	return 0;
}

3176 3177 3178 3179 3180 3181 3182 3183 3184 3185
static int i915_shrinker_info(struct seq_file *m, void *unused)
{
	struct drm_i915_private *i915 = node_to_i915(m->private);

	seq_printf(m, "seeks = %d\n", i915->mm.shrinker.seeks);
	seq_printf(m, "batch = %lu\n", i915->mm.shrinker.batch);

	return 0;
}

3186 3187
static int i915_shared_dplls_info(struct seq_file *m, void *unused)
{
3188 3189
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	struct drm_device *dev = &dev_priv->drm;
3190 3191 3192 3193 3194 3195 3196
	int i;

	drm_modeset_lock_all(dev);
	for (i = 0; i < dev_priv->num_shared_dpll; i++) {
		struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];

		seq_printf(m, "DPLL%i: %s, id: %i\n", i, pll->name, pll->id);
3197
		seq_printf(m, " crtc_mask: 0x%08x, active: 0x%x, on: %s\n",
3198
			   pll->state.crtc_mask, pll->active_mask, yesno(pll->on));
3199
		seq_printf(m, " tracked hardware state:\n");
3200
		seq_printf(m, " dpll:    0x%08x\n", pll->state.hw_state.dpll);
3201
		seq_printf(m, " dpll_md: 0x%08x\n",
3202 3203 3204 3205
			   pll->state.hw_state.dpll_md);
		seq_printf(m, " fp0:     0x%08x\n", pll->state.hw_state.fp0);
		seq_printf(m, " fp1:     0x%08x\n", pll->state.hw_state.fp1);
		seq_printf(m, " wrpll:   0x%08x\n", pll->state.hw_state.wrpll);
3206 3207 3208 3209 3210 3211
	}
	drm_modeset_unlock_all(dev);

	return 0;
}

3212
static int i915_wa_registers(struct seq_file *m, void *unused)
3213 3214 3215
{
	int i;
	int ret;
3216
	struct intel_engine_cs *engine;
3217 3218
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	struct drm_device *dev = &dev_priv->drm;
3219
	struct i915_workarounds *workarounds = &dev_priv->workarounds;
3220
	enum intel_engine_id id;
3221 3222 3223 3224 3225 3226 3227

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

	intel_runtime_pm_get(dev_priv);

3228
	seq_printf(m, "Workarounds applied: %d\n", workarounds->count);
3229
	for_each_engine(engine, dev_priv, id)
3230
		seq_printf(m, "HW whitelist count for %s: %d\n",
3231
			   engine->name, workarounds->hw_whitelist_count[id]);
3232
	for (i = 0; i < workarounds->count; ++i) {
3233 3234
		i915_reg_t addr;
		u32 mask, value, read;
3235
		bool ok;
3236

3237 3238 3239
		addr = workarounds->reg[i].addr;
		mask = workarounds->reg[i].mask;
		value = workarounds->reg[i].value;
3240 3241 3242
		read = I915_READ(addr);
		ok = (value & mask) == (read & mask);
		seq_printf(m, "0x%X: 0x%08X, mask: 0x%08X, read: 0x%08x, status: %s\n",
3243
			   i915_mmio_reg_offset(addr), value, mask, read, ok ? "OK" : "FAIL");
3244 3245 3246 3247 3248 3249 3250 3251
	}

	intel_runtime_pm_put(dev_priv);
	mutex_unlock(&dev->struct_mutex);

	return 0;
}

3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302
static int i915_ipc_status_show(struct seq_file *m, void *data)
{
	struct drm_i915_private *dev_priv = m->private;

	seq_printf(m, "Isochronous Priority Control: %s\n",
			yesno(dev_priv->ipc_enabled));
	return 0;
}

static int i915_ipc_status_open(struct inode *inode, struct file *file)
{
	struct drm_i915_private *dev_priv = inode->i_private;

	if (!HAS_IPC(dev_priv))
		return -ENODEV;

	return single_open(file, i915_ipc_status_show, dev_priv);
}

static ssize_t i915_ipc_status_write(struct file *file, const char __user *ubuf,
				     size_t len, loff_t *offp)
{
	struct seq_file *m = file->private_data;
	struct drm_i915_private *dev_priv = m->private;
	int ret;
	bool enable;

	ret = kstrtobool_from_user(ubuf, len, &enable);
	if (ret < 0)
		return ret;

	intel_runtime_pm_get(dev_priv);
	if (!dev_priv->ipc_enabled && enable)
		DRM_INFO("Enabling IPC: WM will be proper only after next commit\n");
	dev_priv->wm.distrust_bios_wm = true;
	dev_priv->ipc_enabled = enable;
	intel_enable_ipc(dev_priv);
	intel_runtime_pm_put(dev_priv);

	return len;
}

static const struct file_operations i915_ipc_status_fops = {
	.owner = THIS_MODULE,
	.open = i915_ipc_status_open,
	.read = seq_read,
	.llseek = seq_lseek,
	.release = single_release,
	.write = i915_ipc_status_write
};

3303 3304
static int i915_ddb_info(struct seq_file *m, void *unused)
{
3305 3306
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	struct drm_device *dev = &dev_priv->drm;
3307 3308 3309 3310 3311
	struct skl_ddb_allocation *ddb;
	struct skl_ddb_entry *entry;
	enum pipe pipe;
	int plane;

3312
	if (INTEL_GEN(dev_priv) < 9)
3313
		return -ENODEV;
3314

3315 3316 3317 3318 3319 3320 3321 3322 3323
	drm_modeset_lock_all(dev);

	ddb = &dev_priv->wm.skl_hw.ddb;

	seq_printf(m, "%-15s%8s%8s%8s\n", "", "Start", "End", "Size");

	for_each_pipe(dev_priv, pipe) {
		seq_printf(m, "Pipe %c\n", pipe_name(pipe));

3324
		for_each_universal_plane(dev_priv, pipe, plane) {
3325 3326 3327 3328 3329 3330
			entry = &ddb->plane[pipe][plane];
			seq_printf(m, "  Plane%-8d%8u%8u%8u\n", plane + 1,
				   entry->start, entry->end,
				   skl_ddb_entry_size(entry));
		}

3331
		entry = &ddb->plane[pipe][PLANE_CURSOR];
3332 3333 3334 3335 3336 3337 3338 3339 3340
		seq_printf(m, "  %-13s%8u%8u%8u\n", "Cursor", entry->start,
			   entry->end, skl_ddb_entry_size(entry));
	}

	drm_modeset_unlock_all(dev);

	return 0;
}

3341
static void drrs_status_per_crtc(struct seq_file *m,
3342 3343
				 struct drm_device *dev,
				 struct intel_crtc *intel_crtc)
3344
{
3345
	struct drm_i915_private *dev_priv = to_i915(dev);
3346 3347
	struct i915_drrs *drrs = &dev_priv->drrs;
	int vrefresh = 0;
3348
	struct drm_connector *connector;
3349
	struct drm_connector_list_iter conn_iter;
3350

3351 3352
	drm_connector_list_iter_begin(dev, &conn_iter);
	drm_for_each_connector_iter(connector, &conn_iter) {
3353 3354 3355 3356
		if (connector->state->crtc != &intel_crtc->base)
			continue;

		seq_printf(m, "%s:\n", connector->name);
3357
	}
3358
	drm_connector_list_iter_end(&conn_iter);
3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370

	if (dev_priv->vbt.drrs_type == STATIC_DRRS_SUPPORT)
		seq_puts(m, "\tVBT: DRRS_type: Static");
	else if (dev_priv->vbt.drrs_type == SEAMLESS_DRRS_SUPPORT)
		seq_puts(m, "\tVBT: DRRS_type: Seamless");
	else if (dev_priv->vbt.drrs_type == DRRS_NOT_SUPPORTED)
		seq_puts(m, "\tVBT: DRRS_type: None");
	else
		seq_puts(m, "\tVBT: DRRS_type: FIXME: Unrecognized Value");

	seq_puts(m, "\n\n");

3371
	if (to_intel_crtc_state(intel_crtc->base.state)->has_drrs) {
3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414
		struct intel_panel *panel;

		mutex_lock(&drrs->mutex);
		/* DRRS Supported */
		seq_puts(m, "\tDRRS Supported: Yes\n");

		/* disable_drrs() will make drrs->dp NULL */
		if (!drrs->dp) {
			seq_puts(m, "Idleness DRRS: Disabled");
			mutex_unlock(&drrs->mutex);
			return;
		}

		panel = &drrs->dp->attached_connector->panel;
		seq_printf(m, "\t\tBusy_frontbuffer_bits: 0x%X",
					drrs->busy_frontbuffer_bits);

		seq_puts(m, "\n\t\t");
		if (drrs->refresh_rate_type == DRRS_HIGH_RR) {
			seq_puts(m, "DRRS_State: DRRS_HIGH_RR\n");
			vrefresh = panel->fixed_mode->vrefresh;
		} else if (drrs->refresh_rate_type == DRRS_LOW_RR) {
			seq_puts(m, "DRRS_State: DRRS_LOW_RR\n");
			vrefresh = panel->downclock_mode->vrefresh;
		} else {
			seq_printf(m, "DRRS_State: Unknown(%d)\n",
						drrs->refresh_rate_type);
			mutex_unlock(&drrs->mutex);
			return;
		}
		seq_printf(m, "\t\tVrefresh: %d", vrefresh);

		seq_puts(m, "\n\t\t");
		mutex_unlock(&drrs->mutex);
	} else {
		/* DRRS not supported. Print the VBT parameter*/
		seq_puts(m, "\tDRRS Supported : No");
	}
	seq_puts(m, "\n");
}

static int i915_drrs_status(struct seq_file *m, void *unused)
{
3415 3416
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	struct drm_device *dev = &dev_priv->drm;
3417 3418 3419
	struct intel_crtc *intel_crtc;
	int active_crtc_cnt = 0;

3420
	drm_modeset_lock_all(dev);
3421
	for_each_intel_crtc(dev, intel_crtc) {
3422
		if (intel_crtc->base.state->active) {
3423 3424 3425 3426 3427 3428
			active_crtc_cnt++;
			seq_printf(m, "\nCRTC %d:  ", active_crtc_cnt);

			drrs_status_per_crtc(m, dev, intel_crtc);
		}
	}
3429
	drm_modeset_unlock_all(dev);
3430 3431 3432 3433 3434 3435 3436

	if (!active_crtc_cnt)
		seq_puts(m, "No active crtc found\n");

	return 0;
}

3437 3438
static int i915_dp_mst_info(struct seq_file *m, void *unused)
{
3439 3440
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	struct drm_device *dev = &dev_priv->drm;
3441 3442
	struct intel_encoder *intel_encoder;
	struct intel_digital_port *intel_dig_port;
3443
	struct drm_connector *connector;
3444
	struct drm_connector_list_iter conn_iter;
3445

3446 3447
	drm_connector_list_iter_begin(dev, &conn_iter);
	drm_for_each_connector_iter(connector, &conn_iter) {
3448
		if (connector->connector_type != DRM_MODE_CONNECTOR_DisplayPort)
3449
			continue;
3450 3451 3452 3453 3454 3455

		intel_encoder = intel_attached_encoder(connector);
		if (!intel_encoder || intel_encoder->type == INTEL_OUTPUT_DP_MST)
			continue;

		intel_dig_port = enc_to_dig_port(&intel_encoder->base);
3456 3457
		if (!intel_dig_port->dp.can_mst)
			continue;
3458

3459
		seq_printf(m, "MST Source Port %c\n",
3460
			   port_name(intel_dig_port->base.port));
3461 3462
		drm_dp_mst_dump_topology(m, &intel_dig_port->dp.mst_mgr);
	}
3463 3464
	drm_connector_list_iter_end(&conn_iter);

3465 3466 3467
	return 0;
}

3468
static ssize_t i915_displayport_test_active_write(struct file *file,
3469 3470
						  const char __user *ubuf,
						  size_t len, loff_t *offp)
3471 3472 3473 3474 3475
{
	char *input_buffer;
	int status = 0;
	struct drm_device *dev;
	struct drm_connector *connector;
3476
	struct drm_connector_list_iter conn_iter;
3477 3478 3479
	struct intel_dp *intel_dp;
	int val = 0;

3480
	dev = ((struct seq_file *)file->private_data)->private;
3481 3482 3483 3484

	if (len == 0)
		return 0;

G
Geliang Tang 已提交
3485 3486 3487
	input_buffer = memdup_user_nul(ubuf, len);
	if (IS_ERR(input_buffer))
		return PTR_ERR(input_buffer);
3488 3489 3490

	DRM_DEBUG_DRIVER("Copied %d bytes from user\n", (unsigned int)len);

3491 3492
	drm_connector_list_iter_begin(dev, &conn_iter);
	drm_for_each_connector_iter(connector, &conn_iter) {
3493 3494
		struct intel_encoder *encoder;

3495 3496 3497 3498
		if (connector->connector_type !=
		    DRM_MODE_CONNECTOR_DisplayPort)
			continue;

3499 3500 3501 3502 3503 3504
		encoder = to_intel_encoder(connector->encoder);
		if (encoder && encoder->type == INTEL_OUTPUT_DP_MST)
			continue;

		if (encoder && connector->status == connector_status_connected) {
			intel_dp = enc_to_intel_dp(&encoder->base);
3505 3506
			status = kstrtoint(input_buffer, 10, &val);
			if (status < 0)
3507
				break;
3508 3509 3510 3511 3512
			DRM_DEBUG_DRIVER("Got %d for test active\n", val);
			/* To prevent erroneous activation of the compliance
			 * testing code, only accept an actual value of 1 here
			 */
			if (val == 1)
3513
				intel_dp->compliance.test_active = 1;
3514
			else
3515
				intel_dp->compliance.test_active = 0;
3516 3517
		}
	}
3518
	drm_connector_list_iter_end(&conn_iter);
3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530
	kfree(input_buffer);
	if (status < 0)
		return status;

	*offp += len;
	return len;
}

static int i915_displayport_test_active_show(struct seq_file *m, void *data)
{
	struct drm_device *dev = m->private;
	struct drm_connector *connector;
3531
	struct drm_connector_list_iter conn_iter;
3532 3533
	struct intel_dp *intel_dp;

3534 3535
	drm_connector_list_iter_begin(dev, &conn_iter);
	drm_for_each_connector_iter(connector, &conn_iter) {
3536 3537
		struct intel_encoder *encoder;

3538 3539 3540 3541
		if (connector->connector_type !=
		    DRM_MODE_CONNECTOR_DisplayPort)
			continue;

3542 3543 3544 3545 3546 3547
		encoder = to_intel_encoder(connector->encoder);
		if (encoder && encoder->type == INTEL_OUTPUT_DP_MST)
			continue;

		if (encoder && connector->status == connector_status_connected) {
			intel_dp = enc_to_intel_dp(&encoder->base);
3548
			if (intel_dp->compliance.test_active)
3549 3550 3551 3552 3553 3554
				seq_puts(m, "1");
			else
				seq_puts(m, "0");
		} else
			seq_puts(m, "0");
	}
3555
	drm_connector_list_iter_end(&conn_iter);
3556 3557 3558 3559 3560

	return 0;
}

static int i915_displayport_test_active_open(struct inode *inode,
3561
					     struct file *file)
3562
{
3563
	struct drm_i915_private *dev_priv = inode->i_private;
3564

3565 3566
	return single_open(file, i915_displayport_test_active_show,
			   &dev_priv->drm);
3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581
}

static const struct file_operations i915_displayport_test_active_fops = {
	.owner = THIS_MODULE,
	.open = i915_displayport_test_active_open,
	.read = seq_read,
	.llseek = seq_lseek,
	.release = single_release,
	.write = i915_displayport_test_active_write
};

static int i915_displayport_test_data_show(struct seq_file *m, void *data)
{
	struct drm_device *dev = m->private;
	struct drm_connector *connector;
3582
	struct drm_connector_list_iter conn_iter;
3583 3584
	struct intel_dp *intel_dp;

3585 3586
	drm_connector_list_iter_begin(dev, &conn_iter);
	drm_for_each_connector_iter(connector, &conn_iter) {
3587 3588
		struct intel_encoder *encoder;

3589 3590 3591 3592
		if (connector->connector_type !=
		    DRM_MODE_CONNECTOR_DisplayPort)
			continue;

3593 3594 3595 3596 3597 3598
		encoder = to_intel_encoder(connector->encoder);
		if (encoder && encoder->type == INTEL_OUTPUT_DP_MST)
			continue;

		if (encoder && connector->status == connector_status_connected) {
			intel_dp = enc_to_intel_dp(&encoder->base);
3599 3600 3601 3602
			if (intel_dp->compliance.test_type ==
			    DP_TEST_LINK_EDID_READ)
				seq_printf(m, "%lx",
					   intel_dp->compliance.test_data.edid);
3603 3604 3605 3606 3607 3608 3609 3610 3611
			else if (intel_dp->compliance.test_type ==
				 DP_TEST_LINK_VIDEO_PATTERN) {
				seq_printf(m, "hdisplay: %d\n",
					   intel_dp->compliance.test_data.hdisplay);
				seq_printf(m, "vdisplay: %d\n",
					   intel_dp->compliance.test_data.vdisplay);
				seq_printf(m, "bpc: %u\n",
					   intel_dp->compliance.test_data.bpc);
			}
3612 3613 3614
		} else
			seq_puts(m, "0");
	}
3615
	drm_connector_list_iter_end(&conn_iter);
3616 3617 3618 3619

	return 0;
}
static int i915_displayport_test_data_open(struct inode *inode,
3620
					   struct file *file)
3621
{
3622
	struct drm_i915_private *dev_priv = inode->i_private;
3623

3624 3625
	return single_open(file, i915_displayport_test_data_show,
			   &dev_priv->drm);
3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639
}

static const struct file_operations i915_displayport_test_data_fops = {
	.owner = THIS_MODULE,
	.open = i915_displayport_test_data_open,
	.read = seq_read,
	.llseek = seq_lseek,
	.release = single_release
};

static int i915_displayport_test_type_show(struct seq_file *m, void *data)
{
	struct drm_device *dev = m->private;
	struct drm_connector *connector;
3640
	struct drm_connector_list_iter conn_iter;
3641 3642
	struct intel_dp *intel_dp;

3643 3644
	drm_connector_list_iter_begin(dev, &conn_iter);
	drm_for_each_connector_iter(connector, &conn_iter) {
3645 3646
		struct intel_encoder *encoder;

3647 3648 3649 3650
		if (connector->connector_type !=
		    DRM_MODE_CONNECTOR_DisplayPort)
			continue;

3651 3652 3653 3654 3655 3656
		encoder = to_intel_encoder(connector->encoder);
		if (encoder && encoder->type == INTEL_OUTPUT_DP_MST)
			continue;

		if (encoder && connector->status == connector_status_connected) {
			intel_dp = enc_to_intel_dp(&encoder->base);
3657
			seq_printf(m, "%02lx", intel_dp->compliance.test_type);
3658 3659 3660
		} else
			seq_puts(m, "0");
	}
3661
	drm_connector_list_iter_end(&conn_iter);
3662 3663 3664 3665 3666 3667 3668

	return 0;
}

static int i915_displayport_test_type_open(struct inode *inode,
				       struct file *file)
{
3669
	struct drm_i915_private *dev_priv = inode->i_private;
3670

3671 3672
	return single_open(file, i915_displayport_test_type_show,
			   &dev_priv->drm);
3673 3674 3675 3676 3677 3678 3679 3680 3681 3682
}

static const struct file_operations i915_displayport_test_type_fops = {
	.owner = THIS_MODULE,
	.open = i915_displayport_test_type_open,
	.read = seq_read,
	.llseek = seq_lseek,
	.release = single_release
};

3683
static void wm_latency_show(struct seq_file *m, const uint16_t wm[8])
3684
{
3685 3686
	struct drm_i915_private *dev_priv = m->private;
	struct drm_device *dev = &dev_priv->drm;
3687
	int level;
3688 3689
	int num_levels;

3690
	if (IS_CHERRYVIEW(dev_priv))
3691
		num_levels = 3;
3692
	else if (IS_VALLEYVIEW(dev_priv))
3693
		num_levels = 1;
3694 3695
	else if (IS_G4X(dev_priv))
		num_levels = 3;
3696
	else
3697
		num_levels = ilk_wm_max_level(dev_priv) + 1;
3698 3699 3700 3701 3702 3703

	drm_modeset_lock_all(dev);

	for (level = 0; level < num_levels; level++) {
		unsigned int latency = wm[level];

3704 3705
		/*
		 * - WM1+ latency values in 0.5us units
3706
		 * - latencies are in us on gen9/vlv/chv
3707
		 */
3708 3709 3710 3711
		if (INTEL_GEN(dev_priv) >= 9 ||
		    IS_VALLEYVIEW(dev_priv) ||
		    IS_CHERRYVIEW(dev_priv) ||
		    IS_G4X(dev_priv))
3712 3713
			latency *= 10;
		else if (level > 0)
3714 3715 3716
			latency *= 5;

		seq_printf(m, "WM%d %u (%u.%u usec)\n",
3717
			   level, wm[level], latency / 10, latency % 10);
3718 3719 3720 3721 3722 3723 3724
	}

	drm_modeset_unlock_all(dev);
}

static int pri_wm_latency_show(struct seq_file *m, void *data)
{
3725
	struct drm_i915_private *dev_priv = m->private;
3726 3727
	const uint16_t *latencies;

3728
	if (INTEL_GEN(dev_priv) >= 9)
3729 3730
		latencies = dev_priv->wm.skl_latency;
	else
3731
		latencies = dev_priv->wm.pri_latency;
3732

3733
	wm_latency_show(m, latencies);
3734 3735 3736 3737 3738 3739

	return 0;
}

static int spr_wm_latency_show(struct seq_file *m, void *data)
{
3740
	struct drm_i915_private *dev_priv = m->private;
3741 3742
	const uint16_t *latencies;

3743
	if (INTEL_GEN(dev_priv) >= 9)
3744 3745
		latencies = dev_priv->wm.skl_latency;
	else
3746
		latencies = dev_priv->wm.spr_latency;
3747

3748
	wm_latency_show(m, latencies);
3749 3750 3751 3752 3753 3754

	return 0;
}

static int cur_wm_latency_show(struct seq_file *m, void *data)
{
3755
	struct drm_i915_private *dev_priv = m->private;
3756 3757
	const uint16_t *latencies;

3758
	if (INTEL_GEN(dev_priv) >= 9)
3759 3760
		latencies = dev_priv->wm.skl_latency;
	else
3761
		latencies = dev_priv->wm.cur_latency;
3762

3763
	wm_latency_show(m, latencies);
3764 3765 3766 3767 3768 3769

	return 0;
}

static int pri_wm_latency_open(struct inode *inode, struct file *file)
{
3770
	struct drm_i915_private *dev_priv = inode->i_private;
3771

3772
	if (INTEL_GEN(dev_priv) < 5 && !IS_G4X(dev_priv))
3773 3774
		return -ENODEV;

3775
	return single_open(file, pri_wm_latency_show, dev_priv);
3776 3777 3778 3779
}

static int spr_wm_latency_open(struct inode *inode, struct file *file)
{
3780
	struct drm_i915_private *dev_priv = inode->i_private;
3781

3782
	if (HAS_GMCH_DISPLAY(dev_priv))
3783 3784
		return -ENODEV;

3785
	return single_open(file, spr_wm_latency_show, dev_priv);
3786 3787 3788 3789
}

static int cur_wm_latency_open(struct inode *inode, struct file *file)
{
3790
	struct drm_i915_private *dev_priv = inode->i_private;
3791

3792
	if (HAS_GMCH_DISPLAY(dev_priv))
3793 3794
		return -ENODEV;

3795
	return single_open(file, cur_wm_latency_show, dev_priv);
3796 3797 3798
}

static ssize_t wm_latency_write(struct file *file, const char __user *ubuf,
3799
				size_t len, loff_t *offp, uint16_t wm[8])
3800 3801
{
	struct seq_file *m = file->private_data;
3802 3803
	struct drm_i915_private *dev_priv = m->private;
	struct drm_device *dev = &dev_priv->drm;
3804
	uint16_t new[8] = { 0 };
3805
	int num_levels;
3806 3807 3808 3809
	int level;
	int ret;
	char tmp[32];

3810
	if (IS_CHERRYVIEW(dev_priv))
3811
		num_levels = 3;
3812
	else if (IS_VALLEYVIEW(dev_priv))
3813
		num_levels = 1;
3814 3815
	else if (IS_G4X(dev_priv))
		num_levels = 3;
3816
	else
3817
		num_levels = ilk_wm_max_level(dev_priv) + 1;
3818

3819 3820 3821 3822 3823 3824 3825 3826
	if (len >= sizeof(tmp))
		return -EINVAL;

	if (copy_from_user(tmp, ubuf, len))
		return -EFAULT;

	tmp[len] = '\0';

3827 3828 3829
	ret = sscanf(tmp, "%hu %hu %hu %hu %hu %hu %hu %hu",
		     &new[0], &new[1], &new[2], &new[3],
		     &new[4], &new[5], &new[6], &new[7]);
3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847
	if (ret != num_levels)
		return -EINVAL;

	drm_modeset_lock_all(dev);

	for (level = 0; level < num_levels; level++)
		wm[level] = new[level];

	drm_modeset_unlock_all(dev);

	return len;
}


static ssize_t pri_wm_latency_write(struct file *file, const char __user *ubuf,
				    size_t len, loff_t *offp)
{
	struct seq_file *m = file->private_data;
3848
	struct drm_i915_private *dev_priv = m->private;
3849
	uint16_t *latencies;
3850

3851
	if (INTEL_GEN(dev_priv) >= 9)
3852 3853
		latencies = dev_priv->wm.skl_latency;
	else
3854
		latencies = dev_priv->wm.pri_latency;
3855 3856

	return wm_latency_write(file, ubuf, len, offp, latencies);
3857 3858 3859 3860 3861 3862
}

static ssize_t spr_wm_latency_write(struct file *file, const char __user *ubuf,
				    size_t len, loff_t *offp)
{
	struct seq_file *m = file->private_data;
3863
	struct drm_i915_private *dev_priv = m->private;
3864
	uint16_t *latencies;
3865

3866
	if (INTEL_GEN(dev_priv) >= 9)
3867 3868
		latencies = dev_priv->wm.skl_latency;
	else
3869
		latencies = dev_priv->wm.spr_latency;
3870 3871

	return wm_latency_write(file, ubuf, len, offp, latencies);
3872 3873 3874 3875 3876 3877
}

static ssize_t cur_wm_latency_write(struct file *file, const char __user *ubuf,
				    size_t len, loff_t *offp)
{
	struct seq_file *m = file->private_data;
3878
	struct drm_i915_private *dev_priv = m->private;
3879 3880
	uint16_t *latencies;

3881
	if (INTEL_GEN(dev_priv) >= 9)
3882 3883
		latencies = dev_priv->wm.skl_latency;
	else
3884
		latencies = dev_priv->wm.cur_latency;
3885

3886
	return wm_latency_write(file, ubuf, len, offp, latencies);
3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915
}

static const struct file_operations i915_pri_wm_latency_fops = {
	.owner = THIS_MODULE,
	.open = pri_wm_latency_open,
	.read = seq_read,
	.llseek = seq_lseek,
	.release = single_release,
	.write = pri_wm_latency_write
};

static const struct file_operations i915_spr_wm_latency_fops = {
	.owner = THIS_MODULE,
	.open = spr_wm_latency_open,
	.read = seq_read,
	.llseek = seq_lseek,
	.release = single_release,
	.write = spr_wm_latency_write
};

static const struct file_operations i915_cur_wm_latency_fops = {
	.owner = THIS_MODULE,
	.open = cur_wm_latency_open,
	.read = seq_read,
	.llseek = seq_lseek,
	.release = single_release,
	.write = cur_wm_latency_write
};

3916 3917
static int
i915_wedged_get(void *data, u64 *val)
3918
{
3919
	struct drm_i915_private *dev_priv = data;
3920

3921
	*val = i915_terminally_wedged(&dev_priv->gpu_error);
3922

3923
	return 0;
3924 3925
}

3926 3927
static int
i915_wedged_set(void *data, u64 val)
3928
{
3929 3930 3931
	struct drm_i915_private *i915 = data;
	struct intel_engine_cs *engine;
	unsigned int tmp;
3932

3933 3934 3935 3936 3937 3938 3939 3940
	/*
	 * There is no safeguard against this debugfs entry colliding
	 * with the hangcheck calling same i915_handle_error() in
	 * parallel, causing an explosion. For now we assume that the
	 * test harness is responsible enough not to inject gpu hangs
	 * while it is writing to 'i915_wedged'
	 */

3941
	if (i915_reset_backoff(&i915->gpu_error))
3942 3943
		return -EAGAIN;

3944 3945 3946 3947 3948 3949
	for_each_engine_masked(engine, i915, val, tmp) {
		engine->hangcheck.seqno = intel_engine_get_seqno(engine);
		engine->hangcheck.stalled = true;
	}

	i915_handle_error(i915, val, "Manually setting wedged to %llu", val);
3950

3951
	wait_on_bit(&i915->gpu_error.flags,
3952 3953 3954
		    I915_RESET_HANDOFF,
		    TASK_UNINTERRUPTIBLE);

3955
	return 0;
3956 3957
}

3958 3959
DEFINE_SIMPLE_ATTRIBUTE(i915_wedged_fops,
			i915_wedged_get, i915_wedged_set,
3960
			"%llu\n");
3961

3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982
static int
fault_irq_set(struct drm_i915_private *i915,
	      unsigned long *irq,
	      unsigned long val)
{
	int err;

	err = mutex_lock_interruptible(&i915->drm.struct_mutex);
	if (err)
		return err;

	err = i915_gem_wait_for_idle(i915,
				     I915_WAIT_LOCKED |
				     I915_WAIT_INTERRUPTIBLE);
	if (err)
		goto err_unlock;

	*irq = val;
	mutex_unlock(&i915->drm.struct_mutex);

	/* Flush idle worker to disarm irq */
3983
	drain_delayed_work(&i915->gt.idle_work);
3984 3985 3986 3987 3988 3989 3990 3991

	return 0;

err_unlock:
	mutex_unlock(&i915->drm.struct_mutex);
	return err;
}

3992 3993 3994
static int
i915_ring_missed_irq_get(void *data, u64 *val)
{
3995
	struct drm_i915_private *dev_priv = data;
3996 3997 3998 3999 4000 4001 4002 4003

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

static int
i915_ring_missed_irq_set(void *data, u64 val)
{
4004
	struct drm_i915_private *i915 = data;
4005

4006
	return fault_irq_set(i915, &i915->gpu_error.missed_irq_rings, val);
4007 4008 4009 4010 4011 4012 4013 4014 4015
}

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)
{
4016
	struct drm_i915_private *dev_priv = data;
4017 4018 4019 4020 4021 4022 4023 4024 4025

	*val = dev_priv->gpu_error.test_irq_rings;

	return 0;
}

static int
i915_ring_test_irq_set(void *data, u64 val)
{
4026
	struct drm_i915_private *i915 = data;
4027

4028
	val &= INTEL_INFO(i915)->ring_mask;
4029 4030
	DRM_DEBUG_DRIVER("Masking interrupts on rings 0x%08llx\n", val);

4031
	return fault_irq_set(i915, &i915->gpu_error.test_irq_rings, val);
4032 4033 4034 4035 4036 4037
}

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

4038 4039 4040 4041 4042 4043 4044
#define DROP_UNBOUND	BIT(0)
#define DROP_BOUND	BIT(1)
#define DROP_RETIRE	BIT(2)
#define DROP_ACTIVE	BIT(3)
#define DROP_FREED	BIT(4)
#define DROP_SHRINK_ALL	BIT(5)
#define DROP_IDLE	BIT(6)
4045 4046 4047 4048
#define DROP_ALL (DROP_UNBOUND	| \
		  DROP_BOUND	| \
		  DROP_RETIRE	| \
		  DROP_ACTIVE	| \
4049
		  DROP_FREED	| \
4050 4051
		  DROP_SHRINK_ALL |\
		  DROP_IDLE)
4052 4053
static int
i915_drop_caches_get(void *data, u64 *val)
4054
{
4055
	*val = DROP_ALL;
4056

4057
	return 0;
4058 4059
}

4060 4061
static int
i915_drop_caches_set(void *data, u64 val)
4062
{
4063 4064
	struct drm_i915_private *dev_priv = data;
	struct drm_device *dev = &dev_priv->drm;
4065
	int ret = 0;
4066

4067 4068
	DRM_DEBUG("Dropping caches: 0x%08llx [0x%08llx]\n",
		  val, val & DROP_ALL);
4069 4070 4071

	/* No need to check and wait for gpu resets, only libdrm auto-restarts
	 * on ioctls on -EAGAIN. */
4072 4073
	if (val & (DROP_ACTIVE | DROP_RETIRE)) {
		ret = mutex_lock_interruptible(&dev->struct_mutex);
4074
		if (ret)
4075
			return ret;
4076

4077 4078 4079 4080 4081 4082 4083 4084 4085 4086
		if (val & DROP_ACTIVE)
			ret = i915_gem_wait_for_idle(dev_priv,
						     I915_WAIT_INTERRUPTIBLE |
						     I915_WAIT_LOCKED);

		if (val & DROP_RETIRE)
			i915_gem_retire_requests(dev_priv);

		mutex_unlock(&dev->struct_mutex);
	}
4087

4088
	fs_reclaim_acquire(GFP_KERNEL);
4089
	if (val & DROP_BOUND)
4090
		i915_gem_shrink(dev_priv, LONG_MAX, NULL, I915_SHRINK_BOUND);
4091

4092
	if (val & DROP_UNBOUND)
4093
		i915_gem_shrink(dev_priv, LONG_MAX, NULL, I915_SHRINK_UNBOUND);
4094

4095 4096
	if (val & DROP_SHRINK_ALL)
		i915_gem_shrink_all(dev_priv);
4097
	fs_reclaim_release(GFP_KERNEL);
4098

4099 4100 4101
	if (val & DROP_IDLE)
		drain_delayed_work(&dev_priv->gt.idle_work);

4102 4103
	if (val & DROP_FREED) {
		synchronize_rcu();
4104
		i915_gem_drain_freed_objects(dev_priv);
4105 4106
	}

4107
	return ret;
4108 4109
}

4110 4111 4112
DEFINE_SIMPLE_ATTRIBUTE(i915_drop_caches_fops,
			i915_drop_caches_get, i915_drop_caches_set,
			"0x%08llx\n");
4113

4114 4115
static int
i915_max_freq_get(void *data, u64 *val)
4116
{
4117
	struct drm_i915_private *dev_priv = data;
4118

4119
	if (INTEL_GEN(dev_priv) < 6)
4120 4121
		return -ENODEV;

4122
	*val = intel_gpu_freq(dev_priv, dev_priv->gt_pm.rps.max_freq_softlimit);
4123
	return 0;
4124 4125
}

4126 4127
static int
i915_max_freq_set(void *data, u64 val)
4128
{
4129
	struct drm_i915_private *dev_priv = data;
4130
	struct intel_rps *rps = &dev_priv->gt_pm.rps;
4131
	u32 hw_max, hw_min;
4132
	int ret;
4133

4134
	if (INTEL_GEN(dev_priv) < 6)
4135
		return -ENODEV;
4136

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

4139
	ret = mutex_lock_interruptible(&dev_priv->pcu_lock);
4140 4141 4142
	if (ret)
		return ret;

4143 4144 4145
	/*
	 * Turbo will still be enabled, but won't go above the set value.
	 */
4146
	val = intel_freq_opcode(dev_priv, val);
J
Jeff McGee 已提交
4147

4148 4149
	hw_max = rps->max_freq;
	hw_min = rps->min_freq;
J
Jeff McGee 已提交
4150

4151
	if (val < hw_min || val > hw_max || val < rps->min_freq_softlimit) {
4152
		mutex_unlock(&dev_priv->pcu_lock);
J
Jeff McGee 已提交
4153
		return -EINVAL;
4154 4155
	}

4156
	rps->max_freq_softlimit = val;
J
Jeff McGee 已提交
4157

4158 4159
	if (intel_set_rps(dev_priv, val))
		DRM_DEBUG_DRIVER("failed to update RPS to new softlimit\n");
J
Jeff McGee 已提交
4160

4161
	mutex_unlock(&dev_priv->pcu_lock);
4162

4163
	return 0;
4164 4165
}

4166 4167
DEFINE_SIMPLE_ATTRIBUTE(i915_max_freq_fops,
			i915_max_freq_get, i915_max_freq_set,
4168
			"%llu\n");
4169

4170 4171
static int
i915_min_freq_get(void *data, u64 *val)
4172
{
4173
	struct drm_i915_private *dev_priv = data;
4174

4175
	if (INTEL_GEN(dev_priv) < 6)
4176 4177
		return -ENODEV;

4178
	*val = intel_gpu_freq(dev_priv, dev_priv->gt_pm.rps.min_freq_softlimit);
4179
	return 0;
4180 4181
}

4182 4183
static int
i915_min_freq_set(void *data, u64 val)
4184
{
4185
	struct drm_i915_private *dev_priv = data;
4186
	struct intel_rps *rps = &dev_priv->gt_pm.rps;
4187
	u32 hw_max, hw_min;
4188
	int ret;
4189

4190
	if (INTEL_GEN(dev_priv) < 6)
4191
		return -ENODEV;
4192

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

4195
	ret = mutex_lock_interruptible(&dev_priv->pcu_lock);
4196 4197 4198
	if (ret)
		return ret;

4199 4200 4201
	/*
	 * Turbo will still be enabled, but won't go below the set value.
	 */
4202
	val = intel_freq_opcode(dev_priv, val);
J
Jeff McGee 已提交
4203

4204 4205
	hw_max = rps->max_freq;
	hw_min = rps->min_freq;
J
Jeff McGee 已提交
4206

4207
	if (val < hw_min ||
4208
	    val > hw_max || val > rps->max_freq_softlimit) {
4209
		mutex_unlock(&dev_priv->pcu_lock);
J
Jeff McGee 已提交
4210
		return -EINVAL;
4211
	}
J
Jeff McGee 已提交
4212

4213
	rps->min_freq_softlimit = val;
J
Jeff McGee 已提交
4214

4215 4216
	if (intel_set_rps(dev_priv, val))
		DRM_DEBUG_DRIVER("failed to update RPS to new softlimit\n");
J
Jeff McGee 已提交
4217

4218
	mutex_unlock(&dev_priv->pcu_lock);
4219

4220
	return 0;
4221 4222
}

4223 4224
DEFINE_SIMPLE_ATTRIBUTE(i915_min_freq_fops,
			i915_min_freq_get, i915_min_freq_set,
4225
			"%llu\n");
4226

4227 4228
static int
i915_cache_sharing_get(void *data, u64 *val)
4229
{
4230
	struct drm_i915_private *dev_priv = data;
4231 4232
	u32 snpcr;

4233
	if (!(IS_GEN6(dev_priv) || IS_GEN7(dev_priv)))
4234 4235
		return -ENODEV;

4236
	intel_runtime_pm_get(dev_priv);
4237

4238
	snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
4239 4240

	intel_runtime_pm_put(dev_priv);
4241

4242
	*val = (snpcr & GEN6_MBC_SNPCR_MASK) >> GEN6_MBC_SNPCR_SHIFT;
4243

4244
	return 0;
4245 4246
}

4247 4248
static int
i915_cache_sharing_set(void *data, u64 val)
4249
{
4250
	struct drm_i915_private *dev_priv = data;
4251 4252
	u32 snpcr;

4253
	if (!(IS_GEN6(dev_priv) || IS_GEN7(dev_priv)))
4254 4255
		return -ENODEV;

4256
	if (val > 3)
4257 4258
		return -EINVAL;

4259
	intel_runtime_pm_get(dev_priv);
4260
	DRM_DEBUG_DRIVER("Manually setting uncore sharing to %llu\n", val);
4261 4262 4263 4264 4265 4266 4267

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

4268
	intel_runtime_pm_put(dev_priv);
4269
	return 0;
4270 4271
}

4272 4273 4274
DEFINE_SIMPLE_ATTRIBUTE(i915_cache_sharing_fops,
			i915_cache_sharing_get, i915_cache_sharing_set,
			"%llu\n");
4275

4276
static void cherryview_sseu_device_status(struct drm_i915_private *dev_priv,
4277
					  struct sseu_dev_info *sseu)
4278
{
4279
	int ss_max = 2;
4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294
	int ss;
	u32 sig1[ss_max], sig2[ss_max];

	sig1[0] = I915_READ(CHV_POWER_SS0_SIG1);
	sig1[1] = I915_READ(CHV_POWER_SS1_SIG1);
	sig2[0] = I915_READ(CHV_POWER_SS0_SIG2);
	sig2[1] = I915_READ(CHV_POWER_SS1_SIG2);

	for (ss = 0; ss < ss_max; ss++) {
		unsigned int eu_cnt;

		if (sig1[ss] & CHV_SS_PG_ENABLE)
			/* skip disabled subslice */
			continue;

4295
		sseu->slice_mask = BIT(0);
4296
		sseu->subslice_mask |= BIT(ss);
4297 4298 4299 4300
		eu_cnt = ((sig1[ss] & CHV_EU08_PG_ENABLE) ? 0 : 2) +
			 ((sig1[ss] & CHV_EU19_PG_ENABLE) ? 0 : 2) +
			 ((sig1[ss] & CHV_EU210_PG_ENABLE) ? 0 : 2) +
			 ((sig2[ss] & CHV_EU311_PG_ENABLE) ? 0 : 2);
4301 4302 4303
		sseu->eu_total += eu_cnt;
		sseu->eu_per_subslice = max_t(unsigned int,
					      sseu->eu_per_subslice, eu_cnt);
4304 4305 4306
	}
}

4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361
static void gen10_sseu_device_status(struct drm_i915_private *dev_priv,
				     struct sseu_dev_info *sseu)
{
	const struct intel_device_info *info = INTEL_INFO(dev_priv);
	int s_max = 6, ss_max = 4;
	int s, ss;
	u32 s_reg[s_max], eu_reg[2 * s_max], eu_mask[2];

	for (s = 0; s < s_max; s++) {
		/*
		 * FIXME: Valid SS Mask respects the spec and read
		 * only valid bits for those registers, excluding reserverd
		 * although this seems wrong because it would leave many
		 * subslices without ACK.
		 */
		s_reg[s] = I915_READ(GEN10_SLICE_PGCTL_ACK(s)) &
			GEN10_PGCTL_VALID_SS_MASK(s);
		eu_reg[2 * s] = I915_READ(GEN10_SS01_EU_PGCTL_ACK(s));
		eu_reg[2 * s + 1] = I915_READ(GEN10_SS23_EU_PGCTL_ACK(s));
	}

	eu_mask[0] = GEN9_PGCTL_SSA_EU08_ACK |
		     GEN9_PGCTL_SSA_EU19_ACK |
		     GEN9_PGCTL_SSA_EU210_ACK |
		     GEN9_PGCTL_SSA_EU311_ACK;
	eu_mask[1] = GEN9_PGCTL_SSB_EU08_ACK |
		     GEN9_PGCTL_SSB_EU19_ACK |
		     GEN9_PGCTL_SSB_EU210_ACK |
		     GEN9_PGCTL_SSB_EU311_ACK;

	for (s = 0; s < s_max; s++) {
		if ((s_reg[s] & GEN9_PGCTL_SLICE_ACK) == 0)
			/* skip disabled slice */
			continue;

		sseu->slice_mask |= BIT(s);
		sseu->subslice_mask = info->sseu.subslice_mask;

		for (ss = 0; ss < ss_max; ss++) {
			unsigned int eu_cnt;

			if (!(s_reg[s] & (GEN9_PGCTL_SS_ACK(ss))))
				/* skip disabled subslice */
				continue;

			eu_cnt = 2 * hweight32(eu_reg[2 * s + ss / 2] &
					       eu_mask[ss % 2]);
			sseu->eu_total += eu_cnt;
			sseu->eu_per_subslice = max_t(unsigned int,
						      sseu->eu_per_subslice,
						      eu_cnt);
		}
	}
}

4362
static void gen9_sseu_device_status(struct drm_i915_private *dev_priv,
4363
				    struct sseu_dev_info *sseu)
4364
{
4365
	int s_max = 3, ss_max = 4;
4366 4367 4368
	int s, ss;
	u32 s_reg[s_max], eu_reg[2*s_max], eu_mask[2];

4369
	/* BXT has a single slice and at most 3 subslices. */
4370
	if (IS_GEN9_LP(dev_priv)) {
4371 4372 4373 4374 4375 4376 4377 4378 4379 4380
		s_max = 1;
		ss_max = 3;
	}

	for (s = 0; s < s_max; s++) {
		s_reg[s] = I915_READ(GEN9_SLICE_PGCTL_ACK(s));
		eu_reg[2*s] = I915_READ(GEN9_SS01_EU_PGCTL_ACK(s));
		eu_reg[2*s + 1] = I915_READ(GEN9_SS23_EU_PGCTL_ACK(s));
	}

4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394
	eu_mask[0] = GEN9_PGCTL_SSA_EU08_ACK |
		     GEN9_PGCTL_SSA_EU19_ACK |
		     GEN9_PGCTL_SSA_EU210_ACK |
		     GEN9_PGCTL_SSA_EU311_ACK;
	eu_mask[1] = GEN9_PGCTL_SSB_EU08_ACK |
		     GEN9_PGCTL_SSB_EU19_ACK |
		     GEN9_PGCTL_SSB_EU210_ACK |
		     GEN9_PGCTL_SSB_EU311_ACK;

	for (s = 0; s < s_max; s++) {
		if ((s_reg[s] & GEN9_PGCTL_SLICE_ACK) == 0)
			/* skip disabled slice */
			continue;

4395
		sseu->slice_mask |= BIT(s);
4396

4397
		if (IS_GEN9_BC(dev_priv))
4398 4399
			sseu->subslice_mask =
				INTEL_INFO(dev_priv)->sseu.subslice_mask;
4400

4401 4402 4403
		for (ss = 0; ss < ss_max; ss++) {
			unsigned int eu_cnt;

4404
			if (IS_GEN9_LP(dev_priv)) {
4405 4406 4407
				if (!(s_reg[s] & (GEN9_PGCTL_SS_ACK(ss))))
					/* skip disabled subslice */
					continue;
4408

4409 4410
				sseu->subslice_mask |= BIT(ss);
			}
4411

4412 4413
			eu_cnt = 2 * hweight32(eu_reg[2*s + ss/2] &
					       eu_mask[ss%2]);
4414 4415 4416 4417
			sseu->eu_total += eu_cnt;
			sseu->eu_per_subslice = max_t(unsigned int,
						      sseu->eu_per_subslice,
						      eu_cnt);
4418 4419 4420 4421
		}
	}
}

4422
static void broadwell_sseu_device_status(struct drm_i915_private *dev_priv,
4423
					 struct sseu_dev_info *sseu)
4424 4425
{
	u32 slice_info = I915_READ(GEN8_GT_SLICE_INFO);
4426
	int s;
4427

4428
	sseu->slice_mask = slice_info & GEN8_LSLICESTAT_MASK;
4429

4430
	if (sseu->slice_mask) {
4431
		sseu->subslice_mask = INTEL_INFO(dev_priv)->sseu.subslice_mask;
4432 4433
		sseu->eu_per_subslice =
				INTEL_INFO(dev_priv)->sseu.eu_per_subslice;
4434 4435
		sseu->eu_total = sseu->eu_per_subslice *
				 sseu_subslice_total(sseu);
4436 4437

		/* subtract fused off EU(s) from enabled slice(s) */
4438
		for (s = 0; s < fls(sseu->slice_mask); s++) {
4439 4440
			u8 subslice_7eu =
				INTEL_INFO(dev_priv)->sseu.subslice_7eu[s];
4441

4442
			sseu->eu_total -= hweight8(subslice_7eu);
4443 4444 4445 4446
		}
	}
}

4447 4448 4449 4450 4451 4452
static void i915_print_sseu_info(struct seq_file *m, bool is_available_info,
				 const struct sseu_dev_info *sseu)
{
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
	const char *type = is_available_info ? "Available" : "Enabled";

4453 4454
	seq_printf(m, "  %s Slice Mask: %04x\n", type,
		   sseu->slice_mask);
4455
	seq_printf(m, "  %s Slice Total: %u\n", type,
4456
		   hweight8(sseu->slice_mask));
4457
	seq_printf(m, "  %s Subslice Total: %u\n", type,
4458
		   sseu_subslice_total(sseu));
4459 4460
	seq_printf(m, "  %s Subslice Mask: %04x\n", type,
		   sseu->subslice_mask);
4461
	seq_printf(m, "  %s Subslice Per Slice: %u\n", type,
4462
		   hweight8(sseu->subslice_mask));
4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482
	seq_printf(m, "  %s EU Total: %u\n", type,
		   sseu->eu_total);
	seq_printf(m, "  %s EU Per Subslice: %u\n", type,
		   sseu->eu_per_subslice);

	if (!is_available_info)
		return;

	seq_printf(m, "  Has Pooled EU: %s\n", yesno(HAS_POOLED_EU(dev_priv)));
	if (HAS_POOLED_EU(dev_priv))
		seq_printf(m, "  Min EU in pool: %u\n", sseu->min_eu_in_pool);

	seq_printf(m, "  Has Slice Power Gating: %s\n",
		   yesno(sseu->has_slice_pg));
	seq_printf(m, "  Has Subslice Power Gating: %s\n",
		   yesno(sseu->has_subslice_pg));
	seq_printf(m, "  Has EU Power Gating: %s\n",
		   yesno(sseu->has_eu_pg));
}

4483 4484
static int i915_sseu_status(struct seq_file *m, void *unused)
{
4485
	struct drm_i915_private *dev_priv = node_to_i915(m->private);
4486
	struct sseu_dev_info sseu;
4487

4488
	if (INTEL_GEN(dev_priv) < 8)
4489 4490 4491
		return -ENODEV;

	seq_puts(m, "SSEU Device Info\n");
4492
	i915_print_sseu_info(m, true, &INTEL_INFO(dev_priv)->sseu);
4493

4494
	seq_puts(m, "SSEU Device Status\n");
4495
	memset(&sseu, 0, sizeof(sseu));
4496 4497 4498

	intel_runtime_pm_get(dev_priv);

4499
	if (IS_CHERRYVIEW(dev_priv)) {
4500
		cherryview_sseu_device_status(dev_priv, &sseu);
4501
	} else if (IS_BROADWELL(dev_priv)) {
4502
		broadwell_sseu_device_status(dev_priv, &sseu);
4503
	} else if (IS_GEN9(dev_priv)) {
4504
		gen9_sseu_device_status(dev_priv, &sseu);
4505 4506
	} else if (INTEL_GEN(dev_priv) >= 10) {
		gen10_sseu_device_status(dev_priv, &sseu);
4507
	}
4508 4509 4510

	intel_runtime_pm_put(dev_priv);

4511
	i915_print_sseu_info(m, false, &sseu);
4512

4513 4514 4515
	return 0;
}

4516 4517
static int i915_forcewake_open(struct inode *inode, struct file *file)
{
4518
	struct drm_i915_private *i915 = inode->i_private;
4519

4520
	if (INTEL_GEN(i915) < 6)
4521 4522
		return 0;

4523 4524
	intel_runtime_pm_get(i915);
	intel_uncore_forcewake_user_get(i915);
4525 4526 4527 4528

	return 0;
}

4529
static int i915_forcewake_release(struct inode *inode, struct file *file)
4530
{
4531
	struct drm_i915_private *i915 = inode->i_private;
4532

4533
	if (INTEL_GEN(i915) < 6)
4534 4535
		return 0;

4536 4537
	intel_uncore_forcewake_user_put(i915);
	intel_runtime_pm_put(i915);
4538 4539 4540 4541 4542 4543 4544 4545 4546 4547

	return 0;
}

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

L
Lyude 已提交
4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622
static int i915_hpd_storm_ctl_show(struct seq_file *m, void *data)
{
	struct drm_i915_private *dev_priv = m->private;
	struct i915_hotplug *hotplug = &dev_priv->hotplug;

	seq_printf(m, "Threshold: %d\n", hotplug->hpd_storm_threshold);
	seq_printf(m, "Detected: %s\n",
		   yesno(delayed_work_pending(&hotplug->reenable_work)));

	return 0;
}

static ssize_t i915_hpd_storm_ctl_write(struct file *file,
					const char __user *ubuf, size_t len,
					loff_t *offp)
{
	struct seq_file *m = file->private_data;
	struct drm_i915_private *dev_priv = m->private;
	struct i915_hotplug *hotplug = &dev_priv->hotplug;
	unsigned int new_threshold;
	int i;
	char *newline;
	char tmp[16];

	if (len >= sizeof(tmp))
		return -EINVAL;

	if (copy_from_user(tmp, ubuf, len))
		return -EFAULT;

	tmp[len] = '\0';

	/* Strip newline, if any */
	newline = strchr(tmp, '\n');
	if (newline)
		*newline = '\0';

	if (strcmp(tmp, "reset") == 0)
		new_threshold = HPD_STORM_DEFAULT_THRESHOLD;
	else if (kstrtouint(tmp, 10, &new_threshold) != 0)
		return -EINVAL;

	if (new_threshold > 0)
		DRM_DEBUG_KMS("Setting HPD storm detection threshold to %d\n",
			      new_threshold);
	else
		DRM_DEBUG_KMS("Disabling HPD storm detection\n");

	spin_lock_irq(&dev_priv->irq_lock);
	hotplug->hpd_storm_threshold = new_threshold;
	/* Reset the HPD storm stats so we don't accidentally trigger a storm */
	for_each_hpd_pin(i)
		hotplug->stats[i].count = 0;
	spin_unlock_irq(&dev_priv->irq_lock);

	/* Re-enable hpd immediately if we were in an irq storm */
	flush_delayed_work(&dev_priv->hotplug.reenable_work);

	return len;
}

static int i915_hpd_storm_ctl_open(struct inode *inode, struct file *file)
{
	return single_open(file, i915_hpd_storm_ctl_show, inode->i_private);
}

static const struct file_operations i915_hpd_storm_ctl_fops = {
	.owner = THIS_MODULE,
	.open = i915_hpd_storm_ctl_open,
	.read = seq_read,
	.llseek = seq_lseek,
	.release = single_release,
	.write = i915_hpd_storm_ctl_write
};

4623
static const struct drm_info_list i915_debugfs_list[] = {
C
Chris Wilson 已提交
4624
	{"i915_capabilities", i915_capabilities, 0},
4625
	{"i915_gem_objects", i915_gem_object_info, 0},
4626
	{"i915_gem_gtt", i915_gem_gtt_info, 0},
4627
	{"i915_gem_stolen", i915_gem_stolen_list_info },
4628
	{"i915_gem_fence_regs", i915_gem_fence_regs_info, 0},
4629
	{"i915_gem_interrupt", i915_interrupt_info, 0},
4630
	{"i915_gem_batch_pool", i915_gem_batch_pool_info, 0},
4631
	{"i915_guc_info", i915_guc_info, 0},
4632
	{"i915_guc_load_status", i915_guc_load_status_info, 0},
A
Alex Dai 已提交
4633
	{"i915_guc_log_dump", i915_guc_log_dump, 0},
4634
	{"i915_guc_load_err_log_dump", i915_guc_log_dump, 0, (void *)1},
4635
	{"i915_guc_stage_pool", i915_guc_stage_pool, 0},
4636
	{"i915_huc_load_status", i915_huc_load_status_info, 0},
4637
	{"i915_frequency_info", i915_frequency_info, 0},
4638
	{"i915_hangcheck_info", i915_hangcheck_info, 0},
4639
	{"i915_reset_info", i915_reset_info, 0},
4640
	{"i915_drpc_info", i915_drpc_info, 0},
4641
	{"i915_emon_status", i915_emon_status, 0},
4642
	{"i915_ring_freq_table", i915_ring_freq_table, 0},
4643
	{"i915_frontbuffer_tracking", i915_frontbuffer_tracking, 0},
4644
	{"i915_fbc_status", i915_fbc_status, 0},
4645
	{"i915_ips_status", i915_ips_status, 0},
4646
	{"i915_sr_status", i915_sr_status, 0},
4647
	{"i915_opregion", i915_opregion, 0},
4648
	{"i915_vbt", i915_vbt, 0},
4649
	{"i915_gem_framebuffer", i915_gem_framebuffer_info, 0},
4650
	{"i915_context_status", i915_context_status, 0},
4651
	{"i915_forcewake_domains", i915_forcewake_domains, 0},
4652
	{"i915_swizzle_info", i915_swizzle_info, 0},
D
Daniel Vetter 已提交
4653
	{"i915_ppgtt_info", i915_ppgtt_info, 0},
4654
	{"i915_llc", i915_llc, 0},
4655
	{"i915_edp_psr_status", i915_edp_psr_status, 0},
4656
	{"i915_sink_crc_eDP1", i915_sink_crc, 0},
4657
	{"i915_energy_uJ", i915_energy_uJ, 0},
4658
	{"i915_runtime_pm_status", i915_runtime_pm_status, 0},
4659
	{"i915_power_domain_info", i915_power_domain_info, 0},
4660
	{"i915_dmc_info", i915_dmc_info, 0},
4661
	{"i915_display_info", i915_display_info, 0},
4662
	{"i915_engine_info", i915_engine_info, 0},
4663
	{"i915_shrinker_info", i915_shrinker_info, 0},
4664
	{"i915_shared_dplls_info", i915_shared_dplls_info, 0},
4665
	{"i915_dp_mst_info", i915_dp_mst_info, 0},
4666
	{"i915_wa_registers", i915_wa_registers, 0},
4667
	{"i915_ddb_info", i915_ddb_info, 0},
4668
	{"i915_sseu_status", i915_sseu_status, 0},
4669
	{"i915_drrs_status", i915_drrs_status, 0},
4670
	{"i915_rps_boost_info", i915_rps_boost_info, 0},
4671
};
4672
#define I915_DEBUGFS_ENTRIES ARRAY_SIZE(i915_debugfs_list)
4673

4674
static const struct i915_debugfs_files {
4675 4676 4677 4678 4679 4680 4681
	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},
4682 4683
	{"i915_ring_missed_irq", &i915_ring_missed_irq_fops},
	{"i915_ring_test_irq", &i915_ring_test_irq_fops},
4684
	{"i915_gem_drop_caches", &i915_drop_caches_fops},
4685
#if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
4686
	{"i915_error_state", &i915_error_state_fops},
4687
	{"i915_gpu_info", &i915_gpu_info_fops},
4688
#endif
4689
	{"i915_next_seqno", &i915_next_seqno_fops},
4690
	{"i915_display_crc_ctl", &i915_display_crc_ctl_fops},
4691 4692 4693
	{"i915_pri_wm_latency", &i915_pri_wm_latency_fops},
	{"i915_spr_wm_latency", &i915_spr_wm_latency_fops},
	{"i915_cur_wm_latency", &i915_cur_wm_latency_fops},
4694
	{"i915_fbc_false_color", &i915_fbc_false_color_fops},
4695 4696
	{"i915_dp_test_data", &i915_displayport_test_data_fops},
	{"i915_dp_test_type", &i915_displayport_test_type_fops},
4697
	{"i915_dp_test_active", &i915_displayport_test_active_fops},
L
Lyude 已提交
4698
	{"i915_guc_log_control", &i915_guc_log_control_fops},
4699 4700
	{"i915_hpd_storm_ctl", &i915_hpd_storm_ctl_fops},
	{"i915_ipc_status", &i915_ipc_status_fops}
4701 4702
};

4703
int i915_debugfs_register(struct drm_i915_private *dev_priv)
4704
{
4705
	struct drm_minor *minor = dev_priv->drm.primary;
4706
	struct dentry *ent;
4707
	int ret, i;
4708

4709 4710 4711 4712 4713
	ent = debugfs_create_file("i915_forcewake_user", S_IRUSR,
				  minor->debugfs_root, to_i915(minor->dev),
				  &i915_forcewake_fops);
	if (!ent)
		return -ENOMEM;
4714

4715 4716 4717
	ret = intel_pipe_crc_create(minor);
	if (ret)
		return ret;
4718

4719
	for (i = 0; i < ARRAY_SIZE(i915_debugfs_files); i++) {
4720 4721 4722 4723
		ent = debugfs_create_file(i915_debugfs_files[i].name,
					  S_IRUGO | S_IWUSR,
					  minor->debugfs_root,
					  to_i915(minor->dev),
4724
					  i915_debugfs_files[i].fops);
4725 4726
		if (!ent)
			return -ENOMEM;
4727
	}
4728

4729 4730
	return drm_debugfs_create_files(i915_debugfs_list,
					I915_DEBUGFS_ENTRIES,
4731 4732 4733
					minor->debugfs_root, minor);
}

4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766
struct dpcd_block {
	/* DPCD dump start address. */
	unsigned int offset;
	/* DPCD dump end address, inclusive. If unset, .size will be used. */
	unsigned int end;
	/* DPCD dump size. Used if .end is unset. If unset, defaults to 1. */
	size_t size;
	/* Only valid for eDP. */
	bool edp;
};

static const struct dpcd_block i915_dpcd_debug[] = {
	{ .offset = DP_DPCD_REV, .size = DP_RECEIVER_CAP_SIZE },
	{ .offset = DP_PSR_SUPPORT, .end = DP_PSR_CAPS },
	{ .offset = DP_DOWNSTREAM_PORT_0, .size = 16 },
	{ .offset = DP_LINK_BW_SET, .end = DP_EDP_CONFIGURATION_SET },
	{ .offset = DP_SINK_COUNT, .end = DP_ADJUST_REQUEST_LANE2_3 },
	{ .offset = DP_SET_POWER },
	{ .offset = DP_EDP_DPCD_REV },
	{ .offset = DP_EDP_GENERAL_CAP_1, .end = DP_EDP_GENERAL_CAP_3 },
	{ .offset = DP_EDP_DISPLAY_CONTROL_REGISTER, .end = DP_EDP_BACKLIGHT_FREQ_CAP_MAX_LSB },
	{ .offset = DP_EDP_DBC_MINIMUM_BRIGHTNESS_SET, .end = DP_EDP_DBC_MAXIMUM_BRIGHTNESS_SET },
};

static int i915_dpcd_show(struct seq_file *m, void *data)
{
	struct drm_connector *connector = m->private;
	struct intel_dp *intel_dp =
		enc_to_intel_dp(&intel_attached_encoder(connector)->base);
	uint8_t buf[16];
	ssize_t err;
	int i;

4767 4768 4769
	if (connector->status != connector_status_connected)
		return -ENODEV;

4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789
	for (i = 0; i < ARRAY_SIZE(i915_dpcd_debug); i++) {
		const struct dpcd_block *b = &i915_dpcd_debug[i];
		size_t size = b->end ? b->end - b->offset + 1 : (b->size ?: 1);

		if (b->edp &&
		    connector->connector_type != DRM_MODE_CONNECTOR_eDP)
			continue;

		/* low tech for now */
		if (WARN_ON(size > sizeof(buf)))
			continue;

		err = drm_dp_dpcd_read(&intel_dp->aux, b->offset, buf, size);
		if (err <= 0) {
			DRM_ERROR("dpcd read (%zu bytes at %u) failed (%zd)\n",
				  size, b->offset, err);
			continue;
		}

		seq_printf(m, "%04x: %*ph\n", b->offset, (int) size, buf);
4790
	}
4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807

	return 0;
}

static int i915_dpcd_open(struct inode *inode, struct file *file)
{
	return single_open(file, i915_dpcd_show, inode->i_private);
}

static const struct file_operations i915_dpcd_fops = {
	.owner = THIS_MODULE,
	.open = i915_dpcd_open,
	.read = seq_read,
	.llseek = seq_lseek,
	.release = single_release,
};

4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841
static int i915_panel_show(struct seq_file *m, void *data)
{
	struct drm_connector *connector = m->private;
	struct intel_dp *intel_dp =
		enc_to_intel_dp(&intel_attached_encoder(connector)->base);

	if (connector->status != connector_status_connected)
		return -ENODEV;

	seq_printf(m, "Panel power up delay: %d\n",
		   intel_dp->panel_power_up_delay);
	seq_printf(m, "Panel power down delay: %d\n",
		   intel_dp->panel_power_down_delay);
	seq_printf(m, "Backlight on delay: %d\n",
		   intel_dp->backlight_on_delay);
	seq_printf(m, "Backlight off delay: %d\n",
		   intel_dp->backlight_off_delay);

	return 0;
}

static int i915_panel_open(struct inode *inode, struct file *file)
{
	return single_open(file, i915_panel_show, inode->i_private);
}

static const struct file_operations i915_panel_fops = {
	.owner = THIS_MODULE,
	.open = i915_panel_open,
	.read = seq_read,
	.llseek = seq_lseek,
	.release = single_release,
};

4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860
/**
 * i915_debugfs_connector_add - add i915 specific connector debugfs files
 * @connector: pointer to a registered drm_connector
 *
 * Cleanup will be done by drm_connector_unregister() through a call to
 * drm_debugfs_connector_remove().
 *
 * Returns 0 on success, negative error codes on error.
 */
int i915_debugfs_connector_add(struct drm_connector *connector)
{
	struct dentry *root = connector->debugfs_entry;

	/* The connector must have been registered beforehands. */
	if (!root)
		return -ENODEV;

	if (connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort ||
	    connector->connector_type == DRM_MODE_CONNECTOR_eDP)
4861 4862 4863 4864 4865 4866
		debugfs_create_file("i915_dpcd", S_IRUGO, root,
				    connector, &i915_dpcd_fops);

	if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
		debugfs_create_file("i915_panel_timings", S_IRUGO, root,
				    connector, &i915_panel_fops);
4867 4868 4869

	return 0;
}