Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2008 Intel Corporation |
| 3 | * |
| 4 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 5 | * copy of this software and associated documentation files (the "Software"), |
| 6 | * to deal in the Software without restriction, including without limitation |
| 7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 8 | * and/or sell copies of the Software, and to permit persons to whom the |
| 9 | * Software is furnished to do so, subject to the following conditions: |
| 10 | * |
| 11 | * The above copyright notice and this permission notice (including the next |
| 12 | * paragraph) shall be included in all copies or substantial portions of the |
| 13 | * Software. |
| 14 | * |
| 15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 18 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 20 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS |
| 21 | * IN THE SOFTWARE. |
| 22 | * |
| 23 | * Authors: |
| 24 | * Eric Anholt <eric@anholt.net> |
| 25 | * Keith Packard <keithp@keithp.com> |
| 26 | * |
| 27 | */ |
| 28 | |
| 29 | #include <linux/seq_file.h> |
Damien Lespiau | b2c88f5 | 2013-10-15 18:55:29 +0100 | [diff] [blame] | 30 | #include <linux/circ_buf.h> |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 31 | #include <linux/ctype.h> |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 32 | #include <linux/debugfs.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 33 | #include <linux/slab.h> |
Paul Gortmaker | 2d1a8a4 | 2011-08-30 18:16:33 -0400 | [diff] [blame] | 34 | #include <linux/export.h> |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 35 | #include <linux/list_sort.h> |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 36 | #include <asm/msr-index.h> |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 37 | #include <drm/drmP.h> |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 38 | #include "intel_drv.h" |
Chris Wilson | e5c6526 | 2010-11-01 11:35:28 +0000 | [diff] [blame] | 39 | #include "intel_ringbuffer.h" |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 40 | #include <drm/i915_drm.h> |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 41 | #include "i915_drv.h" |
| 42 | |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 43 | #if defined(CONFIG_DEBUG_FS) |
| 44 | |
Chris Wilson | f13d3f7 | 2010-09-20 17:36:15 +0100 | [diff] [blame] | 45 | enum { |
Chris Wilson | 69dc498 | 2010-10-19 10:36:51 +0100 | [diff] [blame] | 46 | ACTIVE_LIST, |
Chris Wilson | f13d3f7 | 2010-09-20 17:36:15 +0100 | [diff] [blame] | 47 | INACTIVE_LIST, |
Chris Wilson | d21d597 | 2010-09-26 11:19:33 +0100 | [diff] [blame] | 48 | PINNED_LIST, |
Chris Wilson | f13d3f7 | 2010-09-20 17:36:15 +0100 | [diff] [blame] | 49 | }; |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 50 | |
Chris Wilson | 70d39fe | 2010-08-25 16:03:34 +0100 | [diff] [blame] | 51 | static const char *yesno(int v) |
| 52 | { |
| 53 | return v ? "yes" : "no"; |
| 54 | } |
| 55 | |
Damien Lespiau | 497666d | 2013-10-15 18:55:39 +0100 | [diff] [blame] | 56 | /* As the drm_debugfs_init() routines are called before dev->dev_private is |
| 57 | * allocated we need to hook into the minor for release. */ |
| 58 | static int |
| 59 | drm_add_fake_info_node(struct drm_minor *minor, |
| 60 | struct dentry *ent, |
| 61 | const void *key) |
| 62 | { |
| 63 | struct drm_info_node *node; |
| 64 | |
| 65 | node = kmalloc(sizeof(*node), GFP_KERNEL); |
| 66 | if (node == NULL) { |
| 67 | debugfs_remove(ent); |
| 68 | return -ENOMEM; |
| 69 | } |
| 70 | |
| 71 | node->minor = minor; |
| 72 | node->dent = ent; |
| 73 | node->info_ent = (void *) key; |
| 74 | |
| 75 | mutex_lock(&minor->debugfs_lock); |
| 76 | list_add(&node->list, &minor->debugfs_list); |
| 77 | mutex_unlock(&minor->debugfs_lock); |
| 78 | |
| 79 | return 0; |
| 80 | } |
| 81 | |
Chris Wilson | 70d39fe | 2010-08-25 16:03:34 +0100 | [diff] [blame] | 82 | static int i915_capabilities(struct seq_file *m, void *data) |
| 83 | { |
| 84 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 85 | struct drm_device *dev = node->minor->dev; |
| 86 | const struct intel_device_info *info = INTEL_INFO(dev); |
| 87 | |
| 88 | seq_printf(m, "gen: %d\n", info->gen); |
Paulo Zanoni | 03d00ac | 2011-10-14 18:17:41 -0300 | [diff] [blame] | 89 | seq_printf(m, "pch: %d\n", INTEL_PCH_TYPE(dev)); |
Damien Lespiau | 79fc46d | 2013-04-23 16:37:17 +0100 | [diff] [blame] | 90 | #define PRINT_FLAG(x) seq_printf(m, #x ": %s\n", yesno(info->x)) |
| 91 | #define SEP_SEMICOLON ; |
| 92 | DEV_INFO_FOR_EACH_FLAG(PRINT_FLAG, SEP_SEMICOLON); |
| 93 | #undef PRINT_FLAG |
| 94 | #undef SEP_SEMICOLON |
Chris Wilson | 70d39fe | 2010-08-25 16:03:34 +0100 | [diff] [blame] | 95 | |
| 96 | return 0; |
| 97 | } |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 98 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 99 | static const char *get_pin_flag(struct drm_i915_gem_object *obj) |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 100 | { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 101 | if (obj->user_pin_count > 0) |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 102 | return "P"; |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 103 | else if (obj->pin_count > 0) |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 104 | return "p"; |
| 105 | else |
| 106 | return " "; |
| 107 | } |
| 108 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 109 | static const char *get_tiling_flag(struct drm_i915_gem_object *obj) |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 110 | { |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 111 | switch (obj->tiling_mode) { |
| 112 | default: |
| 113 | case I915_TILING_NONE: return " "; |
| 114 | case I915_TILING_X: return "X"; |
| 115 | case I915_TILING_Y: return "Y"; |
| 116 | } |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 117 | } |
| 118 | |
Ben Widawsky | 1d693bc | 2013-07-31 17:00:00 -0700 | [diff] [blame] | 119 | static inline const char *get_global_flag(struct drm_i915_gem_object *obj) |
| 120 | { |
| 121 | return obj->has_global_gtt_mapping ? "g" : " "; |
| 122 | } |
| 123 | |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 124 | static void |
| 125 | describe_obj(struct seq_file *m, struct drm_i915_gem_object *obj) |
| 126 | { |
Ben Widawsky | 1d693bc | 2013-07-31 17:00:00 -0700 | [diff] [blame] | 127 | struct i915_vma *vma; |
Ville Syrjälä | fb1ae91 | 2013-08-22 19:21:30 +0300 | [diff] [blame] | 128 | seq_printf(m, "%pK: %s%s%s %8zdKiB %02x %02x %u %u %u%s%s%s", |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 129 | &obj->base, |
| 130 | get_pin_flag(obj), |
| 131 | get_tiling_flag(obj), |
Ben Widawsky | 1d693bc | 2013-07-31 17:00:00 -0700 | [diff] [blame] | 132 | get_global_flag(obj), |
Eric Anholt | a05a586 | 2011-12-20 08:54:15 -0800 | [diff] [blame] | 133 | obj->base.size / 1024, |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 134 | obj->base.read_domains, |
| 135 | obj->base.write_domain, |
Chris Wilson | 0201f1e | 2012-07-20 12:41:01 +0100 | [diff] [blame] | 136 | obj->last_read_seqno, |
| 137 | obj->last_write_seqno, |
Chris Wilson | caea747 | 2010-11-12 13:53:37 +0000 | [diff] [blame] | 138 | obj->last_fenced_seqno, |
Mika Kuoppala | 84734a0 | 2013-07-12 16:50:57 +0300 | [diff] [blame] | 139 | i915_cache_level_str(obj->cache_level), |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 140 | obj->dirty ? " dirty" : "", |
| 141 | obj->madv == I915_MADV_DONTNEED ? " purgeable" : ""); |
| 142 | if (obj->base.name) |
| 143 | seq_printf(m, " (name: %d)", obj->base.name); |
Chris Wilson | c110a6d | 2012-08-11 15:41:02 +0100 | [diff] [blame] | 144 | if (obj->pin_count) |
| 145 | seq_printf(m, " (pinned x %d)", obj->pin_count); |
Chris Wilson | cc98b41 | 2013-08-09 12:25:09 +0100 | [diff] [blame] | 146 | if (obj->pin_display) |
| 147 | seq_printf(m, " (display)"); |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 148 | if (obj->fence_reg != I915_FENCE_REG_NONE) |
| 149 | seq_printf(m, " (fence: %d)", obj->fence_reg); |
Ben Widawsky | 1d693bc | 2013-07-31 17:00:00 -0700 | [diff] [blame] | 150 | list_for_each_entry(vma, &obj->vma_list, vma_link) { |
| 151 | if (!i915_is_ggtt(vma->vm)) |
| 152 | seq_puts(m, " (pp"); |
| 153 | else |
| 154 | seq_puts(m, " (g"); |
| 155 | seq_printf(m, "gtt offset: %08lx, size: %08lx)", |
| 156 | vma->node.start, vma->node.size); |
| 157 | } |
Chris Wilson | c1ad11f | 2012-11-15 11:32:21 +0000 | [diff] [blame] | 158 | if (obj->stolen) |
| 159 | seq_printf(m, " (stolen: %08lx)", obj->stolen->start); |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 160 | if (obj->pin_mappable || obj->fault_mappable) { |
| 161 | char s[3], *t = s; |
| 162 | if (obj->pin_mappable) |
| 163 | *t++ = 'p'; |
| 164 | if (obj->fault_mappable) |
| 165 | *t++ = 'f'; |
| 166 | *t = '\0'; |
| 167 | seq_printf(m, " (%s mappable)", s); |
| 168 | } |
Chris Wilson | 69dc498 | 2010-10-19 10:36:51 +0100 | [diff] [blame] | 169 | if (obj->ring != NULL) |
| 170 | seq_printf(m, " (%s)", obj->ring->name); |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 171 | } |
| 172 | |
Ben Widawsky | 3ccfd19 | 2013-09-18 19:03:18 -0700 | [diff] [blame] | 173 | static void describe_ctx(struct seq_file *m, struct i915_hw_context *ctx) |
| 174 | { |
| 175 | seq_putc(m, ctx->is_initialized ? 'I' : 'i'); |
| 176 | seq_putc(m, ctx->remap_slice ? 'R' : 'r'); |
| 177 | seq_putc(m, ' '); |
| 178 | } |
| 179 | |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 180 | static int i915_gem_object_list_info(struct seq_file *m, void *data) |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 181 | { |
| 182 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 183 | uintptr_t list = (uintptr_t) node->info_ent->data; |
| 184 | struct list_head *head; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 185 | struct drm_device *dev = node->minor->dev; |
Ben Widawsky | 5cef07e | 2013-07-16 16:50:08 -0700 | [diff] [blame] | 186 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 187 | struct i915_address_space *vm = &dev_priv->gtt.base; |
Ben Widawsky | ca191b1 | 2013-07-31 17:00:14 -0700 | [diff] [blame] | 188 | struct i915_vma *vma; |
Chris Wilson | 8f2480f | 2010-09-26 11:44:19 +0100 | [diff] [blame] | 189 | size_t total_obj_size, total_gtt_size; |
| 190 | int count, ret; |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 191 | |
| 192 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 193 | if (ret) |
| 194 | return ret; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 195 | |
Ben Widawsky | ca191b1 | 2013-07-31 17:00:14 -0700 | [diff] [blame] | 196 | /* FIXME: the user of this interface might want more than just GGTT */ |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 197 | switch (list) { |
| 198 | case ACTIVE_LIST: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 199 | seq_puts(m, "Active:\n"); |
Ben Widawsky | 5cef07e | 2013-07-16 16:50:08 -0700 | [diff] [blame] | 200 | head = &vm->active_list; |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 201 | break; |
| 202 | case INACTIVE_LIST: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 203 | seq_puts(m, "Inactive:\n"); |
Ben Widawsky | 5cef07e | 2013-07-16 16:50:08 -0700 | [diff] [blame] | 204 | head = &vm->inactive_list; |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 205 | break; |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 206 | default: |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 207 | mutex_unlock(&dev->struct_mutex); |
| 208 | return -EINVAL; |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 209 | } |
| 210 | |
Chris Wilson | 8f2480f | 2010-09-26 11:44:19 +0100 | [diff] [blame] | 211 | total_obj_size = total_gtt_size = count = 0; |
Ben Widawsky | ca191b1 | 2013-07-31 17:00:14 -0700 | [diff] [blame] | 212 | list_for_each_entry(vma, head, mm_list) { |
| 213 | seq_printf(m, " "); |
| 214 | describe_obj(m, vma->obj); |
| 215 | seq_printf(m, "\n"); |
| 216 | total_obj_size += vma->obj->base.size; |
| 217 | total_gtt_size += vma->node.size; |
Chris Wilson | 8f2480f | 2010-09-26 11:44:19 +0100 | [diff] [blame] | 218 | count++; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 219 | } |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 220 | mutex_unlock(&dev->struct_mutex); |
Carl Worth | 5e118f4 | 2009-03-20 11:54:25 -0700 | [diff] [blame] | 221 | |
Chris Wilson | 8f2480f | 2010-09-26 11:44:19 +0100 | [diff] [blame] | 222 | seq_printf(m, "Total %d objects, %zu bytes, %zu GTT size\n", |
| 223 | count, total_obj_size, total_gtt_size); |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 224 | return 0; |
| 225 | } |
| 226 | |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 227 | static int obj_rank_by_stolen(void *priv, |
| 228 | struct list_head *A, struct list_head *B) |
| 229 | { |
| 230 | struct drm_i915_gem_object *a = |
Ben Widawsky | b25cb2f | 2013-08-14 11:38:33 +0200 | [diff] [blame] | 231 | container_of(A, struct drm_i915_gem_object, obj_exec_link); |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 232 | struct drm_i915_gem_object *b = |
Ben Widawsky | b25cb2f | 2013-08-14 11:38:33 +0200 | [diff] [blame] | 233 | container_of(B, struct drm_i915_gem_object, obj_exec_link); |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 234 | |
| 235 | return a->stolen->start - b->stolen->start; |
| 236 | } |
| 237 | |
| 238 | static int i915_gem_stolen_list_info(struct seq_file *m, void *data) |
| 239 | { |
| 240 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 241 | struct drm_device *dev = node->minor->dev; |
| 242 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 243 | struct drm_i915_gem_object *obj; |
| 244 | size_t total_obj_size, total_gtt_size; |
| 245 | LIST_HEAD(stolen); |
| 246 | int count, ret; |
| 247 | |
| 248 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 249 | if (ret) |
| 250 | return ret; |
| 251 | |
| 252 | total_obj_size = total_gtt_size = count = 0; |
| 253 | list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) { |
| 254 | if (obj->stolen == NULL) |
| 255 | continue; |
| 256 | |
Ben Widawsky | b25cb2f | 2013-08-14 11:38:33 +0200 | [diff] [blame] | 257 | list_add(&obj->obj_exec_link, &stolen); |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 258 | |
| 259 | total_obj_size += obj->base.size; |
| 260 | total_gtt_size += i915_gem_obj_ggtt_size(obj); |
| 261 | count++; |
| 262 | } |
| 263 | list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) { |
| 264 | if (obj->stolen == NULL) |
| 265 | continue; |
| 266 | |
Ben Widawsky | b25cb2f | 2013-08-14 11:38:33 +0200 | [diff] [blame] | 267 | list_add(&obj->obj_exec_link, &stolen); |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 268 | |
| 269 | total_obj_size += obj->base.size; |
| 270 | count++; |
| 271 | } |
| 272 | list_sort(NULL, &stolen, obj_rank_by_stolen); |
| 273 | seq_puts(m, "Stolen:\n"); |
| 274 | while (!list_empty(&stolen)) { |
Ben Widawsky | b25cb2f | 2013-08-14 11:38:33 +0200 | [diff] [blame] | 275 | obj = list_first_entry(&stolen, typeof(*obj), obj_exec_link); |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 276 | seq_puts(m, " "); |
| 277 | describe_obj(m, obj); |
| 278 | seq_putc(m, '\n'); |
Ben Widawsky | b25cb2f | 2013-08-14 11:38:33 +0200 | [diff] [blame] | 279 | list_del_init(&obj->obj_exec_link); |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 280 | } |
| 281 | mutex_unlock(&dev->struct_mutex); |
| 282 | |
| 283 | seq_printf(m, "Total %d objects, %zu bytes, %zu GTT size\n", |
| 284 | count, total_obj_size, total_gtt_size); |
| 285 | return 0; |
| 286 | } |
| 287 | |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 288 | #define count_objects(list, member) do { \ |
| 289 | list_for_each_entry(obj, list, member) { \ |
Ben Widawsky | f343c5f | 2013-07-05 14:41:04 -0700 | [diff] [blame] | 290 | size += i915_gem_obj_ggtt_size(obj); \ |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 291 | ++count; \ |
| 292 | if (obj->map_and_fenceable) { \ |
Ben Widawsky | f343c5f | 2013-07-05 14:41:04 -0700 | [diff] [blame] | 293 | mappable_size += i915_gem_obj_ggtt_size(obj); \ |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 294 | ++mappable_count; \ |
| 295 | } \ |
| 296 | } \ |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 297 | } while (0) |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 298 | |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 299 | struct file_stats { |
| 300 | int count; |
| 301 | size_t total, active, inactive, unbound; |
| 302 | }; |
| 303 | |
| 304 | static int per_file_stats(int id, void *ptr, void *data) |
| 305 | { |
| 306 | struct drm_i915_gem_object *obj = ptr; |
| 307 | struct file_stats *stats = data; |
| 308 | |
| 309 | stats->count++; |
| 310 | stats->total += obj->base.size; |
| 311 | |
Ben Widawsky | f343c5f | 2013-07-05 14:41:04 -0700 | [diff] [blame] | 312 | if (i915_gem_obj_ggtt_bound(obj)) { |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 313 | if (!list_empty(&obj->ring_list)) |
| 314 | stats->active += obj->base.size; |
| 315 | else |
| 316 | stats->inactive += obj->base.size; |
| 317 | } else { |
| 318 | if (!list_empty(&obj->global_list)) |
| 319 | stats->unbound += obj->base.size; |
| 320 | } |
| 321 | |
| 322 | return 0; |
| 323 | } |
| 324 | |
Ben Widawsky | ca191b1 | 2013-07-31 17:00:14 -0700 | [diff] [blame] | 325 | #define count_vmas(list, member) do { \ |
| 326 | list_for_each_entry(vma, list, member) { \ |
| 327 | size += i915_gem_obj_ggtt_size(vma->obj); \ |
| 328 | ++count; \ |
| 329 | if (vma->obj->map_and_fenceable) { \ |
| 330 | mappable_size += i915_gem_obj_ggtt_size(vma->obj); \ |
| 331 | ++mappable_count; \ |
| 332 | } \ |
| 333 | } \ |
| 334 | } while (0) |
| 335 | |
| 336 | static int i915_gem_object_info(struct seq_file *m, void* data) |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 337 | { |
| 338 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 339 | struct drm_device *dev = node->minor->dev; |
| 340 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | b7abb71 | 2012-08-20 11:33:30 +0200 | [diff] [blame] | 341 | u32 count, mappable_count, purgeable_count; |
| 342 | size_t size, mappable_size, purgeable_size; |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 343 | struct drm_i915_gem_object *obj; |
Ben Widawsky | 5cef07e | 2013-07-16 16:50:08 -0700 | [diff] [blame] | 344 | struct i915_address_space *vm = &dev_priv->gtt.base; |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 345 | struct drm_file *file; |
Ben Widawsky | ca191b1 | 2013-07-31 17:00:14 -0700 | [diff] [blame] | 346 | struct i915_vma *vma; |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 347 | int ret; |
| 348 | |
| 349 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 350 | if (ret) |
| 351 | return ret; |
| 352 | |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 353 | seq_printf(m, "%u objects, %zu bytes\n", |
| 354 | dev_priv->mm.object_count, |
| 355 | dev_priv->mm.object_memory); |
| 356 | |
| 357 | size = count = mappable_size = mappable_count = 0; |
Ben Widawsky | 35c20a6 | 2013-05-31 11:28:48 -0700 | [diff] [blame] | 358 | count_objects(&dev_priv->mm.bound_list, global_list); |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 359 | seq_printf(m, "%u [%u] objects, %zu [%zu] bytes in gtt\n", |
| 360 | count, mappable_count, size, mappable_size); |
| 361 | |
| 362 | size = count = mappable_size = mappable_count = 0; |
Ben Widawsky | ca191b1 | 2013-07-31 17:00:14 -0700 | [diff] [blame] | 363 | count_vmas(&vm->active_list, mm_list); |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 364 | seq_printf(m, " %u [%u] active objects, %zu [%zu] bytes\n", |
| 365 | count, mappable_count, size, mappable_size); |
| 366 | |
| 367 | size = count = mappable_size = mappable_count = 0; |
Ben Widawsky | ca191b1 | 2013-07-31 17:00:14 -0700 | [diff] [blame] | 368 | count_vmas(&vm->inactive_list, mm_list); |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 369 | seq_printf(m, " %u [%u] inactive objects, %zu [%zu] bytes\n", |
| 370 | count, mappable_count, size, mappable_size); |
| 371 | |
Chris Wilson | b7abb71 | 2012-08-20 11:33:30 +0200 | [diff] [blame] | 372 | size = count = purgeable_size = purgeable_count = 0; |
Ben Widawsky | 35c20a6 | 2013-05-31 11:28:48 -0700 | [diff] [blame] | 373 | list_for_each_entry(obj, &dev_priv->mm.unbound_list, global_list) { |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 374 | size += obj->base.size, ++count; |
Chris Wilson | b7abb71 | 2012-08-20 11:33:30 +0200 | [diff] [blame] | 375 | if (obj->madv == I915_MADV_DONTNEED) |
| 376 | purgeable_size += obj->base.size, ++purgeable_count; |
| 377 | } |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 378 | seq_printf(m, "%u unbound objects, %zu bytes\n", count, size); |
| 379 | |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 380 | size = count = mappable_size = mappable_count = 0; |
Ben Widawsky | 35c20a6 | 2013-05-31 11:28:48 -0700 | [diff] [blame] | 381 | list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) { |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 382 | if (obj->fault_mappable) { |
Ben Widawsky | f343c5f | 2013-07-05 14:41:04 -0700 | [diff] [blame] | 383 | size += i915_gem_obj_ggtt_size(obj); |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 384 | ++count; |
| 385 | } |
| 386 | if (obj->pin_mappable) { |
Ben Widawsky | f343c5f | 2013-07-05 14:41:04 -0700 | [diff] [blame] | 387 | mappable_size += i915_gem_obj_ggtt_size(obj); |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 388 | ++mappable_count; |
| 389 | } |
Chris Wilson | b7abb71 | 2012-08-20 11:33:30 +0200 | [diff] [blame] | 390 | if (obj->madv == I915_MADV_DONTNEED) { |
| 391 | purgeable_size += obj->base.size; |
| 392 | ++purgeable_count; |
| 393 | } |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 394 | } |
Chris Wilson | b7abb71 | 2012-08-20 11:33:30 +0200 | [diff] [blame] | 395 | seq_printf(m, "%u purgeable objects, %zu bytes\n", |
| 396 | purgeable_count, purgeable_size); |
Chris Wilson | 6299f99 | 2010-11-24 12:23:44 +0000 | [diff] [blame] | 397 | seq_printf(m, "%u pinned mappable objects, %zu bytes\n", |
| 398 | mappable_count, mappable_size); |
| 399 | seq_printf(m, "%u fault mappable objects, %zu bytes\n", |
| 400 | count, size); |
| 401 | |
Ben Widawsky | 93d1879 | 2013-01-17 12:45:17 -0800 | [diff] [blame] | 402 | seq_printf(m, "%zu [%lu] gtt total\n", |
Ben Widawsky | 853ba5d | 2013-07-16 16:50:05 -0700 | [diff] [blame] | 403 | dev_priv->gtt.base.total, |
| 404 | dev_priv->gtt.mappable_end - dev_priv->gtt.base.start); |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 405 | |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 406 | seq_putc(m, '\n'); |
Chris Wilson | 2db8e9d | 2013-06-04 23:49:08 +0100 | [diff] [blame] | 407 | list_for_each_entry_reverse(file, &dev->filelist, lhead) { |
| 408 | struct file_stats stats; |
| 409 | |
| 410 | memset(&stats, 0, sizeof(stats)); |
| 411 | idr_for_each(&file->object_idr, per_file_stats, &stats); |
| 412 | seq_printf(m, "%s: %u objects, %zu bytes (%zu active, %zu inactive, %zu unbound)\n", |
| 413 | get_pid_task(file->pid, PIDTYPE_PID)->comm, |
| 414 | stats.count, |
| 415 | stats.total, |
| 416 | stats.active, |
| 417 | stats.inactive, |
| 418 | stats.unbound); |
| 419 | } |
| 420 | |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 421 | mutex_unlock(&dev->struct_mutex); |
| 422 | |
| 423 | return 0; |
| 424 | } |
| 425 | |
Damien Lespiau | aee56cf | 2013-06-24 22:59:49 +0100 | [diff] [blame] | 426 | static int i915_gem_gtt_info(struct seq_file *m, void *data) |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 427 | { |
| 428 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 429 | struct drm_device *dev = node->minor->dev; |
Chris Wilson | 1b50247 | 2012-04-24 15:47:30 +0100 | [diff] [blame] | 430 | uintptr_t list = (uintptr_t) node->info_ent->data; |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 431 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 432 | struct drm_i915_gem_object *obj; |
| 433 | size_t total_obj_size, total_gtt_size; |
| 434 | int count, ret; |
| 435 | |
| 436 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 437 | if (ret) |
| 438 | return ret; |
| 439 | |
| 440 | total_obj_size = total_gtt_size = count = 0; |
Ben Widawsky | 35c20a6 | 2013-05-31 11:28:48 -0700 | [diff] [blame] | 441 | list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) { |
Chris Wilson | 1b50247 | 2012-04-24 15:47:30 +0100 | [diff] [blame] | 442 | if (list == PINNED_LIST && obj->pin_count == 0) |
| 443 | continue; |
| 444 | |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 445 | seq_puts(m, " "); |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 446 | describe_obj(m, obj); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 447 | seq_putc(m, '\n'); |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 448 | total_obj_size += obj->base.size; |
Ben Widawsky | f343c5f | 2013-07-05 14:41:04 -0700 | [diff] [blame] | 449 | total_gtt_size += i915_gem_obj_ggtt_size(obj); |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 450 | count++; |
| 451 | } |
| 452 | |
| 453 | mutex_unlock(&dev->struct_mutex); |
| 454 | |
| 455 | seq_printf(m, "Total %d objects, %zu bytes, %zu GTT size\n", |
| 456 | count, total_obj_size, total_gtt_size); |
| 457 | |
| 458 | return 0; |
| 459 | } |
| 460 | |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 461 | static int i915_gem_pageflip_info(struct seq_file *m, void *data) |
| 462 | { |
| 463 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 464 | struct drm_device *dev = node->minor->dev; |
| 465 | unsigned long flags; |
| 466 | struct intel_crtc *crtc; |
| 467 | |
| 468 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) { |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 469 | const char pipe = pipe_name(crtc->pipe); |
| 470 | const char plane = plane_name(crtc->plane); |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 471 | struct intel_unpin_work *work; |
| 472 | |
| 473 | spin_lock_irqsave(&dev->event_lock, flags); |
| 474 | work = crtc->unpin_work; |
| 475 | if (work == NULL) { |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 476 | seq_printf(m, "No flip due on pipe %c (plane %c)\n", |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 477 | pipe, plane); |
| 478 | } else { |
Chris Wilson | e7d841c | 2012-12-03 11:36:30 +0000 | [diff] [blame] | 479 | if (atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) { |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 480 | seq_printf(m, "Flip queued on pipe %c (plane %c)\n", |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 481 | pipe, plane); |
| 482 | } else { |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 483 | seq_printf(m, "Flip pending (waiting for vsync) on pipe %c (plane %c)\n", |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 484 | pipe, plane); |
| 485 | } |
| 486 | if (work->enable_stall_check) |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 487 | seq_puts(m, "Stall check enabled, "); |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 488 | else |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 489 | seq_puts(m, "Stall check waiting for page flip ioctl, "); |
Chris Wilson | e7d841c | 2012-12-03 11:36:30 +0000 | [diff] [blame] | 490 | seq_printf(m, "%d prepares\n", atomic_read(&work->pending)); |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 491 | |
| 492 | if (work->old_fb_obj) { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 493 | struct drm_i915_gem_object *obj = work->old_fb_obj; |
| 494 | if (obj) |
Ben Widawsky | f343c5f | 2013-07-05 14:41:04 -0700 | [diff] [blame] | 495 | seq_printf(m, "Old framebuffer gtt_offset 0x%08lx\n", |
| 496 | i915_gem_obj_ggtt_offset(obj)); |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 497 | } |
| 498 | if (work->pending_flip_obj) { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 499 | struct drm_i915_gem_object *obj = work->pending_flip_obj; |
| 500 | if (obj) |
Ben Widawsky | f343c5f | 2013-07-05 14:41:04 -0700 | [diff] [blame] | 501 | seq_printf(m, "New framebuffer gtt_offset 0x%08lx\n", |
| 502 | i915_gem_obj_ggtt_offset(obj)); |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 503 | } |
| 504 | } |
| 505 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 506 | } |
| 507 | |
| 508 | return 0; |
| 509 | } |
| 510 | |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 511 | static int i915_gem_request_info(struct seq_file *m, void *data) |
| 512 | { |
| 513 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 514 | struct drm_device *dev = node->minor->dev; |
| 515 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 516 | struct intel_ring_buffer *ring; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 517 | struct drm_i915_gem_request *gem_request; |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 518 | int ret, count, i; |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 519 | |
| 520 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 521 | if (ret) |
| 522 | return ret; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 523 | |
Chris Wilson | c2c347a9 | 2010-10-27 15:11:53 +0100 | [diff] [blame] | 524 | count = 0; |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 525 | for_each_ring(ring, dev_priv, i) { |
| 526 | if (list_empty(&ring->request_list)) |
| 527 | continue; |
| 528 | |
| 529 | seq_printf(m, "%s requests:\n", ring->name); |
Chris Wilson | c2c347a9 | 2010-10-27 15:11:53 +0100 | [diff] [blame] | 530 | list_for_each_entry(gem_request, |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 531 | &ring->request_list, |
Chris Wilson | c2c347a9 | 2010-10-27 15:11:53 +0100 | [diff] [blame] | 532 | list) { |
| 533 | seq_printf(m, " %d @ %d\n", |
| 534 | gem_request->seqno, |
| 535 | (int) (jiffies - gem_request->emitted_jiffies)); |
| 536 | } |
| 537 | count++; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 538 | } |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 539 | mutex_unlock(&dev->struct_mutex); |
| 540 | |
Chris Wilson | c2c347a9 | 2010-10-27 15:11:53 +0100 | [diff] [blame] | 541 | if (count == 0) |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 542 | seq_puts(m, "No requests\n"); |
Chris Wilson | c2c347a9 | 2010-10-27 15:11:53 +0100 | [diff] [blame] | 543 | |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 544 | return 0; |
| 545 | } |
| 546 | |
Chris Wilson | b222349 | 2010-10-27 15:27:33 +0100 | [diff] [blame] | 547 | static void i915_ring_seqno_info(struct seq_file *m, |
| 548 | struct intel_ring_buffer *ring) |
| 549 | { |
| 550 | if (ring->get_seqno) { |
Mika Kuoppala | 43a7b92 | 2012-12-04 15:12:01 +0200 | [diff] [blame] | 551 | seq_printf(m, "Current sequence (%s): %u\n", |
Chris Wilson | b2eadbc | 2012-08-09 10:58:30 +0100 | [diff] [blame] | 552 | ring->name, ring->get_seqno(ring, false)); |
Chris Wilson | b222349 | 2010-10-27 15:27:33 +0100 | [diff] [blame] | 553 | } |
| 554 | } |
| 555 | |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 556 | static int i915_gem_seqno_info(struct seq_file *m, void *data) |
| 557 | { |
| 558 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 559 | struct drm_device *dev = node->minor->dev; |
| 560 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 561 | struct intel_ring_buffer *ring; |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 562 | int ret, i; |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 563 | |
| 564 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 565 | if (ret) |
| 566 | return ret; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 567 | |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 568 | for_each_ring(ring, dev_priv, i) |
| 569 | i915_ring_seqno_info(m, ring); |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 570 | |
| 571 | mutex_unlock(&dev->struct_mutex); |
| 572 | |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 573 | return 0; |
| 574 | } |
| 575 | |
| 576 | |
| 577 | static int i915_interrupt_info(struct seq_file *m, void *data) |
| 578 | { |
| 579 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 580 | struct drm_device *dev = node->minor->dev; |
| 581 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 582 | struct intel_ring_buffer *ring; |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 583 | int ret, i, pipe; |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 584 | |
| 585 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 586 | if (ret) |
| 587 | return ret; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 588 | |
Ben Widawsky | a123f15 | 2013-11-02 21:07:10 -0700 | [diff] [blame] | 589 | if (INTEL_INFO(dev)->gen >= 8) { |
| 590 | int i; |
| 591 | seq_printf(m, "Master Interrupt Control:\t%08x\n", |
| 592 | I915_READ(GEN8_MASTER_IRQ)); |
| 593 | |
| 594 | for (i = 0; i < 4; i++) { |
| 595 | seq_printf(m, "GT Interrupt IMR %d:\t%08x\n", |
| 596 | i, I915_READ(GEN8_GT_IMR(i))); |
| 597 | seq_printf(m, "GT Interrupt IIR %d:\t%08x\n", |
| 598 | i, I915_READ(GEN8_GT_IIR(i))); |
| 599 | seq_printf(m, "GT Interrupt IER %d:\t%08x\n", |
| 600 | i, I915_READ(GEN8_GT_IER(i))); |
| 601 | } |
| 602 | |
| 603 | for_each_pipe(i) { |
| 604 | seq_printf(m, "Pipe %c IMR:\t%08x\n", |
| 605 | pipe_name(i), |
| 606 | I915_READ(GEN8_DE_PIPE_IMR(i))); |
| 607 | seq_printf(m, "Pipe %c IIR:\t%08x\n", |
| 608 | pipe_name(i), |
| 609 | I915_READ(GEN8_DE_PIPE_IIR(i))); |
| 610 | seq_printf(m, "Pipe %c IER:\t%08x\n", |
| 611 | pipe_name(i), |
| 612 | I915_READ(GEN8_DE_PIPE_IER(i))); |
| 613 | } |
| 614 | |
| 615 | seq_printf(m, "Display Engine port interrupt mask:\t%08x\n", |
| 616 | I915_READ(GEN8_DE_PORT_IMR)); |
| 617 | seq_printf(m, "Display Engine port interrupt identity:\t%08x\n", |
| 618 | I915_READ(GEN8_DE_PORT_IIR)); |
| 619 | seq_printf(m, "Display Engine port interrupt enable:\t%08x\n", |
| 620 | I915_READ(GEN8_DE_PORT_IER)); |
| 621 | |
| 622 | seq_printf(m, "Display Engine misc interrupt mask:\t%08x\n", |
| 623 | I915_READ(GEN8_DE_MISC_IMR)); |
| 624 | seq_printf(m, "Display Engine misc interrupt identity:\t%08x\n", |
| 625 | I915_READ(GEN8_DE_MISC_IIR)); |
| 626 | seq_printf(m, "Display Engine misc interrupt enable:\t%08x\n", |
| 627 | I915_READ(GEN8_DE_MISC_IER)); |
| 628 | |
| 629 | seq_printf(m, "PCU interrupt mask:\t%08x\n", |
| 630 | I915_READ(GEN8_PCU_IMR)); |
| 631 | seq_printf(m, "PCU interrupt identity:\t%08x\n", |
| 632 | I915_READ(GEN8_PCU_IIR)); |
| 633 | seq_printf(m, "PCU interrupt enable:\t%08x\n", |
| 634 | I915_READ(GEN8_PCU_IER)); |
| 635 | } else if (IS_VALLEYVIEW(dev)) { |
Jesse Barnes | 7e231dbe | 2012-03-28 13:39:38 -0700 | [diff] [blame] | 636 | seq_printf(m, "Display IER:\t%08x\n", |
| 637 | I915_READ(VLV_IER)); |
| 638 | seq_printf(m, "Display IIR:\t%08x\n", |
| 639 | I915_READ(VLV_IIR)); |
| 640 | seq_printf(m, "Display IIR_RW:\t%08x\n", |
| 641 | I915_READ(VLV_IIR_RW)); |
| 642 | seq_printf(m, "Display IMR:\t%08x\n", |
| 643 | I915_READ(VLV_IMR)); |
| 644 | for_each_pipe(pipe) |
| 645 | seq_printf(m, "Pipe %c stat:\t%08x\n", |
| 646 | pipe_name(pipe), |
| 647 | I915_READ(PIPESTAT(pipe))); |
| 648 | |
| 649 | seq_printf(m, "Master IER:\t%08x\n", |
| 650 | I915_READ(VLV_MASTER_IER)); |
| 651 | |
| 652 | seq_printf(m, "Render IER:\t%08x\n", |
| 653 | I915_READ(GTIER)); |
| 654 | seq_printf(m, "Render IIR:\t%08x\n", |
| 655 | I915_READ(GTIIR)); |
| 656 | seq_printf(m, "Render IMR:\t%08x\n", |
| 657 | I915_READ(GTIMR)); |
| 658 | |
| 659 | seq_printf(m, "PM IER:\t\t%08x\n", |
| 660 | I915_READ(GEN6_PMIER)); |
| 661 | seq_printf(m, "PM IIR:\t\t%08x\n", |
| 662 | I915_READ(GEN6_PMIIR)); |
| 663 | seq_printf(m, "PM IMR:\t\t%08x\n", |
| 664 | I915_READ(GEN6_PMIMR)); |
| 665 | |
| 666 | seq_printf(m, "Port hotplug:\t%08x\n", |
| 667 | I915_READ(PORT_HOTPLUG_EN)); |
| 668 | seq_printf(m, "DPFLIPSTAT:\t%08x\n", |
| 669 | I915_READ(VLV_DPFLIPSTAT)); |
| 670 | seq_printf(m, "DPINVGTT:\t%08x\n", |
| 671 | I915_READ(DPINVGTT)); |
| 672 | |
| 673 | } else if (!HAS_PCH_SPLIT(dev)) { |
Zhenyu Wang | 5f6a169 | 2009-08-10 21:37:24 +0800 | [diff] [blame] | 674 | seq_printf(m, "Interrupt enable: %08x\n", |
| 675 | I915_READ(IER)); |
| 676 | seq_printf(m, "Interrupt identity: %08x\n", |
| 677 | I915_READ(IIR)); |
| 678 | seq_printf(m, "Interrupt mask: %08x\n", |
| 679 | I915_READ(IMR)); |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 680 | for_each_pipe(pipe) |
| 681 | seq_printf(m, "Pipe %c stat: %08x\n", |
| 682 | pipe_name(pipe), |
| 683 | I915_READ(PIPESTAT(pipe))); |
Zhenyu Wang | 5f6a169 | 2009-08-10 21:37:24 +0800 | [diff] [blame] | 684 | } else { |
| 685 | seq_printf(m, "North Display Interrupt enable: %08x\n", |
| 686 | I915_READ(DEIER)); |
| 687 | seq_printf(m, "North Display Interrupt identity: %08x\n", |
| 688 | I915_READ(DEIIR)); |
| 689 | seq_printf(m, "North Display Interrupt mask: %08x\n", |
| 690 | I915_READ(DEIMR)); |
| 691 | seq_printf(m, "South Display Interrupt enable: %08x\n", |
| 692 | I915_READ(SDEIER)); |
| 693 | seq_printf(m, "South Display Interrupt identity: %08x\n", |
| 694 | I915_READ(SDEIIR)); |
| 695 | seq_printf(m, "South Display Interrupt mask: %08x\n", |
| 696 | I915_READ(SDEIMR)); |
| 697 | seq_printf(m, "Graphics Interrupt enable: %08x\n", |
| 698 | I915_READ(GTIER)); |
| 699 | seq_printf(m, "Graphics Interrupt identity: %08x\n", |
| 700 | I915_READ(GTIIR)); |
| 701 | seq_printf(m, "Graphics Interrupt mask: %08x\n", |
| 702 | I915_READ(GTIMR)); |
| 703 | } |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 704 | seq_printf(m, "Interrupts received: %d\n", |
| 705 | atomic_read(&dev_priv->irq_received)); |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 706 | for_each_ring(ring, dev_priv, i) { |
Ben Widawsky | a123f15 | 2013-11-02 21:07:10 -0700 | [diff] [blame] | 707 | if (INTEL_INFO(dev)->gen >= 6) { |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 708 | seq_printf(m, |
| 709 | "Graphics Interrupt mask (%s): %08x\n", |
| 710 | ring->name, I915_READ_IMR(ring)); |
Chris Wilson | 9862e60 | 2011-01-04 22:22:17 +0000 | [diff] [blame] | 711 | } |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 712 | i915_ring_seqno_info(m, ring); |
Chris Wilson | 9862e60 | 2011-01-04 22:22:17 +0000 | [diff] [blame] | 713 | } |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 714 | mutex_unlock(&dev->struct_mutex); |
| 715 | |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 716 | return 0; |
| 717 | } |
| 718 | |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 719 | static int i915_gem_fence_regs_info(struct seq_file *m, void *data) |
| 720 | { |
| 721 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 722 | struct drm_device *dev = node->minor->dev; |
| 723 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 724 | int i, ret; |
| 725 | |
| 726 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 727 | if (ret) |
| 728 | return ret; |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 729 | |
| 730 | seq_printf(m, "Reserved fences = %d\n", dev_priv->fence_reg_start); |
| 731 | seq_printf(m, "Total fences = %d\n", dev_priv->num_fence_regs); |
| 732 | for (i = 0; i < dev_priv->num_fence_regs; i++) { |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 733 | struct drm_i915_gem_object *obj = dev_priv->fence_regs[i].obj; |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 734 | |
Chris Wilson | 6c085a7 | 2012-08-20 11:40:46 +0200 | [diff] [blame] | 735 | seq_printf(m, "Fence %d, pin count = %d, object = ", |
| 736 | i, dev_priv->fence_regs[i].pin_count); |
Chris Wilson | c2c347a9 | 2010-10-27 15:11:53 +0100 | [diff] [blame] | 737 | if (obj == NULL) |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 738 | seq_puts(m, "unused"); |
Chris Wilson | c2c347a9 | 2010-10-27 15:11:53 +0100 | [diff] [blame] | 739 | else |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 740 | describe_obj(m, obj); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 741 | seq_putc(m, '\n'); |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 742 | } |
| 743 | |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 744 | mutex_unlock(&dev->struct_mutex); |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 745 | return 0; |
| 746 | } |
| 747 | |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 748 | static int i915_hws_info(struct seq_file *m, void *data) |
| 749 | { |
| 750 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 751 | struct drm_device *dev = node->minor->dev; |
| 752 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | 4066c0a | 2010-10-29 21:00:54 +0100 | [diff] [blame] | 753 | struct intel_ring_buffer *ring; |
Daniel Vetter | 1a240d4 | 2012-11-29 22:18:51 +0100 | [diff] [blame] | 754 | const u32 *hws; |
Chris Wilson | 4066c0a | 2010-10-29 21:00:54 +0100 | [diff] [blame] | 755 | int i; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 756 | |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 757 | ring = &dev_priv->ring[(uintptr_t)node->info_ent->data]; |
Daniel Vetter | 1a240d4 | 2012-11-29 22:18:51 +0100 | [diff] [blame] | 758 | hws = ring->status_page.page_addr; |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 759 | if (hws == NULL) |
| 760 | return 0; |
| 761 | |
| 762 | for (i = 0; i < 4096 / sizeof(u32) / 4; i += 4) { |
| 763 | seq_printf(m, "0x%08x: 0x%08x 0x%08x 0x%08x 0x%08x\n", |
| 764 | i * 4, |
| 765 | hws[i], hws[i + 1], hws[i + 2], hws[i + 3]); |
| 766 | } |
| 767 | return 0; |
| 768 | } |
| 769 | |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 770 | static ssize_t |
| 771 | i915_error_state_write(struct file *filp, |
| 772 | const char __user *ubuf, |
| 773 | size_t cnt, |
| 774 | loff_t *ppos) |
| 775 | { |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 776 | struct i915_error_state_file_priv *error_priv = filp->private_data; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 777 | struct drm_device *dev = error_priv->dev; |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 778 | int ret; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 779 | |
| 780 | DRM_DEBUG_DRIVER("Resetting error state\n"); |
| 781 | |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 782 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 783 | if (ret) |
| 784 | return ret; |
| 785 | |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 786 | i915_destroy_error_state(dev); |
| 787 | mutex_unlock(&dev->struct_mutex); |
| 788 | |
| 789 | return cnt; |
| 790 | } |
| 791 | |
| 792 | static int i915_error_state_open(struct inode *inode, struct file *file) |
| 793 | { |
| 794 | struct drm_device *dev = inode->i_private; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 795 | struct i915_error_state_file_priv *error_priv; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 796 | |
| 797 | error_priv = kzalloc(sizeof(*error_priv), GFP_KERNEL); |
| 798 | if (!error_priv) |
| 799 | return -ENOMEM; |
| 800 | |
| 801 | error_priv->dev = dev; |
| 802 | |
Mika Kuoppala | 95d5bfb | 2013-06-06 15:18:40 +0300 | [diff] [blame] | 803 | i915_error_state_get(dev, error_priv); |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 804 | |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 805 | file->private_data = error_priv; |
| 806 | |
| 807 | return 0; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 808 | } |
| 809 | |
| 810 | static int i915_error_state_release(struct inode *inode, struct file *file) |
| 811 | { |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 812 | struct i915_error_state_file_priv *error_priv = file->private_data; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 813 | |
Mika Kuoppala | 95d5bfb | 2013-06-06 15:18:40 +0300 | [diff] [blame] | 814 | i915_error_state_put(error_priv); |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 815 | kfree(error_priv); |
| 816 | |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 817 | return 0; |
| 818 | } |
| 819 | |
| 820 | static ssize_t i915_error_state_read(struct file *file, char __user *userbuf, |
| 821 | size_t count, loff_t *pos) |
| 822 | { |
| 823 | struct i915_error_state_file_priv *error_priv = file->private_data; |
| 824 | struct drm_i915_error_state_buf error_str; |
| 825 | loff_t tmp_pos = 0; |
| 826 | ssize_t ret_count = 0; |
Mika Kuoppala | 4dc955f | 2013-06-06 15:18:41 +0300 | [diff] [blame] | 827 | int ret; |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 828 | |
Mika Kuoppala | 4dc955f | 2013-06-06 15:18:41 +0300 | [diff] [blame] | 829 | ret = i915_error_state_buf_init(&error_str, count, *pos); |
| 830 | if (ret) |
| 831 | return ret; |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 832 | |
Mika Kuoppala | fc16b48 | 2013-06-06 15:18:39 +0300 | [diff] [blame] | 833 | ret = i915_error_state_to_str(&error_str, error_priv); |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 834 | if (ret) |
| 835 | goto out; |
| 836 | |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 837 | ret_count = simple_read_from_buffer(userbuf, count, &tmp_pos, |
| 838 | error_str.buf, |
| 839 | error_str.bytes); |
| 840 | |
| 841 | if (ret_count < 0) |
| 842 | ret = ret_count; |
| 843 | else |
| 844 | *pos = error_str.start + ret_count; |
| 845 | out: |
Mika Kuoppala | 4dc955f | 2013-06-06 15:18:41 +0300 | [diff] [blame] | 846 | i915_error_state_buf_release(&error_str); |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 847 | return ret ?: ret_count; |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 848 | } |
| 849 | |
| 850 | static const struct file_operations i915_error_state_fops = { |
| 851 | .owner = THIS_MODULE, |
| 852 | .open = i915_error_state_open, |
Mika Kuoppala | edc3d88 | 2013-05-23 13:55:35 +0300 | [diff] [blame] | 853 | .read = i915_error_state_read, |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 854 | .write = i915_error_state_write, |
| 855 | .llseek = default_llseek, |
| 856 | .release = i915_error_state_release, |
| 857 | }; |
| 858 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 859 | static int |
| 860 | i915_next_seqno_get(void *data, u64 *val) |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 861 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 862 | struct drm_device *dev = data; |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 863 | drm_i915_private_t *dev_priv = dev->dev_private; |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 864 | int ret; |
| 865 | |
| 866 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 867 | if (ret) |
| 868 | return ret; |
| 869 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 870 | *val = dev_priv->next_seqno; |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 871 | mutex_unlock(&dev->struct_mutex); |
| 872 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 873 | return 0; |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 874 | } |
| 875 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 876 | static int |
| 877 | i915_next_seqno_set(void *data, u64 val) |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 878 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 879 | struct drm_device *dev = data; |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 880 | int ret; |
| 881 | |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 882 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 883 | if (ret) |
| 884 | return ret; |
| 885 | |
Mika Kuoppala | e94fbaa | 2012-12-19 11:13:09 +0200 | [diff] [blame] | 886 | ret = i915_gem_set_seqno(dev, val); |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 887 | mutex_unlock(&dev->struct_mutex); |
| 888 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 889 | return ret; |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 890 | } |
| 891 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 892 | DEFINE_SIMPLE_ATTRIBUTE(i915_next_seqno_fops, |
| 893 | i915_next_seqno_get, i915_next_seqno_set, |
Mika Kuoppala | 3a3b4f9 | 2013-04-12 12:10:05 +0300 | [diff] [blame] | 894 | "0x%llx\n"); |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 895 | |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 896 | static int i915_rstdby_delays(struct seq_file *m, void *unused) |
| 897 | { |
| 898 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 899 | struct drm_device *dev = node->minor->dev; |
| 900 | drm_i915_private_t *dev_priv = dev->dev_private; |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 901 | u16 crstanddelay; |
| 902 | int ret; |
| 903 | |
| 904 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 905 | if (ret) |
| 906 | return ret; |
| 907 | |
| 908 | crstanddelay = I915_READ16(CRSTANDVID); |
| 909 | |
| 910 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 911 | |
| 912 | seq_printf(m, "w/ctx: %d, w/o ctx: %d\n", (crstanddelay >> 8) & 0x3f, (crstanddelay & 0x3f)); |
| 913 | |
| 914 | return 0; |
| 915 | } |
| 916 | |
| 917 | static int i915_cur_delayinfo(struct seq_file *m, void *unused) |
| 918 | { |
| 919 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 920 | struct drm_device *dev = node->minor->dev; |
| 921 | drm_i915_private_t *dev_priv = dev->dev_private; |
Ben Widawsky | d1ebd816 | 2011-04-25 20:11:50 +0100 | [diff] [blame] | 922 | int ret; |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 923 | |
Tom O'Rourke | 5c9669c | 2013-09-16 14:56:43 -0700 | [diff] [blame] | 924 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 925 | |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 926 | if (IS_GEN5(dev)) { |
| 927 | u16 rgvswctl = I915_READ16(MEMSWCTL); |
| 928 | u16 rgvstat = I915_READ16(MEMSTAT_ILK); |
| 929 | |
| 930 | seq_printf(m, "Requested P-state: %d\n", (rgvswctl >> 8) & 0xf); |
| 931 | seq_printf(m, "Requested VID: %d\n", rgvswctl & 0x3f); |
| 932 | seq_printf(m, "Current VID: %d\n", (rgvstat & MEMSTAT_VID_MASK) >> |
| 933 | MEMSTAT_VID_SHIFT); |
| 934 | seq_printf(m, "Current P-state: %d\n", |
| 935 | (rgvstat & MEMSTAT_PSTATE_MASK) >> MEMSTAT_PSTATE_SHIFT); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 936 | } else if ((IS_GEN6(dev) || IS_GEN7(dev)) && !IS_VALLEYVIEW(dev)) { |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 937 | u32 gt_perf_status = I915_READ(GEN6_GT_PERF_STATUS); |
| 938 | u32 rp_state_limits = I915_READ(GEN6_RP_STATE_LIMITS); |
| 939 | u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP); |
Chris Wilson | 8e8c06c | 2013-08-26 19:51:01 -0300 | [diff] [blame] | 940 | u32 rpstat, cagf, reqf; |
Jesse Barnes | ccab5c8 | 2011-01-18 15:49:25 -0800 | [diff] [blame] | 941 | u32 rpupei, rpcurup, rpprevup; |
| 942 | u32 rpdownei, rpcurdown, rpprevdown; |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 943 | int max_freq; |
| 944 | |
| 945 | /* RPSTAT1 is in the GT power well */ |
Ben Widawsky | d1ebd816 | 2011-04-25 20:11:50 +0100 | [diff] [blame] | 946 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 947 | if (ret) |
| 948 | return ret; |
| 949 | |
Ben Widawsky | fcca792 | 2011-04-25 11:23:07 -0700 | [diff] [blame] | 950 | gen6_gt_force_wake_get(dev_priv); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 951 | |
Chris Wilson | 8e8c06c | 2013-08-26 19:51:01 -0300 | [diff] [blame] | 952 | reqf = I915_READ(GEN6_RPNSWREQ); |
| 953 | reqf &= ~GEN6_TURBO_DISABLE; |
| 954 | if (IS_HASWELL(dev)) |
| 955 | reqf >>= 24; |
| 956 | else |
| 957 | reqf >>= 25; |
| 958 | reqf *= GT_FREQUENCY_MULTIPLIER; |
| 959 | |
Jesse Barnes | ccab5c8 | 2011-01-18 15:49:25 -0800 | [diff] [blame] | 960 | rpstat = I915_READ(GEN6_RPSTAT1); |
| 961 | rpupei = I915_READ(GEN6_RP_CUR_UP_EI); |
| 962 | rpcurup = I915_READ(GEN6_RP_CUR_UP); |
| 963 | rpprevup = I915_READ(GEN6_RP_PREV_UP); |
| 964 | rpdownei = I915_READ(GEN6_RP_CUR_DOWN_EI); |
| 965 | rpcurdown = I915_READ(GEN6_RP_CUR_DOWN); |
| 966 | rpprevdown = I915_READ(GEN6_RP_PREV_DOWN); |
Ben Widawsky | f82855d | 2013-01-29 12:00:15 -0800 | [diff] [blame] | 967 | if (IS_HASWELL(dev)) |
| 968 | cagf = (rpstat & HSW_CAGF_MASK) >> HSW_CAGF_SHIFT; |
| 969 | else |
| 970 | cagf = (rpstat & GEN6_CAGF_MASK) >> GEN6_CAGF_SHIFT; |
| 971 | cagf *= GT_FREQUENCY_MULTIPLIER; |
Jesse Barnes | ccab5c8 | 2011-01-18 15:49:25 -0800 | [diff] [blame] | 972 | |
Ben Widawsky | d1ebd816 | 2011-04-25 20:11:50 +0100 | [diff] [blame] | 973 | gen6_gt_force_wake_put(dev_priv); |
| 974 | mutex_unlock(&dev->struct_mutex); |
| 975 | |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 976 | seq_printf(m, "GT_PERF_STATUS: 0x%08x\n", gt_perf_status); |
Jesse Barnes | ccab5c8 | 2011-01-18 15:49:25 -0800 | [diff] [blame] | 977 | seq_printf(m, "RPSTAT1: 0x%08x\n", rpstat); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 978 | seq_printf(m, "Render p-state ratio: %d\n", |
| 979 | (gt_perf_status & 0xff00) >> 8); |
| 980 | seq_printf(m, "Render p-state VID: %d\n", |
| 981 | gt_perf_status & 0xff); |
| 982 | seq_printf(m, "Render p-state limit: %d\n", |
| 983 | rp_state_limits & 0xff); |
Chris Wilson | 8e8c06c | 2013-08-26 19:51:01 -0300 | [diff] [blame] | 984 | seq_printf(m, "RPNSWREQ: %dMHz\n", reqf); |
Ben Widawsky | f82855d | 2013-01-29 12:00:15 -0800 | [diff] [blame] | 985 | seq_printf(m, "CAGF: %dMHz\n", cagf); |
Jesse Barnes | ccab5c8 | 2011-01-18 15:49:25 -0800 | [diff] [blame] | 986 | seq_printf(m, "RP CUR UP EI: %dus\n", rpupei & |
| 987 | GEN6_CURICONT_MASK); |
| 988 | seq_printf(m, "RP CUR UP: %dus\n", rpcurup & |
| 989 | GEN6_CURBSYTAVG_MASK); |
| 990 | seq_printf(m, "RP PREV UP: %dus\n", rpprevup & |
| 991 | GEN6_CURBSYTAVG_MASK); |
| 992 | seq_printf(m, "RP CUR DOWN EI: %dus\n", rpdownei & |
| 993 | GEN6_CURIAVG_MASK); |
| 994 | seq_printf(m, "RP CUR DOWN: %dus\n", rpcurdown & |
| 995 | GEN6_CURBSYTAVG_MASK); |
| 996 | seq_printf(m, "RP PREV DOWN: %dus\n", rpprevdown & |
| 997 | GEN6_CURBSYTAVG_MASK); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 998 | |
| 999 | max_freq = (rp_state_cap & 0xff0000) >> 16; |
| 1000 | seq_printf(m, "Lowest (RPN) frequency: %dMHz\n", |
Ben Widawsky | c8735b0 | 2012-09-07 19:43:39 -0700 | [diff] [blame] | 1001 | max_freq * GT_FREQUENCY_MULTIPLIER); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1002 | |
| 1003 | max_freq = (rp_state_cap & 0xff00) >> 8; |
| 1004 | seq_printf(m, "Nominal (RP1) frequency: %dMHz\n", |
Ben Widawsky | c8735b0 | 2012-09-07 19:43:39 -0700 | [diff] [blame] | 1005 | max_freq * GT_FREQUENCY_MULTIPLIER); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1006 | |
| 1007 | max_freq = rp_state_cap & 0xff; |
| 1008 | seq_printf(m, "Max non-overclocked (RP0) frequency: %dMHz\n", |
Ben Widawsky | c8735b0 | 2012-09-07 19:43:39 -0700 | [diff] [blame] | 1009 | max_freq * GT_FREQUENCY_MULTIPLIER); |
Ben Widawsky | 31c7738 | 2013-04-05 14:29:22 -0700 | [diff] [blame] | 1010 | |
| 1011 | seq_printf(m, "Max overclocked frequency: %dMHz\n", |
| 1012 | dev_priv->rps.hw_max * GT_FREQUENCY_MULTIPLIER); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 1013 | } else if (IS_VALLEYVIEW(dev)) { |
| 1014 | u32 freq_sts, val; |
| 1015 | |
Jesse Barnes | 259bd5d | 2013-04-22 15:59:30 -0700 | [diff] [blame] | 1016 | mutex_lock(&dev_priv->rps.hw_lock); |
Jani Nikula | 6493625 | 2013-05-22 15:36:20 +0300 | [diff] [blame] | 1017 | freq_sts = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 1018 | seq_printf(m, "PUNIT_REG_GPU_FREQ_STS: 0x%08x\n", freq_sts); |
| 1019 | seq_printf(m, "DDR freq: %d MHz\n", dev_priv->mem_freq); |
| 1020 | |
Chon Ming Lee | c5bd2bf6 | 2013-11-07 15:23:27 +0800 | [diff] [blame] | 1021 | val = valleyview_rps_max_freq(dev_priv); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 1022 | seq_printf(m, "max GPU freq: %d MHz\n", |
Ville Syrjälä | 2ec3815 | 2013-11-05 22:42:29 +0200 | [diff] [blame] | 1023 | vlv_gpu_freq(dev_priv, val)); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 1024 | |
Chon Ming Lee | c5bd2bf6 | 2013-11-07 15:23:27 +0800 | [diff] [blame] | 1025 | val = valleyview_rps_min_freq(dev_priv); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 1026 | seq_printf(m, "min GPU freq: %d MHz\n", |
Ville Syrjälä | 2ec3815 | 2013-11-05 22:42:29 +0200 | [diff] [blame] | 1027 | vlv_gpu_freq(dev_priv, val)); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 1028 | |
| 1029 | seq_printf(m, "current GPU freq: %d MHz\n", |
Ville Syrjälä | 2ec3815 | 2013-11-05 22:42:29 +0200 | [diff] [blame] | 1030 | vlv_gpu_freq(dev_priv, (freq_sts >> 8) & 0xff)); |
Jesse Barnes | 259bd5d | 2013-04-22 15:59:30 -0700 | [diff] [blame] | 1031 | mutex_unlock(&dev_priv->rps.hw_lock); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1032 | } else { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1033 | seq_puts(m, "no P-state info available\n"); |
Jesse Barnes | 3b8d8d9 | 2010-12-17 14:19:02 -0800 | [diff] [blame] | 1034 | } |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1035 | |
| 1036 | return 0; |
| 1037 | } |
| 1038 | |
| 1039 | static int i915_delayfreq_table(struct seq_file *m, void *unused) |
| 1040 | { |
| 1041 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1042 | struct drm_device *dev = node->minor->dev; |
| 1043 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 1044 | u32 delayfreq; |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 1045 | int ret, i; |
| 1046 | |
| 1047 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1048 | if (ret) |
| 1049 | return ret; |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1050 | |
| 1051 | for (i = 0; i < 16; i++) { |
| 1052 | delayfreq = I915_READ(PXVFREQ_BASE + i * 4); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1053 | seq_printf(m, "P%02dVIDFREQ: 0x%08x (VID: %d)\n", i, delayfreq, |
| 1054 | (delayfreq & PXVFREQ_PX_MASK) >> PXVFREQ_PX_SHIFT); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1055 | } |
| 1056 | |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 1057 | mutex_unlock(&dev->struct_mutex); |
| 1058 | |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1059 | return 0; |
| 1060 | } |
| 1061 | |
| 1062 | static inline int MAP_TO_MV(int map) |
| 1063 | { |
| 1064 | return 1250 - (map * 25); |
| 1065 | } |
| 1066 | |
| 1067 | static int i915_inttoext_table(struct seq_file *m, void *unused) |
| 1068 | { |
| 1069 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1070 | struct drm_device *dev = node->minor->dev; |
| 1071 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 1072 | u32 inttoext; |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 1073 | int ret, i; |
| 1074 | |
| 1075 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1076 | if (ret) |
| 1077 | return ret; |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1078 | |
| 1079 | for (i = 1; i <= 32; i++) { |
| 1080 | inttoext = I915_READ(INTTOEXT_BASE_ILK + i * 4); |
| 1081 | seq_printf(m, "INTTOEXT%02d: 0x%08x\n", i, inttoext); |
| 1082 | } |
| 1083 | |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 1084 | mutex_unlock(&dev->struct_mutex); |
| 1085 | |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1086 | return 0; |
| 1087 | } |
| 1088 | |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1089 | static int ironlake_drpc_info(struct seq_file *m) |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1090 | { |
| 1091 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1092 | struct drm_device *dev = node->minor->dev; |
| 1093 | drm_i915_private_t *dev_priv = dev->dev_private; |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 1094 | u32 rgvmodectl, rstdbyctl; |
| 1095 | u16 crstandvid; |
| 1096 | int ret; |
| 1097 | |
| 1098 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1099 | if (ret) |
| 1100 | return ret; |
| 1101 | |
| 1102 | rgvmodectl = I915_READ(MEMMODECTL); |
| 1103 | rstdbyctl = I915_READ(RSTDBYCTL); |
| 1104 | crstandvid = I915_READ16(CRSTANDVID); |
| 1105 | |
| 1106 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1107 | |
| 1108 | seq_printf(m, "HD boost: %s\n", (rgvmodectl & MEMMODE_BOOST_EN) ? |
| 1109 | "yes" : "no"); |
| 1110 | seq_printf(m, "Boost freq: %d\n", |
| 1111 | (rgvmodectl & MEMMODE_BOOST_FREQ_MASK) >> |
| 1112 | MEMMODE_BOOST_FREQ_SHIFT); |
| 1113 | seq_printf(m, "HW control enabled: %s\n", |
| 1114 | rgvmodectl & MEMMODE_HWIDLE_EN ? "yes" : "no"); |
| 1115 | seq_printf(m, "SW control enabled: %s\n", |
| 1116 | rgvmodectl & MEMMODE_SWMODE_EN ? "yes" : "no"); |
| 1117 | seq_printf(m, "Gated voltage change: %s\n", |
| 1118 | rgvmodectl & MEMMODE_RCLK_GATE ? "yes" : "no"); |
| 1119 | seq_printf(m, "Starting frequency: P%d\n", |
| 1120 | (rgvmodectl & MEMMODE_FSTART_MASK) >> MEMMODE_FSTART_SHIFT); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1121 | seq_printf(m, "Max P-state: P%d\n", |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1122 | (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1123 | seq_printf(m, "Min P-state: P%d\n", (rgvmodectl & MEMMODE_FMIN_MASK)); |
| 1124 | seq_printf(m, "RS1 VID: %d\n", (crstandvid & 0x3f)); |
| 1125 | seq_printf(m, "RS2 VID: %d\n", ((crstandvid >> 8) & 0x3f)); |
| 1126 | seq_printf(m, "Render standby enabled: %s\n", |
| 1127 | (rstdbyctl & RCX_SW_EXIT) ? "no" : "yes"); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1128 | seq_puts(m, "Current RS state: "); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1129 | switch (rstdbyctl & RSX_STATUS_MASK) { |
| 1130 | case RSX_STATUS_ON: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1131 | seq_puts(m, "on\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1132 | break; |
| 1133 | case RSX_STATUS_RC1: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1134 | seq_puts(m, "RC1\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1135 | break; |
| 1136 | case RSX_STATUS_RC1E: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1137 | seq_puts(m, "RC1E\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1138 | break; |
| 1139 | case RSX_STATUS_RS1: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1140 | seq_puts(m, "RS1\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1141 | break; |
| 1142 | case RSX_STATUS_RS2: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1143 | seq_puts(m, "RS2 (RC6)\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1144 | break; |
| 1145 | case RSX_STATUS_RS3: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1146 | seq_puts(m, "RC3 (RC6+)\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1147 | break; |
| 1148 | default: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1149 | seq_puts(m, "unknown\n"); |
Jesse Barnes | 88271da | 2011-01-05 12:01:24 -0800 | [diff] [blame] | 1150 | break; |
| 1151 | } |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 1152 | |
| 1153 | return 0; |
| 1154 | } |
| 1155 | |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1156 | static int gen6_drpc_info(struct seq_file *m) |
| 1157 | { |
| 1158 | |
| 1159 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1160 | struct drm_device *dev = node->minor->dev; |
| 1161 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ben Widawsky | ecd8fae | 2012-09-26 10:34:02 -0700 | [diff] [blame] | 1162 | u32 rpmodectl1, gt_core_status, rcctl1, rc6vids = 0; |
Daniel Vetter | 93b525d | 2012-01-25 13:52:43 +0100 | [diff] [blame] | 1163 | unsigned forcewake_count; |
Damien Lespiau | aee56cf | 2013-06-24 22:59:49 +0100 | [diff] [blame] | 1164 | int count = 0, ret; |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1165 | |
| 1166 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1167 | if (ret) |
| 1168 | return ret; |
| 1169 | |
Chris Wilson | 907b28c | 2013-07-19 20:36:52 +0100 | [diff] [blame] | 1170 | spin_lock_irq(&dev_priv->uncore.lock); |
| 1171 | forcewake_count = dev_priv->uncore.forcewake_count; |
| 1172 | spin_unlock_irq(&dev_priv->uncore.lock); |
Daniel Vetter | 93b525d | 2012-01-25 13:52:43 +0100 | [diff] [blame] | 1173 | |
| 1174 | if (forcewake_count) { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1175 | seq_puts(m, "RC information inaccurate because somebody " |
| 1176 | "holds a forcewake reference \n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1177 | } else { |
| 1178 | /* NB: we cannot use forcewake, else we read the wrong values */ |
| 1179 | while (count++ < 50 && (I915_READ_NOTRACE(FORCEWAKE_ACK) & 1)) |
| 1180 | udelay(10); |
| 1181 | seq_printf(m, "RC information accurate: %s\n", yesno(count < 51)); |
| 1182 | } |
| 1183 | |
| 1184 | gt_core_status = readl(dev_priv->regs + GEN6_GT_CORE_STATUS); |
Chris Wilson | ed71f1b | 2013-07-19 20:36:56 +0100 | [diff] [blame] | 1185 | trace_i915_reg_rw(false, GEN6_GT_CORE_STATUS, gt_core_status, 4, true); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1186 | |
| 1187 | rpmodectl1 = I915_READ(GEN6_RP_CONTROL); |
| 1188 | rcctl1 = I915_READ(GEN6_RC_CONTROL); |
| 1189 | mutex_unlock(&dev->struct_mutex); |
Ben Widawsky | 44cbd33 | 2012-11-06 14:36:36 +0000 | [diff] [blame] | 1190 | mutex_lock(&dev_priv->rps.hw_lock); |
| 1191 | sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids); |
| 1192 | mutex_unlock(&dev_priv->rps.hw_lock); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1193 | |
| 1194 | seq_printf(m, "Video Turbo Mode: %s\n", |
| 1195 | yesno(rpmodectl1 & GEN6_RP_MEDIA_TURBO)); |
| 1196 | seq_printf(m, "HW control enabled: %s\n", |
| 1197 | yesno(rpmodectl1 & GEN6_RP_ENABLE)); |
| 1198 | seq_printf(m, "SW control enabled: %s\n", |
| 1199 | yesno((rpmodectl1 & GEN6_RP_MEDIA_MODE_MASK) == |
| 1200 | GEN6_RP_MEDIA_SW_MODE)); |
Eric Anholt | fff24e2 | 2012-01-23 16:14:05 -0800 | [diff] [blame] | 1201 | seq_printf(m, "RC1e Enabled: %s\n", |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1202 | yesno(rcctl1 & GEN6_RC_CTL_RC1e_ENABLE)); |
| 1203 | seq_printf(m, "RC6 Enabled: %s\n", |
| 1204 | yesno(rcctl1 & GEN6_RC_CTL_RC6_ENABLE)); |
| 1205 | seq_printf(m, "Deep RC6 Enabled: %s\n", |
| 1206 | yesno(rcctl1 & GEN6_RC_CTL_RC6p_ENABLE)); |
| 1207 | seq_printf(m, "Deepest RC6 Enabled: %s\n", |
| 1208 | yesno(rcctl1 & GEN6_RC_CTL_RC6pp_ENABLE)); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1209 | seq_puts(m, "Current RC state: "); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1210 | switch (gt_core_status & GEN6_RCn_MASK) { |
| 1211 | case GEN6_RC0: |
| 1212 | if (gt_core_status & GEN6_CORE_CPD_STATE_MASK) |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1213 | seq_puts(m, "Core Power Down\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1214 | else |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1215 | seq_puts(m, "on\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1216 | break; |
| 1217 | case GEN6_RC3: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1218 | seq_puts(m, "RC3\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1219 | break; |
| 1220 | case GEN6_RC6: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1221 | seq_puts(m, "RC6\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1222 | break; |
| 1223 | case GEN6_RC7: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1224 | seq_puts(m, "RC7\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1225 | break; |
| 1226 | default: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1227 | seq_puts(m, "Unknown\n"); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1228 | break; |
| 1229 | } |
| 1230 | |
| 1231 | seq_printf(m, "Core Power Down: %s\n", |
| 1232 | yesno(gt_core_status & GEN6_CORE_CPD_STATE_MASK)); |
Ben Widawsky | cce66a2 | 2012-03-27 18:59:38 -0700 | [diff] [blame] | 1233 | |
| 1234 | /* Not exactly sure what this is */ |
| 1235 | seq_printf(m, "RC6 \"Locked to RPn\" residency since boot: %u\n", |
| 1236 | I915_READ(GEN6_GT_GFX_RC6_LOCKED)); |
| 1237 | seq_printf(m, "RC6 residency since boot: %u\n", |
| 1238 | I915_READ(GEN6_GT_GFX_RC6)); |
| 1239 | seq_printf(m, "RC6+ residency since boot: %u\n", |
| 1240 | I915_READ(GEN6_GT_GFX_RC6p)); |
| 1241 | seq_printf(m, "RC6++ residency since boot: %u\n", |
| 1242 | I915_READ(GEN6_GT_GFX_RC6pp)); |
| 1243 | |
Ben Widawsky | ecd8fae | 2012-09-26 10:34:02 -0700 | [diff] [blame] | 1244 | seq_printf(m, "RC6 voltage: %dmV\n", |
| 1245 | GEN6_DECODE_RC6_VID(((rc6vids >> 0) & 0xff))); |
| 1246 | seq_printf(m, "RC6+ voltage: %dmV\n", |
| 1247 | GEN6_DECODE_RC6_VID(((rc6vids >> 8) & 0xff))); |
| 1248 | seq_printf(m, "RC6++ voltage: %dmV\n", |
| 1249 | GEN6_DECODE_RC6_VID(((rc6vids >> 16) & 0xff))); |
Ben Widawsky | 4d85529 | 2011-12-12 19:34:16 -0800 | [diff] [blame] | 1250 | return 0; |
| 1251 | } |
| 1252 | |
| 1253 | static int i915_drpc_info(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 | |
| 1258 | if (IS_GEN6(dev) || IS_GEN7(dev)) |
| 1259 | return gen6_drpc_info(m); |
| 1260 | else |
| 1261 | return ironlake_drpc_info(m); |
| 1262 | } |
| 1263 | |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1264 | static int i915_fbc_status(struct seq_file *m, void *unused) |
| 1265 | { |
| 1266 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1267 | struct drm_device *dev = node->minor->dev; |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1268 | drm_i915_private_t *dev_priv = dev->dev_private; |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1269 | |
Adam Jackson | ee5382a | 2010-04-23 11:17:39 -0400 | [diff] [blame] | 1270 | if (!I915_HAS_FBC(dev)) { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1271 | seq_puts(m, "FBC unsupported on this chipset\n"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1272 | return 0; |
| 1273 | } |
| 1274 | |
Adam Jackson | ee5382a | 2010-04-23 11:17:39 -0400 | [diff] [blame] | 1275 | if (intel_fbc_enabled(dev)) { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1276 | seq_puts(m, "FBC enabled\n"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1277 | } else { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1278 | seq_puts(m, "FBC disabled: "); |
Ben Widawsky | 5c3fe8b | 2013-06-27 16:30:21 -0700 | [diff] [blame] | 1279 | switch (dev_priv->fbc.no_fbc_reason) { |
Chris Wilson | 29ebf90 | 2013-07-27 17:23:55 +0100 | [diff] [blame] | 1280 | case FBC_OK: |
| 1281 | seq_puts(m, "FBC actived, but currently disabled in hardware"); |
| 1282 | break; |
| 1283 | case FBC_UNSUPPORTED: |
| 1284 | seq_puts(m, "unsupported by this chipset"); |
| 1285 | break; |
Chris Wilson | bed4a67 | 2010-09-11 10:47:47 +0100 | [diff] [blame] | 1286 | case FBC_NO_OUTPUT: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1287 | seq_puts(m, "no outputs"); |
Chris Wilson | bed4a67 | 2010-09-11 10:47:47 +0100 | [diff] [blame] | 1288 | break; |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1289 | case FBC_STOLEN_TOO_SMALL: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1290 | seq_puts(m, "not enough stolen memory"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1291 | break; |
| 1292 | case FBC_UNSUPPORTED_MODE: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1293 | seq_puts(m, "mode not supported"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1294 | break; |
| 1295 | case FBC_MODE_TOO_LARGE: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1296 | seq_puts(m, "mode too large"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1297 | break; |
| 1298 | case FBC_BAD_PLANE: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1299 | seq_puts(m, "FBC unsupported on plane"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1300 | break; |
| 1301 | case FBC_NOT_TILED: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1302 | seq_puts(m, "scanout buffer not tiled"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1303 | break; |
Jesse Barnes | 9c928d1 | 2010-07-23 15:20:00 -0700 | [diff] [blame] | 1304 | case FBC_MULTIPLE_PIPES: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1305 | seq_puts(m, "multiple pipes are enabled"); |
Jesse Barnes | 9c928d1 | 2010-07-23 15:20:00 -0700 | [diff] [blame] | 1306 | break; |
Jesse Barnes | c1a9f04 | 2011-05-05 15:24:21 -0700 | [diff] [blame] | 1307 | case FBC_MODULE_PARAM: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1308 | seq_puts(m, "disabled per module param (default off)"); |
Jesse Barnes | c1a9f04 | 2011-05-05 15:24:21 -0700 | [diff] [blame] | 1309 | break; |
Damien Lespiau | 8a5729a | 2013-06-24 16:22:02 +0100 | [diff] [blame] | 1310 | case FBC_CHIP_DEFAULT: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1311 | seq_puts(m, "disabled per chip default"); |
Damien Lespiau | 8a5729a | 2013-06-24 16:22:02 +0100 | [diff] [blame] | 1312 | break; |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1313 | default: |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1314 | seq_puts(m, "unknown reason"); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1315 | } |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1316 | seq_putc(m, '\n'); |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 1317 | } |
| 1318 | return 0; |
| 1319 | } |
| 1320 | |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 1321 | static int i915_ips_status(struct seq_file *m, void *unused) |
| 1322 | { |
| 1323 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1324 | struct drm_device *dev = node->minor->dev; |
| 1325 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1326 | |
Damien Lespiau | f5adf94 | 2013-06-24 18:29:34 +0100 | [diff] [blame] | 1327 | if (!HAS_IPS(dev)) { |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 1328 | seq_puts(m, "not supported\n"); |
| 1329 | return 0; |
| 1330 | } |
| 1331 | |
| 1332 | if (I915_READ(IPS_CTL) & IPS_ENABLE) |
| 1333 | seq_puts(m, "enabled\n"); |
| 1334 | else |
| 1335 | seq_puts(m, "disabled\n"); |
| 1336 | |
| 1337 | return 0; |
| 1338 | } |
| 1339 | |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1340 | static int i915_sr_status(struct seq_file *m, void *unused) |
| 1341 | { |
| 1342 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1343 | struct drm_device *dev = node->minor->dev; |
| 1344 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 1345 | bool sr_enabled = false; |
| 1346 | |
Yuanhan Liu | 1398261 | 2010-12-15 15:42:31 +0800 | [diff] [blame] | 1347 | if (HAS_PCH_SPLIT(dev)) |
Chris Wilson | 5ba2aaa | 2010-08-19 18:04:08 +0100 | [diff] [blame] | 1348 | sr_enabled = I915_READ(WM1_LP_ILK) & WM1_LP_SR_EN; |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 1349 | else if (IS_CRESTLINE(dev) || IS_I945G(dev) || IS_I945GM(dev)) |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1350 | sr_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN; |
| 1351 | else if (IS_I915GM(dev)) |
| 1352 | sr_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN; |
| 1353 | else if (IS_PINEVIEW(dev)) |
| 1354 | sr_enabled = I915_READ(DSPFW3) & PINEVIEW_SELF_REFRESH_EN; |
| 1355 | |
Chris Wilson | 5ba2aaa | 2010-08-19 18:04:08 +0100 | [diff] [blame] | 1356 | seq_printf(m, "self-refresh: %s\n", |
| 1357 | sr_enabled ? "enabled" : "disabled"); |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 1358 | |
| 1359 | return 0; |
| 1360 | } |
| 1361 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1362 | static int i915_emon_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 | unsigned long temp, chipset, gfx; |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 1368 | int ret; |
| 1369 | |
Chris Wilson | 582be6b | 2012-04-30 19:35:02 +0100 | [diff] [blame] | 1370 | if (!IS_GEN5(dev)) |
| 1371 | return -ENODEV; |
| 1372 | |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 1373 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1374 | if (ret) |
| 1375 | return ret; |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1376 | |
| 1377 | temp = i915_mch_val(dev_priv); |
| 1378 | chipset = i915_chipset_val(dev_priv); |
| 1379 | gfx = i915_gfx_val(dev_priv); |
Chris Wilson | de227ef | 2010-07-03 07:58:38 +0100 | [diff] [blame] | 1380 | mutex_unlock(&dev->struct_mutex); |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1381 | |
| 1382 | seq_printf(m, "GMCH temp: %ld\n", temp); |
| 1383 | seq_printf(m, "Chipset power: %ld\n", chipset); |
| 1384 | seq_printf(m, "GFX power: %ld\n", gfx); |
| 1385 | seq_printf(m, "Total power: %ld\n", chipset + gfx); |
| 1386 | |
| 1387 | return 0; |
| 1388 | } |
| 1389 | |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1390 | static int i915_ring_freq_table(struct seq_file *m, void *unused) |
| 1391 | { |
| 1392 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1393 | struct drm_device *dev = node->minor->dev; |
| 1394 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 1395 | int ret; |
| 1396 | int gpu_freq, ia_freq; |
| 1397 | |
Jesse Barnes | 1c70c0c | 2011-06-29 13:34:36 -0700 | [diff] [blame] | 1398 | if (!(IS_GEN6(dev) || IS_GEN7(dev))) { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1399 | seq_puts(m, "unsupported on this chipset\n"); |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1400 | return 0; |
| 1401 | } |
| 1402 | |
Tom O'Rourke | 5c9669c | 2013-09-16 14:56:43 -0700 | [diff] [blame] | 1403 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 1404 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 1405 | ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock); |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1406 | if (ret) |
| 1407 | return ret; |
| 1408 | |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1409 | seq_puts(m, "GPU freq (MHz)\tEffective CPU freq (MHz)\tEffective Ring freq (MHz)\n"); |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1410 | |
Daniel Vetter | c6a828d | 2012-08-08 23:35:35 +0200 | [diff] [blame] | 1411 | for (gpu_freq = dev_priv->rps.min_delay; |
| 1412 | gpu_freq <= dev_priv->rps.max_delay; |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1413 | gpu_freq++) { |
Ben Widawsky | 42c0526 | 2012-09-26 10:34:00 -0700 | [diff] [blame] | 1414 | ia_freq = gpu_freq; |
| 1415 | sandybridge_pcode_read(dev_priv, |
| 1416 | GEN6_PCODE_READ_MIN_FREQ_TABLE, |
| 1417 | &ia_freq); |
Chris Wilson | 3ebecd0 | 2013-04-12 19:10:13 +0100 | [diff] [blame] | 1418 | seq_printf(m, "%d\t\t%d\t\t\t\t%d\n", |
| 1419 | gpu_freq * GT_FREQUENCY_MULTIPLIER, |
| 1420 | ((ia_freq >> 0) & 0xff) * 100, |
| 1421 | ((ia_freq >> 8) & 0xff) * 100); |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1422 | } |
| 1423 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 1424 | mutex_unlock(&dev_priv->rps.hw_lock); |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 1425 | |
| 1426 | return 0; |
| 1427 | } |
| 1428 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1429 | static int i915_gfxec(struct seq_file *m, void *unused) |
| 1430 | { |
| 1431 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1432 | struct drm_device *dev = node->minor->dev; |
| 1433 | drm_i915_private_t *dev_priv = dev->dev_private; |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 1434 | int ret; |
| 1435 | |
| 1436 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1437 | if (ret) |
| 1438 | return ret; |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1439 | |
| 1440 | seq_printf(m, "GFXEC: %ld\n", (unsigned long)I915_READ(0x112f4)); |
| 1441 | |
Ben Widawsky | 616fdb5 | 2011-10-05 11:44:54 -0700 | [diff] [blame] | 1442 | mutex_unlock(&dev->struct_mutex); |
| 1443 | |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 1444 | return 0; |
| 1445 | } |
| 1446 | |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1447 | static int i915_opregion(struct seq_file *m, void *unused) |
| 1448 | { |
| 1449 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1450 | struct drm_device *dev = node->minor->dev; |
| 1451 | drm_i915_private_t *dev_priv = dev->dev_private; |
| 1452 | struct intel_opregion *opregion = &dev_priv->opregion; |
Daniel Vetter | 0d38f00 | 2012-04-21 22:49:10 +0200 | [diff] [blame] | 1453 | void *data = kmalloc(OPREGION_SIZE, GFP_KERNEL); |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1454 | int ret; |
| 1455 | |
Daniel Vetter | 0d38f00 | 2012-04-21 22:49:10 +0200 | [diff] [blame] | 1456 | if (data == NULL) |
| 1457 | return -ENOMEM; |
| 1458 | |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1459 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1460 | if (ret) |
Daniel Vetter | 0d38f00 | 2012-04-21 22:49:10 +0200 | [diff] [blame] | 1461 | goto out; |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1462 | |
Daniel Vetter | 0d38f00 | 2012-04-21 22:49:10 +0200 | [diff] [blame] | 1463 | if (opregion->header) { |
| 1464 | memcpy_fromio(data, opregion->header, OPREGION_SIZE); |
| 1465 | seq_write(m, data, OPREGION_SIZE); |
| 1466 | } |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1467 | |
| 1468 | mutex_unlock(&dev->struct_mutex); |
| 1469 | |
Daniel Vetter | 0d38f00 | 2012-04-21 22:49:10 +0200 | [diff] [blame] | 1470 | out: |
| 1471 | kfree(data); |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 1472 | return 0; |
| 1473 | } |
| 1474 | |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1475 | static int i915_gem_framebuffer_info(struct seq_file *m, void *data) |
| 1476 | { |
| 1477 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1478 | struct drm_device *dev = node->minor->dev; |
Daniel Vetter | 4520f53 | 2013-10-09 09:18:51 +0200 | [diff] [blame] | 1479 | struct intel_fbdev *ifbdev = NULL; |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1480 | struct intel_framebuffer *fb; |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1481 | |
Daniel Vetter | 4520f53 | 2013-10-09 09:18:51 +0200 | [diff] [blame] | 1482 | #ifdef CONFIG_DRM_I915_FBDEV |
| 1483 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1484 | int ret = mutex_lock_interruptible(&dev->mode_config.mutex); |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1485 | if (ret) |
| 1486 | return ret; |
| 1487 | |
| 1488 | ifbdev = dev_priv->fbdev; |
| 1489 | fb = to_intel_framebuffer(ifbdev->helper.fb); |
| 1490 | |
Daniel Vetter | 623f978 | 2012-12-11 16:21:38 +0100 | [diff] [blame] | 1491 | seq_printf(m, "fbcon size: %d x %d, depth %d, %d bpp, refcount %d, obj ", |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1492 | fb->base.width, |
| 1493 | fb->base.height, |
| 1494 | fb->base.depth, |
Daniel Vetter | 623f978 | 2012-12-11 16:21:38 +0100 | [diff] [blame] | 1495 | fb->base.bits_per_pixel, |
| 1496 | atomic_read(&fb->base.refcount.refcount)); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1497 | describe_obj(m, fb->obj); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1498 | seq_putc(m, '\n'); |
Daniel Vetter | 4b096ac | 2012-12-10 21:19:18 +0100 | [diff] [blame] | 1499 | mutex_unlock(&dev->mode_config.mutex); |
Daniel Vetter | 4520f53 | 2013-10-09 09:18:51 +0200 | [diff] [blame] | 1500 | #endif |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1501 | |
Daniel Vetter | 4b096ac | 2012-12-10 21:19:18 +0100 | [diff] [blame] | 1502 | mutex_lock(&dev->mode_config.fb_lock); |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1503 | list_for_each_entry(fb, &dev->mode_config.fb_list, base.head) { |
Daniel Vetter | 131a56d | 2013-10-17 14:35:31 +0200 | [diff] [blame] | 1504 | if (ifbdev && &fb->base == ifbdev->helper.fb) |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1505 | continue; |
| 1506 | |
Daniel Vetter | 623f978 | 2012-12-11 16:21:38 +0100 | [diff] [blame] | 1507 | seq_printf(m, "user size: %d x %d, depth %d, %d bpp, refcount %d, obj ", |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1508 | fb->base.width, |
| 1509 | fb->base.height, |
| 1510 | fb->base.depth, |
Daniel Vetter | 623f978 | 2012-12-11 16:21:38 +0100 | [diff] [blame] | 1511 | fb->base.bits_per_pixel, |
| 1512 | atomic_read(&fb->base.refcount.refcount)); |
Chris Wilson | 05394f3 | 2010-11-08 19:18:58 +0000 | [diff] [blame] | 1513 | describe_obj(m, fb->obj); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1514 | seq_putc(m, '\n'); |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1515 | } |
Daniel Vetter | 4b096ac | 2012-12-10 21:19:18 +0100 | [diff] [blame] | 1516 | mutex_unlock(&dev->mode_config.fb_lock); |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 1517 | |
| 1518 | return 0; |
| 1519 | } |
| 1520 | |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1521 | static int i915_context_status(struct seq_file *m, void *unused) |
| 1522 | { |
| 1523 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1524 | struct drm_device *dev = node->minor->dev; |
| 1525 | drm_i915_private_t *dev_priv = dev->dev_private; |
Ben Widawsky | a168c29 | 2013-02-14 15:05:12 -0800 | [diff] [blame] | 1526 | struct intel_ring_buffer *ring; |
Ben Widawsky | a33afea | 2013-09-17 21:12:45 -0700 | [diff] [blame] | 1527 | struct i915_hw_context *ctx; |
Ben Widawsky | a168c29 | 2013-02-14 15:05:12 -0800 | [diff] [blame] | 1528 | int ret, i; |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1529 | |
| 1530 | ret = mutex_lock_interruptible(&dev->mode_config.mutex); |
| 1531 | if (ret) |
| 1532 | return ret; |
| 1533 | |
Daniel Vetter | 3e37394 | 2012-11-02 19:55:04 +0100 | [diff] [blame] | 1534 | if (dev_priv->ips.pwrctx) { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1535 | seq_puts(m, "power context "); |
Daniel Vetter | 3e37394 | 2012-11-02 19:55:04 +0100 | [diff] [blame] | 1536 | describe_obj(m, dev_priv->ips.pwrctx); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1537 | seq_putc(m, '\n'); |
Ben Widawsky | dc501fb | 2011-06-29 11:41:51 -0700 | [diff] [blame] | 1538 | } |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1539 | |
Daniel Vetter | 3e37394 | 2012-11-02 19:55:04 +0100 | [diff] [blame] | 1540 | if (dev_priv->ips.renderctx) { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1541 | seq_puts(m, "render context "); |
Daniel Vetter | 3e37394 | 2012-11-02 19:55:04 +0100 | [diff] [blame] | 1542 | describe_obj(m, dev_priv->ips.renderctx); |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1543 | seq_putc(m, '\n'); |
Ben Widawsky | dc501fb | 2011-06-29 11:41:51 -0700 | [diff] [blame] | 1544 | } |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1545 | |
Ben Widawsky | a33afea | 2013-09-17 21:12:45 -0700 | [diff] [blame] | 1546 | list_for_each_entry(ctx, &dev_priv->context_list, link) { |
| 1547 | seq_puts(m, "HW context "); |
Ben Widawsky | 3ccfd19 | 2013-09-18 19:03:18 -0700 | [diff] [blame] | 1548 | describe_ctx(m, ctx); |
Ben Widawsky | a33afea | 2013-09-17 21:12:45 -0700 | [diff] [blame] | 1549 | for_each_ring(ring, dev_priv, i) |
| 1550 | if (ring->default_context == ctx) |
| 1551 | seq_printf(m, "(default context %s) ", ring->name); |
| 1552 | |
| 1553 | describe_obj(m, ctx->obj); |
| 1554 | seq_putc(m, '\n'); |
Ben Widawsky | a168c29 | 2013-02-14 15:05:12 -0800 | [diff] [blame] | 1555 | } |
| 1556 | |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 1557 | mutex_unlock(&dev->mode_config.mutex); |
| 1558 | |
| 1559 | return 0; |
| 1560 | } |
| 1561 | |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 1562 | static int i915_gen6_forcewake_count_info(struct seq_file *m, void *data) |
| 1563 | { |
| 1564 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1565 | struct drm_device *dev = node->minor->dev; |
| 1566 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 9f1f46a | 2011-12-14 13:57:03 +0100 | [diff] [blame] | 1567 | unsigned forcewake_count; |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 1568 | |
Chris Wilson | 907b28c | 2013-07-19 20:36:52 +0100 | [diff] [blame] | 1569 | spin_lock_irq(&dev_priv->uncore.lock); |
| 1570 | forcewake_count = dev_priv->uncore.forcewake_count; |
| 1571 | spin_unlock_irq(&dev_priv->uncore.lock); |
Daniel Vetter | 9f1f46a | 2011-12-14 13:57:03 +0100 | [diff] [blame] | 1572 | |
| 1573 | seq_printf(m, "forcewake count = %u\n", forcewake_count); |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 1574 | |
| 1575 | return 0; |
| 1576 | } |
| 1577 | |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 1578 | static const char *swizzle_string(unsigned swizzle) |
| 1579 | { |
Damien Lespiau | aee56cf | 2013-06-24 22:59:49 +0100 | [diff] [blame] | 1580 | switch (swizzle) { |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 1581 | case I915_BIT_6_SWIZZLE_NONE: |
| 1582 | return "none"; |
| 1583 | case I915_BIT_6_SWIZZLE_9: |
| 1584 | return "bit9"; |
| 1585 | case I915_BIT_6_SWIZZLE_9_10: |
| 1586 | return "bit9/bit10"; |
| 1587 | case I915_BIT_6_SWIZZLE_9_11: |
| 1588 | return "bit9/bit11"; |
| 1589 | case I915_BIT_6_SWIZZLE_9_10_11: |
| 1590 | return "bit9/bit10/bit11"; |
| 1591 | case I915_BIT_6_SWIZZLE_9_17: |
| 1592 | return "bit9/bit17"; |
| 1593 | case I915_BIT_6_SWIZZLE_9_10_17: |
| 1594 | return "bit9/bit10/bit17"; |
| 1595 | case I915_BIT_6_SWIZZLE_UNKNOWN: |
Masanari Iida | 8a168ca | 2012-12-29 02:00:09 +0900 | [diff] [blame] | 1596 | return "unknown"; |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 1597 | } |
| 1598 | |
| 1599 | return "bug"; |
| 1600 | } |
| 1601 | |
| 1602 | static int i915_swizzle_info(struct seq_file *m, void *data) |
| 1603 | { |
| 1604 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1605 | struct drm_device *dev = node->minor->dev; |
| 1606 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 1607 | int ret; |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 1608 | |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 1609 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1610 | if (ret) |
| 1611 | return ret; |
| 1612 | |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 1613 | seq_printf(m, "bit6 swizzle for X-tiling = %s\n", |
| 1614 | swizzle_string(dev_priv->mm.bit_6_swizzle_x)); |
| 1615 | seq_printf(m, "bit6 swizzle for Y-tiling = %s\n", |
| 1616 | swizzle_string(dev_priv->mm.bit_6_swizzle_y)); |
| 1617 | |
| 1618 | if (IS_GEN3(dev) || IS_GEN4(dev)) { |
| 1619 | seq_printf(m, "DDC = 0x%08x\n", |
| 1620 | I915_READ(DCC)); |
| 1621 | seq_printf(m, "C0DRB3 = 0x%04x\n", |
| 1622 | I915_READ16(C0DRB3)); |
| 1623 | seq_printf(m, "C1DRB3 = 0x%04x\n", |
| 1624 | I915_READ16(C1DRB3)); |
Ben Widawsky | 9d3203e | 2013-11-02 21:07:14 -0700 | [diff] [blame] | 1625 | } else if (INTEL_INFO(dev)->gen >= 6) { |
Daniel Vetter | 3fa7d23 | 2012-01-31 16:47:56 +0100 | [diff] [blame] | 1626 | seq_printf(m, "MAD_DIMM_C0 = 0x%08x\n", |
| 1627 | I915_READ(MAD_DIMM_C0)); |
| 1628 | seq_printf(m, "MAD_DIMM_C1 = 0x%08x\n", |
| 1629 | I915_READ(MAD_DIMM_C1)); |
| 1630 | seq_printf(m, "MAD_DIMM_C2 = 0x%08x\n", |
| 1631 | I915_READ(MAD_DIMM_C2)); |
| 1632 | seq_printf(m, "TILECTL = 0x%08x\n", |
| 1633 | I915_READ(TILECTL)); |
Ben Widawsky | 9d3203e | 2013-11-02 21:07:14 -0700 | [diff] [blame] | 1634 | if (IS_GEN8(dev)) |
| 1635 | seq_printf(m, "GAMTARBMODE = 0x%08x\n", |
| 1636 | I915_READ(GAMTARBMODE)); |
| 1637 | else |
| 1638 | seq_printf(m, "ARB_MODE = 0x%08x\n", |
| 1639 | I915_READ(ARB_MODE)); |
Daniel Vetter | 3fa7d23 | 2012-01-31 16:47:56 +0100 | [diff] [blame] | 1640 | seq_printf(m, "DISP_ARB_CTL = 0x%08x\n", |
| 1641 | I915_READ(DISP_ARB_CTL)); |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 1642 | } |
| 1643 | mutex_unlock(&dev->struct_mutex); |
| 1644 | |
| 1645 | return 0; |
| 1646 | } |
| 1647 | |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 1648 | static void gen8_ppgtt_info(struct seq_file *m, struct drm_device *dev) |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 1649 | { |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 1650 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1651 | struct intel_ring_buffer *ring; |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 1652 | struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt; |
| 1653 | int unused, i; |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 1654 | |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 1655 | if (!ppgtt) |
| 1656 | return; |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 1657 | |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 1658 | seq_printf(m, "Page directories: %d\n", ppgtt->num_pd_pages); |
| 1659 | seq_printf(m, "Page tables: %d\n", ppgtt->num_pt_pages); |
| 1660 | for_each_ring(ring, dev_priv, unused) { |
| 1661 | seq_printf(m, "%s\n", ring->name); |
| 1662 | for (i = 0; i < 4; i++) { |
| 1663 | u32 offset = 0x270 + i * 8; |
| 1664 | u64 pdp = I915_READ(ring->mmio_base + offset + 4); |
| 1665 | pdp <<= 32; |
| 1666 | pdp |= I915_READ(ring->mmio_base + offset); |
| 1667 | for (i = 0; i < 4; i++) |
| 1668 | seq_printf(m, "\tPDP%d 0x%016llx\n", i, pdp); |
| 1669 | } |
| 1670 | } |
| 1671 | } |
| 1672 | |
| 1673 | static void gen6_ppgtt_info(struct seq_file *m, struct drm_device *dev) |
| 1674 | { |
| 1675 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1676 | struct intel_ring_buffer *ring; |
| 1677 | int i; |
| 1678 | |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 1679 | if (INTEL_INFO(dev)->gen == 6) |
| 1680 | seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(GFX_MODE)); |
| 1681 | |
Chris Wilson | a2c7f6f | 2012-09-01 20:51:22 +0100 | [diff] [blame] | 1682 | for_each_ring(ring, dev_priv, i) { |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 1683 | seq_printf(m, "%s\n", ring->name); |
| 1684 | if (INTEL_INFO(dev)->gen == 7) |
| 1685 | seq_printf(m, "GFX_MODE: 0x%08x\n", I915_READ(RING_MODE_GEN7(ring))); |
| 1686 | seq_printf(m, "PP_DIR_BASE: 0x%08x\n", I915_READ(RING_PP_DIR_BASE(ring))); |
| 1687 | seq_printf(m, "PP_DIR_BASE_READ: 0x%08x\n", I915_READ(RING_PP_DIR_BASE_READ(ring))); |
| 1688 | seq_printf(m, "PP_DIR_DCLV: 0x%08x\n", I915_READ(RING_PP_DIR_DCLV(ring))); |
| 1689 | } |
| 1690 | if (dev_priv->mm.aliasing_ppgtt) { |
| 1691 | struct i915_hw_ppgtt *ppgtt = dev_priv->mm.aliasing_ppgtt; |
| 1692 | |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1693 | seq_puts(m, "aliasing PPGTT:\n"); |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 1694 | seq_printf(m, "pd gtt offset: 0x%08x\n", ppgtt->pd_offset); |
| 1695 | } |
| 1696 | seq_printf(m, "ECOCHK: 0x%08x\n", I915_READ(GAM_ECOCHK)); |
Ben Widawsky | 77df677 | 2013-11-02 21:07:30 -0700 | [diff] [blame] | 1697 | } |
| 1698 | |
| 1699 | static int i915_ppgtt_info(struct seq_file *m, void *data) |
| 1700 | { |
| 1701 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1702 | struct drm_device *dev = node->minor->dev; |
| 1703 | |
| 1704 | int ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 1705 | if (ret) |
| 1706 | return ret; |
| 1707 | |
| 1708 | if (INTEL_INFO(dev)->gen >= 8) |
| 1709 | gen8_ppgtt_info(m, dev); |
| 1710 | else if (INTEL_INFO(dev)->gen >= 6) |
| 1711 | gen6_ppgtt_info(m, dev); |
| 1712 | |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 1713 | mutex_unlock(&dev->struct_mutex); |
| 1714 | |
| 1715 | return 0; |
| 1716 | } |
| 1717 | |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 1718 | static int i915_dpio_info(struct seq_file *m, void *data) |
| 1719 | { |
| 1720 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1721 | struct drm_device *dev = node->minor->dev; |
| 1722 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1723 | int ret; |
| 1724 | |
| 1725 | |
| 1726 | if (!IS_VALLEYVIEW(dev)) { |
Damien Lespiau | 267f0c9 | 2013-06-24 22:59:48 +0100 | [diff] [blame] | 1727 | seq_puts(m, "unsupported\n"); |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 1728 | return 0; |
| 1729 | } |
| 1730 | |
Daniel Vetter | 0915300 | 2012-12-12 14:06:44 +0100 | [diff] [blame] | 1731 | ret = mutex_lock_interruptible(&dev_priv->dpio_lock); |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 1732 | if (ret) |
| 1733 | return ret; |
| 1734 | |
| 1735 | seq_printf(m, "DPIO_CTL: 0x%08x\n", I915_READ(DPIO_CTL)); |
| 1736 | |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 1737 | seq_printf(m, "DPIO PLL DW3 CH0 : 0x%08x\n", |
| 1738 | vlv_dpio_read(dev_priv, PIPE_A, VLV_PLL_DW3(0))); |
| 1739 | seq_printf(m, "DPIO PLL DW3 CH1: 0x%08x\n", |
| 1740 | vlv_dpio_read(dev_priv, PIPE_A, VLV_PLL_DW3(1))); |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 1741 | |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 1742 | seq_printf(m, "DPIO PLL DW5 CH0: 0x%08x\n", |
| 1743 | vlv_dpio_read(dev_priv, PIPE_A, VLV_PLL_DW5(0))); |
| 1744 | seq_printf(m, "DPIO PLL DW5 CH1: 0x%08x\n", |
| 1745 | vlv_dpio_read(dev_priv, PIPE_A, VLV_PLL_DW5(1))); |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 1746 | |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 1747 | seq_printf(m, "DPIO PLL DW7 CH0: 0x%08x\n", |
| 1748 | vlv_dpio_read(dev_priv, PIPE_A, VLV_PLL_DW7(0))); |
| 1749 | seq_printf(m, "DPIO PLL DW7 CH1: 0x%08x\n", |
| 1750 | vlv_dpio_read(dev_priv, PIPE_A, VLV_PLL_DW7(1))); |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 1751 | |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 1752 | seq_printf(m, "DPIO PLL DW10 CH0: 0x%08x\n", |
| 1753 | vlv_dpio_read(dev_priv, PIPE_A, VLV_PLL_DW10(0))); |
| 1754 | seq_printf(m, "DPIO PLL DW10 CH1: 0x%08x\n", |
| 1755 | vlv_dpio_read(dev_priv, PIPE_A, VLV_PLL_DW10(1))); |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 1756 | |
| 1757 | seq_printf(m, "DPIO_FASTCLK_DISABLE: 0x%08x\n", |
Chon Ming Lee | ab3c759 | 2013-11-07 10:43:30 +0800 | [diff] [blame] | 1758 | vlv_dpio_read(dev_priv, PIPE_A, VLV_CMN_DW0)); |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 1759 | |
Daniel Vetter | 0915300 | 2012-12-12 14:06:44 +0100 | [diff] [blame] | 1760 | mutex_unlock(&dev_priv->dpio_lock); |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 1761 | |
| 1762 | return 0; |
| 1763 | } |
| 1764 | |
Ben Widawsky | 63573eb | 2013-07-04 11:02:07 -0700 | [diff] [blame] | 1765 | static int i915_llc(struct seq_file *m, void *data) |
| 1766 | { |
| 1767 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1768 | struct drm_device *dev = node->minor->dev; |
| 1769 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1770 | |
| 1771 | /* Size calculation for LLC is a bit of a pain. Ignore for now. */ |
| 1772 | seq_printf(m, "LLC: %s\n", yesno(HAS_LLC(dev))); |
| 1773 | seq_printf(m, "eLLC: %zuMB\n", dev_priv->ellc_size); |
| 1774 | |
| 1775 | return 0; |
| 1776 | } |
| 1777 | |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 1778 | static int i915_edp_psr_status(struct seq_file *m, void *data) |
| 1779 | { |
| 1780 | struct drm_info_node *node = m->private; |
| 1781 | struct drm_device *dev = node->minor->dev; |
| 1782 | struct drm_i915_private *dev_priv = dev->dev_private; |
Rodrigo Vivi | a031d70 | 2013-10-03 16:15:06 -0300 | [diff] [blame] | 1783 | u32 psrperf = 0; |
| 1784 | bool enabled = false; |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 1785 | |
Rodrigo Vivi | a031d70 | 2013-10-03 16:15:06 -0300 | [diff] [blame] | 1786 | seq_printf(m, "Sink_Support: %s\n", yesno(dev_priv->psr.sink_support)); |
| 1787 | seq_printf(m, "Source_OK: %s\n", yesno(dev_priv->psr.source_ok)); |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 1788 | |
Rodrigo Vivi | a031d70 | 2013-10-03 16:15:06 -0300 | [diff] [blame] | 1789 | enabled = HAS_PSR(dev) && |
| 1790 | I915_READ(EDP_PSR_CTL(dev)) & EDP_PSR_ENABLE; |
| 1791 | seq_printf(m, "Enabled: %s\n", yesno(enabled)); |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 1792 | |
Rodrigo Vivi | a031d70 | 2013-10-03 16:15:06 -0300 | [diff] [blame] | 1793 | if (HAS_PSR(dev)) |
| 1794 | psrperf = I915_READ(EDP_PSR_PERF_CNT(dev)) & |
| 1795 | EDP_PSR_PERF_CNT_MASK; |
| 1796 | seq_printf(m, "Performance_Counter: %u\n", psrperf); |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 1797 | |
| 1798 | return 0; |
| 1799 | } |
| 1800 | |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 1801 | static int i915_energy_uJ(struct seq_file *m, void *data) |
| 1802 | { |
| 1803 | struct drm_info_node *node = m->private; |
| 1804 | struct drm_device *dev = node->minor->dev; |
| 1805 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1806 | u64 power; |
| 1807 | u32 units; |
| 1808 | |
| 1809 | if (INTEL_INFO(dev)->gen < 6) |
| 1810 | return -ENODEV; |
| 1811 | |
| 1812 | rdmsrl(MSR_RAPL_POWER_UNIT, power); |
| 1813 | power = (power & 0x1f00) >> 8; |
| 1814 | units = 1000000 / (1 << power); /* convert to uJ */ |
| 1815 | power = I915_READ(MCH_SECP_NRG_STTS); |
| 1816 | power *= units; |
| 1817 | |
| 1818 | seq_printf(m, "%llu", (long long unsigned)power); |
Paulo Zanoni | 371db66 | 2013-08-19 13:18:10 -0300 | [diff] [blame] | 1819 | |
| 1820 | return 0; |
| 1821 | } |
| 1822 | |
| 1823 | static int i915_pc8_status(struct seq_file *m, void *unused) |
| 1824 | { |
| 1825 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1826 | struct drm_device *dev = node->minor->dev; |
| 1827 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1828 | |
| 1829 | if (!IS_HASWELL(dev)) { |
| 1830 | seq_puts(m, "not supported\n"); |
| 1831 | return 0; |
| 1832 | } |
| 1833 | |
| 1834 | mutex_lock(&dev_priv->pc8.lock); |
| 1835 | seq_printf(m, "Requirements met: %s\n", |
| 1836 | yesno(dev_priv->pc8.requirements_met)); |
| 1837 | seq_printf(m, "GPU idle: %s\n", yesno(dev_priv->pc8.gpu_idle)); |
| 1838 | seq_printf(m, "Disable count: %d\n", dev_priv->pc8.disable_count); |
| 1839 | seq_printf(m, "IRQs disabled: %s\n", |
| 1840 | yesno(dev_priv->pc8.irqs_disabled)); |
| 1841 | seq_printf(m, "Enabled: %s\n", yesno(dev_priv->pc8.enabled)); |
| 1842 | mutex_unlock(&dev_priv->pc8.lock); |
| 1843 | |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 1844 | return 0; |
| 1845 | } |
| 1846 | |
Imre Deak | 1da5158 | 2013-11-25 17:15:35 +0200 | [diff] [blame^] | 1847 | static const char *power_domain_str(enum intel_display_power_domain domain) |
| 1848 | { |
| 1849 | switch (domain) { |
| 1850 | case POWER_DOMAIN_PIPE_A: |
| 1851 | return "PIPE_A"; |
| 1852 | case POWER_DOMAIN_PIPE_B: |
| 1853 | return "PIPE_B"; |
| 1854 | case POWER_DOMAIN_PIPE_C: |
| 1855 | return "PIPE_C"; |
| 1856 | case POWER_DOMAIN_PIPE_A_PANEL_FITTER: |
| 1857 | return "PIPE_A_PANEL_FITTER"; |
| 1858 | case POWER_DOMAIN_PIPE_B_PANEL_FITTER: |
| 1859 | return "PIPE_B_PANEL_FITTER"; |
| 1860 | case POWER_DOMAIN_PIPE_C_PANEL_FITTER: |
| 1861 | return "PIPE_C_PANEL_FITTER"; |
| 1862 | case POWER_DOMAIN_TRANSCODER_A: |
| 1863 | return "TRANSCODER_A"; |
| 1864 | case POWER_DOMAIN_TRANSCODER_B: |
| 1865 | return "TRANSCODER_B"; |
| 1866 | case POWER_DOMAIN_TRANSCODER_C: |
| 1867 | return "TRANSCODER_C"; |
| 1868 | case POWER_DOMAIN_TRANSCODER_EDP: |
| 1869 | return "TRANSCODER_EDP"; |
| 1870 | case POWER_DOMAIN_VGA: |
| 1871 | return "VGA"; |
| 1872 | case POWER_DOMAIN_AUDIO: |
| 1873 | return "AUDIO"; |
| 1874 | case POWER_DOMAIN_INIT: |
| 1875 | return "INIT"; |
| 1876 | default: |
| 1877 | WARN_ON(1); |
| 1878 | return "?"; |
| 1879 | } |
| 1880 | } |
| 1881 | |
| 1882 | static int i915_power_domain_info(struct seq_file *m, void *unused) |
| 1883 | { |
| 1884 | struct drm_info_node *node = (struct drm_info_node *) m->private; |
| 1885 | struct drm_device *dev = node->minor->dev; |
| 1886 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1887 | struct i915_power_domains *power_domains = &dev_priv->power_domains; |
| 1888 | int i; |
| 1889 | |
| 1890 | mutex_lock(&power_domains->lock); |
| 1891 | |
| 1892 | seq_printf(m, "%-25s %s\n", "Power well/domain", "Use count"); |
| 1893 | for (i = 0; i < power_domains->power_well_count; i++) { |
| 1894 | struct i915_power_well *power_well; |
| 1895 | enum intel_display_power_domain power_domain; |
| 1896 | |
| 1897 | power_well = &power_domains->power_wells[i]; |
| 1898 | seq_printf(m, "%-25s %d\n", power_well->name, |
| 1899 | power_well->count); |
| 1900 | |
| 1901 | for (power_domain = 0; power_domain < POWER_DOMAIN_NUM; |
| 1902 | power_domain++) { |
| 1903 | if (!(BIT(power_domain) & power_well->domains)) |
| 1904 | continue; |
| 1905 | |
| 1906 | seq_printf(m, " %-23s %d\n", |
| 1907 | power_domain_str(power_domain), |
| 1908 | power_domains->domain_use_count[power_domain]); |
| 1909 | } |
| 1910 | } |
| 1911 | |
| 1912 | mutex_unlock(&power_domains->lock); |
| 1913 | |
| 1914 | return 0; |
| 1915 | } |
| 1916 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 1917 | struct pipe_crc_info { |
| 1918 | const char *name; |
| 1919 | struct drm_device *dev; |
| 1920 | enum pipe pipe; |
| 1921 | }; |
| 1922 | |
| 1923 | static int i915_pipe_crc_open(struct inode *inode, struct file *filep) |
Shuang He | 8bf1e9f | 2013-10-15 18:55:27 +0100 | [diff] [blame] | 1924 | { |
Damien Lespiau | be5c7a9 | 2013-10-15 18:55:41 +0100 | [diff] [blame] | 1925 | struct pipe_crc_info *info = inode->i_private; |
| 1926 | struct drm_i915_private *dev_priv = info->dev->dev_private; |
| 1927 | struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe]; |
| 1928 | |
Daniel Vetter | 7eb1c49 | 2013-11-14 11:30:43 +0100 | [diff] [blame] | 1929 | if (info->pipe >= INTEL_INFO(info->dev)->num_pipes) |
| 1930 | return -ENODEV; |
| 1931 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1932 | spin_lock_irq(&pipe_crc->lock); |
| 1933 | |
| 1934 | if (pipe_crc->opened) { |
| 1935 | spin_unlock_irq(&pipe_crc->lock); |
Damien Lespiau | be5c7a9 | 2013-10-15 18:55:41 +0100 | [diff] [blame] | 1936 | return -EBUSY; /* already open */ |
| 1937 | } |
| 1938 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1939 | pipe_crc->opened = true; |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 1940 | filep->private_data = inode->i_private; |
| 1941 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1942 | spin_unlock_irq(&pipe_crc->lock); |
| 1943 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 1944 | return 0; |
| 1945 | } |
| 1946 | |
| 1947 | static int i915_pipe_crc_release(struct inode *inode, struct file *filep) |
| 1948 | { |
Damien Lespiau | be5c7a9 | 2013-10-15 18:55:41 +0100 | [diff] [blame] | 1949 | struct pipe_crc_info *info = inode->i_private; |
| 1950 | struct drm_i915_private *dev_priv = info->dev->dev_private; |
| 1951 | struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe]; |
| 1952 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1953 | spin_lock_irq(&pipe_crc->lock); |
| 1954 | pipe_crc->opened = false; |
| 1955 | spin_unlock_irq(&pipe_crc->lock); |
Damien Lespiau | be5c7a9 | 2013-10-15 18:55:41 +0100 | [diff] [blame] | 1956 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 1957 | return 0; |
| 1958 | } |
| 1959 | |
| 1960 | /* (6 fields, 8 chars each, space separated (5) + '\n') */ |
| 1961 | #define PIPE_CRC_LINE_LEN (6 * 8 + 5 + 1) |
| 1962 | /* account for \'0' */ |
| 1963 | #define PIPE_CRC_BUFFER_LEN (PIPE_CRC_LINE_LEN + 1) |
| 1964 | |
| 1965 | static int pipe_crc_data_count(struct intel_pipe_crc *pipe_crc) |
| 1966 | { |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1967 | assert_spin_locked(&pipe_crc->lock); |
| 1968 | return CIRC_CNT(pipe_crc->head, pipe_crc->tail, |
| 1969 | INTEL_PIPE_CRC_ENTRIES_NR); |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 1970 | } |
Shuang He | 8bf1e9f | 2013-10-15 18:55:27 +0100 | [diff] [blame] | 1971 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 1972 | static ssize_t |
| 1973 | i915_pipe_crc_read(struct file *filep, char __user *user_buf, size_t count, |
| 1974 | loff_t *pos) |
| 1975 | { |
| 1976 | struct pipe_crc_info *info = filep->private_data; |
| 1977 | struct drm_device *dev = info->dev; |
| 1978 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1979 | struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[info->pipe]; |
| 1980 | char buf[PIPE_CRC_BUFFER_LEN]; |
| 1981 | int head, tail, n_entries, n; |
| 1982 | ssize_t bytes_read; |
| 1983 | |
| 1984 | /* |
| 1985 | * Don't allow user space to provide buffers not big enough to hold |
| 1986 | * a line of data. |
| 1987 | */ |
| 1988 | if (count < PIPE_CRC_LINE_LEN) |
| 1989 | return -EINVAL; |
| 1990 | |
| 1991 | if (pipe_crc->source == INTEL_PIPE_CRC_SOURCE_NONE) |
| 1992 | return 0; |
| 1993 | |
| 1994 | /* nothing to read */ |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1995 | spin_lock_irq(&pipe_crc->lock); |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 1996 | while (pipe_crc_data_count(pipe_crc) == 0) { |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1997 | int ret; |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 1998 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 1999 | if (filep->f_flags & O_NONBLOCK) { |
| 2000 | spin_unlock_irq(&pipe_crc->lock); |
| 2001 | return -EAGAIN; |
| 2002 | } |
| 2003 | |
| 2004 | ret = wait_event_interruptible_lock_irq(pipe_crc->wq, |
| 2005 | pipe_crc_data_count(pipe_crc), pipe_crc->lock); |
| 2006 | if (ret) { |
| 2007 | spin_unlock_irq(&pipe_crc->lock); |
| 2008 | return ret; |
| 2009 | } |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 2010 | } |
| 2011 | |
| 2012 | /* We now have one or more entries to read */ |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 2013 | head = pipe_crc->head; |
| 2014 | tail = pipe_crc->tail; |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 2015 | n_entries = min((size_t)CIRC_CNT(head, tail, INTEL_PIPE_CRC_ENTRIES_NR), |
| 2016 | count / PIPE_CRC_LINE_LEN); |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 2017 | spin_unlock_irq(&pipe_crc->lock); |
| 2018 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 2019 | bytes_read = 0; |
| 2020 | n = 0; |
| 2021 | do { |
| 2022 | struct intel_pipe_crc_entry *entry = &pipe_crc->entries[tail]; |
| 2023 | int ret; |
| 2024 | |
| 2025 | bytes_read += snprintf(buf, PIPE_CRC_BUFFER_LEN, |
| 2026 | "%8u %8x %8x %8x %8x %8x\n", |
| 2027 | entry->frame, entry->crc[0], |
| 2028 | entry->crc[1], entry->crc[2], |
| 2029 | entry->crc[3], entry->crc[4]); |
| 2030 | |
| 2031 | ret = copy_to_user(user_buf + n * PIPE_CRC_LINE_LEN, |
| 2032 | buf, PIPE_CRC_LINE_LEN); |
| 2033 | if (ret == PIPE_CRC_LINE_LEN) |
| 2034 | return -EFAULT; |
Damien Lespiau | b2c88f5 | 2013-10-15 18:55:29 +0100 | [diff] [blame] | 2035 | |
| 2036 | BUILD_BUG_ON_NOT_POWER_OF_2(INTEL_PIPE_CRC_ENTRIES_NR); |
| 2037 | tail = (tail + 1) & (INTEL_PIPE_CRC_ENTRIES_NR - 1); |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 2038 | n++; |
| 2039 | } while (--n_entries); |
Shuang He | 8bf1e9f | 2013-10-15 18:55:27 +0100 | [diff] [blame] | 2040 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 2041 | spin_lock_irq(&pipe_crc->lock); |
| 2042 | pipe_crc->tail = tail; |
| 2043 | spin_unlock_irq(&pipe_crc->lock); |
| 2044 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 2045 | return bytes_read; |
| 2046 | } |
| 2047 | |
| 2048 | static const struct file_operations i915_pipe_crc_fops = { |
| 2049 | .owner = THIS_MODULE, |
| 2050 | .open = i915_pipe_crc_open, |
| 2051 | .read = i915_pipe_crc_read, |
| 2052 | .release = i915_pipe_crc_release, |
| 2053 | }; |
| 2054 | |
| 2055 | static struct pipe_crc_info i915_pipe_crc_data[I915_MAX_PIPES] = { |
| 2056 | { |
| 2057 | .name = "i915_pipe_A_crc", |
| 2058 | .pipe = PIPE_A, |
| 2059 | }, |
| 2060 | { |
| 2061 | .name = "i915_pipe_B_crc", |
| 2062 | .pipe = PIPE_B, |
| 2063 | }, |
| 2064 | { |
| 2065 | .name = "i915_pipe_C_crc", |
| 2066 | .pipe = PIPE_C, |
| 2067 | }, |
| 2068 | }; |
| 2069 | |
| 2070 | static int i915_pipe_crc_create(struct dentry *root, struct drm_minor *minor, |
| 2071 | enum pipe pipe) |
| 2072 | { |
| 2073 | struct drm_device *dev = minor->dev; |
| 2074 | struct dentry *ent; |
| 2075 | struct pipe_crc_info *info = &i915_pipe_crc_data[pipe]; |
| 2076 | |
| 2077 | info->dev = dev; |
| 2078 | ent = debugfs_create_file(info->name, S_IRUGO, root, info, |
| 2079 | &i915_pipe_crc_fops); |
| 2080 | if (IS_ERR(ent)) |
| 2081 | return PTR_ERR(ent); |
| 2082 | |
| 2083 | return drm_add_fake_info_node(minor, ent, info); |
Shuang He | 8bf1e9f | 2013-10-15 18:55:27 +0100 | [diff] [blame] | 2084 | } |
| 2085 | |
Daniel Vetter | e8dfcf7 | 2013-10-16 11:51:54 +0200 | [diff] [blame] | 2086 | static const char * const pipe_crc_sources[] = { |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2087 | "none", |
| 2088 | "plane1", |
| 2089 | "plane2", |
| 2090 | "pf", |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2091 | "pipe", |
Daniel Vetter | 3d099a0 | 2013-10-16 22:55:58 +0200 | [diff] [blame] | 2092 | "TV", |
| 2093 | "DP-B", |
| 2094 | "DP-C", |
| 2095 | "DP-D", |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2096 | "auto", |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2097 | }; |
| 2098 | |
| 2099 | static const char *pipe_crc_source_name(enum intel_pipe_crc_source source) |
| 2100 | { |
| 2101 | BUILD_BUG_ON(ARRAY_SIZE(pipe_crc_sources) != INTEL_PIPE_CRC_SOURCE_MAX); |
| 2102 | return pipe_crc_sources[source]; |
| 2103 | } |
| 2104 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2105 | static int display_crc_ctl_show(struct seq_file *m, void *data) |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2106 | { |
| 2107 | struct drm_device *dev = m->private; |
| 2108 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2109 | int i; |
| 2110 | |
| 2111 | for (i = 0; i < I915_MAX_PIPES; i++) |
| 2112 | seq_printf(m, "%c %s\n", pipe_name(i), |
| 2113 | pipe_crc_source_name(dev_priv->pipe_crc[i].source)); |
| 2114 | |
| 2115 | return 0; |
| 2116 | } |
| 2117 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2118 | static int display_crc_ctl_open(struct inode *inode, struct file *file) |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2119 | { |
| 2120 | struct drm_device *dev = inode->i_private; |
| 2121 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2122 | return single_open(file, display_crc_ctl_show, dev); |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2123 | } |
| 2124 | |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2125 | static int i8xx_pipe_crc_ctl_reg(enum intel_pipe_crc_source *source, |
Daniel Vetter | 52f843f | 2013-10-21 17:26:38 +0200 | [diff] [blame] | 2126 | uint32_t *val) |
| 2127 | { |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2128 | if (*source == INTEL_PIPE_CRC_SOURCE_AUTO) |
| 2129 | *source = INTEL_PIPE_CRC_SOURCE_PIPE; |
| 2130 | |
| 2131 | switch (*source) { |
Daniel Vetter | 52f843f | 2013-10-21 17:26:38 +0200 | [diff] [blame] | 2132 | case INTEL_PIPE_CRC_SOURCE_PIPE: |
| 2133 | *val = PIPE_CRC_ENABLE | PIPE_CRC_INCLUDE_BORDER_I8XX; |
| 2134 | break; |
| 2135 | case INTEL_PIPE_CRC_SOURCE_NONE: |
| 2136 | *val = 0; |
| 2137 | break; |
| 2138 | default: |
| 2139 | return -EINVAL; |
| 2140 | } |
| 2141 | |
| 2142 | return 0; |
| 2143 | } |
| 2144 | |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2145 | static int i9xx_pipe_crc_auto_source(struct drm_device *dev, enum pipe pipe, |
| 2146 | enum intel_pipe_crc_source *source) |
| 2147 | { |
| 2148 | struct intel_encoder *encoder; |
| 2149 | struct intel_crtc *crtc; |
Daniel Vetter | 2675680 | 2013-11-01 10:50:23 +0100 | [diff] [blame] | 2150 | struct intel_digital_port *dig_port; |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2151 | int ret = 0; |
| 2152 | |
| 2153 | *source = INTEL_PIPE_CRC_SOURCE_PIPE; |
| 2154 | |
| 2155 | mutex_lock(&dev->mode_config.mutex); |
| 2156 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, |
| 2157 | base.head) { |
| 2158 | if (!encoder->base.crtc) |
| 2159 | continue; |
| 2160 | |
| 2161 | crtc = to_intel_crtc(encoder->base.crtc); |
| 2162 | |
| 2163 | if (crtc->pipe != pipe) |
| 2164 | continue; |
| 2165 | |
| 2166 | switch (encoder->type) { |
| 2167 | case INTEL_OUTPUT_TVOUT: |
| 2168 | *source = INTEL_PIPE_CRC_SOURCE_TV; |
| 2169 | break; |
| 2170 | case INTEL_OUTPUT_DISPLAYPORT: |
| 2171 | case INTEL_OUTPUT_EDP: |
Daniel Vetter | 2675680 | 2013-11-01 10:50:23 +0100 | [diff] [blame] | 2172 | dig_port = enc_to_dig_port(&encoder->base); |
| 2173 | switch (dig_port->port) { |
| 2174 | case PORT_B: |
| 2175 | *source = INTEL_PIPE_CRC_SOURCE_DP_B; |
| 2176 | break; |
| 2177 | case PORT_C: |
| 2178 | *source = INTEL_PIPE_CRC_SOURCE_DP_C; |
| 2179 | break; |
| 2180 | case PORT_D: |
| 2181 | *source = INTEL_PIPE_CRC_SOURCE_DP_D; |
| 2182 | break; |
| 2183 | default: |
| 2184 | WARN(1, "nonexisting DP port %c\n", |
| 2185 | port_name(dig_port->port)); |
| 2186 | break; |
| 2187 | } |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2188 | break; |
| 2189 | } |
| 2190 | } |
| 2191 | mutex_unlock(&dev->mode_config.mutex); |
| 2192 | |
| 2193 | return ret; |
| 2194 | } |
| 2195 | |
| 2196 | static int vlv_pipe_crc_ctl_reg(struct drm_device *dev, |
| 2197 | enum pipe pipe, |
| 2198 | enum intel_pipe_crc_source *source, |
Daniel Vetter | 7ac0129 | 2013-10-18 16:37:06 +0200 | [diff] [blame] | 2199 | uint32_t *val) |
| 2200 | { |
Daniel Vetter | 8d2f24c | 2013-11-01 10:50:22 +0100 | [diff] [blame] | 2201 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2202 | bool need_stable_symbols = false; |
| 2203 | |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2204 | if (*source == INTEL_PIPE_CRC_SOURCE_AUTO) { |
| 2205 | int ret = i9xx_pipe_crc_auto_source(dev, pipe, source); |
| 2206 | if (ret) |
| 2207 | return ret; |
| 2208 | } |
| 2209 | |
| 2210 | switch (*source) { |
Daniel Vetter | 7ac0129 | 2013-10-18 16:37:06 +0200 | [diff] [blame] | 2211 | case INTEL_PIPE_CRC_SOURCE_PIPE: |
| 2212 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PIPE_VLV; |
| 2213 | break; |
| 2214 | case INTEL_PIPE_CRC_SOURCE_DP_B: |
| 2215 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_B_VLV; |
Daniel Vetter | 8d2f24c | 2013-11-01 10:50:22 +0100 | [diff] [blame] | 2216 | need_stable_symbols = true; |
Daniel Vetter | 7ac0129 | 2013-10-18 16:37:06 +0200 | [diff] [blame] | 2217 | break; |
| 2218 | case INTEL_PIPE_CRC_SOURCE_DP_C: |
| 2219 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_C_VLV; |
Daniel Vetter | 8d2f24c | 2013-11-01 10:50:22 +0100 | [diff] [blame] | 2220 | need_stable_symbols = true; |
Daniel Vetter | 7ac0129 | 2013-10-18 16:37:06 +0200 | [diff] [blame] | 2221 | break; |
| 2222 | case INTEL_PIPE_CRC_SOURCE_NONE: |
| 2223 | *val = 0; |
| 2224 | break; |
| 2225 | default: |
| 2226 | return -EINVAL; |
| 2227 | } |
| 2228 | |
Daniel Vetter | 8d2f24c | 2013-11-01 10:50:22 +0100 | [diff] [blame] | 2229 | /* |
| 2230 | * When the pipe CRC tap point is after the transcoders we need |
| 2231 | * to tweak symbol-level features to produce a deterministic series of |
| 2232 | * symbols for a given frame. We need to reset those features only once |
| 2233 | * a frame (instead of every nth symbol): |
| 2234 | * - DC-balance: used to ensure a better clock recovery from the data |
| 2235 | * link (SDVO) |
| 2236 | * - DisplayPort scrambling: used for EMI reduction |
| 2237 | */ |
| 2238 | if (need_stable_symbols) { |
| 2239 | uint32_t tmp = I915_READ(PORT_DFT2_G4X); |
| 2240 | |
| 2241 | WARN_ON(!IS_G4X(dev)); |
| 2242 | |
| 2243 | tmp |= DC_BALANCE_RESET_VLV; |
| 2244 | if (pipe == PIPE_A) |
| 2245 | tmp |= PIPE_A_SCRAMBLE_RESET; |
| 2246 | else |
| 2247 | tmp |= PIPE_B_SCRAMBLE_RESET; |
| 2248 | |
| 2249 | I915_WRITE(PORT_DFT2_G4X, tmp); |
| 2250 | } |
| 2251 | |
Daniel Vetter | 7ac0129 | 2013-10-18 16:37:06 +0200 | [diff] [blame] | 2252 | return 0; |
| 2253 | } |
| 2254 | |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 2255 | static int i9xx_pipe_crc_ctl_reg(struct drm_device *dev, |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2256 | enum pipe pipe, |
| 2257 | enum intel_pipe_crc_source *source, |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 2258 | uint32_t *val) |
| 2259 | { |
Daniel Vetter | 8409360 | 2013-11-01 10:50:21 +0100 | [diff] [blame] | 2260 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2261 | bool need_stable_symbols = false; |
| 2262 | |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2263 | if (*source == INTEL_PIPE_CRC_SOURCE_AUTO) { |
| 2264 | int ret = i9xx_pipe_crc_auto_source(dev, pipe, source); |
| 2265 | if (ret) |
| 2266 | return ret; |
| 2267 | } |
| 2268 | |
| 2269 | switch (*source) { |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 2270 | case INTEL_PIPE_CRC_SOURCE_PIPE: |
| 2271 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PIPE_I9XX; |
| 2272 | break; |
| 2273 | case INTEL_PIPE_CRC_SOURCE_TV: |
| 2274 | if (!SUPPORTS_TV(dev)) |
| 2275 | return -EINVAL; |
| 2276 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_TV_PRE; |
| 2277 | break; |
| 2278 | case INTEL_PIPE_CRC_SOURCE_DP_B: |
| 2279 | if (!IS_G4X(dev)) |
| 2280 | return -EINVAL; |
| 2281 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_B_G4X; |
Daniel Vetter | 8409360 | 2013-11-01 10:50:21 +0100 | [diff] [blame] | 2282 | need_stable_symbols = true; |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 2283 | break; |
| 2284 | case INTEL_PIPE_CRC_SOURCE_DP_C: |
| 2285 | if (!IS_G4X(dev)) |
| 2286 | return -EINVAL; |
| 2287 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_C_G4X; |
Daniel Vetter | 8409360 | 2013-11-01 10:50:21 +0100 | [diff] [blame] | 2288 | need_stable_symbols = true; |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 2289 | break; |
| 2290 | case INTEL_PIPE_CRC_SOURCE_DP_D: |
| 2291 | if (!IS_G4X(dev)) |
| 2292 | return -EINVAL; |
| 2293 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_DP_D_G4X; |
Daniel Vetter | 8409360 | 2013-11-01 10:50:21 +0100 | [diff] [blame] | 2294 | need_stable_symbols = true; |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 2295 | break; |
| 2296 | case INTEL_PIPE_CRC_SOURCE_NONE: |
| 2297 | *val = 0; |
| 2298 | break; |
| 2299 | default: |
| 2300 | return -EINVAL; |
| 2301 | } |
| 2302 | |
Daniel Vetter | 8409360 | 2013-11-01 10:50:21 +0100 | [diff] [blame] | 2303 | /* |
| 2304 | * When the pipe CRC tap point is after the transcoders we need |
| 2305 | * to tweak symbol-level features to produce a deterministic series of |
| 2306 | * symbols for a given frame. We need to reset those features only once |
| 2307 | * a frame (instead of every nth symbol): |
| 2308 | * - DC-balance: used to ensure a better clock recovery from the data |
| 2309 | * link (SDVO) |
| 2310 | * - DisplayPort scrambling: used for EMI reduction |
| 2311 | */ |
| 2312 | if (need_stable_symbols) { |
| 2313 | uint32_t tmp = I915_READ(PORT_DFT2_G4X); |
| 2314 | |
| 2315 | WARN_ON(!IS_G4X(dev)); |
| 2316 | |
| 2317 | I915_WRITE(PORT_DFT_I9XX, |
| 2318 | I915_READ(PORT_DFT_I9XX) | DC_BALANCE_RESET); |
| 2319 | |
| 2320 | if (pipe == PIPE_A) |
| 2321 | tmp |= PIPE_A_SCRAMBLE_RESET; |
| 2322 | else |
| 2323 | tmp |= PIPE_B_SCRAMBLE_RESET; |
| 2324 | |
| 2325 | I915_WRITE(PORT_DFT2_G4X, tmp); |
| 2326 | } |
| 2327 | |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 2328 | return 0; |
| 2329 | } |
| 2330 | |
Daniel Vetter | 8d2f24c | 2013-11-01 10:50:22 +0100 | [diff] [blame] | 2331 | static void vlv_undo_pipe_scramble_reset(struct drm_device *dev, |
| 2332 | enum pipe pipe) |
| 2333 | { |
| 2334 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2335 | uint32_t tmp = I915_READ(PORT_DFT2_G4X); |
| 2336 | |
| 2337 | if (pipe == PIPE_A) |
| 2338 | tmp &= ~PIPE_A_SCRAMBLE_RESET; |
| 2339 | else |
| 2340 | tmp &= ~PIPE_B_SCRAMBLE_RESET; |
| 2341 | if (!(tmp & PIPE_SCRAMBLE_RESET_MASK)) |
| 2342 | tmp &= ~DC_BALANCE_RESET_VLV; |
| 2343 | I915_WRITE(PORT_DFT2_G4X, tmp); |
| 2344 | |
| 2345 | } |
| 2346 | |
Daniel Vetter | 8409360 | 2013-11-01 10:50:21 +0100 | [diff] [blame] | 2347 | static void g4x_undo_pipe_scramble_reset(struct drm_device *dev, |
| 2348 | enum pipe pipe) |
| 2349 | { |
| 2350 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2351 | uint32_t tmp = I915_READ(PORT_DFT2_G4X); |
| 2352 | |
| 2353 | if (pipe == PIPE_A) |
| 2354 | tmp &= ~PIPE_A_SCRAMBLE_RESET; |
| 2355 | else |
| 2356 | tmp &= ~PIPE_B_SCRAMBLE_RESET; |
| 2357 | I915_WRITE(PORT_DFT2_G4X, tmp); |
| 2358 | |
| 2359 | if (!(tmp & PIPE_SCRAMBLE_RESET_MASK)) { |
| 2360 | I915_WRITE(PORT_DFT_I9XX, |
| 2361 | I915_READ(PORT_DFT_I9XX) & ~DC_BALANCE_RESET); |
| 2362 | } |
| 2363 | } |
| 2364 | |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2365 | static int ilk_pipe_crc_ctl_reg(enum intel_pipe_crc_source *source, |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2366 | uint32_t *val) |
| 2367 | { |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2368 | if (*source == INTEL_PIPE_CRC_SOURCE_AUTO) |
| 2369 | *source = INTEL_PIPE_CRC_SOURCE_PIPE; |
| 2370 | |
| 2371 | switch (*source) { |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2372 | case INTEL_PIPE_CRC_SOURCE_PLANE1: |
| 2373 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PRIMARY_ILK; |
| 2374 | break; |
| 2375 | case INTEL_PIPE_CRC_SOURCE_PLANE2: |
| 2376 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_SPRITE_ILK; |
| 2377 | break; |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2378 | case INTEL_PIPE_CRC_SOURCE_PIPE: |
| 2379 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PIPE_ILK; |
| 2380 | break; |
Daniel Vetter | 3d099a0 | 2013-10-16 22:55:58 +0200 | [diff] [blame] | 2381 | case INTEL_PIPE_CRC_SOURCE_NONE: |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2382 | *val = 0; |
| 2383 | break; |
Daniel Vetter | 3d099a0 | 2013-10-16 22:55:58 +0200 | [diff] [blame] | 2384 | default: |
| 2385 | return -EINVAL; |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2386 | } |
| 2387 | |
| 2388 | return 0; |
| 2389 | } |
| 2390 | |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2391 | static int ivb_pipe_crc_ctl_reg(enum intel_pipe_crc_source *source, |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2392 | uint32_t *val) |
| 2393 | { |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2394 | if (*source == INTEL_PIPE_CRC_SOURCE_AUTO) |
| 2395 | *source = INTEL_PIPE_CRC_SOURCE_PF; |
| 2396 | |
| 2397 | switch (*source) { |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2398 | case INTEL_PIPE_CRC_SOURCE_PLANE1: |
| 2399 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PRIMARY_IVB; |
| 2400 | break; |
| 2401 | case INTEL_PIPE_CRC_SOURCE_PLANE2: |
| 2402 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_SPRITE_IVB; |
| 2403 | break; |
| 2404 | case INTEL_PIPE_CRC_SOURCE_PF: |
| 2405 | *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PF_IVB; |
| 2406 | break; |
Daniel Vetter | 3d099a0 | 2013-10-16 22:55:58 +0200 | [diff] [blame] | 2407 | case INTEL_PIPE_CRC_SOURCE_NONE: |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2408 | *val = 0; |
| 2409 | break; |
Daniel Vetter | 3d099a0 | 2013-10-16 22:55:58 +0200 | [diff] [blame] | 2410 | default: |
| 2411 | return -EINVAL; |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2412 | } |
| 2413 | |
| 2414 | return 0; |
| 2415 | } |
| 2416 | |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2417 | static int pipe_crc_set_source(struct drm_device *dev, enum pipe pipe, |
| 2418 | enum intel_pipe_crc_source source) |
| 2419 | { |
| 2420 | struct drm_i915_private *dev_priv = dev->dev_private; |
Damien Lespiau | cc3da17 | 2013-10-15 18:55:31 +0100 | [diff] [blame] | 2421 | struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe]; |
Borislav Petkov | 432f334 | 2013-11-21 16:49:46 +0100 | [diff] [blame] | 2422 | u32 val = 0; /* shut up gcc */ |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2423 | int ret; |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2424 | |
Damien Lespiau | cc3da17 | 2013-10-15 18:55:31 +0100 | [diff] [blame] | 2425 | if (pipe_crc->source == source) |
| 2426 | return 0; |
| 2427 | |
Damien Lespiau | ae676fc | 2013-10-15 18:55:32 +0100 | [diff] [blame] | 2428 | /* forbid changing the source without going back to 'none' */ |
| 2429 | if (pipe_crc->source && source) |
| 2430 | return -EINVAL; |
| 2431 | |
Daniel Vetter | 52f843f | 2013-10-21 17:26:38 +0200 | [diff] [blame] | 2432 | if (IS_GEN2(dev)) |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2433 | ret = i8xx_pipe_crc_ctl_reg(&source, &val); |
Daniel Vetter | 52f843f | 2013-10-21 17:26:38 +0200 | [diff] [blame] | 2434 | else if (INTEL_INFO(dev)->gen < 5) |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2435 | ret = i9xx_pipe_crc_ctl_reg(dev, pipe, &source, &val); |
Daniel Vetter | 7ac0129 | 2013-10-18 16:37:06 +0200 | [diff] [blame] | 2436 | else if (IS_VALLEYVIEW(dev)) |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2437 | ret = vlv_pipe_crc_ctl_reg(dev,pipe, &source, &val); |
Daniel Vetter | 4b79ebf | 2013-10-16 22:55:59 +0200 | [diff] [blame] | 2438 | else if (IS_GEN5(dev) || IS_GEN6(dev)) |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2439 | ret = ilk_pipe_crc_ctl_reg(&source, &val); |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2440 | else |
Daniel Vetter | 46a1918 | 2013-11-01 10:50:20 +0100 | [diff] [blame] | 2441 | ret = ivb_pipe_crc_ctl_reg(&source, &val); |
Daniel Vetter | 5b3a856 | 2013-10-16 22:55:48 +0200 | [diff] [blame] | 2442 | |
| 2443 | if (ret != 0) |
| 2444 | return ret; |
| 2445 | |
Damien Lespiau | 4b58436 | 2013-10-15 18:55:33 +0100 | [diff] [blame] | 2446 | /* none -> real source transition */ |
| 2447 | if (source) { |
Damien Lespiau | 7cd6ccf | 2013-10-15 18:55:38 +0100 | [diff] [blame] | 2448 | DRM_DEBUG_DRIVER("collecting CRCs for pipe %c, %s\n", |
| 2449 | pipe_name(pipe), pipe_crc_source_name(source)); |
| 2450 | |
Damien Lespiau | e5f75ac | 2013-10-15 18:55:34 +0100 | [diff] [blame] | 2451 | pipe_crc->entries = kzalloc(sizeof(*pipe_crc->entries) * |
| 2452 | INTEL_PIPE_CRC_ENTRIES_NR, |
| 2453 | GFP_KERNEL); |
| 2454 | if (!pipe_crc->entries) |
| 2455 | return -ENOMEM; |
| 2456 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 2457 | spin_lock_irq(&pipe_crc->lock); |
| 2458 | pipe_crc->head = 0; |
| 2459 | pipe_crc->tail = 0; |
| 2460 | spin_unlock_irq(&pipe_crc->lock); |
Damien Lespiau | 4b58436 | 2013-10-15 18:55:33 +0100 | [diff] [blame] | 2461 | } |
| 2462 | |
Damien Lespiau | cc3da17 | 2013-10-15 18:55:31 +0100 | [diff] [blame] | 2463 | pipe_crc->source = source; |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2464 | |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2465 | I915_WRITE(PIPE_CRC_CTL(pipe), val); |
| 2466 | POSTING_READ(PIPE_CRC_CTL(pipe)); |
| 2467 | |
Damien Lespiau | e5f75ac | 2013-10-15 18:55:34 +0100 | [diff] [blame] | 2468 | /* real source -> none transition */ |
| 2469 | if (source == INTEL_PIPE_CRC_SOURCE_NONE) { |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 2470 | struct intel_pipe_crc_entry *entries; |
| 2471 | |
Damien Lespiau | 7cd6ccf | 2013-10-15 18:55:38 +0100 | [diff] [blame] | 2472 | DRM_DEBUG_DRIVER("stopping CRCs for pipe %c\n", |
| 2473 | pipe_name(pipe)); |
| 2474 | |
Daniel Vetter | bcf17ab | 2013-10-16 22:55:50 +0200 | [diff] [blame] | 2475 | intel_wait_for_vblank(dev, pipe); |
| 2476 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 2477 | spin_lock_irq(&pipe_crc->lock); |
| 2478 | entries = pipe_crc->entries; |
Damien Lespiau | e5f75ac | 2013-10-15 18:55:34 +0100 | [diff] [blame] | 2479 | pipe_crc->entries = NULL; |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 2480 | spin_unlock_irq(&pipe_crc->lock); |
| 2481 | |
| 2482 | kfree(entries); |
Daniel Vetter | 8409360 | 2013-11-01 10:50:21 +0100 | [diff] [blame] | 2483 | |
| 2484 | if (IS_G4X(dev)) |
| 2485 | g4x_undo_pipe_scramble_reset(dev, pipe); |
Daniel Vetter | 8d2f24c | 2013-11-01 10:50:22 +0100 | [diff] [blame] | 2486 | else if (IS_VALLEYVIEW(dev)) |
| 2487 | vlv_undo_pipe_scramble_reset(dev, pipe); |
Damien Lespiau | e5f75ac | 2013-10-15 18:55:34 +0100 | [diff] [blame] | 2488 | } |
| 2489 | |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2490 | return 0; |
| 2491 | } |
| 2492 | |
| 2493 | /* |
| 2494 | * Parse pipe CRC command strings: |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2495 | * command: wsp* object wsp+ name wsp+ source wsp* |
| 2496 | * object: 'pipe' |
| 2497 | * name: (A | B | C) |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2498 | * source: (none | plane1 | plane2 | pf) |
| 2499 | * wsp: (#0x20 | #0x9 | #0xA)+ |
| 2500 | * |
| 2501 | * eg.: |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2502 | * "pipe A plane1" -> Start CRC computations on plane1 of pipe A |
| 2503 | * "pipe A none" -> Stop CRC |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2504 | */ |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2505 | static int display_crc_ctl_tokenize(char *buf, char *words[], int max_words) |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2506 | { |
| 2507 | int n_words = 0; |
| 2508 | |
| 2509 | while (*buf) { |
| 2510 | char *end; |
| 2511 | |
| 2512 | /* skip leading white space */ |
| 2513 | buf = skip_spaces(buf); |
| 2514 | if (!*buf) |
| 2515 | break; /* end of buffer */ |
| 2516 | |
| 2517 | /* find end of word */ |
| 2518 | for (end = buf; *end && !isspace(*end); end++) |
| 2519 | ; |
| 2520 | |
| 2521 | if (n_words == max_words) { |
| 2522 | DRM_DEBUG_DRIVER("too many words, allowed <= %d\n", |
| 2523 | max_words); |
| 2524 | return -EINVAL; /* ran out of words[] before bytes */ |
| 2525 | } |
| 2526 | |
| 2527 | if (*end) |
| 2528 | *end++ = '\0'; |
| 2529 | words[n_words++] = buf; |
| 2530 | buf = end; |
| 2531 | } |
| 2532 | |
| 2533 | return n_words; |
| 2534 | } |
| 2535 | |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2536 | enum intel_pipe_crc_object { |
| 2537 | PIPE_CRC_OBJECT_PIPE, |
| 2538 | }; |
| 2539 | |
Daniel Vetter | e8dfcf7 | 2013-10-16 11:51:54 +0200 | [diff] [blame] | 2540 | static const char * const pipe_crc_objects[] = { |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2541 | "pipe", |
| 2542 | }; |
| 2543 | |
| 2544 | static int |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2545 | display_crc_ctl_parse_object(const char *buf, enum intel_pipe_crc_object *o) |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2546 | { |
| 2547 | int i; |
| 2548 | |
| 2549 | for (i = 0; i < ARRAY_SIZE(pipe_crc_objects); i++) |
| 2550 | if (!strcmp(buf, pipe_crc_objects[i])) { |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2551 | *o = i; |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2552 | return 0; |
| 2553 | } |
| 2554 | |
| 2555 | return -EINVAL; |
| 2556 | } |
| 2557 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2558 | static int display_crc_ctl_parse_pipe(const char *buf, enum pipe *pipe) |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2559 | { |
| 2560 | const char name = buf[0]; |
| 2561 | |
| 2562 | if (name < 'A' || name >= pipe_name(I915_MAX_PIPES)) |
| 2563 | return -EINVAL; |
| 2564 | |
| 2565 | *pipe = name - 'A'; |
| 2566 | |
| 2567 | return 0; |
| 2568 | } |
| 2569 | |
| 2570 | static int |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2571 | display_crc_ctl_parse_source(const char *buf, enum intel_pipe_crc_source *s) |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2572 | { |
| 2573 | int i; |
| 2574 | |
| 2575 | for (i = 0; i < ARRAY_SIZE(pipe_crc_sources); i++) |
| 2576 | if (!strcmp(buf, pipe_crc_sources[i])) { |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2577 | *s = i; |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2578 | return 0; |
| 2579 | } |
| 2580 | |
| 2581 | return -EINVAL; |
| 2582 | } |
| 2583 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2584 | static int display_crc_ctl_parse(struct drm_device *dev, char *buf, size_t len) |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2585 | { |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2586 | #define N_WORDS 3 |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2587 | int n_words; |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2588 | char *words[N_WORDS]; |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2589 | enum pipe pipe; |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2590 | enum intel_pipe_crc_object object; |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2591 | enum intel_pipe_crc_source source; |
| 2592 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2593 | n_words = display_crc_ctl_tokenize(buf, words, N_WORDS); |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2594 | if (n_words != N_WORDS) { |
| 2595 | DRM_DEBUG_DRIVER("tokenize failed, a command is %d words\n", |
| 2596 | N_WORDS); |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2597 | return -EINVAL; |
| 2598 | } |
| 2599 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2600 | if (display_crc_ctl_parse_object(words[0], &object) < 0) { |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2601 | DRM_DEBUG_DRIVER("unknown object %s\n", words[0]); |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2602 | return -EINVAL; |
| 2603 | } |
| 2604 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2605 | if (display_crc_ctl_parse_pipe(words[1], &pipe) < 0) { |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2606 | DRM_DEBUG_DRIVER("unknown pipe %s\n", words[1]); |
| 2607 | return -EINVAL; |
| 2608 | } |
| 2609 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2610 | if (display_crc_ctl_parse_source(words[2], &source) < 0) { |
Damien Lespiau | b94dec8 | 2013-10-15 18:55:35 +0100 | [diff] [blame] | 2611 | DRM_DEBUG_DRIVER("unknown source %s\n", words[2]); |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2612 | return -EINVAL; |
| 2613 | } |
| 2614 | |
| 2615 | return pipe_crc_set_source(dev, pipe, source); |
| 2616 | } |
| 2617 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2618 | static ssize_t display_crc_ctl_write(struct file *file, const char __user *ubuf, |
| 2619 | size_t len, loff_t *offp) |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2620 | { |
| 2621 | struct seq_file *m = file->private_data; |
| 2622 | struct drm_device *dev = m->private; |
| 2623 | char *tmpbuf; |
| 2624 | int ret; |
| 2625 | |
| 2626 | if (len == 0) |
| 2627 | return 0; |
| 2628 | |
| 2629 | if (len > PAGE_SIZE - 1) { |
| 2630 | DRM_DEBUG_DRIVER("expected <%lu bytes into pipe crc control\n", |
| 2631 | PAGE_SIZE); |
| 2632 | return -E2BIG; |
| 2633 | } |
| 2634 | |
| 2635 | tmpbuf = kmalloc(len + 1, GFP_KERNEL); |
| 2636 | if (!tmpbuf) |
| 2637 | return -ENOMEM; |
| 2638 | |
| 2639 | if (copy_from_user(tmpbuf, ubuf, len)) { |
| 2640 | ret = -EFAULT; |
| 2641 | goto out; |
| 2642 | } |
| 2643 | tmpbuf[len] = '\0'; |
| 2644 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2645 | ret = display_crc_ctl_parse(dev, tmpbuf, len); |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2646 | |
| 2647 | out: |
| 2648 | kfree(tmpbuf); |
| 2649 | if (ret < 0) |
| 2650 | return ret; |
| 2651 | |
| 2652 | *offp += len; |
| 2653 | return len; |
| 2654 | } |
| 2655 | |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2656 | static const struct file_operations i915_display_crc_ctl_fops = { |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2657 | .owner = THIS_MODULE, |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2658 | .open = display_crc_ctl_open, |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2659 | .read = seq_read, |
| 2660 | .llseek = seq_lseek, |
| 2661 | .release = single_release, |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 2662 | .write = display_crc_ctl_write |
Daniel Vetter | 926321d | 2013-10-16 13:30:34 +0200 | [diff] [blame] | 2663 | }; |
| 2664 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2665 | static int |
| 2666 | i915_wedged_get(void *data, u64 *val) |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 2667 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2668 | struct drm_device *dev = data; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 2669 | drm_i915_private_t *dev_priv = dev->dev_private; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 2670 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2671 | *val = atomic_read(&dev_priv->gpu_error.reset_counter); |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 2672 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2673 | return 0; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 2674 | } |
| 2675 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2676 | static int |
| 2677 | i915_wedged_set(void *data, u64 val) |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 2678 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2679 | struct drm_device *dev = data; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 2680 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2681 | DRM_INFO("Manually setting wedged to %llu\n", val); |
Chris Wilson | 527f9e9 | 2010-11-11 01:16:58 +0000 | [diff] [blame] | 2682 | i915_handle_error(dev, val); |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 2683 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2684 | return 0; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 2685 | } |
| 2686 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2687 | DEFINE_SIMPLE_ATTRIBUTE(i915_wedged_fops, |
| 2688 | i915_wedged_get, i915_wedged_set, |
Mika Kuoppala | 3a3b4f9 | 2013-04-12 12:10:05 +0300 | [diff] [blame] | 2689 | "%llu\n"); |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 2690 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2691 | static int |
| 2692 | i915_ring_stop_get(void *data, u64 *val) |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 2693 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2694 | struct drm_device *dev = data; |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 2695 | drm_i915_private_t *dev_priv = dev->dev_private; |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 2696 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2697 | *val = dev_priv->gpu_error.stop_rings; |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 2698 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2699 | return 0; |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 2700 | } |
| 2701 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2702 | static int |
| 2703 | i915_ring_stop_set(void *data, u64 val) |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 2704 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2705 | struct drm_device *dev = data; |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 2706 | struct drm_i915_private *dev_priv = dev->dev_private; |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2707 | int ret; |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 2708 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2709 | DRM_DEBUG_DRIVER("Stopping rings 0x%08llx\n", val); |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 2710 | |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 2711 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 2712 | if (ret) |
| 2713 | return ret; |
| 2714 | |
Daniel Vetter | 99584db | 2012-11-14 17:14:04 +0100 | [diff] [blame] | 2715 | dev_priv->gpu_error.stop_rings = val; |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 2716 | mutex_unlock(&dev->struct_mutex); |
| 2717 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2718 | return 0; |
Daniel Vetter | e5eb3d6 | 2012-05-03 14:48:16 +0200 | [diff] [blame] | 2719 | } |
| 2720 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2721 | DEFINE_SIMPLE_ATTRIBUTE(i915_ring_stop_fops, |
| 2722 | i915_ring_stop_get, i915_ring_stop_set, |
| 2723 | "0x%08llx\n"); |
Daniel Vetter | d544230 | 2012-04-27 15:17:40 +0200 | [diff] [blame] | 2724 | |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 2725 | static int |
| 2726 | i915_ring_missed_irq_get(void *data, u64 *val) |
| 2727 | { |
| 2728 | struct drm_device *dev = data; |
| 2729 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2730 | |
| 2731 | *val = dev_priv->gpu_error.missed_irq_rings; |
| 2732 | return 0; |
| 2733 | } |
| 2734 | |
| 2735 | static int |
| 2736 | i915_ring_missed_irq_set(void *data, u64 val) |
| 2737 | { |
| 2738 | struct drm_device *dev = data; |
| 2739 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2740 | int ret; |
| 2741 | |
| 2742 | /* Lock against concurrent debugfs callers */ |
| 2743 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 2744 | if (ret) |
| 2745 | return ret; |
| 2746 | dev_priv->gpu_error.missed_irq_rings = val; |
| 2747 | mutex_unlock(&dev->struct_mutex); |
| 2748 | |
| 2749 | return 0; |
| 2750 | } |
| 2751 | |
| 2752 | DEFINE_SIMPLE_ATTRIBUTE(i915_ring_missed_irq_fops, |
| 2753 | i915_ring_missed_irq_get, i915_ring_missed_irq_set, |
| 2754 | "0x%08llx\n"); |
| 2755 | |
| 2756 | static int |
| 2757 | i915_ring_test_irq_get(void *data, u64 *val) |
| 2758 | { |
| 2759 | struct drm_device *dev = data; |
| 2760 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2761 | |
| 2762 | *val = dev_priv->gpu_error.test_irq_rings; |
| 2763 | |
| 2764 | return 0; |
| 2765 | } |
| 2766 | |
| 2767 | static int |
| 2768 | i915_ring_test_irq_set(void *data, u64 val) |
| 2769 | { |
| 2770 | struct drm_device *dev = data; |
| 2771 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2772 | int ret; |
| 2773 | |
| 2774 | DRM_DEBUG_DRIVER("Masking interrupts on rings 0x%08llx\n", val); |
| 2775 | |
| 2776 | /* Lock against concurrent debugfs callers */ |
| 2777 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 2778 | if (ret) |
| 2779 | return ret; |
| 2780 | |
| 2781 | dev_priv->gpu_error.test_irq_rings = val; |
| 2782 | mutex_unlock(&dev->struct_mutex); |
| 2783 | |
| 2784 | return 0; |
| 2785 | } |
| 2786 | |
| 2787 | DEFINE_SIMPLE_ATTRIBUTE(i915_ring_test_irq_fops, |
| 2788 | i915_ring_test_irq_get, i915_ring_test_irq_set, |
| 2789 | "0x%08llx\n"); |
| 2790 | |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2791 | #define DROP_UNBOUND 0x1 |
| 2792 | #define DROP_BOUND 0x2 |
| 2793 | #define DROP_RETIRE 0x4 |
| 2794 | #define DROP_ACTIVE 0x8 |
| 2795 | #define DROP_ALL (DROP_UNBOUND | \ |
| 2796 | DROP_BOUND | \ |
| 2797 | DROP_RETIRE | \ |
| 2798 | DROP_ACTIVE) |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2799 | static int |
| 2800 | i915_drop_caches_get(void *data, u64 *val) |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2801 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2802 | *val = DROP_ALL; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2803 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2804 | return 0; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2805 | } |
| 2806 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2807 | static int |
| 2808 | i915_drop_caches_set(void *data, u64 val) |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2809 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2810 | struct drm_device *dev = data; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2811 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2812 | struct drm_i915_gem_object *obj, *next; |
Ben Widawsky | ca191b1 | 2013-07-31 17:00:14 -0700 | [diff] [blame] | 2813 | struct i915_address_space *vm; |
| 2814 | struct i915_vma *vma, *x; |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2815 | int ret; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2816 | |
Ben Widawsky | 2f9fe5f | 2013-11-25 09:54:37 -0800 | [diff] [blame] | 2817 | DRM_DEBUG("Dropping caches: 0x%08llx\n", val); |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2818 | |
| 2819 | /* No need to check and wait for gpu resets, only libdrm auto-restarts |
| 2820 | * on ioctls on -EAGAIN. */ |
| 2821 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 2822 | if (ret) |
| 2823 | return ret; |
| 2824 | |
| 2825 | if (val & DROP_ACTIVE) { |
| 2826 | ret = i915_gpu_idle(dev); |
| 2827 | if (ret) |
| 2828 | goto unlock; |
| 2829 | } |
| 2830 | |
| 2831 | if (val & (DROP_RETIRE | DROP_ACTIVE)) |
| 2832 | i915_gem_retire_requests(dev); |
| 2833 | |
| 2834 | if (val & DROP_BOUND) { |
Ben Widawsky | ca191b1 | 2013-07-31 17:00:14 -0700 | [diff] [blame] | 2835 | list_for_each_entry(vm, &dev_priv->vm_list, global_link) { |
| 2836 | list_for_each_entry_safe(vma, x, &vm->inactive_list, |
| 2837 | mm_list) { |
| 2838 | if (vma->obj->pin_count) |
| 2839 | continue; |
Ben Widawsky | 31a46c9 | 2013-07-31 16:59:55 -0700 | [diff] [blame] | 2840 | |
Ben Widawsky | ca191b1 | 2013-07-31 17:00:14 -0700 | [diff] [blame] | 2841 | ret = i915_vma_unbind(vma); |
| 2842 | if (ret) |
| 2843 | goto unlock; |
| 2844 | } |
Ben Widawsky | 31a46c9 | 2013-07-31 16:59:55 -0700 | [diff] [blame] | 2845 | } |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2846 | } |
| 2847 | |
| 2848 | if (val & DROP_UNBOUND) { |
Ben Widawsky | 35c20a6 | 2013-05-31 11:28:48 -0700 | [diff] [blame] | 2849 | list_for_each_entry_safe(obj, next, &dev_priv->mm.unbound_list, |
| 2850 | global_list) |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2851 | if (obj->pages_pin_count == 0) { |
| 2852 | ret = i915_gem_object_put_pages(obj); |
| 2853 | if (ret) |
| 2854 | goto unlock; |
| 2855 | } |
| 2856 | } |
| 2857 | |
| 2858 | unlock: |
| 2859 | mutex_unlock(&dev->struct_mutex); |
| 2860 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2861 | return ret; |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2862 | } |
| 2863 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2864 | DEFINE_SIMPLE_ATTRIBUTE(i915_drop_caches_fops, |
| 2865 | i915_drop_caches_get, i915_drop_caches_set, |
| 2866 | "0x%08llx\n"); |
Chris Wilson | dd624af | 2013-01-15 12:39:35 +0000 | [diff] [blame] | 2867 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2868 | static int |
| 2869 | i915_max_freq_get(void *data, u64 *val) |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2870 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2871 | struct drm_device *dev = data; |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2872 | drm_i915_private_t *dev_priv = dev->dev_private; |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2873 | int ret; |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 2874 | |
| 2875 | if (!(IS_GEN6(dev) || IS_GEN7(dev))) |
| 2876 | return -ENODEV; |
| 2877 | |
Tom O'Rourke | 5c9669c | 2013-09-16 14:56:43 -0700 | [diff] [blame] | 2878 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 2879 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 2880 | ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock); |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 2881 | if (ret) |
| 2882 | return ret; |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2883 | |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 2884 | if (IS_VALLEYVIEW(dev)) |
Ville Syrjälä | 2ec3815 | 2013-11-05 22:42:29 +0200 | [diff] [blame] | 2885 | *val = vlv_gpu_freq(dev_priv, dev_priv->rps.max_delay); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 2886 | else |
| 2887 | *val = dev_priv->rps.max_delay * GT_FREQUENCY_MULTIPLIER; |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 2888 | mutex_unlock(&dev_priv->rps.hw_lock); |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2889 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2890 | return 0; |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2891 | } |
| 2892 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2893 | static int |
| 2894 | i915_max_freq_set(void *data, u64 val) |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2895 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2896 | struct drm_device *dev = data; |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2897 | struct drm_i915_private *dev_priv = dev->dev_private; |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2898 | int ret; |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 2899 | |
| 2900 | if (!(IS_GEN6(dev) || IS_GEN7(dev))) |
| 2901 | return -ENODEV; |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2902 | |
Tom O'Rourke | 5c9669c | 2013-09-16 14:56:43 -0700 | [diff] [blame] | 2903 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 2904 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2905 | DRM_DEBUG_DRIVER("Manually setting max freq to %llu\n", val); |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2906 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 2907 | ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock); |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 2908 | if (ret) |
| 2909 | return ret; |
| 2910 | |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2911 | /* |
| 2912 | * Turbo will still be enabled, but won't go above the set value. |
| 2913 | */ |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 2914 | if (IS_VALLEYVIEW(dev)) { |
Ville Syrjälä | 2ec3815 | 2013-11-05 22:42:29 +0200 | [diff] [blame] | 2915 | val = vlv_freq_opcode(dev_priv, val); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 2916 | dev_priv->rps.max_delay = val; |
Chris Wilson | 6917c7b | 2013-11-06 13:56:26 -0200 | [diff] [blame] | 2917 | valleyview_set_rps(dev, val); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 2918 | } else { |
| 2919 | do_div(val, GT_FREQUENCY_MULTIPLIER); |
| 2920 | dev_priv->rps.max_delay = val; |
| 2921 | gen6_set_rps(dev, val); |
| 2922 | } |
| 2923 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 2924 | mutex_unlock(&dev_priv->rps.hw_lock); |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2925 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2926 | return 0; |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2927 | } |
| 2928 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2929 | DEFINE_SIMPLE_ATTRIBUTE(i915_max_freq_fops, |
| 2930 | i915_max_freq_get, i915_max_freq_set, |
Mika Kuoppala | 3a3b4f9 | 2013-04-12 12:10:05 +0300 | [diff] [blame] | 2931 | "%llu\n"); |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 2932 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2933 | static int |
| 2934 | i915_min_freq_get(void *data, u64 *val) |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2935 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2936 | struct drm_device *dev = data; |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2937 | drm_i915_private_t *dev_priv = dev->dev_private; |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2938 | int ret; |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 2939 | |
| 2940 | if (!(IS_GEN6(dev) || IS_GEN7(dev))) |
| 2941 | return -ENODEV; |
| 2942 | |
Tom O'Rourke | 5c9669c | 2013-09-16 14:56:43 -0700 | [diff] [blame] | 2943 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 2944 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 2945 | ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock); |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 2946 | if (ret) |
| 2947 | return ret; |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2948 | |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 2949 | if (IS_VALLEYVIEW(dev)) |
Ville Syrjälä | 2ec3815 | 2013-11-05 22:42:29 +0200 | [diff] [blame] | 2950 | *val = vlv_gpu_freq(dev_priv, dev_priv->rps.min_delay); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 2951 | else |
| 2952 | *val = dev_priv->rps.min_delay * GT_FREQUENCY_MULTIPLIER; |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 2953 | mutex_unlock(&dev_priv->rps.hw_lock); |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2954 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2955 | return 0; |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2956 | } |
| 2957 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2958 | static int |
| 2959 | i915_min_freq_set(void *data, u64 val) |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2960 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2961 | struct drm_device *dev = data; |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2962 | struct drm_i915_private *dev_priv = dev->dev_private; |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2963 | int ret; |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 2964 | |
| 2965 | if (!(IS_GEN6(dev) || IS_GEN7(dev))) |
| 2966 | return -ENODEV; |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2967 | |
Tom O'Rourke | 5c9669c | 2013-09-16 14:56:43 -0700 | [diff] [blame] | 2968 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 2969 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2970 | DRM_DEBUG_DRIVER("Manually setting min freq to %llu\n", val); |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2971 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 2972 | ret = mutex_lock_interruptible(&dev_priv->rps.hw_lock); |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 2973 | if (ret) |
| 2974 | return ret; |
| 2975 | |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2976 | /* |
| 2977 | * Turbo will still be enabled, but won't go below the set value. |
| 2978 | */ |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 2979 | if (IS_VALLEYVIEW(dev)) { |
Ville Syrjälä | 2ec3815 | 2013-11-05 22:42:29 +0200 | [diff] [blame] | 2980 | val = vlv_freq_opcode(dev_priv, val); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 2981 | dev_priv->rps.min_delay = val; |
| 2982 | valleyview_set_rps(dev, val); |
| 2983 | } else { |
| 2984 | do_div(val, GT_FREQUENCY_MULTIPLIER); |
| 2985 | dev_priv->rps.min_delay = val; |
| 2986 | gen6_set_rps(dev, val); |
| 2987 | } |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 2988 | mutex_unlock(&dev_priv->rps.hw_lock); |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2989 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2990 | return 0; |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2991 | } |
| 2992 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2993 | DEFINE_SIMPLE_ATTRIBUTE(i915_min_freq_fops, |
| 2994 | i915_min_freq_get, i915_min_freq_set, |
Mika Kuoppala | 3a3b4f9 | 2013-04-12 12:10:05 +0300 | [diff] [blame] | 2995 | "%llu\n"); |
Jesse Barnes | 1523c31 | 2012-05-25 12:34:54 -0700 | [diff] [blame] | 2996 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 2997 | static int |
| 2998 | i915_cache_sharing_get(void *data, u64 *val) |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 2999 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3000 | struct drm_device *dev = data; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 3001 | drm_i915_private_t *dev_priv = dev->dev_private; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 3002 | u32 snpcr; |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3003 | int ret; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 3004 | |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 3005 | if (!(IS_GEN6(dev) || IS_GEN7(dev))) |
| 3006 | return -ENODEV; |
| 3007 | |
Daniel Vetter | 22bcfc6 | 2012-08-09 15:07:02 +0200 | [diff] [blame] | 3008 | ret = mutex_lock_interruptible(&dev->struct_mutex); |
| 3009 | if (ret) |
| 3010 | return ret; |
| 3011 | |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 3012 | snpcr = I915_READ(GEN6_MBCUNIT_SNPCR); |
| 3013 | mutex_unlock(&dev_priv->dev->struct_mutex); |
| 3014 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3015 | *val = (snpcr & GEN6_MBC_SNPCR_MASK) >> GEN6_MBC_SNPCR_SHIFT; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 3016 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3017 | return 0; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 3018 | } |
| 3019 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3020 | static int |
| 3021 | i915_cache_sharing_set(void *data, u64 val) |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 3022 | { |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3023 | struct drm_device *dev = data; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 3024 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 3025 | u32 snpcr; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 3026 | |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 3027 | if (!(IS_GEN6(dev) || IS_GEN7(dev))) |
| 3028 | return -ENODEV; |
| 3029 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3030 | if (val > 3) |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 3031 | return -EINVAL; |
| 3032 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3033 | DRM_DEBUG_DRIVER("Manually setting uncore sharing to %llu\n", val); |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 3034 | |
| 3035 | /* Update the cache sharing policy here as well */ |
| 3036 | snpcr = I915_READ(GEN6_MBCUNIT_SNPCR); |
| 3037 | snpcr &= ~GEN6_MBC_SNPCR_MASK; |
| 3038 | snpcr |= (val << GEN6_MBC_SNPCR_SHIFT); |
| 3039 | I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr); |
| 3040 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3041 | return 0; |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 3042 | } |
| 3043 | |
Kees Cook | 647416f | 2013-03-10 14:10:06 -0700 | [diff] [blame] | 3044 | DEFINE_SIMPLE_ATTRIBUTE(i915_cache_sharing_fops, |
| 3045 | i915_cache_sharing_get, i915_cache_sharing_set, |
| 3046 | "%llu\n"); |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 3047 | |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 3048 | static int i915_forcewake_open(struct inode *inode, struct file *file) |
| 3049 | { |
| 3050 | struct drm_device *dev = inode->i_private; |
| 3051 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 3052 | |
Daniel Vetter | 075edca | 2012-01-24 09:44:28 +0100 | [diff] [blame] | 3053 | if (INTEL_INFO(dev)->gen < 6) |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 3054 | return 0; |
| 3055 | |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 3056 | gen6_gt_force_wake_get(dev_priv); |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 3057 | |
| 3058 | return 0; |
| 3059 | } |
| 3060 | |
Ben Widawsky | c43b563 | 2012-04-16 14:07:40 -0700 | [diff] [blame] | 3061 | static int i915_forcewake_release(struct inode *inode, struct file *file) |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 3062 | { |
| 3063 | struct drm_device *dev = inode->i_private; |
| 3064 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3065 | |
Daniel Vetter | 075edca | 2012-01-24 09:44:28 +0100 | [diff] [blame] | 3066 | if (INTEL_INFO(dev)->gen < 6) |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 3067 | return 0; |
| 3068 | |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 3069 | gen6_gt_force_wake_put(dev_priv); |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 3070 | |
| 3071 | return 0; |
| 3072 | } |
| 3073 | |
| 3074 | static const struct file_operations i915_forcewake_fops = { |
| 3075 | .owner = THIS_MODULE, |
| 3076 | .open = i915_forcewake_open, |
| 3077 | .release = i915_forcewake_release, |
| 3078 | }; |
| 3079 | |
| 3080 | static int i915_forcewake_create(struct dentry *root, struct drm_minor *minor) |
| 3081 | { |
| 3082 | struct drm_device *dev = minor->dev; |
| 3083 | struct dentry *ent; |
| 3084 | |
| 3085 | ent = debugfs_create_file("i915_forcewake_user", |
Ben Widawsky | 8eb5729 | 2011-05-11 15:10:58 -0700 | [diff] [blame] | 3086 | S_IRUSR, |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 3087 | root, dev, |
| 3088 | &i915_forcewake_fops); |
| 3089 | if (IS_ERR(ent)) |
| 3090 | return PTR_ERR(ent); |
| 3091 | |
Ben Widawsky | 8eb5729 | 2011-05-11 15:10:58 -0700 | [diff] [blame] | 3092 | return drm_add_fake_info_node(minor, ent, &i915_forcewake_fops); |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 3093 | } |
| 3094 | |
Daniel Vetter | 6a9c308 | 2011-12-14 13:57:11 +0100 | [diff] [blame] | 3095 | static int i915_debugfs_create(struct dentry *root, |
| 3096 | struct drm_minor *minor, |
| 3097 | const char *name, |
| 3098 | const struct file_operations *fops) |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 3099 | { |
| 3100 | struct drm_device *dev = minor->dev; |
| 3101 | struct dentry *ent; |
| 3102 | |
Daniel Vetter | 6a9c308 | 2011-12-14 13:57:11 +0100 | [diff] [blame] | 3103 | ent = debugfs_create_file(name, |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 3104 | S_IRUGO | S_IWUSR, |
| 3105 | root, dev, |
Daniel Vetter | 6a9c308 | 2011-12-14 13:57:11 +0100 | [diff] [blame] | 3106 | fops); |
Jesse Barnes | 358733e | 2011-07-27 11:53:01 -0700 | [diff] [blame] | 3107 | if (IS_ERR(ent)) |
| 3108 | return PTR_ERR(ent); |
| 3109 | |
Daniel Vetter | 6a9c308 | 2011-12-14 13:57:11 +0100 | [diff] [blame] | 3110 | return drm_add_fake_info_node(minor, ent, fops); |
Jesse Barnes | 07b7ddd | 2011-08-03 11:28:44 -0700 | [diff] [blame] | 3111 | } |
| 3112 | |
Lespiau, Damien | 06c5bf8 | 2013-10-17 19:09:56 +0100 | [diff] [blame] | 3113 | static const struct drm_info_list i915_debugfs_list[] = { |
Chris Wilson | 311bd68 | 2011-01-13 19:06:50 +0000 | [diff] [blame] | 3114 | {"i915_capabilities", i915_capabilities, 0}, |
Chris Wilson | 73aa808 | 2010-09-30 11:46:12 +0100 | [diff] [blame] | 3115 | {"i915_gem_objects", i915_gem_object_info, 0}, |
Chris Wilson | 08c1832 | 2011-01-10 00:00:24 +0000 | [diff] [blame] | 3116 | {"i915_gem_gtt", i915_gem_gtt_info, 0}, |
Chris Wilson | 1b50247 | 2012-04-24 15:47:30 +0100 | [diff] [blame] | 3117 | {"i915_gem_pinned", i915_gem_gtt_info, 0, (void *) PINNED_LIST}, |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 3118 | {"i915_gem_active", i915_gem_object_list_info, 0, (void *) ACTIVE_LIST}, |
Ben Gamari | 433e12f | 2009-02-17 20:08:51 -0500 | [diff] [blame] | 3119 | {"i915_gem_inactive", i915_gem_object_list_info, 0, (void *) INACTIVE_LIST}, |
Chris Wilson | 6d2b8885 | 2013-08-07 18:30:54 +0100 | [diff] [blame] | 3120 | {"i915_gem_stolen", i915_gem_stolen_list_info }, |
Simon Farnsworth | 4e5359c | 2010-09-01 17:47:52 +0100 | [diff] [blame] | 3121 | {"i915_gem_pageflip", i915_gem_pageflip_info, 0}, |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 3122 | {"i915_gem_request", i915_gem_request_info, 0}, |
| 3123 | {"i915_gem_seqno", i915_gem_seqno_info, 0}, |
Chris Wilson | a6172a8 | 2009-02-11 14:26:38 +0000 | [diff] [blame] | 3124 | {"i915_gem_fence_regs", i915_gem_fence_regs_info, 0}, |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 3125 | {"i915_gem_interrupt", i915_interrupt_info, 0}, |
Chris Wilson | 1ec14ad | 2010-12-04 11:30:53 +0000 | [diff] [blame] | 3126 | {"i915_gem_hws", i915_hws_info, 0, (void *)RCS}, |
| 3127 | {"i915_gem_hws_blt", i915_hws_info, 0, (void *)BCS}, |
| 3128 | {"i915_gem_hws_bsd", i915_hws_info, 0, (void *)VCS}, |
Xiang, Haihao | 9010ebf | 2013-05-29 09:22:36 -0700 | [diff] [blame] | 3129 | {"i915_gem_hws_vebox", i915_hws_info, 0, (void *)VECS}, |
Jesse Barnes | f97108d | 2010-01-29 11:27:07 -0800 | [diff] [blame] | 3130 | {"i915_rstdby_delays", i915_rstdby_delays, 0}, |
| 3131 | {"i915_cur_delayinfo", i915_cur_delayinfo, 0}, |
| 3132 | {"i915_delayfreq_table", i915_delayfreq_table, 0}, |
| 3133 | {"i915_inttoext_table", i915_inttoext_table, 0}, |
| 3134 | {"i915_drpc_info", i915_drpc_info, 0}, |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 3135 | {"i915_emon_status", i915_emon_status, 0}, |
Jesse Barnes | 23b2f8b | 2011-06-28 13:04:16 -0700 | [diff] [blame] | 3136 | {"i915_ring_freq_table", i915_ring_freq_table, 0}, |
Jesse Barnes | 7648fa9 | 2010-05-20 14:28:11 -0700 | [diff] [blame] | 3137 | {"i915_gfxec", i915_gfxec, 0}, |
Jesse Barnes | b5e50c3 | 2010-02-05 12:42:41 -0800 | [diff] [blame] | 3138 | {"i915_fbc_status", i915_fbc_status, 0}, |
Paulo Zanoni | 92d4462 | 2013-05-31 16:33:24 -0300 | [diff] [blame] | 3139 | {"i915_ips_status", i915_ips_status, 0}, |
Jesse Barnes | 4a9bef3 | 2010-02-05 12:47:35 -0800 | [diff] [blame] | 3140 | {"i915_sr_status", i915_sr_status, 0}, |
Chris Wilson | 44834a6 | 2010-08-19 16:09:23 +0100 | [diff] [blame] | 3141 | {"i915_opregion", i915_opregion, 0}, |
Chris Wilson | 37811fc | 2010-08-25 22:45:57 +0100 | [diff] [blame] | 3142 | {"i915_gem_framebuffer", i915_gem_framebuffer_info, 0}, |
Ben Widawsky | e76d363 | 2011-03-19 18:14:29 -0700 | [diff] [blame] | 3143 | {"i915_context_status", i915_context_status, 0}, |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 3144 | {"i915_gen6_forcewake_count", i915_gen6_forcewake_count_info, 0}, |
Daniel Vetter | ea16a3c | 2011-12-14 13:57:16 +0100 | [diff] [blame] | 3145 | {"i915_swizzle_info", i915_swizzle_info, 0}, |
Daniel Vetter | 3cf17fc | 2012-02-09 17:15:49 +0100 | [diff] [blame] | 3146 | {"i915_ppgtt_info", i915_ppgtt_info, 0}, |
Jesse Barnes | 57f350b | 2012-03-28 13:39:25 -0700 | [diff] [blame] | 3147 | {"i915_dpio", i915_dpio_info, 0}, |
Ben Widawsky | 63573eb | 2013-07-04 11:02:07 -0700 | [diff] [blame] | 3148 | {"i915_llc", i915_llc, 0}, |
Rodrigo Vivi | e91fd8c | 2013-07-11 18:44:59 -0300 | [diff] [blame] | 3149 | {"i915_edp_psr_status", i915_edp_psr_status, 0}, |
Jesse Barnes | ec013e7 | 2013-08-20 10:29:23 +0100 | [diff] [blame] | 3150 | {"i915_energy_uJ", i915_energy_uJ, 0}, |
Paulo Zanoni | 371db66 | 2013-08-19 13:18:10 -0300 | [diff] [blame] | 3151 | {"i915_pc8_status", i915_pc8_status, 0}, |
Imre Deak | 1da5158 | 2013-11-25 17:15:35 +0200 | [diff] [blame^] | 3152 | {"i915_power_domain_info", i915_power_domain_info, 0}, |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 3153 | }; |
Ben Gamari | 27c202a | 2009-07-01 22:26:52 -0400 | [diff] [blame] | 3154 | #define I915_DEBUGFS_ENTRIES ARRAY_SIZE(i915_debugfs_list) |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 3155 | |
Lespiau, Damien | 06c5bf8 | 2013-10-17 19:09:56 +0100 | [diff] [blame] | 3156 | static const struct i915_debugfs_files { |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 3157 | const char *name; |
| 3158 | const struct file_operations *fops; |
| 3159 | } i915_debugfs_files[] = { |
| 3160 | {"i915_wedged", &i915_wedged_fops}, |
| 3161 | {"i915_max_freq", &i915_max_freq_fops}, |
| 3162 | {"i915_min_freq", &i915_min_freq_fops}, |
| 3163 | {"i915_cache_sharing", &i915_cache_sharing_fops}, |
| 3164 | {"i915_ring_stop", &i915_ring_stop_fops}, |
Chris Wilson | 094f9a5 | 2013-09-25 17:34:55 +0100 | [diff] [blame] | 3165 | {"i915_ring_missed_irq", &i915_ring_missed_irq_fops}, |
| 3166 | {"i915_ring_test_irq", &i915_ring_test_irq_fops}, |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 3167 | {"i915_gem_drop_caches", &i915_drop_caches_fops}, |
| 3168 | {"i915_error_state", &i915_error_state_fops}, |
| 3169 | {"i915_next_seqno", &i915_next_seqno_fops}, |
Damien Lespiau | bd9db02 | 2013-10-15 18:55:36 +0100 | [diff] [blame] | 3170 | {"i915_display_crc_ctl", &i915_display_crc_ctl_fops}, |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 3171 | }; |
| 3172 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 3173 | void intel_display_crc_init(struct drm_device *dev) |
| 3174 | { |
| 3175 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | b378360 | 2013-11-14 11:30:42 +0100 | [diff] [blame] | 3176 | enum pipe pipe; |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 3177 | |
Daniel Vetter | b378360 | 2013-11-14 11:30:42 +0100 | [diff] [blame] | 3178 | for_each_pipe(pipe) { |
| 3179 | struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe]; |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 3180 | |
Damien Lespiau | d538bbd | 2013-10-21 14:29:30 +0100 | [diff] [blame] | 3181 | pipe_crc->opened = false; |
| 3182 | spin_lock_init(&pipe_crc->lock); |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 3183 | init_waitqueue_head(&pipe_crc->wq); |
| 3184 | } |
| 3185 | } |
| 3186 | |
Ben Gamari | 27c202a | 2009-07-01 22:26:52 -0400 | [diff] [blame] | 3187 | int i915_debugfs_init(struct drm_minor *minor) |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 3188 | { |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 3189 | int ret, i; |
Chris Wilson | f3cd474 | 2009-10-13 22:20:20 +0100 | [diff] [blame] | 3190 | |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 3191 | ret = i915_forcewake_create(minor->debugfs_root, minor); |
| 3192 | if (ret) |
| 3193 | return ret; |
Daniel Vetter | 6a9c308 | 2011-12-14 13:57:11 +0100 | [diff] [blame] | 3194 | |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 3195 | for (i = 0; i < ARRAY_SIZE(i915_pipe_crc_data); i++) { |
| 3196 | ret = i915_pipe_crc_create(minor->debugfs_root, minor, i); |
| 3197 | if (ret) |
| 3198 | return ret; |
| 3199 | } |
| 3200 | |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 3201 | for (i = 0; i < ARRAY_SIZE(i915_debugfs_files); i++) { |
| 3202 | ret = i915_debugfs_create(minor->debugfs_root, minor, |
| 3203 | i915_debugfs_files[i].name, |
| 3204 | i915_debugfs_files[i].fops); |
| 3205 | if (ret) |
| 3206 | return ret; |
| 3207 | } |
Mika Kuoppala | 4063321 | 2012-12-04 15:12:00 +0200 | [diff] [blame] | 3208 | |
Ben Gamari | 27c202a | 2009-07-01 22:26:52 -0400 | [diff] [blame] | 3209 | return drm_debugfs_create_files(i915_debugfs_list, |
| 3210 | I915_DEBUGFS_ENTRIES, |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 3211 | minor->debugfs_root, minor); |
| 3212 | } |
| 3213 | |
Ben Gamari | 27c202a | 2009-07-01 22:26:52 -0400 | [diff] [blame] | 3214 | void i915_debugfs_cleanup(struct drm_minor *minor) |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 3215 | { |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 3216 | int i; |
| 3217 | |
Ben Gamari | 27c202a | 2009-07-01 22:26:52 -0400 | [diff] [blame] | 3218 | drm_debugfs_remove_files(i915_debugfs_list, |
| 3219 | I915_DEBUGFS_ENTRIES, minor); |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 3220 | |
Ben Widawsky | 6d794d4 | 2011-04-25 11:25:56 -0700 | [diff] [blame] | 3221 | drm_debugfs_remove_files((struct drm_info_list *) &i915_forcewake_fops, |
| 3222 | 1, minor); |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 3223 | |
Daniel Vetter | e309a99 | 2013-10-16 22:55:51 +0200 | [diff] [blame] | 3224 | for (i = 0; i < ARRAY_SIZE(i915_pipe_crc_data); i++) { |
Damien Lespiau | 0714442 | 2013-10-15 18:55:40 +0100 | [diff] [blame] | 3225 | struct drm_info_list *info_list = |
| 3226 | (struct drm_info_list *)&i915_pipe_crc_data[i]; |
| 3227 | |
| 3228 | drm_debugfs_remove_files(info_list, 1, minor); |
| 3229 | } |
| 3230 | |
Daniel Vetter | 34b9674 | 2013-07-04 20:49:44 +0200 | [diff] [blame] | 3231 | for (i = 0; i < ARRAY_SIZE(i915_debugfs_files); i++) { |
| 3232 | struct drm_info_list *info_list = |
| 3233 | (struct drm_info_list *) i915_debugfs_files[i].fops; |
| 3234 | |
| 3235 | drm_debugfs_remove_files(info_list, 1, minor); |
| 3236 | } |
Ben Gamari | 2017263 | 2009-02-17 20:08:50 -0500 | [diff] [blame] | 3237 | } |
| 3238 | |
| 3239 | #endif /* CONFIG_DEBUG_FS */ |