blob: 120db4687a2f6eafd5b2218068298242121bc0cf [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,
Chris Wilsonf13d3f72010-09-20 17:36:15 +010050};
Ben Gamari433e12f2009-02-17 20:08:51 -050051
Chris Wilson70d39fe2010-08-25 16:03:34 +010052static const char *yesno(int v)
53{
54 return v ? "yes" : "no";
55}
56
57static int i915_capabilities(struct seq_file *m, void *data)
58{
59 struct drm_info_node *node = (struct drm_info_node *) m->private;
60 struct drm_device *dev = node->minor->dev;
61 const struct intel_device_info *info = INTEL_INFO(dev);
62
63 seq_printf(m, "gen: %d\n", info->gen);
Paulo Zanoni03d00ac2011-10-14 18:17:41 -030064 seq_printf(m, "pch: %d\n", INTEL_PCH_TYPE(dev));
Chris Wilson70d39fe2010-08-25 16:03:34 +010065#define B(x) seq_printf(m, #x ": %s\n", yesno(info->x))
66 B(is_mobile);
Chris Wilson70d39fe2010-08-25 16:03:34 +010067 B(is_i85x);
68 B(is_i915g);
Chris Wilson70d39fe2010-08-25 16:03:34 +010069 B(is_i945gm);
Chris Wilson70d39fe2010-08-25 16:03:34 +010070 B(is_g33);
71 B(need_gfx_hws);
72 B(is_g4x);
73 B(is_pineview);
74 B(is_broadwater);
75 B(is_crestline);
Chris Wilson70d39fe2010-08-25 16:03:34 +010076 B(has_fbc);
Chris Wilson70d39fe2010-08-25 16:03:34 +010077 B(has_pipe_cxsr);
78 B(has_hotplug);
79 B(cursor_needs_physical);
80 B(has_overlay);
81 B(overlay_needs_physical);
Chris Wilsona6c45cf2010-09-17 00:32:17 +010082 B(supports_tv);
Chris Wilson549f7362010-10-19 11:19:32 +010083 B(has_bsd_ring);
84 B(has_blt_ring);
Eugeni Dodonov3d29b842012-01-17 14:43:53 -020085 B(has_llc);
Chris Wilson70d39fe2010-08-25 16:03:34 +010086#undef B
87
88 return 0;
89}
Ben Gamari433e12f2009-02-17 20:08:51 -050090
Chris Wilson05394f32010-11-08 19:18:58 +000091static const char *get_pin_flag(struct drm_i915_gem_object *obj)
Chris Wilsona6172a82009-02-11 14:26:38 +000092{
Chris Wilson05394f32010-11-08 19:18:58 +000093 if (obj->user_pin_count > 0)
Chris Wilsona6172a82009-02-11 14:26:38 +000094 return "P";
Chris Wilson05394f32010-11-08 19:18:58 +000095 else if (obj->pin_count > 0)
Chris Wilsona6172a82009-02-11 14:26:38 +000096 return "p";
97 else
98 return " ";
99}
100
Chris Wilson05394f32010-11-08 19:18:58 +0000101static const char *get_tiling_flag(struct drm_i915_gem_object *obj)
Chris Wilsona6172a82009-02-11 14:26:38 +0000102{
Akshay Joshi0206e352011-08-16 15:34:10 -0400103 switch (obj->tiling_mode) {
104 default:
105 case I915_TILING_NONE: return " ";
106 case I915_TILING_X: return "X";
107 case I915_TILING_Y: return "Y";
108 }
Chris Wilsona6172a82009-02-11 14:26:38 +0000109}
110
Chris Wilson93dfb402011-03-29 16:59:50 -0700111static const char *cache_level_str(int type)
Chris Wilson08c18322011-01-10 00:00:24 +0000112{
113 switch (type) {
Chris Wilson93dfb402011-03-29 16:59:50 -0700114 case I915_CACHE_NONE: return " uncached";
115 case I915_CACHE_LLC: return " snooped (LLC)";
116 case I915_CACHE_LLC_MLC: return " snooped (LLC+MLC)";
Chris Wilson08c18322011-01-10 00:00:24 +0000117 default: return "";
118 }
119}
120
Chris Wilson37811fc2010-08-25 22:45:57 +0100121static void
122describe_obj(struct seq_file *m, struct drm_i915_gem_object *obj)
123{
Eric Anholta05a5862011-12-20 08:54:15 -0800124 seq_printf(m, "%p: %s%s %8zdKiB %04x %04x %d %d%s%s%s",
Chris Wilson37811fc2010-08-25 22:45:57 +0100125 &obj->base,
126 get_pin_flag(obj),
127 get_tiling_flag(obj),
Eric Anholta05a5862011-12-20 08:54:15 -0800128 obj->base.size / 1024,
Chris Wilson37811fc2010-08-25 22:45:57 +0100129 obj->base.read_domains,
130 obj->base.write_domain,
131 obj->last_rendering_seqno,
Chris Wilsoncaea7472010-11-12 13:53:37 +0000132 obj->last_fenced_seqno,
Chris Wilson93dfb402011-03-29 16:59:50 -0700133 cache_level_str(obj->cache_level),
Chris Wilson37811fc2010-08-25 22:45:57 +0100134 obj->dirty ? " dirty" : "",
135 obj->madv == I915_MADV_DONTNEED ? " purgeable" : "");
136 if (obj->base.name)
137 seq_printf(m, " (name: %d)", obj->base.name);
138 if (obj->fence_reg != I915_FENCE_REG_NONE)
139 seq_printf(m, " (fence: %d)", obj->fence_reg);
140 if (obj->gtt_space != NULL)
Chris Wilsona00b10c2010-09-24 21:15:47 +0100141 seq_printf(m, " (gtt offset: %08x, size: %08x)",
142 obj->gtt_offset, (unsigned int)obj->gtt_space->size);
Chris Wilson6299f992010-11-24 12:23:44 +0000143 if (obj->pin_mappable || obj->fault_mappable) {
144 char s[3], *t = s;
145 if (obj->pin_mappable)
146 *t++ = 'p';
147 if (obj->fault_mappable)
148 *t++ = 'f';
149 *t = '\0';
150 seq_printf(m, " (%s mappable)", s);
151 }
Chris Wilson69dc4982010-10-19 10:36:51 +0100152 if (obj->ring != NULL)
153 seq_printf(m, " (%s)", obj->ring->name);
Chris Wilson37811fc2010-08-25 22:45:57 +0100154}
155
Ben Gamari433e12f2009-02-17 20:08:51 -0500156static int i915_gem_object_list_info(struct seq_file *m, void *data)
Ben Gamari20172632009-02-17 20:08:50 -0500157{
158 struct drm_info_node *node = (struct drm_info_node *) m->private;
Ben Gamari433e12f2009-02-17 20:08:51 -0500159 uintptr_t list = (uintptr_t) node->info_ent->data;
160 struct list_head *head;
Ben Gamari20172632009-02-17 20:08:50 -0500161 struct drm_device *dev = node->minor->dev;
162 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +0000163 struct drm_i915_gem_object *obj;
Chris Wilson8f2480f2010-09-26 11:44:19 +0100164 size_t total_obj_size, total_gtt_size;
165 int count, ret;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100166
167 ret = mutex_lock_interruptible(&dev->struct_mutex);
168 if (ret)
169 return ret;
Ben Gamari20172632009-02-17 20:08:50 -0500170
Ben Gamari433e12f2009-02-17 20:08:51 -0500171 switch (list) {
172 case ACTIVE_LIST:
173 seq_printf(m, "Active:\n");
Chris Wilson69dc4982010-10-19 10:36:51 +0100174 head = &dev_priv->mm.active_list;
Ben Gamari433e12f2009-02-17 20:08:51 -0500175 break;
176 case INACTIVE_LIST:
Ben Gamaria17458f2009-07-01 15:01:36 -0400177 seq_printf(m, "Inactive:\n");
Ben Gamari433e12f2009-02-17 20:08:51 -0500178 head = &dev_priv->mm.inactive_list;
179 break;
180 case FLUSHING_LIST:
181 seq_printf(m, "Flushing:\n");
182 head = &dev_priv->mm.flushing_list;
183 break;
184 default:
Chris Wilsonde227ef2010-07-03 07:58:38 +0100185 mutex_unlock(&dev->struct_mutex);
186 return -EINVAL;
Ben Gamari433e12f2009-02-17 20:08:51 -0500187 }
188
Chris Wilson8f2480f2010-09-26 11:44:19 +0100189 total_obj_size = total_gtt_size = count = 0;
Chris Wilson05394f32010-11-08 19:18:58 +0000190 list_for_each_entry(obj, head, mm_list) {
Chris Wilson37811fc2010-08-25 22:45:57 +0100191 seq_printf(m, " ");
Chris Wilson05394f32010-11-08 19:18:58 +0000192 describe_obj(m, obj);
Eric Anholtf4ceda82009-02-17 23:53:41 -0800193 seq_printf(m, "\n");
Chris Wilson05394f32010-11-08 19:18:58 +0000194 total_obj_size += obj->base.size;
195 total_gtt_size += obj->gtt_space->size;
Chris Wilson8f2480f2010-09-26 11:44:19 +0100196 count++;
Ben Gamari20172632009-02-17 20:08:50 -0500197 }
Chris Wilsonde227ef2010-07-03 07:58:38 +0100198 mutex_unlock(&dev->struct_mutex);
Carl Worth5e118f42009-03-20 11:54:25 -0700199
Chris Wilson8f2480f2010-09-26 11:44:19 +0100200 seq_printf(m, "Total %d objects, %zu bytes, %zu GTT size\n",
201 count, total_obj_size, total_gtt_size);
Ben Gamari20172632009-02-17 20:08:50 -0500202 return 0;
203}
204
Chris Wilson6299f992010-11-24 12:23:44 +0000205#define count_objects(list, member) do { \
206 list_for_each_entry(obj, list, member) { \
207 size += obj->gtt_space->size; \
208 ++count; \
209 if (obj->map_and_fenceable) { \
210 mappable_size += obj->gtt_space->size; \
211 ++mappable_count; \
212 } \
213 } \
Akshay Joshi0206e352011-08-16 15:34:10 -0400214} while (0)
Chris Wilson6299f992010-11-24 12:23:44 +0000215
Chris Wilson73aa8082010-09-30 11:46:12 +0100216static int i915_gem_object_info(struct seq_file *m, void* data)
217{
218 struct drm_info_node *node = (struct drm_info_node *) m->private;
219 struct drm_device *dev = node->minor->dev;
220 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson6299f992010-11-24 12:23:44 +0000221 u32 count, mappable_count;
222 size_t size, mappable_size;
223 struct drm_i915_gem_object *obj;
Chris Wilson73aa8082010-09-30 11:46:12 +0100224 int ret;
225
226 ret = mutex_lock_interruptible(&dev->struct_mutex);
227 if (ret)
228 return ret;
229
Chris Wilson6299f992010-11-24 12:23:44 +0000230 seq_printf(m, "%u objects, %zu bytes\n",
231 dev_priv->mm.object_count,
232 dev_priv->mm.object_memory);
233
234 size = count = mappable_size = mappable_count = 0;
235 count_objects(&dev_priv->mm.gtt_list, gtt_list);
236 seq_printf(m, "%u [%u] objects, %zu [%zu] bytes in gtt\n",
237 count, mappable_count, size, mappable_size);
238
239 size = count = mappable_size = mappable_count = 0;
240 count_objects(&dev_priv->mm.active_list, mm_list);
241 count_objects(&dev_priv->mm.flushing_list, mm_list);
242 seq_printf(m, " %u [%u] active objects, %zu [%zu] bytes\n",
243 count, mappable_count, size, mappable_size);
244
245 size = count = mappable_size = mappable_count = 0;
Chris Wilson6299f992010-11-24 12:23:44 +0000246 count_objects(&dev_priv->mm.inactive_list, mm_list);
247 seq_printf(m, " %u [%u] inactive objects, %zu [%zu] bytes\n",
248 count, mappable_count, size, mappable_size);
249
250 size = count = mappable_size = mappable_count = 0;
Chris Wilson6299f992010-11-24 12:23:44 +0000251 list_for_each_entry(obj, &dev_priv->mm.gtt_list, gtt_list) {
252 if (obj->fault_mappable) {
253 size += obj->gtt_space->size;
254 ++count;
255 }
256 if (obj->pin_mappable) {
257 mappable_size += obj->gtt_space->size;
258 ++mappable_count;
259 }
260 }
261 seq_printf(m, "%u pinned mappable objects, %zu bytes\n",
262 mappable_count, mappable_size);
263 seq_printf(m, "%u fault mappable objects, %zu bytes\n",
264 count, size);
265
266 seq_printf(m, "%zu [%zu] gtt total\n",
267 dev_priv->mm.gtt_total, dev_priv->mm.mappable_gtt_total);
Chris Wilson73aa8082010-09-30 11:46:12 +0100268
269 mutex_unlock(&dev->struct_mutex);
270
271 return 0;
272}
273
Chris Wilson08c18322011-01-10 00:00:24 +0000274static int i915_gem_gtt_info(struct seq_file *m, void* data)
275{
276 struct drm_info_node *node = (struct drm_info_node *) m->private;
277 struct drm_device *dev = node->minor->dev;
Chris Wilson1b502472012-04-24 15:47:30 +0100278 uintptr_t list = (uintptr_t) node->info_ent->data;
Chris Wilson08c18322011-01-10 00:00:24 +0000279 struct drm_i915_private *dev_priv = dev->dev_private;
280 struct drm_i915_gem_object *obj;
281 size_t total_obj_size, total_gtt_size;
282 int count, ret;
283
284 ret = mutex_lock_interruptible(&dev->struct_mutex);
285 if (ret)
286 return ret;
287
288 total_obj_size = total_gtt_size = count = 0;
289 list_for_each_entry(obj, &dev_priv->mm.gtt_list, gtt_list) {
Chris Wilson1b502472012-04-24 15:47:30 +0100290 if (list == PINNED_LIST && obj->pin_count == 0)
291 continue;
292
Chris Wilson08c18322011-01-10 00:00:24 +0000293 seq_printf(m, " ");
294 describe_obj(m, obj);
295 seq_printf(m, "\n");
296 total_obj_size += obj->base.size;
297 total_gtt_size += obj->gtt_space->size;
298 count++;
299 }
300
301 mutex_unlock(&dev->struct_mutex);
302
303 seq_printf(m, "Total %d objects, %zu bytes, %zu GTT size\n",
304 count, total_obj_size, total_gtt_size);
305
306 return 0;
307}
308
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100309static int i915_gem_pageflip_info(struct seq_file *m, void *data)
310{
311 struct drm_info_node *node = (struct drm_info_node *) m->private;
312 struct drm_device *dev = node->minor->dev;
313 unsigned long flags;
314 struct intel_crtc *crtc;
315
316 list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800317 const char pipe = pipe_name(crtc->pipe);
318 const char plane = plane_name(crtc->plane);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100319 struct intel_unpin_work *work;
320
321 spin_lock_irqsave(&dev->event_lock, flags);
322 work = crtc->unpin_work;
323 if (work == NULL) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800324 seq_printf(m, "No flip due on pipe %c (plane %c)\n",
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100325 pipe, plane);
326 } else {
327 if (!work->pending) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800328 seq_printf(m, "Flip queued on pipe %c (plane %c)\n",
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100329 pipe, plane);
330 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800331 seq_printf(m, "Flip pending (waiting for vsync) on pipe %c (plane %c)\n",
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100332 pipe, plane);
333 }
334 if (work->enable_stall_check)
335 seq_printf(m, "Stall check enabled, ");
336 else
337 seq_printf(m, "Stall check waiting for page flip ioctl, ");
338 seq_printf(m, "%d prepares\n", work->pending);
339
340 if (work->old_fb_obj) {
Chris Wilson05394f32010-11-08 19:18:58 +0000341 struct drm_i915_gem_object *obj = work->old_fb_obj;
342 if (obj)
343 seq_printf(m, "Old framebuffer gtt_offset 0x%08x\n", obj->gtt_offset);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100344 }
345 if (work->pending_flip_obj) {
Chris Wilson05394f32010-11-08 19:18:58 +0000346 struct drm_i915_gem_object *obj = work->pending_flip_obj;
347 if (obj)
348 seq_printf(m, "New framebuffer gtt_offset 0x%08x\n", obj->gtt_offset);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +0100349 }
350 }
351 spin_unlock_irqrestore(&dev->event_lock, flags);
352 }
353
354 return 0;
355}
356
Ben Gamari20172632009-02-17 20:08:50 -0500357static int i915_gem_request_info(struct seq_file *m, void *data)
358{
359 struct drm_info_node *node = (struct drm_info_node *) m->private;
360 struct drm_device *dev = node->minor->dev;
361 drm_i915_private_t *dev_priv = dev->dev_private;
362 struct drm_i915_gem_request *gem_request;
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100363 int ret, count;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100364
365 ret = mutex_lock_interruptible(&dev->struct_mutex);
366 if (ret)
367 return ret;
Ben Gamari20172632009-02-17 20:08:50 -0500368
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100369 count = 0;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000370 if (!list_empty(&dev_priv->ring[RCS].request_list)) {
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100371 seq_printf(m, "Render requests:\n");
372 list_for_each_entry(gem_request,
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000373 &dev_priv->ring[RCS].request_list,
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100374 list) {
375 seq_printf(m, " %d @ %d\n",
376 gem_request->seqno,
377 (int) (jiffies - gem_request->emitted_jiffies));
378 }
379 count++;
380 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000381 if (!list_empty(&dev_priv->ring[VCS].request_list)) {
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100382 seq_printf(m, "BSD requests:\n");
383 list_for_each_entry(gem_request,
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000384 &dev_priv->ring[VCS].request_list,
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100385 list) {
386 seq_printf(m, " %d @ %d\n",
387 gem_request->seqno,
388 (int) (jiffies - gem_request->emitted_jiffies));
389 }
390 count++;
391 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000392 if (!list_empty(&dev_priv->ring[BCS].request_list)) {
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100393 seq_printf(m, "BLT requests:\n");
394 list_for_each_entry(gem_request,
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000395 &dev_priv->ring[BCS].request_list,
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100396 list) {
397 seq_printf(m, " %d @ %d\n",
398 gem_request->seqno,
399 (int) (jiffies - gem_request->emitted_jiffies));
400 }
401 count++;
Ben Gamari20172632009-02-17 20:08:50 -0500402 }
Chris Wilsonde227ef2010-07-03 07:58:38 +0100403 mutex_unlock(&dev->struct_mutex);
404
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100405 if (count == 0)
406 seq_printf(m, "No requests\n");
407
Ben Gamari20172632009-02-17 20:08:50 -0500408 return 0;
409}
410
Chris Wilsonb2223492010-10-27 15:27:33 +0100411static void i915_ring_seqno_info(struct seq_file *m,
412 struct intel_ring_buffer *ring)
413{
414 if (ring->get_seqno) {
415 seq_printf(m, "Current sequence (%s): %d\n",
416 ring->name, ring->get_seqno(ring));
417 seq_printf(m, "Waiter sequence (%s): %d\n",
418 ring->name, ring->waiting_seqno);
419 seq_printf(m, "IRQ sequence (%s): %d\n",
420 ring->name, ring->irq_seqno);
421 }
422}
423
Ben Gamari20172632009-02-17 20:08:50 -0500424static int i915_gem_seqno_info(struct seq_file *m, void *data)
425{
426 struct drm_info_node *node = (struct drm_info_node *) m->private;
427 struct drm_device *dev = node->minor->dev;
428 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000429 int ret, i;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100430
431 ret = mutex_lock_interruptible(&dev->struct_mutex);
432 if (ret)
433 return ret;
Ben Gamari20172632009-02-17 20:08:50 -0500434
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000435 for (i = 0; i < I915_NUM_RINGS; i++)
436 i915_ring_seqno_info(m, &dev_priv->ring[i]);
Chris Wilsonde227ef2010-07-03 07:58:38 +0100437
438 mutex_unlock(&dev->struct_mutex);
439
Ben Gamari20172632009-02-17 20:08:50 -0500440 return 0;
441}
442
443
444static int i915_interrupt_info(struct seq_file *m, void *data)
445{
446 struct drm_info_node *node = (struct drm_info_node *) m->private;
447 struct drm_device *dev = node->minor->dev;
448 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800449 int ret, i, pipe;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100450
451 ret = mutex_lock_interruptible(&dev->struct_mutex);
452 if (ret)
453 return ret;
Ben Gamari20172632009-02-17 20:08:50 -0500454
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700455 if (IS_VALLEYVIEW(dev)) {
456 seq_printf(m, "Display IER:\t%08x\n",
457 I915_READ(VLV_IER));
458 seq_printf(m, "Display IIR:\t%08x\n",
459 I915_READ(VLV_IIR));
460 seq_printf(m, "Display IIR_RW:\t%08x\n",
461 I915_READ(VLV_IIR_RW));
462 seq_printf(m, "Display IMR:\t%08x\n",
463 I915_READ(VLV_IMR));
464 for_each_pipe(pipe)
465 seq_printf(m, "Pipe %c stat:\t%08x\n",
466 pipe_name(pipe),
467 I915_READ(PIPESTAT(pipe)));
468
469 seq_printf(m, "Master IER:\t%08x\n",
470 I915_READ(VLV_MASTER_IER));
471
472 seq_printf(m, "Render IER:\t%08x\n",
473 I915_READ(GTIER));
474 seq_printf(m, "Render IIR:\t%08x\n",
475 I915_READ(GTIIR));
476 seq_printf(m, "Render IMR:\t%08x\n",
477 I915_READ(GTIMR));
478
479 seq_printf(m, "PM IER:\t\t%08x\n",
480 I915_READ(GEN6_PMIER));
481 seq_printf(m, "PM IIR:\t\t%08x\n",
482 I915_READ(GEN6_PMIIR));
483 seq_printf(m, "PM IMR:\t\t%08x\n",
484 I915_READ(GEN6_PMIMR));
485
486 seq_printf(m, "Port hotplug:\t%08x\n",
487 I915_READ(PORT_HOTPLUG_EN));
488 seq_printf(m, "DPFLIPSTAT:\t%08x\n",
489 I915_READ(VLV_DPFLIPSTAT));
490 seq_printf(m, "DPINVGTT:\t%08x\n",
491 I915_READ(DPINVGTT));
492
493 } else if (!HAS_PCH_SPLIT(dev)) {
Zhenyu Wang5f6a1692009-08-10 21:37:24 +0800494 seq_printf(m, "Interrupt enable: %08x\n",
495 I915_READ(IER));
496 seq_printf(m, "Interrupt identity: %08x\n",
497 I915_READ(IIR));
498 seq_printf(m, "Interrupt mask: %08x\n",
499 I915_READ(IMR));
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800500 for_each_pipe(pipe)
501 seq_printf(m, "Pipe %c stat: %08x\n",
502 pipe_name(pipe),
503 I915_READ(PIPESTAT(pipe)));
Zhenyu Wang5f6a1692009-08-10 21:37:24 +0800504 } else {
505 seq_printf(m, "North Display Interrupt enable: %08x\n",
506 I915_READ(DEIER));
507 seq_printf(m, "North Display Interrupt identity: %08x\n",
508 I915_READ(DEIIR));
509 seq_printf(m, "North Display Interrupt mask: %08x\n",
510 I915_READ(DEIMR));
511 seq_printf(m, "South Display Interrupt enable: %08x\n",
512 I915_READ(SDEIER));
513 seq_printf(m, "South Display Interrupt identity: %08x\n",
514 I915_READ(SDEIIR));
515 seq_printf(m, "South Display Interrupt mask: %08x\n",
516 I915_READ(SDEIMR));
517 seq_printf(m, "Graphics Interrupt enable: %08x\n",
518 I915_READ(GTIER));
519 seq_printf(m, "Graphics Interrupt identity: %08x\n",
520 I915_READ(GTIIR));
521 seq_printf(m, "Graphics Interrupt mask: %08x\n",
522 I915_READ(GTIMR));
523 }
Ben Gamari20172632009-02-17 20:08:50 -0500524 seq_printf(m, "Interrupts received: %d\n",
525 atomic_read(&dev_priv->irq_received));
Chris Wilson9862e602011-01-04 22:22:17 +0000526 for (i = 0; i < I915_NUM_RINGS; i++) {
Jesse Barnesda64c6f2011-08-09 09:17:46 -0700527 if (IS_GEN6(dev) || IS_GEN7(dev)) {
Chris Wilson9862e602011-01-04 22:22:17 +0000528 seq_printf(m, "Graphics Interrupt mask (%s): %08x\n",
529 dev_priv->ring[i].name,
530 I915_READ_IMR(&dev_priv->ring[i]));
531 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000532 i915_ring_seqno_info(m, &dev_priv->ring[i]);
Chris Wilson9862e602011-01-04 22:22:17 +0000533 }
Chris Wilsonde227ef2010-07-03 07:58:38 +0100534 mutex_unlock(&dev->struct_mutex);
535
Ben Gamari20172632009-02-17 20:08:50 -0500536 return 0;
537}
538
Chris Wilsona6172a82009-02-11 14:26:38 +0000539static int i915_gem_fence_regs_info(struct seq_file *m, void *data)
540{
541 struct drm_info_node *node = (struct drm_info_node *) m->private;
542 struct drm_device *dev = node->minor->dev;
543 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonde227ef2010-07-03 07:58:38 +0100544 int i, ret;
545
546 ret = mutex_lock_interruptible(&dev->struct_mutex);
547 if (ret)
548 return ret;
Chris Wilsona6172a82009-02-11 14:26:38 +0000549
550 seq_printf(m, "Reserved fences = %d\n", dev_priv->fence_reg_start);
551 seq_printf(m, "Total fences = %d\n", dev_priv->num_fence_regs);
552 for (i = 0; i < dev_priv->num_fence_regs; i++) {
Chris Wilson05394f32010-11-08 19:18:58 +0000553 struct drm_i915_gem_object *obj = dev_priv->fence_regs[i].obj;
Chris Wilsona6172a82009-02-11 14:26:38 +0000554
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100555 seq_printf(m, "Fenced object[%2d] = ", i);
556 if (obj == NULL)
557 seq_printf(m, "unused");
558 else
Chris Wilson05394f32010-11-08 19:18:58 +0000559 describe_obj(m, obj);
Chris Wilsonc2c347a92010-10-27 15:11:53 +0100560 seq_printf(m, "\n");
Chris Wilsona6172a82009-02-11 14:26:38 +0000561 }
562
Chris Wilson05394f32010-11-08 19:18:58 +0000563 mutex_unlock(&dev->struct_mutex);
Chris Wilsona6172a82009-02-11 14:26:38 +0000564 return 0;
565}
566
Ben Gamari20172632009-02-17 20:08:50 -0500567static int i915_hws_info(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 Wilson4066c0a2010-10-29 21:00:54 +0100572 struct intel_ring_buffer *ring;
Chris Wilson311bd682011-01-13 19:06:50 +0000573 const volatile u32 __iomem *hws;
Chris Wilson4066c0a2010-10-29 21:00:54 +0100574 int i;
Ben Gamari20172632009-02-17 20:08:50 -0500575
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000576 ring = &dev_priv->ring[(uintptr_t)node->info_ent->data];
Chris Wilson311bd682011-01-13 19:06:50 +0000577 hws = (volatile u32 __iomem *)ring->status_page.page_addr;
Ben Gamari20172632009-02-17 20:08:50 -0500578 if (hws == NULL)
579 return 0;
580
581 for (i = 0; i < 4096 / sizeof(u32) / 4; i += 4) {
582 seq_printf(m, "0x%08x: 0x%08x 0x%08x 0x%08x 0x%08x\n",
583 i * 4,
584 hws[i], hws[i + 1], hws[i + 2], hws[i + 3]);
585 }
586 return 0;
587}
588
Chris Wilsone5c65262010-11-01 11:35:28 +0000589static const char *ring_str(int ring)
590{
591 switch (ring) {
Daniel Vetter96154f22011-12-14 13:57:00 +0100592 case RCS: return "render";
593 case VCS: return "bsd";
594 case BCS: return "blt";
Chris Wilsone5c65262010-11-01 11:35:28 +0000595 default: return "";
596 }
597}
598
Chris Wilson9df30792010-02-18 10:24:56 +0000599static const char *pin_flag(int pinned)
600{
601 if (pinned > 0)
602 return " P";
603 else if (pinned < 0)
604 return " p";
605 else
606 return "";
607}
608
609static const char *tiling_flag(int tiling)
610{
611 switch (tiling) {
612 default:
613 case I915_TILING_NONE: return "";
614 case I915_TILING_X: return " X";
615 case I915_TILING_Y: return " Y";
616 }
617}
618
619static const char *dirty_flag(int dirty)
620{
621 return dirty ? " dirty" : "";
622}
623
624static const char *purgeable_flag(int purgeable)
625{
626 return purgeable ? " purgeable" : "";
627}
628
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000629static void print_error_buffers(struct seq_file *m,
630 const char *name,
631 struct drm_i915_error_buffer *err,
632 int count)
633{
634 seq_printf(m, "%s [%d]:\n", name, count);
635
636 while (count--) {
Daniel Vetter96154f22011-12-14 13:57:00 +0100637 seq_printf(m, " %08x %8u %04x %04x %08x%s%s%s%s%s%s%s",
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000638 err->gtt_offset,
639 err->size,
640 err->read_domains,
641 err->write_domain,
642 err->seqno,
643 pin_flag(err->pinned),
644 tiling_flag(err->tiling),
645 dirty_flag(err->dirty),
646 purgeable_flag(err->purgeable),
Daniel Vetter96154f22011-12-14 13:57:00 +0100647 err->ring != -1 ? " " : "",
Chris Wilsona779e5a2011-01-09 21:07:49 +0000648 ring_str(err->ring),
Chris Wilson93dfb402011-03-29 16:59:50 -0700649 cache_level_str(err->cache_level));
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000650
651 if (err->name)
652 seq_printf(m, " (name: %d)", err->name);
653 if (err->fence_reg != I915_FENCE_REG_NONE)
654 seq_printf(m, " (fence: %d)", err->fence_reg);
655
656 seq_printf(m, "\n");
657 err++;
658 }
659}
660
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100661static void i915_ring_error_state(struct seq_file *m,
662 struct drm_device *dev,
663 struct drm_i915_error_state *error,
664 unsigned ring)
665{
Ben Widawskyec34a012012-04-03 23:03:00 -0700666 BUG_ON(ring >= I915_NUM_RINGS); /* shut up confused gcc */
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100667 seq_printf(m, "%s command stream:\n", ring_str(ring));
Daniel Vetterc1cd90e2011-12-14 13:57:02 +0100668 seq_printf(m, " HEAD: 0x%08x\n", error->head[ring]);
669 seq_printf(m, " TAIL: 0x%08x\n", error->tail[ring]);
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100670 seq_printf(m, " ACTHD: 0x%08x\n", error->acthd[ring]);
671 seq_printf(m, " IPEIR: 0x%08x\n", error->ipeir[ring]);
672 seq_printf(m, " IPEHR: 0x%08x\n", error->ipehr[ring]);
673 seq_printf(m, " INSTDONE: 0x%08x\n", error->instdone[ring]);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +0100674 if (ring == RCS && INTEL_INFO(dev)->gen >= 4) {
675 seq_printf(m, " INSTDONE1: 0x%08x\n", error->instdone1);
676 seq_printf(m, " BBADDR: 0x%08llx\n", error->bbaddr);
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100677 }
Daniel Vetterc1cd90e2011-12-14 13:57:02 +0100678 if (INTEL_INFO(dev)->gen >= 4)
679 seq_printf(m, " INSTPS: 0x%08x\n", error->instps[ring]);
680 seq_printf(m, " INSTPM: 0x%08x\n", error->instpm[ring]);
Daniel Vetter9d2f41f2012-04-02 21:41:45 +0200681 seq_printf(m, " FADDR: 0x%08x\n", error->faddr[ring]);
Daniel Vetter33f3f512011-12-14 13:57:39 +0100682 if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetter33f3f512011-12-14 13:57:39 +0100683 seq_printf(m, " FAULT_REG: 0x%08x\n", error->fault_reg[ring]);
Daniel Vetter7e3b8732012-02-01 22:26:45 +0100684 seq_printf(m, " SYNC_0: 0x%08x\n",
685 error->semaphore_mboxes[ring][0]);
686 seq_printf(m, " SYNC_1: 0x%08x\n",
687 error->semaphore_mboxes[ring][1]);
Daniel Vetter33f3f512011-12-14 13:57:39 +0100688 }
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100689 seq_printf(m, " seqno: 0x%08x\n", error->seqno[ring]);
Daniel Vetter7e3b8732012-02-01 22:26:45 +0100690 seq_printf(m, " ring->head: 0x%08x\n", error->cpu_ring_head[ring]);
691 seq_printf(m, " ring->tail: 0x%08x\n", error->cpu_ring_tail[ring]);
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100692}
693
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700694static int i915_error_state(struct seq_file *m, void *unused)
695{
696 struct drm_info_node *node = (struct drm_info_node *) m->private;
697 struct drm_device *dev = node->minor->dev;
698 drm_i915_private_t *dev_priv = dev->dev_private;
699 struct drm_i915_error_state *error;
700 unsigned long flags;
Chris Wilson52d39a22012-02-15 11:25:37 +0000701 int i, j, page, offset, elt;
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700702
703 spin_lock_irqsave(&dev_priv->error_lock, flags);
704 if (!dev_priv->first_error) {
705 seq_printf(m, "no error state collected\n");
706 goto out;
707 }
708
709 error = dev_priv->first_error;
710
Jesse Barnes8a905232009-07-11 16:48:03 -0400711 seq_printf(m, "Time: %ld s %ld us\n", error->time.tv_sec,
712 error->time.tv_usec);
Chris Wilson9df30792010-02-18 10:24:56 +0000713 seq_printf(m, "PCI ID: 0x%04x\n", dev->pci_device);
Chris Wilson1d8f38f2010-10-29 19:00:51 +0100714 seq_printf(m, "EIR: 0x%08x\n", error->eir);
715 seq_printf(m, "PGTBL_ER: 0x%08x\n", error->pgtbl_er);
Chris Wilson9df30792010-02-18 10:24:56 +0000716
Daniel Vetterbf3301a2011-05-12 22:17:12 +0100717 for (i = 0; i < dev_priv->num_fence_regs; i++)
Chris Wilson748ebc62010-10-24 10:28:47 +0100718 seq_printf(m, " fence[%d] = %08llx\n", i, error->fence[i]);
719
Daniel Vetter33f3f512011-12-14 13:57:39 +0100720 if (INTEL_INFO(dev)->gen >= 6) {
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100721 seq_printf(m, "ERROR: 0x%08x\n", error->error);
Daniel Vetter33f3f512011-12-14 13:57:39 +0100722 seq_printf(m, "DONE_REG: 0x%08x\n", error->done_reg);
723 }
Daniel Vetterd27b1e02011-12-14 13:57:01 +0100724
725 i915_ring_error_state(m, dev, error, RCS);
726 if (HAS_BLT(dev))
727 i915_ring_error_state(m, dev, error, BCS);
728 if (HAS_BSD(dev))
729 i915_ring_error_state(m, dev, error, VCS);
730
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000731 if (error->active_bo)
732 print_error_buffers(m, "Active",
733 error->active_bo,
734 error->active_bo_count);
Chris Wilson9df30792010-02-18 10:24:56 +0000735
Chris Wilsonc724e8a2010-11-22 08:07:02 +0000736 if (error->pinned_bo)
737 print_error_buffers(m, "Pinned",
738 error->pinned_bo,
739 error->pinned_bo_count);
Chris Wilson9df30792010-02-18 10:24:56 +0000740
Chris Wilson52d39a22012-02-15 11:25:37 +0000741 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
742 struct drm_i915_error_object *obj;
Chris Wilson9df30792010-02-18 10:24:56 +0000743
Chris Wilson52d39a22012-02-15 11:25:37 +0000744 if ((obj = error->ring[i].batchbuffer)) {
Chris Wilsonbcfb2e22011-01-07 21:06:07 +0000745 seq_printf(m, "%s --- gtt_offset = 0x%08x\n",
746 dev_priv->ring[i].name,
747 obj->gtt_offset);
Chris Wilson9df30792010-02-18 10:24:56 +0000748 offset = 0;
749 for (page = 0; page < obj->page_count; page++) {
750 for (elt = 0; elt < PAGE_SIZE/4; elt++) {
751 seq_printf(m, "%08x : %08x\n", offset, obj->pages[page][elt]);
752 offset += 4;
753 }
754 }
755 }
Chris Wilson9df30792010-02-18 10:24:56 +0000756
Chris Wilson52d39a22012-02-15 11:25:37 +0000757 if (error->ring[i].num_requests) {
758 seq_printf(m, "%s --- %d requests\n",
759 dev_priv->ring[i].name,
760 error->ring[i].num_requests);
761 for (j = 0; j < error->ring[i].num_requests; j++) {
Chris Wilsonee4f42b2012-02-15 11:25:38 +0000762 seq_printf(m, " seqno 0x%08x, emitted %ld, tail 0x%08x\n",
Chris Wilson52d39a22012-02-15 11:25:37 +0000763 error->ring[i].requests[j].seqno,
Chris Wilsonee4f42b2012-02-15 11:25:38 +0000764 error->ring[i].requests[j].jiffies,
765 error->ring[i].requests[j].tail);
Chris Wilson52d39a22012-02-15 11:25:37 +0000766 }
767 }
768
769 if ((obj = error->ring[i].ringbuffer)) {
Chris Wilsone2f973d2011-01-27 19:15:11 +0000770 seq_printf(m, "%s --- ringbuffer = 0x%08x\n",
771 dev_priv->ring[i].name,
772 obj->gtt_offset);
773 offset = 0;
774 for (page = 0; page < obj->page_count; page++) {
775 for (elt = 0; elt < PAGE_SIZE/4; elt++) {
776 seq_printf(m, "%08x : %08x\n",
777 offset,
778 obj->pages[page][elt]);
779 offset += 4;
780 }
Chris Wilson9df30792010-02-18 10:24:56 +0000781 }
782 }
783 }
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700784
Chris Wilson6ef3d422010-08-04 20:26:07 +0100785 if (error->overlay)
786 intel_overlay_print_error_state(m, error->overlay);
787
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +0000788 if (error->display)
789 intel_display_print_error_state(m, dev, error->display);
790
Jesse Barnes63eeaf32009-06-18 16:56:52 -0700791out:
792 spin_unlock_irqrestore(&dev_priv->error_lock, flags);
793
794 return 0;
795}
Ben Gamari6911a9b2009-04-02 11:24:54 -0700796
Jesse Barnesf97108d2010-01-29 11:27:07 -0800797static int i915_rstdby_delays(struct seq_file *m, void *unused)
798{
799 struct drm_info_node *node = (struct drm_info_node *) m->private;
800 struct drm_device *dev = node->minor->dev;
801 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky616fdb52011-10-05 11:44:54 -0700802 u16 crstanddelay;
803 int ret;
804
805 ret = mutex_lock_interruptible(&dev->struct_mutex);
806 if (ret)
807 return ret;
808
809 crstanddelay = I915_READ16(CRSTANDVID);
810
811 mutex_unlock(&dev->struct_mutex);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800812
813 seq_printf(m, "w/ctx: %d, w/o ctx: %d\n", (crstanddelay >> 8) & 0x3f, (crstanddelay & 0x3f));
814
815 return 0;
816}
817
818static int i915_cur_delayinfo(struct seq_file *m, void *unused)
819{
820 struct drm_info_node *node = (struct drm_info_node *) m->private;
821 struct drm_device *dev = node->minor->dev;
822 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawskyd1ebd8162011-04-25 20:11:50 +0100823 int ret;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800824
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800825 if (IS_GEN5(dev)) {
826 u16 rgvswctl = I915_READ16(MEMSWCTL);
827 u16 rgvstat = I915_READ16(MEMSTAT_ILK);
828
829 seq_printf(m, "Requested P-state: %d\n", (rgvswctl >> 8) & 0xf);
830 seq_printf(m, "Requested VID: %d\n", rgvswctl & 0x3f);
831 seq_printf(m, "Current VID: %d\n", (rgvstat & MEMSTAT_VID_MASK) >>
832 MEMSTAT_VID_SHIFT);
833 seq_printf(m, "Current P-state: %d\n",
834 (rgvstat & MEMSTAT_PSTATE_MASK) >> MEMSTAT_PSTATE_SHIFT);
Jesse Barnes1c70c0c2011-06-29 13:34:36 -0700835 } else if (IS_GEN6(dev) || IS_GEN7(dev)) {
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800836 u32 gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS);
837 u32 rp_state_limits = I915_READ(GEN6_RP_STATE_LIMITS);
838 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
Jesse Barnesccab5c82011-01-18 15:49:25 -0800839 u32 rpstat;
840 u32 rpupei, rpcurup, rpprevup;
841 u32 rpdownei, rpcurdown, rpprevdown;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800842 int max_freq;
843
844 /* RPSTAT1 is in the GT power well */
Ben Widawskyd1ebd8162011-04-25 20:11:50 +0100845 ret = mutex_lock_interruptible(&dev->struct_mutex);
846 if (ret)
847 return ret;
848
Ben Widawskyfcca7922011-04-25 11:23:07 -0700849 gen6_gt_force_wake_get(dev_priv);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800850
Jesse Barnesccab5c82011-01-18 15:49:25 -0800851 rpstat = I915_READ(GEN6_RPSTAT1);
852 rpupei = I915_READ(GEN6_RP_CUR_UP_EI);
853 rpcurup = I915_READ(GEN6_RP_CUR_UP);
854 rpprevup = I915_READ(GEN6_RP_PREV_UP);
855 rpdownei = I915_READ(GEN6_RP_CUR_DOWN_EI);
856 rpcurdown = I915_READ(GEN6_RP_CUR_DOWN);
857 rpprevdown = I915_READ(GEN6_RP_PREV_DOWN);
858
Ben Widawskyd1ebd8162011-04-25 20:11:50 +0100859 gen6_gt_force_wake_put(dev_priv);
860 mutex_unlock(&dev->struct_mutex);
861
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800862 seq_printf(m, "GT_PERF_STATUS: 0x%08x\n", gt_perf_status);
Jesse Barnesccab5c82011-01-18 15:49:25 -0800863 seq_printf(m, "RPSTAT1: 0x%08x\n", rpstat);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800864 seq_printf(m, "Render p-state ratio: %d\n",
865 (gt_perf_status & 0xff00) >> 8);
866 seq_printf(m, "Render p-state VID: %d\n",
867 gt_perf_status & 0xff);
868 seq_printf(m, "Render p-state limit: %d\n",
869 rp_state_limits & 0xff);
Jesse Barnesccab5c82011-01-18 15:49:25 -0800870 seq_printf(m, "CAGF: %dMHz\n", ((rpstat & GEN6_CAGF_MASK) >>
Jesse Barnese281fca2011-03-18 10:32:07 -0700871 GEN6_CAGF_SHIFT) * 50);
Jesse Barnesccab5c82011-01-18 15:49:25 -0800872 seq_printf(m, "RP CUR UP EI: %dus\n", rpupei &
873 GEN6_CURICONT_MASK);
874 seq_printf(m, "RP CUR UP: %dus\n", rpcurup &
875 GEN6_CURBSYTAVG_MASK);
876 seq_printf(m, "RP PREV UP: %dus\n", rpprevup &
877 GEN6_CURBSYTAVG_MASK);
878 seq_printf(m, "RP CUR DOWN EI: %dus\n", rpdownei &
879 GEN6_CURIAVG_MASK);
880 seq_printf(m, "RP CUR DOWN: %dus\n", rpcurdown &
881 GEN6_CURBSYTAVG_MASK);
882 seq_printf(m, "RP PREV DOWN: %dus\n", rpprevdown &
883 GEN6_CURBSYTAVG_MASK);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800884
885 max_freq = (rp_state_cap & 0xff0000) >> 16;
886 seq_printf(m, "Lowest (RPN) frequency: %dMHz\n",
Jesse Barnese281fca2011-03-18 10:32:07 -0700887 max_freq * 50);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800888
889 max_freq = (rp_state_cap & 0xff00) >> 8;
890 seq_printf(m, "Nominal (RP1) frequency: %dMHz\n",
Jesse Barnese281fca2011-03-18 10:32:07 -0700891 max_freq * 50);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800892
893 max_freq = rp_state_cap & 0xff;
894 seq_printf(m, "Max non-overclocked (RP0) frequency: %dMHz\n",
Jesse Barnese281fca2011-03-18 10:32:07 -0700895 max_freq * 50);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800896 } else {
897 seq_printf(m, "no P-state info available\n");
898 }
Jesse Barnesf97108d2010-01-29 11:27:07 -0800899
900 return 0;
901}
902
903static int i915_delayfreq_table(struct seq_file *m, void *unused)
904{
905 struct drm_info_node *node = (struct drm_info_node *) m->private;
906 struct drm_device *dev = node->minor->dev;
907 drm_i915_private_t *dev_priv = dev->dev_private;
908 u32 delayfreq;
Ben Widawsky616fdb52011-10-05 11:44:54 -0700909 int ret, i;
910
911 ret = mutex_lock_interruptible(&dev->struct_mutex);
912 if (ret)
913 return ret;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800914
915 for (i = 0; i < 16; i++) {
916 delayfreq = I915_READ(PXVFREQ_BASE + i * 4);
Jesse Barnes7648fa92010-05-20 14:28:11 -0700917 seq_printf(m, "P%02dVIDFREQ: 0x%08x (VID: %d)\n", i, delayfreq,
918 (delayfreq & PXVFREQ_PX_MASK) >> PXVFREQ_PX_SHIFT);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800919 }
920
Ben Widawsky616fdb52011-10-05 11:44:54 -0700921 mutex_unlock(&dev->struct_mutex);
922
Jesse Barnesf97108d2010-01-29 11:27:07 -0800923 return 0;
924}
925
926static inline int MAP_TO_MV(int map)
927{
928 return 1250 - (map * 25);
929}
930
931static int i915_inttoext_table(struct seq_file *m, void *unused)
932{
933 struct drm_info_node *node = (struct drm_info_node *) m->private;
934 struct drm_device *dev = node->minor->dev;
935 drm_i915_private_t *dev_priv = dev->dev_private;
936 u32 inttoext;
Ben Widawsky616fdb52011-10-05 11:44:54 -0700937 int ret, i;
938
939 ret = mutex_lock_interruptible(&dev->struct_mutex);
940 if (ret)
941 return ret;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800942
943 for (i = 1; i <= 32; i++) {
944 inttoext = I915_READ(INTTOEXT_BASE_ILK + i * 4);
945 seq_printf(m, "INTTOEXT%02d: 0x%08x\n", i, inttoext);
946 }
947
Ben Widawsky616fdb52011-10-05 11:44:54 -0700948 mutex_unlock(&dev->struct_mutex);
949
Jesse Barnesf97108d2010-01-29 11:27:07 -0800950 return 0;
951}
952
Ben Widawsky4d855292011-12-12 19:34:16 -0800953static int ironlake_drpc_info(struct seq_file *m)
Jesse Barnesf97108d2010-01-29 11:27:07 -0800954{
955 struct drm_info_node *node = (struct drm_info_node *) m->private;
956 struct drm_device *dev = node->minor->dev;
957 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky616fdb52011-10-05 11:44:54 -0700958 u32 rgvmodectl, rstdbyctl;
959 u16 crstandvid;
960 int ret;
961
962 ret = mutex_lock_interruptible(&dev->struct_mutex);
963 if (ret)
964 return ret;
965
966 rgvmodectl = I915_READ(MEMMODECTL);
967 rstdbyctl = I915_READ(RSTDBYCTL);
968 crstandvid = I915_READ16(CRSTANDVID);
969
970 mutex_unlock(&dev->struct_mutex);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800971
972 seq_printf(m, "HD boost: %s\n", (rgvmodectl & MEMMODE_BOOST_EN) ?
973 "yes" : "no");
974 seq_printf(m, "Boost freq: %d\n",
975 (rgvmodectl & MEMMODE_BOOST_FREQ_MASK) >>
976 MEMMODE_BOOST_FREQ_SHIFT);
977 seq_printf(m, "HW control enabled: %s\n",
978 rgvmodectl & MEMMODE_HWIDLE_EN ? "yes" : "no");
979 seq_printf(m, "SW control enabled: %s\n",
980 rgvmodectl & MEMMODE_SWMODE_EN ? "yes" : "no");
981 seq_printf(m, "Gated voltage change: %s\n",
982 rgvmodectl & MEMMODE_RCLK_GATE ? "yes" : "no");
983 seq_printf(m, "Starting frequency: P%d\n",
984 (rgvmodectl & MEMMODE_FSTART_MASK) >> MEMMODE_FSTART_SHIFT);
Jesse Barnes7648fa92010-05-20 14:28:11 -0700985 seq_printf(m, "Max P-state: P%d\n",
Jesse Barnesf97108d2010-01-29 11:27:07 -0800986 (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT);
Jesse Barnes7648fa92010-05-20 14:28:11 -0700987 seq_printf(m, "Min P-state: P%d\n", (rgvmodectl & MEMMODE_FMIN_MASK));
988 seq_printf(m, "RS1 VID: %d\n", (crstandvid & 0x3f));
989 seq_printf(m, "RS2 VID: %d\n", ((crstandvid >> 8) & 0x3f));
990 seq_printf(m, "Render standby enabled: %s\n",
991 (rstdbyctl & RCX_SW_EXIT) ? "no" : "yes");
Jesse Barnes88271da2011-01-05 12:01:24 -0800992 seq_printf(m, "Current RS state: ");
993 switch (rstdbyctl & RSX_STATUS_MASK) {
994 case RSX_STATUS_ON:
995 seq_printf(m, "on\n");
996 break;
997 case RSX_STATUS_RC1:
998 seq_printf(m, "RC1\n");
999 break;
1000 case RSX_STATUS_RC1E:
1001 seq_printf(m, "RC1E\n");
1002 break;
1003 case RSX_STATUS_RS1:
1004 seq_printf(m, "RS1\n");
1005 break;
1006 case RSX_STATUS_RS2:
1007 seq_printf(m, "RS2 (RC6)\n");
1008 break;
1009 case RSX_STATUS_RS3:
1010 seq_printf(m, "RC3 (RC6+)\n");
1011 break;
1012 default:
1013 seq_printf(m, "unknown\n");
1014 break;
1015 }
Jesse Barnesf97108d2010-01-29 11:27:07 -08001016
1017 return 0;
1018}
1019
Ben Widawsky4d855292011-12-12 19:34:16 -08001020static int gen6_drpc_info(struct seq_file *m)
1021{
1022
1023 struct drm_info_node *node = (struct drm_info_node *) m->private;
1024 struct drm_device *dev = node->minor->dev;
1025 struct drm_i915_private *dev_priv = dev->dev_private;
1026 u32 rpmodectl1, gt_core_status, rcctl1;
Daniel Vetter93b525d2012-01-25 13:52:43 +01001027 unsigned forcewake_count;
Ben Widawsky4d855292011-12-12 19:34:16 -08001028 int count=0, ret;
1029
1030
1031 ret = mutex_lock_interruptible(&dev->struct_mutex);
1032 if (ret)
1033 return ret;
1034
Daniel Vetter93b525d2012-01-25 13:52:43 +01001035 spin_lock_irq(&dev_priv->gt_lock);
1036 forcewake_count = dev_priv->forcewake_count;
1037 spin_unlock_irq(&dev_priv->gt_lock);
1038
1039 if (forcewake_count) {
1040 seq_printf(m, "RC information inaccurate because somebody "
1041 "holds a forcewake reference \n");
Ben Widawsky4d855292011-12-12 19:34:16 -08001042 } else {
1043 /* NB: we cannot use forcewake, else we read the wrong values */
1044 while (count++ < 50 && (I915_READ_NOTRACE(FORCEWAKE_ACK) & 1))
1045 udelay(10);
1046 seq_printf(m, "RC information accurate: %s\n", yesno(count < 51));
1047 }
1048
1049 gt_core_status = readl(dev_priv->regs + GEN6_GT_CORE_STATUS);
1050 trace_i915_reg_rw(false, GEN6_GT_CORE_STATUS, gt_core_status, 4);
1051
1052 rpmodectl1 = I915_READ(GEN6_RP_CONTROL);
1053 rcctl1 = I915_READ(GEN6_RC_CONTROL);
1054 mutex_unlock(&dev->struct_mutex);
1055
1056 seq_printf(m, "Video Turbo Mode: %s\n",
1057 yesno(rpmodectl1 & GEN6_RP_MEDIA_TURBO));
1058 seq_printf(m, "HW control enabled: %s\n",
1059 yesno(rpmodectl1 & GEN6_RP_ENABLE));
1060 seq_printf(m, "SW control enabled: %s\n",
1061 yesno((rpmodectl1 & GEN6_RP_MEDIA_MODE_MASK) ==
1062 GEN6_RP_MEDIA_SW_MODE));
Eric Anholtfff24e22012-01-23 16:14:05 -08001063 seq_printf(m, "RC1e Enabled: %s\n",
Ben Widawsky4d855292011-12-12 19:34:16 -08001064 yesno(rcctl1 & GEN6_RC_CTL_RC1e_ENABLE));
1065 seq_printf(m, "RC6 Enabled: %s\n",
1066 yesno(rcctl1 & GEN6_RC_CTL_RC6_ENABLE));
1067 seq_printf(m, "Deep RC6 Enabled: %s\n",
1068 yesno(rcctl1 & GEN6_RC_CTL_RC6p_ENABLE));
1069 seq_printf(m, "Deepest RC6 Enabled: %s\n",
1070 yesno(rcctl1 & GEN6_RC_CTL_RC6pp_ENABLE));
1071 seq_printf(m, "Current RC state: ");
1072 switch (gt_core_status & GEN6_RCn_MASK) {
1073 case GEN6_RC0:
1074 if (gt_core_status & GEN6_CORE_CPD_STATE_MASK)
1075 seq_printf(m, "Core Power Down\n");
1076 else
1077 seq_printf(m, "on\n");
1078 break;
1079 case GEN6_RC3:
1080 seq_printf(m, "RC3\n");
1081 break;
1082 case GEN6_RC6:
1083 seq_printf(m, "RC6\n");
1084 break;
1085 case GEN6_RC7:
1086 seq_printf(m, "RC7\n");
1087 break;
1088 default:
1089 seq_printf(m, "Unknown\n");
1090 break;
1091 }
1092
1093 seq_printf(m, "Core Power Down: %s\n",
1094 yesno(gt_core_status & GEN6_CORE_CPD_STATE_MASK));
Ben Widawskycce66a22012-03-27 18:59:38 -07001095
1096 /* Not exactly sure what this is */
1097 seq_printf(m, "RC6 \"Locked to RPn\" residency since boot: %u\n",
1098 I915_READ(GEN6_GT_GFX_RC6_LOCKED));
1099 seq_printf(m, "RC6 residency since boot: %u\n",
1100 I915_READ(GEN6_GT_GFX_RC6));
1101 seq_printf(m, "RC6+ residency since boot: %u\n",
1102 I915_READ(GEN6_GT_GFX_RC6p));
1103 seq_printf(m, "RC6++ residency since boot: %u\n",
1104 I915_READ(GEN6_GT_GFX_RC6pp));
1105
Ben Widawsky4d855292011-12-12 19:34:16 -08001106 return 0;
1107}
1108
1109static int i915_drpc_info(struct seq_file *m, void *unused)
1110{
1111 struct drm_info_node *node = (struct drm_info_node *) m->private;
1112 struct drm_device *dev = node->minor->dev;
1113
1114 if (IS_GEN6(dev) || IS_GEN7(dev))
1115 return gen6_drpc_info(m);
1116 else
1117 return ironlake_drpc_info(m);
1118}
1119
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001120static int i915_fbc_status(struct seq_file *m, void *unused)
1121{
1122 struct drm_info_node *node = (struct drm_info_node *) m->private;
1123 struct drm_device *dev = node->minor->dev;
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001124 drm_i915_private_t *dev_priv = dev->dev_private;
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001125
Adam Jacksonee5382a2010-04-23 11:17:39 -04001126 if (!I915_HAS_FBC(dev)) {
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001127 seq_printf(m, "FBC unsupported on this chipset\n");
1128 return 0;
1129 }
1130
Adam Jacksonee5382a2010-04-23 11:17:39 -04001131 if (intel_fbc_enabled(dev)) {
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001132 seq_printf(m, "FBC enabled\n");
1133 } else {
1134 seq_printf(m, "FBC disabled: ");
1135 switch (dev_priv->no_fbc_reason) {
Chris Wilsonbed4a672010-09-11 10:47:47 +01001136 case FBC_NO_OUTPUT:
1137 seq_printf(m, "no outputs");
1138 break;
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001139 case FBC_STOLEN_TOO_SMALL:
1140 seq_printf(m, "not enough stolen memory");
1141 break;
1142 case FBC_UNSUPPORTED_MODE:
1143 seq_printf(m, "mode not supported");
1144 break;
1145 case FBC_MODE_TOO_LARGE:
1146 seq_printf(m, "mode too large");
1147 break;
1148 case FBC_BAD_PLANE:
1149 seq_printf(m, "FBC unsupported on plane");
1150 break;
1151 case FBC_NOT_TILED:
1152 seq_printf(m, "scanout buffer not tiled");
1153 break;
Jesse Barnes9c928d12010-07-23 15:20:00 -07001154 case FBC_MULTIPLE_PIPES:
1155 seq_printf(m, "multiple pipes are enabled");
1156 break;
Jesse Barnesc1a9f042011-05-05 15:24:21 -07001157 case FBC_MODULE_PARAM:
1158 seq_printf(m, "disabled per module param (default off)");
1159 break;
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001160 default:
1161 seq_printf(m, "unknown reason");
1162 }
1163 seq_printf(m, "\n");
1164 }
1165 return 0;
1166}
1167
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001168static int i915_sr_status(struct seq_file *m, void *unused)
1169{
1170 struct drm_info_node *node = (struct drm_info_node *) m->private;
1171 struct drm_device *dev = node->minor->dev;
1172 drm_i915_private_t *dev_priv = dev->dev_private;
1173 bool sr_enabled = false;
1174
Yuanhan Liu13982612010-12-15 15:42:31 +08001175 if (HAS_PCH_SPLIT(dev))
Chris Wilson5ba2aaa2010-08-19 18:04:08 +01001176 sr_enabled = I915_READ(WM1_LP_ILK) & WM1_LP_SR_EN;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001177 else if (IS_CRESTLINE(dev) || IS_I945G(dev) || IS_I945GM(dev))
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001178 sr_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
1179 else if (IS_I915GM(dev))
1180 sr_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN;
1181 else if (IS_PINEVIEW(dev))
1182 sr_enabled = I915_READ(DSPFW3) & PINEVIEW_SELF_REFRESH_EN;
1183
Chris Wilson5ba2aaa2010-08-19 18:04:08 +01001184 seq_printf(m, "self-refresh: %s\n",
1185 sr_enabled ? "enabled" : "disabled");
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001186
1187 return 0;
1188}
1189
Jesse Barnes7648fa92010-05-20 14:28:11 -07001190static int i915_emon_status(struct seq_file *m, void *unused)
1191{
1192 struct drm_info_node *node = (struct drm_info_node *) m->private;
1193 struct drm_device *dev = node->minor->dev;
1194 drm_i915_private_t *dev_priv = dev->dev_private;
1195 unsigned long temp, chipset, gfx;
Chris Wilsonde227ef2010-07-03 07:58:38 +01001196 int ret;
1197
1198 ret = mutex_lock_interruptible(&dev->struct_mutex);
1199 if (ret)
1200 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001201
1202 temp = i915_mch_val(dev_priv);
1203 chipset = i915_chipset_val(dev_priv);
1204 gfx = i915_gfx_val(dev_priv);
Chris Wilsonde227ef2010-07-03 07:58:38 +01001205 mutex_unlock(&dev->struct_mutex);
Jesse Barnes7648fa92010-05-20 14:28:11 -07001206
1207 seq_printf(m, "GMCH temp: %ld\n", temp);
1208 seq_printf(m, "Chipset power: %ld\n", chipset);
1209 seq_printf(m, "GFX power: %ld\n", gfx);
1210 seq_printf(m, "Total power: %ld\n", chipset + gfx);
1211
1212 return 0;
1213}
1214
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001215static int i915_ring_freq_table(struct seq_file *m, void *unused)
1216{
1217 struct drm_info_node *node = (struct drm_info_node *) m->private;
1218 struct drm_device *dev = node->minor->dev;
1219 drm_i915_private_t *dev_priv = dev->dev_private;
1220 int ret;
1221 int gpu_freq, ia_freq;
1222
Jesse Barnes1c70c0c2011-06-29 13:34:36 -07001223 if (!(IS_GEN6(dev) || IS_GEN7(dev))) {
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001224 seq_printf(m, "unsupported on this chipset\n");
1225 return 0;
1226 }
1227
1228 ret = mutex_lock_interruptible(&dev->struct_mutex);
1229 if (ret)
1230 return ret;
1231
1232 seq_printf(m, "GPU freq (MHz)\tEffective CPU freq (MHz)\n");
1233
1234 for (gpu_freq = dev_priv->min_delay; gpu_freq <= dev_priv->max_delay;
1235 gpu_freq++) {
1236 I915_WRITE(GEN6_PCODE_DATA, gpu_freq);
1237 I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY |
1238 GEN6_PCODE_READ_MIN_FREQ_TABLE);
1239 if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) &
1240 GEN6_PCODE_READY) == 0, 10)) {
1241 DRM_ERROR("pcode read of freq table timed out\n");
1242 continue;
1243 }
1244 ia_freq = I915_READ(GEN6_PCODE_DATA);
1245 seq_printf(m, "%d\t\t%d\n", gpu_freq * 50, ia_freq * 100);
1246 }
1247
1248 mutex_unlock(&dev->struct_mutex);
1249
1250 return 0;
1251}
1252
Jesse Barnes7648fa92010-05-20 14:28:11 -07001253static int i915_gfxec(struct seq_file *m, void *unused)
1254{
1255 struct drm_info_node *node = (struct drm_info_node *) m->private;
1256 struct drm_device *dev = node->minor->dev;
1257 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawsky616fdb52011-10-05 11:44:54 -07001258 int ret;
1259
1260 ret = mutex_lock_interruptible(&dev->struct_mutex);
1261 if (ret)
1262 return ret;
Jesse Barnes7648fa92010-05-20 14:28:11 -07001263
1264 seq_printf(m, "GFXEC: %ld\n", (unsigned long)I915_READ(0x112f4));
1265
Ben Widawsky616fdb52011-10-05 11:44:54 -07001266 mutex_unlock(&dev->struct_mutex);
1267
Jesse Barnes7648fa92010-05-20 14:28:11 -07001268 return 0;
1269}
1270
Chris Wilson44834a62010-08-19 16:09:23 +01001271static int i915_opregion(struct seq_file *m, void *unused)
1272{
1273 struct drm_info_node *node = (struct drm_info_node *) m->private;
1274 struct drm_device *dev = node->minor->dev;
1275 drm_i915_private_t *dev_priv = dev->dev_private;
1276 struct intel_opregion *opregion = &dev_priv->opregion;
Daniel Vetter0d38f002012-04-21 22:49:10 +02001277 void *data = kmalloc(OPREGION_SIZE, GFP_KERNEL);
Chris Wilson44834a62010-08-19 16:09:23 +01001278 int ret;
1279
Daniel Vetter0d38f002012-04-21 22:49:10 +02001280 if (data == NULL)
1281 return -ENOMEM;
1282
Chris Wilson44834a62010-08-19 16:09:23 +01001283 ret = mutex_lock_interruptible(&dev->struct_mutex);
1284 if (ret)
Daniel Vetter0d38f002012-04-21 22:49:10 +02001285 goto out;
Chris Wilson44834a62010-08-19 16:09:23 +01001286
Daniel Vetter0d38f002012-04-21 22:49:10 +02001287 if (opregion->header) {
1288 memcpy_fromio(data, opregion->header, OPREGION_SIZE);
1289 seq_write(m, data, OPREGION_SIZE);
1290 }
Chris Wilson44834a62010-08-19 16:09:23 +01001291
1292 mutex_unlock(&dev->struct_mutex);
1293
Daniel Vetter0d38f002012-04-21 22:49:10 +02001294out:
1295 kfree(data);
Chris Wilson44834a62010-08-19 16:09:23 +01001296 return 0;
1297}
1298
Chris Wilson37811fc2010-08-25 22:45:57 +01001299static int i915_gem_framebuffer_info(struct seq_file *m, void *data)
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_fbdev *ifbdev;
1305 struct intel_framebuffer *fb;
1306 int ret;
1307
1308 ret = mutex_lock_interruptible(&dev->mode_config.mutex);
1309 if (ret)
1310 return ret;
1311
1312 ifbdev = dev_priv->fbdev;
1313 fb = to_intel_framebuffer(ifbdev->helper.fb);
1314
1315 seq_printf(m, "fbcon size: %d x %d, depth %d, %d bpp, obj ",
1316 fb->base.width,
1317 fb->base.height,
1318 fb->base.depth,
1319 fb->base.bits_per_pixel);
Chris Wilson05394f32010-11-08 19:18:58 +00001320 describe_obj(m, fb->obj);
Chris Wilson37811fc2010-08-25 22:45:57 +01001321 seq_printf(m, "\n");
1322
1323 list_for_each_entry(fb, &dev->mode_config.fb_list, base.head) {
1324 if (&fb->base == ifbdev->helper.fb)
1325 continue;
1326
1327 seq_printf(m, "user size: %d x %d, depth %d, %d bpp, obj ",
1328 fb->base.width,
1329 fb->base.height,
1330 fb->base.depth,
1331 fb->base.bits_per_pixel);
Chris Wilson05394f32010-11-08 19:18:58 +00001332 describe_obj(m, fb->obj);
Chris Wilson37811fc2010-08-25 22:45:57 +01001333 seq_printf(m, "\n");
1334 }
1335
1336 mutex_unlock(&dev->mode_config.mutex);
1337
1338 return 0;
1339}
1340
Ben Widawskye76d3632011-03-19 18:14:29 -07001341static int i915_context_status(struct seq_file *m, void *unused)
1342{
1343 struct drm_info_node *node = (struct drm_info_node *) m->private;
1344 struct drm_device *dev = node->minor->dev;
1345 drm_i915_private_t *dev_priv = dev->dev_private;
1346 int ret;
1347
1348 ret = mutex_lock_interruptible(&dev->mode_config.mutex);
1349 if (ret)
1350 return ret;
1351
Ben Widawskydc501fb2011-06-29 11:41:51 -07001352 if (dev_priv->pwrctx) {
1353 seq_printf(m, "power context ");
1354 describe_obj(m, dev_priv->pwrctx);
1355 seq_printf(m, "\n");
1356 }
Ben Widawskye76d3632011-03-19 18:14:29 -07001357
Ben Widawskydc501fb2011-06-29 11:41:51 -07001358 if (dev_priv->renderctx) {
1359 seq_printf(m, "render context ");
1360 describe_obj(m, dev_priv->renderctx);
1361 seq_printf(m, "\n");
1362 }
Ben Widawskye76d3632011-03-19 18:14:29 -07001363
1364 mutex_unlock(&dev->mode_config.mutex);
1365
1366 return 0;
1367}
1368
Ben Widawsky6d794d42011-04-25 11:25:56 -07001369static int i915_gen6_forcewake_count_info(struct seq_file *m, void *data)
1370{
1371 struct drm_info_node *node = (struct drm_info_node *) m->private;
1372 struct drm_device *dev = node->minor->dev;
1373 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter9f1f46a2011-12-14 13:57:03 +01001374 unsigned forcewake_count;
Ben Widawsky6d794d42011-04-25 11:25:56 -07001375
Daniel Vetter9f1f46a2011-12-14 13:57:03 +01001376 spin_lock_irq(&dev_priv->gt_lock);
1377 forcewake_count = dev_priv->forcewake_count;
1378 spin_unlock_irq(&dev_priv->gt_lock);
1379
1380 seq_printf(m, "forcewake count = %u\n", forcewake_count);
Ben Widawsky6d794d42011-04-25 11:25:56 -07001381
1382 return 0;
1383}
1384
Daniel Vetterea16a3c2011-12-14 13:57:16 +01001385static const char *swizzle_string(unsigned swizzle)
1386{
1387 switch(swizzle) {
1388 case I915_BIT_6_SWIZZLE_NONE:
1389 return "none";
1390 case I915_BIT_6_SWIZZLE_9:
1391 return "bit9";
1392 case I915_BIT_6_SWIZZLE_9_10:
1393 return "bit9/bit10";
1394 case I915_BIT_6_SWIZZLE_9_11:
1395 return "bit9/bit11";
1396 case I915_BIT_6_SWIZZLE_9_10_11:
1397 return "bit9/bit10/bit11";
1398 case I915_BIT_6_SWIZZLE_9_17:
1399 return "bit9/bit17";
1400 case I915_BIT_6_SWIZZLE_9_10_17:
1401 return "bit9/bit10/bit17";
1402 case I915_BIT_6_SWIZZLE_UNKNOWN:
1403 return "unkown";
1404 }
1405
1406 return "bug";
1407}
1408
1409static int i915_swizzle_info(struct seq_file *m, void *data)
1410{
1411 struct drm_info_node *node = (struct drm_info_node *) m->private;
1412 struct drm_device *dev = node->minor->dev;
1413 struct drm_i915_private *dev_priv = dev->dev_private;
1414
1415 mutex_lock(&dev->struct_mutex);
1416 seq_printf(m, "bit6 swizzle for X-tiling = %s\n",
1417 swizzle_string(dev_priv->mm.bit_6_swizzle_x));
1418 seq_printf(m, "bit6 swizzle for Y-tiling = %s\n",
1419 swizzle_string(dev_priv->mm.bit_6_swizzle_y));
1420
1421 if (IS_GEN3(dev) || IS_GEN4(dev)) {
1422 seq_printf(m, "DDC = 0x%08x\n",
1423 I915_READ(DCC));
1424 seq_printf(m, "C0DRB3 = 0x%04x\n",
1425 I915_READ16(C0DRB3));
1426 seq_printf(m, "C1DRB3 = 0x%04x\n",
1427 I915_READ16(C1DRB3));
Daniel Vetter3fa7d232012-01-31 16:47:56 +01001428 } else if (IS_GEN6(dev) || IS_GEN7(dev)) {
1429 seq_printf(m, "MAD_DIMM_C0 = 0x%08x\n",
1430 I915_READ(MAD_DIMM_C0));
1431 seq_printf(m, "MAD_DIMM_C1 = 0x%08x\n",
1432 I915_READ(MAD_DIMM_C1));
1433 seq_printf(m, "MAD_DIMM_C2 = 0x%08x\n",
1434 I915_READ(MAD_DIMM_C2));
1435 seq_printf(m, "TILECTL = 0x%08x\n",
1436 I915_READ(TILECTL));
1437 seq_printf(m, "ARB_MODE = 0x%08x\n",
1438 I915_READ(ARB_MODE));
1439 seq_printf(m, "DISP_ARB_CTL = 0x%08x\n",
1440 I915_READ(DISP_ARB_CTL));
Daniel Vetterea16a3c2011-12-14 13:57:16 +01001441 }
1442 mutex_unlock(&dev->struct_mutex);
1443
1444 return 0;
1445}
1446
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01001447static int i915_ppgtt_info(struct seq_file *m, void *data)
1448{
1449 struct drm_info_node *node = (struct drm_info_node *) m->private;
1450 struct drm_device *dev = node->minor->dev;
1451 struct drm_i915_private *dev_priv = dev->dev_private;
1452 struct intel_ring_buffer *ring;
1453 int i, ret;
1454
1455
1456 ret = mutex_lock_interruptible(&dev->struct_mutex);
1457 if (ret)
1458 return ret;
1459 if (INTEL_INFO(dev)->gen == 6)
1460 seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(GFX_MODE));
1461
1462 for (i = 0; i < I915_NUM_RINGS; i++) {
1463 ring = &dev_priv->ring[i];
1464
1465 seq_printf(m, "%s\n", ring->name);
1466 if (INTEL_INFO(dev)->gen == 7)
1467 seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(RING_MODE_GEN7(ring)));
1468 seq_printf(m, "PP_DIR_BASE: 0x%08x\n", I915_READ(RING_PP_DIR_BASE(ring)));
1469 seq_printf(m, "PP_DIR_BASE_READ: 0x%08x\n", I915_READ(RING_PP_DIR_BASE_READ(ring)));
1470 seq_printf(m, "PP_DIR_DCLV: 0x%08x\n", I915_READ(RING_PP_DIR_DCLV(ring)));
1471 }
1472 if (dev_priv->mm.aliasing_ppgtt) {
1473 struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt;
1474
1475 seq_printf(m, "aliasing PPGTT:\n");
1476 seq_printf(m, "pd gtt offset: 0x%08x\n", ppgtt->pd_offset);
1477 }
1478 seq_printf(m, "ECOCHK: 0x%08x\n", I915_READ(GAM_ECOCHK));
1479 mutex_unlock(&dev->struct_mutex);
1480
1481 return 0;
1482}
1483
Jesse Barnes57f350b2012-03-28 13:39:25 -07001484static int i915_dpio_info(struct seq_file *m, void *data)
1485{
1486 struct drm_info_node *node = (struct drm_info_node *) m->private;
1487 struct drm_device *dev = node->minor->dev;
1488 struct drm_i915_private *dev_priv = dev->dev_private;
1489 int ret;
1490
1491
1492 if (!IS_VALLEYVIEW(dev)) {
1493 seq_printf(m, "unsupported\n");
1494 return 0;
1495 }
1496
1497 ret = mutex_lock_interruptible(&dev->mode_config.mutex);
1498 if (ret)
1499 return ret;
1500
1501 seq_printf(m, "DPIO_CTL: 0x%08x\n", I915_READ(DPIO_CTL));
1502
1503 seq_printf(m, "DPIO_DIV_A: 0x%08x\n",
1504 intel_dpio_read(dev_priv, _DPIO_DIV_A));
1505 seq_printf(m, "DPIO_DIV_B: 0x%08x\n",
1506 intel_dpio_read(dev_priv, _DPIO_DIV_B));
1507
1508 seq_printf(m, "DPIO_REFSFR_A: 0x%08x\n",
1509 intel_dpio_read(dev_priv, _DPIO_REFSFR_A));
1510 seq_printf(m, "DPIO_REFSFR_B: 0x%08x\n",
1511 intel_dpio_read(dev_priv, _DPIO_REFSFR_B));
1512
1513 seq_printf(m, "DPIO_CORE_CLK_A: 0x%08x\n",
1514 intel_dpio_read(dev_priv, _DPIO_CORE_CLK_A));
1515 seq_printf(m, "DPIO_CORE_CLK_B: 0x%08x\n",
1516 intel_dpio_read(dev_priv, _DPIO_CORE_CLK_B));
1517
1518 seq_printf(m, "DPIO_LFP_COEFF_A: 0x%08x\n",
1519 intel_dpio_read(dev_priv, _DPIO_LFP_COEFF_A));
1520 seq_printf(m, "DPIO_LFP_COEFF_B: 0x%08x\n",
1521 intel_dpio_read(dev_priv, _DPIO_LFP_COEFF_B));
1522
1523 seq_printf(m, "DPIO_FASTCLK_DISABLE: 0x%08x\n",
1524 intel_dpio_read(dev_priv, DPIO_FASTCLK_DISABLE));
1525
1526 mutex_unlock(&dev->mode_config.mutex);
1527
1528 return 0;
1529}
1530
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001531static ssize_t
1532i915_wedged_read(struct file *filp,
1533 char __user *ubuf,
1534 size_t max,
1535 loff_t *ppos)
1536{
1537 struct drm_device *dev = filp->private_data;
1538 drm_i915_private_t *dev_priv = dev->dev_private;
1539 char buf[80];
1540 int len;
1541
Akshay Joshi0206e352011-08-16 15:34:10 -04001542 len = snprintf(buf, sizeof(buf),
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001543 "wedged : %d\n",
1544 atomic_read(&dev_priv->mm.wedged));
1545
Akshay Joshi0206e352011-08-16 15:34:10 -04001546 if (len > sizeof(buf))
1547 len = sizeof(buf);
Dan Carpenterf4433a82010-09-08 21:44:47 +02001548
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001549 return simple_read_from_buffer(ubuf, max, ppos, buf, len);
1550}
1551
1552static ssize_t
1553i915_wedged_write(struct file *filp,
1554 const char __user *ubuf,
1555 size_t cnt,
1556 loff_t *ppos)
1557{
1558 struct drm_device *dev = filp->private_data;
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001559 char buf[20];
1560 int val = 1;
1561
1562 if (cnt > 0) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001563 if (cnt > sizeof(buf) - 1)
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001564 return -EINVAL;
1565
1566 if (copy_from_user(buf, ubuf, cnt))
1567 return -EFAULT;
1568 buf[cnt] = 0;
1569
1570 val = simple_strtoul(buf, NULL, 0);
1571 }
1572
1573 DRM_INFO("Manually setting wedged to %d\n", val);
Chris Wilson527f9e92010-11-11 01:16:58 +00001574 i915_handle_error(dev, val);
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001575
1576 return cnt;
1577}
1578
1579static const struct file_operations i915_wedged_fops = {
1580 .owner = THIS_MODULE,
Stephen Boyd234e3402012-04-05 14:25:11 -07001581 .open = simple_open,
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001582 .read = i915_wedged_read,
1583 .write = i915_wedged_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001584 .llseek = default_llseek,
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001585};
1586
Jesse Barnes358733e2011-07-27 11:53:01 -07001587static ssize_t
1588i915_max_freq_read(struct file *filp,
1589 char __user *ubuf,
1590 size_t max,
1591 loff_t *ppos)
1592{
1593 struct drm_device *dev = filp->private_data;
1594 drm_i915_private_t *dev_priv = dev->dev_private;
1595 char buf[80];
1596 int len;
1597
Akshay Joshi0206e352011-08-16 15:34:10 -04001598 len = snprintf(buf, sizeof(buf),
Jesse Barnes358733e2011-07-27 11:53:01 -07001599 "max freq: %d\n", dev_priv->max_delay * 50);
1600
Akshay Joshi0206e352011-08-16 15:34:10 -04001601 if (len > sizeof(buf))
1602 len = sizeof(buf);
Jesse Barnes358733e2011-07-27 11:53:01 -07001603
1604 return simple_read_from_buffer(ubuf, max, ppos, buf, len);
1605}
1606
1607static ssize_t
1608i915_max_freq_write(struct file *filp,
1609 const char __user *ubuf,
1610 size_t cnt,
1611 loff_t *ppos)
1612{
1613 struct drm_device *dev = filp->private_data;
1614 struct drm_i915_private *dev_priv = dev->dev_private;
1615 char buf[20];
1616 int val = 1;
1617
1618 if (cnt > 0) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001619 if (cnt > sizeof(buf) - 1)
Jesse Barnes358733e2011-07-27 11:53:01 -07001620 return -EINVAL;
1621
1622 if (copy_from_user(buf, ubuf, cnt))
1623 return -EFAULT;
1624 buf[cnt] = 0;
1625
1626 val = simple_strtoul(buf, NULL, 0);
1627 }
1628
1629 DRM_DEBUG_DRIVER("Manually setting max freq to %d\n", val);
1630
1631 /*
1632 * Turbo will still be enabled, but won't go above the set value.
1633 */
1634 dev_priv->max_delay = val / 50;
1635
1636 gen6_set_rps(dev, val / 50);
1637
1638 return cnt;
1639}
1640
1641static const struct file_operations i915_max_freq_fops = {
1642 .owner = THIS_MODULE,
Stephen Boyd234e3402012-04-05 14:25:11 -07001643 .open = simple_open,
Jesse Barnes358733e2011-07-27 11:53:01 -07001644 .read = i915_max_freq_read,
1645 .write = i915_max_freq_write,
1646 .llseek = default_llseek,
1647};
1648
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001649static ssize_t
1650i915_cache_sharing_read(struct file *filp,
1651 char __user *ubuf,
1652 size_t max,
1653 loff_t *ppos)
1654{
1655 struct drm_device *dev = filp->private_data;
1656 drm_i915_private_t *dev_priv = dev->dev_private;
1657 char buf[80];
1658 u32 snpcr;
1659 int len;
1660
1661 mutex_lock(&dev_priv->dev->struct_mutex);
1662 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
1663 mutex_unlock(&dev_priv->dev->struct_mutex);
1664
Akshay Joshi0206e352011-08-16 15:34:10 -04001665 len = snprintf(buf, sizeof(buf),
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001666 "%d\n", (snpcr & GEN6_MBC_SNPCR_MASK) >>
1667 GEN6_MBC_SNPCR_SHIFT);
1668
Akshay Joshi0206e352011-08-16 15:34:10 -04001669 if (len > sizeof(buf))
1670 len = sizeof(buf);
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001671
1672 return simple_read_from_buffer(ubuf, max, ppos, buf, len);
1673}
1674
1675static ssize_t
1676i915_cache_sharing_write(struct file *filp,
1677 const char __user *ubuf,
1678 size_t cnt,
1679 loff_t *ppos)
1680{
1681 struct drm_device *dev = filp->private_data;
1682 struct drm_i915_private *dev_priv = dev->dev_private;
1683 char buf[20];
1684 u32 snpcr;
1685 int val = 1;
1686
1687 if (cnt > 0) {
Akshay Joshi0206e352011-08-16 15:34:10 -04001688 if (cnt > sizeof(buf) - 1)
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001689 return -EINVAL;
1690
1691 if (copy_from_user(buf, ubuf, cnt))
1692 return -EFAULT;
1693 buf[cnt] = 0;
1694
1695 val = simple_strtoul(buf, NULL, 0);
1696 }
1697
1698 if (val < 0 || val > 3)
1699 return -EINVAL;
1700
1701 DRM_DEBUG_DRIVER("Manually setting uncore sharing to %d\n", val);
1702
1703 /* Update the cache sharing policy here as well */
1704 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
1705 snpcr &= ~GEN6_MBC_SNPCR_MASK;
1706 snpcr |= (val << GEN6_MBC_SNPCR_SHIFT);
1707 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
1708
1709 return cnt;
1710}
1711
1712static const struct file_operations i915_cache_sharing_fops = {
1713 .owner = THIS_MODULE,
Stephen Boyd234e3402012-04-05 14:25:11 -07001714 .open = simple_open,
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001715 .read = i915_cache_sharing_read,
1716 .write = i915_cache_sharing_write,
1717 .llseek = default_llseek,
1718};
1719
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001720/* As the drm_debugfs_init() routines are called before dev->dev_private is
1721 * allocated we need to hook into the minor for release. */
1722static int
1723drm_add_fake_info_node(struct drm_minor *minor,
1724 struct dentry *ent,
1725 const void *key)
1726{
1727 struct drm_info_node *node;
1728
1729 node = kmalloc(sizeof(struct drm_info_node), GFP_KERNEL);
1730 if (node == NULL) {
1731 debugfs_remove(ent);
1732 return -ENOMEM;
1733 }
1734
1735 node->minor = minor;
1736 node->dent = ent;
1737 node->info_ent = (void *) key;
Marcin Slusarzb3e067c2011-11-09 22:20:35 +01001738
1739 mutex_lock(&minor->debugfs_lock);
1740 list_add(&node->list, &minor->debugfs_list);
1741 mutex_unlock(&minor->debugfs_lock);
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001742
1743 return 0;
1744}
1745
Ben Widawsky6d794d42011-04-25 11:25:56 -07001746static int i915_forcewake_open(struct inode *inode, struct file *file)
1747{
1748 struct drm_device *dev = inode->i_private;
1749 struct drm_i915_private *dev_priv = dev->dev_private;
1750 int ret;
1751
Daniel Vetter075edca2012-01-24 09:44:28 +01001752 if (INTEL_INFO(dev)->gen < 6)
Ben Widawsky6d794d42011-04-25 11:25:56 -07001753 return 0;
1754
1755 ret = mutex_lock_interruptible(&dev->struct_mutex);
1756 if (ret)
1757 return ret;
1758 gen6_gt_force_wake_get(dev_priv);
1759 mutex_unlock(&dev->struct_mutex);
1760
1761 return 0;
1762}
1763
Ben Widawskyc43b5632012-04-16 14:07:40 -07001764static int i915_forcewake_release(struct inode *inode, struct file *file)
Ben Widawsky6d794d42011-04-25 11:25:56 -07001765{
1766 struct drm_device *dev = inode->i_private;
1767 struct drm_i915_private *dev_priv = dev->dev_private;
1768
Daniel Vetter075edca2012-01-24 09:44:28 +01001769 if (INTEL_INFO(dev)->gen < 6)
Ben Widawsky6d794d42011-04-25 11:25:56 -07001770 return 0;
1771
1772 /*
1773 * It's bad that we can potentially hang userspace if struct_mutex gets
1774 * forever stuck. However, if we cannot acquire this lock it means that
1775 * almost certainly the driver has hung, is not unload-able. Therefore
1776 * hanging here is probably a minor inconvenience not to be seen my
1777 * almost every user.
1778 */
1779 mutex_lock(&dev->struct_mutex);
1780 gen6_gt_force_wake_put(dev_priv);
1781 mutex_unlock(&dev->struct_mutex);
1782
1783 return 0;
1784}
1785
1786static const struct file_operations i915_forcewake_fops = {
1787 .owner = THIS_MODULE,
1788 .open = i915_forcewake_open,
1789 .release = i915_forcewake_release,
1790};
1791
1792static int i915_forcewake_create(struct dentry *root, struct drm_minor *minor)
1793{
1794 struct drm_device *dev = minor->dev;
1795 struct dentry *ent;
1796
1797 ent = debugfs_create_file("i915_forcewake_user",
Ben Widawsky8eb57292011-05-11 15:10:58 -07001798 S_IRUSR,
Ben Widawsky6d794d42011-04-25 11:25:56 -07001799 root, dev,
1800 &i915_forcewake_fops);
1801 if (IS_ERR(ent))
1802 return PTR_ERR(ent);
1803
Ben Widawsky8eb57292011-05-11 15:10:58 -07001804 return drm_add_fake_info_node(minor, ent, &i915_forcewake_fops);
Ben Widawsky6d794d42011-04-25 11:25:56 -07001805}
1806
Daniel Vetter6a9c3082011-12-14 13:57:11 +01001807static int i915_debugfs_create(struct dentry *root,
1808 struct drm_minor *minor,
1809 const char *name,
1810 const struct file_operations *fops)
Jesse Barnes358733e2011-07-27 11:53:01 -07001811{
1812 struct drm_device *dev = minor->dev;
1813 struct dentry *ent;
1814
Daniel Vetter6a9c3082011-12-14 13:57:11 +01001815 ent = debugfs_create_file(name,
Jesse Barnes358733e2011-07-27 11:53:01 -07001816 S_IRUGO | S_IWUSR,
1817 root, dev,
Daniel Vetter6a9c3082011-12-14 13:57:11 +01001818 fops);
Jesse Barnes358733e2011-07-27 11:53:01 -07001819 if (IS_ERR(ent))
1820 return PTR_ERR(ent);
1821
Daniel Vetter6a9c3082011-12-14 13:57:11 +01001822 return drm_add_fake_info_node(minor, ent, fops);
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001823}
1824
Ben Gamari27c202a2009-07-01 22:26:52 -04001825static struct drm_info_list i915_debugfs_list[] = {
Chris Wilson311bd682011-01-13 19:06:50 +00001826 {"i915_capabilities", i915_capabilities, 0},
Chris Wilson73aa8082010-09-30 11:46:12 +01001827 {"i915_gem_objects", i915_gem_object_info, 0},
Chris Wilson08c18322011-01-10 00:00:24 +00001828 {"i915_gem_gtt", i915_gem_gtt_info, 0},
Chris Wilson1b502472012-04-24 15:47:30 +01001829 {"i915_gem_pinned", i915_gem_gtt_info, 0, (void *) PINNED_LIST},
Ben Gamari433e12f2009-02-17 20:08:51 -05001830 {"i915_gem_active", i915_gem_object_list_info, 0, (void *) ACTIVE_LIST},
1831 {"i915_gem_flushing", i915_gem_object_list_info, 0, (void *) FLUSHING_LIST},
1832 {"i915_gem_inactive", i915_gem_object_list_info, 0, (void *) INACTIVE_LIST},
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01001833 {"i915_gem_pageflip", i915_gem_pageflip_info, 0},
Ben Gamari20172632009-02-17 20:08:50 -05001834 {"i915_gem_request", i915_gem_request_info, 0},
1835 {"i915_gem_seqno", i915_gem_seqno_info, 0},
Chris Wilsona6172a82009-02-11 14:26:38 +00001836 {"i915_gem_fence_regs", i915_gem_fence_regs_info, 0},
Ben Gamari20172632009-02-17 20:08:50 -05001837 {"i915_gem_interrupt", i915_interrupt_info, 0},
Chris Wilson1ec14ad2010-12-04 11:30:53 +00001838 {"i915_gem_hws", i915_hws_info, 0, (void *)RCS},
1839 {"i915_gem_hws_blt", i915_hws_info, 0, (void *)BCS},
1840 {"i915_gem_hws_bsd", i915_hws_info, 0, (void *)VCS},
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001841 {"i915_error_state", i915_error_state, 0},
Jesse Barnesf97108d2010-01-29 11:27:07 -08001842 {"i915_rstdby_delays", i915_rstdby_delays, 0},
1843 {"i915_cur_delayinfo", i915_cur_delayinfo, 0},
1844 {"i915_delayfreq_table", i915_delayfreq_table, 0},
1845 {"i915_inttoext_table", i915_inttoext_table, 0},
1846 {"i915_drpc_info", i915_drpc_info, 0},
Jesse Barnes7648fa92010-05-20 14:28:11 -07001847 {"i915_emon_status", i915_emon_status, 0},
Jesse Barnes23b2f8b2011-06-28 13:04:16 -07001848 {"i915_ring_freq_table", i915_ring_freq_table, 0},
Jesse Barnes7648fa92010-05-20 14:28:11 -07001849 {"i915_gfxec", i915_gfxec, 0},
Jesse Barnesb5e50c32010-02-05 12:42:41 -08001850 {"i915_fbc_status", i915_fbc_status, 0},
Jesse Barnes4a9bef32010-02-05 12:47:35 -08001851 {"i915_sr_status", i915_sr_status, 0},
Chris Wilson44834a62010-08-19 16:09:23 +01001852 {"i915_opregion", i915_opregion, 0},
Chris Wilson37811fc2010-08-25 22:45:57 +01001853 {"i915_gem_framebuffer", i915_gem_framebuffer_info, 0},
Ben Widawskye76d3632011-03-19 18:14:29 -07001854 {"i915_context_status", i915_context_status, 0},
Ben Widawsky6d794d42011-04-25 11:25:56 -07001855 {"i915_gen6_forcewake_count", i915_gen6_forcewake_count_info, 0},
Daniel Vetterea16a3c2011-12-14 13:57:16 +01001856 {"i915_swizzle_info", i915_swizzle_info, 0},
Daniel Vetter3cf17fc2012-02-09 17:15:49 +01001857 {"i915_ppgtt_info", i915_ppgtt_info, 0},
Jesse Barnes57f350b2012-03-28 13:39:25 -07001858 {"i915_dpio", i915_dpio_info, 0},
Ben Gamari20172632009-02-17 20:08:50 -05001859};
Ben Gamari27c202a2009-07-01 22:26:52 -04001860#define I915_DEBUGFS_ENTRIES ARRAY_SIZE(i915_debugfs_list)
Ben Gamari20172632009-02-17 20:08:50 -05001861
Ben Gamari27c202a2009-07-01 22:26:52 -04001862int i915_debugfs_init(struct drm_minor *minor)
Ben Gamari20172632009-02-17 20:08:50 -05001863{
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001864 int ret;
1865
Daniel Vetter6a9c3082011-12-14 13:57:11 +01001866 ret = i915_debugfs_create(minor->debugfs_root, minor,
1867 "i915_wedged",
1868 &i915_wedged_fops);
Chris Wilsonf3cd4742009-10-13 22:20:20 +01001869 if (ret)
1870 return ret;
1871
Ben Widawsky6d794d42011-04-25 11:25:56 -07001872 ret = i915_forcewake_create(minor->debugfs_root, minor);
1873 if (ret)
1874 return ret;
Daniel Vetter6a9c3082011-12-14 13:57:11 +01001875
1876 ret = i915_debugfs_create(minor->debugfs_root, minor,
1877 "i915_max_freq",
1878 &i915_max_freq_fops);
Jesse Barnes358733e2011-07-27 11:53:01 -07001879 if (ret)
1880 return ret;
Daniel Vetter6a9c3082011-12-14 13:57:11 +01001881
1882 ret = i915_debugfs_create(minor->debugfs_root, minor,
1883 "i915_cache_sharing",
1884 &i915_cache_sharing_fops);
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001885 if (ret)
1886 return ret;
Ben Widawsky6d794d42011-04-25 11:25:56 -07001887
Ben Gamari27c202a2009-07-01 22:26:52 -04001888 return drm_debugfs_create_files(i915_debugfs_list,
1889 I915_DEBUGFS_ENTRIES,
Ben Gamari20172632009-02-17 20:08:50 -05001890 minor->debugfs_root, minor);
1891}
1892
Ben Gamari27c202a2009-07-01 22:26:52 -04001893void i915_debugfs_cleanup(struct drm_minor *minor)
Ben Gamari20172632009-02-17 20:08:50 -05001894{
Ben Gamari27c202a2009-07-01 22:26:52 -04001895 drm_debugfs_remove_files(i915_debugfs_list,
1896 I915_DEBUGFS_ENTRIES, minor);
Ben Widawsky6d794d42011-04-25 11:25:56 -07001897 drm_debugfs_remove_files((struct drm_info_list *) &i915_forcewake_fops,
1898 1, minor);
Kristian Høgsberg33db6792009-11-11 12:19:16 -05001899 drm_debugfs_remove_files((struct drm_info_list *) &i915_wedged_fops,
1900 1, minor);
Jesse Barnes358733e2011-07-27 11:53:01 -07001901 drm_debugfs_remove_files((struct drm_info_list *) &i915_max_freq_fops,
1902 1, minor);
Jesse Barnes07b7ddd2011-08-03 11:28:44 -07001903 drm_debugfs_remove_files((struct drm_info_list *) &i915_cache_sharing_fops,
1904 1, minor);
Ben Gamari20172632009-02-17 20:08:50 -05001905}
1906
1907#endif /* CONFIG_DEBUG_FS */