blob: 45876e5bf2aa80ef34d60600ad36025733c8f0fb [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>
Ben Gamari20172632009-02-17 20:08:50 -050033#include "drmP.h"
34#include "drm.h"
Simon Farnsworth4e5359c2010-09-01 17:47:52 +010035#include "intel_drv.h"
Chris Wilsone5c65262010-11-01 11:35:28 +000036#include "intel_ringbuffer.h"
Ben Gamari20172632009-02-17 20:08:50 -050037#include "i915_drm.h"
38#include "i915_drv.h"
39
40#define DRM_I915_RING_DEBUG 1
41
42
43#if defined(CONFIG_DEBUG_FS)
44
Chris Wilsonf13d3f72010-09-20 17:36:15 +010045enum {
Chris Wilson69dc4982010-10-19 10:36:51 +010046 ACTIVE_LIST,
Chris Wilsonf13d3f72010-09-20 17:36:15 +010047 FLUSHING_LIST,
48 INACTIVE_LIST,
Chris Wilsond21d5972010-09-26 11:19:33 +010049 PINNED_LIST,
50 DEFERRED_FREE_LIST,
Chris Wilsonf13d3f72010-09-20 17:36:15 +010051};
Ben Gamari433e12f2009-02-17 20:08:51 -050052
Chris Wilson70d39fe2010-08-25 16:03:34 +010053static const char *yesno(int v)
54{
55 return v ? "yes" : "no";
56}
57
58static int i915_capabilities(struct seq_file *m, void *data)
59{
60 struct drm_info_node *node = (struct drm_info_node *) m->private;
61 struct drm_device *dev = node->minor->dev;
62 const struct intel_device_info *info = INTEL_INFO(dev);
63
64 seq_printf(m, "gen: %d\n", info->gen);
Paulo Zanoni03d00ac2011-10-14 18:17:41 -030065 seq_printf(m, "pch: %d\n", INTEL_PCH_TYPE(dev));
Chris Wilson70d39fe2010-08-25 16:03:34 +010066#define B(x) seq_printf(m, #x ": %s\n", yesno(info->x))
67 B(is_mobile);
Chris Wilson70d39fe2010-08-25 16:03:34 +010068 B(is_i85x);
69 B(is_i915g);
Chris Wilson70d39fe2010-08-25 16:03:34 +010070 B(is_i945gm);
Chris Wilson70d39fe2010-08-25 16:03:34 +010071 B(is_g33);
72 B(need_gfx_hws);
73 B(is_g4x);
74 B(is_pineview);
75 B(is_broadwater);
76 B(is_crestline);
Chris Wilson70d39fe2010-08-25 16:03:34 +010077 B(has_fbc);
Chris Wilson70d39fe2010-08-25 16:03:34 +010078 B(has_pipe_cxsr);
79 B(has_hotplug);
80 B(cursor_needs_physical);
81 B(has_overlay);
82 B(overlay_needs_physical);
Chris Wilsona6c45cf2010-09-17 00:32:17 +010083 B(supports_tv);
Chris Wilson549f7362010-10-19 11:19:32 +010084 B(has_bsd_ring);
85 B(has_blt_ring);
Eugeni Dodonov3d29b842012-01-17 14:43:53 -020086 B(has_llc);
Chris Wilson70d39fe2010-08-25 16:03:34 +010087#undef B
88
89 return 0;
90}
Ben Gamari433e12f2009-02-17 20:08:51 -050091
Chris Wilson05394f32010-11-08 19:18:58 +000092static const char *get_pin_flag(struct drm_i915_gem_object *obj)
Chris Wilsona6172a82009-02-11 14:26:38 +000093{
Chris Wilson05394f32010-11-08 19:18:58 +000094 if (obj->user_pin_count > 0)
Chris Wilsona6172a82009-02-11 14:26:38 +000095 return "P";
Chris Wilson05394f32010-11-08 19:18:58 +000096 else if (obj->pin_count > 0)
Chris Wilsona6172a82009-02-11 14:26:38 +000097 return "p";
98 else
99 return " ";
100}
101
Chris Wilson05394f32010-11-08 19:18:58 +0000102static const char *get_tiling_flag(struct drm_i915_gem_object *obj)
Chris Wilsona6172a82009-02-11 14:26:38 +0000103{
Akshay Joshi0206e352011-08-16 15:34:10 -0400104 switch (obj->tiling_mode) {
105 default:
106 case I915_TILING_NONE: return " ";
107 case I915_TILING_X: return "X";
108 case I915_TILING_Y: return "Y";
109 }
Chris Wilsona6172a82009-02-11 14:26:38 +0000110}
111
Chris Wilson93dfb402011-03-29 16:59:50 -0700112static const char *cache_level_str(int type)
Chris Wilson08c18322011-01-10 00:00:24 +0000113{
114 switch (type) {
Chris Wilson93dfb402011-03-29 16:59:50 -0700115 case I915_CACHE_NONE: return " uncached";
116 case I915_CACHE_LLC: return " snooped (LLC)";
117 case I915_CACHE_LLC_MLC: return " snooped (LLC+MLC)";
Chris Wilson08c18322011-01-10 00:00:24 +0000118 default: return "";
119 }
120}
121
Chris Wilson37811fc2010-08-25 22:45:57 +0100122static void
123describe_obj(struct seq_file *m, struct drm_i915_gem_object *obj)
124{
Eric Anholta05a5862011-12-20 08:54:15 -0800125 seq_printf(m, "%p: %s%s %8zdKiB %04x %04x %d %d%s%s%s",
Chris Wilson37811fc2010-08-25 22:45:57 +0100126 &obj->base,
127 get_pin_flag(obj),
128 get_tiling_flag(obj),
Eric Anholta05a5862011-12-20 08:54:15 -0800129 obj->base.size / 1024,
Chris Wilson37811fc2010-08-25 22:45:57 +0100130 obj->base.read_domains,
131 obj->base.write_domain,
132 obj->last_rendering_seqno,
Chris Wilsoncaea7472010-11-12 13:53:37 +0000133 obj->last_fenced_seqno,
Chris Wilson93dfb402011-03-29 16:59:50 -0700134 cache_level_str(obj->cache_level),
Chris Wilson37811fc2010-08-25 22:45:57 +0100135 obj->dirty ? " dirty" : "",
136 obj->madv == I915_MADV_DONTNEED ? " purgeable" : "");
137 if (obj->base.name)
138 seq_printf(m, " (name: %d)", obj->base.name);
139 if (obj->fence_reg != I915_FENCE_REG_NONE)
140 seq_printf(m, " (fence: %d)", obj->fence_reg);
141 if (obj->gtt_space != NULL)
Chris Wilsona00b10c2010-09-24 21:15:47 +0100142 seq_printf(m, " (gtt offset: %08x, size: %08x)",
143 obj->gtt_offset, (unsigned int)obj->gtt_space->size);
Chris Wilson6299f992010-11-24 12:23:44 +0000144 if (obj->pin_mappable || obj->fault_mappable) {
145 char s[3], *t = s;
146 if (obj->pin_mappable)
147 *t++ = 'p';
148 if (obj->fault_mappable)
149 *t++ = 'f';
150 *t = '\0';
151 seq_printf(m, " (%s mappable)", s);
152 }
Chris Wilson69dc4982010-10-19 10:36:51 +0100153 if (obj->ring != NULL)
154 seq_printf(m, " (%s)", obj->ring->name);
Chris Wilson37811fc2010-08-25 22:45:57 +0100155}
156
Ben Gamari433e12f2009-02-17 20:08:51 -0500157static int i915_gem_object_list_info(struct seq_file *m, void *data)
Ben Gamari20172632009-02-17 20:08:50 -0500158{
159 struct drm_info_node *node = (struct drm_info_node *) m->private;
Ben Gamari433e12f2009-02-17 20:08:51 -0500160 uintptr_t list = (uintptr_t) node->info_ent->data;
161 struct list_head *head;
Ben Gamari20172632009-02-17 20:08:50 -0500162 struct drm_device *dev = node->minor->dev;
163 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +0000164 struct drm_i915_gem_object *obj;
Chris Wilson8f2480f2010-09-26 11:44:19 +0100165 size_t total_obj_size, total_gtt_size;
166 int count, ret;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100167
168 ret = mutex_lock_interruptible(&dev->struct_mutex);
169 if (ret)
170 return ret;
Ben Gamari20172632009-02-17 20:08:50 -0500171
Ben Gamari433e12f2009-02-17 20:08:51 -0500172 switch (list) {
173 case ACTIVE_LIST:
174 seq_printf(m, "Active:\n");
Chris Wilson69dc4982010-10-19 10:36:51 +0100175 head = &dev_priv->mm.active_list;
Ben Gamari433e12f2009-02-17 20:08:51 -0500176 break;
177 case INACTIVE_LIST:
Ben Gamaria17458f2009-07-01 15:01:36 -0400178 seq_printf(m, "Inactive:\n");
Ben Gamari433e12f2009-02-17 20:08:51 -0500179 head = &dev_priv->mm.inactive_list;
180 break;
Chris Wilsonf13d3f72010-09-20 17:36:15 +0100181 case PINNED_LIST:
182 seq_printf(m, "Pinned:\n");
183 head = &dev_priv->mm.pinned_list;
184 break;
Ben Gamari433e12f2009-02-17 20:08:51 -0500185 case FLUSHING_LIST:
186 seq_printf(m, "Flushing:\n");
187 head = &dev_priv->mm.flushing_list;
188 break;
Chris Wilsond21d5972010-09-26 11:19:33 +0100189 case DEFERRED_FREE_LIST:
190 seq_printf(m, "Deferred free:\n");
191 head = &dev_priv->mm.deferred_free_list;
192 break;
Ben Gamari433e12f2009-02-17 20:08:51 -0500193 default:
Chris Wilsonde227ef2010-07-03 07:58:38 +0100194 mutex_unlock(&dev->struct_mutex);
195 return -EINVAL;
Ben Gamari433e12f2009-02-17 20:08:51 -0500196 }
197
Chris Wilson8f2480f2010-09-26 11:44:19 +0100198 total_obj_size = total_gtt_size = count = 0;
Chris Wilson05394f32010-11-08 19:18:58 +0000199 list_for_each_entry(obj, head, mm_list) {
Chris Wilson37811fc2010-08-25 22:45:57 +0100200 seq_printf(m, " ");
Chris Wilson05394f32010-11-08 19:18:58 +0000201 describe_obj(m, obj);
Eric Anholtf4ceda82009-02-17 23:53:41 -0800202 seq_printf(m, "\n");
Chris Wilson05394f32010-11-08 19:18:58 +0000203 total_obj_size += obj->base.size;
204 total_gtt_size += obj->gtt_space->size;
Chris Wilson8f2480f2010-09-26 11:44:19 +0100205 count++;
Ben Gamari20172632009-02-17 20:08:50 -0500206 }
Chris Wilsonde227ef2010-07-03 07:58:38 +0100207 mutex_unlock(&dev->struct_mutex);
Carl Worth5e118f42009-03-20 11:54:25 -0700208
Chris Wilson8f2480f2010-09-26 11:44:19 +0100209 seq_printf(m, "Total %d objects, %zu bytes, %zu GTT size\n",
210 count, total_obj_size, total_gtt_size);
Ben Gamari20172632009-02-17 20:08:50 -0500211 return 0;
212}
213
Chris Wilson6299f992010-11-24 12:23:44 +0000214#define count_objects(list, member) do { \
215 list_for_each_entry(obj, list, member) { \
216 size += obj->gtt_space->size; \
217 ++count; \
218 if (obj->map_and_fenceable) { \
219 mappable_size += obj->gtt_space->size; \
220 ++mappable_count; \
221 } \
222 } \
Akshay Joshi0206e352011-08-16 15:34:10 -0400223} while (0)
Chris Wilson6299f992010-11-24 12:23:44 +0000224
Chris Wilson73aa8082010-09-30 11:46:12 +0100225static int i915_gem_object_info(struct seq_file *m, void* data)
226{
227 struct drm_info_node *node = (struct drm_info_node *) m->private;
228 struct drm_device *dev = node->minor->dev;
229 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson6299f992010-11-24 12:23:44 +0000230 u32 count, mappable_count;
231 size_t size, mappable_size;
232 struct drm_i915_gem_object *obj;
Chris Wilson73aa8082010-09-30 11:46:12 +0100233 int ret;
234
235 ret = mutex_lock_interruptible(&dev->struct_mutex);
236 if (ret)
237 return ret;
238
Chris Wilson6299f992010-11-24 12:23:44 +0000239 seq_printf(m, "%u objects, %zu bytes\n",
240 dev_priv->mm.object_count,
241 dev_priv->mm.object_memory);
242
243 size = count = mappable_size = mappable_count = 0;
244 count_objects(&dev_priv->mm.gtt_list, gtt_list);
245 seq_printf(m, "%u [%u] objects, %zu [%zu] bytes in gtt\n",
246 count, mappable_count, size, mappable_size);
247
248 size = count = mappable_size = mappable_count = 0;
249 count_objects(&dev_priv->mm.active_list, mm_list);
250 count_objects(&dev_priv->mm.flushing_list, mm_list);
251 seq_printf(m, " %u [%u] active objects, %zu [%zu] bytes\n",
252 count, mappable_count, size, mappable_size);
253
254 size = count = mappable_size = mappable_count = 0;
255 count_objects(&dev_priv->mm.pinned_list, mm_list);
256 seq_printf(m, " %u [%u] pinned objects, %zu [%zu] bytes\n",
257 count, mappable_count, size, mappable_size);
258
259 size = count = mappable_size = mappable_count = 0;
260 count_objects(&dev_priv->mm.inactive_list, mm_list);
261 seq_printf(m, " %u [%u] inactive objects, %zu [%zu] bytes\n",
262 count, mappable_count, size, mappable_size);
263
264 size = count = mappable_size = mappable_count = 0;
265 count_objects(&dev_priv->mm.deferred_free_list, mm_list);
266 seq_printf(m, " %u [%u] freed objects, %zu [%zu] bytes\n",
267 count, mappable_count, size, mappable_size);
268
269 size = count = mappable_size = mappable_count = 0;
270 list_for_each_entry(obj, &dev_priv->mm.gtt_list, gtt_list) {
271 if (obj->fault_mappable) {
272 size += obj->gtt_space->size;
273 ++count;
274 }
275 if (obj->pin_mappable) {
276 mappable_size += obj->gtt_space->size;
277 ++mappable_count;
278 }
279 }
280 seq_printf(m, "%u pinned mappable objects, %zu bytes\n",
281 mappable_count, mappable_size);
282 seq_printf(m, "%u fault mappable objects, %zu bytes\n",
283 count, size);
284
285 seq_printf(m, "%zu [%zu] gtt total\n",
286 dev_priv->mm.gtt_total, dev_priv->mm.mappable_gtt_total);
Chris Wilson73aa8082010-09-30 11:46:12 +0100287
288 mutex_unlock(&dev->struct_mutex);
289
290 return 0;
291}
292
Chris Wilson08c18322011-01-10 00:00:24 +0000293static int i915_gem_gtt_info(struct seq_file *m, void* data)
294{
295 struct drm_info_node *node = (struct drm_info_node *) m->private;
296 struct drm_device *dev = node->minor->dev;
297 struct drm_i915_private *dev_priv = dev->dev_private;
298 struct drm_i915_gem_object *obj;
299 size_t total_obj_size, total_gtt_size;
300 int count, ret;
301
302 ret = mutex_lock_interruptible(&dev->struct_mutex);
303 if (ret)
304 return ret;
305
306 total_obj_size = total_gtt_size = count = 0;
307 list_for_each_entry(obj, &dev_priv->mm.gtt_list, gtt_list) {
308 seq_printf(m, " ");
309 describe_obj(m, obj);
310 seq_printf(m, "\n");
311 total_obj_size += obj->base.size;
312 total_gtt_size += obj->gtt_space->size;
313 count++;
314 }
315
316 mutex_unlock(&dev->struct_mutex);
317
318 seq_printf(m, "Total %d objects, %zu bytes, %zu GTT size\n",
319 count, total_obj_size, total_gtt_size);
320
321 return 0;
322}
323
Chris Wilson73aa8082010-09-30 11:46:12 +0100324
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100325static int i915_gem_pageflip_info(struct seq_file *m, void *data)
326{
327 struct drm_info_node *node = (struct drm_info_node *) m->private;
328 struct drm_device *dev = node->minor->dev;
329 unsigned long flags;
330 struct intel_crtc *crtc;
331
332 list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800333 const char pipe = pipe_name(crtc->pipe);
334 const char plane = plane_name(crtc->plane);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100335 struct intel_unpin_work *work;
336
337 spin_lock_irqsave(&dev->event_lock, flags);
338 work = crtc->unpin_work;
339 if (work == NULL) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800340 seq_printf(m, "No flip due on pipe %c (plane %c)\n",
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100341 pipe, plane);
342 } else {
343 if (!work->pending) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800344 seq_printf(m, "Flip queued on pipe %c (plane %c)\n",
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100345 pipe, plane);
346 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800347 seq_printf(m, "Flip pending (waiting for vsync) on pipe %c (plane %c)\n",
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100348 pipe, plane);
349 }
350 if (work->enable_stall_check)
351 seq_printf(m, "Stall check enabled, ");
352 else
353 seq_printf(m, "Stall check waiting for page flip ioctl, ");
354 seq_printf(m, "%d prepares\n", work->pending);
355
356 if (work->old_fb_obj) {
Chris Wilson05394f32010-11-08 19:18:58 +0000357 struct drm_i915_gem_object *obj = work->old_fb_obj;
358 if (obj)
359 seq_printf(m, "Old framebuffer gtt_offset 0x%08x\n", obj->gtt_offset);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100360 }
361 if (work->pending_flip_obj) {
Chris Wilson05394f32010-11-08 19:18:58 +0000362 struct drm_i915_gem_object *obj = work->pending_flip_obj;
363 if (obj)
364 seq_printf(m, "New framebuffer gtt_offset 0x%08x\n", obj->gtt_offset);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100365 }
366 }
367 spin_unlock_irqrestore(&dev->event_lock, flags);
368 }
369
370 return 0;
371}
372
Ben Gamari20172632009-02-17 20:08:50 -0500373static int i915_gem_request_info(struct seq_file *m, void *data)
374{
375 struct drm_info_node *node = (struct drm_info_node *) m->private;
376 struct drm_device *dev = node->minor->dev;
377 drm_i915_private_t *dev_priv = dev->dev_private;
378 struct drm_i915_gem_request *gem_request;
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100379 int ret, count;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100380
381 ret = mutex_lock_interruptible(&dev->struct_mutex);
382 if (ret)
383 return ret;
Ben Gamari20172632009-02-17 20:08:50 -0500384
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100385 count = 0;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000386 if (!list_empty(&dev_priv->ring[RCS].request_list)) {
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100387 seq_printf(m, "Render requests:\n");
388 list_for_each_entry(gem_request,
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000389 &dev_priv->ring[RCS].request_list,
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100390 list) {
391 seq_printf(m, " %d @ %d\n",
392 gem_request->seqno,
393 (int) (jiffies - gem_request->emitted_jiffies));
394 }
395 count++;
396 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000397 if (!list_empty(&dev_priv->ring[VCS].request_list)) {
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100398 seq_printf(m, "BSD requests:\n");
399 list_for_each_entry(gem_request,
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000400 &dev_priv->ring[VCS].request_list,
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100401 list) {
402 seq_printf(m, " %d @ %d\n",
403 gem_request->seqno,
404 (int) (jiffies - gem_request->emitted_jiffies));
405 }
406 count++;
407 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000408 if (!list_empty(&dev_priv->ring[BCS].request_list)) {
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100409 seq_printf(m, "BLT requests:\n");
410 list_for_each_entry(gem_request,
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000411 &dev_priv->ring[BCS].request_list,
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100412 list) {
413 seq_printf(m, " %d @ %d\n",
414 gem_request->seqno,
415 (int) (jiffies - gem_request->emitted_jiffies));
416 }
417 count++;
Ben Gamari20172632009-02-17 20:08:50 -0500418 }
Chris Wilsonde227ef2010-07-03 07:58:38 +0100419 mutex_unlock(&dev->struct_mutex);
420
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100421 if (count == 0)
422 seq_printf(m, "No requests\n");
423
Ben Gamari20172632009-02-17 20:08:50 -0500424 return 0;
425}
426
Chris Wilsonb2223492010-10-27 15:27:33 +0100427static void i915_ring_seqno_info(struct seq_file *m,
428 struct intel_ring_buffer *ring)
429{
430 if (ring->get_seqno) {
431 seq_printf(m, "Current sequence (%s): %d\n",
432 ring->name, ring->get_seqno(ring));
433 seq_printf(m, "Waiter sequence (%s): %d\n",
434 ring->name, ring->waiting_seqno);
435 seq_printf(m, "IRQ sequence (%s): %d\n",
436 ring->name, ring->irq_seqno);
437 }
438}
439
Ben Gamari20172632009-02-17 20:08:50 -0500440static int i915_gem_seqno_info(struct seq_file *m, void *data)
441{
442 struct drm_info_node *node = (struct drm_info_node *) m->private;
443 struct drm_device *dev = node->minor->dev;
444 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000445 int ret, i;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100446
447 ret = mutex_lock_interruptible(&dev->struct_mutex);
448 if (ret)
449 return ret;
Ben Gamari20172632009-02-17 20:08:50 -0500450
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000451 for (i = 0; i < I915_NUM_RINGS; i++)
452 i915_ring_seqno_info(m, &dev_priv->ring[i]);
Chris Wilsonde227ef2010-07-03 07:58:38 +0100453
454 mutex_unlock(&dev->struct_mutex);
455
Ben Gamari20172632009-02-17 20:08:50 -0500456 return 0;
457}
458
459
460static int i915_interrupt_info(struct seq_file *m, void *data)
461{
462 struct drm_info_node *node = (struct drm_info_node *) m->private;
463 struct drm_device *dev = node->minor->dev;
464 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800465 int ret, i, pipe;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100466
467 ret = mutex_lock_interruptible(&dev->struct_mutex);
468 if (ret)
469 return ret;
Ben Gamari20172632009-02-17 20:08:50 -0500470
Eric Anholtbad720f2009-10-22 16:11:14 -0700471 if (!HAS_PCH_SPLIT(dev)) {
Zhenyu Wang5f6a1692009-08-10 21:37:24 +0800472 seq_printf(m, "Interrupt enable: %08x\n",
473 I915_READ(IER));
474 seq_printf(m, "Interrupt identity: %08x\n",
475 I915_READ(IIR));
476 seq_printf(m, "Interrupt mask: %08x\n",
477 I915_READ(IMR));
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800478 for_each_pipe(pipe)
479 seq_printf(m, "Pipe %c stat: %08x\n",
480 pipe_name(pipe),
481 I915_READ(PIPESTAT(pipe)));
Zhenyu Wang5f6a1692009-08-10 21:37:24 +0800482 } else {
483 seq_printf(m, "North Display Interrupt enable: %08x\n",
484 I915_READ(DEIER));
485 seq_printf(m, "North Display Interrupt identity: %08x\n",
486 I915_READ(DEIIR));
487 seq_printf(m, "North Display Interrupt mask: %08x\n",
488 I915_READ(DEIMR));
489 seq_printf(m, "South Display Interrupt enable: %08x\n",
490 I915_READ(SDEIER));
491 seq_printf(m, "South Display Interrupt identity: %08x\n",
492 I915_READ(SDEIIR));
493 seq_printf(m, "South Display Interrupt mask: %08x\n",
494 I915_READ(SDEIMR));
495 seq_printf(m, "Graphics Interrupt enable: %08x\n",
496 I915_READ(GTIER));
497 seq_printf(m, "Graphics Interrupt identity: %08x\n",
498 I915_READ(GTIIR));
499 seq_printf(m, "Graphics Interrupt mask: %08x\n",
500 I915_READ(GTIMR));
501 }
Ben Gamari20172632009-02-17 20:08:50 -0500502 seq_printf(m, "Interrupts received: %d\n",
503 atomic_read(&dev_priv->irq_received));
Chris Wilson9862e602011-01-04 22:22:17 +0000504 for (i = 0; i < I915_NUM_RINGS; i++) {
Jesse Barnesda64c6f2011-08-09 09:17:46 -0700505 if (IS_GEN6(dev) || IS_GEN7(dev)) {
Chris Wilson9862e602011-01-04 22:22:17 +0000506 seq_printf(m, "Graphics Interrupt mask (%s): %08x\n",
507 dev_priv->ring[i].name,
508 I915_READ_IMR(&dev_priv->ring[i]));
509 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000510 i915_ring_seqno_info(m, &dev_priv->ring[i]);
Chris Wilson9862e602011-01-04 22:22:17 +0000511 }
Chris Wilsonde227ef2010-07-03 07:58:38 +0100512 mutex_unlock(&dev->struct_mutex);
513
Ben Gamari20172632009-02-17 20:08:50 -0500514 return 0;
515}
516
Chris Wilsona6172a82009-02-11 14:26:38 +0000517static int i915_gem_fence_regs_info(struct seq_file *m, void *data)
518{
519 struct drm_info_node *node = (struct drm_info_node *) m->private;
520 struct drm_device *dev = node->minor->dev;
521 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100522 int i, ret;
523
524 ret = mutex_lock_interruptible(&dev->struct_mutex);
525 if (ret)
526 return ret;
Chris Wilsona6172a82009-02-11 14:26:38 +0000527
528 seq_printf(m, "Reserved fences = %d\n", dev_priv->fence_reg_start);
529 seq_printf(m, "Total fences = %d\n", dev_priv->num_fence_regs);
530 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +0000531 struct drm_i915_gem_object *obj = dev_priv->fence_regs[i].obj;
Chris Wilsona6172a82009-02-11 14:26:38 +0000532
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100533 seq_printf(m, "Fenced object[%2d] = ", i);
534 if (obj == NULL)
535 seq_printf(m, "unused");
536 else
Chris Wilson05394f32010-11-08 19:18:58 +0000537 describe_obj(m, obj);
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100538 seq_printf(m, "\n");
Chris Wilsona6172a82009-02-11 14:26:38 +0000539 }
540
Chris Wilson05394f32010-11-08 19:18:58 +0000541 mutex_unlock(&dev->struct_mutex);
Chris Wilsona6172a82009-02-11 14:26:38 +0000542 return 0;
543}
544
Ben Gamari20172632009-02-17 20:08:50 -0500545static int i915_hws_info(struct seq_file *m, void *data)
546{
547 struct drm_info_node *node = (struct drm_info_node *) m->private;
548 struct drm_device *dev = node->minor->dev;
549 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson4066c0a2010-10-29 21:00:54 +0100550 struct intel_ring_buffer *ring;
Chris Wilson311bd682011-01-13 19:06:50 +0000551 const volatile u32 __iomem *hws;
Chris Wilson4066c0a2010-10-29 21:00:54 +0100552 int i;
Ben Gamari20172632009-02-17 20:08:50 -0500553
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000554 ring = &dev_priv->ring[(uintptr_t)node->info_ent->data];
Chris Wilson311bd682011-01-13 19:06:50 +0000555 hws = (volatile u32 __iomem *)ring->status_page.page_addr;
Ben Gamari20172632009-02-17 20:08:50 -0500556 if (hws == NULL)
557 return 0;
558
559 for (i = 0; i < 4096 / sizeof(u32) / 4; i += 4) {
560 seq_printf(m, "0x%08x: 0x%08x 0x%08x 0x%08x 0x%08x\n",
561 i * 4,
562 hws[i], hws[i + 1], hws[i + 2], hws[i + 3]);
563 }
564 return 0;
565}
566
Ben Gamari6911a9b2009-04-02 11:24:54 -0700567static int i915_ringbuffer_data(struct seq_file *m, void *data)
568{
569 struct drm_info_node *node = (struct drm_info_node *) m->private;
570 struct drm_device *dev = node->minor->dev;
571 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100572 struct intel_ring_buffer *ring;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100573 int ret;
574
575 ret = mutex_lock_interruptible(&dev->struct_mutex);
576 if (ret)
577 return ret;
Ben Gamari6911a9b2009-04-02 11:24:54 -0700578
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000579 ring = &dev_priv->ring[(uintptr_t)node->info_ent->data];
Chris Wilson05394f32010-11-08 19:18:58 +0000580 if (!ring->obj) {
Ben Gamari6911a9b2009-04-02 11:24:54 -0700581 seq_printf(m, "No ringbuffer setup\n");
Chris Wilsonde227ef2010-07-03 07:58:38 +0100582 } else {
Chris Wilson311bd682011-01-13 19:06:50 +0000583 const u8 __iomem *virt = ring->virtual_start;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100584 uint32_t off;
Ben Gamari6911a9b2009-04-02 11:24:54 -0700585
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100586 for (off = 0; off < ring->size; off += 4) {
Chris Wilsonde227ef2010-07-03 07:58:38 +0100587 uint32_t *ptr = (uint32_t *)(virt + off);
588 seq_printf(m, "%08x : %08x\n", off, *ptr);
589 }
Ben Gamari6911a9b2009-04-02 11:24:54 -0700590 }
Chris Wilsonde227ef2010-07-03 07:58:38 +0100591 mutex_unlock(&dev->struct_mutex);
Ben Gamari6911a9b2009-04-02 11:24:54 -0700592
593 return 0;
594}
595
596static int i915_ringbuffer_info(struct seq_file *m, void *data)
597{
598 struct drm_info_node *node = (struct drm_info_node *) m->private;
599 struct drm_device *dev = node->minor->dev;
600 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100601 struct intel_ring_buffer *ring;
Ben Widawsky616fdb52011-10-05 11:44:54 -0700602 int ret;
Ben Gamari6911a9b2009-04-02 11:24:54 -0700603
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000604 ring = &dev_priv->ring[(uintptr_t)node->info_ent->data];
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100605 if (ring->size == 0)
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000606 return 0;
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100607
Ben Widawsky616fdb52011-10-05 11:44:54 -0700608 ret = mutex_lock_interruptible(&dev->struct_mutex);
609 if (ret)
610 return ret;
611
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100612 seq_printf(m, "Ring %s:\n", ring->name);
613 seq_printf(m, " Head : %08x\n", I915_READ_HEAD(ring) & HEAD_ADDR);
614 seq_printf(m, " Tail : %08x\n", I915_READ_TAIL(ring) & TAIL_ADDR);
615 seq_printf(m, " Size : %08x\n", ring->size);
616 seq_printf(m, " Active : %08x\n", intel_ring_get_active_head(ring));
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000617 seq_printf(m, " NOPID : %08x\n", I915_READ_NOPID(ring));
Daniel Vetter48467a92012-01-24 09:44:29 +0100618 if (IS_GEN6(dev) || IS_GEN7(dev)) {
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000619 seq_printf(m, " Sync 0 : %08x\n", I915_READ_SYNC_0(ring));
620 seq_printf(m, " Sync 1 : %08x\n", I915_READ_SYNC_1(ring));
621 }
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100622 seq_printf(m, " Control : %08x\n", I915_READ_CTL(ring));
623 seq_printf(m, " Start : %08x\n", I915_READ_START(ring));
Ben Gamari6911a9b2009-04-02 11:24:54 -0700624
Ben Widawsky616fdb52011-10-05 11:44:54 -0700625 mutex_unlock(&dev->struct_mutex);
626
Ben Gamari6911a9b2009-04-02 11:24:54 -0700627 return 0;
628}
629
Chris Wilsone5c65262010-11-01 11:35:28 +0000630static const char *ring_str(int ring)
631{
632 switch (ring) {
Daniel Vetter96154f22011-12-14 13:57:00 +0100633 case RCS: return "render";
634 case VCS: return "bsd";
635 case BCS: return "blt";
Chris Wilsone5c65262010-11-01 11:35:28 +0000636 default: return "";
637 }
638}
639
Chris Wilson9df30792010-02-18 10:24:56 +0000640static const char *pin_flag(int pinned)
641{
642 if (pinned > 0)
643 return " P";
644 else if (pinned < 0)
645 return " p";
646 else
647 return "";
648}
649
650static const char *tiling_flag(int tiling)
651{
652 switch (tiling) {
653 default:
654 case I915_TILING_NONE: return "";
655 case I915_TILING_X: return " X";
656 case I915_TILING_Y: return " Y";
657 }
658}
659
660static const char *dirty_flag(int dirty)
661{
662 return dirty ? " dirty" : "";
663}
664
665static const char *purgeable_flag(int purgeable)
666{
667 return purgeable ? " purgeable" : "";
668}
669
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000670static void print_error_buffers(struct seq_file *m,
671 const char *name,
672 struct drm_i915_error_buffer *err,
673 int count)
674{
675 seq_printf(m, "%s [%d]:\n", name, count);
676
677 while (count--) {
Daniel Vetter96154f22011-12-14 13:57:00 +0100678 seq_printf(m, " %08x %8u %04x %04x %08x%s%s%s%s%s%s%s",
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000679 err->gtt_offset,
680 err->size,
681 err->read_domains,
682 err->write_domain,
683 err->seqno,
684 pin_flag(err->pinned),
685 tiling_flag(err->tiling),
686 dirty_flag(err->dirty),
687 purgeable_flag(err->purgeable),
Daniel Vetter96154f22011-12-14 13:57:00 +0100688 err->ring != -1 ? " " : "",
Chris Wilsona779e5a2011-01-09 21:07:49 +0000689 ring_str(err->ring),
Chris Wilson93dfb402011-03-29 16:59:50 -0700690 cache_level_str(err->cache_level));
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000691
692 if (err->name)
693 seq_printf(m, " (name: %d)", err->name);
694 if (err->fence_reg != I915_FENCE_REG_NONE)
695 seq_printf(m, " (fence: %d)", err->fence_reg);
696
697 seq_printf(m, "\n");
698 err++;
699 }
700}
701
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100702static void i915_ring_error_state(struct seq_file *m,
703 struct drm_device *dev,
704 struct drm_i915_error_state *error,
705 unsigned ring)
706{
707 seq_printf(m, "%s command stream:\n", ring_str(ring));
Daniel Vetterc1cd90e2011-12-14 13:57:02 +0100708 seq_printf(m, " HEAD: 0x%08x\n", error->head[ring]);
709 seq_printf(m, " TAIL: 0x%08x\n", error->tail[ring]);
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100710 seq_printf(m, " ACTHD: 0x%08x\n", error->acthd[ring]);
711 seq_printf(m, " IPEIR: 0x%08x\n", error->ipeir[ring]);
712 seq_printf(m, " IPEHR: 0x%08x\n", error->ipehr[ring]);
713 seq_printf(m, " INSTDONE: 0x%08x\n", error->instdone[ring]);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +0100714 if (ring == RCS && INTEL_INFO(dev)->gen >= 4) {
715 seq_printf(m, " INSTDONE1: 0x%08x\n", error->instdone1);
716 seq_printf(m, " BBADDR: 0x%08llx\n", error->bbaddr);
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100717 }
Daniel Vetterc1cd90e2011-12-14 13:57:02 +0100718 if (INTEL_INFO(dev)->gen >= 4)
719 seq_printf(m, " INSTPS: 0x%08x\n", error->instps[ring]);
720 seq_printf(m, " INSTPM: 0x%08x\n", error->instpm[ring]);
Daniel Vetter33f3f512011-12-14 13:57:39 +0100721 if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetterc1cd90e2011-12-14 13:57:02 +0100722 seq_printf(m, " FADDR: 0x%08x\n", error->faddr[ring]);
Daniel Vetter33f3f512011-12-14 13:57:39 +0100723 seq_printf(m, " FAULT_REG: 0x%08x\n", error->fault_reg[ring]);
Daniel Vetter7e3b8732012-02-01 22:26:45 +0100724 seq_printf(m, " SYNC_0: 0x%08x\n",
725 error->semaphore_mboxes[ring][0]);
726 seq_printf(m, " SYNC_1: 0x%08x\n",
727 error->semaphore_mboxes[ring][1]);
Daniel Vetter33f3f512011-12-14 13:57:39 +0100728 }
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100729 seq_printf(m, " seqno: 0x%08x\n", error->seqno[ring]);
Daniel Vetter7e3b8732012-02-01 22:26:45 +0100730 seq_printf(m, " ring->head: 0x%08x\n", error->cpu_ring_head[ring]);
731 seq_printf(m, " ring->tail: 0x%08x\n", error->cpu_ring_tail[ring]);
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100732}
733
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700734static int i915_error_state(struct seq_file *m, void *unused)
735{
736 struct drm_info_node *node = (struct drm_info_node *) m->private;
737 struct drm_device *dev = node->minor->dev;
738 drm_i915_private_t *dev_priv = dev->dev_private;
739 struct drm_i915_error_state *error;
740 unsigned long flags;
Chris Wilson52d39a22012-02-15 11:25:37 +0000741 int i, j, page, offset, elt;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700742
743 spin_lock_irqsave(&dev_priv->error_lock, flags);
744 if (!dev_priv->first_error) {
745 seq_printf(m, "no error state collected\n");
746 goto out;
747 }
748
749 error = dev_priv->first_error;
750
Jesse Barnes8a905232009-07-11 16:48:03 -0400751 seq_printf(m, "Time: %ld s %ld us\n", error->time.tv_sec,
752 error->time.tv_usec);
Chris Wilson9df30792010-02-18 10:24:56 +0000753 seq_printf(m, "PCI ID: 0x%04x\n", dev->pci_device);
Chris Wilson1d8f38f2010-10-29 19:00:51 +0100754 seq_printf(m, "EIR: 0x%08x\n", error->eir);
755 seq_printf(m, "PGTBL_ER: 0x%08x\n", error->pgtbl_er);
Chris Wilson9df30792010-02-18 10:24:56 +0000756
Daniel Vetterbf3301a2011-05-12 22:17:12 +0100757 for (i = 0; i < dev_priv->num_fence_regs; i++)
Chris Wilson748ebc62010-10-24 10:28:47 +0100758 seq_printf(m, " fence[%d] = %08llx\n", i, error->fence[i]);
759
Daniel Vetter33f3f512011-12-14 13:57:39 +0100760 if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100761 seq_printf(m, "ERROR: 0x%08x\n", error->error);
Daniel Vetter33f3f512011-12-14 13:57:39 +0100762 seq_printf(m, "DONE_REG: 0x%08x\n", error->done_reg);
763 }
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100764
765 i915_ring_error_state(m, dev, error, RCS);
766 if (HAS_BLT(dev))
767 i915_ring_error_state(m, dev, error, BCS);
768 if (HAS_BSD(dev))
769 i915_ring_error_state(m, dev, error, VCS);
770
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000771 if (error->active_bo)
772 print_error_buffers(m, "Active",
773 error->active_bo,
774 error->active_bo_count);
Chris Wilson9df30792010-02-18 10:24:56 +0000775
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000776 if (error->pinned_bo)
777 print_error_buffers(m, "Pinned",
778 error->pinned_bo,
779 error->pinned_bo_count);
Chris Wilson9df30792010-02-18 10:24:56 +0000780
Chris Wilson52d39a22012-02-15 11:25:37 +0000781 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
782 struct drm_i915_error_object *obj;
Chris Wilson9df30792010-02-18 10:24:56 +0000783
Chris Wilson52d39a22012-02-15 11:25:37 +0000784 if ((obj = error->ring[i].batchbuffer)) {
Chris Wilsonbcfb2e22011-01-07 21:06:07 +0000785 seq_printf(m, "%s --- gtt_offset = 0x%08x\n",
786 dev_priv->ring[i].name,
787 obj->gtt_offset);
Chris Wilson9df30792010-02-18 10:24:56 +0000788 offset = 0;
789 for (page = 0; page < obj->page_count; page++) {
790 for (elt = 0; elt < PAGE_SIZE/4; elt++) {
791 seq_printf(m, "%08x : %08x\n", offset, obj->pages[page][elt]);
792 offset += 4;
793 }
794 }
795 }
Chris Wilson9df30792010-02-18 10:24:56 +0000796
Chris Wilson52d39a22012-02-15 11:25:37 +0000797 if (error->ring[i].num_requests) {
798 seq_printf(m, "%s --- %d requests\n",
799 dev_priv->ring[i].name,
800 error->ring[i].num_requests);
801 for (j = 0; j < error->ring[i].num_requests; j++) {
802 seq_printf(m, " seqno 0x%08x, emitted %ld\n",
803 error->ring[i].requests[j].seqno,
804 error->ring[i].requests[j].jiffies);
805 }
806 }
807
808 if ((obj = error->ring[i].ringbuffer)) {
Chris Wilsone2f973d2011-01-27 19:15:11 +0000809 seq_printf(m, "%s --- ringbuffer = 0x%08x\n",
810 dev_priv->ring[i].name,
811 obj->gtt_offset);
812 offset = 0;
813 for (page = 0; page < obj->page_count; page++) {
814 for (elt = 0; elt < PAGE_SIZE/4; elt++) {
815 seq_printf(m, "%08x : %08x\n",
816 offset,
817 obj->pages[page][elt]);
818 offset += 4;
819 }
Chris Wilson9df30792010-02-18 10:24:56 +0000820 }
821 }
822 }
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700823
Chris Wilson6ef3d422010-08-04 20:26:07 +0100824 if (error->overlay)
825 intel_overlay_print_error_state(m, error->overlay);
826
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +0000827 if (error->display)
828 intel_display_print_error_state(m, dev, error->display);
829
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700830out:
831 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
832
833 return 0;
834}
Ben Gamari6911a9b2009-04-02 11:24:54 -0700835
Jesse Barnesf97108d2010-01-29 11:27:07 -0800836static int i915_rstdby_delays(struct seq_file *m, void *unused)
837{
838 struct drm_info_node *node = (struct drm_info_node *) m->private;
839 struct drm_device *dev = node->minor->dev;
840 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky616fdb52011-10-05 11:44:54 -0700841 u16 crstanddelay;
842 int ret;
843
844 ret = mutex_lock_interruptible(&dev->struct_mutex);
845 if (ret)
846 return ret;
847
848 crstanddelay = I915_READ16(CRSTANDVID);
849
850 mutex_unlock(&dev->struct_mutex);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800851
852 seq_printf(m, "w/ctx: %d, w/o ctx: %d\n", (crstanddelay >> 8) & 0x3f, (crstanddelay & 0x3f));
853
854 return 0;
855}
856
857static int i915_cur_delayinfo(struct seq_file *m, void *unused)
858{
859 struct drm_info_node *node = (struct drm_info_node *) m->private;
860 struct drm_device *dev = node->minor->dev;
861 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawskyd1ebd812011-04-25 20:11:50 +0100862 int ret;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800863
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800864 if (IS_GEN5(dev)) {
865 u16 rgvswctl = I915_READ16(MEMSWCTL);
866 u16 rgvstat = I915_READ16(MEMSTAT_ILK);
867
868 seq_printf(m, "Requested P-state: %d\n", (rgvswctl >> 8) & 0xf);
869 seq_printf(m, "Requested VID: %d\n", rgvswctl & 0x3f);
870 seq_printf(m, "Current VID: %d\n", (rgvstat & MEMSTAT_VID_MASK) >>
871 MEMSTAT_VID_SHIFT);
872 seq_printf(m, "Current P-state: %d\n",
873 (rgvstat & MEMSTAT_PSTATE_MASK) >> MEMSTAT_PSTATE_SHIFT);
Jesse Barnes1c70c0c2011-06-29 13:34:36 -0700874 } else if (IS_GEN6(dev) || IS_GEN7(dev)) {
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800875 u32 gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS);
876 u32 rp_state_limits = I915_READ(GEN6_RP_STATE_LIMITS);
877 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
Jesse Barnesccab5c82011-01-18 15:49:25 -0800878 u32 rpstat;
879 u32 rpupei, rpcurup, rpprevup;
880 u32 rpdownei, rpcurdown, rpprevdown;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800881 int max_freq;
882
883 /* RPSTAT1 is in the GT power well */
Ben Widawskyd1ebd812011-04-25 20:11:50 +0100884 ret = mutex_lock_interruptible(&dev->struct_mutex);
885 if (ret)
886 return ret;
887
Ben Widawskyfcca7922011-04-25 11:23:07 -0700888 gen6_gt_force_wake_get(dev_priv);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800889
Jesse Barnesccab5c82011-01-18 15:49:25 -0800890 rpstat = I915_READ(GEN6_RPSTAT1);
891 rpupei = I915_READ(GEN6_RP_CUR_UP_EI);
892 rpcurup = I915_READ(GEN6_RP_CUR_UP);
893 rpprevup = I915_READ(GEN6_RP_PREV_UP);
894 rpdownei = I915_READ(GEN6_RP_CUR_DOWN_EI);
895 rpcurdown = I915_READ(GEN6_RP_CUR_DOWN);
896 rpprevdown = I915_READ(GEN6_RP_PREV_DOWN);
897
Ben Widawskyd1ebd812011-04-25 20:11:50 +0100898 gen6_gt_force_wake_put(dev_priv);
899 mutex_unlock(&dev->struct_mutex);
900
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800901 seq_printf(m, "GT_PERF_STATUS: 0x%08x\n", gt_perf_status);
Jesse Barnesccab5c82011-01-18 15:49:25 -0800902 seq_printf(m, "RPSTAT1: 0x%08x\n", rpstat);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800903 seq_printf(m, "Render p-state ratio: %d\n",
904 (gt_perf_status & 0xff00) >> 8);
905 seq_printf(m, "Render p-state VID: %d\n",
906 gt_perf_status & 0xff);
907 seq_printf(m, "Render p-state limit: %d\n",
908 rp_state_limits & 0xff);
Jesse Barnesccab5c82011-01-18 15:49:25 -0800909 seq_printf(m, "CAGF: %dMHz\n", ((rpstat & GEN6_CAGF_MASK) >>
Jesse Barnese281fca2011-03-18 10:32:07 -0700910 GEN6_CAGF_SHIFT) * 50);
Jesse Barnesccab5c82011-01-18 15:49:25 -0800911 seq_printf(m, "RP CUR UP EI: %dus\n", rpupei &
912 GEN6_CURICONT_MASK);
913 seq_printf(m, "RP CUR UP: %dus\n", rpcurup &
914 GEN6_CURBSYTAVG_MASK);
915 seq_printf(m, "RP PREV UP: %dus\n", rpprevup &
916 GEN6_CURBSYTAVG_MASK);
917 seq_printf(m, "RP CUR DOWN EI: %dus\n", rpdownei &
918 GEN6_CURIAVG_MASK);
919 seq_printf(m, "RP CUR DOWN: %dus\n", rpcurdown &
920 GEN6_CURBSYTAVG_MASK);
921 seq_printf(m, "RP PREV DOWN: %dus\n", rpprevdown &
922 GEN6_CURBSYTAVG_MASK);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800923
924 max_freq = (rp_state_cap & 0xff0000) >> 16;
925 seq_printf(m, "Lowest (RPN) frequency: %dMHz\n",
Jesse Barnese281fca2011-03-18 10:32:07 -0700926 max_freq * 50);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800927
928 max_freq = (rp_state_cap & 0xff00) >> 8;
929 seq_printf(m, "Nominal (RP1) frequency: %dMHz\n",
Jesse Barnese281fca2011-03-18 10:32:07 -0700930 max_freq * 50);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800931
932 max_freq = rp_state_cap & 0xff;
933 seq_printf(m, "Max non-overclocked (RP0) frequency: %dMHz\n",
Jesse Barnese281fca2011-03-18 10:32:07 -0700934 max_freq * 50);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800935 } else {
936 seq_printf(m, "no P-state info available\n");
937 }
Jesse Barnesf97108d2010-01-29 11:27:07 -0800938
939 return 0;
940}
941
942static int i915_delayfreq_table(struct seq_file *m, void *unused)
943{
944 struct drm_info_node *node = (struct drm_info_node *) m->private;
945 struct drm_device *dev = node->minor->dev;
946 drm_i915_private_t *dev_priv = dev->dev_private;
947 u32 delayfreq;
Ben Widawsky616fdb52011-10-05 11:44:54 -0700948 int ret, i;
949
950 ret = mutex_lock_interruptible(&dev->struct_mutex);
951 if (ret)
952 return ret;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800953
954 for (i = 0; i < 16; i++) {
955 delayfreq = I915_READ(PXVFREQ_BASE + i * 4);
Jesse Barnes7648fa92010-05-20 14:28:11 -0700956 seq_printf(m, "P%02dVIDFREQ: 0x%08x (VID: %d)\n", i, delayfreq,
957 (delayfreq & PXVFREQ_PX_MASK) >> PXVFREQ_PX_SHIFT);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800958 }
959
Ben Widawsky616fdb52011-10-05 11:44:54 -0700960 mutex_unlock(&dev->struct_mutex);
961
Jesse Barnesf97108d2010-01-29 11:27:07 -0800962 return 0;
963}
964
965static inline int MAP_TO_MV(int map)
966{
967 return 1250 - (map * 25);
968}
969
970static int i915_inttoext_table(struct seq_file *m, void *unused)
971{
972 struct drm_info_node *node = (struct drm_info_node *) m->private;
973 struct drm_device *dev = node->minor->dev;
974 drm_i915_private_t *dev_priv = dev->dev_private;
975 u32 inttoext;
Ben Widawsky616fdb52011-10-05 11:44:54 -0700976 int ret, i;
977
978 ret = mutex_lock_interruptible(&dev->struct_mutex);
979 if (ret)
980 return ret;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800981
982 for (i = 1; i <= 32; i++) {
983 inttoext = I915_READ(INTTOEXT_BASE_ILK + i * 4);
984 seq_printf(m, "INTTOEXT%02d: 0x%08x\n", i, inttoext);
985 }
986
Ben Widawsky616fdb52011-10-05 11:44:54 -0700987 mutex_unlock(&dev->struct_mutex);
988
Jesse Barnesf97108d2010-01-29 11:27:07 -0800989 return 0;
990}
991
Ben Widawsky4d855292011-12-12 19:34:16 -0800992static int ironlake_drpc_info(struct seq_file *m)
Jesse Barnesf97108d2010-01-29 11:27:07 -0800993{
994 struct drm_info_node *node = (struct drm_info_node *) m->private;
995 struct drm_device *dev = node->minor->dev;
996 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky616fdb52011-10-05 11:44:54 -0700997 u32 rgvmodectl, rstdbyctl;
998 u16 crstandvid;
999 int ret;
1000
1001 ret = mutex_lock_interruptible(&dev->struct_mutex);
1002 if (ret)
1003 return ret;
1004
1005 rgvmodectl = I915_READ(MEMMODECTL);
1006 rstdbyctl = I915_READ(RSTDBYCTL);
1007 crstandvid = I915_READ16(CRSTANDVID);
1008
1009 mutex_unlock(&dev->struct_mutex);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001010
1011 seq_printf(m, "HD boost: %s\n", (rgvmodectl & MEMMODE_BOOST_EN) ?
1012 "yes" : "no");
1013 seq_printf(m, "Boost freq: %d\n",
1014 (rgvmodectl & MEMMODE_BOOST_FREQ_MASK) >>
1015 MEMMODE_BOOST_FREQ_SHIFT);
1016 seq_printf(m, "HW control enabled: %s\n",
1017 rgvmodectl & MEMMODE_HWIDLE_EN ? "yes" : "no");
1018 seq_printf(m, "SW control enabled: %s\n",
1019 rgvmodectl & MEMMODE_SWMODE_EN ? "yes" : "no");
1020 seq_printf(m, "Gated voltage change: %s\n",
1021 rgvmodectl & MEMMODE_RCLK_GATE ? "yes" : "no");
1022 seq_printf(m, "Starting frequency: P%d\n",
1023 (rgvmodectl & MEMMODE_FSTART_MASK) >> MEMMODE_FSTART_SHIFT);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001024 seq_printf(m, "Max P-state: P%d\n",
Jesse Barnesf97108d2010-01-29 11:27:07 -08001025 (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001026 seq_printf(m, "Min P-state: P%d\n", (rgvmodectl & MEMMODE_FMIN_MASK));
1027 seq_printf(m, "RS1 VID: %d\n", (crstandvid & 0x3f));
1028 seq_printf(m, "RS2 VID: %d\n", ((crstandvid >> 8) & 0x3f));
1029 seq_printf(m, "Render standby enabled: %s\n",
1030 (rstdbyctl & RCX_SW_EXIT) ? "no" : "yes");
Jesse Barnes88271da2011-01-05 12:01:24 -08001031 seq_printf(m, "Current RS state: ");
1032 switch (rstdbyctl & RSX_STATUS_MASK) {
1033 case RSX_STATUS_ON:
1034 seq_printf(m, "on\n");
1035 break;
1036 case RSX_STATUS_RC1:
1037 seq_printf(m, "RC1\n");
1038 break;
1039 case RSX_STATUS_RC1E:
1040 seq_printf(m, "RC1E\n");
1041 break;
1042 case RSX_STATUS_RS1:
1043 seq_printf(m, "RS1\n");
1044 break;
1045 case RSX_STATUS_RS2:
1046 seq_printf(m, "RS2 (RC6)\n");
1047 break;
1048 case RSX_STATUS_RS3:
1049 seq_printf(m, "RC3 (RC6+)\n");
1050 break;
1051 default:
1052 seq_printf(m, "unknown\n");
1053 break;
1054 }
Jesse Barnesf97108d2010-01-29 11:27:07 -08001055
1056 return 0;
1057}
1058
Ben Widawsky4d855292011-12-12 19:34:16 -08001059static int gen6_drpc_info(struct seq_file *m)
1060{
1061
1062 struct drm_info_node *node = (struct drm_info_node *) m->private;
1063 struct drm_device *dev = node->minor->dev;
1064 struct drm_i915_private *dev_priv = dev->dev_private;
1065 u32 rpmodectl1, gt_core_status, rcctl1;
Daniel Vetter93b525d2012-01-25 13:52:43 +01001066 unsigned forcewake_count;
Ben Widawsky4d855292011-12-12 19:34:16 -08001067 int count=0, ret;
1068
1069
1070 ret = mutex_lock_interruptible(&dev->struct_mutex);
1071 if (ret)
1072 return ret;
1073
Daniel Vetter93b525d2012-01-25 13:52:43 +01001074 spin_lock_irq(&dev_priv->gt_lock);
1075 forcewake_count = dev_priv->forcewake_count;
1076 spin_unlock_irq(&dev_priv->gt_lock);
1077
1078 if (forcewake_count) {
1079 seq_printf(m, "RC information inaccurate because somebody "
1080 "holds a forcewake reference \n");
Ben Widawsky4d855292011-12-12 19:34:16 -08001081 } else {
1082 /* NB: we cannot use forcewake, else we read the wrong values */
1083 while (count++ < 50 && (I915_READ_NOTRACE(FORCEWAKE_ACK) & 1))
1084 udelay(10);
1085 seq_printf(m, "RC information accurate: %s\n", yesno(count < 51));
1086 }
1087
1088 gt_core_status = readl(dev_priv->regs + GEN6_GT_CORE_STATUS);
1089 trace_i915_reg_rw(false, GEN6_GT_CORE_STATUS, gt_core_status, 4);
1090
1091 rpmodectl1 = I915_READ(GEN6_RP_CONTROL);
1092 rcctl1 = I915_READ(GEN6_RC_CONTROL);
1093 mutex_unlock(&dev->struct_mutex);
1094
1095 seq_printf(m, "Video Turbo Mode: %s\n",
1096 yesno(rpmodectl1 & GEN6_RP_MEDIA_TURBO));
1097 seq_printf(m, "HW control enabled: %s\n",
1098 yesno(rpmodectl1 & GEN6_RP_ENABLE));
1099 seq_printf(m, "SW control enabled: %s\n",
1100 yesno((rpmodectl1 & GEN6_RP_MEDIA_MODE_MASK) ==
1101 GEN6_RP_MEDIA_SW_MODE));
Eric Anholtfff24e22012-01-23 16:14:05 -08001102 seq_printf(m, "RC1e Enabled: %s\n",
Ben Widawsky4d855292011-12-12 19:34:16 -08001103 yesno(rcctl1 & GEN6_RC_CTL_RC1e_ENABLE));
1104 seq_printf(m, "RC6 Enabled: %s\n",
1105 yesno(rcctl1 & GEN6_RC_CTL_RC6_ENABLE));
1106 seq_printf(m, "Deep RC6 Enabled: %s\n",
1107 yesno(rcctl1 & GEN6_RC_CTL_RC6p_ENABLE));
1108 seq_printf(m, "Deepest RC6 Enabled: %s\n",
1109 yesno(rcctl1 & GEN6_RC_CTL_RC6pp_ENABLE));
1110 seq_printf(m, "Current RC state: ");
1111 switch (gt_core_status & GEN6_RCn_MASK) {
1112 case GEN6_RC0:
1113 if (gt_core_status & GEN6_CORE_CPD_STATE_MASK)
1114 seq_printf(m, "Core Power Down\n");
1115 else
1116 seq_printf(m, "on\n");
1117 break;
1118 case GEN6_RC3:
1119 seq_printf(m, "RC3\n");
1120 break;
1121 case GEN6_RC6:
1122 seq_printf(m, "RC6\n");
1123 break;
1124 case GEN6_RC7:
1125 seq_printf(m, "RC7\n");
1126 break;
1127 default:
1128 seq_printf(m, "Unknown\n");
1129 break;
1130 }
1131
1132 seq_printf(m, "Core Power Down: %s\n",
1133 yesno(gt_core_status & GEN6_CORE_CPD_STATE_MASK));
1134 return 0;
1135}
1136
1137static int i915_drpc_info(struct seq_file *m, void *unused)
1138{
1139 struct drm_info_node *node = (struct drm_info_node *) m->private;
1140 struct drm_device *dev = node->minor->dev;
1141
1142 if (IS_GEN6(dev) || IS_GEN7(dev))
1143 return gen6_drpc_info(m);
1144 else
1145 return ironlake_drpc_info(m);
1146}
1147
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001148static int i915_fbc_status(struct seq_file *m, void *unused)
1149{
1150 struct drm_info_node *node = (struct drm_info_node *) m->private;
1151 struct drm_device *dev = node->minor->dev;
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001152 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001153
Adam Jacksonee5382a2010-04-23 11:17:39 -04001154 if (!I915_HAS_FBC(dev)) {
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001155 seq_printf(m, "FBC unsupported on this chipset\n");
1156 return 0;
1157 }
1158
Adam Jacksonee5382a2010-04-23 11:17:39 -04001159 if (intel_fbc_enabled(dev)) {
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001160 seq_printf(m, "FBC enabled\n");
1161 } else {
1162 seq_printf(m, "FBC disabled: ");
1163 switch (dev_priv->no_fbc_reason) {
Chris Wilsonbed4a672010-09-11 10:47:47 +01001164 case FBC_NO_OUTPUT:
1165 seq_printf(m, "no outputs");
1166 break;
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001167 case FBC_STOLEN_TOO_SMALL:
1168 seq_printf(m, "not enough stolen memory");
1169 break;
1170 case FBC_UNSUPPORTED_MODE:
1171 seq_printf(m, "mode not supported");
1172 break;
1173 case FBC_MODE_TOO_LARGE:
1174 seq_printf(m, "mode too large");
1175 break;
1176 case FBC_BAD_PLANE:
1177 seq_printf(m, "FBC unsupported on plane");
1178 break;
1179 case FBC_NOT_TILED:
1180 seq_printf(m, "scanout buffer not tiled");
1181 break;
Jesse Barnes9c928d12010-07-23 15:20:00 -07001182 case FBC_MULTIPLE_PIPES:
1183 seq_printf(m, "multiple pipes are enabled");
1184 break;
Jesse Barnesc1a9f042011-05-05 15:24:21 -07001185 case FBC_MODULE_PARAM:
1186 seq_printf(m, "disabled per module param (default off)");
1187 break;
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001188 default:
1189 seq_printf(m, "unknown reason");
1190 }
1191 seq_printf(m, "\n");
1192 }
1193 return 0;
1194}
1195
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001196static int i915_sr_status(struct seq_file *m, void *unused)
1197{
1198 struct drm_info_node *node = (struct drm_info_node *) m->private;
1199 struct drm_device *dev = node->minor->dev;
1200 drm_i915_private_t *dev_priv = dev->dev_private;
1201 bool sr_enabled = false;
1202
Yuanhan Liu13982612010-12-15 15:42:31 +08001203 if (HAS_PCH_SPLIT(dev))
Chris Wilson5ba2aaa2010-08-19 18:04:08 +01001204 sr_enabled = I915_READ(WM1_LP_ILK) & WM1_LP_SR_EN;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001205 else if (IS_CRESTLINE(dev) || IS_I945G(dev) || IS_I945GM(dev))
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001206 sr_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
1207 else if (IS_I915GM(dev))
1208 sr_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN;
1209 else if (IS_PINEVIEW(dev))
1210 sr_enabled = I915_READ(DSPFW3) & PINEVIEW_SELF_REFRESH_EN;
1211
Chris Wilson5ba2aaa2010-08-19 18:04:08 +01001212 seq_printf(m, "self-refresh: %s\n",
1213 sr_enabled ? "enabled" : "disabled");
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001214
1215 return 0;
1216}
1217
Jesse Barnes7648fa92010-05-20 14:28:11 -07001218static int i915_emon_status(struct seq_file *m, void *unused)
1219{
1220 struct drm_info_node *node = (struct drm_info_node *) m->private;
1221 struct drm_device *dev = node->minor->dev;
1222 drm_i915_private_t *dev_priv = dev->dev_private;
1223 unsigned long temp, chipset, gfx;
Chris Wilsonde227ef2010-07-03 07:58:38 +01001224 int ret;
1225
1226 ret = mutex_lock_interruptible(&dev->struct_mutex);
1227 if (ret)
1228 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001229
1230 temp = i915_mch_val(dev_priv);
1231 chipset = i915_chipset_val(dev_priv);
1232 gfx = i915_gfx_val(dev_priv);
Chris Wilsonde227ef2010-07-03 07:58:38 +01001233 mutex_unlock(&dev->struct_mutex);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001234
1235 seq_printf(m, "GMCH temp: %ld\n", temp);
1236 seq_printf(m, "Chipset power: %ld\n", chipset);
1237 seq_printf(m, "GFX power: %ld\n", gfx);
1238 seq_printf(m, "Total power: %ld\n", chipset + gfx);
1239
1240 return 0;
1241}
1242
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001243static int i915_ring_freq_table(struct seq_file *m, void *unused)
1244{
1245 struct drm_info_node *node = (struct drm_info_node *) m->private;
1246 struct drm_device *dev = node->minor->dev;
1247 drm_i915_private_t *dev_priv = dev->dev_private;
1248 int ret;
1249 int gpu_freq, ia_freq;
1250
Jesse Barnes1c70c0c2011-06-29 13:34:36 -07001251 if (!(IS_GEN6(dev) || IS_GEN7(dev))) {
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001252 seq_printf(m, "unsupported on this chipset\n");
1253 return 0;
1254 }
1255
1256 ret = mutex_lock_interruptible(&dev->struct_mutex);
1257 if (ret)
1258 return ret;
1259
1260 seq_printf(m, "GPU freq (MHz)\tEffective CPU freq (MHz)\n");
1261
1262 for (gpu_freq = dev_priv->min_delay; gpu_freq <= dev_priv->max_delay;
1263 gpu_freq++) {
1264 I915_WRITE(GEN6_PCODE_DATA, gpu_freq);
1265 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY |
1266 GEN6_PCODE_READ_MIN_FREQ_TABLE);
1267 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) &
1268 GEN6_PCODE_READY) == 0, 10)) {
1269 DRM_ERROR("pcode read of freq table timed out\n");
1270 continue;
1271 }
1272 ia_freq = I915_READ(GEN6_PCODE_DATA);
1273 seq_printf(m, "%d\t\t%d\n", gpu_freq * 50, ia_freq * 100);
1274 }
1275
1276 mutex_unlock(&dev->struct_mutex);
1277
1278 return 0;
1279}
1280
Jesse Barnes7648fa92010-05-20 14:28:11 -07001281static int i915_gfxec(struct seq_file *m, void *unused)
1282{
1283 struct drm_info_node *node = (struct drm_info_node *) m->private;
1284 struct drm_device *dev = node->minor->dev;
1285 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky616fdb52011-10-05 11:44:54 -07001286 int ret;
1287
1288 ret = mutex_lock_interruptible(&dev->struct_mutex);
1289 if (ret)
1290 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001291
1292 seq_printf(m, "GFXEC: %ld\n", (unsigned long)I915_READ(0x112f4));
1293
Ben Widawsky616fdb52011-10-05 11:44:54 -07001294 mutex_unlock(&dev->struct_mutex);
1295
Jesse Barnes7648fa92010-05-20 14:28:11 -07001296 return 0;
1297}
1298
Chris Wilson44834a62010-08-19 16:09:23 +01001299static int i915_opregion(struct seq_file *m, void *unused)
1300{
1301 struct drm_info_node *node = (struct drm_info_node *) m->private;
1302 struct drm_device *dev = node->minor->dev;
1303 drm_i915_private_t *dev_priv = dev->dev_private;
1304 struct intel_opregion *opregion = &dev_priv->opregion;
1305 int ret;
1306
1307 ret = mutex_lock_interruptible(&dev->struct_mutex);
1308 if (ret)
1309 return ret;
1310
1311 if (opregion->header)
1312 seq_write(m, opregion->header, OPREGION_SIZE);
1313
1314 mutex_unlock(&dev->struct_mutex);
1315
1316 return 0;
1317}
1318
Chris Wilson37811fc2010-08-25 22:45:57 +01001319static int i915_gem_framebuffer_info(struct seq_file *m, void *data)
1320{
1321 struct drm_info_node *node = (struct drm_info_node *) m->private;
1322 struct drm_device *dev = node->minor->dev;
1323 drm_i915_private_t *dev_priv = dev->dev_private;
1324 struct intel_fbdev *ifbdev;
1325 struct intel_framebuffer *fb;
1326 int ret;
1327
1328 ret = mutex_lock_interruptible(&dev->mode_config.mutex);
1329 if (ret)
1330 return ret;
1331
1332 ifbdev = dev_priv->fbdev;
1333 fb = to_intel_framebuffer(ifbdev->helper.fb);
1334
1335 seq_printf(m, "fbcon size: %d x %d, depth %d, %d bpp, obj ",
1336 fb->base.width,
1337 fb->base.height,
1338 fb->base.depth,
1339 fb->base.bits_per_pixel);
Chris Wilson05394f32010-11-08 19:18:58 +00001340 describe_obj(m, fb->obj);
Chris Wilson37811fc2010-08-25 22:45:57 +01001341 seq_printf(m, "\n");
1342
1343 list_for_each_entry(fb, &dev->mode_config.fb_list, base.head) {
1344 if (&fb->base == ifbdev->helper.fb)
1345 continue;
1346
1347 seq_printf(m, "user size: %d x %d, depth %d, %d bpp, obj ",
1348 fb->base.width,
1349 fb->base.height,
1350 fb->base.depth,
1351 fb->base.bits_per_pixel);
Chris Wilson05394f32010-11-08 19:18:58 +00001352 describe_obj(m, fb->obj);
Chris Wilson37811fc2010-08-25 22:45:57 +01001353 seq_printf(m, "\n");
1354 }
1355
1356 mutex_unlock(&dev->mode_config.mutex);
1357
1358 return 0;
1359}
1360
Ben Widawskye76d3632011-03-19 18:14:29 -07001361static int i915_context_status(struct seq_file *m, void *unused)
1362{
1363 struct drm_info_node *node = (struct drm_info_node *) m->private;
1364 struct drm_device *dev = node->minor->dev;
1365 drm_i915_private_t *dev_priv = dev->dev_private;
1366 int ret;
1367
1368 ret = mutex_lock_interruptible(&dev->mode_config.mutex);
1369 if (ret)
1370 return ret;
1371
Ben Widawskydc501fb2011-06-29 11:41:51 -07001372 if (dev_priv->pwrctx) {
1373 seq_printf(m, "power context ");
1374 describe_obj(m, dev_priv->pwrctx);
1375 seq_printf(m, "\n");
1376 }
Ben Widawskye76d3632011-03-19 18:14:29 -07001377
Ben Widawskydc501fb2011-06-29 11:41:51 -07001378 if (dev_priv->renderctx) {
1379 seq_printf(m, "render context ");
1380 describe_obj(m, dev_priv->renderctx);
1381 seq_printf(m, "\n");
1382 }
Ben Widawskye76d3632011-03-19 18:14:29 -07001383
1384 mutex_unlock(&dev->mode_config.mutex);
1385
1386 return 0;
1387}
1388
Ben Widawsky6d794d42011-04-25 11:25:56 -07001389static int i915_gen6_forcewake_count_info(struct seq_file *m, void *data)
1390{
1391 struct drm_info_node *node = (struct drm_info_node *) m->private;
1392 struct drm_device *dev = node->minor->dev;
1393 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter9f1f46a2011-12-14 13:57:03 +01001394 unsigned forcewake_count;
Ben Widawsky6d794d42011-04-25 11:25:56 -07001395
Daniel Vetter9f1f46a2011-12-14 13:57:03 +01001396 spin_lock_irq(&dev_priv->gt_lock);
1397 forcewake_count = dev_priv->forcewake_count;
1398 spin_unlock_irq(&dev_priv->gt_lock);
1399
1400 seq_printf(m, "forcewake count = %u\n", forcewake_count);
Ben Widawsky6d794d42011-04-25 11:25:56 -07001401
1402 return 0;
1403}
1404
Daniel Vetterea16a3c2011-12-14 13:57:16 +01001405static const char *swizzle_string(unsigned swizzle)
1406{
1407 switch(swizzle) {
1408 case I915_BIT_6_SWIZZLE_NONE:
1409 return "none";
1410 case I915_BIT_6_SWIZZLE_9:
1411 return "bit9";
1412 case I915_BIT_6_SWIZZLE_9_10:
1413 return "bit9/bit10";
1414 case I915_BIT_6_SWIZZLE_9_11:
1415 return "bit9/bit11";
1416 case I915_BIT_6_SWIZZLE_9_10_11:
1417 return "bit9/bit10/bit11";
1418 case I915_BIT_6_SWIZZLE_9_17:
1419 return "bit9/bit17";
1420 case I915_BIT_6_SWIZZLE_9_10_17:
1421 return "bit9/bit10/bit17";
1422 case I915_BIT_6_SWIZZLE_UNKNOWN:
1423 return "unkown";
1424 }
1425
1426 return "bug";
1427}
1428
1429static int i915_swizzle_info(struct seq_file *m, void *data)
1430{
1431 struct drm_info_node *node = (struct drm_info_node *) m->private;
1432 struct drm_device *dev = node->minor->dev;
1433 struct drm_i915_private *dev_priv = dev->dev_private;
1434
1435 mutex_lock(&dev->struct_mutex);
1436 seq_printf(m, "bit6 swizzle for X-tiling = %s\n",
1437 swizzle_string(dev_priv->mm.bit_6_swizzle_x));
1438 seq_printf(m, "bit6 swizzle for Y-tiling = %s\n",
1439 swizzle_string(dev_priv->mm.bit_6_swizzle_y));
1440
1441 if (IS_GEN3(dev) || IS_GEN4(dev)) {
1442 seq_printf(m, "DDC = 0x%08x\n",
1443 I915_READ(DCC));
1444 seq_printf(m, "C0DRB3 = 0x%04x\n",
1445 I915_READ16(C0DRB3));
1446 seq_printf(m, "C1DRB3 = 0x%04x\n",
1447 I915_READ16(C1DRB3));
Daniel Vetter3fa7d232012-01-31 16:47:56 +01001448 } else if (IS_GEN6(dev) || IS_GEN7(dev)) {
1449 seq_printf(m, "MAD_DIMM_C0 = 0x%08x\n",
1450 I915_READ(MAD_DIMM_C0));
1451 seq_printf(m, "MAD_DIMM_C1 = 0x%08x\n",
1452 I915_READ(MAD_DIMM_C1));
1453 seq_printf(m, "MAD_DIMM_C2 = 0x%08x\n",
1454 I915_READ(MAD_DIMM_C2));
1455 seq_printf(m, "TILECTL = 0x%08x\n",
1456 I915_READ(TILECTL));
1457 seq_printf(m, "ARB_MODE = 0x%08x\n",
1458 I915_READ(ARB_MODE));
1459 seq_printf(m, "DISP_ARB_CTL = 0x%08x\n",
1460 I915_READ(DISP_ARB_CTL));
Daniel Vetterea16a3c2011-12-14 13:57:16 +01001461 }
1462 mutex_unlock(&dev->struct_mutex);
1463
1464 return 0;
1465}
1466
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01001467static int i915_ppgtt_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;
1472 struct intel_ring_buffer *ring;
1473 int i, ret;
1474
1475
1476 ret = mutex_lock_interruptible(&dev->struct_mutex);
1477 if (ret)
1478 return ret;
1479 if (INTEL_INFO(dev)->gen == 6)
1480 seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(GFX_MODE));
1481
1482 for (i = 0; i < I915_NUM_RINGS; i++) {
1483 ring = &dev_priv->ring[i];
1484
1485 seq_printf(m, "%s\n", ring->name);
1486 if (INTEL_INFO(dev)->gen == 7)
1487 seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(RING_MODE_GEN7(ring)));
1488 seq_printf(m, "PP_DIR_BASE: 0x%08x\n", I915_READ(RING_PP_DIR_BASE(ring)));
1489 seq_printf(m, "PP_DIR_BASE_READ: 0x%08x\n", I915_READ(RING_PP_DIR_BASE_READ(ring)));
1490 seq_printf(m, "PP_DIR_DCLV: 0x%08x\n", I915_READ(RING_PP_DIR_DCLV(ring)));
1491 }
1492 if (dev_priv->mm.aliasing_ppgtt) {
1493 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
1494
1495 seq_printf(m, "aliasing PPGTT:\n");
1496 seq_printf(m, "pd gtt offset: 0x%08x\n", ppgtt->pd_offset);
1497 }
1498 seq_printf(m, "ECOCHK: 0x%08x\n", I915_READ(GAM_ECOCHK));
1499 mutex_unlock(&dev->struct_mutex);
1500
1501 return 0;
1502}
1503
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001504static int
Daniel Vetter08e14e82011-12-14 13:57:10 +01001505i915_debugfs_common_open(struct inode *inode,
1506 struct file *filp)
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001507{
1508 filp->private_data = inode->i_private;
1509 return 0;
1510}
1511
1512static ssize_t
1513i915_wedged_read(struct file *filp,
1514 char __user *ubuf,
1515 size_t max,
1516 loff_t *ppos)
1517{
1518 struct drm_device *dev = filp->private_data;
1519 drm_i915_private_t *dev_priv = dev->dev_private;
1520 char buf[80];
1521 int len;
1522
Akshay Joshi0206e352011-08-16 15:34:10 -04001523 len = snprintf(buf, sizeof(buf),
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001524 "wedged : %d\n",
1525 atomic_read(&dev_priv->mm.wedged));
1526
Akshay Joshi0206e352011-08-16 15:34:10 -04001527 if (len > sizeof(buf))
1528 len = sizeof(buf);
Dan Carpenterf4433a82010-09-08 21:44:47 +02001529
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001530 return simple_read_from_buffer(ubuf, max, ppos, buf, len);
1531}
1532
1533static ssize_t
1534i915_wedged_write(struct file *filp,
1535 const char __user *ubuf,
1536 size_t cnt,
1537 loff_t *ppos)
1538{
1539 struct drm_device *dev = filp->private_data;
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001540 char buf[20];
1541 int val = 1;
1542
1543 if (cnt > 0) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001544 if (cnt > sizeof(buf) - 1)
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001545 return -EINVAL;
1546
1547 if (copy_from_user(buf, ubuf, cnt))
1548 return -EFAULT;
1549 buf[cnt] = 0;
1550
1551 val = simple_strtoul(buf, NULL, 0);
1552 }
1553
1554 DRM_INFO("Manually setting wedged to %d\n", val);
Chris Wilson527f9e92010-11-11 01:16:58 +00001555 i915_handle_error(dev, val);
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001556
1557 return cnt;
1558}
1559
1560static const struct file_operations i915_wedged_fops = {
1561 .owner = THIS_MODULE,
Daniel Vetter08e14e82011-12-14 13:57:10 +01001562 .open = i915_debugfs_common_open,
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001563 .read = i915_wedged_read,
1564 .write = i915_wedged_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001565 .llseek = default_llseek,
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001566};
1567
Jesse Barnes358733e2011-07-27 11:53:01 -07001568static ssize_t
1569i915_max_freq_read(struct file *filp,
1570 char __user *ubuf,
1571 size_t max,
1572 loff_t *ppos)
1573{
1574 struct drm_device *dev = filp->private_data;
1575 drm_i915_private_t *dev_priv = dev->dev_private;
1576 char buf[80];
1577 int len;
1578
Akshay Joshi0206e352011-08-16 15:34:10 -04001579 len = snprintf(buf, sizeof(buf),
Jesse Barnes358733e2011-07-27 11:53:01 -07001580 "max freq: %d\n", dev_priv->max_delay * 50);
1581
Akshay Joshi0206e352011-08-16 15:34:10 -04001582 if (len > sizeof(buf))
1583 len = sizeof(buf);
Jesse Barnes358733e2011-07-27 11:53:01 -07001584
1585 return simple_read_from_buffer(ubuf, max, ppos, buf, len);
1586}
1587
1588static ssize_t
1589i915_max_freq_write(struct file *filp,
1590 const char __user *ubuf,
1591 size_t cnt,
1592 loff_t *ppos)
1593{
1594 struct drm_device *dev = filp->private_data;
1595 struct drm_i915_private *dev_priv = dev->dev_private;
1596 char buf[20];
1597 int val = 1;
1598
1599 if (cnt > 0) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001600 if (cnt > sizeof(buf) - 1)
Jesse Barnes358733e2011-07-27 11:53:01 -07001601 return -EINVAL;
1602
1603 if (copy_from_user(buf, ubuf, cnt))
1604 return -EFAULT;
1605 buf[cnt] = 0;
1606
1607 val = simple_strtoul(buf, NULL, 0);
1608 }
1609
1610 DRM_DEBUG_DRIVER("Manually setting max freq to %d\n", val);
1611
1612 /*
1613 * Turbo will still be enabled, but won't go above the set value.
1614 */
1615 dev_priv->max_delay = val / 50;
1616
1617 gen6_set_rps(dev, val / 50);
1618
1619 return cnt;
1620}
1621
1622static const struct file_operations i915_max_freq_fops = {
1623 .owner = THIS_MODULE,
Daniel Vetter08e14e82011-12-14 13:57:10 +01001624 .open = i915_debugfs_common_open,
Jesse Barnes358733e2011-07-27 11:53:01 -07001625 .read = i915_max_freq_read,
1626 .write = i915_max_freq_write,
1627 .llseek = default_llseek,
1628};
1629
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001630static ssize_t
1631i915_cache_sharing_read(struct file *filp,
1632 char __user *ubuf,
1633 size_t max,
1634 loff_t *ppos)
1635{
1636 struct drm_device *dev = filp->private_data;
1637 drm_i915_private_t *dev_priv = dev->dev_private;
1638 char buf[80];
1639 u32 snpcr;
1640 int len;
1641
1642 mutex_lock(&dev_priv->dev->struct_mutex);
1643 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
1644 mutex_unlock(&dev_priv->dev->struct_mutex);
1645
Akshay Joshi0206e352011-08-16 15:34:10 -04001646 len = snprintf(buf, sizeof(buf),
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001647 "%d\n", (snpcr & GEN6_MBC_SNPCR_MASK) >>
1648 GEN6_MBC_SNPCR_SHIFT);
1649
Akshay Joshi0206e352011-08-16 15:34:10 -04001650 if (len > sizeof(buf))
1651 len = sizeof(buf);
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001652
1653 return simple_read_from_buffer(ubuf, max, ppos, buf, len);
1654}
1655
1656static ssize_t
1657i915_cache_sharing_write(struct file *filp,
1658 const char __user *ubuf,
1659 size_t cnt,
1660 loff_t *ppos)
1661{
1662 struct drm_device *dev = filp->private_data;
1663 struct drm_i915_private *dev_priv = dev->dev_private;
1664 char buf[20];
1665 u32 snpcr;
1666 int val = 1;
1667
1668 if (cnt > 0) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001669 if (cnt > sizeof(buf) - 1)
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001670 return -EINVAL;
1671
1672 if (copy_from_user(buf, ubuf, cnt))
1673 return -EFAULT;
1674 buf[cnt] = 0;
1675
1676 val = simple_strtoul(buf, NULL, 0);
1677 }
1678
1679 if (val < 0 || val > 3)
1680 return -EINVAL;
1681
1682 DRM_DEBUG_DRIVER("Manually setting uncore sharing to %d\n", val);
1683
1684 /* Update the cache sharing policy here as well */
1685 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
1686 snpcr &= ~GEN6_MBC_SNPCR_MASK;
1687 snpcr |= (val << GEN6_MBC_SNPCR_SHIFT);
1688 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
1689
1690 return cnt;
1691}
1692
1693static const struct file_operations i915_cache_sharing_fops = {
1694 .owner = THIS_MODULE,
Daniel Vetter08e14e82011-12-14 13:57:10 +01001695 .open = i915_debugfs_common_open,
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001696 .read = i915_cache_sharing_read,
1697 .write = i915_cache_sharing_write,
1698 .llseek = default_llseek,
1699};
1700
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001701/* As the drm_debugfs_init() routines are called before dev->dev_private is
1702 * allocated we need to hook into the minor for release. */
1703static int
1704drm_add_fake_info_node(struct drm_minor *minor,
1705 struct dentry *ent,
1706 const void *key)
1707{
1708 struct drm_info_node *node;
1709
1710 node = kmalloc(sizeof(struct drm_info_node), GFP_KERNEL);
1711 if (node == NULL) {
1712 debugfs_remove(ent);
1713 return -ENOMEM;
1714 }
1715
1716 node->minor = minor;
1717 node->dent = ent;
1718 node->info_ent = (void *) key;
Marcin Slusarzb3e067c2011-11-09 22:20:35 +01001719
1720 mutex_lock(&minor->debugfs_lock);
1721 list_add(&node->list, &minor->debugfs_list);
1722 mutex_unlock(&minor->debugfs_lock);
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001723
1724 return 0;
1725}
1726
Ben Widawsky6d794d42011-04-25 11:25:56 -07001727static int i915_forcewake_open(struct inode *inode, struct file *file)
1728{
1729 struct drm_device *dev = inode->i_private;
1730 struct drm_i915_private *dev_priv = dev->dev_private;
1731 int ret;
1732
Daniel Vetter075edca2012-01-24 09:44:28 +01001733 if (INTEL_INFO(dev)->gen < 6)
Ben Widawsky6d794d42011-04-25 11:25:56 -07001734 return 0;
1735
1736 ret = mutex_lock_interruptible(&dev->struct_mutex);
1737 if (ret)
1738 return ret;
1739 gen6_gt_force_wake_get(dev_priv);
1740 mutex_unlock(&dev->struct_mutex);
1741
1742 return 0;
1743}
1744
1745int i915_forcewake_release(struct inode *inode, struct file *file)
1746{
1747 struct drm_device *dev = inode->i_private;
1748 struct drm_i915_private *dev_priv = dev->dev_private;
1749
Daniel Vetter075edca2012-01-24 09:44:28 +01001750 if (INTEL_INFO(dev)->gen < 6)
Ben Widawsky6d794d42011-04-25 11:25:56 -07001751 return 0;
1752
1753 /*
1754 * It's bad that we can potentially hang userspace if struct_mutex gets
1755 * forever stuck. However, if we cannot acquire this lock it means that
1756 * almost certainly the driver has hung, is not unload-able. Therefore
1757 * hanging here is probably a minor inconvenience not to be seen my
1758 * almost every user.
1759 */
1760 mutex_lock(&dev->struct_mutex);
1761 gen6_gt_force_wake_put(dev_priv);
1762 mutex_unlock(&dev->struct_mutex);
1763
1764 return 0;
1765}
1766
1767static const struct file_operations i915_forcewake_fops = {
1768 .owner = THIS_MODULE,
1769 .open = i915_forcewake_open,
1770 .release = i915_forcewake_release,
1771};
1772
1773static int i915_forcewake_create(struct dentry *root, struct drm_minor *minor)
1774{
1775 struct drm_device *dev = minor->dev;
1776 struct dentry *ent;
1777
1778 ent = debugfs_create_file("i915_forcewake_user",
Ben Widawsky8eb57292011-05-11 15:10:58 -07001779 S_IRUSR,
Ben Widawsky6d794d42011-04-25 11:25:56 -07001780 root, dev,
1781 &i915_forcewake_fops);
1782 if (IS_ERR(ent))
1783 return PTR_ERR(ent);
1784
Ben Widawsky8eb57292011-05-11 15:10:58 -07001785 return drm_add_fake_info_node(minor, ent, &i915_forcewake_fops);
Ben Widawsky6d794d42011-04-25 11:25:56 -07001786}
1787
Daniel Vetter6a9c3082011-12-14 13:57:11 +01001788static int i915_debugfs_create(struct dentry *root,
1789 struct drm_minor *minor,
1790 const char *name,
1791 const struct file_operations *fops)
Jesse Barnes358733e2011-07-27 11:53:01 -07001792{
1793 struct drm_device *dev = minor->dev;
1794 struct dentry *ent;
1795
Daniel Vetter6a9c3082011-12-14 13:57:11 +01001796 ent = debugfs_create_file(name,
Jesse Barnes358733e2011-07-27 11:53:01 -07001797 S_IRUGO | S_IWUSR,
1798 root, dev,
Daniel Vetter6a9c3082011-12-14 13:57:11 +01001799 fops);
Jesse Barnes358733e2011-07-27 11:53:01 -07001800 if (IS_ERR(ent))
1801 return PTR_ERR(ent);
1802
Daniel Vetter6a9c3082011-12-14 13:57:11 +01001803 return drm_add_fake_info_node(minor, ent, fops);
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001804}
1805
Ben Gamari27c202a2009-07-01 22:26:52 -04001806static struct drm_info_list i915_debugfs_list[] = {
Chris Wilson311bd682011-01-13 19:06:50 +00001807 {"i915_capabilities", i915_capabilities, 0},
Chris Wilson73aa8082010-09-30 11:46:12 +01001808 {"i915_gem_objects", i915_gem_object_info, 0},
Chris Wilson08c18322011-01-10 00:00:24 +00001809 {"i915_gem_gtt", i915_gem_gtt_info, 0},
Ben Gamari433e12f2009-02-17 20:08:51 -05001810 {"i915_gem_active", i915_gem_object_list_info, 0, (void *) ACTIVE_LIST},
1811 {"i915_gem_flushing", i915_gem_object_list_info, 0, (void *) FLUSHING_LIST},
1812 {"i915_gem_inactive", i915_gem_object_list_info, 0, (void *) INACTIVE_LIST},
Chris Wilsonf13d3f72010-09-20 17:36:15 +01001813 {"i915_gem_pinned", i915_gem_object_list_info, 0, (void *) PINNED_LIST},
Chris Wilsond21d5972010-09-26 11:19:33 +01001814 {"i915_gem_deferred_free", i915_gem_object_list_info, 0, (void *) DEFERRED_FREE_LIST},
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001815 {"i915_gem_pageflip", i915_gem_pageflip_info, 0},
Ben Gamari20172632009-02-17 20:08:50 -05001816 {"i915_gem_request", i915_gem_request_info, 0},
1817 {"i915_gem_seqno", i915_gem_seqno_info, 0},
Chris Wilsona6172a82009-02-11 14:26:38 +00001818 {"i915_gem_fence_regs", i915_gem_fence_regs_info, 0},
Ben Gamari20172632009-02-17 20:08:50 -05001819 {"i915_gem_interrupt", i915_interrupt_info, 0},
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001820 {"i915_gem_hws", i915_hws_info, 0, (void *)RCS},
1821 {"i915_gem_hws_blt", i915_hws_info, 0, (void *)BCS},
1822 {"i915_gem_hws_bsd", i915_hws_info, 0, (void *)VCS},
1823 {"i915_ringbuffer_data", i915_ringbuffer_data, 0, (void *)RCS},
1824 {"i915_ringbuffer_info", i915_ringbuffer_info, 0, (void *)RCS},
1825 {"i915_bsd_ringbuffer_data", i915_ringbuffer_data, 0, (void *)VCS},
1826 {"i915_bsd_ringbuffer_info", i915_ringbuffer_info, 0, (void *)VCS},
1827 {"i915_blt_ringbuffer_data", i915_ringbuffer_data, 0, (void *)BCS},
1828 {"i915_blt_ringbuffer_info", i915_ringbuffer_info, 0, (void *)BCS},
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001829 {"i915_error_state", i915_error_state, 0},
Jesse Barnesf97108d2010-01-29 11:27:07 -08001830 {"i915_rstdby_delays", i915_rstdby_delays, 0},
1831 {"i915_cur_delayinfo", i915_cur_delayinfo, 0},
1832 {"i915_delayfreq_table", i915_delayfreq_table, 0},
1833 {"i915_inttoext_table", i915_inttoext_table, 0},
1834 {"i915_drpc_info", i915_drpc_info, 0},
Jesse Barnes7648fa92010-05-20 14:28:11 -07001835 {"i915_emon_status", i915_emon_status, 0},
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001836 {"i915_ring_freq_table", i915_ring_freq_table, 0},
Jesse Barnes7648fa92010-05-20 14:28:11 -07001837 {"i915_gfxec", i915_gfxec, 0},
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001838 {"i915_fbc_status", i915_fbc_status, 0},
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001839 {"i915_sr_status", i915_sr_status, 0},
Chris Wilson44834a62010-08-19 16:09:23 +01001840 {"i915_opregion", i915_opregion, 0},
Chris Wilson37811fc2010-08-25 22:45:57 +01001841 {"i915_gem_framebuffer", i915_gem_framebuffer_info, 0},
Ben Widawskye76d3632011-03-19 18:14:29 -07001842 {"i915_context_status", i915_context_status, 0},
Ben Widawsky6d794d42011-04-25 11:25:56 -07001843 {"i915_gen6_forcewake_count", i915_gen6_forcewake_count_info, 0},
Daniel Vetterea16a3c2011-12-14 13:57:16 +01001844 {"i915_swizzle_info", i915_swizzle_info, 0},
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01001845 {"i915_ppgtt_info", i915_ppgtt_info, 0},
Ben Gamari20172632009-02-17 20:08:50 -05001846};
Ben Gamari27c202a2009-07-01 22:26:52 -04001847#define I915_DEBUGFS_ENTRIES ARRAY_SIZE(i915_debugfs_list)
Ben Gamari20172632009-02-17 20:08:50 -05001848
Ben Gamari27c202a2009-07-01 22:26:52 -04001849int i915_debugfs_init(struct drm_minor *minor)
Ben Gamari20172632009-02-17 20:08:50 -05001850{
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001851 int ret;
1852
Daniel Vetter6a9c3082011-12-14 13:57:11 +01001853 ret = i915_debugfs_create(minor->debugfs_root, minor,
1854 "i915_wedged",
1855 &i915_wedged_fops);
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001856 if (ret)
1857 return ret;
1858
Ben Widawsky6d794d42011-04-25 11:25:56 -07001859 ret = i915_forcewake_create(minor->debugfs_root, minor);
1860 if (ret)
1861 return ret;
Daniel Vetter6a9c3082011-12-14 13:57:11 +01001862
1863 ret = i915_debugfs_create(minor->debugfs_root, minor,
1864 "i915_max_freq",
1865 &i915_max_freq_fops);
Jesse Barnes358733e2011-07-27 11:53:01 -07001866 if (ret)
1867 return ret;
Daniel Vetter6a9c3082011-12-14 13:57:11 +01001868
1869 ret = i915_debugfs_create(minor->debugfs_root, minor,
1870 "i915_cache_sharing",
1871 &i915_cache_sharing_fops);
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001872 if (ret)
1873 return ret;
Ben Widawsky6d794d42011-04-25 11:25:56 -07001874
Ben Gamari27c202a2009-07-01 22:26:52 -04001875 return drm_debugfs_create_files(i915_debugfs_list,
1876 I915_DEBUGFS_ENTRIES,
Ben Gamari20172632009-02-17 20:08:50 -05001877 minor->debugfs_root, minor);
1878}
1879
Ben Gamari27c202a2009-07-01 22:26:52 -04001880void i915_debugfs_cleanup(struct drm_minor *minor)
Ben Gamari20172632009-02-17 20:08:50 -05001881{
Ben Gamari27c202a2009-07-01 22:26:52 -04001882 drm_debugfs_remove_files(i915_debugfs_list,
1883 I915_DEBUGFS_ENTRIES, minor);
Ben Widawsky6d794d42011-04-25 11:25:56 -07001884 drm_debugfs_remove_files((struct drm_info_list *) &i915_forcewake_fops,
1885 1, minor);
Kristian Høgsberg33db6792009-11-11 12:19:16 -05001886 drm_debugfs_remove_files((struct drm_info_list *) &i915_wedged_fops,
1887 1, minor);
Jesse Barnes358733e2011-07-27 11:53:01 -07001888 drm_debugfs_remove_files((struct drm_info_list *) &i915_max_freq_fops,
1889 1, minor);
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001890 drm_debugfs_remove_files((struct drm_info_list *) &i915_cache_sharing_fops,
1891 1, minor);
Ben Gamari20172632009-02-17 20:08:50 -05001892}
1893
1894#endif /* CONFIG_DEBUG_FS */