blob: 20689f1cd719c3bc32bcecf11ab8b49b4c039cec [file] [log] [blame]
Ben Gamari20172632009-02-17 20:08:50 -05001/*
2 * Copyright © 2008 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 * Keith Packard <keithp@keithp.com>
26 *
27 */
28
29#include <linux/seq_file.h>
Damien Lespiaub2c88f52013-10-15 18:55:29 +010030#include <linux/circ_buf.h>
Daniel Vetter926321d2013-10-16 13:30:34 +020031#include <linux/ctype.h>
Chris Wilsonf3cd4742009-10-13 22:20:20 +010032#include <linux/debugfs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040034#include <linux/export.h>
Chris Wilson6d2b88852013-08-07 18:30:54 +010035#include <linux/list_sort.h>
Jesse Barnesec013e72013-08-20 10:29:23 +010036#include <asm/msr-index.h>
David Howells760285e2012-10-02 18:01:07 +010037#include <drm/drmP.h>
Simon Farnsworth4e5359c2010-09-01 17:47:52 +010038#include "intel_drv.h"
Chris Wilsone5c65262010-11-01 11:35:28 +000039#include "intel_ringbuffer.h"
David Howells760285e2012-10-02 18:01:07 +010040#include <drm/i915_drm.h>
Ben Gamari20172632009-02-17 20:08:50 -050041#include "i915_drv.h"
42
David Weinehall36cdd012016-08-22 13:59:31 +030043static inline struct drm_i915_private *node_to_i915(struct drm_info_node *node)
44{
45 return to_i915(node->minor->dev);
46}
47
Damien Lespiau497666d2013-10-15 18:55:39 +010048/* As the drm_debugfs_init() routines are called before dev->dev_private is
49 * allocated we need to hook into the minor for release. */
50static int
51drm_add_fake_info_node(struct drm_minor *minor,
52 struct dentry *ent,
53 const void *key)
54{
55 struct drm_info_node *node;
56
57 node = kmalloc(sizeof(*node), GFP_KERNEL);
58 if (node == NULL) {
59 debugfs_remove(ent);
60 return -ENOMEM;
61 }
62
63 node->minor = minor;
64 node->dent = ent;
David Weinehall36cdd012016-08-22 13:59:31 +030065 node->info_ent = (void *)key;
Damien Lespiau497666d2013-10-15 18:55:39 +010066
67 mutex_lock(&minor->debugfs_lock);
68 list_add(&node->list, &minor->debugfs_list);
69 mutex_unlock(&minor->debugfs_lock);
70
71 return 0;
72}
73
Chris Wilson70d39fe2010-08-25 16:03:34 +010074static int i915_capabilities(struct seq_file *m, void *data)
75{
David Weinehall36cdd012016-08-22 13:59:31 +030076 struct drm_i915_private *dev_priv = node_to_i915(m->private);
77 const struct intel_device_info *info = INTEL_INFO(dev_priv);
Chris Wilson70d39fe2010-08-25 16:03:34 +010078
David Weinehall36cdd012016-08-22 13:59:31 +030079 seq_printf(m, "gen: %d\n", INTEL_GEN(dev_priv));
80 seq_printf(m, "pch: %d\n", INTEL_PCH_TYPE(dev_priv));
Damien Lespiau79fc46d2013-04-23 16:37:17 +010081#define PRINT_FLAG(x) seq_printf(m, #x ": %s\n", yesno(info->x))
Joonas Lahtinen604db652016-10-05 13:50:16 +030082 DEV_INFO_FOR_EACH_FLAG(PRINT_FLAG);
Damien Lespiau79fc46d2013-04-23 16:37:17 +010083#undef PRINT_FLAG
Chris Wilson70d39fe2010-08-25 16:03:34 +010084
85 return 0;
86}
Ben Gamari433e12f2009-02-17 20:08:51 -050087
Imre Deaka7363de2016-05-12 16:18:52 +030088static char get_active_flag(struct drm_i915_gem_object *obj)
Chris Wilsona6172a82009-02-11 14:26:38 +000089{
Chris Wilson573adb32016-08-04 16:32:39 +010090 return i915_gem_object_is_active(obj) ? '*' : ' ';
Chris Wilsona6172a82009-02-11 14:26:38 +000091}
92
Imre Deaka7363de2016-05-12 16:18:52 +030093static char get_pin_flag(struct drm_i915_gem_object *obj)
Tvrtko Ursulinbe12a862016-04-15 11:34:52 +010094{
95 return obj->pin_display ? 'p' : ' ';
96}
97
Imre Deaka7363de2016-05-12 16:18:52 +030098static char get_tiling_flag(struct drm_i915_gem_object *obj)
Chris Wilsona6172a82009-02-11 14:26:38 +000099{
Chris Wilson3e510a82016-08-05 10:14:23 +0100100 switch (i915_gem_object_get_tiling(obj)) {
Akshay Joshi0206e352011-08-16 15:34:10 -0400101 default:
Tvrtko Ursulinbe12a862016-04-15 11:34:52 +0100102 case I915_TILING_NONE: return ' ';
103 case I915_TILING_X: return 'X';
104 case I915_TILING_Y: return 'Y';
Akshay Joshi0206e352011-08-16 15:34:10 -0400105 }
Chris Wilsona6172a82009-02-11 14:26:38 +0000106}
107
Imre Deaka7363de2016-05-12 16:18:52 +0300108static char get_global_flag(struct drm_i915_gem_object *obj)
Ben Widawsky1d693bc2013-07-31 17:00:00 -0700109{
Chris Wilson058d88c2016-08-15 10:49:06 +0100110 return i915_gem_object_to_ggtt(obj, NULL) ? 'g' : ' ';
Tvrtko Ursulinbe12a862016-04-15 11:34:52 +0100111}
112
Imre Deaka7363de2016-05-12 16:18:52 +0300113static char get_pin_mapped_flag(struct drm_i915_gem_object *obj)
Tvrtko Ursulinbe12a862016-04-15 11:34:52 +0100114{
115 return obj->mapping ? 'M' : ' ';
Ben Widawsky1d693bc2013-07-31 17:00:00 -0700116}
117
Tvrtko Ursulinca1543b2015-07-01 11:51:10 +0100118static u64 i915_gem_obj_total_ggtt_size(struct drm_i915_gem_object *obj)
119{
120 u64 size = 0;
121 struct i915_vma *vma;
122
Chris Wilson1c7f4bc2016-02-26 11:03:19 +0000123 list_for_each_entry(vma, &obj->vma_list, obj_link) {
Chris Wilson3272db52016-08-04 16:32:32 +0100124 if (i915_vma_is_ggtt(vma) && drm_mm_node_allocated(&vma->node))
Tvrtko Ursulinca1543b2015-07-01 11:51:10 +0100125 size += vma->node.size;
126 }
127
128 return size;
129}
130
Chris Wilson37811fc2010-08-25 22:45:57 +0100131static void
132describe_obj(struct seq_file *m, struct drm_i915_gem_object *obj)
133{
Chris Wilsonb4716182015-04-27 13:41:17 +0100134 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000135 struct intel_engine_cs *engine;
Ben Widawsky1d693bc2013-07-31 17:00:00 -0700136 struct i915_vma *vma;
Chris Wilsonfaf5bf02016-08-04 16:32:37 +0100137 unsigned int frontbuffer_bits;
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800138 int pin_count = 0;
Dave Gordonc3232b12016-03-23 18:19:53 +0000139 enum intel_engine_id id;
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800140
Chris Wilson188c1ab2016-04-03 14:14:20 +0100141 lockdep_assert_held(&obj->base.dev->struct_mutex);
142
Tvrtko Ursulinbe12a862016-04-15 11:34:52 +0100143 seq_printf(m, "%pK: %c%c%c%c%c %8zdKiB %02x %02x [ ",
Chris Wilson37811fc2010-08-25 22:45:57 +0100144 &obj->base,
Tvrtko Ursulinbe12a862016-04-15 11:34:52 +0100145 get_active_flag(obj),
Chris Wilson37811fc2010-08-25 22:45:57 +0100146 get_pin_flag(obj),
147 get_tiling_flag(obj),
Ben Widawsky1d693bc2013-07-31 17:00:00 -0700148 get_global_flag(obj),
Tvrtko Ursulinbe12a862016-04-15 11:34:52 +0100149 get_pin_mapped_flag(obj),
Eric Anholta05a5862011-12-20 08:54:15 -0800150 obj->base.size / 1024,
Chris Wilson37811fc2010-08-25 22:45:57 +0100151 obj->base.read_domains,
Chris Wilsonb4716182015-04-27 13:41:17 +0100152 obj->base.write_domain);
Dave Gordonc3232b12016-03-23 18:19:53 +0000153 for_each_engine_id(engine, dev_priv, id)
Chris Wilsonb4716182015-04-27 13:41:17 +0100154 seq_printf(m, "%x ",
Chris Wilsond72d9082016-08-04 07:52:31 +0100155 i915_gem_active_get_seqno(&obj->last_read[id],
156 &obj->base.dev->struct_mutex));
Chris Wilson49ef5292016-08-18 17:17:00 +0100157 seq_printf(m, "] %x %s%s%s",
Chris Wilsond72d9082016-08-04 07:52:31 +0100158 i915_gem_active_get_seqno(&obj->last_write,
159 &obj->base.dev->struct_mutex),
David Weinehall36cdd012016-08-22 13:59:31 +0300160 i915_cache_level_str(dev_priv, obj->cache_level),
Chris Wilson37811fc2010-08-25 22:45:57 +0100161 obj->dirty ? " dirty" : "",
162 obj->madv == I915_MADV_DONTNEED ? " purgeable" : "");
163 if (obj->base.name)
164 seq_printf(m, " (name: %d)", obj->base.name);
Chris Wilson1c7f4bc2016-02-26 11:03:19 +0000165 list_for_each_entry(vma, &obj->vma_list, obj_link) {
Chris Wilson20dfbde2016-08-04 16:32:30 +0100166 if (i915_vma_is_pinned(vma))
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800167 pin_count++;
Dan Carpenterba0635ff2015-02-25 16:17:48 +0300168 }
169 seq_printf(m, " (pinned x %d)", pin_count);
Chris Wilsoncc98b412013-08-09 12:25:09 +0100170 if (obj->pin_display)
171 seq_printf(m, " (display)");
Chris Wilson1c7f4bc2016-02-26 11:03:19 +0000172 list_for_each_entry(vma, &obj->vma_list, obj_link) {
Chris Wilson15717de2016-08-04 07:52:26 +0100173 if (!drm_mm_node_allocated(&vma->node))
174 continue;
175
Tvrtko Ursulin8d2fdc32015-05-27 10:52:32 +0100176 seq_printf(m, " (%sgtt offset: %08llx, size: %08llx",
Chris Wilson3272db52016-08-04 16:32:32 +0100177 i915_vma_is_ggtt(vma) ? "g" : "pp",
Tvrtko Ursulin8d2fdc32015-05-27 10:52:32 +0100178 vma->node.start, vma->node.size);
Chris Wilson3272db52016-08-04 16:32:32 +0100179 if (i915_vma_is_ggtt(vma))
Chris Wilson596c5922016-02-26 11:03:20 +0000180 seq_printf(m, ", type: %u", vma->ggtt_view.type);
Chris Wilson49ef5292016-08-18 17:17:00 +0100181 if (vma->fence)
182 seq_printf(m, " , fence: %d%s",
183 vma->fence->id,
184 i915_gem_active_isset(&vma->last_fence) ? "*" : "");
Chris Wilson596c5922016-02-26 11:03:20 +0000185 seq_puts(m, ")");
Ben Widawsky1d693bc2013-07-31 17:00:00 -0700186 }
Chris Wilsonc1ad11f2012-11-15 11:32:21 +0000187 if (obj->stolen)
Thierry Reding440fd522015-01-23 09:05:06 +0100188 seq_printf(m, " (stolen: %08llx)", obj->stolen->start);
Chris Wilson30154652015-04-07 17:28:24 +0100189 if (obj->pin_display || obj->fault_mappable) {
Chris Wilson6299f992010-11-24 12:23:44 +0000190 char s[3], *t = s;
Chris Wilson30154652015-04-07 17:28:24 +0100191 if (obj->pin_display)
Chris Wilson6299f992010-11-24 12:23:44 +0000192 *t++ = 'p';
193 if (obj->fault_mappable)
194 *t++ = 'f';
195 *t = '\0';
196 seq_printf(m, " (%s mappable)", s);
197 }
Chris Wilson27c01aa2016-08-04 07:52:30 +0100198
Chris Wilsond72d9082016-08-04 07:52:31 +0100199 engine = i915_gem_active_get_engine(&obj->last_write,
David Weinehall36cdd012016-08-22 13:59:31 +0300200 &dev_priv->drm.struct_mutex);
Chris Wilson27c01aa2016-08-04 07:52:30 +0100201 if (engine)
202 seq_printf(m, " (%s)", engine->name);
203
Chris Wilsonfaf5bf02016-08-04 16:32:37 +0100204 frontbuffer_bits = atomic_read(&obj->frontbuffer_bits);
205 if (frontbuffer_bits)
206 seq_printf(m, " (frontbuffer: 0x%03x)", frontbuffer_bits);
Chris Wilson37811fc2010-08-25 22:45:57 +0100207}
208
Chris Wilson6d2b88852013-08-07 18:30:54 +0100209static int obj_rank_by_stolen(void *priv,
210 struct list_head *A, struct list_head *B)
211{
212 struct drm_i915_gem_object *a =
Ben Widawskyb25cb2f2013-08-14 11:38:33 +0200213 container_of(A, struct drm_i915_gem_object, obj_exec_link);
Chris Wilson6d2b88852013-08-07 18:30:54 +0100214 struct drm_i915_gem_object *b =
Ben Widawskyb25cb2f2013-08-14 11:38:33 +0200215 container_of(B, struct drm_i915_gem_object, obj_exec_link);
Chris Wilson6d2b88852013-08-07 18:30:54 +0100216
Rasmus Villemoes2d05fa12015-09-28 23:08:50 +0200217 if (a->stolen->start < b->stolen->start)
218 return -1;
219 if (a->stolen->start > b->stolen->start)
220 return 1;
221 return 0;
Chris Wilson6d2b88852013-08-07 18:30:54 +0100222}
223
224static int i915_gem_stolen_list_info(struct seq_file *m, void *data)
225{
David Weinehall36cdd012016-08-22 13:59:31 +0300226 struct drm_i915_private *dev_priv = node_to_i915(m->private);
227 struct drm_device *dev = &dev_priv->drm;
Chris Wilson6d2b88852013-08-07 18:30:54 +0100228 struct drm_i915_gem_object *obj;
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300229 u64 total_obj_size, total_gtt_size;
Chris Wilson6d2b88852013-08-07 18:30:54 +0100230 LIST_HEAD(stolen);
231 int count, ret;
232
233 ret = mutex_lock_interruptible(&dev->struct_mutex);
234 if (ret)
235 return ret;
236
237 total_obj_size = total_gtt_size = count = 0;
238 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
239 if (obj->stolen == NULL)
240 continue;
241
Ben Widawskyb25cb2f2013-08-14 11:38:33 +0200242 list_add(&obj->obj_exec_link, &stolen);
Chris Wilson6d2b88852013-08-07 18:30:54 +0100243
244 total_obj_size += obj->base.size;
Tvrtko Ursulinca1543b2015-07-01 11:51:10 +0100245 total_gtt_size += i915_gem_obj_total_ggtt_size(obj);
Chris Wilson6d2b88852013-08-07 18:30:54 +0100246 count++;
247 }
248 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
249 if (obj->stolen == NULL)
250 continue;
251
Ben Widawskyb25cb2f2013-08-14 11:38:33 +0200252 list_add(&obj->obj_exec_link, &stolen);
Chris Wilson6d2b88852013-08-07 18:30:54 +0100253
254 total_obj_size += obj->base.size;
255 count++;
256 }
257 list_sort(NULL, &stolen, obj_rank_by_stolen);
258 seq_puts(m, "Stolen:\n");
259 while (!list_empty(&stolen)) {
Ben Widawskyb25cb2f2013-08-14 11:38:33 +0200260 obj = list_first_entry(&stolen, typeof(*obj), obj_exec_link);
Chris Wilson6d2b88852013-08-07 18:30:54 +0100261 seq_puts(m, " ");
262 describe_obj(m, obj);
263 seq_putc(m, '\n');
Ben Widawskyb25cb2f2013-08-14 11:38:33 +0200264 list_del_init(&obj->obj_exec_link);
Chris Wilson6d2b88852013-08-07 18:30:54 +0100265 }
266 mutex_unlock(&dev->struct_mutex);
267
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300268 seq_printf(m, "Total %d objects, %llu bytes, %llu GTT size\n",
Chris Wilson6d2b88852013-08-07 18:30:54 +0100269 count, total_obj_size, total_gtt_size);
270 return 0;
271}
272
Chris Wilson2db8e9d2013-06-04 23:49:08 +0100273struct file_stats {
Chris Wilson6313c202014-03-19 13:45:45 +0000274 struct drm_i915_file_private *file_priv;
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300275 unsigned long count;
276 u64 total, unbound;
277 u64 global, shared;
278 u64 active, inactive;
Chris Wilson2db8e9d2013-06-04 23:49:08 +0100279};
280
281static int per_file_stats(int id, void *ptr, void *data)
282{
283 struct drm_i915_gem_object *obj = ptr;
284 struct file_stats *stats = data;
Chris Wilson6313c202014-03-19 13:45:45 +0000285 struct i915_vma *vma;
Chris Wilson2db8e9d2013-06-04 23:49:08 +0100286
287 stats->count++;
288 stats->total += obj->base.size;
Chris Wilson15717de2016-08-04 07:52:26 +0100289 if (!obj->bind_count)
290 stats->unbound += obj->base.size;
Chris Wilsonc67a17e2014-03-19 13:45:46 +0000291 if (obj->base.name || obj->base.dma_buf)
292 stats->shared += obj->base.size;
293
Chris Wilson894eeec2016-08-04 07:52:20 +0100294 list_for_each_entry(vma, &obj->vma_list, obj_link) {
295 if (!drm_mm_node_allocated(&vma->node))
296 continue;
Chris Wilson6313c202014-03-19 13:45:45 +0000297
Chris Wilson3272db52016-08-04 16:32:32 +0100298 if (i915_vma_is_ggtt(vma)) {
Chris Wilson894eeec2016-08-04 07:52:20 +0100299 stats->global += vma->node.size;
300 } else {
301 struct i915_hw_ppgtt *ppgtt = i915_vm_to_ppgtt(vma->vm);
Chris Wilson6313c202014-03-19 13:45:45 +0000302
Chris Wilson2bfa9962016-08-04 07:52:25 +0100303 if (ppgtt->base.file != stats->file_priv)
Chris Wilson6313c202014-03-19 13:45:45 +0000304 continue;
Chris Wilson6313c202014-03-19 13:45:45 +0000305 }
Chris Wilson894eeec2016-08-04 07:52:20 +0100306
Chris Wilsonb0decaf2016-08-04 07:52:44 +0100307 if (i915_vma_is_active(vma))
Chris Wilson894eeec2016-08-04 07:52:20 +0100308 stats->active += vma->node.size;
309 else
310 stats->inactive += vma->node.size;
Chris Wilson2db8e9d2013-06-04 23:49:08 +0100311 }
312
313 return 0;
314}
315
Chris Wilsonb0da1b72015-04-07 16:20:40 +0100316#define print_file_stats(m, name, stats) do { \
317 if (stats.count) \
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300318 seq_printf(m, "%s: %lu objects, %llu bytes (%llu active, %llu inactive, %llu global, %llu shared, %llu unbound)\n", \
Chris Wilsonb0da1b72015-04-07 16:20:40 +0100319 name, \
320 stats.count, \
321 stats.total, \
322 stats.active, \
323 stats.inactive, \
324 stats.global, \
325 stats.shared, \
326 stats.unbound); \
327} while (0)
Brad Volkin493018d2014-12-11 12:13:08 -0800328
329static void print_batch_pool_stats(struct seq_file *m,
330 struct drm_i915_private *dev_priv)
331{
332 struct drm_i915_gem_object *obj;
333 struct file_stats stats;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000334 struct intel_engine_cs *engine;
Dave Gordonb4ac5af2016-03-24 11:20:38 +0000335 int j;
Brad Volkin493018d2014-12-11 12:13:08 -0800336
337 memset(&stats, 0, sizeof(stats));
338
Dave Gordonb4ac5af2016-03-24 11:20:38 +0000339 for_each_engine(engine, dev_priv) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000340 for (j = 0; j < ARRAY_SIZE(engine->batch_pool.cache_list); j++) {
Chris Wilson8d9d5742015-04-07 16:20:38 +0100341 list_for_each_entry(obj,
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000342 &engine->batch_pool.cache_list[j],
Chris Wilson8d9d5742015-04-07 16:20:38 +0100343 batch_pool_link)
344 per_file_stats(0, obj, &stats);
345 }
Chris Wilson06fbca72015-04-07 16:20:36 +0100346 }
Brad Volkin493018d2014-12-11 12:13:08 -0800347
Chris Wilsonb0da1b72015-04-07 16:20:40 +0100348 print_file_stats(m, "[k]batch pool", stats);
Brad Volkin493018d2014-12-11 12:13:08 -0800349}
350
Chris Wilson15da9562016-05-24 14:53:43 +0100351static int per_file_ctx_stats(int id, void *ptr, void *data)
352{
353 struct i915_gem_context *ctx = ptr;
354 int n;
355
356 for (n = 0; n < ARRAY_SIZE(ctx->engine); n++) {
357 if (ctx->engine[n].state)
Chris Wilsonbf3783e2016-08-15 10:48:54 +0100358 per_file_stats(0, ctx->engine[n].state->obj, data);
Chris Wilsondca33ec2016-08-02 22:50:20 +0100359 if (ctx->engine[n].ring)
Chris Wilson57e88532016-08-15 10:48:57 +0100360 per_file_stats(0, ctx->engine[n].ring->vma->obj, data);
Chris Wilson15da9562016-05-24 14:53:43 +0100361 }
362
363 return 0;
364}
365
366static void print_context_stats(struct seq_file *m,
367 struct drm_i915_private *dev_priv)
368{
David Weinehall36cdd012016-08-22 13:59:31 +0300369 struct drm_device *dev = &dev_priv->drm;
Chris Wilson15da9562016-05-24 14:53:43 +0100370 struct file_stats stats;
371 struct drm_file *file;
372
373 memset(&stats, 0, sizeof(stats));
374
David Weinehall36cdd012016-08-22 13:59:31 +0300375 mutex_lock(&dev->struct_mutex);
Chris Wilson15da9562016-05-24 14:53:43 +0100376 if (dev_priv->kernel_context)
377 per_file_ctx_stats(0, dev_priv->kernel_context, &stats);
378
David Weinehall36cdd012016-08-22 13:59:31 +0300379 list_for_each_entry(file, &dev->filelist, lhead) {
Chris Wilson15da9562016-05-24 14:53:43 +0100380 struct drm_i915_file_private *fpriv = file->driver_priv;
381 idr_for_each(&fpriv->context_idr, per_file_ctx_stats, &stats);
382 }
David Weinehall36cdd012016-08-22 13:59:31 +0300383 mutex_unlock(&dev->struct_mutex);
Chris Wilson15da9562016-05-24 14:53:43 +0100384
385 print_file_stats(m, "[k]contexts", stats);
386}
387
David Weinehall36cdd012016-08-22 13:59:31 +0300388static int i915_gem_object_info(struct seq_file *m, void *data)
Chris Wilson73aa8082010-09-30 11:46:12 +0100389{
David Weinehall36cdd012016-08-22 13:59:31 +0300390 struct drm_i915_private *dev_priv = node_to_i915(m->private);
391 struct drm_device *dev = &dev_priv->drm;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300392 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Chris Wilson2bd160a2016-08-15 10:48:45 +0100393 u32 count, mapped_count, purgeable_count, dpy_count;
394 u64 size, mapped_size, purgeable_size, dpy_size;
Chris Wilson6299f992010-11-24 12:23:44 +0000395 struct drm_i915_gem_object *obj;
Chris Wilson2db8e9d2013-06-04 23:49:08 +0100396 struct drm_file *file;
Chris Wilson73aa8082010-09-30 11:46:12 +0100397 int ret;
398
399 ret = mutex_lock_interruptible(&dev->struct_mutex);
400 if (ret)
401 return ret;
402
Chris Wilson6299f992010-11-24 12:23:44 +0000403 seq_printf(m, "%u objects, %zu bytes\n",
404 dev_priv->mm.object_count,
405 dev_priv->mm.object_memory);
406
Chris Wilson1544c422016-08-15 13:18:16 +0100407 size = count = 0;
408 mapped_size = mapped_count = 0;
409 purgeable_size = purgeable_count = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -0700410 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
Chris Wilson2bd160a2016-08-15 10:48:45 +0100411 size += obj->base.size;
412 ++count;
Chris Wilson6c085a72012-08-20 11:40:46 +0200413
Chris Wilsonb7abb712012-08-20 11:33:30 +0200414 if (obj->madv == I915_MADV_DONTNEED) {
415 purgeable_size += obj->base.size;
416 ++purgeable_count;
417 }
Chris Wilson2bd160a2016-08-15 10:48:45 +0100418
Tvrtko Ursulinbe19b102016-04-15 11:34:53 +0100419 if (obj->mapping) {
Chris Wilson2bd160a2016-08-15 10:48:45 +0100420 mapped_count++;
421 mapped_size += obj->base.size;
Tvrtko Ursulinbe19b102016-04-15 11:34:53 +0100422 }
Chris Wilson6299f992010-11-24 12:23:44 +0000423 }
Chris Wilson2bd160a2016-08-15 10:48:45 +0100424 seq_printf(m, "%u unbound objects, %llu bytes\n", count, size);
425
426 size = count = dpy_size = dpy_count = 0;
427 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
428 size += obj->base.size;
429 ++count;
430
431 if (obj->pin_display) {
432 dpy_size += obj->base.size;
433 ++dpy_count;
434 }
435
436 if (obj->madv == I915_MADV_DONTNEED) {
437 purgeable_size += obj->base.size;
438 ++purgeable_count;
439 }
440
441 if (obj->mapping) {
442 mapped_count++;
443 mapped_size += obj->base.size;
444 }
445 }
446 seq_printf(m, "%u bound objects, %llu bytes\n",
447 count, size);
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300448 seq_printf(m, "%u purgeable objects, %llu bytes\n",
Chris Wilsonb7abb712012-08-20 11:33:30 +0200449 purgeable_count, purgeable_size);
Chris Wilson2bd160a2016-08-15 10:48:45 +0100450 seq_printf(m, "%u mapped objects, %llu bytes\n",
451 mapped_count, mapped_size);
452 seq_printf(m, "%u display objects (pinned), %llu bytes\n",
453 dpy_count, dpy_size);
Chris Wilson6299f992010-11-24 12:23:44 +0000454
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300455 seq_printf(m, "%llu [%llu] gtt total\n",
Joonas Lahtinen72e96d62016-03-30 16:57:10 +0300456 ggtt->base.total, ggtt->mappable_end - ggtt->base.start);
Chris Wilson73aa8082010-09-30 11:46:12 +0100457
Damien Lespiau267f0c92013-06-24 22:59:48 +0100458 seq_putc(m, '\n');
Brad Volkin493018d2014-12-11 12:13:08 -0800459 print_batch_pool_stats(m, dev_priv);
Daniel Vetter1d2ac402016-04-26 19:29:41 +0200460 mutex_unlock(&dev->struct_mutex);
461
462 mutex_lock(&dev->filelist_mutex);
Chris Wilson15da9562016-05-24 14:53:43 +0100463 print_context_stats(m, dev_priv);
Chris Wilson2db8e9d2013-06-04 23:49:08 +0100464 list_for_each_entry_reverse(file, &dev->filelist, lhead) {
465 struct file_stats stats;
Chris Wilsonc84455b2016-08-15 10:49:08 +0100466 struct drm_i915_file_private *file_priv = file->driver_priv;
467 struct drm_i915_gem_request *request;
Tetsuo Handa3ec2f422014-01-03 20:42:18 +0900468 struct task_struct *task;
Chris Wilson2db8e9d2013-06-04 23:49:08 +0100469
470 memset(&stats, 0, sizeof(stats));
Chris Wilson6313c202014-03-19 13:45:45 +0000471 stats.file_priv = file->driver_priv;
Chris Wilson5b5ffff2014-06-17 09:56:24 +0100472 spin_lock(&file->table_lock);
Chris Wilson2db8e9d2013-06-04 23:49:08 +0100473 idr_for_each(&file->object_idr, per_file_stats, &stats);
Chris Wilson5b5ffff2014-06-17 09:56:24 +0100474 spin_unlock(&file->table_lock);
Tetsuo Handa3ec2f422014-01-03 20:42:18 +0900475 /*
476 * Although we have a valid reference on file->pid, that does
477 * not guarantee that the task_struct who called get_pid() is
478 * still alive (e.g. get_pid(current) => fork() => exit()).
479 * Therefore, we need to protect this ->comm access using RCU.
480 */
Chris Wilsonc84455b2016-08-15 10:49:08 +0100481 mutex_lock(&dev->struct_mutex);
482 request = list_first_entry_or_null(&file_priv->mm.request_list,
483 struct drm_i915_gem_request,
484 client_list);
Tetsuo Handa3ec2f422014-01-03 20:42:18 +0900485 rcu_read_lock();
Chris Wilsonc84455b2016-08-15 10:49:08 +0100486 task = pid_task(request && request->ctx->pid ?
487 request->ctx->pid : file->pid,
488 PIDTYPE_PID);
Brad Volkin493018d2014-12-11 12:13:08 -0800489 print_file_stats(m, task ? task->comm : "<unknown>", stats);
Tetsuo Handa3ec2f422014-01-03 20:42:18 +0900490 rcu_read_unlock();
Chris Wilsonc84455b2016-08-15 10:49:08 +0100491 mutex_unlock(&dev->struct_mutex);
Chris Wilson2db8e9d2013-06-04 23:49:08 +0100492 }
Daniel Vetter1d2ac402016-04-26 19:29:41 +0200493 mutex_unlock(&dev->filelist_mutex);
Chris Wilson73aa8082010-09-30 11:46:12 +0100494
495 return 0;
496}
497
Damien Lespiauaee56cf2013-06-24 22:59:49 +0100498static int i915_gem_gtt_info(struct seq_file *m, void *data)
Chris Wilson08c18322011-01-10 00:00:24 +0000499{
Damien Lespiau9f25d002014-05-13 15:30:28 +0100500 struct drm_info_node *node = m->private;
David Weinehall36cdd012016-08-22 13:59:31 +0300501 struct drm_i915_private *dev_priv = node_to_i915(node);
502 struct drm_device *dev = &dev_priv->drm;
Chris Wilson5f4b0912016-08-19 12:56:25 +0100503 bool show_pin_display_only = !!node->info_ent->data;
Chris Wilson08c18322011-01-10 00:00:24 +0000504 struct drm_i915_gem_object *obj;
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300505 u64 total_obj_size, total_gtt_size;
Chris Wilson08c18322011-01-10 00:00:24 +0000506 int count, ret;
507
508 ret = mutex_lock_interruptible(&dev->struct_mutex);
509 if (ret)
510 return ret;
511
512 total_obj_size = total_gtt_size = count = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -0700513 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Chris Wilson6da84822016-08-15 10:48:44 +0100514 if (show_pin_display_only && !obj->pin_display)
Chris Wilson1b502472012-04-24 15:47:30 +0100515 continue;
516
Damien Lespiau267f0c92013-06-24 22:59:48 +0100517 seq_puts(m, " ");
Chris Wilson08c18322011-01-10 00:00:24 +0000518 describe_obj(m, obj);
Damien Lespiau267f0c92013-06-24 22:59:48 +0100519 seq_putc(m, '\n');
Chris Wilson08c18322011-01-10 00:00:24 +0000520 total_obj_size += obj->base.size;
Tvrtko Ursulinca1543b2015-07-01 11:51:10 +0100521 total_gtt_size += i915_gem_obj_total_ggtt_size(obj);
Chris Wilson08c18322011-01-10 00:00:24 +0000522 count++;
523 }
524
525 mutex_unlock(&dev->struct_mutex);
526
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300527 seq_printf(m, "Total %d objects, %llu bytes, %llu GTT size\n",
Chris Wilson08c18322011-01-10 00:00:24 +0000528 count, total_obj_size, total_gtt_size);
529
530 return 0;
531}
532
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100533static int i915_gem_pageflip_info(struct seq_file *m, void *data)
534{
David Weinehall36cdd012016-08-22 13:59:31 +0300535 struct drm_i915_private *dev_priv = node_to_i915(m->private);
536 struct drm_device *dev = &dev_priv->drm;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100537 struct intel_crtc *crtc;
Daniel Vetter8a270eb2014-06-17 22:34:37 +0200538 int ret;
539
540 ret = mutex_lock_interruptible(&dev->struct_mutex);
541 if (ret)
542 return ret;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100543
Damien Lespiaud3fcc802014-05-13 23:32:22 +0100544 for_each_intel_crtc(dev, crtc) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800545 const char pipe = pipe_name(crtc->pipe);
546 const char plane = plane_name(crtc->plane);
Maarten Lankhorst51cbaf02016-05-17 15:07:49 +0200547 struct intel_flip_work *work;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100548
Daniel Vetter5e2d7af2014-09-15 14:55:22 +0200549 spin_lock_irq(&dev->event_lock);
Daniel Vetter5a21b662016-05-24 17:13:53 +0200550 work = crtc->flip_work;
551 if (work == NULL) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800552 seq_printf(m, "No flip due on pipe %c (plane %c)\n",
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100553 pipe, plane);
554 } else {
Daniel Vetter5a21b662016-05-24 17:13:53 +0200555 u32 pending;
556 u32 addr;
557
558 pending = atomic_read(&work->pending);
559 if (pending) {
560 seq_printf(m, "Flip ioctl preparing on pipe %c (plane %c)\n",
561 pipe, plane);
562 } else {
563 seq_printf(m, "Flip pending (waiting for vsync) on pipe %c (plane %c)\n",
564 pipe, plane);
565 }
566 if (work->flip_queued_req) {
567 struct intel_engine_cs *engine = i915_gem_request_get_engine(work->flip_queued_req);
568
569 seq_printf(m, "Flip queued on %s at seqno %x, next seqno %x [current breadcrumb %x], completed? %d\n",
570 engine->name,
571 i915_gem_request_get_seqno(work->flip_queued_req),
572 dev_priv->next_seqno,
Chris Wilson1b7744e2016-07-01 17:23:17 +0100573 intel_engine_get_seqno(engine),
Chris Wilsonf69a02c2016-07-01 17:23:16 +0100574 i915_gem_request_completed(work->flip_queued_req));
Daniel Vetter5a21b662016-05-24 17:13:53 +0200575 } else
576 seq_printf(m, "Flip not associated with any ring\n");
577 seq_printf(m, "Flip queued on frame %d, (was ready on frame %d), now %d\n",
578 work->flip_queued_vblank,
579 work->flip_ready_vblank,
580 intel_crtc_get_vblank_counter(crtc));
581 seq_printf(m, "%d prepares\n", atomic_read(&work->pending));
582
David Weinehall36cdd012016-08-22 13:59:31 +0300583 if (INTEL_GEN(dev_priv) >= 4)
Daniel Vetter5a21b662016-05-24 17:13:53 +0200584 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(crtc->plane)));
585 else
586 addr = I915_READ(DSPADDR(crtc->plane));
587 seq_printf(m, "Current scanout address 0x%08x\n", addr);
588
589 if (work->pending_flip_obj) {
590 seq_printf(m, "New framebuffer address 0x%08lx\n", (long)work->gtt_offset);
591 seq_printf(m, "MMIO update completed? %d\n", addr == work->gtt_offset);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100592 }
593 }
Daniel Vetter5e2d7af2014-09-15 14:55:22 +0200594 spin_unlock_irq(&dev->event_lock);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100595 }
596
Daniel Vetter8a270eb2014-06-17 22:34:37 +0200597 mutex_unlock(&dev->struct_mutex);
598
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100599 return 0;
600}
601
Brad Volkin493018d2014-12-11 12:13:08 -0800602static int i915_gem_batch_pool_info(struct seq_file *m, void *data)
603{
David Weinehall36cdd012016-08-22 13:59:31 +0300604 struct drm_i915_private *dev_priv = node_to_i915(m->private);
605 struct drm_device *dev = &dev_priv->drm;
Brad Volkin493018d2014-12-11 12:13:08 -0800606 struct drm_i915_gem_object *obj;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000607 struct intel_engine_cs *engine;
Chris Wilson8d9d5742015-04-07 16:20:38 +0100608 int total = 0;
Dave Gordonb4ac5af2016-03-24 11:20:38 +0000609 int ret, j;
Brad Volkin493018d2014-12-11 12:13:08 -0800610
611 ret = mutex_lock_interruptible(&dev->struct_mutex);
612 if (ret)
613 return ret;
614
Dave Gordonb4ac5af2016-03-24 11:20:38 +0000615 for_each_engine(engine, dev_priv) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000616 for (j = 0; j < ARRAY_SIZE(engine->batch_pool.cache_list); j++) {
Chris Wilson8d9d5742015-04-07 16:20:38 +0100617 int count;
618
619 count = 0;
620 list_for_each_entry(obj,
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000621 &engine->batch_pool.cache_list[j],
Chris Wilson8d9d5742015-04-07 16:20:38 +0100622 batch_pool_link)
623 count++;
624 seq_printf(m, "%s cache[%d]: %d objects\n",
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000625 engine->name, j, count);
Chris Wilson8d9d5742015-04-07 16:20:38 +0100626
627 list_for_each_entry(obj,
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000628 &engine->batch_pool.cache_list[j],
Chris Wilson8d9d5742015-04-07 16:20:38 +0100629 batch_pool_link) {
630 seq_puts(m, " ");
631 describe_obj(m, obj);
632 seq_putc(m, '\n');
633 }
634
635 total += count;
Chris Wilson06fbca72015-04-07 16:20:36 +0100636 }
Brad Volkin493018d2014-12-11 12:13:08 -0800637 }
638
Chris Wilson8d9d5742015-04-07 16:20:38 +0100639 seq_printf(m, "total: %d\n", total);
Brad Volkin493018d2014-12-11 12:13:08 -0800640
641 mutex_unlock(&dev->struct_mutex);
642
643 return 0;
644}
645
Chris Wilson1b365952016-10-04 21:11:31 +0100646static void print_request(struct seq_file *m,
647 struct drm_i915_gem_request *rq,
648 const char *prefix)
649{
650 struct pid *pid = rq->ctx->pid;
651 struct task_struct *task;
652
653 rcu_read_lock();
654 task = pid ? pid_task(pid, PIDTYPE_PID) : NULL;
655 seq_printf(m, "%s%x [%x:%x] @ %d: %s [%d]\n", prefix,
656 rq->fence.seqno, rq->ctx->hw_id, rq->fence.seqno,
657 jiffies_to_msecs(jiffies - rq->emitted_jiffies),
658 task ? task->comm : "<unknown>",
659 task ? task->pid : -1);
660 rcu_read_unlock();
661}
662
Ben Gamari20172632009-02-17 20:08:50 -0500663static int i915_gem_request_info(struct seq_file *m, void *data)
664{
David Weinehall36cdd012016-08-22 13:59:31 +0300665 struct drm_i915_private *dev_priv = node_to_i915(m->private);
666 struct drm_device *dev = &dev_priv->drm;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000667 struct intel_engine_cs *engine;
Daniel Vettereed29a52015-05-21 14:21:25 +0200668 struct drm_i915_gem_request *req;
Dave Gordonb4ac5af2016-03-24 11:20:38 +0000669 int ret, any;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100670
671 ret = mutex_lock_interruptible(&dev->struct_mutex);
672 if (ret)
673 return ret;
Ben Gamari20172632009-02-17 20:08:50 -0500674
Chris Wilson2d1070b2015-04-01 10:36:56 +0100675 any = 0;
Dave Gordonb4ac5af2016-03-24 11:20:38 +0000676 for_each_engine(engine, dev_priv) {
Chris Wilson2d1070b2015-04-01 10:36:56 +0100677 int count;
678
679 count = 0;
Chris Wilsonefdf7c02016-08-04 07:52:33 +0100680 list_for_each_entry(req, &engine->request_list, link)
Chris Wilson2d1070b2015-04-01 10:36:56 +0100681 count++;
682 if (count == 0)
Chris Wilsona2c7f6f2012-09-01 20:51:22 +0100683 continue;
684
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000685 seq_printf(m, "%s requests: %d\n", engine->name, count);
Chris Wilson1b365952016-10-04 21:11:31 +0100686 list_for_each_entry(req, &engine->request_list, link)
687 print_request(m, req, " ");
Chris Wilson2d1070b2015-04-01 10:36:56 +0100688
689 any++;
Ben Gamari20172632009-02-17 20:08:50 -0500690 }
Chris Wilsonde227ef2010-07-03 07:58:38 +0100691 mutex_unlock(&dev->struct_mutex);
692
Chris Wilson2d1070b2015-04-01 10:36:56 +0100693 if (any == 0)
Damien Lespiau267f0c92013-06-24 22:59:48 +0100694 seq_puts(m, "No requests\n");
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100695
Ben Gamari20172632009-02-17 20:08:50 -0500696 return 0;
697}
698
Chris Wilsonb2223492010-10-27 15:27:33 +0100699static void i915_ring_seqno_info(struct seq_file *m,
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +0000700 struct intel_engine_cs *engine)
Chris Wilsonb2223492010-10-27 15:27:33 +0100701{
Chris Wilson688e6c72016-07-01 17:23:15 +0100702 struct intel_breadcrumbs *b = &engine->breadcrumbs;
703 struct rb_node *rb;
704
Chris Wilson12471ba2016-04-09 10:57:55 +0100705 seq_printf(m, "Current sequence (%s): %x\n",
Chris Wilson1b7744e2016-07-01 17:23:17 +0100706 engine->name, intel_engine_get_seqno(engine));
Chris Wilson688e6c72016-07-01 17:23:15 +0100707
708 spin_lock(&b->lock);
709 for (rb = rb_first(&b->waiters); rb; rb = rb_next(rb)) {
710 struct intel_wait *w = container_of(rb, typeof(*w), node);
711
712 seq_printf(m, "Waiting (%s): %s [%d] on %x\n",
713 engine->name, w->tsk->comm, w->tsk->pid, w->seqno);
714 }
715 spin_unlock(&b->lock);
Chris Wilsonb2223492010-10-27 15:27:33 +0100716}
717
Ben Gamari20172632009-02-17 20:08:50 -0500718static int i915_gem_seqno_info(struct seq_file *m, void *data)
719{
David Weinehall36cdd012016-08-22 13:59:31 +0300720 struct drm_i915_private *dev_priv = node_to_i915(m->private);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000721 struct intel_engine_cs *engine;
Ben Gamari20172632009-02-17 20:08:50 -0500722
Dave Gordonb4ac5af2016-03-24 11:20:38 +0000723 for_each_engine(engine, dev_priv)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000724 i915_ring_seqno_info(m, engine);
Chris Wilsonde227ef2010-07-03 07:58:38 +0100725
Ben Gamari20172632009-02-17 20:08:50 -0500726 return 0;
727}
728
729
730static int i915_interrupt_info(struct seq_file *m, void *data)
731{
David Weinehall36cdd012016-08-22 13:59:31 +0300732 struct drm_i915_private *dev_priv = node_to_i915(m->private);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000733 struct intel_engine_cs *engine;
Chris Wilson4bb05042016-09-03 07:53:43 +0100734 int i, pipe;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100735
Paulo Zanonic8c8fb32013-11-27 18:21:54 -0200736 intel_runtime_pm_get(dev_priv);
Ben Gamari20172632009-02-17 20:08:50 -0500737
David Weinehall36cdd012016-08-22 13:59:31 +0300738 if (IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä74e1ca82014-04-09 13:28:09 +0300739 seq_printf(m, "Master Interrupt Control:\t%08x\n",
740 I915_READ(GEN8_MASTER_IRQ));
741
742 seq_printf(m, "Display IER:\t%08x\n",
743 I915_READ(VLV_IER));
744 seq_printf(m, "Display IIR:\t%08x\n",
745 I915_READ(VLV_IIR));
746 seq_printf(m, "Display IIR_RW:\t%08x\n",
747 I915_READ(VLV_IIR_RW));
748 seq_printf(m, "Display IMR:\t%08x\n",
749 I915_READ(VLV_IMR));
Damien Lespiau055e3932014-08-18 13:49:10 +0100750 for_each_pipe(dev_priv, pipe)
Ville Syrjälä74e1ca82014-04-09 13:28:09 +0300751 seq_printf(m, "Pipe %c stat:\t%08x\n",
752 pipe_name(pipe),
753 I915_READ(PIPESTAT(pipe)));
754
755 seq_printf(m, "Port hotplug:\t%08x\n",
756 I915_READ(PORT_HOTPLUG_EN));
757 seq_printf(m, "DPFLIPSTAT:\t%08x\n",
758 I915_READ(VLV_DPFLIPSTAT));
759 seq_printf(m, "DPINVGTT:\t%08x\n",
760 I915_READ(DPINVGTT));
761
762 for (i = 0; i < 4; i++) {
763 seq_printf(m, "GT Interrupt IMR %d:\t%08x\n",
764 i, I915_READ(GEN8_GT_IMR(i)));
765 seq_printf(m, "GT Interrupt IIR %d:\t%08x\n",
766 i, I915_READ(GEN8_GT_IIR(i)));
767 seq_printf(m, "GT Interrupt IER %d:\t%08x\n",
768 i, I915_READ(GEN8_GT_IER(i)));
769 }
770
771 seq_printf(m, "PCU interrupt mask:\t%08x\n",
772 I915_READ(GEN8_PCU_IMR));
773 seq_printf(m, "PCU interrupt identity:\t%08x\n",
774 I915_READ(GEN8_PCU_IIR));
775 seq_printf(m, "PCU interrupt enable:\t%08x\n",
776 I915_READ(GEN8_PCU_IER));
David Weinehall36cdd012016-08-22 13:59:31 +0300777 } else if (INTEL_GEN(dev_priv) >= 8) {
Ben Widawskya123f152013-11-02 21:07:10 -0700778 seq_printf(m, "Master Interrupt Control:\t%08x\n",
779 I915_READ(GEN8_MASTER_IRQ));
780
781 for (i = 0; i < 4; i++) {
782 seq_printf(m, "GT Interrupt IMR %d:\t%08x\n",
783 i, I915_READ(GEN8_GT_IMR(i)));
784 seq_printf(m, "GT Interrupt IIR %d:\t%08x\n",
785 i, I915_READ(GEN8_GT_IIR(i)));
786 seq_printf(m, "GT Interrupt IER %d:\t%08x\n",
787 i, I915_READ(GEN8_GT_IER(i)));
788 }
789
Damien Lespiau055e3932014-08-18 13:49:10 +0100790 for_each_pipe(dev_priv, pipe) {
Imre Deake1296492016-02-12 18:55:17 +0200791 enum intel_display_power_domain power_domain;
792
793 power_domain = POWER_DOMAIN_PIPE(pipe);
794 if (!intel_display_power_get_if_enabled(dev_priv,
795 power_domain)) {
Paulo Zanoni22c59962014-08-08 17:45:32 -0300796 seq_printf(m, "Pipe %c power disabled\n",
797 pipe_name(pipe));
798 continue;
799 }
Ben Widawskya123f152013-11-02 21:07:10 -0700800 seq_printf(m, "Pipe %c IMR:\t%08x\n",
Damien Lespiau07d27e22014-03-03 17:31:46 +0000801 pipe_name(pipe),
802 I915_READ(GEN8_DE_PIPE_IMR(pipe)));
Ben Widawskya123f152013-11-02 21:07:10 -0700803 seq_printf(m, "Pipe %c IIR:\t%08x\n",
Damien Lespiau07d27e22014-03-03 17:31:46 +0000804 pipe_name(pipe),
805 I915_READ(GEN8_DE_PIPE_IIR(pipe)));
Ben Widawskya123f152013-11-02 21:07:10 -0700806 seq_printf(m, "Pipe %c IER:\t%08x\n",
Damien Lespiau07d27e22014-03-03 17:31:46 +0000807 pipe_name(pipe),
808 I915_READ(GEN8_DE_PIPE_IER(pipe)));
Imre Deake1296492016-02-12 18:55:17 +0200809
810 intel_display_power_put(dev_priv, power_domain);
Ben Widawskya123f152013-11-02 21:07:10 -0700811 }
812
813 seq_printf(m, "Display Engine port interrupt mask:\t%08x\n",
814 I915_READ(GEN8_DE_PORT_IMR));
815 seq_printf(m, "Display Engine port interrupt identity:\t%08x\n",
816 I915_READ(GEN8_DE_PORT_IIR));
817 seq_printf(m, "Display Engine port interrupt enable:\t%08x\n",
818 I915_READ(GEN8_DE_PORT_IER));
819
820 seq_printf(m, "Display Engine misc interrupt mask:\t%08x\n",
821 I915_READ(GEN8_DE_MISC_IMR));
822 seq_printf(m, "Display Engine misc interrupt identity:\t%08x\n",
823 I915_READ(GEN8_DE_MISC_IIR));
824 seq_printf(m, "Display Engine misc interrupt enable:\t%08x\n",
825 I915_READ(GEN8_DE_MISC_IER));
826
827 seq_printf(m, "PCU interrupt mask:\t%08x\n",
828 I915_READ(GEN8_PCU_IMR));
829 seq_printf(m, "PCU interrupt identity:\t%08x\n",
830 I915_READ(GEN8_PCU_IIR));
831 seq_printf(m, "PCU interrupt enable:\t%08x\n",
832 I915_READ(GEN8_PCU_IER));
David Weinehall36cdd012016-08-22 13:59:31 +0300833 } else if (IS_VALLEYVIEW(dev_priv)) {
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700834 seq_printf(m, "Display IER:\t%08x\n",
835 I915_READ(VLV_IER));
836 seq_printf(m, "Display IIR:\t%08x\n",
837 I915_READ(VLV_IIR));
838 seq_printf(m, "Display IIR_RW:\t%08x\n",
839 I915_READ(VLV_IIR_RW));
840 seq_printf(m, "Display IMR:\t%08x\n",
841 I915_READ(VLV_IMR));
Damien Lespiau055e3932014-08-18 13:49:10 +0100842 for_each_pipe(dev_priv, pipe)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700843 seq_printf(m, "Pipe %c stat:\t%08x\n",
844 pipe_name(pipe),
845 I915_READ(PIPESTAT(pipe)));
846
847 seq_printf(m, "Master IER:\t%08x\n",
848 I915_READ(VLV_MASTER_IER));
849
850 seq_printf(m, "Render IER:\t%08x\n",
851 I915_READ(GTIER));
852 seq_printf(m, "Render IIR:\t%08x\n",
853 I915_READ(GTIIR));
854 seq_printf(m, "Render IMR:\t%08x\n",
855 I915_READ(GTIMR));
856
857 seq_printf(m, "PM IER:\t\t%08x\n",
858 I915_READ(GEN6_PMIER));
859 seq_printf(m, "PM IIR:\t\t%08x\n",
860 I915_READ(GEN6_PMIIR));
861 seq_printf(m, "PM IMR:\t\t%08x\n",
862 I915_READ(GEN6_PMIMR));
863
864 seq_printf(m, "Port hotplug:\t%08x\n",
865 I915_READ(PORT_HOTPLUG_EN));
866 seq_printf(m, "DPFLIPSTAT:\t%08x\n",
867 I915_READ(VLV_DPFLIPSTAT));
868 seq_printf(m, "DPINVGTT:\t%08x\n",
869 I915_READ(DPINVGTT));
870
David Weinehall36cdd012016-08-22 13:59:31 +0300871 } else if (!HAS_PCH_SPLIT(dev_priv)) {
Zhenyu Wang5f6a1692009-08-10 21:37:24 +0800872 seq_printf(m, "Interrupt enable: %08x\n",
873 I915_READ(IER));
874 seq_printf(m, "Interrupt identity: %08x\n",
875 I915_READ(IIR));
876 seq_printf(m, "Interrupt mask: %08x\n",
877 I915_READ(IMR));
Damien Lespiau055e3932014-08-18 13:49:10 +0100878 for_each_pipe(dev_priv, pipe)
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800879 seq_printf(m, "Pipe %c stat: %08x\n",
880 pipe_name(pipe),
881 I915_READ(PIPESTAT(pipe)));
Zhenyu Wang5f6a1692009-08-10 21:37:24 +0800882 } else {
883 seq_printf(m, "North Display Interrupt enable: %08x\n",
884 I915_READ(DEIER));
885 seq_printf(m, "North Display Interrupt identity: %08x\n",
886 I915_READ(DEIIR));
887 seq_printf(m, "North Display Interrupt mask: %08x\n",
888 I915_READ(DEIMR));
889 seq_printf(m, "South Display Interrupt enable: %08x\n",
890 I915_READ(SDEIER));
891 seq_printf(m, "South Display Interrupt identity: %08x\n",
892 I915_READ(SDEIIR));
893 seq_printf(m, "South Display Interrupt mask: %08x\n",
894 I915_READ(SDEIMR));
895 seq_printf(m, "Graphics Interrupt enable: %08x\n",
896 I915_READ(GTIER));
897 seq_printf(m, "Graphics Interrupt identity: %08x\n",
898 I915_READ(GTIIR));
899 seq_printf(m, "Graphics Interrupt mask: %08x\n",
900 I915_READ(GTIMR));
901 }
Dave Gordonb4ac5af2016-03-24 11:20:38 +0000902 for_each_engine(engine, dev_priv) {
David Weinehall36cdd012016-08-22 13:59:31 +0300903 if (INTEL_GEN(dev_priv) >= 6) {
Chris Wilsona2c7f6f2012-09-01 20:51:22 +0100904 seq_printf(m,
905 "Graphics Interrupt mask (%s): %08x\n",
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000906 engine->name, I915_READ_IMR(engine));
Chris Wilson9862e602011-01-04 22:22:17 +0000907 }
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000908 i915_ring_seqno_info(m, engine);
Chris Wilson9862e602011-01-04 22:22:17 +0000909 }
Paulo Zanonic8c8fb32013-11-27 18:21:54 -0200910 intel_runtime_pm_put(dev_priv);
Chris Wilsonde227ef2010-07-03 07:58:38 +0100911
Ben Gamari20172632009-02-17 20:08:50 -0500912 return 0;
913}
914
Chris Wilsona6172a82009-02-11 14:26:38 +0000915static int i915_gem_fence_regs_info(struct seq_file *m, void *data)
916{
David Weinehall36cdd012016-08-22 13:59:31 +0300917 struct drm_i915_private *dev_priv = node_to_i915(m->private);
918 struct drm_device *dev = &dev_priv->drm;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100919 int i, ret;
920
921 ret = mutex_lock_interruptible(&dev->struct_mutex);
922 if (ret)
923 return ret;
Chris Wilsona6172a82009-02-11 14:26:38 +0000924
Chris Wilsona6172a82009-02-11 14:26:38 +0000925 seq_printf(m, "Total fences = %d\n", dev_priv->num_fence_regs);
926 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson49ef5292016-08-18 17:17:00 +0100927 struct i915_vma *vma = dev_priv->fence_regs[i].vma;
Chris Wilsona6172a82009-02-11 14:26:38 +0000928
Chris Wilson6c085a72012-08-20 11:40:46 +0200929 seq_printf(m, "Fence %d, pin count = %d, object = ",
930 i, dev_priv->fence_regs[i].pin_count);
Chris Wilson49ef5292016-08-18 17:17:00 +0100931 if (!vma)
Damien Lespiau267f0c92013-06-24 22:59:48 +0100932 seq_puts(m, "unused");
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100933 else
Chris Wilson49ef5292016-08-18 17:17:00 +0100934 describe_obj(m, vma->obj);
Damien Lespiau267f0c92013-06-24 22:59:48 +0100935 seq_putc(m, '\n');
Chris Wilsona6172a82009-02-11 14:26:38 +0000936 }
937
Chris Wilson05394f32010-11-08 19:18:58 +0000938 mutex_unlock(&dev->struct_mutex);
Chris Wilsona6172a82009-02-11 14:26:38 +0000939 return 0;
940}
941
Ben Gamari20172632009-02-17 20:08:50 -0500942static int i915_hws_info(struct seq_file *m, void *data)
943{
Damien Lespiau9f25d002014-05-13 15:30:28 +0100944 struct drm_info_node *node = m->private;
David Weinehall36cdd012016-08-22 13:59:31 +0300945 struct drm_i915_private *dev_priv = node_to_i915(node);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000946 struct intel_engine_cs *engine;
Daniel Vetter1a240d42012-11-29 22:18:51 +0100947 const u32 *hws;
Chris Wilson4066c0a2010-10-29 21:00:54 +0100948 int i;
Ben Gamari20172632009-02-17 20:08:50 -0500949
Tvrtko Ursulin4a570db2016-03-16 11:00:38 +0000950 engine = &dev_priv->engine[(uintptr_t)node->info_ent->data];
Tvrtko Ursuline2f80392016-03-16 11:00:36 +0000951 hws = engine->status_page.page_addr;
Ben Gamari20172632009-02-17 20:08:50 -0500952 if (hws == NULL)
953 return 0;
954
955 for (i = 0; i < 4096 / sizeof(u32) / 4; i += 4) {
956 seq_printf(m, "0x%08x: 0x%08x 0x%08x 0x%08x 0x%08x\n",
957 i * 4,
958 hws[i], hws[i + 1], hws[i + 2], hws[i + 3]);
959 }
960 return 0;
961}
962
Daniel Vetterd5442302012-04-27 15:17:40 +0200963static ssize_t
964i915_error_state_write(struct file *filp,
965 const char __user *ubuf,
966 size_t cnt,
967 loff_t *ppos)
968{
Mika Kuoppalaedc3d882013-05-23 13:55:35 +0300969 struct i915_error_state_file_priv *error_priv = filp->private_data;
Daniel Vetterd5442302012-04-27 15:17:40 +0200970
971 DRM_DEBUG_DRIVER("Resetting error state\n");
Chris Wilson662d19e2016-09-01 21:55:10 +0100972 i915_destroy_error_state(error_priv->dev);
Daniel Vetterd5442302012-04-27 15:17:40 +0200973
974 return cnt;
975}
976
977static int i915_error_state_open(struct inode *inode, struct file *file)
978{
David Weinehall36cdd012016-08-22 13:59:31 +0300979 struct drm_i915_private *dev_priv = inode->i_private;
Daniel Vetterd5442302012-04-27 15:17:40 +0200980 struct i915_error_state_file_priv *error_priv;
Daniel Vetterd5442302012-04-27 15:17:40 +0200981
982 error_priv = kzalloc(sizeof(*error_priv), GFP_KERNEL);
983 if (!error_priv)
984 return -ENOMEM;
985
David Weinehall36cdd012016-08-22 13:59:31 +0300986 error_priv->dev = &dev_priv->drm;
Daniel Vetterd5442302012-04-27 15:17:40 +0200987
David Weinehall36cdd012016-08-22 13:59:31 +0300988 i915_error_state_get(&dev_priv->drm, error_priv);
Daniel Vetterd5442302012-04-27 15:17:40 +0200989
Mika Kuoppalaedc3d882013-05-23 13:55:35 +0300990 file->private_data = error_priv;
991
992 return 0;
Daniel Vetterd5442302012-04-27 15:17:40 +0200993}
994
995static int i915_error_state_release(struct inode *inode, struct file *file)
996{
Mika Kuoppalaedc3d882013-05-23 13:55:35 +0300997 struct i915_error_state_file_priv *error_priv = file->private_data;
Daniel Vetterd5442302012-04-27 15:17:40 +0200998
Mika Kuoppala95d5bfb2013-06-06 15:18:40 +0300999 i915_error_state_put(error_priv);
Daniel Vetterd5442302012-04-27 15:17:40 +02001000 kfree(error_priv);
1001
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001002 return 0;
1003}
1004
1005static ssize_t i915_error_state_read(struct file *file, char __user *userbuf,
1006 size_t count, loff_t *pos)
1007{
1008 struct i915_error_state_file_priv *error_priv = file->private_data;
1009 struct drm_i915_error_state_buf error_str;
1010 loff_t tmp_pos = 0;
1011 ssize_t ret_count = 0;
Mika Kuoppala4dc955f2013-06-06 15:18:41 +03001012 int ret;
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001013
David Weinehall36cdd012016-08-22 13:59:31 +03001014 ret = i915_error_state_buf_init(&error_str,
1015 to_i915(error_priv->dev), count, *pos);
Mika Kuoppala4dc955f2013-06-06 15:18:41 +03001016 if (ret)
1017 return ret;
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001018
Mika Kuoppalafc16b482013-06-06 15:18:39 +03001019 ret = i915_error_state_to_str(&error_str, error_priv);
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001020 if (ret)
1021 goto out;
1022
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001023 ret_count = simple_read_from_buffer(userbuf, count, &tmp_pos,
1024 error_str.buf,
1025 error_str.bytes);
1026
1027 if (ret_count < 0)
1028 ret = ret_count;
1029 else
1030 *pos = error_str.start + ret_count;
1031out:
Mika Kuoppala4dc955f2013-06-06 15:18:41 +03001032 i915_error_state_buf_release(&error_str);
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001033 return ret ?: ret_count;
Daniel Vetterd5442302012-04-27 15:17:40 +02001034}
1035
1036static const struct file_operations i915_error_state_fops = {
1037 .owner = THIS_MODULE,
1038 .open = i915_error_state_open,
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001039 .read = i915_error_state_read,
Daniel Vetterd5442302012-04-27 15:17:40 +02001040 .write = i915_error_state_write,
1041 .llseek = default_llseek,
1042 .release = i915_error_state_release,
1043};
1044
Kees Cook647416f2013-03-10 14:10:06 -07001045static int
1046i915_next_seqno_get(void *data, u64 *val)
Mika Kuoppala40633212012-12-04 15:12:00 +02001047{
David Weinehall36cdd012016-08-22 13:59:31 +03001048 struct drm_i915_private *dev_priv = data;
Mika Kuoppala40633212012-12-04 15:12:00 +02001049 int ret;
1050
David Weinehall36cdd012016-08-22 13:59:31 +03001051 ret = mutex_lock_interruptible(&dev_priv->drm.struct_mutex);
Mika Kuoppala40633212012-12-04 15:12:00 +02001052 if (ret)
1053 return ret;
1054
Kees Cook647416f2013-03-10 14:10:06 -07001055 *val = dev_priv->next_seqno;
David Weinehall36cdd012016-08-22 13:59:31 +03001056 mutex_unlock(&dev_priv->drm.struct_mutex);
Mika Kuoppala40633212012-12-04 15:12:00 +02001057
Kees Cook647416f2013-03-10 14:10:06 -07001058 return 0;
Mika Kuoppala40633212012-12-04 15:12:00 +02001059}
1060
Kees Cook647416f2013-03-10 14:10:06 -07001061static int
1062i915_next_seqno_set(void *data, u64 val)
Mika Kuoppala40633212012-12-04 15:12:00 +02001063{
David Weinehall36cdd012016-08-22 13:59:31 +03001064 struct drm_i915_private *dev_priv = data;
1065 struct drm_device *dev = &dev_priv->drm;
Mika Kuoppala40633212012-12-04 15:12:00 +02001066 int ret;
1067
Mika Kuoppala40633212012-12-04 15:12:00 +02001068 ret = mutex_lock_interruptible(&dev->struct_mutex);
1069 if (ret)
1070 return ret;
1071
Mika Kuoppalae94fbaa2012-12-19 11:13:09 +02001072 ret = i915_gem_set_seqno(dev, val);
Mika Kuoppala40633212012-12-04 15:12:00 +02001073 mutex_unlock(&dev->struct_mutex);
1074
Kees Cook647416f2013-03-10 14:10:06 -07001075 return ret;
Mika Kuoppala40633212012-12-04 15:12:00 +02001076}
1077
Kees Cook647416f2013-03-10 14:10:06 -07001078DEFINE_SIMPLE_ATTRIBUTE(i915_next_seqno_fops,
1079 i915_next_seqno_get, i915_next_seqno_set,
Mika Kuoppala3a3b4f92013-04-12 12:10:05 +03001080 "0x%llx\n");
Mika Kuoppala40633212012-12-04 15:12:00 +02001081
Deepak Sadb4bd12014-03-31 11:30:02 +05301082static int i915_frequency_info(struct seq_file *m, void *unused)
Jesse Barnesf97108d2010-01-29 11:27:07 -08001083{
David Weinehall36cdd012016-08-22 13:59:31 +03001084 struct drm_i915_private *dev_priv = node_to_i915(m->private);
1085 struct drm_device *dev = &dev_priv->drm;
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02001086 int ret = 0;
1087
1088 intel_runtime_pm_get(dev_priv);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001089
David Weinehall36cdd012016-08-22 13:59:31 +03001090 if (IS_GEN5(dev_priv)) {
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001091 u16 rgvswctl = I915_READ16(MEMSWCTL);
1092 u16 rgvstat = I915_READ16(MEMSTAT_ILK);
1093
1094 seq_printf(m, "Requested P-state: %d\n", (rgvswctl >> 8) & 0xf);
1095 seq_printf(m, "Requested VID: %d\n", rgvswctl & 0x3f);
1096 seq_printf(m, "Current VID: %d\n", (rgvstat & MEMSTAT_VID_MASK) >>
1097 MEMSTAT_VID_SHIFT);
1098 seq_printf(m, "Current P-state: %d\n",
1099 (rgvstat & MEMSTAT_PSTATE_MASK) >> MEMSTAT_PSTATE_SHIFT);
David Weinehall36cdd012016-08-22 13:59:31 +03001100 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Wayne Boyer666a4532015-12-09 12:29:35 -08001101 u32 freq_sts;
1102
1103 mutex_lock(&dev_priv->rps.hw_lock);
1104 freq_sts = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
1105 seq_printf(m, "PUNIT_REG_GPU_FREQ_STS: 0x%08x\n", freq_sts);
1106 seq_printf(m, "DDR freq: %d MHz\n", dev_priv->mem_freq);
1107
1108 seq_printf(m, "actual GPU freq: %d MHz\n",
1109 intel_gpu_freq(dev_priv, (freq_sts >> 8) & 0xff));
1110
1111 seq_printf(m, "current GPU freq: %d MHz\n",
1112 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq));
1113
1114 seq_printf(m, "max GPU freq: %d MHz\n",
1115 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq));
1116
1117 seq_printf(m, "min GPU freq: %d MHz\n",
1118 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq));
1119
1120 seq_printf(m, "idle GPU freq: %d MHz\n",
1121 intel_gpu_freq(dev_priv, dev_priv->rps.idle_freq));
1122
1123 seq_printf(m,
1124 "efficient (RPe) frequency: %d MHz\n",
1125 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq));
1126 mutex_unlock(&dev_priv->rps.hw_lock);
David Weinehall36cdd012016-08-22 13:59:31 +03001127 } else if (INTEL_GEN(dev_priv) >= 6) {
Bob Paauwe35040562015-06-25 14:54:07 -07001128 u32 rp_state_limits;
1129 u32 gt_perf_status;
1130 u32 rp_state_cap;
Chris Wilson0d8f9492014-03-27 09:06:14 +00001131 u32 rpmodectl, rpinclimit, rpdeclimit;
Chris Wilson8e8c06c2013-08-26 19:51:01 -03001132 u32 rpstat, cagf, reqf;
Jesse Barnesccab5c82011-01-18 15:49:25 -08001133 u32 rpupei, rpcurup, rpprevup;
1134 u32 rpdownei, rpcurdown, rpprevdown;
Paulo Zanoni9dd3c602014-08-01 18:14:48 -03001135 u32 pm_ier, pm_imr, pm_isr, pm_iir, pm_mask;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001136 int max_freq;
1137
Bob Paauwe35040562015-06-25 14:54:07 -07001138 rp_state_limits = I915_READ(GEN6_RP_STATE_LIMITS);
David Weinehall36cdd012016-08-22 13:59:31 +03001139 if (IS_BROXTON(dev_priv)) {
Bob Paauwe35040562015-06-25 14:54:07 -07001140 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
1141 gt_perf_status = I915_READ(BXT_GT_PERF_STATUS);
1142 } else {
1143 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
1144 gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS);
1145 }
1146
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001147 /* RPSTAT1 is in the GT power well */
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01001148 ret = mutex_lock_interruptible(&dev->struct_mutex);
1149 if (ret)
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02001150 goto out;
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01001151
Mika Kuoppala59bad942015-01-16 11:34:40 +02001152 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001153
Chris Wilson8e8c06c2013-08-26 19:51:01 -03001154 reqf = I915_READ(GEN6_RPNSWREQ);
David Weinehall36cdd012016-08-22 13:59:31 +03001155 if (IS_GEN9(dev_priv))
Akash Goel60260a52015-03-06 11:07:21 +05301156 reqf >>= 23;
1157 else {
1158 reqf &= ~GEN6_TURBO_DISABLE;
David Weinehall36cdd012016-08-22 13:59:31 +03001159 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Akash Goel60260a52015-03-06 11:07:21 +05301160 reqf >>= 24;
1161 else
1162 reqf >>= 25;
1163 }
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02001164 reqf = intel_gpu_freq(dev_priv, reqf);
Chris Wilson8e8c06c2013-08-26 19:51:01 -03001165
Chris Wilson0d8f9492014-03-27 09:06:14 +00001166 rpmodectl = I915_READ(GEN6_RP_CONTROL);
1167 rpinclimit = I915_READ(GEN6_RP_UP_THRESHOLD);
1168 rpdeclimit = I915_READ(GEN6_RP_DOWN_THRESHOLD);
1169
Jesse Barnesccab5c82011-01-18 15:49:25 -08001170 rpstat = I915_READ(GEN6_RPSTAT1);
Akash Goeld6cda9c2016-04-23 00:05:46 +05301171 rpupei = I915_READ(GEN6_RP_CUR_UP_EI) & GEN6_CURICONT_MASK;
1172 rpcurup = I915_READ(GEN6_RP_CUR_UP) & GEN6_CURBSYTAVG_MASK;
1173 rpprevup = I915_READ(GEN6_RP_PREV_UP) & GEN6_CURBSYTAVG_MASK;
1174 rpdownei = I915_READ(GEN6_RP_CUR_DOWN_EI) & GEN6_CURIAVG_MASK;
1175 rpcurdown = I915_READ(GEN6_RP_CUR_DOWN) & GEN6_CURBSYTAVG_MASK;
1176 rpprevdown = I915_READ(GEN6_RP_PREV_DOWN) & GEN6_CURBSYTAVG_MASK;
David Weinehall36cdd012016-08-22 13:59:31 +03001177 if (IS_GEN9(dev_priv))
Akash Goel60260a52015-03-06 11:07:21 +05301178 cagf = (rpstat & GEN9_CAGF_MASK) >> GEN9_CAGF_SHIFT;
David Weinehall36cdd012016-08-22 13:59:31 +03001179 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ben Widawskyf82855d2013-01-29 12:00:15 -08001180 cagf = (rpstat & HSW_CAGF_MASK) >> HSW_CAGF_SHIFT;
1181 else
1182 cagf = (rpstat & GEN6_CAGF_MASK) >> GEN6_CAGF_SHIFT;
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02001183 cagf = intel_gpu_freq(dev_priv, cagf);
Jesse Barnesccab5c82011-01-18 15:49:25 -08001184
Mika Kuoppala59bad942015-01-16 11:34:40 +02001185 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01001186 mutex_unlock(&dev->struct_mutex);
1187
David Weinehall36cdd012016-08-22 13:59:31 +03001188 if (IS_GEN6(dev_priv) || IS_GEN7(dev_priv)) {
Paulo Zanoni9dd3c602014-08-01 18:14:48 -03001189 pm_ier = I915_READ(GEN6_PMIER);
1190 pm_imr = I915_READ(GEN6_PMIMR);
1191 pm_isr = I915_READ(GEN6_PMISR);
1192 pm_iir = I915_READ(GEN6_PMIIR);
1193 pm_mask = I915_READ(GEN6_PMINTRMSK);
1194 } else {
1195 pm_ier = I915_READ(GEN8_GT_IER(2));
1196 pm_imr = I915_READ(GEN8_GT_IMR(2));
1197 pm_isr = I915_READ(GEN8_GT_ISR(2));
1198 pm_iir = I915_READ(GEN8_GT_IIR(2));
1199 pm_mask = I915_READ(GEN6_PMINTRMSK);
1200 }
Chris Wilson0d8f9492014-03-27 09:06:14 +00001201 seq_printf(m, "PM IER=0x%08x IMR=0x%08x ISR=0x%08x IIR=0x%08x, MASK=0x%08x\n",
Paulo Zanoni9dd3c602014-08-01 18:14:48 -03001202 pm_ier, pm_imr, pm_isr, pm_iir, pm_mask);
Sagar Arun Kamble1800ad22016-05-31 13:58:27 +05301203 seq_printf(m, "pm_intr_keep: 0x%08x\n", dev_priv->rps.pm_intr_keep);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001204 seq_printf(m, "GT_PERF_STATUS: 0x%08x\n", gt_perf_status);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001205 seq_printf(m, "Render p-state ratio: %d\n",
David Weinehall36cdd012016-08-22 13:59:31 +03001206 (gt_perf_status & (IS_GEN9(dev_priv) ? 0x1ff00 : 0xff00)) >> 8);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001207 seq_printf(m, "Render p-state VID: %d\n",
1208 gt_perf_status & 0xff);
1209 seq_printf(m, "Render p-state limit: %d\n",
1210 rp_state_limits & 0xff);
Chris Wilson0d8f9492014-03-27 09:06:14 +00001211 seq_printf(m, "RPSTAT1: 0x%08x\n", rpstat);
1212 seq_printf(m, "RPMODECTL: 0x%08x\n", rpmodectl);
1213 seq_printf(m, "RPINCLIMIT: 0x%08x\n", rpinclimit);
1214 seq_printf(m, "RPDECLIMIT: 0x%08x\n", rpdeclimit);
Chris Wilson8e8c06c2013-08-26 19:51:01 -03001215 seq_printf(m, "RPNSWREQ: %dMHz\n", reqf);
Ben Widawskyf82855d2013-01-29 12:00:15 -08001216 seq_printf(m, "CAGF: %dMHz\n", cagf);
Akash Goeld6cda9c2016-04-23 00:05:46 +05301217 seq_printf(m, "RP CUR UP EI: %d (%dus)\n",
1218 rpupei, GT_PM_INTERVAL_TO_US(dev_priv, rpupei));
1219 seq_printf(m, "RP CUR UP: %d (%dus)\n",
1220 rpcurup, GT_PM_INTERVAL_TO_US(dev_priv, rpcurup));
1221 seq_printf(m, "RP PREV UP: %d (%dus)\n",
1222 rpprevup, GT_PM_INTERVAL_TO_US(dev_priv, rpprevup));
Chris Wilsond86ed342015-04-27 13:41:19 +01001223 seq_printf(m, "Up threshold: %d%%\n",
1224 dev_priv->rps.up_threshold);
1225
Akash Goeld6cda9c2016-04-23 00:05:46 +05301226 seq_printf(m, "RP CUR DOWN EI: %d (%dus)\n",
1227 rpdownei, GT_PM_INTERVAL_TO_US(dev_priv, rpdownei));
1228 seq_printf(m, "RP CUR DOWN: %d (%dus)\n",
1229 rpcurdown, GT_PM_INTERVAL_TO_US(dev_priv, rpcurdown));
1230 seq_printf(m, "RP PREV DOWN: %d (%dus)\n",
1231 rpprevdown, GT_PM_INTERVAL_TO_US(dev_priv, rpprevdown));
Chris Wilsond86ed342015-04-27 13:41:19 +01001232 seq_printf(m, "Down threshold: %d%%\n",
1233 dev_priv->rps.down_threshold);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001234
David Weinehall36cdd012016-08-22 13:59:31 +03001235 max_freq = (IS_BROXTON(dev_priv) ? rp_state_cap >> 0 :
Bob Paauwe35040562015-06-25 14:54:07 -07001236 rp_state_cap >> 16) & 0xff;
David Weinehall36cdd012016-08-22 13:59:31 +03001237 max_freq *= (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv) ?
Rodrigo Vivief11bdb2015-10-28 04:16:45 -07001238 GEN9_FREQ_SCALER : 1);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001239 seq_printf(m, "Lowest (RPN) frequency: %dMHz\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02001240 intel_gpu_freq(dev_priv, max_freq));
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001241
1242 max_freq = (rp_state_cap & 0xff00) >> 8;
David Weinehall36cdd012016-08-22 13:59:31 +03001243 max_freq *= (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv) ?
Rodrigo Vivief11bdb2015-10-28 04:16:45 -07001244 GEN9_FREQ_SCALER : 1);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001245 seq_printf(m, "Nominal (RP1) frequency: %dMHz\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02001246 intel_gpu_freq(dev_priv, max_freq));
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001247
David Weinehall36cdd012016-08-22 13:59:31 +03001248 max_freq = (IS_BROXTON(dev_priv) ? rp_state_cap >> 16 :
Bob Paauwe35040562015-06-25 14:54:07 -07001249 rp_state_cap >> 0) & 0xff;
David Weinehall36cdd012016-08-22 13:59:31 +03001250 max_freq *= (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv) ?
Rodrigo Vivief11bdb2015-10-28 04:16:45 -07001251 GEN9_FREQ_SCALER : 1);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001252 seq_printf(m, "Max non-overclocked (RP0) frequency: %dMHz\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02001253 intel_gpu_freq(dev_priv, max_freq));
Ben Widawsky31c77382013-04-05 14:29:22 -07001254 seq_printf(m, "Max overclocked frequency: %dMHz\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02001255 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq));
Chris Wilsonaed242f2015-03-18 09:48:21 +00001256
Chris Wilsond86ed342015-04-27 13:41:19 +01001257 seq_printf(m, "Current freq: %d MHz\n",
1258 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq));
1259 seq_printf(m, "Actual freq: %d MHz\n", cagf);
Chris Wilsonaed242f2015-03-18 09:48:21 +00001260 seq_printf(m, "Idle freq: %d MHz\n",
1261 intel_gpu_freq(dev_priv, dev_priv->rps.idle_freq));
Chris Wilsond86ed342015-04-27 13:41:19 +01001262 seq_printf(m, "Min freq: %d MHz\n",
1263 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq));
Chris Wilson29ecd78d2016-07-13 09:10:35 +01001264 seq_printf(m, "Boost freq: %d MHz\n",
1265 intel_gpu_freq(dev_priv, dev_priv->rps.boost_freq));
Chris Wilsond86ed342015-04-27 13:41:19 +01001266 seq_printf(m, "Max freq: %d MHz\n",
1267 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq));
1268 seq_printf(m,
1269 "efficient (RPe) frequency: %d MHz\n",
1270 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq));
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001271 } else {
Damien Lespiau267f0c92013-06-24 22:59:48 +01001272 seq_puts(m, "no P-state info available\n");
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001273 }
Jesse Barnesf97108d2010-01-29 11:27:07 -08001274
Mika Kahola1170f282015-09-25 14:00:32 +03001275 seq_printf(m, "Current CD clock frequency: %d kHz\n", dev_priv->cdclk_freq);
1276 seq_printf(m, "Max CD clock frequency: %d kHz\n", dev_priv->max_cdclk_freq);
1277 seq_printf(m, "Max pixel clock frequency: %d kHz\n", dev_priv->max_dotclk_freq);
1278
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02001279out:
1280 intel_runtime_pm_put(dev_priv);
1281 return ret;
Jesse Barnesf97108d2010-01-29 11:27:07 -08001282}
1283
Ben Widawskyd6369512016-09-20 16:54:32 +03001284static void i915_instdone_info(struct drm_i915_private *dev_priv,
1285 struct seq_file *m,
1286 struct intel_instdone *instdone)
1287{
Ben Widawskyf9e61372016-09-20 16:54:33 +03001288 int slice;
1289 int subslice;
1290
Ben Widawskyd6369512016-09-20 16:54:32 +03001291 seq_printf(m, "\t\tINSTDONE: 0x%08x\n",
1292 instdone->instdone);
1293
1294 if (INTEL_GEN(dev_priv) <= 3)
1295 return;
1296
1297 seq_printf(m, "\t\tSC_INSTDONE: 0x%08x\n",
1298 instdone->slice_common);
1299
1300 if (INTEL_GEN(dev_priv) <= 6)
1301 return;
1302
Ben Widawskyf9e61372016-09-20 16:54:33 +03001303 for_each_instdone_slice_subslice(dev_priv, slice, subslice)
1304 seq_printf(m, "\t\tSAMPLER_INSTDONE[%d][%d]: 0x%08x\n",
1305 slice, subslice, instdone->sampler[slice][subslice]);
1306
1307 for_each_instdone_slice_subslice(dev_priv, slice, subslice)
1308 seq_printf(m, "\t\tROW_INSTDONE[%d][%d]: 0x%08x\n",
1309 slice, subslice, instdone->row[slice][subslice]);
Ben Widawskyd6369512016-09-20 16:54:32 +03001310}
1311
Chris Wilsonf6544492015-01-26 18:03:04 +02001312static int i915_hangcheck_info(struct seq_file *m, void *unused)
1313{
David Weinehall36cdd012016-08-22 13:59:31 +03001314 struct drm_i915_private *dev_priv = node_to_i915(m->private);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001315 struct intel_engine_cs *engine;
Tvrtko Ursulin666796d2016-03-16 11:00:39 +00001316 u64 acthd[I915_NUM_ENGINES];
1317 u32 seqno[I915_NUM_ENGINES];
Ben Widawskyd6369512016-09-20 16:54:32 +03001318 struct intel_instdone instdone;
Dave Gordonc3232b12016-03-23 18:19:53 +00001319 enum intel_engine_id id;
Chris Wilsonf6544492015-01-26 18:03:04 +02001320
Chris Wilson8af29b02016-09-09 14:11:47 +01001321 if (test_bit(I915_WEDGED, &dev_priv->gpu_error.flags))
1322 seq_printf(m, "Wedged\n");
1323 if (test_bit(I915_RESET_IN_PROGRESS, &dev_priv->gpu_error.flags))
1324 seq_printf(m, "Reset in progress\n");
1325 if (waitqueue_active(&dev_priv->gpu_error.wait_queue))
1326 seq_printf(m, "Waiter holding struct mutex\n");
1327 if (waitqueue_active(&dev_priv->gpu_error.reset_queue))
1328 seq_printf(m, "struct_mutex blocked for reset\n");
1329
Chris Wilsonf6544492015-01-26 18:03:04 +02001330 if (!i915.enable_hangcheck) {
1331 seq_printf(m, "Hangcheck disabled\n");
1332 return 0;
1333 }
1334
Mika Kuoppalaebbc7542015-02-05 18:41:48 +02001335 intel_runtime_pm_get(dev_priv);
1336
Dave Gordonc3232b12016-03-23 18:19:53 +00001337 for_each_engine_id(engine, dev_priv, id) {
Chris Wilson7e37f882016-08-02 22:50:21 +01001338 acthd[id] = intel_engine_get_active_head(engine);
Chris Wilson1b7744e2016-07-01 17:23:17 +01001339 seqno[id] = intel_engine_get_seqno(engine);
Mika Kuoppalaebbc7542015-02-05 18:41:48 +02001340 }
1341
Ben Widawskyd6369512016-09-20 16:54:32 +03001342 i915_get_engine_instdone(dev_priv, RCS, &instdone);
Mika Kuoppala61642ff2015-12-01 17:56:12 +02001343
Mika Kuoppalaebbc7542015-02-05 18:41:48 +02001344 intel_runtime_pm_put(dev_priv);
1345
Chris Wilsonf6544492015-01-26 18:03:04 +02001346 if (delayed_work_pending(&dev_priv->gpu_error.hangcheck_work)) {
1347 seq_printf(m, "Hangcheck active, fires in %dms\n",
1348 jiffies_to_msecs(dev_priv->gpu_error.hangcheck_work.timer.expires -
1349 jiffies));
1350 } else
1351 seq_printf(m, "Hangcheck inactive\n");
1352
Dave Gordonc3232b12016-03-23 18:19:53 +00001353 for_each_engine_id(engine, dev_priv, id) {
Chris Wilson33f53712016-10-04 21:11:32 +01001354 struct intel_breadcrumbs *b = &engine->breadcrumbs;
1355 struct rb_node *rb;
1356
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001357 seq_printf(m, "%s:\n", engine->name);
Chris Wilson14fd0d62016-04-07 07:29:10 +01001358 seq_printf(m, "\tseqno = %x [current %x, last %x]\n",
1359 engine->hangcheck.seqno,
1360 seqno[id],
1361 engine->last_submitted_seqno);
Chris Wilson83348ba2016-08-09 17:47:51 +01001362 seq_printf(m, "\twaiters? %s, fake irq active? %s\n",
1363 yesno(intel_engine_has_waiter(engine)),
1364 yesno(test_bit(engine->id,
1365 &dev_priv->gpu_error.missed_irq_rings)));
Chris Wilson33f53712016-10-04 21:11:32 +01001366 spin_lock(&b->lock);
1367 for (rb = rb_first(&b->waiters); rb; rb = rb_next(rb)) {
1368 struct intel_wait *w = container_of(rb, typeof(*w), node);
1369
1370 seq_printf(m, "\t%s [%d] waiting for %x\n",
1371 w->tsk->comm, w->tsk->pid, w->seqno);
1372 }
1373 spin_unlock(&b->lock);
1374
Chris Wilsonf6544492015-01-26 18:03:04 +02001375 seq_printf(m, "\tACTHD = 0x%08llx [current 0x%08llx]\n",
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001376 (long long)engine->hangcheck.acthd,
Dave Gordonc3232b12016-03-23 18:19:53 +00001377 (long long)acthd[id]);
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001378 seq_printf(m, "\tscore = %d\n", engine->hangcheck.score);
1379 seq_printf(m, "\taction = %d\n", engine->hangcheck.action);
Mika Kuoppala61642ff2015-12-01 17:56:12 +02001380
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001381 if (engine->id == RCS) {
Ben Widawskyd6369512016-09-20 16:54:32 +03001382 seq_puts(m, "\tinstdone read =\n");
Mika Kuoppala61642ff2015-12-01 17:56:12 +02001383
Ben Widawskyd6369512016-09-20 16:54:32 +03001384 i915_instdone_info(dev_priv, m, &instdone);
Mika Kuoppala61642ff2015-12-01 17:56:12 +02001385
Ben Widawskyd6369512016-09-20 16:54:32 +03001386 seq_puts(m, "\tinstdone accu =\n");
Mika Kuoppala61642ff2015-12-01 17:56:12 +02001387
Ben Widawskyd6369512016-09-20 16:54:32 +03001388 i915_instdone_info(dev_priv, m,
1389 &engine->hangcheck.instdone);
Mika Kuoppala61642ff2015-12-01 17:56:12 +02001390 }
Chris Wilsonf6544492015-01-26 18:03:04 +02001391 }
1392
1393 return 0;
1394}
1395
Ben Widawsky4d855292011-12-12 19:34:16 -08001396static int ironlake_drpc_info(struct seq_file *m)
Jesse Barnesf97108d2010-01-29 11:27:07 -08001397{
David Weinehall36cdd012016-08-22 13:59:31 +03001398 struct drm_i915_private *dev_priv = node_to_i915(m->private);
1399 struct drm_device *dev = &dev_priv->drm;
Ben Widawsky616fdb52011-10-05 11:44:54 -07001400 u32 rgvmodectl, rstdbyctl;
1401 u16 crstandvid;
1402 int ret;
1403
1404 ret = mutex_lock_interruptible(&dev->struct_mutex);
1405 if (ret)
1406 return ret;
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02001407 intel_runtime_pm_get(dev_priv);
Ben Widawsky616fdb52011-10-05 11:44:54 -07001408
1409 rgvmodectl = I915_READ(MEMMODECTL);
1410 rstdbyctl = I915_READ(RSTDBYCTL);
1411 crstandvid = I915_READ16(CRSTANDVID);
1412
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02001413 intel_runtime_pm_put(dev_priv);
Ben Widawsky616fdb52011-10-05 11:44:54 -07001414 mutex_unlock(&dev->struct_mutex);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001415
Jani Nikula742f4912015-09-03 11:16:09 +03001416 seq_printf(m, "HD boost: %s\n", yesno(rgvmodectl & MEMMODE_BOOST_EN));
Jesse Barnesf97108d2010-01-29 11:27:07 -08001417 seq_printf(m, "Boost freq: %d\n",
1418 (rgvmodectl & MEMMODE_BOOST_FREQ_MASK) >>
1419 MEMMODE_BOOST_FREQ_SHIFT);
1420 seq_printf(m, "HW control enabled: %s\n",
Jani Nikula742f4912015-09-03 11:16:09 +03001421 yesno(rgvmodectl & MEMMODE_HWIDLE_EN));
Jesse Barnesf97108d2010-01-29 11:27:07 -08001422 seq_printf(m, "SW control enabled: %s\n",
Jani Nikula742f4912015-09-03 11:16:09 +03001423 yesno(rgvmodectl & MEMMODE_SWMODE_EN));
Jesse Barnesf97108d2010-01-29 11:27:07 -08001424 seq_printf(m, "Gated voltage change: %s\n",
Jani Nikula742f4912015-09-03 11:16:09 +03001425 yesno(rgvmodectl & MEMMODE_RCLK_GATE));
Jesse Barnesf97108d2010-01-29 11:27:07 -08001426 seq_printf(m, "Starting frequency: P%d\n",
1427 (rgvmodectl & MEMMODE_FSTART_MASK) >> MEMMODE_FSTART_SHIFT);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001428 seq_printf(m, "Max P-state: P%d\n",
Jesse Barnesf97108d2010-01-29 11:27:07 -08001429 (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001430 seq_printf(m, "Min P-state: P%d\n", (rgvmodectl & MEMMODE_FMIN_MASK));
1431 seq_printf(m, "RS1 VID: %d\n", (crstandvid & 0x3f));
1432 seq_printf(m, "RS2 VID: %d\n", ((crstandvid >> 8) & 0x3f));
1433 seq_printf(m, "Render standby enabled: %s\n",
Jani Nikula742f4912015-09-03 11:16:09 +03001434 yesno(!(rstdbyctl & RCX_SW_EXIT)));
Damien Lespiau267f0c92013-06-24 22:59:48 +01001435 seq_puts(m, "Current RS state: ");
Jesse Barnes88271da2011-01-05 12:01:24 -08001436 switch (rstdbyctl & RSX_STATUS_MASK) {
1437 case RSX_STATUS_ON:
Damien Lespiau267f0c92013-06-24 22:59:48 +01001438 seq_puts(m, "on\n");
Jesse Barnes88271da2011-01-05 12:01:24 -08001439 break;
1440 case RSX_STATUS_RC1:
Damien Lespiau267f0c92013-06-24 22:59:48 +01001441 seq_puts(m, "RC1\n");
Jesse Barnes88271da2011-01-05 12:01:24 -08001442 break;
1443 case RSX_STATUS_RC1E:
Damien Lespiau267f0c92013-06-24 22:59:48 +01001444 seq_puts(m, "RC1E\n");
Jesse Barnes88271da2011-01-05 12:01:24 -08001445 break;
1446 case RSX_STATUS_RS1:
Damien Lespiau267f0c92013-06-24 22:59:48 +01001447 seq_puts(m, "RS1\n");
Jesse Barnes88271da2011-01-05 12:01:24 -08001448 break;
1449 case RSX_STATUS_RS2:
Damien Lespiau267f0c92013-06-24 22:59:48 +01001450 seq_puts(m, "RS2 (RC6)\n");
Jesse Barnes88271da2011-01-05 12:01:24 -08001451 break;
1452 case RSX_STATUS_RS3:
Damien Lespiau267f0c92013-06-24 22:59:48 +01001453 seq_puts(m, "RC3 (RC6+)\n");
Jesse Barnes88271da2011-01-05 12:01:24 -08001454 break;
1455 default:
Damien Lespiau267f0c92013-06-24 22:59:48 +01001456 seq_puts(m, "unknown\n");
Jesse Barnes88271da2011-01-05 12:01:24 -08001457 break;
1458 }
Jesse Barnesf97108d2010-01-29 11:27:07 -08001459
1460 return 0;
1461}
1462
Mika Kuoppalaf65367b2015-01-16 11:34:42 +02001463static int i915_forcewake_domains(struct seq_file *m, void *data)
Chris Wilsonb2cff0d2015-01-16 11:34:37 +02001464{
David Weinehall36cdd012016-08-22 13:59:31 +03001465 struct drm_i915_private *dev_priv = node_to_i915(m->private);
Chris Wilsonb2cff0d2015-01-16 11:34:37 +02001466 struct intel_uncore_forcewake_domain *fw_domain;
Chris Wilsonb2cff0d2015-01-16 11:34:37 +02001467
1468 spin_lock_irq(&dev_priv->uncore.lock);
Tvrtko Ursulin33c582c2016-04-07 17:04:33 +01001469 for_each_fw_domain(fw_domain, dev_priv) {
Chris Wilsonb2cff0d2015-01-16 11:34:37 +02001470 seq_printf(m, "%s.wake_count = %u\n",
Tvrtko Ursulin33c582c2016-04-07 17:04:33 +01001471 intel_uncore_forcewake_domain_to_str(fw_domain->id),
Chris Wilsonb2cff0d2015-01-16 11:34:37 +02001472 fw_domain->wake_count);
1473 }
1474 spin_unlock_irq(&dev_priv->uncore.lock);
1475
1476 return 0;
1477}
1478
Deepak S669ab5a2014-01-10 15:18:26 +05301479static int vlv_drpc_info(struct seq_file *m)
1480{
David Weinehall36cdd012016-08-22 13:59:31 +03001481 struct drm_i915_private *dev_priv = node_to_i915(m->private);
Ville Syrjälä6b312cd2014-11-19 20:07:42 +02001482 u32 rpmodectl1, rcctl1, pw_status;
Deepak S669ab5a2014-01-10 15:18:26 +05301483
Imre Deakd46c0512014-04-14 20:24:27 +03001484 intel_runtime_pm_get(dev_priv);
1485
Ville Syrjälä6b312cd2014-11-19 20:07:42 +02001486 pw_status = I915_READ(VLV_GTLC_PW_STATUS);
Deepak S669ab5a2014-01-10 15:18:26 +05301487 rpmodectl1 = I915_READ(GEN6_RP_CONTROL);
1488 rcctl1 = I915_READ(GEN6_RC_CONTROL);
1489
Imre Deakd46c0512014-04-14 20:24:27 +03001490 intel_runtime_pm_put(dev_priv);
1491
Deepak S669ab5a2014-01-10 15:18:26 +05301492 seq_printf(m, "Video Turbo Mode: %s\n",
1493 yesno(rpmodectl1 & GEN6_RP_MEDIA_TURBO));
1494 seq_printf(m, "Turbo enabled: %s\n",
1495 yesno(rpmodectl1 & GEN6_RP_ENABLE));
1496 seq_printf(m, "HW control enabled: %s\n",
1497 yesno(rpmodectl1 & GEN6_RP_ENABLE));
1498 seq_printf(m, "SW control enabled: %s\n",
1499 yesno((rpmodectl1 & GEN6_RP_MEDIA_MODE_MASK) ==
1500 GEN6_RP_MEDIA_SW_MODE));
1501 seq_printf(m, "RC6 Enabled: %s\n",
1502 yesno(rcctl1 & (GEN7_RC_CTL_TO_MODE |
1503 GEN6_RC_CTL_EI_MODE(1))));
1504 seq_printf(m, "Render Power Well: %s\n",
Ville Syrjälä6b312cd2014-11-19 20:07:42 +02001505 (pw_status & VLV_GTLC_PW_RENDER_STATUS_MASK) ? "Up" : "Down");
Deepak S669ab5a2014-01-10 15:18:26 +05301506 seq_printf(m, "Media Power Well: %s\n",
Ville Syrjälä6b312cd2014-11-19 20:07:42 +02001507 (pw_status & VLV_GTLC_PW_MEDIA_STATUS_MASK) ? "Up" : "Down");
Deepak S669ab5a2014-01-10 15:18:26 +05301508
Imre Deak9cc19be2014-04-14 20:24:24 +03001509 seq_printf(m, "Render RC6 residency since boot: %u\n",
1510 I915_READ(VLV_GT_RENDER_RC6));
1511 seq_printf(m, "Media RC6 residency since boot: %u\n",
1512 I915_READ(VLV_GT_MEDIA_RC6));
1513
Mika Kuoppalaf65367b2015-01-16 11:34:42 +02001514 return i915_forcewake_domains(m, NULL);
Deepak S669ab5a2014-01-10 15:18:26 +05301515}
1516
Ben Widawsky4d855292011-12-12 19:34:16 -08001517static int gen6_drpc_info(struct seq_file *m)
1518{
David Weinehall36cdd012016-08-22 13:59:31 +03001519 struct drm_i915_private *dev_priv = node_to_i915(m->private);
1520 struct drm_device *dev = &dev_priv->drm;
Ben Widawskyecd8fae2012-09-26 10:34:02 -07001521 u32 rpmodectl1, gt_core_status, rcctl1, rc6vids = 0;
Akash Goelf2dd7572016-06-27 20:10:01 +05301522 u32 gen9_powergate_enable = 0, gen9_powergate_status = 0;
Daniel Vetter93b525d2012-01-25 13:52:43 +01001523 unsigned forcewake_count;
Damien Lespiauaee56cf2013-06-24 22:59:49 +01001524 int count = 0, ret;
Ben Widawsky4d855292011-12-12 19:34:16 -08001525
1526 ret = mutex_lock_interruptible(&dev->struct_mutex);
1527 if (ret)
1528 return ret;
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02001529 intel_runtime_pm_get(dev_priv);
Ben Widawsky4d855292011-12-12 19:34:16 -08001530
Chris Wilson907b28c2013-07-19 20:36:52 +01001531 spin_lock_irq(&dev_priv->uncore.lock);
Chris Wilsonb2cff0d2015-01-16 11:34:37 +02001532 forcewake_count = dev_priv->uncore.fw_domain[FW_DOMAIN_ID_RENDER].wake_count;
Chris Wilson907b28c2013-07-19 20:36:52 +01001533 spin_unlock_irq(&dev_priv->uncore.lock);
Daniel Vetter93b525d2012-01-25 13:52:43 +01001534
1535 if (forcewake_count) {
Damien Lespiau267f0c92013-06-24 22:59:48 +01001536 seq_puts(m, "RC information inaccurate because somebody "
1537 "holds a forcewake reference \n");
Ben Widawsky4d855292011-12-12 19:34:16 -08001538 } else {
1539 /* NB: we cannot use forcewake, else we read the wrong values */
1540 while (count++ < 50 && (I915_READ_NOTRACE(FORCEWAKE_ACK) & 1))
1541 udelay(10);
1542 seq_printf(m, "RC information accurate: %s\n", yesno(count < 51));
1543 }
1544
Ville Syrjälä75aa3f62015-10-22 15:34:56 +03001545 gt_core_status = I915_READ_FW(GEN6_GT_CORE_STATUS);
Chris Wilsoned71f1b2013-07-19 20:36:56 +01001546 trace_i915_reg_rw(false, GEN6_GT_CORE_STATUS, gt_core_status, 4, true);
Ben Widawsky4d855292011-12-12 19:34:16 -08001547
1548 rpmodectl1 = I915_READ(GEN6_RP_CONTROL);
1549 rcctl1 = I915_READ(GEN6_RC_CONTROL);
David Weinehall36cdd012016-08-22 13:59:31 +03001550 if (INTEL_GEN(dev_priv) >= 9) {
Akash Goelf2dd7572016-06-27 20:10:01 +05301551 gen9_powergate_enable = I915_READ(GEN9_PG_ENABLE);
1552 gen9_powergate_status = I915_READ(GEN9_PWRGT_DOMAIN_STATUS);
1553 }
Ben Widawsky4d855292011-12-12 19:34:16 -08001554 mutex_unlock(&dev->struct_mutex);
Ben Widawsky44cbd332012-11-06 14:36:36 +00001555 mutex_lock(&dev_priv->rps.hw_lock);
1556 sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
1557 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky4d855292011-12-12 19:34:16 -08001558
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02001559 intel_runtime_pm_put(dev_priv);
1560
Ben Widawsky4d855292011-12-12 19:34:16 -08001561 seq_printf(m, "Video Turbo Mode: %s\n",
1562 yesno(rpmodectl1 & GEN6_RP_MEDIA_TURBO));
1563 seq_printf(m, "HW control enabled: %s\n",
1564 yesno(rpmodectl1 & GEN6_RP_ENABLE));
1565 seq_printf(m, "SW control enabled: %s\n",
1566 yesno((rpmodectl1 & GEN6_RP_MEDIA_MODE_MASK) ==
1567 GEN6_RP_MEDIA_SW_MODE));
Eric Anholtfff24e22012-01-23 16:14:05 -08001568 seq_printf(m, "RC1e Enabled: %s\n",
Ben Widawsky4d855292011-12-12 19:34:16 -08001569 yesno(rcctl1 & GEN6_RC_CTL_RC1e_ENABLE));
1570 seq_printf(m, "RC6 Enabled: %s\n",
1571 yesno(rcctl1 & GEN6_RC_CTL_RC6_ENABLE));
David Weinehall36cdd012016-08-22 13:59:31 +03001572 if (INTEL_GEN(dev_priv) >= 9) {
Akash Goelf2dd7572016-06-27 20:10:01 +05301573 seq_printf(m, "Render Well Gating Enabled: %s\n",
1574 yesno(gen9_powergate_enable & GEN9_RENDER_PG_ENABLE));
1575 seq_printf(m, "Media Well Gating Enabled: %s\n",
1576 yesno(gen9_powergate_enable & GEN9_MEDIA_PG_ENABLE));
1577 }
Ben Widawsky4d855292011-12-12 19:34:16 -08001578 seq_printf(m, "Deep RC6 Enabled: %s\n",
1579 yesno(rcctl1 & GEN6_RC_CTL_RC6p_ENABLE));
1580 seq_printf(m, "Deepest RC6 Enabled: %s\n",
1581 yesno(rcctl1 & GEN6_RC_CTL_RC6pp_ENABLE));
Damien Lespiau267f0c92013-06-24 22:59:48 +01001582 seq_puts(m, "Current RC state: ");
Ben Widawsky4d855292011-12-12 19:34:16 -08001583 switch (gt_core_status & GEN6_RCn_MASK) {
1584 case GEN6_RC0:
1585 if (gt_core_status & GEN6_CORE_CPD_STATE_MASK)
Damien Lespiau267f0c92013-06-24 22:59:48 +01001586 seq_puts(m, "Core Power Down\n");
Ben Widawsky4d855292011-12-12 19:34:16 -08001587 else
Damien Lespiau267f0c92013-06-24 22:59:48 +01001588 seq_puts(m, "on\n");
Ben Widawsky4d855292011-12-12 19:34:16 -08001589 break;
1590 case GEN6_RC3:
Damien Lespiau267f0c92013-06-24 22:59:48 +01001591 seq_puts(m, "RC3\n");
Ben Widawsky4d855292011-12-12 19:34:16 -08001592 break;
1593 case GEN6_RC6:
Damien Lespiau267f0c92013-06-24 22:59:48 +01001594 seq_puts(m, "RC6\n");
Ben Widawsky4d855292011-12-12 19:34:16 -08001595 break;
1596 case GEN6_RC7:
Damien Lespiau267f0c92013-06-24 22:59:48 +01001597 seq_puts(m, "RC7\n");
Ben Widawsky4d855292011-12-12 19:34:16 -08001598 break;
1599 default:
Damien Lespiau267f0c92013-06-24 22:59:48 +01001600 seq_puts(m, "Unknown\n");
Ben Widawsky4d855292011-12-12 19:34:16 -08001601 break;
1602 }
1603
1604 seq_printf(m, "Core Power Down: %s\n",
1605 yesno(gt_core_status & GEN6_CORE_CPD_STATE_MASK));
David Weinehall36cdd012016-08-22 13:59:31 +03001606 if (INTEL_GEN(dev_priv) >= 9) {
Akash Goelf2dd7572016-06-27 20:10:01 +05301607 seq_printf(m, "Render Power Well: %s\n",
1608 (gen9_powergate_status &
1609 GEN9_PWRGT_RENDER_STATUS_MASK) ? "Up" : "Down");
1610 seq_printf(m, "Media Power Well: %s\n",
1611 (gen9_powergate_status &
1612 GEN9_PWRGT_MEDIA_STATUS_MASK) ? "Up" : "Down");
1613 }
Ben Widawskycce66a22012-03-27 18:59:38 -07001614
1615 /* Not exactly sure what this is */
1616 seq_printf(m, "RC6 \"Locked to RPn\" residency since boot: %u\n",
1617 I915_READ(GEN6_GT_GFX_RC6_LOCKED));
1618 seq_printf(m, "RC6 residency since boot: %u\n",
1619 I915_READ(GEN6_GT_GFX_RC6));
1620 seq_printf(m, "RC6+ residency since boot: %u\n",
1621 I915_READ(GEN6_GT_GFX_RC6p));
1622 seq_printf(m, "RC6++ residency since boot: %u\n",
1623 I915_READ(GEN6_GT_GFX_RC6pp));
1624
Ben Widawskyecd8fae2012-09-26 10:34:02 -07001625 seq_printf(m, "RC6 voltage: %dmV\n",
1626 GEN6_DECODE_RC6_VID(((rc6vids >> 0) & 0xff)));
1627 seq_printf(m, "RC6+ voltage: %dmV\n",
1628 GEN6_DECODE_RC6_VID(((rc6vids >> 8) & 0xff)));
1629 seq_printf(m, "RC6++ voltage: %dmV\n",
1630 GEN6_DECODE_RC6_VID(((rc6vids >> 16) & 0xff)));
Akash Goelf2dd7572016-06-27 20:10:01 +05301631 return i915_forcewake_domains(m, NULL);
Ben Widawsky4d855292011-12-12 19:34:16 -08001632}
1633
1634static int i915_drpc_info(struct seq_file *m, void *unused)
1635{
David Weinehall36cdd012016-08-22 13:59:31 +03001636 struct drm_i915_private *dev_priv = node_to_i915(m->private);
Ben Widawsky4d855292011-12-12 19:34:16 -08001637
David Weinehall36cdd012016-08-22 13:59:31 +03001638 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Deepak S669ab5a2014-01-10 15:18:26 +05301639 return vlv_drpc_info(m);
David Weinehall36cdd012016-08-22 13:59:31 +03001640 else if (INTEL_GEN(dev_priv) >= 6)
Ben Widawsky4d855292011-12-12 19:34:16 -08001641 return gen6_drpc_info(m);
1642 else
1643 return ironlake_drpc_info(m);
1644}
1645
Daniel Vetter9a851782015-06-18 10:30:22 +02001646static int i915_frontbuffer_tracking(struct seq_file *m, void *unused)
1647{
David Weinehall36cdd012016-08-22 13:59:31 +03001648 struct drm_i915_private *dev_priv = node_to_i915(m->private);
Daniel Vetter9a851782015-06-18 10:30:22 +02001649
1650 seq_printf(m, "FB tracking busy bits: 0x%08x\n",
1651 dev_priv->fb_tracking.busy_bits);
1652
1653 seq_printf(m, "FB tracking flip bits: 0x%08x\n",
1654 dev_priv->fb_tracking.flip_bits);
1655
1656 return 0;
1657}
1658
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001659static int i915_fbc_status(struct seq_file *m, void *unused)
1660{
David Weinehall36cdd012016-08-22 13:59:31 +03001661 struct drm_i915_private *dev_priv = node_to_i915(m->private);
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001662
David Weinehall36cdd012016-08-22 13:59:31 +03001663 if (!HAS_FBC(dev_priv)) {
Damien Lespiau267f0c92013-06-24 22:59:48 +01001664 seq_puts(m, "FBC unsupported on this chipset\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001665 return 0;
1666 }
1667
Paulo Zanoni36623ef2014-02-21 13:52:23 -03001668 intel_runtime_pm_get(dev_priv);
Paulo Zanoni25ad93f2015-07-02 19:25:10 -03001669 mutex_lock(&dev_priv->fbc.lock);
Paulo Zanoni36623ef2014-02-21 13:52:23 -03001670
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03001671 if (intel_fbc_is_active(dev_priv))
Damien Lespiau267f0c92013-06-24 22:59:48 +01001672 seq_puts(m, "FBC enabled\n");
Paulo Zanoni2e8144a2015-06-12 14:36:20 -03001673 else
1674 seq_printf(m, "FBC disabled: %s\n",
Paulo Zanonibf6189c2015-10-27 14:50:03 -02001675 dev_priv->fbc.no_fbc_reason);
Paulo Zanoni36623ef2014-02-21 13:52:23 -03001676
Nagaraju, Vathsalabc4ec7c2016-09-22 14:19:53 +05301677 if (intel_fbc_is_active(dev_priv) &&
1678 INTEL_GEN(dev_priv) >= 7)
Paulo Zanoni31b9df12015-06-12 14:36:18 -03001679 seq_printf(m, "Compressing: %s\n",
1680 yesno(I915_READ(FBC_STATUS2) &
1681 FBC_COMPRESSION_MASK));
1682
Paulo Zanoni25ad93f2015-07-02 19:25:10 -03001683 mutex_unlock(&dev_priv->fbc.lock);
Paulo Zanoni36623ef2014-02-21 13:52:23 -03001684 intel_runtime_pm_put(dev_priv);
1685
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001686 return 0;
1687}
1688
Rodrigo Vivida46f932014-08-01 02:04:45 -07001689static int i915_fbc_fc_get(void *data, u64 *val)
1690{
David Weinehall36cdd012016-08-22 13:59:31 +03001691 struct drm_i915_private *dev_priv = data;
Rodrigo Vivida46f932014-08-01 02:04:45 -07001692
David Weinehall36cdd012016-08-22 13:59:31 +03001693 if (INTEL_GEN(dev_priv) < 7 || !HAS_FBC(dev_priv))
Rodrigo Vivida46f932014-08-01 02:04:45 -07001694 return -ENODEV;
1695
Rodrigo Vivida46f932014-08-01 02:04:45 -07001696 *val = dev_priv->fbc.false_color;
Rodrigo Vivida46f932014-08-01 02:04:45 -07001697
1698 return 0;
1699}
1700
1701static int i915_fbc_fc_set(void *data, u64 val)
1702{
David Weinehall36cdd012016-08-22 13:59:31 +03001703 struct drm_i915_private *dev_priv = data;
Rodrigo Vivida46f932014-08-01 02:04:45 -07001704 u32 reg;
1705
David Weinehall36cdd012016-08-22 13:59:31 +03001706 if (INTEL_GEN(dev_priv) < 7 || !HAS_FBC(dev_priv))
Rodrigo Vivida46f932014-08-01 02:04:45 -07001707 return -ENODEV;
1708
Paulo Zanoni25ad93f2015-07-02 19:25:10 -03001709 mutex_lock(&dev_priv->fbc.lock);
Rodrigo Vivida46f932014-08-01 02:04:45 -07001710
1711 reg = I915_READ(ILK_DPFC_CONTROL);
1712 dev_priv->fbc.false_color = val;
1713
1714 I915_WRITE(ILK_DPFC_CONTROL, val ?
1715 (reg | FBC_CTL_FALSE_COLOR) :
1716 (reg & ~FBC_CTL_FALSE_COLOR));
1717
Paulo Zanoni25ad93f2015-07-02 19:25:10 -03001718 mutex_unlock(&dev_priv->fbc.lock);
Rodrigo Vivida46f932014-08-01 02:04:45 -07001719 return 0;
1720}
1721
1722DEFINE_SIMPLE_ATTRIBUTE(i915_fbc_fc_fops,
1723 i915_fbc_fc_get, i915_fbc_fc_set,
1724 "%llu\n");
1725
Paulo Zanoni92d44622013-05-31 16:33:24 -03001726static int i915_ips_status(struct seq_file *m, void *unused)
1727{
David Weinehall36cdd012016-08-22 13:59:31 +03001728 struct drm_i915_private *dev_priv = node_to_i915(m->private);
Paulo Zanoni92d44622013-05-31 16:33:24 -03001729
David Weinehall36cdd012016-08-22 13:59:31 +03001730 if (!HAS_IPS(dev_priv)) {
Paulo Zanoni92d44622013-05-31 16:33:24 -03001731 seq_puts(m, "not supported\n");
1732 return 0;
1733 }
1734
Paulo Zanoni36623ef2014-02-21 13:52:23 -03001735 intel_runtime_pm_get(dev_priv);
1736
Rodrigo Vivi0eaa53f2014-06-30 04:45:01 -07001737 seq_printf(m, "Enabled by kernel parameter: %s\n",
1738 yesno(i915.enable_ips));
1739
David Weinehall36cdd012016-08-22 13:59:31 +03001740 if (INTEL_GEN(dev_priv) >= 8) {
Rodrigo Vivi0eaa53f2014-06-30 04:45:01 -07001741 seq_puts(m, "Currently: unknown\n");
1742 } else {
1743 if (I915_READ(IPS_CTL) & IPS_ENABLE)
1744 seq_puts(m, "Currently: enabled\n");
1745 else
1746 seq_puts(m, "Currently: disabled\n");
1747 }
Paulo Zanoni92d44622013-05-31 16:33:24 -03001748
Paulo Zanoni36623ef2014-02-21 13:52:23 -03001749 intel_runtime_pm_put(dev_priv);
1750
Paulo Zanoni92d44622013-05-31 16:33:24 -03001751 return 0;
1752}
1753
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001754static int i915_sr_status(struct seq_file *m, void *unused)
1755{
David Weinehall36cdd012016-08-22 13:59:31 +03001756 struct drm_i915_private *dev_priv = node_to_i915(m->private);
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001757 bool sr_enabled = false;
1758
Paulo Zanoni36623ef2014-02-21 13:52:23 -03001759 intel_runtime_pm_get(dev_priv);
1760
David Weinehall36cdd012016-08-22 13:59:31 +03001761 if (HAS_PCH_SPLIT(dev_priv))
Chris Wilson5ba2aaa2010-08-19 18:04:08 +01001762 sr_enabled = I915_READ(WM1_LP_ILK) & WM1_LP_SR_EN;
David Weinehall36cdd012016-08-22 13:59:31 +03001763 else if (IS_CRESTLINE(dev_priv) || IS_G4X(dev_priv) ||
1764 IS_I945G(dev_priv) || IS_I945GM(dev_priv))
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001765 sr_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
David Weinehall36cdd012016-08-22 13:59:31 +03001766 else if (IS_I915GM(dev_priv))
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001767 sr_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN;
David Weinehall36cdd012016-08-22 13:59:31 +03001768 else if (IS_PINEVIEW(dev_priv))
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001769 sr_enabled = I915_READ(DSPFW3) & PINEVIEW_SELF_REFRESH_EN;
David Weinehall36cdd012016-08-22 13:59:31 +03001770 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Ander Conselvan de Oliveira77b64552015-06-02 14:17:47 +03001771 sr_enabled = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001772
Paulo Zanoni36623ef2014-02-21 13:52:23 -03001773 intel_runtime_pm_put(dev_priv);
1774
Chris Wilson5ba2aaa2010-08-19 18:04:08 +01001775 seq_printf(m, "self-refresh: %s\n",
1776 sr_enabled ? "enabled" : "disabled");
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001777
1778 return 0;
1779}
1780
Jesse Barnes7648fa92010-05-20 14:28:11 -07001781static int i915_emon_status(struct seq_file *m, void *unused)
1782{
David Weinehall36cdd012016-08-22 13:59:31 +03001783 struct drm_i915_private *dev_priv = node_to_i915(m->private);
1784 struct drm_device *dev = &dev_priv->drm;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001785 unsigned long temp, chipset, gfx;
Chris Wilsonde227ef2010-07-03 07:58:38 +01001786 int ret;
1787
David Weinehall36cdd012016-08-22 13:59:31 +03001788 if (!IS_GEN5(dev_priv))
Chris Wilson582be6b2012-04-30 19:35:02 +01001789 return -ENODEV;
1790
Chris Wilsonde227ef2010-07-03 07:58:38 +01001791 ret = mutex_lock_interruptible(&dev->struct_mutex);
1792 if (ret)
1793 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001794
1795 temp = i915_mch_val(dev_priv);
1796 chipset = i915_chipset_val(dev_priv);
1797 gfx = i915_gfx_val(dev_priv);
Chris Wilsonde227ef2010-07-03 07:58:38 +01001798 mutex_unlock(&dev->struct_mutex);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001799
1800 seq_printf(m, "GMCH temp: %ld\n", temp);
1801 seq_printf(m, "Chipset power: %ld\n", chipset);
1802 seq_printf(m, "GFX power: %ld\n", gfx);
1803 seq_printf(m, "Total power: %ld\n", chipset + gfx);
1804
1805 return 0;
1806}
1807
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001808static int i915_ring_freq_table(struct seq_file *m, void *unused)
1809{
David Weinehall36cdd012016-08-22 13:59:31 +03001810 struct drm_i915_private *dev_priv = node_to_i915(m->private);
Paulo Zanoni5bfa0192013-12-19 11:54:52 -02001811 int ret = 0;
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001812 int gpu_freq, ia_freq;
Akash Goelf936ec32015-06-29 14:50:22 +05301813 unsigned int max_gpu_freq, min_gpu_freq;
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001814
Carlos Santa26310342016-08-17 12:30:41 -07001815 if (!HAS_LLC(dev_priv)) {
Damien Lespiau267f0c92013-06-24 22:59:48 +01001816 seq_puts(m, "unsupported on this chipset\n");
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001817 return 0;
1818 }
1819
Paulo Zanoni5bfa0192013-12-19 11:54:52 -02001820 intel_runtime_pm_get(dev_priv);
1821
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001822 ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001823 if (ret)
Paulo Zanoni5bfa0192013-12-19 11:54:52 -02001824 goto out;
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001825
David Weinehall36cdd012016-08-22 13:59:31 +03001826 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) {
Akash Goelf936ec32015-06-29 14:50:22 +05301827 /* Convert GT frequency to 50 HZ units */
1828 min_gpu_freq =
1829 dev_priv->rps.min_freq_softlimit / GEN9_FREQ_SCALER;
1830 max_gpu_freq =
1831 dev_priv->rps.max_freq_softlimit / GEN9_FREQ_SCALER;
1832 } else {
1833 min_gpu_freq = dev_priv->rps.min_freq_softlimit;
1834 max_gpu_freq = dev_priv->rps.max_freq_softlimit;
1835 }
1836
Damien Lespiau267f0c92013-06-24 22:59:48 +01001837 seq_puts(m, "GPU freq (MHz)\tEffective CPU freq (MHz)\tEffective Ring freq (MHz)\n");
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001838
Akash Goelf936ec32015-06-29 14:50:22 +05301839 for (gpu_freq = min_gpu_freq; gpu_freq <= max_gpu_freq; gpu_freq++) {
Ben Widawsky42c05262012-09-26 10:34:00 -07001840 ia_freq = gpu_freq;
1841 sandybridge_pcode_read(dev_priv,
1842 GEN6_PCODE_READ_MIN_FREQ_TABLE,
1843 &ia_freq);
Chris Wilson3ebecd02013-04-12 19:10:13 +01001844 seq_printf(m, "%d\t\t%d\t\t\t\t%d\n",
Akash Goelf936ec32015-06-29 14:50:22 +05301845 intel_gpu_freq(dev_priv, (gpu_freq *
David Weinehall36cdd012016-08-22 13:59:31 +03001846 (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv) ?
Rodrigo Vivief11bdb2015-10-28 04:16:45 -07001847 GEN9_FREQ_SCALER : 1))),
Chris Wilson3ebecd02013-04-12 19:10:13 +01001848 ((ia_freq >> 0) & 0xff) * 100,
1849 ((ia_freq >> 8) & 0xff) * 100);
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001850 }
1851
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001852 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001853
Paulo Zanoni5bfa0192013-12-19 11:54:52 -02001854out:
1855 intel_runtime_pm_put(dev_priv);
1856 return ret;
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001857}
1858
Chris Wilson44834a62010-08-19 16:09:23 +01001859static int i915_opregion(struct seq_file *m, void *unused)
1860{
David Weinehall36cdd012016-08-22 13:59:31 +03001861 struct drm_i915_private *dev_priv = node_to_i915(m->private);
1862 struct drm_device *dev = &dev_priv->drm;
Chris Wilson44834a62010-08-19 16:09:23 +01001863 struct intel_opregion *opregion = &dev_priv->opregion;
1864 int ret;
1865
1866 ret = mutex_lock_interruptible(&dev->struct_mutex);
1867 if (ret)
Daniel Vetter0d38f002012-04-21 22:49:10 +02001868 goto out;
Chris Wilson44834a62010-08-19 16:09:23 +01001869
Jani Nikula2455a8e2015-12-14 12:50:53 +02001870 if (opregion->header)
1871 seq_write(m, opregion->header, OPREGION_SIZE);
Chris Wilson44834a62010-08-19 16:09:23 +01001872
1873 mutex_unlock(&dev->struct_mutex);
1874
Daniel Vetter0d38f002012-04-21 22:49:10 +02001875out:
Chris Wilson44834a62010-08-19 16:09:23 +01001876 return 0;
1877}
1878
Jani Nikulaada8f952015-12-15 13:17:12 +02001879static int i915_vbt(struct seq_file *m, void *unused)
1880{
David Weinehall36cdd012016-08-22 13:59:31 +03001881 struct intel_opregion *opregion = &node_to_i915(m->private)->opregion;
Jani Nikulaada8f952015-12-15 13:17:12 +02001882
1883 if (opregion->vbt)
1884 seq_write(m, opregion->vbt, opregion->vbt_size);
1885
1886 return 0;
1887}
1888
Chris Wilson37811fc2010-08-25 22:45:57 +01001889static int i915_gem_framebuffer_info(struct seq_file *m, void *data)
1890{
David Weinehall36cdd012016-08-22 13:59:31 +03001891 struct drm_i915_private *dev_priv = node_to_i915(m->private);
1892 struct drm_device *dev = &dev_priv->drm;
Namrta Salonieb13b8402015-11-27 13:43:11 +05301893 struct intel_framebuffer *fbdev_fb = NULL;
Daniel Vetter3a58ee12015-07-10 19:02:51 +02001894 struct drm_framebuffer *drm_fb;
Chris Wilson188c1ab2016-04-03 14:14:20 +01001895 int ret;
1896
1897 ret = mutex_lock_interruptible(&dev->struct_mutex);
1898 if (ret)
1899 return ret;
Chris Wilson37811fc2010-08-25 22:45:57 +01001900
Daniel Vetter06957262015-08-10 13:34:08 +02001901#ifdef CONFIG_DRM_FBDEV_EMULATION
David Weinehall36cdd012016-08-22 13:59:31 +03001902 if (dev_priv->fbdev) {
1903 fbdev_fb = to_intel_framebuffer(dev_priv->fbdev->helper.fb);
Chris Wilson37811fc2010-08-25 22:45:57 +01001904
Chris Wilson25bcce92016-07-02 15:36:00 +01001905 seq_printf(m, "fbcon size: %d x %d, depth %d, %d bpp, modifier 0x%llx, refcount %d, obj ",
1906 fbdev_fb->base.width,
1907 fbdev_fb->base.height,
1908 fbdev_fb->base.depth,
1909 fbdev_fb->base.bits_per_pixel,
1910 fbdev_fb->base.modifier[0],
1911 drm_framebuffer_read_refcount(&fbdev_fb->base));
1912 describe_obj(m, fbdev_fb->obj);
1913 seq_putc(m, '\n');
1914 }
Daniel Vetter4520f532013-10-09 09:18:51 +02001915#endif
Chris Wilson37811fc2010-08-25 22:45:57 +01001916
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001917 mutex_lock(&dev->mode_config.fb_lock);
Daniel Vetter3a58ee12015-07-10 19:02:51 +02001918 drm_for_each_fb(drm_fb, dev) {
Namrta Salonieb13b8402015-11-27 13:43:11 +05301919 struct intel_framebuffer *fb = to_intel_framebuffer(drm_fb);
1920 if (fb == fbdev_fb)
Chris Wilson37811fc2010-08-25 22:45:57 +01001921 continue;
1922
Tvrtko Ursulinc1ca506d2015-02-10 17:16:07 +00001923 seq_printf(m, "user size: %d x %d, depth %d, %d bpp, modifier 0x%llx, refcount %d, obj ",
Chris Wilson37811fc2010-08-25 22:45:57 +01001924 fb->base.width,
1925 fb->base.height,
1926 fb->base.depth,
Daniel Vetter623f9782012-12-11 16:21:38 +01001927 fb->base.bits_per_pixel,
Tvrtko Ursulinc1ca506d2015-02-10 17:16:07 +00001928 fb->base.modifier[0],
Dave Airlie747a5982016-04-15 15:10:35 +10001929 drm_framebuffer_read_refcount(&fb->base));
Chris Wilson05394f32010-11-08 19:18:58 +00001930 describe_obj(m, fb->obj);
Damien Lespiau267f0c92013-06-24 22:59:48 +01001931 seq_putc(m, '\n');
Chris Wilson37811fc2010-08-25 22:45:57 +01001932 }
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001933 mutex_unlock(&dev->mode_config.fb_lock);
Chris Wilson188c1ab2016-04-03 14:14:20 +01001934 mutex_unlock(&dev->struct_mutex);
Chris Wilson37811fc2010-08-25 22:45:57 +01001935
1936 return 0;
1937}
1938
Chris Wilson7e37f882016-08-02 22:50:21 +01001939static void describe_ctx_ring(struct seq_file *m, struct intel_ring *ring)
Oscar Mateoc9fe99b2014-07-24 17:04:46 +01001940{
1941 seq_printf(m, " (ringbuffer, space: %d, head: %u, tail: %u, last head: %d)",
Chris Wilson7e37f882016-08-02 22:50:21 +01001942 ring->space, ring->head, ring->tail,
1943 ring->last_retired_head);
Oscar Mateoc9fe99b2014-07-24 17:04:46 +01001944}
1945
Ben Widawskye76d3632011-03-19 18:14:29 -07001946static int i915_context_status(struct seq_file *m, void *unused)
1947{
David Weinehall36cdd012016-08-22 13:59:31 +03001948 struct drm_i915_private *dev_priv = node_to_i915(m->private);
1949 struct drm_device *dev = &dev_priv->drm;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00001950 struct intel_engine_cs *engine;
Chris Wilsone2efd132016-05-24 14:53:34 +01001951 struct i915_gem_context *ctx;
Dave Gordonc3232b12016-03-23 18:19:53 +00001952 int ret;
Ben Widawskye76d3632011-03-19 18:14:29 -07001953
Daniel Vetterf3d28872014-05-29 23:23:08 +02001954 ret = mutex_lock_interruptible(&dev->struct_mutex);
Ben Widawskye76d3632011-03-19 18:14:29 -07001955 if (ret)
1956 return ret;
1957
Ben Widawskya33afea2013-09-17 21:12:45 -07001958 list_for_each_entry(ctx, &dev_priv->context_list, link) {
Chris Wilson5d1808e2016-04-28 09:56:51 +01001959 seq_printf(m, "HW context %u ", ctx->hw_id);
Chris Wilsonc84455b2016-08-15 10:49:08 +01001960 if (ctx->pid) {
Chris Wilsond28b99a2016-05-24 14:53:39 +01001961 struct task_struct *task;
1962
Chris Wilsonc84455b2016-08-15 10:49:08 +01001963 task = get_pid_task(ctx->pid, PIDTYPE_PID);
Chris Wilsond28b99a2016-05-24 14:53:39 +01001964 if (task) {
1965 seq_printf(m, "(%s [%d]) ",
1966 task->comm, task->pid);
1967 put_task_struct(task);
1968 }
Chris Wilsonc84455b2016-08-15 10:49:08 +01001969 } else if (IS_ERR(ctx->file_priv)) {
1970 seq_puts(m, "(deleted) ");
Chris Wilsond28b99a2016-05-24 14:53:39 +01001971 } else {
1972 seq_puts(m, "(kernel) ");
1973 }
1974
Chris Wilsonbca44d82016-05-24 14:53:41 +01001975 seq_putc(m, ctx->remap_slice ? 'R' : 'r');
1976 seq_putc(m, '\n');
Ben Widawskya33afea2013-09-17 21:12:45 -07001977
Chris Wilsonbca44d82016-05-24 14:53:41 +01001978 for_each_engine(engine, dev_priv) {
1979 struct intel_context *ce = &ctx->engine[engine->id];
1980
1981 seq_printf(m, "%s: ", engine->name);
1982 seq_putc(m, ce->initialised ? 'I' : 'i');
1983 if (ce->state)
Chris Wilsonbf3783e2016-08-15 10:48:54 +01001984 describe_obj(m, ce->state->obj);
Chris Wilsondca33ec2016-08-02 22:50:20 +01001985 if (ce->ring)
Chris Wilson7e37f882016-08-02 22:50:21 +01001986 describe_ctx_ring(m, ce->ring);
Oscar Mateoc9fe99b2014-07-24 17:04:46 +01001987 seq_putc(m, '\n');
Oscar Mateoc9fe99b2014-07-24 17:04:46 +01001988 }
1989
Ben Widawskya33afea2013-09-17 21:12:45 -07001990 seq_putc(m, '\n');
Ben Widawskya168c292013-02-14 15:05:12 -08001991 }
1992
Daniel Vetterf3d28872014-05-29 23:23:08 +02001993 mutex_unlock(&dev->struct_mutex);
Ben Widawskye76d3632011-03-19 18:14:29 -07001994
1995 return 0;
1996}
1997
Thomas Daniel064ca1d2014-12-02 13:21:18 +00001998static void i915_dump_lrc_obj(struct seq_file *m,
Chris Wilsone2efd132016-05-24 14:53:34 +01001999 struct i915_gem_context *ctx,
Tvrtko Ursulin0bc40be2016-03-16 11:00:37 +00002000 struct intel_engine_cs *engine)
Thomas Daniel064ca1d2014-12-02 13:21:18 +00002001{
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002002 struct i915_vma *vma = ctx->engine[engine->id].state;
Thomas Daniel064ca1d2014-12-02 13:21:18 +00002003 struct page *page;
Thomas Daniel064ca1d2014-12-02 13:21:18 +00002004 int j;
Thomas Daniel064ca1d2014-12-02 13:21:18 +00002005
Chris Wilson7069b142016-04-28 09:56:52 +01002006 seq_printf(m, "CONTEXT: %s %u\n", engine->name, ctx->hw_id);
2007
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002008 if (!vma) {
2009 seq_puts(m, "\tFake context\n");
Thomas Daniel064ca1d2014-12-02 13:21:18 +00002010 return;
2011 }
2012
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002013 if (vma->flags & I915_VMA_GLOBAL_BIND)
2014 seq_printf(m, "\tBound in GGTT at 0x%08x\n",
Chris Wilsonbde13eb2016-08-15 10:49:07 +01002015 i915_ggtt_offset(vma));
Thomas Daniel064ca1d2014-12-02 13:21:18 +00002016
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002017 if (i915_gem_object_get_pages(vma->obj)) {
2018 seq_puts(m, "\tFailed to get pages for context object\n\n");
Thomas Daniel064ca1d2014-12-02 13:21:18 +00002019 return;
2020 }
2021
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002022 page = i915_gem_object_get_page(vma->obj, LRC_STATE_PN);
2023 if (page) {
2024 u32 *reg_state = kmap_atomic(page);
Thomas Daniel064ca1d2014-12-02 13:21:18 +00002025
2026 for (j = 0; j < 0x600 / sizeof(u32) / 4; j += 4) {
Chris Wilsonbf3783e2016-08-15 10:48:54 +01002027 seq_printf(m,
2028 "\t[0x%04x] 0x%08x 0x%08x 0x%08x 0x%08x\n",
2029 j * 4,
Thomas Daniel064ca1d2014-12-02 13:21:18 +00002030 reg_state[j], reg_state[j + 1],
2031 reg_state[j + 2], reg_state[j + 3]);
2032 }
2033 kunmap_atomic(reg_state);
2034 }
2035
2036 seq_putc(m, '\n');
2037}
2038
Ben Widawskyc0ab1ae2014-08-07 13:24:26 +01002039static int i915_dump_lrc(struct seq_file *m, void *unused)
2040{
David Weinehall36cdd012016-08-22 13:59:31 +03002041 struct drm_i915_private *dev_priv = node_to_i915(m->private);
2042 struct drm_device *dev = &dev_priv->drm;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002043 struct intel_engine_cs *engine;
Chris Wilsone2efd132016-05-24 14:53:34 +01002044 struct i915_gem_context *ctx;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00002045 int ret;
Ben Widawskyc0ab1ae2014-08-07 13:24:26 +01002046
2047 if (!i915.enable_execlists) {
2048 seq_printf(m, "Logical Ring Contexts are disabled\n");
2049 return 0;
2050 }
2051
2052 ret = mutex_lock_interruptible(&dev->struct_mutex);
2053 if (ret)
2054 return ret;
2055
Dave Gordone28e4042016-01-19 19:02:55 +00002056 list_for_each_entry(ctx, &dev_priv->context_list, link)
Chris Wilson24f1d3c2016-04-28 09:56:53 +01002057 for_each_engine(engine, dev_priv)
2058 i915_dump_lrc_obj(m, ctx, engine);
Ben Widawskyc0ab1ae2014-08-07 13:24:26 +01002059
2060 mutex_unlock(&dev->struct_mutex);
2061
2062 return 0;
2063}
2064
Daniel Vetterea16a3c2011-12-14 13:57:16 +01002065static const char *swizzle_string(unsigned swizzle)
2066{
Damien Lespiauaee56cf2013-06-24 22:59:49 +01002067 switch (swizzle) {
Daniel Vetterea16a3c2011-12-14 13:57:16 +01002068 case I915_BIT_6_SWIZZLE_NONE:
2069 return "none";
2070 case I915_BIT_6_SWIZZLE_9:
2071 return "bit9";
2072 case I915_BIT_6_SWIZZLE_9_10:
2073 return "bit9/bit10";
2074 case I915_BIT_6_SWIZZLE_9_11:
2075 return "bit9/bit11";
2076 case I915_BIT_6_SWIZZLE_9_10_11:
2077 return "bit9/bit10/bit11";
2078 case I915_BIT_6_SWIZZLE_9_17:
2079 return "bit9/bit17";
2080 case I915_BIT_6_SWIZZLE_9_10_17:
2081 return "bit9/bit10/bit17";
2082 case I915_BIT_6_SWIZZLE_UNKNOWN:
Masanari Iida8a168ca2012-12-29 02:00:09 +09002083 return "unknown";
Daniel Vetterea16a3c2011-12-14 13:57:16 +01002084 }
2085
2086 return "bug";
2087}
2088
2089static int i915_swizzle_info(struct seq_file *m, void *data)
2090{
David Weinehall36cdd012016-08-22 13:59:31 +03002091 struct drm_i915_private *dev_priv = node_to_i915(m->private);
2092 struct drm_device *dev = &dev_priv->drm;
Daniel Vetter22bcfc62012-08-09 15:07:02 +02002093 int ret;
Daniel Vetterea16a3c2011-12-14 13:57:16 +01002094
Daniel Vetter22bcfc62012-08-09 15:07:02 +02002095 ret = mutex_lock_interruptible(&dev->struct_mutex);
2096 if (ret)
2097 return ret;
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02002098 intel_runtime_pm_get(dev_priv);
Daniel Vetter22bcfc62012-08-09 15:07:02 +02002099
Daniel Vetterea16a3c2011-12-14 13:57:16 +01002100 seq_printf(m, "bit6 swizzle for X-tiling = %s\n",
2101 swizzle_string(dev_priv->mm.bit_6_swizzle_x));
2102 seq_printf(m, "bit6 swizzle for Y-tiling = %s\n",
2103 swizzle_string(dev_priv->mm.bit_6_swizzle_y));
2104
David Weinehall36cdd012016-08-22 13:59:31 +03002105 if (IS_GEN3(dev_priv) || IS_GEN4(dev_priv)) {
Daniel Vetterea16a3c2011-12-14 13:57:16 +01002106 seq_printf(m, "DDC = 0x%08x\n",
2107 I915_READ(DCC));
Daniel Vetter656bfa32014-11-20 09:26:30 +01002108 seq_printf(m, "DDC2 = 0x%08x\n",
2109 I915_READ(DCC2));
Daniel Vetterea16a3c2011-12-14 13:57:16 +01002110 seq_printf(m, "C0DRB3 = 0x%04x\n",
2111 I915_READ16(C0DRB3));
2112 seq_printf(m, "C1DRB3 = 0x%04x\n",
2113 I915_READ16(C1DRB3));
David Weinehall36cdd012016-08-22 13:59:31 +03002114 } else if (INTEL_GEN(dev_priv) >= 6) {
Daniel Vetter3fa7d232012-01-31 16:47:56 +01002115 seq_printf(m, "MAD_DIMM_C0 = 0x%08x\n",
2116 I915_READ(MAD_DIMM_C0));
2117 seq_printf(m, "MAD_DIMM_C1 = 0x%08x\n",
2118 I915_READ(MAD_DIMM_C1));
2119 seq_printf(m, "MAD_DIMM_C2 = 0x%08x\n",
2120 I915_READ(MAD_DIMM_C2));
2121 seq_printf(m, "TILECTL = 0x%08x\n",
2122 I915_READ(TILECTL));
David Weinehall36cdd012016-08-22 13:59:31 +03002123 if (INTEL_GEN(dev_priv) >= 8)
Ben Widawsky9d3203e2013-11-02 21:07:14 -07002124 seq_printf(m, "GAMTARBMODE = 0x%08x\n",
2125 I915_READ(GAMTARBMODE));
2126 else
2127 seq_printf(m, "ARB_MODE = 0x%08x\n",
2128 I915_READ(ARB_MODE));
Daniel Vetter3fa7d232012-01-31 16:47:56 +01002129 seq_printf(m, "DISP_ARB_CTL = 0x%08x\n",
2130 I915_READ(DISP_ARB_CTL));
Daniel Vetterea16a3c2011-12-14 13:57:16 +01002131 }
Daniel Vetter656bfa32014-11-20 09:26:30 +01002132
2133 if (dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES)
2134 seq_puts(m, "L-shaped memory detected\n");
2135
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02002136 intel_runtime_pm_put(dev_priv);
Daniel Vetterea16a3c2011-12-14 13:57:16 +01002137 mutex_unlock(&dev->struct_mutex);
2138
2139 return 0;
2140}
2141
Ben Widawsky1c60fef2013-12-06 14:11:30 -08002142static int per_file_ctx(int id, void *ptr, void *data)
2143{
Chris Wilsone2efd132016-05-24 14:53:34 +01002144 struct i915_gem_context *ctx = ptr;
Ben Widawsky1c60fef2013-12-06 14:11:30 -08002145 struct seq_file *m = data;
Daniel Vetterae6c4802014-08-06 15:04:53 +02002146 struct i915_hw_ppgtt *ppgtt = ctx->ppgtt;
2147
2148 if (!ppgtt) {
2149 seq_printf(m, " no ppgtt for context %d\n",
2150 ctx->user_handle);
2151 return 0;
2152 }
Ben Widawsky1c60fef2013-12-06 14:11:30 -08002153
Oscar Mateof83d6512014-05-22 14:13:38 +01002154 if (i915_gem_context_is_default(ctx))
2155 seq_puts(m, " default context:\n");
2156 else
Oscar Mateo821d66d2014-07-03 16:28:00 +01002157 seq_printf(m, " context %d:\n", ctx->user_handle);
Ben Widawsky1c60fef2013-12-06 14:11:30 -08002158 ppgtt->debug_dump(ppgtt, m);
2159
2160 return 0;
2161}
2162
David Weinehall36cdd012016-08-22 13:59:31 +03002163static void gen8_ppgtt_info(struct seq_file *m,
2164 struct drm_i915_private *dev_priv)
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01002165{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002166 struct intel_engine_cs *engine;
Ben Widawsky77df6772013-11-02 21:07:30 -07002167 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00002168 int i;
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01002169
Ben Widawsky77df6772013-11-02 21:07:30 -07002170 if (!ppgtt)
2171 return;
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01002172
Dave Gordonb4ac5af2016-03-24 11:20:38 +00002173 for_each_engine(engine, dev_priv) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002174 seq_printf(m, "%s\n", engine->name);
Ben Widawsky77df6772013-11-02 21:07:30 -07002175 for (i = 0; i < 4; i++) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002176 u64 pdp = I915_READ(GEN8_RING_PDP_UDW(engine, i));
Ben Widawsky77df6772013-11-02 21:07:30 -07002177 pdp <<= 32;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002178 pdp |= I915_READ(GEN8_RING_PDP_LDW(engine, i));
Ville Syrjäläa2a5b152014-03-31 18:17:16 +03002179 seq_printf(m, "\tPDP%d 0x%016llx\n", i, pdp);
Ben Widawsky77df6772013-11-02 21:07:30 -07002180 }
2181 }
2182}
2183
David Weinehall36cdd012016-08-22 13:59:31 +03002184static void gen6_ppgtt_info(struct seq_file *m,
2185 struct drm_i915_private *dev_priv)
Ben Widawsky77df6772013-11-02 21:07:30 -07002186{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002187 struct intel_engine_cs *engine;
Ben Widawsky77df6772013-11-02 21:07:30 -07002188
Tvrtko Ursulin7e22dbb2016-05-10 10:57:06 +01002189 if (IS_GEN6(dev_priv))
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01002190 seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(GFX_MODE));
2191
Dave Gordonb4ac5af2016-03-24 11:20:38 +00002192 for_each_engine(engine, dev_priv) {
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002193 seq_printf(m, "%s\n", engine->name);
Tvrtko Ursulin7e22dbb2016-05-10 10:57:06 +01002194 if (IS_GEN7(dev_priv))
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002195 seq_printf(m, "GFX_MODE: 0x%08x\n",
2196 I915_READ(RING_MODE_GEN7(engine)));
2197 seq_printf(m, "PP_DIR_BASE: 0x%08x\n",
2198 I915_READ(RING_PP_DIR_BASE(engine)));
2199 seq_printf(m, "PP_DIR_BASE_READ: 0x%08x\n",
2200 I915_READ(RING_PP_DIR_BASE_READ(engine)));
2201 seq_printf(m, "PP_DIR_DCLV: 0x%08x\n",
2202 I915_READ(RING_PP_DIR_DCLV(engine)));
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01002203 }
2204 if (dev_priv->mm.aliasing_ppgtt) {
2205 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
2206
Damien Lespiau267f0c92013-06-24 22:59:48 +01002207 seq_puts(m, "aliasing PPGTT:\n");
Mika Kuoppala44159dd2015-06-25 18:35:07 +03002208 seq_printf(m, "pd gtt offset: 0x%08x\n", ppgtt->pd.base.ggtt_offset);
Ben Widawsky1c60fef2013-12-06 14:11:30 -08002209
Ben Widawsky87d60b62013-12-06 14:11:29 -08002210 ppgtt->debug_dump(ppgtt, m);
Daniel Vetterae6c4802014-08-06 15:04:53 +02002211 }
Ben Widawsky1c60fef2013-12-06 14:11:30 -08002212
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01002213 seq_printf(m, "ECOCHK: 0x%08x\n", I915_READ(GAM_ECOCHK));
Ben Widawsky77df6772013-11-02 21:07:30 -07002214}
2215
2216static int i915_ppgtt_info(struct seq_file *m, void *data)
2217{
David Weinehall36cdd012016-08-22 13:59:31 +03002218 struct drm_i915_private *dev_priv = node_to_i915(m->private);
2219 struct drm_device *dev = &dev_priv->drm;
Michel Thierryea91e402015-07-29 17:23:57 +01002220 struct drm_file *file;
Chris Wilson637ee292016-08-22 14:28:20 +01002221 int ret;
Ben Widawsky77df6772013-11-02 21:07:30 -07002222
Chris Wilson637ee292016-08-22 14:28:20 +01002223 mutex_lock(&dev->filelist_mutex);
2224 ret = mutex_lock_interruptible(&dev->struct_mutex);
Ben Widawsky77df6772013-11-02 21:07:30 -07002225 if (ret)
Chris Wilson637ee292016-08-22 14:28:20 +01002226 goto out_unlock;
2227
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02002228 intel_runtime_pm_get(dev_priv);
Ben Widawsky77df6772013-11-02 21:07:30 -07002229
David Weinehall36cdd012016-08-22 13:59:31 +03002230 if (INTEL_GEN(dev_priv) >= 8)
2231 gen8_ppgtt_info(m, dev_priv);
2232 else if (INTEL_GEN(dev_priv) >= 6)
2233 gen6_ppgtt_info(m, dev_priv);
Ben Widawsky77df6772013-11-02 21:07:30 -07002234
Michel Thierryea91e402015-07-29 17:23:57 +01002235 list_for_each_entry_reverse(file, &dev->filelist, lhead) {
2236 struct drm_i915_file_private *file_priv = file->driver_priv;
Geliang Tang7cb5dff2015-09-25 03:58:11 -07002237 struct task_struct *task;
Michel Thierryea91e402015-07-29 17:23:57 +01002238
Geliang Tang7cb5dff2015-09-25 03:58:11 -07002239 task = get_pid_task(file->pid, PIDTYPE_PID);
Dan Carpenter06812762015-10-02 18:14:22 +03002240 if (!task) {
2241 ret = -ESRCH;
Chris Wilson637ee292016-08-22 14:28:20 +01002242 goto out_rpm;
Dan Carpenter06812762015-10-02 18:14:22 +03002243 }
Geliang Tang7cb5dff2015-09-25 03:58:11 -07002244 seq_printf(m, "\nproc: %s\n", task->comm);
2245 put_task_struct(task);
Michel Thierryea91e402015-07-29 17:23:57 +01002246 idr_for_each(&file_priv->context_idr, per_file_ctx,
2247 (void *)(unsigned long)m);
2248 }
2249
Chris Wilson637ee292016-08-22 14:28:20 +01002250out_rpm:
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02002251 intel_runtime_pm_put(dev_priv);
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01002252 mutex_unlock(&dev->struct_mutex);
Chris Wilson637ee292016-08-22 14:28:20 +01002253out_unlock:
2254 mutex_unlock(&dev->filelist_mutex);
Dan Carpenter06812762015-10-02 18:14:22 +03002255 return ret;
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01002256}
2257
Chris Wilsonf5a4c672015-04-27 13:41:23 +01002258static int count_irq_waiters(struct drm_i915_private *i915)
2259{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002260 struct intel_engine_cs *engine;
Chris Wilsonf5a4c672015-04-27 13:41:23 +01002261 int count = 0;
Chris Wilsonf5a4c672015-04-27 13:41:23 +01002262
Dave Gordonb4ac5af2016-03-24 11:20:38 +00002263 for_each_engine(engine, i915)
Chris Wilson688e6c72016-07-01 17:23:15 +01002264 count += intel_engine_has_waiter(engine);
Chris Wilsonf5a4c672015-04-27 13:41:23 +01002265
2266 return count;
2267}
2268
Chris Wilson7466c292016-08-15 09:49:33 +01002269static const char *rps_power_to_str(unsigned int power)
2270{
2271 static const char * const strings[] = {
2272 [LOW_POWER] = "low power",
2273 [BETWEEN] = "mixed",
2274 [HIGH_POWER] = "high power",
2275 };
2276
2277 if (power >= ARRAY_SIZE(strings) || !strings[power])
2278 return "unknown";
2279
2280 return strings[power];
2281}
2282
Chris Wilson1854d5c2015-04-07 16:20:32 +01002283static int i915_rps_boost_info(struct seq_file *m, void *data)
2284{
David Weinehall36cdd012016-08-22 13:59:31 +03002285 struct drm_i915_private *dev_priv = node_to_i915(m->private);
2286 struct drm_device *dev = &dev_priv->drm;
Chris Wilson1854d5c2015-04-07 16:20:32 +01002287 struct drm_file *file;
Chris Wilson1854d5c2015-04-07 16:20:32 +01002288
Chris Wilsonf5a4c672015-04-27 13:41:23 +01002289 seq_printf(m, "RPS enabled? %d\n", dev_priv->rps.enabled);
Chris Wilson67d97da2016-07-04 08:08:31 +01002290 seq_printf(m, "GPU busy? %s [%x]\n",
2291 yesno(dev_priv->gt.awake), dev_priv->gt.active_engines);
Chris Wilsonf5a4c672015-04-27 13:41:23 +01002292 seq_printf(m, "CPU waiting? %d\n", count_irq_waiters(dev_priv));
Chris Wilson7466c292016-08-15 09:49:33 +01002293 seq_printf(m, "Frequency requested %d\n",
2294 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq));
2295 seq_printf(m, " min hard:%d, soft:%d; max soft:%d, hard:%d\n",
Chris Wilsonf5a4c672015-04-27 13:41:23 +01002296 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
2297 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq_softlimit),
2298 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq_softlimit),
2299 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq));
Chris Wilson7466c292016-08-15 09:49:33 +01002300 seq_printf(m, " idle:%d, efficient:%d, boost:%d\n",
2301 intel_gpu_freq(dev_priv, dev_priv->rps.idle_freq),
2302 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
2303 intel_gpu_freq(dev_priv, dev_priv->rps.boost_freq));
Daniel Vetter1d2ac402016-04-26 19:29:41 +02002304
2305 mutex_lock(&dev->filelist_mutex);
Chris Wilson8d3afd72015-05-21 21:01:47 +01002306 spin_lock(&dev_priv->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01002307 list_for_each_entry_reverse(file, &dev->filelist, lhead) {
2308 struct drm_i915_file_private *file_priv = file->driver_priv;
2309 struct task_struct *task;
2310
2311 rcu_read_lock();
2312 task = pid_task(file->pid, PIDTYPE_PID);
2313 seq_printf(m, "%s [%d]: %d boosts%s\n",
2314 task ? task->comm : "<unknown>",
2315 task ? task->pid : -1,
Chris Wilson2e1b8732015-04-27 13:41:22 +01002316 file_priv->rps.boosts,
2317 list_empty(&file_priv->rps.link) ? "" : ", active");
Chris Wilson1854d5c2015-04-07 16:20:32 +01002318 rcu_read_unlock();
2319 }
Chris Wilson197be2a2016-07-20 09:21:13 +01002320 seq_printf(m, "Kernel (anonymous) boosts: %d\n", dev_priv->rps.boosts);
Chris Wilson8d3afd72015-05-21 21:01:47 +01002321 spin_unlock(&dev_priv->rps.client_lock);
Daniel Vetter1d2ac402016-04-26 19:29:41 +02002322 mutex_unlock(&dev->filelist_mutex);
Chris Wilson1854d5c2015-04-07 16:20:32 +01002323
Chris Wilson7466c292016-08-15 09:49:33 +01002324 if (INTEL_GEN(dev_priv) >= 6 &&
2325 dev_priv->rps.enabled &&
2326 dev_priv->gt.active_engines) {
2327 u32 rpup, rpupei;
2328 u32 rpdown, rpdownei;
2329
2330 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
2331 rpup = I915_READ_FW(GEN6_RP_CUR_UP) & GEN6_RP_EI_MASK;
2332 rpupei = I915_READ_FW(GEN6_RP_CUR_UP_EI) & GEN6_RP_EI_MASK;
2333 rpdown = I915_READ_FW(GEN6_RP_CUR_DOWN) & GEN6_RP_EI_MASK;
2334 rpdownei = I915_READ_FW(GEN6_RP_CUR_DOWN_EI) & GEN6_RP_EI_MASK;
2335 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
2336
2337 seq_printf(m, "\nRPS Autotuning (current \"%s\" window):\n",
2338 rps_power_to_str(dev_priv->rps.power));
2339 seq_printf(m, " Avg. up: %d%% [above threshold? %d%%]\n",
2340 100 * rpup / rpupei,
2341 dev_priv->rps.up_threshold);
2342 seq_printf(m, " Avg. down: %d%% [below threshold? %d%%]\n",
2343 100 * rpdown / rpdownei,
2344 dev_priv->rps.down_threshold);
2345 } else {
2346 seq_puts(m, "\nRPS Autotuning inactive\n");
2347 }
2348
Chris Wilson8d3afd72015-05-21 21:01:47 +01002349 return 0;
Chris Wilson1854d5c2015-04-07 16:20:32 +01002350}
2351
Ben Widawsky63573eb2013-07-04 11:02:07 -07002352static int i915_llc(struct seq_file *m, void *data)
2353{
David Weinehall36cdd012016-08-22 13:59:31 +03002354 struct drm_i915_private *dev_priv = node_to_i915(m->private);
Mika Kuoppala3accaf72016-04-13 17:26:43 +03002355 const bool edram = INTEL_GEN(dev_priv) > 8;
Ben Widawsky63573eb2013-07-04 11:02:07 -07002356
David Weinehall36cdd012016-08-22 13:59:31 +03002357 seq_printf(m, "LLC: %s\n", yesno(HAS_LLC(dev_priv)));
Mika Kuoppala3accaf72016-04-13 17:26:43 +03002358 seq_printf(m, "%s: %lluMB\n", edram ? "eDRAM" : "eLLC",
2359 intel_uncore_edram_size(dev_priv)/1024/1024);
Ben Widawsky63573eb2013-07-04 11:02:07 -07002360
2361 return 0;
2362}
2363
Alex Daifdf5d352015-08-12 15:43:37 +01002364static int i915_guc_load_status_info(struct seq_file *m, void *data)
2365{
David Weinehall36cdd012016-08-22 13:59:31 +03002366 struct drm_i915_private *dev_priv = node_to_i915(m->private);
Alex Daifdf5d352015-08-12 15:43:37 +01002367 struct intel_guc_fw *guc_fw = &dev_priv->guc.guc_fw;
2368 u32 tmp, i;
2369
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03002370 if (!HAS_GUC_UCODE(dev_priv))
Alex Daifdf5d352015-08-12 15:43:37 +01002371 return 0;
2372
2373 seq_printf(m, "GuC firmware status:\n");
2374 seq_printf(m, "\tpath: %s\n",
2375 guc_fw->guc_fw_path);
2376 seq_printf(m, "\tfetch: %s\n",
2377 intel_guc_fw_status_repr(guc_fw->guc_fw_fetch_status));
2378 seq_printf(m, "\tload: %s\n",
2379 intel_guc_fw_status_repr(guc_fw->guc_fw_load_status));
2380 seq_printf(m, "\tversion wanted: %d.%d\n",
2381 guc_fw->guc_fw_major_wanted, guc_fw->guc_fw_minor_wanted);
2382 seq_printf(m, "\tversion found: %d.%d\n",
2383 guc_fw->guc_fw_major_found, guc_fw->guc_fw_minor_found);
Alex Daifeda33e2015-10-19 16:10:54 -07002384 seq_printf(m, "\theader: offset is %d; size = %d\n",
2385 guc_fw->header_offset, guc_fw->header_size);
2386 seq_printf(m, "\tuCode: offset is %d; size = %d\n",
2387 guc_fw->ucode_offset, guc_fw->ucode_size);
2388 seq_printf(m, "\tRSA: offset is %d; size = %d\n",
2389 guc_fw->rsa_offset, guc_fw->rsa_size);
Alex Daifdf5d352015-08-12 15:43:37 +01002390
2391 tmp = I915_READ(GUC_STATUS);
2392
2393 seq_printf(m, "\nGuC status 0x%08x:\n", tmp);
2394 seq_printf(m, "\tBootrom status = 0x%x\n",
2395 (tmp & GS_BOOTROM_MASK) >> GS_BOOTROM_SHIFT);
2396 seq_printf(m, "\tuKernel status = 0x%x\n",
2397 (tmp & GS_UKERNEL_MASK) >> GS_UKERNEL_SHIFT);
2398 seq_printf(m, "\tMIA Core status = 0x%x\n",
2399 (tmp & GS_MIA_MASK) >> GS_MIA_SHIFT);
2400 seq_puts(m, "\nScratch registers:\n");
2401 for (i = 0; i < 16; i++)
2402 seq_printf(m, "\t%2d: \t0x%x\n", i, I915_READ(SOFT_SCRATCH(i)));
2403
2404 return 0;
2405}
2406
Dave Gordon8b417c22015-08-12 15:43:44 +01002407static void i915_guc_client_info(struct seq_file *m,
2408 struct drm_i915_private *dev_priv,
2409 struct i915_guc_client *client)
2410{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002411 struct intel_engine_cs *engine;
Dave Gordonc18468c2016-08-09 15:19:22 +01002412 enum intel_engine_id id;
Dave Gordon8b417c22015-08-12 15:43:44 +01002413 uint64_t tot = 0;
Dave Gordon8b417c22015-08-12 15:43:44 +01002414
2415 seq_printf(m, "\tPriority %d, GuC ctx index: %u, PD offset 0x%x\n",
2416 client->priority, client->ctx_index, client->proc_desc_offset);
2417 seq_printf(m, "\tDoorbell id %d, offset: 0x%x, cookie 0x%x\n",
2418 client->doorbell_id, client->doorbell_offset, client->cookie);
2419 seq_printf(m, "\tWQ size %d, offset: 0x%x, tail %d\n",
2420 client->wq_size, client->wq_offset, client->wq_tail);
2421
Dave Gordon551aaec2016-05-13 15:36:33 +01002422 seq_printf(m, "\tWork queue full: %u\n", client->no_wq_space);
Dave Gordon8b417c22015-08-12 15:43:44 +01002423 seq_printf(m, "\tFailed doorbell: %u\n", client->b_fail);
2424 seq_printf(m, "\tLast submission result: %d\n", client->retcode);
2425
Dave Gordonc18468c2016-08-09 15:19:22 +01002426 for_each_engine_id(engine, dev_priv, id) {
2427 u64 submissions = client->submissions[id];
2428 tot += submissions;
Dave Gordon8b417c22015-08-12 15:43:44 +01002429 seq_printf(m, "\tSubmissions: %llu %s\n",
Dave Gordonc18468c2016-08-09 15:19:22 +01002430 submissions, engine->name);
Dave Gordon8b417c22015-08-12 15:43:44 +01002431 }
2432 seq_printf(m, "\tTotal: %llu\n", tot);
2433}
2434
2435static int i915_guc_info(struct seq_file *m, void *data)
2436{
David Weinehall36cdd012016-08-22 13:59:31 +03002437 struct drm_i915_private *dev_priv = node_to_i915(m->private);
2438 struct drm_device *dev = &dev_priv->drm;
Dave Gordon8b417c22015-08-12 15:43:44 +01002439 struct intel_guc guc;
Ville Syrjälä0a0b4572015-08-21 20:45:27 +03002440 struct i915_guc_client client = {};
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00002441 struct intel_engine_cs *engine;
Dave Gordonc18468c2016-08-09 15:19:22 +01002442 enum intel_engine_id id;
Dave Gordon8b417c22015-08-12 15:43:44 +01002443 u64 total = 0;
2444
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03002445 if (!HAS_GUC_SCHED(dev_priv))
Dave Gordon8b417c22015-08-12 15:43:44 +01002446 return 0;
2447
Alex Dai5a843302015-12-02 16:56:29 -08002448 if (mutex_lock_interruptible(&dev->struct_mutex))
2449 return 0;
2450
Dave Gordon8b417c22015-08-12 15:43:44 +01002451 /* Take a local copy of the GuC data, so we can dump it at leisure */
Dave Gordon8b417c22015-08-12 15:43:44 +01002452 guc = dev_priv->guc;
Alex Dai5a843302015-12-02 16:56:29 -08002453 if (guc.execbuf_client)
Dave Gordon8b417c22015-08-12 15:43:44 +01002454 client = *guc.execbuf_client;
Alex Dai5a843302015-12-02 16:56:29 -08002455
2456 mutex_unlock(&dev->struct_mutex);
Dave Gordon8b417c22015-08-12 15:43:44 +01002457
Dave Gordon9636f6d2016-06-13 17:57:28 +01002458 seq_printf(m, "Doorbell map:\n");
2459 seq_printf(m, "\t%*pb\n", GUC_MAX_DOORBELLS, guc.doorbell_bitmap);
2460 seq_printf(m, "Doorbell next cacheline: 0x%x\n\n", guc.db_cacheline);
2461
Dave Gordon8b417c22015-08-12 15:43:44 +01002462 seq_printf(m, "GuC total action count: %llu\n", guc.action_count);
2463 seq_printf(m, "GuC action failure count: %u\n", guc.action_fail);
2464 seq_printf(m, "GuC last action command: 0x%x\n", guc.action_cmd);
2465 seq_printf(m, "GuC last action status: 0x%x\n", guc.action_status);
2466 seq_printf(m, "GuC last action error code: %d\n", guc.action_err);
2467
2468 seq_printf(m, "\nGuC submissions:\n");
Dave Gordonc18468c2016-08-09 15:19:22 +01002469 for_each_engine_id(engine, dev_priv, id) {
2470 u64 submissions = guc.submissions[id];
2471 total += submissions;
Alex Dai397097b2016-01-23 11:58:14 -08002472 seq_printf(m, "\t%-24s: %10llu, last seqno 0x%08x\n",
Dave Gordonc18468c2016-08-09 15:19:22 +01002473 engine->name, submissions, guc.last_seqno[id]);
Dave Gordon8b417c22015-08-12 15:43:44 +01002474 }
2475 seq_printf(m, "\t%s: %llu\n", "Total", total);
2476
2477 seq_printf(m, "\nGuC execbuf client @ %p:\n", guc.execbuf_client);
2478 i915_guc_client_info(m, dev_priv, &client);
2479
2480 /* Add more as required ... */
2481
2482 return 0;
2483}
2484
Alex Dai4c7e77f2015-08-12 15:43:40 +01002485static int i915_guc_log_dump(struct seq_file *m, void *data)
2486{
David Weinehall36cdd012016-08-22 13:59:31 +03002487 struct drm_i915_private *dev_priv = node_to_i915(m->private);
Chris Wilson8b797af2016-08-15 10:48:51 +01002488 struct drm_i915_gem_object *obj;
Alex Dai4c7e77f2015-08-12 15:43:40 +01002489 int i = 0, pg;
2490
Chris Wilson8b797af2016-08-15 10:48:51 +01002491 if (!dev_priv->guc.log_vma)
Alex Dai4c7e77f2015-08-12 15:43:40 +01002492 return 0;
2493
Chris Wilson8b797af2016-08-15 10:48:51 +01002494 obj = dev_priv->guc.log_vma->obj;
2495 for (pg = 0; pg < obj->base.size / PAGE_SIZE; pg++) {
2496 u32 *log = kmap_atomic(i915_gem_object_get_page(obj, pg));
Alex Dai4c7e77f2015-08-12 15:43:40 +01002497
2498 for (i = 0; i < PAGE_SIZE / sizeof(u32); i += 4)
2499 seq_printf(m, "0x%08x 0x%08x 0x%08x 0x%08x\n",
2500 *(log + i), *(log + i + 1),
2501 *(log + i + 2), *(log + i + 3));
2502
2503 kunmap_atomic(log);
2504 }
2505
2506 seq_putc(m, '\n');
2507
2508 return 0;
2509}
2510
Rodrigo Vivie91fd8c2013-07-11 18:44:59 -03002511static int i915_edp_psr_status(struct seq_file *m, void *data)
2512{
David Weinehall36cdd012016-08-22 13:59:31 +03002513 struct drm_i915_private *dev_priv = node_to_i915(m->private);
Rodrigo Vivia031d702013-10-03 16:15:06 -03002514 u32 psrperf = 0;
Rodrigo Vivia6cbdb82014-11-14 08:52:40 -08002515 u32 stat[3];
2516 enum pipe pipe;
Rodrigo Vivia031d702013-10-03 16:15:06 -03002517 bool enabled = false;
Rodrigo Vivie91fd8c2013-07-11 18:44:59 -03002518
David Weinehall36cdd012016-08-22 13:59:31 +03002519 if (!HAS_PSR(dev_priv)) {
Damien Lespiau3553a8e2015-03-09 14:17:58 +00002520 seq_puts(m, "PSR not supported\n");
2521 return 0;
2522 }
2523
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02002524 intel_runtime_pm_get(dev_priv);
2525
Daniel Vetterfa128fa2014-07-11 10:30:17 -07002526 mutex_lock(&dev_priv->psr.lock);
Rodrigo Vivia031d702013-10-03 16:15:06 -03002527 seq_printf(m, "Sink_Support: %s\n", yesno(dev_priv->psr.sink_support));
2528 seq_printf(m, "Source_OK: %s\n", yesno(dev_priv->psr.source_ok));
Daniel Vetter2807cf62014-07-11 10:30:11 -07002529 seq_printf(m, "Enabled: %s\n", yesno((bool)dev_priv->psr.enabled));
Rodrigo Vivi5755c782014-06-12 10:16:45 -07002530 seq_printf(m, "Active: %s\n", yesno(dev_priv->psr.active));
Daniel Vetterfa128fa2014-07-11 10:30:17 -07002531 seq_printf(m, "Busy frontbuffer bits: 0x%03x\n",
2532 dev_priv->psr.busy_frontbuffer_bits);
2533 seq_printf(m, "Re-enable work scheduled: %s\n",
2534 yesno(work_busy(&dev_priv->psr.work.work)));
Rodrigo Vivie91fd8c2013-07-11 18:44:59 -03002535
David Weinehall36cdd012016-08-22 13:59:31 +03002536 if (HAS_DDI(dev_priv))
Ville Syrjälä443a3892015-11-11 20:34:15 +02002537 enabled = I915_READ(EDP_PSR_CTL) & EDP_PSR_ENABLE;
Damien Lespiau3553a8e2015-03-09 14:17:58 +00002538 else {
2539 for_each_pipe(dev_priv, pipe) {
2540 stat[pipe] = I915_READ(VLV_PSRSTAT(pipe)) &
2541 VLV_EDP_PSR_CURR_STATE_MASK;
2542 if ((stat[pipe] == VLV_EDP_PSR_ACTIVE_NORFB_UP) ||
2543 (stat[pipe] == VLV_EDP_PSR_ACTIVE_SF_UPDATE))
2544 enabled = true;
Rodrigo Vivia6cbdb82014-11-14 08:52:40 -08002545 }
2546 }
Rodrigo Vivi60e5ffe2016-02-01 12:02:07 -08002547
2548 seq_printf(m, "Main link in standby mode: %s\n",
2549 yesno(dev_priv->psr.link_standby));
2550
Rodrigo Vivia6cbdb82014-11-14 08:52:40 -08002551 seq_printf(m, "HW Enabled & Active bit: %s", yesno(enabled));
Rodrigo Vivie91fd8c2013-07-11 18:44:59 -03002552
David Weinehall36cdd012016-08-22 13:59:31 +03002553 if (!HAS_DDI(dev_priv))
Rodrigo Vivia6cbdb82014-11-14 08:52:40 -08002554 for_each_pipe(dev_priv, pipe) {
2555 if ((stat[pipe] == VLV_EDP_PSR_ACTIVE_NORFB_UP) ||
2556 (stat[pipe] == VLV_EDP_PSR_ACTIVE_SF_UPDATE))
2557 seq_printf(m, " pipe %c", pipe_name(pipe));
2558 }
2559 seq_puts(m, "\n");
2560
Rodrigo Vivi05eec3c2015-11-23 14:16:40 -08002561 /*
2562 * VLV/CHV PSR has no kind of performance counter
2563 * SKL+ Perf counter is reset to 0 everytime DC state is entered
2564 */
David Weinehall36cdd012016-08-22 13:59:31 +03002565 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjälä443a3892015-11-11 20:34:15 +02002566 psrperf = I915_READ(EDP_PSR_PERF_CNT) &
Rodrigo Vivia031d702013-10-03 16:15:06 -03002567 EDP_PSR_PERF_CNT_MASK;
Rodrigo Vivia6cbdb82014-11-14 08:52:40 -08002568
2569 seq_printf(m, "Performance_Counter: %u\n", psrperf);
2570 }
Daniel Vetterfa128fa2014-07-11 10:30:17 -07002571 mutex_unlock(&dev_priv->psr.lock);
Rodrigo Vivie91fd8c2013-07-11 18:44:59 -03002572
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02002573 intel_runtime_pm_put(dev_priv);
Rodrigo Vivie91fd8c2013-07-11 18:44:59 -03002574 return 0;
2575}
2576
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02002577static int i915_sink_crc(struct seq_file *m, void *data)
2578{
David Weinehall36cdd012016-08-22 13:59:31 +03002579 struct drm_i915_private *dev_priv = node_to_i915(m->private);
2580 struct drm_device *dev = &dev_priv->drm;
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02002581 struct intel_connector *connector;
2582 struct intel_dp *intel_dp = NULL;
2583 int ret;
2584 u8 crc[6];
2585
2586 drm_modeset_lock_all(dev);
Rodrigo Viviaca5e362015-03-13 16:13:59 -07002587 for_each_intel_connector(dev, connector) {
Maarten Lankhorst26c17cf2016-06-20 15:57:38 +02002588 struct drm_crtc *crtc;
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02002589
Maarten Lankhorst26c17cf2016-06-20 15:57:38 +02002590 if (!connector->base.state->best_encoder)
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02002591 continue;
2592
Maarten Lankhorst26c17cf2016-06-20 15:57:38 +02002593 crtc = connector->base.state->crtc;
2594 if (!crtc->state->active)
Paulo Zanonib6ae3c72014-02-13 17:51:33 -02002595 continue;
2596
Maarten Lankhorst26c17cf2016-06-20 15:57:38 +02002597 if (connector->base.connector_type != DRM_MODE_CONNECTOR_eDP)
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02002598 continue;
2599
Maarten Lankhorst26c17cf2016-06-20 15:57:38 +02002600 intel_dp = enc_to_intel_dp(connector->base.state->best_encoder);
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02002601
2602 ret = intel_dp_sink_crc(intel_dp, crc);
2603 if (ret)
2604 goto out;
2605
2606 seq_printf(m, "%02x%02x%02x%02x%02x%02x\n",
2607 crc[0], crc[1], crc[2],
2608 crc[3], crc[4], crc[5]);
2609 goto out;
2610 }
2611 ret = -ENODEV;
2612out:
2613 drm_modeset_unlock_all(dev);
2614 return ret;
2615}
2616
Jesse Barnesec013e72013-08-20 10:29:23 +01002617static int i915_energy_uJ(struct seq_file *m, void *data)
2618{
David Weinehall36cdd012016-08-22 13:59:31 +03002619 struct drm_i915_private *dev_priv = node_to_i915(m->private);
Jesse Barnesec013e72013-08-20 10:29:23 +01002620 u64 power;
2621 u32 units;
2622
David Weinehall36cdd012016-08-22 13:59:31 +03002623 if (INTEL_GEN(dev_priv) < 6)
Jesse Barnesec013e72013-08-20 10:29:23 +01002624 return -ENODEV;
2625
Paulo Zanoni36623ef2014-02-21 13:52:23 -03002626 intel_runtime_pm_get(dev_priv);
2627
Jesse Barnesec013e72013-08-20 10:29:23 +01002628 rdmsrl(MSR_RAPL_POWER_UNIT, power);
2629 power = (power & 0x1f00) >> 8;
2630 units = 1000000 / (1 << power); /* convert to uJ */
2631 power = I915_READ(MCH_SECP_NRG_STTS);
2632 power *= units;
2633
Paulo Zanoni36623ef2014-02-21 13:52:23 -03002634 intel_runtime_pm_put(dev_priv);
2635
Jesse Barnesec013e72013-08-20 10:29:23 +01002636 seq_printf(m, "%llu", (long long unsigned)power);
Paulo Zanoni371db662013-08-19 13:18:10 -03002637
2638 return 0;
2639}
2640
Damien Lespiau6455c872015-06-04 18:23:57 +01002641static int i915_runtime_pm_status(struct seq_file *m, void *unused)
Paulo Zanoni371db662013-08-19 13:18:10 -03002642{
David Weinehall36cdd012016-08-22 13:59:31 +03002643 struct drm_i915_private *dev_priv = node_to_i915(m->private);
David Weinehall52a05c32016-08-22 13:32:44 +03002644 struct pci_dev *pdev = dev_priv->drm.pdev;
Paulo Zanoni371db662013-08-19 13:18:10 -03002645
Chris Wilsona156e642016-04-03 14:14:21 +01002646 if (!HAS_RUNTIME_PM(dev_priv))
2647 seq_puts(m, "Runtime power management not supported\n");
Paulo Zanoni371db662013-08-19 13:18:10 -03002648
Chris Wilson67d97da2016-07-04 08:08:31 +01002649 seq_printf(m, "GPU idle: %s\n", yesno(!dev_priv->gt.awake));
Paulo Zanoni371db662013-08-19 13:18:10 -03002650 seq_printf(m, "IRQs disabled: %s\n",
Jesse Barnes9df7575f2014-06-20 09:29:20 -07002651 yesno(!intel_irqs_enabled(dev_priv)));
Chris Wilson0d804182015-06-15 12:52:28 +01002652#ifdef CONFIG_PM
Damien Lespiaua6aaec82015-06-04 18:23:58 +01002653 seq_printf(m, "Usage count: %d\n",
David Weinehall36cdd012016-08-22 13:59:31 +03002654 atomic_read(&dev_priv->drm.dev->power.usage_count));
Chris Wilson0d804182015-06-15 12:52:28 +01002655#else
2656 seq_printf(m, "Device Power Management (CONFIG_PM) disabled\n");
2657#endif
Chris Wilsona156e642016-04-03 14:14:21 +01002658 seq_printf(m, "PCI device power state: %s [%d]\n",
David Weinehall52a05c32016-08-22 13:32:44 +03002659 pci_power_name(pdev->current_state),
2660 pdev->current_state);
Paulo Zanoni371db662013-08-19 13:18:10 -03002661
Jesse Barnesec013e72013-08-20 10:29:23 +01002662 return 0;
2663}
2664
Imre Deak1da51582013-11-25 17:15:35 +02002665static int i915_power_domain_info(struct seq_file *m, void *unused)
2666{
David Weinehall36cdd012016-08-22 13:59:31 +03002667 struct drm_i915_private *dev_priv = node_to_i915(m->private);
Imre Deak1da51582013-11-25 17:15:35 +02002668 struct i915_power_domains *power_domains = &dev_priv->power_domains;
2669 int i;
2670
2671 mutex_lock(&power_domains->lock);
2672
2673 seq_printf(m, "%-25s %s\n", "Power well/domain", "Use count");
2674 for (i = 0; i < power_domains->power_well_count; i++) {
2675 struct i915_power_well *power_well;
2676 enum intel_display_power_domain power_domain;
2677
2678 power_well = &power_domains->power_wells[i];
2679 seq_printf(m, "%-25s %d\n", power_well->name,
2680 power_well->count);
2681
2682 for (power_domain = 0; power_domain < POWER_DOMAIN_NUM;
2683 power_domain++) {
2684 if (!(BIT(power_domain) & power_well->domains))
2685 continue;
2686
2687 seq_printf(m, " %-23s %d\n",
Daniel Stone9895ad02015-11-20 15:55:33 +00002688 intel_display_power_domain_str(power_domain),
Imre Deak1da51582013-11-25 17:15:35 +02002689 power_domains->domain_use_count[power_domain]);
2690 }
2691 }
2692
2693 mutex_unlock(&power_domains->lock);
2694
2695 return 0;
2696}
2697
Damien Lespiaub7cec662015-10-27 14:47:01 +02002698static int i915_dmc_info(struct seq_file *m, void *unused)
2699{
David Weinehall36cdd012016-08-22 13:59:31 +03002700 struct drm_i915_private *dev_priv = node_to_i915(m->private);
Damien Lespiaub7cec662015-10-27 14:47:01 +02002701 struct intel_csr *csr;
2702
David Weinehall36cdd012016-08-22 13:59:31 +03002703 if (!HAS_CSR(dev_priv)) {
Damien Lespiaub7cec662015-10-27 14:47:01 +02002704 seq_puts(m, "not supported\n");
2705 return 0;
2706 }
2707
2708 csr = &dev_priv->csr;
2709
Mika Kuoppala6fb403d2015-10-30 17:54:47 +02002710 intel_runtime_pm_get(dev_priv);
2711
Damien Lespiaub7cec662015-10-27 14:47:01 +02002712 seq_printf(m, "fw loaded: %s\n", yesno(csr->dmc_payload != NULL));
2713 seq_printf(m, "path: %s\n", csr->fw_path);
2714
2715 if (!csr->dmc_payload)
Mika Kuoppala6fb403d2015-10-30 17:54:47 +02002716 goto out;
Damien Lespiaub7cec662015-10-27 14:47:01 +02002717
2718 seq_printf(m, "version: %d.%d\n", CSR_VERSION_MAJOR(csr->version),
2719 CSR_VERSION_MINOR(csr->version));
2720
David Weinehall36cdd012016-08-22 13:59:31 +03002721 if (IS_SKYLAKE(dev_priv) && csr->version >= CSR_VERSION(1, 6)) {
Damien Lespiau83372062015-10-30 17:53:32 +02002722 seq_printf(m, "DC3 -> DC5 count: %d\n",
2723 I915_READ(SKL_CSR_DC3_DC5_COUNT));
2724 seq_printf(m, "DC5 -> DC6 count: %d\n",
2725 I915_READ(SKL_CSR_DC5_DC6_COUNT));
David Weinehall36cdd012016-08-22 13:59:31 +03002726 } else if (IS_BROXTON(dev_priv) && csr->version >= CSR_VERSION(1, 4)) {
Mika Kuoppala16e11b92015-10-27 14:47:03 +02002727 seq_printf(m, "DC3 -> DC5 count: %d\n",
2728 I915_READ(BXT_CSR_DC3_DC5_COUNT));
Damien Lespiau83372062015-10-30 17:53:32 +02002729 }
2730
Mika Kuoppala6fb403d2015-10-30 17:54:47 +02002731out:
2732 seq_printf(m, "program base: 0x%08x\n", I915_READ(CSR_PROGRAM(0)));
2733 seq_printf(m, "ssp base: 0x%08x\n", I915_READ(CSR_SSP_BASE));
2734 seq_printf(m, "htp: 0x%08x\n", I915_READ(CSR_HTP_SKL));
2735
Damien Lespiau83372062015-10-30 17:53:32 +02002736 intel_runtime_pm_put(dev_priv);
2737
Damien Lespiaub7cec662015-10-27 14:47:01 +02002738 return 0;
2739}
2740
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002741static void intel_seq_print_mode(struct seq_file *m, int tabs,
2742 struct drm_display_mode *mode)
2743{
2744 int i;
2745
2746 for (i = 0; i < tabs; i++)
2747 seq_putc(m, '\t');
2748
2749 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",
2750 mode->base.id, mode->name,
2751 mode->vrefresh, mode->clock,
2752 mode->hdisplay, mode->hsync_start,
2753 mode->hsync_end, mode->htotal,
2754 mode->vdisplay, mode->vsync_start,
2755 mode->vsync_end, mode->vtotal,
2756 mode->type, mode->flags);
2757}
2758
2759static void intel_encoder_info(struct seq_file *m,
2760 struct intel_crtc *intel_crtc,
2761 struct intel_encoder *intel_encoder)
2762{
David Weinehall36cdd012016-08-22 13:59:31 +03002763 struct drm_i915_private *dev_priv = node_to_i915(m->private);
2764 struct drm_device *dev = &dev_priv->drm;
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002765 struct drm_crtc *crtc = &intel_crtc->base;
2766 struct intel_connector *intel_connector;
2767 struct drm_encoder *encoder;
2768
2769 encoder = &intel_encoder->base;
2770 seq_printf(m, "\tencoder %d: type: %s, connectors:\n",
Jani Nikula8e329a032014-06-03 14:56:21 +03002771 encoder->base.id, encoder->name);
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002772 for_each_connector_on_encoder(dev, encoder, intel_connector) {
2773 struct drm_connector *connector = &intel_connector->base;
2774 seq_printf(m, "\t\tconnector %d: type: %s, status: %s",
2775 connector->base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03002776 connector->name,
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002777 drm_get_connector_status_name(connector->status));
2778 if (connector->status == connector_status_connected) {
2779 struct drm_display_mode *mode = &crtc->mode;
2780 seq_printf(m, ", mode:\n");
2781 intel_seq_print_mode(m, 2, mode);
2782 } else {
2783 seq_putc(m, '\n');
2784 }
2785 }
2786}
2787
2788static void intel_crtc_info(struct seq_file *m, struct intel_crtc *intel_crtc)
2789{
David Weinehall36cdd012016-08-22 13:59:31 +03002790 struct drm_i915_private *dev_priv = node_to_i915(m->private);
2791 struct drm_device *dev = &dev_priv->drm;
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002792 struct drm_crtc *crtc = &intel_crtc->base;
2793 struct intel_encoder *intel_encoder;
Maarten Lankhorst23a48d52015-09-10 16:07:57 +02002794 struct drm_plane_state *plane_state = crtc->primary->state;
2795 struct drm_framebuffer *fb = plane_state->fb;
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002796
Maarten Lankhorst23a48d52015-09-10 16:07:57 +02002797 if (fb)
Matt Roper5aa8a932014-06-16 10:12:55 -07002798 seq_printf(m, "\tfb: %d, pos: %dx%d, size: %dx%d\n",
Maarten Lankhorst23a48d52015-09-10 16:07:57 +02002799 fb->base.id, plane_state->src_x >> 16,
2800 plane_state->src_y >> 16, fb->width, fb->height);
Matt Roper5aa8a932014-06-16 10:12:55 -07002801 else
2802 seq_puts(m, "\tprimary plane disabled\n");
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002803 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
2804 intel_encoder_info(m, intel_crtc, intel_encoder);
2805}
2806
2807static void intel_panel_info(struct seq_file *m, struct intel_panel *panel)
2808{
2809 struct drm_display_mode *mode = panel->fixed_mode;
2810
2811 seq_printf(m, "\tfixed mode:\n");
2812 intel_seq_print_mode(m, 2, mode);
2813}
2814
2815static void intel_dp_info(struct seq_file *m,
2816 struct intel_connector *intel_connector)
2817{
2818 struct intel_encoder *intel_encoder = intel_connector->encoder;
2819 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
2820
2821 seq_printf(m, "\tDPCD rev: %x\n", intel_dp->dpcd[DP_DPCD_REV]);
Jani Nikula742f4912015-09-03 11:16:09 +03002822 seq_printf(m, "\taudio support: %s\n", yesno(intel_dp->has_audio));
Maarten Lankhorstb6dabe32016-06-20 15:57:37 +02002823 if (intel_connector->base.connector_type == DRM_MODE_CONNECTOR_eDP)
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002824 intel_panel_info(m, &intel_connector->panel);
Mika Kahola80209e52016-09-09 14:10:57 +03002825
2826 drm_dp_downstream_debug(m, intel_dp->dpcd, intel_dp->downstream_ports,
2827 &intel_dp->aux);
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002828}
2829
2830static void intel_hdmi_info(struct seq_file *m,
2831 struct intel_connector *intel_connector)
2832{
2833 struct intel_encoder *intel_encoder = intel_connector->encoder;
2834 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&intel_encoder->base);
2835
Jani Nikula742f4912015-09-03 11:16:09 +03002836 seq_printf(m, "\taudio support: %s\n", yesno(intel_hdmi->has_audio));
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002837}
2838
2839static void intel_lvds_info(struct seq_file *m,
2840 struct intel_connector *intel_connector)
2841{
2842 intel_panel_info(m, &intel_connector->panel);
2843}
2844
2845static void intel_connector_info(struct seq_file *m,
2846 struct drm_connector *connector)
2847{
2848 struct intel_connector *intel_connector = to_intel_connector(connector);
2849 struct intel_encoder *intel_encoder = intel_connector->encoder;
Jesse Barnesf103fc72014-02-20 12:39:57 -08002850 struct drm_display_mode *mode;
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002851
2852 seq_printf(m, "connector %d: type %s, status: %s\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03002853 connector->base.id, connector->name,
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002854 drm_get_connector_status_name(connector->status));
2855 if (connector->status == connector_status_connected) {
2856 seq_printf(m, "\tname: %s\n", connector->display_info.name);
2857 seq_printf(m, "\tphysical dimensions: %dx%dmm\n",
2858 connector->display_info.width_mm,
2859 connector->display_info.height_mm);
2860 seq_printf(m, "\tsubpixel order: %s\n",
2861 drm_get_subpixel_order_name(connector->display_info.subpixel_order));
2862 seq_printf(m, "\tCEA rev: %d\n",
2863 connector->display_info.cea_rev);
2864 }
Maarten Lankhorstee648a72016-06-21 12:00:38 +02002865
2866 if (!intel_encoder || intel_encoder->type == INTEL_OUTPUT_DP_MST)
2867 return;
2868
2869 switch (connector->connector_type) {
2870 case DRM_MODE_CONNECTOR_DisplayPort:
2871 case DRM_MODE_CONNECTOR_eDP:
Dhinakaran Pandiyanbe754b12016-09-28 23:55:04 -07002872 intel_dp_info(m, intel_connector);
Maarten Lankhorstee648a72016-06-21 12:00:38 +02002873 break;
2874 case DRM_MODE_CONNECTOR_LVDS:
2875 if (intel_encoder->type == INTEL_OUTPUT_LVDS)
Dave Airlie36cd7442014-05-02 13:44:18 +10002876 intel_lvds_info(m, intel_connector);
Maarten Lankhorstee648a72016-06-21 12:00:38 +02002877 break;
2878 case DRM_MODE_CONNECTOR_HDMIA:
2879 if (intel_encoder->type == INTEL_OUTPUT_HDMI ||
2880 intel_encoder->type == INTEL_OUTPUT_UNKNOWN)
2881 intel_hdmi_info(m, intel_connector);
2882 break;
2883 default:
2884 break;
Dave Airlie36cd7442014-05-02 13:44:18 +10002885 }
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002886
Jesse Barnesf103fc72014-02-20 12:39:57 -08002887 seq_printf(m, "\tmodes:\n");
2888 list_for_each_entry(mode, &connector->modes, head)
2889 intel_seq_print_mode(m, 2, mode);
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002890}
2891
David Weinehall36cdd012016-08-22 13:59:31 +03002892static bool cursor_active(struct drm_i915_private *dev_priv, int pipe)
Chris Wilson065f2ec2014-03-12 09:13:13 +00002893{
Chris Wilson065f2ec2014-03-12 09:13:13 +00002894 u32 state;
2895
David Weinehall36cdd012016-08-22 13:59:31 +03002896 if (IS_845G(dev_priv) || IS_I865G(dev_priv))
Ville Syrjälä0b87c242015-09-22 19:47:51 +03002897 state = I915_READ(CURCNTR(PIPE_A)) & CURSOR_ENABLE;
Chris Wilson065f2ec2014-03-12 09:13:13 +00002898 else
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03002899 state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
Chris Wilson065f2ec2014-03-12 09:13:13 +00002900
2901 return state;
2902}
2903
David Weinehall36cdd012016-08-22 13:59:31 +03002904static bool cursor_position(struct drm_i915_private *dev_priv,
2905 int pipe, int *x, int *y)
Chris Wilson065f2ec2014-03-12 09:13:13 +00002906{
Chris Wilson065f2ec2014-03-12 09:13:13 +00002907 u32 pos;
2908
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03002909 pos = I915_READ(CURPOS(pipe));
Chris Wilson065f2ec2014-03-12 09:13:13 +00002910
2911 *x = (pos >> CURSOR_X_SHIFT) & CURSOR_POS_MASK;
2912 if (pos & (CURSOR_POS_SIGN << CURSOR_X_SHIFT))
2913 *x = -*x;
2914
2915 *y = (pos >> CURSOR_Y_SHIFT) & CURSOR_POS_MASK;
2916 if (pos & (CURSOR_POS_SIGN << CURSOR_Y_SHIFT))
2917 *y = -*y;
2918
David Weinehall36cdd012016-08-22 13:59:31 +03002919 return cursor_active(dev_priv, pipe);
Chris Wilson065f2ec2014-03-12 09:13:13 +00002920}
2921
Robert Fekete3abc4e02015-10-27 16:58:32 +01002922static const char *plane_type(enum drm_plane_type type)
2923{
2924 switch (type) {
2925 case DRM_PLANE_TYPE_OVERLAY:
2926 return "OVL";
2927 case DRM_PLANE_TYPE_PRIMARY:
2928 return "PRI";
2929 case DRM_PLANE_TYPE_CURSOR:
2930 return "CUR";
2931 /*
2932 * Deliberately omitting default: to generate compiler warnings
2933 * when a new drm_plane_type gets added.
2934 */
2935 }
2936
2937 return "unknown";
2938}
2939
2940static const char *plane_rotation(unsigned int rotation)
2941{
2942 static char buf[48];
2943 /*
2944 * According to doc only one DRM_ROTATE_ is allowed but this
2945 * will print them all to visualize if the values are misused
2946 */
2947 snprintf(buf, sizeof(buf),
2948 "%s%s%s%s%s%s(0x%08x)",
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +03002949 (rotation & DRM_ROTATE_0) ? "0 " : "",
2950 (rotation & DRM_ROTATE_90) ? "90 " : "",
2951 (rotation & DRM_ROTATE_180) ? "180 " : "",
2952 (rotation & DRM_ROTATE_270) ? "270 " : "",
2953 (rotation & DRM_REFLECT_X) ? "FLIPX " : "",
2954 (rotation & DRM_REFLECT_Y) ? "FLIPY " : "",
Robert Fekete3abc4e02015-10-27 16:58:32 +01002955 rotation);
2956
2957 return buf;
2958}
2959
2960static void intel_plane_info(struct seq_file *m, struct intel_crtc *intel_crtc)
2961{
David Weinehall36cdd012016-08-22 13:59:31 +03002962 struct drm_i915_private *dev_priv = node_to_i915(m->private);
2963 struct drm_device *dev = &dev_priv->drm;
Robert Fekete3abc4e02015-10-27 16:58:32 +01002964 struct intel_plane *intel_plane;
2965
2966 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
2967 struct drm_plane_state *state;
2968 struct drm_plane *plane = &intel_plane->base;
Eric Engestromd3828142016-08-15 16:29:55 +01002969 char *format_name;
Robert Fekete3abc4e02015-10-27 16:58:32 +01002970
2971 if (!plane->state) {
2972 seq_puts(m, "plane->state is NULL!\n");
2973 continue;
2974 }
2975
2976 state = plane->state;
2977
Eric Engestrom90844f02016-08-15 01:02:38 +01002978 if (state->fb) {
2979 format_name = drm_get_format_name(state->fb->pixel_format);
2980 } else {
2981 format_name = kstrdup("N/A", GFP_KERNEL);
2982 }
2983
Robert Fekete3abc4e02015-10-27 16:58:32 +01002984 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",
2985 plane->base.id,
2986 plane_type(intel_plane->base.type),
2987 state->crtc_x, state->crtc_y,
2988 state->crtc_w, state->crtc_h,
2989 (state->src_x >> 16),
2990 ((state->src_x & 0xffff) * 15625) >> 10,
2991 (state->src_y >> 16),
2992 ((state->src_y & 0xffff) * 15625) >> 10,
2993 (state->src_w >> 16),
2994 ((state->src_w & 0xffff) * 15625) >> 10,
2995 (state->src_h >> 16),
2996 ((state->src_h & 0xffff) * 15625) >> 10,
Eric Engestrom90844f02016-08-15 01:02:38 +01002997 format_name,
Robert Fekete3abc4e02015-10-27 16:58:32 +01002998 plane_rotation(state->rotation));
Eric Engestrom90844f02016-08-15 01:02:38 +01002999
3000 kfree(format_name);
Robert Fekete3abc4e02015-10-27 16:58:32 +01003001 }
3002}
3003
3004static void intel_scaler_info(struct seq_file *m, struct intel_crtc *intel_crtc)
3005{
3006 struct intel_crtc_state *pipe_config;
3007 int num_scalers = intel_crtc->num_scalers;
3008 int i;
3009
3010 pipe_config = to_intel_crtc_state(intel_crtc->base.state);
3011
3012 /* Not all platformas have a scaler */
3013 if (num_scalers) {
3014 seq_printf(m, "\tnum_scalers=%d, scaler_users=%x scaler_id=%d",
3015 num_scalers,
3016 pipe_config->scaler_state.scaler_users,
3017 pipe_config->scaler_state.scaler_id);
3018
3019 for (i = 0; i < SKL_NUM_SCALERS; i++) {
3020 struct intel_scaler *sc =
3021 &pipe_config->scaler_state.scalers[i];
3022
3023 seq_printf(m, ", scalers[%d]: use=%s, mode=%x",
3024 i, yesno(sc->in_use), sc->mode);
3025 }
3026 seq_puts(m, "\n");
3027 } else {
3028 seq_puts(m, "\tNo scalers available on this platform\n");
3029 }
3030}
3031
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08003032static int i915_display_info(struct seq_file *m, void *unused)
3033{
David Weinehall36cdd012016-08-22 13:59:31 +03003034 struct drm_i915_private *dev_priv = node_to_i915(m->private);
3035 struct drm_device *dev = &dev_priv->drm;
Chris Wilson065f2ec2014-03-12 09:13:13 +00003036 struct intel_crtc *crtc;
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08003037 struct drm_connector *connector;
3038
Paulo Zanonib0e5ddf2014-04-01 14:55:10 -03003039 intel_runtime_pm_get(dev_priv);
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08003040 drm_modeset_lock_all(dev);
3041 seq_printf(m, "CRTC info\n");
3042 seq_printf(m, "---------\n");
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003043 for_each_intel_crtc(dev, crtc) {
Chris Wilson065f2ec2014-03-12 09:13:13 +00003044 bool active;
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02003045 struct intel_crtc_state *pipe_config;
Chris Wilson065f2ec2014-03-12 09:13:13 +00003046 int x, y;
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08003047
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02003048 pipe_config = to_intel_crtc_state(crtc->base.state);
3049
Robert Fekete3abc4e02015-10-27 16:58:32 +01003050 seq_printf(m, "CRTC %d: pipe: %c, active=%s, (size=%dx%d), dither=%s, bpp=%d\n",
Chris Wilson065f2ec2014-03-12 09:13:13 +00003051 crtc->base.base.id, pipe_name(crtc->pipe),
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02003052 yesno(pipe_config->base.active),
Robert Fekete3abc4e02015-10-27 16:58:32 +01003053 pipe_config->pipe_src_w, pipe_config->pipe_src_h,
3054 yesno(pipe_config->dither), pipe_config->pipe_bpp);
3055
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02003056 if (pipe_config->base.active) {
Chris Wilson065f2ec2014-03-12 09:13:13 +00003057 intel_crtc_info(m, crtc);
3058
David Weinehall36cdd012016-08-22 13:59:31 +03003059 active = cursor_position(dev_priv, crtc->pipe, &x, &y);
Chris Wilson57127ef2014-07-04 08:20:11 +01003060 seq_printf(m, "\tcursor visible? %s, position (%d, %d), size %dx%d, addr 0x%08x, active? %s\n",
Chris Wilson4b0e3332014-05-30 16:35:26 +03003061 yesno(crtc->cursor_base),
Matt Roper3dd512f2015-02-27 10:12:00 -08003062 x, y, crtc->base.cursor->state->crtc_w,
3063 crtc->base.cursor->state->crtc_h,
Chris Wilson57127ef2014-07-04 08:20:11 +01003064 crtc->cursor_addr, yesno(active));
Robert Fekete3abc4e02015-10-27 16:58:32 +01003065 intel_scaler_info(m, crtc);
3066 intel_plane_info(m, crtc);
Paulo Zanonia23dc652014-04-01 14:55:11 -03003067 }
Daniel Vettercace8412014-05-22 17:56:31 +02003068
3069 seq_printf(m, "\tunderrun reporting: cpu=%s pch=%s \n",
3070 yesno(!crtc->cpu_fifo_underrun_disabled),
3071 yesno(!crtc->pch_fifo_underrun_disabled));
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08003072 }
3073
3074 seq_printf(m, "\n");
3075 seq_printf(m, "Connector info\n");
3076 seq_printf(m, "--------------\n");
3077 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
3078 intel_connector_info(m, connector);
3079 }
3080 drm_modeset_unlock_all(dev);
Paulo Zanonib0e5ddf2014-04-01 14:55:10 -03003081 intel_runtime_pm_put(dev_priv);
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08003082
3083 return 0;
3084}
3085
Chris Wilson1b365952016-10-04 21:11:31 +01003086static int i915_engine_info(struct seq_file *m, void *unused)
3087{
3088 struct drm_i915_private *dev_priv = node_to_i915(m->private);
3089 struct intel_engine_cs *engine;
3090
3091 for_each_engine(engine, dev_priv) {
3092 struct intel_breadcrumbs *b = &engine->breadcrumbs;
3093 struct drm_i915_gem_request *rq;
3094 struct rb_node *rb;
3095 u64 addr;
3096
3097 seq_printf(m, "%s\n", engine->name);
3098 seq_printf(m, "\tcurrent seqno %x, last %x, hangcheck %x [score %d]\n",
3099 intel_engine_get_seqno(engine),
3100 engine->last_submitted_seqno,
3101 engine->hangcheck.seqno,
3102 engine->hangcheck.score);
3103
3104 rcu_read_lock();
3105
3106 seq_printf(m, "\tRequests:\n");
3107
3108 rq = list_first_entry(&engine->request_list,
3109 struct drm_i915_gem_request, link);
3110 if (&rq->link != &engine->request_list)
3111 print_request(m, rq, "\t\tfirst ");
3112
3113 rq = list_last_entry(&engine->request_list,
3114 struct drm_i915_gem_request, link);
3115 if (&rq->link != &engine->request_list)
3116 print_request(m, rq, "\t\tlast ");
3117
3118 rq = i915_gem_find_active_request(engine);
3119 if (rq) {
3120 print_request(m, rq, "\t\tactive ");
3121 seq_printf(m,
3122 "\t\t[head %04x, postfix %04x, tail %04x, batch 0x%08x_%08x]\n",
3123 rq->head, rq->postfix, rq->tail,
3124 rq->batch ? upper_32_bits(rq->batch->node.start) : ~0u,
3125 rq->batch ? lower_32_bits(rq->batch->node.start) : ~0u);
3126 }
3127
3128 seq_printf(m, "\tRING_START: 0x%08x [0x%08x]\n",
3129 I915_READ(RING_START(engine->mmio_base)),
3130 rq ? i915_ggtt_offset(rq->ring->vma) : 0);
3131 seq_printf(m, "\tRING_HEAD: 0x%08x [0x%08x]\n",
3132 I915_READ(RING_HEAD(engine->mmio_base)) & HEAD_ADDR,
3133 rq ? rq->ring->head : 0);
3134 seq_printf(m, "\tRING_TAIL: 0x%08x [0x%08x]\n",
3135 I915_READ(RING_TAIL(engine->mmio_base)) & TAIL_ADDR,
3136 rq ? rq->ring->tail : 0);
3137 seq_printf(m, "\tRING_CTL: 0x%08x [%s]\n",
3138 I915_READ(RING_CTL(engine->mmio_base)),
3139 I915_READ(RING_CTL(engine->mmio_base)) & (RING_WAIT | RING_WAIT_SEMAPHORE) ? "waiting" : "");
3140
3141 rcu_read_unlock();
3142
3143 addr = intel_engine_get_active_head(engine);
3144 seq_printf(m, "\tACTHD: 0x%08x_%08x\n",
3145 upper_32_bits(addr), lower_32_bits(addr));
3146 addr = intel_engine_get_last_batch_head(engine);
3147 seq_printf(m, "\tBBADDR: 0x%08x_%08x\n",
3148 upper_32_bits(addr), lower_32_bits(addr));
3149
3150 if (i915.enable_execlists) {
3151 u32 ptr, read, write;
3152
3153 seq_printf(m, "\tExeclist status: 0x%08x %08x\n",
3154 I915_READ(RING_EXECLIST_STATUS_LO(engine)),
3155 I915_READ(RING_EXECLIST_STATUS_HI(engine)));
3156
3157 ptr = I915_READ(RING_CONTEXT_STATUS_PTR(engine));
3158 read = GEN8_CSB_READ_PTR(ptr);
3159 write = GEN8_CSB_WRITE_PTR(ptr);
3160 seq_printf(m, "\tExeclist CSB read %d, write %d\n",
3161 read, write);
3162 if (read >= GEN8_CSB_ENTRIES)
3163 read = 0;
3164 if (write >= GEN8_CSB_ENTRIES)
3165 write = 0;
3166 if (read > write)
3167 write += GEN8_CSB_ENTRIES;
3168 while (read < write) {
3169 unsigned int idx = ++read % GEN8_CSB_ENTRIES;
3170
3171 seq_printf(m, "\tExeclist CSB[%d]: 0x%08x, context: %d\n",
3172 idx,
3173 I915_READ(RING_CONTEXT_STATUS_BUF_LO(engine, idx)),
3174 I915_READ(RING_CONTEXT_STATUS_BUF_HI(engine, idx)));
3175 }
3176
3177 rcu_read_lock();
3178 rq = READ_ONCE(engine->execlist_port[0].request);
3179 if (rq)
3180 print_request(m, rq, "\t\tELSP[0] ");
3181 else
3182 seq_printf(m, "\t\tELSP[0] idle\n");
3183 rq = READ_ONCE(engine->execlist_port[1].request);
3184 if (rq)
3185 print_request(m, rq, "\t\tELSP[1] ");
3186 else
3187 seq_printf(m, "\t\tELSP[1] idle\n");
3188 rcu_read_unlock();
3189 } else if (INTEL_GEN(dev_priv) > 6) {
3190 seq_printf(m, "\tPP_DIR_BASE: 0x%08x\n",
3191 I915_READ(RING_PP_DIR_BASE(engine)));
3192 seq_printf(m, "\tPP_DIR_BASE_READ: 0x%08x\n",
3193 I915_READ(RING_PP_DIR_BASE_READ(engine)));
3194 seq_printf(m, "\tPP_DIR_DCLV: 0x%08x\n",
3195 I915_READ(RING_PP_DIR_DCLV(engine)));
3196 }
3197
3198 spin_lock(&b->lock);
3199 for (rb = rb_first(&b->waiters); rb; rb = rb_next(rb)) {
3200 struct intel_wait *w = container_of(rb, typeof(*w), node);
3201
3202 seq_printf(m, "\t%s [%d] waiting for %x\n",
3203 w->tsk->comm, w->tsk->pid, w->seqno);
3204 }
3205 spin_unlock(&b->lock);
3206
3207 seq_puts(m, "\n");
3208 }
3209
3210 return 0;
3211}
3212
Ben Widawskye04934c2014-06-30 09:53:42 -07003213static int i915_semaphore_status(struct seq_file *m, void *unused)
3214{
David Weinehall36cdd012016-08-22 13:59:31 +03003215 struct drm_i915_private *dev_priv = node_to_i915(m->private);
3216 struct drm_device *dev = &dev_priv->drm;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003217 struct intel_engine_cs *engine;
David Weinehall36cdd012016-08-22 13:59:31 +03003218 int num_rings = INTEL_INFO(dev_priv)->num_rings;
Dave Gordonc3232b12016-03-23 18:19:53 +00003219 enum intel_engine_id id;
3220 int j, ret;
Ben Widawskye04934c2014-06-30 09:53:42 -07003221
Chris Wilson39df9192016-07-20 13:31:57 +01003222 if (!i915.semaphores) {
Ben Widawskye04934c2014-06-30 09:53:42 -07003223 seq_puts(m, "Semaphores are disabled\n");
3224 return 0;
3225 }
3226
3227 ret = mutex_lock_interruptible(&dev->struct_mutex);
3228 if (ret)
3229 return ret;
Paulo Zanoni03872062014-07-09 14:31:57 -03003230 intel_runtime_pm_get(dev_priv);
Ben Widawskye04934c2014-06-30 09:53:42 -07003231
David Weinehall36cdd012016-08-22 13:59:31 +03003232 if (IS_BROADWELL(dev_priv)) {
Ben Widawskye04934c2014-06-30 09:53:42 -07003233 struct page *page;
3234 uint64_t *seqno;
3235
Chris Wilson51d545d2016-08-15 10:49:02 +01003236 page = i915_gem_object_get_page(dev_priv->semaphore->obj, 0);
Ben Widawskye04934c2014-06-30 09:53:42 -07003237
3238 seqno = (uint64_t *)kmap_atomic(page);
Dave Gordonc3232b12016-03-23 18:19:53 +00003239 for_each_engine_id(engine, dev_priv, id) {
Ben Widawskye04934c2014-06-30 09:53:42 -07003240 uint64_t offset;
3241
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003242 seq_printf(m, "%s\n", engine->name);
Ben Widawskye04934c2014-06-30 09:53:42 -07003243
3244 seq_puts(m, " Last signal:");
3245 for (j = 0; j < num_rings; j++) {
Dave Gordonc3232b12016-03-23 18:19:53 +00003246 offset = id * I915_NUM_ENGINES + j;
Ben Widawskye04934c2014-06-30 09:53:42 -07003247 seq_printf(m, "0x%08llx (0x%02llx) ",
3248 seqno[offset], offset * 8);
3249 }
3250 seq_putc(m, '\n');
3251
3252 seq_puts(m, " Last wait: ");
3253 for (j = 0; j < num_rings; j++) {
Dave Gordonc3232b12016-03-23 18:19:53 +00003254 offset = id + (j * I915_NUM_ENGINES);
Ben Widawskye04934c2014-06-30 09:53:42 -07003255 seq_printf(m, "0x%08llx (0x%02llx) ",
3256 seqno[offset], offset * 8);
3257 }
3258 seq_putc(m, '\n');
3259
3260 }
3261 kunmap_atomic(seqno);
3262 } else {
3263 seq_puts(m, " Last signal:");
Dave Gordonb4ac5af2016-03-24 11:20:38 +00003264 for_each_engine(engine, dev_priv)
Ben Widawskye04934c2014-06-30 09:53:42 -07003265 for (j = 0; j < num_rings; j++)
3266 seq_printf(m, "0x%08x\n",
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003267 I915_READ(engine->semaphore.mbox.signal[j]));
Ben Widawskye04934c2014-06-30 09:53:42 -07003268 seq_putc(m, '\n');
3269 }
3270
3271 seq_puts(m, "\nSync seqno:\n");
Dave Gordonb4ac5af2016-03-24 11:20:38 +00003272 for_each_engine(engine, dev_priv) {
3273 for (j = 0; j < num_rings; j++)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003274 seq_printf(m, " 0x%08x ",
3275 engine->semaphore.sync_seqno[j]);
Ben Widawskye04934c2014-06-30 09:53:42 -07003276 seq_putc(m, '\n');
3277 }
3278 seq_putc(m, '\n');
3279
Paulo Zanoni03872062014-07-09 14:31:57 -03003280 intel_runtime_pm_put(dev_priv);
Ben Widawskye04934c2014-06-30 09:53:42 -07003281 mutex_unlock(&dev->struct_mutex);
3282 return 0;
3283}
3284
Daniel Vetter728e29d2014-06-25 22:01:53 +03003285static int i915_shared_dplls_info(struct seq_file *m, void *unused)
3286{
David Weinehall36cdd012016-08-22 13:59:31 +03003287 struct drm_i915_private *dev_priv = node_to_i915(m->private);
3288 struct drm_device *dev = &dev_priv->drm;
Daniel Vetter728e29d2014-06-25 22:01:53 +03003289 int i;
3290
3291 drm_modeset_lock_all(dev);
3292 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
3293 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
3294
3295 seq_printf(m, "DPLL%i: %s, id: %i\n", i, pll->name, pll->id);
Maarten Lankhorst2dd66ebd2016-03-14 09:27:52 +01003296 seq_printf(m, " crtc_mask: 0x%08x, active: 0x%x, on: %s\n",
3297 pll->config.crtc_mask, pll->active_mask, yesno(pll->on));
Daniel Vetter728e29d2014-06-25 22:01:53 +03003298 seq_printf(m, " tracked hardware state:\n");
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02003299 seq_printf(m, " dpll: 0x%08x\n", pll->config.hw_state.dpll);
3300 seq_printf(m, " dpll_md: 0x%08x\n",
3301 pll->config.hw_state.dpll_md);
3302 seq_printf(m, " fp0: 0x%08x\n", pll->config.hw_state.fp0);
3303 seq_printf(m, " fp1: 0x%08x\n", pll->config.hw_state.fp1);
3304 seq_printf(m, " wrpll: 0x%08x\n", pll->config.hw_state.wrpll);
Daniel Vetter728e29d2014-06-25 22:01:53 +03003305 }
3306 drm_modeset_unlock_all(dev);
3307
3308 return 0;
3309}
3310
Damien Lespiau1ed1ef92014-08-30 16:50:59 +01003311static int i915_wa_registers(struct seq_file *m, void *unused)
Arun Siluvery888b5992014-08-26 14:44:51 +01003312{
3313 int i;
3314 int ret;
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00003315 struct intel_engine_cs *engine;
David Weinehall36cdd012016-08-22 13:59:31 +03003316 struct drm_i915_private *dev_priv = node_to_i915(m->private);
3317 struct drm_device *dev = &dev_priv->drm;
Arun Siluvery33136b02016-01-21 21:43:47 +00003318 struct i915_workarounds *workarounds = &dev_priv->workarounds;
Dave Gordonc3232b12016-03-23 18:19:53 +00003319 enum intel_engine_id id;
Arun Siluvery888b5992014-08-26 14:44:51 +01003320
Arun Siluvery888b5992014-08-26 14:44:51 +01003321 ret = mutex_lock_interruptible(&dev->struct_mutex);
3322 if (ret)
3323 return ret;
3324
3325 intel_runtime_pm_get(dev_priv);
3326
Arun Siluvery33136b02016-01-21 21:43:47 +00003327 seq_printf(m, "Workarounds applied: %d\n", workarounds->count);
Dave Gordonc3232b12016-03-23 18:19:53 +00003328 for_each_engine_id(engine, dev_priv, id)
Arun Siluvery33136b02016-01-21 21:43:47 +00003329 seq_printf(m, "HW whitelist count for %s: %d\n",
Dave Gordonc3232b12016-03-23 18:19:53 +00003330 engine->name, workarounds->hw_whitelist_count[id]);
Arun Siluvery33136b02016-01-21 21:43:47 +00003331 for (i = 0; i < workarounds->count; ++i) {
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003332 i915_reg_t addr;
3333 u32 mask, value, read;
Mika Kuoppala2fa60f62014-10-07 17:21:27 +03003334 bool ok;
Arun Siluvery888b5992014-08-26 14:44:51 +01003335
Arun Siluvery33136b02016-01-21 21:43:47 +00003336 addr = workarounds->reg[i].addr;
3337 mask = workarounds->reg[i].mask;
3338 value = workarounds->reg[i].value;
Mika Kuoppala2fa60f62014-10-07 17:21:27 +03003339 read = I915_READ(addr);
3340 ok = (value & mask) == (read & mask);
3341 seq_printf(m, "0x%X: 0x%08X, mask: 0x%08X, read: 0x%08x, status: %s\n",
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003342 i915_mmio_reg_offset(addr), value, mask, read, ok ? "OK" : "FAIL");
Arun Siluvery888b5992014-08-26 14:44:51 +01003343 }
3344
3345 intel_runtime_pm_put(dev_priv);
3346 mutex_unlock(&dev->struct_mutex);
3347
3348 return 0;
3349}
3350
Damien Lespiauc5511e42014-11-04 17:06:51 +00003351static int i915_ddb_info(struct seq_file *m, void *unused)
3352{
David Weinehall36cdd012016-08-22 13:59:31 +03003353 struct drm_i915_private *dev_priv = node_to_i915(m->private);
3354 struct drm_device *dev = &dev_priv->drm;
Damien Lespiauc5511e42014-11-04 17:06:51 +00003355 struct skl_ddb_allocation *ddb;
3356 struct skl_ddb_entry *entry;
3357 enum pipe pipe;
3358 int plane;
3359
David Weinehall36cdd012016-08-22 13:59:31 +03003360 if (INTEL_GEN(dev_priv) < 9)
Damien Lespiau2fcffe12014-12-03 17:33:24 +00003361 return 0;
3362
Damien Lespiauc5511e42014-11-04 17:06:51 +00003363 drm_modeset_lock_all(dev);
3364
3365 ddb = &dev_priv->wm.skl_hw.ddb;
3366
3367 seq_printf(m, "%-15s%8s%8s%8s\n", "", "Start", "End", "Size");
3368
3369 for_each_pipe(dev_priv, pipe) {
3370 seq_printf(m, "Pipe %c\n", pipe_name(pipe));
3371
Damien Lespiaudd740782015-02-28 14:54:08 +00003372 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiauc5511e42014-11-04 17:06:51 +00003373 entry = &ddb->plane[pipe][plane];
3374 seq_printf(m, " Plane%-8d%8u%8u%8u\n", plane + 1,
3375 entry->start, entry->end,
3376 skl_ddb_entry_size(entry));
3377 }
3378
Matt Roper4969d332015-09-24 15:53:10 -07003379 entry = &ddb->plane[pipe][PLANE_CURSOR];
Damien Lespiauc5511e42014-11-04 17:06:51 +00003380 seq_printf(m, " %-13s%8u%8u%8u\n", "Cursor", entry->start,
3381 entry->end, skl_ddb_entry_size(entry));
3382 }
3383
3384 drm_modeset_unlock_all(dev);
3385
3386 return 0;
3387}
3388
Vandana Kannana54746e2015-03-03 20:53:10 +05303389static void drrs_status_per_crtc(struct seq_file *m,
David Weinehall36cdd012016-08-22 13:59:31 +03003390 struct drm_device *dev,
3391 struct intel_crtc *intel_crtc)
Vandana Kannana54746e2015-03-03 20:53:10 +05303392{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003393 struct drm_i915_private *dev_priv = to_i915(dev);
Vandana Kannana54746e2015-03-03 20:53:10 +05303394 struct i915_drrs *drrs = &dev_priv->drrs;
3395 int vrefresh = 0;
Maarten Lankhorst26875fe2016-06-20 15:57:36 +02003396 struct drm_connector *connector;
Vandana Kannana54746e2015-03-03 20:53:10 +05303397
Maarten Lankhorst26875fe2016-06-20 15:57:36 +02003398 drm_for_each_connector(connector, dev) {
3399 if (connector->state->crtc != &intel_crtc->base)
3400 continue;
3401
3402 seq_printf(m, "%s:\n", connector->name);
Vandana Kannana54746e2015-03-03 20:53:10 +05303403 }
3404
3405 if (dev_priv->vbt.drrs_type == STATIC_DRRS_SUPPORT)
3406 seq_puts(m, "\tVBT: DRRS_type: Static");
3407 else if (dev_priv->vbt.drrs_type == SEAMLESS_DRRS_SUPPORT)
3408 seq_puts(m, "\tVBT: DRRS_type: Seamless");
3409 else if (dev_priv->vbt.drrs_type == DRRS_NOT_SUPPORTED)
3410 seq_puts(m, "\tVBT: DRRS_type: None");
3411 else
3412 seq_puts(m, "\tVBT: DRRS_type: FIXME: Unrecognized Value");
3413
3414 seq_puts(m, "\n\n");
3415
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02003416 if (to_intel_crtc_state(intel_crtc->base.state)->has_drrs) {
Vandana Kannana54746e2015-03-03 20:53:10 +05303417 struct intel_panel *panel;
3418
3419 mutex_lock(&drrs->mutex);
3420 /* DRRS Supported */
3421 seq_puts(m, "\tDRRS Supported: Yes\n");
3422
3423 /* disable_drrs() will make drrs->dp NULL */
3424 if (!drrs->dp) {
3425 seq_puts(m, "Idleness DRRS: Disabled");
3426 mutex_unlock(&drrs->mutex);
3427 return;
3428 }
3429
3430 panel = &drrs->dp->attached_connector->panel;
3431 seq_printf(m, "\t\tBusy_frontbuffer_bits: 0x%X",
3432 drrs->busy_frontbuffer_bits);
3433
3434 seq_puts(m, "\n\t\t");
3435 if (drrs->refresh_rate_type == DRRS_HIGH_RR) {
3436 seq_puts(m, "DRRS_State: DRRS_HIGH_RR\n");
3437 vrefresh = panel->fixed_mode->vrefresh;
3438 } else if (drrs->refresh_rate_type == DRRS_LOW_RR) {
3439 seq_puts(m, "DRRS_State: DRRS_LOW_RR\n");
3440 vrefresh = panel->downclock_mode->vrefresh;
3441 } else {
3442 seq_printf(m, "DRRS_State: Unknown(%d)\n",
3443 drrs->refresh_rate_type);
3444 mutex_unlock(&drrs->mutex);
3445 return;
3446 }
3447 seq_printf(m, "\t\tVrefresh: %d", vrefresh);
3448
3449 seq_puts(m, "\n\t\t");
3450 mutex_unlock(&drrs->mutex);
3451 } else {
3452 /* DRRS not supported. Print the VBT parameter*/
3453 seq_puts(m, "\tDRRS Supported : No");
3454 }
3455 seq_puts(m, "\n");
3456}
3457
3458static int i915_drrs_status(struct seq_file *m, void *unused)
3459{
David Weinehall36cdd012016-08-22 13:59:31 +03003460 struct drm_i915_private *dev_priv = node_to_i915(m->private);
3461 struct drm_device *dev = &dev_priv->drm;
Vandana Kannana54746e2015-03-03 20:53:10 +05303462 struct intel_crtc *intel_crtc;
3463 int active_crtc_cnt = 0;
3464
Maarten Lankhorst26875fe2016-06-20 15:57:36 +02003465 drm_modeset_lock_all(dev);
Vandana Kannana54746e2015-03-03 20:53:10 +05303466 for_each_intel_crtc(dev, intel_crtc) {
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02003467 if (intel_crtc->base.state->active) {
Vandana Kannana54746e2015-03-03 20:53:10 +05303468 active_crtc_cnt++;
3469 seq_printf(m, "\nCRTC %d: ", active_crtc_cnt);
3470
3471 drrs_status_per_crtc(m, dev, intel_crtc);
3472 }
Vandana Kannana54746e2015-03-03 20:53:10 +05303473 }
Maarten Lankhorst26875fe2016-06-20 15:57:36 +02003474 drm_modeset_unlock_all(dev);
Vandana Kannana54746e2015-03-03 20:53:10 +05303475
3476 if (!active_crtc_cnt)
3477 seq_puts(m, "No active crtc found\n");
3478
3479 return 0;
3480}
3481
Damien Lespiau07144422013-10-15 18:55:40 +01003482struct pipe_crc_info {
3483 const char *name;
David Weinehall36cdd012016-08-22 13:59:31 +03003484 struct drm_i915_private *dev_priv;
Damien Lespiau07144422013-10-15 18:55:40 +01003485 enum pipe pipe;
3486};
3487
Dave Airlie11bed952014-05-12 15:22:27 +10003488static int i915_dp_mst_info(struct seq_file *m, void *unused)
3489{
David Weinehall36cdd012016-08-22 13:59:31 +03003490 struct drm_i915_private *dev_priv = node_to_i915(m->private);
3491 struct drm_device *dev = &dev_priv->drm;
Dave Airlie11bed952014-05-12 15:22:27 +10003492 struct intel_encoder *intel_encoder;
3493 struct intel_digital_port *intel_dig_port;
Maarten Lankhorstb6dabe32016-06-20 15:57:37 +02003494 struct drm_connector *connector;
3495
Dave Airlie11bed952014-05-12 15:22:27 +10003496 drm_modeset_lock_all(dev);
Maarten Lankhorstb6dabe32016-06-20 15:57:37 +02003497 drm_for_each_connector(connector, dev) {
3498 if (connector->connector_type != DRM_MODE_CONNECTOR_DisplayPort)
Dave Airlie11bed952014-05-12 15:22:27 +10003499 continue;
Maarten Lankhorstb6dabe32016-06-20 15:57:37 +02003500
3501 intel_encoder = intel_attached_encoder(connector);
3502 if (!intel_encoder || intel_encoder->type == INTEL_OUTPUT_DP_MST)
3503 continue;
3504
3505 intel_dig_port = enc_to_dig_port(&intel_encoder->base);
Dave Airlie11bed952014-05-12 15:22:27 +10003506 if (!intel_dig_port->dp.can_mst)
3507 continue;
Maarten Lankhorstb6dabe32016-06-20 15:57:37 +02003508
Jim Bride40ae80c2016-04-14 10:18:37 -07003509 seq_printf(m, "MST Source Port %c\n",
3510 port_name(intel_dig_port->port));
Dave Airlie11bed952014-05-12 15:22:27 +10003511 drm_dp_mst_dump_topology(m, &intel_dig_port->dp.mst_mgr);
3512 }
3513 drm_modeset_unlock_all(dev);
3514 return 0;
3515}
3516
Damien Lespiau07144422013-10-15 18:55:40 +01003517static int i915_pipe_crc_open(struct inode *inode, struct file *filep)
Shuang He8bf1e9f2013-10-15 18:55:27 +01003518{
Damien Lespiaube5c7a92013-10-15 18:55:41 +01003519 struct pipe_crc_info *info = inode->i_private;
David Weinehall36cdd012016-08-22 13:59:31 +03003520 struct drm_i915_private *dev_priv = info->dev_priv;
Damien Lespiaube5c7a92013-10-15 18:55:41 +01003521 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe];
3522
David Weinehall36cdd012016-08-22 13:59:31 +03003523 if (info->pipe >= INTEL_INFO(dev_priv)->num_pipes)
Daniel Vetter7eb1c492013-11-14 11:30:43 +01003524 return -ENODEV;
3525
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003526 spin_lock_irq(&pipe_crc->lock);
3527
3528 if (pipe_crc->opened) {
3529 spin_unlock_irq(&pipe_crc->lock);
Damien Lespiaube5c7a92013-10-15 18:55:41 +01003530 return -EBUSY; /* already open */
3531 }
3532
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003533 pipe_crc->opened = true;
Damien Lespiau07144422013-10-15 18:55:40 +01003534 filep->private_data = inode->i_private;
3535
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003536 spin_unlock_irq(&pipe_crc->lock);
3537
Damien Lespiau07144422013-10-15 18:55:40 +01003538 return 0;
3539}
3540
3541static int i915_pipe_crc_release(struct inode *inode, struct file *filep)
3542{
Damien Lespiaube5c7a92013-10-15 18:55:41 +01003543 struct pipe_crc_info *info = inode->i_private;
David Weinehall36cdd012016-08-22 13:59:31 +03003544 struct drm_i915_private *dev_priv = info->dev_priv;
Damien Lespiaube5c7a92013-10-15 18:55:41 +01003545 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe];
3546
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003547 spin_lock_irq(&pipe_crc->lock);
3548 pipe_crc->opened = false;
3549 spin_unlock_irq(&pipe_crc->lock);
Damien Lespiaube5c7a92013-10-15 18:55:41 +01003550
Damien Lespiau07144422013-10-15 18:55:40 +01003551 return 0;
3552}
3553
3554/* (6 fields, 8 chars each, space separated (5) + '\n') */
3555#define PIPE_CRC_LINE_LEN (6 * 8 + 5 + 1)
3556/* account for \'0' */
3557#define PIPE_CRC_BUFFER_LEN (PIPE_CRC_LINE_LEN + 1)
3558
3559static int pipe_crc_data_count(struct intel_pipe_crc *pipe_crc)
3560{
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003561 assert_spin_locked(&pipe_crc->lock);
3562 return CIRC_CNT(pipe_crc->head, pipe_crc->tail,
3563 INTEL_PIPE_CRC_ENTRIES_NR);
Damien Lespiau07144422013-10-15 18:55:40 +01003564}
Shuang He8bf1e9f2013-10-15 18:55:27 +01003565
Damien Lespiau07144422013-10-15 18:55:40 +01003566static ssize_t
3567i915_pipe_crc_read(struct file *filep, char __user *user_buf, size_t count,
3568 loff_t *pos)
3569{
3570 struct pipe_crc_info *info = filep->private_data;
David Weinehall36cdd012016-08-22 13:59:31 +03003571 struct drm_i915_private *dev_priv = info->dev_priv;
Damien Lespiau07144422013-10-15 18:55:40 +01003572 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe];
3573 char buf[PIPE_CRC_BUFFER_LEN];
Ville Syrjälä9ad6d992014-12-09 21:28:32 +02003574 int n_entries;
Damien Lespiau07144422013-10-15 18:55:40 +01003575 ssize_t bytes_read;
3576
3577 /*
3578 * Don't allow user space to provide buffers not big enough to hold
3579 * a line of data.
3580 */
3581 if (count < PIPE_CRC_LINE_LEN)
3582 return -EINVAL;
3583
3584 if (pipe_crc->source == INTEL_PIPE_CRC_SOURCE_NONE)
3585 return 0;
3586
3587 /* nothing to read */
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003588 spin_lock_irq(&pipe_crc->lock);
Damien Lespiau07144422013-10-15 18:55:40 +01003589 while (pipe_crc_data_count(pipe_crc) == 0) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003590 int ret;
Damien Lespiau07144422013-10-15 18:55:40 +01003591
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003592 if (filep->f_flags & O_NONBLOCK) {
3593 spin_unlock_irq(&pipe_crc->lock);
3594 return -EAGAIN;
3595 }
3596
3597 ret = wait_event_interruptible_lock_irq(pipe_crc->wq,
3598 pipe_crc_data_count(pipe_crc), pipe_crc->lock);
3599 if (ret) {
3600 spin_unlock_irq(&pipe_crc->lock);
3601 return ret;
3602 }
Damien Lespiau07144422013-10-15 18:55:40 +01003603 }
3604
3605 /* We now have one or more entries to read */
Ville Syrjälä9ad6d992014-12-09 21:28:32 +02003606 n_entries = count / PIPE_CRC_LINE_LEN;
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003607
Damien Lespiau07144422013-10-15 18:55:40 +01003608 bytes_read = 0;
Ville Syrjälä9ad6d992014-12-09 21:28:32 +02003609 while (n_entries > 0) {
3610 struct intel_pipe_crc_entry *entry =
3611 &pipe_crc->entries[pipe_crc->tail];
Damien Lespiau07144422013-10-15 18:55:40 +01003612
Ville Syrjälä9ad6d992014-12-09 21:28:32 +02003613 if (CIRC_CNT(pipe_crc->head, pipe_crc->tail,
3614 INTEL_PIPE_CRC_ENTRIES_NR) < 1)
3615 break;
3616
3617 BUILD_BUG_ON_NOT_POWER_OF_2(INTEL_PIPE_CRC_ENTRIES_NR);
3618 pipe_crc->tail = (pipe_crc->tail + 1) & (INTEL_PIPE_CRC_ENTRIES_NR - 1);
3619
Damien Lespiau07144422013-10-15 18:55:40 +01003620 bytes_read += snprintf(buf, PIPE_CRC_BUFFER_LEN,
3621 "%8u %8x %8x %8x %8x %8x\n",
3622 entry->frame, entry->crc[0],
3623 entry->crc[1], entry->crc[2],
3624 entry->crc[3], entry->crc[4]);
3625
Ville Syrjälä9ad6d992014-12-09 21:28:32 +02003626 spin_unlock_irq(&pipe_crc->lock);
3627
Rodrigo Vivi4e9121e2016-08-03 08:22:57 -07003628 if (copy_to_user(user_buf, buf, PIPE_CRC_LINE_LEN))
Damien Lespiau07144422013-10-15 18:55:40 +01003629 return -EFAULT;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01003630
Ville Syrjälä9ad6d992014-12-09 21:28:32 +02003631 user_buf += PIPE_CRC_LINE_LEN;
3632 n_entries--;
Shuang He8bf1e9f2013-10-15 18:55:27 +01003633
Ville Syrjälä9ad6d992014-12-09 21:28:32 +02003634 spin_lock_irq(&pipe_crc->lock);
3635 }
3636
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003637 spin_unlock_irq(&pipe_crc->lock);
3638
Damien Lespiau07144422013-10-15 18:55:40 +01003639 return bytes_read;
3640}
3641
3642static const struct file_operations i915_pipe_crc_fops = {
3643 .owner = THIS_MODULE,
3644 .open = i915_pipe_crc_open,
3645 .read = i915_pipe_crc_read,
3646 .release = i915_pipe_crc_release,
3647};
3648
3649static struct pipe_crc_info i915_pipe_crc_data[I915_MAX_PIPES] = {
3650 {
3651 .name = "i915_pipe_A_crc",
3652 .pipe = PIPE_A,
3653 },
3654 {
3655 .name = "i915_pipe_B_crc",
3656 .pipe = PIPE_B,
3657 },
3658 {
3659 .name = "i915_pipe_C_crc",
3660 .pipe = PIPE_C,
3661 },
3662};
3663
3664static int i915_pipe_crc_create(struct dentry *root, struct drm_minor *minor,
3665 enum pipe pipe)
3666{
David Weinehall36cdd012016-08-22 13:59:31 +03003667 struct drm_i915_private *dev_priv = to_i915(minor->dev);
Damien Lespiau07144422013-10-15 18:55:40 +01003668 struct dentry *ent;
3669 struct pipe_crc_info *info = &i915_pipe_crc_data[pipe];
3670
David Weinehall36cdd012016-08-22 13:59:31 +03003671 info->dev_priv = dev_priv;
Damien Lespiau07144422013-10-15 18:55:40 +01003672 ent = debugfs_create_file(info->name, S_IRUGO, root, info,
3673 &i915_pipe_crc_fops);
Wei Yongjunf3c5fe92013-12-16 14:13:25 +08003674 if (!ent)
3675 return -ENOMEM;
Damien Lespiau07144422013-10-15 18:55:40 +01003676
3677 return drm_add_fake_info_node(minor, ent, info);
Shuang He8bf1e9f2013-10-15 18:55:27 +01003678}
3679
Daniel Vettere8dfcf72013-10-16 11:51:54 +02003680static const char * const pipe_crc_sources[] = {
Daniel Vetter926321d2013-10-16 13:30:34 +02003681 "none",
3682 "plane1",
3683 "plane2",
3684 "pf",
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003685 "pipe",
Daniel Vetter3d099a02013-10-16 22:55:58 +02003686 "TV",
3687 "DP-B",
3688 "DP-C",
3689 "DP-D",
Daniel Vetter46a19182013-11-01 10:50:20 +01003690 "auto",
Daniel Vetter926321d2013-10-16 13:30:34 +02003691};
3692
3693static const char *pipe_crc_source_name(enum intel_pipe_crc_source source)
3694{
3695 BUILD_BUG_ON(ARRAY_SIZE(pipe_crc_sources) != INTEL_PIPE_CRC_SOURCE_MAX);
3696 return pipe_crc_sources[source];
3697}
3698
Damien Lespiaubd9db022013-10-15 18:55:36 +01003699static int display_crc_ctl_show(struct seq_file *m, void *data)
Daniel Vetter926321d2013-10-16 13:30:34 +02003700{
David Weinehall36cdd012016-08-22 13:59:31 +03003701 struct drm_i915_private *dev_priv = m->private;
Daniel Vetter926321d2013-10-16 13:30:34 +02003702 int i;
3703
3704 for (i = 0; i < I915_MAX_PIPES; i++)
3705 seq_printf(m, "%c %s\n", pipe_name(i),
3706 pipe_crc_source_name(dev_priv->pipe_crc[i].source));
3707
3708 return 0;
3709}
3710
Damien Lespiaubd9db022013-10-15 18:55:36 +01003711static int display_crc_ctl_open(struct inode *inode, struct file *file)
Daniel Vetter926321d2013-10-16 13:30:34 +02003712{
David Weinehall36cdd012016-08-22 13:59:31 +03003713 return single_open(file, display_crc_ctl_show, inode->i_private);
Daniel Vetter926321d2013-10-16 13:30:34 +02003714}
3715
Daniel Vetter46a19182013-11-01 10:50:20 +01003716static int i8xx_pipe_crc_ctl_reg(enum intel_pipe_crc_source *source,
Daniel Vetter52f843f2013-10-21 17:26:38 +02003717 uint32_t *val)
3718{
Daniel Vetter46a19182013-11-01 10:50:20 +01003719 if (*source == INTEL_PIPE_CRC_SOURCE_AUTO)
3720 *source = INTEL_PIPE_CRC_SOURCE_PIPE;
3721
3722 switch (*source) {
Daniel Vetter52f843f2013-10-21 17:26:38 +02003723 case INTEL_PIPE_CRC_SOURCE_PIPE:
3724 *val = PIPE_CRC_ENABLE | PIPE_CRC_INCLUDE_BORDER_I8XX;
3725 break;
3726 case INTEL_PIPE_CRC_SOURCE_NONE:
3727 *val = 0;
3728 break;
3729 default:
3730 return -EINVAL;
3731 }
3732
3733 return 0;
3734}
3735
David Weinehall36cdd012016-08-22 13:59:31 +03003736static int i9xx_pipe_crc_auto_source(struct drm_i915_private *dev_priv,
3737 enum pipe pipe,
Daniel Vetter46a19182013-11-01 10:50:20 +01003738 enum intel_pipe_crc_source *source)
3739{
David Weinehall36cdd012016-08-22 13:59:31 +03003740 struct drm_device *dev = &dev_priv->drm;
Daniel Vetter46a19182013-11-01 10:50:20 +01003741 struct intel_encoder *encoder;
3742 struct intel_crtc *crtc;
Daniel Vetter26756802013-11-01 10:50:23 +01003743 struct intel_digital_port *dig_port;
Daniel Vetter46a19182013-11-01 10:50:20 +01003744 int ret = 0;
3745
3746 *source = INTEL_PIPE_CRC_SOURCE_PIPE;
3747
Daniel Vetter6e9f7982014-05-29 23:54:47 +02003748 drm_modeset_lock_all(dev);
Damien Lespiaub2784e12014-08-05 11:29:37 +01003749 for_each_intel_encoder(dev, encoder) {
Daniel Vetter46a19182013-11-01 10:50:20 +01003750 if (!encoder->base.crtc)
3751 continue;
3752
3753 crtc = to_intel_crtc(encoder->base.crtc);
3754
3755 if (crtc->pipe != pipe)
3756 continue;
3757
3758 switch (encoder->type) {
3759 case INTEL_OUTPUT_TVOUT:
3760 *source = INTEL_PIPE_CRC_SOURCE_TV;
3761 break;
Ville Syrjäläcca05022016-06-22 21:57:06 +03003762 case INTEL_OUTPUT_DP:
Daniel Vetter46a19182013-11-01 10:50:20 +01003763 case INTEL_OUTPUT_EDP:
Daniel Vetter26756802013-11-01 10:50:23 +01003764 dig_port = enc_to_dig_port(&encoder->base);
3765 switch (dig_port->port) {
3766 case PORT_B:
3767 *source = INTEL_PIPE_CRC_SOURCE_DP_B;
3768 break;
3769 case PORT_C:
3770 *source = INTEL_PIPE_CRC_SOURCE_DP_C;
3771 break;
3772 case PORT_D:
3773 *source = INTEL_PIPE_CRC_SOURCE_DP_D;
3774 break;
3775 default:
3776 WARN(1, "nonexisting DP port %c\n",
3777 port_name(dig_port->port));
3778 break;
3779 }
Daniel Vetter46a19182013-11-01 10:50:20 +01003780 break;
Paulo Zanoni6847d71b2014-10-27 17:47:52 -02003781 default:
3782 break;
Daniel Vetter46a19182013-11-01 10:50:20 +01003783 }
3784 }
Daniel Vetter6e9f7982014-05-29 23:54:47 +02003785 drm_modeset_unlock_all(dev);
Daniel Vetter46a19182013-11-01 10:50:20 +01003786
3787 return ret;
3788}
3789
David Weinehall36cdd012016-08-22 13:59:31 +03003790static int vlv_pipe_crc_ctl_reg(struct drm_i915_private *dev_priv,
Daniel Vetter46a19182013-11-01 10:50:20 +01003791 enum pipe pipe,
3792 enum intel_pipe_crc_source *source,
Daniel Vetter7ac01292013-10-18 16:37:06 +02003793 uint32_t *val)
3794{
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003795 bool need_stable_symbols = false;
3796
Daniel Vetter46a19182013-11-01 10:50:20 +01003797 if (*source == INTEL_PIPE_CRC_SOURCE_AUTO) {
David Weinehall36cdd012016-08-22 13:59:31 +03003798 int ret = i9xx_pipe_crc_auto_source(dev_priv, pipe, source);
Daniel Vetter46a19182013-11-01 10:50:20 +01003799 if (ret)
3800 return ret;
3801 }
3802
3803 switch (*source) {
Daniel Vetter7ac01292013-10-18 16:37:06 +02003804 case INTEL_PIPE_CRC_SOURCE_PIPE:
3805 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PIPE_VLV;
3806 break;
3807 case INTEL_PIPE_CRC_SOURCE_DP_B:
3808 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_B_VLV;
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003809 need_stable_symbols = true;
Daniel Vetter7ac01292013-10-18 16:37:06 +02003810 break;
3811 case INTEL_PIPE_CRC_SOURCE_DP_C:
3812 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_C_VLV;
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003813 need_stable_symbols = true;
Daniel Vetter7ac01292013-10-18 16:37:06 +02003814 break;
Ville Syrjälä2be57922014-12-09 21:28:29 +02003815 case INTEL_PIPE_CRC_SOURCE_DP_D:
David Weinehall36cdd012016-08-22 13:59:31 +03003816 if (!IS_CHERRYVIEW(dev_priv))
Ville Syrjälä2be57922014-12-09 21:28:29 +02003817 return -EINVAL;
3818 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_D_VLV;
3819 need_stable_symbols = true;
3820 break;
Daniel Vetter7ac01292013-10-18 16:37:06 +02003821 case INTEL_PIPE_CRC_SOURCE_NONE:
3822 *val = 0;
3823 break;
3824 default:
3825 return -EINVAL;
3826 }
3827
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003828 /*
3829 * When the pipe CRC tap point is after the transcoders we need
3830 * to tweak symbol-level features to produce a deterministic series of
3831 * symbols for a given frame. We need to reset those features only once
3832 * a frame (instead of every nth symbol):
3833 * - DC-balance: used to ensure a better clock recovery from the data
3834 * link (SDVO)
3835 * - DisplayPort scrambling: used for EMI reduction
3836 */
3837 if (need_stable_symbols) {
3838 uint32_t tmp = I915_READ(PORT_DFT2_G4X);
3839
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003840 tmp |= DC_BALANCE_RESET_VLV;
Ville Syrjäläeb736672014-12-09 21:28:28 +02003841 switch (pipe) {
3842 case PIPE_A:
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003843 tmp |= PIPE_A_SCRAMBLE_RESET;
Ville Syrjäläeb736672014-12-09 21:28:28 +02003844 break;
3845 case PIPE_B:
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003846 tmp |= PIPE_B_SCRAMBLE_RESET;
Ville Syrjäläeb736672014-12-09 21:28:28 +02003847 break;
3848 case PIPE_C:
3849 tmp |= PIPE_C_SCRAMBLE_RESET;
3850 break;
3851 default:
3852 return -EINVAL;
3853 }
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003854 I915_WRITE(PORT_DFT2_G4X, tmp);
3855 }
3856
Daniel Vetter7ac01292013-10-18 16:37:06 +02003857 return 0;
3858}
3859
David Weinehall36cdd012016-08-22 13:59:31 +03003860static int i9xx_pipe_crc_ctl_reg(struct drm_i915_private *dev_priv,
Daniel Vetter46a19182013-11-01 10:50:20 +01003861 enum pipe pipe,
3862 enum intel_pipe_crc_source *source,
Daniel Vetter4b79ebf2013-10-16 22:55:59 +02003863 uint32_t *val)
3864{
Daniel Vetter84093602013-11-01 10:50:21 +01003865 bool need_stable_symbols = false;
3866
Daniel Vetter46a19182013-11-01 10:50:20 +01003867 if (*source == INTEL_PIPE_CRC_SOURCE_AUTO) {
David Weinehall36cdd012016-08-22 13:59:31 +03003868 int ret = i9xx_pipe_crc_auto_source(dev_priv, pipe, source);
Daniel Vetter46a19182013-11-01 10:50:20 +01003869 if (ret)
3870 return ret;
3871 }
3872
3873 switch (*source) {
Daniel Vetter4b79ebf2013-10-16 22:55:59 +02003874 case INTEL_PIPE_CRC_SOURCE_PIPE:
3875 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PIPE_I9XX;
3876 break;
3877 case INTEL_PIPE_CRC_SOURCE_TV:
David Weinehall36cdd012016-08-22 13:59:31 +03003878 if (!SUPPORTS_TV(dev_priv))
Daniel Vetter4b79ebf2013-10-16 22:55:59 +02003879 return -EINVAL;
3880 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_TV_PRE;
3881 break;
3882 case INTEL_PIPE_CRC_SOURCE_DP_B:
David Weinehall36cdd012016-08-22 13:59:31 +03003883 if (!IS_G4X(dev_priv))
Daniel Vetter4b79ebf2013-10-16 22:55:59 +02003884 return -EINVAL;
3885 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_B_G4X;
Daniel Vetter84093602013-11-01 10:50:21 +01003886 need_stable_symbols = true;
Daniel Vetter4b79ebf2013-10-16 22:55:59 +02003887 break;
3888 case INTEL_PIPE_CRC_SOURCE_DP_C:
David Weinehall36cdd012016-08-22 13:59:31 +03003889 if (!IS_G4X(dev_priv))
Daniel Vetter4b79ebf2013-10-16 22:55:59 +02003890 return -EINVAL;
3891 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_C_G4X;
Daniel Vetter84093602013-11-01 10:50:21 +01003892 need_stable_symbols = true;
Daniel Vetter4b79ebf2013-10-16 22:55:59 +02003893 break;
3894 case INTEL_PIPE_CRC_SOURCE_DP_D:
David Weinehall36cdd012016-08-22 13:59:31 +03003895 if (!IS_G4X(dev_priv))
Daniel Vetter4b79ebf2013-10-16 22:55:59 +02003896 return -EINVAL;
3897 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_D_G4X;
Daniel Vetter84093602013-11-01 10:50:21 +01003898 need_stable_symbols = true;
Daniel Vetter4b79ebf2013-10-16 22:55:59 +02003899 break;
3900 case INTEL_PIPE_CRC_SOURCE_NONE:
3901 *val = 0;
3902 break;
3903 default:
3904 return -EINVAL;
3905 }
3906
Daniel Vetter84093602013-11-01 10:50:21 +01003907 /*
3908 * When the pipe CRC tap point is after the transcoders we need
3909 * to tweak symbol-level features to produce a deterministic series of
3910 * symbols for a given frame. We need to reset those features only once
3911 * a frame (instead of every nth symbol):
3912 * - DC-balance: used to ensure a better clock recovery from the data
3913 * link (SDVO)
3914 * - DisplayPort scrambling: used for EMI reduction
3915 */
3916 if (need_stable_symbols) {
3917 uint32_t tmp = I915_READ(PORT_DFT2_G4X);
3918
David Weinehall36cdd012016-08-22 13:59:31 +03003919 WARN_ON(!IS_G4X(dev_priv));
Daniel Vetter84093602013-11-01 10:50:21 +01003920
3921 I915_WRITE(PORT_DFT_I9XX,
3922 I915_READ(PORT_DFT_I9XX) | DC_BALANCE_RESET);
3923
3924 if (pipe == PIPE_A)
3925 tmp |= PIPE_A_SCRAMBLE_RESET;
3926 else
3927 tmp |= PIPE_B_SCRAMBLE_RESET;
3928
3929 I915_WRITE(PORT_DFT2_G4X, tmp);
3930 }
3931
Daniel Vetter4b79ebf2013-10-16 22:55:59 +02003932 return 0;
3933}
3934
David Weinehall36cdd012016-08-22 13:59:31 +03003935static void vlv_undo_pipe_scramble_reset(struct drm_i915_private *dev_priv,
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003936 enum pipe pipe)
3937{
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003938 uint32_t tmp = I915_READ(PORT_DFT2_G4X);
3939
Ville Syrjäläeb736672014-12-09 21:28:28 +02003940 switch (pipe) {
3941 case PIPE_A:
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003942 tmp &= ~PIPE_A_SCRAMBLE_RESET;
Ville Syrjäläeb736672014-12-09 21:28:28 +02003943 break;
3944 case PIPE_B:
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003945 tmp &= ~PIPE_B_SCRAMBLE_RESET;
Ville Syrjäläeb736672014-12-09 21:28:28 +02003946 break;
3947 case PIPE_C:
3948 tmp &= ~PIPE_C_SCRAMBLE_RESET;
3949 break;
3950 default:
3951 return;
3952 }
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003953 if (!(tmp & PIPE_SCRAMBLE_RESET_MASK))
3954 tmp &= ~DC_BALANCE_RESET_VLV;
3955 I915_WRITE(PORT_DFT2_G4X, tmp);
3956
3957}
3958
David Weinehall36cdd012016-08-22 13:59:31 +03003959static void g4x_undo_pipe_scramble_reset(struct drm_i915_private *dev_priv,
Daniel Vetter84093602013-11-01 10:50:21 +01003960 enum pipe pipe)
3961{
Daniel Vetter84093602013-11-01 10:50:21 +01003962 uint32_t tmp = I915_READ(PORT_DFT2_G4X);
3963
3964 if (pipe == PIPE_A)
3965 tmp &= ~PIPE_A_SCRAMBLE_RESET;
3966 else
3967 tmp &= ~PIPE_B_SCRAMBLE_RESET;
3968 I915_WRITE(PORT_DFT2_G4X, tmp);
3969
3970 if (!(tmp & PIPE_SCRAMBLE_RESET_MASK)) {
3971 I915_WRITE(PORT_DFT_I9XX,
3972 I915_READ(PORT_DFT_I9XX) & ~DC_BALANCE_RESET);
3973 }
3974}
3975
Daniel Vetter46a19182013-11-01 10:50:20 +01003976static int ilk_pipe_crc_ctl_reg(enum intel_pipe_crc_source *source,
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003977 uint32_t *val)
3978{
Daniel Vetter46a19182013-11-01 10:50:20 +01003979 if (*source == INTEL_PIPE_CRC_SOURCE_AUTO)
3980 *source = INTEL_PIPE_CRC_SOURCE_PIPE;
3981
3982 switch (*source) {
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003983 case INTEL_PIPE_CRC_SOURCE_PLANE1:
3984 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PRIMARY_ILK;
3985 break;
3986 case INTEL_PIPE_CRC_SOURCE_PLANE2:
3987 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_SPRITE_ILK;
3988 break;
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003989 case INTEL_PIPE_CRC_SOURCE_PIPE:
3990 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PIPE_ILK;
3991 break;
Daniel Vetter3d099a02013-10-16 22:55:58 +02003992 case INTEL_PIPE_CRC_SOURCE_NONE:
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003993 *val = 0;
3994 break;
Daniel Vetter3d099a02013-10-16 22:55:58 +02003995 default:
3996 return -EINVAL;
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003997 }
3998
3999 return 0;
4000}
4001
David Weinehall36cdd012016-08-22 13:59:31 +03004002static void hsw_trans_edp_pipe_A_crc_wa(struct drm_i915_private *dev_priv,
4003 bool enable)
Daniel Vetterfabf6e52014-05-29 14:10:22 +02004004{
David Weinehall36cdd012016-08-22 13:59:31 +03004005 struct drm_device *dev = &dev_priv->drm;
Daniel Vetterfabf6e52014-05-29 14:10:22 +02004006 struct intel_crtc *crtc =
4007 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_A]);
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02004008 struct intel_crtc_state *pipe_config;
Maarten Lankhorstc4e2d042015-08-05 12:36:59 +02004009 struct drm_atomic_state *state;
4010 int ret = 0;
Daniel Vetterfabf6e52014-05-29 14:10:22 +02004011
4012 drm_modeset_lock_all(dev);
Maarten Lankhorstc4e2d042015-08-05 12:36:59 +02004013 state = drm_atomic_state_alloc(dev);
4014 if (!state) {
4015 ret = -ENOMEM;
4016 goto out;
4017 }
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02004018
Maarten Lankhorstc4e2d042015-08-05 12:36:59 +02004019 state->acquire_ctx = drm_modeset_legacy_acquire_ctx(&crtc->base);
4020 pipe_config = intel_atomic_get_crtc_state(state, crtc);
4021 if (IS_ERR(pipe_config)) {
4022 ret = PTR_ERR(pipe_config);
4023 goto out;
4024 }
4025
4026 pipe_config->pch_pfit.force_thru = enable;
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02004027 if (pipe_config->cpu_transcoder == TRANSCODER_EDP &&
Maarten Lankhorstc4e2d042015-08-05 12:36:59 +02004028 pipe_config->pch_pfit.enabled != enable)
4029 pipe_config->base.connectors_changed = true;
Maarten Lankhorst1b509252015-06-01 12:49:48 +02004030
Maarten Lankhorstc4e2d042015-08-05 12:36:59 +02004031 ret = drm_atomic_commit(state);
4032out:
Daniel Vetterfabf6e52014-05-29 14:10:22 +02004033 drm_modeset_unlock_all(dev);
Maarten Lankhorstc4e2d042015-08-05 12:36:59 +02004034 WARN(ret, "Toggling workaround to %i returns %i\n", enable, ret);
4035 if (ret)
4036 drm_atomic_state_free(state);
Daniel Vetterfabf6e52014-05-29 14:10:22 +02004037}
4038
David Weinehall36cdd012016-08-22 13:59:31 +03004039static int ivb_pipe_crc_ctl_reg(struct drm_i915_private *dev_priv,
Daniel Vetterfabf6e52014-05-29 14:10:22 +02004040 enum pipe pipe,
4041 enum intel_pipe_crc_source *source,
Daniel Vetter5b3a8562013-10-16 22:55:48 +02004042 uint32_t *val)
4043{
Daniel Vetter46a19182013-11-01 10:50:20 +01004044 if (*source == INTEL_PIPE_CRC_SOURCE_AUTO)
4045 *source = INTEL_PIPE_CRC_SOURCE_PF;
4046
4047 switch (*source) {
Daniel Vetter5b3a8562013-10-16 22:55:48 +02004048 case INTEL_PIPE_CRC_SOURCE_PLANE1:
4049 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PRIMARY_IVB;
4050 break;
4051 case INTEL_PIPE_CRC_SOURCE_PLANE2:
4052 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_SPRITE_IVB;
4053 break;
4054 case INTEL_PIPE_CRC_SOURCE_PF:
David Weinehall36cdd012016-08-22 13:59:31 +03004055 if (IS_HASWELL(dev_priv) && pipe == PIPE_A)
4056 hsw_trans_edp_pipe_A_crc_wa(dev_priv, true);
Daniel Vetterfabf6e52014-05-29 14:10:22 +02004057
Daniel Vetter5b3a8562013-10-16 22:55:48 +02004058 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PF_IVB;
4059 break;
Daniel Vetter3d099a02013-10-16 22:55:58 +02004060 case INTEL_PIPE_CRC_SOURCE_NONE:
Daniel Vetter5b3a8562013-10-16 22:55:48 +02004061 *val = 0;
4062 break;
Daniel Vetter3d099a02013-10-16 22:55:58 +02004063 default:
4064 return -EINVAL;
Daniel Vetter5b3a8562013-10-16 22:55:48 +02004065 }
4066
4067 return 0;
4068}
4069
David Weinehall36cdd012016-08-22 13:59:31 +03004070static int pipe_crc_set_source(struct drm_i915_private *dev_priv,
4071 enum pipe pipe,
Daniel Vetter926321d2013-10-16 13:30:34 +02004072 enum intel_pipe_crc_source source)
4073{
David Weinehall36cdd012016-08-22 13:59:31 +03004074 struct drm_device *dev = &dev_priv->drm;
Damien Lespiaucc3da172013-10-15 18:55:31 +01004075 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe];
David Weinehall36cdd012016-08-22 13:59:31 +03004076 struct intel_crtc *crtc =
4077 to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
Imre Deake1296492016-02-12 18:55:17 +02004078 enum intel_display_power_domain power_domain;
Borislav Petkov432f3342013-11-21 16:49:46 +01004079 u32 val = 0; /* shut up gcc */
Daniel Vetter5b3a8562013-10-16 22:55:48 +02004080 int ret;
Daniel Vetter926321d2013-10-16 13:30:34 +02004081
Damien Lespiaucc3da172013-10-15 18:55:31 +01004082 if (pipe_crc->source == source)
4083 return 0;
4084
Damien Lespiauae676fc2013-10-15 18:55:32 +01004085 /* forbid changing the source without going back to 'none' */
4086 if (pipe_crc->source && source)
4087 return -EINVAL;
4088
Imre Deake1296492016-02-12 18:55:17 +02004089 power_domain = POWER_DOMAIN_PIPE(pipe);
4090 if (!intel_display_power_get_if_enabled(dev_priv, power_domain)) {
Daniel Vetter9d8b0582014-11-25 14:00:40 +01004091 DRM_DEBUG_KMS("Trying to capture CRC while pipe is off\n");
4092 return -EIO;
4093 }
4094
David Weinehall36cdd012016-08-22 13:59:31 +03004095 if (IS_GEN2(dev_priv))
Daniel Vetter46a19182013-11-01 10:50:20 +01004096 ret = i8xx_pipe_crc_ctl_reg(&source, &val);
David Weinehall36cdd012016-08-22 13:59:31 +03004097 else if (INTEL_GEN(dev_priv) < 5)
4098 ret = i9xx_pipe_crc_ctl_reg(dev_priv, pipe, &source, &val);
4099 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
4100 ret = vlv_pipe_crc_ctl_reg(dev_priv, pipe, &source, &val);
4101 else if (IS_GEN5(dev_priv) || IS_GEN6(dev_priv))
Daniel Vetter46a19182013-11-01 10:50:20 +01004102 ret = ilk_pipe_crc_ctl_reg(&source, &val);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02004103 else
David Weinehall36cdd012016-08-22 13:59:31 +03004104 ret = ivb_pipe_crc_ctl_reg(dev_priv, pipe, &source, &val);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02004105
4106 if (ret != 0)
Imre Deake1296492016-02-12 18:55:17 +02004107 goto out;
Daniel Vetter5b3a8562013-10-16 22:55:48 +02004108
Damien Lespiau4b584362013-10-15 18:55:33 +01004109 /* none -> real source transition */
4110 if (source) {
Ville Syrjälä4252fbc2014-12-09 21:28:30 +02004111 struct intel_pipe_crc_entry *entries;
4112
Damien Lespiau7cd6ccf2013-10-15 18:55:38 +01004113 DRM_DEBUG_DRIVER("collecting CRCs for pipe %c, %s\n",
4114 pipe_name(pipe), pipe_crc_source_name(source));
4115
Ville Syrjälä3cf54b32014-12-09 21:28:31 +02004116 entries = kcalloc(INTEL_PIPE_CRC_ENTRIES_NR,
4117 sizeof(pipe_crc->entries[0]),
Ville Syrjälä4252fbc2014-12-09 21:28:30 +02004118 GFP_KERNEL);
Imre Deake1296492016-02-12 18:55:17 +02004119 if (!entries) {
4120 ret = -ENOMEM;
4121 goto out;
4122 }
Damien Lespiaue5f75ac2013-10-15 18:55:34 +01004123
Paulo Zanoni8c740dc2014-10-17 18:42:03 -03004124 /*
4125 * When IPS gets enabled, the pipe CRC changes. Since IPS gets
4126 * enabled and disabled dynamically based on package C states,
4127 * user space can't make reliable use of the CRCs, so let's just
4128 * completely disable it.
4129 */
4130 hsw_disable_ips(crtc);
4131
Damien Lespiaud538bbd2013-10-21 14:29:30 +01004132 spin_lock_irq(&pipe_crc->lock);
Daniel Vetter64387b62014-12-10 11:00:29 +01004133 kfree(pipe_crc->entries);
Ville Syrjälä4252fbc2014-12-09 21:28:30 +02004134 pipe_crc->entries = entries;
Damien Lespiaud538bbd2013-10-21 14:29:30 +01004135 pipe_crc->head = 0;
4136 pipe_crc->tail = 0;
4137 spin_unlock_irq(&pipe_crc->lock);
Damien Lespiau4b584362013-10-15 18:55:33 +01004138 }
4139
Damien Lespiaucc3da172013-10-15 18:55:31 +01004140 pipe_crc->source = source;
Daniel Vetter926321d2013-10-16 13:30:34 +02004141
Daniel Vetter926321d2013-10-16 13:30:34 +02004142 I915_WRITE(PIPE_CRC_CTL(pipe), val);
4143 POSTING_READ(PIPE_CRC_CTL(pipe));
4144
Damien Lespiaue5f75ac2013-10-15 18:55:34 +01004145 /* real source -> none transition */
4146 if (source == INTEL_PIPE_CRC_SOURCE_NONE) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01004147 struct intel_pipe_crc_entry *entries;
Daniel Vettera33d7102014-06-06 08:22:08 +02004148 struct intel_crtc *crtc =
4149 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
Damien Lespiaud538bbd2013-10-21 14:29:30 +01004150
Damien Lespiau7cd6ccf2013-10-15 18:55:38 +01004151 DRM_DEBUG_DRIVER("stopping CRCs for pipe %c\n",
4152 pipe_name(pipe));
4153
Daniel Vettera33d7102014-06-06 08:22:08 +02004154 drm_modeset_lock(&crtc->base.mutex, NULL);
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02004155 if (crtc->base.state->active)
Daniel Vettera33d7102014-06-06 08:22:08 +02004156 intel_wait_for_vblank(dev, pipe);
4157 drm_modeset_unlock(&crtc->base.mutex);
Daniel Vetterbcf17ab2013-10-16 22:55:50 +02004158
Damien Lespiaud538bbd2013-10-21 14:29:30 +01004159 spin_lock_irq(&pipe_crc->lock);
4160 entries = pipe_crc->entries;
Damien Lespiaue5f75ac2013-10-15 18:55:34 +01004161 pipe_crc->entries = NULL;
Ville Syrjälä9ad6d992014-12-09 21:28:32 +02004162 pipe_crc->head = 0;
4163 pipe_crc->tail = 0;
Damien Lespiaud538bbd2013-10-21 14:29:30 +01004164 spin_unlock_irq(&pipe_crc->lock);
4165
4166 kfree(entries);
Daniel Vetter84093602013-11-01 10:50:21 +01004167
David Weinehall36cdd012016-08-22 13:59:31 +03004168 if (IS_G4X(dev_priv))
4169 g4x_undo_pipe_scramble_reset(dev_priv, pipe);
4170 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
4171 vlv_undo_pipe_scramble_reset(dev_priv, pipe);
4172 else if (IS_HASWELL(dev_priv) && pipe == PIPE_A)
4173 hsw_trans_edp_pipe_A_crc_wa(dev_priv, false);
Paulo Zanoni8c740dc2014-10-17 18:42:03 -03004174
4175 hsw_enable_ips(crtc);
Damien Lespiaue5f75ac2013-10-15 18:55:34 +01004176 }
4177
Imre Deake1296492016-02-12 18:55:17 +02004178 ret = 0;
4179
4180out:
4181 intel_display_power_put(dev_priv, power_domain);
4182
4183 return ret;
Daniel Vetter926321d2013-10-16 13:30:34 +02004184}
4185
4186/*
4187 * Parse pipe CRC command strings:
Damien Lespiaub94dec82013-10-15 18:55:35 +01004188 * command: wsp* object wsp+ name wsp+ source wsp*
4189 * object: 'pipe'
4190 * name: (A | B | C)
Daniel Vetter926321d2013-10-16 13:30:34 +02004191 * source: (none | plane1 | plane2 | pf)
4192 * wsp: (#0x20 | #0x9 | #0xA)+
4193 *
4194 * eg.:
Damien Lespiaub94dec82013-10-15 18:55:35 +01004195 * "pipe A plane1" -> Start CRC computations on plane1 of pipe A
4196 * "pipe A none" -> Stop CRC
Daniel Vetter926321d2013-10-16 13:30:34 +02004197 */
Damien Lespiaubd9db022013-10-15 18:55:36 +01004198static int display_crc_ctl_tokenize(char *buf, char *words[], int max_words)
Daniel Vetter926321d2013-10-16 13:30:34 +02004199{
4200 int n_words = 0;
4201
4202 while (*buf) {
4203 char *end;
4204
4205 /* skip leading white space */
4206 buf = skip_spaces(buf);
4207 if (!*buf)
4208 break; /* end of buffer */
4209
4210 /* find end of word */
4211 for (end = buf; *end && !isspace(*end); end++)
4212 ;
4213
4214 if (n_words == max_words) {
4215 DRM_DEBUG_DRIVER("too many words, allowed <= %d\n",
4216 max_words);
4217 return -EINVAL; /* ran out of words[] before bytes */
4218 }
4219
4220 if (*end)
4221 *end++ = '\0';
4222 words[n_words++] = buf;
4223 buf = end;
4224 }
4225
4226 return n_words;
4227}
4228
Damien Lespiaub94dec82013-10-15 18:55:35 +01004229enum intel_pipe_crc_object {
4230 PIPE_CRC_OBJECT_PIPE,
4231};
4232
Daniel Vettere8dfcf72013-10-16 11:51:54 +02004233static const char * const pipe_crc_objects[] = {
Damien Lespiaub94dec82013-10-15 18:55:35 +01004234 "pipe",
4235};
4236
4237static int
Damien Lespiaubd9db022013-10-15 18:55:36 +01004238display_crc_ctl_parse_object(const char *buf, enum intel_pipe_crc_object *o)
Damien Lespiaub94dec82013-10-15 18:55:35 +01004239{
4240 int i;
4241
4242 for (i = 0; i < ARRAY_SIZE(pipe_crc_objects); i++)
4243 if (!strcmp(buf, pipe_crc_objects[i])) {
Damien Lespiaubd9db022013-10-15 18:55:36 +01004244 *o = i;
Damien Lespiaub94dec82013-10-15 18:55:35 +01004245 return 0;
4246 }
4247
4248 return -EINVAL;
4249}
4250
Damien Lespiaubd9db022013-10-15 18:55:36 +01004251static int display_crc_ctl_parse_pipe(const char *buf, enum pipe *pipe)
Daniel Vetter926321d2013-10-16 13:30:34 +02004252{
4253 const char name = buf[0];
4254
4255 if (name < 'A' || name >= pipe_name(I915_MAX_PIPES))
4256 return -EINVAL;
4257
4258 *pipe = name - 'A';
4259
4260 return 0;
4261}
4262
4263static int
Damien Lespiaubd9db022013-10-15 18:55:36 +01004264display_crc_ctl_parse_source(const char *buf, enum intel_pipe_crc_source *s)
Daniel Vetter926321d2013-10-16 13:30:34 +02004265{
4266 int i;
4267
4268 for (i = 0; i < ARRAY_SIZE(pipe_crc_sources); i++)
4269 if (!strcmp(buf, pipe_crc_sources[i])) {
Damien Lespiaubd9db022013-10-15 18:55:36 +01004270 *s = i;
Daniel Vetter926321d2013-10-16 13:30:34 +02004271 return 0;
4272 }
4273
4274 return -EINVAL;
4275}
4276
David Weinehall36cdd012016-08-22 13:59:31 +03004277static int display_crc_ctl_parse(struct drm_i915_private *dev_priv,
4278 char *buf, size_t len)
Daniel Vetter926321d2013-10-16 13:30:34 +02004279{
Damien Lespiaub94dec82013-10-15 18:55:35 +01004280#define N_WORDS 3
Daniel Vetter926321d2013-10-16 13:30:34 +02004281 int n_words;
Damien Lespiaub94dec82013-10-15 18:55:35 +01004282 char *words[N_WORDS];
Daniel Vetter926321d2013-10-16 13:30:34 +02004283 enum pipe pipe;
Damien Lespiaub94dec82013-10-15 18:55:35 +01004284 enum intel_pipe_crc_object object;
Daniel Vetter926321d2013-10-16 13:30:34 +02004285 enum intel_pipe_crc_source source;
4286
Damien Lespiaubd9db022013-10-15 18:55:36 +01004287 n_words = display_crc_ctl_tokenize(buf, words, N_WORDS);
Damien Lespiaub94dec82013-10-15 18:55:35 +01004288 if (n_words != N_WORDS) {
4289 DRM_DEBUG_DRIVER("tokenize failed, a command is %d words\n",
4290 N_WORDS);
Daniel Vetter926321d2013-10-16 13:30:34 +02004291 return -EINVAL;
4292 }
4293
Damien Lespiaubd9db022013-10-15 18:55:36 +01004294 if (display_crc_ctl_parse_object(words[0], &object) < 0) {
Damien Lespiaub94dec82013-10-15 18:55:35 +01004295 DRM_DEBUG_DRIVER("unknown object %s\n", words[0]);
Daniel Vetter926321d2013-10-16 13:30:34 +02004296 return -EINVAL;
4297 }
4298
Damien Lespiaubd9db022013-10-15 18:55:36 +01004299 if (display_crc_ctl_parse_pipe(words[1], &pipe) < 0) {
Damien Lespiaub94dec82013-10-15 18:55:35 +01004300 DRM_DEBUG_DRIVER("unknown pipe %s\n", words[1]);
4301 return -EINVAL;
4302 }
4303
Damien Lespiaubd9db022013-10-15 18:55:36 +01004304 if (display_crc_ctl_parse_source(words[2], &source) < 0) {
Damien Lespiaub94dec82013-10-15 18:55:35 +01004305 DRM_DEBUG_DRIVER("unknown source %s\n", words[2]);
Daniel Vetter926321d2013-10-16 13:30:34 +02004306 return -EINVAL;
4307 }
4308
David Weinehall36cdd012016-08-22 13:59:31 +03004309 return pipe_crc_set_source(dev_priv, pipe, source);
Daniel Vetter926321d2013-10-16 13:30:34 +02004310}
4311
Damien Lespiaubd9db022013-10-15 18:55:36 +01004312static ssize_t display_crc_ctl_write(struct file *file, const char __user *ubuf,
4313 size_t len, loff_t *offp)
Daniel Vetter926321d2013-10-16 13:30:34 +02004314{
4315 struct seq_file *m = file->private_data;
David Weinehall36cdd012016-08-22 13:59:31 +03004316 struct drm_i915_private *dev_priv = m->private;
Daniel Vetter926321d2013-10-16 13:30:34 +02004317 char *tmpbuf;
4318 int ret;
4319
4320 if (len == 0)
4321 return 0;
4322
4323 if (len > PAGE_SIZE - 1) {
4324 DRM_DEBUG_DRIVER("expected <%lu bytes into pipe crc control\n",
4325 PAGE_SIZE);
4326 return -E2BIG;
4327 }
4328
4329 tmpbuf = kmalloc(len + 1, GFP_KERNEL);
4330 if (!tmpbuf)
4331 return -ENOMEM;
4332
4333 if (copy_from_user(tmpbuf, ubuf, len)) {
4334 ret = -EFAULT;
4335 goto out;
4336 }
4337 tmpbuf[len] = '\0';
4338
David Weinehall36cdd012016-08-22 13:59:31 +03004339 ret = display_crc_ctl_parse(dev_priv, tmpbuf, len);
Daniel Vetter926321d2013-10-16 13:30:34 +02004340
4341out:
4342 kfree(tmpbuf);
4343 if (ret < 0)
4344 return ret;
4345
4346 *offp += len;
4347 return len;
4348}
4349
Damien Lespiaubd9db022013-10-15 18:55:36 +01004350static const struct file_operations i915_display_crc_ctl_fops = {
Daniel Vetter926321d2013-10-16 13:30:34 +02004351 .owner = THIS_MODULE,
Damien Lespiaubd9db022013-10-15 18:55:36 +01004352 .open = display_crc_ctl_open,
Daniel Vetter926321d2013-10-16 13:30:34 +02004353 .read = seq_read,
4354 .llseek = seq_lseek,
4355 .release = single_release,
Damien Lespiaubd9db022013-10-15 18:55:36 +01004356 .write = display_crc_ctl_write
Daniel Vetter926321d2013-10-16 13:30:34 +02004357};
4358
Todd Previteeb3394fa2015-04-18 00:04:19 -07004359static ssize_t i915_displayport_test_active_write(struct file *file,
David Weinehall36cdd012016-08-22 13:59:31 +03004360 const char __user *ubuf,
4361 size_t len, loff_t *offp)
Todd Previteeb3394fa2015-04-18 00:04:19 -07004362{
4363 char *input_buffer;
4364 int status = 0;
Todd Previteeb3394fa2015-04-18 00:04:19 -07004365 struct drm_device *dev;
4366 struct drm_connector *connector;
4367 struct list_head *connector_list;
4368 struct intel_dp *intel_dp;
4369 int val = 0;
4370
Sudip Mukherjee9aaffa32015-07-21 17:36:45 +05304371 dev = ((struct seq_file *)file->private_data)->private;
Todd Previteeb3394fa2015-04-18 00:04:19 -07004372
Todd Previteeb3394fa2015-04-18 00:04:19 -07004373 connector_list = &dev->mode_config.connector_list;
4374
4375 if (len == 0)
4376 return 0;
4377
4378 input_buffer = kmalloc(len + 1, GFP_KERNEL);
4379 if (!input_buffer)
4380 return -ENOMEM;
4381
4382 if (copy_from_user(input_buffer, ubuf, len)) {
4383 status = -EFAULT;
4384 goto out;
4385 }
4386
4387 input_buffer[len] = '\0';
4388 DRM_DEBUG_DRIVER("Copied %d bytes from user\n", (unsigned int)len);
4389
4390 list_for_each_entry(connector, connector_list, head) {
Todd Previteeb3394fa2015-04-18 00:04:19 -07004391 if (connector->connector_type !=
4392 DRM_MODE_CONNECTOR_DisplayPort)
4393 continue;
4394
Sudip Mukherjeeb8bb08e2015-07-21 17:36:46 +05304395 if (connector->status == connector_status_connected &&
Todd Previteeb3394fa2015-04-18 00:04:19 -07004396 connector->encoder != NULL) {
4397 intel_dp = enc_to_intel_dp(connector->encoder);
4398 status = kstrtoint(input_buffer, 10, &val);
4399 if (status < 0)
4400 goto out;
4401 DRM_DEBUG_DRIVER("Got %d for test active\n", val);
4402 /* To prevent erroneous activation of the compliance
4403 * testing code, only accept an actual value of 1 here
4404 */
4405 if (val == 1)
4406 intel_dp->compliance_test_active = 1;
4407 else
4408 intel_dp->compliance_test_active = 0;
4409 }
4410 }
4411out:
4412 kfree(input_buffer);
4413 if (status < 0)
4414 return status;
4415
4416 *offp += len;
4417 return len;
4418}
4419
4420static int i915_displayport_test_active_show(struct seq_file *m, void *data)
4421{
4422 struct drm_device *dev = m->private;
4423 struct drm_connector *connector;
4424 struct list_head *connector_list = &dev->mode_config.connector_list;
4425 struct intel_dp *intel_dp;
4426
Todd Previteeb3394fa2015-04-18 00:04:19 -07004427 list_for_each_entry(connector, connector_list, head) {
Todd Previteeb3394fa2015-04-18 00:04:19 -07004428 if (connector->connector_type !=
4429 DRM_MODE_CONNECTOR_DisplayPort)
4430 continue;
4431
4432 if (connector->status == connector_status_connected &&
4433 connector->encoder != NULL) {
4434 intel_dp = enc_to_intel_dp(connector->encoder);
4435 if (intel_dp->compliance_test_active)
4436 seq_puts(m, "1");
4437 else
4438 seq_puts(m, "0");
4439 } else
4440 seq_puts(m, "0");
4441 }
4442
4443 return 0;
4444}
4445
4446static int i915_displayport_test_active_open(struct inode *inode,
David Weinehall36cdd012016-08-22 13:59:31 +03004447 struct file *file)
Todd Previteeb3394fa2015-04-18 00:04:19 -07004448{
David Weinehall36cdd012016-08-22 13:59:31 +03004449 struct drm_i915_private *dev_priv = inode->i_private;
Todd Previteeb3394fa2015-04-18 00:04:19 -07004450
David Weinehall36cdd012016-08-22 13:59:31 +03004451 return single_open(file, i915_displayport_test_active_show,
4452 &dev_priv->drm);
Todd Previteeb3394fa2015-04-18 00:04:19 -07004453}
4454
4455static const struct file_operations i915_displayport_test_active_fops = {
4456 .owner = THIS_MODULE,
4457 .open = i915_displayport_test_active_open,
4458 .read = seq_read,
4459 .llseek = seq_lseek,
4460 .release = single_release,
4461 .write = i915_displayport_test_active_write
4462};
4463
4464static int i915_displayport_test_data_show(struct seq_file *m, void *data)
4465{
4466 struct drm_device *dev = m->private;
4467 struct drm_connector *connector;
4468 struct list_head *connector_list = &dev->mode_config.connector_list;
4469 struct intel_dp *intel_dp;
4470
Todd Previteeb3394fa2015-04-18 00:04:19 -07004471 list_for_each_entry(connector, connector_list, head) {
Todd Previteeb3394fa2015-04-18 00:04:19 -07004472 if (connector->connector_type !=
4473 DRM_MODE_CONNECTOR_DisplayPort)
4474 continue;
4475
4476 if (connector->status == connector_status_connected &&
4477 connector->encoder != NULL) {
4478 intel_dp = enc_to_intel_dp(connector->encoder);
4479 seq_printf(m, "%lx", intel_dp->compliance_test_data);
4480 } else
4481 seq_puts(m, "0");
4482 }
4483
4484 return 0;
4485}
4486static int i915_displayport_test_data_open(struct inode *inode,
David Weinehall36cdd012016-08-22 13:59:31 +03004487 struct file *file)
Todd Previteeb3394fa2015-04-18 00:04:19 -07004488{
David Weinehall36cdd012016-08-22 13:59:31 +03004489 struct drm_i915_private *dev_priv = inode->i_private;
Todd Previteeb3394fa2015-04-18 00:04:19 -07004490
David Weinehall36cdd012016-08-22 13:59:31 +03004491 return single_open(file, i915_displayport_test_data_show,
4492 &dev_priv->drm);
Todd Previteeb3394fa2015-04-18 00:04:19 -07004493}
4494
4495static const struct file_operations i915_displayport_test_data_fops = {
4496 .owner = THIS_MODULE,
4497 .open = i915_displayport_test_data_open,
4498 .read = seq_read,
4499 .llseek = seq_lseek,
4500 .release = single_release
4501};
4502
4503static int i915_displayport_test_type_show(struct seq_file *m, void *data)
4504{
4505 struct drm_device *dev = m->private;
4506 struct drm_connector *connector;
4507 struct list_head *connector_list = &dev->mode_config.connector_list;
4508 struct intel_dp *intel_dp;
4509
Todd Previteeb3394fa2015-04-18 00:04:19 -07004510 list_for_each_entry(connector, connector_list, head) {
Todd Previteeb3394fa2015-04-18 00:04:19 -07004511 if (connector->connector_type !=
4512 DRM_MODE_CONNECTOR_DisplayPort)
4513 continue;
4514
4515 if (connector->status == connector_status_connected &&
4516 connector->encoder != NULL) {
4517 intel_dp = enc_to_intel_dp(connector->encoder);
4518 seq_printf(m, "%02lx", intel_dp->compliance_test_type);
4519 } else
4520 seq_puts(m, "0");
4521 }
4522
4523 return 0;
4524}
4525
4526static int i915_displayport_test_type_open(struct inode *inode,
4527 struct file *file)
4528{
David Weinehall36cdd012016-08-22 13:59:31 +03004529 struct drm_i915_private *dev_priv = inode->i_private;
Todd Previteeb3394fa2015-04-18 00:04:19 -07004530
David Weinehall36cdd012016-08-22 13:59:31 +03004531 return single_open(file, i915_displayport_test_type_show,
4532 &dev_priv->drm);
Todd Previteeb3394fa2015-04-18 00:04:19 -07004533}
4534
4535static const struct file_operations i915_displayport_test_type_fops = {
4536 .owner = THIS_MODULE,
4537 .open = i915_displayport_test_type_open,
4538 .read = seq_read,
4539 .llseek = seq_lseek,
4540 .release = single_release
4541};
4542
Damien Lespiau97e94b22014-11-04 17:06:50 +00004543static void wm_latency_show(struct seq_file *m, const uint16_t wm[8])
Ville Syrjälä369a1342014-01-22 14:36:08 +02004544{
David Weinehall36cdd012016-08-22 13:59:31 +03004545 struct drm_i915_private *dev_priv = m->private;
4546 struct drm_device *dev = &dev_priv->drm;
Ville Syrjälä369a1342014-01-22 14:36:08 +02004547 int level;
Ville Syrjäläde38b952015-06-24 22:00:09 +03004548 int num_levels;
4549
David Weinehall36cdd012016-08-22 13:59:31 +03004550 if (IS_CHERRYVIEW(dev_priv))
Ville Syrjäläde38b952015-06-24 22:00:09 +03004551 num_levels = 3;
David Weinehall36cdd012016-08-22 13:59:31 +03004552 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjäläde38b952015-06-24 22:00:09 +03004553 num_levels = 1;
4554 else
4555 num_levels = ilk_wm_max_level(dev) + 1;
Ville Syrjälä369a1342014-01-22 14:36:08 +02004556
4557 drm_modeset_lock_all(dev);
4558
4559 for (level = 0; level < num_levels; level++) {
4560 unsigned int latency = wm[level];
4561
Damien Lespiau97e94b22014-11-04 17:06:50 +00004562 /*
4563 * - WM1+ latency values in 0.5us units
Ville Syrjäläde38b952015-06-24 22:00:09 +03004564 * - latencies are in us on gen9/vlv/chv
Damien Lespiau97e94b22014-11-04 17:06:50 +00004565 */
David Weinehall36cdd012016-08-22 13:59:31 +03004566 if (INTEL_GEN(dev_priv) >= 9 || IS_VALLEYVIEW(dev_priv) ||
4567 IS_CHERRYVIEW(dev_priv))
Damien Lespiau97e94b22014-11-04 17:06:50 +00004568 latency *= 10;
4569 else if (level > 0)
Ville Syrjälä369a1342014-01-22 14:36:08 +02004570 latency *= 5;
4571
4572 seq_printf(m, "WM%d %u (%u.%u usec)\n",
Damien Lespiau97e94b22014-11-04 17:06:50 +00004573 level, wm[level], latency / 10, latency % 10);
Ville Syrjälä369a1342014-01-22 14:36:08 +02004574 }
4575
4576 drm_modeset_unlock_all(dev);
4577}
4578
4579static int pri_wm_latency_show(struct seq_file *m, void *data)
4580{
David Weinehall36cdd012016-08-22 13:59:31 +03004581 struct drm_i915_private *dev_priv = m->private;
Damien Lespiau97e94b22014-11-04 17:06:50 +00004582 const uint16_t *latencies;
Ville Syrjälä369a1342014-01-22 14:36:08 +02004583
David Weinehall36cdd012016-08-22 13:59:31 +03004584 if (INTEL_GEN(dev_priv) >= 9)
Damien Lespiau97e94b22014-11-04 17:06:50 +00004585 latencies = dev_priv->wm.skl_latency;
4586 else
David Weinehall36cdd012016-08-22 13:59:31 +03004587 latencies = dev_priv->wm.pri_latency;
Damien Lespiau97e94b22014-11-04 17:06:50 +00004588
4589 wm_latency_show(m, latencies);
Ville Syrjälä369a1342014-01-22 14:36:08 +02004590
4591 return 0;
4592}
4593
4594static int spr_wm_latency_show(struct seq_file *m, void *data)
4595{
David Weinehall36cdd012016-08-22 13:59:31 +03004596 struct drm_i915_private *dev_priv = m->private;
Damien Lespiau97e94b22014-11-04 17:06:50 +00004597 const uint16_t *latencies;
Ville Syrjälä369a1342014-01-22 14:36:08 +02004598
David Weinehall36cdd012016-08-22 13:59:31 +03004599 if (INTEL_GEN(dev_priv) >= 9)
Damien Lespiau97e94b22014-11-04 17:06:50 +00004600 latencies = dev_priv->wm.skl_latency;
4601 else
David Weinehall36cdd012016-08-22 13:59:31 +03004602 latencies = dev_priv->wm.spr_latency;
Damien Lespiau97e94b22014-11-04 17:06:50 +00004603
4604 wm_latency_show(m, latencies);
Ville Syrjälä369a1342014-01-22 14:36:08 +02004605
4606 return 0;
4607}
4608
4609static int cur_wm_latency_show(struct seq_file *m, void *data)
4610{
David Weinehall36cdd012016-08-22 13:59:31 +03004611 struct drm_i915_private *dev_priv = m->private;
Damien Lespiau97e94b22014-11-04 17:06:50 +00004612 const uint16_t *latencies;
Ville Syrjälä369a1342014-01-22 14:36:08 +02004613
David Weinehall36cdd012016-08-22 13:59:31 +03004614 if (INTEL_GEN(dev_priv) >= 9)
Damien Lespiau97e94b22014-11-04 17:06:50 +00004615 latencies = dev_priv->wm.skl_latency;
4616 else
David Weinehall36cdd012016-08-22 13:59:31 +03004617 latencies = dev_priv->wm.cur_latency;
Damien Lespiau97e94b22014-11-04 17:06:50 +00004618
4619 wm_latency_show(m, latencies);
Ville Syrjälä369a1342014-01-22 14:36:08 +02004620
4621 return 0;
4622}
4623
4624static int pri_wm_latency_open(struct inode *inode, struct file *file)
4625{
David Weinehall36cdd012016-08-22 13:59:31 +03004626 struct drm_i915_private *dev_priv = inode->i_private;
Ville Syrjälä369a1342014-01-22 14:36:08 +02004627
David Weinehall36cdd012016-08-22 13:59:31 +03004628 if (INTEL_GEN(dev_priv) < 5)
Ville Syrjälä369a1342014-01-22 14:36:08 +02004629 return -ENODEV;
4630
David Weinehall36cdd012016-08-22 13:59:31 +03004631 return single_open(file, pri_wm_latency_show, dev_priv);
Ville Syrjälä369a1342014-01-22 14:36:08 +02004632}
4633
4634static int spr_wm_latency_open(struct inode *inode, struct file *file)
4635{
David Weinehall36cdd012016-08-22 13:59:31 +03004636 struct drm_i915_private *dev_priv = inode->i_private;
Ville Syrjälä369a1342014-01-22 14:36:08 +02004637
David Weinehall36cdd012016-08-22 13:59:31 +03004638 if (HAS_GMCH_DISPLAY(dev_priv))
Ville Syrjälä369a1342014-01-22 14:36:08 +02004639 return -ENODEV;
4640
David Weinehall36cdd012016-08-22 13:59:31 +03004641 return single_open(file, spr_wm_latency_show, dev_priv);
Ville Syrjälä369a1342014-01-22 14:36:08 +02004642}
4643
4644static int cur_wm_latency_open(struct inode *inode, struct file *file)
4645{
David Weinehall36cdd012016-08-22 13:59:31 +03004646 struct drm_i915_private *dev_priv = inode->i_private;
Ville Syrjälä369a1342014-01-22 14:36:08 +02004647
David Weinehall36cdd012016-08-22 13:59:31 +03004648 if (HAS_GMCH_DISPLAY(dev_priv))
Ville Syrjälä369a1342014-01-22 14:36:08 +02004649 return -ENODEV;
4650
David Weinehall36cdd012016-08-22 13:59:31 +03004651 return single_open(file, cur_wm_latency_show, dev_priv);
Ville Syrjälä369a1342014-01-22 14:36:08 +02004652}
4653
4654static ssize_t wm_latency_write(struct file *file, const char __user *ubuf,
Damien Lespiau97e94b22014-11-04 17:06:50 +00004655 size_t len, loff_t *offp, uint16_t wm[8])
Ville Syrjälä369a1342014-01-22 14:36:08 +02004656{
4657 struct seq_file *m = file->private_data;
David Weinehall36cdd012016-08-22 13:59:31 +03004658 struct drm_i915_private *dev_priv = m->private;
4659 struct drm_device *dev = &dev_priv->drm;
Damien Lespiau97e94b22014-11-04 17:06:50 +00004660 uint16_t new[8] = { 0 };
Ville Syrjäläde38b952015-06-24 22:00:09 +03004661 int num_levels;
Ville Syrjälä369a1342014-01-22 14:36:08 +02004662 int level;
4663 int ret;
4664 char tmp[32];
4665
David Weinehall36cdd012016-08-22 13:59:31 +03004666 if (IS_CHERRYVIEW(dev_priv))
Ville Syrjäläde38b952015-06-24 22:00:09 +03004667 num_levels = 3;
David Weinehall36cdd012016-08-22 13:59:31 +03004668 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjäläde38b952015-06-24 22:00:09 +03004669 num_levels = 1;
4670 else
4671 num_levels = ilk_wm_max_level(dev) + 1;
4672
Ville Syrjälä369a1342014-01-22 14:36:08 +02004673 if (len >= sizeof(tmp))
4674 return -EINVAL;
4675
4676 if (copy_from_user(tmp, ubuf, len))
4677 return -EFAULT;
4678
4679 tmp[len] = '\0';
4680
Damien Lespiau97e94b22014-11-04 17:06:50 +00004681 ret = sscanf(tmp, "%hu %hu %hu %hu %hu %hu %hu %hu",
4682 &new[0], &new[1], &new[2], &new[3],
4683 &new[4], &new[5], &new[6], &new[7]);
Ville Syrjälä369a1342014-01-22 14:36:08 +02004684 if (ret != num_levels)
4685 return -EINVAL;
4686
4687 drm_modeset_lock_all(dev);
4688
4689 for (level = 0; level < num_levels; level++)
4690 wm[level] = new[level];
4691
4692 drm_modeset_unlock_all(dev);
4693
4694 return len;
4695}
4696
4697
4698static ssize_t pri_wm_latency_write(struct file *file, const char __user *ubuf,
4699 size_t len, loff_t *offp)
4700{
4701 struct seq_file *m = file->private_data;
David Weinehall36cdd012016-08-22 13:59:31 +03004702 struct drm_i915_private *dev_priv = m->private;
Damien Lespiau97e94b22014-11-04 17:06:50 +00004703 uint16_t *latencies;
Ville Syrjälä369a1342014-01-22 14:36:08 +02004704
David Weinehall36cdd012016-08-22 13:59:31 +03004705 if (INTEL_GEN(dev_priv) >= 9)
Damien Lespiau97e94b22014-11-04 17:06:50 +00004706 latencies = dev_priv->wm.skl_latency;
4707 else
David Weinehall36cdd012016-08-22 13:59:31 +03004708 latencies = dev_priv->wm.pri_latency;
Damien Lespiau97e94b22014-11-04 17:06:50 +00004709
4710 return wm_latency_write(file, ubuf, len, offp, latencies);
Ville Syrjälä369a1342014-01-22 14:36:08 +02004711}
4712
4713static ssize_t spr_wm_latency_write(struct file *file, const char __user *ubuf,
4714 size_t len, loff_t *offp)
4715{
4716 struct seq_file *m = file->private_data;
David Weinehall36cdd012016-08-22 13:59:31 +03004717 struct drm_i915_private *dev_priv = m->private;
Damien Lespiau97e94b22014-11-04 17:06:50 +00004718 uint16_t *latencies;
Ville Syrjälä369a1342014-01-22 14:36:08 +02004719
David Weinehall36cdd012016-08-22 13:59:31 +03004720 if (INTEL_GEN(dev_priv) >= 9)
Damien Lespiau97e94b22014-11-04 17:06:50 +00004721 latencies = dev_priv->wm.skl_latency;
4722 else
David Weinehall36cdd012016-08-22 13:59:31 +03004723 latencies = dev_priv->wm.spr_latency;
Damien Lespiau97e94b22014-11-04 17:06:50 +00004724
4725 return wm_latency_write(file, ubuf, len, offp, latencies);
Ville Syrjälä369a1342014-01-22 14:36:08 +02004726}
4727
4728static ssize_t cur_wm_latency_write(struct file *file, const char __user *ubuf,
4729 size_t len, loff_t *offp)
4730{
4731 struct seq_file *m = file->private_data;
David Weinehall36cdd012016-08-22 13:59:31 +03004732 struct drm_i915_private *dev_priv = m->private;
Damien Lespiau97e94b22014-11-04 17:06:50 +00004733 uint16_t *latencies;
Ville Syrjälä369a1342014-01-22 14:36:08 +02004734
David Weinehall36cdd012016-08-22 13:59:31 +03004735 if (INTEL_GEN(dev_priv) >= 9)
Damien Lespiau97e94b22014-11-04 17:06:50 +00004736 latencies = dev_priv->wm.skl_latency;
4737 else
David Weinehall36cdd012016-08-22 13:59:31 +03004738 latencies = dev_priv->wm.cur_latency;
Damien Lespiau97e94b22014-11-04 17:06:50 +00004739
4740 return wm_latency_write(file, ubuf, len, offp, latencies);
Ville Syrjälä369a1342014-01-22 14:36:08 +02004741}
4742
4743static const struct file_operations i915_pri_wm_latency_fops = {
4744 .owner = THIS_MODULE,
4745 .open = pri_wm_latency_open,
4746 .read = seq_read,
4747 .llseek = seq_lseek,
4748 .release = single_release,
4749 .write = pri_wm_latency_write
4750};
4751
4752static const struct file_operations i915_spr_wm_latency_fops = {
4753 .owner = THIS_MODULE,
4754 .open = spr_wm_latency_open,
4755 .read = seq_read,
4756 .llseek = seq_lseek,
4757 .release = single_release,
4758 .write = spr_wm_latency_write
4759};
4760
4761static const struct file_operations i915_cur_wm_latency_fops = {
4762 .owner = THIS_MODULE,
4763 .open = cur_wm_latency_open,
4764 .read = seq_read,
4765 .llseek = seq_lseek,
4766 .release = single_release,
4767 .write = cur_wm_latency_write
4768};
4769
Kees Cook647416f2013-03-10 14:10:06 -07004770static int
4771i915_wedged_get(void *data, u64 *val)
Chris Wilsonf3cd4742009-10-13 22:20:20 +01004772{
David Weinehall36cdd012016-08-22 13:59:31 +03004773 struct drm_i915_private *dev_priv = data;
Chris Wilsonf3cd4742009-10-13 22:20:20 +01004774
Chris Wilsond98c52c2016-04-13 17:35:05 +01004775 *val = i915_terminally_wedged(&dev_priv->gpu_error);
Chris Wilsonf3cd4742009-10-13 22:20:20 +01004776
Kees Cook647416f2013-03-10 14:10:06 -07004777 return 0;
Chris Wilsonf3cd4742009-10-13 22:20:20 +01004778}
4779
Kees Cook647416f2013-03-10 14:10:06 -07004780static int
4781i915_wedged_set(void *data, u64 val)
Chris Wilsonf3cd4742009-10-13 22:20:20 +01004782{
David Weinehall36cdd012016-08-22 13:59:31 +03004783 struct drm_i915_private *dev_priv = data;
Imre Deakd46c0512014-04-14 20:24:27 +03004784
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02004785 /*
4786 * There is no safeguard against this debugfs entry colliding
4787 * with the hangcheck calling same i915_handle_error() in
4788 * parallel, causing an explosion. For now we assume that the
4789 * test harness is responsible enough not to inject gpu hangs
4790 * while it is writing to 'i915_wedged'
4791 */
4792
Chris Wilsond98c52c2016-04-13 17:35:05 +01004793 if (i915_reset_in_progress(&dev_priv->gpu_error))
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02004794 return -EAGAIN;
4795
Imre Deakd46c0512014-04-14 20:24:27 +03004796 intel_runtime_pm_get(dev_priv);
Chris Wilsonf3cd4742009-10-13 22:20:20 +01004797
Chris Wilsonc0336662016-05-06 15:40:21 +01004798 i915_handle_error(dev_priv, val,
Mika Kuoppala58174462014-02-25 17:11:26 +02004799 "Manually setting wedged to %llu", val);
Imre Deakd46c0512014-04-14 20:24:27 +03004800
4801 intel_runtime_pm_put(dev_priv);
4802
Kees Cook647416f2013-03-10 14:10:06 -07004803 return 0;
Chris Wilsonf3cd4742009-10-13 22:20:20 +01004804}
4805
Kees Cook647416f2013-03-10 14:10:06 -07004806DEFINE_SIMPLE_ATTRIBUTE(i915_wedged_fops,
4807 i915_wedged_get, i915_wedged_set,
Mika Kuoppala3a3b4f92013-04-12 12:10:05 +03004808 "%llu\n");
Chris Wilsonf3cd4742009-10-13 22:20:20 +01004809
Kees Cook647416f2013-03-10 14:10:06 -07004810static int
Chris Wilson094f9a52013-09-25 17:34:55 +01004811i915_ring_missed_irq_get(void *data, u64 *val)
4812{
David Weinehall36cdd012016-08-22 13:59:31 +03004813 struct drm_i915_private *dev_priv = data;
Chris Wilson094f9a52013-09-25 17:34:55 +01004814
4815 *val = dev_priv->gpu_error.missed_irq_rings;
4816 return 0;
4817}
4818
4819static int
4820i915_ring_missed_irq_set(void *data, u64 val)
4821{
David Weinehall36cdd012016-08-22 13:59:31 +03004822 struct drm_i915_private *dev_priv = data;
4823 struct drm_device *dev = &dev_priv->drm;
Chris Wilson094f9a52013-09-25 17:34:55 +01004824 int ret;
4825
4826 /* Lock against concurrent debugfs callers */
4827 ret = mutex_lock_interruptible(&dev->struct_mutex);
4828 if (ret)
4829 return ret;
4830 dev_priv->gpu_error.missed_irq_rings = val;
4831 mutex_unlock(&dev->struct_mutex);
4832
4833 return 0;
4834}
4835
4836DEFINE_SIMPLE_ATTRIBUTE(i915_ring_missed_irq_fops,
4837 i915_ring_missed_irq_get, i915_ring_missed_irq_set,
4838 "0x%08llx\n");
4839
4840static int
4841i915_ring_test_irq_get(void *data, u64 *val)
4842{
David Weinehall36cdd012016-08-22 13:59:31 +03004843 struct drm_i915_private *dev_priv = data;
Chris Wilson094f9a52013-09-25 17:34:55 +01004844
4845 *val = dev_priv->gpu_error.test_irq_rings;
4846
4847 return 0;
4848}
4849
4850static int
4851i915_ring_test_irq_set(void *data, u64 val)
4852{
David Weinehall36cdd012016-08-22 13:59:31 +03004853 struct drm_i915_private *dev_priv = data;
Chris Wilson094f9a52013-09-25 17:34:55 +01004854
Chris Wilson3a122c22016-06-17 14:35:05 +01004855 val &= INTEL_INFO(dev_priv)->ring_mask;
Chris Wilson094f9a52013-09-25 17:34:55 +01004856 DRM_DEBUG_DRIVER("Masking interrupts on rings 0x%08llx\n", val);
Chris Wilson094f9a52013-09-25 17:34:55 +01004857 dev_priv->gpu_error.test_irq_rings = val;
Chris Wilson094f9a52013-09-25 17:34:55 +01004858
4859 return 0;
4860}
4861
4862DEFINE_SIMPLE_ATTRIBUTE(i915_ring_test_irq_fops,
4863 i915_ring_test_irq_get, i915_ring_test_irq_set,
4864 "0x%08llx\n");
4865
Chris Wilsondd624af2013-01-15 12:39:35 +00004866#define DROP_UNBOUND 0x1
4867#define DROP_BOUND 0x2
4868#define DROP_RETIRE 0x4
4869#define DROP_ACTIVE 0x8
4870#define DROP_ALL (DROP_UNBOUND | \
4871 DROP_BOUND | \
4872 DROP_RETIRE | \
4873 DROP_ACTIVE)
Kees Cook647416f2013-03-10 14:10:06 -07004874static int
4875i915_drop_caches_get(void *data, u64 *val)
Chris Wilsondd624af2013-01-15 12:39:35 +00004876{
Kees Cook647416f2013-03-10 14:10:06 -07004877 *val = DROP_ALL;
Chris Wilsondd624af2013-01-15 12:39:35 +00004878
Kees Cook647416f2013-03-10 14:10:06 -07004879 return 0;
Chris Wilsondd624af2013-01-15 12:39:35 +00004880}
4881
Kees Cook647416f2013-03-10 14:10:06 -07004882static int
4883i915_drop_caches_set(void *data, u64 val)
Chris Wilsondd624af2013-01-15 12:39:35 +00004884{
David Weinehall36cdd012016-08-22 13:59:31 +03004885 struct drm_i915_private *dev_priv = data;
4886 struct drm_device *dev = &dev_priv->drm;
Kees Cook647416f2013-03-10 14:10:06 -07004887 int ret;
Chris Wilsondd624af2013-01-15 12:39:35 +00004888
Ben Widawsky2f9fe5f2013-11-25 09:54:37 -08004889 DRM_DEBUG("Dropping caches: 0x%08llx\n", val);
Chris Wilsondd624af2013-01-15 12:39:35 +00004890
4891 /* No need to check and wait for gpu resets, only libdrm auto-restarts
4892 * on ioctls on -EAGAIN. */
4893 ret = mutex_lock_interruptible(&dev->struct_mutex);
4894 if (ret)
4895 return ret;
4896
4897 if (val & DROP_ACTIVE) {
Chris Wilson22dd3bb2016-09-09 14:11:50 +01004898 ret = i915_gem_wait_for_idle(dev_priv,
4899 I915_WAIT_INTERRUPTIBLE |
4900 I915_WAIT_LOCKED);
Chris Wilsondd624af2013-01-15 12:39:35 +00004901 if (ret)
4902 goto unlock;
4903 }
4904
4905 if (val & (DROP_RETIRE | DROP_ACTIVE))
Chris Wilsonc0336662016-05-06 15:40:21 +01004906 i915_gem_retire_requests(dev_priv);
Chris Wilsondd624af2013-01-15 12:39:35 +00004907
Chris Wilson21ab4e72014-09-09 11:16:08 +01004908 if (val & DROP_BOUND)
4909 i915_gem_shrink(dev_priv, LONG_MAX, I915_SHRINK_BOUND);
Chris Wilson4ad72b72014-09-03 19:23:37 +01004910
Chris Wilson21ab4e72014-09-09 11:16:08 +01004911 if (val & DROP_UNBOUND)
4912 i915_gem_shrink(dev_priv, LONG_MAX, I915_SHRINK_UNBOUND);
Chris Wilsondd624af2013-01-15 12:39:35 +00004913
4914unlock:
4915 mutex_unlock(&dev->struct_mutex);
4916
Kees Cook647416f2013-03-10 14:10:06 -07004917 return ret;
Chris Wilsondd624af2013-01-15 12:39:35 +00004918}
4919
Kees Cook647416f2013-03-10 14:10:06 -07004920DEFINE_SIMPLE_ATTRIBUTE(i915_drop_caches_fops,
4921 i915_drop_caches_get, i915_drop_caches_set,
4922 "0x%08llx\n");
Chris Wilsondd624af2013-01-15 12:39:35 +00004923
Kees Cook647416f2013-03-10 14:10:06 -07004924static int
4925i915_max_freq_get(void *data, u64 *val)
Jesse Barnes358733e2011-07-27 11:53:01 -07004926{
David Weinehall36cdd012016-08-22 13:59:31 +03004927 struct drm_i915_private *dev_priv = data;
Daniel Vetter004777c2012-08-09 15:07:01 +02004928
David Weinehall36cdd012016-08-22 13:59:31 +03004929 if (INTEL_GEN(dev_priv) < 6)
Daniel Vetter004777c2012-08-09 15:07:01 +02004930 return -ENODEV;
4931
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02004932 *val = intel_gpu_freq(dev_priv, dev_priv->rps.max_freq_softlimit);
Kees Cook647416f2013-03-10 14:10:06 -07004933 return 0;
Jesse Barnes358733e2011-07-27 11:53:01 -07004934}
4935
Kees Cook647416f2013-03-10 14:10:06 -07004936static int
4937i915_max_freq_set(void *data, u64 val)
Jesse Barnes358733e2011-07-27 11:53:01 -07004938{
David Weinehall36cdd012016-08-22 13:59:31 +03004939 struct drm_i915_private *dev_priv = data;
Akash Goelbc4d91f2015-02-26 16:09:47 +05304940 u32 hw_max, hw_min;
Kees Cook647416f2013-03-10 14:10:06 -07004941 int ret;
Daniel Vetter004777c2012-08-09 15:07:01 +02004942
David Weinehall36cdd012016-08-22 13:59:31 +03004943 if (INTEL_GEN(dev_priv) < 6)
Daniel Vetter004777c2012-08-09 15:07:01 +02004944 return -ENODEV;
Jesse Barnes358733e2011-07-27 11:53:01 -07004945
Kees Cook647416f2013-03-10 14:10:06 -07004946 DRM_DEBUG_DRIVER("Manually setting max freq to %llu\n", val);
Jesse Barnes358733e2011-07-27 11:53:01 -07004947
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004948 ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
Daniel Vetter004777c2012-08-09 15:07:01 +02004949 if (ret)
4950 return ret;
4951
Jesse Barnes358733e2011-07-27 11:53:01 -07004952 /*
4953 * Turbo will still be enabled, but won't go above the set value.
4954 */
Akash Goelbc4d91f2015-02-26 16:09:47 +05304955 val = intel_freq_opcode(dev_priv, val);
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06004956
Akash Goelbc4d91f2015-02-26 16:09:47 +05304957 hw_max = dev_priv->rps.max_freq;
4958 hw_min = dev_priv->rps.min_freq;
Jesse Barnes0a073b82013-04-17 15:54:58 -07004959
Ben Widawskyb39fb292014-03-19 18:31:11 -07004960 if (val < hw_min || val > hw_max || val < dev_priv->rps.min_freq_softlimit) {
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06004961 mutex_unlock(&dev_priv->rps.hw_lock);
4962 return -EINVAL;
4963 }
4964
Ben Widawskyb39fb292014-03-19 18:31:11 -07004965 dev_priv->rps.max_freq_softlimit = val;
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06004966
Chris Wilsondc979972016-05-10 14:10:04 +01004967 intel_set_rps(dev_priv, val);
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06004968
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004969 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes358733e2011-07-27 11:53:01 -07004970
Kees Cook647416f2013-03-10 14:10:06 -07004971 return 0;
Jesse Barnes358733e2011-07-27 11:53:01 -07004972}
4973
Kees Cook647416f2013-03-10 14:10:06 -07004974DEFINE_SIMPLE_ATTRIBUTE(i915_max_freq_fops,
4975 i915_max_freq_get, i915_max_freq_set,
Mika Kuoppala3a3b4f92013-04-12 12:10:05 +03004976 "%llu\n");
Jesse Barnes358733e2011-07-27 11:53:01 -07004977
Kees Cook647416f2013-03-10 14:10:06 -07004978static int
4979i915_min_freq_get(void *data, u64 *val)
Jesse Barnes1523c312012-05-25 12:34:54 -07004980{
David Weinehall36cdd012016-08-22 13:59:31 +03004981 struct drm_i915_private *dev_priv = data;
Daniel Vetter004777c2012-08-09 15:07:01 +02004982
Chris Wilson62e1baa2016-07-13 09:10:36 +01004983 if (INTEL_GEN(dev_priv) < 6)
Daniel Vetter004777c2012-08-09 15:07:01 +02004984 return -ENODEV;
4985
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02004986 *val = intel_gpu_freq(dev_priv, dev_priv->rps.min_freq_softlimit);
Kees Cook647416f2013-03-10 14:10:06 -07004987 return 0;
Jesse Barnes1523c312012-05-25 12:34:54 -07004988}
4989
Kees Cook647416f2013-03-10 14:10:06 -07004990static int
4991i915_min_freq_set(void *data, u64 val)
Jesse Barnes1523c312012-05-25 12:34:54 -07004992{
David Weinehall36cdd012016-08-22 13:59:31 +03004993 struct drm_i915_private *dev_priv = data;
Akash Goelbc4d91f2015-02-26 16:09:47 +05304994 u32 hw_max, hw_min;
Kees Cook647416f2013-03-10 14:10:06 -07004995 int ret;
Daniel Vetter004777c2012-08-09 15:07:01 +02004996
Chris Wilson62e1baa2016-07-13 09:10:36 +01004997 if (INTEL_GEN(dev_priv) < 6)
Daniel Vetter004777c2012-08-09 15:07:01 +02004998 return -ENODEV;
Jesse Barnes1523c312012-05-25 12:34:54 -07004999
Kees Cook647416f2013-03-10 14:10:06 -07005000 DRM_DEBUG_DRIVER("Manually setting min freq to %llu\n", val);
Jesse Barnes1523c312012-05-25 12:34:54 -07005001
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005002 ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
Daniel Vetter004777c2012-08-09 15:07:01 +02005003 if (ret)
5004 return ret;
5005
Jesse Barnes1523c312012-05-25 12:34:54 -07005006 /*
5007 * Turbo will still be enabled, but won't go below the set value.
5008 */
Akash Goelbc4d91f2015-02-26 16:09:47 +05305009 val = intel_freq_opcode(dev_priv, val);
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06005010
Akash Goelbc4d91f2015-02-26 16:09:47 +05305011 hw_max = dev_priv->rps.max_freq;
5012 hw_min = dev_priv->rps.min_freq;
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06005013
David Weinehall36cdd012016-08-22 13:59:31 +03005014 if (val < hw_min ||
5015 val > hw_max || val > dev_priv->rps.max_freq_softlimit) {
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06005016 mutex_unlock(&dev_priv->rps.hw_lock);
5017 return -EINVAL;
5018 }
5019
Ben Widawskyb39fb292014-03-19 18:31:11 -07005020 dev_priv->rps.min_freq_softlimit = val;
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06005021
Chris Wilsondc979972016-05-10 14:10:04 +01005022 intel_set_rps(dev_priv, val);
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06005023
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005024 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes1523c312012-05-25 12:34:54 -07005025
Kees Cook647416f2013-03-10 14:10:06 -07005026 return 0;
Jesse Barnes1523c312012-05-25 12:34:54 -07005027}
5028
Kees Cook647416f2013-03-10 14:10:06 -07005029DEFINE_SIMPLE_ATTRIBUTE(i915_min_freq_fops,
5030 i915_min_freq_get, i915_min_freq_set,
Mika Kuoppala3a3b4f92013-04-12 12:10:05 +03005031 "%llu\n");
Jesse Barnes1523c312012-05-25 12:34:54 -07005032
Kees Cook647416f2013-03-10 14:10:06 -07005033static int
5034i915_cache_sharing_get(void *data, u64 *val)
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07005035{
David Weinehall36cdd012016-08-22 13:59:31 +03005036 struct drm_i915_private *dev_priv = data;
5037 struct drm_device *dev = &dev_priv->drm;
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07005038 u32 snpcr;
Kees Cook647416f2013-03-10 14:10:06 -07005039 int ret;
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07005040
David Weinehall36cdd012016-08-22 13:59:31 +03005041 if (!(IS_GEN6(dev_priv) || IS_GEN7(dev_priv)))
Daniel Vetter004777c2012-08-09 15:07:01 +02005042 return -ENODEV;
5043
Daniel Vetter22bcfc62012-08-09 15:07:02 +02005044 ret = mutex_lock_interruptible(&dev->struct_mutex);
5045 if (ret)
5046 return ret;
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02005047 intel_runtime_pm_get(dev_priv);
Daniel Vetter22bcfc62012-08-09 15:07:02 +02005048
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07005049 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02005050
5051 intel_runtime_pm_put(dev_priv);
David Weinehall36cdd012016-08-22 13:59:31 +03005052 mutex_unlock(&dev->struct_mutex);
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07005053
Kees Cook647416f2013-03-10 14:10:06 -07005054 *val = (snpcr & GEN6_MBC_SNPCR_MASK) >> GEN6_MBC_SNPCR_SHIFT;
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07005055
Kees Cook647416f2013-03-10 14:10:06 -07005056 return 0;
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07005057}
5058
Kees Cook647416f2013-03-10 14:10:06 -07005059static int
5060i915_cache_sharing_set(void *data, u64 val)
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07005061{
David Weinehall36cdd012016-08-22 13:59:31 +03005062 struct drm_i915_private *dev_priv = data;
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07005063 u32 snpcr;
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07005064
David Weinehall36cdd012016-08-22 13:59:31 +03005065 if (!(IS_GEN6(dev_priv) || IS_GEN7(dev_priv)))
Daniel Vetter004777c2012-08-09 15:07:01 +02005066 return -ENODEV;
5067
Kees Cook647416f2013-03-10 14:10:06 -07005068 if (val > 3)
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07005069 return -EINVAL;
5070
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02005071 intel_runtime_pm_get(dev_priv);
Kees Cook647416f2013-03-10 14:10:06 -07005072 DRM_DEBUG_DRIVER("Manually setting uncore sharing to %llu\n", val);
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07005073
5074 /* Update the cache sharing policy here as well */
5075 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
5076 snpcr &= ~GEN6_MBC_SNPCR_MASK;
5077 snpcr |= (val << GEN6_MBC_SNPCR_SHIFT);
5078 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
5079
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02005080 intel_runtime_pm_put(dev_priv);
Kees Cook647416f2013-03-10 14:10:06 -07005081 return 0;
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07005082}
5083
Kees Cook647416f2013-03-10 14:10:06 -07005084DEFINE_SIMPLE_ATTRIBUTE(i915_cache_sharing_fops,
5085 i915_cache_sharing_get, i915_cache_sharing_set,
5086 "%llu\n");
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07005087
David Weinehall36cdd012016-08-22 13:59:31 +03005088static void cherryview_sseu_device_status(struct drm_i915_private *dev_priv,
Imre Deak915490d2016-08-31 19:13:01 +03005089 struct sseu_dev_info *sseu)
Jeff McGee5d395252015-04-03 18:13:17 -07005090{
Ville Syrjälä0a0b4572015-08-21 20:45:27 +03005091 int ss_max = 2;
Jeff McGee5d395252015-04-03 18:13:17 -07005092 int ss;
5093 u32 sig1[ss_max], sig2[ss_max];
5094
5095 sig1[0] = I915_READ(CHV_POWER_SS0_SIG1);
5096 sig1[1] = I915_READ(CHV_POWER_SS1_SIG1);
5097 sig2[0] = I915_READ(CHV_POWER_SS0_SIG2);
5098 sig2[1] = I915_READ(CHV_POWER_SS1_SIG2);
5099
5100 for (ss = 0; ss < ss_max; ss++) {
5101 unsigned int eu_cnt;
5102
5103 if (sig1[ss] & CHV_SS_PG_ENABLE)
5104 /* skip disabled subslice */
5105 continue;
5106
Imre Deakf08a0c92016-08-31 19:13:04 +03005107 sseu->slice_mask = BIT(0);
Imre Deak57ec1712016-08-31 19:13:05 +03005108 sseu->subslice_mask |= BIT(ss);
Jeff McGee5d395252015-04-03 18:13:17 -07005109 eu_cnt = ((sig1[ss] & CHV_EU08_PG_ENABLE) ? 0 : 2) +
5110 ((sig1[ss] & CHV_EU19_PG_ENABLE) ? 0 : 2) +
5111 ((sig1[ss] & CHV_EU210_PG_ENABLE) ? 0 : 2) +
5112 ((sig2[ss] & CHV_EU311_PG_ENABLE) ? 0 : 2);
Imre Deak915490d2016-08-31 19:13:01 +03005113 sseu->eu_total += eu_cnt;
5114 sseu->eu_per_subslice = max_t(unsigned int,
5115 sseu->eu_per_subslice, eu_cnt);
Jeff McGee5d395252015-04-03 18:13:17 -07005116 }
Jeff McGee5d395252015-04-03 18:13:17 -07005117}
5118
David Weinehall36cdd012016-08-22 13:59:31 +03005119static void gen9_sseu_device_status(struct drm_i915_private *dev_priv,
Imre Deak915490d2016-08-31 19:13:01 +03005120 struct sseu_dev_info *sseu)
Jeff McGee5d395252015-04-03 18:13:17 -07005121{
Jeff McGee1c046bc2015-04-03 18:13:18 -07005122 int s_max = 3, ss_max = 4;
Jeff McGee5d395252015-04-03 18:13:17 -07005123 int s, ss;
5124 u32 s_reg[s_max], eu_reg[2*s_max], eu_mask[2];
5125
Jeff McGee1c046bc2015-04-03 18:13:18 -07005126 /* BXT has a single slice and at most 3 subslices. */
David Weinehall36cdd012016-08-22 13:59:31 +03005127 if (IS_BROXTON(dev_priv)) {
Jeff McGee1c046bc2015-04-03 18:13:18 -07005128 s_max = 1;
5129 ss_max = 3;
5130 }
5131
5132 for (s = 0; s < s_max; s++) {
5133 s_reg[s] = I915_READ(GEN9_SLICE_PGCTL_ACK(s));
5134 eu_reg[2*s] = I915_READ(GEN9_SS01_EU_PGCTL_ACK(s));
5135 eu_reg[2*s + 1] = I915_READ(GEN9_SS23_EU_PGCTL_ACK(s));
5136 }
5137
Jeff McGee5d395252015-04-03 18:13:17 -07005138 eu_mask[0] = GEN9_PGCTL_SSA_EU08_ACK |
5139 GEN9_PGCTL_SSA_EU19_ACK |
5140 GEN9_PGCTL_SSA_EU210_ACK |
5141 GEN9_PGCTL_SSA_EU311_ACK;
5142 eu_mask[1] = GEN9_PGCTL_SSB_EU08_ACK |
5143 GEN9_PGCTL_SSB_EU19_ACK |
5144 GEN9_PGCTL_SSB_EU210_ACK |
5145 GEN9_PGCTL_SSB_EU311_ACK;
5146
5147 for (s = 0; s < s_max; s++) {
5148 if ((s_reg[s] & GEN9_PGCTL_SLICE_ACK) == 0)
5149 /* skip disabled slice */
5150 continue;
5151
Imre Deakf08a0c92016-08-31 19:13:04 +03005152 sseu->slice_mask |= BIT(s);
Jeff McGee1c046bc2015-04-03 18:13:18 -07005153
David Weinehall36cdd012016-08-22 13:59:31 +03005154 if (IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv))
Imre Deak57ec1712016-08-31 19:13:05 +03005155 sseu->subslice_mask =
5156 INTEL_INFO(dev_priv)->sseu.subslice_mask;
Jeff McGee1c046bc2015-04-03 18:13:18 -07005157
Jeff McGee5d395252015-04-03 18:13:17 -07005158 for (ss = 0; ss < ss_max; ss++) {
5159 unsigned int eu_cnt;
5160
Imre Deak57ec1712016-08-31 19:13:05 +03005161 if (IS_BROXTON(dev_priv)) {
5162 if (!(s_reg[s] & (GEN9_PGCTL_SS_ACK(ss))))
5163 /* skip disabled subslice */
5164 continue;
Jeff McGee1c046bc2015-04-03 18:13:18 -07005165
Imre Deak57ec1712016-08-31 19:13:05 +03005166 sseu->subslice_mask |= BIT(ss);
5167 }
Jeff McGee1c046bc2015-04-03 18:13:18 -07005168
Jeff McGee5d395252015-04-03 18:13:17 -07005169 eu_cnt = 2 * hweight32(eu_reg[2*s + ss/2] &
5170 eu_mask[ss%2]);
Imre Deak915490d2016-08-31 19:13:01 +03005171 sseu->eu_total += eu_cnt;
5172 sseu->eu_per_subslice = max_t(unsigned int,
5173 sseu->eu_per_subslice,
5174 eu_cnt);
Jeff McGee5d395252015-04-03 18:13:17 -07005175 }
5176 }
5177}
5178
David Weinehall36cdd012016-08-22 13:59:31 +03005179static void broadwell_sseu_device_status(struct drm_i915_private *dev_priv,
Imre Deak915490d2016-08-31 19:13:01 +03005180 struct sseu_dev_info *sseu)
Łukasz Daniluk91bedd32015-09-25 11:54:58 +02005181{
Łukasz Daniluk91bedd32015-09-25 11:54:58 +02005182 u32 slice_info = I915_READ(GEN8_GT_SLICE_INFO);
David Weinehall36cdd012016-08-22 13:59:31 +03005183 int s;
Łukasz Daniluk91bedd32015-09-25 11:54:58 +02005184
Imre Deakf08a0c92016-08-31 19:13:04 +03005185 sseu->slice_mask = slice_info & GEN8_LSLICESTAT_MASK;
Łukasz Daniluk91bedd32015-09-25 11:54:58 +02005186
Imre Deakf08a0c92016-08-31 19:13:04 +03005187 if (sseu->slice_mask) {
Imre Deak57ec1712016-08-31 19:13:05 +03005188 sseu->subslice_mask = INTEL_INFO(dev_priv)->sseu.subslice_mask;
Imre Deak43b67992016-08-31 19:13:02 +03005189 sseu->eu_per_subslice =
5190 INTEL_INFO(dev_priv)->sseu.eu_per_subslice;
Imre Deak57ec1712016-08-31 19:13:05 +03005191 sseu->eu_total = sseu->eu_per_subslice *
5192 sseu_subslice_total(sseu);
Łukasz Daniluk91bedd32015-09-25 11:54:58 +02005193
5194 /* subtract fused off EU(s) from enabled slice(s) */
Imre Deak795b38b2016-08-31 19:13:07 +03005195 for (s = 0; s < fls(sseu->slice_mask); s++) {
Imre Deak43b67992016-08-31 19:13:02 +03005196 u8 subslice_7eu =
5197 INTEL_INFO(dev_priv)->sseu.subslice_7eu[s];
Łukasz Daniluk91bedd32015-09-25 11:54:58 +02005198
Imre Deak915490d2016-08-31 19:13:01 +03005199 sseu->eu_total -= hweight8(subslice_7eu);
Łukasz Daniluk91bedd32015-09-25 11:54:58 +02005200 }
5201 }
5202}
5203
Imre Deak615d8902016-08-31 19:13:03 +03005204static void i915_print_sseu_info(struct seq_file *m, bool is_available_info,
5205 const struct sseu_dev_info *sseu)
5206{
5207 struct drm_i915_private *dev_priv = node_to_i915(m->private);
5208 const char *type = is_available_info ? "Available" : "Enabled";
5209
Imre Deakc67ba532016-08-31 19:13:06 +03005210 seq_printf(m, " %s Slice Mask: %04x\n", type,
5211 sseu->slice_mask);
Imre Deak615d8902016-08-31 19:13:03 +03005212 seq_printf(m, " %s Slice Total: %u\n", type,
Imre Deakf08a0c92016-08-31 19:13:04 +03005213 hweight8(sseu->slice_mask));
Imre Deak615d8902016-08-31 19:13:03 +03005214 seq_printf(m, " %s Subslice Total: %u\n", type,
Imre Deak57ec1712016-08-31 19:13:05 +03005215 sseu_subslice_total(sseu));
Imre Deakc67ba532016-08-31 19:13:06 +03005216 seq_printf(m, " %s Subslice Mask: %04x\n", type,
5217 sseu->subslice_mask);
Imre Deak615d8902016-08-31 19:13:03 +03005218 seq_printf(m, " %s Subslice Per Slice: %u\n", type,
Imre Deak57ec1712016-08-31 19:13:05 +03005219 hweight8(sseu->subslice_mask));
Imre Deak615d8902016-08-31 19:13:03 +03005220 seq_printf(m, " %s EU Total: %u\n", type,
5221 sseu->eu_total);
5222 seq_printf(m, " %s EU Per Subslice: %u\n", type,
5223 sseu->eu_per_subslice);
5224
5225 if (!is_available_info)
5226 return;
5227
5228 seq_printf(m, " Has Pooled EU: %s\n", yesno(HAS_POOLED_EU(dev_priv)));
5229 if (HAS_POOLED_EU(dev_priv))
5230 seq_printf(m, " Min EU in pool: %u\n", sseu->min_eu_in_pool);
5231
5232 seq_printf(m, " Has Slice Power Gating: %s\n",
5233 yesno(sseu->has_slice_pg));
5234 seq_printf(m, " Has Subslice Power Gating: %s\n",
5235 yesno(sseu->has_subslice_pg));
5236 seq_printf(m, " Has EU Power Gating: %s\n",
5237 yesno(sseu->has_eu_pg));
5238}
5239
Jeff McGee38732182015-02-13 10:27:54 -06005240static int i915_sseu_status(struct seq_file *m, void *unused)
5241{
David Weinehall36cdd012016-08-22 13:59:31 +03005242 struct drm_i915_private *dev_priv = node_to_i915(m->private);
Imre Deak915490d2016-08-31 19:13:01 +03005243 struct sseu_dev_info sseu;
Jeff McGee38732182015-02-13 10:27:54 -06005244
David Weinehall36cdd012016-08-22 13:59:31 +03005245 if (INTEL_GEN(dev_priv) < 8)
Jeff McGee38732182015-02-13 10:27:54 -06005246 return -ENODEV;
5247
5248 seq_puts(m, "SSEU Device Info\n");
Imre Deak615d8902016-08-31 19:13:03 +03005249 i915_print_sseu_info(m, true, &INTEL_INFO(dev_priv)->sseu);
Jeff McGee38732182015-02-13 10:27:54 -06005250
Jeff McGee7f992ab2015-02-13 10:27:55 -06005251 seq_puts(m, "SSEU Device Status\n");
Imre Deak915490d2016-08-31 19:13:01 +03005252 memset(&sseu, 0, sizeof(sseu));
David Weinehall238010e2016-08-01 17:33:27 +03005253
5254 intel_runtime_pm_get(dev_priv);
5255
David Weinehall36cdd012016-08-22 13:59:31 +03005256 if (IS_CHERRYVIEW(dev_priv)) {
Imre Deak915490d2016-08-31 19:13:01 +03005257 cherryview_sseu_device_status(dev_priv, &sseu);
David Weinehall36cdd012016-08-22 13:59:31 +03005258 } else if (IS_BROADWELL(dev_priv)) {
Imre Deak915490d2016-08-31 19:13:01 +03005259 broadwell_sseu_device_status(dev_priv, &sseu);
David Weinehall36cdd012016-08-22 13:59:31 +03005260 } else if (INTEL_GEN(dev_priv) >= 9) {
Imre Deak915490d2016-08-31 19:13:01 +03005261 gen9_sseu_device_status(dev_priv, &sseu);
Jeff McGee7f992ab2015-02-13 10:27:55 -06005262 }
David Weinehall238010e2016-08-01 17:33:27 +03005263
5264 intel_runtime_pm_put(dev_priv);
5265
Imre Deak615d8902016-08-31 19:13:03 +03005266 i915_print_sseu_info(m, false, &sseu);
Jeff McGee7f992ab2015-02-13 10:27:55 -06005267
Jeff McGee38732182015-02-13 10:27:54 -06005268 return 0;
5269}
5270
Ben Widawsky6d794d42011-04-25 11:25:56 -07005271static int i915_forcewake_open(struct inode *inode, struct file *file)
5272{
David Weinehall36cdd012016-08-22 13:59:31 +03005273 struct drm_i915_private *dev_priv = inode->i_private;
Ben Widawsky6d794d42011-04-25 11:25:56 -07005274
David Weinehall36cdd012016-08-22 13:59:31 +03005275 if (INTEL_GEN(dev_priv) < 6)
Ben Widawsky6d794d42011-04-25 11:25:56 -07005276 return 0;
5277
Chris Wilson6daccb02015-01-16 11:34:35 +02005278 intel_runtime_pm_get(dev_priv);
Mika Kuoppala59bad942015-01-16 11:34:40 +02005279 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6d794d42011-04-25 11:25:56 -07005280
5281 return 0;
5282}
5283
Ben Widawskyc43b5632012-04-16 14:07:40 -07005284static int i915_forcewake_release(struct inode *inode, struct file *file)
Ben Widawsky6d794d42011-04-25 11:25:56 -07005285{
David Weinehall36cdd012016-08-22 13:59:31 +03005286 struct drm_i915_private *dev_priv = inode->i_private;
Ben Widawsky6d794d42011-04-25 11:25:56 -07005287
David Weinehall36cdd012016-08-22 13:59:31 +03005288 if (INTEL_GEN(dev_priv) < 6)
Ben Widawsky6d794d42011-04-25 11:25:56 -07005289 return 0;
5290
Mika Kuoppala59bad942015-01-16 11:34:40 +02005291 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Chris Wilson6daccb02015-01-16 11:34:35 +02005292 intel_runtime_pm_put(dev_priv);
Ben Widawsky6d794d42011-04-25 11:25:56 -07005293
5294 return 0;
5295}
5296
5297static const struct file_operations i915_forcewake_fops = {
5298 .owner = THIS_MODULE,
5299 .open = i915_forcewake_open,
5300 .release = i915_forcewake_release,
5301};
5302
5303static int i915_forcewake_create(struct dentry *root, struct drm_minor *minor)
5304{
Ben Widawsky6d794d42011-04-25 11:25:56 -07005305 struct dentry *ent;
5306
5307 ent = debugfs_create_file("i915_forcewake_user",
Ben Widawsky8eb57292011-05-11 15:10:58 -07005308 S_IRUSR,
David Weinehall36cdd012016-08-22 13:59:31 +03005309 root, to_i915(minor->dev),
Ben Widawsky6d794d42011-04-25 11:25:56 -07005310 &i915_forcewake_fops);
Wei Yongjunf3c5fe92013-12-16 14:13:25 +08005311 if (!ent)
5312 return -ENOMEM;
Ben Widawsky6d794d42011-04-25 11:25:56 -07005313
Ben Widawsky8eb57292011-05-11 15:10:58 -07005314 return drm_add_fake_info_node(minor, ent, &i915_forcewake_fops);
Ben Widawsky6d794d42011-04-25 11:25:56 -07005315}
5316
Daniel Vetter6a9c3082011-12-14 13:57:11 +01005317static int i915_debugfs_create(struct dentry *root,
5318 struct drm_minor *minor,
5319 const char *name,
5320 const struct file_operations *fops)
Jesse Barnes358733e2011-07-27 11:53:01 -07005321{
Jesse Barnes358733e2011-07-27 11:53:01 -07005322 struct dentry *ent;
5323
Daniel Vetter6a9c3082011-12-14 13:57:11 +01005324 ent = debugfs_create_file(name,
Jesse Barnes358733e2011-07-27 11:53:01 -07005325 S_IRUGO | S_IWUSR,
David Weinehall36cdd012016-08-22 13:59:31 +03005326 root, to_i915(minor->dev),
Daniel Vetter6a9c3082011-12-14 13:57:11 +01005327 fops);
Wei Yongjunf3c5fe92013-12-16 14:13:25 +08005328 if (!ent)
5329 return -ENOMEM;
Jesse Barnes358733e2011-07-27 11:53:01 -07005330
Daniel Vetter6a9c3082011-12-14 13:57:11 +01005331 return drm_add_fake_info_node(minor, ent, fops);
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07005332}
5333
Lespiau, Damien06c5bf82013-10-17 19:09:56 +01005334static const struct drm_info_list i915_debugfs_list[] = {
Chris Wilson311bd682011-01-13 19:06:50 +00005335 {"i915_capabilities", i915_capabilities, 0},
Chris Wilson73aa8082010-09-30 11:46:12 +01005336 {"i915_gem_objects", i915_gem_object_info, 0},
Chris Wilson08c18322011-01-10 00:00:24 +00005337 {"i915_gem_gtt", i915_gem_gtt_info, 0},
Chris Wilson6da84822016-08-15 10:48:44 +01005338 {"i915_gem_pin_display", i915_gem_gtt_info, 0, (void *)1},
Chris Wilson6d2b88852013-08-07 18:30:54 +01005339 {"i915_gem_stolen", i915_gem_stolen_list_info },
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01005340 {"i915_gem_pageflip", i915_gem_pageflip_info, 0},
Ben Gamari20172632009-02-17 20:08:50 -05005341 {"i915_gem_request", i915_gem_request_info, 0},
5342 {"i915_gem_seqno", i915_gem_seqno_info, 0},
Chris Wilsona6172a82009-02-11 14:26:38 +00005343 {"i915_gem_fence_regs", i915_gem_fence_regs_info, 0},
Ben Gamari20172632009-02-17 20:08:50 -05005344 {"i915_gem_interrupt", i915_interrupt_info, 0},
Chris Wilson1ec14ad2010-12-04 11:30:53 +00005345 {"i915_gem_hws", i915_hws_info, 0, (void *)RCS},
5346 {"i915_gem_hws_blt", i915_hws_info, 0, (void *)BCS},
5347 {"i915_gem_hws_bsd", i915_hws_info, 0, (void *)VCS},
Xiang, Haihao9010ebf2013-05-29 09:22:36 -07005348 {"i915_gem_hws_vebox", i915_hws_info, 0, (void *)VECS},
Brad Volkin493018d2014-12-11 12:13:08 -08005349 {"i915_gem_batch_pool", i915_gem_batch_pool_info, 0},
Dave Gordon8b417c22015-08-12 15:43:44 +01005350 {"i915_guc_info", i915_guc_info, 0},
Alex Daifdf5d352015-08-12 15:43:37 +01005351 {"i915_guc_load_status", i915_guc_load_status_info, 0},
Alex Dai4c7e77f2015-08-12 15:43:40 +01005352 {"i915_guc_log_dump", i915_guc_log_dump, 0},
Deepak Sadb4bd12014-03-31 11:30:02 +05305353 {"i915_frequency_info", i915_frequency_info, 0},
Chris Wilsonf6544492015-01-26 18:03:04 +02005354 {"i915_hangcheck_info", i915_hangcheck_info, 0},
Jesse Barnesf97108d2010-01-29 11:27:07 -08005355 {"i915_drpc_info", i915_drpc_info, 0},
Jesse Barnes7648fa92010-05-20 14:28:11 -07005356 {"i915_emon_status", i915_emon_status, 0},
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07005357 {"i915_ring_freq_table", i915_ring_freq_table, 0},
Daniel Vetter9a851782015-06-18 10:30:22 +02005358 {"i915_frontbuffer_tracking", i915_frontbuffer_tracking, 0},
Jesse Barnesb5e50c32010-02-05 12:42:41 -08005359 {"i915_fbc_status", i915_fbc_status, 0},
Paulo Zanoni92d44622013-05-31 16:33:24 -03005360 {"i915_ips_status", i915_ips_status, 0},
Jesse Barnes4a9bef32010-02-05 12:47:35 -08005361 {"i915_sr_status", i915_sr_status, 0},
Chris Wilson44834a62010-08-19 16:09:23 +01005362 {"i915_opregion", i915_opregion, 0},
Jani Nikulaada8f952015-12-15 13:17:12 +02005363 {"i915_vbt", i915_vbt, 0},
Chris Wilson37811fc2010-08-25 22:45:57 +01005364 {"i915_gem_framebuffer", i915_gem_framebuffer_info, 0},
Ben Widawskye76d3632011-03-19 18:14:29 -07005365 {"i915_context_status", i915_context_status, 0},
Ben Widawskyc0ab1ae2014-08-07 13:24:26 +01005366 {"i915_dump_lrc", i915_dump_lrc, 0},
Mika Kuoppalaf65367b2015-01-16 11:34:42 +02005367 {"i915_forcewake_domains", i915_forcewake_domains, 0},
Daniel Vetterea16a3c2011-12-14 13:57:16 +01005368 {"i915_swizzle_info", i915_swizzle_info, 0},
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01005369 {"i915_ppgtt_info", i915_ppgtt_info, 0},
Ben Widawsky63573eb2013-07-04 11:02:07 -07005370 {"i915_llc", i915_llc, 0},
Rodrigo Vivie91fd8c2013-07-11 18:44:59 -03005371 {"i915_edp_psr_status", i915_edp_psr_status, 0},
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02005372 {"i915_sink_crc_eDP1", i915_sink_crc, 0},
Jesse Barnesec013e72013-08-20 10:29:23 +01005373 {"i915_energy_uJ", i915_energy_uJ, 0},
Damien Lespiau6455c872015-06-04 18:23:57 +01005374 {"i915_runtime_pm_status", i915_runtime_pm_status, 0},
Imre Deak1da51582013-11-25 17:15:35 +02005375 {"i915_power_domain_info", i915_power_domain_info, 0},
Damien Lespiaub7cec662015-10-27 14:47:01 +02005376 {"i915_dmc_info", i915_dmc_info, 0},
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08005377 {"i915_display_info", i915_display_info, 0},
Chris Wilson1b365952016-10-04 21:11:31 +01005378 {"i915_engine_info", i915_engine_info, 0},
Ben Widawskye04934c2014-06-30 09:53:42 -07005379 {"i915_semaphore_status", i915_semaphore_status, 0},
Daniel Vetter728e29d2014-06-25 22:01:53 +03005380 {"i915_shared_dplls_info", i915_shared_dplls_info, 0},
Dave Airlie11bed952014-05-12 15:22:27 +10005381 {"i915_dp_mst_info", i915_dp_mst_info, 0},
Damien Lespiau1ed1ef92014-08-30 16:50:59 +01005382 {"i915_wa_registers", i915_wa_registers, 0},
Damien Lespiauc5511e42014-11-04 17:06:51 +00005383 {"i915_ddb_info", i915_ddb_info, 0},
Jeff McGee38732182015-02-13 10:27:54 -06005384 {"i915_sseu_status", i915_sseu_status, 0},
Vandana Kannana54746e2015-03-03 20:53:10 +05305385 {"i915_drrs_status", i915_drrs_status, 0},
Chris Wilson1854d5c2015-04-07 16:20:32 +01005386 {"i915_rps_boost_info", i915_rps_boost_info, 0},
Ben Gamari20172632009-02-17 20:08:50 -05005387};
Ben Gamari27c202a2009-07-01 22:26:52 -04005388#define I915_DEBUGFS_ENTRIES ARRAY_SIZE(i915_debugfs_list)
Ben Gamari20172632009-02-17 20:08:50 -05005389
Lespiau, Damien06c5bf82013-10-17 19:09:56 +01005390static const struct i915_debugfs_files {
Daniel Vetter34b96742013-07-04 20:49:44 +02005391 const char *name;
5392 const struct file_operations *fops;
5393} i915_debugfs_files[] = {
5394 {"i915_wedged", &i915_wedged_fops},
5395 {"i915_max_freq", &i915_max_freq_fops},
5396 {"i915_min_freq", &i915_min_freq_fops},
5397 {"i915_cache_sharing", &i915_cache_sharing_fops},
Chris Wilson094f9a52013-09-25 17:34:55 +01005398 {"i915_ring_missed_irq", &i915_ring_missed_irq_fops},
5399 {"i915_ring_test_irq", &i915_ring_test_irq_fops},
Daniel Vetter34b96742013-07-04 20:49:44 +02005400 {"i915_gem_drop_caches", &i915_drop_caches_fops},
5401 {"i915_error_state", &i915_error_state_fops},
5402 {"i915_next_seqno", &i915_next_seqno_fops},
Damien Lespiaubd9db022013-10-15 18:55:36 +01005403 {"i915_display_crc_ctl", &i915_display_crc_ctl_fops},
Ville Syrjälä369a1342014-01-22 14:36:08 +02005404 {"i915_pri_wm_latency", &i915_pri_wm_latency_fops},
5405 {"i915_spr_wm_latency", &i915_spr_wm_latency_fops},
5406 {"i915_cur_wm_latency", &i915_cur_wm_latency_fops},
Rodrigo Vivida46f932014-08-01 02:04:45 -07005407 {"i915_fbc_false_color", &i915_fbc_fc_fops},
Todd Previteeb3394fa2015-04-18 00:04:19 -07005408 {"i915_dp_test_data", &i915_displayport_test_data_fops},
5409 {"i915_dp_test_type", &i915_displayport_test_type_fops},
5410 {"i915_dp_test_active", &i915_displayport_test_active_fops}
Daniel Vetter34b96742013-07-04 20:49:44 +02005411};
5412
David Weinehall36cdd012016-08-22 13:59:31 +03005413void intel_display_crc_init(struct drm_i915_private *dev_priv)
Damien Lespiau07144422013-10-15 18:55:40 +01005414{
Daniel Vetterb3783602013-11-14 11:30:42 +01005415 enum pipe pipe;
Damien Lespiau07144422013-10-15 18:55:40 +01005416
Damien Lespiau055e3932014-08-18 13:49:10 +01005417 for_each_pipe(dev_priv, pipe) {
Daniel Vetterb3783602013-11-14 11:30:42 +01005418 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe];
Damien Lespiau07144422013-10-15 18:55:40 +01005419
Damien Lespiaud538bbd2013-10-21 14:29:30 +01005420 pipe_crc->opened = false;
5421 spin_lock_init(&pipe_crc->lock);
Damien Lespiau07144422013-10-15 18:55:40 +01005422 init_waitqueue_head(&pipe_crc->wq);
5423 }
5424}
5425
Chris Wilson1dac8912016-06-24 14:00:17 +01005426int i915_debugfs_register(struct drm_i915_private *dev_priv)
Ben Gamari20172632009-02-17 20:08:50 -05005427{
Chris Wilson91c8a322016-07-05 10:40:23 +01005428 struct drm_minor *minor = dev_priv->drm.primary;
Daniel Vetter34b96742013-07-04 20:49:44 +02005429 int ret, i;
Chris Wilsonf3cd4742009-10-13 22:20:20 +01005430
Ben Widawsky6d794d42011-04-25 11:25:56 -07005431 ret = i915_forcewake_create(minor->debugfs_root, minor);
5432 if (ret)
5433 return ret;
Daniel Vetter6a9c3082011-12-14 13:57:11 +01005434
Damien Lespiau07144422013-10-15 18:55:40 +01005435 for (i = 0; i < ARRAY_SIZE(i915_pipe_crc_data); i++) {
5436 ret = i915_pipe_crc_create(minor->debugfs_root, minor, i);
5437 if (ret)
5438 return ret;
5439 }
5440
Daniel Vetter34b96742013-07-04 20:49:44 +02005441 for (i = 0; i < ARRAY_SIZE(i915_debugfs_files); i++) {
5442 ret = i915_debugfs_create(minor->debugfs_root, minor,
5443 i915_debugfs_files[i].name,
5444 i915_debugfs_files[i].fops);
5445 if (ret)
5446 return ret;
5447 }
Mika Kuoppala40633212012-12-04 15:12:00 +02005448
Ben Gamari27c202a2009-07-01 22:26:52 -04005449 return drm_debugfs_create_files(i915_debugfs_list,
5450 I915_DEBUGFS_ENTRIES,
Ben Gamari20172632009-02-17 20:08:50 -05005451 minor->debugfs_root, minor);
5452}
5453
Chris Wilson1dac8912016-06-24 14:00:17 +01005454void i915_debugfs_unregister(struct drm_i915_private *dev_priv)
Ben Gamari20172632009-02-17 20:08:50 -05005455{
Chris Wilson91c8a322016-07-05 10:40:23 +01005456 struct drm_minor *minor = dev_priv->drm.primary;
Daniel Vetter34b96742013-07-04 20:49:44 +02005457 int i;
5458
Ben Gamari27c202a2009-07-01 22:26:52 -04005459 drm_debugfs_remove_files(i915_debugfs_list,
5460 I915_DEBUGFS_ENTRIES, minor);
Damien Lespiau07144422013-10-15 18:55:40 +01005461
David Weinehall36cdd012016-08-22 13:59:31 +03005462 drm_debugfs_remove_files((struct drm_info_list *)&i915_forcewake_fops,
Ben Widawsky6d794d42011-04-25 11:25:56 -07005463 1, minor);
Damien Lespiau07144422013-10-15 18:55:40 +01005464
Daniel Vettere309a992013-10-16 22:55:51 +02005465 for (i = 0; i < ARRAY_SIZE(i915_pipe_crc_data); i++) {
Damien Lespiau07144422013-10-15 18:55:40 +01005466 struct drm_info_list *info_list =
5467 (struct drm_info_list *)&i915_pipe_crc_data[i];
5468
5469 drm_debugfs_remove_files(info_list, 1, minor);
5470 }
5471
Daniel Vetter34b96742013-07-04 20:49:44 +02005472 for (i = 0; i < ARRAY_SIZE(i915_debugfs_files); i++) {
5473 struct drm_info_list *info_list =
David Weinehall36cdd012016-08-22 13:59:31 +03005474 (struct drm_info_list *)i915_debugfs_files[i].fops;
Daniel Vetter34b96742013-07-04 20:49:44 +02005475
5476 drm_debugfs_remove_files(info_list, 1, minor);
5477 }
Ben Gamari20172632009-02-17 20:08:50 -05005478}
Jani Nikulaaa7471d2015-04-01 11:15:21 +03005479
5480struct dpcd_block {
5481 /* DPCD dump start address. */
5482 unsigned int offset;
5483 /* DPCD dump end address, inclusive. If unset, .size will be used. */
5484 unsigned int end;
5485 /* DPCD dump size. Used if .end is unset. If unset, defaults to 1. */
5486 size_t size;
5487 /* Only valid for eDP. */
5488 bool edp;
5489};
5490
5491static const struct dpcd_block i915_dpcd_debug[] = {
5492 { .offset = DP_DPCD_REV, .size = DP_RECEIVER_CAP_SIZE },
5493 { .offset = DP_PSR_SUPPORT, .end = DP_PSR_CAPS },
5494 { .offset = DP_DOWNSTREAM_PORT_0, .size = 16 },
5495 { .offset = DP_LINK_BW_SET, .end = DP_EDP_CONFIGURATION_SET },
5496 { .offset = DP_SINK_COUNT, .end = DP_ADJUST_REQUEST_LANE2_3 },
5497 { .offset = DP_SET_POWER },
5498 { .offset = DP_EDP_DPCD_REV },
5499 { .offset = DP_EDP_GENERAL_CAP_1, .end = DP_EDP_GENERAL_CAP_3 },
5500 { .offset = DP_EDP_DISPLAY_CONTROL_REGISTER, .end = DP_EDP_BACKLIGHT_FREQ_CAP_MAX_LSB },
5501 { .offset = DP_EDP_DBC_MINIMUM_BRIGHTNESS_SET, .end = DP_EDP_DBC_MAXIMUM_BRIGHTNESS_SET },
5502};
5503
5504static int i915_dpcd_show(struct seq_file *m, void *data)
5505{
5506 struct drm_connector *connector = m->private;
5507 struct intel_dp *intel_dp =
5508 enc_to_intel_dp(&intel_attached_encoder(connector)->base);
5509 uint8_t buf[16];
5510 ssize_t err;
5511 int i;
5512
Mika Kuoppala5c1a8872015-05-15 13:09:21 +03005513 if (connector->status != connector_status_connected)
5514 return -ENODEV;
5515
Jani Nikulaaa7471d2015-04-01 11:15:21 +03005516 for (i = 0; i < ARRAY_SIZE(i915_dpcd_debug); i++) {
5517 const struct dpcd_block *b = &i915_dpcd_debug[i];
5518 size_t size = b->end ? b->end - b->offset + 1 : (b->size ?: 1);
5519
5520 if (b->edp &&
5521 connector->connector_type != DRM_MODE_CONNECTOR_eDP)
5522 continue;
5523
5524 /* low tech for now */
5525 if (WARN_ON(size > sizeof(buf)))
5526 continue;
5527
5528 err = drm_dp_dpcd_read(&intel_dp->aux, b->offset, buf, size);
5529 if (err <= 0) {
5530 DRM_ERROR("dpcd read (%zu bytes at %u) failed (%zd)\n",
5531 size, b->offset, err);
5532 continue;
5533 }
5534
5535 seq_printf(m, "%04x: %*ph\n", b->offset, (int) size, buf);
kbuild test robotb3f9d7d2015-04-16 18:34:06 +08005536 }
Jani Nikulaaa7471d2015-04-01 11:15:21 +03005537
5538 return 0;
5539}
5540
5541static int i915_dpcd_open(struct inode *inode, struct file *file)
5542{
5543 return single_open(file, i915_dpcd_show, inode->i_private);
5544}
5545
5546static const struct file_operations i915_dpcd_fops = {
5547 .owner = THIS_MODULE,
5548 .open = i915_dpcd_open,
5549 .read = seq_read,
5550 .llseek = seq_lseek,
5551 .release = single_release,
5552};
5553
David Weinehallecbd6782016-08-23 12:23:56 +03005554static int i915_panel_show(struct seq_file *m, void *data)
5555{
5556 struct drm_connector *connector = m->private;
5557 struct intel_dp *intel_dp =
5558 enc_to_intel_dp(&intel_attached_encoder(connector)->base);
5559
5560 if (connector->status != connector_status_connected)
5561 return -ENODEV;
5562
5563 seq_printf(m, "Panel power up delay: %d\n",
5564 intel_dp->panel_power_up_delay);
5565 seq_printf(m, "Panel power down delay: %d\n",
5566 intel_dp->panel_power_down_delay);
5567 seq_printf(m, "Backlight on delay: %d\n",
5568 intel_dp->backlight_on_delay);
5569 seq_printf(m, "Backlight off delay: %d\n",
5570 intel_dp->backlight_off_delay);
5571
5572 return 0;
5573}
5574
5575static int i915_panel_open(struct inode *inode, struct file *file)
5576{
5577 return single_open(file, i915_panel_show, inode->i_private);
5578}
5579
5580static const struct file_operations i915_panel_fops = {
5581 .owner = THIS_MODULE,
5582 .open = i915_panel_open,
5583 .read = seq_read,
5584 .llseek = seq_lseek,
5585 .release = single_release,
5586};
5587
Jani Nikulaaa7471d2015-04-01 11:15:21 +03005588/**
5589 * i915_debugfs_connector_add - add i915 specific connector debugfs files
5590 * @connector: pointer to a registered drm_connector
5591 *
5592 * Cleanup will be done by drm_connector_unregister() through a call to
5593 * drm_debugfs_connector_remove().
5594 *
5595 * Returns 0 on success, negative error codes on error.
5596 */
5597int i915_debugfs_connector_add(struct drm_connector *connector)
5598{
5599 struct dentry *root = connector->debugfs_entry;
5600
5601 /* The connector must have been registered beforehands. */
5602 if (!root)
5603 return -ENODEV;
5604
5605 if (connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort ||
5606 connector->connector_type == DRM_MODE_CONNECTOR_eDP)
David Weinehallecbd6782016-08-23 12:23:56 +03005607 debugfs_create_file("i915_dpcd", S_IRUGO, root,
5608 connector, &i915_dpcd_fops);
5609
5610 if (connector->connector_type == DRM_MODE_CONNECTOR_eDP)
5611 debugfs_create_file("i915_panel_timings", S_IRUGO, root,
5612 connector, &i915_panel_fops);
Jani Nikulaaa7471d2015-04-01 11:15:21 +03005613
5614 return 0;
5615}