blob: b505b70dba05b98a514e35aeba96044ca03e2843 [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++) {
Chris Wilsonee4f42b2012-02-15 11:25:38 +0000802 seq_printf(m, " seqno 0x%08x, emitted %ld, tail 0x%08x\n",
Chris Wilson52d39a22012-02-15 11:25:37 +0000803 error->ring[i].requests[j].seqno,
Chris Wilsonee4f42b2012-02-15 11:25:38 +0000804 error->ring[i].requests[j].jiffies,
805 error->ring[i].requests[j].tail);
Chris Wilson52d39a22012-02-15 11:25:37 +0000806 }
807 }
808
809 if ((obj = error->ring[i].ringbuffer)) {
Chris Wilsone2f973d2011-01-27 19:15:11 +0000810 seq_printf(m, "%s --- ringbuffer = 0x%08x\n",
811 dev_priv->ring[i].name,
812 obj->gtt_offset);
813 offset = 0;
814 for (page = 0; page < obj->page_count; page++) {
815 for (elt = 0; elt < PAGE_SIZE/4; elt++) {
816 seq_printf(m, "%08x : %08x\n",
817 offset,
818 obj->pages[page][elt]);
819 offset += 4;
820 }
Chris Wilson9df30792010-02-18 10:24:56 +0000821 }
822 }
823 }
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700824
Chris Wilson6ef3d422010-08-04 20:26:07 +0100825 if (error->overlay)
826 intel_overlay_print_error_state(m, error->overlay);
827
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +0000828 if (error->display)
829 intel_display_print_error_state(m, dev, error->display);
830
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700831out:
832 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
833
834 return 0;
835}
Ben Gamari6911a9b2009-04-02 11:24:54 -0700836
Jesse Barnesf97108d2010-01-29 11:27:07 -0800837static int i915_rstdby_delays(struct seq_file *m, void *unused)
838{
839 struct drm_info_node *node = (struct drm_info_node *) m->private;
840 struct drm_device *dev = node->minor->dev;
841 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky616fdb52011-10-05 11:44:54 -0700842 u16 crstanddelay;
843 int ret;
844
845 ret = mutex_lock_interruptible(&dev->struct_mutex);
846 if (ret)
847 return ret;
848
849 crstanddelay = I915_READ16(CRSTANDVID);
850
851 mutex_unlock(&dev->struct_mutex);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800852
853 seq_printf(m, "w/ctx: %d, w/o ctx: %d\n", (crstanddelay >> 8) & 0x3f, (crstanddelay & 0x3f));
854
855 return 0;
856}
857
858static int i915_cur_delayinfo(struct seq_file *m, void *unused)
859{
860 struct drm_info_node *node = (struct drm_info_node *) m->private;
861 struct drm_device *dev = node->minor->dev;
862 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawskyd1ebd8162011-04-25 20:11:50 +0100863 int ret;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800864
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800865 if (IS_GEN5(dev)) {
866 u16 rgvswctl = I915_READ16(MEMSWCTL);
867 u16 rgvstat = I915_READ16(MEMSTAT_ILK);
868
869 seq_printf(m, "Requested P-state: %d\n", (rgvswctl >> 8) & 0xf);
870 seq_printf(m, "Requested VID: %d\n", rgvswctl & 0x3f);
871 seq_printf(m, "Current VID: %d\n", (rgvstat & MEMSTAT_VID_MASK) >>
872 MEMSTAT_VID_SHIFT);
873 seq_printf(m, "Current P-state: %d\n",
874 (rgvstat & MEMSTAT_PSTATE_MASK) >> MEMSTAT_PSTATE_SHIFT);
Jesse Barnes1c70c0c2011-06-29 13:34:36 -0700875 } else if (IS_GEN6(dev) || IS_GEN7(dev)) {
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800876 u32 gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS);
877 u32 rp_state_limits = I915_READ(GEN6_RP_STATE_LIMITS);
878 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
Jesse Barnesccab5c82011-01-18 15:49:25 -0800879 u32 rpstat;
880 u32 rpupei, rpcurup, rpprevup;
881 u32 rpdownei, rpcurdown, rpprevdown;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800882 int max_freq;
883
884 /* RPSTAT1 is in the GT power well */
Ben Widawskyd1ebd8162011-04-25 20:11:50 +0100885 ret = mutex_lock_interruptible(&dev->struct_mutex);
886 if (ret)
887 return ret;
888
Ben Widawskyfcca7922011-04-25 11:23:07 -0700889 gen6_gt_force_wake_get(dev_priv);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800890
Jesse Barnesccab5c82011-01-18 15:49:25 -0800891 rpstat = I915_READ(GEN6_RPSTAT1);
892 rpupei = I915_READ(GEN6_RP_CUR_UP_EI);
893 rpcurup = I915_READ(GEN6_RP_CUR_UP);
894 rpprevup = I915_READ(GEN6_RP_PREV_UP);
895 rpdownei = I915_READ(GEN6_RP_CUR_DOWN_EI);
896 rpcurdown = I915_READ(GEN6_RP_CUR_DOWN);
897 rpprevdown = I915_READ(GEN6_RP_PREV_DOWN);
898
Ben Widawskyd1ebd8162011-04-25 20:11:50 +0100899 gen6_gt_force_wake_put(dev_priv);
900 mutex_unlock(&dev->struct_mutex);
901
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800902 seq_printf(m, "GT_PERF_STATUS: 0x%08x\n", gt_perf_status);
Jesse Barnesccab5c82011-01-18 15:49:25 -0800903 seq_printf(m, "RPSTAT1: 0x%08x\n", rpstat);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800904 seq_printf(m, "Render p-state ratio: %d\n",
905 (gt_perf_status & 0xff00) >> 8);
906 seq_printf(m, "Render p-state VID: %d\n",
907 gt_perf_status & 0xff);
908 seq_printf(m, "Render p-state limit: %d\n",
909 rp_state_limits & 0xff);
Jesse Barnesccab5c82011-01-18 15:49:25 -0800910 seq_printf(m, "CAGF: %dMHz\n", ((rpstat & GEN6_CAGF_MASK) >>
Jesse Barnese281fca2011-03-18 10:32:07 -0700911 GEN6_CAGF_SHIFT) * 50);
Jesse Barnesccab5c82011-01-18 15:49:25 -0800912 seq_printf(m, "RP CUR UP EI: %dus\n", rpupei &
913 GEN6_CURICONT_MASK);
914 seq_printf(m, "RP CUR UP: %dus\n", rpcurup &
915 GEN6_CURBSYTAVG_MASK);
916 seq_printf(m, "RP PREV UP: %dus\n", rpprevup &
917 GEN6_CURBSYTAVG_MASK);
918 seq_printf(m, "RP CUR DOWN EI: %dus\n", rpdownei &
919 GEN6_CURIAVG_MASK);
920 seq_printf(m, "RP CUR DOWN: %dus\n", rpcurdown &
921 GEN6_CURBSYTAVG_MASK);
922 seq_printf(m, "RP PREV DOWN: %dus\n", rpprevdown &
923 GEN6_CURBSYTAVG_MASK);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800924
925 max_freq = (rp_state_cap & 0xff0000) >> 16;
926 seq_printf(m, "Lowest (RPN) frequency: %dMHz\n",
Jesse Barnese281fca2011-03-18 10:32:07 -0700927 max_freq * 50);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800928
929 max_freq = (rp_state_cap & 0xff00) >> 8;
930 seq_printf(m, "Nominal (RP1) frequency: %dMHz\n",
Jesse Barnese281fca2011-03-18 10:32:07 -0700931 max_freq * 50);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800932
933 max_freq = rp_state_cap & 0xff;
934 seq_printf(m, "Max non-overclocked (RP0) frequency: %dMHz\n",
Jesse Barnese281fca2011-03-18 10:32:07 -0700935 max_freq * 50);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800936 } else {
937 seq_printf(m, "no P-state info available\n");
938 }
Jesse Barnesf97108d2010-01-29 11:27:07 -0800939
940 return 0;
941}
942
943static int i915_delayfreq_table(struct seq_file *m, void *unused)
944{
945 struct drm_info_node *node = (struct drm_info_node *) m->private;
946 struct drm_device *dev = node->minor->dev;
947 drm_i915_private_t *dev_priv = dev->dev_private;
948 u32 delayfreq;
Ben Widawsky616fdb52011-10-05 11:44:54 -0700949 int ret, i;
950
951 ret = mutex_lock_interruptible(&dev->struct_mutex);
952 if (ret)
953 return ret;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800954
955 for (i = 0; i < 16; i++) {
956 delayfreq = I915_READ(PXVFREQ_BASE + i * 4);
Jesse Barnes7648fa92010-05-20 14:28:11 -0700957 seq_printf(m, "P%02dVIDFREQ: 0x%08x (VID: %d)\n", i, delayfreq,
958 (delayfreq & PXVFREQ_PX_MASK) >> PXVFREQ_PX_SHIFT);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800959 }
960
Ben Widawsky616fdb52011-10-05 11:44:54 -0700961 mutex_unlock(&dev->struct_mutex);
962
Jesse Barnesf97108d2010-01-29 11:27:07 -0800963 return 0;
964}
965
966static inline int MAP_TO_MV(int map)
967{
968 return 1250 - (map * 25);
969}
970
971static int i915_inttoext_table(struct seq_file *m, void *unused)
972{
973 struct drm_info_node *node = (struct drm_info_node *) m->private;
974 struct drm_device *dev = node->minor->dev;
975 drm_i915_private_t *dev_priv = dev->dev_private;
976 u32 inttoext;
Ben Widawsky616fdb52011-10-05 11:44:54 -0700977 int ret, i;
978
979 ret = mutex_lock_interruptible(&dev->struct_mutex);
980 if (ret)
981 return ret;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800982
983 for (i = 1; i <= 32; i++) {
984 inttoext = I915_READ(INTTOEXT_BASE_ILK + i * 4);
985 seq_printf(m, "INTTOEXT%02d: 0x%08x\n", i, inttoext);
986 }
987
Ben Widawsky616fdb52011-10-05 11:44:54 -0700988 mutex_unlock(&dev->struct_mutex);
989
Jesse Barnesf97108d2010-01-29 11:27:07 -0800990 return 0;
991}
992
Ben Widawsky4d855292011-12-12 19:34:16 -0800993static int ironlake_drpc_info(struct seq_file *m)
Jesse Barnesf97108d2010-01-29 11:27:07 -0800994{
995 struct drm_info_node *node = (struct drm_info_node *) m->private;
996 struct drm_device *dev = node->minor->dev;
997 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky616fdb52011-10-05 11:44:54 -0700998 u32 rgvmodectl, rstdbyctl;
999 u16 crstandvid;
1000 int ret;
1001
1002 ret = mutex_lock_interruptible(&dev->struct_mutex);
1003 if (ret)
1004 return ret;
1005
1006 rgvmodectl = I915_READ(MEMMODECTL);
1007 rstdbyctl = I915_READ(RSTDBYCTL);
1008 crstandvid = I915_READ16(CRSTANDVID);
1009
1010 mutex_unlock(&dev->struct_mutex);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001011
1012 seq_printf(m, "HD boost: %s\n", (rgvmodectl & MEMMODE_BOOST_EN) ?
1013 "yes" : "no");
1014 seq_printf(m, "Boost freq: %d\n",
1015 (rgvmodectl & MEMMODE_BOOST_FREQ_MASK) >>
1016 MEMMODE_BOOST_FREQ_SHIFT);
1017 seq_printf(m, "HW control enabled: %s\n",
1018 rgvmodectl & MEMMODE_HWIDLE_EN ? "yes" : "no");
1019 seq_printf(m, "SW control enabled: %s\n",
1020 rgvmodectl & MEMMODE_SWMODE_EN ? "yes" : "no");
1021 seq_printf(m, "Gated voltage change: %s\n",
1022 rgvmodectl & MEMMODE_RCLK_GATE ? "yes" : "no");
1023 seq_printf(m, "Starting frequency: P%d\n",
1024 (rgvmodectl & MEMMODE_FSTART_MASK) >> MEMMODE_FSTART_SHIFT);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001025 seq_printf(m, "Max P-state: P%d\n",
Jesse Barnesf97108d2010-01-29 11:27:07 -08001026 (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001027 seq_printf(m, "Min P-state: P%d\n", (rgvmodectl & MEMMODE_FMIN_MASK));
1028 seq_printf(m, "RS1 VID: %d\n", (crstandvid & 0x3f));
1029 seq_printf(m, "RS2 VID: %d\n", ((crstandvid >> 8) & 0x3f));
1030 seq_printf(m, "Render standby enabled: %s\n",
1031 (rstdbyctl & RCX_SW_EXIT) ? "no" : "yes");
Jesse Barnes88271da2011-01-05 12:01:24 -08001032 seq_printf(m, "Current RS state: ");
1033 switch (rstdbyctl & RSX_STATUS_MASK) {
1034 case RSX_STATUS_ON:
1035 seq_printf(m, "on\n");
1036 break;
1037 case RSX_STATUS_RC1:
1038 seq_printf(m, "RC1\n");
1039 break;
1040 case RSX_STATUS_RC1E:
1041 seq_printf(m, "RC1E\n");
1042 break;
1043 case RSX_STATUS_RS1:
1044 seq_printf(m, "RS1\n");
1045 break;
1046 case RSX_STATUS_RS2:
1047 seq_printf(m, "RS2 (RC6)\n");
1048 break;
1049 case RSX_STATUS_RS3:
1050 seq_printf(m, "RC3 (RC6+)\n");
1051 break;
1052 default:
1053 seq_printf(m, "unknown\n");
1054 break;
1055 }
Jesse Barnesf97108d2010-01-29 11:27:07 -08001056
1057 return 0;
1058}
1059
Ben Widawsky4d855292011-12-12 19:34:16 -08001060static int gen6_drpc_info(struct seq_file *m)
1061{
1062
1063 struct drm_info_node *node = (struct drm_info_node *) m->private;
1064 struct drm_device *dev = node->minor->dev;
1065 struct drm_i915_private *dev_priv = dev->dev_private;
1066 u32 rpmodectl1, gt_core_status, rcctl1;
Daniel Vetter93b525d2012-01-25 13:52:43 +01001067 unsigned forcewake_count;
Ben Widawsky4d855292011-12-12 19:34:16 -08001068 int count=0, ret;
1069
1070
1071 ret = mutex_lock_interruptible(&dev->struct_mutex);
1072 if (ret)
1073 return ret;
1074
Daniel Vetter93b525d2012-01-25 13:52:43 +01001075 spin_lock_irq(&dev_priv->gt_lock);
1076 forcewake_count = dev_priv->forcewake_count;
1077 spin_unlock_irq(&dev_priv->gt_lock);
1078
1079 if (forcewake_count) {
1080 seq_printf(m, "RC information inaccurate because somebody "
1081 "holds a forcewake reference \n");
Ben Widawsky4d855292011-12-12 19:34:16 -08001082 } else {
1083 /* NB: we cannot use forcewake, else we read the wrong values */
1084 while (count++ < 50 && (I915_READ_NOTRACE(FORCEWAKE_ACK) & 1))
1085 udelay(10);
1086 seq_printf(m, "RC information accurate: %s\n", yesno(count < 51));
1087 }
1088
1089 gt_core_status = readl(dev_priv->regs + GEN6_GT_CORE_STATUS);
1090 trace_i915_reg_rw(false, GEN6_GT_CORE_STATUS, gt_core_status, 4);
1091
1092 rpmodectl1 = I915_READ(GEN6_RP_CONTROL);
1093 rcctl1 = I915_READ(GEN6_RC_CONTROL);
1094 mutex_unlock(&dev->struct_mutex);
1095
1096 seq_printf(m, "Video Turbo Mode: %s\n",
1097 yesno(rpmodectl1 & GEN6_RP_MEDIA_TURBO));
1098 seq_printf(m, "HW control enabled: %s\n",
1099 yesno(rpmodectl1 & GEN6_RP_ENABLE));
1100 seq_printf(m, "SW control enabled: %s\n",
1101 yesno((rpmodectl1 & GEN6_RP_MEDIA_MODE_MASK) ==
1102 GEN6_RP_MEDIA_SW_MODE));
Eric Anholtfff24e22012-01-23 16:14:05 -08001103 seq_printf(m, "RC1e Enabled: %s\n",
Ben Widawsky4d855292011-12-12 19:34:16 -08001104 yesno(rcctl1 & GEN6_RC_CTL_RC1e_ENABLE));
1105 seq_printf(m, "RC6 Enabled: %s\n",
1106 yesno(rcctl1 & GEN6_RC_CTL_RC6_ENABLE));
1107 seq_printf(m, "Deep RC6 Enabled: %s\n",
1108 yesno(rcctl1 & GEN6_RC_CTL_RC6p_ENABLE));
1109 seq_printf(m, "Deepest RC6 Enabled: %s\n",
1110 yesno(rcctl1 & GEN6_RC_CTL_RC6pp_ENABLE));
1111 seq_printf(m, "Current RC state: ");
1112 switch (gt_core_status & GEN6_RCn_MASK) {
1113 case GEN6_RC0:
1114 if (gt_core_status & GEN6_CORE_CPD_STATE_MASK)
1115 seq_printf(m, "Core Power Down\n");
1116 else
1117 seq_printf(m, "on\n");
1118 break;
1119 case GEN6_RC3:
1120 seq_printf(m, "RC3\n");
1121 break;
1122 case GEN6_RC6:
1123 seq_printf(m, "RC6\n");
1124 break;
1125 case GEN6_RC7:
1126 seq_printf(m, "RC7\n");
1127 break;
1128 default:
1129 seq_printf(m, "Unknown\n");
1130 break;
1131 }
1132
1133 seq_printf(m, "Core Power Down: %s\n",
1134 yesno(gt_core_status & GEN6_CORE_CPD_STATE_MASK));
1135 return 0;
1136}
1137
1138static int i915_drpc_info(struct seq_file *m, void *unused)
1139{
1140 struct drm_info_node *node = (struct drm_info_node *) m->private;
1141 struct drm_device *dev = node->minor->dev;
1142
1143 if (IS_GEN6(dev) || IS_GEN7(dev))
1144 return gen6_drpc_info(m);
1145 else
1146 return ironlake_drpc_info(m);
1147}
1148
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001149static int i915_fbc_status(struct seq_file *m, void *unused)
1150{
1151 struct drm_info_node *node = (struct drm_info_node *) m->private;
1152 struct drm_device *dev = node->minor->dev;
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001153 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001154
Adam Jacksonee5382a2010-04-23 11:17:39 -04001155 if (!I915_HAS_FBC(dev)) {
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001156 seq_printf(m, "FBC unsupported on this chipset\n");
1157 return 0;
1158 }
1159
Adam Jacksonee5382a2010-04-23 11:17:39 -04001160 if (intel_fbc_enabled(dev)) {
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001161 seq_printf(m, "FBC enabled\n");
1162 } else {
1163 seq_printf(m, "FBC disabled: ");
1164 switch (dev_priv->no_fbc_reason) {
Chris Wilsonbed4a672010-09-11 10:47:47 +01001165 case FBC_NO_OUTPUT:
1166 seq_printf(m, "no outputs");
1167 break;
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001168 case FBC_STOLEN_TOO_SMALL:
1169 seq_printf(m, "not enough stolen memory");
1170 break;
1171 case FBC_UNSUPPORTED_MODE:
1172 seq_printf(m, "mode not supported");
1173 break;
1174 case FBC_MODE_TOO_LARGE:
1175 seq_printf(m, "mode too large");
1176 break;
1177 case FBC_BAD_PLANE:
1178 seq_printf(m, "FBC unsupported on plane");
1179 break;
1180 case FBC_NOT_TILED:
1181 seq_printf(m, "scanout buffer not tiled");
1182 break;
Jesse Barnes9c928d12010-07-23 15:20:00 -07001183 case FBC_MULTIPLE_PIPES:
1184 seq_printf(m, "multiple pipes are enabled");
1185 break;
Jesse Barnesc1a9f042011-05-05 15:24:21 -07001186 case FBC_MODULE_PARAM:
1187 seq_printf(m, "disabled per module param (default off)");
1188 break;
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001189 default:
1190 seq_printf(m, "unknown reason");
1191 }
1192 seq_printf(m, "\n");
1193 }
1194 return 0;
1195}
1196
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001197static int i915_sr_status(struct seq_file *m, void *unused)
1198{
1199 struct drm_info_node *node = (struct drm_info_node *) m->private;
1200 struct drm_device *dev = node->minor->dev;
1201 drm_i915_private_t *dev_priv = dev->dev_private;
1202 bool sr_enabled = false;
1203
Yuanhan Liu13982612010-12-15 15:42:31 +08001204 if (HAS_PCH_SPLIT(dev))
Chris Wilson5ba2aaa2010-08-19 18:04:08 +01001205 sr_enabled = I915_READ(WM1_LP_ILK) & WM1_LP_SR_EN;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001206 else if (IS_CRESTLINE(dev) || IS_I945G(dev) || IS_I945GM(dev))
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001207 sr_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
1208 else if (IS_I915GM(dev))
1209 sr_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN;
1210 else if (IS_PINEVIEW(dev))
1211 sr_enabled = I915_READ(DSPFW3) & PINEVIEW_SELF_REFRESH_EN;
1212
Chris Wilson5ba2aaa2010-08-19 18:04:08 +01001213 seq_printf(m, "self-refresh: %s\n",
1214 sr_enabled ? "enabled" : "disabled");
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001215
1216 return 0;
1217}
1218
Jesse Barnes7648fa92010-05-20 14:28:11 -07001219static int i915_emon_status(struct seq_file *m, void *unused)
1220{
1221 struct drm_info_node *node = (struct drm_info_node *) m->private;
1222 struct drm_device *dev = node->minor->dev;
1223 drm_i915_private_t *dev_priv = dev->dev_private;
1224 unsigned long temp, chipset, gfx;
Chris Wilsonde227ef2010-07-03 07:58:38 +01001225 int ret;
1226
1227 ret = mutex_lock_interruptible(&dev->struct_mutex);
1228 if (ret)
1229 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001230
1231 temp = i915_mch_val(dev_priv);
1232 chipset = i915_chipset_val(dev_priv);
1233 gfx = i915_gfx_val(dev_priv);
Chris Wilsonde227ef2010-07-03 07:58:38 +01001234 mutex_unlock(&dev->struct_mutex);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001235
1236 seq_printf(m, "GMCH temp: %ld\n", temp);
1237 seq_printf(m, "Chipset power: %ld\n", chipset);
1238 seq_printf(m, "GFX power: %ld\n", gfx);
1239 seq_printf(m, "Total power: %ld\n", chipset + gfx);
1240
1241 return 0;
1242}
1243
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001244static int i915_ring_freq_table(struct seq_file *m, void *unused)
1245{
1246 struct drm_info_node *node = (struct drm_info_node *) m->private;
1247 struct drm_device *dev = node->minor->dev;
1248 drm_i915_private_t *dev_priv = dev->dev_private;
1249 int ret;
1250 int gpu_freq, ia_freq;
1251
Jesse Barnes1c70c0c2011-06-29 13:34:36 -07001252 if (!(IS_GEN6(dev) || IS_GEN7(dev))) {
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001253 seq_printf(m, "unsupported on this chipset\n");
1254 return 0;
1255 }
1256
1257 ret = mutex_lock_interruptible(&dev->struct_mutex);
1258 if (ret)
1259 return ret;
1260
1261 seq_printf(m, "GPU freq (MHz)\tEffective CPU freq (MHz)\n");
1262
1263 for (gpu_freq = dev_priv->min_delay; gpu_freq <= dev_priv->max_delay;
1264 gpu_freq++) {
1265 I915_WRITE(GEN6_PCODE_DATA, gpu_freq);
1266 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY |
1267 GEN6_PCODE_READ_MIN_FREQ_TABLE);
1268 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) &
1269 GEN6_PCODE_READY) == 0, 10)) {
1270 DRM_ERROR("pcode read of freq table timed out\n");
1271 continue;
1272 }
1273 ia_freq = I915_READ(GEN6_PCODE_DATA);
1274 seq_printf(m, "%d\t\t%d\n", gpu_freq * 50, ia_freq * 100);
1275 }
1276
1277 mutex_unlock(&dev->struct_mutex);
1278
1279 return 0;
1280}
1281
Jesse Barnes7648fa92010-05-20 14:28:11 -07001282static int i915_gfxec(struct seq_file *m, void *unused)
1283{
1284 struct drm_info_node *node = (struct drm_info_node *) m->private;
1285 struct drm_device *dev = node->minor->dev;
1286 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky616fdb52011-10-05 11:44:54 -07001287 int ret;
1288
1289 ret = mutex_lock_interruptible(&dev->struct_mutex);
1290 if (ret)
1291 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001292
1293 seq_printf(m, "GFXEC: %ld\n", (unsigned long)I915_READ(0x112f4));
1294
Ben Widawsky616fdb52011-10-05 11:44:54 -07001295 mutex_unlock(&dev->struct_mutex);
1296
Jesse Barnes7648fa92010-05-20 14:28:11 -07001297 return 0;
1298}
1299
Chris Wilson44834a62010-08-19 16:09:23 +01001300static int i915_opregion(struct seq_file *m, void *unused)
1301{
1302 struct drm_info_node *node = (struct drm_info_node *) m->private;
1303 struct drm_device *dev = node->minor->dev;
1304 drm_i915_private_t *dev_priv = dev->dev_private;
1305 struct intel_opregion *opregion = &dev_priv->opregion;
1306 int ret;
1307
1308 ret = mutex_lock_interruptible(&dev->struct_mutex);
1309 if (ret)
1310 return ret;
1311
1312 if (opregion->header)
1313 seq_write(m, opregion->header, OPREGION_SIZE);
1314
1315 mutex_unlock(&dev->struct_mutex);
1316
1317 return 0;
1318}
1319
Chris Wilson37811fc2010-08-25 22:45:57 +01001320static int i915_gem_framebuffer_info(struct seq_file *m, void *data)
1321{
1322 struct drm_info_node *node = (struct drm_info_node *) m->private;
1323 struct drm_device *dev = node->minor->dev;
1324 drm_i915_private_t *dev_priv = dev->dev_private;
1325 struct intel_fbdev *ifbdev;
1326 struct intel_framebuffer *fb;
1327 int ret;
1328
1329 ret = mutex_lock_interruptible(&dev->mode_config.mutex);
1330 if (ret)
1331 return ret;
1332
1333 ifbdev = dev_priv->fbdev;
1334 fb = to_intel_framebuffer(ifbdev->helper.fb);
1335
1336 seq_printf(m, "fbcon size: %d x %d, depth %d, %d bpp, obj ",
1337 fb->base.width,
1338 fb->base.height,
1339 fb->base.depth,
1340 fb->base.bits_per_pixel);
Chris Wilson05394f32010-11-08 19:18:58 +00001341 describe_obj(m, fb->obj);
Chris Wilson37811fc2010-08-25 22:45:57 +01001342 seq_printf(m, "\n");
1343
1344 list_for_each_entry(fb, &dev->mode_config.fb_list, base.head) {
1345 if (&fb->base == ifbdev->helper.fb)
1346 continue;
1347
1348 seq_printf(m, "user size: %d x %d, depth %d, %d bpp, obj ",
1349 fb->base.width,
1350 fb->base.height,
1351 fb->base.depth,
1352 fb->base.bits_per_pixel);
Chris Wilson05394f32010-11-08 19:18:58 +00001353 describe_obj(m, fb->obj);
Chris Wilson37811fc2010-08-25 22:45:57 +01001354 seq_printf(m, "\n");
1355 }
1356
1357 mutex_unlock(&dev->mode_config.mutex);
1358
1359 return 0;
1360}
1361
Ben Widawskye76d3632011-03-19 18:14:29 -07001362static int i915_context_status(struct seq_file *m, void *unused)
1363{
1364 struct drm_info_node *node = (struct drm_info_node *) m->private;
1365 struct drm_device *dev = node->minor->dev;
1366 drm_i915_private_t *dev_priv = dev->dev_private;
1367 int ret;
1368
1369 ret = mutex_lock_interruptible(&dev->mode_config.mutex);
1370 if (ret)
1371 return ret;
1372
Ben Widawskydc501fb2011-06-29 11:41:51 -07001373 if (dev_priv->pwrctx) {
1374 seq_printf(m, "power context ");
1375 describe_obj(m, dev_priv->pwrctx);
1376 seq_printf(m, "\n");
1377 }
Ben Widawskye76d3632011-03-19 18:14:29 -07001378
Ben Widawskydc501fb2011-06-29 11:41:51 -07001379 if (dev_priv->renderctx) {
1380 seq_printf(m, "render context ");
1381 describe_obj(m, dev_priv->renderctx);
1382 seq_printf(m, "\n");
1383 }
Ben Widawskye76d3632011-03-19 18:14:29 -07001384
1385 mutex_unlock(&dev->mode_config.mutex);
1386
1387 return 0;
1388}
1389
Ben Widawsky6d794d42011-04-25 11:25:56 -07001390static int i915_gen6_forcewake_count_info(struct seq_file *m, void *data)
1391{
1392 struct drm_info_node *node = (struct drm_info_node *) m->private;
1393 struct drm_device *dev = node->minor->dev;
1394 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter9f1f46a2011-12-14 13:57:03 +01001395 unsigned forcewake_count;
Ben Widawsky6d794d42011-04-25 11:25:56 -07001396
Daniel Vetter9f1f46a2011-12-14 13:57:03 +01001397 spin_lock_irq(&dev_priv->gt_lock);
1398 forcewake_count = dev_priv->forcewake_count;
1399 spin_unlock_irq(&dev_priv->gt_lock);
1400
1401 seq_printf(m, "forcewake count = %u\n", forcewake_count);
Ben Widawsky6d794d42011-04-25 11:25:56 -07001402
1403 return 0;
1404}
1405
Daniel Vetterea16a3c2011-12-14 13:57:16 +01001406static const char *swizzle_string(unsigned swizzle)
1407{
1408 switch(swizzle) {
1409 case I915_BIT_6_SWIZZLE_NONE:
1410 return "none";
1411 case I915_BIT_6_SWIZZLE_9:
1412 return "bit9";
1413 case I915_BIT_6_SWIZZLE_9_10:
1414 return "bit9/bit10";
1415 case I915_BIT_6_SWIZZLE_9_11:
1416 return "bit9/bit11";
1417 case I915_BIT_6_SWIZZLE_9_10_11:
1418 return "bit9/bit10/bit11";
1419 case I915_BIT_6_SWIZZLE_9_17:
1420 return "bit9/bit17";
1421 case I915_BIT_6_SWIZZLE_9_10_17:
1422 return "bit9/bit10/bit17";
1423 case I915_BIT_6_SWIZZLE_UNKNOWN:
1424 return "unkown";
1425 }
1426
1427 return "bug";
1428}
1429
1430static int i915_swizzle_info(struct seq_file *m, void *data)
1431{
1432 struct drm_info_node *node = (struct drm_info_node *) m->private;
1433 struct drm_device *dev = node->minor->dev;
1434 struct drm_i915_private *dev_priv = dev->dev_private;
1435
1436 mutex_lock(&dev->struct_mutex);
1437 seq_printf(m, "bit6 swizzle for X-tiling = %s\n",
1438 swizzle_string(dev_priv->mm.bit_6_swizzle_x));
1439 seq_printf(m, "bit6 swizzle for Y-tiling = %s\n",
1440 swizzle_string(dev_priv->mm.bit_6_swizzle_y));
1441
1442 if (IS_GEN3(dev) || IS_GEN4(dev)) {
1443 seq_printf(m, "DDC = 0x%08x\n",
1444 I915_READ(DCC));
1445 seq_printf(m, "C0DRB3 = 0x%04x\n",
1446 I915_READ16(C0DRB3));
1447 seq_printf(m, "C1DRB3 = 0x%04x\n",
1448 I915_READ16(C1DRB3));
Daniel Vetter3fa7d232012-01-31 16:47:56 +01001449 } else if (IS_GEN6(dev) || IS_GEN7(dev)) {
1450 seq_printf(m, "MAD_DIMM_C0 = 0x%08x\n",
1451 I915_READ(MAD_DIMM_C0));
1452 seq_printf(m, "MAD_DIMM_C1 = 0x%08x\n",
1453 I915_READ(MAD_DIMM_C1));
1454 seq_printf(m, "MAD_DIMM_C2 = 0x%08x\n",
1455 I915_READ(MAD_DIMM_C2));
1456 seq_printf(m, "TILECTL = 0x%08x\n",
1457 I915_READ(TILECTL));
1458 seq_printf(m, "ARB_MODE = 0x%08x\n",
1459 I915_READ(ARB_MODE));
1460 seq_printf(m, "DISP_ARB_CTL = 0x%08x\n",
1461 I915_READ(DISP_ARB_CTL));
Daniel Vetterea16a3c2011-12-14 13:57:16 +01001462 }
1463 mutex_unlock(&dev->struct_mutex);
1464
1465 return 0;
1466}
1467
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01001468static int i915_ppgtt_info(struct seq_file *m, void *data)
1469{
1470 struct drm_info_node *node = (struct drm_info_node *) m->private;
1471 struct drm_device *dev = node->minor->dev;
1472 struct drm_i915_private *dev_priv = dev->dev_private;
1473 struct intel_ring_buffer *ring;
1474 int i, ret;
1475
1476
1477 ret = mutex_lock_interruptible(&dev->struct_mutex);
1478 if (ret)
1479 return ret;
1480 if (INTEL_INFO(dev)->gen == 6)
1481 seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(GFX_MODE));
1482
1483 for (i = 0; i < I915_NUM_RINGS; i++) {
1484 ring = &dev_priv->ring[i];
1485
1486 seq_printf(m, "%s\n", ring->name);
1487 if (INTEL_INFO(dev)->gen == 7)
1488 seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(RING_MODE_GEN7(ring)));
1489 seq_printf(m, "PP_DIR_BASE: 0x%08x\n", I915_READ(RING_PP_DIR_BASE(ring)));
1490 seq_printf(m, "PP_DIR_BASE_READ: 0x%08x\n", I915_READ(RING_PP_DIR_BASE_READ(ring)));
1491 seq_printf(m, "PP_DIR_DCLV: 0x%08x\n", I915_READ(RING_PP_DIR_DCLV(ring)));
1492 }
1493 if (dev_priv->mm.aliasing_ppgtt) {
1494 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
1495
1496 seq_printf(m, "aliasing PPGTT:\n");
1497 seq_printf(m, "pd gtt offset: 0x%08x\n", ppgtt->pd_offset);
1498 }
1499 seq_printf(m, "ECOCHK: 0x%08x\n", I915_READ(GAM_ECOCHK));
1500 mutex_unlock(&dev->struct_mutex);
1501
1502 return 0;
1503}
1504
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001505static ssize_t
1506i915_wedged_read(struct file *filp,
1507 char __user *ubuf,
1508 size_t max,
1509 loff_t *ppos)
1510{
1511 struct drm_device *dev = filp->private_data;
1512 drm_i915_private_t *dev_priv = dev->dev_private;
1513 char buf[80];
1514 int len;
1515
Akshay Joshi0206e352011-08-16 15:34:10 -04001516 len = snprintf(buf, sizeof(buf),
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001517 "wedged : %d\n",
1518 atomic_read(&dev_priv->mm.wedged));
1519
Akshay Joshi0206e352011-08-16 15:34:10 -04001520 if (len > sizeof(buf))
1521 len = sizeof(buf);
Dan Carpenterf4433a82010-09-08 21:44:47 +02001522
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001523 return simple_read_from_buffer(ubuf, max, ppos, buf, len);
1524}
1525
1526static ssize_t
1527i915_wedged_write(struct file *filp,
1528 const char __user *ubuf,
1529 size_t cnt,
1530 loff_t *ppos)
1531{
1532 struct drm_device *dev = filp->private_data;
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001533 char buf[20];
1534 int val = 1;
1535
1536 if (cnt > 0) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001537 if (cnt > sizeof(buf) - 1)
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001538 return -EINVAL;
1539
1540 if (copy_from_user(buf, ubuf, cnt))
1541 return -EFAULT;
1542 buf[cnt] = 0;
1543
1544 val = simple_strtoul(buf, NULL, 0);
1545 }
1546
1547 DRM_INFO("Manually setting wedged to %d\n", val);
Chris Wilson527f9e92010-11-11 01:16:58 +00001548 i915_handle_error(dev, val);
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001549
1550 return cnt;
1551}
1552
1553static const struct file_operations i915_wedged_fops = {
1554 .owner = THIS_MODULE,
Stephen Boyd234e3402012-04-05 14:25:11 -07001555 .open = simple_open,
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001556 .read = i915_wedged_read,
1557 .write = i915_wedged_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001558 .llseek = default_llseek,
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001559};
1560
Jesse Barnes358733e2011-07-27 11:53:01 -07001561static ssize_t
1562i915_max_freq_read(struct file *filp,
1563 char __user *ubuf,
1564 size_t max,
1565 loff_t *ppos)
1566{
1567 struct drm_device *dev = filp->private_data;
1568 drm_i915_private_t *dev_priv = dev->dev_private;
1569 char buf[80];
1570 int len;
1571
Akshay Joshi0206e352011-08-16 15:34:10 -04001572 len = snprintf(buf, sizeof(buf),
Jesse Barnes358733e2011-07-27 11:53:01 -07001573 "max freq: %d\n", dev_priv->max_delay * 50);
1574
Akshay Joshi0206e352011-08-16 15:34:10 -04001575 if (len > sizeof(buf))
1576 len = sizeof(buf);
Jesse Barnes358733e2011-07-27 11:53:01 -07001577
1578 return simple_read_from_buffer(ubuf, max, ppos, buf, len);
1579}
1580
1581static ssize_t
1582i915_max_freq_write(struct file *filp,
1583 const char __user *ubuf,
1584 size_t cnt,
1585 loff_t *ppos)
1586{
1587 struct drm_device *dev = filp->private_data;
1588 struct drm_i915_private *dev_priv = dev->dev_private;
1589 char buf[20];
1590 int val = 1;
1591
1592 if (cnt > 0) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001593 if (cnt > sizeof(buf) - 1)
Jesse Barnes358733e2011-07-27 11:53:01 -07001594 return -EINVAL;
1595
1596 if (copy_from_user(buf, ubuf, cnt))
1597 return -EFAULT;
1598 buf[cnt] = 0;
1599
1600 val = simple_strtoul(buf, NULL, 0);
1601 }
1602
1603 DRM_DEBUG_DRIVER("Manually setting max freq to %d\n", val);
1604
1605 /*
1606 * Turbo will still be enabled, but won't go above the set value.
1607 */
1608 dev_priv->max_delay = val / 50;
1609
1610 gen6_set_rps(dev, val / 50);
1611
1612 return cnt;
1613}
1614
1615static const struct file_operations i915_max_freq_fops = {
1616 .owner = THIS_MODULE,
Stephen Boyd234e3402012-04-05 14:25:11 -07001617 .open = simple_open,
Jesse Barnes358733e2011-07-27 11:53:01 -07001618 .read = i915_max_freq_read,
1619 .write = i915_max_freq_write,
1620 .llseek = default_llseek,
1621};
1622
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001623static ssize_t
1624i915_cache_sharing_read(struct file *filp,
1625 char __user *ubuf,
1626 size_t max,
1627 loff_t *ppos)
1628{
1629 struct drm_device *dev = filp->private_data;
1630 drm_i915_private_t *dev_priv = dev->dev_private;
1631 char buf[80];
1632 u32 snpcr;
1633 int len;
1634
1635 mutex_lock(&dev_priv->dev->struct_mutex);
1636 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
1637 mutex_unlock(&dev_priv->dev->struct_mutex);
1638
Akshay Joshi0206e352011-08-16 15:34:10 -04001639 len = snprintf(buf, sizeof(buf),
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001640 "%d\n", (snpcr & GEN6_MBC_SNPCR_MASK) >>
1641 GEN6_MBC_SNPCR_SHIFT);
1642
Akshay Joshi0206e352011-08-16 15:34:10 -04001643 if (len > sizeof(buf))
1644 len = sizeof(buf);
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001645
1646 return simple_read_from_buffer(ubuf, max, ppos, buf, len);
1647}
1648
1649static ssize_t
1650i915_cache_sharing_write(struct file *filp,
1651 const char __user *ubuf,
1652 size_t cnt,
1653 loff_t *ppos)
1654{
1655 struct drm_device *dev = filp->private_data;
1656 struct drm_i915_private *dev_priv = dev->dev_private;
1657 char buf[20];
1658 u32 snpcr;
1659 int val = 1;
1660
1661 if (cnt > 0) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001662 if (cnt > sizeof(buf) - 1)
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001663 return -EINVAL;
1664
1665 if (copy_from_user(buf, ubuf, cnt))
1666 return -EFAULT;
1667 buf[cnt] = 0;
1668
1669 val = simple_strtoul(buf, NULL, 0);
1670 }
1671
1672 if (val < 0 || val > 3)
1673 return -EINVAL;
1674
1675 DRM_DEBUG_DRIVER("Manually setting uncore sharing to %d\n", val);
1676
1677 /* Update the cache sharing policy here as well */
1678 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
1679 snpcr &= ~GEN6_MBC_SNPCR_MASK;
1680 snpcr |= (val << GEN6_MBC_SNPCR_SHIFT);
1681 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
1682
1683 return cnt;
1684}
1685
1686static const struct file_operations i915_cache_sharing_fops = {
1687 .owner = THIS_MODULE,
Stephen Boyd234e3402012-04-05 14:25:11 -07001688 .open = simple_open,
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001689 .read = i915_cache_sharing_read,
1690 .write = i915_cache_sharing_write,
1691 .llseek = default_llseek,
1692};
1693
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001694/* As the drm_debugfs_init() routines are called before dev->dev_private is
1695 * allocated we need to hook into the minor for release. */
1696static int
1697drm_add_fake_info_node(struct drm_minor *minor,
1698 struct dentry *ent,
1699 const void *key)
1700{
1701 struct drm_info_node *node;
1702
1703 node = kmalloc(sizeof(struct drm_info_node), GFP_KERNEL);
1704 if (node == NULL) {
1705 debugfs_remove(ent);
1706 return -ENOMEM;
1707 }
1708
1709 node->minor = minor;
1710 node->dent = ent;
1711 node->info_ent = (void *) key;
Marcin Slusarzb3e067c2011-11-09 22:20:35 +01001712
1713 mutex_lock(&minor->debugfs_lock);
1714 list_add(&node->list, &minor->debugfs_list);
1715 mutex_unlock(&minor->debugfs_lock);
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001716
1717 return 0;
1718}
1719
Ben Widawsky6d794d42011-04-25 11:25:56 -07001720static int i915_forcewake_open(struct inode *inode, struct file *file)
1721{
1722 struct drm_device *dev = inode->i_private;
1723 struct drm_i915_private *dev_priv = dev->dev_private;
1724 int ret;
1725
Daniel Vetter075edca2012-01-24 09:44:28 +01001726 if (INTEL_INFO(dev)->gen < 6)
Ben Widawsky6d794d42011-04-25 11:25:56 -07001727 return 0;
1728
1729 ret = mutex_lock_interruptible(&dev->struct_mutex);
1730 if (ret)
1731 return ret;
1732 gen6_gt_force_wake_get(dev_priv);
1733 mutex_unlock(&dev->struct_mutex);
1734
1735 return 0;
1736}
1737
1738int i915_forcewake_release(struct inode *inode, struct file *file)
1739{
1740 struct drm_device *dev = inode->i_private;
1741 struct drm_i915_private *dev_priv = dev->dev_private;
1742
Daniel Vetter075edca2012-01-24 09:44:28 +01001743 if (INTEL_INFO(dev)->gen < 6)
Ben Widawsky6d794d42011-04-25 11:25:56 -07001744 return 0;
1745
1746 /*
1747 * It's bad that we can potentially hang userspace if struct_mutex gets
1748 * forever stuck. However, if we cannot acquire this lock it means that
1749 * almost certainly the driver has hung, is not unload-able. Therefore
1750 * hanging here is probably a minor inconvenience not to be seen my
1751 * almost every user.
1752 */
1753 mutex_lock(&dev->struct_mutex);
1754 gen6_gt_force_wake_put(dev_priv);
1755 mutex_unlock(&dev->struct_mutex);
1756
1757 return 0;
1758}
1759
1760static const struct file_operations i915_forcewake_fops = {
1761 .owner = THIS_MODULE,
1762 .open = i915_forcewake_open,
1763 .release = i915_forcewake_release,
1764};
1765
1766static int i915_forcewake_create(struct dentry *root, struct drm_minor *minor)
1767{
1768 struct drm_device *dev = minor->dev;
1769 struct dentry *ent;
1770
1771 ent = debugfs_create_file("i915_forcewake_user",
Ben Widawsky8eb57292011-05-11 15:10:58 -07001772 S_IRUSR,
Ben Widawsky6d794d42011-04-25 11:25:56 -07001773 root, dev,
1774 &i915_forcewake_fops);
1775 if (IS_ERR(ent))
1776 return PTR_ERR(ent);
1777
Ben Widawsky8eb57292011-05-11 15:10:58 -07001778 return drm_add_fake_info_node(minor, ent, &i915_forcewake_fops);
Ben Widawsky6d794d42011-04-25 11:25:56 -07001779}
1780
Daniel Vetter6a9c3082011-12-14 13:57:11 +01001781static int i915_debugfs_create(struct dentry *root,
1782 struct drm_minor *minor,
1783 const char *name,
1784 const struct file_operations *fops)
Jesse Barnes358733e2011-07-27 11:53:01 -07001785{
1786 struct drm_device *dev = minor->dev;
1787 struct dentry *ent;
1788
Daniel Vetter6a9c3082011-12-14 13:57:11 +01001789 ent = debugfs_create_file(name,
Jesse Barnes358733e2011-07-27 11:53:01 -07001790 S_IRUGO | S_IWUSR,
1791 root, dev,
Daniel Vetter6a9c3082011-12-14 13:57:11 +01001792 fops);
Jesse Barnes358733e2011-07-27 11:53:01 -07001793 if (IS_ERR(ent))
1794 return PTR_ERR(ent);
1795
Daniel Vetter6a9c3082011-12-14 13:57:11 +01001796 return drm_add_fake_info_node(minor, ent, fops);
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001797}
1798
Ben Gamari27c202a2009-07-01 22:26:52 -04001799static struct drm_info_list i915_debugfs_list[] = {
Chris Wilson311bd682011-01-13 19:06:50 +00001800 {"i915_capabilities", i915_capabilities, 0},
Chris Wilson73aa8082010-09-30 11:46:12 +01001801 {"i915_gem_objects", i915_gem_object_info, 0},
Chris Wilson08c18322011-01-10 00:00:24 +00001802 {"i915_gem_gtt", i915_gem_gtt_info, 0},
Ben Gamari433e12f2009-02-17 20:08:51 -05001803 {"i915_gem_active", i915_gem_object_list_info, 0, (void *) ACTIVE_LIST},
1804 {"i915_gem_flushing", i915_gem_object_list_info, 0, (void *) FLUSHING_LIST},
1805 {"i915_gem_inactive", i915_gem_object_list_info, 0, (void *) INACTIVE_LIST},
Chris Wilsonf13d3f72010-09-20 17:36:15 +01001806 {"i915_gem_pinned", i915_gem_object_list_info, 0, (void *) PINNED_LIST},
Chris Wilsond21d5972010-09-26 11:19:33 +01001807 {"i915_gem_deferred_free", i915_gem_object_list_info, 0, (void *) DEFERRED_FREE_LIST},
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001808 {"i915_gem_pageflip", i915_gem_pageflip_info, 0},
Ben Gamari20172632009-02-17 20:08:50 -05001809 {"i915_gem_request", i915_gem_request_info, 0},
1810 {"i915_gem_seqno", i915_gem_seqno_info, 0},
Chris Wilsona6172a82009-02-11 14:26:38 +00001811 {"i915_gem_fence_regs", i915_gem_fence_regs_info, 0},
Ben Gamari20172632009-02-17 20:08:50 -05001812 {"i915_gem_interrupt", i915_interrupt_info, 0},
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001813 {"i915_gem_hws", i915_hws_info, 0, (void *)RCS},
1814 {"i915_gem_hws_blt", i915_hws_info, 0, (void *)BCS},
1815 {"i915_gem_hws_bsd", i915_hws_info, 0, (void *)VCS},
1816 {"i915_ringbuffer_data", i915_ringbuffer_data, 0, (void *)RCS},
1817 {"i915_ringbuffer_info", i915_ringbuffer_info, 0, (void *)RCS},
1818 {"i915_bsd_ringbuffer_data", i915_ringbuffer_data, 0, (void *)VCS},
1819 {"i915_bsd_ringbuffer_info", i915_ringbuffer_info, 0, (void *)VCS},
1820 {"i915_blt_ringbuffer_data", i915_ringbuffer_data, 0, (void *)BCS},
1821 {"i915_blt_ringbuffer_info", i915_ringbuffer_info, 0, (void *)BCS},
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001822 {"i915_error_state", i915_error_state, 0},
Jesse Barnesf97108d2010-01-29 11:27:07 -08001823 {"i915_rstdby_delays", i915_rstdby_delays, 0},
1824 {"i915_cur_delayinfo", i915_cur_delayinfo, 0},
1825 {"i915_delayfreq_table", i915_delayfreq_table, 0},
1826 {"i915_inttoext_table", i915_inttoext_table, 0},
1827 {"i915_drpc_info", i915_drpc_info, 0},
Jesse Barnes7648fa92010-05-20 14:28:11 -07001828 {"i915_emon_status", i915_emon_status, 0},
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001829 {"i915_ring_freq_table", i915_ring_freq_table, 0},
Jesse Barnes7648fa92010-05-20 14:28:11 -07001830 {"i915_gfxec", i915_gfxec, 0},
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001831 {"i915_fbc_status", i915_fbc_status, 0},
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001832 {"i915_sr_status", i915_sr_status, 0},
Chris Wilson44834a62010-08-19 16:09:23 +01001833 {"i915_opregion", i915_opregion, 0},
Chris Wilson37811fc2010-08-25 22:45:57 +01001834 {"i915_gem_framebuffer", i915_gem_framebuffer_info, 0},
Ben Widawskye76d3632011-03-19 18:14:29 -07001835 {"i915_context_status", i915_context_status, 0},
Ben Widawsky6d794d42011-04-25 11:25:56 -07001836 {"i915_gen6_forcewake_count", i915_gen6_forcewake_count_info, 0},
Daniel Vetterea16a3c2011-12-14 13:57:16 +01001837 {"i915_swizzle_info", i915_swizzle_info, 0},
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01001838 {"i915_ppgtt_info", i915_ppgtt_info, 0},
Ben Gamari20172632009-02-17 20:08:50 -05001839};
Ben Gamari27c202a2009-07-01 22:26:52 -04001840#define I915_DEBUGFS_ENTRIES ARRAY_SIZE(i915_debugfs_list)
Ben Gamari20172632009-02-17 20:08:50 -05001841
Ben Gamari27c202a2009-07-01 22:26:52 -04001842int i915_debugfs_init(struct drm_minor *minor)
Ben Gamari20172632009-02-17 20:08:50 -05001843{
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001844 int ret;
1845
Daniel Vetter6a9c3082011-12-14 13:57:11 +01001846 ret = i915_debugfs_create(minor->debugfs_root, minor,
1847 "i915_wedged",
1848 &i915_wedged_fops);
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001849 if (ret)
1850 return ret;
1851
Ben Widawsky6d794d42011-04-25 11:25:56 -07001852 ret = i915_forcewake_create(minor->debugfs_root, minor);
1853 if (ret)
1854 return ret;
Daniel Vetter6a9c3082011-12-14 13:57:11 +01001855
1856 ret = i915_debugfs_create(minor->debugfs_root, minor,
1857 "i915_max_freq",
1858 &i915_max_freq_fops);
Jesse Barnes358733e2011-07-27 11:53:01 -07001859 if (ret)
1860 return ret;
Daniel Vetter6a9c3082011-12-14 13:57:11 +01001861
1862 ret = i915_debugfs_create(minor->debugfs_root, minor,
1863 "i915_cache_sharing",
1864 &i915_cache_sharing_fops);
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001865 if (ret)
1866 return ret;
Ben Widawsky6d794d42011-04-25 11:25:56 -07001867
Ben Gamari27c202a2009-07-01 22:26:52 -04001868 return drm_debugfs_create_files(i915_debugfs_list,
1869 I915_DEBUGFS_ENTRIES,
Ben Gamari20172632009-02-17 20:08:50 -05001870 minor->debugfs_root, minor);
1871}
1872
Ben Gamari27c202a2009-07-01 22:26:52 -04001873void i915_debugfs_cleanup(struct drm_minor *minor)
Ben Gamari20172632009-02-17 20:08:50 -05001874{
Ben Gamari27c202a2009-07-01 22:26:52 -04001875 drm_debugfs_remove_files(i915_debugfs_list,
1876 I915_DEBUGFS_ENTRIES, minor);
Ben Widawsky6d794d42011-04-25 11:25:56 -07001877 drm_debugfs_remove_files((struct drm_info_list *) &i915_forcewake_fops,
1878 1, minor);
Kristian Høgsberg33db6792009-11-11 12:19:16 -05001879 drm_debugfs_remove_files((struct drm_info_list *) &i915_wedged_fops,
1880 1, minor);
Jesse Barnes358733e2011-07-27 11:53:01 -07001881 drm_debugfs_remove_files((struct drm_info_list *) &i915_max_freq_fops,
1882 1, minor);
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001883 drm_debugfs_remove_files((struct drm_info_list *) &i915_cache_sharing_fops,
1884 1, minor);
Ben Gamari20172632009-02-17 20:08:50 -05001885}
1886
1887#endif /* CONFIG_DEBUG_FS */