blob: 8a11085e004316fc86d28478f0b29b16d0508911 [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>
Chris Wilsonf3cd4742009-10-13 22:20:20 +010030#include <linux/debugfs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Paul Gortmaker2d1a8a42011-08-30 18:16:33 -040032#include <linux/export.h>
David Howells760285e2012-10-02 18:01:07 +010033#include <drm/drmP.h>
Simon Farnsworth4e5359c2010-09-01 17:47:52 +010034#include "intel_drv.h"
Chris Wilsone5c65262010-11-01 11:35:28 +000035#include "intel_ringbuffer.h"
David Howells760285e2012-10-02 18:01:07 +010036#include <drm/i915_drm.h>
Ben Gamari20172632009-02-17 20:08:50 -050037#include "i915_drv.h"
38
39#define DRM_I915_RING_DEBUG 1
40
41
42#if defined(CONFIG_DEBUG_FS)
43
Chris Wilsonf13d3f72010-09-20 17:36:15 +010044enum {
Chris Wilson69dc4982010-10-19 10:36:51 +010045 ACTIVE_LIST,
Chris Wilsonf13d3f72010-09-20 17:36:15 +010046 INACTIVE_LIST,
Chris Wilsond21d5972010-09-26 11:19:33 +010047 PINNED_LIST,
Chris Wilsonf13d3f72010-09-20 17:36:15 +010048};
Ben Gamari433e12f2009-02-17 20:08:51 -050049
Chris Wilson70d39fe2010-08-25 16:03:34 +010050static const char *yesno(int v)
51{
52 return v ? "yes" : "no";
53}
54
55static int i915_capabilities(struct seq_file *m, void *data)
56{
57 struct drm_info_node *node = (struct drm_info_node *) m->private;
58 struct drm_device *dev = node->minor->dev;
59 const struct intel_device_info *info = INTEL_INFO(dev);
60
61 seq_printf(m, "gen: %d\n", info->gen);
Paulo Zanoni03d00ac2011-10-14 18:17:41 -030062 seq_printf(m, "pch: %d\n", INTEL_PCH_TYPE(dev));
Daniel Vetterc96ea642012-08-08 22:01:51 +020063#define DEV_INFO_FLAG(x) seq_printf(m, #x ": %s\n", yesno(info->x))
64#define DEV_INFO_SEP ;
65 DEV_INFO_FLAGS;
66#undef DEV_INFO_FLAG
67#undef DEV_INFO_SEP
Chris Wilson70d39fe2010-08-25 16:03:34 +010068
69 return 0;
70}
Ben Gamari433e12f2009-02-17 20:08:51 -050071
Chris Wilson05394f32010-11-08 19:18:58 +000072static const char *get_pin_flag(struct drm_i915_gem_object *obj)
Chris Wilsona6172a82009-02-11 14:26:38 +000073{
Chris Wilson05394f32010-11-08 19:18:58 +000074 if (obj->user_pin_count > 0)
Chris Wilsona6172a82009-02-11 14:26:38 +000075 return "P";
Chris Wilson05394f32010-11-08 19:18:58 +000076 else if (obj->pin_count > 0)
Chris Wilsona6172a82009-02-11 14:26:38 +000077 return "p";
78 else
79 return " ";
80}
81
Chris Wilson05394f32010-11-08 19:18:58 +000082static const char *get_tiling_flag(struct drm_i915_gem_object *obj)
Chris Wilsona6172a82009-02-11 14:26:38 +000083{
Akshay Joshi0206e352011-08-16 15:34:10 -040084 switch (obj->tiling_mode) {
85 default:
86 case I915_TILING_NONE: return " ";
87 case I915_TILING_X: return "X";
88 case I915_TILING_Y: return "Y";
89 }
Chris Wilsona6172a82009-02-11 14:26:38 +000090}
91
Chris Wilson93dfb402011-03-29 16:59:50 -070092static const char *cache_level_str(int type)
Chris Wilson08c18322011-01-10 00:00:24 +000093{
94 switch (type) {
Chris Wilson93dfb402011-03-29 16:59:50 -070095 case I915_CACHE_NONE: return " uncached";
96 case I915_CACHE_LLC: return " snooped (LLC)";
97 case I915_CACHE_LLC_MLC: return " snooped (LLC+MLC)";
Chris Wilson08c18322011-01-10 00:00:24 +000098 default: return "";
99 }
100}
101
Chris Wilson37811fc2010-08-25 22:45:57 +0100102static void
103describe_obj(struct seq_file *m, struct drm_i915_gem_object *obj)
104{
Chris Wilson0201f1e2012-07-20 12:41:01 +0100105 seq_printf(m, "%p: %s%s %8zdKiB %04x %04x %d %d %d%s%s%s",
Chris Wilson37811fc2010-08-25 22:45:57 +0100106 &obj->base,
107 get_pin_flag(obj),
108 get_tiling_flag(obj),
Eric Anholta05a5862011-12-20 08:54:15 -0800109 obj->base.size / 1024,
Chris Wilson37811fc2010-08-25 22:45:57 +0100110 obj->base.read_domains,
111 obj->base.write_domain,
Chris Wilson0201f1e2012-07-20 12:41:01 +0100112 obj->last_read_seqno,
113 obj->last_write_seqno,
Chris Wilsoncaea7472010-11-12 13:53:37 +0000114 obj->last_fenced_seqno,
Chris Wilson93dfb402011-03-29 16:59:50 -0700115 cache_level_str(obj->cache_level),
Chris Wilson37811fc2010-08-25 22:45:57 +0100116 obj->dirty ? " dirty" : "",
117 obj->madv == I915_MADV_DONTNEED ? " purgeable" : "");
118 if (obj->base.name)
119 seq_printf(m, " (name: %d)", obj->base.name);
Chris Wilsonc110a6d2012-08-11 15:41:02 +0100120 if (obj->pin_count)
121 seq_printf(m, " (pinned x %d)", obj->pin_count);
Chris Wilson37811fc2010-08-25 22:45:57 +0100122 if (obj->fence_reg != I915_FENCE_REG_NONE)
123 seq_printf(m, " (fence: %d)", obj->fence_reg);
124 if (obj->gtt_space != NULL)
Chris Wilsona00b10c2010-09-24 21:15:47 +0100125 seq_printf(m, " (gtt offset: %08x, size: %08x)",
126 obj->gtt_offset, (unsigned int)obj->gtt_space->size);
Chris Wilson6299f992010-11-24 12:23:44 +0000127 if (obj->pin_mappable || obj->fault_mappable) {
128 char s[3], *t = s;
129 if (obj->pin_mappable)
130 *t++ = 'p';
131 if (obj->fault_mappable)
132 *t++ = 'f';
133 *t = '\0';
134 seq_printf(m, " (%s mappable)", s);
135 }
Chris Wilson69dc4982010-10-19 10:36:51 +0100136 if (obj->ring != NULL)
137 seq_printf(m, " (%s)", obj->ring->name);
Chris Wilson37811fc2010-08-25 22:45:57 +0100138}
139
Ben Gamari433e12f2009-02-17 20:08:51 -0500140static int i915_gem_object_list_info(struct seq_file *m, void *data)
Ben Gamari20172632009-02-17 20:08:50 -0500141{
142 struct drm_info_node *node = (struct drm_info_node *) m->private;
Ben Gamari433e12f2009-02-17 20:08:51 -0500143 uintptr_t list = (uintptr_t) node->info_ent->data;
144 struct list_head *head;
Ben Gamari20172632009-02-17 20:08:50 -0500145 struct drm_device *dev = node->minor->dev;
146 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +0000147 struct drm_i915_gem_object *obj;
Chris Wilson8f2480f2010-09-26 11:44:19 +0100148 size_t total_obj_size, total_gtt_size;
149 int count, ret;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100150
151 ret = mutex_lock_interruptible(&dev->struct_mutex);
152 if (ret)
153 return ret;
Ben Gamari20172632009-02-17 20:08:50 -0500154
Ben Gamari433e12f2009-02-17 20:08:51 -0500155 switch (list) {
156 case ACTIVE_LIST:
157 seq_printf(m, "Active:\n");
Chris Wilson69dc4982010-10-19 10:36:51 +0100158 head = &dev_priv->mm.active_list;
Ben Gamari433e12f2009-02-17 20:08:51 -0500159 break;
160 case INACTIVE_LIST:
Ben Gamaria17458f2009-07-01 15:01:36 -0400161 seq_printf(m, "Inactive:\n");
Ben Gamari433e12f2009-02-17 20:08:51 -0500162 head = &dev_priv->mm.inactive_list;
163 break;
Ben Gamari433e12f2009-02-17 20:08:51 -0500164 default:
Chris Wilsonde227ef2010-07-03 07:58:38 +0100165 mutex_unlock(&dev->struct_mutex);
166 return -EINVAL;
Ben Gamari433e12f2009-02-17 20:08:51 -0500167 }
168
Chris Wilson8f2480f2010-09-26 11:44:19 +0100169 total_obj_size = total_gtt_size = count = 0;
Chris Wilson05394f32010-11-08 19:18:58 +0000170 list_for_each_entry(obj, head, mm_list) {
Chris Wilson37811fc2010-08-25 22:45:57 +0100171 seq_printf(m, " ");
Chris Wilson05394f32010-11-08 19:18:58 +0000172 describe_obj(m, obj);
Eric Anholtf4ceda82009-02-17 23:53:41 -0800173 seq_printf(m, "\n");
Chris Wilson05394f32010-11-08 19:18:58 +0000174 total_obj_size += obj->base.size;
175 total_gtt_size += obj->gtt_space->size;
Chris Wilson8f2480f2010-09-26 11:44:19 +0100176 count++;
Ben Gamari20172632009-02-17 20:08:50 -0500177 }
Chris Wilsonde227ef2010-07-03 07:58:38 +0100178 mutex_unlock(&dev->struct_mutex);
Carl Worth5e118f42009-03-20 11:54:25 -0700179
Chris Wilson8f2480f2010-09-26 11:44:19 +0100180 seq_printf(m, "Total %d objects, %zu bytes, %zu GTT size\n",
181 count, total_obj_size, total_gtt_size);
Ben Gamari20172632009-02-17 20:08:50 -0500182 return 0;
183}
184
Chris Wilson6299f992010-11-24 12:23:44 +0000185#define count_objects(list, member) do { \
186 list_for_each_entry(obj, list, member) { \
187 size += obj->gtt_space->size; \
188 ++count; \
189 if (obj->map_and_fenceable) { \
190 mappable_size += obj->gtt_space->size; \
191 ++mappable_count; \
192 } \
193 } \
Akshay Joshi0206e352011-08-16 15:34:10 -0400194} while (0)
Chris Wilson6299f992010-11-24 12:23:44 +0000195
Chris Wilson73aa8082010-09-30 11:46:12 +0100196static int i915_gem_object_info(struct seq_file *m, void* data)
197{
198 struct drm_info_node *node = (struct drm_info_node *) m->private;
199 struct drm_device *dev = node->minor->dev;
200 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb7abb712012-08-20 11:33:30 +0200201 u32 count, mappable_count, purgeable_count;
202 size_t size, mappable_size, purgeable_size;
Chris Wilson6299f992010-11-24 12:23:44 +0000203 struct drm_i915_gem_object *obj;
Chris Wilson73aa8082010-09-30 11:46:12 +0100204 int ret;
205
206 ret = mutex_lock_interruptible(&dev->struct_mutex);
207 if (ret)
208 return ret;
209
Chris Wilson6299f992010-11-24 12:23:44 +0000210 seq_printf(m, "%u objects, %zu bytes\n",
211 dev_priv->mm.object_count,
212 dev_priv->mm.object_memory);
213
214 size = count = mappable_size = mappable_count = 0;
Chris Wilson6c085a72012-08-20 11:40:46 +0200215 count_objects(&dev_priv->mm.bound_list, gtt_list);
Chris Wilson6299f992010-11-24 12:23:44 +0000216 seq_printf(m, "%u [%u] objects, %zu [%zu] bytes in gtt\n",
217 count, mappable_count, size, mappable_size);
218
219 size = count = mappable_size = mappable_count = 0;
220 count_objects(&dev_priv->mm.active_list, mm_list);
Chris Wilson6299f992010-11-24 12:23:44 +0000221 seq_printf(m, " %u [%u] active objects, %zu [%zu] bytes\n",
222 count, mappable_count, size, mappable_size);
223
224 size = count = mappable_size = mappable_count = 0;
Chris Wilson6299f992010-11-24 12:23:44 +0000225 count_objects(&dev_priv->mm.inactive_list, mm_list);
226 seq_printf(m, " %u [%u] inactive objects, %zu [%zu] bytes\n",
227 count, mappable_count, size, mappable_size);
228
Chris Wilsonb7abb712012-08-20 11:33:30 +0200229 size = count = purgeable_size = purgeable_count = 0;
230 list_for_each_entry(obj, &dev_priv->mm.unbound_list, gtt_list) {
Chris Wilson6c085a72012-08-20 11:40:46 +0200231 size += obj->base.size, ++count;
Chris Wilsonb7abb712012-08-20 11:33:30 +0200232 if (obj->madv == I915_MADV_DONTNEED)
233 purgeable_size += obj->base.size, ++purgeable_count;
234 }
Chris Wilson6c085a72012-08-20 11:40:46 +0200235 seq_printf(m, "%u unbound objects, %zu bytes\n", count, size);
236
Chris Wilson6299f992010-11-24 12:23:44 +0000237 size = count = mappable_size = mappable_count = 0;
Chris Wilson6c085a72012-08-20 11:40:46 +0200238 list_for_each_entry(obj, &dev_priv->mm.bound_list, gtt_list) {
Chris Wilson6299f992010-11-24 12:23:44 +0000239 if (obj->fault_mappable) {
240 size += obj->gtt_space->size;
241 ++count;
242 }
243 if (obj->pin_mappable) {
244 mappable_size += obj->gtt_space->size;
245 ++mappable_count;
246 }
Chris Wilsonb7abb712012-08-20 11:33:30 +0200247 if (obj->madv == I915_MADV_DONTNEED) {
248 purgeable_size += obj->base.size;
249 ++purgeable_count;
250 }
Chris Wilson6299f992010-11-24 12:23:44 +0000251 }
Chris Wilsonb7abb712012-08-20 11:33:30 +0200252 seq_printf(m, "%u purgeable objects, %zu bytes\n",
253 purgeable_count, purgeable_size);
Chris Wilson6299f992010-11-24 12:23:44 +0000254 seq_printf(m, "%u pinned mappable objects, %zu bytes\n",
255 mappable_count, mappable_size);
256 seq_printf(m, "%u fault mappable objects, %zu bytes\n",
257 count, size);
258
259 seq_printf(m, "%zu [%zu] gtt total\n",
260 dev_priv->mm.gtt_total, dev_priv->mm.mappable_gtt_total);
Chris Wilson73aa8082010-09-30 11:46:12 +0100261
262 mutex_unlock(&dev->struct_mutex);
263
264 return 0;
265}
266
Chris Wilson08c18322011-01-10 00:00:24 +0000267static int i915_gem_gtt_info(struct seq_file *m, void* data)
268{
269 struct drm_info_node *node = (struct drm_info_node *) m->private;
270 struct drm_device *dev = node->minor->dev;
Chris Wilson1b502472012-04-24 15:47:30 +0100271 uintptr_t list = (uintptr_t) node->info_ent->data;
Chris Wilson08c18322011-01-10 00:00:24 +0000272 struct drm_i915_private *dev_priv = dev->dev_private;
273 struct drm_i915_gem_object *obj;
274 size_t total_obj_size, total_gtt_size;
275 int count, ret;
276
277 ret = mutex_lock_interruptible(&dev->struct_mutex);
278 if (ret)
279 return ret;
280
281 total_obj_size = total_gtt_size = count = 0;
Chris Wilson6c085a72012-08-20 11:40:46 +0200282 list_for_each_entry(obj, &dev_priv->mm.bound_list, gtt_list) {
Chris Wilson1b502472012-04-24 15:47:30 +0100283 if (list == PINNED_LIST && obj->pin_count == 0)
284 continue;
285
Chris Wilson08c18322011-01-10 00:00:24 +0000286 seq_printf(m, " ");
287 describe_obj(m, obj);
288 seq_printf(m, "\n");
289 total_obj_size += obj->base.size;
290 total_gtt_size += obj->gtt_space->size;
291 count++;
292 }
293
294 mutex_unlock(&dev->struct_mutex);
295
296 seq_printf(m, "Total %d objects, %zu bytes, %zu GTT size\n",
297 count, total_obj_size, total_gtt_size);
298
299 return 0;
300}
301
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100302static int i915_gem_pageflip_info(struct seq_file *m, void *data)
303{
304 struct drm_info_node *node = (struct drm_info_node *) m->private;
305 struct drm_device *dev = node->minor->dev;
306 unsigned long flags;
307 struct intel_crtc *crtc;
308
309 list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800310 const char pipe = pipe_name(crtc->pipe);
311 const char plane = plane_name(crtc->plane);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100312 struct intel_unpin_work *work;
313
314 spin_lock_irqsave(&dev->event_lock, flags);
315 work = crtc->unpin_work;
316 if (work == NULL) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800317 seq_printf(m, "No flip due on pipe %c (plane %c)\n",
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100318 pipe, plane);
319 } else {
Chris Wilsone7d841c2012-12-03 11:36:30 +0000320 if (atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800321 seq_printf(m, "Flip queued on pipe %c (plane %c)\n",
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100322 pipe, plane);
323 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800324 seq_printf(m, "Flip pending (waiting for vsync) on pipe %c (plane %c)\n",
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100325 pipe, plane);
326 }
327 if (work->enable_stall_check)
328 seq_printf(m, "Stall check enabled, ");
329 else
330 seq_printf(m, "Stall check waiting for page flip ioctl, ");
Chris Wilsone7d841c2012-12-03 11:36:30 +0000331 seq_printf(m, "%d prepares\n", atomic_read(&work->pending));
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100332
333 if (work->old_fb_obj) {
Chris Wilson05394f32010-11-08 19:18:58 +0000334 struct drm_i915_gem_object *obj = work->old_fb_obj;
335 if (obj)
336 seq_printf(m, "Old framebuffer gtt_offset 0x%08x\n", obj->gtt_offset);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100337 }
338 if (work->pending_flip_obj) {
Chris Wilson05394f32010-11-08 19:18:58 +0000339 struct drm_i915_gem_object *obj = work->pending_flip_obj;
340 if (obj)
341 seq_printf(m, "New framebuffer gtt_offset 0x%08x\n", obj->gtt_offset);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100342 }
343 }
344 spin_unlock_irqrestore(&dev->event_lock, flags);
345 }
346
347 return 0;
348}
349
Ben Gamari20172632009-02-17 20:08:50 -0500350static int i915_gem_request_info(struct seq_file *m, void *data)
351{
352 struct drm_info_node *node = (struct drm_info_node *) m->private;
353 struct drm_device *dev = node->minor->dev;
354 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona2c7f6f2012-09-01 20:51:22 +0100355 struct intel_ring_buffer *ring;
Ben Gamari20172632009-02-17 20:08:50 -0500356 struct drm_i915_gem_request *gem_request;
Chris Wilsona2c7f6f2012-09-01 20:51:22 +0100357 int ret, count, i;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100358
359 ret = mutex_lock_interruptible(&dev->struct_mutex);
360 if (ret)
361 return ret;
Ben Gamari20172632009-02-17 20:08:50 -0500362
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100363 count = 0;
Chris Wilsona2c7f6f2012-09-01 20:51:22 +0100364 for_each_ring(ring, dev_priv, i) {
365 if (list_empty(&ring->request_list))
366 continue;
367
368 seq_printf(m, "%s requests:\n", ring->name);
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100369 list_for_each_entry(gem_request,
Chris Wilsona2c7f6f2012-09-01 20:51:22 +0100370 &ring->request_list,
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100371 list) {
372 seq_printf(m, " %d @ %d\n",
373 gem_request->seqno,
374 (int) (jiffies - gem_request->emitted_jiffies));
375 }
376 count++;
Ben Gamari20172632009-02-17 20:08:50 -0500377 }
Chris Wilsonde227ef2010-07-03 07:58:38 +0100378 mutex_unlock(&dev->struct_mutex);
379
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100380 if (count == 0)
381 seq_printf(m, "No requests\n");
382
Ben Gamari20172632009-02-17 20:08:50 -0500383 return 0;
384}
385
Chris Wilsonb2223492010-10-27 15:27:33 +0100386static void i915_ring_seqno_info(struct seq_file *m,
387 struct intel_ring_buffer *ring)
388{
389 if (ring->get_seqno) {
390 seq_printf(m, "Current sequence (%s): %d\n",
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100391 ring->name, ring->get_seqno(ring, false));
Chris Wilsonb2223492010-10-27 15:27:33 +0100392 }
393}
394
Ben Gamari20172632009-02-17 20:08:50 -0500395static int i915_gem_seqno_info(struct seq_file *m, void *data)
396{
397 struct drm_info_node *node = (struct drm_info_node *) m->private;
398 struct drm_device *dev = node->minor->dev;
399 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona2c7f6f2012-09-01 20:51:22 +0100400 struct intel_ring_buffer *ring;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000401 int ret, i;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100402
403 ret = mutex_lock_interruptible(&dev->struct_mutex);
404 if (ret)
405 return ret;
Ben Gamari20172632009-02-17 20:08:50 -0500406
Chris Wilsona2c7f6f2012-09-01 20:51:22 +0100407 for_each_ring(ring, dev_priv, i)
408 i915_ring_seqno_info(m, ring);
Chris Wilsonde227ef2010-07-03 07:58:38 +0100409
410 mutex_unlock(&dev->struct_mutex);
411
Ben Gamari20172632009-02-17 20:08:50 -0500412 return 0;
413}
414
415
416static int i915_interrupt_info(struct seq_file *m, void *data)
417{
418 struct drm_info_node *node = (struct drm_info_node *) m->private;
419 struct drm_device *dev = node->minor->dev;
420 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsona2c7f6f2012-09-01 20:51:22 +0100421 struct intel_ring_buffer *ring;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800422 int ret, i, pipe;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100423
424 ret = mutex_lock_interruptible(&dev->struct_mutex);
425 if (ret)
426 return ret;
Ben Gamari20172632009-02-17 20:08:50 -0500427
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700428 if (IS_VALLEYVIEW(dev)) {
429 seq_printf(m, "Display IER:\t%08x\n",
430 I915_READ(VLV_IER));
431 seq_printf(m, "Display IIR:\t%08x\n",
432 I915_READ(VLV_IIR));
433 seq_printf(m, "Display IIR_RW:\t%08x\n",
434 I915_READ(VLV_IIR_RW));
435 seq_printf(m, "Display IMR:\t%08x\n",
436 I915_READ(VLV_IMR));
437 for_each_pipe(pipe)
438 seq_printf(m, "Pipe %c stat:\t%08x\n",
439 pipe_name(pipe),
440 I915_READ(PIPESTAT(pipe)));
441
442 seq_printf(m, "Master IER:\t%08x\n",
443 I915_READ(VLV_MASTER_IER));
444
445 seq_printf(m, "Render IER:\t%08x\n",
446 I915_READ(GTIER));
447 seq_printf(m, "Render IIR:\t%08x\n",
448 I915_READ(GTIIR));
449 seq_printf(m, "Render IMR:\t%08x\n",
450 I915_READ(GTIMR));
451
452 seq_printf(m, "PM IER:\t\t%08x\n",
453 I915_READ(GEN6_PMIER));
454 seq_printf(m, "PM IIR:\t\t%08x\n",
455 I915_READ(GEN6_PMIIR));
456 seq_printf(m, "PM IMR:\t\t%08x\n",
457 I915_READ(GEN6_PMIMR));
458
459 seq_printf(m, "Port hotplug:\t%08x\n",
460 I915_READ(PORT_HOTPLUG_EN));
461 seq_printf(m, "DPFLIPSTAT:\t%08x\n",
462 I915_READ(VLV_DPFLIPSTAT));
463 seq_printf(m, "DPINVGTT:\t%08x\n",
464 I915_READ(DPINVGTT));
465
466 } else if (!HAS_PCH_SPLIT(dev)) {
Zhenyu Wang5f6a1692009-08-10 21:37:24 +0800467 seq_printf(m, "Interrupt enable: %08x\n",
468 I915_READ(IER));
469 seq_printf(m, "Interrupt identity: %08x\n",
470 I915_READ(IIR));
471 seq_printf(m, "Interrupt mask: %08x\n",
472 I915_READ(IMR));
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800473 for_each_pipe(pipe)
474 seq_printf(m, "Pipe %c stat: %08x\n",
475 pipe_name(pipe),
476 I915_READ(PIPESTAT(pipe)));
Zhenyu Wang5f6a1692009-08-10 21:37:24 +0800477 } else {
478 seq_printf(m, "North Display Interrupt enable: %08x\n",
479 I915_READ(DEIER));
480 seq_printf(m, "North Display Interrupt identity: %08x\n",
481 I915_READ(DEIIR));
482 seq_printf(m, "North Display Interrupt mask: %08x\n",
483 I915_READ(DEIMR));
484 seq_printf(m, "South Display Interrupt enable: %08x\n",
485 I915_READ(SDEIER));
486 seq_printf(m, "South Display Interrupt identity: %08x\n",
487 I915_READ(SDEIIR));
488 seq_printf(m, "South Display Interrupt mask: %08x\n",
489 I915_READ(SDEIMR));
490 seq_printf(m, "Graphics Interrupt enable: %08x\n",
491 I915_READ(GTIER));
492 seq_printf(m, "Graphics Interrupt identity: %08x\n",
493 I915_READ(GTIIR));
494 seq_printf(m, "Graphics Interrupt mask: %08x\n",
495 I915_READ(GTIMR));
496 }
Ben Gamari20172632009-02-17 20:08:50 -0500497 seq_printf(m, "Interrupts received: %d\n",
498 atomic_read(&dev_priv->irq_received));
Chris Wilsona2c7f6f2012-09-01 20:51:22 +0100499 for_each_ring(ring, dev_priv, i) {
Jesse Barnesda64c6f2011-08-09 09:17:46 -0700500 if (IS_GEN6(dev) || IS_GEN7(dev)) {
Chris Wilsona2c7f6f2012-09-01 20:51:22 +0100501 seq_printf(m,
502 "Graphics Interrupt mask (%s): %08x\n",
503 ring->name, I915_READ_IMR(ring));
Chris Wilson9862e602011-01-04 22:22:17 +0000504 }
Chris Wilsona2c7f6f2012-09-01 20:51:22 +0100505 i915_ring_seqno_info(m, ring);
Chris Wilson9862e602011-01-04 22:22:17 +0000506 }
Chris Wilsonde227ef2010-07-03 07:58:38 +0100507 mutex_unlock(&dev->struct_mutex);
508
Ben Gamari20172632009-02-17 20:08:50 -0500509 return 0;
510}
511
Chris Wilsona6172a82009-02-11 14:26:38 +0000512static int i915_gem_fence_regs_info(struct seq_file *m, void *data)
513{
514 struct drm_info_node *node = (struct drm_info_node *) m->private;
515 struct drm_device *dev = node->minor->dev;
516 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100517 int i, ret;
518
519 ret = mutex_lock_interruptible(&dev->struct_mutex);
520 if (ret)
521 return ret;
Chris Wilsona6172a82009-02-11 14:26:38 +0000522
523 seq_printf(m, "Reserved fences = %d\n", dev_priv->fence_reg_start);
524 seq_printf(m, "Total fences = %d\n", dev_priv->num_fence_regs);
525 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +0000526 struct drm_i915_gem_object *obj = dev_priv->fence_regs[i].obj;
Chris Wilsona6172a82009-02-11 14:26:38 +0000527
Chris Wilson6c085a72012-08-20 11:40:46 +0200528 seq_printf(m, "Fence %d, pin count = %d, object = ",
529 i, dev_priv->fence_regs[i].pin_count);
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100530 if (obj == NULL)
531 seq_printf(m, "unused");
532 else
Chris Wilson05394f32010-11-08 19:18:58 +0000533 describe_obj(m, obj);
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100534 seq_printf(m, "\n");
Chris Wilsona6172a82009-02-11 14:26:38 +0000535 }
536
Chris Wilson05394f32010-11-08 19:18:58 +0000537 mutex_unlock(&dev->struct_mutex);
Chris Wilsona6172a82009-02-11 14:26:38 +0000538 return 0;
539}
540
Ben Gamari20172632009-02-17 20:08:50 -0500541static int i915_hws_info(struct seq_file *m, void *data)
542{
543 struct drm_info_node *node = (struct drm_info_node *) m->private;
544 struct drm_device *dev = node->minor->dev;
545 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson4066c0a2010-10-29 21:00:54 +0100546 struct intel_ring_buffer *ring;
Chris Wilson311bd682011-01-13 19:06:50 +0000547 const volatile u32 __iomem *hws;
Chris Wilson4066c0a2010-10-29 21:00:54 +0100548 int i;
Ben Gamari20172632009-02-17 20:08:50 -0500549
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000550 ring = &dev_priv->ring[(uintptr_t)node->info_ent->data];
Chris Wilson311bd682011-01-13 19:06:50 +0000551 hws = (volatile u32 __iomem *)ring->status_page.page_addr;
Ben Gamari20172632009-02-17 20:08:50 -0500552 if (hws == NULL)
553 return 0;
554
555 for (i = 0; i < 4096 / sizeof(u32) / 4; i += 4) {
556 seq_printf(m, "0x%08x: 0x%08x 0x%08x 0x%08x 0x%08x\n",
557 i * 4,
558 hws[i], hws[i + 1], hws[i + 2], hws[i + 3]);
559 }
560 return 0;
561}
562
Chris Wilsone5c65262010-11-01 11:35:28 +0000563static const char *ring_str(int ring)
564{
565 switch (ring) {
Daniel Vetter96154f22011-12-14 13:57:00 +0100566 case RCS: return "render";
567 case VCS: return "bsd";
568 case BCS: return "blt";
Chris Wilsone5c65262010-11-01 11:35:28 +0000569 default: return "";
570 }
571}
572
Chris Wilson9df30792010-02-18 10:24:56 +0000573static const char *pin_flag(int pinned)
574{
575 if (pinned > 0)
576 return " P";
577 else if (pinned < 0)
578 return " p";
579 else
580 return "";
581}
582
583static const char *tiling_flag(int tiling)
584{
585 switch (tiling) {
586 default:
587 case I915_TILING_NONE: return "";
588 case I915_TILING_X: return " X";
589 case I915_TILING_Y: return " Y";
590 }
591}
592
593static const char *dirty_flag(int dirty)
594{
595 return dirty ? " dirty" : "";
596}
597
598static const char *purgeable_flag(int purgeable)
599{
600 return purgeable ? " purgeable" : "";
601}
602
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000603static void print_error_buffers(struct seq_file *m,
604 const char *name,
605 struct drm_i915_error_buffer *err,
606 int count)
607{
608 seq_printf(m, "%s [%d]:\n", name, count);
609
610 while (count--) {
Chris Wilson0201f1e2012-07-20 12:41:01 +0100611 seq_printf(m, " %08x %8u %04x %04x %x %x%s%s%s%s%s%s%s",
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000612 err->gtt_offset,
613 err->size,
614 err->read_domains,
615 err->write_domain,
Chris Wilson0201f1e2012-07-20 12:41:01 +0100616 err->rseqno, err->wseqno,
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000617 pin_flag(err->pinned),
618 tiling_flag(err->tiling),
619 dirty_flag(err->dirty),
620 purgeable_flag(err->purgeable),
Daniel Vetter96154f22011-12-14 13:57:00 +0100621 err->ring != -1 ? " " : "",
Chris Wilsona779e5a2011-01-09 21:07:49 +0000622 ring_str(err->ring),
Chris Wilson93dfb402011-03-29 16:59:50 -0700623 cache_level_str(err->cache_level));
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000624
625 if (err->name)
626 seq_printf(m, " (name: %d)", err->name);
627 if (err->fence_reg != I915_FENCE_REG_NONE)
628 seq_printf(m, " (fence: %d)", err->fence_reg);
629
630 seq_printf(m, "\n");
631 err++;
632 }
633}
634
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100635static void i915_ring_error_state(struct seq_file *m,
636 struct drm_device *dev,
637 struct drm_i915_error_state *error,
638 unsigned ring)
639{
Ben Widawskyec34a012012-04-03 23:03:00 -0700640 BUG_ON(ring >= I915_NUM_RINGS); /* shut up confused gcc */
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100641 seq_printf(m, "%s command stream:\n", ring_str(ring));
Daniel Vetterc1cd90e2011-12-14 13:57:02 +0100642 seq_printf(m, " HEAD: 0x%08x\n", error->head[ring]);
643 seq_printf(m, " TAIL: 0x%08x\n", error->tail[ring]);
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100644 seq_printf(m, " ACTHD: 0x%08x\n", error->acthd[ring]);
645 seq_printf(m, " IPEIR: 0x%08x\n", error->ipeir[ring]);
646 seq_printf(m, " IPEHR: 0x%08x\n", error->ipehr[ring]);
647 seq_printf(m, " INSTDONE: 0x%08x\n", error->instdone[ring]);
Ben Widawsky050ee912012-08-22 11:32:15 -0700648 if (ring == RCS && INTEL_INFO(dev)->gen >= 4)
Daniel Vetterc1cd90e2011-12-14 13:57:02 +0100649 seq_printf(m, " BBADDR: 0x%08llx\n", error->bbaddr);
Ben Widawsky050ee912012-08-22 11:32:15 -0700650
Daniel Vetterc1cd90e2011-12-14 13:57:02 +0100651 if (INTEL_INFO(dev)->gen >= 4)
652 seq_printf(m, " INSTPS: 0x%08x\n", error->instps[ring]);
653 seq_printf(m, " INSTPM: 0x%08x\n", error->instpm[ring]);
Daniel Vetter9d2f41f2012-04-02 21:41:45 +0200654 seq_printf(m, " FADDR: 0x%08x\n", error->faddr[ring]);
Daniel Vetter33f3f512011-12-14 13:57:39 +0100655 if (INTEL_INFO(dev)->gen >= 6) {
Chris Wilson12f55812012-07-05 17:14:01 +0100656 seq_printf(m, " RC PSMI: 0x%08x\n", error->rc_psmi[ring]);
Daniel Vetter33f3f512011-12-14 13:57:39 +0100657 seq_printf(m, " FAULT_REG: 0x%08x\n", error->fault_reg[ring]);
Chris Wilsondf2b23d2012-11-27 17:06:54 +0000658 seq_printf(m, " SYNC_0: 0x%08x [last synced 0x%08x]\n",
659 error->semaphore_mboxes[ring][0],
660 error->semaphore_seqno[ring][0]);
661 seq_printf(m, " SYNC_1: 0x%08x [last synced 0x%08x]\n",
662 error->semaphore_mboxes[ring][1],
663 error->semaphore_seqno[ring][1]);
Daniel Vetter33f3f512011-12-14 13:57:39 +0100664 }
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100665 seq_printf(m, " seqno: 0x%08x\n", error->seqno[ring]);
Ben Widawsky9574b3f2012-04-26 16:03:01 -0700666 seq_printf(m, " waiting: %s\n", yesno(error->waiting[ring]));
Daniel Vetter7e3b8732012-02-01 22:26:45 +0100667 seq_printf(m, " ring->head: 0x%08x\n", error->cpu_ring_head[ring]);
668 seq_printf(m, " ring->tail: 0x%08x\n", error->cpu_ring_tail[ring]);
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100669}
670
Daniel Vetterd5442302012-04-27 15:17:40 +0200671struct i915_error_state_file_priv {
672 struct drm_device *dev;
673 struct drm_i915_error_state *error;
674};
675
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700676static int i915_error_state(struct seq_file *m, void *unused)
677{
Daniel Vetterd5442302012-04-27 15:17:40 +0200678 struct i915_error_state_file_priv *error_priv = m->private;
679 struct drm_device *dev = error_priv->dev;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700680 drm_i915_private_t *dev_priv = dev->dev_private;
Daniel Vetterd5442302012-04-27 15:17:40 +0200681 struct drm_i915_error_state *error = error_priv->error;
Chris Wilsonb4519512012-05-11 14:29:30 +0100682 struct intel_ring_buffer *ring;
Chris Wilson52d39a22012-02-15 11:25:37 +0000683 int i, j, page, offset, elt;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700684
Daniel Vetter742cbee2012-04-27 15:17:39 +0200685 if (!error) {
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700686 seq_printf(m, "no error state collected\n");
Daniel Vetter742cbee2012-04-27 15:17:39 +0200687 return 0;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700688 }
689
Jesse Barnes8a905232009-07-11 16:48:03 -0400690 seq_printf(m, "Time: %ld s %ld us\n", error->time.tv_sec,
691 error->time.tv_usec);
Chris Wilson9df30792010-02-18 10:24:56 +0000692 seq_printf(m, "PCI ID: 0x%04x\n", dev->pci_device);
Chris Wilson1d8f38f2010-10-29 19:00:51 +0100693 seq_printf(m, "EIR: 0x%08x\n", error->eir);
Ben Widawskybe998e22012-04-26 16:03:00 -0700694 seq_printf(m, "IER: 0x%08x\n", error->ier);
Chris Wilson1d8f38f2010-10-29 19:00:51 +0100695 seq_printf(m, "PGTBL_ER: 0x%08x\n", error->pgtbl_er);
Ben Widawskyb9a39062012-06-04 14:42:52 -0700696 seq_printf(m, "CCID: 0x%08x\n", error->ccid);
Chris Wilson9df30792010-02-18 10:24:56 +0000697
Daniel Vetterbf3301a2011-05-12 22:17:12 +0100698 for (i = 0; i < dev_priv->num_fence_regs; i++)
Chris Wilson748ebc62010-10-24 10:28:47 +0100699 seq_printf(m, " fence[%d] = %08llx\n", i, error->fence[i]);
700
Ben Widawsky050ee912012-08-22 11:32:15 -0700701 for (i = 0; i < ARRAY_SIZE(error->extra_instdone); i++)
702 seq_printf(m, " INSTDONE_%d: 0x%08x\n", i, error->extra_instdone[i]);
703
Daniel Vetter33f3f512011-12-14 13:57:39 +0100704 if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100705 seq_printf(m, "ERROR: 0x%08x\n", error->error);
Daniel Vetter33f3f512011-12-14 13:57:39 +0100706 seq_printf(m, "DONE_REG: 0x%08x\n", error->done_reg);
707 }
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100708
Ben Widawsky71e172e2012-08-20 16:15:13 -0700709 if (INTEL_INFO(dev)->gen == 7)
710 seq_printf(m, "ERR_INT: 0x%08x\n", error->err_int);
711
Chris Wilsonb4519512012-05-11 14:29:30 +0100712 for_each_ring(ring, dev_priv, i)
713 i915_ring_error_state(m, dev, error, i);
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100714
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000715 if (error->active_bo)
716 print_error_buffers(m, "Active",
717 error->active_bo,
718 error->active_bo_count);
Chris Wilson9df30792010-02-18 10:24:56 +0000719
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000720 if (error->pinned_bo)
721 print_error_buffers(m, "Pinned",
722 error->pinned_bo,
723 error->pinned_bo_count);
Chris Wilson9df30792010-02-18 10:24:56 +0000724
Chris Wilson52d39a22012-02-15 11:25:37 +0000725 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
726 struct drm_i915_error_object *obj;
Chris Wilson9df30792010-02-18 10:24:56 +0000727
Chris Wilson52d39a22012-02-15 11:25:37 +0000728 if ((obj = error->ring[i].batchbuffer)) {
Chris Wilsonbcfb2e22011-01-07 21:06:07 +0000729 seq_printf(m, "%s --- gtt_offset = 0x%08x\n",
730 dev_priv->ring[i].name,
731 obj->gtt_offset);
Chris Wilson9df30792010-02-18 10:24:56 +0000732 offset = 0;
733 for (page = 0; page < obj->page_count; page++) {
734 for (elt = 0; elt < PAGE_SIZE/4; elt++) {
735 seq_printf(m, "%08x : %08x\n", offset, obj->pages[page][elt]);
736 offset += 4;
737 }
738 }
739 }
Chris Wilson9df30792010-02-18 10:24:56 +0000740
Chris Wilson52d39a22012-02-15 11:25:37 +0000741 if (error->ring[i].num_requests) {
742 seq_printf(m, "%s --- %d requests\n",
743 dev_priv->ring[i].name,
744 error->ring[i].num_requests);
745 for (j = 0; j < error->ring[i].num_requests; j++) {
Chris Wilsonee4f42b2012-02-15 11:25:38 +0000746 seq_printf(m, " seqno 0x%08x, emitted %ld, tail 0x%08x\n",
Chris Wilson52d39a22012-02-15 11:25:37 +0000747 error->ring[i].requests[j].seqno,
Chris Wilsonee4f42b2012-02-15 11:25:38 +0000748 error->ring[i].requests[j].jiffies,
749 error->ring[i].requests[j].tail);
Chris Wilson52d39a22012-02-15 11:25:37 +0000750 }
751 }
752
753 if ((obj = error->ring[i].ringbuffer)) {
Chris Wilsone2f973d2011-01-27 19:15:11 +0000754 seq_printf(m, "%s --- ringbuffer = 0x%08x\n",
755 dev_priv->ring[i].name,
756 obj->gtt_offset);
757 offset = 0;
758 for (page = 0; page < obj->page_count; page++) {
759 for (elt = 0; elt < PAGE_SIZE/4; elt++) {
760 seq_printf(m, "%08x : %08x\n",
761 offset,
762 obj->pages[page][elt]);
763 offset += 4;
764 }
Chris Wilson9df30792010-02-18 10:24:56 +0000765 }
766 }
767 }
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700768
Chris Wilson6ef3d422010-08-04 20:26:07 +0100769 if (error->overlay)
770 intel_overlay_print_error_state(m, error->overlay);
771
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +0000772 if (error->display)
773 intel_display_print_error_state(m, dev, error->display);
774
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700775 return 0;
776}
Ben Gamari6911a9b2009-04-02 11:24:54 -0700777
Daniel Vetterd5442302012-04-27 15:17:40 +0200778static ssize_t
779i915_error_state_write(struct file *filp,
780 const char __user *ubuf,
781 size_t cnt,
782 loff_t *ppos)
783{
784 struct seq_file *m = filp->private_data;
785 struct i915_error_state_file_priv *error_priv = m->private;
786 struct drm_device *dev = error_priv->dev;
Daniel Vetter22bcfc62012-08-09 15:07:02 +0200787 int ret;
Daniel Vetterd5442302012-04-27 15:17:40 +0200788
789 DRM_DEBUG_DRIVER("Resetting error state\n");
790
Daniel Vetter22bcfc62012-08-09 15:07:02 +0200791 ret = mutex_lock_interruptible(&dev->struct_mutex);
792 if (ret)
793 return ret;
794
Daniel Vetterd5442302012-04-27 15:17:40 +0200795 i915_destroy_error_state(dev);
796 mutex_unlock(&dev->struct_mutex);
797
798 return cnt;
799}
800
801static int i915_error_state_open(struct inode *inode, struct file *file)
802{
803 struct drm_device *dev = inode->i_private;
804 drm_i915_private_t *dev_priv = dev->dev_private;
805 struct i915_error_state_file_priv *error_priv;
806 unsigned long flags;
807
808 error_priv = kzalloc(sizeof(*error_priv), GFP_KERNEL);
809 if (!error_priv)
810 return -ENOMEM;
811
812 error_priv->dev = dev;
813
814 spin_lock_irqsave(&dev_priv->error_lock, flags);
815 error_priv->error = dev_priv->first_error;
816 if (error_priv->error)
817 kref_get(&error_priv->error->ref);
818 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
819
820 return single_open(file, i915_error_state, error_priv);
821}
822
823static int i915_error_state_release(struct inode *inode, struct file *file)
824{
825 struct seq_file *m = file->private_data;
826 struct i915_error_state_file_priv *error_priv = m->private;
827
828 if (error_priv->error)
829 kref_put(&error_priv->error->ref, i915_error_state_free);
830 kfree(error_priv);
831
832 return single_release(inode, file);
833}
834
835static const struct file_operations i915_error_state_fops = {
836 .owner = THIS_MODULE,
837 .open = i915_error_state_open,
838 .read = seq_read,
839 .write = i915_error_state_write,
840 .llseek = default_llseek,
841 .release = i915_error_state_release,
842};
843
Jesse Barnesf97108d2010-01-29 11:27:07 -0800844static int i915_rstdby_delays(struct seq_file *m, void *unused)
845{
846 struct drm_info_node *node = (struct drm_info_node *) m->private;
847 struct drm_device *dev = node->minor->dev;
848 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky616fdb52011-10-05 11:44:54 -0700849 u16 crstanddelay;
850 int ret;
851
852 ret = mutex_lock_interruptible(&dev->struct_mutex);
853 if (ret)
854 return ret;
855
856 crstanddelay = I915_READ16(CRSTANDVID);
857
858 mutex_unlock(&dev->struct_mutex);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800859
860 seq_printf(m, "w/ctx: %d, w/o ctx: %d\n", (crstanddelay >> 8) & 0x3f, (crstanddelay & 0x3f));
861
862 return 0;
863}
864
865static int i915_cur_delayinfo(struct seq_file *m, void *unused)
866{
867 struct drm_info_node *node = (struct drm_info_node *) m->private;
868 struct drm_device *dev = node->minor->dev;
869 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawskyd1ebd8162011-04-25 20:11:50 +0100870 int ret;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800871
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800872 if (IS_GEN5(dev)) {
873 u16 rgvswctl = I915_READ16(MEMSWCTL);
874 u16 rgvstat = I915_READ16(MEMSTAT_ILK);
875
876 seq_printf(m, "Requested P-state: %d\n", (rgvswctl >> 8) & 0xf);
877 seq_printf(m, "Requested VID: %d\n", rgvswctl & 0x3f);
878 seq_printf(m, "Current VID: %d\n", (rgvstat & MEMSTAT_VID_MASK) >>
879 MEMSTAT_VID_SHIFT);
880 seq_printf(m, "Current P-state: %d\n",
881 (rgvstat & MEMSTAT_PSTATE_MASK) >> MEMSTAT_PSTATE_SHIFT);
Jesse Barnes1c70c0c2011-06-29 13:34:36 -0700882 } else if (IS_GEN6(dev) || IS_GEN7(dev)) {
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800883 u32 gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS);
884 u32 rp_state_limits = I915_READ(GEN6_RP_STATE_LIMITS);
885 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
Jesse Barnesccab5c82011-01-18 15:49:25 -0800886 u32 rpstat;
887 u32 rpupei, rpcurup, rpprevup;
888 u32 rpdownei, rpcurdown, rpprevdown;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800889 int max_freq;
890
891 /* RPSTAT1 is in the GT power well */
Ben Widawskyd1ebd8162011-04-25 20:11:50 +0100892 ret = mutex_lock_interruptible(&dev->struct_mutex);
893 if (ret)
894 return ret;
895
Ben Widawskyfcca7922011-04-25 11:23:07 -0700896 gen6_gt_force_wake_get(dev_priv);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800897
Jesse Barnesccab5c82011-01-18 15:49:25 -0800898 rpstat = I915_READ(GEN6_RPSTAT1);
899 rpupei = I915_READ(GEN6_RP_CUR_UP_EI);
900 rpcurup = I915_READ(GEN6_RP_CUR_UP);
901 rpprevup = I915_READ(GEN6_RP_PREV_UP);
902 rpdownei = I915_READ(GEN6_RP_CUR_DOWN_EI);
903 rpcurdown = I915_READ(GEN6_RP_CUR_DOWN);
904 rpprevdown = I915_READ(GEN6_RP_PREV_DOWN);
905
Ben Widawskyd1ebd8162011-04-25 20:11:50 +0100906 gen6_gt_force_wake_put(dev_priv);
907 mutex_unlock(&dev->struct_mutex);
908
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800909 seq_printf(m, "GT_PERF_STATUS: 0x%08x\n", gt_perf_status);
Jesse Barnesccab5c82011-01-18 15:49:25 -0800910 seq_printf(m, "RPSTAT1: 0x%08x\n", rpstat);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800911 seq_printf(m, "Render p-state ratio: %d\n",
912 (gt_perf_status & 0xff00) >> 8);
913 seq_printf(m, "Render p-state VID: %d\n",
914 gt_perf_status & 0xff);
915 seq_printf(m, "Render p-state limit: %d\n",
916 rp_state_limits & 0xff);
Jesse Barnesccab5c82011-01-18 15:49:25 -0800917 seq_printf(m, "CAGF: %dMHz\n", ((rpstat & GEN6_CAGF_MASK) >>
Ben Widawskyc8735b02012-09-07 19:43:39 -0700918 GEN6_CAGF_SHIFT) * GT_FREQUENCY_MULTIPLIER);
Jesse Barnesccab5c82011-01-18 15:49:25 -0800919 seq_printf(m, "RP CUR UP EI: %dus\n", rpupei &
920 GEN6_CURICONT_MASK);
921 seq_printf(m, "RP CUR UP: %dus\n", rpcurup &
922 GEN6_CURBSYTAVG_MASK);
923 seq_printf(m, "RP PREV UP: %dus\n", rpprevup &
924 GEN6_CURBSYTAVG_MASK);
925 seq_printf(m, "RP CUR DOWN EI: %dus\n", rpdownei &
926 GEN6_CURIAVG_MASK);
927 seq_printf(m, "RP CUR DOWN: %dus\n", rpcurdown &
928 GEN6_CURBSYTAVG_MASK);
929 seq_printf(m, "RP PREV DOWN: %dus\n", rpprevdown &
930 GEN6_CURBSYTAVG_MASK);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800931
932 max_freq = (rp_state_cap & 0xff0000) >> 16;
933 seq_printf(m, "Lowest (RPN) frequency: %dMHz\n",
Ben Widawskyc8735b02012-09-07 19:43:39 -0700934 max_freq * GT_FREQUENCY_MULTIPLIER);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800935
936 max_freq = (rp_state_cap & 0xff00) >> 8;
937 seq_printf(m, "Nominal (RP1) frequency: %dMHz\n",
Ben Widawskyc8735b02012-09-07 19:43:39 -0700938 max_freq * GT_FREQUENCY_MULTIPLIER);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800939
940 max_freq = rp_state_cap & 0xff;
941 seq_printf(m, "Max non-overclocked (RP0) frequency: %dMHz\n",
Ben Widawskyc8735b02012-09-07 19:43:39 -0700942 max_freq * GT_FREQUENCY_MULTIPLIER);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800943 } else {
944 seq_printf(m, "no P-state info available\n");
945 }
Jesse Barnesf97108d2010-01-29 11:27:07 -0800946
947 return 0;
948}
949
950static int i915_delayfreq_table(struct seq_file *m, void *unused)
951{
952 struct drm_info_node *node = (struct drm_info_node *) m->private;
953 struct drm_device *dev = node->minor->dev;
954 drm_i915_private_t *dev_priv = dev->dev_private;
955 u32 delayfreq;
Ben Widawsky616fdb52011-10-05 11:44:54 -0700956 int ret, i;
957
958 ret = mutex_lock_interruptible(&dev->struct_mutex);
959 if (ret)
960 return ret;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800961
962 for (i = 0; i < 16; i++) {
963 delayfreq = I915_READ(PXVFREQ_BASE + i * 4);
Jesse Barnes7648fa92010-05-20 14:28:11 -0700964 seq_printf(m, "P%02dVIDFREQ: 0x%08x (VID: %d)\n", i, delayfreq,
965 (delayfreq & PXVFREQ_PX_MASK) >> PXVFREQ_PX_SHIFT);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800966 }
967
Ben Widawsky616fdb52011-10-05 11:44:54 -0700968 mutex_unlock(&dev->struct_mutex);
969
Jesse Barnesf97108d2010-01-29 11:27:07 -0800970 return 0;
971}
972
973static inline int MAP_TO_MV(int map)
974{
975 return 1250 - (map * 25);
976}
977
978static int i915_inttoext_table(struct seq_file *m, void *unused)
979{
980 struct drm_info_node *node = (struct drm_info_node *) m->private;
981 struct drm_device *dev = node->minor->dev;
982 drm_i915_private_t *dev_priv = dev->dev_private;
983 u32 inttoext;
Ben Widawsky616fdb52011-10-05 11:44:54 -0700984 int ret, i;
985
986 ret = mutex_lock_interruptible(&dev->struct_mutex);
987 if (ret)
988 return ret;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800989
990 for (i = 1; i <= 32; i++) {
991 inttoext = I915_READ(INTTOEXT_BASE_ILK + i * 4);
992 seq_printf(m, "INTTOEXT%02d: 0x%08x\n", i, inttoext);
993 }
994
Ben Widawsky616fdb52011-10-05 11:44:54 -0700995 mutex_unlock(&dev->struct_mutex);
996
Jesse Barnesf97108d2010-01-29 11:27:07 -0800997 return 0;
998}
999
Ben Widawsky4d855292011-12-12 19:34:16 -08001000static int ironlake_drpc_info(struct seq_file *m)
Jesse Barnesf97108d2010-01-29 11:27:07 -08001001{
1002 struct drm_info_node *node = (struct drm_info_node *) m->private;
1003 struct drm_device *dev = node->minor->dev;
1004 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky616fdb52011-10-05 11:44:54 -07001005 u32 rgvmodectl, rstdbyctl;
1006 u16 crstandvid;
1007 int ret;
1008
1009 ret = mutex_lock_interruptible(&dev->struct_mutex);
1010 if (ret)
1011 return ret;
1012
1013 rgvmodectl = I915_READ(MEMMODECTL);
1014 rstdbyctl = I915_READ(RSTDBYCTL);
1015 crstandvid = I915_READ16(CRSTANDVID);
1016
1017 mutex_unlock(&dev->struct_mutex);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001018
1019 seq_printf(m, "HD boost: %s\n", (rgvmodectl & MEMMODE_BOOST_EN) ?
1020 "yes" : "no");
1021 seq_printf(m, "Boost freq: %d\n",
1022 (rgvmodectl & MEMMODE_BOOST_FREQ_MASK) >>
1023 MEMMODE_BOOST_FREQ_SHIFT);
1024 seq_printf(m, "HW control enabled: %s\n",
1025 rgvmodectl & MEMMODE_HWIDLE_EN ? "yes" : "no");
1026 seq_printf(m, "SW control enabled: %s\n",
1027 rgvmodectl & MEMMODE_SWMODE_EN ? "yes" : "no");
1028 seq_printf(m, "Gated voltage change: %s\n",
1029 rgvmodectl & MEMMODE_RCLK_GATE ? "yes" : "no");
1030 seq_printf(m, "Starting frequency: P%d\n",
1031 (rgvmodectl & MEMMODE_FSTART_MASK) >> MEMMODE_FSTART_SHIFT);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001032 seq_printf(m, "Max P-state: P%d\n",
Jesse Barnesf97108d2010-01-29 11:27:07 -08001033 (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001034 seq_printf(m, "Min P-state: P%d\n", (rgvmodectl & MEMMODE_FMIN_MASK));
1035 seq_printf(m, "RS1 VID: %d\n", (crstandvid & 0x3f));
1036 seq_printf(m, "RS2 VID: %d\n", ((crstandvid >> 8) & 0x3f));
1037 seq_printf(m, "Render standby enabled: %s\n",
1038 (rstdbyctl & RCX_SW_EXIT) ? "no" : "yes");
Jesse Barnes88271da2011-01-05 12:01:24 -08001039 seq_printf(m, "Current RS state: ");
1040 switch (rstdbyctl & RSX_STATUS_MASK) {
1041 case RSX_STATUS_ON:
1042 seq_printf(m, "on\n");
1043 break;
1044 case RSX_STATUS_RC1:
1045 seq_printf(m, "RC1\n");
1046 break;
1047 case RSX_STATUS_RC1E:
1048 seq_printf(m, "RC1E\n");
1049 break;
1050 case RSX_STATUS_RS1:
1051 seq_printf(m, "RS1\n");
1052 break;
1053 case RSX_STATUS_RS2:
1054 seq_printf(m, "RS2 (RC6)\n");
1055 break;
1056 case RSX_STATUS_RS3:
1057 seq_printf(m, "RC3 (RC6+)\n");
1058 break;
1059 default:
1060 seq_printf(m, "unknown\n");
1061 break;
1062 }
Jesse Barnesf97108d2010-01-29 11:27:07 -08001063
1064 return 0;
1065}
1066
Ben Widawsky4d855292011-12-12 19:34:16 -08001067static int gen6_drpc_info(struct seq_file *m)
1068{
1069
1070 struct drm_info_node *node = (struct drm_info_node *) m->private;
1071 struct drm_device *dev = node->minor->dev;
1072 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskyecd8fae2012-09-26 10:34:02 -07001073 u32 rpmodectl1, gt_core_status, rcctl1, rc6vids = 0;
Daniel Vetter93b525d2012-01-25 13:52:43 +01001074 unsigned forcewake_count;
Ben Widawsky4d855292011-12-12 19:34:16 -08001075 int count=0, ret;
1076
1077
1078 ret = mutex_lock_interruptible(&dev->struct_mutex);
1079 if (ret)
1080 return ret;
1081
Daniel Vetter93b525d2012-01-25 13:52:43 +01001082 spin_lock_irq(&dev_priv->gt_lock);
1083 forcewake_count = dev_priv->forcewake_count;
1084 spin_unlock_irq(&dev_priv->gt_lock);
1085
1086 if (forcewake_count) {
1087 seq_printf(m, "RC information inaccurate because somebody "
1088 "holds a forcewake reference \n");
Ben Widawsky4d855292011-12-12 19:34:16 -08001089 } else {
1090 /* NB: we cannot use forcewake, else we read the wrong values */
1091 while (count++ < 50 && (I915_READ_NOTRACE(FORCEWAKE_ACK) & 1))
1092 udelay(10);
1093 seq_printf(m, "RC information accurate: %s\n", yesno(count < 51));
1094 }
1095
1096 gt_core_status = readl(dev_priv->regs + GEN6_GT_CORE_STATUS);
1097 trace_i915_reg_rw(false, GEN6_GT_CORE_STATUS, gt_core_status, 4);
1098
1099 rpmodectl1 = I915_READ(GEN6_RP_CONTROL);
1100 rcctl1 = I915_READ(GEN6_RC_CONTROL);
1101 mutex_unlock(&dev->struct_mutex);
Ben Widawsky44cbd332012-11-06 14:36:36 +00001102 mutex_lock(&dev_priv->rps.hw_lock);
1103 sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
1104 mutex_unlock(&dev_priv->rps.hw_lock);
Ben Widawsky4d855292011-12-12 19:34:16 -08001105
1106 seq_printf(m, "Video Turbo Mode: %s\n",
1107 yesno(rpmodectl1 & GEN6_RP_MEDIA_TURBO));
1108 seq_printf(m, "HW control enabled: %s\n",
1109 yesno(rpmodectl1 & GEN6_RP_ENABLE));
1110 seq_printf(m, "SW control enabled: %s\n",
1111 yesno((rpmodectl1 & GEN6_RP_MEDIA_MODE_MASK) ==
1112 GEN6_RP_MEDIA_SW_MODE));
Eric Anholtfff24e22012-01-23 16:14:05 -08001113 seq_printf(m, "RC1e Enabled: %s\n",
Ben Widawsky4d855292011-12-12 19:34:16 -08001114 yesno(rcctl1 & GEN6_RC_CTL_RC1e_ENABLE));
1115 seq_printf(m, "RC6 Enabled: %s\n",
1116 yesno(rcctl1 & GEN6_RC_CTL_RC6_ENABLE));
1117 seq_printf(m, "Deep RC6 Enabled: %s\n",
1118 yesno(rcctl1 & GEN6_RC_CTL_RC6p_ENABLE));
1119 seq_printf(m, "Deepest RC6 Enabled: %s\n",
1120 yesno(rcctl1 & GEN6_RC_CTL_RC6pp_ENABLE));
1121 seq_printf(m, "Current RC state: ");
1122 switch (gt_core_status & GEN6_RCn_MASK) {
1123 case GEN6_RC0:
1124 if (gt_core_status & GEN6_CORE_CPD_STATE_MASK)
1125 seq_printf(m, "Core Power Down\n");
1126 else
1127 seq_printf(m, "on\n");
1128 break;
1129 case GEN6_RC3:
1130 seq_printf(m, "RC3\n");
1131 break;
1132 case GEN6_RC6:
1133 seq_printf(m, "RC6\n");
1134 break;
1135 case GEN6_RC7:
1136 seq_printf(m, "RC7\n");
1137 break;
1138 default:
1139 seq_printf(m, "Unknown\n");
1140 break;
1141 }
1142
1143 seq_printf(m, "Core Power Down: %s\n",
1144 yesno(gt_core_status & GEN6_CORE_CPD_STATE_MASK));
Ben Widawskycce66a22012-03-27 18:59:38 -07001145
1146 /* Not exactly sure what this is */
1147 seq_printf(m, "RC6 \"Locked to RPn\" residency since boot: %u\n",
1148 I915_READ(GEN6_GT_GFX_RC6_LOCKED));
1149 seq_printf(m, "RC6 residency since boot: %u\n",
1150 I915_READ(GEN6_GT_GFX_RC6));
1151 seq_printf(m, "RC6+ residency since boot: %u\n",
1152 I915_READ(GEN6_GT_GFX_RC6p));
1153 seq_printf(m, "RC6++ residency since boot: %u\n",
1154 I915_READ(GEN6_GT_GFX_RC6pp));
1155
Ben Widawskyecd8fae2012-09-26 10:34:02 -07001156 seq_printf(m, "RC6 voltage: %dmV\n",
1157 GEN6_DECODE_RC6_VID(((rc6vids >> 0) & 0xff)));
1158 seq_printf(m, "RC6+ voltage: %dmV\n",
1159 GEN6_DECODE_RC6_VID(((rc6vids >> 8) & 0xff)));
1160 seq_printf(m, "RC6++ voltage: %dmV\n",
1161 GEN6_DECODE_RC6_VID(((rc6vids >> 16) & 0xff)));
Ben Widawsky4d855292011-12-12 19:34:16 -08001162 return 0;
1163}
1164
1165static int i915_drpc_info(struct seq_file *m, void *unused)
1166{
1167 struct drm_info_node *node = (struct drm_info_node *) m->private;
1168 struct drm_device *dev = node->minor->dev;
1169
1170 if (IS_GEN6(dev) || IS_GEN7(dev))
1171 return gen6_drpc_info(m);
1172 else
1173 return ironlake_drpc_info(m);
1174}
1175
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001176static int i915_fbc_status(struct seq_file *m, void *unused)
1177{
1178 struct drm_info_node *node = (struct drm_info_node *) m->private;
1179 struct drm_device *dev = node->minor->dev;
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001180 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001181
Adam Jacksonee5382a2010-04-23 11:17:39 -04001182 if (!I915_HAS_FBC(dev)) {
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001183 seq_printf(m, "FBC unsupported on this chipset\n");
1184 return 0;
1185 }
1186
Adam Jacksonee5382a2010-04-23 11:17:39 -04001187 if (intel_fbc_enabled(dev)) {
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001188 seq_printf(m, "FBC enabled\n");
1189 } else {
1190 seq_printf(m, "FBC disabled: ");
1191 switch (dev_priv->no_fbc_reason) {
Chris Wilsonbed4a672010-09-11 10:47:47 +01001192 case FBC_NO_OUTPUT:
1193 seq_printf(m, "no outputs");
1194 break;
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001195 case FBC_STOLEN_TOO_SMALL:
1196 seq_printf(m, "not enough stolen memory");
1197 break;
1198 case FBC_UNSUPPORTED_MODE:
1199 seq_printf(m, "mode not supported");
1200 break;
1201 case FBC_MODE_TOO_LARGE:
1202 seq_printf(m, "mode too large");
1203 break;
1204 case FBC_BAD_PLANE:
1205 seq_printf(m, "FBC unsupported on plane");
1206 break;
1207 case FBC_NOT_TILED:
1208 seq_printf(m, "scanout buffer not tiled");
1209 break;
Jesse Barnes9c928d12010-07-23 15:20:00 -07001210 case FBC_MULTIPLE_PIPES:
1211 seq_printf(m, "multiple pipes are enabled");
1212 break;
Jesse Barnesc1a9f042011-05-05 15:24:21 -07001213 case FBC_MODULE_PARAM:
1214 seq_printf(m, "disabled per module param (default off)");
1215 break;
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001216 default:
1217 seq_printf(m, "unknown reason");
1218 }
1219 seq_printf(m, "\n");
1220 }
1221 return 0;
1222}
1223
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001224static int i915_sr_status(struct seq_file *m, void *unused)
1225{
1226 struct drm_info_node *node = (struct drm_info_node *) m->private;
1227 struct drm_device *dev = node->minor->dev;
1228 drm_i915_private_t *dev_priv = dev->dev_private;
1229 bool sr_enabled = false;
1230
Yuanhan Liu13982612010-12-15 15:42:31 +08001231 if (HAS_PCH_SPLIT(dev))
Chris Wilson5ba2aaa2010-08-19 18:04:08 +01001232 sr_enabled = I915_READ(WM1_LP_ILK) & WM1_LP_SR_EN;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001233 else if (IS_CRESTLINE(dev) || IS_I945G(dev) || IS_I945GM(dev))
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001234 sr_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
1235 else if (IS_I915GM(dev))
1236 sr_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN;
1237 else if (IS_PINEVIEW(dev))
1238 sr_enabled = I915_READ(DSPFW3) & PINEVIEW_SELF_REFRESH_EN;
1239
Chris Wilson5ba2aaa2010-08-19 18:04:08 +01001240 seq_printf(m, "self-refresh: %s\n",
1241 sr_enabled ? "enabled" : "disabled");
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001242
1243 return 0;
1244}
1245
Jesse Barnes7648fa92010-05-20 14:28:11 -07001246static int i915_emon_status(struct seq_file *m, void *unused)
1247{
1248 struct drm_info_node *node = (struct drm_info_node *) m->private;
1249 struct drm_device *dev = node->minor->dev;
1250 drm_i915_private_t *dev_priv = dev->dev_private;
1251 unsigned long temp, chipset, gfx;
Chris Wilsonde227ef2010-07-03 07:58:38 +01001252 int ret;
1253
Chris Wilson582be6b2012-04-30 19:35:02 +01001254 if (!IS_GEN5(dev))
1255 return -ENODEV;
1256
Chris Wilsonde227ef2010-07-03 07:58:38 +01001257 ret = mutex_lock_interruptible(&dev->struct_mutex);
1258 if (ret)
1259 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001260
1261 temp = i915_mch_val(dev_priv);
1262 chipset = i915_chipset_val(dev_priv);
1263 gfx = i915_gfx_val(dev_priv);
Chris Wilsonde227ef2010-07-03 07:58:38 +01001264 mutex_unlock(&dev->struct_mutex);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001265
1266 seq_printf(m, "GMCH temp: %ld\n", temp);
1267 seq_printf(m, "Chipset power: %ld\n", chipset);
1268 seq_printf(m, "GFX power: %ld\n", gfx);
1269 seq_printf(m, "Total power: %ld\n", chipset + gfx);
1270
1271 return 0;
1272}
1273
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001274static int i915_ring_freq_table(struct seq_file *m, void *unused)
1275{
1276 struct drm_info_node *node = (struct drm_info_node *) m->private;
1277 struct drm_device *dev = node->minor->dev;
1278 drm_i915_private_t *dev_priv = dev->dev_private;
1279 int ret;
1280 int gpu_freq, ia_freq;
1281
Jesse Barnes1c70c0c2011-06-29 13:34:36 -07001282 if (!(IS_GEN6(dev) || IS_GEN7(dev))) {
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001283 seq_printf(m, "unsupported on this chipset\n");
1284 return 0;
1285 }
1286
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001287 ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001288 if (ret)
1289 return ret;
1290
1291 seq_printf(m, "GPU freq (MHz)\tEffective CPU freq (MHz)\n");
1292
Daniel Vetterc6a828d2012-08-08 23:35:35 +02001293 for (gpu_freq = dev_priv->rps.min_delay;
1294 gpu_freq <= dev_priv->rps.max_delay;
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001295 gpu_freq++) {
Ben Widawsky42c05262012-09-26 10:34:00 -07001296 ia_freq = gpu_freq;
1297 sandybridge_pcode_read(dev_priv,
1298 GEN6_PCODE_READ_MIN_FREQ_TABLE,
1299 &ia_freq);
Ben Widawskyc8735b02012-09-07 19:43:39 -07001300 seq_printf(m, "%d\t\t%d\n", gpu_freq * GT_FREQUENCY_MULTIPLIER, ia_freq * 100);
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001301 }
1302
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001303 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001304
1305 return 0;
1306}
1307
Jesse Barnes7648fa92010-05-20 14:28:11 -07001308static int i915_gfxec(struct seq_file *m, void *unused)
1309{
1310 struct drm_info_node *node = (struct drm_info_node *) m->private;
1311 struct drm_device *dev = node->minor->dev;
1312 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky616fdb52011-10-05 11:44:54 -07001313 int ret;
1314
1315 ret = mutex_lock_interruptible(&dev->struct_mutex);
1316 if (ret)
1317 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001318
1319 seq_printf(m, "GFXEC: %ld\n", (unsigned long)I915_READ(0x112f4));
1320
Ben Widawsky616fdb52011-10-05 11:44:54 -07001321 mutex_unlock(&dev->struct_mutex);
1322
Jesse Barnes7648fa92010-05-20 14:28:11 -07001323 return 0;
1324}
1325
Chris Wilson44834a62010-08-19 16:09:23 +01001326static int i915_opregion(struct seq_file *m, void *unused)
1327{
1328 struct drm_info_node *node = (struct drm_info_node *) m->private;
1329 struct drm_device *dev = node->minor->dev;
1330 drm_i915_private_t *dev_priv = dev->dev_private;
1331 struct intel_opregion *opregion = &dev_priv->opregion;
Daniel Vetter0d38f002012-04-21 22:49:10 +02001332 void *data = kmalloc(OPREGION_SIZE, GFP_KERNEL);
Chris Wilson44834a62010-08-19 16:09:23 +01001333 int ret;
1334
Daniel Vetter0d38f002012-04-21 22:49:10 +02001335 if (data == NULL)
1336 return -ENOMEM;
1337
Chris Wilson44834a62010-08-19 16:09:23 +01001338 ret = mutex_lock_interruptible(&dev->struct_mutex);
1339 if (ret)
Daniel Vetter0d38f002012-04-21 22:49:10 +02001340 goto out;
Chris Wilson44834a62010-08-19 16:09:23 +01001341
Daniel Vetter0d38f002012-04-21 22:49:10 +02001342 if (opregion->header) {
1343 memcpy_fromio(data, opregion->header, OPREGION_SIZE);
1344 seq_write(m, data, OPREGION_SIZE);
1345 }
Chris Wilson44834a62010-08-19 16:09:23 +01001346
1347 mutex_unlock(&dev->struct_mutex);
1348
Daniel Vetter0d38f002012-04-21 22:49:10 +02001349out:
1350 kfree(data);
Chris Wilson44834a62010-08-19 16:09:23 +01001351 return 0;
1352}
1353
Chris Wilson37811fc2010-08-25 22:45:57 +01001354static int i915_gem_framebuffer_info(struct seq_file *m, void *data)
1355{
1356 struct drm_info_node *node = (struct drm_info_node *) m->private;
1357 struct drm_device *dev = node->minor->dev;
1358 drm_i915_private_t *dev_priv = dev->dev_private;
1359 struct intel_fbdev *ifbdev;
1360 struct intel_framebuffer *fb;
1361 int ret;
1362
1363 ret = mutex_lock_interruptible(&dev->mode_config.mutex);
1364 if (ret)
1365 return ret;
1366
1367 ifbdev = dev_priv->fbdev;
1368 fb = to_intel_framebuffer(ifbdev->helper.fb);
1369
Daniel Vetter623f9782012-12-11 16:21:38 +01001370 seq_printf(m, "fbcon size: %d x %d, depth %d, %d bpp, refcount %d, obj ",
Chris Wilson37811fc2010-08-25 22:45:57 +01001371 fb->base.width,
1372 fb->base.height,
1373 fb->base.depth,
Daniel Vetter623f9782012-12-11 16:21:38 +01001374 fb->base.bits_per_pixel,
1375 atomic_read(&fb->base.refcount.refcount));
Chris Wilson05394f32010-11-08 19:18:58 +00001376 describe_obj(m, fb->obj);
Chris Wilson37811fc2010-08-25 22:45:57 +01001377 seq_printf(m, "\n");
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001378 mutex_unlock(&dev->mode_config.mutex);
Chris Wilson37811fc2010-08-25 22:45:57 +01001379
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001380 mutex_lock(&dev->mode_config.fb_lock);
Chris Wilson37811fc2010-08-25 22:45:57 +01001381 list_for_each_entry(fb, &dev->mode_config.fb_list, base.head) {
1382 if (&fb->base == ifbdev->helper.fb)
1383 continue;
1384
Daniel Vetter623f9782012-12-11 16:21:38 +01001385 seq_printf(m, "user size: %d x %d, depth %d, %d bpp, refcount %d, obj ",
Chris Wilson37811fc2010-08-25 22:45:57 +01001386 fb->base.width,
1387 fb->base.height,
1388 fb->base.depth,
Daniel Vetter623f9782012-12-11 16:21:38 +01001389 fb->base.bits_per_pixel,
1390 atomic_read(&fb->base.refcount.refcount));
Chris Wilson05394f32010-11-08 19:18:58 +00001391 describe_obj(m, fb->obj);
Chris Wilson37811fc2010-08-25 22:45:57 +01001392 seq_printf(m, "\n");
1393 }
Daniel Vetter4b096ac2012-12-10 21:19:18 +01001394 mutex_unlock(&dev->mode_config.fb_lock);
Chris Wilson37811fc2010-08-25 22:45:57 +01001395
1396 return 0;
1397}
1398
Ben Widawskye76d3632011-03-19 18:14:29 -07001399static int i915_context_status(struct seq_file *m, void *unused)
1400{
1401 struct drm_info_node *node = (struct drm_info_node *) m->private;
1402 struct drm_device *dev = node->minor->dev;
1403 drm_i915_private_t *dev_priv = dev->dev_private;
1404 int ret;
1405
1406 ret = mutex_lock_interruptible(&dev->mode_config.mutex);
1407 if (ret)
1408 return ret;
1409
Daniel Vetter3e373942012-11-02 19:55:04 +01001410 if (dev_priv->ips.pwrctx) {
Ben Widawskydc501fb2011-06-29 11:41:51 -07001411 seq_printf(m, "power context ");
Daniel Vetter3e373942012-11-02 19:55:04 +01001412 describe_obj(m, dev_priv->ips.pwrctx);
Ben Widawskydc501fb2011-06-29 11:41:51 -07001413 seq_printf(m, "\n");
1414 }
Ben Widawskye76d3632011-03-19 18:14:29 -07001415
Daniel Vetter3e373942012-11-02 19:55:04 +01001416 if (dev_priv->ips.renderctx) {
Ben Widawskydc501fb2011-06-29 11:41:51 -07001417 seq_printf(m, "render context ");
Daniel Vetter3e373942012-11-02 19:55:04 +01001418 describe_obj(m, dev_priv->ips.renderctx);
Ben Widawskydc501fb2011-06-29 11:41:51 -07001419 seq_printf(m, "\n");
1420 }
Ben Widawskye76d3632011-03-19 18:14:29 -07001421
1422 mutex_unlock(&dev->mode_config.mutex);
1423
1424 return 0;
1425}
1426
Ben Widawsky6d794d42011-04-25 11:25:56 -07001427static int i915_gen6_forcewake_count_info(struct seq_file *m, void *data)
1428{
1429 struct drm_info_node *node = (struct drm_info_node *) m->private;
1430 struct drm_device *dev = node->minor->dev;
1431 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter9f1f46a2011-12-14 13:57:03 +01001432 unsigned forcewake_count;
Ben Widawsky6d794d42011-04-25 11:25:56 -07001433
Daniel Vetter9f1f46a2011-12-14 13:57:03 +01001434 spin_lock_irq(&dev_priv->gt_lock);
1435 forcewake_count = dev_priv->forcewake_count;
1436 spin_unlock_irq(&dev_priv->gt_lock);
1437
1438 seq_printf(m, "forcewake count = %u\n", forcewake_count);
Ben Widawsky6d794d42011-04-25 11:25:56 -07001439
1440 return 0;
1441}
1442
Daniel Vetterea16a3c2011-12-14 13:57:16 +01001443static const char *swizzle_string(unsigned swizzle)
1444{
1445 switch(swizzle) {
1446 case I915_BIT_6_SWIZZLE_NONE:
1447 return "none";
1448 case I915_BIT_6_SWIZZLE_9:
1449 return "bit9";
1450 case I915_BIT_6_SWIZZLE_9_10:
1451 return "bit9/bit10";
1452 case I915_BIT_6_SWIZZLE_9_11:
1453 return "bit9/bit11";
1454 case I915_BIT_6_SWIZZLE_9_10_11:
1455 return "bit9/bit10/bit11";
1456 case I915_BIT_6_SWIZZLE_9_17:
1457 return "bit9/bit17";
1458 case I915_BIT_6_SWIZZLE_9_10_17:
1459 return "bit9/bit10/bit17";
1460 case I915_BIT_6_SWIZZLE_UNKNOWN:
1461 return "unkown";
1462 }
1463
1464 return "bug";
1465}
1466
1467static int i915_swizzle_info(struct seq_file *m, void *data)
1468{
1469 struct drm_info_node *node = (struct drm_info_node *) m->private;
1470 struct drm_device *dev = node->minor->dev;
1471 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter22bcfc62012-08-09 15:07:02 +02001472 int ret;
Daniel Vetterea16a3c2011-12-14 13:57:16 +01001473
Daniel Vetter22bcfc62012-08-09 15:07:02 +02001474 ret = mutex_lock_interruptible(&dev->struct_mutex);
1475 if (ret)
1476 return ret;
1477
Daniel Vetterea16a3c2011-12-14 13:57:16 +01001478 seq_printf(m, "bit6 swizzle for X-tiling = %s\n",
1479 swizzle_string(dev_priv->mm.bit_6_swizzle_x));
1480 seq_printf(m, "bit6 swizzle for Y-tiling = %s\n",
1481 swizzle_string(dev_priv->mm.bit_6_swizzle_y));
1482
1483 if (IS_GEN3(dev) || IS_GEN4(dev)) {
1484 seq_printf(m, "DDC = 0x%08x\n",
1485 I915_READ(DCC));
1486 seq_printf(m, "C0DRB3 = 0x%04x\n",
1487 I915_READ16(C0DRB3));
1488 seq_printf(m, "C1DRB3 = 0x%04x\n",
1489 I915_READ16(C1DRB3));
Daniel Vetter3fa7d232012-01-31 16:47:56 +01001490 } else if (IS_GEN6(dev) || IS_GEN7(dev)) {
1491 seq_printf(m, "MAD_DIMM_C0 = 0x%08x\n",
1492 I915_READ(MAD_DIMM_C0));
1493 seq_printf(m, "MAD_DIMM_C1 = 0x%08x\n",
1494 I915_READ(MAD_DIMM_C1));
1495 seq_printf(m, "MAD_DIMM_C2 = 0x%08x\n",
1496 I915_READ(MAD_DIMM_C2));
1497 seq_printf(m, "TILECTL = 0x%08x\n",
1498 I915_READ(TILECTL));
1499 seq_printf(m, "ARB_MODE = 0x%08x\n",
1500 I915_READ(ARB_MODE));
1501 seq_printf(m, "DISP_ARB_CTL = 0x%08x\n",
1502 I915_READ(DISP_ARB_CTL));
Daniel Vetterea16a3c2011-12-14 13:57:16 +01001503 }
1504 mutex_unlock(&dev->struct_mutex);
1505
1506 return 0;
1507}
1508
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01001509static int i915_ppgtt_info(struct seq_file *m, void *data)
1510{
1511 struct drm_info_node *node = (struct drm_info_node *) m->private;
1512 struct drm_device *dev = node->minor->dev;
1513 struct drm_i915_private *dev_priv = dev->dev_private;
1514 struct intel_ring_buffer *ring;
1515 int i, ret;
1516
1517
1518 ret = mutex_lock_interruptible(&dev->struct_mutex);
1519 if (ret)
1520 return ret;
1521 if (INTEL_INFO(dev)->gen == 6)
1522 seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(GFX_MODE));
1523
Chris Wilsona2c7f6f2012-09-01 20:51:22 +01001524 for_each_ring(ring, dev_priv, i) {
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01001525 seq_printf(m, "%s\n", ring->name);
1526 if (INTEL_INFO(dev)->gen == 7)
1527 seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(RING_MODE_GEN7(ring)));
1528 seq_printf(m, "PP_DIR_BASE: 0x%08x\n", I915_READ(RING_PP_DIR_BASE(ring)));
1529 seq_printf(m, "PP_DIR_BASE_READ: 0x%08x\n", I915_READ(RING_PP_DIR_BASE_READ(ring)));
1530 seq_printf(m, "PP_DIR_DCLV: 0x%08x\n", I915_READ(RING_PP_DIR_DCLV(ring)));
1531 }
1532 if (dev_priv->mm.aliasing_ppgtt) {
1533 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
1534
1535 seq_printf(m, "aliasing PPGTT:\n");
1536 seq_printf(m, "pd gtt offset: 0x%08x\n", ppgtt->pd_offset);
1537 }
1538 seq_printf(m, "ECOCHK: 0x%08x\n", I915_READ(GAM_ECOCHK));
1539 mutex_unlock(&dev->struct_mutex);
1540
1541 return 0;
1542}
1543
Jesse Barnes57f350b2012-03-28 13:39:25 -07001544static int i915_dpio_info(struct seq_file *m, void *data)
1545{
1546 struct drm_info_node *node = (struct drm_info_node *) m->private;
1547 struct drm_device *dev = node->minor->dev;
1548 struct drm_i915_private *dev_priv = dev->dev_private;
1549 int ret;
1550
1551
1552 if (!IS_VALLEYVIEW(dev)) {
1553 seq_printf(m, "unsupported\n");
1554 return 0;
1555 }
1556
1557 ret = mutex_lock_interruptible(&dev->mode_config.mutex);
1558 if (ret)
1559 return ret;
1560
1561 seq_printf(m, "DPIO_CTL: 0x%08x\n", I915_READ(DPIO_CTL));
1562
1563 seq_printf(m, "DPIO_DIV_A: 0x%08x\n",
1564 intel_dpio_read(dev_priv, _DPIO_DIV_A));
1565 seq_printf(m, "DPIO_DIV_B: 0x%08x\n",
1566 intel_dpio_read(dev_priv, _DPIO_DIV_B));
1567
1568 seq_printf(m, "DPIO_REFSFR_A: 0x%08x\n",
1569 intel_dpio_read(dev_priv, _DPIO_REFSFR_A));
1570 seq_printf(m, "DPIO_REFSFR_B: 0x%08x\n",
1571 intel_dpio_read(dev_priv, _DPIO_REFSFR_B));
1572
1573 seq_printf(m, "DPIO_CORE_CLK_A: 0x%08x\n",
1574 intel_dpio_read(dev_priv, _DPIO_CORE_CLK_A));
1575 seq_printf(m, "DPIO_CORE_CLK_B: 0x%08x\n",
1576 intel_dpio_read(dev_priv, _DPIO_CORE_CLK_B));
1577
1578 seq_printf(m, "DPIO_LFP_COEFF_A: 0x%08x\n",
1579 intel_dpio_read(dev_priv, _DPIO_LFP_COEFF_A));
1580 seq_printf(m, "DPIO_LFP_COEFF_B: 0x%08x\n",
1581 intel_dpio_read(dev_priv, _DPIO_LFP_COEFF_B));
1582
1583 seq_printf(m, "DPIO_FASTCLK_DISABLE: 0x%08x\n",
1584 intel_dpio_read(dev_priv, DPIO_FASTCLK_DISABLE));
1585
1586 mutex_unlock(&dev->mode_config.mutex);
1587
1588 return 0;
1589}
1590
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001591static ssize_t
1592i915_wedged_read(struct file *filp,
1593 char __user *ubuf,
1594 size_t max,
1595 loff_t *ppos)
1596{
1597 struct drm_device *dev = filp->private_data;
1598 drm_i915_private_t *dev_priv = dev->dev_private;
1599 char buf[80];
1600 int len;
1601
Akshay Joshi0206e352011-08-16 15:34:10 -04001602 len = snprintf(buf, sizeof(buf),
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001603 "wedged : %d\n",
1604 atomic_read(&dev_priv->mm.wedged));
1605
Akshay Joshi0206e352011-08-16 15:34:10 -04001606 if (len > sizeof(buf))
1607 len = sizeof(buf);
Dan Carpenterf4433a82010-09-08 21:44:47 +02001608
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001609 return simple_read_from_buffer(ubuf, max, ppos, buf, len);
1610}
1611
1612static ssize_t
1613i915_wedged_write(struct file *filp,
1614 const char __user *ubuf,
1615 size_t cnt,
1616 loff_t *ppos)
1617{
1618 struct drm_device *dev = filp->private_data;
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001619 char buf[20];
1620 int val = 1;
1621
1622 if (cnt > 0) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001623 if (cnt > sizeof(buf) - 1)
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001624 return -EINVAL;
1625
1626 if (copy_from_user(buf, ubuf, cnt))
1627 return -EFAULT;
1628 buf[cnt] = 0;
1629
1630 val = simple_strtoul(buf, NULL, 0);
1631 }
1632
1633 DRM_INFO("Manually setting wedged to %d\n", val);
Chris Wilson527f9e92010-11-11 01:16:58 +00001634 i915_handle_error(dev, val);
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001635
1636 return cnt;
1637}
1638
1639static const struct file_operations i915_wedged_fops = {
1640 .owner = THIS_MODULE,
Stephen Boyd234e3402012-04-05 14:25:11 -07001641 .open = simple_open,
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001642 .read = i915_wedged_read,
1643 .write = i915_wedged_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001644 .llseek = default_llseek,
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001645};
1646
Jesse Barnes358733e2011-07-27 11:53:01 -07001647static ssize_t
Daniel Vettere5eb3d62012-05-03 14:48:16 +02001648i915_ring_stop_read(struct file *filp,
1649 char __user *ubuf,
1650 size_t max,
1651 loff_t *ppos)
1652{
1653 struct drm_device *dev = filp->private_data;
1654 drm_i915_private_t *dev_priv = dev->dev_private;
1655 char buf[20];
1656 int len;
1657
1658 len = snprintf(buf, sizeof(buf),
1659 "0x%08x\n", dev_priv->stop_rings);
1660
1661 if (len > sizeof(buf))
1662 len = sizeof(buf);
1663
1664 return simple_read_from_buffer(ubuf, max, ppos, buf, len);
1665}
1666
1667static ssize_t
1668i915_ring_stop_write(struct file *filp,
1669 const char __user *ubuf,
1670 size_t cnt,
1671 loff_t *ppos)
1672{
1673 struct drm_device *dev = filp->private_data;
1674 struct drm_i915_private *dev_priv = dev->dev_private;
1675 char buf[20];
Daniel Vetter22bcfc62012-08-09 15:07:02 +02001676 int val = 0, ret;
Daniel Vettere5eb3d62012-05-03 14:48:16 +02001677
1678 if (cnt > 0) {
1679 if (cnt > sizeof(buf) - 1)
1680 return -EINVAL;
1681
1682 if (copy_from_user(buf, ubuf, cnt))
1683 return -EFAULT;
1684 buf[cnt] = 0;
1685
1686 val = simple_strtoul(buf, NULL, 0);
1687 }
1688
1689 DRM_DEBUG_DRIVER("Stopping rings 0x%08x\n", val);
1690
Daniel Vetter22bcfc62012-08-09 15:07:02 +02001691 ret = mutex_lock_interruptible(&dev->struct_mutex);
1692 if (ret)
1693 return ret;
1694
Daniel Vettere5eb3d62012-05-03 14:48:16 +02001695 dev_priv->stop_rings = val;
1696 mutex_unlock(&dev->struct_mutex);
1697
1698 return cnt;
1699}
1700
1701static const struct file_operations i915_ring_stop_fops = {
1702 .owner = THIS_MODULE,
1703 .open = simple_open,
1704 .read = i915_ring_stop_read,
1705 .write = i915_ring_stop_write,
1706 .llseek = default_llseek,
1707};
Daniel Vetterd5442302012-04-27 15:17:40 +02001708
Daniel Vettere5eb3d62012-05-03 14:48:16 +02001709static ssize_t
Jesse Barnes358733e2011-07-27 11:53:01 -07001710i915_max_freq_read(struct file *filp,
1711 char __user *ubuf,
1712 size_t max,
1713 loff_t *ppos)
1714{
1715 struct drm_device *dev = filp->private_data;
1716 drm_i915_private_t *dev_priv = dev->dev_private;
1717 char buf[80];
Daniel Vetter004777c2012-08-09 15:07:01 +02001718 int len, ret;
1719
1720 if (!(IS_GEN6(dev) || IS_GEN7(dev)))
1721 return -ENODEV;
1722
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001723 ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
Daniel Vetter004777c2012-08-09 15:07:01 +02001724 if (ret)
1725 return ret;
Jesse Barnes358733e2011-07-27 11:53:01 -07001726
Akshay Joshi0206e352011-08-16 15:34:10 -04001727 len = snprintf(buf, sizeof(buf),
Ben Widawskyc8735b02012-09-07 19:43:39 -07001728 "max freq: %d\n", dev_priv->rps.max_delay * GT_FREQUENCY_MULTIPLIER);
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001729 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes358733e2011-07-27 11:53:01 -07001730
Akshay Joshi0206e352011-08-16 15:34:10 -04001731 if (len > sizeof(buf))
1732 len = sizeof(buf);
Jesse Barnes358733e2011-07-27 11:53:01 -07001733
1734 return simple_read_from_buffer(ubuf, max, ppos, buf, len);
1735}
1736
1737static ssize_t
1738i915_max_freq_write(struct file *filp,
1739 const char __user *ubuf,
1740 size_t cnt,
1741 loff_t *ppos)
1742{
1743 struct drm_device *dev = filp->private_data;
1744 struct drm_i915_private *dev_priv = dev->dev_private;
1745 char buf[20];
Daniel Vetter004777c2012-08-09 15:07:01 +02001746 int val = 1, ret;
1747
1748 if (!(IS_GEN6(dev) || IS_GEN7(dev)))
1749 return -ENODEV;
Jesse Barnes358733e2011-07-27 11:53:01 -07001750
1751 if (cnt > 0) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001752 if (cnt > sizeof(buf) - 1)
Jesse Barnes358733e2011-07-27 11:53:01 -07001753 return -EINVAL;
1754
1755 if (copy_from_user(buf, ubuf, cnt))
1756 return -EFAULT;
1757 buf[cnt] = 0;
1758
1759 val = simple_strtoul(buf, NULL, 0);
1760 }
1761
1762 DRM_DEBUG_DRIVER("Manually setting max freq to %d\n", val);
1763
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001764 ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
Daniel Vetter004777c2012-08-09 15:07:01 +02001765 if (ret)
1766 return ret;
1767
Jesse Barnes358733e2011-07-27 11:53:01 -07001768 /*
1769 * Turbo will still be enabled, but won't go above the set value.
1770 */
Ben Widawskyc8735b02012-09-07 19:43:39 -07001771 dev_priv->rps.max_delay = val / GT_FREQUENCY_MULTIPLIER;
Jesse Barnes358733e2011-07-27 11:53:01 -07001772
Ben Widawskyc8735b02012-09-07 19:43:39 -07001773 gen6_set_rps(dev, val / GT_FREQUENCY_MULTIPLIER);
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001774 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes358733e2011-07-27 11:53:01 -07001775
1776 return cnt;
1777}
1778
1779static const struct file_operations i915_max_freq_fops = {
1780 .owner = THIS_MODULE,
Stephen Boyd234e3402012-04-05 14:25:11 -07001781 .open = simple_open,
Jesse Barnes358733e2011-07-27 11:53:01 -07001782 .read = i915_max_freq_read,
1783 .write = i915_max_freq_write,
1784 .llseek = default_llseek,
1785};
1786
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001787static ssize_t
Jesse Barnes1523c312012-05-25 12:34:54 -07001788i915_min_freq_read(struct file *filp, char __user *ubuf, size_t max,
1789 loff_t *ppos)
1790{
1791 struct drm_device *dev = filp->private_data;
1792 drm_i915_private_t *dev_priv = dev->dev_private;
1793 char buf[80];
Daniel Vetter004777c2012-08-09 15:07:01 +02001794 int len, ret;
1795
1796 if (!(IS_GEN6(dev) || IS_GEN7(dev)))
1797 return -ENODEV;
1798
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001799 ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
Daniel Vetter004777c2012-08-09 15:07:01 +02001800 if (ret)
1801 return ret;
Jesse Barnes1523c312012-05-25 12:34:54 -07001802
1803 len = snprintf(buf, sizeof(buf),
Ben Widawskyc8735b02012-09-07 19:43:39 -07001804 "min freq: %d\n", dev_priv->rps.min_delay * GT_FREQUENCY_MULTIPLIER);
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001805 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes1523c312012-05-25 12:34:54 -07001806
1807 if (len > sizeof(buf))
1808 len = sizeof(buf);
1809
1810 return simple_read_from_buffer(ubuf, max, ppos, buf, len);
1811}
1812
1813static ssize_t
1814i915_min_freq_write(struct file *filp, const char __user *ubuf, size_t cnt,
1815 loff_t *ppos)
1816{
1817 struct drm_device *dev = filp->private_data;
1818 struct drm_i915_private *dev_priv = dev->dev_private;
1819 char buf[20];
Daniel Vetter004777c2012-08-09 15:07:01 +02001820 int val = 1, ret;
1821
1822 if (!(IS_GEN6(dev) || IS_GEN7(dev)))
1823 return -ENODEV;
Jesse Barnes1523c312012-05-25 12:34:54 -07001824
1825 if (cnt > 0) {
1826 if (cnt > sizeof(buf) - 1)
1827 return -EINVAL;
1828
1829 if (copy_from_user(buf, ubuf, cnt))
1830 return -EFAULT;
1831 buf[cnt] = 0;
1832
1833 val = simple_strtoul(buf, NULL, 0);
1834 }
1835
1836 DRM_DEBUG_DRIVER("Manually setting min freq to %d\n", val);
1837
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001838 ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock);
Daniel Vetter004777c2012-08-09 15:07:01 +02001839 if (ret)
1840 return ret;
1841
Jesse Barnes1523c312012-05-25 12:34:54 -07001842 /*
1843 * Turbo will still be enabled, but won't go below the set value.
1844 */
Ben Widawskyc8735b02012-09-07 19:43:39 -07001845 dev_priv->rps.min_delay = val / GT_FREQUENCY_MULTIPLIER;
Jesse Barnes1523c312012-05-25 12:34:54 -07001846
Ben Widawskyc8735b02012-09-07 19:43:39 -07001847 gen6_set_rps(dev, val / GT_FREQUENCY_MULTIPLIER);
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001848 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes1523c312012-05-25 12:34:54 -07001849
1850 return cnt;
1851}
1852
1853static const struct file_operations i915_min_freq_fops = {
1854 .owner = THIS_MODULE,
1855 .open = simple_open,
1856 .read = i915_min_freq_read,
1857 .write = i915_min_freq_write,
1858 .llseek = default_llseek,
1859};
1860
1861static ssize_t
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001862i915_cache_sharing_read(struct file *filp,
1863 char __user *ubuf,
1864 size_t max,
1865 loff_t *ppos)
1866{
1867 struct drm_device *dev = filp->private_data;
1868 drm_i915_private_t *dev_priv = dev->dev_private;
1869 char buf[80];
1870 u32 snpcr;
Daniel Vetter22bcfc62012-08-09 15:07:02 +02001871 int len, ret;
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001872
Daniel Vetter004777c2012-08-09 15:07:01 +02001873 if (!(IS_GEN6(dev) || IS_GEN7(dev)))
1874 return -ENODEV;
1875
Daniel Vetter22bcfc62012-08-09 15:07:02 +02001876 ret = mutex_lock_interruptible(&dev->struct_mutex);
1877 if (ret)
1878 return ret;
1879
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001880 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
1881 mutex_unlock(&dev_priv->dev->struct_mutex);
1882
Akshay Joshi0206e352011-08-16 15:34:10 -04001883 len = snprintf(buf, sizeof(buf),
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001884 "%d\n", (snpcr & GEN6_MBC_SNPCR_MASK) >>
1885 GEN6_MBC_SNPCR_SHIFT);
1886
Akshay Joshi0206e352011-08-16 15:34:10 -04001887 if (len > sizeof(buf))
1888 len = sizeof(buf);
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001889
1890 return simple_read_from_buffer(ubuf, max, ppos, buf, len);
1891}
1892
1893static ssize_t
1894i915_cache_sharing_write(struct file *filp,
1895 const char __user *ubuf,
1896 size_t cnt,
1897 loff_t *ppos)
1898{
1899 struct drm_device *dev = filp->private_data;
1900 struct drm_i915_private *dev_priv = dev->dev_private;
1901 char buf[20];
1902 u32 snpcr;
1903 int val = 1;
1904
Daniel Vetter004777c2012-08-09 15:07:01 +02001905 if (!(IS_GEN6(dev) || IS_GEN7(dev)))
1906 return -ENODEV;
1907
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001908 if (cnt > 0) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001909 if (cnt > sizeof(buf) - 1)
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001910 return -EINVAL;
1911
1912 if (copy_from_user(buf, ubuf, cnt))
1913 return -EFAULT;
1914 buf[cnt] = 0;
1915
1916 val = simple_strtoul(buf, NULL, 0);
1917 }
1918
1919 if (val < 0 || val > 3)
1920 return -EINVAL;
1921
1922 DRM_DEBUG_DRIVER("Manually setting uncore sharing to %d\n", val);
1923
1924 /* Update the cache sharing policy here as well */
1925 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
1926 snpcr &= ~GEN6_MBC_SNPCR_MASK;
1927 snpcr |= (val << GEN6_MBC_SNPCR_SHIFT);
1928 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
1929
1930 return cnt;
1931}
1932
1933static const struct file_operations i915_cache_sharing_fops = {
1934 .owner = THIS_MODULE,
Stephen Boyd234e3402012-04-05 14:25:11 -07001935 .open = simple_open,
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001936 .read = i915_cache_sharing_read,
1937 .write = i915_cache_sharing_write,
1938 .llseek = default_llseek,
1939};
1940
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001941/* As the drm_debugfs_init() routines are called before dev->dev_private is
1942 * allocated we need to hook into the minor for release. */
1943static int
1944drm_add_fake_info_node(struct drm_minor *minor,
1945 struct dentry *ent,
1946 const void *key)
1947{
1948 struct drm_info_node *node;
1949
1950 node = kmalloc(sizeof(struct drm_info_node), GFP_KERNEL);
1951 if (node == NULL) {
1952 debugfs_remove(ent);
1953 return -ENOMEM;
1954 }
1955
1956 node->minor = minor;
1957 node->dent = ent;
1958 node->info_ent = (void *) key;
Marcin Slusarzb3e067c2011-11-09 22:20:35 +01001959
1960 mutex_lock(&minor->debugfs_lock);
1961 list_add(&node->list, &minor->debugfs_list);
1962 mutex_unlock(&minor->debugfs_lock);
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001963
1964 return 0;
1965}
1966
Ben Widawsky6d794d42011-04-25 11:25:56 -07001967static int i915_forcewake_open(struct inode *inode, struct file *file)
1968{
1969 struct drm_device *dev = inode->i_private;
1970 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawsky6d794d42011-04-25 11:25:56 -07001971
Daniel Vetter075edca2012-01-24 09:44:28 +01001972 if (INTEL_INFO(dev)->gen < 6)
Ben Widawsky6d794d42011-04-25 11:25:56 -07001973 return 0;
1974
Ben Widawsky6d794d42011-04-25 11:25:56 -07001975 gen6_gt_force_wake_get(dev_priv);
Ben Widawsky6d794d42011-04-25 11:25:56 -07001976
1977 return 0;
1978}
1979
Ben Widawskyc43b5632012-04-16 14:07:40 -07001980static int i915_forcewake_release(struct inode *inode, struct file *file)
Ben Widawsky6d794d42011-04-25 11:25:56 -07001981{
1982 struct drm_device *dev = inode->i_private;
1983 struct drm_i915_private *dev_priv = dev->dev_private;
1984
Daniel Vetter075edca2012-01-24 09:44:28 +01001985 if (INTEL_INFO(dev)->gen < 6)
Ben Widawsky6d794d42011-04-25 11:25:56 -07001986 return 0;
1987
Ben Widawsky6d794d42011-04-25 11:25:56 -07001988 gen6_gt_force_wake_put(dev_priv);
Ben Widawsky6d794d42011-04-25 11:25:56 -07001989
1990 return 0;
1991}
1992
1993static const struct file_operations i915_forcewake_fops = {
1994 .owner = THIS_MODULE,
1995 .open = i915_forcewake_open,
1996 .release = i915_forcewake_release,
1997};
1998
1999static int i915_forcewake_create(struct dentry *root, struct drm_minor *minor)
2000{
2001 struct drm_device *dev = minor->dev;
2002 struct dentry *ent;
2003
2004 ent = debugfs_create_file("i915_forcewake_user",
Ben Widawsky8eb57292011-05-11 15:10:58 -07002005 S_IRUSR,
Ben Widawsky6d794d42011-04-25 11:25:56 -07002006 root, dev,
2007 &i915_forcewake_fops);
2008 if (IS_ERR(ent))
2009 return PTR_ERR(ent);
2010
Ben Widawsky8eb57292011-05-11 15:10:58 -07002011 return drm_add_fake_info_node(minor, ent, &i915_forcewake_fops);
Ben Widawsky6d794d42011-04-25 11:25:56 -07002012}
2013
Daniel Vetter6a9c3082011-12-14 13:57:11 +01002014static int i915_debugfs_create(struct dentry *root,
2015 struct drm_minor *minor,
2016 const char *name,
2017 const struct file_operations *fops)
Jesse Barnes358733e2011-07-27 11:53:01 -07002018{
2019 struct drm_device *dev = minor->dev;
2020 struct dentry *ent;
2021
Daniel Vetter6a9c3082011-12-14 13:57:11 +01002022 ent = debugfs_create_file(name,
Jesse Barnes358733e2011-07-27 11:53:01 -07002023 S_IRUGO | S_IWUSR,
2024 root, dev,
Daniel Vetter6a9c3082011-12-14 13:57:11 +01002025 fops);
Jesse Barnes358733e2011-07-27 11:53:01 -07002026 if (IS_ERR(ent))
2027 return PTR_ERR(ent);
2028
Daniel Vetter6a9c3082011-12-14 13:57:11 +01002029 return drm_add_fake_info_node(minor, ent, fops);
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07002030}
2031
Ben Gamari27c202a2009-07-01 22:26:52 -04002032static struct drm_info_list i915_debugfs_list[] = {
Chris Wilson311bd682011-01-13 19:06:50 +00002033 {"i915_capabilities", i915_capabilities, 0},
Chris Wilson73aa8082010-09-30 11:46:12 +01002034 {"i915_gem_objects", i915_gem_object_info, 0},
Chris Wilson08c18322011-01-10 00:00:24 +00002035 {"i915_gem_gtt", i915_gem_gtt_info, 0},
Chris Wilson1b502472012-04-24 15:47:30 +01002036 {"i915_gem_pinned", i915_gem_gtt_info, 0, (void *) PINNED_LIST},
Ben Gamari433e12f2009-02-17 20:08:51 -05002037 {"i915_gem_active", i915_gem_object_list_info, 0, (void *) ACTIVE_LIST},
Ben Gamari433e12f2009-02-17 20:08:51 -05002038 {"i915_gem_inactive", i915_gem_object_list_info, 0, (void *) INACTIVE_LIST},
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002039 {"i915_gem_pageflip", i915_gem_pageflip_info, 0},
Ben Gamari20172632009-02-17 20:08:50 -05002040 {"i915_gem_request", i915_gem_request_info, 0},
2041 {"i915_gem_seqno", i915_gem_seqno_info, 0},
Chris Wilsona6172a82009-02-11 14:26:38 +00002042 {"i915_gem_fence_regs", i915_gem_fence_regs_info, 0},
Ben Gamari20172632009-02-17 20:08:50 -05002043 {"i915_gem_interrupt", i915_interrupt_info, 0},
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002044 {"i915_gem_hws", i915_hws_info, 0, (void *)RCS},
2045 {"i915_gem_hws_blt", i915_hws_info, 0, (void *)BCS},
2046 {"i915_gem_hws_bsd", i915_hws_info, 0, (void *)VCS},
Jesse Barnesf97108d2010-01-29 11:27:07 -08002047 {"i915_rstdby_delays", i915_rstdby_delays, 0},
2048 {"i915_cur_delayinfo", i915_cur_delayinfo, 0},
2049 {"i915_delayfreq_table", i915_delayfreq_table, 0},
2050 {"i915_inttoext_table", i915_inttoext_table, 0},
2051 {"i915_drpc_info", i915_drpc_info, 0},
Jesse Barnes7648fa92010-05-20 14:28:11 -07002052 {"i915_emon_status", i915_emon_status, 0},
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07002053 {"i915_ring_freq_table", i915_ring_freq_table, 0},
Jesse Barnes7648fa92010-05-20 14:28:11 -07002054 {"i915_gfxec", i915_gfxec, 0},
Jesse Barnesb5e50c32010-02-05 12:42:41 -08002055 {"i915_fbc_status", i915_fbc_status, 0},
Jesse Barnes4a9bef32010-02-05 12:47:35 -08002056 {"i915_sr_status", i915_sr_status, 0},
Chris Wilson44834a62010-08-19 16:09:23 +01002057 {"i915_opregion", i915_opregion, 0},
Chris Wilson37811fc2010-08-25 22:45:57 +01002058 {"i915_gem_framebuffer", i915_gem_framebuffer_info, 0},
Ben Widawskye76d3632011-03-19 18:14:29 -07002059 {"i915_context_status", i915_context_status, 0},
Ben Widawsky6d794d42011-04-25 11:25:56 -07002060 {"i915_gen6_forcewake_count", i915_gen6_forcewake_count_info, 0},
Daniel Vetterea16a3c2011-12-14 13:57:16 +01002061 {"i915_swizzle_info", i915_swizzle_info, 0},
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01002062 {"i915_ppgtt_info", i915_ppgtt_info, 0},
Jesse Barnes57f350b2012-03-28 13:39:25 -07002063 {"i915_dpio", i915_dpio_info, 0},
Ben Gamari20172632009-02-17 20:08:50 -05002064};
Ben Gamari27c202a2009-07-01 22:26:52 -04002065#define I915_DEBUGFS_ENTRIES ARRAY_SIZE(i915_debugfs_list)
Ben Gamari20172632009-02-17 20:08:50 -05002066
Ben Gamari27c202a2009-07-01 22:26:52 -04002067int i915_debugfs_init(struct drm_minor *minor)
Ben Gamari20172632009-02-17 20:08:50 -05002068{
Chris Wilsonf3cd4742009-10-13 22:20:20 +01002069 int ret;
2070
Daniel Vetter6a9c3082011-12-14 13:57:11 +01002071 ret = i915_debugfs_create(minor->debugfs_root, minor,
2072 "i915_wedged",
2073 &i915_wedged_fops);
Chris Wilsonf3cd4742009-10-13 22:20:20 +01002074 if (ret)
2075 return ret;
2076
Ben Widawsky6d794d42011-04-25 11:25:56 -07002077 ret = i915_forcewake_create(minor->debugfs_root, minor);
2078 if (ret)
2079 return ret;
Daniel Vetter6a9c3082011-12-14 13:57:11 +01002080
2081 ret = i915_debugfs_create(minor->debugfs_root, minor,
2082 "i915_max_freq",
2083 &i915_max_freq_fops);
Jesse Barnes358733e2011-07-27 11:53:01 -07002084 if (ret)
2085 return ret;
Daniel Vetter6a9c3082011-12-14 13:57:11 +01002086
2087 ret = i915_debugfs_create(minor->debugfs_root, minor,
Jesse Barnes1523c312012-05-25 12:34:54 -07002088 "i915_min_freq",
2089 &i915_min_freq_fops);
2090 if (ret)
2091 return ret;
2092
2093 ret = i915_debugfs_create(minor->debugfs_root, minor,
Daniel Vetter6a9c3082011-12-14 13:57:11 +01002094 "i915_cache_sharing",
2095 &i915_cache_sharing_fops);
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07002096 if (ret)
2097 return ret;
Daniel Vetter004777c2012-08-09 15:07:01 +02002098
Daniel Vettere5eb3d62012-05-03 14:48:16 +02002099 ret = i915_debugfs_create(minor->debugfs_root, minor,
2100 "i915_ring_stop",
2101 &i915_ring_stop_fops);
2102 if (ret)
2103 return ret;
Ben Widawsky6d794d42011-04-25 11:25:56 -07002104
Daniel Vetterd5442302012-04-27 15:17:40 +02002105 ret = i915_debugfs_create(minor->debugfs_root, minor,
2106 "i915_error_state",
2107 &i915_error_state_fops);
2108 if (ret)
2109 return ret;
2110
Ben Gamari27c202a2009-07-01 22:26:52 -04002111 return drm_debugfs_create_files(i915_debugfs_list,
2112 I915_DEBUGFS_ENTRIES,
Ben Gamari20172632009-02-17 20:08:50 -05002113 minor->debugfs_root, minor);
2114}
2115
Ben Gamari27c202a2009-07-01 22:26:52 -04002116void i915_debugfs_cleanup(struct drm_minor *minor)
Ben Gamari20172632009-02-17 20:08:50 -05002117{
Ben Gamari27c202a2009-07-01 22:26:52 -04002118 drm_debugfs_remove_files(i915_debugfs_list,
2119 I915_DEBUGFS_ENTRIES, minor);
Ben Widawsky6d794d42011-04-25 11:25:56 -07002120 drm_debugfs_remove_files((struct drm_info_list *) &i915_forcewake_fops,
2121 1, minor);
Kristian Høgsberg33db6792009-11-11 12:19:16 -05002122 drm_debugfs_remove_files((struct drm_info_list *) &i915_wedged_fops,
2123 1, minor);
Jesse Barnes358733e2011-07-27 11:53:01 -07002124 drm_debugfs_remove_files((struct drm_info_list *) &i915_max_freq_fops,
2125 1, minor);
Jesse Barnes1523c312012-05-25 12:34:54 -07002126 drm_debugfs_remove_files((struct drm_info_list *) &i915_min_freq_fops,
2127 1, minor);
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07002128 drm_debugfs_remove_files((struct drm_info_list *) &i915_cache_sharing_fops,
2129 1, minor);
Daniel Vettere5eb3d62012-05-03 14:48:16 +02002130 drm_debugfs_remove_files((struct drm_info_list *) &i915_ring_stop_fops,
2131 1, minor);
Daniel Vetter6bd459d2012-05-21 19:56:52 +02002132 drm_debugfs_remove_files((struct drm_info_list *) &i915_error_state_fops,
2133 1, minor);
Ben Gamari20172632009-02-17 20:08:50 -05002134}
2135
2136#endif /* CONFIG_DEBUG_FS */