blob: 7d303e721a77a92fe533805ba9ed2f95ed8bd043 [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 Wilson6d2b8882013-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
Chris Wilsonf13d3f72010-09-20 17:36:15 +010043enum {
Chris Wilson69dc4982010-10-19 10:36:51 +010044 ACTIVE_LIST,
Chris Wilsonf13d3f72010-09-20 17:36:15 +010045 INACTIVE_LIST,
Chris Wilsond21d5972010-09-26 11:19:33 +010046 PINNED_LIST,
Chris Wilsonf13d3f72010-09-20 17:36:15 +010047};
Ben Gamari433e12f2009-02-17 20:08:51 -050048
Chris Wilson70d39fe2010-08-25 16:03:34 +010049static const char *yesno(int v)
50{
51 return v ? "yes" : "no";
52}
53
Damien Lespiau497666d2013-10-15 18:55:39 +010054/* As the drm_debugfs_init() routines are called before dev->dev_private is
55 * allocated we need to hook into the minor for release. */
56static int
57drm_add_fake_info_node(struct drm_minor *minor,
58 struct dentry *ent,
59 const void *key)
60{
61 struct drm_info_node *node;
62
63 node = kmalloc(sizeof(*node), GFP_KERNEL);
64 if (node == NULL) {
65 debugfs_remove(ent);
66 return -ENOMEM;
67 }
68
69 node->minor = minor;
70 node->dent = ent;
71 node->info_ent = (void *) key;
72
73 mutex_lock(&minor->debugfs_lock);
74 list_add(&node->list, &minor->debugfs_list);
75 mutex_unlock(&minor->debugfs_lock);
76
77 return 0;
78}
79
Chris Wilson70d39fe2010-08-25 16:03:34 +010080static int i915_capabilities(struct seq_file *m, void *data)
81{
Damien Lespiau9f25d002014-05-13 15:30:28 +010082 struct drm_info_node *node = m->private;
Chris Wilson70d39fe2010-08-25 16:03:34 +010083 struct drm_device *dev = node->minor->dev;
84 const struct intel_device_info *info = INTEL_INFO(dev);
85
86 seq_printf(m, "gen: %d\n", info->gen);
Paulo Zanoni03d00ac2011-10-14 18:17:41 -030087 seq_printf(m, "pch: %d\n", INTEL_PCH_TYPE(dev));
Damien Lespiau79fc46d2013-04-23 16:37:17 +010088#define PRINT_FLAG(x) seq_printf(m, #x ": %s\n", yesno(info->x))
89#define SEP_SEMICOLON ;
90 DEV_INFO_FOR_EACH_FLAG(PRINT_FLAG, SEP_SEMICOLON);
91#undef PRINT_FLAG
92#undef SEP_SEMICOLON
Chris Wilson70d39fe2010-08-25 16:03:34 +010093
94 return 0;
95}
Ben Gamari433e12f2009-02-17 20:08:51 -050096
Chris Wilson05394f32010-11-08 19:18:58 +000097static const char *get_pin_flag(struct drm_i915_gem_object *obj)
Chris Wilsona6172a82009-02-11 14:26:38 +000098{
Chris Wilsonbaaa5cf2015-04-15 16:42:46 +010099 if (obj->pin_display)
Chris Wilsona6172a82009-02-11 14:26:38 +0000100 return "p";
101 else
102 return " ";
103}
104
Chris Wilson05394f32010-11-08 19:18:58 +0000105static const char *get_tiling_flag(struct drm_i915_gem_object *obj)
Chris Wilsona6172a82009-02-11 14:26:38 +0000106{
Akshay Joshi0206e352011-08-16 15:34:10 -0400107 switch (obj->tiling_mode) {
108 default:
109 case I915_TILING_NONE: return " ";
110 case I915_TILING_X: return "X";
111 case I915_TILING_Y: return "Y";
112 }
Chris Wilsona6172a82009-02-11 14:26:38 +0000113}
114
Ben Widawsky1d693bc2013-07-31 17:00:00 -0700115static inline const char *get_global_flag(struct drm_i915_gem_object *obj)
116{
Tvrtko Ursulinaff43762014-10-24 12:42:33 +0100117 return i915_gem_obj_to_ggtt(obj) ? "g" : " ";
Ben Widawsky1d693bc2013-07-31 17:00:00 -0700118}
119
Chris Wilson37811fc2010-08-25 22:45:57 +0100120static void
121describe_obj(struct seq_file *m, struct drm_i915_gem_object *obj)
122{
Chris Wilsonb4716182015-04-27 13:41:17 +0100123 struct drm_i915_private *dev_priv = to_i915(obj->base.dev);
124 struct intel_engine_cs *ring;
Ben Widawsky1d693bc2013-07-31 17:00:00 -0700125 struct i915_vma *vma;
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800126 int pin_count = 0;
Chris Wilsonb4716182015-04-27 13:41:17 +0100127 int i;
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800128
Chris Wilsonb4716182015-04-27 13:41:17 +0100129 seq_printf(m, "%pK: %s%s%s%s %8zdKiB %02x %02x [ ",
Chris Wilson37811fc2010-08-25 22:45:57 +0100130 &obj->base,
Chris Wilson481a3d42015-04-07 16:20:39 +0100131 obj->active ? "*" : " ",
Chris Wilson37811fc2010-08-25 22:45:57 +0100132 get_pin_flag(obj),
133 get_tiling_flag(obj),
Ben Widawsky1d693bc2013-07-31 17:00:00 -0700134 get_global_flag(obj),
Eric Anholta05a5862011-12-20 08:54:15 -0800135 obj->base.size / 1024,
Chris Wilson37811fc2010-08-25 22:45:57 +0100136 obj->base.read_domains,
Chris Wilsonb4716182015-04-27 13:41:17 +0100137 obj->base.write_domain);
138 for_each_ring(ring, dev_priv, i)
139 seq_printf(m, "%x ",
140 i915_gem_request_get_seqno(obj->last_read_req[i]));
141 seq_printf(m, "] %x %x%s%s%s",
John Harrison97b2a6a2014-11-24 18:49:26 +0000142 i915_gem_request_get_seqno(obj->last_write_req),
143 i915_gem_request_get_seqno(obj->last_fenced_req),
Chris Wilson0a4cd7c2014-08-22 14:41:39 +0100144 i915_cache_level_str(to_i915(obj->base.dev), obj->cache_level),
Chris Wilson37811fc2010-08-25 22:45:57 +0100145 obj->dirty ? " dirty" : "",
146 obj->madv == I915_MADV_DONTNEED ? " purgeable" : "");
147 if (obj->base.name)
148 seq_printf(m, " (name: %d)", obj->base.name);
Dan Carpenterba0635f2015-02-25 16:17:48 +0300149 list_for_each_entry(vma, &obj->vma_list, vma_link) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800150 if (vma->pin_count > 0)
151 pin_count++;
Dan Carpenterba0635f2015-02-25 16:17:48 +0300152 }
153 seq_printf(m, " (pinned x %d)", pin_count);
Chris Wilsoncc98b412013-08-09 12:25:09 +0100154 if (obj->pin_display)
155 seq_printf(m, " (display)");
Chris Wilson37811fc2010-08-25 22:45:57 +0100156 if (obj->fence_reg != I915_FENCE_REG_NONE)
157 seq_printf(m, " (fence: %d)", obj->fence_reg);
Ben Widawsky1d693bc2013-07-31 17:00:00 -0700158 list_for_each_entry(vma, &obj->vma_list, vma_link) {
Tvrtko Ursulin8d2fdc32015-05-27 10:52:32 +0100159 seq_printf(m, " (%sgtt offset: %08llx, size: %08llx",
160 i915_is_ggtt(vma->vm) ? "g" : "pp",
161 vma->node.start, vma->node.size);
162 if (i915_is_ggtt(vma->vm))
163 seq_printf(m, ", type: %u)", vma->ggtt_view.type);
Ben Widawsky1d693bc2013-07-31 17:00:00 -0700164 else
Tvrtko Ursulin8d2fdc32015-05-27 10:52:32 +0100165 seq_puts(m, ")");
Ben Widawsky1d693bc2013-07-31 17:00:00 -0700166 }
Chris Wilsonc1ad11f2012-11-15 11:32:21 +0000167 if (obj->stolen)
Thierry Reding440fd522015-01-23 09:05:06 +0100168 seq_printf(m, " (stolen: %08llx)", obj->stolen->start);
Chris Wilson30154652015-04-07 17:28:24 +0100169 if (obj->pin_display || obj->fault_mappable) {
Chris Wilson6299f992010-11-24 12:23:44 +0000170 char s[3], *t = s;
Chris Wilson30154652015-04-07 17:28:24 +0100171 if (obj->pin_display)
Chris Wilson6299f992010-11-24 12:23:44 +0000172 *t++ = 'p';
173 if (obj->fault_mappable)
174 *t++ = 'f';
175 *t = '\0';
176 seq_printf(m, " (%s mappable)", s);
177 }
Chris Wilsonb4716182015-04-27 13:41:17 +0100178 if (obj->last_write_req != NULL)
John Harrison41c52412014-11-24 18:49:43 +0000179 seq_printf(m, " (%s)",
Chris Wilsonb4716182015-04-27 13:41:17 +0100180 i915_gem_request_get_ring(obj->last_write_req)->name);
Daniel Vetterd5a81ef2014-06-18 14:46:49 +0200181 if (obj->frontbuffer_bits)
182 seq_printf(m, " (frontbuffer: 0x%03x)", obj->frontbuffer_bits);
Chris Wilson37811fc2010-08-25 22:45:57 +0100183}
184
Oscar Mateo273497e2014-05-22 14:13:37 +0100185static void describe_ctx(struct seq_file *m, struct intel_context *ctx)
Ben Widawsky3ccfd192013-09-18 19:03:18 -0700186{
Oscar Mateoea0c76f2014-07-03 16:27:59 +0100187 seq_putc(m, ctx->legacy_hw_ctx.initialized ? 'I' : 'i');
Ben Widawsky3ccfd192013-09-18 19:03:18 -0700188 seq_putc(m, ctx->remap_slice ? 'R' : 'r');
189 seq_putc(m, ' ');
190}
191
Ben Gamari433e12f2009-02-17 20:08:51 -0500192static int i915_gem_object_list_info(struct seq_file *m, void *data)
Ben Gamari20172632009-02-17 20:08:50 -0500193{
Damien Lespiau9f25d002014-05-13 15:30:28 +0100194 struct drm_info_node *node = m->private;
Ben Gamari433e12f2009-02-17 20:08:51 -0500195 uintptr_t list = (uintptr_t) node->info_ent->data;
196 struct list_head *head;
Ben Gamari20172632009-02-17 20:08:50 -0500197 struct drm_device *dev = node->minor->dev;
Ben Widawsky5cef07e2013-07-16 16:50:08 -0700198 struct drm_i915_private *dev_priv = dev->dev_private;
199 struct i915_address_space *vm = &dev_priv->gtt.base;
Ben Widawskyca191b12013-07-31 17:00:14 -0700200 struct i915_vma *vma;
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300201 u64 total_obj_size, total_gtt_size;
Chris Wilson8f2480f2010-09-26 11:44:19 +0100202 int count, ret;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100203
204 ret = mutex_lock_interruptible(&dev->struct_mutex);
205 if (ret)
206 return ret;
Ben Gamari20172632009-02-17 20:08:50 -0500207
Ben Widawskyca191b12013-07-31 17:00:14 -0700208 /* FIXME: the user of this interface might want more than just GGTT */
Ben Gamari433e12f2009-02-17 20:08:51 -0500209 switch (list) {
210 case ACTIVE_LIST:
Damien Lespiau267f0c92013-06-24 22:59:48 +0100211 seq_puts(m, "Active:\n");
Ben Widawsky5cef07e2013-07-16 16:50:08 -0700212 head = &vm->active_list;
Ben Gamari433e12f2009-02-17 20:08:51 -0500213 break;
214 case INACTIVE_LIST:
Damien Lespiau267f0c92013-06-24 22:59:48 +0100215 seq_puts(m, "Inactive:\n");
Ben Widawsky5cef07e2013-07-16 16:50:08 -0700216 head = &vm->inactive_list;
Ben Gamari433e12f2009-02-17 20:08:51 -0500217 break;
Ben Gamari433e12f2009-02-17 20:08:51 -0500218 default:
Chris Wilsonde227ef2010-07-03 07:58:38 +0100219 mutex_unlock(&dev->struct_mutex);
220 return -EINVAL;
Ben Gamari433e12f2009-02-17 20:08:51 -0500221 }
222
Chris Wilson8f2480f2010-09-26 11:44:19 +0100223 total_obj_size = total_gtt_size = count = 0;
Ben Widawskyca191b12013-07-31 17:00:14 -0700224 list_for_each_entry(vma, head, mm_list) {
225 seq_printf(m, " ");
226 describe_obj(m, vma->obj);
227 seq_printf(m, "\n");
228 total_obj_size += vma->obj->base.size;
229 total_gtt_size += vma->node.size;
Chris Wilson8f2480f2010-09-26 11:44:19 +0100230 count++;
Ben Gamari20172632009-02-17 20:08:50 -0500231 }
Chris Wilsonde227ef2010-07-03 07:58:38 +0100232 mutex_unlock(&dev->struct_mutex);
Carl Worth5e118f42009-03-20 11:54:25 -0700233
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300234 seq_printf(m, "Total %d objects, %llu bytes, %llu GTT size\n",
Chris Wilson8f2480f2010-09-26 11:44:19 +0100235 count, total_obj_size, total_gtt_size);
Ben Gamari20172632009-02-17 20:08:50 -0500236 return 0;
237}
238
Chris Wilson6d2b8882013-08-07 18:30:54 +0100239static int obj_rank_by_stolen(void *priv,
240 struct list_head *A, struct list_head *B)
241{
242 struct drm_i915_gem_object *a =
Ben Widawskyb25cb2f2013-08-14 11:38:33 +0200243 container_of(A, struct drm_i915_gem_object, obj_exec_link);
Chris Wilson6d2b8882013-08-07 18:30:54 +0100244 struct drm_i915_gem_object *b =
Ben Widawskyb25cb2f2013-08-14 11:38:33 +0200245 container_of(B, struct drm_i915_gem_object, obj_exec_link);
Chris Wilson6d2b8882013-08-07 18:30:54 +0100246
247 return a->stolen->start - b->stolen->start;
248}
249
250static int i915_gem_stolen_list_info(struct seq_file *m, void *data)
251{
Damien Lespiau9f25d002014-05-13 15:30:28 +0100252 struct drm_info_node *node = m->private;
Chris Wilson6d2b8882013-08-07 18:30:54 +0100253 struct drm_device *dev = node->minor->dev;
254 struct drm_i915_private *dev_priv = dev->dev_private;
255 struct drm_i915_gem_object *obj;
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300256 u64 total_obj_size, total_gtt_size;
Chris Wilson6d2b8882013-08-07 18:30:54 +0100257 LIST_HEAD(stolen);
258 int count, ret;
259
260 ret = mutex_lock_interruptible(&dev->struct_mutex);
261 if (ret)
262 return ret;
263
264 total_obj_size = total_gtt_size = count = 0;
265 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
266 if (obj->stolen == NULL)
267 continue;
268
Ben Widawskyb25cb2f2013-08-14 11:38:33 +0200269 list_add(&obj->obj_exec_link, &stolen);
Chris Wilson6d2b8882013-08-07 18:30:54 +0100270
271 total_obj_size += obj->base.size;
272 total_gtt_size += i915_gem_obj_ggtt_size(obj);
273 count++;
274 }
275 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
276 if (obj->stolen == NULL)
277 continue;
278
Ben Widawskyb25cb2f2013-08-14 11:38:33 +0200279 list_add(&obj->obj_exec_link, &stolen);
Chris Wilson6d2b8882013-08-07 18:30:54 +0100280
281 total_obj_size += obj->base.size;
282 count++;
283 }
284 list_sort(NULL, &stolen, obj_rank_by_stolen);
285 seq_puts(m, "Stolen:\n");
286 while (!list_empty(&stolen)) {
Ben Widawskyb25cb2f2013-08-14 11:38:33 +0200287 obj = list_first_entry(&stolen, typeof(*obj), obj_exec_link);
Chris Wilson6d2b8882013-08-07 18:30:54 +0100288 seq_puts(m, " ");
289 describe_obj(m, obj);
290 seq_putc(m, '\n');
Ben Widawskyb25cb2f2013-08-14 11:38:33 +0200291 list_del_init(&obj->obj_exec_link);
Chris Wilson6d2b8882013-08-07 18:30:54 +0100292 }
293 mutex_unlock(&dev->struct_mutex);
294
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300295 seq_printf(m, "Total %d objects, %llu bytes, %llu GTT size\n",
Chris Wilson6d2b8882013-08-07 18:30:54 +0100296 count, total_obj_size, total_gtt_size);
297 return 0;
298}
299
Chris Wilson6299f992010-11-24 12:23:44 +0000300#define count_objects(list, member) do { \
301 list_for_each_entry(obj, list, member) { \
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700302 size += i915_gem_obj_ggtt_size(obj); \
Chris Wilson6299f992010-11-24 12:23:44 +0000303 ++count; \
304 if (obj->map_and_fenceable) { \
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700305 mappable_size += i915_gem_obj_ggtt_size(obj); \
Chris Wilson6299f992010-11-24 12:23:44 +0000306 ++mappable_count; \
307 } \
308 } \
Akshay Joshi0206e352011-08-16 15:34:10 -0400309} while (0)
Chris Wilson6299f992010-11-24 12:23:44 +0000310
Chris Wilson2db8e9d2013-06-04 23:49:08 +0100311struct file_stats {
Chris Wilson6313c202014-03-19 13:45:45 +0000312 struct drm_i915_file_private *file_priv;
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300313 unsigned long count;
314 u64 total, unbound;
315 u64 global, shared;
316 u64 active, inactive;
Chris Wilson2db8e9d2013-06-04 23:49:08 +0100317};
318
319static int per_file_stats(int id, void *ptr, void *data)
320{
321 struct drm_i915_gem_object *obj = ptr;
322 struct file_stats *stats = data;
Chris Wilson6313c202014-03-19 13:45:45 +0000323 struct i915_vma *vma;
Chris Wilson2db8e9d2013-06-04 23:49:08 +0100324
325 stats->count++;
326 stats->total += obj->base.size;
327
Chris Wilsonc67a17e2014-03-19 13:45:46 +0000328 if (obj->base.name || obj->base.dma_buf)
329 stats->shared += obj->base.size;
330
Chris Wilson6313c202014-03-19 13:45:45 +0000331 if (USES_FULL_PPGTT(obj->base.dev)) {
332 list_for_each_entry(vma, &obj->vma_list, vma_link) {
333 struct i915_hw_ppgtt *ppgtt;
334
335 if (!drm_mm_node_allocated(&vma->node))
336 continue;
337
338 if (i915_is_ggtt(vma->vm)) {
339 stats->global += obj->base.size;
340 continue;
341 }
342
343 ppgtt = container_of(vma->vm, struct i915_hw_ppgtt, base);
Daniel Vetter4d884702014-08-06 15:04:47 +0200344 if (ppgtt->file_priv != stats->file_priv)
Chris Wilson6313c202014-03-19 13:45:45 +0000345 continue;
346
John Harrison41c52412014-11-24 18:49:43 +0000347 if (obj->active) /* XXX per-vma statistic */
Chris Wilson6313c202014-03-19 13:45:45 +0000348 stats->active += obj->base.size;
349 else
350 stats->inactive += obj->base.size;
351
352 return 0;
353 }
Chris Wilson2db8e9d2013-06-04 23:49:08 +0100354 } else {
Chris Wilson6313c202014-03-19 13:45:45 +0000355 if (i915_gem_obj_ggtt_bound(obj)) {
356 stats->global += obj->base.size;
John Harrison41c52412014-11-24 18:49:43 +0000357 if (obj->active)
Chris Wilson6313c202014-03-19 13:45:45 +0000358 stats->active += obj->base.size;
359 else
360 stats->inactive += obj->base.size;
361 return 0;
362 }
Chris Wilson2db8e9d2013-06-04 23:49:08 +0100363 }
364
Chris Wilson6313c202014-03-19 13:45:45 +0000365 if (!list_empty(&obj->global_list))
366 stats->unbound += obj->base.size;
367
Chris Wilson2db8e9d2013-06-04 23:49:08 +0100368 return 0;
369}
370
Chris Wilsonb0da1b72015-04-07 16:20:40 +0100371#define print_file_stats(m, name, stats) do { \
372 if (stats.count) \
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300373 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 +0100374 name, \
375 stats.count, \
376 stats.total, \
377 stats.active, \
378 stats.inactive, \
379 stats.global, \
380 stats.shared, \
381 stats.unbound); \
382} while (0)
Brad Volkin493018d2014-12-11 12:13:08 -0800383
384static void print_batch_pool_stats(struct seq_file *m,
385 struct drm_i915_private *dev_priv)
386{
387 struct drm_i915_gem_object *obj;
388 struct file_stats stats;
Chris Wilson06fbca72015-04-07 16:20:36 +0100389 struct intel_engine_cs *ring;
Chris Wilson8d9d5742015-04-07 16:20:38 +0100390 int i, j;
Brad Volkin493018d2014-12-11 12:13:08 -0800391
392 memset(&stats, 0, sizeof(stats));
393
Chris Wilson06fbca72015-04-07 16:20:36 +0100394 for_each_ring(ring, dev_priv, i) {
Chris Wilson8d9d5742015-04-07 16:20:38 +0100395 for (j = 0; j < ARRAY_SIZE(ring->batch_pool.cache_list); j++) {
396 list_for_each_entry(obj,
397 &ring->batch_pool.cache_list[j],
398 batch_pool_link)
399 per_file_stats(0, obj, &stats);
400 }
Chris Wilson06fbca72015-04-07 16:20:36 +0100401 }
Brad Volkin493018d2014-12-11 12:13:08 -0800402
Chris Wilsonb0da1b72015-04-07 16:20:40 +0100403 print_file_stats(m, "[k]batch pool", stats);
Brad Volkin493018d2014-12-11 12:13:08 -0800404}
405
Ben Widawskyca191b12013-07-31 17:00:14 -0700406#define count_vmas(list, member) do { \
407 list_for_each_entry(vma, list, member) { \
408 size += i915_gem_obj_ggtt_size(vma->obj); \
409 ++count; \
410 if (vma->obj->map_and_fenceable) { \
411 mappable_size += i915_gem_obj_ggtt_size(vma->obj); \
412 ++mappable_count; \
413 } \
414 } \
415} while (0)
416
417static int i915_gem_object_info(struct seq_file *m, void* data)
Chris Wilson73aa8082010-09-30 11:46:12 +0100418{
Damien Lespiau9f25d002014-05-13 15:30:28 +0100419 struct drm_info_node *node = m->private;
Chris Wilson73aa8082010-09-30 11:46:12 +0100420 struct drm_device *dev = node->minor->dev;
421 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb7abb712012-08-20 11:33:30 +0200422 u32 count, mappable_count, purgeable_count;
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300423 u64 size, mappable_size, purgeable_size;
Chris Wilson6299f992010-11-24 12:23:44 +0000424 struct drm_i915_gem_object *obj;
Ben Widawsky5cef07e2013-07-16 16:50:08 -0700425 struct i915_address_space *vm = &dev_priv->gtt.base;
Chris Wilson2db8e9d2013-06-04 23:49:08 +0100426 struct drm_file *file;
Ben Widawskyca191b12013-07-31 17:00:14 -0700427 struct i915_vma *vma;
Chris Wilson73aa8082010-09-30 11:46:12 +0100428 int ret;
429
430 ret = mutex_lock_interruptible(&dev->struct_mutex);
431 if (ret)
432 return ret;
433
Chris Wilson6299f992010-11-24 12:23:44 +0000434 seq_printf(m, "%u objects, %zu bytes\n",
435 dev_priv->mm.object_count,
436 dev_priv->mm.object_memory);
437
438 size = count = mappable_size = mappable_count = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -0700439 count_objects(&dev_priv->mm.bound_list, global_list);
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300440 seq_printf(m, "%u [%u] objects, %llu [%llu] bytes in gtt\n",
Chris Wilson6299f992010-11-24 12:23:44 +0000441 count, mappable_count, size, mappable_size);
442
443 size = count = mappable_size = mappable_count = 0;
Ben Widawskyca191b12013-07-31 17:00:14 -0700444 count_vmas(&vm->active_list, mm_list);
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300445 seq_printf(m, " %u [%u] active objects, %llu [%llu] bytes\n",
Chris Wilson6299f992010-11-24 12:23:44 +0000446 count, mappable_count, size, mappable_size);
447
448 size = count = mappable_size = mappable_count = 0;
Ben Widawskyca191b12013-07-31 17:00:14 -0700449 count_vmas(&vm->inactive_list, mm_list);
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300450 seq_printf(m, " %u [%u] inactive objects, %llu [%llu] bytes\n",
Chris Wilson6299f992010-11-24 12:23:44 +0000451 count, mappable_count, size, mappable_size);
452
Chris Wilsonb7abb712012-08-20 11:33:30 +0200453 size = count = purgeable_size = purgeable_count = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -0700454 list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) {
Chris Wilson6c085a72012-08-20 11:40:46 +0200455 size += obj->base.size, ++count;
Chris Wilsonb7abb712012-08-20 11:33:30 +0200456 if (obj->madv == I915_MADV_DONTNEED)
457 purgeable_size += obj->base.size, ++purgeable_count;
458 }
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300459 seq_printf(m, "%u unbound objects, %llu bytes\n", count, size);
Chris Wilson6c085a72012-08-20 11:40:46 +0200460
Chris Wilson6299f992010-11-24 12:23:44 +0000461 size = count = mappable_size = mappable_count = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -0700462 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Chris Wilson6299f992010-11-24 12:23:44 +0000463 if (obj->fault_mappable) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700464 size += i915_gem_obj_ggtt_size(obj);
Chris Wilson6299f992010-11-24 12:23:44 +0000465 ++count;
466 }
Chris Wilson30154652015-04-07 17:28:24 +0100467 if (obj->pin_display) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700468 mappable_size += i915_gem_obj_ggtt_size(obj);
Chris Wilson6299f992010-11-24 12:23:44 +0000469 ++mappable_count;
470 }
Chris Wilsonb7abb712012-08-20 11:33:30 +0200471 if (obj->madv == I915_MADV_DONTNEED) {
472 purgeable_size += obj->base.size;
473 ++purgeable_count;
474 }
Chris Wilson6299f992010-11-24 12:23:44 +0000475 }
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300476 seq_printf(m, "%u purgeable objects, %llu bytes\n",
Chris Wilsonb7abb712012-08-20 11:33:30 +0200477 purgeable_count, purgeable_size);
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300478 seq_printf(m, "%u pinned mappable objects, %llu bytes\n",
Chris Wilson6299f992010-11-24 12:23:44 +0000479 mappable_count, mappable_size);
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300480 seq_printf(m, "%u fault mappable objects, %llu bytes\n",
Chris Wilson6299f992010-11-24 12:23:44 +0000481 count, size);
482
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300483 seq_printf(m, "%llu [%llu] gtt total\n",
Ben Widawsky853ba5d2013-07-16 16:50:05 -0700484 dev_priv->gtt.base.total,
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300485 (u64)dev_priv->gtt.mappable_end - dev_priv->gtt.base.start);
Chris Wilson73aa8082010-09-30 11:46:12 +0100486
Damien Lespiau267f0c92013-06-24 22:59:48 +0100487 seq_putc(m, '\n');
Brad Volkin493018d2014-12-11 12:13:08 -0800488 print_batch_pool_stats(m, dev_priv);
Chris Wilson2db8e9d2013-06-04 23:49:08 +0100489 list_for_each_entry_reverse(file, &dev->filelist, lhead) {
490 struct file_stats stats;
Tetsuo Handa3ec2f422014-01-03 20:42:18 +0900491 struct task_struct *task;
Chris Wilson2db8e9d2013-06-04 23:49:08 +0100492
493 memset(&stats, 0, sizeof(stats));
Chris Wilson6313c202014-03-19 13:45:45 +0000494 stats.file_priv = file->driver_priv;
Chris Wilson5b5ffff2014-06-17 09:56:24 +0100495 spin_lock(&file->table_lock);
Chris Wilson2db8e9d2013-06-04 23:49:08 +0100496 idr_for_each(&file->object_idr, per_file_stats, &stats);
Chris Wilson5b5ffff2014-06-17 09:56:24 +0100497 spin_unlock(&file->table_lock);
Tetsuo Handa3ec2f422014-01-03 20:42:18 +0900498 /*
499 * Although we have a valid reference on file->pid, that does
500 * not guarantee that the task_struct who called get_pid() is
501 * still alive (e.g. get_pid(current) => fork() => exit()).
502 * Therefore, we need to protect this ->comm access using RCU.
503 */
504 rcu_read_lock();
505 task = pid_task(file->pid, PIDTYPE_PID);
Brad Volkin493018d2014-12-11 12:13:08 -0800506 print_file_stats(m, task ? task->comm : "<unknown>", stats);
Tetsuo Handa3ec2f422014-01-03 20:42:18 +0900507 rcu_read_unlock();
Chris Wilson2db8e9d2013-06-04 23:49:08 +0100508 }
509
Chris Wilson73aa8082010-09-30 11:46:12 +0100510 mutex_unlock(&dev->struct_mutex);
511
512 return 0;
513}
514
Damien Lespiauaee56cf2013-06-24 22:59:49 +0100515static int i915_gem_gtt_info(struct seq_file *m, void *data)
Chris Wilson08c18322011-01-10 00:00:24 +0000516{
Damien Lespiau9f25d002014-05-13 15:30:28 +0100517 struct drm_info_node *node = m->private;
Chris Wilson08c18322011-01-10 00:00:24 +0000518 struct drm_device *dev = node->minor->dev;
Chris Wilson1b502472012-04-24 15:47:30 +0100519 uintptr_t list = (uintptr_t) node->info_ent->data;
Chris Wilson08c18322011-01-10 00:00:24 +0000520 struct drm_i915_private *dev_priv = dev->dev_private;
521 struct drm_i915_gem_object *obj;
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300522 u64 total_obj_size, total_gtt_size;
Chris Wilson08c18322011-01-10 00:00:24 +0000523 int count, ret;
524
525 ret = mutex_lock_interruptible(&dev->struct_mutex);
526 if (ret)
527 return ret;
528
529 total_obj_size = total_gtt_size = count = 0;
Ben Widawsky35c20a62013-05-31 11:28:48 -0700530 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Ben Widawskyd7f46fc2013-12-06 14:10:55 -0800531 if (list == PINNED_LIST && !i915_gem_obj_is_pinned(obj))
Chris Wilson1b502472012-04-24 15:47:30 +0100532 continue;
533
Damien Lespiau267f0c92013-06-24 22:59:48 +0100534 seq_puts(m, " ");
Chris Wilson08c18322011-01-10 00:00:24 +0000535 describe_obj(m, obj);
Damien Lespiau267f0c92013-06-24 22:59:48 +0100536 seq_putc(m, '\n');
Chris Wilson08c18322011-01-10 00:00:24 +0000537 total_obj_size += obj->base.size;
Ben Widawskyf343c5f2013-07-05 14:41:04 -0700538 total_gtt_size += i915_gem_obj_ggtt_size(obj);
Chris Wilson08c18322011-01-10 00:00:24 +0000539 count++;
540 }
541
542 mutex_unlock(&dev->struct_mutex);
543
Mika Kuoppalac44ef602015-06-25 18:35:05 +0300544 seq_printf(m, "Total %d objects, %llu bytes, %llu GTT size\n",
Chris Wilson08c18322011-01-10 00:00:24 +0000545 count, total_obj_size, total_gtt_size);
546
547 return 0;
548}
549
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100550static int i915_gem_pageflip_info(struct seq_file *m, void *data)
551{
Damien Lespiau9f25d002014-05-13 15:30:28 +0100552 struct drm_info_node *node = m->private;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100553 struct drm_device *dev = node->minor->dev;
Chris Wilsond6bbafa2014-09-05 07:13:24 +0100554 struct drm_i915_private *dev_priv = dev->dev_private;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100555 struct intel_crtc *crtc;
Daniel Vetter8a270eb2014-06-17 22:34:37 +0200556 int ret;
557
558 ret = mutex_lock_interruptible(&dev->struct_mutex);
559 if (ret)
560 return ret;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100561
Damien Lespiaud3fcc802014-05-13 23:32:22 +0100562 for_each_intel_crtc(dev, crtc) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800563 const char pipe = pipe_name(crtc->pipe);
564 const char plane = plane_name(crtc->plane);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100565 struct intel_unpin_work *work;
566
Daniel Vetter5e2d7af2014-09-15 14:55:22 +0200567 spin_lock_irq(&dev->event_lock);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100568 work = crtc->unpin_work;
569 if (work == NULL) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800570 seq_printf(m, "No flip due on pipe %c (plane %c)\n",
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100571 pipe, plane);
572 } else {
Chris Wilsond6bbafa2014-09-05 07:13:24 +0100573 u32 addr;
574
Chris Wilsone7d841c2012-12-03 11:36:30 +0000575 if (atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800576 seq_printf(m, "Flip queued on pipe %c (plane %c)\n",
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100577 pipe, plane);
578 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800579 seq_printf(m, "Flip pending (waiting for vsync) on pipe %c (plane %c)\n",
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100580 pipe, plane);
581 }
Daniel Vetter3a8a9462014-11-26 14:39:48 +0100582 if (work->flip_queued_req) {
583 struct intel_engine_cs *ring =
584 i915_gem_request_get_ring(work->flip_queued_req);
585
Mika Kuoppala20e28fb2015-01-26 18:03:06 +0200586 seq_printf(m, "Flip queued on %s at seqno %x, next seqno %x [current breadcrumb %x], completed? %d\n",
Daniel Vetter3a8a9462014-11-26 14:39:48 +0100587 ring->name,
John Harrisonf06cc1b2014-11-24 18:49:37 +0000588 i915_gem_request_get_seqno(work->flip_queued_req),
Chris Wilsond6bbafa2014-09-05 07:13:24 +0100589 dev_priv->next_seqno,
Daniel Vetter3a8a9462014-11-26 14:39:48 +0100590 ring->get_seqno(ring, true),
John Harrison1b5a4332014-11-24 18:49:42 +0000591 i915_gem_request_completed(work->flip_queued_req, true));
Chris Wilsond6bbafa2014-09-05 07:13:24 +0100592 } else
593 seq_printf(m, "Flip not associated with any ring\n");
594 seq_printf(m, "Flip queued on frame %d, (was ready on frame %d), now %d\n",
595 work->flip_queued_vblank,
596 work->flip_ready_vblank,
Daniel Vetter1e3feef2015-02-13 21:03:45 +0100597 drm_crtc_vblank_count(&crtc->base));
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100598 if (work->enable_stall_check)
Damien Lespiau267f0c92013-06-24 22:59:48 +0100599 seq_puts(m, "Stall check enabled, ");
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100600 else
Damien Lespiau267f0c92013-06-24 22:59:48 +0100601 seq_puts(m, "Stall check waiting for page flip ioctl, ");
Chris Wilsone7d841c2012-12-03 11:36:30 +0000602 seq_printf(m, "%d prepares\n", atomic_read(&work->pending));
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100603
Chris Wilsond6bbafa2014-09-05 07:13:24 +0100604 if (INTEL_INFO(dev)->gen >= 4)
605 addr = I915_HI_DISPBASE(I915_READ(DSPSURF(crtc->plane)));
606 else
607 addr = I915_READ(DSPADDR(crtc->plane));
608 seq_printf(m, "Current scanout address 0x%08x\n", addr);
609
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100610 if (work->pending_flip_obj) {
Chris Wilsond6bbafa2014-09-05 07:13:24 +0100611 seq_printf(m, "New framebuffer address 0x%08lx\n", (long)work->gtt_offset);
612 seq_printf(m, "MMIO update completed? %d\n", addr == work->gtt_offset);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100613 }
614 }
Daniel Vetter5e2d7af2014-09-15 14:55:22 +0200615 spin_unlock_irq(&dev->event_lock);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100616 }
617
Daniel Vetter8a270eb2014-06-17 22:34:37 +0200618 mutex_unlock(&dev->struct_mutex);
619
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100620 return 0;
621}
622
Brad Volkin493018d2014-12-11 12:13:08 -0800623static int i915_gem_batch_pool_info(struct seq_file *m, void *data)
624{
625 struct drm_info_node *node = m->private;
626 struct drm_device *dev = node->minor->dev;
627 struct drm_i915_private *dev_priv = dev->dev_private;
628 struct drm_i915_gem_object *obj;
Chris Wilson06fbca72015-04-07 16:20:36 +0100629 struct intel_engine_cs *ring;
Chris Wilson8d9d5742015-04-07 16:20:38 +0100630 int total = 0;
631 int ret, i, j;
Brad Volkin493018d2014-12-11 12:13:08 -0800632
633 ret = mutex_lock_interruptible(&dev->struct_mutex);
634 if (ret)
635 return ret;
636
Chris Wilson06fbca72015-04-07 16:20:36 +0100637 for_each_ring(ring, dev_priv, i) {
Chris Wilson8d9d5742015-04-07 16:20:38 +0100638 for (j = 0; j < ARRAY_SIZE(ring->batch_pool.cache_list); j++) {
639 int count;
640
641 count = 0;
642 list_for_each_entry(obj,
643 &ring->batch_pool.cache_list[j],
644 batch_pool_link)
645 count++;
646 seq_printf(m, "%s cache[%d]: %d objects\n",
647 ring->name, j, count);
648
649 list_for_each_entry(obj,
650 &ring->batch_pool.cache_list[j],
651 batch_pool_link) {
652 seq_puts(m, " ");
653 describe_obj(m, obj);
654 seq_putc(m, '\n');
655 }
656
657 total += count;
Chris Wilson06fbca72015-04-07 16:20:36 +0100658 }
Brad Volkin493018d2014-12-11 12:13:08 -0800659 }
660
Chris Wilson8d9d5742015-04-07 16:20:38 +0100661 seq_printf(m, "total: %d\n", total);
Brad Volkin493018d2014-12-11 12:13:08 -0800662
663 mutex_unlock(&dev->struct_mutex);
664
665 return 0;
666}
667
Ben Gamari20172632009-02-17 20:08:50 -0500668static int i915_gem_request_info(struct seq_file *m, void *data)
669{
Damien Lespiau9f25d002014-05-13 15:30:28 +0100670 struct drm_info_node *node = m->private;
Ben Gamari20172632009-02-17 20:08:50 -0500671 struct drm_device *dev = node->minor->dev;
Jani Nikulae277a1f2014-03-31 14:27:14 +0300672 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100673 struct intel_engine_cs *ring;
Daniel Vettereed29a52015-05-21 14:21:25 +0200674 struct drm_i915_gem_request *req;
Chris Wilson2d1070b2015-04-01 10:36:56 +0100675 int ret, any, i;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100676
677 ret = mutex_lock_interruptible(&dev->struct_mutex);
678 if (ret)
679 return ret;
Ben Gamari20172632009-02-17 20:08:50 -0500680
Chris Wilson2d1070b2015-04-01 10:36:56 +0100681 any = 0;
Chris Wilsona2c7f6f2012-09-01 20:51:22 +0100682 for_each_ring(ring, dev_priv, i) {
Chris Wilson2d1070b2015-04-01 10:36:56 +0100683 int count;
684
685 count = 0;
Daniel Vettereed29a52015-05-21 14:21:25 +0200686 list_for_each_entry(req, &ring->request_list, list)
Chris Wilson2d1070b2015-04-01 10:36:56 +0100687 count++;
688 if (count == 0)
Chris Wilsona2c7f6f2012-09-01 20:51:22 +0100689 continue;
690
Chris Wilson2d1070b2015-04-01 10:36:56 +0100691 seq_printf(m, "%s requests: %d\n", ring->name, count);
Daniel Vettereed29a52015-05-21 14:21:25 +0200692 list_for_each_entry(req, &ring->request_list, list) {
Chris Wilson2d1070b2015-04-01 10:36:56 +0100693 struct task_struct *task;
694
695 rcu_read_lock();
696 task = NULL;
Daniel Vettereed29a52015-05-21 14:21:25 +0200697 if (req->pid)
698 task = pid_task(req->pid, PIDTYPE_PID);
Chris Wilson2d1070b2015-04-01 10:36:56 +0100699 seq_printf(m, " %x @ %d: %s [%d]\n",
Daniel Vettereed29a52015-05-21 14:21:25 +0200700 req->seqno,
701 (int) (jiffies - req->emitted_jiffies),
Chris Wilson2d1070b2015-04-01 10:36:56 +0100702 task ? task->comm : "<unknown>",
703 task ? task->pid : -1);
704 rcu_read_unlock();
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100705 }
Chris Wilson2d1070b2015-04-01 10:36:56 +0100706
707 any++;
Ben Gamari20172632009-02-17 20:08:50 -0500708 }
Chris Wilsonde227ef2010-07-03 07:58:38 +0100709 mutex_unlock(&dev->struct_mutex);
710
Chris Wilson2d1070b2015-04-01 10:36:56 +0100711 if (any == 0)
Damien Lespiau267f0c92013-06-24 22:59:48 +0100712 seq_puts(m, "No requests\n");
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100713
Ben Gamari20172632009-02-17 20:08:50 -0500714 return 0;
715}
716
Chris Wilsonb2223492010-10-27 15:27:33 +0100717static void i915_ring_seqno_info(struct seq_file *m,
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100718 struct intel_engine_cs *ring)
Chris Wilsonb2223492010-10-27 15:27:33 +0100719{
720 if (ring->get_seqno) {
Mika Kuoppala20e28fb2015-01-26 18:03:06 +0200721 seq_printf(m, "Current sequence (%s): %x\n",
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100722 ring->name, ring->get_seqno(ring, false));
Chris Wilsonb2223492010-10-27 15:27:33 +0100723 }
724}
725
Ben Gamari20172632009-02-17 20:08:50 -0500726static int i915_gem_seqno_info(struct seq_file *m, void *data)
727{
Damien Lespiau9f25d002014-05-13 15:30:28 +0100728 struct drm_info_node *node = m->private;
Ben Gamari20172632009-02-17 20:08:50 -0500729 struct drm_device *dev = node->minor->dev;
Jani Nikulae277a1f2014-03-31 14:27:14 +0300730 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100731 struct intel_engine_cs *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000732 int ret, i;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100733
734 ret = mutex_lock_interruptible(&dev->struct_mutex);
735 if (ret)
736 return ret;
Paulo Zanonic8c8fb32013-11-27 18:21:54 -0200737 intel_runtime_pm_get(dev_priv);
Ben Gamari20172632009-02-17 20:08:50 -0500738
Chris Wilsona2c7f6f2012-09-01 20:51:22 +0100739 for_each_ring(ring, dev_priv, i)
740 i915_ring_seqno_info(m, ring);
Chris Wilsonde227ef2010-07-03 07:58:38 +0100741
Paulo Zanonic8c8fb32013-11-27 18:21:54 -0200742 intel_runtime_pm_put(dev_priv);
Chris Wilsonde227ef2010-07-03 07:58:38 +0100743 mutex_unlock(&dev->struct_mutex);
744
Ben Gamari20172632009-02-17 20:08:50 -0500745 return 0;
746}
747
748
749static int i915_interrupt_info(struct seq_file *m, void *data)
750{
Damien Lespiau9f25d002014-05-13 15:30:28 +0100751 struct drm_info_node *node = m->private;
Ben Gamari20172632009-02-17 20:08:50 -0500752 struct drm_device *dev = node->minor->dev;
Jani Nikulae277a1f2014-03-31 14:27:14 +0300753 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100754 struct intel_engine_cs *ring;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800755 int ret, i, pipe;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100756
757 ret = mutex_lock_interruptible(&dev->struct_mutex);
758 if (ret)
759 return ret;
Paulo Zanonic8c8fb32013-11-27 18:21:54 -0200760 intel_runtime_pm_get(dev_priv);
Ben Gamari20172632009-02-17 20:08:50 -0500761
Ville Syrjälä74e1ca82014-04-09 13:28:09 +0300762 if (IS_CHERRYVIEW(dev)) {
Ville Syrjälä74e1ca82014-04-09 13:28:09 +0300763 seq_printf(m, "Master Interrupt Control:\t%08x\n",
764 I915_READ(GEN8_MASTER_IRQ));
765
766 seq_printf(m, "Display IER:\t%08x\n",
767 I915_READ(VLV_IER));
768 seq_printf(m, "Display IIR:\t%08x\n",
769 I915_READ(VLV_IIR));
770 seq_printf(m, "Display IIR_RW:\t%08x\n",
771 I915_READ(VLV_IIR_RW));
772 seq_printf(m, "Display IMR:\t%08x\n",
773 I915_READ(VLV_IMR));
Damien Lespiau055e3932014-08-18 13:49:10 +0100774 for_each_pipe(dev_priv, pipe)
Ville Syrjälä74e1ca82014-04-09 13:28:09 +0300775 seq_printf(m, "Pipe %c stat:\t%08x\n",
776 pipe_name(pipe),
777 I915_READ(PIPESTAT(pipe)));
778
779 seq_printf(m, "Port hotplug:\t%08x\n",
780 I915_READ(PORT_HOTPLUG_EN));
781 seq_printf(m, "DPFLIPSTAT:\t%08x\n",
782 I915_READ(VLV_DPFLIPSTAT));
783 seq_printf(m, "DPINVGTT:\t%08x\n",
784 I915_READ(DPINVGTT));
785
786 for (i = 0; i < 4; i++) {
787 seq_printf(m, "GT Interrupt IMR %d:\t%08x\n",
788 i, I915_READ(GEN8_GT_IMR(i)));
789 seq_printf(m, "GT Interrupt IIR %d:\t%08x\n",
790 i, I915_READ(GEN8_GT_IIR(i)));
791 seq_printf(m, "GT Interrupt IER %d:\t%08x\n",
792 i, I915_READ(GEN8_GT_IER(i)));
793 }
794
795 seq_printf(m, "PCU interrupt mask:\t%08x\n",
796 I915_READ(GEN8_PCU_IMR));
797 seq_printf(m, "PCU interrupt identity:\t%08x\n",
798 I915_READ(GEN8_PCU_IIR));
799 seq_printf(m, "PCU interrupt enable:\t%08x\n",
800 I915_READ(GEN8_PCU_IER));
801 } else if (INTEL_INFO(dev)->gen >= 8) {
Ben Widawskya123f152013-11-02 21:07:10 -0700802 seq_printf(m, "Master Interrupt Control:\t%08x\n",
803 I915_READ(GEN8_MASTER_IRQ));
804
805 for (i = 0; i < 4; i++) {
806 seq_printf(m, "GT Interrupt IMR %d:\t%08x\n",
807 i, I915_READ(GEN8_GT_IMR(i)));
808 seq_printf(m, "GT Interrupt IIR %d:\t%08x\n",
809 i, I915_READ(GEN8_GT_IIR(i)));
810 seq_printf(m, "GT Interrupt IER %d:\t%08x\n",
811 i, I915_READ(GEN8_GT_IER(i)));
812 }
813
Damien Lespiau055e3932014-08-18 13:49:10 +0100814 for_each_pipe(dev_priv, pipe) {
Daniel Vetterf458ebb2014-09-30 10:56:39 +0200815 if (!intel_display_power_is_enabled(dev_priv,
Paulo Zanoni22c59962014-08-08 17:45:32 -0300816 POWER_DOMAIN_PIPE(pipe))) {
817 seq_printf(m, "Pipe %c power disabled\n",
818 pipe_name(pipe));
819 continue;
820 }
Ben Widawskya123f152013-11-02 21:07:10 -0700821 seq_printf(m, "Pipe %c IMR:\t%08x\n",
Damien Lespiau07d27e22014-03-03 17:31:46 +0000822 pipe_name(pipe),
823 I915_READ(GEN8_DE_PIPE_IMR(pipe)));
Ben Widawskya123f152013-11-02 21:07:10 -0700824 seq_printf(m, "Pipe %c IIR:\t%08x\n",
Damien Lespiau07d27e22014-03-03 17:31:46 +0000825 pipe_name(pipe),
826 I915_READ(GEN8_DE_PIPE_IIR(pipe)));
Ben Widawskya123f152013-11-02 21:07:10 -0700827 seq_printf(m, "Pipe %c IER:\t%08x\n",
Damien Lespiau07d27e22014-03-03 17:31:46 +0000828 pipe_name(pipe),
829 I915_READ(GEN8_DE_PIPE_IER(pipe)));
Ben Widawskya123f152013-11-02 21:07:10 -0700830 }
831
832 seq_printf(m, "Display Engine port interrupt mask:\t%08x\n",
833 I915_READ(GEN8_DE_PORT_IMR));
834 seq_printf(m, "Display Engine port interrupt identity:\t%08x\n",
835 I915_READ(GEN8_DE_PORT_IIR));
836 seq_printf(m, "Display Engine port interrupt enable:\t%08x\n",
837 I915_READ(GEN8_DE_PORT_IER));
838
839 seq_printf(m, "Display Engine misc interrupt mask:\t%08x\n",
840 I915_READ(GEN8_DE_MISC_IMR));
841 seq_printf(m, "Display Engine misc interrupt identity:\t%08x\n",
842 I915_READ(GEN8_DE_MISC_IIR));
843 seq_printf(m, "Display Engine misc interrupt enable:\t%08x\n",
844 I915_READ(GEN8_DE_MISC_IER));
845
846 seq_printf(m, "PCU interrupt mask:\t%08x\n",
847 I915_READ(GEN8_PCU_IMR));
848 seq_printf(m, "PCU interrupt identity:\t%08x\n",
849 I915_READ(GEN8_PCU_IIR));
850 seq_printf(m, "PCU interrupt enable:\t%08x\n",
851 I915_READ(GEN8_PCU_IER));
852 } else if (IS_VALLEYVIEW(dev)) {
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700853 seq_printf(m, "Display IER:\t%08x\n",
854 I915_READ(VLV_IER));
855 seq_printf(m, "Display IIR:\t%08x\n",
856 I915_READ(VLV_IIR));
857 seq_printf(m, "Display IIR_RW:\t%08x\n",
858 I915_READ(VLV_IIR_RW));
859 seq_printf(m, "Display IMR:\t%08x\n",
860 I915_READ(VLV_IMR));
Damien Lespiau055e3932014-08-18 13:49:10 +0100861 for_each_pipe(dev_priv, pipe)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700862 seq_printf(m, "Pipe %c stat:\t%08x\n",
863 pipe_name(pipe),
864 I915_READ(PIPESTAT(pipe)));
865
866 seq_printf(m, "Master IER:\t%08x\n",
867 I915_READ(VLV_MASTER_IER));
868
869 seq_printf(m, "Render IER:\t%08x\n",
870 I915_READ(GTIER));
871 seq_printf(m, "Render IIR:\t%08x\n",
872 I915_READ(GTIIR));
873 seq_printf(m, "Render IMR:\t%08x\n",
874 I915_READ(GTIMR));
875
876 seq_printf(m, "PM IER:\t\t%08x\n",
877 I915_READ(GEN6_PMIER));
878 seq_printf(m, "PM IIR:\t\t%08x\n",
879 I915_READ(GEN6_PMIIR));
880 seq_printf(m, "PM IMR:\t\t%08x\n",
881 I915_READ(GEN6_PMIMR));
882
883 seq_printf(m, "Port hotplug:\t%08x\n",
884 I915_READ(PORT_HOTPLUG_EN));
885 seq_printf(m, "DPFLIPSTAT:\t%08x\n",
886 I915_READ(VLV_DPFLIPSTAT));
887 seq_printf(m, "DPINVGTT:\t%08x\n",
888 I915_READ(DPINVGTT));
889
890 } else if (!HAS_PCH_SPLIT(dev)) {
Zhenyu Wang5f6a1692009-08-10 21:37:24 +0800891 seq_printf(m, "Interrupt enable: %08x\n",
892 I915_READ(IER));
893 seq_printf(m, "Interrupt identity: %08x\n",
894 I915_READ(IIR));
895 seq_printf(m, "Interrupt mask: %08x\n",
896 I915_READ(IMR));
Damien Lespiau055e3932014-08-18 13:49:10 +0100897 for_each_pipe(dev_priv, pipe)
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800898 seq_printf(m, "Pipe %c stat: %08x\n",
899 pipe_name(pipe),
900 I915_READ(PIPESTAT(pipe)));
Zhenyu Wang5f6a1692009-08-10 21:37:24 +0800901 } else {
902 seq_printf(m, "North Display Interrupt enable: %08x\n",
903 I915_READ(DEIER));
904 seq_printf(m, "North Display Interrupt identity: %08x\n",
905 I915_READ(DEIIR));
906 seq_printf(m, "North Display Interrupt mask: %08x\n",
907 I915_READ(DEIMR));
908 seq_printf(m, "South Display Interrupt enable: %08x\n",
909 I915_READ(SDEIER));
910 seq_printf(m, "South Display Interrupt identity: %08x\n",
911 I915_READ(SDEIIR));
912 seq_printf(m, "South Display Interrupt mask: %08x\n",
913 I915_READ(SDEIMR));
914 seq_printf(m, "Graphics Interrupt enable: %08x\n",
915 I915_READ(GTIER));
916 seq_printf(m, "Graphics Interrupt identity: %08x\n",
917 I915_READ(GTIIR));
918 seq_printf(m, "Graphics Interrupt mask: %08x\n",
919 I915_READ(GTIMR));
920 }
Chris Wilsona2c7f6f2012-09-01 20:51:22 +0100921 for_each_ring(ring, dev_priv, i) {
Ben Widawskya123f152013-11-02 21:07:10 -0700922 if (INTEL_INFO(dev)->gen >= 6) {
Chris Wilsona2c7f6f2012-09-01 20:51:22 +0100923 seq_printf(m,
924 "Graphics Interrupt mask (%s): %08x\n",
925 ring->name, I915_READ_IMR(ring));
Chris Wilson9862e602011-01-04 22:22:17 +0000926 }
Chris Wilsona2c7f6f2012-09-01 20:51:22 +0100927 i915_ring_seqno_info(m, ring);
Chris Wilson9862e602011-01-04 22:22:17 +0000928 }
Paulo Zanonic8c8fb32013-11-27 18:21:54 -0200929 intel_runtime_pm_put(dev_priv);
Chris Wilsonde227ef2010-07-03 07:58:38 +0100930 mutex_unlock(&dev->struct_mutex);
931
Ben Gamari20172632009-02-17 20:08:50 -0500932 return 0;
933}
934
Chris Wilsona6172a82009-02-11 14:26:38 +0000935static int i915_gem_fence_regs_info(struct seq_file *m, void *data)
936{
Damien Lespiau9f25d002014-05-13 15:30:28 +0100937 struct drm_info_node *node = m->private;
Chris Wilsona6172a82009-02-11 14:26:38 +0000938 struct drm_device *dev = node->minor->dev;
Jani Nikulae277a1f2014-03-31 14:27:14 +0300939 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100940 int i, ret;
941
942 ret = mutex_lock_interruptible(&dev->struct_mutex);
943 if (ret)
944 return ret;
Chris Wilsona6172a82009-02-11 14:26:38 +0000945
946 seq_printf(m, "Reserved fences = %d\n", dev_priv->fence_reg_start);
947 seq_printf(m, "Total fences = %d\n", dev_priv->num_fence_regs);
948 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +0000949 struct drm_i915_gem_object *obj = dev_priv->fence_regs[i].obj;
Chris Wilsona6172a82009-02-11 14:26:38 +0000950
Chris Wilson6c085a72012-08-20 11:40:46 +0200951 seq_printf(m, "Fence %d, pin count = %d, object = ",
952 i, dev_priv->fence_regs[i].pin_count);
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100953 if (obj == NULL)
Damien Lespiau267f0c92013-06-24 22:59:48 +0100954 seq_puts(m, "unused");
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100955 else
Chris Wilson05394f32010-11-08 19:18:58 +0000956 describe_obj(m, obj);
Damien Lespiau267f0c92013-06-24 22:59:48 +0100957 seq_putc(m, '\n');
Chris Wilsona6172a82009-02-11 14:26:38 +0000958 }
959
Chris Wilson05394f32010-11-08 19:18:58 +0000960 mutex_unlock(&dev->struct_mutex);
Chris Wilsona6172a82009-02-11 14:26:38 +0000961 return 0;
962}
963
Ben Gamari20172632009-02-17 20:08:50 -0500964static int i915_hws_info(struct seq_file *m, void *data)
965{
Damien Lespiau9f25d002014-05-13 15:30:28 +0100966 struct drm_info_node *node = m->private;
Ben Gamari20172632009-02-17 20:08:50 -0500967 struct drm_device *dev = node->minor->dev;
Jani Nikulae277a1f2014-03-31 14:27:14 +0300968 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +0100969 struct intel_engine_cs *ring;
Daniel Vetter1a240d42012-11-29 22:18:51 +0100970 const u32 *hws;
Chris Wilson4066c0a2010-10-29 21:00:54 +0100971 int i;
Ben Gamari20172632009-02-17 20:08:50 -0500972
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000973 ring = &dev_priv->ring[(uintptr_t)node->info_ent->data];
Daniel Vetter1a240d42012-11-29 22:18:51 +0100974 hws = ring->status_page.page_addr;
Ben Gamari20172632009-02-17 20:08:50 -0500975 if (hws == NULL)
976 return 0;
977
978 for (i = 0; i < 4096 / sizeof(u32) / 4; i += 4) {
979 seq_printf(m, "0x%08x: 0x%08x 0x%08x 0x%08x 0x%08x\n",
980 i * 4,
981 hws[i], hws[i + 1], hws[i + 2], hws[i + 3]);
982 }
983 return 0;
984}
985
Daniel Vetterd5442302012-04-27 15:17:40 +0200986static ssize_t
987i915_error_state_write(struct file *filp,
988 const char __user *ubuf,
989 size_t cnt,
990 loff_t *ppos)
991{
Mika Kuoppalaedc3d882013-05-23 13:55:35 +0300992 struct i915_error_state_file_priv *error_priv = filp->private_data;
Daniel Vetterd5442302012-04-27 15:17:40 +0200993 struct drm_device *dev = error_priv->dev;
Daniel Vetter22bcfc62012-08-09 15:07:02 +0200994 int ret;
Daniel Vetterd5442302012-04-27 15:17:40 +0200995
996 DRM_DEBUG_DRIVER("Resetting error state\n");
997
Daniel Vetter22bcfc62012-08-09 15:07:02 +0200998 ret = mutex_lock_interruptible(&dev->struct_mutex);
999 if (ret)
1000 return ret;
1001
Daniel Vetterd5442302012-04-27 15:17:40 +02001002 i915_destroy_error_state(dev);
1003 mutex_unlock(&dev->struct_mutex);
1004
1005 return cnt;
1006}
1007
1008static int i915_error_state_open(struct inode *inode, struct file *file)
1009{
1010 struct drm_device *dev = inode->i_private;
Daniel Vetterd5442302012-04-27 15:17:40 +02001011 struct i915_error_state_file_priv *error_priv;
Daniel Vetterd5442302012-04-27 15:17:40 +02001012
1013 error_priv = kzalloc(sizeof(*error_priv), GFP_KERNEL);
1014 if (!error_priv)
1015 return -ENOMEM;
1016
1017 error_priv->dev = dev;
1018
Mika Kuoppala95d5bfb2013-06-06 15:18:40 +03001019 i915_error_state_get(dev, error_priv);
Daniel Vetterd5442302012-04-27 15:17:40 +02001020
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001021 file->private_data = error_priv;
1022
1023 return 0;
Daniel Vetterd5442302012-04-27 15:17:40 +02001024}
1025
1026static int i915_error_state_release(struct inode *inode, struct file *file)
1027{
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001028 struct i915_error_state_file_priv *error_priv = file->private_data;
Daniel Vetterd5442302012-04-27 15:17:40 +02001029
Mika Kuoppala95d5bfb2013-06-06 15:18:40 +03001030 i915_error_state_put(error_priv);
Daniel Vetterd5442302012-04-27 15:17:40 +02001031 kfree(error_priv);
1032
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001033 return 0;
1034}
1035
1036static ssize_t i915_error_state_read(struct file *file, char __user *userbuf,
1037 size_t count, loff_t *pos)
1038{
1039 struct i915_error_state_file_priv *error_priv = file->private_data;
1040 struct drm_i915_error_state_buf error_str;
1041 loff_t tmp_pos = 0;
1042 ssize_t ret_count = 0;
Mika Kuoppala4dc955f2013-06-06 15:18:41 +03001043 int ret;
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001044
Chris Wilson0a4cd7c2014-08-22 14:41:39 +01001045 ret = i915_error_state_buf_init(&error_str, to_i915(error_priv->dev), count, *pos);
Mika Kuoppala4dc955f2013-06-06 15:18:41 +03001046 if (ret)
1047 return ret;
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001048
Mika Kuoppalafc16b482013-06-06 15:18:39 +03001049 ret = i915_error_state_to_str(&error_str, error_priv);
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001050 if (ret)
1051 goto out;
1052
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001053 ret_count = simple_read_from_buffer(userbuf, count, &tmp_pos,
1054 error_str.buf,
1055 error_str.bytes);
1056
1057 if (ret_count < 0)
1058 ret = ret_count;
1059 else
1060 *pos = error_str.start + ret_count;
1061out:
Mika Kuoppala4dc955f2013-06-06 15:18:41 +03001062 i915_error_state_buf_release(&error_str);
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001063 return ret ?: ret_count;
Daniel Vetterd5442302012-04-27 15:17:40 +02001064}
1065
1066static const struct file_operations i915_error_state_fops = {
1067 .owner = THIS_MODULE,
1068 .open = i915_error_state_open,
Mika Kuoppalaedc3d882013-05-23 13:55:35 +03001069 .read = i915_error_state_read,
Daniel Vetterd5442302012-04-27 15:17:40 +02001070 .write = i915_error_state_write,
1071 .llseek = default_llseek,
1072 .release = i915_error_state_release,
1073};
1074
Kees Cook647416f2013-03-10 14:10:06 -07001075static int
1076i915_next_seqno_get(void *data, u64 *val)
Mika Kuoppala40633212012-12-04 15:12:00 +02001077{
Kees Cook647416f2013-03-10 14:10:06 -07001078 struct drm_device *dev = data;
Jani Nikulae277a1f2014-03-31 14:27:14 +03001079 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala40633212012-12-04 15:12:00 +02001080 int ret;
1081
1082 ret = mutex_lock_interruptible(&dev->struct_mutex);
1083 if (ret)
1084 return ret;
1085
Kees Cook647416f2013-03-10 14:10:06 -07001086 *val = dev_priv->next_seqno;
Mika Kuoppala40633212012-12-04 15:12:00 +02001087 mutex_unlock(&dev->struct_mutex);
1088
Kees Cook647416f2013-03-10 14:10:06 -07001089 return 0;
Mika Kuoppala40633212012-12-04 15:12:00 +02001090}
1091
Kees Cook647416f2013-03-10 14:10:06 -07001092static int
1093i915_next_seqno_set(void *data, u64 val)
Mika Kuoppala40633212012-12-04 15:12:00 +02001094{
Kees Cook647416f2013-03-10 14:10:06 -07001095 struct drm_device *dev = data;
Mika Kuoppala40633212012-12-04 15:12:00 +02001096 int ret;
1097
Mika Kuoppala40633212012-12-04 15:12:00 +02001098 ret = mutex_lock_interruptible(&dev->struct_mutex);
1099 if (ret)
1100 return ret;
1101
Mika Kuoppalae94fbaa2012-12-19 11:13:09 +02001102 ret = i915_gem_set_seqno(dev, val);
Mika Kuoppala40633212012-12-04 15:12:00 +02001103 mutex_unlock(&dev->struct_mutex);
1104
Kees Cook647416f2013-03-10 14:10:06 -07001105 return ret;
Mika Kuoppala40633212012-12-04 15:12:00 +02001106}
1107
Kees Cook647416f2013-03-10 14:10:06 -07001108DEFINE_SIMPLE_ATTRIBUTE(i915_next_seqno_fops,
1109 i915_next_seqno_get, i915_next_seqno_set,
Mika Kuoppala3a3b4f92013-04-12 12:10:05 +03001110 "0x%llx\n");
Mika Kuoppala40633212012-12-04 15:12:00 +02001111
Deepak Sadb4bd12014-03-31 11:30:02 +05301112static int i915_frequency_info(struct seq_file *m, void *unused)
Jesse Barnesf97108d2010-01-29 11:27:07 -08001113{
Damien Lespiau9f25d002014-05-13 15:30:28 +01001114 struct drm_info_node *node = m->private;
Jesse Barnesf97108d2010-01-29 11:27:07 -08001115 struct drm_device *dev = node->minor->dev;
Jani Nikulae277a1f2014-03-31 14:27:14 +03001116 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02001117 int ret = 0;
1118
1119 intel_runtime_pm_get(dev_priv);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001120
Tom O'Rourke5c9669c2013-09-16 14:56:43 -07001121 flush_delayed_work(&dev_priv->rps.delayed_resume_work);
1122
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001123 if (IS_GEN5(dev)) {
1124 u16 rgvswctl = I915_READ16(MEMSWCTL);
1125 u16 rgvstat = I915_READ16(MEMSTAT_ILK);
1126
1127 seq_printf(m, "Requested P-state: %d\n", (rgvswctl >> 8) & 0xf);
1128 seq_printf(m, "Requested VID: %d\n", rgvswctl & 0x3f);
1129 seq_printf(m, "Current VID: %d\n", (rgvstat & MEMSTAT_VID_MASK) >>
1130 MEMSTAT_VID_SHIFT);
1131 seq_printf(m, "Current P-state: %d\n",
1132 (rgvstat & MEMSTAT_PSTATE_MASK) >> MEMSTAT_PSTATE_SHIFT);
Tom O'Rourkedaa3afb2014-05-30 16:22:10 -07001133 } else if (IS_GEN6(dev) || (IS_GEN7(dev) && !IS_VALLEYVIEW(dev)) ||
Akash Goel60260a52015-03-06 11:07:21 +05301134 IS_BROADWELL(dev) || IS_GEN9(dev)) {
Bob Paauwe35040562015-06-25 14:54:07 -07001135 u32 rp_state_limits;
1136 u32 gt_perf_status;
1137 u32 rp_state_cap;
Chris Wilson0d8f9492014-03-27 09:06:14 +00001138 u32 rpmodectl, rpinclimit, rpdeclimit;
Chris Wilson8e8c06c2013-08-26 19:51:01 -03001139 u32 rpstat, cagf, reqf;
Jesse Barnesccab5c82011-01-18 15:49:25 -08001140 u32 rpupei, rpcurup, rpprevup;
1141 u32 rpdownei, rpcurdown, rpprevdown;
Paulo Zanoni9dd3c602014-08-01 18:14:48 -03001142 u32 pm_ier, pm_imr, pm_isr, pm_iir, pm_mask;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001143 int max_freq;
1144
Bob Paauwe35040562015-06-25 14:54:07 -07001145 rp_state_limits = I915_READ(GEN6_RP_STATE_LIMITS);
1146 if (IS_BROXTON(dev)) {
1147 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
1148 gt_perf_status = I915_READ(BXT_GT_PERF_STATUS);
1149 } else {
1150 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
1151 gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS);
1152 }
1153
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001154 /* RPSTAT1 is in the GT power well */
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01001155 ret = mutex_lock_interruptible(&dev->struct_mutex);
1156 if (ret)
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02001157 goto out;
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01001158
Mika Kuoppala59bad942015-01-16 11:34:40 +02001159 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001160
Chris Wilson8e8c06c2013-08-26 19:51:01 -03001161 reqf = I915_READ(GEN6_RPNSWREQ);
Akash Goel60260a52015-03-06 11:07:21 +05301162 if (IS_GEN9(dev))
1163 reqf >>= 23;
1164 else {
1165 reqf &= ~GEN6_TURBO_DISABLE;
1166 if (IS_HASWELL(dev) || IS_BROADWELL(dev))
1167 reqf >>= 24;
1168 else
1169 reqf >>= 25;
1170 }
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02001171 reqf = intel_gpu_freq(dev_priv, reqf);
Chris Wilson8e8c06c2013-08-26 19:51:01 -03001172
Chris Wilson0d8f9492014-03-27 09:06:14 +00001173 rpmodectl = I915_READ(GEN6_RP_CONTROL);
1174 rpinclimit = I915_READ(GEN6_RP_UP_THRESHOLD);
1175 rpdeclimit = I915_READ(GEN6_RP_DOWN_THRESHOLD);
1176
Jesse Barnesccab5c82011-01-18 15:49:25 -08001177 rpstat = I915_READ(GEN6_RPSTAT1);
1178 rpupei = I915_READ(GEN6_RP_CUR_UP_EI);
1179 rpcurup = I915_READ(GEN6_RP_CUR_UP);
1180 rpprevup = I915_READ(GEN6_RP_PREV_UP);
1181 rpdownei = I915_READ(GEN6_RP_CUR_DOWN_EI);
1182 rpcurdown = I915_READ(GEN6_RP_CUR_DOWN);
1183 rpprevdown = I915_READ(GEN6_RP_PREV_DOWN);
Akash Goel60260a52015-03-06 11:07:21 +05301184 if (IS_GEN9(dev))
1185 cagf = (rpstat & GEN9_CAGF_MASK) >> GEN9_CAGF_SHIFT;
1186 else if (IS_HASWELL(dev) || IS_BROADWELL(dev))
Ben Widawskyf82855d2013-01-29 12:00:15 -08001187 cagf = (rpstat & HSW_CAGF_MASK) >> HSW_CAGF_SHIFT;
1188 else
1189 cagf = (rpstat & GEN6_CAGF_MASK) >> GEN6_CAGF_SHIFT;
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02001190 cagf = intel_gpu_freq(dev_priv, cagf);
Jesse Barnesccab5c82011-01-18 15:49:25 -08001191
Mika Kuoppala59bad942015-01-16 11:34:40 +02001192 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawskyd1ebd8162011-04-25 20:11:50 +01001193 mutex_unlock(&dev->struct_mutex);
1194
Paulo Zanoni9dd3c602014-08-01 18:14:48 -03001195 if (IS_GEN6(dev) || IS_GEN7(dev)) {
1196 pm_ier = I915_READ(GEN6_PMIER);
1197 pm_imr = I915_READ(GEN6_PMIMR);
1198 pm_isr = I915_READ(GEN6_PMISR);
1199 pm_iir = I915_READ(GEN6_PMIIR);
1200 pm_mask = I915_READ(GEN6_PMINTRMSK);
1201 } else {
1202 pm_ier = I915_READ(GEN8_GT_IER(2));
1203 pm_imr = I915_READ(GEN8_GT_IMR(2));
1204 pm_isr = I915_READ(GEN8_GT_ISR(2));
1205 pm_iir = I915_READ(GEN8_GT_IIR(2));
1206 pm_mask = I915_READ(GEN6_PMINTRMSK);
1207 }
Chris Wilson0d8f9492014-03-27 09:06:14 +00001208 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 -03001209 pm_ier, pm_imr, pm_isr, pm_iir, pm_mask);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001210 seq_printf(m, "GT_PERF_STATUS: 0x%08x\n", gt_perf_status);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001211 seq_printf(m, "Render p-state ratio: %d\n",
Akash Goel60260a52015-03-06 11:07:21 +05301212 (gt_perf_status & (IS_GEN9(dev) ? 0x1ff00 : 0xff00)) >> 8);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001213 seq_printf(m, "Render p-state VID: %d\n",
1214 gt_perf_status & 0xff);
1215 seq_printf(m, "Render p-state limit: %d\n",
1216 rp_state_limits & 0xff);
Chris Wilson0d8f9492014-03-27 09:06:14 +00001217 seq_printf(m, "RPSTAT1: 0x%08x\n", rpstat);
1218 seq_printf(m, "RPMODECTL: 0x%08x\n", rpmodectl);
1219 seq_printf(m, "RPINCLIMIT: 0x%08x\n", rpinclimit);
1220 seq_printf(m, "RPDECLIMIT: 0x%08x\n", rpdeclimit);
Chris Wilson8e8c06c2013-08-26 19:51:01 -03001221 seq_printf(m, "RPNSWREQ: %dMHz\n", reqf);
Ben Widawskyf82855d2013-01-29 12:00:15 -08001222 seq_printf(m, "CAGF: %dMHz\n", cagf);
Jesse Barnesccab5c82011-01-18 15:49:25 -08001223 seq_printf(m, "RP CUR UP EI: %dus\n", rpupei &
1224 GEN6_CURICONT_MASK);
1225 seq_printf(m, "RP CUR UP: %dus\n", rpcurup &
1226 GEN6_CURBSYTAVG_MASK);
1227 seq_printf(m, "RP PREV UP: %dus\n", rpprevup &
1228 GEN6_CURBSYTAVG_MASK);
Chris Wilsond86ed342015-04-27 13:41:19 +01001229 seq_printf(m, "Up threshold: %d%%\n",
1230 dev_priv->rps.up_threshold);
1231
Jesse Barnesccab5c82011-01-18 15:49:25 -08001232 seq_printf(m, "RP CUR DOWN EI: %dus\n", rpdownei &
1233 GEN6_CURIAVG_MASK);
1234 seq_printf(m, "RP CUR DOWN: %dus\n", rpcurdown &
1235 GEN6_CURBSYTAVG_MASK);
1236 seq_printf(m, "RP PREV DOWN: %dus\n", rpprevdown &
1237 GEN6_CURBSYTAVG_MASK);
Chris Wilsond86ed342015-04-27 13:41:19 +01001238 seq_printf(m, "Down threshold: %d%%\n",
1239 dev_priv->rps.down_threshold);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001240
Bob Paauwe35040562015-06-25 14:54:07 -07001241 max_freq = (IS_BROXTON(dev) ? rp_state_cap >> 0 :
1242 rp_state_cap >> 16) & 0xff;
Akash Goel60260a52015-03-06 11:07:21 +05301243 max_freq *= (IS_SKYLAKE(dev) ? GEN9_FREQ_SCALER : 1);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001244 seq_printf(m, "Lowest (RPN) frequency: %dMHz\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02001245 intel_gpu_freq(dev_priv, max_freq));
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001246
1247 max_freq = (rp_state_cap & 0xff00) >> 8;
Akash Goel60260a52015-03-06 11:07:21 +05301248 max_freq *= (IS_SKYLAKE(dev) ? GEN9_FREQ_SCALER : 1);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001249 seq_printf(m, "Nominal (RP1) frequency: %dMHz\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02001250 intel_gpu_freq(dev_priv, max_freq));
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001251
Bob Paauwe35040562015-06-25 14:54:07 -07001252 max_freq = (IS_BROXTON(dev) ? rp_state_cap >> 16 :
1253 rp_state_cap >> 0) & 0xff;
Akash Goel60260a52015-03-06 11:07:21 +05301254 max_freq *= (IS_SKYLAKE(dev) ? GEN9_FREQ_SCALER : 1);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001255 seq_printf(m, "Max non-overclocked (RP0) frequency: %dMHz\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02001256 intel_gpu_freq(dev_priv, max_freq));
Ben Widawsky31c77382013-04-05 14:29:22 -07001257 seq_printf(m, "Max overclocked frequency: %dMHz\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02001258 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq));
Chris Wilsonaed242f2015-03-18 09:48:21 +00001259
Chris Wilsond86ed342015-04-27 13:41:19 +01001260 seq_printf(m, "Current freq: %d MHz\n",
1261 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq));
1262 seq_printf(m, "Actual freq: %d MHz\n", cagf);
Chris Wilsonaed242f2015-03-18 09:48:21 +00001263 seq_printf(m, "Idle freq: %d MHz\n",
1264 intel_gpu_freq(dev_priv, dev_priv->rps.idle_freq));
Chris Wilsond86ed342015-04-27 13:41:19 +01001265 seq_printf(m, "Min freq: %d MHz\n",
1266 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq));
1267 seq_printf(m, "Max freq: %d MHz\n",
1268 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq));
1269 seq_printf(m,
1270 "efficient (RPe) frequency: %d MHz\n",
1271 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq));
Jesse Barnes0a073b82013-04-17 15:54:58 -07001272 } else if (IS_VALLEYVIEW(dev)) {
Ville Syrjälä03af2042014-06-28 02:03:53 +03001273 u32 freq_sts;
Jesse Barnes0a073b82013-04-17 15:54:58 -07001274
Jesse Barnes259bd5d2013-04-22 15:59:30 -07001275 mutex_lock(&dev_priv->rps.hw_lock);
Jani Nikula64936252013-05-22 15:36:20 +03001276 freq_sts = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07001277 seq_printf(m, "PUNIT_REG_GPU_FREQ_STS: 0x%08x\n", freq_sts);
1278 seq_printf(m, "DDR freq: %d MHz\n", dev_priv->mem_freq);
1279
Chris Wilsond86ed342015-04-27 13:41:19 +01001280 seq_printf(m, "actual GPU freq: %d MHz\n",
1281 intel_gpu_freq(dev_priv, (freq_sts >> 8) & 0xff));
1282
1283 seq_printf(m, "current GPU freq: %d MHz\n",
1284 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq));
1285
Jesse Barnes0a073b82013-04-17 15:54:58 -07001286 seq_printf(m, "max GPU freq: %d MHz\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02001287 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq));
Jesse Barnes0a073b82013-04-17 15:54:58 -07001288
Jesse Barnes0a073b82013-04-17 15:54:58 -07001289 seq_printf(m, "min GPU freq: %d MHz\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02001290 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq));
Ville Syrjälä03af2042014-06-28 02:03:53 +03001291
Chris Wilsonaed242f2015-03-18 09:48:21 +00001292 seq_printf(m, "idle GPU freq: %d MHz\n",
1293 intel_gpu_freq(dev_priv, dev_priv->rps.idle_freq));
1294
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02001295 seq_printf(m,
1296 "efficient (RPe) frequency: %d MHz\n",
1297 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq));
Jesse Barnes259bd5d2013-04-22 15:59:30 -07001298 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001299 } else {
Damien Lespiau267f0c92013-06-24 22:59:48 +01001300 seq_puts(m, "no P-state info available\n");
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001301 }
Jesse Barnesf97108d2010-01-29 11:27:07 -08001302
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02001303out:
1304 intel_runtime_pm_put(dev_priv);
1305 return ret;
Jesse Barnesf97108d2010-01-29 11:27:07 -08001306}
1307
Chris Wilsonf654449a2015-01-26 18:03:04 +02001308static int i915_hangcheck_info(struct seq_file *m, void *unused)
1309{
1310 struct drm_info_node *node = m->private;
Mika Kuoppalaebbc7542015-02-05 18:41:48 +02001311 struct drm_device *dev = node->minor->dev;
1312 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonf654449a2015-01-26 18:03:04 +02001313 struct intel_engine_cs *ring;
Mika Kuoppalaebbc7542015-02-05 18:41:48 +02001314 u64 acthd[I915_NUM_RINGS];
1315 u32 seqno[I915_NUM_RINGS];
Chris Wilsonf654449a2015-01-26 18:03:04 +02001316 int i;
1317
1318 if (!i915.enable_hangcheck) {
1319 seq_printf(m, "Hangcheck disabled\n");
1320 return 0;
1321 }
1322
Mika Kuoppalaebbc7542015-02-05 18:41:48 +02001323 intel_runtime_pm_get(dev_priv);
1324
1325 for_each_ring(ring, dev_priv, i) {
1326 seqno[i] = ring->get_seqno(ring, false);
1327 acthd[i] = intel_ring_get_active_head(ring);
1328 }
1329
1330 intel_runtime_pm_put(dev_priv);
1331
Chris Wilsonf654449a2015-01-26 18:03:04 +02001332 if (delayed_work_pending(&dev_priv->gpu_error.hangcheck_work)) {
1333 seq_printf(m, "Hangcheck active, fires in %dms\n",
1334 jiffies_to_msecs(dev_priv->gpu_error.hangcheck_work.timer.expires -
1335 jiffies));
1336 } else
1337 seq_printf(m, "Hangcheck inactive\n");
1338
1339 for_each_ring(ring, dev_priv, i) {
1340 seq_printf(m, "%s:\n", ring->name);
1341 seq_printf(m, "\tseqno = %x [current %x]\n",
Mika Kuoppalaebbc7542015-02-05 18:41:48 +02001342 ring->hangcheck.seqno, seqno[i]);
Chris Wilsonf654449a2015-01-26 18:03:04 +02001343 seq_printf(m, "\tACTHD = 0x%08llx [current 0x%08llx]\n",
1344 (long long)ring->hangcheck.acthd,
Mika Kuoppalaebbc7542015-02-05 18:41:48 +02001345 (long long)acthd[i]);
Chris Wilsonf654449a2015-01-26 18:03:04 +02001346 seq_printf(m, "\tmax ACTHD = 0x%08llx\n",
1347 (long long)ring->hangcheck.max_acthd);
Mika Kuoppalaebbc7542015-02-05 18:41:48 +02001348 seq_printf(m, "\tscore = %d\n", ring->hangcheck.score);
1349 seq_printf(m, "\taction = %d\n", ring->hangcheck.action);
Chris Wilsonf654449a2015-01-26 18:03:04 +02001350 }
1351
1352 return 0;
1353}
1354
Ben Widawsky4d855292011-12-12 19:34:16 -08001355static int ironlake_drpc_info(struct seq_file *m)
Jesse Barnesf97108d2010-01-29 11:27:07 -08001356{
Damien Lespiau9f25d002014-05-13 15:30:28 +01001357 struct drm_info_node *node = m->private;
Jesse Barnesf97108d2010-01-29 11:27:07 -08001358 struct drm_device *dev = node->minor->dev;
Jani Nikulae277a1f2014-03-31 14:27:14 +03001359 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky616fdb52011-10-05 11:44:54 -07001360 u32 rgvmodectl, rstdbyctl;
1361 u16 crstandvid;
1362 int ret;
1363
1364 ret = mutex_lock_interruptible(&dev->struct_mutex);
1365 if (ret)
1366 return ret;
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02001367 intel_runtime_pm_get(dev_priv);
Ben Widawsky616fdb52011-10-05 11:44:54 -07001368
1369 rgvmodectl = I915_READ(MEMMODECTL);
1370 rstdbyctl = I915_READ(RSTDBYCTL);
1371 crstandvid = I915_READ16(CRSTANDVID);
1372
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02001373 intel_runtime_pm_put(dev_priv);
Ben Widawsky616fdb52011-10-05 11:44:54 -07001374 mutex_unlock(&dev->struct_mutex);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001375
1376 seq_printf(m, "HD boost: %s\n", (rgvmodectl & MEMMODE_BOOST_EN) ?
1377 "yes" : "no");
1378 seq_printf(m, "Boost freq: %d\n",
1379 (rgvmodectl & MEMMODE_BOOST_FREQ_MASK) >>
1380 MEMMODE_BOOST_FREQ_SHIFT);
1381 seq_printf(m, "HW control enabled: %s\n",
1382 rgvmodectl & MEMMODE_HWIDLE_EN ? "yes" : "no");
1383 seq_printf(m, "SW control enabled: %s\n",
1384 rgvmodectl & MEMMODE_SWMODE_EN ? "yes" : "no");
1385 seq_printf(m, "Gated voltage change: %s\n",
1386 rgvmodectl & MEMMODE_RCLK_GATE ? "yes" : "no");
1387 seq_printf(m, "Starting frequency: P%d\n",
1388 (rgvmodectl & MEMMODE_FSTART_MASK) >> MEMMODE_FSTART_SHIFT);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001389 seq_printf(m, "Max P-state: P%d\n",
Jesse Barnesf97108d2010-01-29 11:27:07 -08001390 (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001391 seq_printf(m, "Min P-state: P%d\n", (rgvmodectl & MEMMODE_FMIN_MASK));
1392 seq_printf(m, "RS1 VID: %d\n", (crstandvid & 0x3f));
1393 seq_printf(m, "RS2 VID: %d\n", ((crstandvid >> 8) & 0x3f));
1394 seq_printf(m, "Render standby enabled: %s\n",
1395 (rstdbyctl & RCX_SW_EXIT) ? "no" : "yes");
Damien Lespiau267f0c92013-06-24 22:59:48 +01001396 seq_puts(m, "Current RS state: ");
Jesse Barnes88271da2011-01-05 12:01:24 -08001397 switch (rstdbyctl & RSX_STATUS_MASK) {
1398 case RSX_STATUS_ON:
Damien Lespiau267f0c92013-06-24 22:59:48 +01001399 seq_puts(m, "on\n");
Jesse Barnes88271da2011-01-05 12:01:24 -08001400 break;
1401 case RSX_STATUS_RC1:
Damien Lespiau267f0c92013-06-24 22:59:48 +01001402 seq_puts(m, "RC1\n");
Jesse Barnes88271da2011-01-05 12:01:24 -08001403 break;
1404 case RSX_STATUS_RC1E:
Damien Lespiau267f0c92013-06-24 22:59:48 +01001405 seq_puts(m, "RC1E\n");
Jesse Barnes88271da2011-01-05 12:01:24 -08001406 break;
1407 case RSX_STATUS_RS1:
Damien Lespiau267f0c92013-06-24 22:59:48 +01001408 seq_puts(m, "RS1\n");
Jesse Barnes88271da2011-01-05 12:01:24 -08001409 break;
1410 case RSX_STATUS_RS2:
Damien Lespiau267f0c92013-06-24 22:59:48 +01001411 seq_puts(m, "RS2 (RC6)\n");
Jesse Barnes88271da2011-01-05 12:01:24 -08001412 break;
1413 case RSX_STATUS_RS3:
Damien Lespiau267f0c92013-06-24 22:59:48 +01001414 seq_puts(m, "RC3 (RC6+)\n");
Jesse Barnes88271da2011-01-05 12:01:24 -08001415 break;
1416 default:
Damien Lespiau267f0c92013-06-24 22:59:48 +01001417 seq_puts(m, "unknown\n");
Jesse Barnes88271da2011-01-05 12:01:24 -08001418 break;
1419 }
Jesse Barnesf97108d2010-01-29 11:27:07 -08001420
1421 return 0;
1422}
1423
Mika Kuoppalaf65367b2015-01-16 11:34:42 +02001424static int i915_forcewake_domains(struct seq_file *m, void *data)
Chris Wilsonb2cff0d2015-01-16 11:34:37 +02001425{
1426 struct drm_info_node *node = m->private;
1427 struct drm_device *dev = node->minor->dev;
1428 struct drm_i915_private *dev_priv = dev->dev_private;
1429 struct intel_uncore_forcewake_domain *fw_domain;
Chris Wilsonb2cff0d2015-01-16 11:34:37 +02001430 int i;
1431
1432 spin_lock_irq(&dev_priv->uncore.lock);
1433 for_each_fw_domain(fw_domain, dev_priv, i) {
1434 seq_printf(m, "%s.wake_count = %u\n",
Mika Kuoppala05a2fb12015-01-19 16:20:43 +02001435 intel_uncore_forcewake_domain_to_str(i),
Chris Wilsonb2cff0d2015-01-16 11:34:37 +02001436 fw_domain->wake_count);
1437 }
1438 spin_unlock_irq(&dev_priv->uncore.lock);
1439
1440 return 0;
1441}
1442
Deepak S669ab5a2014-01-10 15:18:26 +05301443static int vlv_drpc_info(struct seq_file *m)
1444{
Damien Lespiau9f25d002014-05-13 15:30:28 +01001445 struct drm_info_node *node = m->private;
Deepak S669ab5a2014-01-10 15:18:26 +05301446 struct drm_device *dev = node->minor->dev;
1447 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä6b312cd2014-11-19 20:07:42 +02001448 u32 rpmodectl1, rcctl1, pw_status;
Deepak S669ab5a2014-01-10 15:18:26 +05301449
Imre Deakd46c0512014-04-14 20:24:27 +03001450 intel_runtime_pm_get(dev_priv);
1451
Ville Syrjälä6b312cd2014-11-19 20:07:42 +02001452 pw_status = I915_READ(VLV_GTLC_PW_STATUS);
Deepak S669ab5a2014-01-10 15:18:26 +05301453 rpmodectl1 = I915_READ(GEN6_RP_CONTROL);
1454 rcctl1 = I915_READ(GEN6_RC_CONTROL);
1455
Imre Deakd46c0512014-04-14 20:24:27 +03001456 intel_runtime_pm_put(dev_priv);
1457
Deepak S669ab5a2014-01-10 15:18:26 +05301458 seq_printf(m, "Video Turbo Mode: %s\n",
1459 yesno(rpmodectl1 & GEN6_RP_MEDIA_TURBO));
1460 seq_printf(m, "Turbo enabled: %s\n",
1461 yesno(rpmodectl1 & GEN6_RP_ENABLE));
1462 seq_printf(m, "HW control enabled: %s\n",
1463 yesno(rpmodectl1 & GEN6_RP_ENABLE));
1464 seq_printf(m, "SW control enabled: %s\n",
1465 yesno((rpmodectl1 & GEN6_RP_MEDIA_MODE_MASK) ==
1466 GEN6_RP_MEDIA_SW_MODE));
1467 seq_printf(m, "RC6 Enabled: %s\n",
1468 yesno(rcctl1 & (GEN7_RC_CTL_TO_MODE |
1469 GEN6_RC_CTL_EI_MODE(1))));
1470 seq_printf(m, "Render Power Well: %s\n",
Ville Syrjälä6b312cd2014-11-19 20:07:42 +02001471 (pw_status & VLV_GTLC_PW_RENDER_STATUS_MASK) ? "Up" : "Down");
Deepak S669ab5a2014-01-10 15:18:26 +05301472 seq_printf(m, "Media Power Well: %s\n",
Ville Syrjälä6b312cd2014-11-19 20:07:42 +02001473 (pw_status & VLV_GTLC_PW_MEDIA_STATUS_MASK) ? "Up" : "Down");
Deepak S669ab5a2014-01-10 15:18:26 +05301474
Imre Deak9cc19be2014-04-14 20:24:24 +03001475 seq_printf(m, "Render RC6 residency since boot: %u\n",
1476 I915_READ(VLV_GT_RENDER_RC6));
1477 seq_printf(m, "Media RC6 residency since boot: %u\n",
1478 I915_READ(VLV_GT_MEDIA_RC6));
1479
Mika Kuoppalaf65367b2015-01-16 11:34:42 +02001480 return i915_forcewake_domains(m, NULL);
Deepak S669ab5a2014-01-10 15:18:26 +05301481}
1482
Ben Widawsky4d855292011-12-12 19:34:16 -08001483static int gen6_drpc_info(struct seq_file *m)
1484{
Damien Lespiau9f25d002014-05-13 15:30:28 +01001485 struct drm_info_node *node = m->private;
Ben Widawsky4d855292011-12-12 19:34:16 -08001486 struct drm_device *dev = node->minor->dev;
1487 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskyecd8fae2012-09-26 10:34:02 -07001488 u32 rpmodectl1, gt_core_status, rcctl1, rc6vids = 0;
Daniel Vetter93b525d2012-01-25 13:52:43 +01001489 unsigned forcewake_count;
Damien Lespiauaee56cf2013-06-24 22:59:49 +01001490 int count = 0, ret;
Ben Widawsky4d855292011-12-12 19:34:16 -08001491
1492 ret = mutex_lock_interruptible(&dev->struct_mutex);
1493 if (ret)
1494 return ret;
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02001495 intel_runtime_pm_get(dev_priv);
Ben Widawsky4d855292011-12-12 19:34:16 -08001496
Chris Wilson907b28c2013-07-19 20:36:52 +01001497 spin_lock_irq(&dev_priv->uncore.lock);
Chris Wilsonb2cff0d2015-01-16 11:34:37 +02001498 forcewake_count = dev_priv->uncore.fw_domain[FW_DOMAIN_ID_RENDER].wake_count;
Chris Wilson907b28c2013-07-19 20:36:52 +01001499 spin_unlock_irq(&dev_priv->uncore.lock);
Daniel Vetter93b525d2012-01-25 13:52:43 +01001500
1501 if (forcewake_count) {
Damien Lespiau267f0c92013-06-24 22:59:48 +01001502 seq_puts(m, "RC information inaccurate because somebody "
1503 "holds a forcewake reference \n");
Ben Widawsky4d855292011-12-12 19:34:16 -08001504 } else {
1505 /* NB: we cannot use forcewake, else we read the wrong values */
1506 while (count++ < 50 && (I915_READ_NOTRACE(FORCEWAKE_ACK) & 1))
1507 udelay(10);
1508 seq_printf(m, "RC information accurate: %s\n", yesno(count < 51));
1509 }
1510
1511 gt_core_status = readl(dev_priv->regs + GEN6_GT_CORE_STATUS);
Chris Wilsoned71f1b2013-07-19 20:36:56 +01001512 trace_i915_reg_rw(false, GEN6_GT_CORE_STATUS, gt_core_status, 4, true);
Ben Widawsky4d855292011-12-12 19:34:16 -08001513
1514 rpmodectl1 = I915_READ(GEN6_RP_CONTROL);
1515 rcctl1 = I915_READ(GEN6_RC_CONTROL);
1516 mutex_unlock(&dev->struct_mutex);
Ben Widawsky44cbd332012-11-06 14:36:36 +00001517 mutex_lock(&dev_priv->rps.hw_lock);
1518 sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
1519 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky4d855292011-12-12 19:34:16 -08001520
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02001521 intel_runtime_pm_put(dev_priv);
1522
Ben Widawsky4d855292011-12-12 19:34:16 -08001523 seq_printf(m, "Video Turbo Mode: %s\n",
1524 yesno(rpmodectl1 & GEN6_RP_MEDIA_TURBO));
1525 seq_printf(m, "HW control enabled: %s\n",
1526 yesno(rpmodectl1 & GEN6_RP_ENABLE));
1527 seq_printf(m, "SW control enabled: %s\n",
1528 yesno((rpmodectl1 & GEN6_RP_MEDIA_MODE_MASK) ==
1529 GEN6_RP_MEDIA_SW_MODE));
Eric Anholtfff24e22012-01-23 16:14:05 -08001530 seq_printf(m, "RC1e Enabled: %s\n",
Ben Widawsky4d855292011-12-12 19:34:16 -08001531 yesno(rcctl1 & GEN6_RC_CTL_RC1e_ENABLE));
1532 seq_printf(m, "RC6 Enabled: %s\n",
1533 yesno(rcctl1 & GEN6_RC_CTL_RC6_ENABLE));
1534 seq_printf(m, "Deep RC6 Enabled: %s\n",
1535 yesno(rcctl1 & GEN6_RC_CTL_RC6p_ENABLE));
1536 seq_printf(m, "Deepest RC6 Enabled: %s\n",
1537 yesno(rcctl1 & GEN6_RC_CTL_RC6pp_ENABLE));
Damien Lespiau267f0c92013-06-24 22:59:48 +01001538 seq_puts(m, "Current RC state: ");
Ben Widawsky4d855292011-12-12 19:34:16 -08001539 switch (gt_core_status & GEN6_RCn_MASK) {
1540 case GEN6_RC0:
1541 if (gt_core_status & GEN6_CORE_CPD_STATE_MASK)
Damien Lespiau267f0c92013-06-24 22:59:48 +01001542 seq_puts(m, "Core Power Down\n");
Ben Widawsky4d855292011-12-12 19:34:16 -08001543 else
Damien Lespiau267f0c92013-06-24 22:59:48 +01001544 seq_puts(m, "on\n");
Ben Widawsky4d855292011-12-12 19:34:16 -08001545 break;
1546 case GEN6_RC3:
Damien Lespiau267f0c92013-06-24 22:59:48 +01001547 seq_puts(m, "RC3\n");
Ben Widawsky4d855292011-12-12 19:34:16 -08001548 break;
1549 case GEN6_RC6:
Damien Lespiau267f0c92013-06-24 22:59:48 +01001550 seq_puts(m, "RC6\n");
Ben Widawsky4d855292011-12-12 19:34:16 -08001551 break;
1552 case GEN6_RC7:
Damien Lespiau267f0c92013-06-24 22:59:48 +01001553 seq_puts(m, "RC7\n");
Ben Widawsky4d855292011-12-12 19:34:16 -08001554 break;
1555 default:
Damien Lespiau267f0c92013-06-24 22:59:48 +01001556 seq_puts(m, "Unknown\n");
Ben Widawsky4d855292011-12-12 19:34:16 -08001557 break;
1558 }
1559
1560 seq_printf(m, "Core Power Down: %s\n",
1561 yesno(gt_core_status & GEN6_CORE_CPD_STATE_MASK));
Ben Widawskycce66a22012-03-27 18:59:38 -07001562
1563 /* Not exactly sure what this is */
1564 seq_printf(m, "RC6 \"Locked to RPn\" residency since boot: %u\n",
1565 I915_READ(GEN6_GT_GFX_RC6_LOCKED));
1566 seq_printf(m, "RC6 residency since boot: %u\n",
1567 I915_READ(GEN6_GT_GFX_RC6));
1568 seq_printf(m, "RC6+ residency since boot: %u\n",
1569 I915_READ(GEN6_GT_GFX_RC6p));
1570 seq_printf(m, "RC6++ residency since boot: %u\n",
1571 I915_READ(GEN6_GT_GFX_RC6pp));
1572
Ben Widawskyecd8fae2012-09-26 10:34:02 -07001573 seq_printf(m, "RC6 voltage: %dmV\n",
1574 GEN6_DECODE_RC6_VID(((rc6vids >> 0) & 0xff)));
1575 seq_printf(m, "RC6+ voltage: %dmV\n",
1576 GEN6_DECODE_RC6_VID(((rc6vids >> 8) & 0xff)));
1577 seq_printf(m, "RC6++ voltage: %dmV\n",
1578 GEN6_DECODE_RC6_VID(((rc6vids >> 16) & 0xff)));
Ben Widawsky4d855292011-12-12 19:34:16 -08001579 return 0;
1580}
1581
1582static int i915_drpc_info(struct seq_file *m, void *unused)
1583{
Damien Lespiau9f25d002014-05-13 15:30:28 +01001584 struct drm_info_node *node = m->private;
Ben Widawsky4d855292011-12-12 19:34:16 -08001585 struct drm_device *dev = node->minor->dev;
1586
Deepak S669ab5a2014-01-10 15:18:26 +05301587 if (IS_VALLEYVIEW(dev))
1588 return vlv_drpc_info(m);
Vedang Patelac66cf42014-08-26 10:42:51 -07001589 else if (INTEL_INFO(dev)->gen >= 6)
Ben Widawsky4d855292011-12-12 19:34:16 -08001590 return gen6_drpc_info(m);
1591 else
1592 return ironlake_drpc_info(m);
1593}
1594
Daniel Vetter9a851782015-06-18 10:30:22 +02001595static int i915_frontbuffer_tracking(struct seq_file *m, void *unused)
1596{
1597 struct drm_info_node *node = m->private;
1598 struct drm_device *dev = node->minor->dev;
1599 struct drm_i915_private *dev_priv = dev->dev_private;
1600
1601 seq_printf(m, "FB tracking busy bits: 0x%08x\n",
1602 dev_priv->fb_tracking.busy_bits);
1603
1604 seq_printf(m, "FB tracking flip bits: 0x%08x\n",
1605 dev_priv->fb_tracking.flip_bits);
1606
1607 return 0;
1608}
1609
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001610static int i915_fbc_status(struct seq_file *m, void *unused)
1611{
Damien Lespiau9f25d002014-05-13 15:30:28 +01001612 struct drm_info_node *node = m->private;
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001613 struct drm_device *dev = node->minor->dev;
Jani Nikulae277a1f2014-03-31 14:27:14 +03001614 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001615
Daniel Vetter3a77c4c2014-01-10 08:50:12 +01001616 if (!HAS_FBC(dev)) {
Damien Lespiau267f0c92013-06-24 22:59:48 +01001617 seq_puts(m, "FBC unsupported on this chipset\n");
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001618 return 0;
1619 }
1620
Paulo Zanoni36623ef2014-02-21 13:52:23 -03001621 intel_runtime_pm_get(dev_priv);
1622
Paulo Zanoni2e8144a2015-06-12 14:36:20 -03001623 if (intel_fbc_enabled(dev))
Damien Lespiau267f0c92013-06-24 22:59:48 +01001624 seq_puts(m, "FBC enabled\n");
Paulo Zanoni2e8144a2015-06-12 14:36:20 -03001625 else
1626 seq_printf(m, "FBC disabled: %s\n",
1627 intel_no_fbc_reason_str(dev_priv->fbc.no_fbc_reason));
Paulo Zanoni36623ef2014-02-21 13:52:23 -03001628
Paulo Zanoni31b9df12015-06-12 14:36:18 -03001629 if (INTEL_INFO(dev_priv)->gen >= 7)
1630 seq_printf(m, "Compressing: %s\n",
1631 yesno(I915_READ(FBC_STATUS2) &
1632 FBC_COMPRESSION_MASK));
1633
Paulo Zanoni36623ef2014-02-21 13:52:23 -03001634 intel_runtime_pm_put(dev_priv);
1635
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001636 return 0;
1637}
1638
Rodrigo Vivida46f932014-08-01 02:04:45 -07001639static int i915_fbc_fc_get(void *data, u64 *val)
1640{
1641 struct drm_device *dev = data;
1642 struct drm_i915_private *dev_priv = dev->dev_private;
1643
1644 if (INTEL_INFO(dev)->gen < 7 || !HAS_FBC(dev))
1645 return -ENODEV;
1646
1647 drm_modeset_lock_all(dev);
1648 *val = dev_priv->fbc.false_color;
1649 drm_modeset_unlock_all(dev);
1650
1651 return 0;
1652}
1653
1654static int i915_fbc_fc_set(void *data, u64 val)
1655{
1656 struct drm_device *dev = data;
1657 struct drm_i915_private *dev_priv = dev->dev_private;
1658 u32 reg;
1659
1660 if (INTEL_INFO(dev)->gen < 7 || !HAS_FBC(dev))
1661 return -ENODEV;
1662
1663 drm_modeset_lock_all(dev);
1664
1665 reg = I915_READ(ILK_DPFC_CONTROL);
1666 dev_priv->fbc.false_color = val;
1667
1668 I915_WRITE(ILK_DPFC_CONTROL, val ?
1669 (reg | FBC_CTL_FALSE_COLOR) :
1670 (reg & ~FBC_CTL_FALSE_COLOR));
1671
1672 drm_modeset_unlock_all(dev);
1673 return 0;
1674}
1675
1676DEFINE_SIMPLE_ATTRIBUTE(i915_fbc_fc_fops,
1677 i915_fbc_fc_get, i915_fbc_fc_set,
1678 "%llu\n");
1679
Paulo Zanoni92d44622013-05-31 16:33:24 -03001680static int i915_ips_status(struct seq_file *m, void *unused)
1681{
Damien Lespiau9f25d002014-05-13 15:30:28 +01001682 struct drm_info_node *node = m->private;
Paulo Zanoni92d44622013-05-31 16:33:24 -03001683 struct drm_device *dev = node->minor->dev;
1684 struct drm_i915_private *dev_priv = dev->dev_private;
1685
Damien Lespiauf5adf942013-06-24 18:29:34 +01001686 if (!HAS_IPS(dev)) {
Paulo Zanoni92d44622013-05-31 16:33:24 -03001687 seq_puts(m, "not supported\n");
1688 return 0;
1689 }
1690
Paulo Zanoni36623ef2014-02-21 13:52:23 -03001691 intel_runtime_pm_get(dev_priv);
1692
Rodrigo Vivi0eaa53f2014-06-30 04:45:01 -07001693 seq_printf(m, "Enabled by kernel parameter: %s\n",
1694 yesno(i915.enable_ips));
1695
1696 if (INTEL_INFO(dev)->gen >= 8) {
1697 seq_puts(m, "Currently: unknown\n");
1698 } else {
1699 if (I915_READ(IPS_CTL) & IPS_ENABLE)
1700 seq_puts(m, "Currently: enabled\n");
1701 else
1702 seq_puts(m, "Currently: disabled\n");
1703 }
Paulo Zanoni92d44622013-05-31 16:33:24 -03001704
Paulo Zanoni36623ef2014-02-21 13:52:23 -03001705 intel_runtime_pm_put(dev_priv);
1706
Paulo Zanoni92d44622013-05-31 16:33:24 -03001707 return 0;
1708}
1709
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001710static int i915_sr_status(struct seq_file *m, void *unused)
1711{
Damien Lespiau9f25d002014-05-13 15:30:28 +01001712 struct drm_info_node *node = m->private;
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001713 struct drm_device *dev = node->minor->dev;
Jani Nikulae277a1f2014-03-31 14:27:14 +03001714 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001715 bool sr_enabled = false;
1716
Paulo Zanoni36623ef2014-02-21 13:52:23 -03001717 intel_runtime_pm_get(dev_priv);
1718
Yuanhan Liu13982612010-12-15 15:42:31 +08001719 if (HAS_PCH_SPLIT(dev))
Chris Wilson5ba2aaa2010-08-19 18:04:08 +01001720 sr_enabled = I915_READ(WM1_LP_ILK) & WM1_LP_SR_EN;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001721 else if (IS_CRESTLINE(dev) || IS_I945G(dev) || IS_I945GM(dev))
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001722 sr_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
1723 else if (IS_I915GM(dev))
1724 sr_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN;
1725 else if (IS_PINEVIEW(dev))
1726 sr_enabled = I915_READ(DSPFW3) & PINEVIEW_SELF_REFRESH_EN;
1727
Paulo Zanoni36623ef2014-02-21 13:52:23 -03001728 intel_runtime_pm_put(dev_priv);
1729
Chris Wilson5ba2aaa2010-08-19 18:04:08 +01001730 seq_printf(m, "self-refresh: %s\n",
1731 sr_enabled ? "enabled" : "disabled");
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001732
1733 return 0;
1734}
1735
Jesse Barnes7648fa92010-05-20 14:28:11 -07001736static int i915_emon_status(struct seq_file *m, void *unused)
1737{
Damien Lespiau9f25d002014-05-13 15:30:28 +01001738 struct drm_info_node *node = m->private;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001739 struct drm_device *dev = node->minor->dev;
Jani Nikulae277a1f2014-03-31 14:27:14 +03001740 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001741 unsigned long temp, chipset, gfx;
Chris Wilsonde227ef2010-07-03 07:58:38 +01001742 int ret;
1743
Chris Wilson582be6b2012-04-30 19:35:02 +01001744 if (!IS_GEN5(dev))
1745 return -ENODEV;
1746
Chris Wilsonde227ef2010-07-03 07:58:38 +01001747 ret = mutex_lock_interruptible(&dev->struct_mutex);
1748 if (ret)
1749 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001750
1751 temp = i915_mch_val(dev_priv);
1752 chipset = i915_chipset_val(dev_priv);
1753 gfx = i915_gfx_val(dev_priv);
Chris Wilsonde227ef2010-07-03 07:58:38 +01001754 mutex_unlock(&dev->struct_mutex);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001755
1756 seq_printf(m, "GMCH temp: %ld\n", temp);
1757 seq_printf(m, "Chipset power: %ld\n", chipset);
1758 seq_printf(m, "GFX power: %ld\n", gfx);
1759 seq_printf(m, "Total power: %ld\n", chipset + gfx);
1760
1761 return 0;
1762}
1763
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001764static int i915_ring_freq_table(struct seq_file *m, void *unused)
1765{
Damien Lespiau9f25d002014-05-13 15:30:28 +01001766 struct drm_info_node *node = m->private;
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001767 struct drm_device *dev = node->minor->dev;
Jani Nikulae277a1f2014-03-31 14:27:14 +03001768 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni5bfa0192013-12-19 11:54:52 -02001769 int ret = 0;
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001770 int gpu_freq, ia_freq;
1771
Jesse Barnes1c70c0c2011-06-29 13:34:36 -07001772 if (!(IS_GEN6(dev) || IS_GEN7(dev))) {
Damien Lespiau267f0c92013-06-24 22:59:48 +01001773 seq_puts(m, "unsupported on this chipset\n");
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001774 return 0;
1775 }
1776
Paulo Zanoni5bfa0192013-12-19 11:54:52 -02001777 intel_runtime_pm_get(dev_priv);
1778
Tom O'Rourke5c9669c2013-09-16 14:56:43 -07001779 flush_delayed_work(&dev_priv->rps.delayed_resume_work);
1780
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001781 ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001782 if (ret)
Paulo Zanoni5bfa0192013-12-19 11:54:52 -02001783 goto out;
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001784
Damien Lespiau267f0c92013-06-24 22:59:48 +01001785 seq_puts(m, "GPU freq (MHz)\tEffective CPU freq (MHz)\tEffective Ring freq (MHz)\n");
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001786
Ben Widawskyb39fb292014-03-19 18:31:11 -07001787 for (gpu_freq = dev_priv->rps.min_freq_softlimit;
1788 gpu_freq <= dev_priv->rps.max_freq_softlimit;
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001789 gpu_freq++) {
Ben Widawsky42c05262012-09-26 10:34:00 -07001790 ia_freq = gpu_freq;
1791 sandybridge_pcode_read(dev_priv,
1792 GEN6_PCODE_READ_MIN_FREQ_TABLE,
1793 &ia_freq);
Chris Wilson3ebecd02013-04-12 19:10:13 +01001794 seq_printf(m, "%d\t\t%d\t\t\t\t%d\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02001795 intel_gpu_freq(dev_priv, gpu_freq),
Chris Wilson3ebecd02013-04-12 19:10:13 +01001796 ((ia_freq >> 0) & 0xff) * 100,
1797 ((ia_freq >> 8) & 0xff) * 100);
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001798 }
1799
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001800 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001801
Paulo Zanoni5bfa0192013-12-19 11:54:52 -02001802out:
1803 intel_runtime_pm_put(dev_priv);
1804 return ret;
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001805}
1806
Chris Wilson44834a62010-08-19 16:09:23 +01001807static int i915_opregion(struct seq_file *m, void *unused)
1808{
Damien Lespiau9f25d002014-05-13 15:30:28 +01001809 struct drm_info_node *node = m->private;
Chris Wilson44834a62010-08-19 16:09:23 +01001810 struct drm_device *dev = node->minor->dev;
Jani Nikulae277a1f2014-03-31 14:27:14 +03001811 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson44834a62010-08-19 16:09:23 +01001812 struct intel_opregion *opregion = &dev_priv->opregion;
Daniel Vetter0d38f002012-04-21 22:49:10 +02001813 void *data = kmalloc(OPREGION_SIZE, GFP_KERNEL);
Chris Wilson44834a62010-08-19 16:09:23 +01001814 int ret;
1815
Daniel Vetter0d38f002012-04-21 22:49:10 +02001816 if (data == NULL)
1817 return -ENOMEM;
1818
Chris Wilson44834a62010-08-19 16:09:23 +01001819 ret = mutex_lock_interruptible(&dev->struct_mutex);
1820 if (ret)
Daniel Vetter0d38f002012-04-21 22:49:10 +02001821 goto out;
Chris Wilson44834a62010-08-19 16:09:23 +01001822
Daniel Vetter0d38f002012-04-21 22:49:10 +02001823 if (opregion->header) {
1824 memcpy_fromio(data, opregion->header, OPREGION_SIZE);
1825 seq_write(m, data, OPREGION_SIZE);
1826 }
Chris Wilson44834a62010-08-19 16:09:23 +01001827
1828 mutex_unlock(&dev->struct_mutex);
1829
Daniel Vetter0d38f002012-04-21 22:49:10 +02001830out:
1831 kfree(data);
Chris Wilson44834a62010-08-19 16:09:23 +01001832 return 0;
1833}
1834
Chris Wilson37811fc2010-08-25 22:45:57 +01001835static int i915_gem_framebuffer_info(struct seq_file *m, void *data)
1836{
Damien Lespiau9f25d002014-05-13 15:30:28 +01001837 struct drm_info_node *node = m->private;
Chris Wilson37811fc2010-08-25 22:45:57 +01001838 struct drm_device *dev = node->minor->dev;
Daniel Vetter4520f532013-10-09 09:18:51 +02001839 struct intel_fbdev *ifbdev = NULL;
Chris Wilson37811fc2010-08-25 22:45:57 +01001840 struct intel_framebuffer *fb;
Chris Wilson37811fc2010-08-25 22:45:57 +01001841
Daniel Vetter4520f532013-10-09 09:18:51 +02001842#ifdef CONFIG_DRM_I915_FBDEV
1843 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson37811fc2010-08-25 22:45:57 +01001844
1845 ifbdev = dev_priv->fbdev;
1846 fb = to_intel_framebuffer(ifbdev->helper.fb);
1847
Tvrtko Ursulinc1ca5062015-02-10 17:16:07 +00001848 seq_printf(m, "fbcon size: %d x %d, depth %d, %d bpp, modifier 0x%llx, refcount %d, obj ",
Chris Wilson37811fc2010-08-25 22:45:57 +01001849 fb->base.width,
1850 fb->base.height,
1851 fb->base.depth,
Daniel Vetter623f9782012-12-11 16:21:38 +01001852 fb->base.bits_per_pixel,
Tvrtko Ursulinc1ca5062015-02-10 17:16:07 +00001853 fb->base.modifier[0],
Daniel Vetter623f9782012-12-11 16:21:38 +01001854 atomic_read(&fb->base.refcount.refcount));
Chris Wilson05394f32010-11-08 19:18:58 +00001855 describe_obj(m, fb->obj);
Damien Lespiau267f0c92013-06-24 22:59:48 +01001856 seq_putc(m, '\n');
Daniel Vetter4520f532013-10-09 09:18:51 +02001857#endif
Chris Wilson37811fc2010-08-25 22:45:57 +01001858
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001859 mutex_lock(&dev->mode_config.fb_lock);
Chris Wilson37811fc2010-08-25 22:45:57 +01001860 list_for_each_entry(fb, &dev->mode_config.fb_list, base.head) {
Daniel Vetter131a56d2013-10-17 14:35:31 +02001861 if (ifbdev && &fb->base == ifbdev->helper.fb)
Chris Wilson37811fc2010-08-25 22:45:57 +01001862 continue;
1863
Tvrtko Ursulinc1ca5062015-02-10 17:16:07 +00001864 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 +01001865 fb->base.width,
1866 fb->base.height,
1867 fb->base.depth,
Daniel Vetter623f9782012-12-11 16:21:38 +01001868 fb->base.bits_per_pixel,
Tvrtko Ursulinc1ca5062015-02-10 17:16:07 +00001869 fb->base.modifier[0],
Daniel Vetter623f9782012-12-11 16:21:38 +01001870 atomic_read(&fb->base.refcount.refcount));
Chris Wilson05394f32010-11-08 19:18:58 +00001871 describe_obj(m, fb->obj);
Damien Lespiau267f0c92013-06-24 22:59:48 +01001872 seq_putc(m, '\n');
Chris Wilson37811fc2010-08-25 22:45:57 +01001873 }
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001874 mutex_unlock(&dev->mode_config.fb_lock);
Chris Wilson37811fc2010-08-25 22:45:57 +01001875
1876 return 0;
1877}
1878
Oscar Mateoc9fe99b2014-07-24 17:04:46 +01001879static void describe_ctx_ringbuf(struct seq_file *m,
1880 struct intel_ringbuffer *ringbuf)
1881{
1882 seq_printf(m, " (ringbuffer, space: %d, head: %u, tail: %u, last head: %d)",
1883 ringbuf->space, ringbuf->head, ringbuf->tail,
1884 ringbuf->last_retired_head);
1885}
1886
Ben Widawskye76d3632011-03-19 18:14:29 -07001887static int i915_context_status(struct seq_file *m, void *unused)
1888{
Damien Lespiau9f25d002014-05-13 15:30:28 +01001889 struct drm_info_node *node = m->private;
Ben Widawskye76d3632011-03-19 18:14:29 -07001890 struct drm_device *dev = node->minor->dev;
Jani Nikulae277a1f2014-03-31 14:27:14 +03001891 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001892 struct intel_engine_cs *ring;
Oscar Mateo273497e2014-05-22 14:13:37 +01001893 struct intel_context *ctx;
Ben Widawskya168c292013-02-14 15:05:12 -08001894 int ret, i;
Ben Widawskye76d3632011-03-19 18:14:29 -07001895
Daniel Vetterf3d28872014-05-29 23:23:08 +02001896 ret = mutex_lock_interruptible(&dev->struct_mutex);
Ben Widawskye76d3632011-03-19 18:14:29 -07001897 if (ret)
1898 return ret;
1899
Ben Widawskya33afea2013-09-17 21:12:45 -07001900 list_for_each_entry(ctx, &dev_priv->context_list, link) {
Oscar Mateoc9fe99b2014-07-24 17:04:46 +01001901 if (!i915.enable_execlists &&
1902 ctx->legacy_hw_ctx.rcs_state == NULL)
Chris Wilsonb77f6992014-04-30 08:30:00 +01001903 continue;
1904
Ben Widawskya33afea2013-09-17 21:12:45 -07001905 seq_puts(m, "HW context ");
Ben Widawsky3ccfd192013-09-18 19:03:18 -07001906 describe_ctx(m, ctx);
Oscar Mateoc9fe99b2014-07-24 17:04:46 +01001907 for_each_ring(ring, dev_priv, i) {
Ben Widawskya33afea2013-09-17 21:12:45 -07001908 if (ring->default_context == ctx)
Oscar Mateoc9fe99b2014-07-24 17:04:46 +01001909 seq_printf(m, "(default context %s) ",
1910 ring->name);
1911 }
Ben Widawskya33afea2013-09-17 21:12:45 -07001912
Oscar Mateoc9fe99b2014-07-24 17:04:46 +01001913 if (i915.enable_execlists) {
1914 seq_putc(m, '\n');
1915 for_each_ring(ring, dev_priv, i) {
1916 struct drm_i915_gem_object *ctx_obj =
1917 ctx->engine[i].state;
1918 struct intel_ringbuffer *ringbuf =
1919 ctx->engine[i].ringbuf;
1920
1921 seq_printf(m, "%s: ", ring->name);
1922 if (ctx_obj)
1923 describe_obj(m, ctx_obj);
1924 if (ringbuf)
1925 describe_ctx_ringbuf(m, ringbuf);
1926 seq_putc(m, '\n');
1927 }
1928 } else {
1929 describe_obj(m, ctx->legacy_hw_ctx.rcs_state);
1930 }
1931
Ben Widawskya33afea2013-09-17 21:12:45 -07001932 seq_putc(m, '\n');
Ben Widawskya168c292013-02-14 15:05:12 -08001933 }
1934
Daniel Vetterf3d28872014-05-29 23:23:08 +02001935 mutex_unlock(&dev->struct_mutex);
Ben Widawskye76d3632011-03-19 18:14:29 -07001936
1937 return 0;
1938}
1939
Thomas Daniel064ca1d2014-12-02 13:21:18 +00001940static void i915_dump_lrc_obj(struct seq_file *m,
1941 struct intel_engine_cs *ring,
1942 struct drm_i915_gem_object *ctx_obj)
1943{
1944 struct page *page;
1945 uint32_t *reg_state;
1946 int j;
1947 unsigned long ggtt_offset = 0;
1948
1949 if (ctx_obj == NULL) {
1950 seq_printf(m, "Context on %s with no gem object\n",
1951 ring->name);
1952 return;
1953 }
1954
1955 seq_printf(m, "CONTEXT: %s %u\n", ring->name,
1956 intel_execlists_ctx_id(ctx_obj));
1957
1958 if (!i915_gem_obj_ggtt_bound(ctx_obj))
1959 seq_puts(m, "\tNot bound in GGTT\n");
1960 else
1961 ggtt_offset = i915_gem_obj_ggtt_offset(ctx_obj);
1962
1963 if (i915_gem_object_get_pages(ctx_obj)) {
1964 seq_puts(m, "\tFailed to get pages for context object\n");
1965 return;
1966 }
1967
1968 page = i915_gem_object_get_page(ctx_obj, 1);
1969 if (!WARN_ON(page == NULL)) {
1970 reg_state = kmap_atomic(page);
1971
1972 for (j = 0; j < 0x600 / sizeof(u32) / 4; j += 4) {
1973 seq_printf(m, "\t[0x%08lx] 0x%08x 0x%08x 0x%08x 0x%08x\n",
1974 ggtt_offset + 4096 + (j * 4),
1975 reg_state[j], reg_state[j + 1],
1976 reg_state[j + 2], reg_state[j + 3]);
1977 }
1978 kunmap_atomic(reg_state);
1979 }
1980
1981 seq_putc(m, '\n');
1982}
1983
Ben Widawskyc0ab1ae2014-08-07 13:24:26 +01001984static int i915_dump_lrc(struct seq_file *m, void *unused)
1985{
1986 struct drm_info_node *node = (struct drm_info_node *) m->private;
1987 struct drm_device *dev = node->minor->dev;
1988 struct drm_i915_private *dev_priv = dev->dev_private;
1989 struct intel_engine_cs *ring;
1990 struct intel_context *ctx;
1991 int ret, i;
1992
1993 if (!i915.enable_execlists) {
1994 seq_printf(m, "Logical Ring Contexts are disabled\n");
1995 return 0;
1996 }
1997
1998 ret = mutex_lock_interruptible(&dev->struct_mutex);
1999 if (ret)
2000 return ret;
2001
2002 list_for_each_entry(ctx, &dev_priv->context_list, link) {
2003 for_each_ring(ring, dev_priv, i) {
Thomas Daniel064ca1d2014-12-02 13:21:18 +00002004 if (ring->default_context != ctx)
2005 i915_dump_lrc_obj(m, ring,
2006 ctx->engine[i].state);
Ben Widawskyc0ab1ae2014-08-07 13:24:26 +01002007 }
2008 }
2009
2010 mutex_unlock(&dev->struct_mutex);
2011
2012 return 0;
2013}
2014
Oscar Mateo4ba70e42014-08-07 13:23:20 +01002015static int i915_execlists(struct seq_file *m, void *data)
2016{
2017 struct drm_info_node *node = (struct drm_info_node *)m->private;
2018 struct drm_device *dev = node->minor->dev;
2019 struct drm_i915_private *dev_priv = dev->dev_private;
2020 struct intel_engine_cs *ring;
2021 u32 status_pointer;
2022 u8 read_pointer;
2023 u8 write_pointer;
2024 u32 status;
2025 u32 ctx_id;
2026 struct list_head *cursor;
2027 int ring_id, i;
2028 int ret;
2029
2030 if (!i915.enable_execlists) {
2031 seq_puts(m, "Logical Ring Contexts are disabled\n");
2032 return 0;
2033 }
2034
2035 ret = mutex_lock_interruptible(&dev->struct_mutex);
2036 if (ret)
2037 return ret;
2038
Michel Thierryfc0412e2014-10-16 16:13:38 +01002039 intel_runtime_pm_get(dev_priv);
2040
Oscar Mateo4ba70e42014-08-07 13:23:20 +01002041 for_each_ring(ring, dev_priv, ring_id) {
Nick Hoath6d3d8272015-01-15 13:10:39 +00002042 struct drm_i915_gem_request *head_req = NULL;
Oscar Mateo4ba70e42014-08-07 13:23:20 +01002043 int count = 0;
2044 unsigned long flags;
2045
2046 seq_printf(m, "%s\n", ring->name);
2047
2048 status = I915_READ(RING_EXECLIST_STATUS(ring));
2049 ctx_id = I915_READ(RING_EXECLIST_STATUS(ring) + 4);
2050 seq_printf(m, "\tExeclist status: 0x%08X, context: %u\n",
2051 status, ctx_id);
2052
2053 status_pointer = I915_READ(RING_CONTEXT_STATUS_PTR(ring));
2054 seq_printf(m, "\tStatus pointer: 0x%08X\n", status_pointer);
2055
2056 read_pointer = ring->next_context_status_buffer;
2057 write_pointer = status_pointer & 0x07;
2058 if (read_pointer > write_pointer)
2059 write_pointer += 6;
2060 seq_printf(m, "\tRead pointer: 0x%08X, write pointer 0x%08X\n",
2061 read_pointer, write_pointer);
2062
2063 for (i = 0; i < 6; i++) {
2064 status = I915_READ(RING_CONTEXT_STATUS_BUF(ring) + 8*i);
2065 ctx_id = I915_READ(RING_CONTEXT_STATUS_BUF(ring) + 8*i + 4);
2066
2067 seq_printf(m, "\tStatus buffer %d: 0x%08X, context: %u\n",
2068 i, status, ctx_id);
2069 }
2070
2071 spin_lock_irqsave(&ring->execlist_lock, flags);
2072 list_for_each(cursor, &ring->execlist_queue)
2073 count++;
2074 head_req = list_first_entry_or_null(&ring->execlist_queue,
Nick Hoath6d3d8272015-01-15 13:10:39 +00002075 struct drm_i915_gem_request, execlist_link);
Oscar Mateo4ba70e42014-08-07 13:23:20 +01002076 spin_unlock_irqrestore(&ring->execlist_lock, flags);
2077
2078 seq_printf(m, "\t%d requests in queue\n", count);
2079 if (head_req) {
2080 struct drm_i915_gem_object *ctx_obj;
2081
Nick Hoath6d3d8272015-01-15 13:10:39 +00002082 ctx_obj = head_req->ctx->engine[ring_id].state;
Oscar Mateo4ba70e42014-08-07 13:23:20 +01002083 seq_printf(m, "\tHead request id: %u\n",
2084 intel_execlists_ctx_id(ctx_obj));
2085 seq_printf(m, "\tHead request tail: %u\n",
Nick Hoath6d3d8272015-01-15 13:10:39 +00002086 head_req->tail);
Oscar Mateo4ba70e42014-08-07 13:23:20 +01002087 }
2088
2089 seq_putc(m, '\n');
2090 }
2091
Michel Thierryfc0412e2014-10-16 16:13:38 +01002092 intel_runtime_pm_put(dev_priv);
Oscar Mateo4ba70e42014-08-07 13:23:20 +01002093 mutex_unlock(&dev->struct_mutex);
2094
2095 return 0;
2096}
2097
Daniel Vetterea16a3c2011-12-14 13:57:16 +01002098static const char *swizzle_string(unsigned swizzle)
2099{
Damien Lespiauaee56cf2013-06-24 22:59:49 +01002100 switch (swizzle) {
Daniel Vetterea16a3c2011-12-14 13:57:16 +01002101 case I915_BIT_6_SWIZZLE_NONE:
2102 return "none";
2103 case I915_BIT_6_SWIZZLE_9:
2104 return "bit9";
2105 case I915_BIT_6_SWIZZLE_9_10:
2106 return "bit9/bit10";
2107 case I915_BIT_6_SWIZZLE_9_11:
2108 return "bit9/bit11";
2109 case I915_BIT_6_SWIZZLE_9_10_11:
2110 return "bit9/bit10/bit11";
2111 case I915_BIT_6_SWIZZLE_9_17:
2112 return "bit9/bit17";
2113 case I915_BIT_6_SWIZZLE_9_10_17:
2114 return "bit9/bit10/bit17";
2115 case I915_BIT_6_SWIZZLE_UNKNOWN:
Masanari Iida8a168ca2012-12-29 02:00:09 +09002116 return "unknown";
Daniel Vetterea16a3c2011-12-14 13:57:16 +01002117 }
2118
2119 return "bug";
2120}
2121
2122static int i915_swizzle_info(struct seq_file *m, void *data)
2123{
Damien Lespiau9f25d002014-05-13 15:30:28 +01002124 struct drm_info_node *node = m->private;
Daniel Vetterea16a3c2011-12-14 13:57:16 +01002125 struct drm_device *dev = node->minor->dev;
2126 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter22bcfc62012-08-09 15:07:02 +02002127 int ret;
Daniel Vetterea16a3c2011-12-14 13:57:16 +01002128
Daniel Vetter22bcfc62012-08-09 15:07:02 +02002129 ret = mutex_lock_interruptible(&dev->struct_mutex);
2130 if (ret)
2131 return ret;
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02002132 intel_runtime_pm_get(dev_priv);
Daniel Vetter22bcfc62012-08-09 15:07:02 +02002133
Daniel Vetterea16a3c2011-12-14 13:57:16 +01002134 seq_printf(m, "bit6 swizzle for X-tiling = %s\n",
2135 swizzle_string(dev_priv->mm.bit_6_swizzle_x));
2136 seq_printf(m, "bit6 swizzle for Y-tiling = %s\n",
2137 swizzle_string(dev_priv->mm.bit_6_swizzle_y));
2138
2139 if (IS_GEN3(dev) || IS_GEN4(dev)) {
2140 seq_printf(m, "DDC = 0x%08x\n",
2141 I915_READ(DCC));
Daniel Vetter656bfa32014-11-20 09:26:30 +01002142 seq_printf(m, "DDC2 = 0x%08x\n",
2143 I915_READ(DCC2));
Daniel Vetterea16a3c2011-12-14 13:57:16 +01002144 seq_printf(m, "C0DRB3 = 0x%04x\n",
2145 I915_READ16(C0DRB3));
2146 seq_printf(m, "C1DRB3 = 0x%04x\n",
2147 I915_READ16(C1DRB3));
Ben Widawsky9d3203e2013-11-02 21:07:14 -07002148 } else if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetter3fa7d232012-01-31 16:47:56 +01002149 seq_printf(m, "MAD_DIMM_C0 = 0x%08x\n",
2150 I915_READ(MAD_DIMM_C0));
2151 seq_printf(m, "MAD_DIMM_C1 = 0x%08x\n",
2152 I915_READ(MAD_DIMM_C1));
2153 seq_printf(m, "MAD_DIMM_C2 = 0x%08x\n",
2154 I915_READ(MAD_DIMM_C2));
2155 seq_printf(m, "TILECTL = 0x%08x\n",
2156 I915_READ(TILECTL));
Robert Beckett5907f5f2014-01-23 14:23:14 +00002157 if (INTEL_INFO(dev)->gen >= 8)
Ben Widawsky9d3203e2013-11-02 21:07:14 -07002158 seq_printf(m, "GAMTARBMODE = 0x%08x\n",
2159 I915_READ(GAMTARBMODE));
2160 else
2161 seq_printf(m, "ARB_MODE = 0x%08x\n",
2162 I915_READ(ARB_MODE));
Daniel Vetter3fa7d232012-01-31 16:47:56 +01002163 seq_printf(m, "DISP_ARB_CTL = 0x%08x\n",
2164 I915_READ(DISP_ARB_CTL));
Daniel Vetterea16a3c2011-12-14 13:57:16 +01002165 }
Daniel Vetter656bfa32014-11-20 09:26:30 +01002166
2167 if (dev_priv->quirks & QUIRK_PIN_SWIZZLED_PAGES)
2168 seq_puts(m, "L-shaped memory detected\n");
2169
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02002170 intel_runtime_pm_put(dev_priv);
Daniel Vetterea16a3c2011-12-14 13:57:16 +01002171 mutex_unlock(&dev->struct_mutex);
2172
2173 return 0;
2174}
2175
Ben Widawsky1c60fef2013-12-06 14:11:30 -08002176static int per_file_ctx(int id, void *ptr, void *data)
2177{
Oscar Mateo273497e2014-05-22 14:13:37 +01002178 struct intel_context *ctx = ptr;
Ben Widawsky1c60fef2013-12-06 14:11:30 -08002179 struct seq_file *m = data;
Daniel Vetterae6c4802014-08-06 15:04:53 +02002180 struct i915_hw_ppgtt *ppgtt = ctx->ppgtt;
2181
2182 if (!ppgtt) {
2183 seq_printf(m, " no ppgtt for context %d\n",
2184 ctx->user_handle);
2185 return 0;
2186 }
Ben Widawsky1c60fef2013-12-06 14:11:30 -08002187
Oscar Mateof83d6512014-05-22 14:13:38 +01002188 if (i915_gem_context_is_default(ctx))
2189 seq_puts(m, " default context:\n");
2190 else
Oscar Mateo821d66d2014-07-03 16:28:00 +01002191 seq_printf(m, " context %d:\n", ctx->user_handle);
Ben Widawsky1c60fef2013-12-06 14:11:30 -08002192 ppgtt->debug_dump(ppgtt, m);
2193
2194 return 0;
2195}
2196
Ben Widawsky77df6772013-11-02 21:07:30 -07002197static void gen8_ppgtt_info(struct seq_file *m, struct drm_device *dev)
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01002198{
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01002199 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002200 struct intel_engine_cs *ring;
Ben Widawsky77df6772013-11-02 21:07:30 -07002201 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
2202 int unused, i;
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01002203
Ben Widawsky77df6772013-11-02 21:07:30 -07002204 if (!ppgtt)
2205 return;
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01002206
Ben Widawsky77df6772013-11-02 21:07:30 -07002207 for_each_ring(ring, dev_priv, unused) {
2208 seq_printf(m, "%s\n", ring->name);
2209 for (i = 0; i < 4; i++) {
2210 u32 offset = 0x270 + i * 8;
2211 u64 pdp = I915_READ(ring->mmio_base + offset + 4);
2212 pdp <<= 32;
2213 pdp |= I915_READ(ring->mmio_base + offset);
Ville Syrjäläa2a5b152014-03-31 18:17:16 +03002214 seq_printf(m, "\tPDP%d 0x%016llx\n", i, pdp);
Ben Widawsky77df6772013-11-02 21:07:30 -07002215 }
2216 }
2217}
2218
2219static void gen6_ppgtt_info(struct seq_file *m, struct drm_device *dev)
2220{
2221 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002222 struct intel_engine_cs *ring;
Ben Widawsky1c60fef2013-12-06 14:11:30 -08002223 struct drm_file *file;
Ben Widawsky77df6772013-11-02 21:07:30 -07002224 int i;
2225
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01002226 if (INTEL_INFO(dev)->gen == 6)
2227 seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(GFX_MODE));
2228
Chris Wilsona2c7f6f2012-09-01 20:51:22 +01002229 for_each_ring(ring, dev_priv, i) {
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01002230 seq_printf(m, "%s\n", ring->name);
2231 if (INTEL_INFO(dev)->gen == 7)
2232 seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(RING_MODE_GEN7(ring)));
2233 seq_printf(m, "PP_DIR_BASE: 0x%08x\n", I915_READ(RING_PP_DIR_BASE(ring)));
2234 seq_printf(m, "PP_DIR_BASE_READ: 0x%08x\n", I915_READ(RING_PP_DIR_BASE_READ(ring)));
2235 seq_printf(m, "PP_DIR_DCLV: 0x%08x\n", I915_READ(RING_PP_DIR_DCLV(ring)));
2236 }
2237 if (dev_priv->mm.aliasing_ppgtt) {
2238 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
2239
Damien Lespiau267f0c92013-06-24 22:59:48 +01002240 seq_puts(m, "aliasing PPGTT:\n");
Mika Kuoppala44159dd2015-06-25 18:35:07 +03002241 seq_printf(m, "pd gtt offset: 0x%08x\n", ppgtt->pd.base.ggtt_offset);
Ben Widawsky1c60fef2013-12-06 14:11:30 -08002242
Ben Widawsky87d60b62013-12-06 14:11:29 -08002243 ppgtt->debug_dump(ppgtt, m);
Daniel Vetterae6c4802014-08-06 15:04:53 +02002244 }
Ben Widawsky1c60fef2013-12-06 14:11:30 -08002245
2246 list_for_each_entry_reverse(file, &dev->filelist, lhead) {
2247 struct drm_i915_file_private *file_priv = file->driver_priv;
Ben Widawsky1c60fef2013-12-06 14:11:30 -08002248
Ben Widawsky1c60fef2013-12-06 14:11:30 -08002249 seq_printf(m, "proc: %s\n",
2250 get_pid_task(file->pid, PIDTYPE_PID)->comm);
Ben Widawsky1c60fef2013-12-06 14:11:30 -08002251 idr_for_each(&file_priv->context_idr, per_file_ctx, m);
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01002252 }
2253 seq_printf(m, "ECOCHK: 0x%08x\n", I915_READ(GAM_ECOCHK));
Ben Widawsky77df6772013-11-02 21:07:30 -07002254}
2255
2256static int i915_ppgtt_info(struct seq_file *m, void *data)
2257{
Damien Lespiau9f25d002014-05-13 15:30:28 +01002258 struct drm_info_node *node = m->private;
Ben Widawsky77df6772013-11-02 21:07:30 -07002259 struct drm_device *dev = node->minor->dev;
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02002260 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky77df6772013-11-02 21:07:30 -07002261
2262 int ret = mutex_lock_interruptible(&dev->struct_mutex);
2263 if (ret)
2264 return ret;
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02002265 intel_runtime_pm_get(dev_priv);
Ben Widawsky77df6772013-11-02 21:07:30 -07002266
2267 if (INTEL_INFO(dev)->gen >= 8)
2268 gen8_ppgtt_info(m, dev);
2269 else if (INTEL_INFO(dev)->gen >= 6)
2270 gen6_ppgtt_info(m, dev);
2271
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02002272 intel_runtime_pm_put(dev_priv);
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01002273 mutex_unlock(&dev->struct_mutex);
2274
2275 return 0;
2276}
2277
Chris Wilsonf5a4c672015-04-27 13:41:23 +01002278static int count_irq_waiters(struct drm_i915_private *i915)
2279{
2280 struct intel_engine_cs *ring;
2281 int count = 0;
2282 int i;
2283
2284 for_each_ring(ring, i915, i)
2285 count += ring->irq_refcount;
2286
2287 return count;
2288}
2289
Chris Wilson1854d5c2015-04-07 16:20:32 +01002290static int i915_rps_boost_info(struct seq_file *m, void *data)
2291{
2292 struct drm_info_node *node = m->private;
2293 struct drm_device *dev = node->minor->dev;
2294 struct drm_i915_private *dev_priv = dev->dev_private;
2295 struct drm_file *file;
Chris Wilson1854d5c2015-04-07 16:20:32 +01002296
Chris Wilsonf5a4c672015-04-27 13:41:23 +01002297 seq_printf(m, "RPS enabled? %d\n", dev_priv->rps.enabled);
2298 seq_printf(m, "GPU busy? %d\n", dev_priv->mm.busy);
2299 seq_printf(m, "CPU waiting? %d\n", count_irq_waiters(dev_priv));
2300 seq_printf(m, "Frequency requested %d; min hard:%d, soft:%d; max soft:%d, hard:%d\n",
2301 intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq),
2302 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
2303 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq_softlimit),
2304 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq_softlimit),
2305 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq));
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 Wilson2e1b8732015-04-27 13:41:22 +01002320 seq_printf(m, "Semaphore boosts: %d%s\n",
2321 dev_priv->rps.semaphores.boosts,
2322 list_empty(&dev_priv->rps.semaphores.link) ? "" : ", active");
2323 seq_printf(m, "MMIO flip boosts: %d%s\n",
2324 dev_priv->rps.mmioflips.boosts,
2325 list_empty(&dev_priv->rps.mmioflips.link) ? "" : ", active");
Chris Wilson1854d5c2015-04-07 16:20:32 +01002326 seq_printf(m, "Kernel boosts: %d\n", dev_priv->rps.boosts);
Chris Wilson8d3afd72015-05-21 21:01:47 +01002327 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01002328
Chris Wilson8d3afd72015-05-21 21:01:47 +01002329 return 0;
Chris Wilson1854d5c2015-04-07 16:20:32 +01002330}
2331
Ben Widawsky63573eb2013-07-04 11:02:07 -07002332static int i915_llc(struct seq_file *m, void *data)
2333{
Damien Lespiau9f25d002014-05-13 15:30:28 +01002334 struct drm_info_node *node = m->private;
Ben Widawsky63573eb2013-07-04 11:02:07 -07002335 struct drm_device *dev = node->minor->dev;
2336 struct drm_i915_private *dev_priv = dev->dev_private;
2337
2338 /* Size calculation for LLC is a bit of a pain. Ignore for now. */
2339 seq_printf(m, "LLC: %s\n", yesno(HAS_LLC(dev)));
2340 seq_printf(m, "eLLC: %zuMB\n", dev_priv->ellc_size);
2341
2342 return 0;
2343}
2344
Rodrigo Vivie91fd8c2013-07-11 18:44:59 -03002345static int i915_edp_psr_status(struct seq_file *m, void *data)
2346{
2347 struct drm_info_node *node = m->private;
2348 struct drm_device *dev = node->minor->dev;
2349 struct drm_i915_private *dev_priv = dev->dev_private;
Rodrigo Vivia031d702013-10-03 16:15:06 -03002350 u32 psrperf = 0;
Rodrigo Vivia6cbdb82014-11-14 08:52:40 -08002351 u32 stat[3];
2352 enum pipe pipe;
Rodrigo Vivia031d702013-10-03 16:15:06 -03002353 bool enabled = false;
Rodrigo Vivie91fd8c2013-07-11 18:44:59 -03002354
Damien Lespiau3553a8e2015-03-09 14:17:58 +00002355 if (!HAS_PSR(dev)) {
2356 seq_puts(m, "PSR not supported\n");
2357 return 0;
2358 }
2359
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02002360 intel_runtime_pm_get(dev_priv);
2361
Daniel Vetterfa128fa2014-07-11 10:30:17 -07002362 mutex_lock(&dev_priv->psr.lock);
Rodrigo Vivia031d702013-10-03 16:15:06 -03002363 seq_printf(m, "Sink_Support: %s\n", yesno(dev_priv->psr.sink_support));
2364 seq_printf(m, "Source_OK: %s\n", yesno(dev_priv->psr.source_ok));
Daniel Vetter2807cf62014-07-11 10:30:11 -07002365 seq_printf(m, "Enabled: %s\n", yesno((bool)dev_priv->psr.enabled));
Rodrigo Vivi5755c782014-06-12 10:16:45 -07002366 seq_printf(m, "Active: %s\n", yesno(dev_priv->psr.active));
Daniel Vetterfa128fa2014-07-11 10:30:17 -07002367 seq_printf(m, "Busy frontbuffer bits: 0x%03x\n",
2368 dev_priv->psr.busy_frontbuffer_bits);
2369 seq_printf(m, "Re-enable work scheduled: %s\n",
2370 yesno(work_busy(&dev_priv->psr.work.work)));
Rodrigo Vivie91fd8c2013-07-11 18:44:59 -03002371
Damien Lespiau3553a8e2015-03-09 14:17:58 +00002372 if (HAS_DDI(dev))
2373 enabled = I915_READ(EDP_PSR_CTL(dev)) & EDP_PSR_ENABLE;
2374 else {
2375 for_each_pipe(dev_priv, pipe) {
2376 stat[pipe] = I915_READ(VLV_PSRSTAT(pipe)) &
2377 VLV_EDP_PSR_CURR_STATE_MASK;
2378 if ((stat[pipe] == VLV_EDP_PSR_ACTIVE_NORFB_UP) ||
2379 (stat[pipe] == VLV_EDP_PSR_ACTIVE_SF_UPDATE))
2380 enabled = true;
Rodrigo Vivia6cbdb82014-11-14 08:52:40 -08002381 }
2382 }
2383 seq_printf(m, "HW Enabled & Active bit: %s", yesno(enabled));
Rodrigo Vivie91fd8c2013-07-11 18:44:59 -03002384
Rodrigo Vivia6cbdb82014-11-14 08:52:40 -08002385 if (!HAS_DDI(dev))
2386 for_each_pipe(dev_priv, pipe) {
2387 if ((stat[pipe] == VLV_EDP_PSR_ACTIVE_NORFB_UP) ||
2388 (stat[pipe] == VLV_EDP_PSR_ACTIVE_SF_UPDATE))
2389 seq_printf(m, " pipe %c", pipe_name(pipe));
2390 }
2391 seq_puts(m, "\n");
2392
2393 /* CHV PSR has no kind of performance counter */
Damien Lespiau3553a8e2015-03-09 14:17:58 +00002394 if (HAS_DDI(dev)) {
Rodrigo Vivia031d702013-10-03 16:15:06 -03002395 psrperf = I915_READ(EDP_PSR_PERF_CNT(dev)) &
2396 EDP_PSR_PERF_CNT_MASK;
Rodrigo Vivia6cbdb82014-11-14 08:52:40 -08002397
2398 seq_printf(m, "Performance_Counter: %u\n", psrperf);
2399 }
Daniel Vetterfa128fa2014-07-11 10:30:17 -07002400 mutex_unlock(&dev_priv->psr.lock);
Rodrigo Vivie91fd8c2013-07-11 18:44:59 -03002401
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02002402 intel_runtime_pm_put(dev_priv);
Rodrigo Vivie91fd8c2013-07-11 18:44:59 -03002403 return 0;
2404}
2405
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02002406static int i915_sink_crc(struct seq_file *m, void *data)
2407{
2408 struct drm_info_node *node = m->private;
2409 struct drm_device *dev = node->minor->dev;
2410 struct intel_encoder *encoder;
2411 struct intel_connector *connector;
2412 struct intel_dp *intel_dp = NULL;
2413 int ret;
2414 u8 crc[6];
2415
2416 drm_modeset_lock_all(dev);
Rodrigo Viviaca5e362015-03-13 16:13:59 -07002417 for_each_intel_connector(dev, connector) {
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02002418
2419 if (connector->base.dpms != DRM_MODE_DPMS_ON)
2420 continue;
2421
Paulo Zanonib6ae3c72014-02-13 17:51:33 -02002422 if (!connector->base.encoder)
2423 continue;
2424
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02002425 encoder = to_intel_encoder(connector->base.encoder);
2426 if (encoder->type != INTEL_OUTPUT_EDP)
2427 continue;
2428
2429 intel_dp = enc_to_intel_dp(&encoder->base);
2430
2431 ret = intel_dp_sink_crc(intel_dp, crc);
2432 if (ret)
2433 goto out;
2434
2435 seq_printf(m, "%02x%02x%02x%02x%02x%02x\n",
2436 crc[0], crc[1], crc[2],
2437 crc[3], crc[4], crc[5]);
2438 goto out;
2439 }
2440 ret = -ENODEV;
2441out:
2442 drm_modeset_unlock_all(dev);
2443 return ret;
2444}
2445
Jesse Barnesec013e72013-08-20 10:29:23 +01002446static int i915_energy_uJ(struct seq_file *m, void *data)
2447{
2448 struct drm_info_node *node = m->private;
2449 struct drm_device *dev = node->minor->dev;
2450 struct drm_i915_private *dev_priv = dev->dev_private;
2451 u64 power;
2452 u32 units;
2453
2454 if (INTEL_INFO(dev)->gen < 6)
2455 return -ENODEV;
2456
Paulo Zanoni36623ef2014-02-21 13:52:23 -03002457 intel_runtime_pm_get(dev_priv);
2458
Jesse Barnesec013e72013-08-20 10:29:23 +01002459 rdmsrl(MSR_RAPL_POWER_UNIT, power);
2460 power = (power & 0x1f00) >> 8;
2461 units = 1000000 / (1 << power); /* convert to uJ */
2462 power = I915_READ(MCH_SECP_NRG_STTS);
2463 power *= units;
2464
Paulo Zanoni36623ef2014-02-21 13:52:23 -03002465 intel_runtime_pm_put(dev_priv);
2466
Jesse Barnesec013e72013-08-20 10:29:23 +01002467 seq_printf(m, "%llu", (long long unsigned)power);
Paulo Zanoni371db662013-08-19 13:18:10 -03002468
2469 return 0;
2470}
2471
Damien Lespiau6455c872015-06-04 18:23:57 +01002472static int i915_runtime_pm_status(struct seq_file *m, void *unused)
Paulo Zanoni371db662013-08-19 13:18:10 -03002473{
Damien Lespiau9f25d002014-05-13 15:30:28 +01002474 struct drm_info_node *node = m->private;
Paulo Zanoni371db662013-08-19 13:18:10 -03002475 struct drm_device *dev = node->minor->dev;
2476 struct drm_i915_private *dev_priv = dev->dev_private;
2477
Damien Lespiau6455c872015-06-04 18:23:57 +01002478 if (!HAS_RUNTIME_PM(dev)) {
Paulo Zanoni371db662013-08-19 13:18:10 -03002479 seq_puts(m, "not supported\n");
2480 return 0;
2481 }
2482
Paulo Zanoni86c4ec02014-02-21 13:52:24 -03002483 seq_printf(m, "GPU idle: %s\n", yesno(!dev_priv->mm.busy));
Paulo Zanoni371db662013-08-19 13:18:10 -03002484 seq_printf(m, "IRQs disabled: %s\n",
Jesse Barnes9df7575f2014-06-20 09:29:20 -07002485 yesno(!intel_irqs_enabled(dev_priv)));
Chris Wilson0d804182015-06-15 12:52:28 +01002486#ifdef CONFIG_PM
Damien Lespiaua6aaec82015-06-04 18:23:58 +01002487 seq_printf(m, "Usage count: %d\n",
2488 atomic_read(&dev->dev->power.usage_count));
Chris Wilson0d804182015-06-15 12:52:28 +01002489#else
2490 seq_printf(m, "Device Power Management (CONFIG_PM) disabled\n");
2491#endif
Paulo Zanoni371db662013-08-19 13:18:10 -03002492
Jesse Barnesec013e72013-08-20 10:29:23 +01002493 return 0;
2494}
2495
Imre Deak1da51582013-11-25 17:15:35 +02002496static const char *power_domain_str(enum intel_display_power_domain domain)
2497{
2498 switch (domain) {
2499 case POWER_DOMAIN_PIPE_A:
2500 return "PIPE_A";
2501 case POWER_DOMAIN_PIPE_B:
2502 return "PIPE_B";
2503 case POWER_DOMAIN_PIPE_C:
2504 return "PIPE_C";
2505 case POWER_DOMAIN_PIPE_A_PANEL_FITTER:
2506 return "PIPE_A_PANEL_FITTER";
2507 case POWER_DOMAIN_PIPE_B_PANEL_FITTER:
2508 return "PIPE_B_PANEL_FITTER";
2509 case POWER_DOMAIN_PIPE_C_PANEL_FITTER:
2510 return "PIPE_C_PANEL_FITTER";
2511 case POWER_DOMAIN_TRANSCODER_A:
2512 return "TRANSCODER_A";
2513 case POWER_DOMAIN_TRANSCODER_B:
2514 return "TRANSCODER_B";
2515 case POWER_DOMAIN_TRANSCODER_C:
2516 return "TRANSCODER_C";
2517 case POWER_DOMAIN_TRANSCODER_EDP:
2518 return "TRANSCODER_EDP";
Imre Deak319be8a2014-03-04 19:22:57 +02002519 case POWER_DOMAIN_PORT_DDI_A_2_LANES:
2520 return "PORT_DDI_A_2_LANES";
2521 case POWER_DOMAIN_PORT_DDI_A_4_LANES:
2522 return "PORT_DDI_A_4_LANES";
2523 case POWER_DOMAIN_PORT_DDI_B_2_LANES:
2524 return "PORT_DDI_B_2_LANES";
2525 case POWER_DOMAIN_PORT_DDI_B_4_LANES:
2526 return "PORT_DDI_B_4_LANES";
2527 case POWER_DOMAIN_PORT_DDI_C_2_LANES:
2528 return "PORT_DDI_C_2_LANES";
2529 case POWER_DOMAIN_PORT_DDI_C_4_LANES:
2530 return "PORT_DDI_C_4_LANES";
2531 case POWER_DOMAIN_PORT_DDI_D_2_LANES:
2532 return "PORT_DDI_D_2_LANES";
2533 case POWER_DOMAIN_PORT_DDI_D_4_LANES:
2534 return "PORT_DDI_D_4_LANES";
2535 case POWER_DOMAIN_PORT_DSI:
2536 return "PORT_DSI";
2537 case POWER_DOMAIN_PORT_CRT:
2538 return "PORT_CRT";
2539 case POWER_DOMAIN_PORT_OTHER:
2540 return "PORT_OTHER";
Imre Deak1da51582013-11-25 17:15:35 +02002541 case POWER_DOMAIN_VGA:
2542 return "VGA";
2543 case POWER_DOMAIN_AUDIO:
2544 return "AUDIO";
Paulo Zanonibd2bb1b2014-07-04 11:27:38 -03002545 case POWER_DOMAIN_PLLS:
2546 return "PLLS";
Satheeshakrishna M14071212015-01-16 15:57:51 +00002547 case POWER_DOMAIN_AUX_A:
2548 return "AUX_A";
2549 case POWER_DOMAIN_AUX_B:
2550 return "AUX_B";
2551 case POWER_DOMAIN_AUX_C:
2552 return "AUX_C";
2553 case POWER_DOMAIN_AUX_D:
2554 return "AUX_D";
Imre Deak1da51582013-11-25 17:15:35 +02002555 case POWER_DOMAIN_INIT:
2556 return "INIT";
2557 default:
Daniel Vetter5f77eeb2014-12-08 16:40:10 +01002558 MISSING_CASE(domain);
Imre Deak1da51582013-11-25 17:15:35 +02002559 return "?";
2560 }
2561}
2562
2563static int i915_power_domain_info(struct seq_file *m, void *unused)
2564{
Damien Lespiau9f25d002014-05-13 15:30:28 +01002565 struct drm_info_node *node = m->private;
Imre Deak1da51582013-11-25 17:15:35 +02002566 struct drm_device *dev = node->minor->dev;
2567 struct drm_i915_private *dev_priv = dev->dev_private;
2568 struct i915_power_domains *power_domains = &dev_priv->power_domains;
2569 int i;
2570
2571 mutex_lock(&power_domains->lock);
2572
2573 seq_printf(m, "%-25s %s\n", "Power well/domain", "Use count");
2574 for (i = 0; i < power_domains->power_well_count; i++) {
2575 struct i915_power_well *power_well;
2576 enum intel_display_power_domain power_domain;
2577
2578 power_well = &power_domains->power_wells[i];
2579 seq_printf(m, "%-25s %d\n", power_well->name,
2580 power_well->count);
2581
2582 for (power_domain = 0; power_domain < POWER_DOMAIN_NUM;
2583 power_domain++) {
2584 if (!(BIT(power_domain) & power_well->domains))
2585 continue;
2586
2587 seq_printf(m, " %-23s %d\n",
2588 power_domain_str(power_domain),
2589 power_domains->domain_use_count[power_domain]);
2590 }
2591 }
2592
2593 mutex_unlock(&power_domains->lock);
2594
2595 return 0;
2596}
2597
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002598static void intel_seq_print_mode(struct seq_file *m, int tabs,
2599 struct drm_display_mode *mode)
2600{
2601 int i;
2602
2603 for (i = 0; i < tabs; i++)
2604 seq_putc(m, '\t');
2605
2606 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",
2607 mode->base.id, mode->name,
2608 mode->vrefresh, mode->clock,
2609 mode->hdisplay, mode->hsync_start,
2610 mode->hsync_end, mode->htotal,
2611 mode->vdisplay, mode->vsync_start,
2612 mode->vsync_end, mode->vtotal,
2613 mode->type, mode->flags);
2614}
2615
2616static void intel_encoder_info(struct seq_file *m,
2617 struct intel_crtc *intel_crtc,
2618 struct intel_encoder *intel_encoder)
2619{
Damien Lespiau9f25d002014-05-13 15:30:28 +01002620 struct drm_info_node *node = m->private;
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002621 struct drm_device *dev = node->minor->dev;
2622 struct drm_crtc *crtc = &intel_crtc->base;
2623 struct intel_connector *intel_connector;
2624 struct drm_encoder *encoder;
2625
2626 encoder = &intel_encoder->base;
2627 seq_printf(m, "\tencoder %d: type: %s, connectors:\n",
Jani Nikula8e329a02014-06-03 14:56:21 +03002628 encoder->base.id, encoder->name);
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002629 for_each_connector_on_encoder(dev, encoder, intel_connector) {
2630 struct drm_connector *connector = &intel_connector->base;
2631 seq_printf(m, "\t\tconnector %d: type: %s, status: %s",
2632 connector->base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03002633 connector->name,
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002634 drm_get_connector_status_name(connector->status));
2635 if (connector->status == connector_status_connected) {
2636 struct drm_display_mode *mode = &crtc->mode;
2637 seq_printf(m, ", mode:\n");
2638 intel_seq_print_mode(m, 2, mode);
2639 } else {
2640 seq_putc(m, '\n');
2641 }
2642 }
2643}
2644
2645static void intel_crtc_info(struct seq_file *m, struct intel_crtc *intel_crtc)
2646{
Damien Lespiau9f25d002014-05-13 15:30:28 +01002647 struct drm_info_node *node = m->private;
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002648 struct drm_device *dev = node->minor->dev;
2649 struct drm_crtc *crtc = &intel_crtc->base;
2650 struct intel_encoder *intel_encoder;
2651
Matt Roper5aa8a932014-06-16 10:12:55 -07002652 if (crtc->primary->fb)
2653 seq_printf(m, "\tfb: %d, pos: %dx%d, size: %dx%d\n",
2654 crtc->primary->fb->base.id, crtc->x, crtc->y,
2655 crtc->primary->fb->width, crtc->primary->fb->height);
2656 else
2657 seq_puts(m, "\tprimary plane disabled\n");
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002658 for_each_encoder_on_crtc(dev, crtc, intel_encoder)
2659 intel_encoder_info(m, intel_crtc, intel_encoder);
2660}
2661
2662static void intel_panel_info(struct seq_file *m, struct intel_panel *panel)
2663{
2664 struct drm_display_mode *mode = panel->fixed_mode;
2665
2666 seq_printf(m, "\tfixed mode:\n");
2667 intel_seq_print_mode(m, 2, mode);
2668}
2669
2670static void intel_dp_info(struct seq_file *m,
2671 struct intel_connector *intel_connector)
2672{
2673 struct intel_encoder *intel_encoder = intel_connector->encoder;
2674 struct intel_dp *intel_dp = enc_to_intel_dp(&intel_encoder->base);
2675
2676 seq_printf(m, "\tDPCD rev: %x\n", intel_dp->dpcd[DP_DPCD_REV]);
2677 seq_printf(m, "\taudio support: %s\n", intel_dp->has_audio ? "yes" :
2678 "no");
2679 if (intel_encoder->type == INTEL_OUTPUT_EDP)
2680 intel_panel_info(m, &intel_connector->panel);
2681}
2682
2683static void intel_hdmi_info(struct seq_file *m,
2684 struct intel_connector *intel_connector)
2685{
2686 struct intel_encoder *intel_encoder = intel_connector->encoder;
2687 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&intel_encoder->base);
2688
2689 seq_printf(m, "\taudio support: %s\n", intel_hdmi->has_audio ? "yes" :
2690 "no");
2691}
2692
2693static void intel_lvds_info(struct seq_file *m,
2694 struct intel_connector *intel_connector)
2695{
2696 intel_panel_info(m, &intel_connector->panel);
2697}
2698
2699static void intel_connector_info(struct seq_file *m,
2700 struct drm_connector *connector)
2701{
2702 struct intel_connector *intel_connector = to_intel_connector(connector);
2703 struct intel_encoder *intel_encoder = intel_connector->encoder;
Jesse Barnesf103fc72014-02-20 12:39:57 -08002704 struct drm_display_mode *mode;
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002705
2706 seq_printf(m, "connector %d: type %s, status: %s\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03002707 connector->base.id, connector->name,
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002708 drm_get_connector_status_name(connector->status));
2709 if (connector->status == connector_status_connected) {
2710 seq_printf(m, "\tname: %s\n", connector->display_info.name);
2711 seq_printf(m, "\tphysical dimensions: %dx%dmm\n",
2712 connector->display_info.width_mm,
2713 connector->display_info.height_mm);
2714 seq_printf(m, "\tsubpixel order: %s\n",
2715 drm_get_subpixel_order_name(connector->display_info.subpixel_order));
2716 seq_printf(m, "\tCEA rev: %d\n",
2717 connector->display_info.cea_rev);
2718 }
Dave Airlie36cd7442014-05-02 13:44:18 +10002719 if (intel_encoder) {
2720 if (intel_encoder->type == INTEL_OUTPUT_DISPLAYPORT ||
2721 intel_encoder->type == INTEL_OUTPUT_EDP)
2722 intel_dp_info(m, intel_connector);
2723 else if (intel_encoder->type == INTEL_OUTPUT_HDMI)
2724 intel_hdmi_info(m, intel_connector);
2725 else if (intel_encoder->type == INTEL_OUTPUT_LVDS)
2726 intel_lvds_info(m, intel_connector);
2727 }
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002728
Jesse Barnesf103fc72014-02-20 12:39:57 -08002729 seq_printf(m, "\tmodes:\n");
2730 list_for_each_entry(mode, &connector->modes, head)
2731 intel_seq_print_mode(m, 2, mode);
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002732}
2733
Chris Wilson065f2ec2014-03-12 09:13:13 +00002734static bool cursor_active(struct drm_device *dev, int pipe)
2735{
2736 struct drm_i915_private *dev_priv = dev->dev_private;
2737 u32 state;
2738
2739 if (IS_845G(dev) || IS_I865G(dev))
2740 state = I915_READ(_CURACNTR) & CURSOR_ENABLE;
Chris Wilson065f2ec2014-03-12 09:13:13 +00002741 else
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03002742 state = I915_READ(CURCNTR(pipe)) & CURSOR_MODE;
Chris Wilson065f2ec2014-03-12 09:13:13 +00002743
2744 return state;
2745}
2746
2747static bool cursor_position(struct drm_device *dev, int pipe, int *x, int *y)
2748{
2749 struct drm_i915_private *dev_priv = dev->dev_private;
2750 u32 pos;
2751
Ville Syrjälä5efb3e22014-04-09 13:28:53 +03002752 pos = I915_READ(CURPOS(pipe));
Chris Wilson065f2ec2014-03-12 09:13:13 +00002753
2754 *x = (pos >> CURSOR_X_SHIFT) & CURSOR_POS_MASK;
2755 if (pos & (CURSOR_POS_SIGN << CURSOR_X_SHIFT))
2756 *x = -*x;
2757
2758 *y = (pos >> CURSOR_Y_SHIFT) & CURSOR_POS_MASK;
2759 if (pos & (CURSOR_POS_SIGN << CURSOR_Y_SHIFT))
2760 *y = -*y;
2761
2762 return cursor_active(dev, pipe);
2763}
2764
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002765static int i915_display_info(struct seq_file *m, void *unused)
2766{
Damien Lespiau9f25d002014-05-13 15:30:28 +01002767 struct drm_info_node *node = m->private;
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002768 struct drm_device *dev = node->minor->dev;
Paulo Zanonib0e5ddf2014-04-01 14:55:10 -03002769 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson065f2ec2014-03-12 09:13:13 +00002770 struct intel_crtc *crtc;
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002771 struct drm_connector *connector;
2772
Paulo Zanonib0e5ddf2014-04-01 14:55:10 -03002773 intel_runtime_pm_get(dev_priv);
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002774 drm_modeset_lock_all(dev);
2775 seq_printf(m, "CRTC info\n");
2776 seq_printf(m, "---------\n");
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002777 for_each_intel_crtc(dev, crtc) {
Chris Wilson065f2ec2014-03-12 09:13:13 +00002778 bool active;
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02002779 struct intel_crtc_state *pipe_config;
Chris Wilson065f2ec2014-03-12 09:13:13 +00002780 int x, y;
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002781
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02002782 pipe_config = to_intel_crtc_state(crtc->base.state);
2783
Chris Wilson57127ef2014-07-04 08:20:11 +01002784 seq_printf(m, "CRTC %d: pipe: %c, active=%s (size=%dx%d)\n",
Chris Wilson065f2ec2014-03-12 09:13:13 +00002785 crtc->base.base.id, pipe_name(crtc->pipe),
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02002786 yesno(pipe_config->base.active),
2787 pipe_config->pipe_src_w, pipe_config->pipe_src_h);
2788 if (pipe_config->base.active) {
Chris Wilson065f2ec2014-03-12 09:13:13 +00002789 intel_crtc_info(m, crtc);
2790
Paulo Zanonia23dc652014-04-01 14:55:11 -03002791 active = cursor_position(dev, crtc->pipe, &x, &y);
Chris Wilson57127ef2014-07-04 08:20:11 +01002792 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 +03002793 yesno(crtc->cursor_base),
Matt Roper3dd512f2015-02-27 10:12:00 -08002794 x, y, crtc->base.cursor->state->crtc_w,
2795 crtc->base.cursor->state->crtc_h,
Chris Wilson57127ef2014-07-04 08:20:11 +01002796 crtc->cursor_addr, yesno(active));
Paulo Zanonia23dc652014-04-01 14:55:11 -03002797 }
Daniel Vettercace8412014-05-22 17:56:31 +02002798
2799 seq_printf(m, "\tunderrun reporting: cpu=%s pch=%s \n",
2800 yesno(!crtc->cpu_fifo_underrun_disabled),
2801 yesno(!crtc->pch_fifo_underrun_disabled));
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002802 }
2803
2804 seq_printf(m, "\n");
2805 seq_printf(m, "Connector info\n");
2806 seq_printf(m, "--------------\n");
2807 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
2808 intel_connector_info(m, connector);
2809 }
2810 drm_modeset_unlock_all(dev);
Paulo Zanonib0e5ddf2014-04-01 14:55:10 -03002811 intel_runtime_pm_put(dev_priv);
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08002812
2813 return 0;
2814}
2815
Ben Widawskye04934c2014-06-30 09:53:42 -07002816static int i915_semaphore_status(struct seq_file *m, void *unused)
2817{
2818 struct drm_info_node *node = (struct drm_info_node *) m->private;
2819 struct drm_device *dev = node->minor->dev;
2820 struct drm_i915_private *dev_priv = dev->dev_private;
2821 struct intel_engine_cs *ring;
2822 int num_rings = hweight32(INTEL_INFO(dev)->ring_mask);
2823 int i, j, ret;
2824
2825 if (!i915_semaphore_is_enabled(dev)) {
2826 seq_puts(m, "Semaphores are disabled\n");
2827 return 0;
2828 }
2829
2830 ret = mutex_lock_interruptible(&dev->struct_mutex);
2831 if (ret)
2832 return ret;
Paulo Zanoni03872062014-07-09 14:31:57 -03002833 intel_runtime_pm_get(dev_priv);
Ben Widawskye04934c2014-06-30 09:53:42 -07002834
2835 if (IS_BROADWELL(dev)) {
2836 struct page *page;
2837 uint64_t *seqno;
2838
2839 page = i915_gem_object_get_page(dev_priv->semaphore_obj, 0);
2840
2841 seqno = (uint64_t *)kmap_atomic(page);
2842 for_each_ring(ring, dev_priv, i) {
2843 uint64_t offset;
2844
2845 seq_printf(m, "%s\n", ring->name);
2846
2847 seq_puts(m, " Last signal:");
2848 for (j = 0; j < num_rings; j++) {
2849 offset = i * I915_NUM_RINGS + j;
2850 seq_printf(m, "0x%08llx (0x%02llx) ",
2851 seqno[offset], offset * 8);
2852 }
2853 seq_putc(m, '\n');
2854
2855 seq_puts(m, " Last wait: ");
2856 for (j = 0; j < num_rings; j++) {
2857 offset = i + (j * I915_NUM_RINGS);
2858 seq_printf(m, "0x%08llx (0x%02llx) ",
2859 seqno[offset], offset * 8);
2860 }
2861 seq_putc(m, '\n');
2862
2863 }
2864 kunmap_atomic(seqno);
2865 } else {
2866 seq_puts(m, " Last signal:");
2867 for_each_ring(ring, dev_priv, i)
2868 for (j = 0; j < num_rings; j++)
2869 seq_printf(m, "0x%08x\n",
2870 I915_READ(ring->semaphore.mbox.signal[j]));
2871 seq_putc(m, '\n');
2872 }
2873
2874 seq_puts(m, "\nSync seqno:\n");
2875 for_each_ring(ring, dev_priv, i) {
2876 for (j = 0; j < num_rings; j++) {
2877 seq_printf(m, " 0x%08x ", ring->semaphore.sync_seqno[j]);
2878 }
2879 seq_putc(m, '\n');
2880 }
2881 seq_putc(m, '\n');
2882
Paulo Zanoni03872062014-07-09 14:31:57 -03002883 intel_runtime_pm_put(dev_priv);
Ben Widawskye04934c2014-06-30 09:53:42 -07002884 mutex_unlock(&dev->struct_mutex);
2885 return 0;
2886}
2887
Daniel Vetter728e29d2014-06-25 22:01:53 +03002888static int i915_shared_dplls_info(struct seq_file *m, void *unused)
2889{
2890 struct drm_info_node *node = (struct drm_info_node *) m->private;
2891 struct drm_device *dev = node->minor->dev;
2892 struct drm_i915_private *dev_priv = dev->dev_private;
2893 int i;
2894
2895 drm_modeset_lock_all(dev);
2896 for (i = 0; i < dev_priv->num_shared_dpll; i++) {
2897 struct intel_shared_dpll *pll = &dev_priv->shared_dplls[i];
2898
2899 seq_printf(m, "DPLL%i: %s, id: %i\n", i, pll->name, pll->id);
Ander Conselvan de Oliveira1e6f2dd2014-10-29 11:32:31 +02002900 seq_printf(m, " crtc_mask: 0x%08x, active: %d, on: %s\n",
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02002901 pll->config.crtc_mask, pll->active, yesno(pll->on));
Daniel Vetter728e29d2014-06-25 22:01:53 +03002902 seq_printf(m, " tracked hardware state:\n");
Ander Conselvan de Oliveira3e369b72014-10-29 11:32:32 +02002903 seq_printf(m, " dpll: 0x%08x\n", pll->config.hw_state.dpll);
2904 seq_printf(m, " dpll_md: 0x%08x\n",
2905 pll->config.hw_state.dpll_md);
2906 seq_printf(m, " fp0: 0x%08x\n", pll->config.hw_state.fp0);
2907 seq_printf(m, " fp1: 0x%08x\n", pll->config.hw_state.fp1);
2908 seq_printf(m, " wrpll: 0x%08x\n", pll->config.hw_state.wrpll);
Daniel Vetter728e29d2014-06-25 22:01:53 +03002909 }
2910 drm_modeset_unlock_all(dev);
2911
2912 return 0;
2913}
2914
Damien Lespiau1ed1ef92014-08-30 16:50:59 +01002915static int i915_wa_registers(struct seq_file *m, void *unused)
Arun Siluvery888b5992014-08-26 14:44:51 +01002916{
2917 int i;
2918 int ret;
2919 struct drm_info_node *node = (struct drm_info_node *) m->private;
2920 struct drm_device *dev = node->minor->dev;
2921 struct drm_i915_private *dev_priv = dev->dev_private;
2922
Arun Siluvery888b5992014-08-26 14:44:51 +01002923 ret = mutex_lock_interruptible(&dev->struct_mutex);
2924 if (ret)
2925 return ret;
2926
2927 intel_runtime_pm_get(dev_priv);
2928
Mika Kuoppala72253422014-10-07 17:21:26 +03002929 seq_printf(m, "Workarounds applied: %d\n", dev_priv->workarounds.count);
2930 for (i = 0; i < dev_priv->workarounds.count; ++i) {
Mika Kuoppala2fa60f62014-10-07 17:21:27 +03002931 u32 addr, mask, value, read;
2932 bool ok;
Arun Siluvery888b5992014-08-26 14:44:51 +01002933
Mika Kuoppala72253422014-10-07 17:21:26 +03002934 addr = dev_priv->workarounds.reg[i].addr;
2935 mask = dev_priv->workarounds.reg[i].mask;
Mika Kuoppala2fa60f62014-10-07 17:21:27 +03002936 value = dev_priv->workarounds.reg[i].value;
2937 read = I915_READ(addr);
2938 ok = (value & mask) == (read & mask);
2939 seq_printf(m, "0x%X: 0x%08X, mask: 0x%08X, read: 0x%08x, status: %s\n",
2940 addr, value, mask, read, ok ? "OK" : "FAIL");
Arun Siluvery888b5992014-08-26 14:44:51 +01002941 }
2942
2943 intel_runtime_pm_put(dev_priv);
2944 mutex_unlock(&dev->struct_mutex);
2945
2946 return 0;
2947}
2948
Damien Lespiauc5511e42014-11-04 17:06:51 +00002949static int i915_ddb_info(struct seq_file *m, void *unused)
2950{
2951 struct drm_info_node *node = m->private;
2952 struct drm_device *dev = node->minor->dev;
2953 struct drm_i915_private *dev_priv = dev->dev_private;
2954 struct skl_ddb_allocation *ddb;
2955 struct skl_ddb_entry *entry;
2956 enum pipe pipe;
2957 int plane;
2958
Damien Lespiau2fcffe12014-12-03 17:33:24 +00002959 if (INTEL_INFO(dev)->gen < 9)
2960 return 0;
2961
Damien Lespiauc5511e42014-11-04 17:06:51 +00002962 drm_modeset_lock_all(dev);
2963
2964 ddb = &dev_priv->wm.skl_hw.ddb;
2965
2966 seq_printf(m, "%-15s%8s%8s%8s\n", "", "Start", "End", "Size");
2967
2968 for_each_pipe(dev_priv, pipe) {
2969 seq_printf(m, "Pipe %c\n", pipe_name(pipe));
2970
Damien Lespiaudd740782015-02-28 14:54:08 +00002971 for_each_plane(dev_priv, pipe, plane) {
Damien Lespiauc5511e42014-11-04 17:06:51 +00002972 entry = &ddb->plane[pipe][plane];
2973 seq_printf(m, " Plane%-8d%8u%8u%8u\n", plane + 1,
2974 entry->start, entry->end,
2975 skl_ddb_entry_size(entry));
2976 }
2977
2978 entry = &ddb->cursor[pipe];
2979 seq_printf(m, " %-13s%8u%8u%8u\n", "Cursor", entry->start,
2980 entry->end, skl_ddb_entry_size(entry));
2981 }
2982
2983 drm_modeset_unlock_all(dev);
2984
2985 return 0;
2986}
2987
Vandana Kannana54746e2015-03-03 20:53:10 +05302988static void drrs_status_per_crtc(struct seq_file *m,
2989 struct drm_device *dev, struct intel_crtc *intel_crtc)
2990{
2991 struct intel_encoder *intel_encoder;
2992 struct drm_i915_private *dev_priv = dev->dev_private;
2993 struct i915_drrs *drrs = &dev_priv->drrs;
2994 int vrefresh = 0;
2995
2996 for_each_encoder_on_crtc(dev, &intel_crtc->base, intel_encoder) {
2997 /* Encoder connected on this CRTC */
2998 switch (intel_encoder->type) {
2999 case INTEL_OUTPUT_EDP:
3000 seq_puts(m, "eDP:\n");
3001 break;
3002 case INTEL_OUTPUT_DSI:
3003 seq_puts(m, "DSI:\n");
3004 break;
3005 case INTEL_OUTPUT_HDMI:
3006 seq_puts(m, "HDMI:\n");
3007 break;
3008 case INTEL_OUTPUT_DISPLAYPORT:
3009 seq_puts(m, "DP:\n");
3010 break;
3011 default:
3012 seq_printf(m, "Other encoder (id=%d).\n",
3013 intel_encoder->type);
3014 return;
3015 }
3016 }
3017
3018 if (dev_priv->vbt.drrs_type == STATIC_DRRS_SUPPORT)
3019 seq_puts(m, "\tVBT: DRRS_type: Static");
3020 else if (dev_priv->vbt.drrs_type == SEAMLESS_DRRS_SUPPORT)
3021 seq_puts(m, "\tVBT: DRRS_type: Seamless");
3022 else if (dev_priv->vbt.drrs_type == DRRS_NOT_SUPPORTED)
3023 seq_puts(m, "\tVBT: DRRS_type: None");
3024 else
3025 seq_puts(m, "\tVBT: DRRS_type: FIXME: Unrecognized Value");
3026
3027 seq_puts(m, "\n\n");
3028
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02003029 if (to_intel_crtc_state(intel_crtc->base.state)->has_drrs) {
Vandana Kannana54746e2015-03-03 20:53:10 +05303030 struct intel_panel *panel;
3031
3032 mutex_lock(&drrs->mutex);
3033 /* DRRS Supported */
3034 seq_puts(m, "\tDRRS Supported: Yes\n");
3035
3036 /* disable_drrs() will make drrs->dp NULL */
3037 if (!drrs->dp) {
3038 seq_puts(m, "Idleness DRRS: Disabled");
3039 mutex_unlock(&drrs->mutex);
3040 return;
3041 }
3042
3043 panel = &drrs->dp->attached_connector->panel;
3044 seq_printf(m, "\t\tBusy_frontbuffer_bits: 0x%X",
3045 drrs->busy_frontbuffer_bits);
3046
3047 seq_puts(m, "\n\t\t");
3048 if (drrs->refresh_rate_type == DRRS_HIGH_RR) {
3049 seq_puts(m, "DRRS_State: DRRS_HIGH_RR\n");
3050 vrefresh = panel->fixed_mode->vrefresh;
3051 } else if (drrs->refresh_rate_type == DRRS_LOW_RR) {
3052 seq_puts(m, "DRRS_State: DRRS_LOW_RR\n");
3053 vrefresh = panel->downclock_mode->vrefresh;
3054 } else {
3055 seq_printf(m, "DRRS_State: Unknown(%d)\n",
3056 drrs->refresh_rate_type);
3057 mutex_unlock(&drrs->mutex);
3058 return;
3059 }
3060 seq_printf(m, "\t\tVrefresh: %d", vrefresh);
3061
3062 seq_puts(m, "\n\t\t");
3063 mutex_unlock(&drrs->mutex);
3064 } else {
3065 /* DRRS not supported. Print the VBT parameter*/
3066 seq_puts(m, "\tDRRS Supported : No");
3067 }
3068 seq_puts(m, "\n");
3069}
3070
3071static int i915_drrs_status(struct seq_file *m, void *unused)
3072{
3073 struct drm_info_node *node = m->private;
3074 struct drm_device *dev = node->minor->dev;
3075 struct intel_crtc *intel_crtc;
3076 int active_crtc_cnt = 0;
3077
3078 for_each_intel_crtc(dev, intel_crtc) {
3079 drm_modeset_lock(&intel_crtc->base.mutex, NULL);
3080
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02003081 if (intel_crtc->base.state->active) {
Vandana Kannana54746e2015-03-03 20:53:10 +05303082 active_crtc_cnt++;
3083 seq_printf(m, "\nCRTC %d: ", active_crtc_cnt);
3084
3085 drrs_status_per_crtc(m, dev, intel_crtc);
3086 }
3087
3088 drm_modeset_unlock(&intel_crtc->base.mutex);
3089 }
3090
3091 if (!active_crtc_cnt)
3092 seq_puts(m, "No active crtc found\n");
3093
3094 return 0;
3095}
3096
Damien Lespiau07144422013-10-15 18:55:40 +01003097struct pipe_crc_info {
3098 const char *name;
3099 struct drm_device *dev;
3100 enum pipe pipe;
3101};
3102
Dave Airlie11bed9582014-05-12 15:22:27 +10003103static int i915_dp_mst_info(struct seq_file *m, void *unused)
3104{
3105 struct drm_info_node *node = (struct drm_info_node *) m->private;
3106 struct drm_device *dev = node->minor->dev;
3107 struct drm_encoder *encoder;
3108 struct intel_encoder *intel_encoder;
3109 struct intel_digital_port *intel_dig_port;
3110 drm_modeset_lock_all(dev);
3111 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
3112 intel_encoder = to_intel_encoder(encoder);
3113 if (intel_encoder->type != INTEL_OUTPUT_DISPLAYPORT)
3114 continue;
3115 intel_dig_port = enc_to_dig_port(encoder);
3116 if (!intel_dig_port->dp.can_mst)
3117 continue;
3118
3119 drm_dp_mst_dump_topology(m, &intel_dig_port->dp.mst_mgr);
3120 }
3121 drm_modeset_unlock_all(dev);
3122 return 0;
3123}
3124
Damien Lespiau07144422013-10-15 18:55:40 +01003125static int i915_pipe_crc_open(struct inode *inode, struct file *filep)
Shuang He8bf1e9f2013-10-15 18:55:27 +01003126{
Damien Lespiaube5c7a92013-10-15 18:55:41 +01003127 struct pipe_crc_info *info = inode->i_private;
3128 struct drm_i915_private *dev_priv = info->dev->dev_private;
3129 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe];
3130
Daniel Vetter7eb1c492013-11-14 11:30:43 +01003131 if (info->pipe >= INTEL_INFO(info->dev)->num_pipes)
3132 return -ENODEV;
3133
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003134 spin_lock_irq(&pipe_crc->lock);
3135
3136 if (pipe_crc->opened) {
3137 spin_unlock_irq(&pipe_crc->lock);
Damien Lespiaube5c7a92013-10-15 18:55:41 +01003138 return -EBUSY; /* already open */
3139 }
3140
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003141 pipe_crc->opened = true;
Damien Lespiau07144422013-10-15 18:55:40 +01003142 filep->private_data = inode->i_private;
3143
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003144 spin_unlock_irq(&pipe_crc->lock);
3145
Damien Lespiau07144422013-10-15 18:55:40 +01003146 return 0;
3147}
3148
3149static int i915_pipe_crc_release(struct inode *inode, struct file *filep)
3150{
Damien Lespiaube5c7a92013-10-15 18:55:41 +01003151 struct pipe_crc_info *info = inode->i_private;
3152 struct drm_i915_private *dev_priv = info->dev->dev_private;
3153 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe];
3154
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003155 spin_lock_irq(&pipe_crc->lock);
3156 pipe_crc->opened = false;
3157 spin_unlock_irq(&pipe_crc->lock);
Damien Lespiaube5c7a92013-10-15 18:55:41 +01003158
Damien Lespiau07144422013-10-15 18:55:40 +01003159 return 0;
3160}
3161
3162/* (6 fields, 8 chars each, space separated (5) + '\n') */
3163#define PIPE_CRC_LINE_LEN (6 * 8 + 5 + 1)
3164/* account for \'0' */
3165#define PIPE_CRC_BUFFER_LEN (PIPE_CRC_LINE_LEN + 1)
3166
3167static int pipe_crc_data_count(struct intel_pipe_crc *pipe_crc)
3168{
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003169 assert_spin_locked(&pipe_crc->lock);
3170 return CIRC_CNT(pipe_crc->head, pipe_crc->tail,
3171 INTEL_PIPE_CRC_ENTRIES_NR);
Damien Lespiau07144422013-10-15 18:55:40 +01003172}
Shuang He8bf1e9f2013-10-15 18:55:27 +01003173
Damien Lespiau07144422013-10-15 18:55:40 +01003174static ssize_t
3175i915_pipe_crc_read(struct file *filep, char __user *user_buf, size_t count,
3176 loff_t *pos)
3177{
3178 struct pipe_crc_info *info = filep->private_data;
3179 struct drm_device *dev = info->dev;
3180 struct drm_i915_private *dev_priv = dev->dev_private;
3181 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe];
3182 char buf[PIPE_CRC_BUFFER_LEN];
Ville Syrjälä9ad6d992014-12-09 21:28:32 +02003183 int n_entries;
Damien Lespiau07144422013-10-15 18:55:40 +01003184 ssize_t bytes_read;
3185
3186 /*
3187 * Don't allow user space to provide buffers not big enough to hold
3188 * a line of data.
3189 */
3190 if (count < PIPE_CRC_LINE_LEN)
3191 return -EINVAL;
3192
3193 if (pipe_crc->source == INTEL_PIPE_CRC_SOURCE_NONE)
3194 return 0;
3195
3196 /* nothing to read */
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003197 spin_lock_irq(&pipe_crc->lock);
Damien Lespiau07144422013-10-15 18:55:40 +01003198 while (pipe_crc_data_count(pipe_crc) == 0) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003199 int ret;
Damien Lespiau07144422013-10-15 18:55:40 +01003200
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003201 if (filep->f_flags & O_NONBLOCK) {
3202 spin_unlock_irq(&pipe_crc->lock);
3203 return -EAGAIN;
3204 }
3205
3206 ret = wait_event_interruptible_lock_irq(pipe_crc->wq,
3207 pipe_crc_data_count(pipe_crc), pipe_crc->lock);
3208 if (ret) {
3209 spin_unlock_irq(&pipe_crc->lock);
3210 return ret;
3211 }
Damien Lespiau07144422013-10-15 18:55:40 +01003212 }
3213
3214 /* We now have one or more entries to read */
Ville Syrjälä9ad6d992014-12-09 21:28:32 +02003215 n_entries = count / PIPE_CRC_LINE_LEN;
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003216
Damien Lespiau07144422013-10-15 18:55:40 +01003217 bytes_read = 0;
Ville Syrjälä9ad6d992014-12-09 21:28:32 +02003218 while (n_entries > 0) {
3219 struct intel_pipe_crc_entry *entry =
3220 &pipe_crc->entries[pipe_crc->tail];
Damien Lespiau07144422013-10-15 18:55:40 +01003221 int ret;
3222
Ville Syrjälä9ad6d992014-12-09 21:28:32 +02003223 if (CIRC_CNT(pipe_crc->head, pipe_crc->tail,
3224 INTEL_PIPE_CRC_ENTRIES_NR) < 1)
3225 break;
3226
3227 BUILD_BUG_ON_NOT_POWER_OF_2(INTEL_PIPE_CRC_ENTRIES_NR);
3228 pipe_crc->tail = (pipe_crc->tail + 1) & (INTEL_PIPE_CRC_ENTRIES_NR - 1);
3229
Damien Lespiau07144422013-10-15 18:55:40 +01003230 bytes_read += snprintf(buf, PIPE_CRC_BUFFER_LEN,
3231 "%8u %8x %8x %8x %8x %8x\n",
3232 entry->frame, entry->crc[0],
3233 entry->crc[1], entry->crc[2],
3234 entry->crc[3], entry->crc[4]);
3235
Ville Syrjälä9ad6d992014-12-09 21:28:32 +02003236 spin_unlock_irq(&pipe_crc->lock);
3237
3238 ret = copy_to_user(user_buf, buf, PIPE_CRC_LINE_LEN);
Damien Lespiau07144422013-10-15 18:55:40 +01003239 if (ret == PIPE_CRC_LINE_LEN)
3240 return -EFAULT;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01003241
Ville Syrjälä9ad6d992014-12-09 21:28:32 +02003242 user_buf += PIPE_CRC_LINE_LEN;
3243 n_entries--;
Shuang He8bf1e9f2013-10-15 18:55:27 +01003244
Ville Syrjälä9ad6d992014-12-09 21:28:32 +02003245 spin_lock_irq(&pipe_crc->lock);
3246 }
3247
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003248 spin_unlock_irq(&pipe_crc->lock);
3249
Damien Lespiau07144422013-10-15 18:55:40 +01003250 return bytes_read;
3251}
3252
3253static const struct file_operations i915_pipe_crc_fops = {
3254 .owner = THIS_MODULE,
3255 .open = i915_pipe_crc_open,
3256 .read = i915_pipe_crc_read,
3257 .release = i915_pipe_crc_release,
3258};
3259
3260static struct pipe_crc_info i915_pipe_crc_data[I915_MAX_PIPES] = {
3261 {
3262 .name = "i915_pipe_A_crc",
3263 .pipe = PIPE_A,
3264 },
3265 {
3266 .name = "i915_pipe_B_crc",
3267 .pipe = PIPE_B,
3268 },
3269 {
3270 .name = "i915_pipe_C_crc",
3271 .pipe = PIPE_C,
3272 },
3273};
3274
3275static int i915_pipe_crc_create(struct dentry *root, struct drm_minor *minor,
3276 enum pipe pipe)
3277{
3278 struct drm_device *dev = minor->dev;
3279 struct dentry *ent;
3280 struct pipe_crc_info *info = &i915_pipe_crc_data[pipe];
3281
3282 info->dev = dev;
3283 ent = debugfs_create_file(info->name, S_IRUGO, root, info,
3284 &i915_pipe_crc_fops);
Wei Yongjunf3c5fe92013-12-16 14:13:25 +08003285 if (!ent)
3286 return -ENOMEM;
Damien Lespiau07144422013-10-15 18:55:40 +01003287
3288 return drm_add_fake_info_node(minor, ent, info);
Shuang He8bf1e9f2013-10-15 18:55:27 +01003289}
3290
Daniel Vettere8dfcf72013-10-16 11:51:54 +02003291static const char * const pipe_crc_sources[] = {
Daniel Vetter926321d2013-10-16 13:30:34 +02003292 "none",
3293 "plane1",
3294 "plane2",
3295 "pf",
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003296 "pipe",
Daniel Vetter3d099a02013-10-16 22:55:58 +02003297 "TV",
3298 "DP-B",
3299 "DP-C",
3300 "DP-D",
Daniel Vetter46a19182013-11-01 10:50:20 +01003301 "auto",
Daniel Vetter926321d2013-10-16 13:30:34 +02003302};
3303
3304static const char *pipe_crc_source_name(enum intel_pipe_crc_source source)
3305{
3306 BUILD_BUG_ON(ARRAY_SIZE(pipe_crc_sources) != INTEL_PIPE_CRC_SOURCE_MAX);
3307 return pipe_crc_sources[source];
3308}
3309
Damien Lespiaubd9db022013-10-15 18:55:36 +01003310static int display_crc_ctl_show(struct seq_file *m, void *data)
Daniel Vetter926321d2013-10-16 13:30:34 +02003311{
3312 struct drm_device *dev = m->private;
3313 struct drm_i915_private *dev_priv = dev->dev_private;
3314 int i;
3315
3316 for (i = 0; i < I915_MAX_PIPES; i++)
3317 seq_printf(m, "%c %s\n", pipe_name(i),
3318 pipe_crc_source_name(dev_priv->pipe_crc[i].source));
3319
3320 return 0;
3321}
3322
Damien Lespiaubd9db022013-10-15 18:55:36 +01003323static int display_crc_ctl_open(struct inode *inode, struct file *file)
Daniel Vetter926321d2013-10-16 13:30:34 +02003324{
3325 struct drm_device *dev = inode->i_private;
3326
Damien Lespiaubd9db022013-10-15 18:55:36 +01003327 return single_open(file, display_crc_ctl_show, dev);
Daniel Vetter926321d2013-10-16 13:30:34 +02003328}
3329
Daniel Vetter46a19182013-11-01 10:50:20 +01003330static int i8xx_pipe_crc_ctl_reg(enum intel_pipe_crc_source *source,
Daniel Vetter52f843f2013-10-21 17:26:38 +02003331 uint32_t *val)
3332{
Daniel Vetter46a19182013-11-01 10:50:20 +01003333 if (*source == INTEL_PIPE_CRC_SOURCE_AUTO)
3334 *source = INTEL_PIPE_CRC_SOURCE_PIPE;
3335
3336 switch (*source) {
Daniel Vetter52f843f2013-10-21 17:26:38 +02003337 case INTEL_PIPE_CRC_SOURCE_PIPE:
3338 *val = PIPE_CRC_ENABLE | PIPE_CRC_INCLUDE_BORDER_I8XX;
3339 break;
3340 case INTEL_PIPE_CRC_SOURCE_NONE:
3341 *val = 0;
3342 break;
3343 default:
3344 return -EINVAL;
3345 }
3346
3347 return 0;
3348}
3349
Daniel Vetter46a19182013-11-01 10:50:20 +01003350static int i9xx_pipe_crc_auto_source(struct drm_device *dev, enum pipe pipe,
3351 enum intel_pipe_crc_source *source)
3352{
3353 struct intel_encoder *encoder;
3354 struct intel_crtc *crtc;
Daniel Vetter26756802013-11-01 10:50:23 +01003355 struct intel_digital_port *dig_port;
Daniel Vetter46a19182013-11-01 10:50:20 +01003356 int ret = 0;
3357
3358 *source = INTEL_PIPE_CRC_SOURCE_PIPE;
3359
Daniel Vetter6e9f7982014-05-29 23:54:47 +02003360 drm_modeset_lock_all(dev);
Damien Lespiaub2784e12014-08-05 11:29:37 +01003361 for_each_intel_encoder(dev, encoder) {
Daniel Vetter46a19182013-11-01 10:50:20 +01003362 if (!encoder->base.crtc)
3363 continue;
3364
3365 crtc = to_intel_crtc(encoder->base.crtc);
3366
3367 if (crtc->pipe != pipe)
3368 continue;
3369
3370 switch (encoder->type) {
3371 case INTEL_OUTPUT_TVOUT:
3372 *source = INTEL_PIPE_CRC_SOURCE_TV;
3373 break;
3374 case INTEL_OUTPUT_DISPLAYPORT:
3375 case INTEL_OUTPUT_EDP:
Daniel Vetter26756802013-11-01 10:50:23 +01003376 dig_port = enc_to_dig_port(&encoder->base);
3377 switch (dig_port->port) {
3378 case PORT_B:
3379 *source = INTEL_PIPE_CRC_SOURCE_DP_B;
3380 break;
3381 case PORT_C:
3382 *source = INTEL_PIPE_CRC_SOURCE_DP_C;
3383 break;
3384 case PORT_D:
3385 *source = INTEL_PIPE_CRC_SOURCE_DP_D;
3386 break;
3387 default:
3388 WARN(1, "nonexisting DP port %c\n",
3389 port_name(dig_port->port));
3390 break;
3391 }
Daniel Vetter46a19182013-11-01 10:50:20 +01003392 break;
Paulo Zanoni6847d712014-10-27 17:47:52 -02003393 default:
3394 break;
Daniel Vetter46a19182013-11-01 10:50:20 +01003395 }
3396 }
Daniel Vetter6e9f7982014-05-29 23:54:47 +02003397 drm_modeset_unlock_all(dev);
Daniel Vetter46a19182013-11-01 10:50:20 +01003398
3399 return ret;
3400}
3401
3402static int vlv_pipe_crc_ctl_reg(struct drm_device *dev,
3403 enum pipe pipe,
3404 enum intel_pipe_crc_source *source,
Daniel Vetter7ac01292013-10-18 16:37:06 +02003405 uint32_t *val)
3406{
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003407 struct drm_i915_private *dev_priv = dev->dev_private;
3408 bool need_stable_symbols = false;
3409
Daniel Vetter46a19182013-11-01 10:50:20 +01003410 if (*source == INTEL_PIPE_CRC_SOURCE_AUTO) {
3411 int ret = i9xx_pipe_crc_auto_source(dev, pipe, source);
3412 if (ret)
3413 return ret;
3414 }
3415
3416 switch (*source) {
Daniel Vetter7ac01292013-10-18 16:37:06 +02003417 case INTEL_PIPE_CRC_SOURCE_PIPE:
3418 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PIPE_VLV;
3419 break;
3420 case INTEL_PIPE_CRC_SOURCE_DP_B:
3421 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_B_VLV;
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003422 need_stable_symbols = true;
Daniel Vetter7ac01292013-10-18 16:37:06 +02003423 break;
3424 case INTEL_PIPE_CRC_SOURCE_DP_C:
3425 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_C_VLV;
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003426 need_stable_symbols = true;
Daniel Vetter7ac01292013-10-18 16:37:06 +02003427 break;
Ville Syrjälä2be57922014-12-09 21:28:29 +02003428 case INTEL_PIPE_CRC_SOURCE_DP_D:
3429 if (!IS_CHERRYVIEW(dev))
3430 return -EINVAL;
3431 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_D_VLV;
3432 need_stable_symbols = true;
3433 break;
Daniel Vetter7ac01292013-10-18 16:37:06 +02003434 case INTEL_PIPE_CRC_SOURCE_NONE:
3435 *val = 0;
3436 break;
3437 default:
3438 return -EINVAL;
3439 }
3440
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003441 /*
3442 * When the pipe CRC tap point is after the transcoders we need
3443 * to tweak symbol-level features to produce a deterministic series of
3444 * symbols for a given frame. We need to reset those features only once
3445 * a frame (instead of every nth symbol):
3446 * - DC-balance: used to ensure a better clock recovery from the data
3447 * link (SDVO)
3448 * - DisplayPort scrambling: used for EMI reduction
3449 */
3450 if (need_stable_symbols) {
3451 uint32_t tmp = I915_READ(PORT_DFT2_G4X);
3452
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003453 tmp |= DC_BALANCE_RESET_VLV;
Ville Syrjäläeb736672014-12-09 21:28:28 +02003454 switch (pipe) {
3455 case PIPE_A:
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003456 tmp |= PIPE_A_SCRAMBLE_RESET;
Ville Syrjäläeb736672014-12-09 21:28:28 +02003457 break;
3458 case PIPE_B:
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003459 tmp |= PIPE_B_SCRAMBLE_RESET;
Ville Syrjäläeb736672014-12-09 21:28:28 +02003460 break;
3461 case PIPE_C:
3462 tmp |= PIPE_C_SCRAMBLE_RESET;
3463 break;
3464 default:
3465 return -EINVAL;
3466 }
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003467 I915_WRITE(PORT_DFT2_G4X, tmp);
3468 }
3469
Daniel Vetter7ac01292013-10-18 16:37:06 +02003470 return 0;
3471}
3472
Daniel Vetter4b79ebf2013-10-16 22:55:59 +02003473static int i9xx_pipe_crc_ctl_reg(struct drm_device *dev,
Daniel Vetter46a19182013-11-01 10:50:20 +01003474 enum pipe pipe,
3475 enum intel_pipe_crc_source *source,
Daniel Vetter4b79ebf2013-10-16 22:55:59 +02003476 uint32_t *val)
3477{
Daniel Vetter84093602013-11-01 10:50:21 +01003478 struct drm_i915_private *dev_priv = dev->dev_private;
3479 bool need_stable_symbols = false;
3480
Daniel Vetter46a19182013-11-01 10:50:20 +01003481 if (*source == INTEL_PIPE_CRC_SOURCE_AUTO) {
3482 int ret = i9xx_pipe_crc_auto_source(dev, pipe, source);
3483 if (ret)
3484 return ret;
3485 }
3486
3487 switch (*source) {
Daniel Vetter4b79ebf2013-10-16 22:55:59 +02003488 case INTEL_PIPE_CRC_SOURCE_PIPE:
3489 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PIPE_I9XX;
3490 break;
3491 case INTEL_PIPE_CRC_SOURCE_TV:
3492 if (!SUPPORTS_TV(dev))
3493 return -EINVAL;
3494 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_TV_PRE;
3495 break;
3496 case INTEL_PIPE_CRC_SOURCE_DP_B:
3497 if (!IS_G4X(dev))
3498 return -EINVAL;
3499 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_B_G4X;
Daniel Vetter84093602013-11-01 10:50:21 +01003500 need_stable_symbols = true;
Daniel Vetter4b79ebf2013-10-16 22:55:59 +02003501 break;
3502 case INTEL_PIPE_CRC_SOURCE_DP_C:
3503 if (!IS_G4X(dev))
3504 return -EINVAL;
3505 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_C_G4X;
Daniel Vetter84093602013-11-01 10:50:21 +01003506 need_stable_symbols = true;
Daniel Vetter4b79ebf2013-10-16 22:55:59 +02003507 break;
3508 case INTEL_PIPE_CRC_SOURCE_DP_D:
3509 if (!IS_G4X(dev))
3510 return -EINVAL;
3511 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_D_G4X;
Daniel Vetter84093602013-11-01 10:50:21 +01003512 need_stable_symbols = true;
Daniel Vetter4b79ebf2013-10-16 22:55:59 +02003513 break;
3514 case INTEL_PIPE_CRC_SOURCE_NONE:
3515 *val = 0;
3516 break;
3517 default:
3518 return -EINVAL;
3519 }
3520
Daniel Vetter84093602013-11-01 10:50:21 +01003521 /*
3522 * When the pipe CRC tap point is after the transcoders we need
3523 * to tweak symbol-level features to produce a deterministic series of
3524 * symbols for a given frame. We need to reset those features only once
3525 * a frame (instead of every nth symbol):
3526 * - DC-balance: used to ensure a better clock recovery from the data
3527 * link (SDVO)
3528 * - DisplayPort scrambling: used for EMI reduction
3529 */
3530 if (need_stable_symbols) {
3531 uint32_t tmp = I915_READ(PORT_DFT2_G4X);
3532
3533 WARN_ON(!IS_G4X(dev));
3534
3535 I915_WRITE(PORT_DFT_I9XX,
3536 I915_READ(PORT_DFT_I9XX) | DC_BALANCE_RESET);
3537
3538 if (pipe == PIPE_A)
3539 tmp |= PIPE_A_SCRAMBLE_RESET;
3540 else
3541 tmp |= PIPE_B_SCRAMBLE_RESET;
3542
3543 I915_WRITE(PORT_DFT2_G4X, tmp);
3544 }
3545
Daniel Vetter4b79ebf2013-10-16 22:55:59 +02003546 return 0;
3547}
3548
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003549static void vlv_undo_pipe_scramble_reset(struct drm_device *dev,
3550 enum pipe pipe)
3551{
3552 struct drm_i915_private *dev_priv = dev->dev_private;
3553 uint32_t tmp = I915_READ(PORT_DFT2_G4X);
3554
Ville Syrjäläeb736672014-12-09 21:28:28 +02003555 switch (pipe) {
3556 case PIPE_A:
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003557 tmp &= ~PIPE_A_SCRAMBLE_RESET;
Ville Syrjäläeb736672014-12-09 21:28:28 +02003558 break;
3559 case PIPE_B:
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003560 tmp &= ~PIPE_B_SCRAMBLE_RESET;
Ville Syrjäläeb736672014-12-09 21:28:28 +02003561 break;
3562 case PIPE_C:
3563 tmp &= ~PIPE_C_SCRAMBLE_RESET;
3564 break;
3565 default:
3566 return;
3567 }
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003568 if (!(tmp & PIPE_SCRAMBLE_RESET_MASK))
3569 tmp &= ~DC_BALANCE_RESET_VLV;
3570 I915_WRITE(PORT_DFT2_G4X, tmp);
3571
3572}
3573
Daniel Vetter84093602013-11-01 10:50:21 +01003574static void g4x_undo_pipe_scramble_reset(struct drm_device *dev,
3575 enum pipe pipe)
3576{
3577 struct drm_i915_private *dev_priv = dev->dev_private;
3578 uint32_t tmp = I915_READ(PORT_DFT2_G4X);
3579
3580 if (pipe == PIPE_A)
3581 tmp &= ~PIPE_A_SCRAMBLE_RESET;
3582 else
3583 tmp &= ~PIPE_B_SCRAMBLE_RESET;
3584 I915_WRITE(PORT_DFT2_G4X, tmp);
3585
3586 if (!(tmp & PIPE_SCRAMBLE_RESET_MASK)) {
3587 I915_WRITE(PORT_DFT_I9XX,
3588 I915_READ(PORT_DFT_I9XX) & ~DC_BALANCE_RESET);
3589 }
3590}
3591
Daniel Vetter46a19182013-11-01 10:50:20 +01003592static int ilk_pipe_crc_ctl_reg(enum intel_pipe_crc_source *source,
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003593 uint32_t *val)
3594{
Daniel Vetter46a19182013-11-01 10:50:20 +01003595 if (*source == INTEL_PIPE_CRC_SOURCE_AUTO)
3596 *source = INTEL_PIPE_CRC_SOURCE_PIPE;
3597
3598 switch (*source) {
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003599 case INTEL_PIPE_CRC_SOURCE_PLANE1:
3600 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PRIMARY_ILK;
3601 break;
3602 case INTEL_PIPE_CRC_SOURCE_PLANE2:
3603 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_SPRITE_ILK;
3604 break;
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003605 case INTEL_PIPE_CRC_SOURCE_PIPE:
3606 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PIPE_ILK;
3607 break;
Daniel Vetter3d099a02013-10-16 22:55:58 +02003608 case INTEL_PIPE_CRC_SOURCE_NONE:
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003609 *val = 0;
3610 break;
Daniel Vetter3d099a02013-10-16 22:55:58 +02003611 default:
3612 return -EINVAL;
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003613 }
3614
3615 return 0;
3616}
3617
Daniel Vetterfabf6e52014-05-29 14:10:22 +02003618static void hsw_trans_edp_pipe_A_crc_wa(struct drm_device *dev)
3619{
3620 struct drm_i915_private *dev_priv = dev->dev_private;
3621 struct intel_crtc *crtc =
3622 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_A]);
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02003623 struct intel_crtc_state *pipe_config;
Daniel Vetterfabf6e52014-05-29 14:10:22 +02003624
3625 drm_modeset_lock_all(dev);
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02003626 pipe_config = to_intel_crtc_state(crtc->base.state);
3627
Daniel Vetterfabf6e52014-05-29 14:10:22 +02003628 /*
3629 * If we use the eDP transcoder we need to make sure that we don't
3630 * bypass the pfit, since otherwise the pipe CRC source won't work. Only
3631 * relevant on hsw with pipe A when using the always-on power well
3632 * routing.
3633 */
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02003634 if (pipe_config->cpu_transcoder == TRANSCODER_EDP &&
3635 !pipe_config->pch_pfit.enabled) {
3636 bool active = pipe_config->base.active;
Maarten Lankhorst1b509252015-06-01 12:49:48 +02003637
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02003638 if (active) {
Maarten Lankhorst1b509252015-06-01 12:49:48 +02003639 intel_crtc_control(&crtc->base, false);
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02003640 pipe_config = to_intel_crtc_state(crtc->base.state);
3641 }
Maarten Lankhorst1b509252015-06-01 12:49:48 +02003642
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02003643 pipe_config->pch_pfit.force_thru = true;
Daniel Vetterfabf6e52014-05-29 14:10:22 +02003644
3645 intel_display_power_get(dev_priv,
3646 POWER_DOMAIN_PIPE_PANEL_FITTER(PIPE_A));
3647
Maarten Lankhorst1b509252015-06-01 12:49:48 +02003648 if (active)
3649 intel_crtc_control(&crtc->base, true);
Daniel Vetterfabf6e52014-05-29 14:10:22 +02003650 }
3651 drm_modeset_unlock_all(dev);
3652}
3653
3654static void hsw_undo_trans_edp_pipe_A_crc_wa(struct drm_device *dev)
3655{
3656 struct drm_i915_private *dev_priv = dev->dev_private;
3657 struct intel_crtc *crtc =
3658 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[PIPE_A]);
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02003659 struct intel_crtc_state *pipe_config;
Daniel Vetterfabf6e52014-05-29 14:10:22 +02003660
3661 drm_modeset_lock_all(dev);
3662 /*
3663 * If we use the eDP transcoder we need to make sure that we don't
3664 * bypass the pfit, since otherwise the pipe CRC source won't work. Only
3665 * relevant on hsw with pipe A when using the always-on power well
3666 * routing.
3667 */
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02003668 pipe_config = to_intel_crtc_state(crtc->base.state);
3669 if (pipe_config->pch_pfit.force_thru) {
3670 bool active = pipe_config->base.active;
Daniel Vetterfabf6e52014-05-29 14:10:22 +02003671
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02003672 if (active) {
Maarten Lankhorst1b509252015-06-01 12:49:48 +02003673 intel_crtc_control(&crtc->base, false);
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02003674 pipe_config = to_intel_crtc_state(crtc->base.state);
3675 }
Maarten Lankhorst1b509252015-06-01 12:49:48 +02003676
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02003677 pipe_config->pch_pfit.force_thru = false;
Daniel Vetterfabf6e52014-05-29 14:10:22 +02003678
3679 intel_display_power_put(dev_priv,
3680 POWER_DOMAIN_PIPE_PANEL_FITTER(PIPE_A));
Maarten Lankhorst1b509252015-06-01 12:49:48 +02003681
3682 if (active)
3683 intel_crtc_control(&crtc->base, true);
Daniel Vetterfabf6e52014-05-29 14:10:22 +02003684 }
3685 drm_modeset_unlock_all(dev);
3686}
3687
3688static int ivb_pipe_crc_ctl_reg(struct drm_device *dev,
3689 enum pipe pipe,
3690 enum intel_pipe_crc_source *source,
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003691 uint32_t *val)
3692{
Daniel Vetter46a19182013-11-01 10:50:20 +01003693 if (*source == INTEL_PIPE_CRC_SOURCE_AUTO)
3694 *source = INTEL_PIPE_CRC_SOURCE_PF;
3695
3696 switch (*source) {
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003697 case INTEL_PIPE_CRC_SOURCE_PLANE1:
3698 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PRIMARY_IVB;
3699 break;
3700 case INTEL_PIPE_CRC_SOURCE_PLANE2:
3701 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_SPRITE_IVB;
3702 break;
3703 case INTEL_PIPE_CRC_SOURCE_PF:
Daniel Vetterfabf6e52014-05-29 14:10:22 +02003704 if (IS_HASWELL(dev) && pipe == PIPE_A)
3705 hsw_trans_edp_pipe_A_crc_wa(dev);
3706
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003707 *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PF_IVB;
3708 break;
Daniel Vetter3d099a02013-10-16 22:55:58 +02003709 case INTEL_PIPE_CRC_SOURCE_NONE:
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003710 *val = 0;
3711 break;
Daniel Vetter3d099a02013-10-16 22:55:58 +02003712 default:
3713 return -EINVAL;
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003714 }
3715
3716 return 0;
3717}
3718
Daniel Vetter926321d2013-10-16 13:30:34 +02003719static int pipe_crc_set_source(struct drm_device *dev, enum pipe pipe,
3720 enum intel_pipe_crc_source source)
3721{
3722 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiaucc3da172013-10-15 18:55:31 +01003723 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe];
Paulo Zanoni8c740dc2014-10-17 18:42:03 -03003724 struct intel_crtc *crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev,
3725 pipe));
Borislav Petkov432f3342013-11-21 16:49:46 +01003726 u32 val = 0; /* shut up gcc */
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003727 int ret;
Daniel Vetter926321d2013-10-16 13:30:34 +02003728
Damien Lespiaucc3da172013-10-15 18:55:31 +01003729 if (pipe_crc->source == source)
3730 return 0;
3731
Damien Lespiauae676fc2013-10-15 18:55:32 +01003732 /* forbid changing the source without going back to 'none' */
3733 if (pipe_crc->source && source)
3734 return -EINVAL;
3735
Daniel Vetter9d8b0582014-11-25 14:00:40 +01003736 if (!intel_display_power_is_enabled(dev_priv, POWER_DOMAIN_PIPE(pipe))) {
3737 DRM_DEBUG_KMS("Trying to capture CRC while pipe is off\n");
3738 return -EIO;
3739 }
3740
Daniel Vetter52f843f2013-10-21 17:26:38 +02003741 if (IS_GEN2(dev))
Daniel Vetter46a19182013-11-01 10:50:20 +01003742 ret = i8xx_pipe_crc_ctl_reg(&source, &val);
Daniel Vetter52f843f2013-10-21 17:26:38 +02003743 else if (INTEL_INFO(dev)->gen < 5)
Daniel Vetter46a19182013-11-01 10:50:20 +01003744 ret = i9xx_pipe_crc_ctl_reg(dev, pipe, &source, &val);
Daniel Vetter7ac01292013-10-18 16:37:06 +02003745 else if (IS_VALLEYVIEW(dev))
Daniel Vetterfabf6e52014-05-29 14:10:22 +02003746 ret = vlv_pipe_crc_ctl_reg(dev, pipe, &source, &val);
Daniel Vetter4b79ebf2013-10-16 22:55:59 +02003747 else if (IS_GEN5(dev) || IS_GEN6(dev))
Daniel Vetter46a19182013-11-01 10:50:20 +01003748 ret = ilk_pipe_crc_ctl_reg(&source, &val);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003749 else
Daniel Vetterfabf6e52014-05-29 14:10:22 +02003750 ret = ivb_pipe_crc_ctl_reg(dev, pipe, &source, &val);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003751
3752 if (ret != 0)
3753 return ret;
3754
Damien Lespiau4b584362013-10-15 18:55:33 +01003755 /* none -> real source transition */
3756 if (source) {
Ville Syrjälä4252fbc2014-12-09 21:28:30 +02003757 struct intel_pipe_crc_entry *entries;
3758
Damien Lespiau7cd6ccf2013-10-15 18:55:38 +01003759 DRM_DEBUG_DRIVER("collecting CRCs for pipe %c, %s\n",
3760 pipe_name(pipe), pipe_crc_source_name(source));
3761
Ville Syrjälä3cf54b32014-12-09 21:28:31 +02003762 entries = kcalloc(INTEL_PIPE_CRC_ENTRIES_NR,
3763 sizeof(pipe_crc->entries[0]),
Ville Syrjälä4252fbc2014-12-09 21:28:30 +02003764 GFP_KERNEL);
3765 if (!entries)
Damien Lespiaue5f75ac2013-10-15 18:55:34 +01003766 return -ENOMEM;
3767
Paulo Zanoni8c740dc2014-10-17 18:42:03 -03003768 /*
3769 * When IPS gets enabled, the pipe CRC changes. Since IPS gets
3770 * enabled and disabled dynamically based on package C states,
3771 * user space can't make reliable use of the CRCs, so let's just
3772 * completely disable it.
3773 */
3774 hsw_disable_ips(crtc);
3775
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003776 spin_lock_irq(&pipe_crc->lock);
Daniel Vetter64387b62014-12-10 11:00:29 +01003777 kfree(pipe_crc->entries);
Ville Syrjälä4252fbc2014-12-09 21:28:30 +02003778 pipe_crc->entries = entries;
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003779 pipe_crc->head = 0;
3780 pipe_crc->tail = 0;
3781 spin_unlock_irq(&pipe_crc->lock);
Damien Lespiau4b584362013-10-15 18:55:33 +01003782 }
3783
Damien Lespiaucc3da172013-10-15 18:55:31 +01003784 pipe_crc->source = source;
Daniel Vetter926321d2013-10-16 13:30:34 +02003785
Daniel Vetter926321d2013-10-16 13:30:34 +02003786 I915_WRITE(PIPE_CRC_CTL(pipe), val);
3787 POSTING_READ(PIPE_CRC_CTL(pipe));
3788
Damien Lespiaue5f75ac2013-10-15 18:55:34 +01003789 /* real source -> none transition */
3790 if (source == INTEL_PIPE_CRC_SOURCE_NONE) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003791 struct intel_pipe_crc_entry *entries;
Daniel Vettera33d7102014-06-06 08:22:08 +02003792 struct intel_crtc *crtc =
3793 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003794
Damien Lespiau7cd6ccf2013-10-15 18:55:38 +01003795 DRM_DEBUG_DRIVER("stopping CRCs for pipe %c\n",
3796 pipe_name(pipe));
3797
Daniel Vettera33d7102014-06-06 08:22:08 +02003798 drm_modeset_lock(&crtc->base.mutex, NULL);
Maarten Lankhorstf77076c2015-06-01 12:50:08 +02003799 if (crtc->base.state->active)
Daniel Vettera33d7102014-06-06 08:22:08 +02003800 intel_wait_for_vblank(dev, pipe);
3801 drm_modeset_unlock(&crtc->base.mutex);
Daniel Vetterbcf17ab2013-10-16 22:55:50 +02003802
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003803 spin_lock_irq(&pipe_crc->lock);
3804 entries = pipe_crc->entries;
Damien Lespiaue5f75ac2013-10-15 18:55:34 +01003805 pipe_crc->entries = NULL;
Ville Syrjälä9ad6d992014-12-09 21:28:32 +02003806 pipe_crc->head = 0;
3807 pipe_crc->tail = 0;
Damien Lespiaud538bbd2013-10-21 14:29:30 +01003808 spin_unlock_irq(&pipe_crc->lock);
3809
3810 kfree(entries);
Daniel Vetter84093602013-11-01 10:50:21 +01003811
3812 if (IS_G4X(dev))
3813 g4x_undo_pipe_scramble_reset(dev, pipe);
Daniel Vetter8d2f24c2013-11-01 10:50:22 +01003814 else if (IS_VALLEYVIEW(dev))
3815 vlv_undo_pipe_scramble_reset(dev, pipe);
Daniel Vetterfabf6e52014-05-29 14:10:22 +02003816 else if (IS_HASWELL(dev) && pipe == PIPE_A)
3817 hsw_undo_trans_edp_pipe_A_crc_wa(dev);
Paulo Zanoni8c740dc2014-10-17 18:42:03 -03003818
3819 hsw_enable_ips(crtc);
Damien Lespiaue5f75ac2013-10-15 18:55:34 +01003820 }
3821
Daniel Vetter926321d2013-10-16 13:30:34 +02003822 return 0;
3823}
3824
3825/*
3826 * Parse pipe CRC command strings:
Damien Lespiaub94dec82013-10-15 18:55:35 +01003827 * command: wsp* object wsp+ name wsp+ source wsp*
3828 * object: 'pipe'
3829 * name: (A | B | C)
Daniel Vetter926321d2013-10-16 13:30:34 +02003830 * source: (none | plane1 | plane2 | pf)
3831 * wsp: (#0x20 | #0x9 | #0xA)+
3832 *
3833 * eg.:
Damien Lespiaub94dec82013-10-15 18:55:35 +01003834 * "pipe A plane1" -> Start CRC computations on plane1 of pipe A
3835 * "pipe A none" -> Stop CRC
Daniel Vetter926321d2013-10-16 13:30:34 +02003836 */
Damien Lespiaubd9db022013-10-15 18:55:36 +01003837static int display_crc_ctl_tokenize(char *buf, char *words[], int max_words)
Daniel Vetter926321d2013-10-16 13:30:34 +02003838{
3839 int n_words = 0;
3840
3841 while (*buf) {
3842 char *end;
3843
3844 /* skip leading white space */
3845 buf = skip_spaces(buf);
3846 if (!*buf)
3847 break; /* end of buffer */
3848
3849 /* find end of word */
3850 for (end = buf; *end && !isspace(*end); end++)
3851 ;
3852
3853 if (n_words == max_words) {
3854 DRM_DEBUG_DRIVER("too many words, allowed <= %d\n",
3855 max_words);
3856 return -EINVAL; /* ran out of words[] before bytes */
3857 }
3858
3859 if (*end)
3860 *end++ = '\0';
3861 words[n_words++] = buf;
3862 buf = end;
3863 }
3864
3865 return n_words;
3866}
3867
Damien Lespiaub94dec82013-10-15 18:55:35 +01003868enum intel_pipe_crc_object {
3869 PIPE_CRC_OBJECT_PIPE,
3870};
3871
Daniel Vettere8dfcf72013-10-16 11:51:54 +02003872static const char * const pipe_crc_objects[] = {
Damien Lespiaub94dec82013-10-15 18:55:35 +01003873 "pipe",
3874};
3875
3876static int
Damien Lespiaubd9db022013-10-15 18:55:36 +01003877display_crc_ctl_parse_object(const char *buf, enum intel_pipe_crc_object *o)
Damien Lespiaub94dec82013-10-15 18:55:35 +01003878{
3879 int i;
3880
3881 for (i = 0; i < ARRAY_SIZE(pipe_crc_objects); i++)
3882 if (!strcmp(buf, pipe_crc_objects[i])) {
Damien Lespiaubd9db022013-10-15 18:55:36 +01003883 *o = i;
Damien Lespiaub94dec82013-10-15 18:55:35 +01003884 return 0;
3885 }
3886
3887 return -EINVAL;
3888}
3889
Damien Lespiaubd9db022013-10-15 18:55:36 +01003890static int display_crc_ctl_parse_pipe(const char *buf, enum pipe *pipe)
Daniel Vetter926321d2013-10-16 13:30:34 +02003891{
3892 const char name = buf[0];
3893
3894 if (name < 'A' || name >= pipe_name(I915_MAX_PIPES))
3895 return -EINVAL;
3896
3897 *pipe = name - 'A';
3898
3899 return 0;
3900}
3901
3902static int
Damien Lespiaubd9db022013-10-15 18:55:36 +01003903display_crc_ctl_parse_source(const char *buf, enum intel_pipe_crc_source *s)
Daniel Vetter926321d2013-10-16 13:30:34 +02003904{
3905 int i;
3906
3907 for (i = 0; i < ARRAY_SIZE(pipe_crc_sources); i++)
3908 if (!strcmp(buf, pipe_crc_sources[i])) {
Damien Lespiaubd9db022013-10-15 18:55:36 +01003909 *s = i;
Daniel Vetter926321d2013-10-16 13:30:34 +02003910 return 0;
3911 }
3912
3913 return -EINVAL;
3914}
3915
Damien Lespiaubd9db022013-10-15 18:55:36 +01003916static int display_crc_ctl_parse(struct drm_device *dev, char *buf, size_t len)
Daniel Vetter926321d2013-10-16 13:30:34 +02003917{
Damien Lespiaub94dec82013-10-15 18:55:35 +01003918#define N_WORDS 3
Daniel Vetter926321d2013-10-16 13:30:34 +02003919 int n_words;
Damien Lespiaub94dec82013-10-15 18:55:35 +01003920 char *words[N_WORDS];
Daniel Vetter926321d2013-10-16 13:30:34 +02003921 enum pipe pipe;
Damien Lespiaub94dec82013-10-15 18:55:35 +01003922 enum intel_pipe_crc_object object;
Daniel Vetter926321d2013-10-16 13:30:34 +02003923 enum intel_pipe_crc_source source;
3924
Damien Lespiaubd9db022013-10-15 18:55:36 +01003925 n_words = display_crc_ctl_tokenize(buf, words, N_WORDS);
Damien Lespiaub94dec82013-10-15 18:55:35 +01003926 if (n_words != N_WORDS) {
3927 DRM_DEBUG_DRIVER("tokenize failed, a command is %d words\n",
3928 N_WORDS);
Daniel Vetter926321d2013-10-16 13:30:34 +02003929 return -EINVAL;
3930 }
3931
Damien Lespiaubd9db022013-10-15 18:55:36 +01003932 if (display_crc_ctl_parse_object(words[0], &object) < 0) {
Damien Lespiaub94dec82013-10-15 18:55:35 +01003933 DRM_DEBUG_DRIVER("unknown object %s\n", words[0]);
Daniel Vetter926321d2013-10-16 13:30:34 +02003934 return -EINVAL;
3935 }
3936
Damien Lespiaubd9db022013-10-15 18:55:36 +01003937 if (display_crc_ctl_parse_pipe(words[1], &pipe) < 0) {
Damien Lespiaub94dec82013-10-15 18:55:35 +01003938 DRM_DEBUG_DRIVER("unknown pipe %s\n", words[1]);
3939 return -EINVAL;
3940 }
3941
Damien Lespiaubd9db022013-10-15 18:55:36 +01003942 if (display_crc_ctl_parse_source(words[2], &source) < 0) {
Damien Lespiaub94dec82013-10-15 18:55:35 +01003943 DRM_DEBUG_DRIVER("unknown source %s\n", words[2]);
Daniel Vetter926321d2013-10-16 13:30:34 +02003944 return -EINVAL;
3945 }
3946
3947 return pipe_crc_set_source(dev, pipe, source);
3948}
3949
Damien Lespiaubd9db022013-10-15 18:55:36 +01003950static ssize_t display_crc_ctl_write(struct file *file, const char __user *ubuf,
3951 size_t len, loff_t *offp)
Daniel Vetter926321d2013-10-16 13:30:34 +02003952{
3953 struct seq_file *m = file->private_data;
3954 struct drm_device *dev = m->private;
3955 char *tmpbuf;
3956 int ret;
3957
3958 if (len == 0)
3959 return 0;
3960
3961 if (len > PAGE_SIZE - 1) {
3962 DRM_DEBUG_DRIVER("expected <%lu bytes into pipe crc control\n",
3963 PAGE_SIZE);
3964 return -E2BIG;
3965 }
3966
3967 tmpbuf = kmalloc(len + 1, GFP_KERNEL);
3968 if (!tmpbuf)
3969 return -ENOMEM;
3970
3971 if (copy_from_user(tmpbuf, ubuf, len)) {
3972 ret = -EFAULT;
3973 goto out;
3974 }
3975 tmpbuf[len] = '\0';
3976
Damien Lespiaubd9db022013-10-15 18:55:36 +01003977 ret = display_crc_ctl_parse(dev, tmpbuf, len);
Daniel Vetter926321d2013-10-16 13:30:34 +02003978
3979out:
3980 kfree(tmpbuf);
3981 if (ret < 0)
3982 return ret;
3983
3984 *offp += len;
3985 return len;
3986}
3987
Damien Lespiaubd9db022013-10-15 18:55:36 +01003988static const struct file_operations i915_display_crc_ctl_fops = {
Daniel Vetter926321d2013-10-16 13:30:34 +02003989 .owner = THIS_MODULE,
Damien Lespiaubd9db022013-10-15 18:55:36 +01003990 .open = display_crc_ctl_open,
Daniel Vetter926321d2013-10-16 13:30:34 +02003991 .read = seq_read,
3992 .llseek = seq_lseek,
3993 .release = single_release,
Damien Lespiaubd9db022013-10-15 18:55:36 +01003994 .write = display_crc_ctl_write
Daniel Vetter926321d2013-10-16 13:30:34 +02003995};
3996
Todd Previteeb3394fa2015-04-18 00:04:19 -07003997static ssize_t i915_displayport_test_active_write(struct file *file,
3998 const char __user *ubuf,
3999 size_t len, loff_t *offp)
4000{
4001 char *input_buffer;
4002 int status = 0;
4003 struct seq_file *m;
4004 struct drm_device *dev;
4005 struct drm_connector *connector;
4006 struct list_head *connector_list;
4007 struct intel_dp *intel_dp;
4008 int val = 0;
4009
4010 m = file->private_data;
4011 if (!m) {
4012 status = -ENODEV;
4013 return status;
4014 }
4015 dev = m->private;
4016
4017 if (!dev) {
4018 status = -ENODEV;
4019 return status;
4020 }
4021 connector_list = &dev->mode_config.connector_list;
4022
4023 if (len == 0)
4024 return 0;
4025
4026 input_buffer = kmalloc(len + 1, GFP_KERNEL);
4027 if (!input_buffer)
4028 return -ENOMEM;
4029
4030 if (copy_from_user(input_buffer, ubuf, len)) {
4031 status = -EFAULT;
4032 goto out;
4033 }
4034
4035 input_buffer[len] = '\0';
4036 DRM_DEBUG_DRIVER("Copied %d bytes from user\n", (unsigned int)len);
4037
4038 list_for_each_entry(connector, connector_list, head) {
4039
4040 if (connector->connector_type !=
4041 DRM_MODE_CONNECTOR_DisplayPort)
4042 continue;
4043
4044 if (connector->connector_type ==
4045 DRM_MODE_CONNECTOR_DisplayPort &&
4046 connector->status == connector_status_connected &&
4047 connector->encoder != NULL) {
4048 intel_dp = enc_to_intel_dp(connector->encoder);
4049 status = kstrtoint(input_buffer, 10, &val);
4050 if (status < 0)
4051 goto out;
4052 DRM_DEBUG_DRIVER("Got %d for test active\n", val);
4053 /* To prevent erroneous activation of the compliance
4054 * testing code, only accept an actual value of 1 here
4055 */
4056 if (val == 1)
4057 intel_dp->compliance_test_active = 1;
4058 else
4059 intel_dp->compliance_test_active = 0;
4060 }
4061 }
4062out:
4063 kfree(input_buffer);
4064 if (status < 0)
4065 return status;
4066
4067 *offp += len;
4068 return len;
4069}
4070
4071static int i915_displayport_test_active_show(struct seq_file *m, void *data)
4072{
4073 struct drm_device *dev = m->private;
4074 struct drm_connector *connector;
4075 struct list_head *connector_list = &dev->mode_config.connector_list;
4076 struct intel_dp *intel_dp;
4077
4078 if (!dev)
4079 return -ENODEV;
4080
4081 list_for_each_entry(connector, connector_list, head) {
4082
4083 if (connector->connector_type !=
4084 DRM_MODE_CONNECTOR_DisplayPort)
4085 continue;
4086
4087 if (connector->status == connector_status_connected &&
4088 connector->encoder != NULL) {
4089 intel_dp = enc_to_intel_dp(connector->encoder);
4090 if (intel_dp->compliance_test_active)
4091 seq_puts(m, "1");
4092 else
4093 seq_puts(m, "0");
4094 } else
4095 seq_puts(m, "0");
4096 }
4097
4098 return 0;
4099}
4100
4101static int i915_displayport_test_active_open(struct inode *inode,
4102 struct file *file)
4103{
4104 struct drm_device *dev = inode->i_private;
4105
4106 return single_open(file, i915_displayport_test_active_show, dev);
4107}
4108
4109static const struct file_operations i915_displayport_test_active_fops = {
4110 .owner = THIS_MODULE,
4111 .open = i915_displayport_test_active_open,
4112 .read = seq_read,
4113 .llseek = seq_lseek,
4114 .release = single_release,
4115 .write = i915_displayport_test_active_write
4116};
4117
4118static int i915_displayport_test_data_show(struct seq_file *m, void *data)
4119{
4120 struct drm_device *dev = m->private;
4121 struct drm_connector *connector;
4122 struct list_head *connector_list = &dev->mode_config.connector_list;
4123 struct intel_dp *intel_dp;
4124
4125 if (!dev)
4126 return -ENODEV;
4127
4128 list_for_each_entry(connector, connector_list, head) {
4129
4130 if (connector->connector_type !=
4131 DRM_MODE_CONNECTOR_DisplayPort)
4132 continue;
4133
4134 if (connector->status == connector_status_connected &&
4135 connector->encoder != NULL) {
4136 intel_dp = enc_to_intel_dp(connector->encoder);
4137 seq_printf(m, "%lx", intel_dp->compliance_test_data);
4138 } else
4139 seq_puts(m, "0");
4140 }
4141
4142 return 0;
4143}
4144static int i915_displayport_test_data_open(struct inode *inode,
4145 struct file *file)
4146{
4147 struct drm_device *dev = inode->i_private;
4148
4149 return single_open(file, i915_displayport_test_data_show, dev);
4150}
4151
4152static const struct file_operations i915_displayport_test_data_fops = {
4153 .owner = THIS_MODULE,
4154 .open = i915_displayport_test_data_open,
4155 .read = seq_read,
4156 .llseek = seq_lseek,
4157 .release = single_release
4158};
4159
4160static int i915_displayport_test_type_show(struct seq_file *m, void *data)
4161{
4162 struct drm_device *dev = m->private;
4163 struct drm_connector *connector;
4164 struct list_head *connector_list = &dev->mode_config.connector_list;
4165 struct intel_dp *intel_dp;
4166
4167 if (!dev)
4168 return -ENODEV;
4169
4170 list_for_each_entry(connector, connector_list, head) {
4171
4172 if (connector->connector_type !=
4173 DRM_MODE_CONNECTOR_DisplayPort)
4174 continue;
4175
4176 if (connector->status == connector_status_connected &&
4177 connector->encoder != NULL) {
4178 intel_dp = enc_to_intel_dp(connector->encoder);
4179 seq_printf(m, "%02lx", intel_dp->compliance_test_type);
4180 } else
4181 seq_puts(m, "0");
4182 }
4183
4184 return 0;
4185}
4186
4187static int i915_displayport_test_type_open(struct inode *inode,
4188 struct file *file)
4189{
4190 struct drm_device *dev = inode->i_private;
4191
4192 return single_open(file, i915_displayport_test_type_show, dev);
4193}
4194
4195static const struct file_operations i915_displayport_test_type_fops = {
4196 .owner = THIS_MODULE,
4197 .open = i915_displayport_test_type_open,
4198 .read = seq_read,
4199 .llseek = seq_lseek,
4200 .release = single_release
4201};
4202
Damien Lespiau97e94b22014-11-04 17:06:50 +00004203static void wm_latency_show(struct seq_file *m, const uint16_t wm[8])
Ville Syrjälä369a1342014-01-22 14:36:08 +02004204{
4205 struct drm_device *dev = m->private;
Damien Lespiau546c81f2014-05-13 15:30:26 +01004206 int num_levels = ilk_wm_max_level(dev) + 1;
Ville Syrjälä369a1342014-01-22 14:36:08 +02004207 int level;
4208
4209 drm_modeset_lock_all(dev);
4210
4211 for (level = 0; level < num_levels; level++) {
4212 unsigned int latency = wm[level];
4213
Damien Lespiau97e94b22014-11-04 17:06:50 +00004214 /*
4215 * - WM1+ latency values in 0.5us units
4216 * - latencies are in us on gen9
4217 */
4218 if (INTEL_INFO(dev)->gen >= 9)
4219 latency *= 10;
4220 else if (level > 0)
Ville Syrjälä369a1342014-01-22 14:36:08 +02004221 latency *= 5;
4222
4223 seq_printf(m, "WM%d %u (%u.%u usec)\n",
Damien Lespiau97e94b22014-11-04 17:06:50 +00004224 level, wm[level], latency / 10, latency % 10);
Ville Syrjälä369a1342014-01-22 14:36:08 +02004225 }
4226
4227 drm_modeset_unlock_all(dev);
4228}
4229
4230static int pri_wm_latency_show(struct seq_file *m, void *data)
4231{
4232 struct drm_device *dev = m->private;
Damien Lespiau97e94b22014-11-04 17:06:50 +00004233 struct drm_i915_private *dev_priv = dev->dev_private;
4234 const uint16_t *latencies;
Ville Syrjälä369a1342014-01-22 14:36:08 +02004235
Damien Lespiau97e94b22014-11-04 17:06:50 +00004236 if (INTEL_INFO(dev)->gen >= 9)
4237 latencies = dev_priv->wm.skl_latency;
4238 else
4239 latencies = to_i915(dev)->wm.pri_latency;
4240
4241 wm_latency_show(m, latencies);
Ville Syrjälä369a1342014-01-22 14:36:08 +02004242
4243 return 0;
4244}
4245
4246static int spr_wm_latency_show(struct seq_file *m, void *data)
4247{
4248 struct drm_device *dev = m->private;
Damien Lespiau97e94b22014-11-04 17:06:50 +00004249 struct drm_i915_private *dev_priv = dev->dev_private;
4250 const uint16_t *latencies;
Ville Syrjälä369a1342014-01-22 14:36:08 +02004251
Damien Lespiau97e94b22014-11-04 17:06:50 +00004252 if (INTEL_INFO(dev)->gen >= 9)
4253 latencies = dev_priv->wm.skl_latency;
4254 else
4255 latencies = to_i915(dev)->wm.spr_latency;
4256
4257 wm_latency_show(m, latencies);
Ville Syrjälä369a1342014-01-22 14:36:08 +02004258
4259 return 0;
4260}
4261
4262static int cur_wm_latency_show(struct seq_file *m, void *data)
4263{
4264 struct drm_device *dev = m->private;
Damien Lespiau97e94b22014-11-04 17:06:50 +00004265 struct drm_i915_private *dev_priv = dev->dev_private;
4266 const uint16_t *latencies;
Ville Syrjälä369a1342014-01-22 14:36:08 +02004267
Damien Lespiau97e94b22014-11-04 17:06:50 +00004268 if (INTEL_INFO(dev)->gen >= 9)
4269 latencies = dev_priv->wm.skl_latency;
4270 else
4271 latencies = to_i915(dev)->wm.cur_latency;
4272
4273 wm_latency_show(m, latencies);
Ville Syrjälä369a1342014-01-22 14:36:08 +02004274
4275 return 0;
4276}
4277
4278static int pri_wm_latency_open(struct inode *inode, struct file *file)
4279{
4280 struct drm_device *dev = inode->i_private;
4281
Sonika Jindal9ad02572014-07-21 15:23:39 +05304282 if (HAS_GMCH_DISPLAY(dev))
Ville Syrjälä369a1342014-01-22 14:36:08 +02004283 return -ENODEV;
4284
4285 return single_open(file, pri_wm_latency_show, dev);
4286}
4287
4288static int spr_wm_latency_open(struct inode *inode, struct file *file)
4289{
4290 struct drm_device *dev = inode->i_private;
4291
Sonika Jindal9ad02572014-07-21 15:23:39 +05304292 if (HAS_GMCH_DISPLAY(dev))
Ville Syrjälä369a1342014-01-22 14:36:08 +02004293 return -ENODEV;
4294
4295 return single_open(file, spr_wm_latency_show, dev);
4296}
4297
4298static int cur_wm_latency_open(struct inode *inode, struct file *file)
4299{
4300 struct drm_device *dev = inode->i_private;
4301
Sonika Jindal9ad02572014-07-21 15:23:39 +05304302 if (HAS_GMCH_DISPLAY(dev))
Ville Syrjälä369a1342014-01-22 14:36:08 +02004303 return -ENODEV;
4304
4305 return single_open(file, cur_wm_latency_show, dev);
4306}
4307
4308static ssize_t wm_latency_write(struct file *file, const char __user *ubuf,
Damien Lespiau97e94b22014-11-04 17:06:50 +00004309 size_t len, loff_t *offp, uint16_t wm[8])
Ville Syrjälä369a1342014-01-22 14:36:08 +02004310{
4311 struct seq_file *m = file->private_data;
4312 struct drm_device *dev = m->private;
Damien Lespiau97e94b22014-11-04 17:06:50 +00004313 uint16_t new[8] = { 0 };
Damien Lespiau546c81f2014-05-13 15:30:26 +01004314 int num_levels = ilk_wm_max_level(dev) + 1;
Ville Syrjälä369a1342014-01-22 14:36:08 +02004315 int level;
4316 int ret;
4317 char tmp[32];
4318
4319 if (len >= sizeof(tmp))
4320 return -EINVAL;
4321
4322 if (copy_from_user(tmp, ubuf, len))
4323 return -EFAULT;
4324
4325 tmp[len] = '\0';
4326
Damien Lespiau97e94b22014-11-04 17:06:50 +00004327 ret = sscanf(tmp, "%hu %hu %hu %hu %hu %hu %hu %hu",
4328 &new[0], &new[1], &new[2], &new[3],
4329 &new[4], &new[5], &new[6], &new[7]);
Ville Syrjälä369a1342014-01-22 14:36:08 +02004330 if (ret != num_levels)
4331 return -EINVAL;
4332
4333 drm_modeset_lock_all(dev);
4334
4335 for (level = 0; level < num_levels; level++)
4336 wm[level] = new[level];
4337
4338 drm_modeset_unlock_all(dev);
4339
4340 return len;
4341}
4342
4343
4344static ssize_t pri_wm_latency_write(struct file *file, const char __user *ubuf,
4345 size_t len, loff_t *offp)
4346{
4347 struct seq_file *m = file->private_data;
4348 struct drm_device *dev = m->private;
Damien Lespiau97e94b22014-11-04 17:06:50 +00004349 struct drm_i915_private *dev_priv = dev->dev_private;
4350 uint16_t *latencies;
Ville Syrjälä369a1342014-01-22 14:36:08 +02004351
Damien Lespiau97e94b22014-11-04 17:06:50 +00004352 if (INTEL_INFO(dev)->gen >= 9)
4353 latencies = dev_priv->wm.skl_latency;
4354 else
4355 latencies = to_i915(dev)->wm.pri_latency;
4356
4357 return wm_latency_write(file, ubuf, len, offp, latencies);
Ville Syrjälä369a1342014-01-22 14:36:08 +02004358}
4359
4360static ssize_t spr_wm_latency_write(struct file *file, const char __user *ubuf,
4361 size_t len, loff_t *offp)
4362{
4363 struct seq_file *m = file->private_data;
4364 struct drm_device *dev = m->private;
Damien Lespiau97e94b22014-11-04 17:06:50 +00004365 struct drm_i915_private *dev_priv = dev->dev_private;
4366 uint16_t *latencies;
Ville Syrjälä369a1342014-01-22 14:36:08 +02004367
Damien Lespiau97e94b22014-11-04 17:06:50 +00004368 if (INTEL_INFO(dev)->gen >= 9)
4369 latencies = dev_priv->wm.skl_latency;
4370 else
4371 latencies = to_i915(dev)->wm.spr_latency;
4372
4373 return wm_latency_write(file, ubuf, len, offp, latencies);
Ville Syrjälä369a1342014-01-22 14:36:08 +02004374}
4375
4376static ssize_t cur_wm_latency_write(struct file *file, const char __user *ubuf,
4377 size_t len, loff_t *offp)
4378{
4379 struct seq_file *m = file->private_data;
4380 struct drm_device *dev = m->private;
Damien Lespiau97e94b22014-11-04 17:06:50 +00004381 struct drm_i915_private *dev_priv = dev->dev_private;
4382 uint16_t *latencies;
Ville Syrjälä369a1342014-01-22 14:36:08 +02004383
Damien Lespiau97e94b22014-11-04 17:06:50 +00004384 if (INTEL_INFO(dev)->gen >= 9)
4385 latencies = dev_priv->wm.skl_latency;
4386 else
4387 latencies = to_i915(dev)->wm.cur_latency;
4388
4389 return wm_latency_write(file, ubuf, len, offp, latencies);
Ville Syrjälä369a1342014-01-22 14:36:08 +02004390}
4391
4392static const struct file_operations i915_pri_wm_latency_fops = {
4393 .owner = THIS_MODULE,
4394 .open = pri_wm_latency_open,
4395 .read = seq_read,
4396 .llseek = seq_lseek,
4397 .release = single_release,
4398 .write = pri_wm_latency_write
4399};
4400
4401static const struct file_operations i915_spr_wm_latency_fops = {
4402 .owner = THIS_MODULE,
4403 .open = spr_wm_latency_open,
4404 .read = seq_read,
4405 .llseek = seq_lseek,
4406 .release = single_release,
4407 .write = spr_wm_latency_write
4408};
4409
4410static const struct file_operations i915_cur_wm_latency_fops = {
4411 .owner = THIS_MODULE,
4412 .open = cur_wm_latency_open,
4413 .read = seq_read,
4414 .llseek = seq_lseek,
4415 .release = single_release,
4416 .write = cur_wm_latency_write
4417};
4418
Kees Cook647416f2013-03-10 14:10:06 -07004419static int
4420i915_wedged_get(void *data, u64 *val)
Chris Wilsonf3cd4742009-10-13 22:20:20 +01004421{
Kees Cook647416f2013-03-10 14:10:06 -07004422 struct drm_device *dev = data;
Jani Nikulae277a1f2014-03-31 14:27:14 +03004423 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonf3cd4742009-10-13 22:20:20 +01004424
Kees Cook647416f2013-03-10 14:10:06 -07004425 *val = atomic_read(&dev_priv->gpu_error.reset_counter);
Chris Wilsonf3cd4742009-10-13 22:20:20 +01004426
Kees Cook647416f2013-03-10 14:10:06 -07004427 return 0;
Chris Wilsonf3cd4742009-10-13 22:20:20 +01004428}
4429
Kees Cook647416f2013-03-10 14:10:06 -07004430static int
4431i915_wedged_set(void *data, u64 val)
Chris Wilsonf3cd4742009-10-13 22:20:20 +01004432{
Kees Cook647416f2013-03-10 14:10:06 -07004433 struct drm_device *dev = data;
Imre Deakd46c0512014-04-14 20:24:27 +03004434 struct drm_i915_private *dev_priv = dev->dev_private;
4435
Mika Kuoppalab8d24a02015-01-28 17:03:14 +02004436 /*
4437 * There is no safeguard against this debugfs entry colliding
4438 * with the hangcheck calling same i915_handle_error() in
4439 * parallel, causing an explosion. For now we assume that the
4440 * test harness is responsible enough not to inject gpu hangs
4441 * while it is writing to 'i915_wedged'
4442 */
4443
4444 if (i915_reset_in_progress(&dev_priv->gpu_error))
4445 return -EAGAIN;
4446
Imre Deakd46c0512014-04-14 20:24:27 +03004447 intel_runtime_pm_get(dev_priv);
Chris Wilsonf3cd4742009-10-13 22:20:20 +01004448
Mika Kuoppala58174462014-02-25 17:11:26 +02004449 i915_handle_error(dev, val,
4450 "Manually setting wedged to %llu", val);
Imre Deakd46c0512014-04-14 20:24:27 +03004451
4452 intel_runtime_pm_put(dev_priv);
4453
Kees Cook647416f2013-03-10 14:10:06 -07004454 return 0;
Chris Wilsonf3cd4742009-10-13 22:20:20 +01004455}
4456
Kees Cook647416f2013-03-10 14:10:06 -07004457DEFINE_SIMPLE_ATTRIBUTE(i915_wedged_fops,
4458 i915_wedged_get, i915_wedged_set,
Mika Kuoppala3a3b4f92013-04-12 12:10:05 +03004459 "%llu\n");
Chris Wilsonf3cd4742009-10-13 22:20:20 +01004460
Kees Cook647416f2013-03-10 14:10:06 -07004461static int
4462i915_ring_stop_get(void *data, u64 *val)
Daniel Vettere5eb3d62012-05-03 14:48:16 +02004463{
Kees Cook647416f2013-03-10 14:10:06 -07004464 struct drm_device *dev = data;
Jani Nikulae277a1f2014-03-31 14:27:14 +03004465 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere5eb3d62012-05-03 14:48:16 +02004466
Kees Cook647416f2013-03-10 14:10:06 -07004467 *val = dev_priv->gpu_error.stop_rings;
Daniel Vettere5eb3d62012-05-03 14:48:16 +02004468
Kees Cook647416f2013-03-10 14:10:06 -07004469 return 0;
Daniel Vettere5eb3d62012-05-03 14:48:16 +02004470}
4471
Kees Cook647416f2013-03-10 14:10:06 -07004472static int
4473i915_ring_stop_set(void *data, u64 val)
Daniel Vettere5eb3d62012-05-03 14:48:16 +02004474{
Kees Cook647416f2013-03-10 14:10:06 -07004475 struct drm_device *dev = data;
Daniel Vettere5eb3d62012-05-03 14:48:16 +02004476 struct drm_i915_private *dev_priv = dev->dev_private;
Kees Cook647416f2013-03-10 14:10:06 -07004477 int ret;
Daniel Vettere5eb3d62012-05-03 14:48:16 +02004478
Kees Cook647416f2013-03-10 14:10:06 -07004479 DRM_DEBUG_DRIVER("Stopping rings 0x%08llx\n", val);
Daniel Vettere5eb3d62012-05-03 14:48:16 +02004480
Daniel Vetter22bcfc62012-08-09 15:07:02 +02004481 ret = mutex_lock_interruptible(&dev->struct_mutex);
4482 if (ret)
4483 return ret;
4484
Daniel Vetter99584db2012-11-14 17:14:04 +01004485 dev_priv->gpu_error.stop_rings = val;
Daniel Vettere5eb3d62012-05-03 14:48:16 +02004486 mutex_unlock(&dev->struct_mutex);
4487
Kees Cook647416f2013-03-10 14:10:06 -07004488 return 0;
Daniel Vettere5eb3d62012-05-03 14:48:16 +02004489}
4490
Kees Cook647416f2013-03-10 14:10:06 -07004491DEFINE_SIMPLE_ATTRIBUTE(i915_ring_stop_fops,
4492 i915_ring_stop_get, i915_ring_stop_set,
4493 "0x%08llx\n");
Daniel Vetterd5442302012-04-27 15:17:40 +02004494
Chris Wilson094f9a52013-09-25 17:34:55 +01004495static int
4496i915_ring_missed_irq_get(void *data, u64 *val)
4497{
4498 struct drm_device *dev = data;
4499 struct drm_i915_private *dev_priv = dev->dev_private;
4500
4501 *val = dev_priv->gpu_error.missed_irq_rings;
4502 return 0;
4503}
4504
4505static int
4506i915_ring_missed_irq_set(void *data, u64 val)
4507{
4508 struct drm_device *dev = data;
4509 struct drm_i915_private *dev_priv = dev->dev_private;
4510 int ret;
4511
4512 /* Lock against concurrent debugfs callers */
4513 ret = mutex_lock_interruptible(&dev->struct_mutex);
4514 if (ret)
4515 return ret;
4516 dev_priv->gpu_error.missed_irq_rings = val;
4517 mutex_unlock(&dev->struct_mutex);
4518
4519 return 0;
4520}
4521
4522DEFINE_SIMPLE_ATTRIBUTE(i915_ring_missed_irq_fops,
4523 i915_ring_missed_irq_get, i915_ring_missed_irq_set,
4524 "0x%08llx\n");
4525
4526static int
4527i915_ring_test_irq_get(void *data, u64 *val)
4528{
4529 struct drm_device *dev = data;
4530 struct drm_i915_private *dev_priv = dev->dev_private;
4531
4532 *val = dev_priv->gpu_error.test_irq_rings;
4533
4534 return 0;
4535}
4536
4537static int
4538i915_ring_test_irq_set(void *data, u64 val)
4539{
4540 struct drm_device *dev = data;
4541 struct drm_i915_private *dev_priv = dev->dev_private;
4542 int ret;
4543
4544 DRM_DEBUG_DRIVER("Masking interrupts on rings 0x%08llx\n", val);
4545
4546 /* Lock against concurrent debugfs callers */
4547 ret = mutex_lock_interruptible(&dev->struct_mutex);
4548 if (ret)
4549 return ret;
4550
4551 dev_priv->gpu_error.test_irq_rings = val;
4552 mutex_unlock(&dev->struct_mutex);
4553
4554 return 0;
4555}
4556
4557DEFINE_SIMPLE_ATTRIBUTE(i915_ring_test_irq_fops,
4558 i915_ring_test_irq_get, i915_ring_test_irq_set,
4559 "0x%08llx\n");
4560
Chris Wilsondd624af2013-01-15 12:39:35 +00004561#define DROP_UNBOUND 0x1
4562#define DROP_BOUND 0x2
4563#define DROP_RETIRE 0x4
4564#define DROP_ACTIVE 0x8
4565#define DROP_ALL (DROP_UNBOUND | \
4566 DROP_BOUND | \
4567 DROP_RETIRE | \
4568 DROP_ACTIVE)
Kees Cook647416f2013-03-10 14:10:06 -07004569static int
4570i915_drop_caches_get(void *data, u64 *val)
Chris Wilsondd624af2013-01-15 12:39:35 +00004571{
Kees Cook647416f2013-03-10 14:10:06 -07004572 *val = DROP_ALL;
Chris Wilsondd624af2013-01-15 12:39:35 +00004573
Kees Cook647416f2013-03-10 14:10:06 -07004574 return 0;
Chris Wilsondd624af2013-01-15 12:39:35 +00004575}
4576
Kees Cook647416f2013-03-10 14:10:06 -07004577static int
4578i915_drop_caches_set(void *data, u64 val)
Chris Wilsondd624af2013-01-15 12:39:35 +00004579{
Kees Cook647416f2013-03-10 14:10:06 -07004580 struct drm_device *dev = data;
Chris Wilsondd624af2013-01-15 12:39:35 +00004581 struct drm_i915_private *dev_priv = dev->dev_private;
Kees Cook647416f2013-03-10 14:10:06 -07004582 int ret;
Chris Wilsondd624af2013-01-15 12:39:35 +00004583
Ben Widawsky2f9fe5f2013-11-25 09:54:37 -08004584 DRM_DEBUG("Dropping caches: 0x%08llx\n", val);
Chris Wilsondd624af2013-01-15 12:39:35 +00004585
4586 /* No need to check and wait for gpu resets, only libdrm auto-restarts
4587 * on ioctls on -EAGAIN. */
4588 ret = mutex_lock_interruptible(&dev->struct_mutex);
4589 if (ret)
4590 return ret;
4591
4592 if (val & DROP_ACTIVE) {
4593 ret = i915_gpu_idle(dev);
4594 if (ret)
4595 goto unlock;
4596 }
4597
4598 if (val & (DROP_RETIRE | DROP_ACTIVE))
4599 i915_gem_retire_requests(dev);
4600
Chris Wilson21ab4e72014-09-09 11:16:08 +01004601 if (val & DROP_BOUND)
4602 i915_gem_shrink(dev_priv, LONG_MAX, I915_SHRINK_BOUND);
Chris Wilson4ad72b72014-09-03 19:23:37 +01004603
Chris Wilson21ab4e72014-09-09 11:16:08 +01004604 if (val & DROP_UNBOUND)
4605 i915_gem_shrink(dev_priv, LONG_MAX, I915_SHRINK_UNBOUND);
Chris Wilsondd624af2013-01-15 12:39:35 +00004606
4607unlock:
4608 mutex_unlock(&dev->struct_mutex);
4609
Kees Cook647416f2013-03-10 14:10:06 -07004610 return ret;
Chris Wilsondd624af2013-01-15 12:39:35 +00004611}
4612
Kees Cook647416f2013-03-10 14:10:06 -07004613DEFINE_SIMPLE_ATTRIBUTE(i915_drop_caches_fops,
4614 i915_drop_caches_get, i915_drop_caches_set,
4615 "0x%08llx\n");
Chris Wilsondd624af2013-01-15 12:39:35 +00004616
Kees Cook647416f2013-03-10 14:10:06 -07004617static int
4618i915_max_freq_get(void *data, u64 *val)
Jesse Barnes358733e2011-07-27 11:53:01 -07004619{
Kees Cook647416f2013-03-10 14:10:06 -07004620 struct drm_device *dev = data;
Jani Nikulae277a1f2014-03-31 14:27:14 +03004621 struct drm_i915_private *dev_priv = dev->dev_private;
Kees Cook647416f2013-03-10 14:10:06 -07004622 int ret;
Daniel Vetter004777c2012-08-09 15:07:01 +02004623
Tom O'Rourkedaa3afb2014-05-30 16:22:10 -07004624 if (INTEL_INFO(dev)->gen < 6)
Daniel Vetter004777c2012-08-09 15:07:01 +02004625 return -ENODEV;
4626
Tom O'Rourke5c9669c2013-09-16 14:56:43 -07004627 flush_delayed_work(&dev_priv->rps.delayed_resume_work);
4628
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004629 ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
Daniel Vetter004777c2012-08-09 15:07:01 +02004630 if (ret)
4631 return ret;
Jesse Barnes358733e2011-07-27 11:53:01 -07004632
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02004633 *val = intel_gpu_freq(dev_priv, dev_priv->rps.max_freq_softlimit);
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004634 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes358733e2011-07-27 11:53:01 -07004635
Kees Cook647416f2013-03-10 14:10:06 -07004636 return 0;
Jesse Barnes358733e2011-07-27 11:53:01 -07004637}
4638
Kees Cook647416f2013-03-10 14:10:06 -07004639static int
4640i915_max_freq_set(void *data, u64 val)
Jesse Barnes358733e2011-07-27 11:53:01 -07004641{
Kees Cook647416f2013-03-10 14:10:06 -07004642 struct drm_device *dev = data;
Jesse Barnes358733e2011-07-27 11:53:01 -07004643 struct drm_i915_private *dev_priv = dev->dev_private;
Akash Goelbc4d91f2015-02-26 16:09:47 +05304644 u32 hw_max, hw_min;
Kees Cook647416f2013-03-10 14:10:06 -07004645 int ret;
Daniel Vetter004777c2012-08-09 15:07:01 +02004646
Tom O'Rourkedaa3afb2014-05-30 16:22:10 -07004647 if (INTEL_INFO(dev)->gen < 6)
Daniel Vetter004777c2012-08-09 15:07:01 +02004648 return -ENODEV;
Jesse Barnes358733e2011-07-27 11:53:01 -07004649
Tom O'Rourke5c9669c2013-09-16 14:56:43 -07004650 flush_delayed_work(&dev_priv->rps.delayed_resume_work);
4651
Kees Cook647416f2013-03-10 14:10:06 -07004652 DRM_DEBUG_DRIVER("Manually setting max freq to %llu\n", val);
Jesse Barnes358733e2011-07-27 11:53:01 -07004653
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004654 ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
Daniel Vetter004777c2012-08-09 15:07:01 +02004655 if (ret)
4656 return ret;
4657
Jesse Barnes358733e2011-07-27 11:53:01 -07004658 /*
4659 * Turbo will still be enabled, but won't go above the set value.
4660 */
Akash Goelbc4d91f2015-02-26 16:09:47 +05304661 val = intel_freq_opcode(dev_priv, val);
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06004662
Akash Goelbc4d91f2015-02-26 16:09:47 +05304663 hw_max = dev_priv->rps.max_freq;
4664 hw_min = dev_priv->rps.min_freq;
Jesse Barnes0a073b82013-04-17 15:54:58 -07004665
Ben Widawskyb39fb292014-03-19 18:31:11 -07004666 if (val < hw_min || val > hw_max || val < dev_priv->rps.min_freq_softlimit) {
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06004667 mutex_unlock(&dev_priv->rps.hw_lock);
4668 return -EINVAL;
4669 }
4670
Ben Widawskyb39fb292014-03-19 18:31:11 -07004671 dev_priv->rps.max_freq_softlimit = val;
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06004672
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004673 intel_set_rps(dev, val);
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06004674
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004675 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes358733e2011-07-27 11:53:01 -07004676
Kees Cook647416f2013-03-10 14:10:06 -07004677 return 0;
Jesse Barnes358733e2011-07-27 11:53:01 -07004678}
4679
Kees Cook647416f2013-03-10 14:10:06 -07004680DEFINE_SIMPLE_ATTRIBUTE(i915_max_freq_fops,
4681 i915_max_freq_get, i915_max_freq_set,
Mika Kuoppala3a3b4f92013-04-12 12:10:05 +03004682 "%llu\n");
Jesse Barnes358733e2011-07-27 11:53:01 -07004683
Kees Cook647416f2013-03-10 14:10:06 -07004684static int
4685i915_min_freq_get(void *data, u64 *val)
Jesse Barnes1523c312012-05-25 12:34:54 -07004686{
Kees Cook647416f2013-03-10 14:10:06 -07004687 struct drm_device *dev = data;
Jani Nikulae277a1f2014-03-31 14:27:14 +03004688 struct drm_i915_private *dev_priv = dev->dev_private;
Kees Cook647416f2013-03-10 14:10:06 -07004689 int ret;
Daniel Vetter004777c2012-08-09 15:07:01 +02004690
Tom O'Rourkedaa3afb2014-05-30 16:22:10 -07004691 if (INTEL_INFO(dev)->gen < 6)
Daniel Vetter004777c2012-08-09 15:07:01 +02004692 return -ENODEV;
4693
Tom O'Rourke5c9669c2013-09-16 14:56:43 -07004694 flush_delayed_work(&dev_priv->rps.delayed_resume_work);
4695
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004696 ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
Daniel Vetter004777c2012-08-09 15:07:01 +02004697 if (ret)
4698 return ret;
Jesse Barnes1523c312012-05-25 12:34:54 -07004699
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02004700 *val = intel_gpu_freq(dev_priv, dev_priv->rps.min_freq_softlimit);
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004701 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes1523c312012-05-25 12:34:54 -07004702
Kees Cook647416f2013-03-10 14:10:06 -07004703 return 0;
Jesse Barnes1523c312012-05-25 12:34:54 -07004704}
4705
Kees Cook647416f2013-03-10 14:10:06 -07004706static int
4707i915_min_freq_set(void *data, u64 val)
Jesse Barnes1523c312012-05-25 12:34:54 -07004708{
Kees Cook647416f2013-03-10 14:10:06 -07004709 struct drm_device *dev = data;
Jesse Barnes1523c312012-05-25 12:34:54 -07004710 struct drm_i915_private *dev_priv = dev->dev_private;
Akash Goelbc4d91f2015-02-26 16:09:47 +05304711 u32 hw_max, hw_min;
Kees Cook647416f2013-03-10 14:10:06 -07004712 int ret;
Daniel Vetter004777c2012-08-09 15:07:01 +02004713
Tom O'Rourkedaa3afb2014-05-30 16:22:10 -07004714 if (INTEL_INFO(dev)->gen < 6)
Daniel Vetter004777c2012-08-09 15:07:01 +02004715 return -ENODEV;
Jesse Barnes1523c312012-05-25 12:34:54 -07004716
Tom O'Rourke5c9669c2013-09-16 14:56:43 -07004717 flush_delayed_work(&dev_priv->rps.delayed_resume_work);
4718
Kees Cook647416f2013-03-10 14:10:06 -07004719 DRM_DEBUG_DRIVER("Manually setting min freq to %llu\n", val);
Jesse Barnes1523c312012-05-25 12:34:54 -07004720
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004721 ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
Daniel Vetter004777c2012-08-09 15:07:01 +02004722 if (ret)
4723 return ret;
4724
Jesse Barnes1523c312012-05-25 12:34:54 -07004725 /*
4726 * Turbo will still be enabled, but won't go below the set value.
4727 */
Akash Goelbc4d91f2015-02-26 16:09:47 +05304728 val = intel_freq_opcode(dev_priv, val);
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06004729
Akash Goelbc4d91f2015-02-26 16:09:47 +05304730 hw_max = dev_priv->rps.max_freq;
4731 hw_min = dev_priv->rps.min_freq;
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06004732
Ben Widawskyb39fb292014-03-19 18:31:11 -07004733 if (val < hw_min || val > hw_max || val > dev_priv->rps.max_freq_softlimit) {
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06004734 mutex_unlock(&dev_priv->rps.hw_lock);
4735 return -EINVAL;
4736 }
4737
Ben Widawskyb39fb292014-03-19 18:31:11 -07004738 dev_priv->rps.min_freq_softlimit = val;
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06004739
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004740 intel_set_rps(dev, val);
Jeff McGeedd0a1aa2014-02-04 11:32:31 -06004741
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004742 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes1523c312012-05-25 12:34:54 -07004743
Kees Cook647416f2013-03-10 14:10:06 -07004744 return 0;
Jesse Barnes1523c312012-05-25 12:34:54 -07004745}
4746
Kees Cook647416f2013-03-10 14:10:06 -07004747DEFINE_SIMPLE_ATTRIBUTE(i915_min_freq_fops,
4748 i915_min_freq_get, i915_min_freq_set,
Mika Kuoppala3a3b4f92013-04-12 12:10:05 +03004749 "%llu\n");
Jesse Barnes1523c312012-05-25 12:34:54 -07004750
Kees Cook647416f2013-03-10 14:10:06 -07004751static int
4752i915_cache_sharing_get(void *data, u64 *val)
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07004753{
Kees Cook647416f2013-03-10 14:10:06 -07004754 struct drm_device *dev = data;
Jani Nikulae277a1f2014-03-31 14:27:14 +03004755 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07004756 u32 snpcr;
Kees Cook647416f2013-03-10 14:10:06 -07004757 int ret;
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07004758
Daniel Vetter004777c2012-08-09 15:07:01 +02004759 if (!(IS_GEN6(dev) || IS_GEN7(dev)))
4760 return -ENODEV;
4761
Daniel Vetter22bcfc62012-08-09 15:07:02 +02004762 ret = mutex_lock_interruptible(&dev->struct_mutex);
4763 if (ret)
4764 return ret;
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02004765 intel_runtime_pm_get(dev_priv);
Daniel Vetter22bcfc62012-08-09 15:07:02 +02004766
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07004767 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02004768
4769 intel_runtime_pm_put(dev_priv);
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07004770 mutex_unlock(&dev_priv->dev->struct_mutex);
4771
Kees Cook647416f2013-03-10 14:10:06 -07004772 *val = (snpcr & GEN6_MBC_SNPCR_MASK) >> GEN6_MBC_SNPCR_SHIFT;
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07004773
Kees Cook647416f2013-03-10 14:10:06 -07004774 return 0;
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07004775}
4776
Kees Cook647416f2013-03-10 14:10:06 -07004777static int
4778i915_cache_sharing_set(void *data, u64 val)
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07004779{
Kees Cook647416f2013-03-10 14:10:06 -07004780 struct drm_device *dev = data;
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07004781 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07004782 u32 snpcr;
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07004783
Daniel Vetter004777c2012-08-09 15:07:01 +02004784 if (!(IS_GEN6(dev) || IS_GEN7(dev)))
4785 return -ENODEV;
4786
Kees Cook647416f2013-03-10 14:10:06 -07004787 if (val > 3)
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07004788 return -EINVAL;
4789
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02004790 intel_runtime_pm_get(dev_priv);
Kees Cook647416f2013-03-10 14:10:06 -07004791 DRM_DEBUG_DRIVER("Manually setting uncore sharing to %llu\n", val);
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07004792
4793 /* Update the cache sharing policy here as well */
4794 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
4795 snpcr &= ~GEN6_MBC_SNPCR_MASK;
4796 snpcr |= (val << GEN6_MBC_SNPCR_SHIFT);
4797 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
4798
Paulo Zanonic8c8fb32013-11-27 18:21:54 -02004799 intel_runtime_pm_put(dev_priv);
Kees Cook647416f2013-03-10 14:10:06 -07004800 return 0;
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07004801}
4802
Kees Cook647416f2013-03-10 14:10:06 -07004803DEFINE_SIMPLE_ATTRIBUTE(i915_cache_sharing_fops,
4804 i915_cache_sharing_get, i915_cache_sharing_set,
4805 "%llu\n");
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07004806
Jeff McGee5d395252015-04-03 18:13:17 -07004807struct sseu_dev_status {
4808 unsigned int slice_total;
4809 unsigned int subslice_total;
4810 unsigned int subslice_per_slice;
4811 unsigned int eu_total;
4812 unsigned int eu_per_subslice;
4813};
4814
4815static void cherryview_sseu_device_status(struct drm_device *dev,
4816 struct sseu_dev_status *stat)
4817{
4818 struct drm_i915_private *dev_priv = dev->dev_private;
4819 const int ss_max = 2;
4820 int ss;
4821 u32 sig1[ss_max], sig2[ss_max];
4822
4823 sig1[0] = I915_READ(CHV_POWER_SS0_SIG1);
4824 sig1[1] = I915_READ(CHV_POWER_SS1_SIG1);
4825 sig2[0] = I915_READ(CHV_POWER_SS0_SIG2);
4826 sig2[1] = I915_READ(CHV_POWER_SS1_SIG2);
4827
4828 for (ss = 0; ss < ss_max; ss++) {
4829 unsigned int eu_cnt;
4830
4831 if (sig1[ss] & CHV_SS_PG_ENABLE)
4832 /* skip disabled subslice */
4833 continue;
4834
4835 stat->slice_total = 1;
4836 stat->subslice_per_slice++;
4837 eu_cnt = ((sig1[ss] & CHV_EU08_PG_ENABLE) ? 0 : 2) +
4838 ((sig1[ss] & CHV_EU19_PG_ENABLE) ? 0 : 2) +
4839 ((sig1[ss] & CHV_EU210_PG_ENABLE) ? 0 : 2) +
4840 ((sig2[ss] & CHV_EU311_PG_ENABLE) ? 0 : 2);
4841 stat->eu_total += eu_cnt;
4842 stat->eu_per_subslice = max(stat->eu_per_subslice, eu_cnt);
4843 }
4844 stat->subslice_total = stat->subslice_per_slice;
4845}
4846
4847static void gen9_sseu_device_status(struct drm_device *dev,
4848 struct sseu_dev_status *stat)
4849{
4850 struct drm_i915_private *dev_priv = dev->dev_private;
Jeff McGee1c046bc2015-04-03 18:13:18 -07004851 int s_max = 3, ss_max = 4;
Jeff McGee5d395252015-04-03 18:13:17 -07004852 int s, ss;
4853 u32 s_reg[s_max], eu_reg[2*s_max], eu_mask[2];
4854
Jeff McGee1c046bc2015-04-03 18:13:18 -07004855 /* BXT has a single slice and at most 3 subslices. */
4856 if (IS_BROXTON(dev)) {
4857 s_max = 1;
4858 ss_max = 3;
4859 }
4860
4861 for (s = 0; s < s_max; s++) {
4862 s_reg[s] = I915_READ(GEN9_SLICE_PGCTL_ACK(s));
4863 eu_reg[2*s] = I915_READ(GEN9_SS01_EU_PGCTL_ACK(s));
4864 eu_reg[2*s + 1] = I915_READ(GEN9_SS23_EU_PGCTL_ACK(s));
4865 }
4866
Jeff McGee5d395252015-04-03 18:13:17 -07004867 eu_mask[0] = GEN9_PGCTL_SSA_EU08_ACK |
4868 GEN9_PGCTL_SSA_EU19_ACK |
4869 GEN9_PGCTL_SSA_EU210_ACK |
4870 GEN9_PGCTL_SSA_EU311_ACK;
4871 eu_mask[1] = GEN9_PGCTL_SSB_EU08_ACK |
4872 GEN9_PGCTL_SSB_EU19_ACK |
4873 GEN9_PGCTL_SSB_EU210_ACK |
4874 GEN9_PGCTL_SSB_EU311_ACK;
4875
4876 for (s = 0; s < s_max; s++) {
Jeff McGee1c046bc2015-04-03 18:13:18 -07004877 unsigned int ss_cnt = 0;
4878
Jeff McGee5d395252015-04-03 18:13:17 -07004879 if ((s_reg[s] & GEN9_PGCTL_SLICE_ACK) == 0)
4880 /* skip disabled slice */
4881 continue;
4882
4883 stat->slice_total++;
Jeff McGee1c046bc2015-04-03 18:13:18 -07004884
4885 if (IS_SKYLAKE(dev))
4886 ss_cnt = INTEL_INFO(dev)->subslice_per_slice;
4887
Jeff McGee5d395252015-04-03 18:13:17 -07004888 for (ss = 0; ss < ss_max; ss++) {
4889 unsigned int eu_cnt;
4890
Jeff McGee1c046bc2015-04-03 18:13:18 -07004891 if (IS_BROXTON(dev) &&
4892 !(s_reg[s] & (GEN9_PGCTL_SS_ACK(ss))))
4893 /* skip disabled subslice */
4894 continue;
4895
4896 if (IS_BROXTON(dev))
4897 ss_cnt++;
4898
Jeff McGee5d395252015-04-03 18:13:17 -07004899 eu_cnt = 2 * hweight32(eu_reg[2*s + ss/2] &
4900 eu_mask[ss%2]);
4901 stat->eu_total += eu_cnt;
4902 stat->eu_per_subslice = max(stat->eu_per_subslice,
4903 eu_cnt);
4904 }
Jeff McGee1c046bc2015-04-03 18:13:18 -07004905
4906 stat->subslice_total += ss_cnt;
4907 stat->subslice_per_slice = max(stat->subslice_per_slice,
4908 ss_cnt);
Jeff McGee5d395252015-04-03 18:13:17 -07004909 }
4910}
4911
Jeff McGee38732182015-02-13 10:27:54 -06004912static int i915_sseu_status(struct seq_file *m, void *unused)
4913{
4914 struct drm_info_node *node = (struct drm_info_node *) m->private;
4915 struct drm_device *dev = node->minor->dev;
Jeff McGee5d395252015-04-03 18:13:17 -07004916 struct sseu_dev_status stat;
Jeff McGee38732182015-02-13 10:27:54 -06004917
Jeff McGee5575f032015-02-27 10:22:32 -08004918 if ((INTEL_INFO(dev)->gen < 8) || IS_BROADWELL(dev))
Jeff McGee38732182015-02-13 10:27:54 -06004919 return -ENODEV;
4920
4921 seq_puts(m, "SSEU Device Info\n");
4922 seq_printf(m, " Available Slice Total: %u\n",
4923 INTEL_INFO(dev)->slice_total);
4924 seq_printf(m, " Available Subslice Total: %u\n",
4925 INTEL_INFO(dev)->subslice_total);
4926 seq_printf(m, " Available Subslice Per Slice: %u\n",
4927 INTEL_INFO(dev)->subslice_per_slice);
4928 seq_printf(m, " Available EU Total: %u\n",
4929 INTEL_INFO(dev)->eu_total);
4930 seq_printf(m, " Available EU Per Subslice: %u\n",
4931 INTEL_INFO(dev)->eu_per_subslice);
4932 seq_printf(m, " Has Slice Power Gating: %s\n",
4933 yesno(INTEL_INFO(dev)->has_slice_pg));
4934 seq_printf(m, " Has Subslice Power Gating: %s\n",
4935 yesno(INTEL_INFO(dev)->has_subslice_pg));
4936 seq_printf(m, " Has EU Power Gating: %s\n",
4937 yesno(INTEL_INFO(dev)->has_eu_pg));
4938
Jeff McGee7f992ab2015-02-13 10:27:55 -06004939 seq_puts(m, "SSEU Device Status\n");
Jeff McGee5d395252015-04-03 18:13:17 -07004940 memset(&stat, 0, sizeof(stat));
Jeff McGee5575f032015-02-27 10:22:32 -08004941 if (IS_CHERRYVIEW(dev)) {
Jeff McGee5d395252015-04-03 18:13:17 -07004942 cherryview_sseu_device_status(dev, &stat);
Jeff McGee1c046bc2015-04-03 18:13:18 -07004943 } else if (INTEL_INFO(dev)->gen >= 9) {
Jeff McGee5d395252015-04-03 18:13:17 -07004944 gen9_sseu_device_status(dev, &stat);
Jeff McGee7f992ab2015-02-13 10:27:55 -06004945 }
Jeff McGee5d395252015-04-03 18:13:17 -07004946 seq_printf(m, " Enabled Slice Total: %u\n",
4947 stat.slice_total);
4948 seq_printf(m, " Enabled Subslice Total: %u\n",
4949 stat.subslice_total);
4950 seq_printf(m, " Enabled Subslice Per Slice: %u\n",
4951 stat.subslice_per_slice);
4952 seq_printf(m, " Enabled EU Total: %u\n",
4953 stat.eu_total);
4954 seq_printf(m, " Enabled EU Per Subslice: %u\n",
4955 stat.eu_per_subslice);
Jeff McGee7f992ab2015-02-13 10:27:55 -06004956
Jeff McGee38732182015-02-13 10:27:54 -06004957 return 0;
4958}
4959
Ben Widawsky6d794d42011-04-25 11:25:56 -07004960static int i915_forcewake_open(struct inode *inode, struct file *file)
4961{
4962 struct drm_device *dev = inode->i_private;
4963 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky6d794d42011-04-25 11:25:56 -07004964
Daniel Vetter075edca2012-01-24 09:44:28 +01004965 if (INTEL_INFO(dev)->gen < 6)
Ben Widawsky6d794d42011-04-25 11:25:56 -07004966 return 0;
4967
Chris Wilson6daccb02015-01-16 11:34:35 +02004968 intel_runtime_pm_get(dev_priv);
Mika Kuoppala59bad942015-01-16 11:34:40 +02004969 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6d794d42011-04-25 11:25:56 -07004970
4971 return 0;
4972}
4973
Ben Widawskyc43b5632012-04-16 14:07:40 -07004974static int i915_forcewake_release(struct inode *inode, struct file *file)
Ben Widawsky6d794d42011-04-25 11:25:56 -07004975{
4976 struct drm_device *dev = inode->i_private;
4977 struct drm_i915_private *dev_priv = dev->dev_private;
4978
Daniel Vetter075edca2012-01-24 09:44:28 +01004979 if (INTEL_INFO(dev)->gen < 6)
Ben Widawsky6d794d42011-04-25 11:25:56 -07004980 return 0;
4981
Mika Kuoppala59bad942015-01-16 11:34:40 +02004982 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Chris Wilson6daccb02015-01-16 11:34:35 +02004983 intel_runtime_pm_put(dev_priv);
Ben Widawsky6d794d42011-04-25 11:25:56 -07004984
4985 return 0;
4986}
4987
4988static const struct file_operations i915_forcewake_fops = {
4989 .owner = THIS_MODULE,
4990 .open = i915_forcewake_open,
4991 .release = i915_forcewake_release,
4992};
4993
4994static int i915_forcewake_create(struct dentry *root, struct drm_minor *minor)
4995{
4996 struct drm_device *dev = minor->dev;
4997 struct dentry *ent;
4998
4999 ent = debugfs_create_file("i915_forcewake_user",
Ben Widawsky8eb57292011-05-11 15:10:58 -07005000 S_IRUSR,
Ben Widawsky6d794d42011-04-25 11:25:56 -07005001 root, dev,
5002 &i915_forcewake_fops);
Wei Yongjunf3c5fe92013-12-16 14:13:25 +08005003 if (!ent)
5004 return -ENOMEM;
Ben Widawsky6d794d42011-04-25 11:25:56 -07005005
Ben Widawsky8eb57292011-05-11 15:10:58 -07005006 return drm_add_fake_info_node(minor, ent, &i915_forcewake_fops);
Ben Widawsky6d794d42011-04-25 11:25:56 -07005007}
5008
Daniel Vetter6a9c3082011-12-14 13:57:11 +01005009static int i915_debugfs_create(struct dentry *root,
5010 struct drm_minor *minor,
5011 const char *name,
5012 const struct file_operations *fops)
Jesse Barnes358733e2011-07-27 11:53:01 -07005013{
5014 struct drm_device *dev = minor->dev;
5015 struct dentry *ent;
5016
Daniel Vetter6a9c3082011-12-14 13:57:11 +01005017 ent = debugfs_create_file(name,
Jesse Barnes358733e2011-07-27 11:53:01 -07005018 S_IRUGO | S_IWUSR,
5019 root, dev,
Daniel Vetter6a9c3082011-12-14 13:57:11 +01005020 fops);
Wei Yongjunf3c5fe92013-12-16 14:13:25 +08005021 if (!ent)
5022 return -ENOMEM;
Jesse Barnes358733e2011-07-27 11:53:01 -07005023
Daniel Vetter6a9c3082011-12-14 13:57:11 +01005024 return drm_add_fake_info_node(minor, ent, fops);
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07005025}
5026
Lespiau, Damien06c5bf82013-10-17 19:09:56 +01005027static const struct drm_info_list i915_debugfs_list[] = {
Chris Wilson311bd682011-01-13 19:06:50 +00005028 {"i915_capabilities", i915_capabilities, 0},
Chris Wilson73aa8082010-09-30 11:46:12 +01005029 {"i915_gem_objects", i915_gem_object_info, 0},
Chris Wilson08c18322011-01-10 00:00:24 +00005030 {"i915_gem_gtt", i915_gem_gtt_info, 0},
Chris Wilson1b502472012-04-24 15:47:30 +01005031 {"i915_gem_pinned", i915_gem_gtt_info, 0, (void *) PINNED_LIST},
Ben Gamari433e12f2009-02-17 20:08:51 -05005032 {"i915_gem_active", i915_gem_object_list_info, 0, (void *) ACTIVE_LIST},
Ben Gamari433e12f2009-02-17 20:08:51 -05005033 {"i915_gem_inactive", i915_gem_object_list_info, 0, (void *) INACTIVE_LIST},
Chris Wilson6d2b8882013-08-07 18:30:54 +01005034 {"i915_gem_stolen", i915_gem_stolen_list_info },
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01005035 {"i915_gem_pageflip", i915_gem_pageflip_info, 0},
Ben Gamari20172632009-02-17 20:08:50 -05005036 {"i915_gem_request", i915_gem_request_info, 0},
5037 {"i915_gem_seqno", i915_gem_seqno_info, 0},
Chris Wilsona6172a82009-02-11 14:26:38 +00005038 {"i915_gem_fence_regs", i915_gem_fence_regs_info, 0},
Ben Gamari20172632009-02-17 20:08:50 -05005039 {"i915_gem_interrupt", i915_interrupt_info, 0},
Chris Wilson1ec14ad2010-12-04 11:30:53 +00005040 {"i915_gem_hws", i915_hws_info, 0, (void *)RCS},
5041 {"i915_gem_hws_blt", i915_hws_info, 0, (void *)BCS},
5042 {"i915_gem_hws_bsd", i915_hws_info, 0, (void *)VCS},
Xiang, Haihao9010ebf2013-05-29 09:22:36 -07005043 {"i915_gem_hws_vebox", i915_hws_info, 0, (void *)VECS},
Brad Volkin493018d2014-12-11 12:13:08 -08005044 {"i915_gem_batch_pool", i915_gem_batch_pool_info, 0},
Deepak Sadb4bd12014-03-31 11:30:02 +05305045 {"i915_frequency_info", i915_frequency_info, 0},
Chris Wilsonf654449a2015-01-26 18:03:04 +02005046 {"i915_hangcheck_info", i915_hangcheck_info, 0},
Jesse Barnesf97108d2010-01-29 11:27:07 -08005047 {"i915_drpc_info", i915_drpc_info, 0},
Jesse Barnes7648fa92010-05-20 14:28:11 -07005048 {"i915_emon_status", i915_emon_status, 0},
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07005049 {"i915_ring_freq_table", i915_ring_freq_table, 0},
Daniel Vetter9a851782015-06-18 10:30:22 +02005050 {"i915_frontbuffer_tracking", i915_frontbuffer_tracking, 0},
Jesse Barnesb5e50c32010-02-05 12:42:41 -08005051 {"i915_fbc_status", i915_fbc_status, 0},
Paulo Zanoni92d44622013-05-31 16:33:24 -03005052 {"i915_ips_status", i915_ips_status, 0},
Jesse Barnes4a9bef32010-02-05 12:47:35 -08005053 {"i915_sr_status", i915_sr_status, 0},
Chris Wilson44834a62010-08-19 16:09:23 +01005054 {"i915_opregion", i915_opregion, 0},
Chris Wilson37811fc2010-08-25 22:45:57 +01005055 {"i915_gem_framebuffer", i915_gem_framebuffer_info, 0},
Ben Widawskye76d3632011-03-19 18:14:29 -07005056 {"i915_context_status", i915_context_status, 0},
Ben Widawskyc0ab1ae2014-08-07 13:24:26 +01005057 {"i915_dump_lrc", i915_dump_lrc, 0},
Oscar Mateo4ba70e42014-08-07 13:23:20 +01005058 {"i915_execlists", i915_execlists, 0},
Mika Kuoppalaf65367b2015-01-16 11:34:42 +02005059 {"i915_forcewake_domains", i915_forcewake_domains, 0},
Daniel Vetterea16a3c2011-12-14 13:57:16 +01005060 {"i915_swizzle_info", i915_swizzle_info, 0},
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01005061 {"i915_ppgtt_info", i915_ppgtt_info, 0},
Ben Widawsky63573eb2013-07-04 11:02:07 -07005062 {"i915_llc", i915_llc, 0},
Rodrigo Vivie91fd8c2013-07-11 18:44:59 -03005063 {"i915_edp_psr_status", i915_edp_psr_status, 0},
Rodrigo Vivid2e216d2014-01-24 13:36:17 -02005064 {"i915_sink_crc_eDP1", i915_sink_crc, 0},
Jesse Barnesec013e72013-08-20 10:29:23 +01005065 {"i915_energy_uJ", i915_energy_uJ, 0},
Damien Lespiau6455c872015-06-04 18:23:57 +01005066 {"i915_runtime_pm_status", i915_runtime_pm_status, 0},
Imre Deak1da51582013-11-25 17:15:35 +02005067 {"i915_power_domain_info", i915_power_domain_info, 0},
Jesse Barnes53f5e3c2014-02-07 12:48:15 -08005068 {"i915_display_info", i915_display_info, 0},
Ben Widawskye04934c2014-06-30 09:53:42 -07005069 {"i915_semaphore_status", i915_semaphore_status, 0},
Daniel Vetter728e29d2014-06-25 22:01:53 +03005070 {"i915_shared_dplls_info", i915_shared_dplls_info, 0},
Dave Airlie11bed9582014-05-12 15:22:27 +10005071 {"i915_dp_mst_info", i915_dp_mst_info, 0},
Damien Lespiau1ed1ef92014-08-30 16:50:59 +01005072 {"i915_wa_registers", i915_wa_registers, 0},
Damien Lespiauc5511e42014-11-04 17:06:51 +00005073 {"i915_ddb_info", i915_ddb_info, 0},
Jeff McGee38732182015-02-13 10:27:54 -06005074 {"i915_sseu_status", i915_sseu_status, 0},
Vandana Kannana54746e2015-03-03 20:53:10 +05305075 {"i915_drrs_status", i915_drrs_status, 0},
Chris Wilson1854d5c2015-04-07 16:20:32 +01005076 {"i915_rps_boost_info", i915_rps_boost_info, 0},
Ben Gamari20172632009-02-17 20:08:50 -05005077};
Ben Gamari27c202a2009-07-01 22:26:52 -04005078#define I915_DEBUGFS_ENTRIES ARRAY_SIZE(i915_debugfs_list)
Ben Gamari20172632009-02-17 20:08:50 -05005079
Lespiau, Damien06c5bf82013-10-17 19:09:56 +01005080static const struct i915_debugfs_files {
Daniel Vetter34b96742013-07-04 20:49:44 +02005081 const char *name;
5082 const struct file_operations *fops;
5083} i915_debugfs_files[] = {
5084 {"i915_wedged", &i915_wedged_fops},
5085 {"i915_max_freq", &i915_max_freq_fops},
5086 {"i915_min_freq", &i915_min_freq_fops},
5087 {"i915_cache_sharing", &i915_cache_sharing_fops},
5088 {"i915_ring_stop", &i915_ring_stop_fops},
Chris Wilson094f9a52013-09-25 17:34:55 +01005089 {"i915_ring_missed_irq", &i915_ring_missed_irq_fops},
5090 {"i915_ring_test_irq", &i915_ring_test_irq_fops},
Daniel Vetter34b96742013-07-04 20:49:44 +02005091 {"i915_gem_drop_caches", &i915_drop_caches_fops},
5092 {"i915_error_state", &i915_error_state_fops},
5093 {"i915_next_seqno", &i915_next_seqno_fops},
Damien Lespiaubd9db022013-10-15 18:55:36 +01005094 {"i915_display_crc_ctl", &i915_display_crc_ctl_fops},
Ville Syrjälä369a1342014-01-22 14:36:08 +02005095 {"i915_pri_wm_latency", &i915_pri_wm_latency_fops},
5096 {"i915_spr_wm_latency", &i915_spr_wm_latency_fops},
5097 {"i915_cur_wm_latency", &i915_cur_wm_latency_fops},
Rodrigo Vivida46f932014-08-01 02:04:45 -07005098 {"i915_fbc_false_color", &i915_fbc_fc_fops},
Todd Previteeb3394fa2015-04-18 00:04:19 -07005099 {"i915_dp_test_data", &i915_displayport_test_data_fops},
5100 {"i915_dp_test_type", &i915_displayport_test_type_fops},
5101 {"i915_dp_test_active", &i915_displayport_test_active_fops}
Daniel Vetter34b96742013-07-04 20:49:44 +02005102};
5103
Damien Lespiau07144422013-10-15 18:55:40 +01005104void intel_display_crc_init(struct drm_device *dev)
5105{
5106 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterb3783602013-11-14 11:30:42 +01005107 enum pipe pipe;
Damien Lespiau07144422013-10-15 18:55:40 +01005108
Damien Lespiau055e3932014-08-18 13:49:10 +01005109 for_each_pipe(dev_priv, pipe) {
Daniel Vetterb3783602013-11-14 11:30:42 +01005110 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe];
Damien Lespiau07144422013-10-15 18:55:40 +01005111
Damien Lespiaud538bbd2013-10-21 14:29:30 +01005112 pipe_crc->opened = false;
5113 spin_lock_init(&pipe_crc->lock);
Damien Lespiau07144422013-10-15 18:55:40 +01005114 init_waitqueue_head(&pipe_crc->wq);
5115 }
5116}
5117
Ben Gamari27c202a2009-07-01 22:26:52 -04005118int i915_debugfs_init(struct drm_minor *minor)
Ben Gamari20172632009-02-17 20:08:50 -05005119{
Daniel Vetter34b96742013-07-04 20:49:44 +02005120 int ret, i;
Chris Wilsonf3cd4742009-10-13 22:20:20 +01005121
Ben Widawsky6d794d42011-04-25 11:25:56 -07005122 ret = i915_forcewake_create(minor->debugfs_root, minor);
5123 if (ret)
5124 return ret;
Daniel Vetter6a9c3082011-12-14 13:57:11 +01005125
Damien Lespiau07144422013-10-15 18:55:40 +01005126 for (i = 0; i < ARRAY_SIZE(i915_pipe_crc_data); i++) {
5127 ret = i915_pipe_crc_create(minor->debugfs_root, minor, i);
5128 if (ret)
5129 return ret;
5130 }
5131
Daniel Vetter34b96742013-07-04 20:49:44 +02005132 for (i = 0; i < ARRAY_SIZE(i915_debugfs_files); i++) {
5133 ret = i915_debugfs_create(minor->debugfs_root, minor,
5134 i915_debugfs_files[i].name,
5135 i915_debugfs_files[i].fops);
5136 if (ret)
5137 return ret;
5138 }
Mika Kuoppala40633212012-12-04 15:12:00 +02005139
Ben Gamari27c202a2009-07-01 22:26:52 -04005140 return drm_debugfs_create_files(i915_debugfs_list,
5141 I915_DEBUGFS_ENTRIES,
Ben Gamari20172632009-02-17 20:08:50 -05005142 minor->debugfs_root, minor);
5143}
5144
Ben Gamari27c202a2009-07-01 22:26:52 -04005145void i915_debugfs_cleanup(struct drm_minor *minor)
Ben Gamari20172632009-02-17 20:08:50 -05005146{
Daniel Vetter34b96742013-07-04 20:49:44 +02005147 int i;
5148
Ben Gamari27c202a2009-07-01 22:26:52 -04005149 drm_debugfs_remove_files(i915_debugfs_list,
5150 I915_DEBUGFS_ENTRIES, minor);
Damien Lespiau07144422013-10-15 18:55:40 +01005151
Ben Widawsky6d794d42011-04-25 11:25:56 -07005152 drm_debugfs_remove_files((struct drm_info_list *) &i915_forcewake_fops,
5153 1, minor);
Damien Lespiau07144422013-10-15 18:55:40 +01005154
Daniel Vettere309a992013-10-16 22:55:51 +02005155 for (i = 0; i < ARRAY_SIZE(i915_pipe_crc_data); i++) {
Damien Lespiau07144422013-10-15 18:55:40 +01005156 struct drm_info_list *info_list =
5157 (struct drm_info_list *)&i915_pipe_crc_data[i];
5158
5159 drm_debugfs_remove_files(info_list, 1, minor);
5160 }
5161
Daniel Vetter34b96742013-07-04 20:49:44 +02005162 for (i = 0; i < ARRAY_SIZE(i915_debugfs_files); i++) {
5163 struct drm_info_list *info_list =
5164 (struct drm_info_list *) i915_debugfs_files[i].fops;
5165
5166 drm_debugfs_remove_files(info_list, 1, minor);
5167 }
Ben Gamari20172632009-02-17 20:08:50 -05005168}
Jani Nikulaaa7471d2015-04-01 11:15:21 +03005169
5170struct dpcd_block {
5171 /* DPCD dump start address. */
5172 unsigned int offset;
5173 /* DPCD dump end address, inclusive. If unset, .size will be used. */
5174 unsigned int end;
5175 /* DPCD dump size. Used if .end is unset. If unset, defaults to 1. */
5176 size_t size;
5177 /* Only valid for eDP. */
5178 bool edp;
5179};
5180
5181static const struct dpcd_block i915_dpcd_debug[] = {
5182 { .offset = DP_DPCD_REV, .size = DP_RECEIVER_CAP_SIZE },
5183 { .offset = DP_PSR_SUPPORT, .end = DP_PSR_CAPS },
5184 { .offset = DP_DOWNSTREAM_PORT_0, .size = 16 },
5185 { .offset = DP_LINK_BW_SET, .end = DP_EDP_CONFIGURATION_SET },
5186 { .offset = DP_SINK_COUNT, .end = DP_ADJUST_REQUEST_LANE2_3 },
5187 { .offset = DP_SET_POWER },
5188 { .offset = DP_EDP_DPCD_REV },
5189 { .offset = DP_EDP_GENERAL_CAP_1, .end = DP_EDP_GENERAL_CAP_3 },
5190 { .offset = DP_EDP_DISPLAY_CONTROL_REGISTER, .end = DP_EDP_BACKLIGHT_FREQ_CAP_MAX_LSB },
5191 { .offset = DP_EDP_DBC_MINIMUM_BRIGHTNESS_SET, .end = DP_EDP_DBC_MAXIMUM_BRIGHTNESS_SET },
5192};
5193
5194static int i915_dpcd_show(struct seq_file *m, void *data)
5195{
5196 struct drm_connector *connector = m->private;
5197 struct intel_dp *intel_dp =
5198 enc_to_intel_dp(&intel_attached_encoder(connector)->base);
5199 uint8_t buf[16];
5200 ssize_t err;
5201 int i;
5202
Mika Kuoppala5c1a8872015-05-15 13:09:21 +03005203 if (connector->status != connector_status_connected)
5204 return -ENODEV;
5205
Jani Nikulaaa7471d2015-04-01 11:15:21 +03005206 for (i = 0; i < ARRAY_SIZE(i915_dpcd_debug); i++) {
5207 const struct dpcd_block *b = &i915_dpcd_debug[i];
5208 size_t size = b->end ? b->end - b->offset + 1 : (b->size ?: 1);
5209
5210 if (b->edp &&
5211 connector->connector_type != DRM_MODE_CONNECTOR_eDP)
5212 continue;
5213
5214 /* low tech for now */
5215 if (WARN_ON(size > sizeof(buf)))
5216 continue;
5217
5218 err = drm_dp_dpcd_read(&intel_dp->aux, b->offset, buf, size);
5219 if (err <= 0) {
5220 DRM_ERROR("dpcd read (%zu bytes at %u) failed (%zd)\n",
5221 size, b->offset, err);
5222 continue;
5223 }
5224
5225 seq_printf(m, "%04x: %*ph\n", b->offset, (int) size, buf);
kbuild test robotb3f9d7d2015-04-16 18:34:06 +08005226 }
Jani Nikulaaa7471d2015-04-01 11:15:21 +03005227
5228 return 0;
5229}
5230
5231static int i915_dpcd_open(struct inode *inode, struct file *file)
5232{
5233 return single_open(file, i915_dpcd_show, inode->i_private);
5234}
5235
5236static const struct file_operations i915_dpcd_fops = {
5237 .owner = THIS_MODULE,
5238 .open = i915_dpcd_open,
5239 .read = seq_read,
5240 .llseek = seq_lseek,
5241 .release = single_release,
5242};
5243
5244/**
5245 * i915_debugfs_connector_add - add i915 specific connector debugfs files
5246 * @connector: pointer to a registered drm_connector
5247 *
5248 * Cleanup will be done by drm_connector_unregister() through a call to
5249 * drm_debugfs_connector_remove().
5250 *
5251 * Returns 0 on success, negative error codes on error.
5252 */
5253int i915_debugfs_connector_add(struct drm_connector *connector)
5254{
5255 struct dentry *root = connector->debugfs_entry;
5256
5257 /* The connector must have been registered beforehands. */
5258 if (!root)
5259 return -ENODEV;
5260
5261 if (connector->connector_type == DRM_MODE_CONNECTOR_DisplayPort ||
5262 connector->connector_type == DRM_MODE_CONNECTOR_eDP)
5263 debugfs_create_file("i915_dpcd", S_IRUGO, root, connector,
5264 &i915_dpcd_fops);
5265
5266 return 0;
5267}